diff --git a/Makefile b/Makefile index 90b1063f..b34b8eb6 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -.PHONY: all format test install download upload docker documentation data calibrate publish-local-area clean build paper clean-paper presentations database database-refresh promote-database promote-dataset +.PHONY: all format test install download upload docker documentation data validate-data calibrate publish-local-area clean build paper clean-paper presentations database database-refresh promote-database promote-dataset HF_CLONE_DIR ?= $(HOME)/huggingface/policyengine-us-data @@ -25,7 +25,7 @@ upload: docker: docker buildx build --platform linux/amd64 . -t policyengine-us-data:latest - + documentation: cd docs && \ rm -rf _build .jupyter_cache && \ @@ -101,6 +101,9 @@ calibrate: data publish-local-area: python policyengine_us_data/datasets/cps/local_area_calibration/publish_local_area.py +validate-data: + python -c "from policyengine_us_data.storage.upload_completed_datasets import validate_all_datasets; validate_all_datasets()" + clean: rm -f policyengine_us_data/storage/*.h5 rm -f policyengine_us_data/storage/*.db diff --git a/changelog.d/add-dataset-sanity-tests.added.md b/changelog.d/add-dataset-sanity-tests.added.md new file mode 100644 index 00000000..4f162797 --- /dev/null +++ b/changelog.d/add-dataset-sanity-tests.added.md @@ -0,0 +1 @@ +Hardened data pipeline against corrupted dataset uploads: pre-upload validation gate, post-generation assertions in enhanced CPS and sparse builders, CI workflow safety guards, file size checks, and comprehensive sanity tests for all dataset variants (5 layers of defense). diff --git a/oregon_ctc_analysis.py b/oregon_ctc_analysis.py new file mode 100644 index 00000000..a284aa8e --- /dev/null +++ b/oregon_ctc_analysis.py @@ -0,0 +1,202 @@ +""" +Oregon Child Tax Credit Analysis by State Senate District + +Calculates the impact of doubling Oregon's Young Child Tax Credit (or_ctc) +by State Legislative District Upper (SLDU) - i.e., State Senate districts. +""" + +import numpy as np +import pandas as pd +from pathlib import Path +from policyengine_us import Microsimulation +from policyengine_core.reforms import Reform + +# Local imports +from policyengine_us_data.datasets.cps.local_area_calibration.block_assignment import ( + assign_geography_for_cd, + load_block_crosswalk, +) +from policyengine_us_data.storage import STORAGE_FOLDER + +# Oregon congressional districts (119th Congress) +# Oregon has 6 CDs, geoid format: state_fips * 100 + district +# Oregon FIPS = 41, so: 4101, 4102, 4103, 4104, 4105, 4106 +OREGON_CD_GEOIDS = [4101, 4102, 4103, 4104, 4105, 4106] + + +def load_district_data(cd_geoid: int) -> dict: + """Load household data from a district H5 file.""" + h5_path = STORAGE_FOLDER / "districts" / f"OR-{cd_geoid % 100:02d}.h5" + if not h5_path.exists(): + raise FileNotFoundError(f"District file not found: {h5_path}") + + import h5py + + data = {} + with h5py.File(h5_path, "r") as f: + # Get key variables we need + for var in [ + "household_weight", + "household_id", + "person_id", + "age", + "is_tax_unit_head", + "tax_unit_id", + ]: + if var in f: + # Handle year dimension if present + arr = f[var][:] + if len(arr.shape) > 1: + arr = arr[:, 0] # Take first year + data[var] = arr + return data + + +def run_oregon_ctc_analysis(): + """Run the Oregon CTC analysis by state senate district.""" + print("=" * 60) + print("Oregon Child Tax Credit Analysis by State Senate District") + print("=" * 60) + + # Load block crosswalk for SLDU lookups + print("\nLoading block crosswalk...") + crosswalk = load_block_crosswalk() + oregon_blocks = crosswalk[crosswalk["block_geoid"].str[:2] == "41"] + print(f" Oregon blocks: {len(oregon_blocks):,}") + print(f" Unique SLDUs: {oregon_blocks['sldu'].nunique()}") + + # Results accumulator + results_by_sldu = {} + + print("\nProcessing Oregon congressional districts...") + + for cd_geoid in OREGON_CD_GEOIDS: + cd_name = f"OR-{cd_geoid % 100:02d}" + print(f"\n Processing {cd_name}...") + + # Load district data + h5_path = STORAGE_FOLDER / "districts" / f"{cd_name}.h5" + if not h5_path.exists(): + print(f" Skipping - file not found") + continue + + # Run microsimulation for this district + # Baseline + baseline = Microsimulation(dataset=str(h5_path)) + baseline_ctc = baseline.calculate("or_ctc", 2024) + baseline_weights = baseline.calculate("household_weight", 2024) + + # Reform: double the OR CTC max amounts + # or_young_child_tax_credit_max is the parameter + def double_or_ctc(parameters): + # Double the max credit amount + or_ctc = parameters.gov.states.or_.tax.income.credits.ctc + or_ctc.amount.update( + start=pd.Timestamp("2024-01-01"), + stop=pd.Timestamp("2100-12-31"), + value=or_ctc.amount("2024-01-01") * 2, + ) + return parameters + + class DoubleORCTC(Reform): + def apply(self): + self.modify_parameters(double_or_ctc) + + reform = Microsimulation(dataset=str(h5_path), reform=DoubleORCTC) + reform_ctc = reform.calculate("or_ctc", 2024) + + # Get number of households for block assignment + n_households = len(baseline_weights) + print(f" Households: {n_households:,}") + + # Assign blocks and get SLDU for each household + geo = assign_geography_for_cd( + cd_geoid=str(cd_geoid), + n_households=n_households, + seed=cd_geoid, # Reproducible + ) + + sldu_assignments = geo["sldu"] + + # Calculate impact per household + impact = reform_ctc - baseline_ctc + + # Aggregate by SLDU + unique_sldus = np.unique(sldu_assignments[sldu_assignments != ""]) + + for sldu in unique_sldus: + mask = sldu_assignments == sldu + sldu_impact = np.sum(impact[mask] * baseline_weights[mask]) + sldu_baseline = np.sum(baseline_ctc[mask] * baseline_weights[mask]) + sldu_reform = np.sum(reform_ctc[mask] * baseline_weights[mask]) + sldu_hh = np.sum(mask) + sldu_weighted_hh = np.sum(baseline_weights[mask]) + + if sldu not in results_by_sldu: + results_by_sldu[sldu] = { + "baseline_ctc": 0, + "reform_ctc": 0, + "impact": 0, + "households": 0, + "weighted_households": 0, + } + + results_by_sldu[sldu]["baseline_ctc"] += sldu_baseline + results_by_sldu[sldu]["reform_ctc"] += sldu_reform + results_by_sldu[sldu]["impact"] += sldu_impact + results_by_sldu[sldu]["households"] += sldu_hh + results_by_sldu[sldu]["weighted_households"] += sldu_weighted_hh + + # Create results DataFrame + print("\n" + "=" * 60) + print("RESULTS: Impact of Doubling Oregon CTC by State Senate District") + print("=" * 60) + + df = pd.DataFrame.from_dict(results_by_sldu, orient="index") + df.index.name = "sldu" + df = df.reset_index() + + # Convert to millions + df["baseline_ctc_millions"] = df["baseline_ctc"] / 1e6 + df["reform_ctc_millions"] = df["reform_ctc"] / 1e6 + df["impact_millions"] = df["impact"] / 1e6 + + # Sort by impact + df = df.sort_values("impact_millions", ascending=False) + + # Display results + print( + f"\n{'SLDU':<8} {'Baseline':>12} {'Reform':>12} {'Impact':>12} {'Households':>12}" + ) + print(f"{'':8} {'($M)':>12} {'($M)':>12} {'($M)':>12} {'(weighted)':>12}") + print("-" * 60) + + for _, row in df.iterrows(): + print( + f"{row['sldu']:<8} " + f"{row['baseline_ctc_millions']:>12.2f} " + f"{row['reform_ctc_millions']:>12.2f} " + f"{row['impact_millions']:>12.2f} " + f"{row['weighted_households']:>12,.0f}" + ) + + print("-" * 60) + total_baseline = df["baseline_ctc_millions"].sum() + total_reform = df["reform_ctc_millions"].sum() + total_impact = df["impact_millions"].sum() + total_hh = df["weighted_households"].sum() + print( + f"{'TOTAL':<8} {total_baseline:>12.2f} {total_reform:>12.2f} " + f"{total_impact:>12.2f} {total_hh:>12,.0f}" + ) + + # Save to CSV + output_path = Path("oregon_ctc_by_sldu.csv") + df.to_csv(output_path, index=False) + print(f"\nResults saved to: {output_path}") + + return df + + +if __name__ == "__main__": + run_oregon_ctc_analysis() diff --git a/policyengine_us_data/datasets/cps/enhanced_cps.py b/policyengine_us_data/datasets/cps/enhanced_cps.py index 385ec1e9..3bf5515b 100644 --- a/policyengine_us_data/datasets/cps/enhanced_cps.py +++ b/policyengine_us_data/datasets/cps/enhanced_cps.py @@ -201,6 +201,31 @@ def generate(self): ) data["household_weight"][year] = optimised_weights + # Validate dense weights + w = optimised_weights + if np.any(np.isnan(w)): + raise ValueError( + f"Year {year}: household_weight contains NaN values" + ) + if np.any(w < 0): + raise ValueError( + f"Year {year}: household_weight contains negative values" + ) + weighted_hh_count = float(np.sum(w)) + if not (1e8 <= weighted_hh_count <= 2e8): + raise ValueError( + f"Year {year}: weighted household count " + f"{weighted_hh_count:,.0f} outside expected range " + f"[100M, 200M]" + ) + logging.info( + f"Year {year}: weights validated — " + f"{weighted_hh_count:,.0f} weighted households, " + f"{int(np.sum(w > 0))} non-zero" + ) + + logging.info("Post-generation weight validation passed") + self.save_dataset(data) diff --git a/policyengine_us_data/datasets/cps/small_enhanced_cps.py b/policyengine_us_data/datasets/cps/small_enhanced_cps.py index ccee6458..483593e2 100644 --- a/policyengine_us_data/datasets/cps/small_enhanced_cps.py +++ b/policyengine_us_data/datasets/cps/small_enhanced_cps.py @@ -1,3 +1,4 @@ +import os import pandas as pd import numpy as np import h5py @@ -17,6 +18,19 @@ def create_small_ecps(): ) simulation.subsample(1_000) + # Basic validation that subsample has reasonable data + weights = simulation.calculate("household_weight").values + if np.all(weights == 0): + raise ValueError( + "create_small_ecps: all household weights are zero " + "after subsample" + ) + logging.info( + f"create_small_ecps: subsample has " + f"{len(weights)} households, " + f"{int(np.sum(weights > 0))} with non-zero weight" + ) + data = {} for variable in simulation.tax_benefit_system.variables: data[variable] = {} @@ -75,6 +89,16 @@ def create_sparse_ecps(): h_ids = h_ids[h_weights > 0] h_weights = h_weights[h_weights > 0] + if len(h_ids) < 1000: + raise ValueError( + f"create_sparse_ecps: only {len(h_ids)} households with " + f"non-zero weight (expected > 1000)" + ) + logging.info( + f"create_sparse_ecps: {len(h_ids)} households after " + f"zero-weight filtering" + ) + subset_df = df[df[df_household_id_column].isin(h_ids)].copy() # Update the dataset and rebuild the simulation @@ -104,12 +128,38 @@ def create_sparse_ecps(): if len(data[variable]) == 0: del data[variable] - with h5py.File(STORAGE_FOLDER / "sparse_enhanced_cps_2024.h5", "w") as f: + # Validate critical variables exist before writing + critical_vars = [ + "household_weight", + "employment_income", + "household_id", + "person_id", + ] + missing = [v for v in critical_vars if v not in data] + if missing: + raise ValueError( + f"create_sparse_ecps: missing critical variables: {missing}" + ) + logging.info(f"create_sparse_ecps: data dict has {len(data)} variables") + + output_path = STORAGE_FOLDER / "sparse_enhanced_cps_2024.h5" + with h5py.File(output_path, "w") as f: for variable, periods in data.items(): grp = f.create_group(variable) for period, values in periods.items(): grp.create_dataset(str(period), data=values) + file_size = os.path.getsize(output_path) + if file_size < 1_000_000: + raise ValueError( + f"create_sparse_ecps: output file only {file_size:,} bytes " + f"(expected > 1MB)" + ) + logging.info( + f"create_sparse_ecps: wrote {file_size / 1e6:.1f}MB to " + f"{output_path}" + ) + if __name__ == "__main__": create_small_ecps() diff --git a/policyengine_us_data/storage/calibration/raw_inputs/acs5_congressional_districts_2024.json b/policyengine_us_data/storage/calibration/raw_inputs/acs5_congressional_districts_2024.json new file mode 100644 index 00000000..d812ecff --- /dev/null +++ b/policyengine_us_data/storage/calibration/raw_inputs/acs5_congressional_districts_2024.json @@ -0,0 +1 @@ +[["NAME", "state", "congressional district"], ["Congressional District 1 (119th Congress), Alabama", "01", "01"], ["Congressional District 2 (119th Congress), Alabama", "01", "02"], ["Congressional District 3 (119th Congress), Alabama", "01", "03"], ["Congressional District 4 (119th Congress), Alabama", "01", "04"], ["Congressional District 5 (119th Congress), Alabama", "01", "05"], ["Congressional District 6 (119th Congress), Alabama", "01", "06"], ["Congressional District 7 (119th Congress), Alabama", "01", "07"], ["Congressional District (at Large) (119th Congress), Alaska", "02", "00"], ["Congressional District 1 (119th Congress), Arizona", "04", "01"], ["Congressional District 2 (119th Congress), Arizona", "04", "02"], ["Congressional District 3 (119th Congress), Arizona", "04", "03"], ["Congressional District 4 (119th Congress), Arizona", "04", "04"], ["Congressional District 5 (119th Congress), Arizona", "04", "05"], ["Congressional District 6 (119th Congress), Arizona", "04", "06"], ["Congressional District 7 (119th Congress), Arizona", "04", "07"], ["Congressional District 8 (119th Congress), Arizona", "04", "08"], ["Congressional District 9 (119th Congress), Arizona", "04", "09"], ["Congressional District 1 (119th Congress), Arkansas", "05", "01"], ["Congressional District 2 (119th Congress), Arkansas", "05", "02"], ["Congressional District 3 (119th Congress), Arkansas", "05", "03"], ["Congressional District 4 (119th Congress), Arkansas", "05", "04"], ["Congressional District 1 (119th Congress), California", "06", "01"], ["Congressional District 2 (119th Congress), California", "06", "02"], ["Congressional District 3 (119th Congress), California", "06", "03"], ["Congressional District 4 (119th Congress), California", "06", "04"], ["Congressional District 5 (119th Congress), California", "06", "05"], ["Congressional District 6 (119th Congress), California", "06", "06"], ["Congressional District 7 (119th Congress), California", "06", "07"], ["Congressional District 8 (119th Congress), California", "06", "08"], ["Congressional District 9 (119th Congress), California", "06", "09"], ["Congressional District 10 (119th Congress), California", "06", "10"], ["Congressional District 11 (119th Congress), California", "06", "11"], ["Congressional District 12 (119th Congress), California", "06", "12"], ["Congressional District 13 (119th Congress), California", "06", "13"], ["Congressional District 14 (119th Congress), California", "06", "14"], ["Congressional District 15 (119th Congress), California", "06", "15"], ["Congressional District 16 (119th Congress), California", "06", "16"], ["Congressional District 17 (119th Congress), California", "06", "17"], ["Congressional District 18 (119th Congress), California", "06", "18"], ["Congressional District 19 (119th Congress), California", "06", "19"], ["Congressional District 20 (119th Congress), California", "06", "20"], ["Congressional District 21 (119th Congress), California", "06", "21"], ["Congressional District 22 (119th Congress), California", "06", "22"], ["Congressional District 23 (119th Congress), California", "06", "23"], ["Congressional District 24 (119th Congress), California", "06", "24"], ["Congressional District 25 (119th Congress), California", "06", "25"], ["Congressional District 26 (119th Congress), California", "06", "26"], ["Congressional District 27 (119th Congress), California", "06", "27"], ["Congressional District 28 (119th Congress), California", "06", "28"], ["Congressional District 29 (119th Congress), California", "06", "29"], ["Congressional District 30 (119th Congress), California", "06", "30"], ["Congressional District 31 (119th Congress), California", "06", "31"], ["Congressional District 32 (119th Congress), California", "06", "32"], ["Congressional District 33 (119th Congress), California", "06", "33"], ["Congressional District 34 (119th Congress), California", "06", "34"], ["Congressional District 35 (119th Congress), California", "06", "35"], ["Congressional District 36 (119th Congress), California", "06", "36"], ["Congressional District 37 (119th Congress), California", "06", "37"], ["Congressional District 38 (119th Congress), California", "06", "38"], ["Congressional District 39 (119th Congress), California", "06", "39"], ["Congressional District 40 (119th Congress), California", "06", "40"], ["Congressional District 41 (119th Congress), California", "06", "41"], ["Congressional District 42 (119th Congress), California", "06", "42"], ["Congressional District 43 (119th Congress), California", "06", "43"], ["Congressional District 44 (119th Congress), California", "06", "44"], ["Congressional District 45 (119th Congress), California", "06", "45"], ["Congressional District 46 (119th Congress), California", "06", "46"], ["Congressional District 47 (119th Congress), California", "06", "47"], ["Congressional District 48 (119th Congress), California", "06", "48"], ["Congressional District 49 (119th Congress), California", "06", "49"], ["Congressional District 50 (119th Congress), California", "06", "50"], ["Congressional District 51 (119th Congress), California", "06", "51"], ["Congressional District 52 (119th Congress), California", "06", "52"], ["Congressional District 1 (119th Congress), Colorado", "08", "01"], ["Congressional District 2 (119th Congress), Colorado", "08", "02"], ["Congressional District 3 (119th Congress), Colorado", "08", "03"], ["Congressional District 4 (119th Congress), Colorado", "08", "04"], ["Congressional District 5 (119th Congress), Colorado", "08", "05"], ["Congressional District 6 (119th Congress), Colorado", "08", "06"], ["Congressional District 7 (119th Congress), Colorado", "08", "07"], ["Congressional District 8 (119th Congress), Colorado", "08", "08"], ["Congressional District 1 (119th Congress), Connecticut", "09", "01"], ["Congressional District 2 (119th Congress), Connecticut", "09", "02"], ["Congressional District 3 (119th Congress), Connecticut", "09", "03"], ["Congressional District 4 (119th Congress), Connecticut", "09", "04"], ["Congressional District 5 (119th Congress), Connecticut", "09", "05"], ["Congressional Districts not defined (119th Congress), Connecticut", "09", "ZZ"], ["Congressional District (at Large) (119th Congress), Delaware", "10", "00"], ["Delegate District (at Large) (119th Congress), District of Columbia", "11", "98"], ["Congressional District 1 (119th Congress), Florida", "12", "01"], ["Congressional District 2 (119th Congress), Florida", "12", "02"], ["Congressional District 3 (119th Congress), Florida", "12", "03"], ["Congressional District 4 (119th Congress), Florida", "12", "04"], ["Congressional District 5 (119th Congress), Florida", "12", "05"], ["Congressional District 6 (119th Congress), Florida", "12", "06"], ["Congressional District 7 (119th Congress), Florida", "12", "07"], ["Congressional District 8 (119th Congress), Florida", "12", "08"], ["Congressional District 9 (119th Congress), Florida", "12", "09"], ["Congressional District 10 (119th Congress), Florida", "12", "10"], ["Congressional District 11 (119th Congress), Florida", "12", "11"], ["Congressional District 12 (119th Congress), Florida", "12", "12"], ["Congressional District 13 (119th Congress), Florida", "12", "13"], ["Congressional District 14 (119th Congress), Florida", "12", "14"], ["Congressional District 15 (119th Congress), Florida", "12", "15"], ["Congressional District 16 (119th Congress), Florida", "12", "16"], ["Congressional District 17 (119th Congress), Florida", "12", "17"], ["Congressional District 18 (119th Congress), Florida", "12", "18"], ["Congressional District 19 (119th Congress), Florida", "12", "19"], ["Congressional District 20 (119th Congress), Florida", "12", "20"], ["Congressional District 21 (119th Congress), Florida", "12", "21"], ["Congressional District 22 (119th Congress), Florida", "12", "22"], ["Congressional District 23 (119th Congress), Florida", "12", "23"], ["Congressional District 24 (119th Congress), Florida", "12", "24"], ["Congressional District 25 (119th Congress), Florida", "12", "25"], ["Congressional District 26 (119th Congress), Florida", "12", "26"], ["Congressional District 27 (119th Congress), Florida", "12", "27"], ["Congressional District 28 (119th Congress), Florida", "12", "28"], ["Congressional District 1 (119th Congress), Georgia", "13", "01"], ["Congressional District 2 (119th Congress), Georgia", "13", "02"], ["Congressional District 3 (119th Congress), Georgia", "13", "03"], ["Congressional District 4 (119th Congress), Georgia", "13", "04"], ["Congressional District 5 (119th Congress), Georgia", "13", "05"], ["Congressional District 6 (119th Congress), Georgia", "13", "06"], ["Congressional District 7 (119th Congress), Georgia", "13", "07"], ["Congressional District 8 (119th Congress), Georgia", "13", "08"], ["Congressional District 9 (119th Congress), Georgia", "13", "09"], ["Congressional District 10 (119th Congress), Georgia", "13", "10"], ["Congressional District 11 (119th Congress), Georgia", "13", "11"], ["Congressional District 12 (119th Congress), Georgia", "13", "12"], ["Congressional District 13 (119th Congress), Georgia", "13", "13"], ["Congressional District 14 (119th Congress), Georgia", "13", "14"], ["Congressional District 1 (119th Congress), Hawaii", "15", "01"], ["Congressional District 2 (119th Congress), Hawaii", "15", "02"], ["Congressional District 1 (119th Congress), Idaho", "16", "01"], ["Congressional District 2 (119th Congress), Idaho", "16", "02"], ["Congressional District 1 (119th Congress), Illinois", "17", "01"], ["Congressional District 2 (119th Congress), Illinois", "17", "02"], ["Congressional District 3 (119th Congress), Illinois", "17", "03"], ["Congressional District 4 (119th Congress), Illinois", "17", "04"], ["Congressional District 5 (119th Congress), Illinois", "17", "05"], ["Congressional District 6 (119th Congress), Illinois", "17", "06"], ["Congressional District 7 (119th Congress), Illinois", "17", "07"], ["Congressional District 8 (119th Congress), Illinois", "17", "08"], ["Congressional District 9 (119th Congress), Illinois", "17", "09"], ["Congressional District 10 (119th Congress), Illinois", "17", "10"], ["Congressional District 11 (119th Congress), Illinois", "17", "11"], ["Congressional District 12 (119th Congress), Illinois", "17", "12"], ["Congressional District 13 (119th Congress), Illinois", "17", "13"], ["Congressional District 14 (119th Congress), Illinois", "17", "14"], ["Congressional District 15 (119th Congress), Illinois", "17", "15"], ["Congressional District 16 (119th Congress), Illinois", "17", "16"], ["Congressional District 17 (119th Congress), Illinois", "17", "17"], ["Congressional Districts not defined (119th Congress), Illinois", "17", "ZZ"], ["Congressional District 1 (119th Congress), Indiana", "18", "01"], ["Congressional District 2 (119th Congress), Indiana", "18", "02"], ["Congressional District 3 (119th Congress), Indiana", "18", "03"], ["Congressional District 4 (119th Congress), Indiana", "18", "04"], ["Congressional District 5 (119th Congress), Indiana", "18", "05"], ["Congressional District 6 (119th Congress), Indiana", "18", "06"], ["Congressional District 7 (119th Congress), Indiana", "18", "07"], ["Congressional District 8 (119th Congress), Indiana", "18", "08"], ["Congressional District 9 (119th Congress), Indiana", "18", "09"], ["Congressional District 1 (119th Congress), Iowa", "19", "01"], ["Congressional District 2 (119th Congress), Iowa", "19", "02"], ["Congressional District 3 (119th Congress), Iowa", "19", "03"], ["Congressional District 4 (119th Congress), Iowa", "19", "04"], ["Congressional District 1 (119th Congress), Kansas", "20", "01"], ["Congressional District 2 (119th Congress), Kansas", "20", "02"], ["Congressional District 3 (119th Congress), Kansas", "20", "03"], ["Congressional District 4 (119th Congress), Kansas", "20", "04"], ["Congressional District 1 (119th Congress), Kentucky", "21", "01"], ["Congressional District 2 (119th Congress), Kentucky", "21", "02"], ["Congressional District 3 (119th Congress), Kentucky", "21", "03"], ["Congressional District 4 (119th Congress), Kentucky", "21", "04"], ["Congressional District 5 (119th Congress), Kentucky", "21", "05"], ["Congressional District 6 (119th Congress), Kentucky", "21", "06"], ["Congressional District 1 (119th Congress), Louisiana", "22", "01"], ["Congressional District 2 (119th Congress), Louisiana", "22", "02"], ["Congressional District 3 (119th Congress), Louisiana", "22", "03"], ["Congressional District 4 (119th Congress), Louisiana", "22", "04"], ["Congressional District 5 (119th Congress), Louisiana", "22", "05"], ["Congressional District 6 (119th Congress), Louisiana", "22", "06"], ["Congressional District 1 (119th Congress), Maine", "23", "01"], ["Congressional District 2 (119th Congress), Maine", "23", "02"], ["Congressional District 1 (119th Congress), Maryland", "24", "01"], ["Congressional District 2 (119th Congress), Maryland", "24", "02"], ["Congressional District 3 (119th Congress), Maryland", "24", "03"], ["Congressional District 4 (119th Congress), Maryland", "24", "04"], ["Congressional District 5 (119th Congress), Maryland", "24", "05"], ["Congressional District 6 (119th Congress), Maryland", "24", "06"], ["Congressional District 7 (119th Congress), Maryland", "24", "07"], ["Congressional District 8 (119th Congress), Maryland", "24", "08"], ["Congressional District 1 (119th Congress), Massachusetts", "25", "01"], ["Congressional District 2 (119th Congress), Massachusetts", "25", "02"], ["Congressional District 3 (119th Congress), Massachusetts", "25", "03"], ["Congressional District 4 (119th Congress), Massachusetts", "25", "04"], ["Congressional District 5 (119th Congress), Massachusetts", "25", "05"], ["Congressional District 6 (119th Congress), Massachusetts", "25", "06"], ["Congressional District 7 (119th Congress), Massachusetts", "25", "07"], ["Congressional District 8 (119th Congress), Massachusetts", "25", "08"], ["Congressional District 9 (119th Congress), Massachusetts", "25", "09"], ["Congressional District 1 (119th Congress), Michigan", "26", "01"], ["Congressional District 2 (119th Congress), Michigan", "26", "02"], ["Congressional District 3 (119th Congress), Michigan", "26", "03"], ["Congressional District 4 (119th Congress), Michigan", "26", "04"], ["Congressional District 5 (119th Congress), Michigan", "26", "05"], ["Congressional District 6 (119th Congress), Michigan", "26", "06"], ["Congressional District 7 (119th Congress), Michigan", "26", "07"], ["Congressional District 8 (119th Congress), Michigan", "26", "08"], ["Congressional District 9 (119th Congress), Michigan", "26", "09"], ["Congressional District 10 (119th Congress), Michigan", "26", "10"], ["Congressional District 11 (119th Congress), Michigan", "26", "11"], ["Congressional District 12 (119th Congress), Michigan", "26", "12"], ["Congressional District 13 (119th Congress), Michigan", "26", "13"], ["Congressional District 1 (119th Congress), Minnesota", "27", "01"], ["Congressional District 2 (119th Congress), Minnesota", "27", "02"], ["Congressional District 3 (119th Congress), Minnesota", "27", "03"], ["Congressional District 4 (119th Congress), Minnesota", "27", "04"], ["Congressional District 5 (119th Congress), Minnesota", "27", "05"], ["Congressional District 6 (119th Congress), Minnesota", "27", "06"], ["Congressional District 7 (119th Congress), Minnesota", "27", "07"], ["Congressional District 8 (119th Congress), Minnesota", "27", "08"], ["Congressional District 1 (119th Congress), Mississippi", "28", "01"], ["Congressional District 2 (119th Congress), Mississippi", "28", "02"], ["Congressional District 3 (119th Congress), Mississippi", "28", "03"], ["Congressional District 4 (119th Congress), Mississippi", "28", "04"], ["Congressional District 1 (119th Congress), Missouri", "29", "01"], ["Congressional District 2 (119th Congress), Missouri", "29", "02"], ["Congressional District 3 (119th Congress), Missouri", "29", "03"], ["Congressional District 4 (119th Congress), Missouri", "29", "04"], ["Congressional District 5 (119th Congress), Missouri", "29", "05"], ["Congressional District 6 (119th Congress), Missouri", "29", "06"], ["Congressional District 7 (119th Congress), Missouri", "29", "07"], ["Congressional District 8 (119th Congress), Missouri", "29", "08"], ["Congressional District 1 (119th Congress), Montana", "30", "01"], ["Congressional District 2 (119th Congress), Montana", "30", "02"], ["Congressional District 1 (119th Congress), Nebraska", "31", "01"], ["Congressional District 2 (119th Congress), Nebraska", "31", "02"], ["Congressional District 3 (119th Congress), Nebraska", "31", "03"], ["Congressional District 1 (119th Congress), Nevada", "32", "01"], ["Congressional District 2 (119th Congress), Nevada", "32", "02"], ["Congressional District 3 (119th Congress), Nevada", "32", "03"], ["Congressional District 4 (119th Congress), Nevada", "32", "04"], ["Congressional District 1 (119th Congress), New Hampshire", "33", "01"], ["Congressional District 2 (119th Congress), New Hampshire", "33", "02"], ["Congressional Districts not defined (119th Congress), New Hampshire", "33", "ZZ"], ["Congressional District 1 (119th Congress), New Jersey", "34", "01"], ["Congressional District 2 (119th Congress), New Jersey", "34", "02"], ["Congressional District 3 (119th Congress), New Jersey", "34", "03"], ["Congressional District 4 (119th Congress), New Jersey", "34", "04"], ["Congressional District 5 (119th Congress), New Jersey", "34", "05"], ["Congressional District 6 (119th Congress), New Jersey", "34", "06"], ["Congressional District 7 (119th Congress), New Jersey", "34", "07"], ["Congressional District 8 (119th Congress), New Jersey", "34", "08"], ["Congressional District 9 (119th Congress), New Jersey", "34", "09"], ["Congressional District 10 (119th Congress), New Jersey", "34", "10"], ["Congressional District 11 (119th Congress), New Jersey", "34", "11"], ["Congressional District 12 (119th Congress), New Jersey", "34", "12"], ["Congressional District 1 (119th Congress), New Mexico", "35", "01"], ["Congressional District 2 (119th Congress), New Mexico", "35", "02"], ["Congressional District 3 (119th Congress), New Mexico", "35", "03"], ["Congressional District 1 (119th Congress), New York", "36", "01"], ["Congressional District 2 (119th Congress), New York", "36", "02"], ["Congressional District 3 (119th Congress), New York", "36", "03"], ["Congressional District 4 (119th Congress), New York", "36", "04"], ["Congressional District 5 (119th Congress), New York", "36", "05"], ["Congressional District 6 (119th Congress), New York", "36", "06"], ["Congressional District 7 (119th Congress), New York", "36", "07"], ["Congressional District 8 (119th Congress), New York", "36", "08"], ["Congressional District 9 (119th Congress), New York", "36", "09"], ["Congressional District 10 (119th Congress), New York", "36", "10"], ["Congressional District 11 (119th Congress), New York", "36", "11"], ["Congressional District 12 (119th Congress), New York", "36", "12"], ["Congressional District 13 (119th Congress), New York", "36", "13"], ["Congressional District 14 (119th Congress), New York", "36", "14"], ["Congressional District 15 (119th Congress), New York", "36", "15"], ["Congressional District 16 (119th Congress), New York", "36", "16"], ["Congressional District 17 (119th Congress), New York", "36", "17"], ["Congressional District 18 (119th Congress), New York", "36", "18"], ["Congressional District 19 (119th Congress), New York", "36", "19"], ["Congressional District 20 (119th Congress), New York", "36", "20"], ["Congressional District 21 (119th Congress), New York", "36", "21"], ["Congressional District 22 (119th Congress), New York", "36", "22"], ["Congressional District 23 (119th Congress), New York", "36", "23"], ["Congressional District 24 (119th Congress), New York", "36", "24"], ["Congressional District 25 (119th Congress), New York", "36", "25"], ["Congressional District 26 (119th Congress), New York", "36", "26"], ["Congressional District 1 (119th Congress), North Carolina", "37", "01"], ["Congressional District 2 (119th Congress), North Carolina", "37", "02"], ["Congressional District 3 (119th Congress), North Carolina", "37", "03"], ["Congressional District 4 (119th Congress), North Carolina", "37", "04"], ["Congressional District 5 (119th Congress), North Carolina", "37", "05"], ["Congressional District 6 (119th Congress), North Carolina", "37", "06"], ["Congressional District 7 (119th Congress), North Carolina", "37", "07"], ["Congressional District 8 (119th Congress), North Carolina", "37", "08"], ["Congressional District 9 (119th Congress), North Carolina", "37", "09"], ["Congressional District 10 (119th Congress), North Carolina", "37", "10"], ["Congressional District 11 (119th Congress), North Carolina", "37", "11"], ["Congressional District 12 (119th Congress), North Carolina", "37", "12"], ["Congressional District 13 (119th Congress), North Carolina", "37", "13"], ["Congressional District 14 (119th Congress), North Carolina", "37", "14"], ["Congressional District (at Large) (119th Congress), North Dakota", "38", "00"], ["Congressional District 1 (119th Congress), Ohio", "39", "01"], ["Congressional District 2 (119th Congress), Ohio", "39", "02"], ["Congressional District 3 (119th Congress), Ohio", "39", "03"], ["Congressional District 4 (119th Congress), Ohio", "39", "04"], ["Congressional District 5 (119th Congress), Ohio", "39", "05"], ["Congressional District 6 (119th Congress), Ohio", "39", "06"], ["Congressional District 7 (119th Congress), Ohio", "39", "07"], ["Congressional District 8 (119th Congress), Ohio", "39", "08"], ["Congressional District 9 (119th Congress), Ohio", "39", "09"], ["Congressional District 10 (119th Congress), Ohio", "39", "10"], ["Congressional District 11 (119th Congress), Ohio", "39", "11"], ["Congressional District 12 (119th Congress), Ohio", "39", "12"], ["Congressional District 13 (119th Congress), Ohio", "39", "13"], ["Congressional District 14 (119th Congress), Ohio", "39", "14"], ["Congressional District 15 (119th Congress), Ohio", "39", "15"], ["Congressional District 1 (119th Congress), Oklahoma", "40", "01"], ["Congressional District 2 (119th Congress), Oklahoma", "40", "02"], ["Congressional District 3 (119th Congress), Oklahoma", "40", "03"], ["Congressional District 4 (119th Congress), Oklahoma", "40", "04"], ["Congressional District 5 (119th Congress), Oklahoma", "40", "05"], ["Congressional District 1 (119th Congress), Oregon", "41", "01"], ["Congressional District 2 (119th Congress), Oregon", "41", "02"], ["Congressional District 3 (119th Congress), Oregon", "41", "03"], ["Congressional District 4 (119th Congress), Oregon", "41", "04"], ["Congressional District 5 (119th Congress), Oregon", "41", "05"], ["Congressional District 6 (119th Congress), Oregon", "41", "06"], ["Congressional District 1 (119th Congress), Pennsylvania", "42", "01"], ["Congressional District 2 (119th Congress), Pennsylvania", "42", "02"], ["Congressional District 3 (119th Congress), Pennsylvania", "42", "03"], ["Congressional District 4 (119th Congress), Pennsylvania", "42", "04"], ["Congressional District 5 (119th Congress), Pennsylvania", "42", "05"], ["Congressional District 6 (119th Congress), Pennsylvania", "42", "06"], ["Congressional District 7 (119th Congress), Pennsylvania", "42", "07"], ["Congressional District 8 (119th Congress), Pennsylvania", "42", "08"], ["Congressional District 9 (119th Congress), Pennsylvania", "42", "09"], ["Congressional District 10 (119th Congress), Pennsylvania", "42", "10"], ["Congressional District 11 (119th Congress), Pennsylvania", "42", "11"], ["Congressional District 12 (119th Congress), Pennsylvania", "42", "12"], ["Congressional District 13 (119th Congress), Pennsylvania", "42", "13"], ["Congressional District 14 (119th Congress), Pennsylvania", "42", "14"], ["Congressional District 15 (119th Congress), Pennsylvania", "42", "15"], ["Congressional District 16 (119th Congress), Pennsylvania", "42", "16"], ["Congressional District 17 (119th Congress), Pennsylvania", "42", "17"], ["Congressional District 1 (119th Congress), Rhode Island", "44", "01"], ["Congressional District 2 (119th Congress), Rhode Island", "44", "02"], ["Congressional District 1 (119th Congress), South Carolina", "45", "01"], ["Congressional District 2 (119th Congress), South Carolina", "45", "02"], ["Congressional District 3 (119th Congress), South Carolina", "45", "03"], ["Congressional District 4 (119th Congress), South Carolina", "45", "04"], ["Congressional District 5 (119th Congress), South Carolina", "45", "05"], ["Congressional District 6 (119th Congress), South Carolina", "45", "06"], ["Congressional District 7 (119th Congress), South Carolina", "45", "07"], ["Congressional District (at Large) (119th Congress), South Dakota", "46", "00"], ["Congressional District 1 (119th Congress), Tennessee", "47", "01"], ["Congressional District 2 (119th Congress), Tennessee", "47", "02"], ["Congressional District 3 (119th Congress), Tennessee", "47", "03"], ["Congressional District 4 (119th Congress), Tennessee", "47", "04"], ["Congressional District 5 (119th Congress), Tennessee", "47", "05"], ["Congressional District 6 (119th Congress), Tennessee", "47", "06"], ["Congressional District 7 (119th Congress), Tennessee", "47", "07"], ["Congressional District 8 (119th Congress), Tennessee", "47", "08"], ["Congressional District 9 (119th Congress), Tennessee", "47", "09"], ["Congressional District 1 (119th Congress), Texas", "48", "01"], ["Congressional District 2 (119th Congress), Texas", "48", "02"], ["Congressional District 3 (119th Congress), Texas", "48", "03"], ["Congressional District 4 (119th Congress), Texas", "48", "04"], ["Congressional District 5 (119th Congress), Texas", "48", "05"], ["Congressional District 6 (119th Congress), Texas", "48", "06"], ["Congressional District 7 (119th Congress), Texas", "48", "07"], ["Congressional District 8 (119th Congress), Texas", "48", "08"], ["Congressional District 9 (119th Congress), Texas", "48", "09"], ["Congressional District 10 (119th Congress), Texas", "48", "10"], ["Congressional District 11 (119th Congress), Texas", "48", "11"], ["Congressional District 12 (119th Congress), Texas", "48", "12"], ["Congressional District 13 (119th Congress), Texas", "48", "13"], ["Congressional District 14 (119th Congress), Texas", "48", "14"], ["Congressional District 15 (119th Congress), Texas", "48", "15"], ["Congressional District 16 (119th Congress), Texas", "48", "16"], ["Congressional District 17 (119th Congress), Texas", "48", "17"], ["Congressional District 18 (119th Congress), Texas", "48", "18"], ["Congressional District 19 (119th Congress), Texas", "48", "19"], ["Congressional District 20 (119th Congress), Texas", "48", "20"], ["Congressional District 21 (119th Congress), Texas", "48", "21"], ["Congressional District 22 (119th Congress), Texas", "48", "22"], ["Congressional District 23 (119th Congress), Texas", "48", "23"], ["Congressional District 24 (119th Congress), Texas", "48", "24"], ["Congressional District 25 (119th Congress), Texas", "48", "25"], ["Congressional District 26 (119th Congress), Texas", "48", "26"], ["Congressional District 27 (119th Congress), Texas", "48", "27"], ["Congressional District 28 (119th Congress), Texas", "48", "28"], ["Congressional District 29 (119th Congress), Texas", "48", "29"], ["Congressional District 30 (119th Congress), Texas", "48", "30"], ["Congressional District 31 (119th Congress), Texas", "48", "31"], ["Congressional District 32 (119th Congress), Texas", "48", "32"], ["Congressional District 33 (119th Congress), Texas", "48", "33"], ["Congressional District 34 (119th Congress), Texas", "48", "34"], ["Congressional District 35 (119th Congress), Texas", "48", "35"], ["Congressional District 36 (119th Congress), Texas", "48", "36"], ["Congressional District 37 (119th Congress), Texas", "48", "37"], ["Congressional District 38 (119th Congress), Texas", "48", "38"], ["Congressional District 1 (119th Congress), Utah", "49", "01"], ["Congressional District 2 (119th Congress), Utah", "49", "02"], ["Congressional District 3 (119th Congress), Utah", "49", "03"], ["Congressional District 4 (119th Congress), Utah", "49", "04"], ["Congressional District (at Large) (119th Congress), Vermont", "50", "00"], ["Congressional District 1 (119th Congress), Virginia", "51", "01"], ["Congressional District 2 (119th Congress), Virginia", "51", "02"], ["Congressional District 3 (119th Congress), Virginia", "51", "03"], ["Congressional District 4 (119th Congress), Virginia", "51", "04"], ["Congressional District 5 (119th Congress), Virginia", "51", "05"], ["Congressional District 6 (119th Congress), Virginia", "51", "06"], ["Congressional District 7 (119th Congress), Virginia", "51", "07"], ["Congressional District 8 (119th Congress), Virginia", "51", "08"], ["Congressional District 9 (119th Congress), Virginia", "51", "09"], ["Congressional District 10 (119th Congress), Virginia", "51", "10"], ["Congressional District 11 (119th Congress), Virginia", "51", "11"], ["Congressional District 1 (119th Congress), Washington", "53", "01"], ["Congressional District 2 (119th Congress), Washington", "53", "02"], ["Congressional District 3 (119th Congress), Washington", "53", "03"], ["Congressional District 4 (119th Congress), Washington", "53", "04"], ["Congressional District 5 (119th Congress), Washington", "53", "05"], ["Congressional District 6 (119th Congress), Washington", "53", "06"], ["Congressional District 7 (119th Congress), Washington", "53", "07"], ["Congressional District 8 (119th Congress), Washington", "53", "08"], ["Congressional District 9 (119th Congress), Washington", "53", "09"], ["Congressional District 10 (119th Congress), Washington", "53", "10"], ["Congressional District 1 (119th Congress), West Virginia", "54", "01"], ["Congressional District 2 (119th Congress), West Virginia", "54", "02"], ["Congressional District 1 (119th Congress), Wisconsin", "55", "01"], ["Congressional District 2 (119th Congress), Wisconsin", "55", "02"], ["Congressional District 3 (119th Congress), Wisconsin", "55", "03"], ["Congressional District 4 (119th Congress), Wisconsin", "55", "04"], ["Congressional District 5 (119th Congress), Wisconsin", "55", "05"], ["Congressional District 6 (119th Congress), Wisconsin", "55", "06"], ["Congressional District 7 (119th Congress), Wisconsin", "55", "07"], ["Congressional District 8 (119th Congress), Wisconsin", "55", "08"], ["Congressional District (at Large) (119th Congress), Wyoming", "56", "00"], ["Resident Commissioner District (at Large) (119th Congress), Puerto Rico", "72", "98"]] \ No newline at end of file diff --git a/policyengine_us_data/storage/calibration/raw_inputs/acs_S0101_district_2024.json b/policyengine_us_data/storage/calibration/raw_inputs/acs_S0101_district_2024.json new file mode 100644 index 00000000..231bcc41 --- /dev/null +++ b/policyengine_us_data/storage/calibration/raw_inputs/acs_S0101_district_2024.json @@ -0,0 +1 @@ +[["GEO_ID", "NAME", "S0101_C01_001E", "S0101_C01_001EA", "S0101_C01_001M", "S0101_C01_001MA", "S0101_C01_002E", "S0101_C01_002EA", "S0101_C01_002M", "S0101_C01_002MA", "S0101_C01_003E", "S0101_C01_003EA", "S0101_C01_003M", "S0101_C01_003MA", "S0101_C01_004E", "S0101_C01_004EA", "S0101_C01_004M", "S0101_C01_004MA", "S0101_C01_005E", "S0101_C01_005EA", "S0101_C01_005M", "S0101_C01_005MA", "S0101_C01_006E", "S0101_C01_006EA", "S0101_C01_006M", "S0101_C01_006MA", "S0101_C01_007E", "S0101_C01_007EA", "S0101_C01_007M", "S0101_C01_007MA", "S0101_C01_008E", "S0101_C01_008EA", "S0101_C01_008M", "S0101_C01_008MA", "S0101_C01_009E", "S0101_C01_009EA", "S0101_C01_009M", "S0101_C01_009MA", "S0101_C01_010E", "S0101_C01_010EA", "S0101_C01_010M", "S0101_C01_010MA", "S0101_C01_011E", "S0101_C01_011EA", "S0101_C01_011M", "S0101_C01_011MA", "S0101_C01_012E", "S0101_C01_012EA", "S0101_C01_012M", "S0101_C01_012MA", "S0101_C01_013E", "S0101_C01_013EA", "S0101_C01_013M", "S0101_C01_013MA", "S0101_C01_014E", "S0101_C01_014EA", "S0101_C01_014M", "S0101_C01_014MA", "S0101_C01_015E", "S0101_C01_015EA", "S0101_C01_015M", "S0101_C01_015MA", "S0101_C01_016E", "S0101_C01_016EA", "S0101_C01_016M", "S0101_C01_016MA", "S0101_C01_017E", "S0101_C01_017EA", "S0101_C01_017M", "S0101_C01_017MA", "S0101_C01_018E", "S0101_C01_018EA", "S0101_C01_018M", "S0101_C01_018MA", "S0101_C01_019E", "S0101_C01_019EA", "S0101_C01_019M", "S0101_C01_019MA", "S0101_C01_020E", "S0101_C01_020EA", "S0101_C01_020M", "S0101_C01_020MA", "S0101_C01_021E", "S0101_C01_021EA", "S0101_C01_021M", "S0101_C01_021MA", "S0101_C01_022E", "S0101_C01_022EA", "S0101_C01_022M", "S0101_C01_022MA", "S0101_C01_023E", "S0101_C01_023EA", "S0101_C01_023M", "S0101_C01_023MA", "S0101_C01_024E", "S0101_C01_024EA", "S0101_C01_024M", "S0101_C01_024MA", "S0101_C01_025E", "S0101_C01_025EA", "S0101_C01_025M", "S0101_C01_025MA", "S0101_C01_026E", "S0101_C01_026EA", "S0101_C01_026M", "S0101_C01_026MA", "S0101_C01_027E", "S0101_C01_027EA", "S0101_C01_027M", "S0101_C01_027MA", "S0101_C01_028E", "S0101_C01_028EA", "S0101_C01_028M", "S0101_C01_028MA", "S0101_C01_029E", "S0101_C01_029EA", "S0101_C01_029M", "S0101_C01_029MA", "S0101_C01_030E", "S0101_C01_030EA", "S0101_C01_030M", "S0101_C01_030MA", "S0101_C01_031E", "S0101_C01_031EA", "S0101_C01_031M", "S0101_C01_031MA", "S0101_C01_032E", "S0101_C01_032EA", "S0101_C01_032M", "S0101_C01_032MA", "S0101_C01_033E", "S0101_C01_033EA", "S0101_C01_033M", "S0101_C01_033MA", "S0101_C01_034E", "S0101_C01_034EA", "S0101_C01_034M", "S0101_C01_034MA", "S0101_C01_035E", "S0101_C01_035EA", "S0101_C01_035M", "S0101_C01_035MA", "S0101_C01_036E", "S0101_C01_036EA", "S0101_C01_036M", "S0101_C01_036MA", "S0101_C01_037E", "S0101_C01_037EA", "S0101_C01_037M", "S0101_C01_037MA", "S0101_C01_038E", "S0101_C01_038EA", "S0101_C01_038M", "S0101_C01_038MA", "S0101_C02_001E", "S0101_C02_001EA", "S0101_C02_001M", "S0101_C02_001MA", "S0101_C02_002E", "S0101_C02_002EA", "S0101_C02_002M", "S0101_C02_002MA", "S0101_C02_003E", "S0101_C02_003EA", "S0101_C02_003M", "S0101_C02_003MA", "S0101_C02_004E", "S0101_C02_004EA", "S0101_C02_004M", "S0101_C02_004MA", "S0101_C02_005E", "S0101_C02_005EA", "S0101_C02_005M", "S0101_C02_005MA", "S0101_C02_006E", "S0101_C02_006EA", "S0101_C02_006M", "S0101_C02_006MA", "S0101_C02_007E", "S0101_C02_007EA", "S0101_C02_007M", "S0101_C02_007MA", "S0101_C02_008E", "S0101_C02_008EA", "S0101_C02_008M", "S0101_C02_008MA", "S0101_C02_009E", "S0101_C02_009EA", "S0101_C02_009M", "S0101_C02_009MA", "S0101_C02_010E", "S0101_C02_010EA", "S0101_C02_010M", "S0101_C02_010MA", "S0101_C02_011E", "S0101_C02_011EA", "S0101_C02_011M", "S0101_C02_011MA", "S0101_C02_012E", "S0101_C02_012EA", "S0101_C02_012M", "S0101_C02_012MA", "S0101_C02_013E", "S0101_C02_013EA", "S0101_C02_013M", "S0101_C02_013MA", "S0101_C02_014E", "S0101_C02_014EA", "S0101_C02_014M", "S0101_C02_014MA", "S0101_C02_015E", "S0101_C02_015EA", "S0101_C02_015M", "S0101_C02_015MA", "S0101_C02_016E", "S0101_C02_016EA", "S0101_C02_016M", "S0101_C02_016MA", "S0101_C02_017E", "S0101_C02_017EA", "S0101_C02_017M", "S0101_C02_017MA", "S0101_C02_018E", "S0101_C02_018EA", "S0101_C02_018M", "S0101_C02_018MA", "S0101_C02_019E", "S0101_C02_019EA", "S0101_C02_019M", "S0101_C02_019MA", "S0101_C02_020E", "S0101_C02_020EA", "S0101_C02_020M", "S0101_C02_020MA", "S0101_C02_021E", "S0101_C02_021EA", "S0101_C02_021M", "S0101_C02_021MA", "S0101_C02_022E", "S0101_C02_022EA", "S0101_C02_022M", "S0101_C02_022MA", "S0101_C02_023E", "S0101_C02_023EA", "S0101_C02_023M", "S0101_C02_023MA", "S0101_C02_024E", "S0101_C02_024EA", "S0101_C02_024M", "S0101_C02_024MA", "S0101_C02_025E", "S0101_C02_025EA", "S0101_C02_025M", "S0101_C02_025MA", "S0101_C02_026E", "S0101_C02_026EA", "S0101_C02_026M", "S0101_C02_026MA", "S0101_C02_027E", "S0101_C02_027EA", "S0101_C02_027M", "S0101_C02_027MA", "S0101_C02_028E", "S0101_C02_028EA", "S0101_C02_028M", "S0101_C02_028MA", "S0101_C02_029E", "S0101_C02_029EA", "S0101_C02_029M", "S0101_C02_029MA", "S0101_C02_030E", "S0101_C02_030EA", "S0101_C02_030M", "S0101_C02_030MA", "S0101_C02_031E", "S0101_C02_031EA", "S0101_C02_031M", "S0101_C02_031MA", "S0101_C02_032E", "S0101_C02_032EA", "S0101_C02_032M", "S0101_C02_032MA", "S0101_C02_033E", "S0101_C02_033EA", "S0101_C02_033M", "S0101_C02_033MA", "S0101_C02_034E", "S0101_C02_034EA", "S0101_C02_034M", "S0101_C02_034MA", "S0101_C02_035E", "S0101_C02_035EA", "S0101_C02_035M", "S0101_C02_035MA", "S0101_C02_036E", "S0101_C02_036EA", "S0101_C02_036M", "S0101_C02_036MA", "S0101_C02_037E", "S0101_C02_037EA", "S0101_C02_037M", "S0101_C02_037MA", "S0101_C02_038E", "S0101_C02_038EA", "S0101_C02_038M", "S0101_C02_038MA", "S0101_C03_001E", "S0101_C03_001EA", "S0101_C03_001M", "S0101_C03_001MA", "S0101_C03_002E", "S0101_C03_002EA", "S0101_C03_002M", "S0101_C03_002MA", "S0101_C03_003E", "S0101_C03_003EA", "S0101_C03_003M", "S0101_C03_003MA", "S0101_C03_004E", "S0101_C03_004EA", "S0101_C03_004M", "S0101_C03_004MA", "S0101_C03_005E", "S0101_C03_005EA", "S0101_C03_005M", "S0101_C03_005MA", "S0101_C03_006E", "S0101_C03_006EA", "S0101_C03_006M", "S0101_C03_006MA", "S0101_C03_007E", "S0101_C03_007EA", "S0101_C03_007M", "S0101_C03_007MA", "S0101_C03_008E", "S0101_C03_008EA", "S0101_C03_008M", "S0101_C03_008MA", "S0101_C03_009E", "S0101_C03_009EA", "S0101_C03_009M", "S0101_C03_009MA", "S0101_C03_010E", "S0101_C03_010EA", "S0101_C03_010M", "S0101_C03_010MA", "S0101_C03_011E", "S0101_C03_011EA", "S0101_C03_011M", "S0101_C03_011MA", "S0101_C03_012E", "S0101_C03_012EA", "S0101_C03_012M", "S0101_C03_012MA", "S0101_C03_013E", "S0101_C03_013EA", "S0101_C03_013M", "S0101_C03_013MA", "S0101_C03_014E", "S0101_C03_014EA", "S0101_C03_014M", "S0101_C03_014MA", "S0101_C03_015E", "S0101_C03_015EA", "S0101_C03_015M", "S0101_C03_015MA", "S0101_C03_016E", "S0101_C03_016EA", "S0101_C03_016M", "S0101_C03_016MA", "S0101_C03_017E", "S0101_C03_017EA", "S0101_C03_017M", "S0101_C03_017MA", "S0101_C03_018E", "S0101_C03_018EA", "S0101_C03_018M", "S0101_C03_018MA", "S0101_C03_019E", "S0101_C03_019EA", "S0101_C03_019M", "S0101_C03_019MA", "S0101_C03_020E", "S0101_C03_020EA", "S0101_C03_020M", "S0101_C03_020MA", "S0101_C03_021E", "S0101_C03_021EA", "S0101_C03_021M", "S0101_C03_021MA", "S0101_C03_022E", "S0101_C03_022EA", "S0101_C03_022M", "S0101_C03_022MA", "S0101_C03_023E", "S0101_C03_023EA", "S0101_C03_023M", "S0101_C03_023MA", "S0101_C03_024E", "S0101_C03_024EA", "S0101_C03_024M", "S0101_C03_024MA", "S0101_C03_025E", "S0101_C03_025EA", "S0101_C03_025M", "S0101_C03_025MA", "S0101_C03_026E", "S0101_C03_026EA", "S0101_C03_026M", "S0101_C03_026MA", "S0101_C03_027E", "S0101_C03_027EA", "S0101_C03_027M", "S0101_C03_027MA", "S0101_C03_028E", "S0101_C03_028EA", "S0101_C03_028M", "S0101_C03_028MA", "S0101_C03_029E", "S0101_C03_029EA", "S0101_C03_029M", "S0101_C03_029MA", "S0101_C03_030E", "S0101_C03_030EA", "S0101_C03_030M", "S0101_C03_030MA", "S0101_C03_031E", "S0101_C03_031EA", "S0101_C03_031M", "S0101_C03_031MA", "S0101_C03_032E", "S0101_C03_032EA", "S0101_C03_032M", "S0101_C03_032MA", "S0101_C03_033E", "S0101_C03_033EA", "S0101_C03_033M", "S0101_C03_033MA", "S0101_C03_034E", "S0101_C03_034EA", "S0101_C03_034M", "S0101_C03_034MA", "S0101_C03_035E", "S0101_C03_035EA", "S0101_C03_035M", "S0101_C03_035MA", "S0101_C03_036E", "S0101_C03_036EA", "S0101_C03_036M", "S0101_C03_036MA", "S0101_C03_037E", "S0101_C03_037EA", "S0101_C03_037M", "S0101_C03_037MA", "S0101_C03_038E", "S0101_C03_038EA", "S0101_C03_038M", "S0101_C03_038MA", "S0101_C04_001E", "S0101_C04_001EA", "S0101_C04_001M", "S0101_C04_001MA", "S0101_C04_002E", "S0101_C04_002EA", "S0101_C04_002M", "S0101_C04_002MA", "S0101_C04_003E", "S0101_C04_003EA", "S0101_C04_003M", "S0101_C04_003MA", "S0101_C04_004E", "S0101_C04_004EA", "S0101_C04_004M", "S0101_C04_004MA", "S0101_C04_005E", "S0101_C04_005EA", "S0101_C04_005M", "S0101_C04_005MA", "S0101_C04_006E", "S0101_C04_006EA", "S0101_C04_006M", "S0101_C04_006MA", "S0101_C04_007E", "S0101_C04_007EA", "S0101_C04_007M", "S0101_C04_007MA", "S0101_C04_008E", "S0101_C04_008EA", "S0101_C04_008M", "S0101_C04_008MA", "S0101_C04_009E", "S0101_C04_009EA", "S0101_C04_009M", "S0101_C04_009MA", "S0101_C04_010E", "S0101_C04_010EA", "S0101_C04_010M", "S0101_C04_010MA", "S0101_C04_011E", "S0101_C04_011EA", "S0101_C04_011M", "S0101_C04_011MA", "S0101_C04_012E", "S0101_C04_012EA", "S0101_C04_012M", "S0101_C04_012MA", "S0101_C04_013E", "S0101_C04_013EA", "S0101_C04_013M", "S0101_C04_013MA", "S0101_C04_014E", "S0101_C04_014EA", "S0101_C04_014M", "S0101_C04_014MA", "S0101_C04_015E", "S0101_C04_015EA", "S0101_C04_015M", "S0101_C04_015MA", "S0101_C04_016E", "S0101_C04_016EA", "S0101_C04_016M", "S0101_C04_016MA", "S0101_C04_017E", "S0101_C04_017EA", "S0101_C04_017M", "S0101_C04_017MA", "S0101_C04_018E", "S0101_C04_018EA", "S0101_C04_018M", "S0101_C04_018MA", "S0101_C04_019E", "S0101_C04_019EA", "S0101_C04_019M", "S0101_C04_019MA", "S0101_C04_020E", "S0101_C04_020EA", "S0101_C04_020M", "S0101_C04_020MA", "S0101_C04_021E", "S0101_C04_021EA", "S0101_C04_021M", "S0101_C04_021MA", "S0101_C04_022E", "S0101_C04_022EA", "S0101_C04_022M", "S0101_C04_022MA", "S0101_C04_023E", "S0101_C04_023EA", "S0101_C04_023M", "S0101_C04_023MA", "S0101_C04_024E", "S0101_C04_024EA", "S0101_C04_024M", "S0101_C04_024MA", "S0101_C04_025E", "S0101_C04_025EA", "S0101_C04_025M", "S0101_C04_025MA", "S0101_C04_026E", "S0101_C04_026EA", "S0101_C04_026M", "S0101_C04_026MA", "S0101_C04_027E", "S0101_C04_027EA", "S0101_C04_027M", "S0101_C04_027MA", "S0101_C04_028E", "S0101_C04_028EA", "S0101_C04_028M", "S0101_C04_028MA", "S0101_C04_029E", "S0101_C04_029EA", "S0101_C04_029M", "S0101_C04_029MA", "S0101_C04_030E", "S0101_C04_030EA", "S0101_C04_030M", "S0101_C04_030MA", "S0101_C04_031E", "S0101_C04_031EA", "S0101_C04_031M", "S0101_C04_031MA", "S0101_C04_032E", "S0101_C04_032EA", "S0101_C04_032M", "S0101_C04_032MA", "S0101_C04_033E", "S0101_C04_033EA", "S0101_C04_033M", "S0101_C04_033MA", "S0101_C04_034E", "S0101_C04_034EA", "S0101_C04_034M", "S0101_C04_034MA", "S0101_C04_035E", "S0101_C04_035EA", "S0101_C04_035M", "S0101_C04_035MA", "S0101_C04_036E", "S0101_C04_036EA", "S0101_C04_036M", "S0101_C04_036MA", "S0101_C04_037E", "S0101_C04_037EA", "S0101_C04_037M", "S0101_C04_037MA", "S0101_C04_038E", "S0101_C04_038EA", "S0101_C04_038M", "S0101_C04_038MA", "S0101_C05_001E", "S0101_C05_001EA", "S0101_C05_001M", "S0101_C05_001MA", "S0101_C05_002E", "S0101_C05_002EA", "S0101_C05_002M", "S0101_C05_002MA", "S0101_C05_003E", "S0101_C05_003EA", "S0101_C05_003M", "S0101_C05_003MA", "S0101_C05_004E", "S0101_C05_004EA", "S0101_C05_004M", "S0101_C05_004MA", "S0101_C05_005E", "S0101_C05_005EA", "S0101_C05_005M", "S0101_C05_005MA", "S0101_C05_006E", "S0101_C05_006EA", "S0101_C05_006M", "S0101_C05_006MA", "S0101_C05_007E", "S0101_C05_007EA", "S0101_C05_007M", "S0101_C05_007MA", "S0101_C05_008E", "S0101_C05_008EA", "S0101_C05_008M", "S0101_C05_008MA", "S0101_C05_009E", "S0101_C05_009EA", "S0101_C05_009M", "S0101_C05_009MA", "S0101_C05_010E", "S0101_C05_010EA", "S0101_C05_010M", "S0101_C05_010MA", "S0101_C05_011E", "S0101_C05_011EA", "S0101_C05_011M", "S0101_C05_011MA", "S0101_C05_012E", "S0101_C05_012EA", "S0101_C05_012M", "S0101_C05_012MA", "S0101_C05_013E", "S0101_C05_013EA", "S0101_C05_013M", "S0101_C05_013MA", "S0101_C05_014E", "S0101_C05_014EA", "S0101_C05_014M", "S0101_C05_014MA", "S0101_C05_015E", "S0101_C05_015EA", "S0101_C05_015M", "S0101_C05_015MA", "S0101_C05_016E", "S0101_C05_016EA", "S0101_C05_016M", "S0101_C05_016MA", "S0101_C05_017E", "S0101_C05_017EA", "S0101_C05_017M", "S0101_C05_017MA", "S0101_C05_018E", "S0101_C05_018EA", "S0101_C05_018M", "S0101_C05_018MA", "S0101_C05_019E", "S0101_C05_019EA", "S0101_C05_019M", "S0101_C05_019MA", "S0101_C05_020E", "S0101_C05_020EA", "S0101_C05_020M", "S0101_C05_020MA", "S0101_C05_021E", "S0101_C05_021EA", "S0101_C05_021M", "S0101_C05_021MA", "S0101_C05_022E", "S0101_C05_022EA", "S0101_C05_022M", "S0101_C05_022MA", "S0101_C05_023E", "S0101_C05_023EA", "S0101_C05_023M", "S0101_C05_023MA", "S0101_C05_024E", "S0101_C05_024EA", "S0101_C05_024M", "S0101_C05_024MA", "S0101_C05_025E", "S0101_C05_025EA", "S0101_C05_025M", "S0101_C05_025MA", "S0101_C05_026E", "S0101_C05_026EA", "S0101_C05_026M", "S0101_C05_026MA", "S0101_C05_027E", "S0101_C05_027EA", "S0101_C05_027M", "S0101_C05_027MA", "S0101_C05_028E", "S0101_C05_028EA", "S0101_C05_028M", "S0101_C05_028MA", "S0101_C05_029E", "S0101_C05_029EA", "S0101_C05_029M", "S0101_C05_029MA", "S0101_C05_030E", "S0101_C05_030EA", "S0101_C05_030M", "S0101_C05_030MA", "S0101_C05_031E", "S0101_C05_031EA", "S0101_C05_031M", "S0101_C05_031MA", "S0101_C05_032E", "S0101_C05_032EA", "S0101_C05_032M", "S0101_C05_032MA", "S0101_C05_033E", "S0101_C05_033EA", "S0101_C05_033M", "S0101_C05_033MA", "S0101_C05_034E", "S0101_C05_034EA", "S0101_C05_034M", "S0101_C05_034MA", "S0101_C05_035E", "S0101_C05_035EA", "S0101_C05_035M", "S0101_C05_035MA", "S0101_C05_036E", "S0101_C05_036EA", "S0101_C05_036M", "S0101_C05_036MA", "S0101_C05_037E", "S0101_C05_037EA", "S0101_C05_037M", "S0101_C05_037MA", "S0101_C05_038E", "S0101_C05_038EA", "S0101_C05_038M", "S0101_C05_038MA", "S0101_C06_001E", "S0101_C06_001EA", "S0101_C06_001M", "S0101_C06_001MA", "S0101_C06_002E", "S0101_C06_002EA", "S0101_C06_002M", "S0101_C06_002MA", "S0101_C06_003E", "S0101_C06_003EA", "S0101_C06_003M", "S0101_C06_003MA", "S0101_C06_004E", "S0101_C06_004EA", "S0101_C06_004M", "S0101_C06_004MA", "S0101_C06_005E", "S0101_C06_005EA", "S0101_C06_005M", "S0101_C06_005MA", "S0101_C06_006E", "S0101_C06_006EA", "S0101_C06_006M", "S0101_C06_006MA", "S0101_C06_007E", "S0101_C06_007EA", "S0101_C06_007M", "S0101_C06_007MA", "S0101_C06_008E", "S0101_C06_008EA", "S0101_C06_008M", "S0101_C06_008MA", "S0101_C06_009E", "S0101_C06_009EA", "S0101_C06_009M", "S0101_C06_009MA", "S0101_C06_010E", "S0101_C06_010EA", "S0101_C06_010M", "S0101_C06_010MA", "S0101_C06_011E", "S0101_C06_011EA", "S0101_C06_011M", "S0101_C06_011MA", "S0101_C06_012E", "S0101_C06_012EA", "S0101_C06_012M", "S0101_C06_012MA", "S0101_C06_013E", "S0101_C06_013EA", "S0101_C06_013M", "S0101_C06_013MA", "S0101_C06_014E", "S0101_C06_014EA", "S0101_C06_014M", "S0101_C06_014MA", "S0101_C06_015E", "S0101_C06_015EA", "S0101_C06_015M", "S0101_C06_015MA", "S0101_C06_016E", "S0101_C06_016EA", "S0101_C06_016M", "S0101_C06_016MA", "S0101_C06_017E", "S0101_C06_017EA", "S0101_C06_017M", "S0101_C06_017MA", "S0101_C06_018E", "S0101_C06_018EA", "S0101_C06_018M", "S0101_C06_018MA", "S0101_C06_019E", "S0101_C06_019EA", "S0101_C06_019M", "S0101_C06_019MA", "S0101_C06_020E", "S0101_C06_020EA", "S0101_C06_020M", "S0101_C06_020MA", "S0101_C06_021E", "S0101_C06_021EA", "S0101_C06_021M", "S0101_C06_021MA", "S0101_C06_022E", "S0101_C06_022EA", "S0101_C06_022M", "S0101_C06_022MA", "S0101_C06_023E", "S0101_C06_023EA", "S0101_C06_023M", "S0101_C06_023MA", "S0101_C06_024E", "S0101_C06_024EA", "S0101_C06_024M", "S0101_C06_024MA", "S0101_C06_025E", "S0101_C06_025EA", "S0101_C06_025M", "S0101_C06_025MA", "S0101_C06_026E", "S0101_C06_026EA", "S0101_C06_026M", "S0101_C06_026MA", "S0101_C06_027E", "S0101_C06_027EA", "S0101_C06_027M", "S0101_C06_027MA", "S0101_C06_028E", "S0101_C06_028EA", "S0101_C06_028M", "S0101_C06_028MA", "S0101_C06_029E", "S0101_C06_029EA", "S0101_C06_029M", "S0101_C06_029MA", "S0101_C06_030E", "S0101_C06_030EA", "S0101_C06_030M", "S0101_C06_030MA", "S0101_C06_031E", "S0101_C06_031EA", "S0101_C06_031M", "S0101_C06_031MA", "S0101_C06_032E", "S0101_C06_032EA", "S0101_C06_032M", "S0101_C06_032MA", "S0101_C06_033E", "S0101_C06_033EA", "S0101_C06_033M", "S0101_C06_033MA", "S0101_C06_034E", "S0101_C06_034EA", "S0101_C06_034M", "S0101_C06_034MA", "S0101_C06_035E", "S0101_C06_035EA", "S0101_C06_035M", "S0101_C06_035MA", "S0101_C06_036E", "S0101_C06_036EA", "S0101_C06_036M", "S0101_C06_036MA", "S0101_C06_037E", "S0101_C06_037EA", "S0101_C06_037M", "S0101_C06_037MA", "S0101_C06_038E", "S0101_C06_038EA", "S0101_C06_038M", "S0101_C06_038MA", "state", "congressional district"], ["5001900US0101", "Congressional District 1 (119th Congress), Alabama", "760389", null, "8065", null, "39908", null, "2586", null, "45874", null, "3641", null, "54065", null, "4017", null, "45561", null, "2533", null, "39737", null, "2490", null, "43234", null, "2625", null, "44845", null, "2426", null, "48682", null, "3590", null, "49128", null, "4034", null, "45161", null, "2562", null, "49350", null, "2160", null, "48454", null, "3399", null, "50548", null, "3327", null, "49677", null, "2744", null, "39137", null, "2402", null, "33064", null, "2441", null, "20912", null, "1790", null, "13052", null, "1544", null, "99939", null, "3303", null, "30066", null, "1713", null, "169913", null, "3801", null, "55232", null, "3061", null, "271187", null, "4996", null, "609348", null, "6320", null, "590476", null, "5873", null, "565628", null, "6320", null, "206390", null, "4270", null, "186119", null, "3882", null, "155842", null, "2314", null, "67028", null, "1613", null, "41.9", null, "0.6", null, "92.5", null, "1.5", null, "74.9", null, "1.1", null, "35.9", null, "0.7", null, "39.1", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.3", null, "6.0", null, "0.5", null, "7.1", null, "0.5", null, "6.0", null, "0.3", null, "5.2", null, "0.3", null, "5.7", null, "0.3", null, "5.9", null, "0.3", null, "6.4", null, "0.5", null, "6.5", null, "0.5", null, "5.9", null, "0.3", null, "6.5", null, "0.3", null, "6.4", null, "0.4", null, "6.6", null, "0.4", null, "6.5", null, "0.3", null, "5.1", null, "0.3", null, "4.3", null, "0.3", null, "2.8", null, "0.2", null, "1.7", null, "0.2", null, "13.1", null, "0.4", null, "4.0", null, "0.2", null, "22.3", null, "0.4", null, "7.3", null, "0.4", null, "35.7", null, "0.5", null, "80.1", null, "0.5", null, "77.7", null, "0.4", null, "74.4", null, "0.5", null, "27.1", null, "0.6", null, "24.5", null, "0.5", null, "20.5", null, "0.3", null, "8.8", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.3", null, "-888888888.0", "(X)", "365348", null, "5188", null, "20732", null, "1736", null, "22892", null, "2125", null, "25941", null, "2561", null, "21200", null, "1722", null, "20678", null, "1672", null, "21654", null, "1625", null, "20487", null, "1433", null, "23560", null, "2250", null, "24398", null, "2373", null, "20473", null, "1649", null, "24992", null, "1416", null, "23087", null, "2223", null, "24446", null, "2354", null, "22606", null, "1894", null, "19151", null, "1902", null, "13108", null, "1519", null, "10299", null, "1168", null, "5644", null, "1037", null, "48833", null, "2359", null, "14077", null, "1322", null, "83642", null, "3003", null, "27801", null, "1797", null, "131977", null, "3410", null, "290136", null, "3921", null, "281706", null, "3675", null, "269738", null, "3755", null, "95254", null, "2400", null, "84903", null, "2263", null, "70808", null, "1523", null, "29051", null, "1037", null, "41.1", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.7", null, "0.5", null, "6.3", null, "0.6", null, "7.1", null, "0.7", null, "5.8", null, "0.4", null, "5.7", null, "0.5", null, "5.9", null, "0.4", null, "5.6", null, "0.4", null, "6.4", null, "0.6", null, "6.7", null, "0.6", null, "5.6", null, "0.5", null, "6.8", null, "0.4", null, "6.3", null, "0.6", null, "6.7", null, "0.7", null, "6.2", null, "0.5", null, "5.2", null, "0.5", null, "3.6", null, "0.4", null, "2.8", null, "0.3", null, "1.5", null, "0.3", null, "13.4", null, "0.6", null, "3.9", null, "0.3", null, "22.9", null, "0.6", null, "7.6", null, "0.5", null, "36.1", null, "0.8", null, "79.4", null, "0.6", null, "77.1", null, "0.6", null, "73.8", null, "0.7", null, "26.1", null, "0.7", null, "23.2", null, "0.7", null, "19.4", null, "0.4", null, "8.0", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "395041", null, "5030", null, "19176", null, "1754", null, "22982", null, "2836", null, "28124", null, "2844", null, "24361", null, "1958", null, "19059", null, "1760", null, "21580", null, "1618", null, "24358", null, "1864", null, "25122", null, "2724", null, "24730", null, "2953", null, "24688", null, "1738", null, "24358", null, "1342", null, "25367", null, "2367", null, "26102", null, "2189", null, "27071", null, "1925", null, "19986", null, "1681", null, "19956", null, "1667", null, "10613", null, "1250", null, "7408", null, "1091", null, "51106", null, "2430", null, "15989", null, "1389", null, "86271", null, "3137", null, "27431", null, "2247", null, "139210", null, "3177", null, "319212", null, "3896", null, "308770", null, "3378", null, "295890", null, "3756", null, "111136", null, "2776", null, "101216", null, "2429", null, "85034", null, "1555", null, "37977", null, "1094", null, "42.6", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.9", null, "0.4", null, "5.8", null, "0.7", null, "7.1", null, "0.7", null, "6.2", null, "0.5", null, "4.8", null, "0.4", null, "5.5", null, "0.4", null, "6.2", null, "0.5", null, "6.4", null, "0.7", null, "6.3", null, "0.8", null, "6.2", null, "0.4", null, "6.2", null, "0.3", null, "6.4", null, "0.6", null, "6.6", null, "0.5", null, "6.9", null, "0.5", null, "5.1", null, "0.4", null, "5.1", null, "0.4", null, "2.7", null, "0.3", null, "1.9", null, "0.3", null, "12.9", null, "0.5", null, "4.0", null, "0.3", null, "21.8", null, "0.6", null, "6.9", null, "0.6", null, "35.2", null, "0.6", null, "80.8", null, "0.8", null, "78.2", null, "0.6", null, "74.9", null, "0.7", null, "28.1", null, "0.7", null, "25.6", null, "0.6", null, "21.5", null, "0.4", null, "9.6", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "01", "01"], ["5001900US0102", "Congressional District 2 (119th Congress), Alabama", "703362", null, "8412", null, "41855", null, "2508", null, "47427", null, "3269", null, "38646", null, "3360", null, "52783", null, "3290", null, "45696", null, "2683", null, "45647", null, "2920", null, "46852", null, "2303", null, "45141", null, "3760", null, "43656", null, "4265", null, "39262", null, "2673", null, "42265", null, "2751", null, "35900", null, "2832", null, "48973", null, "3366", null, "41604", null, "2689", null, "35554", null, "2625", null, "24745", null, "2105", null, "14667", null, "1832", null, "12689", null, "1561", null, "86073", null, "3996", null, "29841", null, "2292", null, "157769", null, "4165", null, "68638", null, "2507", null, "279775", null, "5577", null, "565906", null, "6379", null, "545593", null, "5700", null, "510940", null, "5664", null, "178232", null, "4072", null, "160685", null, "3780", null, "129259", null, "2261", null, "52101", null, "1654", null, "38.6", null, "0.5", null, "89.5", null, "1.8", null, "68.9", null, "1.2", null, "31.0", null, "0.7", null, "37.9", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.0", null, "0.3", null, "6.7", null, "0.5", null, "5.5", null, "0.5", null, "7.5", null, "0.5", null, "6.5", null, "0.4", null, "6.5", null, "0.4", null, "6.7", null, "0.3", null, "6.4", null, "0.5", null, "6.2", null, "0.6", null, "5.6", null, "0.4", null, "6.0", null, "0.4", null, "5.1", null, "0.4", null, "7.0", null, "0.5", null, "5.9", null, "0.4", null, "5.1", null, "0.4", null, "3.5", null, "0.3", null, "2.1", null, "0.3", null, "1.8", null, "0.2", null, "12.2", null, "0.5", null, "4.2", null, "0.3", null, "22.4", null, "0.4", null, "9.8", null, "0.3", null, "39.8", null, "0.7", null, "80.5", null, "0.5", null, "77.6", null, "0.4", null, "72.6", null, "0.5", null, "25.3", null, "0.6", null, "22.8", null, "0.5", null, "18.4", null, "0.4", null, "7.4", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.1", null, "-888888888.0", "(X)", "332117", null, "5273", null, "20260", null, "1686", null, "25181", null, "2533", null, "19399", null, "2683", null, "24755", null, "2252", null, "23748", null, "1870", null, "21146", null, "2044", null, "22530", null, "1634", null, "20936", null, "2542", null, "21329", null, "2438", null, "19295", null, "1978", null, "20584", null, "2328", null, "16962", null, "1884", null, "22905", null, "1925", null, "18392", null, "1730", null, "14363", null, "1484", null, "10626", null, "1339", null, "5696", null, "943", null, "4010", null, "744", null, "44580", null, "2447", null, "14251", null, "1546", null, "79091", null, "2964", null, "34252", null, "2081", null, "134444", null, "4405", null, "262695", null, "3953", null, "253026", null, "3446", null, "236630", null, "3827", null, "75992", null, "2398", null, "67440", null, "2237", null, "53087", null, "1411", null, "20332", null, "967", null, "37.4", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.1", null, "0.5", null, "7.6", null, "0.7", null, "5.8", null, "0.8", null, "7.5", null, "0.7", null, "7.2", null, "0.5", null, "6.4", null, "0.6", null, "6.8", null, "0.5", null, "6.3", null, "0.8", null, "6.4", null, "0.7", null, "5.8", null, "0.6", null, "6.2", null, "0.7", null, "5.1", null, "0.6", null, "6.9", null, "0.6", null, "5.5", null, "0.5", null, "4.3", null, "0.5", null, "3.2", null, "0.4", null, "1.7", null, "0.3", null, "1.2", null, "0.2", null, "13.4", null, "0.7", null, "4.3", null, "0.4", null, "23.8", null, "0.6", null, "10.3", null, "0.6", null, "40.5", null, "1.1", null, "79.1", null, "0.7", null, "76.2", null, "0.6", null, "71.2", null, "0.8", null, "22.9", null, "0.7", null, "20.3", null, "0.6", null, "16.0", null, "0.4", null, "6.1", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "371245", null, "5619", null, "21595", null, "1685", null, "22246", null, "2410", null, "19247", null, "2262", null, "28028", null, "2876", null, "21948", null, "1873", null, "24501", null, "1512", null, "24322", null, "1716", null, "24205", null, "2578", null, "22327", null, "2647", null, "19967", null, "1716", null, "21681", null, "1250", null, "18938", null, "1717", null, "26068", null, "2180", null, "23212", null, "1890", null, "21191", null, "1952", null, "14119", null, "1501", null, "8971", null, "1436", null, "8679", null, "1374", null, "41493", null, "2584", null, "15590", null, "2203", null, "78678", null, "3523", null, "34386", null, "1476", null, "145331", null, "3692", null, "303211", null, "4032", null, "292567", null, "3139", null, "274310", null, "3269", null, "102240", null, "2384", null, "93245", null, "2461", null, "76172", null, "1528", null, "31769", null, "1294", null, "39.9", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.8", null, "0.4", null, "6.0", null, "0.6", null, "5.2", null, "0.6", null, "7.5", null, "0.7", null, "5.9", null, "0.5", null, "6.6", null, "0.4", null, "6.6", null, "0.5", null, "6.5", null, "0.7", null, "6.0", null, "0.7", null, "5.4", null, "0.4", null, "5.8", null, "0.3", null, "5.1", null, "0.5", null, "7.0", null, "0.6", null, "6.3", null, "0.5", null, "5.7", null, "0.5", null, "3.8", null, "0.4", null, "2.4", null, "0.4", null, "2.3", null, "0.4", null, "11.2", null, "0.6", null, "4.2", null, "0.6", null, "21.2", null, "0.7", null, "9.3", null, "0.4", null, "39.1", null, "0.8", null, "81.7", null, "0.7", null, "78.8", null, "0.7", null, "73.9", null, "0.9", null, "27.5", null, "0.7", null, "25.1", null, "0.7", null, "20.5", null, "0.5", null, "8.6", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "01", "02"], ["5001900US0103", "Congressional District 3 (119th Congress), Alabama", "737665", null, "2247", null, "37043", null, "1267", null, "42181", null, "3076", null, "47177", null, "3036", null, "53434", null, "3052", null, "50873", null, "2582", null, "44350", null, "2805", null, "44934", null, "2543", null, "47102", null, "3582", null, "49131", null, "3862", null, "43998", null, "2232", null, "44927", null, "1859", null, "47198", null, "2738", null, "45076", null, "2726", null, "45334", null, "2393", null, "38300", null, "2473", null, "28214", null, "2186", null, "14853", null, "1645", null, "13540", null, "1836", null, "89358", null, "1851", null, "27352", null, "1513", null, "153753", null, "1348", null, "76955", null, "2551", null, "289824", null, "2576", null, "601971", null, "2572", null, "583912", null, "1864", null, "546215", null, "3923", null, "185317", null, "3187", null, "168749", null, "2648", null, "140241", null, "1719", null, "56607", null, "1297", null, "40.2", null, "0.4", null, "94.6", null, "1.2", null, "66.3", null, "0.7", null, "31.6", null, "0.5", null, "34.7", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.0", null, "0.2", null, "5.7", null, "0.4", null, "6.4", null, "0.4", null, "7.2", null, "0.4", null, "6.9", null, "0.4", null, "6.0", null, "0.4", null, "6.1", null, "0.3", null, "6.4", null, "0.5", null, "6.7", null, "0.5", null, "6.0", null, "0.3", null, "6.1", null, "0.3", null, "6.4", null, "0.4", null, "6.1", null, "0.4", null, "6.1", null, "0.3", null, "5.2", null, "0.3", null, "3.8", null, "0.3", null, "2.0", null, "0.2", null, "1.8", null, "0.2", null, "12.1", null, "0.2", null, "3.7", null, "0.2", null, "20.8", null, "0.2", null, "10.4", null, "0.3", null, "39.3", null, "0.3", null, "81.6", null, "0.3", null, "79.2", null, "0.2", null, "74.0", null, "0.5", null, "25.1", null, "0.4", null, "22.9", null, "0.4", null, "19.0", null, "0.2", null, "7.7", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.0", null, "-888888888.0", "(X)", "358601", null, "2463", null, "18382", null, "1711", null, "21665", null, "2049", null, "23819", null, "2077", null, "26958", null, "2262", null, "26943", null, "1955", null, "21569", null, "2093", null, "22251", null, "1998", null, "23888", null, "2526", null, "22550", null, "2429", null, "21860", null, "1541", null, "21442", null, "1422", null, "23482", null, "1785", null, "20850", null, "1841", null, "20589", null, "1671", null, "17978", null, "1698", null, "12280", null, "1092", null, "7227", null, "977", null, "4868", null, "876", null, "45484", null, "1550", null, "14135", null, "1505", null, "78001", null, "2126", null, "39766", null, "1789", null, "144159", null, "1994", null, "289561", null, "1722", null, "280600", null, "1309", null, "261564", null, "2646", null, "83792", null, "1952", null, "76965", null, "1556", null, "62942", null, "1009", null, "24375", null, "867", null, "39.1", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.1", null, "0.5", null, "6.0", null, "0.6", null, "6.6", null, "0.6", null, "7.5", null, "0.6", null, "7.5", null, "0.5", null, "6.0", null, "0.6", null, "6.2", null, "0.5", null, "6.7", null, "0.7", null, "6.3", null, "0.7", null, "6.1", null, "0.4", null, "6.0", null, "0.4", null, "6.5", null, "0.5", null, "5.8", null, "0.5", null, "5.7", null, "0.5", null, "5.0", null, "0.5", null, "3.4", null, "0.3", null, "2.0", null, "0.3", null, "1.4", null, "0.2", null, "12.7", null, "0.4", null, "3.9", null, "0.4", null, "21.8", null, "0.5", null, "11.1", null, "0.5", null, "40.2", null, "0.5", null, "80.7", null, "0.6", null, "78.2", null, "0.5", null, "72.9", null, "0.8", null, "23.4", null, "0.6", null, "21.5", null, "0.4", null, "17.6", null, "0.3", null, "6.8", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "379064", null, "2802", null, "18661", null, "1632", null, "20516", null, "2408", null, "23358", null, "2170", null, "26476", null, "2230", null, "23930", null, "1684", null, "22781", null, "1815", null, "22683", null, "1588", null, "23214", null, "2189", null, "26581", null, "2498", null, "22138", null, "1230", null, "23485", null, "1124", null, "23716", null, "1934", null, "24226", null, "1960", null, "24745", null, "1637", null, "20322", null, "1706", null, "15934", null, "1771", null, "7626", null, "1295", null, "8672", null, "1429", null, "43874", null, "1659", null, "13217", null, "1174", null, "75752", null, "1988", null, "37189", null, "1765", null, "145665", null, "2208", null, "312410", null, "2241", null, "303312", null, "1823", null, "284651", null, "2691", null, "101525", null, "2316", null, "91784", null, "2079", null, "77299", null, "1100", null, "32232", null, "897", null, "41.4", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.9", null, "0.4", null, "5.4", null, "0.6", null, "6.2", null, "0.6", null, "7.0", null, "0.6", null, "6.3", null, "0.4", null, "6.0", null, "0.5", null, "6.0", null, "0.4", null, "6.1", null, "0.6", null, "7.0", null, "0.6", null, "5.8", null, "0.3", null, "6.2", null, "0.3", null, "6.3", null, "0.5", null, "6.4", null, "0.5", null, "6.5", null, "0.4", null, "5.4", null, "0.5", null, "4.2", null, "0.5", null, "2.0", null, "0.3", null, "2.3", null, "0.4", null, "11.6", null, "0.4", null, "3.5", null, "0.3", null, "20.0", null, "0.4", null, "9.8", null, "0.5", null, "38.4", null, "0.5", null, "82.4", null, "0.5", null, "80.0", null, "0.4", null, "75.1", null, "0.7", null, "26.8", null, "0.6", null, "24.2", null, "0.6", null, "20.4", null, "0.3", null, "8.5", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "01", "03"], ["5001900US0104", "Congressional District 4 (119th Congress), Alabama", "735310", null, "6757", null, "42510", null, "2715", null, "44679", null, "3340", null, "49844", null, "3149", null, "48182", null, "2698", null, "43760", null, "2862", null, "43032", null, "2398", null, "46583", null, "2437", null, "44242", null, "3798", null, "44838", null, "3298", null, "42693", null, "2105", null, "46905", null, "2247", null, "44992", null, "2886", null, "49562", null, "2943", null, "44256", null, "2307", null, "37359", null, "2518", null, "29674", null, "1911", null, "18022", null, "1656", null, "14177", null, "1639", null, "94523", null, "2985", null, "29294", null, "1630", null, "166327", null, "3473", null, "62648", null, "3547", null, "270637", null, "5079", null, "588831", null, "5892", null, "568983", null, "5498", null, "539751", null, "6011", null, "193050", null, "4121", null, "172622", null, "3755", null, "143488", null, "2652", null, "61873", null, "1524", null, "40.6", null, "0.8", null, "97.2", null, "1.5", null, "72.8", null, "1.3", null, "33.7", null, "0.8", null, "39.1", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.8", null, "0.4", null, "6.1", null, "0.4", null, "6.8", null, "0.4", null, "6.6", null, "0.4", null, "6.0", null, "0.4", null, "5.9", null, "0.3", null, "6.3", null, "0.3", null, "6.0", null, "0.5", null, "6.1", null, "0.4", null, "5.8", null, "0.3", null, "6.4", null, "0.3", null, "6.1", null, "0.4", null, "6.7", null, "0.4", null, "6.0", null, "0.3", null, "5.1", null, "0.3", null, "4.0", null, "0.3", null, "2.5", null, "0.2", null, "1.9", null, "0.2", null, "12.9", null, "0.4", null, "4.0", null, "0.2", null, "22.6", null, "0.4", null, "8.5", null, "0.5", null, "36.8", null, "0.5", null, "80.1", null, "0.4", null, "77.4", null, "0.4", null, "73.4", null, "0.6", null, "26.3", null, "0.5", null, "23.5", null, "0.5", null, "19.5", null, "0.4", null, "8.4", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.4", null, "-888888888.0", "(X)", "362452", null, "4310", null, "21415", null, "1862", null, "23536", null, "2341", null, "26632", null, "2387", null, "23775", null, "1897", null, "23053", null, "2212", null, "21207", null, "1792", null, "23936", null, "1815", null, "22277", null, "2671", null, "21661", null, "2106", null, "21083", null, "1402", null, "24460", null, "1883", null, "21160", null, "2155", null, "24401", null, "2078", null, "20784", null, "1483", null, "17147", null, "1686", null, "12635", null, "1137", null, "7128", null, "934", null, "6162", null, "1196", null, "50168", null, "2081", null, "15480", null, "1386", null, "87063", null, "2807", null, "31348", null, "2528", null, "135909", null, "3677", null, "284963", null, "4144", null, "275389", null, "3824", null, "261608", null, "4069", null, "88257", null, "2703", null, "78050", null, "2531", null, "63856", null, "1559", null, "25925", null, "933", null, "39.2", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.9", null, "0.5", null, "6.5", null, "0.6", null, "7.3", null, "0.7", null, "6.6", null, "0.5", null, "6.4", null, "0.6", null, "5.9", null, "0.5", null, "6.6", null, "0.5", null, "6.1", null, "0.7", null, "6.0", null, "0.6", null, "5.8", null, "0.4", null, "6.7", null, "0.5", null, "5.8", null, "0.6", null, "6.7", null, "0.6", null, "5.7", null, "0.4", null, "4.7", null, "0.5", null, "3.5", null, "0.3", null, "2.0", null, "0.3", null, "1.7", null, "0.3", null, "13.8", null, "0.5", null, "4.3", null, "0.4", null, "24.0", null, "0.7", null, "8.6", null, "0.7", null, "37.5", null, "0.8", null, "78.6", null, "0.7", null, "76.0", null, "0.7", null, "72.2", null, "0.8", null, "24.3", null, "0.8", null, "21.5", null, "0.7", null, "17.6", null, "0.5", null, "7.2", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "372858", null, "4612", null, "21095", null, "1794", null, "21143", null, "2217", null, "23212", null, "1747", null, "24407", null, "1957", null, "20707", null, "1652", null, "21825", null, "1420", null, "22647", null, "1606", null, "21965", null, "2329", null, "23177", null, "2096", null, "21610", null, "1554", null, "22445", null, "1255", null, "23832", null, "1754", null, "25161", null, "2034", null, "23472", null, "1907", null, "20212", null, "1933", null, "17039", null, "1654", null, "10894", null, "1412", null, "8015", null, "1020", null, "44355", null, "1826", null, "13814", null, "1159", null, "79264", null, "2850", null, "31300", null, "1776", null, "134728", null, "3032", null, "303868", null, "3262", null, "293594", null, "3092", null, "278143", null, "3411", null, "104793", null, "2550", null, "94572", null, "2281", null, "79632", null, "1830", null, "35948", null, "1092", null, "42.1", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.7", null, "0.5", null, "5.7", null, "0.6", null, "6.2", null, "0.5", null, "6.5", null, "0.5", null, "5.6", null, "0.4", null, "5.9", null, "0.4", null, "6.1", null, "0.4", null, "5.9", null, "0.6", null, "6.2", null, "0.6", null, "5.8", null, "0.4", null, "6.0", null, "0.3", null, "6.4", null, "0.5", null, "6.7", null, "0.5", null, "6.3", null, "0.5", null, "5.4", null, "0.5", null, "4.6", null, "0.4", null, "2.9", null, "0.4", null, "2.1", null, "0.3", null, "11.9", null, "0.4", null, "3.7", null, "0.3", null, "21.3", null, "0.6", null, "8.4", null, "0.5", null, "36.1", null, "0.6", null, "81.5", null, "0.6", null, "78.7", null, "0.6", null, "74.6", null, "0.8", null, "28.1", null, "0.7", null, "25.4", null, "0.6", null, "21.4", null, "0.5", null, "9.6", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "01", "04"], ["5001900US0105", "Congressional District 5 (119th Congress), Alabama", "773877", null, "2762", null, "44253", null, "1682", null, "44441", null, "3225", null, "48357", null, "2915", null, "50214", null, "3129", null, "50229", null, "2791", null, "50314", null, "1638", null, "54442", null, "2615", null, "50870", null, "4716", null, "51046", null, "5050", null, "45755", null, "2107", null, "47697", null, "1700", null, "49402", null, "2948", null, "54355", null, "3055", null, "44666", null, "2776", null, "33845", null, "2727", null, "24669", null, "1953", null, "15682", null, "1933", null, "13640", null, "1840", null, "92798", null, "2327", null, "31028", null, "1679", null, "168079", null, "1332", null, "69415", null, "2569", null, "307115", null, "3338", null, "626597", null, "2654", null, "605798", null, "2172", null, "577628", null, "3749", null, "186857", null, "3272", null, "166143", null, "3224", null, "132502", null, "1812", null, "53991", null, "1077", null, "39.4", null, "0.5", null, "96.6", null, "1.1", null, "63.5", null, "0.6", null, "28.0", null, "0.5", null, "35.5", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.7", null, "0.2", null, "5.7", null, "0.4", null, "6.2", null, "0.4", null, "6.5", null, "0.4", null, "6.5", null, "0.4", null, "6.5", null, "0.2", null, "7.0", null, "0.3", null, "6.6", null, "0.6", null, "6.6", null, "0.7", null, "5.9", null, "0.3", null, "6.2", null, "0.2", null, "6.4", null, "0.4", null, "7.0", null, "0.4", null, "5.8", null, "0.4", null, "4.4", null, "0.4", null, "3.2", null, "0.2", null, "2.0", null, "0.3", null, "1.8", null, "0.2", null, "12.0", null, "0.3", null, "4.0", null, "0.2", null, "21.7", null, "0.1", null, "9.0", null, "0.3", null, "39.7", null, "0.4", null, "81.0", null, "0.3", null, "78.3", null, "0.1", null, "74.6", null, "0.4", null, "24.1", null, "0.4", null, "21.5", null, "0.4", null, "17.1", null, "0.2", null, "7.0", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "0.7", null, "-888888888.0", "(X)", "380148", null, "2538", null, "21658", null, "1299", null, "21063", null, "2336", null, "25535", null, "2196", null, "25517", null, "1938", null, "26121", null, "1863", null, "26017", null, "1244", null, "27764", null, "1625", null, "26615", null, "2941", null, "24137", null, "3061", null, "22170", null, "1378", null, "23705", null, "1081", null, "23465", null, "1983", null, "27051", null, "2036", null, "21476", null, "1788", null, "15663", null, "1657", null, "10080", null, "1069", null, "6996", null, "1142", null, "5115", null, "975", null, "46598", null, "1795", null, "16008", null, "970", null, "84264", null, "2094", null, "35630", null, "1479", null, "156171", null, "1952", null, "306488", null, "1878", null, "295884", null, "1669", null, "282441", null, "2515", null, "86381", null, "2051", null, "75944", null, "1900", null, "59330", null, "1076", null, "22191", null, "624", null, "37.9", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.7", null, "0.3", null, "5.5", null, "0.6", null, "6.7", null, "0.6", null, "6.7", null, "0.5", null, "6.9", null, "0.5", null, "6.8", null, "0.3", null, "7.3", null, "0.4", null, "7.0", null, "0.8", null, "6.3", null, "0.8", null, "5.8", null, "0.4", null, "6.2", null, "0.3", null, "6.2", null, "0.5", null, "7.1", null, "0.5", null, "5.6", null, "0.5", null, "4.1", null, "0.4", null, "2.7", null, "0.3", null, "1.8", null, "0.3", null, "1.3", null, "0.3", null, "12.3", null, "0.4", null, "4.2", null, "0.2", null, "22.2", null, "0.4", null, "9.4", null, "0.4", null, "41.1", null, "0.5", null, "80.6", null, "0.5", null, "77.8", null, "0.4", null, "74.3", null, "0.7", null, "22.7", null, "0.6", null, "20.0", null, "0.5", null, "15.6", null, "0.3", null, "5.8", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "393729", null, "2766", null, "22595", null, "1719", null, "23378", null, "2486", null, "22822", null, "2259", null, "24697", null, "2188", null, "24108", null, "2084", null, "24297", null, "1178", null, "26678", null, "1606", null, "24255", null, "2670", null, "26909", null, "2834", null, "23585", null, "1280", null, "23992", null, "1041", null, "25937", null, "2132", null, "27304", null, "2080", null, "23190", null, "1792", null, "18182", null, "1810", null, "14589", null, "1569", null, "8686", null, "1328", null, "8525", null, "1485", null, "46200", null, "1485", null, "15020", null, "1542", null, "83815", null, "2079", null, "33785", null, "1891", null, "150944", null, "2338", null, "320109", null, "1873", null, "309914", null, "1570", null, "295187", null, "2667", null, "100476", null, "2239", null, "90199", null, "2326", null, "73172", null, "1268", null, "31800", null, "914", null, "40.7", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.7", null, "0.4", null, "5.9", null, "0.6", null, "5.8", null, "0.6", null, "6.3", null, "0.6", null, "6.1", null, "0.5", null, "6.2", null, "0.3", null, "6.8", null, "0.4", null, "6.2", null, "0.7", null, "6.8", null, "0.7", null, "6.0", null, "0.3", null, "6.1", null, "0.3", null, "6.6", null, "0.5", null, "6.9", null, "0.5", null, "5.9", null, "0.5", null, "4.6", null, "0.5", null, "3.7", null, "0.4", null, "2.2", null, "0.3", null, "2.2", null, "0.4", null, "11.7", null, "0.4", null, "3.8", null, "0.4", null, "21.3", null, "0.4", null, "8.6", null, "0.5", null, "38.3", null, "0.6", null, "81.3", null, "0.4", null, "78.7", null, "0.4", null, "75.0", null, "0.6", null, "25.5", null, "0.6", null, "22.9", null, "0.6", null, "18.6", null, "0.3", null, "8.1", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "01", "05"], ["5001900US0106", "Congressional District 6 (119th Congress), Alabama", "728184", null, "10801", null, "40307", null, "2821", null, "44499", null, "3391", null, "48935", null, "3384", null, "52377", null, "3337", null, "45587", null, "2798", null, "44283", null, "3427", null, "49093", null, "3182", null, "45157", null, "3458", null, "49893", null, "3888", null, "48389", null, "2889", null, "47676", null, "2825", null, "42274", null, "3535", null, "45341", null, "3675", null, "40614", null, "2623", null, "31066", null, "2471", null, "24823", null, "2034", null, "15406", null, "1728", null, "12464", null, "1539", null, "93434", null, "3678", null, "33878", null, "2357", null, "167619", null, "5207", null, "64086", null, "3198", null, "286390", null, "6938", null, "583409", null, "7924", null, "560565", null, "7873", null, "534760", null, "7447", null, "169714", null, "4941", null, "150783", null, "4668", null, "124373", null, "2933", null, "52693", null, "1913", null, "39.3", null, "0.6", null, "94.1", null, "1.8", null, "66.9", null, "1.4", null, "28.5", null, "0.9", null, "38.4", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.4", null, "6.1", null, "0.4", null, "6.7", null, "0.5", null, "7.2", null, "0.4", null, "6.3", null, "0.4", null, "6.1", null, "0.4", null, "6.7", null, "0.4", null, "6.2", null, "0.5", null, "6.9", null, "0.5", null, "6.6", null, "0.4", null, "6.5", null, "0.4", null, "5.8", null, "0.5", null, "6.2", null, "0.5", null, "5.6", null, "0.4", null, "4.3", null, "0.3", null, "3.4", null, "0.3", null, "2.1", null, "0.2", null, "1.7", null, "0.2", null, "12.8", null, "0.4", null, "4.7", null, "0.3", null, "23.0", null, "0.5", null, "8.8", null, "0.4", null, "39.3", null, "0.6", null, "80.1", null, "0.5", null, "77.0", null, "0.5", null, "73.4", null, "0.6", null, "23.3", null, "0.7", null, "20.7", null, "0.7", null, "17.1", null, "0.5", null, "7.2", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "0.8", null, "-888888888.0", "(X)", "353104", null, "6528", null, "19895", null, "2003", null, "24992", null, "2433", null, "23138", null, "2596", null, "28260", null, "2556", null, "20989", null, "1935", null, "22159", null, "2021", null, "23705", null, "2062", null, "21765", null, "2175", null, "23894", null, "2476", null, "22811", null, "1845", null, "22857", null, "1466", null, "21986", null, "2200", null, "21088", null, "2031", null, "20864", null, "1661", null, "13406", null, "1577", null, "10718", null, "1252", null, "7309", null, "1242", null, "3268", null, "638", null, "48130", null, "2658", null, "17010", null, "1997", null, "85035", null, "3921", null, "32239", null, "2384", null, "140772", null, "4369", null, "279391", null, "5013", null, "268069", null, "4806", null, "253275", null, "4769", null, "76653", null, "2798", null, "66958", null, "2759", null, "55565", null, "1848", null, "21295", null, "1104", null, "38.0", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.6", null, "0.5", null, "7.1", null, "0.7", null, "6.6", null, "0.7", null, "8.0", null, "0.7", null, "5.9", null, "0.5", null, "6.3", null, "0.6", null, "6.7", null, "0.6", null, "6.2", null, "0.6", null, "6.8", null, "0.7", null, "6.5", null, "0.5", null, "6.5", null, "0.4", null, "6.2", null, "0.6", null, "6.0", null, "0.6", null, "5.9", null, "0.5", null, "3.8", null, "0.4", null, "3.0", null, "0.4", null, "2.1", null, "0.3", null, "0.9", null, "0.2", null, "13.6", null, "0.7", null, "4.8", null, "0.5", null, "24.1", null, "0.9", null, "9.1", null, "0.6", null, "39.9", null, "0.8", null, "79.1", null, "0.8", null, "75.9", null, "0.9", null, "71.7", null, "1.0", null, "21.7", null, "0.9", null, "19.0", null, "0.8", null, "15.7", null, "0.6", null, "6.0", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "375080", null, "6275", null, "20412", null, "1978", null, "19507", null, "2232", null, "25797", null, "1792", null, "24117", null, "1874", null, "24598", null, "2169", null, "22124", null, "2361", null, "25388", null, "2053", null, "23392", null, "2352", null, "25999", null, "2458", null, "25578", null, "1711", null, "24819", null, "1936", null, "20288", null, "2069", null, "24253", null, "2327", null, "19750", null, "1825", null, "17660", null, "1486", null, "14105", null, "1622", null, "8097", null, "1076", null, "9196", null, "1271", null, "45304", null, "2229", null, "16868", null, "1516", null, "82584", null, "3432", null, "31847", null, "2258", null, "145618", null, "4205", null, "304018", null, "4509", null, "292496", null, "4405", null, "281485", null, "3886", null, "93061", null, "2911", null, "83825", null, "2630", null, "68808", null, "1755", null, "31398", null, "1328", null, "40.3", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.5", null, "5.2", null, "0.6", null, "6.9", null, "0.5", null, "6.4", null, "0.5", null, "6.6", null, "0.6", null, "5.9", null, "0.6", null, "6.8", null, "0.6", null, "6.2", null, "0.6", null, "6.9", null, "0.7", null, "6.8", null, "0.5", null, "6.6", null, "0.5", null, "5.4", null, "0.5", null, "6.5", null, "0.6", null, "5.3", null, "0.5", null, "4.7", null, "0.4", null, "3.8", null, "0.4", null, "2.2", null, "0.3", null, "2.5", null, "0.3", null, "12.1", null, "0.5", null, "4.5", null, "0.4", null, "22.0", null, "0.7", null, "8.5", null, "0.6", null, "38.8", null, "0.8", null, "81.1", null, "0.7", null, "78.0", null, "0.7", null, "75.0", null, "0.8", null, "24.8", null, "0.8", null, "22.3", null, "0.8", null, "18.3", null, "0.6", null, "8.4", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "01", "06"], ["5001900US0107", "Congressional District 7 (119th Congress), Alabama", "718912", null, "13154", null, "39882", null, "2706", null, "43712", null, "3624", null, "41973", null, "3578", null, "55827", null, "3757", null, "55810", null, "4142", null, "46100", null, "3673", null, "51638", null, "3561", null, "49712", null, "3862", null, "39787", null, "4083", null, "39194", null, "3293", null, "40075", null, "2711", null, "41515", null, "2809", null, "44226", null, "3109", null, "42489", null, "2691", null, "38071", null, "3068", null, "22288", null, "1897", null, "13524", null, "1718", null, "13089", null, "1514", null, "85685", null, "4199", null, "23176", null, "2403", null, "148743", null, "5414", null, "88461", null, "4175", null, "298874", null, "8610", null, "584076", null, "10854", null, "570169", null, "10186", null, "521866", null, "9877", null, "173687", null, "4244", null, "156420", null, "3892", null, "129461", null, "3233", null, "48901", null, "1832", null, "37.3", null, "0.6", null, "89.1", null, "1.9", null, "63.1", null, "1.6", null, "29.4", null, "1.1", null, "33.8", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.4", null, "6.1", null, "0.5", null, "5.8", null, "0.5", null, "7.8", null, "0.5", null, "7.8", null, "0.5", null, "6.4", null, "0.5", null, "7.2", null, "0.5", null, "6.9", null, "0.5", null, "5.5", null, "0.6", null, "5.5", null, "0.4", null, "5.6", null, "0.4", null, "5.8", null, "0.4", null, "6.2", null, "0.4", null, "5.9", null, "0.4", null, "5.3", null, "0.4", null, "3.1", null, "0.3", null, "1.9", null, "0.2", null, "1.8", null, "0.2", null, "11.9", null, "0.5", null, "3.2", null, "0.3", null, "20.7", null, "0.6", null, "12.3", null, "0.5", null, "41.6", null, "0.7", null, "81.2", null, "0.6", null, "79.3", null, "0.6", null, "72.6", null, "0.7", null, "24.2", null, "0.6", null, "21.8", null, "0.6", null, "18.0", null, "0.6", null, "6.8", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.7", null, "-888888888.0", "(X)", "338781", null, "7862", null, "19539", null, "2168", null, "21895", null, "2447", null, "20409", null, "2912", null, "26980", null, "2409", null, "25478", null, "2835", null, "23661", null, "2146", null, "25929", null, "2501", null, "24936", null, "2851", null, "17731", null, "2608", null, "18205", null, "1812", null, "18879", null, "1727", null, "19857", null, "1920", null, "20537", null, "2247", null, "18148", null, "1892", null, "16899", null, "1899", null, "9176", null, "1073", null, "6011", null, "1119", null, "4511", null, "854", null, "42304", null, "2976", null, "13034", null, "1544", null, "74877", null, "4025", null, "39424", null, "3157", null, "144715", null, "5387", null, "272863", null, "6409", null, "263904", null, "5869", null, "242586", null, "5521", null, "75282", null, "2740", null, "67091", null, "2481", null, "54745", null, "2172", null, "19698", null, "1319", null, "36.0", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.8", null, "0.6", null, "6.5", null, "0.7", null, "6.0", null, "0.8", null, "8.0", null, "0.6", null, "7.5", null, "0.8", null, "7.0", null, "0.6", null, "7.7", null, "0.7", null, "7.4", null, "0.8", null, "5.2", null, "0.8", null, "5.4", null, "0.5", null, "5.6", null, "0.5", null, "5.9", null, "0.6", null, "6.1", null, "0.6", null, "5.4", null, "0.6", null, "5.0", null, "0.6", null, "2.7", null, "0.3", null, "1.8", null, "0.3", null, "1.3", null, "0.3", null, "12.5", null, "0.8", null, "3.8", null, "0.4", null, "22.1", null, "0.9", null, "11.6", null, "0.8", null, "42.7", null, "1.0", null, "80.5", null, "0.9", null, "77.9", null, "0.9", null, "71.6", null, "1.1", null, "22.2", null, "0.9", null, "19.8", null, "0.8", null, "16.2", null, "0.7", null, "5.8", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "380131", null, "7362", null, "20343", null, "1758", null, "21817", null, "2514", null, "21564", null, "2437", null, "28847", null, "3012", null, "30332", null, "2725", null, "22439", null, "2336", null, "25709", null, "2304", null, "24776", null, "2481", null, "22056", null, "2662", null, "20989", null, "2186", null, "21196", null, "2086", null, "21658", null, "2024", null, "23689", null, "2038", null, "24341", null, "1779", null, "21172", null, "1867", null, "13112", null, "1551", null, "7513", null, "1271", null, "8578", null, "1091", null, "43381", null, "2727", null, "10142", null, "1821", null, "73866", null, "3854", null, "49037", null, "2778", null, "154159", null, "4551", null, "311213", null, "5585", null, "306265", null, "5390", null, "279280", null, "5565", null, "98405", null, "2769", null, "89329", null, "2625", null, "74716", null, "1793", null, "29203", null, "1135", null, "38.6", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.4", null, "5.7", null, "0.6", null, "5.7", null, "0.6", null, "7.6", null, "0.8", null, "8.0", null, "0.7", null, "5.9", null, "0.6", null, "6.8", null, "0.6", null, "6.5", null, "0.7", null, "5.8", null, "0.7", null, "5.5", null, "0.6", null, "5.6", null, "0.5", null, "5.7", null, "0.5", null, "6.2", null, "0.5", null, "6.4", null, "0.5", null, "5.6", null, "0.5", null, "3.4", null, "0.4", null, "2.0", null, "0.3", null, "2.3", null, "0.3", null, "11.4", null, "0.6", null, "2.7", null, "0.5", null, "19.4", null, "0.8", null, "12.9", null, "0.7", null, "40.6", null, "0.8", null, "81.9", null, "0.8", null, "80.6", null, "0.8", null, "73.5", null, "1.1", null, "25.9", null, "0.8", null, "23.5", null, "0.8", null, "19.7", null, "0.6", null, "7.7", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "01", "07"], ["5001900US0200", "Congressional District (at Large) (119th Congress), Alaska", "740133", null, "-555555555", "*****", "44922", null, "1672", null, "46547", null, "2971", null, "53079", null, "3110", null, "47163", null, "2256", null, "50498", null, "2169", null, "53084", null, "2022", null, "60227", null, "2516", null, "58570", null, "2742", null, "49628", null, "2945", null, "43637", null, "2269", null, "38983", null, "1429", null, "36095", null, "2606", null, "48285", null, "2690", null, "37683", null, "2228", null, "32900", null, "2348", null, "20507", null, "1778", null, "9975", null, "1442", null, "8350", null, "1574", null, "99626", null, "1635", null, "29650", null, "1234", null, "174198", null, "835", null, "68011", null, "2504", null, "319170", null, "2542", null, "586083", null, "1667", null, "565935", null, "835", null, "539862", null, "2238", null, "157700", null, "2949", null, "138571", null, "2670", null, "109415", null, "1468", null, "38832", null, "1207", null, "36.3", null, "0.3", null, "111.6", null, "1.6", null, "62.1", null, "0.6", null, "24.0", null, "0.4", null, "38.2", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.1", null, "0.2", null, "6.3", null, "0.4", null, "7.2", null, "0.4", null, "6.4", null, "0.3", null, "6.8", null, "0.3", null, "7.2", null, "0.3", null, "8.1", null, "0.3", null, "7.9", null, "0.4", null, "6.7", null, "0.4", null, "5.9", null, "0.3", null, "5.3", null, "0.2", null, "4.9", null, "0.4", null, "6.5", null, "0.4", null, "5.1", null, "0.3", null, "4.4", null, "0.3", null, "2.8", null, "0.2", null, "1.3", null, "0.2", null, "1.1", null, "0.2", null, "13.5", null, "0.2", null, "4.0", null, "0.2", null, "23.5", null, "0.1", null, "9.2", null, "0.3", null, "43.1", null, "0.3", null, "79.2", null, "0.2", null, "76.5", null, "0.1", null, "72.9", null, "0.3", null, "21.3", null, "0.4", null, "18.7", null, "0.4", null, "14.8", null, "0.2", null, "5.2", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.3", null, "-888888888.0", "(X)", "2.1", null, "-888888888.0", "(X)", "390301", null, "2584", null, "23437", null, "1572", null, "22605", null, "1865", null, "27855", null, "2019", null, "25912", null, "1798", null, "29529", null, "1640", null, "28734", null, "1368", null, "31037", null, "1404", null, "30878", null, "1946", null, "26926", null, "2193", null, "23528", null, "1562", null, "20445", null, "1057", null, "19161", null, "1797", null, "25179", null, "1747", null, "19751", null, "1723", null, "16459", null, "1490", null, "10296", null, "1287", null, "5012", null, "1024", null, "3557", null, "1000", null, "50460", null, "1340", null, "15902", null, "1219", null, "89799", null, "2118", null, "39539", null, "1782", null, "173016", null, "1917", null, "311354", null, "1916", null, "300502", null, "1501", null, "285253", null, "2245", null, "80254", null, "1999", null, "70709", null, "2046", null, "55075", null, "1264", null, "18865", null, "802", null, "35.9", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.0", null, "0.4", null, "5.8", null, "0.5", null, "7.1", null, "0.5", null, "6.6", null, "0.5", null, "7.6", null, "0.4", null, "7.4", null, "0.3", null, "8.0", null, "0.4", null, "7.9", null, "0.5", null, "6.9", null, "0.6", null, "6.0", null, "0.4", null, "5.2", null, "0.3", null, "4.9", null, "0.5", null, "6.5", null, "0.5", null, "5.1", null, "0.4", null, "4.2", null, "0.4", null, "2.6", null, "0.3", null, "1.3", null, "0.3", null, "0.9", null, "0.3", null, "12.9", null, "0.3", null, "4.1", null, "0.3", null, "23.0", null, "0.4", null, "10.1", null, "0.5", null, "44.3", null, "0.5", null, "79.8", null, "0.5", null, "77.0", null, "0.4", null, "73.1", null, "0.5", null, "20.6", null, "0.5", null, "18.1", null, "0.5", null, "14.1", null, "0.3", null, "4.8", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "349832", null, "2584", null, "21485", null, "1819", null, "23942", null, "1942", null, "25224", null, "1996", null, "21251", null, "1487", null, "20969", null, "1679", null, "24350", null, "1543", null, "29190", null, "1694", null, "27692", null, "1710", null, "22702", null, "1845", null, "20109", null, "1386", null, "18538", null, "795", null, "16934", null, "1411", null, "23106", null, "1583", null, "17932", null, "1437", null, "16441", null, "1568", null, "10211", null, "1075", null, "4963", null, "964", null, "4793", null, "832", null, "49166", null, "1085", null, "13748", null, "1154", null, "84399", null, "2134", null, "28472", null, "1733", null, "146154", null, "2151", null, "274729", null, "1624", null, "265433", null, "1282", null, "254609", null, "1554", null, "77446", null, "1837", null, "67862", null, "1765", null, "54340", null, "1161", null, "19967", null, "783", null, "36.6", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.1", null, "0.5", null, "6.8", null, "0.6", null, "7.2", null, "0.6", null, "6.1", null, "0.4", null, "6.0", null, "0.5", null, "7.0", null, "0.4", null, "8.3", null, "0.5", null, "7.9", null, "0.5", null, "6.5", null, "0.5", null, "5.7", null, "0.4", null, "5.3", null, "0.2", null, "4.8", null, "0.4", null, "6.6", null, "0.5", null, "5.1", null, "0.4", null, "4.7", null, "0.4", null, "2.9", null, "0.3", null, "1.4", null, "0.3", null, "1.4", null, "0.2", null, "14.1", null, "0.3", null, "3.9", null, "0.3", null, "24.1", null, "0.5", null, "8.1", null, "0.5", null, "41.8", null, "0.5", null, "78.5", null, "0.5", null, "75.9", null, "0.5", null, "72.8", null, "0.5", null, "22.1", null, "0.5", null, "19.4", null, "0.5", null, "15.5", null, "0.3", null, "5.7", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "02", "00"], ["5001900US0401", "Congressional District 1 (119th Congress), Arizona", "819479", null, "20940", null, "37940", null, "4637", null, "38011", null, "4187", null, "39485", null, "4884", null, "39132", null, "5124", null, "38608", null, "4696", null, "60637", null, "5925", null, "64433", null, "6221", null, "52280", null, "4995", null, "52457", null, "4986", null, "51716", null, "5095", null, "47926", null, "4831", null, "52015", null, "3808", null, "59849", null, "4764", null, "52247", null, "4174", null, "46995", null, "3810", null, "40843", null, "3522", null, "24858", null, "2877", null, "20047", null, "2625", null, "77496", null, "7165", null, "25760", null, "3499", null, "141196", null, "10482", null, "51980", null, "6454", null, "307547", null, "12829", null, "695033", null, "17280", null, "678283", null, "16105", null, "657228", null, "14685", null, "244839", null, "8781", null, "221132", null, "8646", null, "184990", null, "8124", null, "85748", null, "5735", null, "43.9", null, "1.0", null, "96.8", null, "3.1", null, "66.1", null, "3.1", null, "37.5", null, "2.2", null, "28.6", null, "2.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.6", null, "0.5", null, "4.6", null, "0.5", null, "4.8", null, "0.6", null, "4.8", null, "0.6", null, "4.7", null, "0.5", null, "7.4", null, "0.7", null, "7.9", null, "0.7", null, "6.4", null, "0.6", null, "6.4", null, "0.6", null, "6.3", null, "0.6", null, "5.8", null, "0.5", null, "6.3", null, "0.5", null, "7.3", null, "0.6", null, "6.4", null, "0.5", null, "5.7", null, "0.5", null, "5.0", null, "0.4", null, "3.0", null, "0.4", null, "2.4", null, "0.3", null, "9.5", null, "0.8", null, "3.1", null, "0.4", null, "17.2", null, "1.0", null, "6.3", null, "0.7", null, "37.5", null, "1.1", null, "84.8", null, "0.9", null, "82.8", null, "1.0", null, "80.2", null, "1.2", null, "29.9", null, "1.2", null, "27.0", null, "1.2", null, "22.6", null, "1.1", null, "10.5", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.5", null, "-888888888.0", "(X)", "403062", null, "12273", null, "19095", null, "3257", null, "19845", null, "3151", null, "20147", null, "3108", null, "22295", null, "3100", null, "17711", null, "2713", null, "32957", null, "4519", null, "31897", null, "3930", null, "26904", null, "3530", null, "26060", null, "3135", null, "27764", null, "3260", null, "21815", null, "3186", null, "23298", null, "2127", null, "28528", null, "3550", null, "23589", null, "2577", null, "22315", null, "2289", null, "19071", null, "2178", null, "11370", null, "1856", null, "8401", null, "1695", null, "39992", null, "4545", null, "14459", null, "2274", null, "73546", null, "6653", null, "25547", null, "3716", null, "157824", null, "8271", null, "338845", null, "9946", null, "329516", null, "9535", null, "318177", null, "9046", null, "113274", null, "4938", null, "101663", null, "4629", null, "84746", null, "4364", null, "38842", null, "3213", null, "42.1", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.7", null, "0.8", null, "4.9", null, "0.7", null, "5.0", null, "0.7", null, "5.5", null, "0.7", null, "4.4", null, "0.7", null, "8.2", null, "1.0", null, "7.9", null, "1.0", null, "6.7", null, "0.8", null, "6.5", null, "0.8", null, "6.9", null, "0.8", null, "5.4", null, "0.7", null, "5.8", null, "0.5", null, "7.1", null, "0.9", null, "5.9", null, "0.7", null, "5.5", null, "0.6", null, "4.7", null, "0.6", null, "2.8", null, "0.5", null, "2.1", null, "0.4", null, "9.9", null, "1.0", null, "3.6", null, "0.5", null, "18.2", null, "1.4", null, "6.3", null, "0.9", null, "39.2", null, "1.4", null, "84.1", null, "1.2", null, "81.8", null, "1.4", null, "78.9", null, "1.4", null, "28.1", null, "1.4", null, "25.2", null, "1.3", null, "21.0", null, "1.2", null, "9.6", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "416417", null, "12480", null, "18845", null, "3210", null, "18166", null, "3097", null, "19338", null, "3670", null, "16837", null, "3299", null, "20897", null, "3224", null, "27680", null, "3394", null, "32536", null, "3549", null, "25376", null, "2981", null, "26397", null, "3163", null, "23952", null, "2845", null, "26111", null, "2828", null, "28717", null, "2948", null, "31321", null, "2939", null, "28658", null, "2770", null, "24680", null, "2365", null, "21772", null, "2304", null, "13488", null, "1800", null, "11646", null, "1672", null, "37504", null, "4147", null, "11301", null, "2475", null, "67650", null, "6277", null, "26433", null, "4073", null, "149723", null, "7479", null, "356188", null, "10502", null, "348767", null, "9692", null, "339051", null, "8802", null, "131565", null, "5859", null, "119469", null, "5449", null, "100244", null, "4850", null, "46906", null, "3733", null, "45.4", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.5", null, "0.7", null, "4.4", null, "0.7", null, "4.6", null, "0.9", null, "4.0", null, "0.7", null, "5.0", null, "0.7", null, "6.6", null, "0.8", null, "7.8", null, "0.8", null, "6.1", null, "0.7", null, "6.3", null, "0.7", null, "5.8", null, "0.6", null, "6.3", null, "0.6", null, "6.9", null, "0.7", null, "7.5", null, "0.7", null, "6.9", null, "0.7", null, "5.9", null, "0.6", null, "5.2", null, "0.5", null, "3.2", null, "0.4", null, "2.8", null, "0.4", null, "9.0", null, "0.9", null, "2.7", null, "0.6", null, "16.2", null, "1.3", null, "6.3", null, "0.9", null, "36.0", null, "1.3", null, "85.5", null, "1.1", null, "83.8", null, "1.3", null, "81.4", null, "1.4", null, "31.6", null, "1.4", null, "28.7", null, "1.3", null, "24.1", null, "1.2", null, "11.3", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "04", "01"], ["5001900US0402", "Congressional District 2 (119th Congress), Arizona", "853923", null, "9681", null, "37860", null, "2852", null, "40263", null, "3726", null, "55058", null, "3468", null, "60865", null, "3938", null, "55426", null, "3715", null, "47721", null, "3141", null, "47164", null, "3226", null, "50354", null, "4033", null, "53754", null, "4138", null, "46408", null, "2678", null, "46950", null, "2664", null, "44750", null, "3502", null, "59176", null, "3487", null, "64640", null, "3672", null, "56649", null, "3276", null, "46905", null, "3114", null, "26095", null, "2121", null, "13885", null, "1766", null, "95321", null, "4027", null, "33697", null, "2321", null, "166878", null, "4934", null, "82594", null, "3180", null, "315284", null, "6199", null, "709043", null, "7033", null, "687045", null, "6683", null, "647135", null, "6598", null, "267350", null, "4860", null, "244442", null, "4950", null, "208174", null, "3627", null, "86885", null, "2567", null, "43.0", null, "0.6", null, "100.5", null, "1.6", null, "78.3", null, "1.5", null, "43.5", null, "1.1", null, "34.8", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.4", null, "0.3", null, "4.7", null, "0.4", null, "6.4", null, "0.4", null, "7.1", null, "0.4", null, "6.5", null, "0.4", null, "5.6", null, "0.4", null, "5.5", null, "0.4", null, "5.9", null, "0.4", null, "6.3", null, "0.5", null, "5.4", null, "0.3", null, "5.5", null, "0.3", null, "5.2", null, "0.4", null, "6.9", null, "0.4", null, "7.6", null, "0.4", null, "6.6", null, "0.4", null, "5.5", null, "0.4", null, "3.1", null, "0.2", null, "1.6", null, "0.2", null, "11.2", null, "0.4", null, "3.9", null, "0.3", null, "19.5", null, "0.4", null, "9.7", null, "0.4", null, "36.9", null, "0.5", null, "83.0", null, "0.5", null, "80.5", null, "0.4", null, "75.8", null, "0.5", null, "31.3", null, "0.6", null, "28.6", null, "0.6", null, "24.4", null, "0.4", null, "10.2", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.0", null, "-888888888.0", "(X)", "428123", null, "5106", null, "18769", null, "2028", null, "19575", null, "2323", null, "28673", null, "2251", null, "30956", null, "2779", null, "28706", null, "2423", null, "25600", null, "2205", null, "23911", null, "2194", null, "28126", null, "2872", null, "27765", null, "2779", null, "23986", null, "1998", null, "22957", null, "1566", null, "20868", null, "2229", null, "28558", null, "2260", null, "30715", null, "2270", null, "26122", null, "2360", null, "23025", null, "1998", null, "13223", null, "1497", null, "6588", null, "1100", null, "48248", null, "2298", null, "17956", null, "1984", null, "84973", null, "3460", null, "41706", null, "2117", null, "165064", null, "4154", null, "354774", null, "4116", null, "343150", null, "4121", null, "324077", null, "4464", null, "128231", null, "3279", null, "118574", null, "3328", null, "99673", null, "2242", null, "42836", null, "1530", null, "41.8", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.4", null, "0.5", null, "4.6", null, "0.5", null, "6.7", null, "0.5", null, "7.2", null, "0.6", null, "6.7", null, "0.6", null, "6.0", null, "0.5", null, "5.6", null, "0.5", null, "6.6", null, "0.7", null, "6.5", null, "0.7", null, "5.6", null, "0.5", null, "5.4", null, "0.4", null, "4.9", null, "0.5", null, "6.7", null, "0.5", null, "7.2", null, "0.5", null, "6.1", null, "0.6", null, "5.4", null, "0.5", null, "3.1", null, "0.4", null, "1.5", null, "0.3", null, "11.3", null, "0.5", null, "4.2", null, "0.5", null, "19.8", null, "0.7", null, "9.7", null, "0.5", null, "38.6", null, "0.7", null, "82.9", null, "0.6", null, "80.2", null, "0.7", null, "75.7", null, "0.8", null, "30.0", null, "0.8", null, "27.7", null, "0.8", null, "23.3", null, "0.6", null, "10.0", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "425800", null, "6636", null, "19091", null, "1911", null, "20688", null, "2533", null, "26385", null, "2424", null, "29909", null, "2710", null, "26720", null, "2483", null, "22121", null, "1766", null, "23253", null, "2021", null, "22228", null, "2523", null, "25989", null, "2571", null, "22422", null, "1548", null, "23993", null, "1867", null, "23882", null, "2640", null, "30618", null, "2594", null, "33925", null, "2366", null, "30527", null, "2131", null, "23880", null, "1816", null, "12872", null, "1374", null, "7297", null, "1133", null, "47073", null, "2739", null, "15741", null, "1922", null, "81905", null, "4009", null, "40888", null, "2356", null, "150220", null, "4159", null, "354269", null, "4714", null, "343895", null, "4231", null, "323058", null, "4306", null, "139119", null, "3205", null, "125868", null, "2912", null, "108501", null, "2231", null, "44049", null, "1457", null, "44.2", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.5", null, "0.4", null, "4.9", null, "0.6", null, "6.2", null, "0.5", null, "7.0", null, "0.6", null, "6.3", null, "0.6", null, "5.2", null, "0.4", null, "5.5", null, "0.5", null, "5.2", null, "0.6", null, "6.1", null, "0.6", null, "5.3", null, "0.3", null, "5.6", null, "0.4", null, "5.6", null, "0.6", null, "7.2", null, "0.6", null, "8.0", null, "0.5", null, "7.2", null, "0.5", null, "5.6", null, "0.4", null, "3.0", null, "0.3", null, "1.7", null, "0.3", null, "11.1", null, "0.6", null, "3.7", null, "0.4", null, "19.2", null, "0.7", null, "9.6", null, "0.5", null, "35.3", null, "0.8", null, "83.2", null, "0.8", null, "80.8", null, "0.7", null, "75.9", null, "0.8", null, "32.7", null, "0.8", null, "29.6", null, "0.7", null, "25.5", null, "0.5", null, "10.3", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "04", "02"], ["5001900US0403", "Congressional District 3 (119th Congress), Arizona", "834750", null, "24837", null, "53968", null, "5134", null, "55067", null, "5431", null, "64050", null, "6117", null, "71029", null, "5255", null, "74994", null, "5773", null, "70922", null, "5175", null, "72559", null, "6148", null, "63503", null, "6064", null, "59027", null, "5677", null, "51649", null, "4161", null, "42988", null, "4233", null, "39756", null, "4408", null, "38171", null, "4111", null, "28526", null, "3784", null, "20078", null, "2548", null, "15277", null, "2002", null, "6473", null, "1514", null, "6713", null, "1778", null, "119117", null, "9010", null, "38730", null, "3998", null, "211815", null, "12698", null, "107293", null, "6952", null, "412034", null, "13669", null, "648185", null, "17507", null, "622935", null, "17027", null, "578387", null, "15233", null, "115238", null, "6810", null, "99197", null, "5815", null, "77067", null, "4820", null, "28463", null, "3021", null, "31.6", null, "0.6", null, "104.1", null, "4.3", null, "52.9", null, "2.3", null, "14.1", null, "1.0", null, "38.8", null, "2.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.5", null, "0.5", null, "6.6", null, "0.6", null, "7.7", null, "0.6", null, "8.5", null, "0.6", null, "9.0", null, "0.7", null, "8.5", null, "0.6", null, "8.7", null, "0.7", null, "7.6", null, "0.7", null, "7.1", null, "0.6", null, "6.2", null, "0.5", null, "5.1", null, "0.5", null, "4.8", null, "0.5", null, "4.6", null, "0.5", null, "3.4", null, "0.5", null, "2.4", null, "0.3", null, "1.8", null, "0.2", null, "0.8", null, "0.2", null, "0.8", null, "0.2", null, "14.3", null, "0.9", null, "4.6", null, "0.5", null, "25.4", null, "1.1", null, "12.9", null, "0.8", null, "49.4", null, "1.1", null, "77.7", null, "1.0", null, "74.6", null, "1.1", null, "69.3", null, "1.0", null, "13.8", null, "0.8", null, "11.9", null, "0.7", null, "9.2", null, "0.6", null, "3.4", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "4.1", null, "-888888888.0", "(X)", "425661", null, "14994", null, "27760", null, "3421", null, "24466", null, "3319", null, "36251", null, "4602", null, "37323", null, "3418", null, "41319", null, "3784", null, "34333", null, "3328", null, "38936", null, "4230", null, "33484", null, "4223", null, "28361", null, "3392", null, "26130", null, "2841", null, "20800", null, "2476", null, "20280", null, "2880", null, "20109", null, "2536", null, "14490", null, "2090", null, "8776", null, "1734", null, "7069", null, "1380", null, "3053", null, "1124", null, "2721", null, "1276", null, "60717", null, "6089", null, "20604", null, "2726", null, "109081", null, "8366", null, "58038", null, "4735", null, "213756", null, "8924", null, "329966", null, "10707", null, "316580", null, "10462", null, "292527", null, "10190", null, "56218", null, "4183", null, "48227", null, "3384", null, "36109", null, "2949", null, "12843", null, "1734", null, "31.2", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.5", null, "0.7", null, "5.7", null, "0.7", null, "8.5", null, "1.0", null, "8.8", null, "0.8", null, "9.7", null, "0.9", null, "8.1", null, "0.7", null, "9.1", null, "0.9", null, "7.9", null, "0.9", null, "6.7", null, "0.8", null, "6.1", null, "0.6", null, "4.9", null, "0.6", null, "4.8", null, "0.7", null, "4.7", null, "0.6", null, "3.4", null, "0.5", null, "2.1", null, "0.4", null, "1.7", null, "0.3", null, "0.7", null, "0.3", null, "0.6", null, "0.3", null, "14.3", null, "1.2", null, "4.8", null, "0.6", null, "25.6", null, "1.4", null, "13.6", null, "1.1", null, "50.2", null, "1.6", null, "77.5", null, "1.4", null, "74.4", null, "1.4", null, "68.7", null, "1.4", null, "13.2", null, "0.9", null, "11.3", null, "0.8", null, "8.5", null, "0.7", null, "3.0", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "409089", null, "15161", null, "26208", null, "3428", null, "30601", null, "3964", null, "27799", null, "3362", null, "33706", null, "3617", null, "33675", null, "4033", null, "36589", null, "3620", null, "33623", null, "3533", null, "30019", null, "3605", null, "30666", null, "3821", null, "25519", null, "2810", null, "22188", null, "2714", null, "19476", null, "2640", null, "18062", null, "2750", null, "14036", null, "2716", null, "11302", null, "2020", null, "8208", null, "1424", null, "3420", null, "897", null, "3992", null, "942", null, "58400", null, "5138", null, "18126", null, "2587", null, "102734", null, "7121", null, "49255", null, "4751", null, "198278", null, "8796", null, "318219", null, "11865", null, "306355", null, "11613", null, "285860", null, "10409", null, "59020", null, "3959", null, "50970", null, "3682", null, "40958", null, "3207", null, "15620", null, "2043", null, "32.1", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.4", null, "0.7", null, "7.5", null, "0.9", null, "6.8", null, "0.8", null, "8.2", null, "0.8", null, "8.2", null, "0.9", null, "8.9", null, "0.8", null, "8.2", null, "0.9", null, "7.3", null, "0.8", null, "7.5", null, "0.9", null, "6.2", null, "0.7", null, "5.4", null, "0.7", null, "4.8", null, "0.6", null, "4.4", null, "0.6", null, "3.4", null, "0.7", null, "2.8", null, "0.5", null, "2.0", null, "0.4", null, "0.8", null, "0.2", null, "1.0", null, "0.2", null, "14.3", null, "1.1", null, "4.4", null, "0.6", null, "25.1", null, "1.3", null, "12.0", null, "1.0", null, "48.5", null, "1.2", null, "77.8", null, "1.3", null, "74.9", null, "1.3", null, "69.9", null, "1.4", null, "14.4", null, "0.9", null, "12.5", null, "0.9", null, "10.0", null, "0.8", null, "3.8", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "04", "03"], ["5001900US0404", "Congressional District 4 (119th Congress), Arizona", "793264", null, "15908", null, "40048", null, "4408", null, "41545", null, "5334", null, "39334", null, "4106", null, "50448", null, "4044", null, "77466", null, "6343", null, "71078", null, "6333", null, "61213", null, "5359", null, "59747", null, "5845", null, "46711", null, "5380", null, "41407", null, "4184", null, "41768", null, "4435", null, "39375", null, "4111", null, "44337", null, "3338", null, "44636", null, "3635", null, "33228", null, "3150", null, "28270", null, "3262", null, "17633", null, "2262", null, "15020", null, "2295", null, "80879", null, "7800", null, "25909", null, "3300", null, "146836", null, "10024", null, "102005", null, "6964", null, "366663", null, "10879", null, "663589", null, "13678", null, "646428", null, "13712", null, "605008", null, "13771", null, "183124", null, "8066", null, "166041", null, "7718", null, "138787", null, "6957", null, "60923", null, "4297", null, "36.2", null, "0.9", null, "101.6", null, "3.6", null, "56.3", null, "2.7", null, "27.3", null, "1.6", null, "28.9", null, "2.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.0", null, "0.5", null, "5.2", null, "0.6", null, "5.0", null, "0.5", null, "6.4", null, "0.5", null, "9.8", null, "0.8", null, "9.0", null, "0.8", null, "7.7", null, "0.7", null, "7.5", null, "0.7", null, "5.9", null, "0.7", null, "5.2", null, "0.5", null, "5.3", null, "0.6", null, "5.0", null, "0.5", null, "5.6", null, "0.4", null, "5.6", null, "0.5", null, "4.2", null, "0.4", null, "3.6", null, "0.4", null, "2.2", null, "0.3", null, "1.9", null, "0.3", null, "10.2", null, "0.9", null, "3.3", null, "0.4", null, "18.5", null, "1.1", null, "12.9", null, "0.9", null, "46.2", null, "1.0", null, "83.7", null, "1.0", null, "81.5", null, "1.1", null, "76.3", null, "1.1", null, "23.1", null, "1.1", null, "20.9", null, "1.0", null, "17.5", null, "0.9", null, "7.7", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.1", null, "-888888888.0", "(X)", "399870", null, "10844", null, "22926", null, "3041", null, "21499", null, "3556", null, "20469", null, "2859", null, "24735", null, "2734", null, "38295", null, "3593", null, "39098", null, "4343", null, "31434", null, "3597", null, "32529", null, "3469", null, "25036", null, "3815", null, "20041", null, "2606", null, "20695", null, "2672", null, "19569", null, "2641", null, "21096", null, "2127", null, "20452", null, "2391", null, "15109", null, "2182", null, "12679", null, "2007", null, "7453", null, "1402", null, "6755", null, "1492", null, "41968", null, "5075", null, "12942", null, "2076", null, "77836", null, "6755", null, "50088", null, "4089", null, "191127", null, "8409", null, "330725", null, "9830", null, "322034", null, "9569", null, "300633", null, "9713", null, "83544", null, "4886", null, "75485", null, "4661", null, "62448", null, "4300", null, "26887", null, "2490", null, "35.2", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.7", null, "0.7", null, "5.4", null, "0.8", null, "5.1", null, "0.7", null, "6.2", null, "0.7", null, "9.6", null, "0.8", null, "9.8", null, "1.0", null, "7.9", null, "0.9", null, "8.1", null, "0.8", null, "6.3", null, "0.9", null, "5.0", null, "0.6", null, "5.2", null, "0.7", null, "4.9", null, "0.6", null, "5.3", null, "0.6", null, "5.1", null, "0.6", null, "3.8", null, "0.5", null, "3.2", null, "0.5", null, "1.9", null, "0.4", null, "1.7", null, "0.4", null, "10.5", null, "1.2", null, "3.2", null, "0.5", null, "19.5", null, "1.5", null, "12.5", null, "0.9", null, "47.8", null, "1.4", null, "82.7", null, "1.5", null, "80.5", null, "1.5", null, "75.2", null, "1.7", null, "20.9", null, "1.3", null, "18.9", null, "1.3", null, "15.6", null, "1.1", null, "6.7", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "393394", null, "10450", null, "17122", null, "2769", null, "20046", null, "3383", null, "18865", null, "2593", null, "25713", null, "2542", null, "39171", null, "5212", null, "31980", null, "3652", null, "29779", null, "3403", null, "27218", null, "3286", null, "21675", null, "3074", null, "21366", null, "2728", null, "21073", null, "2768", null, "19806", null, "3040", null, "23241", null, "2402", null, "24184", null, "2311", null, "18119", null, "2337", null, "15591", null, "2066", null, "10180", null, "1632", null, "8265", null, "1533", null, "38911", null, "4541", null, "12967", null, "2021", null, "69000", null, "5613", null, "51917", null, "5533", null, "175536", null, "6812", null, "332864", null, "9034", null, "324394", null, "9108", null, "304375", null, "8753", null, "99580", null, "4643", null, "90556", null, "4524", null, "76339", null, "3979", null, "34036", null, "2538", null, "37.4", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.4", null, "0.7", null, "5.1", null, "0.8", null, "4.8", null, "0.6", null, "6.5", null, "0.6", null, "10.0", null, "1.2", null, "8.1", null, "0.9", null, "7.6", null, "0.8", null, "6.9", null, "0.8", null, "5.5", null, "0.8", null, "5.4", null, "0.7", null, "5.4", null, "0.7", null, "5.0", null, "0.8", null, "5.9", null, "0.6", null, "6.1", null, "0.6", null, "4.6", null, "0.6", null, "4.0", null, "0.5", null, "2.6", null, "0.4", null, "2.1", null, "0.4", null, "9.9", null, "1.1", null, "3.3", null, "0.5", null, "17.5", null, "1.3", null, "13.2", null, "1.3", null, "44.6", null, "1.1", null, "84.6", null, "1.1", null, "82.5", null, "1.3", null, "77.4", null, "1.3", null, "25.3", null, "1.1", null, "23.0", null, "1.1", null, "19.4", null, "1.0", null, "8.7", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "04", "04"], ["5001900US0405", "Congressional District 5 (119th Congress), Arizona", "902036", null, "17114", null, "53551", null, "5659", null, "60937", null, "4994", null, "72230", null, "5123", null, "62920", null, "5033", null, "51947", null, "4614", null, "52029", null, "4873", null, "61765", null, "5120", null, "60918", null, "5210", null, "65428", null, "5256", null, "55225", null, "4140", null, "58779", null, "4709", null, "48655", null, "3977", null, "54994", null, "3941", null, "44558", null, "3686", null, "34494", null, "3243", null, "31473", null, "3118", null, "19615", null, "2101", null, "12518", null, "2242", null, "133167", null, "7649", null, "42291", null, "4022", null, "229009", null, "10556", null, "72576", null, "5010", null, "355007", null, "10218", null, "702386", null, "12533", null, "673027", null, "12249", null, "642478", null, "12143", null, "197652", null, "7791", null, "177848", null, "7730", null, "142658", null, "6341", null, "63606", null, "3742", null, "37.9", null, "0.9", null, "99.3", null, "2.9", null, "70.1", null, "2.4", null, "26.9", null, "1.4", null, "43.2", null, "2.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.9", null, "0.6", null, "6.8", null, "0.5", null, "8.0", null, "0.5", null, "7.0", null, "0.6", null, "5.8", null, "0.5", null, "5.8", null, "0.5", null, "6.8", null, "0.6", null, "6.8", null, "0.6", null, "7.3", null, "0.6", null, "6.1", null, "0.5", null, "6.5", null, "0.5", null, "5.4", null, "0.4", null, "6.1", null, "0.4", null, "4.9", null, "0.4", null, "3.8", null, "0.4", null, "3.5", null, "0.4", null, "2.2", null, "0.2", null, "1.4", null, "0.2", null, "14.8", null, "0.7", null, "4.7", null, "0.4", null, "25.4", null, "0.9", null, "8.0", null, "0.5", null, "39.4", null, "0.8", null, "77.9", null, "0.9", null, "74.6", null, "0.9", null, "71.2", null, "0.9", null, "21.9", null, "0.9", null, "19.7", null, "0.9", null, "15.8", null, "0.7", null, "7.1", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.2", null, "-888888888.0", "(X)", "449501", null, "12117", null, "27232", null, "3563", null, "31042", null, "3478", null, "35625", null, "3982", null, "33467", null, "3830", null, "29076", null, "3340", null, "25637", null, "2913", null, "31000", null, "3151", null, "28815", null, "3314", null, "33583", null, "3720", null, "26035", null, "2613", null, "30703", null, "2918", null, "24007", null, "2773", null, "28151", null, "2653", null, "20224", null, "2406", null, "15006", null, "1905", null, "14583", null, "1839", null, "9957", null, "1454", null, "5358", null, "1231", null, "66667", null, "5598", null, "21159", null, "3096", null, "115058", null, "7872", null, "41384", null, "3782", null, "181578", null, "6848", null, "349228", null, "8238", null, "334443", null, "8355", null, "316161", null, "8317", null, "93279", null, "4618", null, "82752", null, "4478", null, "65128", null, "3782", null, "29898", null, "2369", null, "37.1", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.1", null, "0.7", null, "6.9", null, "0.7", null, "7.9", null, "0.8", null, "7.4", null, "0.8", null, "6.5", null, "0.7", null, "5.7", null, "0.6", null, "6.9", null, "0.7", null, "6.4", null, "0.7", null, "7.5", null, "0.8", null, "5.8", null, "0.6", null, "6.8", null, "0.6", null, "5.3", null, "0.6", null, "6.3", null, "0.6", null, "4.5", null, "0.5", null, "3.3", null, "0.4", null, "3.2", null, "0.4", null, "2.2", null, "0.3", null, "1.2", null, "0.3", null, "14.8", null, "1.0", null, "4.7", null, "0.7", null, "25.6", null, "1.3", null, "9.2", null, "0.8", null, "40.4", null, "1.2", null, "77.7", null, "1.3", null, "74.4", null, "1.3", null, "70.3", null, "1.4", null, "20.8", null, "1.1", null, "18.4", null, "1.0", null, "14.5", null, "0.9", null, "6.7", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "452535", null, "9127", null, "26319", null, "3681", null, "29895", null, "3007", null, "36605", null, "3834", null, "29453", null, "3165", null, "22871", null, "2861", null, "26392", null, "3038", null, "30765", null, "3265", null, "32103", null, "3146", null, "31845", null, "3136", null, "29190", null, "2488", null, "28076", null, "2839", null, "24648", null, "2396", null, "26843", null, "2118", null, "24334", null, "2284", null, "19488", null, "2175", null, "16890", null, "2231", null, "9658", null, "1335", null, "7160", null, "1458", null, "66500", null, "4505", null, "21132", null, "2839", null, "113951", null, "6794", null, "31192", null, "3167", null, "173429", null, "6305", null, "353158", null, "7063", null, "338584", null, "6874", null, "326317", null, "6607", null, "104373", null, "4432", null, "95096", null, "4529", null, "77530", null, "3778", null, "33708", null, "2301", null, "38.9", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.8", null, "0.8", null, "6.6", null, "0.6", null, "8.1", null, "0.8", null, "6.5", null, "0.7", null, "5.1", null, "0.6", null, "5.8", null, "0.6", null, "6.8", null, "0.7", null, "7.1", null, "0.7", null, "7.0", null, "0.7", null, "6.5", null, "0.6", null, "6.2", null, "0.6", null, "5.4", null, "0.5", null, "5.9", null, "0.5", null, "5.4", null, "0.5", null, "4.3", null, "0.5", null, "3.7", null, "0.5", null, "2.1", null, "0.3", null, "1.6", null, "0.3", null, "14.7", null, "0.8", null, "4.7", null, "0.6", null, "25.2", null, "1.2", null, "6.9", null, "0.7", null, "38.3", null, "1.0", null, "78.0", null, "1.2", null, "74.8", null, "1.2", null, "72.1", null, "1.1", null, "23.1", null, "1.0", null, "21.0", null, "1.0", null, "17.1", null, "0.8", null, "7.4", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "04", "05"], ["5001900US0406", "Congressional District 6 (119th Congress), Arizona", "833838", null, "17024", null, "38685", null, "2839", null, "41854", null, "3474", null, "45434", null, "4258", null, "45249", null, "4057", null, "50215", null, "5128", null, "50267", null, "4522", null, "51616", null, "3672", null, "52520", null, "4437", null, "49221", null, "4083", null, "44365", null, "3650", null, "43103", null, "3000", null, "41994", null, "2970", null, "54322", null, "3514", null, "64505", null, "4103", null, "54865", null, "3357", null, "52267", null, "3027", null, "33223", null, "3322", null, "20133", null, "2419", null, "87288", null, "5576", null, "27118", null, "2368", null, "153091", null, "7654", null, "68346", null, "5597", null, "299088", null, "9114", null, "698271", null, "13276", null, "680747", null, "12469", null, "650968", null, "11476", null, "279315", null, "6295", null, "256814", null, "6004", null, "224993", null, "5174", null, "105623", null, "3367", null, "44.1", null, "0.7", null, "100.3", null, "2.7", null, "83.0", null, "2.1", null, "49.4", null, "1.7", null, "33.6", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.6", null, "0.3", null, "5.0", null, "0.4", null, "5.4", null, "0.5", null, "5.4", null, "0.4", null, "6.0", null, "0.6", null, "6.0", null, "0.5", null, "6.2", null, "0.4", null, "6.3", null, "0.5", null, "5.9", null, "0.5", null, "5.3", null, "0.4", null, "5.2", null, "0.3", null, "5.0", null, "0.3", null, "6.5", null, "0.4", null, "7.7", null, "0.5", null, "6.6", null, "0.4", null, "6.3", null, "0.4", null, "4.0", null, "0.4", null, "2.4", null, "0.3", null, "10.5", null, "0.5", null, "3.3", null, "0.3", null, "18.4", null, "0.7", null, "8.2", null, "0.6", null, "35.9", null, "0.6", null, "83.7", null, "0.7", null, "81.6", null, "0.7", null, "78.1", null, "0.8", null, "33.5", null, "0.9", null, "30.8", null, "0.8", null, "27.0", null, "0.7", null, "12.7", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "0.9", null, "-888888888.0", "(X)", "417493", null, "10299", null, "20423", null, "1978", null, "21055", null, "2334", null, "24221", null, "2712", null, "23928", null, "2778", null, "28101", null, "3857", null, "27516", null, "3119", null, "26856", null, "2253", null, "26774", null, "2688", null, "25483", null, "2615", null, "23269", null, "1999", null, "22363", null, "2302", null, "18704", null, "1920", null, "26418", null, "1989", null, "29800", null, "2297", null, "24725", null, "2098", null, "23579", null, "2066", null, "15307", null, "1873", null, "8971", null, "1270", null, "45276", null, "3297", null, "13355", null, "1744", null, "79054", null, "4309", null, "38674", null, "4134", null, "158658", null, "6069", null, "346388", null, "8482", null, "338439", null, "8106", null, "320844", null, "7328", null, "128800", null, "3921", null, "117483", null, "3850", null, "102382", null, "3048", null, "47857", null, "2066", null, "41.9", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.9", null, "0.5", null, "5.0", null, "0.5", null, "5.8", null, "0.6", null, "5.7", null, "0.6", null, "6.7", null, "0.8", null, "6.6", null, "0.7", null, "6.4", null, "0.5", null, "6.4", null, "0.7", null, "6.1", null, "0.6", null, "5.6", null, "0.5", null, "5.4", null, "0.5", null, "4.5", null, "0.5", null, "6.3", null, "0.5", null, "7.1", null, "0.6", null, "5.9", null, "0.5", null, "5.6", null, "0.5", null, "3.7", null, "0.4", null, "2.1", null, "0.3", null, "10.8", null, "0.7", null, "3.2", null, "0.4", null, "18.9", null, "0.8", null, "9.3", null, "0.9", null, "38.0", null, "0.9", null, "83.0", null, "0.8", null, "81.1", null, "0.8", null, "76.9", null, "1.0", null, "30.9", null, "1.0", null, "28.1", null, "1.0", null, "24.5", null, "0.8", null, "11.5", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "416345", null, "10062", null, "18262", null, "2064", null, "20799", null, "2710", null, "21213", null, "2726", null, "21321", null, "2594", null, "22114", null, "3020", null, "22751", null, "2294", null, "24760", null, "2156", null, "25746", null, "2801", null, "23738", null, "2326", null, "21096", null, "2527", null, "20740", null, "1844", null, "23290", null, "2218", null, "27904", null, "2643", null, "34705", null, "2527", null, "30140", null, "2140", null, "28688", null, "2019", null, "17916", null, "2300", null, "11162", null, "1771", null, "42012", null, "3665", null, "13763", null, "1674", null, "74037", null, "5134", null, "29672", null, "3567", null, "140430", null, "5795", null, "351883", null, "7559", null, "342308", null, "6941", null, "330124", null, "6730", null, "150515", null, "4269", null, "139331", null, "4229", null, "122611", null, "3545", null, "57766", null, "2632", null, "47.1", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.4", null, "0.5", null, "5.0", null, "0.6", null, "5.1", null, "0.6", null, "5.1", null, "0.6", null, "5.3", null, "0.7", null, "5.5", null, "0.5", null, "5.9", null, "0.5", null, "6.2", null, "0.6", null, "5.7", null, "0.5", null, "5.1", null, "0.6", null, "5.0", null, "0.4", null, "5.6", null, "0.5", null, "6.7", null, "0.7", null, "8.3", null, "0.6", null, "7.2", null, "0.6", null, "6.9", null, "0.5", null, "4.3", null, "0.6", null, "2.7", null, "0.4", null, "10.1", null, "0.7", null, "3.3", null, "0.4", null, "17.8", null, "0.9", null, "7.1", null, "0.8", null, "33.7", null, "0.9", null, "84.5", null, "1.0", null, "82.2", null, "0.9", null, "79.3", null, "1.1", null, "36.2", null, "1.2", null, "33.5", null, "1.1", null, "29.4", null, "0.9", null, "13.9", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "04", "06"], ["5001900US0407", "Congressional District 7 (119th Congress), Arizona", "813289", null, "19752", null, "44141", null, "3941", null, "47961", null, "4078", null, "54139", null, "4273", null, "63995", null, "4305", null, "79520", null, "6071", null, "59378", null, "4871", null, "63657", null, "4529", null, "54878", null, "4814", null, "44316", null, "4914", null, "44857", null, "3941", null, "44150", null, "3471", null, "39016", null, "3803", null, "46678", null, "4009", null, "40914", null, "3032", null, "31558", null, "2712", null, "26321", null, "2480", null, "15180", null, "2112", null, "12630", null, "1875", null, "102100", null, "6565", null, "33793", null, "3338", null, "180034", null, "9834", null, "109722", null, "6537", null, "365744", null, "11813", null, "656725", null, "14789", null, "633255", null, "13789", null, "586234", null, "13177", null, "173281", null, "6066", null, "154048", null, "5661", null, "126603", null, "4554", null, "54131", null, "2870", null, "34.4", null, "0.7", null, "97.9", null, "2.7", null, "60.5", null, "1.9", null, "25.0", null, "1.1", null, "35.5", null, "1.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.4", null, "5.9", null, "0.5", null, "6.7", null, "0.5", null, "7.9", null, "0.5", null, "9.8", null, "0.7", null, "7.3", null, "0.6", null, "7.8", null, "0.5", null, "6.7", null, "0.5", null, "5.4", null, "0.6", null, "5.5", null, "0.4", null, "5.4", null, "0.4", null, "4.8", null, "0.5", null, "5.7", null, "0.5", null, "5.0", null, "0.4", null, "3.9", null, "0.3", null, "3.2", null, "0.3", null, "1.9", null, "0.3", null, "1.6", null, "0.2", null, "12.6", null, "0.6", null, "4.2", null, "0.4", null, "22.1", null, "0.9", null, "13.5", null, "0.7", null, "45.0", null, "0.8", null, "80.7", null, "0.9", null, "77.9", null, "0.9", null, "72.1", null, "0.9", null, "21.3", null, "0.9", null, "18.9", null, "0.8", null, "15.6", null, "0.6", null, "6.7", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.3", null, "-888888888.0", "(X)", "402291", null, "11466", null, "20995", null, "2609", null, "23830", null, "2451", null, "25991", null, "3130", null, "31754", null, "2802", null, "38339", null, "4182", null, "31348", null, "3175", null, "33943", null, "2709", null, "28640", null, "3018", null, "22198", null, "2828", null, "22311", null, "2376", null, "21107", null, "2515", null, "18829", null, "2272", null, "23316", null, "2367", null, "20098", null, "1930", null, "14260", null, "1788", null, "12986", null, "1638", null, "7762", null, "1553", null, "4584", null, "1134", null, "49821", null, "3729", null, "18294", null, "2509", null, "89110", null, "5480", null, "51799", null, "4414", null, "186222", null, "7073", null, "326376", null, "9519", null, "313181", null, "9152", null, "292971", null, "8392", null, "83006", null, "3953", null, "74815", null, "3852", null, "59690", null, "2939", null, "25332", null, "2021", null, "33.8", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.6", null, "5.9", null, "0.6", null, "6.5", null, "0.7", null, "7.9", null, "0.6", null, "9.5", null, "0.9", null, "7.8", null, "0.8", null, "8.4", null, "0.6", null, "7.1", null, "0.7", null, "5.5", null, "0.7", null, "5.5", null, "0.6", null, "5.2", null, "0.6", null, "4.7", null, "0.6", null, "5.8", null, "0.6", null, "5.0", null, "0.5", null, "3.5", null, "0.5", null, "3.2", null, "0.4", null, "1.9", null, "0.4", null, "1.1", null, "0.3", null, "12.4", null, "0.8", null, "4.5", null, "0.6", null, "22.2", null, "1.1", null, "12.9", null, "0.9", null, "46.3", null, "0.9", null, "81.1", null, "1.1", null, "77.8", null, "1.1", null, "72.8", null, "1.2", null, "20.6", null, "1.0", null, "18.6", null, "1.0", null, "14.8", null, "0.8", null, "6.3", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "410998", null, "11194", null, "23146", null, "2674", null, "24131", null, "3218", null, "28148", null, "2880", null, "32241", null, "2972", null, "41181", null, "3647", null, "28030", null, "2835", null, "29714", null, "2780", null, "26238", null, "3205", null, "22118", null, "3398", null, "22546", null, "2546", null, "23043", null, "2367", null, "20187", null, "2574", null, "23362", null, "2496", null, "20816", null, "2232", null, "17298", null, "1828", null, "13335", null, "1613", null, "7418", null, "1147", null, "8046", null, "1262", null, "52279", null, "4648", null, "15499", null, "2212", null, "90924", null, "6305", null, "57923", null, "3862", null, "179522", null, "7118", null, "330349", null, "7957", null, "320074", null, "7187", null, "293263", null, "7093", null, "90275", null, "3494", null, "79233", null, "3334", null, "66913", null, "2889", null, "28799", null, "1906", null, "34.8", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.6", null, "0.6", null, "5.9", null, "0.7", null, "6.8", null, "0.6", null, "7.8", null, "0.7", null, "10.0", null, "0.8", null, "6.8", null, "0.7", null, "7.2", null, "0.6", null, "6.4", null, "0.7", null, "5.4", null, "0.8", null, "5.5", null, "0.6", null, "5.6", null, "0.6", null, "4.9", null, "0.6", null, "5.7", null, "0.6", null, "5.1", null, "0.6", null, "4.2", null, "0.5", null, "3.2", null, "0.4", null, "1.8", null, "0.3", null, "2.0", null, "0.3", null, "12.7", null, "0.9", null, "3.8", null, "0.5", null, "22.1", null, "1.1", null, "14.1", null, "0.9", null, "43.7", null, "1.1", null, "80.4", null, "1.2", null, "77.9", null, "1.1", null, "71.4", null, "1.0", null, "22.0", null, "1.0", null, "19.3", null, "0.9", null, "16.3", null, "0.8", null, "7.0", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "04", "07"], ["5001900US0408", "Congressional District 8 (119th Congress), Arizona", "815902", null, "19737", null, "40943", null, "5558", null, "39764", null, "4697", null, "46212", null, "5863", null, "47234", null, "4098", null, "46266", null, "4667", null, "54254", null, "4404", null, "49594", null, "5455", null, "46964", null, "5273", null, "52633", null, "4162", null, "43485", null, "3973", null, "50824", null, "4481", null, "53382", null, "5215", null, "55720", null, "4104", null, "52695", null, "4062", null, "45299", null, "4086", null, "41442", null, "4231", null, "27659", null, "2926", null, "21532", null, "2676", null, "85976", null, "8826", null, "29284", null, "3067", null, "156203", null, "11388", null, "64216", null, "5623", null, "296945", null, "11562", null, "677337", null, "14094", null, "659699", null, "14017", null, "631924", null, "12936", null, "244347", null, "9620", null, "222406", null, "9197", null, "188627", null, "8006", null, "90633", null, "5759", null, "43.7", null, "1.3", null, "97.0", null, "3.5", null, "73.2", null, "2.9", null, "40.0", null, "2.2", null, "33.2", null, "2.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.0", null, "0.6", null, "4.9", null, "0.5", null, "5.7", null, "0.6", null, "5.8", null, "0.5", null, "5.7", null, "0.5", null, "6.6", null, "0.5", null, "6.1", null, "0.6", null, "5.8", null, "0.6", null, "6.5", null, "0.5", null, "5.3", null, "0.5", null, "6.2", null, "0.5", null, "6.5", null, "0.7", null, "6.8", null, "0.5", null, "6.5", null, "0.5", null, "5.6", null, "0.5", null, "5.1", null, "0.5", null, "3.4", null, "0.4", null, "2.6", null, "0.3", null, "10.5", null, "0.9", null, "3.6", null, "0.4", null, "19.1", null, "1.1", null, "7.9", null, "0.6", null, "36.4", null, "1.1", null, "83.0", null, "1.2", null, "80.9", null, "1.1", null, "77.5", null, "1.2", null, "29.9", null, "1.2", null, "27.3", null, "1.2", null, "23.1", null, "1.1", null, "11.1", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.0", null, "-888888888.0", "(X)", "401809", null, "12331", null, "19353", null, "3456", null, "19927", null, "3060", null, "25153", null, "4220", null, "24050", null, "3000", null, "22813", null, "2943", null, "28248", null, "3090", null, "24079", null, "3532", null, "25772", null, "3965", null, "26822", null, "3118", null, "21912", null, "2771", null, "26018", null, "3082", null, "25631", null, "3138", null, "27553", null, "2800", null, "25444", null, "2493", null, "22098", null, "3032", null, "17285", null, "2429", null, "11077", null, "1719", null, "8574", null, "1520", null, "45080", null, "5909", null, "14565", null, "2322", null, "78998", null, "7469", null, "32298", null, "3424", null, "151784", null, "6713", null, "331100", null, "9175", null, "322811", null, "8997", null, "308932", null, "8376", null, "112031", null, "5110", null, "101575", null, "5122", null, "84478", null, "4360", null, "36936", null, "3328", null, "42.4", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.8", null, "0.8", null, "5.0", null, "0.7", null, "6.3", null, "1.0", null, "6.0", null, "0.7", null, "5.7", null, "0.7", null, "7.0", null, "0.8", null, "6.0", null, "0.9", null, "6.4", null, "0.9", null, "6.7", null, "0.8", null, "5.5", null, "0.7", null, "6.5", null, "0.8", null, "6.4", null, "0.8", null, "6.9", null, "0.6", null, "6.3", null, "0.6", null, "5.5", null, "0.8", null, "4.3", null, "0.6", null, "2.8", null, "0.4", null, "2.1", null, "0.4", null, "11.2", null, "1.3", null, "3.6", null, "0.6", null, "19.7", null, "1.5", null, "8.0", null, "0.8", null, "37.8", null, "1.3", null, "82.4", null, "1.5", null, "80.3", null, "1.5", null, "76.9", null, "1.5", null, "27.9", null, "1.1", null, "25.3", null, "1.1", null, "21.0", null, "1.1", null, "9.2", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "414093", null, "12207", null, "21590", null, "3592", null, "19837", null, "3225", null, "21059", null, "3123", null, "23184", null, "2538", null, "23453", null, "3552", null, "26006", null, "3124", null, "25515", null, "3439", null, "21192", null, "2759", null, "25811", null, "2829", null, "21573", null, "2724", null, "24806", null, "2846", null, "27751", null, "3147", null, "28167", null, "2978", null, "27251", null, "2776", null, "23201", null, "2326", null, "24157", null, "2780", null, "16582", null, "1997", null, "12958", null, "1793", null, "40896", null, "4556", null, "14719", null, "2136", null, "77205", null, "6711", null, "31918", null, "4069", null, "145161", null, "7837", null, "346237", null, "8697", null, "336888", null, "8642", null, "322992", null, "8561", null, "132316", null, "5964", null, "120831", null, "5345", null, "104149", null, "4864", null, "53697", null, "3593", null, "44.9", null, "1.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.8", null, "4.8", null, "0.7", null, "5.1", null, "0.7", null, "5.6", null, "0.6", null, "5.7", null, "0.8", null, "6.3", null, "0.7", null, "6.2", null, "0.8", null, "5.1", null, "0.6", null, "6.2", null, "0.7", null, "5.2", null, "0.6", null, "6.0", null, "0.7", null, "6.7", null, "0.8", null, "6.8", null, "0.7", null, "6.6", null, "0.7", null, "5.6", null, "0.6", null, "5.8", null, "0.7", null, "4.0", null, "0.5", null, "3.1", null, "0.4", null, "9.9", null, "1.0", null, "3.6", null, "0.5", null, "18.6", null, "1.3", null, "7.7", null, "0.9", null, "35.1", null, "1.4", null, "83.6", null, "1.3", null, "81.4", null, "1.3", null, "78.0", null, "1.4", null, "32.0", null, "1.6", null, "29.2", null, "1.5", null, "25.2", null, "1.3", null, "13.0", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "04", "08"], ["5001900US0409", "Congressional District 9 (119th Congress), Arizona", "915903", null, "12170", null, "46827", null, "4560", null, "49717", null, "4971", null, "61280", null, "5082", null, "65387", null, "5976", null, "45626", null, "4759", null, "53615", null, "4924", null, "55832", null, "5229", null, "53312", null, "6429", null, "63033", null, "5522", null, "54064", null, "5159", null, "59392", null, "4289", null, "50825", null, "4091", null, "57734", null, "3915", null, "53481", null, "4509", null, "56930", null, "4030", null, "43266", null, "3078", null, "28541", null, "2583", null, "17041", null, "2314", null, "110997", null, "6537", null, "42865", null, "5079", null, "200689", null, "9411", null, "68148", null, "5953", null, "336805", null, "9728", null, "743237", null, "11537", null, "715214", null, "11400", null, "683333", null, "11045", null, "256993", null, "7027", null, "234030", null, "6164", null, "199259", null, "6270", null, "88848", null, "4092", null, "42.2", null, "0.9", null, "98.8", null, "2.8", null, "77.5", null, "2.7", null, "38.6", null, "1.5", null, "38.9", null, "2.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.1", null, "0.5", null, "5.4", null, "0.5", null, "6.7", null, "0.5", null, "7.1", null, "0.6", null, "5.0", null, "0.5", null, "5.9", null, "0.5", null, "6.1", null, "0.5", null, "5.8", null, "0.7", null, "6.9", null, "0.6", null, "5.9", null, "0.6", null, "6.5", null, "0.5", null, "5.5", null, "0.4", null, "6.3", null, "0.4", null, "5.8", null, "0.5", null, "6.2", null, "0.5", null, "4.7", null, "0.3", null, "3.1", null, "0.3", null, "1.9", null, "0.2", null, "12.1", null, "0.7", null, "4.7", null, "0.5", null, "21.9", null, "0.9", null, "7.4", null, "0.6", null, "36.8", null, "0.9", null, "81.1", null, "0.9", null, "78.1", null, "0.9", null, "74.6", null, "0.9", null, "28.1", null, "0.8", null, "25.6", null, "0.7", null, "21.8", null, "0.7", null, "9.7", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.2", null, "-888888888.0", "(X)", "455073", null, "8079", null, "24222", null, "3071", null, "26592", null, "3430", null, "30398", null, "3289", null, "32623", null, "3262", null, "25098", null, "3396", null, "24397", null, "3220", null, "30456", null, "3548", null, "27663", null, "4001", null, "29894", null, "3463", null, "26120", null, "3255", null, "30078", null, "3065", null, "26101", null, "2592", null, "26974", null, "2427", null, "25228", null, "2647", null, "26945", null, "2316", null, "21991", null, "2120", null, "13557", null, "1695", null, "6736", null, "1489", null, "56990", null, "4329", null, "20011", null, "2673", null, "101223", null, "5891", null, "37710", null, "3822", null, "170131", null, "6493", null, "366212", null, "7701", null, "353850", null, "7803", null, "335893", null, "7723", null, "121431", null, "4040", null, "110382", null, "3306", null, "94457", null, "3394", null, "42284", null, "2546", null, "40.8", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.3", null, "0.7", null, "5.8", null, "0.7", null, "6.7", null, "0.7", null, "7.2", null, "0.7", null, "5.5", null, "0.7", null, "5.4", null, "0.7", null, "6.7", null, "0.8", null, "6.1", null, "0.9", null, "6.6", null, "0.7", null, "5.7", null, "0.7", null, "6.6", null, "0.7", null, "5.7", null, "0.6", null, "5.9", null, "0.5", null, "5.5", null, "0.6", null, "5.9", null, "0.5", null, "4.8", null, "0.5", null, "3.0", null, "0.4", null, "1.5", null, "0.3", null, "12.5", null, "0.9", null, "4.4", null, "0.6", null, "22.2", null, "1.2", null, "8.3", null, "0.8", null, "37.4", null, "1.1", null, "80.5", null, "1.2", null, "77.8", null, "1.2", null, "73.8", null, "1.2", null, "26.7", null, "0.9", null, "24.3", null, "0.8", null, "20.8", null, "0.8", null, "9.3", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "460830", null, "9791", null, "22605", null, "3336", null, "23125", null, "2950", null, "30882", null, "3538", null, "32764", null, "4348", null, "20528", null, "3383", null, "29218", null, "3187", null, "25376", null, "2911", null, "25649", null, "3485", null, "33139", null, "3396", null, "27944", null, "2983", null, "29314", null, "3173", null, "24724", null, "2526", null, "30760", null, "2616", null, "28253", null, "2683", null, "29985", null, "2579", null, "21275", null, "1689", null, "14984", null, "1843", null, "10305", null, "1639", null, "54007", null, "4464", null, "22854", null, "3841", null, "99466", null, "6772", null, "30438", null, "3797", null, "166674", null, "7259", null, "377025", null, "8122", null, "361364", null, "7248", null, "347440", null, "7075", null, "135562", null, "4494", null, "123648", null, "4030", null, "104802", null, "3712", null, "46564", null, "2285", null, "43.1", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.9", null, "0.7", null, "5.0", null, "0.7", null, "6.7", null, "0.7", null, "7.1", null, "0.9", null, "4.5", null, "0.7", null, "6.3", null, "0.7", null, "5.5", null, "0.6", null, "5.6", null, "0.8", null, "7.2", null, "0.8", null, "6.1", null, "0.7", null, "6.4", null, "0.7", null, "5.4", null, "0.6", null, "6.7", null, "0.6", null, "6.1", null, "0.6", null, "6.5", null, "0.6", null, "4.6", null, "0.4", null, "3.3", null, "0.4", null, "2.2", null, "0.3", null, "11.7", null, "0.9", null, "5.0", null, "0.8", null, "21.6", null, "1.2", null, "6.6", null, "0.8", null, "36.2", null, "1.2", null, "81.8", null, "1.1", null, "78.4", null, "1.2", null, "75.4", null, "1.2", null, "29.4", null, "1.0", null, "26.8", null, "0.8", null, "22.7", null, "0.8", null, "10.1", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "04", "09"], ["5001900US0501", "Congressional District 1 (119th Congress), Arkansas", "754656", null, "4273", null, "42735", null, "1697", null, "47112", null, "2789", null, "47185", null, "2854", null, "52253", null, "2751", null, "42870", null, "2982", null, "44813", null, "2652", null, "44569", null, "2361", null, "46906", null, "3270", null, "53191", null, "3993", null, "44713", null, "2437", null, "46080", null, "2720", null, "46157", null, "2789", null, "50868", null, "2872", null, "43831", null, "2515", null, "39160", null, "2296", null, "30102", null, "2127", null, "17977", null, "1512", null, "14134", null, "1507", null, "94297", null, "2349", null, "31886", null, "1408", null, "168918", null, "2373", null, "63237", null, "3037", null, "284602", null, "4084", null, "606643", null, "4286", null, "585738", null, "3810", null, "556818", null, "4350", null, "196072", null, "3593", null, "175805", null, "3328", null, "145204", null, "2369", null, "62213", null, "1558", null, "41.0", null, "0.5", null, "97.5", null, "1.6", null, "71.3", null, "1.0", null, "33.0", null, "0.7", null, "38.3", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.7", null, "0.2", null, "6.2", null, "0.4", null, "6.3", null, "0.4", null, "6.9", null, "0.4", null, "5.7", null, "0.4", null, "5.9", null, "0.4", null, "5.9", null, "0.3", null, "6.2", null, "0.4", null, "7.0", null, "0.5", null, "5.9", null, "0.3", null, "6.1", null, "0.4", null, "6.1", null, "0.4", null, "6.7", null, "0.4", null, "5.8", null, "0.3", null, "5.2", null, "0.3", null, "4.0", null, "0.3", null, "2.4", null, "0.2", null, "1.9", null, "0.2", null, "12.5", null, "0.3", null, "4.2", null, "0.2", null, "22.4", null, "0.3", null, "8.4", null, "0.4", null, "37.7", null, "0.5", null, "80.4", null, "0.4", null, "77.6", null, "0.3", null, "73.8", null, "0.4", null, "26.0", null, "0.5", null, "23.3", null, "0.4", null, "19.2", null, "0.3", null, "8.2", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.3", null, "-888888888.0", "(X)", "372546", null, "3503", null, "22055", null, "1435", null, "23586", null, "2237", null, "25035", null, "2234", null, "26101", null, "2078", null, "23400", null, "2167", null, "23424", null, "1754", null, "23523", null, "1639", null, "22730", null, "2045", null, "28057", null, "2339", null, "20907", null, "1359", null, "21798", null, "1311", null, "22384", null, "1842", null, "24424", null, "1819", null, "21600", null, "1486", null, "16543", null, "1401", null, "12414", null, "1369", null, "9093", null, "1287", null, "5472", null, "1074", null, "48621", null, "1999", null, "15881", null, "1238", null, "86557", null, "2646", null, "33620", null, "1839", null, "147235", null, "2731", null, "296242", null, "2629", null, "285989", null, "2311", null, "270318", null, "2825", null, "89546", null, "2021", null, "80436", null, "2150", null, "65122", null, "1285", null, "26979", null, "1045", null, "39.4", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.9", null, "0.4", null, "6.3", null, "0.6", null, "6.7", null, "0.6", null, "7.0", null, "0.5", null, "6.3", null, "0.6", null, "6.3", null, "0.5", null, "6.3", null, "0.4", null, "6.1", null, "0.5", null, "7.5", null, "0.6", null, "5.6", null, "0.4", null, "5.9", null, "0.4", null, "6.0", null, "0.5", null, "6.6", null, "0.5", null, "5.8", null, "0.4", null, "4.4", null, "0.4", null, "3.3", null, "0.4", null, "2.4", null, "0.3", null, "1.5", null, "0.3", null, "13.1", null, "0.5", null, "4.3", null, "0.3", null, "23.2", null, "0.6", null, "9.0", null, "0.5", null, "39.5", null, "0.6", null, "79.5", null, "0.5", null, "76.8", null, "0.6", null, "72.6", null, "0.7", null, "24.0", null, "0.6", null, "21.6", null, "0.6", null, "17.5", null, "0.4", null, "7.2", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "382110", null, "3888", null, "20680", null, "1339", null, "23526", null, "1829", null, "22150", null, "2043", null, "26152", null, "2085", null, "19470", null, "1802", null, "21389", null, "1637", null, "21046", null, "1448", null, "24176", null, "2187", null, "25134", null, "2506", null, "23806", null, "1845", null, "24282", null, "2027", null, "23773", null, "2110", null, "26444", null, "1791", null, "22231", null, "1673", null, "22617", null, "1548", null, "17688", null, "1496", null, "8884", null, "964", null, "8662", null, "1209", null, "45676", null, "1536", null, "16005", null, "1298", null, "82361", null, "2324", null, "29617", null, "2181", null, "137367", null, "2946", null, "310401", null, "3239", null, "299749", null, "2826", null, "286500", null, "3097", null, "106526", null, "2447", null, "95369", null, "2173", null, "80082", null, "1557", null, "35234", null, "966", null, "42.4", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.3", null, "6.2", null, "0.5", null, "5.8", null, "0.5", null, "6.8", null, "0.5", null, "5.1", null, "0.5", null, "5.6", null, "0.4", null, "5.5", null, "0.4", null, "6.3", null, "0.6", null, "6.6", null, "0.6", null, "6.2", null, "0.5", null, "6.4", null, "0.5", null, "6.2", null, "0.5", null, "6.9", null, "0.5", null, "5.8", null, "0.4", null, "5.9", null, "0.4", null, "4.6", null, "0.4", null, "2.3", null, "0.3", null, "2.3", null, "0.3", null, "12.0", null, "0.4", null, "4.2", null, "0.3", null, "21.6", null, "0.5", null, "7.8", null, "0.6", null, "35.9", null, "0.7", null, "81.2", null, "0.5", null, "78.4", null, "0.5", null, "75.0", null, "0.6", null, "27.9", null, "0.6", null, "25.0", null, "0.5", null, "21.0", null, "0.4", null, "9.2", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "05", "01"], ["5001900US0502", "Congressional District 2 (119th Congress), Arkansas", "773214", null, "6890", null, "43086", null, "2608", null, "50311", null, "4347", null, "47886", null, "4625", null, "49139", null, "2517", null, "54004", null, "2532", null, "50880", null, "1945", null, "51629", null, "2193", null, "52135", null, "4318", null, "48978", null, "4155", null, "44539", null, "1623", null, "46058", null, "2048", null, "43238", null, "3259", null, "49916", null, "3193", null, "44377", null, "2474", null, "38089", null, "2513", null, "28101", null, "1837", null, "16600", null, "2039", null, "14248", null, "1673", null, "98197", null, "3027", null, "29515", null, "1655", null, "170798", null, "4343", null, "73628", null, "2204", null, "306765", null, "4270", null, "624831", null, "4791", null, "602416", null, "4089", null, "574242", null, "4669", null, "191331", null, "3494", null, "171536", null, "3120", null, "141415", null, "1849", null, "58949", null, "1412", null, "38.7", null, "0.5", null, "94.9", null, "1.3", null, "67.7", null, "1.0", null, "30.7", null, "0.5", null, "37.0", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.6", null, "0.3", null, "6.5", null, "0.6", null, "6.2", null, "0.6", null, "6.4", null, "0.3", null, "7.0", null, "0.3", null, "6.6", null, "0.2", null, "6.7", null, "0.3", null, "6.7", null, "0.6", null, "6.3", null, "0.5", null, "5.8", null, "0.2", null, "6.0", null, "0.3", null, "5.6", null, "0.4", null, "6.5", null, "0.4", null, "5.7", null, "0.3", null, "4.9", null, "0.3", null, "3.6", null, "0.2", null, "2.1", null, "0.3", null, "1.8", null, "0.2", null, "12.7", null, "0.3", null, "3.8", null, "0.2", null, "22.1", null, "0.4", null, "9.5", null, "0.3", null, "39.7", null, "0.4", null, "80.8", null, "0.4", null, "77.9", null, "0.4", null, "74.3", null, "0.5", null, "24.7", null, "0.5", null, "22.2", null, "0.4", null, "18.3", null, "0.3", null, "7.6", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.4", null, "-888888888.0", "(X)", "376411", null, "4037", null, "21558", null, "1812", null, "26176", null, "2866", null, "25492", null, "2829", null, "25787", null, "1514", null, "25791", null, "1380", null, "26312", null, "1527", null, "24389", null, "1149", null, "25494", null, "3044", null, "23560", null, "2614", null, "22134", null, "1118", null, "22279", null, "998", null, "20349", null, "2095", null, "24123", null, "2068", null, "20302", null, "2047", null, "18038", null, "1792", null, "12254", null, "1029", null, "7179", null, "1146", null, "5194", null, "922", null, "51668", null, "1945", null, "15671", null, "1321", null, "88897", null, "3121", null, "35907", null, "1288", null, "151333", null, "2641", null, "299408", null, "2946", null, "287514", null, "2275", null, "273507", null, "2590", null, "87090", null, "2230", null, "77785", null, "2167", null, "62967", null, "1204", null, "24627", null, "811", null, "37.4", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.7", null, "0.5", null, "7.0", null, "0.8", null, "6.8", null, "0.7", null, "6.9", null, "0.4", null, "6.9", null, "0.4", null, "7.0", null, "0.4", null, "6.5", null, "0.3", null, "6.8", null, "0.8", null, "6.3", null, "0.7", null, "5.9", null, "0.3", null, "5.9", null, "0.3", null, "5.4", null, "0.5", null, "6.4", null, "0.6", null, "5.4", null, "0.5", null, "4.8", null, "0.5", null, "3.3", null, "0.3", null, "1.9", null, "0.3", null, "1.4", null, "0.2", null, "13.7", null, "0.4", null, "4.2", null, "0.3", null, "23.6", null, "0.6", null, "9.5", null, "0.4", null, "40.2", null, "0.6", null, "79.5", null, "0.7", null, "76.4", null, "0.6", null, "72.7", null, "0.7", null, "23.1", null, "0.6", null, "20.7", null, "0.6", null, "16.7", null, "0.3", null, "6.5", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "396803", null, "4692", null, "21528", null, "1574", null, "24135", null, "2755", null, "22394", null, "3326", null, "23352", null, "1821", null, "28213", null, "2219", null, "24568", null, "1127", null, "27240", null, "1857", null, "26641", null, "2114", null, "25418", null, "2604", null, "22405", null, "1011", null, "23779", null, "1730", null, "22889", null, "2223", null, "25793", null, "2134", null, "24075", null, "1736", null, "20051", null, "1719", null, "15847", null, "1602", null, "9421", null, "1400", null, "9054", null, "1368", null, "46529", null, "2478", null, "13844", null, "976", null, "81901", null, "2905", null, "37721", null, "1729", null, "155432", null, "2877", null, "325423", null, "2996", null, "314902", null, "2789", null, "300735", null, "3215", null, "104241", null, "2459", null, "93751", null, "2099", null, "78448", null, "1280", null, "34322", null, "1036", null, "40.0", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.4", null, "6.1", null, "0.7", null, "5.6", null, "0.8", null, "5.9", null, "0.5", null, "7.1", null, "0.6", null, "6.2", null, "0.3", null, "6.9", null, "0.5", null, "6.7", null, "0.5", null, "6.4", null, "0.7", null, "5.6", null, "0.3", null, "6.0", null, "0.4", null, "5.8", null, "0.6", null, "6.5", null, "0.5", null, "6.1", null, "0.5", null, "5.1", null, "0.4", null, "4.0", null, "0.4", null, "2.4", null, "0.4", null, "2.3", null, "0.3", null, "11.7", null, "0.6", null, "3.5", null, "0.2", null, "20.6", null, "0.5", null, "9.5", null, "0.4", null, "39.2", null, "0.6", null, "82.0", null, "0.6", null, "79.4", null, "0.5", null, "75.8", null, "0.7", null, "26.3", null, "0.7", null, "23.6", null, "0.6", null, "19.8", null, "0.4", null, "8.6", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "05", "02"], ["5001900US0503", "Congressional District 3 (119th Congress), Arkansas", "816102", null, "3596", null, "49865", null, "1725", null, "53268", null, "3029", null, "56118", null, "3310", null, "58652", null, "2438", null, "62282", null, "2045", null, "56489", null, "1491", null, "58454", null, "2498", null, "59109", null, "3420", null, "55799", null, "3324", null, "48549", null, "1637", null, "47228", null, "1900", null, "42600", null, "3461", null, "45327", null, "3417", null, "39928", null, "2353", null, "32051", null, "2620", null, "24456", null, "2121", null, "14084", null, "1585", null, "11843", null, "1539", null, "109386", null, "2356", null, "33320", null, "1511", null, "192571", null, "1670", null, "87614", null, "2328", null, "350785", null, "2677", null, "645719", null, "3466", null, "623531", null, "2694", null, "582629", null, "3860", null, "167689", null, "4030", null, "150830", null, "3291", null, "122362", null, "2116", null, "50383", null, "1058", null, "36.1", null, "0.3", null, "98.9", null, "1.1", null, "62.8", null, "0.6", null, "24.4", null, "0.5", null, "38.4", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.1", null, "0.2", null, "6.5", null, "0.4", null, "6.9", null, "0.4", null, "7.2", null, "0.3", null, "7.6", null, "0.2", null, "6.9", null, "0.2", null, "7.2", null, "0.3", null, "7.2", null, "0.4", null, "6.8", null, "0.4", null, "5.9", null, "0.2", null, "5.8", null, "0.2", null, "5.2", null, "0.4", null, "5.6", null, "0.4", null, "4.9", null, "0.3", null, "3.9", null, "0.3", null, "3.0", null, "0.3", null, "1.7", null, "0.2", null, "1.5", null, "0.2", null, "13.4", null, "0.3", null, "4.1", null, "0.2", null, "23.6", null, "0.2", null, "10.7", null, "0.3", null, "43.0", null, "0.3", null, "79.1", null, "0.3", null, "76.4", null, "0.2", null, "71.4", null, "0.4", null, "20.5", null, "0.5", null, "18.5", null, "0.4", null, "15.0", null, "0.2", null, "6.2", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "2.3", null, "-888888888.0", "(X)", "405765", null, "3099", null, "26121", null, "1729", null, "26109", null, "2275", null, "28524", null, "2592", null, "29185", null, "1628", null, "31765", null, "1387", null, "27831", null, "1116", null, "29599", null, "1546", null, "30717", null, "2580", null, "27899", null, "2395", null, "24767", null, "1371", null, "23545", null, "1140", null, "21975", null, "1872", null, "22022", null, "1821", null, "19011", null, "1574", null, "15352", null, "1480", null, "10721", null, "1296", null, "6052", null, "1112", null, "4570", null, "1130", null, "54633", null, "1843", null, "16474", null, "928", null, "97228", null, "2167", null, "44476", null, "1459", null, "176996", null, "1907", null, "319321", null, "2359", null, "308537", null, "1885", null, "288222", null, "2869", null, "77728", null, "2103", null, "69484", null, "2020", null, "55706", null, "1382", null, "21343", null, "770", null, "35.6", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.4", null, "0.4", null, "6.4", null, "0.6", null, "7.0", null, "0.6", null, "7.2", null, "0.4", null, "7.8", null, "0.3", null, "6.9", null, "0.3", null, "7.3", null, "0.4", null, "7.6", null, "0.6", null, "6.9", null, "0.6", null, "6.1", null, "0.3", null, "5.8", null, "0.3", null, "5.4", null, "0.5", null, "5.4", null, "0.4", null, "4.7", null, "0.4", null, "3.8", null, "0.4", null, "2.6", null, "0.3", null, "1.5", null, "0.3", null, "1.1", null, "0.3", null, "13.5", null, "0.4", null, "4.1", null, "0.2", null, "24.0", null, "0.4", null, "11.0", null, "0.4", null, "43.6", null, "0.5", null, "78.7", null, "0.4", null, "76.0", null, "0.4", null, "71.0", null, "0.7", null, "19.2", null, "0.5", null, "17.1", null, "0.5", null, "13.7", null, "0.3", null, "5.3", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "410337", null, "2706", null, "23744", null, "1285", null, "27159", null, "2538", null, "27594", null, "2378", null, "29467", null, "1617", null, "30517", null, "1539", null, "28658", null, "1145", null, "28855", null, "1416", null, "28392", null, "1892", null, "27900", null, "1917", null, "23782", null, "926", null, "23683", null, "1391", null, "20625", null, "2286", null, "23305", null, "2249", null, "20917", null, "1649", null, "16699", null, "1730", null, "13735", null, "1392", null, "8032", null, "1243", null, "7273", null, "1161", null, "54753", null, "1826", null, "16846", null, "1282", null, "95343", null, "2037", null, "43138", null, "1590", null, "173789", null, "1785", null, "326398", null, "2211", null, "314994", null, "1701", null, "294407", null, "2127", null, "89961", null, "2615", null, "81346", null, "2124", null, "66656", null, "1130", null, "29040", null, "672", null, "36.6", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.8", null, "0.3", null, "6.6", null, "0.6", null, "6.7", null, "0.6", null, "7.2", null, "0.4", null, "7.4", null, "0.4", null, "7.0", null, "0.3", null, "7.0", null, "0.3", null, "6.9", null, "0.5", null, "6.8", null, "0.5", null, "5.8", null, "0.2", null, "5.8", null, "0.3", null, "5.0", null, "0.6", null, "5.7", null, "0.5", null, "5.1", null, "0.4", null, "4.1", null, "0.4", null, "3.3", null, "0.3", null, "2.0", null, "0.3", null, "1.8", null, "0.3", null, "13.3", null, "0.4", null, "4.1", null, "0.3", null, "23.2", null, "0.4", null, "10.5", null, "0.4", null, "42.4", null, "0.4", null, "79.5", null, "0.5", null, "76.8", null, "0.4", null, "71.7", null, "0.6", null, "21.9", null, "0.6", null, "19.8", null, "0.5", null, "16.2", null, "0.3", null, "7.1", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "05", "03"], ["5001900US0504", "Congressional District 4 (119th Congress), Arkansas", "744382", null, "8083", null, "40913", null, "3402", null, "43564", null, "3259", null, "49285", null, "3475", null, "53003", null, "3626", null, "46153", null, "3776", null, "40604", null, "2881", null, "43085", null, "2774", null, "43064", null, "3550", null, "46937", null, "3873", null, "44933", null, "2598", null, "45048", null, "2352", null, "40339", null, "2806", null, "53728", null, "2976", null, "46815", null, "2820", null, "43272", null, "2620", null, "30350", null, "2156", null, "19343", null, "1956", null, "13946", null, "1623", null, "92849", null, "3828", null, "32092", null, "2284", null, "165854", null, "5206", null, "67064", null, "3984", null, "272846", null, "4977", null, "600012", null, "5145", null, "578528", null, "4473", null, "548151", null, "4989", null, "207454", null, "3587", null, "185974", null, "4053", null, "153726", null, "2783", null, "63639", null, "1704", null, "41.3", null, "0.7", null, "95.1", null, "1.9", null, "75.2", null, "1.3", null, "36.2", null, "0.8", null, "39.0", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.4", null, "5.9", null, "0.4", null, "6.6", null, "0.5", null, "7.1", null, "0.5", null, "6.2", null, "0.5", null, "5.5", null, "0.4", null, "5.8", null, "0.4", null, "5.8", null, "0.5", null, "6.3", null, "0.5", null, "6.0", null, "0.4", null, "6.1", null, "0.3", null, "5.4", null, "0.4", null, "7.2", null, "0.4", null, "6.3", null, "0.4", null, "5.8", null, "0.4", null, "4.1", null, "0.3", null, "2.6", null, "0.3", null, "1.9", null, "0.2", null, "12.5", null, "0.5", null, "4.3", null, "0.3", null, "22.3", null, "0.5", null, "9.0", null, "0.5", null, "36.7", null, "0.5", null, "80.6", null, "0.6", null, "77.7", null, "0.5", null, "73.6", null, "0.7", null, "27.9", null, "0.5", null, "25.0", null, "0.6", null, "20.7", null, "0.4", null, "8.5", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.4", null, "-888888888.0", "(X)", "362804", null, "5510", null, "20030", null, "2543", null, "21549", null, "2227", null, "25523", null, "2721", null, "27007", null, "2662", null, "22191", null, "2374", null, "21968", null, "1916", null, "21848", null, "1841", null, "20219", null, "2427", null, "23909", null, "2475", null, "21541", null, "1622", null, "21755", null, "1350", null, "20751", null, "2088", null, "24960", null, "1821", null, "20794", null, "1662", null, "21174", null, "1536", null, "14085", null, "1449", null, "8014", null, "1065", null, "5486", null, "950", null, "47072", null, "2506", null, "16536", null, "1918", null, "83638", null, "4373", null, "32662", null, "2429", null, "137142", null, "3315", null, "290254", null, "3462", null, "279166", null, "2956", null, "263986", null, "3625", null, "94513", null, "2283", null, "86160", null, "2517", null, "69553", null, "1643", null, "27585", null, "1039", null, "40.2", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.7", null, "5.9", null, "0.6", null, "7.0", null, "0.7", null, "7.4", null, "0.7", null, "6.1", null, "0.7", null, "6.1", null, "0.5", null, "6.0", null, "0.5", null, "5.6", null, "0.7", null, "6.6", null, "0.7", null, "5.9", null, "0.5", null, "6.0", null, "0.4", null, "5.7", null, "0.6", null, "6.9", null, "0.5", null, "5.7", null, "0.5", null, "5.8", null, "0.4", null, "3.9", null, "0.4", null, "2.2", null, "0.3", null, "1.5", null, "0.3", null, "13.0", null, "0.6", null, "4.6", null, "0.5", null, "23.1", null, "0.9", null, "9.0", null, "0.7", null, "37.8", null, "0.7", null, "80.0", null, "0.9", null, "76.9", null, "0.9", null, "72.8", null, "1.1", null, "26.1", null, "0.6", null, "23.7", null, "0.7", null, "19.2", null, "0.5", null, "7.6", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "381578", null, "5586", null, "20883", null, "1862", null, "22015", null, "2690", null, "23762", null, "2469", null, "25996", null, "2736", null, "23962", null, "2343", null, "18636", null, "1712", null, "21237", null, "1630", null, "22845", null, "2294", null, "23028", null, "2675", null, "23392", null, "1882", null, "23293", null, "1793", null, "19588", null, "1793", null, "28768", null, "2137", null, "26021", null, "2001", null, "22098", null, "1908", null, "16265", null, "1490", null, "11329", null, "1391", null, "8460", null, "1191", null, "45777", null, "2758", null, "15556", null, "2011", null, "82216", null, "3511", null, "34402", null, "2421", null, "135704", null, "3392", null, "309758", null, "3724", null, "299362", null, "3330", null, "284165", null, "3443", null, "112941", null, "2486", null, "99814", null, "2465", null, "84173", null, "1799", null, "36054", null, "1265", null, "42.6", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.5", null, "5.8", null, "0.7", null, "6.2", null, "0.6", null, "6.8", null, "0.7", null, "6.3", null, "0.6", null, "4.9", null, "0.4", null, "5.6", null, "0.4", null, "6.0", null, "0.6", null, "6.0", null, "0.7", null, "6.1", null, "0.5", null, "6.1", null, "0.5", null, "5.1", null, "0.5", null, "7.5", null, "0.6", null, "6.8", null, "0.5", null, "5.8", null, "0.5", null, "4.3", null, "0.4", null, "3.0", null, "0.4", null, "2.2", null, "0.3", null, "12.0", null, "0.6", null, "4.1", null, "0.5", null, "21.5", null, "0.7", null, "9.0", null, "0.6", null, "35.6", null, "0.7", null, "81.2", null, "0.8", null, "78.5", null, "0.7", null, "74.5", null, "0.9", null, "29.6", null, "0.7", null, "26.2", null, "0.7", null, "22.1", null, "0.5", null, "9.4", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "05", "04"], ["5001900US0601", "Congressional District 1 (119th Congress), California", "759259", null, "3822", null, "41834", null, "1990", null, "52855", null, "3161", null, "44383", null, "3155", null, "51826", null, "2519", null, "52141", null, "2591", null, "45932", null, "2293", null, "50446", null, "2369", null, "48303", null, "3635", null, "50412", null, "3740", null, "42756", null, "2332", null, "38741", null, "1957", null, "41280", null, "2881", null, "48801", null, "2926", null, "45043", null, "2755", null, "41167", null, "2790", null, "30730", null, "2239", null, "19948", null, "2264", null, "12661", null, "1460", null, "97238", null, "2495", null, "29917", null, "1236", null, "168989", null, "2574", null, "74050", null, "2253", null, "299060", null, "4112", null, "609768", null, "3518", null, "590270", null, "3104", null, "558307", null, "4470", null, "198350", null, "3402", null, "177937", null, "3493", null, "149549", null, "2677", null, "63339", null, "1868", null, "39.2", null, "0.4", null, "100.5", null, "1.5", null, "72.3", null, "1.0", null, "33.9", null, "0.7", null, "38.3", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.3", null, "7.0", null, "0.4", null, "5.8", null, "0.4", null, "6.8", null, "0.3", null, "6.9", null, "0.3", null, "6.0", null, "0.3", null, "6.6", null, "0.3", null, "6.4", null, "0.5", null, "6.6", null, "0.5", null, "5.6", null, "0.3", null, "5.1", null, "0.3", null, "5.4", null, "0.4", null, "6.4", null, "0.4", null, "5.9", null, "0.4", null, "5.4", null, "0.4", null, "4.0", null, "0.3", null, "2.6", null, "0.3", null, "1.7", null, "0.2", null, "12.8", null, "0.3", null, "3.9", null, "0.2", null, "22.3", null, "0.3", null, "9.8", null, "0.3", null, "39.4", null, "0.5", null, "80.3", null, "0.4", null, "77.7", null, "0.3", null, "73.5", null, "0.5", null, "26.1", null, "0.5", null, "23.4", null, "0.5", null, "19.7", null, "0.3", null, "8.3", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "2.0", null, "-888888888.0", "(X)", "380645", null, "3245", null, "20542", null, "1754", null, "28502", null, "2635", null, "22496", null, "2746", null, "27420", null, "2271", null, "27450", null, "1798", null, "23537", null, "1349", null, "26846", null, "1553", null, "25028", null, "2500", null, "26315", null, "2598", null, "19877", null, "1550", null, "19028", null, "1299", null, "20307", null, "1812", null, "23838", null, "1939", null, "20647", null, "1929", null, "20823", null, "1618", null, "13930", null, "1332", null, "9708", null, "1384", null, "4351", null, "723", null, "50998", null, "2413", null, "15156", null, "1487", null, "86696", null, "3121", null, "39714", null, "1532", null, "156596", null, "2470", null, "303769", null, "2398", null, "293949", null, "1893", null, "277037", null, "2863", null, "93297", null, "2085", null, "84098", null, "2113", null, "69459", null, "1587", null, "27989", null, "1089", null, "37.6", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.5", null, "7.5", null, "0.7", null, "5.9", null, "0.7", null, "7.2", null, "0.6", null, "7.2", null, "0.5", null, "6.2", null, "0.4", null, "7.1", null, "0.4", null, "6.6", null, "0.7", null, "6.9", null, "0.7", null, "5.2", null, "0.4", null, "5.0", null, "0.3", null, "5.3", null, "0.5", null, "6.3", null, "0.5", null, "5.4", null, "0.5", null, "5.5", null, "0.4", null, "3.7", null, "0.4", null, "2.6", null, "0.4", null, "1.1", null, "0.2", null, "13.4", null, "0.6", null, "4.0", null, "0.4", null, "22.8", null, "0.7", null, "10.4", null, "0.4", null, "41.1", null, "0.6", null, "79.8", null, "0.7", null, "77.2", null, "0.7", null, "72.8", null, "0.8", null, "24.5", null, "0.6", null, "22.1", null, "0.5", null, "18.2", null, "0.4", null, "7.4", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "378614", null, "3712", null, "21292", null, "2110", null, "24353", null, "1717", null, "21887", null, "1840", null, "24406", null, "1821", null, "24691", null, "1786", null, "22395", null, "1508", null, "23600", null, "1521", null, "23275", null, "2157", null, "24097", null, "2264", null, "22879", null, "1718", null, "19713", null, "1286", null, "20973", null, "1988", null, "24963", null, "1974", null, "24396", null, "1883", null, "20344", null, "1810", null, "16800", null, "1671", null, "10240", null, "1471", null, "8310", null, "1221", null, "46240", null, "1466", null, "14761", null, "1266", null, "82293", null, "2982", null, "34336", null, "1358", null, "142464", null, "2750", null, "305999", null, "2427", null, "296321", null, "2093", null, "281270", null, "2919", null, "105053", null, "2409", null, "93839", null, "2630", null, "80090", null, "1788", null, "35350", null, "1402", null, "40.6", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.6", null, "0.5", null, "6.4", null, "0.5", null, "5.8", null, "0.5", null, "6.4", null, "0.5", null, "6.5", null, "0.5", null, "5.9", null, "0.4", null, "6.2", null, "0.4", null, "6.1", null, "0.6", null, "6.4", null, "0.6", null, "6.0", null, "0.5", null, "5.2", null, "0.3", null, "5.5", null, "0.5", null, "6.6", null, "0.5", null, "6.4", null, "0.5", null, "5.4", null, "0.5", null, "4.4", null, "0.4", null, "2.7", null, "0.4", null, "2.2", null, "0.3", null, "12.2", null, "0.4", null, "3.9", null, "0.3", null, "21.7", null, "0.6", null, "9.1", null, "0.4", null, "37.6", null, "0.7", null, "80.8", null, "0.7", null, "78.3", null, "0.6", null, "74.3", null, "0.7", null, "27.7", null, "0.7", null, "24.8", null, "0.7", null, "21.2", null, "0.5", null, "9.3", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "06", "01"], ["5001900US0602", "Congressional District 2 (119th Congress), California", "752654", null, "10421", null, "32647", null, "1757", null, "37317", null, "2936", null, "41436", null, "3185", null, "43478", null, "3716", null, "41603", null, "3017", null, "39106", null, "3059", null, "40529", null, "3035", null, "46497", null, "3911", null, "51334", null, "3415", null, "44149", null, "2388", null, "50755", null, "2523", null, "45374", null, "3087", null, "54163", null, "3166", null, "50209", null, "3362", null, "52898", null, "2839", null, "38365", null, "2374", null, "24027", null, "2198", null, "18767", null, "1766", null, "78753", null, "3259", null, "28413", null, "2566", null, "139813", null, "4291", null, "56668", null, "3228", null, "262547", null, "6239", null, "631689", null, "8654", null, "612841", null, "7769", null, "590212", null, "7691", null, "238429", null, "4270", null, "215260", null, "4148", null, "184266", null, "3254", null, "81159", null, "2113", null, "45.3", null, "0.6", null, "97.3", null, "1.8", null, "75.6", null, "1.4", null, "43.0", null, "1.1", null, "32.6", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.3", null, "0.2", null, "5.0", null, "0.4", null, "5.5", null, "0.4", null, "5.8", null, "0.5", null, "5.5", null, "0.4", null, "5.2", null, "0.4", null, "5.4", null, "0.4", null, "6.2", null, "0.5", null, "6.8", null, "0.4", null, "5.9", null, "0.3", null, "6.7", null, "0.3", null, "6.0", null, "0.4", null, "7.2", null, "0.4", null, "6.7", null, "0.5", null, "7.0", null, "0.4", null, "5.1", null, "0.3", null, "3.2", null, "0.3", null, "2.5", null, "0.2", null, "10.5", null, "0.4", null, "3.8", null, "0.3", null, "18.6", null, "0.4", null, "7.5", null, "0.4", null, "34.9", null, "0.5", null, "83.9", null, "0.5", null, "81.4", null, "0.4", null, "78.4", null, "0.5", null, "31.7", null, "0.6", null, "28.6", null, "0.6", null, "24.5", null, "0.5", null, "10.8", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.2", null, "-888888888.0", "(X)", "371091", null, "6833", null, "17336", null, "1934", null, "18508", null, "2425", null, "19649", null, "1872", null, "20130", null, "2600", null, "21483", null, "2420", null, "20778", null, "2432", null, "21179", null, "2131", null, "22641", null, "2334", null, "26835", null, "2072", null, "22520", null, "1541", null, "25221", null, "1598", null, "22473", null, "2206", null, "26579", null, "2091", null, "24737", null, "1963", null, "24120", null, "1827", null, "18570", null, "1628", null, "11260", null, "1326", null, "7072", null, "1134", null, "38157", null, "2381", null, "13248", null, "1838", null, "68741", null, "4095", null, "28365", null, "2401", null, "133046", null, "4249", null, "310409", null, "5226", null, "302350", null, "4673", null, "290191", null, "4683", null, "112338", null, "3016", null, "100409", null, "2678", null, "85759", null, "2058", null, "36902", null, "1541", null, "44.3", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.7", null, "0.5", null, "5.0", null, "0.6", null, "5.3", null, "0.5", null, "5.4", null, "0.7", null, "5.8", null, "0.7", null, "5.6", null, "0.6", null, "5.7", null, "0.6", null, "6.1", null, "0.6", null, "7.2", null, "0.5", null, "6.1", null, "0.4", null, "6.8", null, "0.5", null, "6.1", null, "0.6", null, "7.2", null, "0.5", null, "6.7", null, "0.6", null, "6.5", null, "0.5", null, "5.0", null, "0.4", null, "3.0", null, "0.4", null, "1.9", null, "0.3", null, "10.3", null, "0.5", null, "3.6", null, "0.5", null, "18.5", null, "0.9", null, "7.6", null, "0.6", null, "35.9", null, "0.7", null, "83.6", null, "0.9", null, "81.5", null, "0.9", null, "78.2", null, "1.0", null, "30.3", null, "0.8", null, "27.1", null, "0.8", null, "23.1", null, "0.7", null, "9.9", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "381563", null, "5557", null, "15311", null, "1412", null, "18809", null, "1981", null, "21787", null, "2455", null, "23348", null, "2524", null, "20120", null, "1770", null, "18328", null, "1555", null, "19350", null, "1534", null, "23856", null, "2358", null, "24499", null, "2461", null, "21629", null, "1740", null, "25534", null, "1671", null, "22901", null, "1912", null, "27584", null, "2145", null, "25472", null, "2067", null, "28778", null, "2027", null, "19795", null, "1656", null, "12767", null, "1499", null, "11695", null, "1376", null, "40596", null, "2096", null, "15165", null, "2121", null, "71072", null, "3114", null, "28303", null, "1870", null, "129501", null, "3655", null, "321280", null, "4991", null, "310491", null, "4338", null, "300021", null, "4688", null, "126091", null, "2681", null, "114851", null, "2765", null, "98507", null, "1950", null, "44257", null, "1189", null, "46.5", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.0", null, "0.4", null, "4.9", null, "0.5", null, "5.7", null, "0.6", null, "6.1", null, "0.6", null, "5.3", null, "0.5", null, "4.8", null, "0.4", null, "5.1", null, "0.4", null, "6.3", null, "0.6", null, "6.4", null, "0.6", null, "5.7", null, "0.4", null, "6.7", null, "0.4", null, "6.0", null, "0.5", null, "7.2", null, "0.6", null, "6.7", null, "0.6", null, "7.5", null, "0.5", null, "5.2", null, "0.5", null, "3.3", null, "0.4", null, "3.1", null, "0.4", null, "10.6", null, "0.5", null, "4.0", null, "0.5", null, "18.6", null, "0.7", null, "7.4", null, "0.5", null, "33.9", null, "0.7", null, "84.2", null, "0.7", null, "81.4", null, "0.7", null, "78.6", null, "0.9", null, "33.0", null, "0.7", null, "30.1", null, "0.7", null, "25.8", null, "0.5", null, "11.6", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "06", "02"], ["5001900US0603", "Congressional District 3 (119th Congress), California", "807351", null, "10328", null, "38303", null, "2622", null, "48719", null, "3756", null, "49575", null, "3999", null, "47655", null, "3085", null, "38238", null, "2636", null, "39929", null, "2295", null, "47732", null, "2184", null, "54545", null, "4470", null, "61172", null, "3627", null, "52058", null, "2320", null, "48668", null, "2667", null, "48033", null, "3745", null, "54987", null, "3266", null, "54299", null, "2806", null, "45547", null, "3289", null, "38787", null, "2430", null, "22104", null, "1934", null, "17000", null, "2249", null, "98294", null, "4322", null, "30562", null, "2109", null, "167159", null, "5873", null, "55331", null, "3213", null, "289271", null, "6466", null, "659799", null, "7717", null, "640192", null, "7252", null, "614663", null, "7015", null, "232724", null, "5469", null, "211989", null, "5296", null, "177737", null, "4271", null, "77891", null, "2455", null, "43.3", null, "0.4", null, "100.7", null, "1.8", null, "74.6", null, "1.8", null, "38.4", null, "1.2", null, "36.1", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.7", null, "0.3", null, "6.0", null, "0.4", null, "6.1", null, "0.5", null, "5.9", null, "0.4", null, "4.7", null, "0.3", null, "4.9", null, "0.3", null, "5.9", null, "0.3", null, "6.8", null, "0.5", null, "7.6", null, "0.4", null, "6.4", null, "0.3", null, "6.0", null, "0.3", null, "5.9", null, "0.5", null, "6.8", null, "0.4", null, "6.7", null, "0.3", null, "5.6", null, "0.4", null, "4.8", null, "0.3", null, "2.7", null, "0.2", null, "2.1", null, "0.3", null, "12.2", null, "0.5", null, "3.8", null, "0.3", null, "20.7", null, "0.6", null, "6.9", null, "0.4", null, "35.8", null, "0.5", null, "81.7", null, "0.6", null, "79.3", null, "0.6", null, "76.1", null, "0.6", null, "28.8", null, "0.7", null, "26.3", null, "0.7", null, "22.0", null, "0.5", null, "9.6", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.2", null, "-888888888.0", "(X)", "405006", null, "6823", null, "19173", null, "1826", null, "25140", null, "2710", null, "27809", null, "2804", null, "25098", null, "2206", null, "20258", null, "1893", null, "20923", null, "1598", null, "23493", null, "1424", null, "27277", null, "2761", null, "31481", null, "2514", null, "26185", null, "1564", null, "24557", null, "1869", null, "24626", null, "2783", null, "26915", null, "2185", null, "25900", null, "1778", null, "21668", null, "2119", null, "16815", null, "1609", null, "11147", null, "1377", null, "6541", null, "1196", null, "52949", null, "3001", null, "15646", null, "1530", null, "87768", null, "4082", null, "29710", null, "2150", null, "148530", null, "4174", null, "327760", null, "5004", null, "317238", null, "4576", null, "301375", null, "4487", null, "108986", null, "3325", null, "99055", null, "3343", null, "82071", null, "2511", null, "34503", null, "1620", null, "42.2", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.7", null, "0.4", null, "6.2", null, "0.6", null, "6.9", null, "0.7", null, "6.2", null, "0.5", null, "5.0", null, "0.5", null, "5.2", null, "0.4", null, "5.8", null, "0.3", null, "6.7", null, "0.7", null, "7.8", null, "0.6", null, "6.5", null, "0.4", null, "6.1", null, "0.5", null, "6.1", null, "0.7", null, "6.6", null, "0.5", null, "6.4", null, "0.4", null, "5.4", null, "0.5", null, "4.2", null, "0.4", null, "2.8", null, "0.3", null, "1.6", null, "0.3", null, "13.1", null, "0.6", null, "3.9", null, "0.4", null, "21.7", null, "0.8", null, "7.3", null, "0.5", null, "36.7", null, "0.7", null, "80.9", null, "0.8", null, "78.3", null, "0.8", null, "74.4", null, "0.8", null, "26.9", null, "0.9", null, "24.5", null, "0.8", null, "20.3", null, "0.6", null, "8.5", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "402345", null, "5783", null, "19130", null, "1570", null, "23579", null, "2434", null, "21766", null, "2489", null, "22557", null, "1905", null, "17980", null, "1882", null, "19006", null, "1403", null, "24239", null, "1500", null, "27268", null, "2658", null, "29691", null, "2448", null, "25873", null, "1491", null, "24111", null, "1570", null, "23407", null, "2004", null, "28072", null, "2048", null, "28399", null, "2060", null, "23879", null, "1919", null, "21972", null, "1621", null, "10957", null, "1257", null, "10459", null, "1530", null, "45345", null, "2618", null, "14916", null, "1390", null, "79391", null, "3514", null, "25621", null, "2188", null, "140741", null, "3564", null, "332039", null, "4471", null, "322954", null, "4360", null, "313288", null, "4221", null, "123738", null, "3284", null, "112934", null, "2983", null, "95666", null, "2560", null, "43388", null, "1506", null, "44.1", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.8", null, "0.4", null, "5.9", null, "0.6", null, "5.4", null, "0.6", null, "5.6", null, "0.4", null, "4.5", null, "0.5", null, "4.7", null, "0.3", null, "6.0", null, "0.4", null, "6.8", null, "0.6", null, "7.4", null, "0.6", null, "6.4", null, "0.4", null, "6.0", null, "0.4", null, "5.8", null, "0.5", null, "7.0", null, "0.5", null, "7.1", null, "0.5", null, "5.9", null, "0.5", null, "5.5", null, "0.4", null, "2.7", null, "0.3", null, "2.6", null, "0.4", null, "11.3", null, "0.6", null, "3.7", null, "0.3", null, "19.7", null, "0.7", null, "6.4", null, "0.5", null, "35.0", null, "0.6", null, "82.5", null, "0.7", null, "80.3", null, "0.7", null, "77.9", null, "0.8", null, "30.8", null, "0.8", null, "28.1", null, "0.8", null, "23.8", null, "0.7", null, "10.8", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "06", "03"], ["5001900US0604", "Congressional District 4 (119th Congress), California", "760875", null, "11324", null, "34766", null, "2359", null, "39705", null, "3213", null, "41824", null, "3395", null, "60220", null, "3133", null, "64866", null, "3742", null, "47136", null, "3026", null, "48410", null, "2786", null, "44244", null, "3721", null, "49652", null, "3767", null, "45878", null, "2708", null, "41593", null, "2654", null, "42177", null, "3312", null, "49406", null, "3450", null, "45835", null, "3326", null, "38579", null, "2723", null, "32461", null, "2318", null, "17383", null, "1957", null, "16740", null, "1651", null, "81529", null, "4063", null, "28684", null, "2205", null, "144979", null, "5542", null, "96402", null, "3498", null, "314528", null, "6845", null, "634340", null, "9167", null, "615896", null, "8997", null, "568057", null, "9971", null, "200404", null, "5804", null, "180969", null, "5487", null, "150998", null, "4476", null, "66584", null, "2596", null, "39.9", null, "0.7", null, "97.2", null, "2.1", null, "63.7", null, "1.5", null, "32.5", null, "1.1", null, "31.2", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.6", null, "0.3", null, "5.2", null, "0.4", null, "5.5", null, "0.4", null, "7.9", null, "0.4", null, "8.5", null, "0.5", null, "6.2", null, "0.4", null, "6.4", null, "0.4", null, "5.8", null, "0.5", null, "6.5", null, "0.5", null, "6.0", null, "0.3", null, "5.5", null, "0.3", null, "5.5", null, "0.4", null, "6.5", null, "0.4", null, "6.0", null, "0.4", null, "5.1", null, "0.4", null, "4.3", null, "0.3", null, "2.3", null, "0.3", null, "2.2", null, "0.2", null, "10.7", null, "0.5", null, "3.8", null, "0.3", null, "19.1", null, "0.6", null, "12.7", null, "0.4", null, "41.3", null, "0.6", null, "83.4", null, "0.6", null, "80.9", null, "0.6", null, "74.7", null, "0.8", null, "26.3", null, "0.7", null, "23.8", null, "0.7", null, "19.8", null, "0.6", null, "8.8", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "0.8", null, "-888888888.0", "(X)", "375004", null, "7237", null, "15755", null, "2077", null, "22877", null, "2496", null, "20788", null, "2421", null, "29432", null, "2355", null, "30823", null, "2882", null, "25335", null, "1989", null, "24213", null, "2119", null, "23137", null, "2294", null, "25474", null, "2496", null, "24381", null, "1921", null, "20213", null, "2014", null, "21534", null, "2368", null, "23452", null, "2238", null, "21788", null, "2162", null, "18274", null, "1793", null, "14115", null, "1412", null, "7902", null, "1019", null, "5511", null, "977", null, "43665", null, "2909", null, "15283", null, "1516", null, "74703", null, "3863", null, "44972", null, "2496", null, "158414", null, "4580", null, "310624", null, "5577", null, "300301", null, "5495", null, "277453", null, "5944", null, "91042", null, "3509", null, "82087", null, "3402", null, "67590", null, "2819", null, "27528", null, "1539", null, "39.0", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.2", null, "0.5", null, "6.1", null, "0.6", null, "5.5", null, "0.6", null, "7.8", null, "0.6", null, "8.2", null, "0.8", null, "6.8", null, "0.5", null, "6.5", null, "0.6", null, "6.2", null, "0.6", null, "6.8", null, "0.7", null, "6.5", null, "0.5", null, "5.4", null, "0.5", null, "5.7", null, "0.6", null, "6.3", null, "0.6", null, "5.8", null, "0.6", null, "4.9", null, "0.5", null, "3.8", null, "0.4", null, "2.1", null, "0.3", null, "1.5", null, "0.3", null, "11.6", null, "0.7", null, "4.1", null, "0.4", null, "19.9", null, "0.8", null, "12.0", null, "0.6", null, "42.2", null, "1.0", null, "82.8", null, "0.9", null, "80.1", null, "0.8", null, "74.0", null, "1.2", null, "24.3", null, "0.9", null, "21.9", null, "0.9", null, "18.0", null, "0.7", null, "7.3", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "385871", null, "6760", null, "19011", null, "1954", null, "16828", null, "2072", null, "21036", null, "2350", null, "30788", null, "2441", null, "34043", null, "2341", null, "21801", null, "1873", null, "24197", null, "1868", null, "21107", null, "2157", null, "24178", null, "2451", null, "21497", null, "1694", null, "21380", null, "1359", null, "20643", null, "1931", null, "25954", null, "2248", null, "24047", null, "1942", null, "20305", null, "1904", null, "18346", null, "1785", null, "9481", null, "1489", null, "11229", null, "1338", null, "37864", null, "2430", null, "13401", null, "1750", null, "70276", null, "3573", null, "51430", null, "2564", null, "156114", null, "4760", null, "323716", null, "5737", null, "315595", null, "5364", null, "290604", null, "5774", null, "109362", null, "3431", null, "98882", null, "3058", null, "83408", null, "2512", null, "39056", null, "1733", null, "40.8", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.9", null, "0.5", null, "4.4", null, "0.5", null, "5.5", null, "0.6", null, "8.0", null, "0.6", null, "8.8", null, "0.6", null, "5.6", null, "0.5", null, "6.3", null, "0.5", null, "5.5", null, "0.6", null, "6.3", null, "0.6", null, "5.6", null, "0.4", null, "5.5", null, "0.4", null, "5.3", null, "0.5", null, "6.7", null, "0.6", null, "6.2", null, "0.5", null, "5.3", null, "0.5", null, "4.8", null, "0.5", null, "2.5", null, "0.4", null, "2.9", null, "0.4", null, "9.8", null, "0.6", null, "3.5", null, "0.4", null, "18.2", null, "0.8", null, "13.3", null, "0.6", null, "40.5", null, "0.8", null, "83.9", null, "0.8", null, "81.8", null, "0.8", null, "75.3", null, "0.9", null, "28.3", null, "0.9", null, "25.6", null, "0.8", null, "21.6", null, "0.7", null, "10.1", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "06", "04"], ["5001900US0605", "Congressional District 5 (119th Congress), California", "772810", null, "17057", null, "38341", null, "3209", null, "43586", null, "3889", null, "44623", null, "4157", null, "50525", null, "3773", null, "42121", null, "4005", null, "42186", null, "3997", null, "45688", null, "4064", null, "49859", null, "3969", null, "51162", null, "4484", null, "47858", null, "3458", null, "44169", null, "2925", null, "47404", null, "3867", null, "51536", null, "3575", null, "50667", null, "3872", null, "46967", null, "4169", null, "33304", null, "2510", null, "22596", null, "2740", null, "20218", null, "2833", null, "88209", null, "5860", null, "32558", null, "2629", null, "159108", null, "7776", null, "60088", null, "4915", null, "281541", null, "10043", null, "633642", null, "13148", null, "613702", null, "12701", null, "587701", null, "11958", null, "225288", null, "7266", null, "203640", null, "6241", null, "173752", null, "5302", null, "76118", null, "3206", null, "42.8", null, "0.8", null, "97.3", null, "2.3", null, "75.7", null, "2.3", null, "39.5", null, "1.6", null, "36.2", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.0", null, "0.4", null, "5.6", null, "0.5", null, "5.8", null, "0.5", null, "6.5", null, "0.5", null, "5.5", null, "0.5", null, "5.5", null, "0.5", null, "5.9", null, "0.5", null, "6.5", null, "0.5", null, "6.6", null, "0.6", null, "6.2", null, "0.4", null, "5.7", null, "0.4", null, "6.1", null, "0.5", null, "6.7", null, "0.5", null, "6.6", null, "0.5", null, "6.1", null, "0.6", null, "4.3", null, "0.3", null, "2.9", null, "0.4", null, "2.6", null, "0.4", null, "11.4", null, "0.6", null, "4.2", null, "0.3", null, "20.6", null, "0.8", null, "7.8", null, "0.6", null, "36.4", null, "0.8", null, "82.0", null, "0.7", null, "79.4", null, "0.8", null, "76.0", null, "0.9", null, "29.2", null, "1.0", null, "26.4", null, "0.9", null, "22.5", null, "0.7", null, "9.8", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.3", null, "-888888888.0", "(X)", "381212", null, "8691", null, "19072", null, "2565", null, "22940", null, "2485", null, "21620", null, "2686", null, "25733", null, "2533", null, "22576", null, "2356", null, "22261", null, "2424", null, "21763", null, "2203", null, "25601", null, "2492", null, "24876", null, "2645", null, "25224", null, "2511", null, "22917", null, "2120", null, "23946", null, "2295", null, "24568", null, "2288", null, "22792", null, "2210", null, "22577", null, "2528", null, "15832", null, "1663", null, "9020", null, "1589", null, "7894", null, "1500", null, "44560", null, "3456", null, "16171", null, "1805", null, "79803", null, "4358", null, "32138", null, "2827", null, "142810", null, "5957", null, "311321", null, "7335", null, "301409", null, "7161", null, "288027", null, "6637", null, "102683", null, "3703", null, "91843", null, "3118", null, "78115", null, "2623", null, "32746", null, "1691", null, "41.9", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.0", null, "0.7", null, "6.0", null, "0.6", null, "5.7", null, "0.7", null, "6.8", null, "0.6", null, "5.9", null, "0.6", null, "5.8", null, "0.6", null, "5.7", null, "0.6", null, "6.7", null, "0.6", null, "6.5", null, "0.7", null, "6.6", null, "0.7", null, "6.0", null, "0.5", null, "6.3", null, "0.6", null, "6.4", null, "0.6", null, "6.0", null, "0.6", null, "5.9", null, "0.7", null, "4.2", null, "0.4", null, "2.4", null, "0.4", null, "2.1", null, "0.4", null, "11.7", null, "0.8", null, "4.2", null, "0.5", null, "20.9", null, "1.0", null, "8.4", null, "0.7", null, "37.5", null, "1.2", null, "81.7", null, "0.9", null, "79.1", null, "1.0", null, "75.6", null, "1.1", null, "26.9", null, "0.9", null, "24.1", null, "0.8", null, "20.5", null, "0.7", null, "8.6", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "391598", null, "10521", null, "19269", null, "2740", null, "20646", null, "2592", null, "23003", null, "2605", null, "24792", null, "2254", null, "19545", null, "2958", null, "19925", null, "2582", null, "23925", null, "2695", null, "24258", null, "2554", null, "26286", null, "3059", null, "22634", null, "1964", null, "21252", null, "1611", null, "23458", null, "2438", null, "26968", null, "2214", null, "27875", null, "2731", null, "24390", null, "2451", null, "17472", null, "1849", null, "13576", null, "2222", null, "12324", null, "1927", null, "43649", null, "3654", null, "16387", null, "1689", null, "79305", null, "5269", null, "27950", null, "3303", null, "138731", null, "5534", null, "322321", null, "7713", null, "312293", null, "7323", null, "299674", null, "7219", null, "122605", null, "4722", null, "111797", null, "4223", null, "95637", null, "3567", null, "43372", null, "2329", null, "43.7", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.9", null, "0.6", null, "5.3", null, "0.6", null, "5.9", null, "0.6", null, "6.3", null, "0.6", null, "5.0", null, "0.7", null, "5.1", null, "0.6", null, "6.1", null, "0.7", null, "6.2", null, "0.6", null, "6.7", null, "0.8", null, "5.8", null, "0.5", null, "5.4", null, "0.4", null, "6.0", null, "0.6", null, "6.9", null, "0.6", null, "7.1", null, "0.7", null, "6.2", null, "0.6", null, "4.5", null, "0.5", null, "3.5", null, "0.6", null, "3.1", null, "0.5", null, "11.1", null, "0.8", null, "4.2", null, "0.4", null, "20.3", null, "1.0", null, "7.1", null, "0.8", null, "35.4", null, "0.9", null, "82.3", null, "0.9", null, "79.7", null, "1.0", null, "76.5", null, "1.1", null, "31.3", null, "1.2", null, "28.5", null, "1.1", null, "24.4", null, "0.9", null, "11.1", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "06", "05"], ["5001900US0606", "Congressional District 6 (119th Congress), California", "761692", null, "17230", null, "48288", null, "3155", null, "50244", null, "5007", null, "49058", null, "4224", null, "44389", null, "3819", null, "46329", null, "3232", null, "51976", null, "4367", null, "63308", null, "4563", null, "63171", null, "4518", null, "53309", null, "3948", null, "44869", null, "2988", null, "41716", null, "2836", null, "39307", null, "3442", null, "44540", null, "3838", null, "39426", null, "3282", null, "33404", null, "2873", null, "21922", null, "2171", null, "13998", null, "1713", null, "12438", null, "1793", null, "99302", null, "5675", null, "28464", null, "2820", null, "176054", null, "8394", null, "62254", null, "4186", null, "322482", null, "10756", null, "601960", null, "12610", null, "585638", null, "11723", null, "560885", null, "10855", null, "165728", null, "5689", null, "148196", null, "4851", null, "121188", null, "3770", null, "48358", null, "2652", null, "37.2", null, "0.6", null, "96.6", null, "2.8", null, "64.0", null, "1.8", null, "26.1", null, "1.1", null, "37.9", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.3", null, "0.4", null, "6.6", null, "0.6", null, "6.4", null, "0.5", null, "5.8", null, "0.4", null, "6.1", null, "0.4", null, "6.8", null, "0.5", null, "8.3", null, "0.5", null, "8.3", null, "0.6", null, "7.0", null, "0.5", null, "5.9", null, "0.4", null, "5.5", null, "0.4", null, "5.2", null, "0.4", null, "5.8", null, "0.5", null, "5.2", null, "0.4", null, "4.4", null, "0.4", null, "2.9", null, "0.3", null, "1.8", null, "0.2", null, "1.6", null, "0.2", null, "13.0", null, "0.6", null, "3.7", null, "0.3", null, "23.1", null, "0.8", null, "8.2", null, "0.5", null, "42.3", null, "0.8", null, "79.0", null, "0.7", null, "76.9", null, "0.8", null, "73.6", null, "0.8", null, "21.8", null, "0.8", null, "19.5", null, "0.7", null, "15.9", null, "0.6", null, "6.3", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.7", null, "-888888888.0", "(X)", "374292", null, "9846", null, "25732", null, "2517", null, "25623", null, "3899", null, "22891", null, "3047", null, "22367", null, "2258", null, "22403", null, "2054", null, "26967", null, "2410", null, "32798", null, "2860", null, "31965", null, "2795", null, "26948", null, "2990", null, "22456", null, "1849", null, "20678", null, "1949", null, "18981", null, "2238", null, "21557", null, "2397", null, "17064", null, "2148", null, "16504", null, "1916", null, "9355", null, "1188", null, "5739", null, "1058", null, "4264", null, "944", null, "48514", null, "3671", null, "14304", null, "1839", null, "88550", null, "5283", null, "30466", null, "2547", null, "163448", null, "6232", null, "295163", null, "7460", null, "285742", null, "6967", null, "273717", null, "6470", null, "74483", null, "3310", null, "66206", null, "2999", null, "52926", null, "2317", null, "19358", null, "1311", null, "36.2", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.9", null, "0.6", null, "6.8", null, "1.0", null, "6.1", null, "0.8", null, "6.0", null, "0.6", null, "6.0", null, "0.5", null, "7.2", null, "0.6", null, "8.8", null, "0.7", null, "8.5", null, "0.7", null, "7.2", null, "0.8", null, "6.0", null, "0.5", null, "5.5", null, "0.5", null, "5.1", null, "0.6", null, "5.8", null, "0.6", null, "4.6", null, "0.6", null, "4.4", null, "0.5", null, "2.5", null, "0.3", null, "1.5", null, "0.3", null, "1.1", null, "0.3", null, "13.0", null, "0.8", null, "3.8", null, "0.5", null, "23.7", null, "1.0", null, "8.1", null, "0.6", null, "43.7", null, "1.1", null, "78.9", null, "1.0", null, "76.3", null, "1.0", null, "73.1", null, "1.0", null, "19.9", null, "0.9", null, "17.7", null, "0.9", null, "14.1", null, "0.7", null, "5.2", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "387400", null, "10699", null, "22556", null, "2030", null, "24621", null, "3539", null, "26167", null, "3073", null, "22022", null, "2306", null, "23926", null, "2144", null, "25009", null, "2731", null, "30510", null, "2680", null, "31206", null, "3120", null, "26361", null, "2470", null, "22413", null, "1947", null, "21038", null, "2272", null, "20326", null, "2597", null, "22983", null, "2502", null, "22362", null, "2186", null, "16900", null, "1834", null, "12567", null, "1535", null, "8259", null, "1304", null, "8174", null, "1352", null, "50788", null, "3939", null, "14160", null, "1877", null, "87504", null, "5471", null, "31788", null, "2625", null, "159034", null, "6545", null, "306797", null, "7409", null, "299896", null, "7160", null, "287168", null, "6716", null, "91245", null, "3694", null, "81990", null, "3449", null, "68262", null, "2873", null, "29000", null, "2034", null, "38.3", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.8", null, "0.5", null, "6.4", null, "0.9", null, "6.8", null, "0.7", null, "5.7", null, "0.5", null, "6.2", null, "0.5", null, "6.5", null, "0.7", null, "7.9", null, "0.6", null, "8.1", null, "0.8", null, "6.8", null, "0.6", null, "5.8", null, "0.5", null, "5.4", null, "0.6", null, "5.2", null, "0.7", null, "5.9", null, "0.6", null, "5.8", null, "0.6", null, "4.4", null, "0.5", null, "3.2", null, "0.4", null, "2.1", null, "0.3", null, "2.1", null, "0.3", null, "13.1", null, "0.8", null, "3.7", null, "0.4", null, "22.6", null, "1.0", null, "8.2", null, "0.6", null, "41.1", null, "1.1", null, "79.2", null, "1.0", null, "77.4", null, "1.0", null, "74.1", null, "1.1", null, "23.6", null, "1.0", null, "21.2", null, "1.0", null, "17.6", null, "0.9", null, "7.5", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "06", "06"], ["5001900US0607", "Congressional District 7 (119th Congress), California", "764481", null, "15942", null, "37874", null, "3113", null, "43173", null, "4225", null, "50678", null, "4318", null, "53006", null, "3887", null, "49589", null, "3154", null, "53063", null, "3815", null, "60661", null, "4522", null, "54432", null, "4197", null, "57285", null, "4422", null, "45855", null, "2866", null, "48863", null, "2652", null, "42638", null, "3747", null, "46787", null, "3689", null, "37693", null, "3022", null, "32250", null, "2850", null, "22753", null, "2084", null, "13453", null, "1686", null, "14428", null, "1571", null, "93851", null, "5594", null, "32900", null, "3159", null, "164625", null, "7949", null, "69695", null, "3973", null, "328036", null, "11054", null, "619433", null, "12069", null, "599856", null, "11504", null, "568509", null, "10850", null, "167364", null, "5708", null, "148721", null, "5071", null, "120577", null, "3837", null, "50634", null, "2612", null, "38.3", null, "0.6", null, "96.0", null, "2.8", null, "59.5", null, "1.9", null, "25.2", null, "1.1", null, "34.3", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.0", null, "0.4", null, "5.6", null, "0.5", null, "6.6", null, "0.5", null, "6.9", null, "0.5", null, "6.5", null, "0.4", null, "6.9", null, "0.5", null, "7.9", null, "0.5", null, "7.1", null, "0.5", null, "7.5", null, "0.5", null, "6.0", null, "0.4", null, "6.4", null, "0.3", null, "5.6", null, "0.5", null, "6.1", null, "0.5", null, "4.9", null, "0.4", null, "4.2", null, "0.4", null, "3.0", null, "0.3", null, "1.8", null, "0.2", null, "1.9", null, "0.2", null, "12.3", null, "0.6", null, "4.3", null, "0.4", null, "21.5", null, "0.8", null, "9.1", null, "0.5", null, "42.9", null, "0.9", null, "81.0", null, "0.7", null, "78.5", null, "0.8", null, "74.4", null, "0.8", null, "21.9", null, "0.8", null, "19.5", null, "0.7", null, "15.8", null, "0.6", null, "6.6", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.7", null, "-888888888.0", "(X)", "374393", null, "9290", null, "19456", null, "2567", null, "22790", null, "2568", null, "27051", null, "3129", null, "28082", null, "2408", null, "25552", null, "2294", null, "24921", null, "2277", null, "28782", null, "2940", null, "27512", null, "2781", null, "28915", null, "3242", null, "23072", null, "1922", null, "23720", null, "1774", null, "20518", null, "2436", null, "21285", null, "2284", null, "17931", null, "2050", null, "14151", null, "1795", null, "10028", null, "1244", null, "5651", null, "1049", null, "4976", null, "1019", null, "49841", null, "3816", null, "17840", null, "1991", null, "87137", null, "5256", null, "35794", null, "2888", null, "163764", null, "6654", null, "297936", null, "7102", null, "287256", null, "7051", null, "270601", null, "6605", null, "74022", null, "3646", null, "65842", null, "3466", null, "52737", null, "2652", null, "20655", null, "1455", null, "36.8", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.6", null, "6.1", null, "0.7", null, "7.2", null, "0.8", null, "7.5", null, "0.6", null, "6.8", null, "0.6", null, "6.7", null, "0.6", null, "7.7", null, "0.7", null, "7.3", null, "0.7", null, "7.7", null, "0.8", null, "6.2", null, "0.5", null, "6.3", null, "0.5", null, "5.5", null, "0.6", null, "5.7", null, "0.6", null, "4.8", null, "0.6", null, "3.8", null, "0.5", null, "2.7", null, "0.4", null, "1.5", null, "0.3", null, "1.3", null, "0.3", null, "13.3", null, "0.9", null, "4.8", null, "0.5", null, "23.3", null, "1.1", null, "9.6", null, "0.7", null, "43.7", null, "1.2", null, "79.6", null, "1.1", null, "76.7", null, "1.1", null, "72.3", null, "1.1", null, "19.8", null, "1.0", null, "17.6", null, "1.0", null, "14.1", null, "0.8", null, "5.5", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "390088", null, "10078", null, "18418", null, "2048", null, "20383", null, "2761", null, "23627", null, "2903", null, "24924", null, "2339", null, "24037", null, "2124", null, "28142", null, "2620", null, "31879", null, "2672", null, "26920", null, "2522", null, "28370", null, "2278", null, "22783", null, "1861", null, "25143", null, "2219", null, "22120", null, "2369", null, "25502", null, "2494", null, "19762", null, "2006", null, "18099", null, "1731", null, "12725", null, "1326", null, "7802", null, "1304", null, "9452", null, "1231", null, "44010", null, "3715", null, "15060", null, "1886", null, "77488", null, "5067", null, "33901", null, "2373", null, "164272", null, "6642", null, "321497", null, "7938", null, "312600", null, "7432", null, "297908", null, "7174", null, "93342", null, "3262", null, "82879", null, "3104", null, "67840", null, "2775", null, "29979", null, "1869", null, "39.5", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.7", null, "0.5", null, "5.2", null, "0.7", null, "6.1", null, "0.7", null, "6.4", null, "0.5", null, "6.2", null, "0.5", null, "7.2", null, "0.6", null, "8.2", null, "0.6", null, "6.9", null, "0.6", null, "7.3", null, "0.6", null, "5.8", null, "0.4", null, "6.4", null, "0.5", null, "5.7", null, "0.6", null, "6.5", null, "0.6", null, "5.1", null, "0.5", null, "4.6", null, "0.5", null, "3.3", null, "0.3", null, "2.0", null, "0.3", null, "2.4", null, "0.3", null, "11.3", null, "0.8", null, "3.9", null, "0.4", null, "19.9", null, "1.0", null, "8.7", null, "0.6", null, "42.1", null, "1.1", null, "82.4", null, "1.0", null, "80.1", null, "1.0", null, "76.4", null, "1.0", null, "23.9", null, "0.9", null, "21.2", null, "1.0", null, "17.4", null, "0.8", null, "7.7", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "06", "07"], ["5001900US0608", "Congressional District 8 (119th Congress), California", "748589", null, "9462", null, "40076", null, "3016", null, "39394", null, "3181", null, "47166", null, "4018", null, "46302", null, "3405", null, "47449", null, "3507", null, "47532", null, "3215", null, "55971", null, "3210", null, "53972", null, "4350", null, "54825", null, "4459", null, "51174", null, "3514", null, "43389", null, "3090", null, "44699", null, "3653", null, "49123", null, "3744", null, "39181", null, "3239", null, "35982", null, "2846", null, "25893", null, "2756", null, "14534", null, "2038", null, "11927", null, "1768", null, "86560", null, "4684", null, "27935", null, "2381", null, "154571", null, "6619", null, "65816", null, "4000", null, "306051", null, "7542", null, "613259", null, "8474", null, "594018", null, "8442", null, "567308", null, "8359", null, "176640", null, "6820", null, "157790", null, "5963", null, "127517", null, "4822", null, "52354", null, "3126", null, "39.7", null, "0.7", null, "96.3", null, "2.2", null, "60.5", null, "2.1", null, "27.3", null, "1.3", null, "33.1", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.4", null, "5.3", null, "0.4", null, "6.3", null, "0.5", null, "6.2", null, "0.4", null, "6.3", null, "0.5", null, "6.3", null, "0.4", null, "7.5", null, "0.4", null, "7.2", null, "0.6", null, "7.3", null, "0.6", null, "6.8", null, "0.4", null, "5.8", null, "0.4", null, "6.0", null, "0.5", null, "6.6", null, "0.5", null, "5.2", null, "0.4", null, "4.8", null, "0.4", null, "3.5", null, "0.4", null, "1.9", null, "0.3", null, "1.6", null, "0.2", null, "11.6", null, "0.6", null, "3.7", null, "0.3", null, "20.6", null, "0.8", null, "8.8", null, "0.5", null, "40.9", null, "0.8", null, "81.9", null, "0.8", null, "79.4", null, "0.8", null, "75.8", null, "0.9", null, "23.6", null, "0.9", null, "21.1", null, "0.8", null, "17.0", null, "0.7", null, "7.0", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.8", null, "-888888888.0", "(X)", "367327", null, "6388", null, "19417", null, "1867", null, "19321", null, "1972", null, "24487", null, "2890", null, "24009", null, "2432", null, "25859", null, "2197", null, "23623", null, "2165", null, "28136", null, "2075", null, "27046", null, "2659", null, "27743", null, "2813", null, "24637", null, "2193", null, "21908", null, "2000", null, "21731", null, "2228", null, "23562", null, "2442", null, "18210", null, "2012", null, "15324", null, "1670", null, "11796", null, "1701", null, "5973", null, "1076", null, "4545", null, "1000", null, "43808", null, "3059", null, "14777", null, "1899", null, "78002", null, "4207", null, "35091", null, "2693", null, "156416", null, "5267", null, "299297", null, "5967", null, "289325", null, "6016", null, "276443", null, "5654", null, "79410", null, "3996", null, "69874", null, "3708", null, "55848", null, "2880", null, "22314", null, "1748", null, "38.4", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.3", null, "0.5", null, "5.3", null, "0.5", null, "6.7", null, "0.8", null, "6.5", null, "0.6", null, "7.0", null, "0.6", null, "6.4", null, "0.6", null, "7.7", null, "0.6", null, "7.4", null, "0.7", null, "7.6", null, "0.7", null, "6.7", null, "0.6", null, "6.0", null, "0.5", null, "5.9", null, "0.6", null, "6.4", null, "0.7", null, "5.0", null, "0.6", null, "4.2", null, "0.5", null, "3.2", null, "0.5", null, "1.6", null, "0.3", null, "1.2", null, "0.3", null, "11.9", null, "0.8", null, "4.0", null, "0.5", null, "21.2", null, "1.0", null, "9.6", null, "0.7", null, "42.6", null, "1.1", null, "81.5", null, "1.0", null, "78.8", null, "1.0", null, "75.3", null, "1.1", null, "21.6", null, "1.1", null, "19.0", null, "1.1", null, "15.2", null, "0.8", null, "6.1", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "381262", null, "6328", null, "20659", null, "1900", null, "20073", null, "2615", null, "22679", null, "2888", null, "22293", null, "2055", null, "21590", null, "2429", null, "23909", null, "1956", null, "27835", null, "1939", null, "26926", null, "2546", null, "27082", null, "2591", null, "26537", null, "2222", null, "21481", null, "1858", null, "22968", null, "2252", null, "25561", null, "2432", null, "20971", null, "2219", null, "20658", null, "1983", null, "14097", null, "1987", null, "8561", null, "1524", null, "7382", null, "1253", null, "42752", null, "3016", null, "13158", null, "1449", null, "76569", null, "4082", null, "30725", null, "2645", null, "149635", null, "4456", null, "313962", null, "5223", null, "304693", null, "4879", null, "290865", null, "4778", null, "97230", null, "4127", null, "87916", null, "3525", null, "71669", null, "3093", null, "30040", null, "2394", null, "40.7", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.5", null, "5.3", null, "0.7", null, "5.9", null, "0.7", null, "5.8", null, "0.5", null, "5.7", null, "0.6", null, "6.3", null, "0.5", null, "7.3", null, "0.5", null, "7.1", null, "0.7", null, "7.1", null, "0.7", null, "7.0", null, "0.6", null, "5.6", null, "0.5", null, "6.0", null, "0.6", null, "6.7", null, "0.6", null, "5.5", null, "0.6", null, "5.4", null, "0.5", null, "3.7", null, "0.5", null, "2.2", null, "0.4", null, "1.9", null, "0.3", null, "11.2", null, "0.7", null, "3.5", null, "0.4", null, "20.1", null, "0.9", null, "8.1", null, "0.7", null, "39.2", null, "0.9", null, "82.3", null, "0.9", null, "79.9", null, "0.9", null, "76.3", null, "1.0", null, "25.5", null, "1.1", null, "23.1", null, "0.9", null, "18.8", null, "0.8", null, "7.9", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "06", "08"], ["5001900US0609", "Congressional District 9 (119th Congress), California", "784710", null, "4663", null, "45513", null, "1525", null, "54294", null, "3529", null, "57021", null, "3572", null, "60952", null, "1848", null, "52156", null, "1568", null, "51991", null, "2334", null, "53008", null, "1711", null, "54989", null, "3548", null, "58339", null, "3536", null, "48415", null, "1659", null, "48637", null, "1534", null, "42433", null, "3055", null, "43726", null, "3271", null, "36419", null, "2252", null, "30210", null, "2354", null, "21196", null, "1866", null, "13816", null, "1785", null, "11595", null, "1721", null, "111315", null, "2603", null, "38052", null, "1173", null, "194880", null, "2956", null, "75056", null, "1754", null, "331435", null, "3217", null, "617155", null, "4448", null, "589830", null, "3934", null, "556191", null, "3998", null, "156962", null, "3355", null, "138375", null, "3309", null, "113236", null, "1432", null, "46607", null, "746", null, "36.7", null, "0.3", null, "99.9", null, "1.1", null, "64.6", null, "0.9", null, "23.8", null, "0.4", null, "40.9", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.8", null, "0.2", null, "6.9", null, "0.5", null, "7.3", null, "0.4", null, "7.8", null, "0.2", null, "6.6", null, "0.2", null, "6.6", null, "0.3", null, "6.8", null, "0.2", null, "7.0", null, "0.5", null, "7.4", null, "0.4", null, "6.2", null, "0.2", null, "6.2", null, "0.2", null, "5.4", null, "0.4", null, "5.6", null, "0.4", null, "4.6", null, "0.3", null, "3.8", null, "0.3", null, "2.7", null, "0.2", null, "1.8", null, "0.2", null, "1.5", null, "0.2", null, "14.2", null, "0.3", null, "4.8", null, "0.1", null, "24.8", null, "0.3", null, "9.6", null, "0.2", null, "42.2", null, "0.3", null, "78.6", null, "0.4", null, "75.2", null, "0.3", null, "70.9", null, "0.4", null, "20.0", null, "0.4", null, "17.6", null, "0.4", null, "14.4", null, "0.2", null, "5.9", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.3", null, "-888888888.0", "(X)", "392191", null, "2840", null, "22877", null, "1260", null, "28411", null, "2333", null, "28107", null, "2425", null, "31809", null, "1221", null, "27169", null, "936", null, "26928", null, "1284", null, "26588", null, "1293", null, "26778", null, "2566", null, "30524", null, "2509", null, "24918", null, "1242", null, "24124", null, "955", null, "22262", null, "1877", null, "21147", null, "1991", null, "18170", null, "1314", null, "12990", null, "1370", null, "9711", null, "1122", null, "5513", null, "932", null, "4165", null, "970", null, "56518", null, "1439", null, "19433", null, "856", null, "98828", null, "2088", null, "39545", null, "1150", null, "169796", null, "2154", null, "307502", null, "2908", null, "293363", null, "2635", null, "274759", null, "3036", null, "71696", null, "2022", null, "62974", null, "1931", null, "50549", null, "829", null, "19389", null, "342", null, "35.9", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.8", null, "0.3", null, "7.2", null, "0.6", null, "7.2", null, "0.6", null, "8.1", null, "0.3", null, "6.9", null, "0.2", null, "6.9", null, "0.3", null, "6.8", null, "0.3", null, "6.8", null, "0.7", null, "7.8", null, "0.6", null, "6.4", null, "0.3", null, "6.2", null, "0.2", null, "5.7", null, "0.5", null, "5.4", null, "0.5", null, "4.6", null, "0.3", null, "3.3", null, "0.4", null, "2.5", null, "0.3", null, "1.4", null, "0.2", null, "1.1", null, "0.2", null, "14.4", null, "0.4", null, "5.0", null, "0.2", null, "25.2", null, "0.5", null, "10.1", null, "0.3", null, "43.3", null, "0.4", null, "78.4", null, "0.5", null, "74.8", null, "0.5", null, "70.1", null, "0.7", null, "18.3", null, "0.5", null, "16.1", null, "0.5", null, "12.9", null, "0.2", null, "4.9", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "392519", null, "3575", null, "22636", null, "1238", null, "25883", null, "2435", null, "28914", null, "2402", null, "29143", null, "1255", null, "24987", null, "1234", null, "25063", null, "1327", null, "26420", null, "902", null, "28211", null, "1900", null, "27815", null, "2167", null, "23497", null, "732", null, "24513", null, "914", null, "20171", null, "1884", null, "22579", null, "2095", null, "18249", null, "1639", null, "17220", null, "1678", null, "11485", null, "1405", null, "8303", null, "1357", null, "7430", null, "1305", null, "54797", null, "2011", null, "18619", null, "859", null, "96052", null, "2390", null, "35511", null, "1312", null, "161639", null, "2066", null, "309653", null, "3006", null, "296467", null, "2598", null, "281432", null, "2580", null, "85266", null, "2233", null, "75401", null, "2154", null, "62687", null, "908", null, "27218", null, "609", null, "37.4", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.8", null, "0.3", null, "6.6", null, "0.6", null, "7.4", null, "0.6", null, "7.4", null, "0.3", null, "6.4", null, "0.3", null, "6.4", null, "0.3", null, "6.7", null, "0.2", null, "7.2", null, "0.5", null, "7.1", null, "0.5", null, "6.0", null, "0.2", null, "6.2", null, "0.2", null, "5.1", null, "0.5", null, "5.8", null, "0.5", null, "4.6", null, "0.4", null, "4.4", null, "0.4", null, "2.9", null, "0.4", null, "2.1", null, "0.3", null, "1.9", null, "0.3", null, "14.0", null, "0.5", null, "4.7", null, "0.2", null, "24.5", null, "0.5", null, "9.0", null, "0.3", null, "41.2", null, "0.4", null, "78.9", null, "0.5", null, "75.5", null, "0.5", null, "71.7", null, "0.5", null, "21.7", null, "0.6", null, "19.2", null, "0.6", null, "16.0", null, "0.2", null, "6.9", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "06", "09"], ["5001900US0610", "Congressional District 10 (119th Congress), California", "773816", null, "9485", null, "41150", null, "3037", null, "49803", null, "3442", null, "51431", null, "3606", null, "48748", null, "3319", null, "40096", null, "3128", null, "38952", null, "2938", null, "44775", null, "3215", null, "51951", null, "3915", null, "62317", null, "3546", null, "53248", null, "3044", null, "54322", null, "3033", null, "49730", null, "3396", null, "46371", null, "3198", null, "41906", null, "3028", null, "36001", null, "3099", null, "31092", null, "2910", null, "17039", null, "2279", null, "14884", null, "1676", null, "101234", null, "4476", null, "33069", null, "2519", null, "175453", null, "6220", null, "55775", null, "3382", null, "286839", null, "6680", null, "621078", null, "9286", null, "598363", null, "8823", null, "575794", null, "9168", null, "187293", null, "5934", null, "168448", null, "5172", null, "140922", null, "4464", null, "63015", null, "2601", null, "41.4", null, "0.5", null, "98.2", null, "2.2", null, "69.2", null, "2.0", null, "30.8", null, "1.1", null, "38.4", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.3", null, "0.4", null, "6.4", null, "0.4", null, "6.6", null, "0.5", null, "6.3", null, "0.4", null, "5.2", null, "0.4", null, "5.0", null, "0.4", null, "5.8", null, "0.4", null, "6.7", null, "0.5", null, "8.1", null, "0.4", null, "6.9", null, "0.4", null, "7.0", null, "0.4", null, "6.4", null, "0.4", null, "6.0", null, "0.4", null, "5.4", null, "0.4", null, "4.7", null, "0.4", null, "4.0", null, "0.4", null, "2.2", null, "0.3", null, "1.9", null, "0.2", null, "13.1", null, "0.6", null, "4.3", null, "0.3", null, "22.7", null, "0.7", null, "7.2", null, "0.4", null, "37.1", null, "0.6", null, "80.3", null, "0.8", null, "77.3", null, "0.7", null, "74.4", null, "0.8", null, "24.2", null, "0.8", null, "21.8", null, "0.6", null, "18.2", null, "0.6", null, "8.1", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.1", null, "-888888888.0", "(X)", "383351", null, "6557", null, "21527", null, "1976", null, "24717", null, "2239", null, "26407", null, "2468", null, "25410", null, "2456", null, "20472", null, "2401", null, "19400", null, "1985", null, "21910", null, "2107", null, "24935", null, "2472", null, "31807", null, "2549", null, "25700", null, "1868", null, "27991", null, "1973", null, "25274", null, "2196", null, "22588", null, "2149", null, "19884", null, "1784", null, "16913", null, "2136", null, "14681", null, "2116", null, "8416", null, "1368", null, "5319", null, "973", null, "51124", null, "2904", null, "16919", null, "2141", null, "89570", null, "4188", null, "28963", null, "2604", null, "143934", null, "5116", null, "305727", null, "6094", null, "293781", null, "5823", null, "281274", null, "5694", null, "87801", null, "3616", null, "79016", null, "3275", null, "65213", null, "2676", null, "28416", null, "1696", null, "41.0", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.6", null, "0.5", null, "6.4", null, "0.6", null, "6.9", null, "0.6", null, "6.6", null, "0.6", null, "5.3", null, "0.6", null, "5.1", null, "0.5", null, "5.7", null, "0.5", null, "6.5", null, "0.6", null, "8.3", null, "0.6", null, "6.7", null, "0.5", null, "7.3", null, "0.5", null, "6.6", null, "0.6", null, "5.9", null, "0.5", null, "5.2", null, "0.5", null, "4.4", null, "0.5", null, "3.8", null, "0.6", null, "2.2", null, "0.4", null, "1.4", null, "0.3", null, "13.3", null, "0.7", null, "4.4", null, "0.5", null, "23.4", null, "1.0", null, "7.6", null, "0.7", null, "37.5", null, "1.0", null, "79.8", null, "0.9", null, "76.6", null, "1.0", null, "73.4", null, "1.1", null, "22.9", null, "0.9", null, "20.6", null, "0.9", null, "17.0", null, "0.7", null, "7.4", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "390465", null, "6279", null, "19623", null, "1715", null, "25086", null, "2391", null, "25024", null, "2368", null, "23338", null, "2026", null, "19624", null, "2065", null, "19552", null, "1802", null, "22865", null, "1837", null, "27016", null, "2478", null, "30510", null, "2260", null, "27548", null, "2253", null, "26331", null, "1677", null, "24456", null, "2232", null, "23783", null, "2198", null, "22022", null, "1978", null, "19088", null, "1890", null, "16411", null, "1696", null, "8623", null, "1554", null, "9565", null, "1216", null, "50110", null, "2801", null, "16150", null, "1475", null, "85883", null, "3780", null, "26812", null, "2462", null, "142905", null, "4206", null, "315351", null, "5837", null, "304582", null, "5624", null, "294520", null, "5674", null, "99492", null, "3716", null, "89432", null, "3385", null, "75709", null, "2818", null, "34599", null, "1913", null, "41.9", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.0", null, "0.4", null, "6.4", null, "0.6", null, "6.4", null, "0.6", null, "6.0", null, "0.5", null, "5.0", null, "0.5", null, "5.0", null, "0.4", null, "5.9", null, "0.4", null, "6.9", null, "0.6", null, "7.8", null, "0.6", null, "7.1", null, "0.6", null, "6.7", null, "0.4", null, "6.3", null, "0.6", null, "6.1", null, "0.6", null, "5.6", null, "0.5", null, "4.9", null, "0.5", null, "4.2", null, "0.4", null, "2.2", null, "0.4", null, "2.4", null, "0.3", null, "12.8", null, "0.7", null, "4.1", null, "0.4", null, "22.0", null, "0.9", null, "6.9", null, "0.6", null, "36.6", null, "0.7", null, "80.8", null, "0.9", null, "78.0", null, "0.9", null, "75.4", null, "0.9", null, "25.5", null, "0.9", null, "22.9", null, "0.8", null, "19.4", null, "0.7", null, "8.9", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "06", "10"], ["5001900US0611", "Congressional District 11 (119th Congress), California", "729775", null, "8456", null, "28078", null, "1499", null, "22759", null, "2680", null, "30656", null, "2516", null, "26112", null, "1655", null, "39409", null, "1637", null, "72040", null, "1425", null, "79889", null, "1789", null, "69476", null, "3729", null, "53945", null, "3682", null, "46503", null, "1477", null, "45615", null, "1761", null, "41783", null, "2876", null, "43378", null, "2821", null, "36725", null, "2315", null, "34539", null, "2284", null, "28811", null, "2359", null, "12696", null, "1746", null, "17361", null, "1907", null, "53415", null, "1735", null, "14041", null, "1213", null, "95534", null, "3004", null, "51480", null, "1494", null, "340871", null, "4503", null, "643473", null, "6883", null, "634241", null, "6603", null, "616204", null, "6843", null, "173510", null, "3765", null, "154873", null, "3321", null, "130132", null, "2474", null, "58868", null, "1807", null, "39.7", null, "0.5", null, "107.0", null, "1.4", null, "44.8", null, "0.7", null, "25.8", null, "0.6", null, "19.0", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "3.8", null, "0.2", null, "3.1", null, "0.4", null, "4.2", null, "0.3", null, "3.6", null, "0.2", null, "5.4", null, "0.2", null, "9.9", null, "0.2", null, "10.9", null, "0.2", null, "9.5", null, "0.5", null, "7.4", null, "0.5", null, "6.4", null, "0.2", null, "6.3", null, "0.2", null, "5.7", null, "0.4", null, "5.9", null, "0.4", null, "5.0", null, "0.3", null, "4.7", null, "0.3", null, "3.9", null, "0.3", null, "1.7", null, "0.2", null, "2.4", null, "0.3", null, "7.3", null, "0.2", null, "1.9", null, "0.2", null, "13.1", null, "0.3", null, "7.1", null, "0.2", null, "46.7", null, "0.3", null, "88.2", null, "0.3", null, "86.9", null, "0.3", null, "84.4", null, "0.4", null, "23.8", null, "0.5", null, "21.2", null, "0.5", null, "17.8", null, "0.3", null, "8.1", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.7", null, "-888888888.0", "(X)", "377248", null, "4968", null, "13973", null, "1394", null, "11474", null, "1959", null, "16682", null, "1952", null, "12655", null, "1314", null, "19785", null, "1068", null, "36545", null, "1051", null, "42019", null, "1167", null, "37766", null, "2691", null, "29043", null, "2801", null, "24885", null, "965", null, "24598", null, "1091", null, "22429", null, "2011", null, "24292", null, "2192", null, "19380", null, "1523", null, "16452", null, "1404", null, "12675", null, "1341", null, "5071", null, "1048", null, "7524", null, "1300", null, "28156", null, "957", null, "6981", null, "956", null, "49110", null, "2002", null, "25459", null, "888", null, "177813", null, "2907", null, "333021", null, "4118", null, "328138", null, "3961", null, "319133", null, "4360", null, "85394", null, "2724", null, "75086", null, "2329", null, "61102", null, "1568", null, "25270", null, "1082", null, "39.6", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "3.7", null, "0.4", null, "3.0", null, "0.5", null, "4.4", null, "0.5", null, "3.4", null, "0.3", null, "5.2", null, "0.3", null, "9.7", null, "0.3", null, "11.1", null, "0.3", null, "10.0", null, "0.7", null, "7.7", null, "0.7", null, "6.6", null, "0.3", null, "6.5", null, "0.3", null, "5.9", null, "0.5", null, "6.4", null, "0.6", null, "5.1", null, "0.4", null, "4.4", null, "0.4", null, "3.4", null, "0.4", null, "1.3", null, "0.3", null, "2.0", null, "0.3", null, "7.5", null, "0.2", null, "1.9", null, "0.2", null, "13.0", null, "0.4", null, "6.7", null, "0.2", null, "47.1", null, "0.4", null, "88.3", null, "0.4", null, "87.0", null, "0.4", null, "84.6", null, "0.5", null, "22.6", null, "0.7", null, "19.9", null, "0.6", null, "16.2", null, "0.4", null, "6.7", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "352527", null, "4704", null, "14105", null, "851", null, "11285", null, "1750", null, "13974", null, "1667", null, "13457", null, "857", null, "19624", null, "924", null, "35495", null, "641", null, "37870", null, "869", null, "31710", null, "2455", null, "24902", null, "2349", null, "21618", null, "889", null, "21017", null, "922", null, "19354", null, "1754", null, "19086", null, "1767", null, "17345", null, "1666", null, "18087", null, "1689", null, "16136", null, "1775", null, "7625", null, "1251", null, "9837", null, "1386", null, "25259", null, "1412", null, "7060", null, "776", null, "46424", null, "2085", null, "26021", null, "966", null, "163058", null, "2383", null, "310452", null, "3675", null, "306103", null, "3501", null, "297071", null, "3403", null, "88116", null, "2234", null, "79787", null, "2131", null, "69030", null, "1592", null, "33598", null, "1153", null, "39.7", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.0", null, "0.2", null, "3.2", null, "0.5", null, "4.0", null, "0.5", null, "3.8", null, "0.2", null, "5.6", null, "0.2", null, "10.1", null, "0.2", null, "10.7", null, "0.3", null, "9.0", null, "0.7", null, "7.1", null, "0.7", null, "6.1", null, "0.3", null, "6.0", null, "0.2", null, "5.5", null, "0.5", null, "5.4", null, "0.5", null, "4.9", null, "0.5", null, "5.1", null, "0.5", null, "4.6", null, "0.5", null, "2.2", null, "0.4", null, "2.8", null, "0.4", null, "7.2", null, "0.3", null, "2.0", null, "0.2", null, "13.2", null, "0.5", null, "7.4", null, "0.3", null, "46.3", null, "0.4", null, "88.1", null, "0.5", null, "86.8", null, "0.5", null, "84.3", null, "0.5", null, "25.0", null, "0.6", null, "22.6", null, "0.6", null, "19.6", null, "0.4", null, "9.5", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "06", "11"], ["5001900US0612", "Congressional District 12 (119th Congress), California", "756336", null, "6436", null, "37696", null, "2702", null, "36064", null, "3601", null, "33041", null, "3187", null, "48627", null, "3627", null, "50589", null, "3217", null, "55238", null, "3445", null, "68153", null, "3624", null, "67787", null, "4225", null, "57685", null, "3926", null, "45549", null, "3384", null, "45546", null, "3225", null, "43563", null, "3697", null, "38829", null, "3135", null, "41153", null, "3492", null, "33232", null, "2784", null, "25494", null, "2057", null, "13899", null, "2133", null, "14191", null, "1938", null, "69105", null, "4079", null, "24385", null, "2420", null, "131186", null, "5564", null, "74831", null, "3845", null, "348079", null, "6067", null, "641495", null, "5823", null, "625150", null, "5916", null, "589118", null, "6495", null, "166798", null, "5357", null, "149901", null, "5043", null, "127969", null, "4292", null, "53584", null, "3246", null, "38.6", null, "0.5", null, "96.2", null, "2.5", null, "52.1", null, "1.8", null, "25.7", null, "1.0", null, "26.4", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.0", null, "0.3", null, "4.8", null, "0.5", null, "4.4", null, "0.4", null, "6.4", null, "0.5", null, "6.7", null, "0.4", null, "7.3", null, "0.5", null, "9.0", null, "0.5", null, "9.0", null, "0.6", null, "7.6", null, "0.5", null, "6.0", null, "0.4", null, "6.0", null, "0.4", null, "5.8", null, "0.5", null, "5.1", null, "0.4", null, "5.4", null, "0.5", null, "4.4", null, "0.4", null, "3.4", null, "0.3", null, "1.8", null, "0.3", null, "1.9", null, "0.3", null, "9.1", null, "0.5", null, "3.2", null, "0.3", null, "17.3", null, "0.7", null, "9.9", null, "0.5", null, "46.0", null, "0.8", null, "84.8", null, "0.6", null, "82.7", null, "0.7", null, "77.9", null, "0.8", null, "22.1", null, "0.7", null, "19.8", null, "0.6", null, "16.9", null, "0.5", null, "7.1", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "2.0", null, "-888888888.0", "(X)", "370798", null, "6644", null, "19009", null, "2237", null, "19610", null, "2365", null, "17149", null, "2228", null, "24969", null, "2615", null, "22468", null, "2078", null, "25878", null, "2172", null, "34105", null, "2586", null, "33385", null, "3212", null, "30677", null, "2966", null, "22737", null, "1859", null, "22512", null, "2094", null, "21290", null, "2336", null, "18844", null, "1731", null, "20063", null, "2068", null, "15054", null, "1693", null, "11181", null, "1312", null, "6645", null, "1355", null, "5222", null, "1128", null, "36759", null, "2869", null, "13319", null, "1768", null, "69087", null, "4018", null, "34118", null, "2850", null, "171482", null, "4928", null, "310783", null, "5838", null, "301711", null, "5652", null, "284663", null, "5197", null, "77009", null, "3338", null, "68968", null, "3029", null, "58165", null, "2606", null, "23048", null, "1845", null, "38.5", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.1", null, "0.6", null, "5.3", null, "0.6", null, "4.6", null, "0.6", null, "6.7", null, "0.7", null, "6.1", null, "0.5", null, "7.0", null, "0.6", null, "9.2", null, "0.7", null, "9.0", null, "0.9", null, "8.3", null, "0.8", null, "6.1", null, "0.5", null, "6.1", null, "0.6", null, "5.7", null, "0.6", null, "5.1", null, "0.5", null, "5.4", null, "0.5", null, "4.1", null, "0.5", null, "3.0", null, "0.4", null, "1.8", null, "0.4", null, "1.4", null, "0.3", null, "9.9", null, "0.7", null, "3.6", null, "0.5", null, "18.6", null, "1.0", null, "9.2", null, "0.7", null, "46.2", null, "1.0", null, "83.8", null, "0.9", null, "81.4", null, "1.0", null, "76.8", null, "1.1", null, "20.8", null, "0.9", null, "18.6", null, "0.8", null, "15.7", null, "0.6", null, "6.2", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "385538", null, "4955", null, "18687", null, "1870", null, "16454", null, "2276", null, "15892", null, "2214", null, "23658", null, "2404", null, "28121", null, "2258", null, "29360", null, "2429", null, "34048", null, "2112", null, "34402", null, "2410", null, "27008", null, "2238", null, "22812", null, "2157", null, "23034", null, "2134", null, "22273", null, "2367", null, "19985", null, "2133", null, "21090", null, "2256", null, "18178", null, "1812", null, "14313", null, "1628", null, "7254", null, "1199", null, "8969", null, "1403", null, "32346", null, "2565", null, "11066", null, "1633", null, "62099", null, "3468", null, "40713", null, "2797", null, "176597", null, "4107", null, "330712", null, "4440", null, "323439", null, "4523", null, "304455", null, "4904", null, "89789", null, "3233", null, "80933", null, "3141", null, "69804", null, "2874", null, "30536", null, "2093", null, "38.7", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.8", null, "0.5", null, "4.3", null, "0.6", null, "4.1", null, "0.6", null, "6.1", null, "0.6", null, "7.3", null, "0.6", null, "7.6", null, "0.6", null, "8.8", null, "0.6", null, "8.9", null, "0.6", null, "7.0", null, "0.6", null, "5.9", null, "0.6", null, "6.0", null, "0.6", null, "5.8", null, "0.6", null, "5.2", null, "0.6", null, "5.5", null, "0.6", null, "4.7", null, "0.5", null, "3.7", null, "0.4", null, "1.9", null, "0.3", null, "2.3", null, "0.4", null, "8.4", null, "0.6", null, "2.9", null, "0.4", null, "16.1", null, "0.8", null, "10.6", null, "0.7", null, "45.8", null, "0.9", null, "85.8", null, "0.8", null, "83.9", null, "0.8", null, "79.0", null, "1.0", null, "23.3", null, "0.8", null, "21.0", null, "0.8", null, "18.1", null, "0.7", null, "7.9", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "06", "12"], ["5001900US0613", "Congressional District 13 (119th Congress), California", "790923", null, "13575", null, "57134", null, "3281", null, "60205", null, "5074", null, "69757", null, "5963", null, "68068", null, "4165", null, "59050", null, "3308", null, "54942", null, "3173", null, "63215", null, "3108", null, "56446", null, "4097", null, "49860", null, "4180", null, "44461", null, "3204", null, "41939", null, "2523", null, "41693", null, "2732", null, "36798", null, "2714", null, "28560", null, "2253", null, "25583", null, "2560", null, "16066", null, "1665", null, "10138", null, "1511", null, "7008", null, "1364", null, "129962", null, "5411", null, "40865", null, "2765", null, "227961", null, "7818", null, "86253", null, "3647", null, "351581", null, "7327", null, "591323", null, "10330", null, "562962", null, "9426", null, "521401", null, "9691", null, "124153", null, "4604", null, "109643", null, "4510", null, "87355", null, "3589", null, "33212", null, "1830", null, "32.1", null, "0.5", null, "103.2", null, "2.2", null, "66.3", null, "2.0", null, "18.4", null, "0.9", null, "47.9", null, "1.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "7.2", null, "0.4", null, "7.6", null, "0.6", null, "8.8", null, "0.7", null, "8.6", null, "0.5", null, "7.5", null, "0.4", null, "6.9", null, "0.4", null, "8.0", null, "0.3", null, "7.1", null, "0.5", null, "6.3", null, "0.5", null, "5.6", null, "0.4", null, "5.3", null, "0.3", null, "5.3", null, "0.3", null, "4.7", null, "0.3", null, "3.6", null, "0.3", null, "3.2", null, "0.3", null, "2.0", null, "0.2", null, "1.3", null, "0.2", null, "0.9", null, "0.2", null, "16.4", null, "0.6", null, "5.2", null, "0.3", null, "28.8", null, "0.7", null, "10.9", null, "0.4", null, "44.5", null, "0.5", null, "74.8", null, "0.7", null, "71.2", null, "0.7", null, "65.9", null, "0.8", null, "15.7", null, "0.6", null, "13.9", null, "0.6", null, "11.0", null, "0.4", null, "4.2", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.4", null, "-888888888.0", "(X)", "401651", null, "7607", null, "28992", null, "2146", null, "30312", null, "3100", null, "36825", null, "3036", null, "33449", null, "2508", null, "29719", null, "1865", null, "27308", null, "2330", null, "34270", null, "2455", null, "30048", null, "2936", null, "26219", null, "3093", null, "21823", null, "2006", null, "21227", null, "1780", null, "20415", null, "1833", null, "20110", null, "1777", null, "13071", null, "1548", null, "12563", null, "1455", null, "8279", null, "1239", null, "4833", null, "978", null, "2188", null, "638", null, "67137", null, "3637", null, "20150", null, "1813", null, "116279", null, "4558", null, "43018", null, "2273", null, "181013", null, "4722", null, "298734", null, "6158", null, "285372", null, "5724", null, "266186", null, "5761", null, "61044", null, "2437", null, "52890", null, "2445", null, "40934", null, "1799", null, "15300", null, "1000", null, "32.1", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "7.2", null, "0.5", null, "7.5", null, "0.7", null, "9.2", null, "0.7", null, "8.3", null, "0.6", null, "7.4", null, "0.4", null, "6.8", null, "0.6", null, "8.5", null, "0.6", null, "7.5", null, "0.7", null, "6.5", null, "0.8", null, "5.4", null, "0.5", null, "5.3", null, "0.4", null, "5.1", null, "0.5", null, "5.0", null, "0.4", null, "3.3", null, "0.4", null, "3.1", null, "0.4", null, "2.1", null, "0.3", null, "1.2", null, "0.2", null, "0.5", null, "0.2", null, "16.7", null, "0.8", null, "5.0", null, "0.4", null, "29.0", null, "0.9", null, "10.7", null, "0.5", null, "45.1", null, "0.9", null, "74.4", null, "0.9", null, "71.0", null, "0.9", null, "66.3", null, "1.0", null, "15.2", null, "0.6", null, "13.2", null, "0.6", null, "10.2", null, "0.4", null, "3.8", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "389272", null, "8409", null, "28142", null, "2433", null, "29893", null, "3300", null, "32932", null, "4137", null, "34619", null, "2442", null, "29331", null, "2460", null, "27634", null, "1758", null, "28945", null, "1833", null, "26398", null, "2292", null, "23641", null, "2444", null, "22638", null, "2134", null, "20712", null, "1356", null, "21278", null, "1895", null, "16688", null, "2040", null, "15489", null, "1591", null, "13020", null, "1781", null, "7787", null, "1105", null, "5305", null, "1170", null, "4820", null, "974", null, "62825", null, "3282", null, "20715", null, "1802", null, "111682", null, "5138", null, "43235", null, "2628", null, "170568", null, "4746", null, "292589", null, "6151", null, "277590", null, "5380", null, "255215", null, "5482", null, "63109", null, "3147", null, "56753", null, "3006", null, "46421", null, "2355", null, "17912", null, "1437", null, "32.2", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "7.2", null, "0.6", null, "7.7", null, "0.9", null, "8.5", null, "1.0", null, "8.9", null, "0.6", null, "7.5", null, "0.6", null, "7.1", null, "0.4", null, "7.4", null, "0.4", null, "6.8", null, "0.6", null, "6.1", null, "0.6", null, "5.8", null, "0.5", null, "5.3", null, "0.4", null, "5.5", null, "0.5", null, "4.3", null, "0.5", null, "4.0", null, "0.4", null, "3.3", null, "0.5", null, "2.0", null, "0.3", null, "1.4", null, "0.3", null, "1.2", null, "0.2", null, "16.1", null, "0.7", null, "5.3", null, "0.4", null, "28.7", null, "0.9", null, "11.1", null, "0.6", null, "43.8", null, "0.8", null, "75.2", null, "0.9", null, "71.3", null, "0.9", null, "65.6", null, "1.0", null, "16.2", null, "0.8", null, "14.6", null, "0.8", null, "11.9", null, "0.6", null, "4.6", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "06", "13"], ["5001900US0614", "Congressional District 14 (119th Congress), California", "728854", null, "8606", null, "37032", null, "3092", null, "44168", null, "4022", null, "42016", null, "4133", null, "38964", null, "3150", null, "35813", null, "2766", null, "44893", null, "3379", null, "53509", null, "4069", null, "59217", null, "4224", null, "52157", null, "4333", null, "54107", null, "3470", null, "49562", null, "3589", null, "48370", null, "4225", null, "48735", null, "3630", null, "37276", null, "2862", null, "29442", null, "2870", null, "22888", null, "2005", null, "13966", null, "2293", null, "16739", null, "1746", null, "86184", null, "4381", null, "25350", null, "2226", null, "148566", null, "5951", null, "49427", null, "3299", null, "284553", null, "5947", null, "598369", null, "7711", null, "580288", null, "7267", null, "560129", null, "7649", null, "169046", null, "5709", null, "149193", null, "5128", null, "120311", null, "4259", null, "53593", null, "3334", null, "40.8", null, "0.7", null, "100.0", null, "2.6", null, "58.5", null, "2.0", null, "26.2", null, "1.0", null, "32.3", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.1", null, "0.4", null, "6.1", null, "0.5", null, "5.8", null, "0.6", null, "5.3", null, "0.4", null, "4.9", null, "0.4", null, "6.2", null, "0.5", null, "7.3", null, "0.6", null, "8.1", null, "0.6", null, "7.2", null, "0.6", null, "7.4", null, "0.5", null, "6.8", null, "0.5", null, "6.6", null, "0.6", null, "6.7", null, "0.5", null, "5.1", null, "0.4", null, "4.0", null, "0.4", null, "3.1", null, "0.3", null, "1.9", null, "0.3", null, "2.3", null, "0.2", null, "11.8", null, "0.6", null, "3.5", null, "0.3", null, "20.4", null, "0.7", null, "6.8", null, "0.5", null, "39.0", null, "0.7", null, "82.1", null, "0.8", null, "79.6", null, "0.7", null, "76.9", null, "0.8", null, "23.2", null, "0.7", null, "20.5", null, "0.7", null, "16.5", null, "0.5", null, "7.4", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.5", null, "-888888888.0", "(X)", "364417", null, "6888", null, "19743", null, "2357", null, "22697", null, "2859", null, "19908", null, "2494", null, "19728", null, "2478", null, "19571", null, "2006", null, "23670", null, "2263", null, "27494", null, "2491", null, "30929", null, "2653", null, "25576", null, "2503", null, "28621", null, "2091", null, "25138", null, "2168", null, "23874", null, "2913", null, "25205", null, "2407", null, "17557", null, "1622", null, "13458", null, "1786", null, "10043", null, "1314", null, "6167", null, "1408", null, "5038", null, "929", null, "42605", null, "2833", null, "12398", null, "1765", null, "74746", null, "4093", null, "26901", null, "2546", null, "146968", null, "4940", null, "298105", null, "6097", null, "289671", null, "6005", null, "278532", null, "5792", null, "77468", null, "3321", null, "67712", null, "3316", null, "52263", null, "2561", null, "21248", null, "1866", null, "39.8", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.6", null, "6.2", null, "0.8", null, "5.5", null, "0.7", null, "5.4", null, "0.7", null, "5.4", null, "0.5", null, "6.5", null, "0.6", null, "7.5", null, "0.7", null, "8.5", null, "0.7", null, "7.0", null, "0.7", null, "7.9", null, "0.6", null, "6.9", null, "0.6", null, "6.6", null, "0.8", null, "6.9", null, "0.7", null, "4.8", null, "0.4", null, "3.7", null, "0.5", null, "2.8", null, "0.3", null, "1.7", null, "0.4", null, "1.4", null, "0.3", null, "11.7", null, "0.7", null, "3.4", null, "0.5", null, "20.5", null, "1.0", null, "7.4", null, "0.7", null, "40.3", null, "1.1", null, "81.8", null, "1.0", null, "79.5", null, "1.0", null, "76.4", null, "1.1", null, "21.3", null, "0.9", null, "18.6", null, "0.9", null, "14.3", null, "0.6", null, "5.8", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "364437", null, "5913", null, "17289", null, "2021", null, "21471", null, "2221", null, "22108", null, "3008", null, "19236", null, "2140", null, "16242", null, "2151", null, "21223", null, "2247", null, "26015", null, "2394", null, "28288", null, "2503", null, "26581", null, "2921", null, "25486", null, "1990", null, "24424", null, "2294", null, "24496", null, "2493", null, "23530", null, "2194", null, "19719", null, "1984", null, "15984", null, "1774", null, "12845", null, "1462", null, "7799", null, "1530", null, "11701", null, "1495", null, "43579", null, "2956", null, "12952", null, "1536", null, "73820", null, "3833", null, "22526", null, "2627", null, "137585", null, "3999", null, "300264", null, "4794", null, "290617", null, "4839", null, "281597", null, "4949", null, "91578", null, "3781", null, "81481", null, "3276", null, "68048", null, "3004", null, "32345", null, "2153", null, "42.2", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.7", null, "0.5", null, "5.9", null, "0.6", null, "6.1", null, "0.8", null, "5.3", null, "0.6", null, "4.5", null, "0.6", null, "5.8", null, "0.6", null, "7.1", null, "0.7", null, "7.8", null, "0.6", null, "7.3", null, "0.8", null, "7.0", null, "0.5", null, "6.7", null, "0.6", null, "6.7", null, "0.7", null, "6.5", null, "0.6", null, "5.4", null, "0.5", null, "4.4", null, "0.5", null, "3.5", null, "0.4", null, "2.1", null, "0.4", null, "3.2", null, "0.4", null, "12.0", null, "0.7", null, "3.6", null, "0.4", null, "20.3", null, "0.9", null, "6.2", null, "0.7", null, "37.8", null, "0.9", null, "82.4", null, "0.9", null, "79.7", null, "0.9", null, "77.3", null, "1.0", null, "25.1", null, "1.0", null, "22.4", null, "0.8", null, "18.7", null, "0.7", null, "8.9", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "06", "14"], ["5001900US0615", "Congressional District 15 (119th Congress), California", "723474", null, "9642", null, "35954", null, "2210", null, "35254", null, "3436", null, "34444", null, "2891", null, "41001", null, "2468", null, "38372", null, "1782", null, "48876", null, "1948", null, "59243", null, "2194", null, "52113", null, "3837", null, "54258", null, "4136", null, "45702", null, "2079", null, "49786", null, "2334", null, "49742", null, "3174", null, "42107", null, "2932", null, "43597", null, "2636", null, "32637", null, "2484", null, "25255", null, "2237", null, "17658", null, "1707", null, "17475", null, "1993", null, "69698", null, "3002", null, "26166", null, "1689", null, "131818", null, "4263", null, "53207", null, "2067", null, "293863", null, "5729", null, "608619", null, "8042", null, "591656", null, "7613", null, "570716", null, "7625", null, "178729", null, "4878", null, "161321", null, "4525", null, "136622", null, "3565", null, "60388", null, "2462", null, "41.6", null, "0.4", null, "98.8", null, "1.8", null, "59.0", null, "1.2", null, "30.0", null, "0.9", null, "29.0", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.0", null, "0.3", null, "4.9", null, "0.5", null, "4.8", null, "0.4", null, "5.7", null, "0.3", null, "5.3", null, "0.2", null, "6.8", null, "0.3", null, "8.2", null, "0.3", null, "7.2", null, "0.5", null, "7.5", null, "0.6", null, "6.3", null, "0.3", null, "6.9", null, "0.3", null, "6.9", null, "0.4", null, "5.8", null, "0.4", null, "6.0", null, "0.4", null, "4.5", null, "0.4", null, "3.5", null, "0.3", null, "2.4", null, "0.2", null, "2.4", null, "0.3", null, "9.6", null, "0.4", null, "3.6", null, "0.2", null, "18.2", null, "0.5", null, "7.4", null, "0.3", null, "40.6", null, "0.5", null, "84.1", null, "0.5", null, "81.8", null, "0.5", null, "78.9", null, "0.5", null, "24.7", null, "0.6", null, "22.3", null, "0.6", null, "18.9", null, "0.5", null, "8.3", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.8", null, "-888888888.0", "(X)", "359492", null, "5469", null, "18433", null, "1789", null, "17453", null, "2111", null, "16572", null, "1972", null, "21568", null, "1862", null, "19743", null, "1076", null, "26049", null, "1217", null, "30118", null, "1626", null, "28085", null, "2537", null, "27319", null, "2656", null, "22478", null, "1410", null, "25191", null, "1452", null, "24755", null, "2068", null, "20947", null, "2152", null, "20975", null, "1567", null, "14626", null, "1544", null, "10372", null, "1352", null, "8913", null, "1408", null, "5895", null, "1028", null, "34025", null, "1864", null, "14062", null, "1509", null, "66520", null, "3175", null, "27249", null, "1253", null, "152882", null, "3625", null, "301899", null, "4594", null, "292972", null, "4215", null, "282249", null, "4284", null, "81728", null, "3137", null, "73736", null, "2960", null, "60781", null, "2158", null, "25180", null, "1429", null, "40.4", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.1", null, "0.5", null, "4.9", null, "0.6", null, "4.6", null, "0.5", null, "6.0", null, "0.5", null, "5.5", null, "0.3", null, "7.2", null, "0.3", null, "8.4", null, "0.4", null, "7.8", null, "0.7", null, "7.6", null, "0.7", null, "6.3", null, "0.4", null, "7.0", null, "0.4", null, "6.9", null, "0.6", null, "5.8", null, "0.6", null, "5.8", null, "0.4", null, "4.1", null, "0.4", null, "2.9", null, "0.4", null, "2.5", null, "0.4", null, "1.6", null, "0.3", null, "9.5", null, "0.5", null, "3.9", null, "0.4", null, "18.5", null, "0.7", null, "7.6", null, "0.3", null, "42.5", null, "0.7", null, "84.0", null, "0.7", null, "81.5", null, "0.7", null, "78.5", null, "0.7", null, "22.7", null, "0.9", null, "20.5", null, "0.8", null, "16.9", null, "0.6", null, "7.0", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "363982", null, "6136", null, "17521", null, "1149", null, "17801", null, "2220", null, "17872", null, "1933", null, "19433", null, "1386", null, "18629", null, "1359", null, "22827", null, "1246", null, "29125", null, "1154", null, "24028", null, "2532", null, "26939", null, "2544", null, "23224", null, "1242", null, "24595", null, "1329", null, "24987", null, "1869", null, "21160", null, "1997", null, "22622", null, "1901", null, "18011", null, "1674", null, "14883", null, "1723", null, "8745", null, "930", null, "11580", null, "1561", null, "35673", null, "2047", null, "12104", null, "922", null, "65298", null, "2649", null, "25958", null, "1615", null, "140981", null, "3411", null, "306720", null, "5141", null, "298684", null, "4881", null, "288467", null, "4791", null, "97001", null, "2938", null, "87585", null, "2733", null, "75841", null, "2526", null, "35208", null, "1680", null, "43.0", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.8", null, "0.3", null, "4.9", null, "0.6", null, "4.9", null, "0.5", null, "5.3", null, "0.4", null, "5.1", null, "0.3", null, "6.3", null, "0.3", null, "8.0", null, "0.3", null, "6.6", null, "0.7", null, "7.4", null, "0.7", null, "6.4", null, "0.4", null, "6.8", null, "0.3", null, "6.9", null, "0.5", null, "5.8", null, "0.6", null, "6.2", null, "0.5", null, "4.9", null, "0.5", null, "4.1", null, "0.5", null, "2.4", null, "0.3", null, "3.2", null, "0.4", null, "9.8", null, "0.5", null, "3.3", null, "0.2", null, "17.9", null, "0.6", null, "7.1", null, "0.4", null, "38.7", null, "0.6", null, "84.3", null, "0.6", null, "82.1", null, "0.6", null, "79.3", null, "0.6", null, "26.6", null, "0.7", null, "24.1", null, "0.7", null, "20.8", null, "0.6", null, "9.7", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "06", "15"], ["5001900US0616", "Congressional District 16 (119th Congress), California", "751938", null, "15002", null, "35471", null, "3185", null, "37378", null, "3176", null, "47899", null, "3927", null, "50454", null, "3859", null, "44532", null, "4247", null, "47847", null, "3662", null, "52530", null, "4508", null, "52907", null, "4350", null, "52635", null, "4032", null, "49878", null, "3504", null, "51411", null, "3888", null, "49595", null, "2953", null, "47454", null, "3761", null, "38871", null, "2998", null, "29401", null, "2561", null, "23530", null, "2199", null, "19922", null, "2308", null, "20223", null, "2632", null, "85277", null, "4788", null, "29636", null, "2846", null, "150384", null, "6383", null, "65350", null, "4801", null, "300905", null, "9767", null, "623621", null, "12539", null, "601554", null, "12364", null, "572731", null, "11687", null, "179401", null, "6427", null, "159287", null, "6024", null, "131947", null, "5251", null, "63675", null, "3963", null, "40.7", null, "0.7", null, "100.1", null, "2.9", null, "60.1", null, "1.9", null, "28.1", null, "1.3", null, "32.0", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.7", null, "0.4", null, "5.0", null, "0.4", null, "6.4", null, "0.5", null, "6.7", null, "0.5", null, "5.9", null, "0.5", null, "6.4", null, "0.5", null, "7.0", null, "0.6", null, "7.0", null, "0.6", null, "7.0", null, "0.5", null, "6.6", null, "0.4", null, "6.8", null, "0.5", null, "6.6", null, "0.4", null, "6.3", null, "0.5", null, "5.2", null, "0.4", null, "3.9", null, "0.3", null, "3.1", null, "0.3", null, "2.6", null, "0.3", null, "2.7", null, "0.4", null, "11.3", null, "0.6", null, "3.9", null, "0.4", null, "20.0", null, "0.7", null, "8.7", null, "0.6", null, "40.0", null, "0.9", null, "82.9", null, "0.7", null, "80.0", null, "0.7", null, "76.2", null, "0.7", null, "23.9", null, "0.9", null, "21.2", null, "0.8", null, "17.5", null, "0.7", null, "8.5", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.4", null, "-888888888.0", "(X)", "376221", null, "9236", null, "19313", null, "2207", null, "18835", null, "2141", null, "25607", null, "2792", null, "26599", null, "2731", null, "23726", null, "2689", null, "24751", null, "2850", null, "27324", null, "2981", null, "27568", null, "2597", null, "25628", null, "2847", null, "25659", null, "2297", null, "24907", null, "2363", null, "24146", null, "1889", null, "23934", null, "2278", null, "18567", null, "1985", null, "14351", null, "1846", null, "10121", null, "1422", null, "8204", null, "1305", null, "6981", null, "1269", null, "44442", null, "3332", null, "15927", null, "2156", null, "79682", null, "4180", null, "34398", null, "3145", null, "155596", null, "6879", null, "308874", null, "8041", null, "296539", null, "7904", null, "281880", null, "7643", null, "82158", null, "3373", null, "71870", null, "3507", null, "58224", null, "3052", null, "25306", null, "2094", null, "39.0", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.1", null, "0.6", null, "5.0", null, "0.6", null, "6.8", null, "0.7", null, "7.1", null, "0.7", null, "6.3", null, "0.7", null, "6.6", null, "0.7", null, "7.3", null, "0.8", null, "7.3", null, "0.7", null, "6.8", null, "0.7", null, "6.8", null, "0.6", null, "6.6", null, "0.6", null, "6.4", null, "0.5", null, "6.4", null, "0.6", null, "4.9", null, "0.5", null, "3.8", null, "0.5", null, "2.7", null, "0.4", null, "2.2", null, "0.3", null, "1.9", null, "0.3", null, "11.8", null, "0.8", null, "4.2", null, "0.6", null, "21.2", null, "0.9", null, "9.1", null, "0.8", null, "41.4", null, "1.2", null, "82.1", null, "0.9", null, "78.8", null, "0.9", null, "74.9", null, "1.0", null, "21.8", null, "0.9", null, "19.1", null, "0.9", null, "15.5", null, "0.8", null, "6.7", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "375717", null, "9230", null, "16158", null, "2311", null, "18543", null, "2197", null, "22292", null, "2493", null, "23855", null, "2382", null, "20806", null, "2633", null, "23096", null, "2593", null, "25206", null, "2537", null, "25339", null, "2782", null, "27007", null, "2259", null, "24219", null, "2063", null, "26504", null, "2294", null, "25449", null, "2439", null, "23520", null, "2515", null, "20304", null, "2013", null, "15050", null, "1609", null, "13409", null, "1540", null, "11718", null, "1774", null, "13242", null, "1796", null, "40835", null, "3071", null, "13709", null, "1729", null, "70702", null, "4193", null, "30952", null, "3062", null, "145309", null, "6032", null, "314747", null, "7563", null, "305015", null, "7105", null, "290851", null, "6463", null, "97243", null, "4194", null, "87417", null, "3725", null, "73723", null, "3436", null, "38369", null, "2732", null, "42.4", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.3", null, "0.6", null, "4.9", null, "0.6", null, "5.9", null, "0.6", null, "6.3", null, "0.6", null, "5.5", null, "0.6", null, "6.1", null, "0.7", null, "6.7", null, "0.7", null, "6.7", null, "0.7", null, "7.2", null, "0.6", null, "6.4", null, "0.5", null, "7.1", null, "0.6", null, "6.8", null, "0.7", null, "6.3", null, "0.7", null, "5.4", null, "0.5", null, "4.0", null, "0.4", null, "3.6", null, "0.4", null, "3.1", null, "0.5", null, "3.5", null, "0.5", null, "10.9", null, "0.7", null, "3.6", null, "0.4", null, "18.8", null, "0.9", null, "8.2", null, "0.7", null, "38.7", null, "1.1", null, "83.8", null, "0.9", null, "81.2", null, "0.9", null, "77.4", null, "1.0", null, "25.9", null, "1.1", null, "23.3", null, "1.0", null, "19.6", null, "1.0", null, "10.2", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "06", "16"], ["5001900US0617", "Congressional District 17 (119th Congress), California", "762984", null, "13692", null, "38996", null, "3579", null, "37725", null, "3744", null, "40483", null, "3535", null, "38799", null, "2903", null, "47026", null, "4519", null, "66521", null, "4588", null, "81622", null, "4653", null, "65236", null, "4561", null, "60729", null, "4117", null, "45103", null, "3148", null, "46606", null, "3387", null, "45475", null, "3445", null, "39892", null, "4158", null, "34325", null, "2540", null, "27864", null, "2618", null, "18926", null, "2674", null, "13683", null, "2050", null, "13973", null, "1910", null, "78208", null, "5103", null, "23755", null, "2537", null, "140959", null, "7794", null, "62070", null, "5021", null, "359933", null, "9522", null, "638438", null, "11825", null, "622025", null, "11595", null, "597660", null, "11429", null, "148663", null, "6472", null, "132607", null, "5657", null, "108771", null, "4938", null, "46582", null, "3342", null, "37.1", null, "0.6", null, "107.3", null, "3.4", null, "48.7", null, "2.0", null, "21.2", null, "1.1", null, "27.5", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.1", null, "0.4", null, "4.9", null, "0.5", null, "5.3", null, "0.4", null, "5.1", null, "0.4", null, "6.2", null, "0.6", null, "8.7", null, "0.6", null, "10.7", null, "0.6", null, "8.6", null, "0.6", null, "8.0", null, "0.5", null, "5.9", null, "0.4", null, "6.1", null, "0.4", null, "6.0", null, "0.4", null, "5.2", null, "0.5", null, "4.5", null, "0.3", null, "3.7", null, "0.4", null, "2.5", null, "0.4", null, "1.8", null, "0.3", null, "1.8", null, "0.2", null, "10.3", null, "0.6", null, "3.1", null, "0.3", null, "18.5", null, "0.9", null, "8.1", null, "0.6", null, "47.2", null, "0.9", null, "83.7", null, "0.8", null, "81.5", null, "0.9", null, "78.3", null, "0.9", null, "19.5", null, "0.8", null, "17.4", null, "0.7", null, "14.3", null, "0.7", null, "6.1", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.7", null, "-888888888.0", "(X)", "394972", null, "9620", null, "19474", null, "2522", null, "20375", null, "2434", null, "20165", null, "2133", null, "20346", null, "1980", null, "24298", null, "3765", null, "34510", null, "3166", null, "44805", null, "3584", null, "35925", null, "2836", null, "33224", null, "3082", null, "23723", null, "2487", null, "23942", null, "1949", null, "24029", null, "2362", null, "20409", null, "2614", null, "16987", null, "1774", null, "12722", null, "1584", null, "9243", null, "1718", null, "5184", null, "1003", null, "5611", null, "1214", null, "40540", null, "3578", null, "12724", null, "1636", null, "72738", null, "5392", null, "31920", null, "4085", null, "193108", null, "7502", null, "330714", null, "8244", null, "322234", null, "8211", null, "310376", null, "7919", null, "70156", null, "3783", null, "62128", null, "3429", null, "49747", null, "2838", null, "20038", null, "1990", null, "36.8", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.9", null, "0.6", null, "5.2", null, "0.6", null, "5.1", null, "0.5", null, "5.2", null, "0.5", null, "6.2", null, "0.9", null, "8.7", null, "0.8", null, "11.3", null, "0.9", null, "9.1", null, "0.7", null, "8.4", null, "0.7", null, "6.0", null, "0.7", null, "6.1", null, "0.5", null, "6.1", null, "0.6", null, "5.2", null, "0.7", null, "4.3", null, "0.5", null, "3.2", null, "0.4", null, "2.3", null, "0.4", null, "1.3", null, "0.3", null, "1.4", null, "0.3", null, "10.3", null, "0.8", null, "3.2", null, "0.4", null, "18.4", null, "1.2", null, "8.1", null, "1.0", null, "48.9", null, "1.2", null, "83.7", null, "1.1", null, "81.6", null, "1.2", null, "78.6", null, "1.3", null, "17.8", null, "1.0", null, "15.7", null, "0.9", null, "12.6", null, "0.8", null, "5.1", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "368012", null, "8556", null, "19522", null, "2174", null, "17350", null, "2533", null, "20318", null, "2376", null, "18453", null, "2018", null, "22728", null, "2655", null, "32011", null, "2958", null, "36817", null, "2604", null, "29311", null, "2784", null, "27505", null, "2287", null, "21380", null, "1778", null, "22664", null, "2259", null, "21446", null, "1997", null, "19483", null, "2212", null, "17338", null, "1822", null, "15142", null, "1672", null, "9683", null, "1697", null, "8499", null, "1783", null, "8362", null, "1475", null, "37668", null, "3047", null, "11031", null, "1731", null, "68221", null, "4272", null, "30150", null, "2690", null, "166825", null, "5078", null, "307724", null, "7320", null, "299791", null, "7183", null, "287284", null, "7481", null, "78507", null, "4101", null, "70479", null, "3900", null, "59024", null, "3332", null, "26544", null, "2454", null, "37.8", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.3", null, "0.6", null, "4.7", null, "0.7", null, "5.5", null, "0.6", null, "5.0", null, "0.5", null, "6.2", null, "0.7", null, "8.7", null, "0.8", null, "10.0", null, "0.7", null, "8.0", null, "0.7", null, "7.5", null, "0.6", null, "5.8", null, "0.5", null, "6.2", null, "0.6", null, "5.8", null, "0.5", null, "5.3", null, "0.6", null, "4.7", null, "0.5", null, "4.1", null, "0.5", null, "2.6", null, "0.5", null, "2.3", null, "0.5", null, "2.3", null, "0.4", null, "10.2", null, "0.7", null, "3.0", null, "0.5", null, "18.5", null, "1.0", null, "8.2", null, "0.7", null, "45.3", null, "1.1", null, "83.6", null, "0.9", null, "81.5", null, "1.0", null, "78.1", null, "1.1", null, "21.3", null, "1.0", null, "19.2", null, "0.9", null, "16.0", null, "0.8", null, "7.2", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "06", "17"], ["5001900US0618", "Congressional District 18 (119th Congress), California", "766286", null, "14900", null, "46019", null, "3148", null, "51529", null, "4451", null, "54013", null, "4048", null, "59887", null, "4282", null, "58107", null, "3836", null, "53971", null, "3496", null, "60449", null, "3213", null, "54594", null, "4111", null, "53977", null, "4304", null, "48034", null, "2645", null, "46950", null, "2795", null, "47049", null, "3440", null, "37808", null, "3043", null, "30531", null, "2487", null, "25519", null, "2140", null, "16875", null, "2185", null, "9414", null, "1913", null, "11560", null, "1552", null, "105542", null, "4914", null, "34481", null, "2813", null, "186042", null, "6925", null, "83513", null, "4905", null, "340985", null, "9920", null, "602733", null, "12506", null, "580244", null, "11752", null, "543302", null, "10893", null, "131707", null, "5391", null, "114825", null, "5407", null, "93899", null, "4403", null, "37849", null, "2957", null, "34.9", null, "0.5", null, "105.9", null, "2.9", null, "57.6", null, "1.8", null, "19.3", null, "1.1", null, "38.3", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.0", null, "0.4", null, "6.7", null, "0.5", null, "7.0", null, "0.5", null, "7.8", null, "0.5", null, "7.6", null, "0.5", null, "7.0", null, "0.4", null, "7.9", null, "0.4", null, "7.1", null, "0.5", null, "7.0", null, "0.5", null, "6.3", null, "0.3", null, "6.1", null, "0.3", null, "6.1", null, "0.4", null, "4.9", null, "0.4", null, "4.0", null, "0.3", null, "3.3", null, "0.3", null, "2.2", null, "0.3", null, "1.2", null, "0.3", null, "1.5", null, "0.2", null, "13.8", null, "0.6", null, "4.5", null, "0.3", null, "24.3", null, "0.7", null, "10.9", null, "0.6", null, "44.5", null, "0.8", null, "78.7", null, "0.7", null, "75.7", null, "0.7", null, "70.9", null, "0.8", null, "17.2", null, "0.7", null, "15.0", null, "0.7", null, "12.3", null, "0.6", null, "4.9", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.6", null, "-888888888.0", "(X)", "394116", null, "9647", null, "23410", null, "2566", null, "24978", null, "2711", null, "26157", null, "2878", null, "30360", null, "2930", null, "31070", null, "2876", null, "28237", null, "2670", null, "33957", null, "2426", null, "29037", null, "2773", null, "27378", null, "2636", null, "24213", null, "1914", null, "25439", null, "2108", null, "24901", null, "2321", null, "19216", null, "2315", null, "16416", null, "1802", null, "11742", null, "1353", null, "8898", null, "1407", null, "3784", null, "1085", null, "4923", null, "1003", null, "51135", null, "3658", null, "18069", null, "1974", null, "92614", null, "4840", null, "43361", null, "3399", null, "180039", null, "6449", null, "312424", null, "7884", null, "301502", null, "7677", null, "283556", null, "7303", null, "64979", null, "3393", null, "55697", null, "3208", null, "45763", null, "2563", null, "17605", null, "1947", null, "34.8", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.9", null, "0.6", null, "6.3", null, "0.7", null, "6.6", null, "0.7", null, "7.7", null, "0.7", null, "7.9", null, "0.7", null, "7.2", null, "0.6", null, "8.6", null, "0.6", null, "7.4", null, "0.7", null, "6.9", null, "0.7", null, "6.1", null, "0.5", null, "6.5", null, "0.5", null, "6.3", null, "0.6", null, "4.9", null, "0.6", null, "4.2", null, "0.5", null, "3.0", null, "0.3", null, "2.3", null, "0.4", null, "1.0", null, "0.3", null, "1.2", null, "0.3", null, "13.0", null, "0.9", null, "4.6", null, "0.5", null, "23.5", null, "1.0", null, "11.0", null, "0.8", null, "45.7", null, "1.0", null, "79.3", null, "0.9", null, "76.5", null, "1.0", null, "71.9", null, "1.1", null, "16.5", null, "0.9", null, "14.1", null, "0.8", null, "11.6", null, "0.7", null, "4.5", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "372170", null, "8659", null, "22609", null, "1949", null, "26551", null, "3189", null, "27856", null, "2885", null, "29527", null, "2622", null, "27037", null, "2680", null, "25734", null, "2028", null, "26492", null, "2004", null, "25557", null, "2347", null, "26599", null, "2665", null, "23821", null, "1747", null, "21511", null, "1582", null, "22148", null, "2337", null, "18592", null, "2012", null, "14115", null, "1720", null, "13777", null, "1692", null, "7977", null, "1422", null, "5630", null, "1270", null, "6637", null, "1192", null, "54407", null, "2852", null, "16412", null, "1717", null, "93428", null, "4181", null, "40152", null, "3327", null, "160946", null, "5721", null, "290309", null, "7086", null, "278742", null, "6432", null, "259746", null, "5790", null, "66728", null, "3482", null, "59128", null, "3499", null, "48136", null, "2775", null, "20244", null, "1847", null, "35.1", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.1", null, "0.5", null, "7.1", null, "0.8", null, "7.5", null, "0.8", null, "7.9", null, "0.6", null, "7.3", null, "0.6", null, "6.9", null, "0.6", null, "7.1", null, "0.5", null, "6.9", null, "0.6", null, "7.1", null, "0.7", null, "6.4", null, "0.5", null, "5.8", null, "0.4", null, "6.0", null, "0.6", null, "5.0", null, "0.5", null, "3.8", null, "0.5", null, "3.7", null, "0.5", null, "2.1", null, "0.4", null, "1.5", null, "0.3", null, "1.8", null, "0.3", null, "14.6", null, "0.7", null, "4.4", null, "0.4", null, "25.1", null, "0.8", null, "10.8", null, "0.8", null, "43.2", null, "0.9", null, "78.0", null, "0.8", null, "74.9", null, "0.8", null, "69.8", null, "1.0", null, "17.9", null, "0.9", null, "15.9", null, "0.9", null, "12.9", null, "0.7", null, "5.4", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "06", "18"], ["5001900US0619", "Congressional District 19 (119th Congress), California", "741135", null, "14058", null, "34368", null, "3360", null, "32959", null, "3422", null, "39032", null, "3233", null, "54196", null, "3713", null, "54413", null, "4072", null, "42177", null, "3395", null, "44566", null, "3861", null, "45888", null, "3992", null, "44544", null, "3497", null, "45515", null, "3221", null, "45053", null, "2990", null, "45198", null, "3576", null, "47256", null, "3063", null, "49386", null, "3035", null, "46332", null, "3511", null, "34068", null, "3279", null, "19587", null, "1975", null, "16597", null, "1978", null, "71991", null, "5145", null, "27721", null, "2642", null, "134080", null, "7225", null, "80888", null, "4254", null, "285784", null, "9051", null, "625261", null, "10960", null, "607055", null, "10668", null, "570293", null, "10631", null, "213226", null, "6820", null, "194443", null, "6814", null, "165970", null, "5784", null, "70252", null, "3675", null, "42.7", null, "0.8", null, "99.8", null, "2.5", null, "68.0", null, "2.0", null, "37.6", null, "1.6", null, "30.4", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.6", null, "0.4", null, "4.4", null, "0.4", null, "5.3", null, "0.4", null, "7.3", null, "0.5", null, "7.3", null, "0.5", null, "5.7", null, "0.4", null, "6.0", null, "0.5", null, "6.2", null, "0.5", null, "6.0", null, "0.5", null, "6.1", null, "0.4", null, "6.1", null, "0.4", null, "6.1", null, "0.5", null, "6.4", null, "0.4", null, "6.7", null, "0.4", null, "6.3", null, "0.5", null, "4.6", null, "0.4", null, "2.6", null, "0.3", null, "2.2", null, "0.3", null, "9.7", null, "0.6", null, "3.7", null, "0.3", null, "18.1", null, "0.8", null, "10.9", null, "0.6", null, "38.6", null, "0.8", null, "84.4", null, "0.8", null, "81.9", null, "0.8", null, "76.9", null, "0.9", null, "28.8", null, "1.0", null, "26.2", null, "0.9", null, "22.4", null, "0.8", null, "9.5", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.6", null, "-888888888.0", "(X)", "370162", null, "9099", null, "17207", null, "2371", null, "19096", null, "2401", null, "20932", null, "2640", null, "26896", null, "2590", null, "28787", null, "2722", null, "22710", null, "2636", null, "21175", null, "2430", null, "24869", null, "2737", null, "21749", null, "2176", null, "23289", null, "2073", null, "21208", null, "1653", null, "22890", null, "2103", null, "22770", null, "1992", null, "24666", null, "1910", null, "20611", null, "1993", null, "15755", null, "1946", null, "8677", null, "1318", null, "6875", null, "1075", null, "40028", null, "3676", null, "12852", null, "1718", null, "70087", null, "4815", null, "42831", null, "3490", null, "146186", null, "6809", null, "308304", null, "7556", null, "300075", null, "7259", null, "281582", null, "7086", null, "99354", null, "3594", null, "90332", null, "3499", null, "76584", null, "3132", null, "31307", null, "2182", null, "41.0", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.6", null, "0.6", null, "5.2", null, "0.6", null, "5.7", null, "0.7", null, "7.3", null, "0.7", null, "7.8", null, "0.7", null, "6.1", null, "0.7", null, "5.7", null, "0.6", null, "6.7", null, "0.7", null, "5.9", null, "0.6", null, "6.3", null, "0.6", null, "5.7", null, "0.5", null, "6.2", null, "0.6", null, "6.2", null, "0.5", null, "6.7", null, "0.5", null, "5.6", null, "0.6", null, "4.3", null, "0.5", null, "2.3", null, "0.4", null, "1.9", null, "0.3", null, "10.8", null, "0.9", null, "3.5", null, "0.4", null, "18.9", null, "1.1", null, "11.6", null, "0.9", null, "39.5", null, "1.2", null, "83.3", null, "1.1", null, "81.1", null, "1.1", null, "76.1", null, "1.1", null, "26.8", null, "1.1", null, "24.4", null, "1.0", null, "20.7", null, "0.9", null, "8.5", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "370973", null, "7623", null, "17161", null, "2034", null, "13863", null, "2236", null, "18100", null, "1865", null, "27300", null, "2196", null, "25626", null, "2230", null, "19467", null, "1961", null, "23391", null, "2403", null, "21019", null, "2286", null, "22795", null, "2031", null, "22226", null, "1816", null, "23845", null, "2144", null, "22308", null, "2274", null, "24486", null, "1980", null, "24720", null, "1998", null, "25721", null, "2302", null, "18313", null, "2030", null, "10910", null, "1299", null, "9722", null, "1501", null, "31963", null, "2770", null, "14869", null, "1735", null, "63993", null, "4191", null, "38057", null, "2399", null, "139598", null, "4672", null, "316957", null, "5834", null, "306980", null, "5814", null, "288711", null, "5676", null, "113872", null, "4141", null, "104111", null, "4237", null, "89386", null, "3618", null, "38945", null, "2359", null, "44.3", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.6", null, "0.5", null, "3.7", null, "0.6", null, "4.9", null, "0.5", null, "7.4", null, "0.6", null, "6.9", null, "0.6", null, "5.2", null, "0.5", null, "6.3", null, "0.6", null, "5.7", null, "0.6", null, "6.1", null, "0.5", null, "6.0", null, "0.5", null, "6.4", null, "0.6", null, "6.0", null, "0.6", null, "6.6", null, "0.5", null, "6.7", null, "0.6", null, "6.9", null, "0.6", null, "4.9", null, "0.5", null, "2.9", null, "0.3", null, "2.6", null, "0.4", null, "8.6", null, "0.7", null, "4.0", null, "0.5", null, "17.3", null, "0.9", null, "10.3", null, "0.6", null, "37.6", null, "0.9", null, "85.4", null, "0.9", null, "82.7", null, "0.9", null, "77.8", null, "1.0", null, "30.7", null, "1.1", null, "28.1", null, "1.1", null, "24.1", null, "0.9", null, "10.5", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "06", "19"], ["5001900US0620", "Congressional District 20 (119th Congress), California", "816324", null, "20927", null, "52196", null, "4339", null, "62774", null, "5740", null, "61998", null, "4904", null, "58245", null, "4289", null, "52048", null, "4332", null, "53114", null, "4086", null, "59019", null, "4170", null, "64531", null, "5603", null, "54144", null, "4844", null, "45648", null, "4167", null, "41916", null, "2797", null, "42917", null, "3344", null, "42711", null, "3925", null, "40700", null, "3083", null, "33193", null, "2545", null, "24738", null, "2204", null, "14947", null, "1804", null, "11485", null, "1780", null, "124772", null, "6653", null, "36256", null, "2956", null, "213224", null, "9141", null, "74037", null, "5008", null, "341101", null, "11193", null, "628406", null, "16874", null, "603100", null, "16121", null, "568101", null, "14565", null, "167774", null, "6461", null, "150869", null, "5887", null, "125063", null, "4931", null, "51170", null, "3119", null, "35.7", null, "0.6", null, "100.2", null, "2.4", null, "70.8", null, "2.0", null, "26.2", null, "1.0", null, "44.6", null, "1.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.4", null, "0.5", null, "7.7", null, "0.7", null, "7.6", null, "0.6", null, "7.1", null, "0.4", null, "6.4", null, "0.5", null, "6.5", null, "0.5", null, "7.2", null, "0.5", null, "7.9", null, "0.7", null, "6.6", null, "0.6", null, "5.6", null, "0.5", null, "5.1", null, "0.3", null, "5.3", null, "0.4", null, "5.2", null, "0.5", null, "5.0", null, "0.4", null, "4.1", null, "0.3", null, "3.0", null, "0.3", null, "1.8", null, "0.2", null, "1.4", null, "0.2", null, "15.3", null, "0.7", null, "4.4", null, "0.3", null, "26.1", null, "0.8", null, "9.1", null, "0.5", null, "41.8", null, "0.7", null, "77.0", null, "0.8", null, "73.9", null, "0.8", null, "69.6", null, "0.9", null, "20.6", null, "0.7", null, "18.5", null, "0.6", null, "15.3", null, "0.6", null, "6.3", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.3", null, "-888888888.0", "(X)", "408565", null, "12260", null, "27567", null, "3006", null, "30314", null, "3820", null, "31180", null, "2976", null, "30927", null, "3032", null, "29062", null, "2883", null, "26777", null, "2429", null, "29049", null, "2761", null, "31561", null, "3231", null, "27651", null, "3375", null, "23841", null, "2616", null, "21466", null, "1818", null, "21183", null, "2605", null, "19535", null, "2445", null, "19848", null, "2030", null, "16633", null, "1400", null, "11169", null, "1303", null, "6024", null, "1076", null, "4778", null, "1146", null, "61494", null, "4310", null, "19496", null, "2202", null, "108557", null, "5910", null, "40493", null, "3478", null, "175027", null, "7165", null, "313436", null, "10014", null, "300008", null, "9383", null, "282113", null, "8362", null, "77987", null, "3577", null, "69996", null, "3331", null, "58452", null, "3009", null, "21971", null, "1632", null, "34.9", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.7", null, "0.7", null, "7.4", null, "0.9", null, "7.6", null, "0.7", null, "7.6", null, "0.6", null, "7.1", null, "0.6", null, "6.6", null, "0.6", null, "7.1", null, "0.7", null, "7.7", null, "0.8", null, "6.8", null, "0.8", null, "5.8", null, "0.6", null, "5.3", null, "0.4", null, "5.2", null, "0.6", null, "4.8", null, "0.6", null, "4.9", null, "0.5", null, "4.1", null, "0.4", null, "2.7", null, "0.3", null, "1.5", null, "0.3", null, "1.2", null, "0.3", null, "15.1", null, "1.0", null, "4.8", null, "0.5", null, "26.6", null, "1.1", null, "9.9", null, "0.7", null, "42.8", null, "1.1", null, "76.7", null, "1.1", null, "73.4", null, "1.1", null, "69.0", null, "1.0", null, "19.1", null, "0.9", null, "17.1", null, "0.8", null, "14.3", null, "0.7", null, "5.4", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "407759", null, "10725", null, "24629", null, "2664", null, "32460", null, "3249", null, "30818", null, "3126", null, "27318", null, "2300", null, "22986", null, "2890", null, "26337", null, "3024", null, "29970", null, "2609", null, "32970", null, "3288", null, "26493", null, "2653", null, "21807", null, "2422", null, "20450", null, "1781", null, "21734", null, "1955", null, "23176", null, "2428", null, "20852", null, "2060", null, "16560", null, "1893", null, "13569", null, "1380", null, "8923", null, "1326", null, "6707", null, "1375", null, "63278", null, "3644", null, "16760", null, "1593", null, "104667", null, "4749", null, "33544", null, "3230", null, "166074", null, "6110", null, "314970", null, "8835", null, "303092", null, "8650", null, "285988", null, "7919", null, "89787", null, "3994", null, "80873", null, "3588", null, "66611", null, "2904", null, "29199", null, "1987", null, "36.5", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.0", null, "0.6", null, "8.0", null, "0.8", null, "7.6", null, "0.7", null, "6.7", null, "0.5", null, "5.6", null, "0.7", null, "6.5", null, "0.7", null, "7.3", null, "0.6", null, "8.1", null, "0.8", null, "6.5", null, "0.7", null, "5.3", null, "0.6", null, "5.0", null, "0.4", null, "5.3", null, "0.5", null, "5.7", null, "0.6", null, "5.1", null, "0.5", null, "4.1", null, "0.5", null, "3.3", null, "0.3", null, "2.2", null, "0.3", null, "1.6", null, "0.3", null, "15.5", null, "0.8", null, "4.1", null, "0.4", null, "25.7", null, "0.9", null, "8.2", null, "0.7", null, "40.7", null, "1.0", null, "77.2", null, "1.0", null, "74.3", null, "0.9", null, "70.1", null, "1.0", null, "22.0", null, "0.8", null, "19.8", null, "0.8", null, "16.3", null, "0.6", null, "7.2", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "06", "20"], ["5001900US0621", "Congressional District 21 (119th Congress), California", "775200", null, "16484", null, "56338", null, "3784", null, "60281", null, "4706", null, "67664", null, "4428", null, "63630", null, "3232", null, "54917", null, "3760", null, "55739", null, "3142", null, "61335", null, "3882", null, "55985", null, "4468", null, "54411", null, "3888", null, "43248", null, "1987", null, "39516", null, "2594", null, "35755", null, "2725", null, "37436", null, "2877", null, "28643", null, "2304", null, "25497", null, "2211", null, "16864", null, "1837", null, "10208", null, "1722", null, "7733", null, "1409", null, "127945", null, "6243", null, "41209", null, "2637", null, "225492", null, "8177", null, "77338", null, "4419", null, "346017", null, "10152", null, "578114", null, "12228", null, "549708", null, "11277", null, "515174", null, "10514", null, "126381", null, "4473", null, "111912", null, "4531", null, "88945", null, "3826", null, "34805", null, "2432", null, "32.3", null, "0.5", null, "102.4", null, "2.2", null, "68.2", null, "2.0", null, "19.3", null, "1.0", null, "48.9", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "7.3", null, "0.5", null, "7.8", null, "0.5", null, "8.7", null, "0.5", null, "8.2", null, "0.4", null, "7.1", null, "0.4", null, "7.2", null, "0.4", null, "7.9", null, "0.4", null, "7.2", null, "0.5", null, "7.0", null, "0.5", null, "5.6", null, "0.3", null, "5.1", null, "0.3", null, "4.6", null, "0.3", null, "4.8", null, "0.4", null, "3.7", null, "0.3", null, "3.3", null, "0.3", null, "2.2", null, "0.2", null, "1.3", null, "0.2", null, "1.0", null, "0.2", null, "16.5", null, "0.7", null, "5.3", null, "0.3", null, "29.1", null, "0.7", null, "10.0", null, "0.5", null, "44.6", null, "0.7", null, "74.6", null, "0.7", null, "70.9", null, "0.7", null, "66.5", null, "0.7", null, "16.3", null, "0.6", null, "14.4", null, "0.6", null, "11.5", null, "0.5", null, "4.5", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.9", null, "-888888888.0", "(X)", "392260", null, "9537", null, "27638", null, "2605", null, "33888", null, "3145", null, "33771", null, "2967", null, "34877", null, "1973", null, "26503", null, "2152", null, "28448", null, "2201", null, "32899", null, "2401", null, "30043", null, "2873", null, "27081", null, "2511", null, "21541", null, "1569", null, "19820", null, "1730", null, "17241", null, "1882", null, "18654", null, "2025", null, "13612", null, "1485", null, "11499", null, "1324", null, "7645", null, "1142", null, "3996", null, "1002", null, "3104", null, "885", null, "67659", null, "3586", null, "23160", null, "1672", null, "118457", null, "5380", null, "38220", null, "2465", null, "179851", null, "6246", null, "289695", null, "7136", null, "273803", null, "6423", null, "257381", null, "5949", null, "58510", null, "2852", null, "50804", null, "3119", null, "39856", null, "2320", null, "14745", null, "1355", null, "31.7", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "7.0", null, "0.6", null, "8.6", null, "0.7", null, "8.6", null, "0.7", null, "8.9", null, "0.4", null, "6.8", null, "0.5", null, "7.3", null, "0.5", null, "8.4", null, "0.6", null, "7.7", null, "0.7", null, "6.9", null, "0.6", null, "5.5", null, "0.4", null, "5.1", null, "0.4", null, "4.4", null, "0.5", null, "4.8", null, "0.5", null, "3.5", null, "0.4", null, "2.9", null, "0.3", null, "1.9", null, "0.3", null, "1.0", null, "0.3", null, "0.8", null, "0.2", null, "17.2", null, "0.7", null, "5.9", null, "0.4", null, "30.2", null, "0.9", null, "9.7", null, "0.6", null, "45.8", null, "1.0", null, "73.9", null, "1.0", null, "69.8", null, "0.9", null, "65.6", null, "0.9", null, "14.9", null, "0.8", null, "13.0", null, "0.8", null, "10.2", null, "0.6", null, "3.8", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "382940", null, "8901", null, "28700", null, "2508", null, "26393", null, "2988", null, "33893", null, "3405", null, "28753", null, "2243", null, "28414", null, "2412", null, "27291", null, "2217", null, "28436", null, "2271", null, "25942", null, "2969", null, "27330", null, "2615", null, "21707", null, "1566", null, "19696", null, "1594", null, "18514", null, "1858", null, "18782", null, "2305", null, "15031", null, "1653", null, "13998", null, "1564", null, "9219", null, "1204", null, "6212", null, "1089", null, "4629", null, "1047", null, "60286", null, "4140", null, "18049", null, "1700", null, "107035", null, "4625", null, "39118", null, "2852", null, "166166", null, "5341", null, "288419", null, "6395", null, "275905", null, "5907", null, "257793", null, "5426", null, "67871", null, "3070", null, "61108", null, "2747", null, "49089", null, "2428", null, "20060", null, "1522", null, "33.0", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "7.5", null, "0.6", null, "6.9", null, "0.7", null, "8.9", null, "0.8", null, "7.5", null, "0.6", null, "7.4", null, "0.6", null, "7.1", null, "0.6", null, "7.4", null, "0.5", null, "6.8", null, "0.7", null, "7.1", null, "0.7", null, "5.7", null, "0.4", null, "5.1", null, "0.4", null, "4.8", null, "0.5", null, "4.9", null, "0.6", null, "3.9", null, "0.4", null, "3.7", null, "0.4", null, "2.4", null, "0.3", null, "1.6", null, "0.3", null, "1.2", null, "0.3", null, "15.7", null, "0.9", null, "4.7", null, "0.4", null, "28.0", null, "0.8", null, "10.2", null, "0.7", null, "43.4", null, "0.8", null, "75.3", null, "0.9", null, "72.0", null, "0.8", null, "67.3", null, "0.9", null, "17.7", null, "0.8", null, "16.0", null, "0.7", null, "12.8", null, "0.6", null, "5.2", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "06", "21"], ["5001900US0622", "Congressional District 22 (119th Congress), California", "770684", null, "17031", null, "53319", null, "3081", null, "58680", null, "4504", null, "67086", null, "3704", null, "70395", null, "4199", null, "61793", null, "3679", null, "59798", null, "3231", null, "58905", null, "3099", null, "53162", null, "4424", null, "49053", null, "4221", null, "43861", null, "2932", null, "43529", null, "2544", null, "35089", null, "2614", null, "36618", null, "2825", null, "28003", null, "2863", null, "21985", null, "2609", null, "13890", null, "1717", null, "8431", null, "1392", null, "7087", null, "1636", null, "125766", null, "5914", null, "44306", null, "3081", null, "223391", null, "7541", null, "87882", null, "4364", null, "353106", null, "9379", null, "579027", null, "13755", null, "547293", null, "12992", null, "508452", null, "11909", null, "116014", null, "4570", null, "101337", null, "4411", null, "79396", null, "3608", null, "29408", null, "2240", null, "31.2", null, "0.5", null, "105.9", null, "2.4", null, "64.7", null, "1.8", null, "17.0", null, "0.8", null, "47.7", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.9", null, "0.4", null, "7.6", null, "0.5", null, "8.7", null, "0.5", null, "9.1", null, "0.5", null, "8.0", null, "0.4", null, "7.8", null, "0.4", null, "7.6", null, "0.4", null, "6.9", null, "0.6", null, "6.4", null, "0.5", null, "5.7", null, "0.4", null, "5.6", null, "0.3", null, "4.6", null, "0.3", null, "4.8", null, "0.4", null, "3.6", null, "0.4", null, "2.9", null, "0.3", null, "1.8", null, "0.2", null, "1.1", null, "0.2", null, "0.9", null, "0.2", null, "16.3", null, "0.7", null, "5.7", null, "0.4", null, "29.0", null, "0.7", null, "11.4", null, "0.5", null, "45.8", null, "0.7", null, "75.1", null, "0.8", null, "71.0", null, "0.7", null, "66.0", null, "0.7", null, "15.1", null, "0.6", null, "13.1", null, "0.5", null, "10.3", null, "0.4", null, "3.8", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.7", null, "-888888888.0", "(X)", "396329", null, "10218", null, "27442", null, "2710", null, "27292", null, "2998", null, "36868", null, "2780", null, "34356", null, "2661", null, "31333", null, "2555", null, "31915", null, "1968", null, "32032", null, "1869", null, "30183", null, "2792", null, "25514", null, "3025", null, "22254", null, "1801", null, "21695", null, "1520", null, "17905", null, "1798", null, "20032", null, "1878", null, "13783", null, "1907", null, "10290", null, "1738", null, "6155", null, "1108", null, "3643", null, "832", null, "3637", null, "1112", null, "64160", null, "3626", null, "21178", null, "1872", null, "112780", null, "5413", null, "44511", null, "3133", null, "185333", null, "5805", null, "298767", null, "8172", null, "283549", null, "7738", null, "263553", null, "7073", null, "57540", null, "3053", null, "49744", null, "2960", null, "37508", null, "2522", null, "13435", null, "1353", null, "31.3", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.9", null, "0.6", null, "6.9", null, "0.7", null, "9.3", null, "0.7", null, "8.7", null, "0.6", null, "7.9", null, "0.6", null, "8.1", null, "0.5", null, "8.1", null, "0.5", null, "7.6", null, "0.7", null, "6.4", null, "0.8", null, "5.6", null, "0.4", null, "5.5", null, "0.3", null, "4.5", null, "0.4", null, "5.1", null, "0.5", null, "3.5", null, "0.5", null, "2.6", null, "0.4", null, "1.6", null, "0.3", null, "0.9", null, "0.2", null, "0.9", null, "0.3", null, "16.2", null, "0.8", null, "5.3", null, "0.4", null, "28.5", null, "1.0", null, "11.2", null, "0.7", null, "46.8", null, "1.0", null, "75.4", null, "1.0", null, "71.5", null, "1.0", null, "66.5", null, "1.0", null, "14.5", null, "0.7", null, "12.6", null, "0.7", null, "9.5", null, "0.6", null, "3.4", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "374355", null, "8834", null, "25877", null, "1988", null, "31388", null, "2893", null, "30218", null, "2748", null, "36039", null, "2673", null, "30460", null, "2257", null, "27883", null, "2162", null, "26873", null, "1946", null, "22979", null, "2564", null, "23539", null, "2018", null, "21607", null, "1763", null, "21834", null, "1651", null, "17184", null, "1854", null, "16586", null, "1939", null, "14220", null, "1835", null, "11695", null, "1679", null, "7735", null, "1264", null, "4788", null, "1045", null, "3450", null, "873", null, "61606", null, "3442", null, "23128", null, "2055", null, "110611", null, "3942", null, "43371", null, "2619", null, "167773", null, "5387", null, "280260", null, "7225", null, "263744", null, "6921", null, "244899", null, "6354", null, "58474", null, "2597", null, "51593", null, "2473", null, "41888", null, "1990", null, "15973", null, "1305", null, "31.2", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.9", null, "0.5", null, "8.4", null, "0.8", null, "8.1", null, "0.7", null, "9.6", null, "0.7", null, "8.1", null, "0.6", null, "7.4", null, "0.5", null, "7.2", null, "0.5", null, "6.1", null, "0.7", null, "6.3", null, "0.5", null, "5.8", null, "0.5", null, "5.8", null, "0.4", null, "4.6", null, "0.5", null, "4.4", null, "0.5", null, "3.8", null, "0.5", null, "3.1", null, "0.4", null, "2.1", null, "0.3", null, "1.3", null, "0.3", null, "0.9", null, "0.2", null, "16.5", null, "0.8", null, "6.2", null, "0.6", null, "29.5", null, "0.8", null, "11.6", null, "0.6", null, "44.8", null, "0.9", null, "74.9", null, "0.9", null, "70.5", null, "0.8", null, "65.4", null, "0.8", null, "15.6", null, "0.7", null, "13.8", null, "0.6", null, "11.2", null, "0.5", null, "4.3", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "06", "22"], ["5001900US0623", "Congressional District 23 (119th Congress), California", "758179", null, "12021", null, "44141", null, "2985", null, "50737", null, "4385", null, "57664", null, "4977", null, "56392", null, "3987", null, "49985", null, "4264", null, "46982", null, "3528", null, "56361", null, "4586", null, "53910", null, "4610", null, "53611", null, "4105", null, "39509", null, "3035", null, "39245", null, "2732", null, "41322", null, "3528", null, "50322", null, "4009", null, "38774", null, "3326", null, "31435", null, "3019", null, "21782", null, "2496", null, "12701", null, "1640", null, "13306", null, "1835", null, "108401", null, "6304", null, "33570", null, "3225", null, "186112", null, "8849", null, "72807", null, "4719", null, "317241", null, "7721", null, "595219", null, "11281", null, "572067", null, "11261", null, "537830", null, "10913", null, "168320", null, "7423", null, "149153", null, "6694", null, "117998", null, "5318", null, "47789", null, "2919", null, "36.2", null, "0.7", null, "102.8", null, "2.7", null, "67.0", null, "2.5", null, "26.0", null, "1.3", null, "41.0", null, "2.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.8", null, "0.4", null, "6.7", null, "0.5", null, "7.6", null, "0.6", null, "7.4", null, "0.5", null, "6.6", null, "0.6", null, "6.2", null, "0.4", null, "7.4", null, "0.6", null, "7.1", null, "0.6", null, "7.1", null, "0.5", null, "5.2", null, "0.4", null, "5.2", null, "0.3", null, "5.5", null, "0.5", null, "6.6", null, "0.5", null, "5.1", null, "0.4", null, "4.1", null, "0.4", null, "2.9", null, "0.3", null, "1.7", null, "0.2", null, "1.8", null, "0.2", null, "14.3", null, "0.8", null, "4.4", null, "0.4", null, "24.5", null, "1.1", null, "9.6", null, "0.6", null, "41.8", null, "0.7", null, "78.5", null, "1.0", null, "75.5", null, "1.1", null, "70.9", null, "1.1", null, "22.2", null, "1.0", null, "19.7", null, "0.9", null, "15.6", null, "0.7", null, "6.3", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "2.0", null, "-888888888.0", "(X)", "384378", null, "7732", null, "22750", null, "2122", null, "24811", null, "3020", null, "29953", null, "3277", null, "30512", null, "2362", null, "27570", null, "2914", null, "24997", null, "2495", null, "27803", null, "2920", null, "29320", null, "3124", null, "27875", null, "2845", null, "19591", null, "2025", null, "20377", null, "1954", null, "20086", null, "2587", null, "24623", null, "2477", null, "19711", null, "1931", null, "13798", null, "1879", null, "10248", null, "1630", null, "4804", null, "1033", null, "5549", null, "1224", null, "54764", null, "3914", null, "18138", null, "2059", null, "95652", null, "5592", null, "39944", null, "3262", null, "168077", null, "5302", null, "301185", null, "7324", null, "288726", null, "7438", null, "269089", null, "7571", null, "78733", null, "3773", null, "68096", null, "3491", null, "54110", null, "2982", null, "20601", null, "1777", null, "35.5", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.9", null, "0.5", null, "6.5", null, "0.8", null, "7.8", null, "0.8", null, "7.9", null, "0.6", null, "7.2", null, "0.7", null, "6.5", null, "0.6", null, "7.2", null, "0.7", null, "7.6", null, "0.8", null, "7.3", null, "0.7", null, "5.1", null, "0.5", null, "5.3", null, "0.5", null, "5.2", null, "0.7", null, "6.4", null, "0.6", null, "5.1", null, "0.5", null, "3.6", null, "0.5", null, "2.7", null, "0.4", null, "1.2", null, "0.3", null, "1.4", null, "0.3", null, "14.2", null, "1.0", null, "4.7", null, "0.5", null, "24.9", null, "1.3", null, "10.4", null, "0.8", null, "43.7", null, "1.0", null, "78.4", null, "1.2", null, "75.1", null, "1.3", null, "70.0", null, "1.4", null, "20.5", null, "1.0", null, "17.7", null, "0.9", null, "14.1", null, "0.8", null, "5.4", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "373801", null, "7951", null, "21391", null, "2240", null, "25926", null, "3835", null, "27711", null, "3259", null, "25880", null, "2715", null, "22415", null, "2634", null, "21985", null, "2396", null, "28558", null, "3048", null, "24590", null, "2820", null, "25736", null, "2901", null, "19918", null, "2136", null, "18868", null, "1720", null, "21236", null, "2293", null, "25699", null, "2548", null, "19063", null, "2208", null, "17637", null, "1966", null, "11534", null, "1614", null, "7897", null, "1412", null, "7757", null, "1248", null, "53637", null, "4452", null, "15432", null, "1973", null, "90460", null, "5797", null, "32863", null, "2961", null, "149164", null, "5195", null, "294034", null, "6485", null, "283341", null, "6406", null, "268741", null, "5896", null, "89587", null, "4625", null, "81057", null, "4289", null, "63888", null, "3049", null, "27188", null, "1835", null, "37.3", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.7", null, "0.6", null, "6.9", null, "1.0", null, "7.4", null, "0.8", null, "6.9", null, "0.7", null, "6.0", null, "0.7", null, "5.9", null, "0.6", null, "7.6", null, "0.8", null, "6.6", null, "0.7", null, "6.9", null, "0.8", null, "5.3", null, "0.6", null, "5.0", null, "0.5", null, "5.7", null, "0.6", null, "6.9", null, "0.7", null, "5.1", null, "0.6", null, "4.7", null, "0.5", null, "3.1", null, "0.4", null, "2.1", null, "0.4", null, "2.1", null, "0.3", null, "14.3", null, "1.1", null, "4.1", null, "0.5", null, "24.2", null, "1.3", null, "8.8", null, "0.7", null, "39.9", null, "1.0", null, "78.7", null, "1.3", null, "75.8", null, "1.3", null, "71.9", null, "1.4", null, "24.0", null, "1.2", null, "21.7", null, "1.2", null, "17.1", null, "0.8", null, "7.3", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "06", "23"], ["5001900US0624", "Congressional District 24 (119th Congress), California", "756496", null, "6299", null, "40065", null, "2007", null, "38379", null, "3216", null, "43944", null, "3238", null, "65537", null, "2706", null, "75104", null, "2731", null, "46122", null, "2268", null, "46440", null, "2345", null, "46088", null, "3778", null, "44170", null, "3181", null, "39189", null, "2018", null, "38538", null, "2199", null, "41646", null, "3167", null, "42502", null, "3288", null, "42546", null, "2864", null, "38559", null, "2625", null, "29982", null, "2214", null, "19460", null, "2068", null, "18225", null, "1980", null, "82323", null, "3305", null, "28058", null, "1696", null, "150446", null, "4861", null, "112583", null, "3219", null, "323461", null, "5251", null, "625961", null, "5859", null, "606050", null, "5717", null, "547611", null, "5481", null, "191274", null, "5847", null, "173940", null, "4910", null, "148772", null, "3952", null, "67667", null, "2381", null, "37.3", null, "0.6", null, "98.1", null, "1.8", null, "65.4", null, "1.4", null, "32.5", null, "1.0", null, "32.9", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.3", null, "0.3", null, "5.1", null, "0.4", null, "5.8", null, "0.4", null, "8.7", null, "0.3", null, "9.9", null, "0.4", null, "6.1", null, "0.3", null, "6.1", null, "0.3", null, "6.1", null, "0.5", null, "5.8", null, "0.4", null, "5.2", null, "0.3", null, "5.1", null, "0.3", null, "5.5", null, "0.4", null, "5.6", null, "0.4", null, "5.6", null, "0.4", null, "5.1", null, "0.3", null, "4.0", null, "0.3", null, "2.6", null, "0.3", null, "2.4", null, "0.3", null, "10.9", null, "0.4", null, "3.7", null, "0.2", null, "19.9", null, "0.6", null, "14.9", null, "0.4", null, "42.8", null, "0.6", null, "82.7", null, "0.6", null, "80.1", null, "0.6", null, "72.4", null, "0.7", null, "25.3", null, "0.8", null, "23.0", null, "0.7", null, "19.7", null, "0.5", null, "8.9", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.3", null, "-888888888.0", "(X)", "374683", null, "4830", null, "18959", null, "1420", null, "18812", null, "2095", null, "23652", null, "2214", null, "32178", null, "2148", null, "37877", null, "2025", null, "23494", null, "1342", null, "24741", null, "1557", null, "25033", null, "2713", null, "22018", null, "2214", null, "19885", null, "1252", null, "20125", null, "1316", null, "20652", null, "1965", null, "20084", null, "1866", null, "20328", null, "1970", null, "17780", null, "1749", null, "14284", null, "1213", null, "7471", null, "1111", null, "7310", null, "1064", null, "42464", null, "2244", null, "14952", null, "1227", null, "76375", null, "3268", null, "55103", null, "2663", null, "165341", null, "3991", null, "308739", null, "3973", null, "298308", null, "3666", null, "271885", null, "3414", null, "87257", null, "3182", null, "79085", null, "2810", null, "67173", null, "2083", null, "29065", null, "1070", null, "36.5", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.1", null, "0.4", null, "5.0", null, "0.6", null, "6.3", null, "0.6", null, "8.6", null, "0.5", null, "10.1", null, "0.5", null, "6.3", null, "0.4", null, "6.6", null, "0.4", null, "6.7", null, "0.7", null, "5.9", null, "0.6", null, "5.3", null, "0.3", null, "5.4", null, "0.3", null, "5.5", null, "0.5", null, "5.4", null, "0.5", null, "5.4", null, "0.5", null, "4.7", null, "0.5", null, "3.8", null, "0.3", null, "2.0", null, "0.3", null, "2.0", null, "0.3", null, "11.3", null, "0.5", null, "4.0", null, "0.3", null, "20.4", null, "0.7", null, "14.7", null, "0.6", null, "44.1", null, "0.8", null, "82.4", null, "0.7", null, "79.6", null, "0.7", null, "72.6", null, "0.8", null, "23.3", null, "0.9", null, "21.1", null, "0.8", null, "17.9", null, "0.6", null, "7.8", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "381813", null, "4402", null, "21106", null, "1539", null, "19567", null, "2511", null, "20292", null, "2359", null, "33359", null, "2082", null, "37227", null, "1691", null, "22628", null, "1681", null, "21699", null, "1369", null, "21055", null, "2363", null, "22152", null, "2229", null, "19304", null, "1322", null, "18413", null, "1433", null, "20994", null, "1913", null, "22418", null, "2209", null, "22218", null, "1663", null, "20779", null, "1676", null, "15698", null, "1643", null, "11989", null, "1608", null, "10915", null, "1474", null, "39859", null, "1950", null, "13106", null, "1249", null, "74071", null, "3089", null, "57480", null, "1855", null, "158120", null, "3104", null, "317222", null, "3749", null, "307742", null, "3778", null, "275726", null, "3842", null, "104017", null, "3454", null, "94855", null, "2978", null, "81599", null, "2393", null, "38602", null, "1747", null, "38.4", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.4", null, "5.1", null, "0.6", null, "5.3", null, "0.6", null, "8.7", null, "0.5", null, "9.8", null, "0.4", null, "5.9", null, "0.4", null, "5.7", null, "0.4", null, "5.5", null, "0.6", null, "5.8", null, "0.6", null, "5.1", null, "0.3", null, "4.8", null, "0.4", null, "5.5", null, "0.5", null, "5.9", null, "0.6", null, "5.8", null, "0.4", null, "5.4", null, "0.4", null, "4.1", null, "0.4", null, "3.1", null, "0.4", null, "2.9", null, "0.4", null, "10.4", null, "0.5", null, "3.4", null, "0.3", null, "19.4", null, "0.7", null, "15.1", null, "0.5", null, "41.4", null, "0.7", null, "83.1", null, "0.6", null, "80.6", null, "0.7", null, "72.2", null, "0.9", null, "27.2", null, "0.9", null, "24.8", null, "0.8", null, "21.4", null, "0.6", null, "10.1", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "06", "24"], ["5001900US0625", "Congressional District 25 (119th Congress), California", "792416", null, "10515", null, "46426", null, "4353", null, "47640", null, "4610", null, "60916", null, "5015", null, "61602", null, "4951", null, "51416", null, "4089", null, "53268", null, "3869", null, "53286", null, "4092", null, "51763", null, "4176", null, "50344", null, "4335", null, "49239", null, "3872", null, "44454", null, "3781", null, "42341", null, "3949", null, "43498", null, "3905", null, "43053", null, "3146", null, "34724", null, "3035", null, "25622", null, "2607", null, "17555", null, "2235", null, "15269", null, "2025", null, "108556", null, "6283", null, "40487", null, "3449", null, "195469", null, "8630", null, "72531", null, "4779", null, "321679", null, "9426", null, "623921", null, "10106", null, "596947", null, "9784", null, "565313", null, "9302", null, "179721", null, "6885", null, "163454", null, "6663", null, "136223", null, "5422", null, "58446", null, "3551", null, "37.1", null, "1.0", null, "103.3", null, "2.9", null, "72.0", null, "2.7", null, "29.6", null, "1.4", null, "42.4", null, "2.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.9", null, "0.5", null, "6.0", null, "0.6", null, "7.7", null, "0.6", null, "7.8", null, "0.6", null, "6.5", null, "0.5", null, "6.7", null, "0.5", null, "6.7", null, "0.5", null, "6.5", null, "0.5", null, "6.4", null, "0.5", null, "6.2", null, "0.5", null, "5.6", null, "0.5", null, "5.3", null, "0.5", null, "5.5", null, "0.5", null, "5.4", null, "0.4", null, "4.4", null, "0.4", null, "3.2", null, "0.3", null, "2.2", null, "0.3", null, "1.9", null, "0.3", null, "13.7", null, "0.7", null, "5.1", null, "0.4", null, "24.7", null, "1.0", null, "9.2", null, "0.6", null, "40.6", null, "1.0", null, "78.7", null, "1.0", null, "75.3", null, "1.0", null, "71.3", null, "1.0", null, "22.7", null, "0.9", null, "20.6", null, "0.9", null, "17.2", null, "0.7", null, "7.4", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.3", null, "-888888888.0", "(X)", "402649", null, "7929", null, "22736", null, "2962", null, "24440", null, "3657", null, "30850", null, "3852", null, "32559", null, "3284", null, "25425", null, "2592", null, "28515", null, "2564", null, "29372", null, "2850", null, "28542", null, "3302", null, "24821", null, "2810", null, "25465", null, "2743", null, "22601", null, "2673", null, "22772", null, "2672", null, "21350", null, "2434", null, "19376", null, "1899", null, "17624", null, "1919", null, "11389", null, "1723", null, "8016", null, "1434", null, "6796", null, "1487", null, "55290", null, "4293", null, "20940", null, "2273", null, "98966", null, "5810", null, "37044", null, "3036", null, "169234", null, "6533", null, "317914", null, "6893", null, "303683", null, "6617", null, "287090", null, "6259", null, "84551", null, "4378", null, "76761", null, "4158", null, "63201", null, "3197", null, "26201", null, "2150", null, "36.2", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.6", null, "0.7", null, "6.1", null, "0.9", null, "7.7", null, "1.0", null, "8.1", null, "0.8", null, "6.3", null, "0.6", null, "7.1", null, "0.6", null, "7.3", null, "0.7", null, "7.1", null, "0.8", null, "6.2", null, "0.7", null, "6.3", null, "0.7", null, "5.6", null, "0.7", null, "5.7", null, "0.7", null, "5.3", null, "0.6", null, "4.8", null, "0.5", null, "4.4", null, "0.5", null, "2.8", null, "0.4", null, "2.0", null, "0.4", null, "1.7", null, "0.4", null, "13.7", null, "1.0", null, "5.2", null, "0.6", null, "24.6", null, "1.2", null, "9.2", null, "0.7", null, "42.0", null, "1.3", null, "79.0", null, "1.2", null, "75.4", null, "1.2", null, "71.3", null, "1.2", null, "21.0", null, "1.1", null, "19.1", null, "1.0", null, "15.7", null, "0.8", null, "6.5", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "389767", null, "7292", null, "23690", null, "2901", null, "23200", null, "2968", null, "30066", null, "3537", null, "29043", null, "2725", null, "25991", null, "2732", null, "24753", null, "2261", null, "23914", null, "2193", null, "23221", null, "2326", null, "25523", null, "2904", null, "23774", null, "2238", null, "21853", null, "2116", null, "19569", null, "2324", null, "22148", null, "2802", null, "23677", null, "2435", null, "17100", null, "1939", null, "14233", null, "2042", null, "9539", null, "1568", null, "8473", null, "1530", null, "53266", null, "4184", null, "19547", null, "2187", null, "96503", null, "5287", null, "35487", null, "3238", null, "152445", null, "6046", null, "306007", null, "6965", null, "293264", null, "6615", null, "278223", null, "6243", null, "95170", null, "4398", null, "86693", null, "4019", null, "73022", null, "3591", null, "32245", null, "2622", null, "38.2", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.1", null, "0.7", null, "6.0", null, "0.8", null, "7.7", null, "0.9", null, "7.5", null, "0.7", null, "6.7", null, "0.7", null, "6.4", null, "0.6", null, "6.1", null, "0.5", null, "6.0", null, "0.6", null, "6.5", null, "0.7", null, "6.1", null, "0.6", null, "5.6", null, "0.5", null, "5.0", null, "0.6", null, "5.7", null, "0.7", null, "6.1", null, "0.6", null, "4.4", null, "0.5", null, "3.7", null, "0.5", null, "2.4", null, "0.4", null, "2.2", null, "0.4", null, "13.7", null, "1.0", null, "5.0", null, "0.5", null, "24.8", null, "1.2", null, "9.1", null, "0.8", null, "39.1", null, "1.2", null, "78.5", null, "1.2", null, "75.2", null, "1.2", null, "71.4", null, "1.2", null, "24.4", null, "1.1", null, "22.2", null, "1.0", null, "18.7", null, "0.9", null, "8.3", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "06", "25"], ["5001900US0626", "Congressional District 26 (119th Congress), California", "751974", null, "7433", null, "38217", null, "2020", null, "43168", null, "3608", null, "49315", null, "3546", null, "49998", null, "2318", null, "47175", null, "2259", null, "46422", null, "2132", null, "49004", null, "1883", null, "51085", null, "3587", null, "46958", null, "3517", null, "46756", null, "2315", null, "49947", null, "1682", null, "47020", null, "3093", null, "49701", null, "3322", null, "43657", null, "3571", null, "35242", null, "2793", null, "28194", null, "2185", null, "15813", null, "1632", null, "14302", null, "1790", null, "92483", null, "2606", null, "31561", null, "1693", null, "162261", null, "3966", null, "65612", null, "2613", null, "290642", null, "4462", null, "611895", null, "7032", null, "589713", null, "6572", null, "563249", null, "6632", null, "186909", null, "5379", null, "165002", null, "5367", null, "137208", null, "4122", null, "58309", null, "2233", null, "40.2", null, "0.6", null, "99.3", null, "1.6", null, "66.2", null, "1.4", null, "30.3", null, "1.0", null, "35.9", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.1", null, "0.3", null, "5.7", null, "0.5", null, "6.6", null, "0.5", null, "6.6", null, "0.3", null, "6.3", null, "0.3", null, "6.2", null, "0.3", null, "6.5", null, "0.2", null, "6.8", null, "0.5", null, "6.2", null, "0.5", null, "6.2", null, "0.3", null, "6.6", null, "0.2", null, "6.3", null, "0.4", null, "6.6", null, "0.4", null, "5.8", null, "0.5", null, "4.7", null, "0.4", null, "3.7", null, "0.3", null, "2.1", null, "0.2", null, "1.9", null, "0.2", null, "12.3", null, "0.3", null, "4.2", null, "0.2", null, "21.6", null, "0.5", null, "8.7", null, "0.3", null, "38.7", null, "0.5", null, "81.4", null, "0.5", null, "78.4", null, "0.5", null, "74.9", null, "0.5", null, "24.9", null, "0.7", null, "21.9", null, "0.7", null, "18.2", null, "0.5", null, "7.8", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.3", null, "-888888888.0", "(X)", "374698", null, "4811", null, "19648", null, "1232", null, "21397", null, "2540", null, "25413", null, "2438", null, "25107", null, "1609", null, "24137", null, "1323", null, "23951", null, "1140", null, "24696", null, "1156", null, "27624", null, "2426", null, "22372", null, "2407", null, "23399", null, "1310", null, "24569", null, "1118", null, "23139", null, "2142", null, "24824", null, "2315", null, "20784", null, "2144", null, "17056", null, "1764", null, "14368", null, "1404", null, "6365", null, "1188", null, "5849", null, "1029", null, "46810", null, "2184", null, "15283", null, "1271", null, "81741", null, "3137", null, "33961", null, "1670", null, "147887", null, "2490", null, "303193", null, "4123", null, "292957", null, "3914", null, "279139", null, "4022", null, "89246", null, "2979", null, "77722", null, "2874", null, "64422", null, "2294", null, "26582", null, "1146", null, "39.0", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.3", null, "5.7", null, "0.7", null, "6.8", null, "0.6", null, "6.7", null, "0.4", null, "6.4", null, "0.4", null, "6.4", null, "0.3", null, "6.6", null, "0.3", null, "7.4", null, "0.6", null, "6.0", null, "0.6", null, "6.2", null, "0.3", null, "6.6", null, "0.3", null, "6.2", null, "0.6", null, "6.6", null, "0.6", null, "5.5", null, "0.6", null, "4.6", null, "0.5", null, "3.8", null, "0.4", null, "1.7", null, "0.3", null, "1.6", null, "0.3", null, "12.5", null, "0.5", null, "4.1", null, "0.3", null, "21.8", null, "0.7", null, "9.1", null, "0.4", null, "39.5", null, "0.5", null, "80.9", null, "0.7", null, "78.2", null, "0.7", null, "74.5", null, "0.8", null, "23.8", null, "0.8", null, "20.7", null, "0.7", null, "17.2", null, "0.6", null, "7.1", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "377276", null, "4827", null, "18569", null, "1482", null, "21771", null, "2192", null, "23902", null, "2277", null, "24891", null, "1781", null, "23038", null, "1552", null, "22471", null, "1476", null, "24308", null, "1313", null, "23461", null, "2403", null, "24586", null, "2446", null, "23357", null, "1863", null, "25378", null, "1065", null, "23881", null, "2064", null, "24877", null, "2196", null, "22873", null, "2257", null, "18186", null, "1842", null, "13826", null, "1449", null, "9448", null, "1026", null, "8453", null, "1250", null, "45673", null, "1440", null, "16278", null, "1356", null, "80520", null, "2562", null, "31651", null, "1845", null, "142755", null, "3308", null, "308702", null, "4507", null, "296756", null, "4149", null, "284110", null, "4198", null, "97663", null, "3348", null, "87280", null, "3281", null, "72786", null, "2380", null, "31727", null, "1531", null, "41.3", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.9", null, "0.4", null, "5.8", null, "0.6", null, "6.3", null, "0.6", null, "6.6", null, "0.4", null, "6.1", null, "0.4", null, "6.0", null, "0.4", null, "6.4", null, "0.3", null, "6.2", null, "0.6", null, "6.5", null, "0.7", null, "6.2", null, "0.5", null, "6.7", null, "0.3", null, "6.3", null, "0.5", null, "6.6", null, "0.6", null, "6.1", null, "0.6", null, "4.8", null, "0.5", null, "3.7", null, "0.4", null, "2.5", null, "0.3", null, "2.2", null, "0.3", null, "12.1", null, "0.3", null, "4.3", null, "0.3", null, "21.3", null, "0.6", null, "8.4", null, "0.5", null, "37.8", null, "0.7", null, "81.8", null, "0.6", null, "78.7", null, "0.6", null, "75.3", null, "0.7", null, "25.9", null, "0.8", null, "23.1", null, "0.8", null, "19.3", null, "0.6", null, "8.4", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "06", "26"], ["5001900US0627", "Congressional District 27 (119th Congress), California", "748971", null, "11191", null, "43181", null, "4182", null, "49503", null, "4927", null, "60764", null, "5166", null, "58749", null, "4787", null, "43428", null, "3551", null, "41244", null, "4149", null, "47894", null, "4314", null, "55872", null, "5332", null, "52095", null, "4835", null, "44744", null, "3997", null, "43852", null, "3682", null, "51166", null, "4152", null, "48955", null, "4565", null, "39701", null, "3234", null, "28376", null, "2819", null, "18775", null, "2484", null, "11785", null, "1949", null, "8887", null, "1967", null, "110267", null, "7238", null, "38195", null, "3550", null, "191643", null, "9556", null, "63982", null, "4066", null, "299282", null, "7579", null, "583202", null, "11175", null, "557328", null, "11144", null, "529533", null, "11021", null, "156479", null, "7467", null, "136270", null, "7097", null, "107524", null, "6287", null, "39447", null, "3776", null, "37.8", null, "0.9", null, "101.5", null, "3.8", null, "66.5", null, "2.9", null, "23.9", null, "1.6", null, "42.6", null, "2.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.8", null, "0.5", null, "6.6", null, "0.6", null, "8.1", null, "0.7", null, "7.8", null, "0.6", null, "5.8", null, "0.5", null, "5.5", null, "0.5", null, "6.4", null, "0.6", null, "7.5", null, "0.7", null, "7.0", null, "0.6", null, "6.0", null, "0.5", null, "5.9", null, "0.5", null, "6.8", null, "0.5", null, "6.5", null, "0.6", null, "5.3", null, "0.4", null, "3.8", null, "0.4", null, "2.5", null, "0.3", null, "1.6", null, "0.3", null, "1.2", null, "0.3", null, "14.7", null, "0.9", null, "5.1", null, "0.5", null, "25.6", null, "1.2", null, "8.5", null, "0.5", null, "40.0", null, "0.8", null, "77.9", null, "1.1", null, "74.4", null, "1.2", null, "70.7", null, "1.2", null, "20.9", null, "1.0", null, "18.2", null, "1.0", null, "14.4", null, "0.9", null, "5.3", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "2.3", null, "-888888888.0", "(X)", "377211", null, "8400", null, "25270", null, "3200", null, "25240", null, "3687", null, "32046", null, "3622", null, "29407", null, "3466", null, "23500", null, "2455", null, "23321", null, "3220", null, "23737", null, "2899", null, "27892", null, "3109", null, "25678", null, "2666", null, "21066", null, "2675", null, "21539", null, "2749", null, "24850", null, "2972", null, "23035", null, "2911", null, "19296", null, "2135", null, "13985", null, "1716", null, "8702", null, "1382", null, "4788", null, "1221", null, "3859", null, "1132", null, "57286", null, "5151", null, "19548", null, "2717", null, "102104", null, "5992", null, "33359", null, "2784", null, "153535", null, "5640", null, "289151", null, "7834", null, "275107", null, "7318", null, "260725", null, "7078", null, "73665", null, "4616", null, "64793", null, "4182", null, "50630", null, "3477", null, "17349", null, "2048", null, "36.1", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.7", null, "0.8", null, "6.7", null, "0.9", null, "8.5", null, "0.9", null, "7.8", null, "0.9", null, "6.2", null, "0.6", null, "6.2", null, "0.8", null, "6.3", null, "0.8", null, "7.4", null, "0.8", null, "6.8", null, "0.7", null, "5.6", null, "0.7", null, "5.7", null, "0.7", null, "6.6", null, "0.8", null, "6.1", null, "0.7", null, "5.1", null, "0.6", null, "3.7", null, "0.5", null, "2.3", null, "0.4", null, "1.3", null, "0.3", null, "1.0", null, "0.3", null, "15.2", null, "1.3", null, "5.2", null, "0.7", null, "27.1", null, "1.4", null, "8.8", null, "0.7", null, "40.7", null, "1.2", null, "76.7", null, "1.4", null, "72.9", null, "1.4", null, "69.1", null, "1.4", null, "19.5", null, "1.2", null, "17.2", null, "1.1", null, "13.4", null, "0.9", null, "4.6", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "371760", null, "9358", null, "17911", null, "2739", null, "24263", null, "3235", null, "28718", null, "3759", null, "29342", null, "3465", null, "19928", null, "2379", null, "17923", null, "2383", null, "24157", null, "2538", null, "27980", null, "3459", null, "26417", null, "3284", null, "23678", null, "2674", null, "22313", null, "2317", null, "26316", null, "2345", null, "25920", null, "3108", null, "20405", null, "2328", null, "14391", null, "1878", null, "10073", null, "1855", null, "6997", null, "1433", null, "5028", null, "1297", null, "52981", null, "4605", null, "18647", null, "2616", null, "89539", null, "6324", null, "30623", null, "3077", null, "145747", null, "6156", null, "294051", null, "8249", null, "282221", null, "8103", null, "268808", null, "7457", null, "82814", null, "5108", null, "71477", null, "4868", null, "56894", null, "4244", null, "22098", null, "2517", null, "39.3", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.8", null, "0.7", null, "6.5", null, "0.8", null, "7.7", null, "1.0", null, "7.9", null, "0.9", null, "5.4", null, "0.6", null, "4.8", null, "0.6", null, "6.5", null, "0.7", null, "7.5", null, "0.9", null, "7.1", null, "0.9", null, "6.4", null, "0.7", null, "6.0", null, "0.6", null, "7.1", null, "0.6", null, "7.0", null, "0.8", null, "5.5", null, "0.6", null, "3.9", null, "0.5", null, "2.7", null, "0.5", null, "1.9", null, "0.4", null, "1.4", null, "0.4", null, "14.3", null, "1.1", null, "5.0", null, "0.7", null, "24.1", null, "1.5", null, "8.2", null, "0.7", null, "39.2", null, "1.2", null, "79.1", null, "1.5", null, "75.9", null, "1.5", null, "72.3", null, "1.5", null, "22.3", null, "1.4", null, "19.2", null, "1.3", null, "15.3", null, "1.2", null, "5.9", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "06", "27"], ["5001900US0628", "Congressional District 28 (119th Congress), California", "750492", null, "14719", null, "32083", null, "3892", null, "38806", null, "3958", null, "44522", null, "4496", null, "40482", null, "3917", null, "38704", null, "3827", null, "45936", null, "4251", null, "56661", null, "4551", null, "49990", null, "4341", null, "48967", null, "3765", null, "55741", null, "4154", null, "48014", null, "4020", null, "47523", null, "3702", null, "55255", null, "4514", null, "45513", null, "3348", null, "36328", null, "2871", null, "29031", null, "2914", null, "20126", null, "2689", null, "16810", null, "1999", null, "83328", null, "6802", null, "24564", null, "2863", null, "139975", null, "8170", null, "54622", null, "4202", null, "280740", null, "8141", null, "628512", null, "10791", null, "610517", null, "10572", null, "586550", null, "9911", null, "203063", null, "6953", null, "178468", null, "6651", null, "147808", null, "6045", null, "65967", null, "4588", null, "42.7", null, "0.7", null, "95.4", null, "3.3", null, "62.2", null, "2.4", null, "31.9", null, "1.8", null, "30.3", null, "1.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.3", null, "0.5", null, "5.2", null, "0.5", null, "5.9", null, "0.6", null, "5.4", null, "0.5", null, "5.2", null, "0.5", null, "6.1", null, "0.6", null, "7.5", null, "0.6", null, "6.7", null, "0.6", null, "6.5", null, "0.5", null, "7.4", null, "0.5", null, "6.4", null, "0.5", null, "6.3", null, "0.5", null, "7.4", null, "0.6", null, "6.1", null, "0.5", null, "4.8", null, "0.4", null, "3.9", null, "0.4", null, "2.7", null, "0.4", null, "2.2", null, "0.3", null, "11.1", null, "0.8", null, "3.3", null, "0.4", null, "18.7", null, "0.9", null, "7.3", null, "0.5", null, "37.4", null, "0.9", null, "83.7", null, "0.8", null, "81.3", null, "0.9", null, "78.2", null, "0.9", null, "27.1", null, "1.0", null, "23.8", null, "1.0", null, "19.7", null, "0.9", null, "8.8", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.6", null, "-888888888.0", "(X)", "366453", null, "10615", null, "16696", null, "2709", null, "20548", null, "2849", null, "24271", null, "3129", null, "21805", null, "3108", null, "20711", null, "2519", null, "22357", null, "3167", null, "26054", null, "2668", null, "25336", null, "2724", null, "23650", null, "2436", null, "26604", null, "2569", null, "23278", null, "2548", null, "23981", null, "2514", null, "27034", null, "2866", null, "21032", null, "1877", null, "15305", null, "1650", null, "12368", null, "1567", null, "8550", null, "1438", null, "6873", null, "1092", null, "44819", null, "4670", null, "13001", null, "2272", null, "74516", null, "6026", null, "29515", null, "2980", null, "139913", null, "6048", null, "301224", null, "7967", null, "291937", null, "7649", null, "278676", null, "7197", null, "91162", null, "3495", null, "79476", null, "3243", null, "64128", null, "2880", null, "27791", null, "2222", null, "40.9", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.6", null, "0.7", null, "5.6", null, "0.7", null, "6.6", null, "0.8", null, "6.0", null, "0.8", null, "5.7", null, "0.7", null, "6.1", null, "0.8", null, "7.1", null, "0.7", null, "6.9", null, "0.7", null, "6.5", null, "0.7", null, "7.3", null, "0.7", null, "6.4", null, "0.7", null, "6.5", null, "0.6", null, "7.4", null, "0.7", null, "5.7", null, "0.5", null, "4.2", null, "0.5", null, "3.4", null, "0.4", null, "2.3", null, "0.4", null, "1.9", null, "0.3", null, "12.2", null, "1.1", null, "3.5", null, "0.6", null, "20.3", null, "1.3", null, "8.1", null, "0.8", null, "38.2", null, "1.1", null, "82.2", null, "1.2", null, "79.7", null, "1.3", null, "76.0", null, "1.3", null, "24.9", null, "1.1", null, "21.7", null, "1.0", null, "17.5", null, "1.0", null, "7.6", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "384039", null, "8833", null, "15387", null, "2162", null, "18258", null, "2618", null, "20251", null, "2628", null, "18677", null, "2448", null, "17993", null, "2437", null, "23579", null, "2819", null, "30607", null, "3080", null, "24654", null, "2516", null, "25317", null, "2384", null, "29137", null, "2711", null, "24736", null, "2310", null, "23542", null, "2330", null, "28221", null, "2878", null, "24481", null, "2247", null, "21023", null, "2191", null, "16663", null, "2063", null, "11576", null, "1942", null, "9937", null, "1736", null, "38509", null, "3638", null, "11563", null, "1841", null, "65459", null, "4298", null, "25107", null, "2774", null, "140827", null, "5674", null, "327288", null, "7479", null, "318580", null, "7347", null, "307874", null, "7091", null, "111901", null, "4872", null, "98992", null, "4664", null, "83680", null, "4280", null, "38176", null, "3196", null, "44.4", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.0", null, "0.6", null, "4.8", null, "0.7", null, "5.3", null, "0.6", null, "4.9", null, "0.6", null, "4.7", null, "0.6", null, "6.1", null, "0.7", null, "8.0", null, "0.8", null, "6.4", null, "0.7", null, "6.6", null, "0.6", null, "7.6", null, "0.7", null, "6.4", null, "0.6", null, "6.1", null, "0.6", null, "7.3", null, "0.7", null, "6.4", null, "0.6", null, "5.5", null, "0.6", null, "4.3", null, "0.5", null, "3.0", null, "0.5", null, "2.6", null, "0.5", null, "10.0", null, "0.9", null, "3.0", null, "0.5", null, "17.0", null, "1.0", null, "6.5", null, "0.7", null, "36.7", null, "1.2", null, "85.2", null, "0.9", null, "83.0", null, "1.0", null, "80.2", null, "1.0", null, "29.1", null, "1.3", null, "25.8", null, "1.3", null, "21.8", null, "1.2", null, "9.9", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "06", "28"], ["5001900US0629", "Congressional District 29 (119th Congress), California", "724033", null, "20192", null, "35675", null, "3657", null, "36466", null, "4309", null, "45288", null, "4991", null, "45284", null, "4122", null, "48840", null, "3833", null, "60800", null, "4602", null, "61964", null, "4874", null, "53576", null, "4318", null, "49575", null, "4906", null, "50260", null, "4119", null, "51298", null, "3959", null, "45494", null, "3461", null, "41934", null, "3781", null, "35888", null, "3142", null, "23861", null, "2663", null, "18481", null, "2363", null, "9483", null, "1287", null, "9866", null, "1420", null, "81754", null, "7329", null, "28541", null, "2877", null, "145970", null, "9422", null, "65583", null, "4310", null, "320039", null, "11510", null, "597591", null, "16111", null, "578063", null, "15683", null, "552133", null, "15155", null, "139513", null, "5639", null, "119293", null, "4817", null, "97579", null, "4512", null, "37830", null, "2895", null, "37.7", null, "0.7", null, "100.9", null, "3.0", null, "50.7", null, "2.0", null, "20.3", null, "1.1", null, "30.4", null, "1.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.9", null, "0.5", null, "5.0", null, "0.5", null, "6.3", null, "0.7", null, "6.3", null, "0.5", null, "6.7", null, "0.5", null, "8.4", null, "0.6", null, "8.6", null, "0.6", null, "7.4", null, "0.6", null, "6.8", null, "0.6", null, "6.9", null, "0.5", null, "7.1", null, "0.5", null, "6.3", null, "0.5", null, "5.8", null, "0.5", null, "5.0", null, "0.4", null, "3.3", null, "0.4", null, "2.6", null, "0.3", null, "1.3", null, "0.2", null, "1.4", null, "0.2", null, "11.3", null, "0.9", null, "3.9", null, "0.4", null, "20.2", null, "1.0", null, "9.1", null, "0.5", null, "44.2", null, "0.8", null, "82.5", null, "1.0", null, "79.8", null, "1.0", null, "76.3", null, "1.1", null, "19.3", null, "0.9", null, "16.5", null, "0.8", null, "13.5", null, "0.7", null, "5.2", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.4", null, "-888888888.0", "(X)", "363649", null, "11646", null, "18259", null, "2575", null, "19305", null, "3054", null, "24916", null, "3444", null, "21473", null, "2472", null, "24190", null, "2748", null, "30993", null, "3366", null, "33352", null, "3196", null, "27329", null, "2762", null, "24256", null, "2494", null, "26486", null, "2979", null, "25651", null, "2601", null, "22212", null, "2137", null, "22277", null, "2251", null, "17647", null, "2039", null, "11074", null, "1746", null, "6840", null, "1212", null, "3590", null, "788", null, "3799", null, "911", null, "44221", null, "4976", null, "13558", null, "1983", null, "76038", null, "6006", null, "32105", null, "3119", null, "161593", null, "6677", null, "297886", null, "9470", null, "287611", null, "9295", null, "275774", null, "8807", null, "65227", null, "3266", null, "53944", null, "3026", null, "42950", null, "2719", null, "14229", null, "1683", null, "36.8", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.0", null, "0.7", null, "5.3", null, "0.8", null, "6.9", null, "0.9", null, "5.9", null, "0.7", null, "6.7", null, "0.7", null, "8.5", null, "0.9", null, "9.2", null, "0.8", null, "7.5", null, "0.7", null, "6.7", null, "0.7", null, "7.3", null, "0.8", null, "7.1", null, "0.7", null, "6.1", null, "0.6", null, "6.1", null, "0.6", null, "4.9", null, "0.6", null, "3.0", null, "0.5", null, "1.9", null, "0.3", null, "1.0", null, "0.2", null, "1.0", null, "0.3", null, "12.2", null, "1.2", null, "3.7", null, "0.5", null, "20.9", null, "1.4", null, "8.8", null, "0.8", null, "44.4", null, "1.1", null, "81.9", null, "1.3", null, "79.1", null, "1.4", null, "75.8", null, "1.3", null, "17.9", null, "1.0", null, "14.8", null, "0.9", null, "11.8", null, "0.8", null, "3.9", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "360384", null, "11172", null, "17416", null, "2357", null, "17161", null, "2790", null, "20372", null, "3092", null, "23811", null, "3158", null, "24650", null, "2835", null, "29807", null, "3000", null, "28612", null, "2693", null, "26247", null, "2389", null, "25319", null, "3276", null, "23774", null, "2043", null, "25647", null, "2493", null, "23282", null, "2634", null, "19657", null, "2696", null, "18241", null, "2164", null, "12787", null, "1640", null, "11641", null, "1844", null, "5893", null, "1082", null, "6067", null, "1089", null, "37533", null, "4443", null, "14983", null, "2189", null, "69932", null, "5435", null, "33478", null, "3230", null, "158446", null, "7305", null, "299705", null, "9079", null, "290452", null, "8552", null, "276359", null, "8227", null, "74286", null, "3925", null, "65349", null, "3309", null, "54629", null, "3188", null, "23601", null, "2134", null, "38.7", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.8", null, "0.6", null, "4.8", null, "0.7", null, "5.7", null, "0.8", null, "6.6", null, "0.8", null, "6.8", null, "0.7", null, "8.3", null, "0.8", null, "7.9", null, "0.7", null, "7.3", null, "0.7", null, "7.0", null, "0.9", null, "6.6", null, "0.5", null, "7.1", null, "0.7", null, "6.5", null, "0.7", null, "5.5", null, "0.8", null, "5.1", null, "0.6", null, "3.5", null, "0.5", null, "3.2", null, "0.5", null, "1.6", null, "0.3", null, "1.7", null, "0.3", null, "10.4", null, "1.1", null, "4.2", null, "0.6", null, "19.4", null, "1.2", null, "9.3", null, "0.8", null, "44.0", null, "1.3", null, "83.2", null, "1.2", null, "80.6", null, "1.2", null, "76.7", null, "1.3", null, "20.6", null, "1.1", null, "18.1", null, "0.9", null, "15.2", null, "0.9", null, "6.5", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "06", "29"], ["5001900US0630", "Congressional District 30 (119th Congress), California", "741397", null, "15370", null, "28350", null, "3691", null, "29220", null, "3746", null, "27575", null, "3114", null, "30608", null, "3447", null, "37634", null, "3801", null, "67142", null, "4816", null, "76929", null, "6180", null, "69771", null, "5265", null, "59862", null, "5393", null, "46114", null, "3903", null, "47837", null, "4321", null, "45291", null, "4107", null, "45786", null, "4170", null, "40494", null, "3817", null, "31319", null, "3235", null, "24285", null, "3027", null, "17396", null, "2635", null, "15784", null, "2364", null, "56795", null, "4839", null, "19136", null, "2654", null, "104281", null, "7222", null, "49106", null, "4400", null, "341946", null, "11654", null, "649642", null, "13651", null, "637116", null, "13566", null, "619767", null, "12992", null, "175064", null, "8896", null, "156817", null, "8889", null, "129278", null, "7399", null, "57465", null, "5222", null, "40.3", null, "0.7", null, "93.8", null, "3.0", null, "46.0", null, "2.0", null, "25.5", null, "1.7", null, "20.5", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "3.8", null, "0.5", null, "3.9", null, "0.5", null, "3.7", null, "0.4", null, "4.1", null, "0.4", null, "5.1", null, "0.5", null, "9.1", null, "0.6", null, "10.4", null, "0.8", null, "9.4", null, "0.7", null, "8.1", null, "0.7", null, "6.2", null, "0.5", null, "6.5", null, "0.6", null, "6.1", null, "0.5", null, "6.2", null, "0.6", null, "5.5", null, "0.5", null, "4.2", null, "0.4", null, "3.3", null, "0.4", null, "2.3", null, "0.4", null, "2.1", null, "0.3", null, "7.7", null, "0.6", null, "2.6", null, "0.4", null, "14.1", null, "0.9", null, "6.6", null, "0.6", null, "46.1", null, "1.1", null, "87.6", null, "0.8", null, "85.9", null, "0.9", null, "83.6", null, "0.9", null, "23.6", null, "1.2", null, "21.2", null, "1.2", null, "17.4", null, "1.0", null, "7.8", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "2.1", null, "-888888888.0", "(X)", "358842", null, "9835", null, "13997", null, "2433", null, "14522", null, "2507", null, "11089", null, "1728", null, "16592", null, "2858", null, "18235", null, "2195", null, "30040", null, "3435", null, "38940", null, "3995", null, "36153", null, "3673", null, "31884", null, "3781", null, "23487", null, "2631", null, "24961", null, "2457", null, "20117", null, "2610", null, "22579", null, "2701", null, "18933", null, "2186", null, "12809", null, "1624", null, "11586", null, "2086", null, "6662", null, "1345", null, "6256", null, "1516", null, "25611", null, "3055", null, "9796", null, "1931", null, "49404", null, "4467", null, "25031", null, "2523", null, "171844", null, "7276", null, "316914", null, "8755", null, "309438", null, "8412", null, "299193", null, "8144", null, "78825", null, "4912", null, "69345", null, "4548", null, "56246", null, "3876", null, "24504", null, "3146", null, "40.0", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "3.9", null, "0.7", null, "4.0", null, "0.7", null, "3.1", null, "0.5", null, "4.6", null, "0.8", null, "5.1", null, "0.6", null, "8.4", null, "0.9", null, "10.9", null, "1.1", null, "10.1", null, "1.0", null, "8.9", null, "1.0", null, "6.5", null, "0.7", null, "7.0", null, "0.7", null, "5.6", null, "0.7", null, "6.3", null, "0.8", null, "5.3", null, "0.6", null, "3.6", null, "0.5", null, "3.2", null, "0.6", null, "1.9", null, "0.4", null, "1.7", null, "0.4", null, "7.1", null, "0.8", null, "2.7", null, "0.5", null, "13.8", null, "1.1", null, "7.0", null, "0.7", null, "47.9", null, "1.4", null, "88.3", null, "1.0", null, "86.2", null, "1.1", null, "83.4", null, "1.2", null, "22.0", null, "1.3", null, "19.3", null, "1.2", null, "15.7", null, "1.0", null, "6.8", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "382555", null, "9573", null, "14353", null, "2240", null, "14698", null, "2357", null, "16486", null, "2703", null, "14016", null, "2255", null, "19399", null, "2652", null, "37102", null, "3192", null, "37989", null, "3790", null, "33618", null, "3330", null, "27978", null, "3043", null, "22627", null, "2434", null, "22876", null, "2672", null, "25174", null, "2868", null, "23207", null, "3002", null, "21561", null, "2664", null, "18510", null, "2371", null, "12699", null, "1956", null, "10734", null, "2065", null, "9528", null, "1379", null, "31184", null, "3569", null, "9340", null, "1611", null, "54877", null, "4223", null, "24075", null, "3178", null, "170102", null, "7657", null, "332728", null, "9083", null, "327678", null, "9072", null, "320574", null, "8905", null, "96239", null, "5530", null, "87472", null, "5552", null, "73032", null, "4668", null, "32961", null, "3064", null, "40.6", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "3.8", null, "0.6", null, "3.8", null, "0.6", null, "4.3", null, "0.7", null, "3.7", null, "0.6", null, "5.1", null, "0.7", null, "9.7", null, "0.8", null, "9.9", null, "0.9", null, "8.8", null, "0.9", null, "7.3", null, "0.7", null, "5.9", null, "0.6", null, "6.0", null, "0.7", null, "6.6", null, "0.7", null, "6.1", null, "0.8", null, "5.6", null, "0.7", null, "4.8", null, "0.6", null, "3.3", null, "0.5", null, "2.8", null, "0.5", null, "2.5", null, "0.4", null, "8.2", null, "0.9", null, "2.4", null, "0.4", null, "14.3", null, "1.0", null, "6.3", null, "0.8", null, "44.5", null, "1.4", null, "87.0", null, "1.0", null, "85.7", null, "1.0", null, "83.8", null, "1.2", null, "25.2", null, "1.4", null, "22.9", null, "1.4", null, "19.1", null, "1.2", null, "8.6", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "06", "30"], ["5001900US0631", "Congressional District 31 (119th Congress), California", "724696", null, "12003", null, "37158", null, "4081", null, "38749", null, "4228", null, "44286", null, "4405", null, "46823", null, "3603", null, "41179", null, "3822", null, "45937", null, "4394", null, "56993", null, "4286", null, "46251", null, "4461", null, "52361", null, "4547", null, "41455", null, "4003", null, "47935", null, "4398", null, "45318", null, "3956", null, "49629", null, "4153", null, "41846", null, "3354", null, "33181", null, "3125", null, "25900", null, "2607", null, "15747", null, "1843", null, "13948", null, "1903", null, "83035", null, "6677", null, "30136", null, "3372", null, "150329", null, "8534", null, "57866", null, "4645", null, "289544", null, "8375", null, "595455", null, "10238", null, "574367", null, "10206", null, "548291", null, "10105", null, "180251", null, "7864", null, "159818", null, "7591", null, "130622", null, "6923", null, "55595", null, "4006", null, "40.4", null, "0.8", null, "101.9", null, "2.7", null, "63.3", null, "2.7", null, "29.4", null, "1.8", null, "33.9", null, "2.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.1", null, "0.5", null, "5.3", null, "0.6", null, "6.1", null, "0.6", null, "6.5", null, "0.5", null, "5.7", null, "0.5", null, "6.3", null, "0.6", null, "7.9", null, "0.6", null, "6.4", null, "0.6", null, "7.2", null, "0.6", null, "5.7", null, "0.6", null, "6.6", null, "0.6", null, "6.3", null, "0.5", null, "6.8", null, "0.6", null, "5.8", null, "0.5", null, "4.6", null, "0.4", null, "3.6", null, "0.4", null, "2.2", null, "0.2", null, "1.9", null, "0.3", null, "11.5", null, "0.9", null, "4.2", null, "0.5", null, "20.7", null, "1.0", null, "8.0", null, "0.6", null, "40.0", null, "1.0", null, "82.2", null, "1.1", null, "79.3", null, "1.0", null, "75.7", null, "1.0", null, "24.9", null, "1.1", null, "22.1", null, "1.1", null, "18.0", null, "1.0", null, "7.7", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "2.2", null, "-888888888.0", "(X)", "365737", null, "7282", null, "20087", null, "3213", null, "21079", null, "2770", null, "24988", null, "2863", null, "24679", null, "2733", null, "22516", null, "2610", null, "21592", null, "2638", null, "29154", null, "2998", null, "23866", null, "2758", null, "27872", null, "3167", null, "20937", null, "2416", null, "23057", null, "2604", null, "21057", null, "2317", null, "26615", null, "3191", null, "19608", null, "2177", null, "15549", null, "1963", null, "11151", null, "1654", null, "6526", null, "1155", null, "5404", null, "959", null, "46067", null, "4004", null, "15872", null, "2473", null, "82026", null, "5398", null, "31323", null, "3061", null, "149679", null, "4744", null, "294714", null, "5796", null, "283711", null, "5664", null, "269564", null, "5378", null, "84853", null, "4622", null, "73402", null, "4001", null, "58238", null, "3441", null, "23081", null, "2076", null, "38.9", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.8", null, "5.8", null, "0.7", null, "6.8", null, "0.7", null, "6.7", null, "0.7", null, "6.2", null, "0.7", null, "5.9", null, "0.7", null, "8.0", null, "0.8", null, "6.5", null, "0.7", null, "7.6", null, "0.9", null, "5.7", null, "0.6", null, "6.3", null, "0.7", null, "5.8", null, "0.6", null, "7.3", null, "0.9", null, "5.4", null, "0.6", null, "4.3", null, "0.5", null, "3.0", null, "0.5", null, "1.8", null, "0.3", null, "1.5", null, "0.3", null, "12.6", null, "1.0", null, "4.3", null, "0.7", null, "22.4", null, "1.2", null, "8.6", null, "0.8", null, "40.9", null, "1.1", null, "80.6", null, "1.3", null, "77.6", null, "1.2", null, "73.7", null, "1.2", null, "23.2", null, "1.3", null, "20.1", null, "1.1", null, "15.9", null, "1.0", null, "6.3", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "358959", null, "8044", null, "17071", null, "2543", null, "17670", null, "2559", null, "19298", null, "2809", null, "22144", null, "2403", null, "18663", null, "2377", null, "24345", null, "2743", null, "27839", null, "3008", null, "22385", null, "2774", null, "24489", null, "2379", null, "20518", null, "2348", null, "24878", null, "2656", null, "24261", null, "2778", null, "23014", null, "2023", null, "22238", null, "2368", null, "17632", null, "2067", null, "14749", null, "2018", null, "9221", null, "1511", null, "8544", null, "1552", null, "36968", null, "4074", null, "14264", null, "2343", null, "68303", null, "5311", null, "26543", null, "3024", null, "139865", null, "6189", null, "300741", null, "6987", null, "290656", null, "6782", null, "278727", null, "7019", null, "95398", null, "4734", null, "86416", null, "4686", null, "72384", null, "4547", null, "32514", null, "2772", null, "41.7", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.8", null, "0.7", null, "4.9", null, "0.7", null, "5.4", null, "0.8", null, "6.2", null, "0.6", null, "5.2", null, "0.6", null, "6.8", null, "0.7", null, "7.8", null, "0.8", null, "6.2", null, "0.8", null, "6.8", null, "0.6", null, "5.7", null, "0.7", null, "6.9", null, "0.7", null, "6.8", null, "0.8", null, "6.4", null, "0.6", null, "6.2", null, "0.7", null, "4.9", null, "0.6", null, "4.1", null, "0.6", null, "2.6", null, "0.4", null, "2.4", null, "0.4", null, "10.3", null, "1.1", null, "4.0", null, "0.6", null, "19.0", null, "1.3", null, "7.4", null, "0.8", null, "39.0", null, "1.4", null, "83.8", null, "1.3", null, "81.0", null, "1.3", null, "77.6", null, "1.3", null, "26.6", null, "1.3", null, "24.1", null, "1.4", null, "20.2", null, "1.3", null, "9.1", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "06", "31"], ["5001900US0632", "Congressional District 32 (119th Congress), California", "763344", null, "20807", null, "34273", null, "4764", null, "40975", null, "5211", null, "41710", null, "4603", null, "41599", null, "4213", null, "43095", null, "4147", null, "52809", null, "4488", null, "59091", null, "4539", null, "56980", null, "4876", null, "54648", null, "5048", null, "51558", null, "4368", null, "51971", null, "4459", null, "48153", null, "4829", null, "44633", null, "4063", null, "44630", null, "3192", null, "34215", null, "2710", null, "24197", null, "2664", null, "18814", null, "2332", null, "19993", null, "2625", null, "82685", null, "7071", null, "24991", null, "3144", null, "141949", null, "10186", null, "59703", null, "4997", null, "308222", null, "11503", null, "639385", null, "16348", null, "621395", null, "15682", null, "595976", null, "15153", null, "186482", null, "7802", null, "165857", null, "7052", null, "141849", null, "6308", null, "63004", null, "4730", null, "41.0", null, "0.7", null, "98.4", null, "3.1", null, "59.2", null, "3.1", null, "29.6", null, "1.7", null, "29.6", null, "2.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.5", null, "0.6", null, "5.4", null, "0.6", null, "5.5", null, "0.6", null, "5.4", null, "0.5", null, "5.6", null, "0.6", null, "6.9", null, "0.6", null, "7.7", null, "0.6", null, "7.5", null, "0.6", null, "7.2", null, "0.6", null, "6.8", null, "0.5", null, "6.8", null, "0.6", null, "6.3", null, "0.6", null, "5.8", null, "0.5", null, "5.8", null, "0.4", null, "4.5", null, "0.3", null, "3.2", null, "0.3", null, "2.5", null, "0.3", null, "2.6", null, "0.3", null, "10.8", null, "0.8", null, "3.3", null, "0.4", null, "18.6", null, "1.1", null, "7.8", null, "0.6", null, "40.4", null, "1.1", null, "83.8", null, "1.0", null, "81.4", null, "1.1", null, "78.1", null, "1.0", null, "24.4", null, "1.0", null, "21.7", null, "0.9", null, "18.6", null, "0.8", null, "8.3", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.2", null, "-888888888.0", "(X)", "378576", null, "12652", null, "16575", null, "2690", null, "21640", null, "3329", null, "23304", null, "3278", null, "21228", null, "2990", null, "21371", null, "2802", null, "25869", null, "3071", null, "29261", null, "3117", null, "29713", null, "3112", null, "27809", null, "3545", null, "25365", null, "2820", null, "26118", null, "2932", null, "24536", null, "2931", null, "23024", null, "2828", null, "21009", null, "2189", null, "16304", null, "1788", null, "9301", null, "1384", null, "7364", null, "1287", null, "8785", null, "1417", null, "44944", null, "4655", null, "13871", null, "2321", null, "75390", null, "6582", null, "28728", null, "3350", null, "155251", null, "7563", null, "312955", null, "10685", null, "303186", null, "10290", null, "291331", null, "10054", null, "85787", null, "4309", null, "75341", null, "4046", null, "62763", null, "3616", null, "25450", null, "2527", null, "40.1", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.4", null, "0.7", null, "5.7", null, "0.8", null, "6.2", null, "0.8", null, "5.6", null, "0.7", null, "5.6", null, "0.7", null, "6.8", null, "0.7", null, "7.7", null, "0.8", null, "7.8", null, "0.8", null, "7.3", null, "0.8", null, "6.7", null, "0.7", null, "6.9", null, "0.8", null, "6.5", null, "0.8", null, "6.1", null, "0.8", null, "5.5", null, "0.6", null, "4.3", null, "0.4", null, "2.5", null, "0.4", null, "1.9", null, "0.3", null, "2.3", null, "0.4", null, "11.9", null, "1.1", null, "3.7", null, "0.6", null, "19.9", null, "1.5", null, "7.6", null, "0.9", null, "41.0", null, "1.5", null, "82.7", null, "1.4", null, "80.1", null, "1.5", null, "77.0", null, "1.5", null, "22.7", null, "1.1", null, "19.9", null, "1.1", null, "16.6", null, "0.9", null, "6.7", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "384768", null, "11346", null, "17698", null, "3314", null, "19335", null, "2855", null, "18406", null, "2866", null, "20371", null, "2032", null, "21724", null, "2548", null, "26940", null, "2850", null, "29830", null, "2993", null, "27267", null, "3142", null, "26839", null, "2922", null, "26193", null, "2672", null, "25853", null, "3056", null, "23617", null, "2864", null, "21609", null, "2333", null, "23621", null, "2192", null, "17911", null, "1873", null, "14896", null, "1783", null, "11450", null, "1730", null, "11208", null, "1850", null, "37741", null, "4302", null, "11120", null, "1492", null, "66559", null, "5796", null, "30975", null, "3127", null, "152971", null, "6515", null, "326430", null, "8936", null, "318209", null, "8417", null, "304645", null, "8335", null, "100695", null, "4645", null, "90516", null, "4312", null, "79086", null, "3841", null, "37554", null, "2894", null, "41.8", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.6", null, "0.8", null, "5.0", null, "0.7", null, "4.8", null, "0.7", null, "5.3", null, "0.5", null, "5.6", null, "0.7", null, "7.0", null, "0.7", null, "7.8", null, "0.7", null, "7.1", null, "0.8", null, "7.0", null, "0.7", null, "6.8", null, "0.7", null, "6.7", null, "0.8", null, "6.1", null, "0.7", null, "5.6", null, "0.6", null, "6.1", null, "0.6", null, "4.7", null, "0.5", null, "3.9", null, "0.5", null, "3.0", null, "0.5", null, "2.9", null, "0.5", null, "9.8", null, "1.0", null, "2.9", null, "0.4", null, "17.3", null, "1.2", null, "8.1", null, "0.8", null, "39.8", null, "1.4", null, "84.8", null, "1.2", null, "82.7", null, "1.2", null, "79.2", null, "1.2", null, "26.2", null, "1.2", null, "23.5", null, "1.1", null, "20.6", null, "1.0", null, "9.8", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "06", "32"], ["5001900US0633", "Congressional District 33 (119th Congress), California", "783103", null, "17543", null, "49205", null, "3726", null, "58956", null, "4920", null, "60756", null, "4838", null, "61053", null, "4393", null, "57777", null, "4363", null, "55989", null, "4127", null, "63693", null, "4436", null, "58355", null, "5189", null, "51936", null, "5066", null, "53894", null, "4031", null, "47422", null, "4227", null, "39893", null, "3648", null, "37255", null, "3806", null, "31452", null, "2750", null, "21973", null, "2463", null, "15127", null, "1917", null, "9686", null, "1533", null, "8681", null, "1420", null, "119712", null, "6518", null, "40014", null, "3318", null, "208931", null, "8651", null, "78816", null, "5185", null, "348803", null, "12146", null, "602984", null, "14534", null, "574172", null, "13512", null, "541333", null, "12382", null, "124174", null, "6322", null, "108982", null, "5542", null, "86919", null, "4562", null, "33494", null, "2364", null, "33.9", null, "0.6", null, "100.8", null, "2.9", null, "60.7", null, "2.3", null, "17.8", null, "1.1", null, "42.9", null, "1.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.3", null, "0.5", null, "7.5", null, "0.6", null, "7.8", null, "0.6", null, "7.8", null, "0.5", null, "7.4", null, "0.5", null, "7.1", null, "0.5", null, "8.1", null, "0.5", null, "7.5", null, "0.6", null, "6.6", null, "0.6", null, "6.9", null, "0.5", null, "6.1", null, "0.5", null, "5.1", null, "0.5", null, "4.8", null, "0.5", null, "4.0", null, "0.3", null, "2.8", null, "0.3", null, "1.9", null, "0.2", null, "1.2", null, "0.2", null, "1.1", null, "0.2", null, "15.3", null, "0.7", null, "5.1", null, "0.4", null, "26.7", null, "0.8", null, "10.1", null, "0.6", null, "44.5", null, "0.9", null, "77.0", null, "0.8", null, "73.3", null, "0.8", null, "69.1", null, "0.8", null, "15.9", null, "0.8", null, "13.9", null, "0.7", null, "11.1", null, "0.6", null, "4.3", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "2.3", null, "-888888888.0", "(X)", "393137", null, "10379", null, "27449", null, "2682", null, "32213", null, "3454", null, "29112", null, "3033", null, "31905", null, "2409", null, "28932", null, "2873", null, "28997", null, "3085", null, "33121", null, "2656", null, "28916", null, "3135", null, "26382", null, "3235", null, "27402", null, "2286", null, "23313", null, "2462", null, "19929", null, "2264", null, "17534", null, "2193", null, "14643", null, "1776", null, "9571", null, "1462", null, "6895", null, "1221", null, "3642", null, "808", null, "3181", null, "997", null, "61325", null, "3992", null, "20941", null, "2059", null, "109715", null, "5514", null, "39896", null, "3552", null, "178253", null, "7581", null, "298545", null, "8981", null, "283422", null, "8619", null, "267608", null, "7955", null, "55466", null, "3458", null, "48340", null, "3145", null, "37932", null, "2612", null, "13718", null, "1450", null, "32.6", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "7.0", null, "0.7", null, "8.2", null, "0.8", null, "7.4", null, "0.8", null, "8.1", null, "0.6", null, "7.4", null, "0.7", null, "7.4", null, "0.7", null, "8.4", null, "0.7", null, "7.4", null, "0.8", null, "6.7", null, "0.8", null, "7.0", null, "0.6", null, "5.9", null, "0.6", null, "5.1", null, "0.6", null, "4.5", null, "0.6", null, "3.7", null, "0.4", null, "2.4", null, "0.4", null, "1.8", null, "0.3", null, "0.9", null, "0.2", null, "0.8", null, "0.3", null, "15.6", null, "0.9", null, "5.3", null, "0.5", null, "27.9", null, "1.2", null, "10.1", null, "0.8", null, "45.3", null, "1.2", null, "75.9", null, "1.2", null, "72.1", null, "1.2", null, "68.1", null, "1.1", null, "14.1", null, "0.9", null, "12.3", null, "0.8", null, "9.6", null, "0.7", null, "3.5", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "389966", null, "10359", null, "21756", null, "2474", null, "26743", null, "3385", null, "31644", null, "3378", null, "29148", null, "3099", null, "28845", null, "2778", null, "26992", null, "2253", null, "30572", null, "3006", null, "29439", null, "3184", null, "25554", null, "3024", null, "26492", null, "2655", null, "24109", null, "2577", null, "19964", null, "2273", null, "19721", null, "2386", null, "16809", null, "1759", null, "12402", null, "1769", null, "8232", null, "1237", null, "6044", null, "1294", null, "5500", null, "1006", null, "58387", null, "4354", null, "19073", null, "2343", null, "99216", null, "5801", null, "38920", null, "3105", null, "170550", null, "6475", null, "304439", null, "7613", null, "290750", null, "6990", null, "273725", null, "6805", null, "68708", null, "3745", null, "60642", null, "3333", null, "48987", null, "2703", null, "19776", null, "1621", null, "34.9", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.6", null, "0.6", null, "6.9", null, "0.8", null, "8.1", null, "0.8", null, "7.5", null, "0.7", null, "7.4", null, "0.7", null, "6.9", null, "0.6", null, "7.8", null, "0.7", null, "7.5", null, "0.8", null, "6.6", null, "0.8", null, "6.8", null, "0.7", null, "6.2", null, "0.7", null, "5.1", null, "0.6", null, "5.1", null, "0.6", null, "4.3", null, "0.5", null, "3.2", null, "0.5", null, "2.1", null, "0.3", null, "1.5", null, "0.3", null, "1.4", null, "0.3", null, "15.0", null, "0.9", null, "4.9", null, "0.6", null, "25.4", null, "1.1", null, "10.0", null, "0.8", null, "43.7", null, "1.1", null, "78.1", null, "1.0", null, "74.6", null, "1.1", null, "70.2", null, "1.1", null, "17.6", null, "1.0", null, "15.6", null, "0.9", null, "12.6", null, "0.7", null, "5.1", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "06", "33"], ["5001900US0634", "Congressional District 34 (119th Congress), California", "754617", null, "21106", null, "35794", null, "3852", null, "33408", null, "3907", null, "37194", null, "4299", null, "44960", null, "3866", null, "52215", null, "4204", null, "74899", null, "5858", null, "74283", null, "5554", null, "61678", null, "5245", null, "58374", null, "4836", null, "45808", null, "4141", null, "46879", null, "4183", null, "42346", null, "4073", null, "39447", null, "3549", null, "32531", null, "3240", null, "25876", null, "2862", null, "19026", null, "2074", null, "14935", null, "2379", null, "14964", null, "2571", null, "70602", null, "5598", null, "27652", null, "2963", null, "134048", null, "7765", null, "69523", null, "5367", null, "366409", null, "13635", null, "639797", null, "18249", null, "620569", null, "17526", null, "595705", null, "16405", null, "146779", null, "7171", null, "129795", null, "6545", null, "107332", null, "5417", null, "48925", null, "4015", null, "36.7", null, "0.6", null, "102.2", null, "3.6", null, "47.0", null, "1.7", null, "20.9", null, "1.1", null, "26.1", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.7", null, "0.5", null, "4.4", null, "0.5", null, "4.9", null, "0.6", null, "6.0", null, "0.4", null, "6.9", null, "0.5", null, "9.9", null, "0.7", null, "9.8", null, "0.7", null, "8.2", null, "0.6", null, "7.7", null, "0.6", null, "6.1", null, "0.5", null, "6.2", null, "0.5", null, "5.6", null, "0.5", null, "5.2", null, "0.5", null, "4.3", null, "0.4", null, "3.4", null, "0.4", null, "2.5", null, "0.3", null, "2.0", null, "0.3", null, "2.0", null, "0.3", null, "9.4", null, "0.7", null, "3.7", null, "0.4", null, "17.8", null, "0.8", null, "9.2", null, "0.6", null, "48.6", null, "1.1", null, "84.8", null, "0.8", null, "82.2", null, "0.8", null, "78.9", null, "0.9", null, "19.5", null, "0.9", null, "17.2", null, "0.8", null, "14.2", null, "0.7", null, "6.5", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "2.1", null, "-888888888.0", "(X)", "381337", null, "13213", null, "15807", null, "2024", null, "17108", null, "2437", null, "18189", null, "2955", null, "25136", null, "2918", null, "25175", null, "2840", null, "38552", null, "3689", null, "41931", null, "3899", null, "34355", null, "3671", null, "28822", null, "3373", null, "22319", null, "2647", null, "24873", null, "2899", null, "21038", null, "2743", null, "20815", null, "2584", null, "14821", null, "1997", null, "13979", null, "1865", null, "8021", null, "1532", null, "5021", null, "1052", null, "5375", null, "1404", null, "35297", null, "3598", null, "14410", null, "2278", null, "65514", null, "5170", null, "35901", null, "3781", null, "193971", null, "9253", null, "326234", null, "11287", null, "315823", null, "10945", null, "301470", null, "10436", null, "68032", null, "4203", null, "58857", null, "3745", null, "47217", null, "3079", null, "18417", null, "2212", null, "36.3", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.1", null, "0.5", null, "4.5", null, "0.6", null, "4.8", null, "0.7", null, "6.6", null, "0.7", null, "6.6", null, "0.7", null, "10.1", null, "0.9", null, "11.0", null, "1.0", null, "9.0", null, "0.9", null, "7.6", null, "0.8", null, "5.9", null, "0.7", null, "6.5", null, "0.8", null, "5.5", null, "0.7", null, "5.5", null, "0.7", null, "3.9", null, "0.5", null, "3.7", null, "0.5", null, "2.1", null, "0.4", null, "1.3", null, "0.3", null, "1.4", null, "0.4", null, "9.3", null, "0.8", null, "3.8", null, "0.6", null, "17.2", null, "1.1", null, "9.4", null, "0.9", null, "50.9", null, "1.4", null, "85.6", null, "1.1", null, "82.8", null, "1.1", null, "79.1", null, "1.2", null, "17.8", null, "1.0", null, "15.4", null, "0.9", null, "12.4", null, "0.7", null, "4.8", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "373280", null, "11663", null, "19987", null, "3046", null, "16300", null, "2368", null, "19005", null, "2677", null, "19824", null, "2264", null, "27040", null, "2488", null, "36347", null, "3354", null, "32352", null, "3170", null, "27323", null, "2848", null, "29552", null, "3268", null, "23489", null, "2363", null, "22006", null, "2505", null, "21308", null, "2190", null, "18632", null, "1941", null, "17710", null, "2166", null, "11897", null, "1720", null, "11005", null, "1567", null, "9914", null, "1984", null, "9589", null, "1727", null, "35305", null, "3488", null, "13242", null, "2023", null, "68534", null, "4888", null, "33622", null, "2792", null, "172438", null, "8048", null, "313563", null, "10570", null, "304746", null, "10192", null, "294235", null, "9644", null, "78747", null, "4655", null, "70938", null, "4341", null, "60115", null, "3778", null, "30508", null, "2880", null, "37.4", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.8", null, "4.4", null, "0.6", null, "5.1", null, "0.7", null, "5.3", null, "0.6", null, "7.2", null, "0.6", null, "9.7", null, "0.8", null, "8.7", null, "0.8", null, "7.3", null, "0.7", null, "7.9", null, "0.8", null, "6.3", null, "0.6", null, "5.9", null, "0.6", null, "5.7", null, "0.6", null, "5.0", null, "0.5", null, "4.7", null, "0.6", null, "3.2", null, "0.5", null, "2.9", null, "0.4", null, "2.7", null, "0.5", null, "2.6", null, "0.4", null, "9.5", null, "0.9", null, "3.5", null, "0.5", null, "18.4", null, "1.1", null, "9.0", null, "0.6", null, "46.2", null, "1.4", null, "84.0", null, "1.1", null, "81.6", null, "1.1", null, "78.8", null, "1.1", null, "21.1", null, "1.2", null, "19.0", null, "1.1", null, "16.1", null, "0.9", null, "8.2", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "06", "34"], ["5001900US0635", "Congressional District 35 (119th Congress), California", "764929", null, "14997", null, "43119", null, "3793", null, "45706", null, "4733", null, "53456", null, "4209", null, "55799", null, "4169", null, "53938", null, "3822", null, "60421", null, "4527", null, "61736", null, "4744", null, "59251", null, "5085", null, "54047", null, "4450", null, "45640", null, "3641", null, "51119", null, "4273", null, "42234", null, "3393", null, "43530", null, "4231", null, "36039", null, "3279", null, "25715", null, "2675", null, "16700", null, "2176", null, "8859", null, "1462", null, "7620", null, "1286", null, "99162", null, "7255", null, "32916", null, "3366", null, "175197", null, "9196", null, "76821", null, "4698", null, "345192", null, "10668", null, "612078", null, "12432", null, "589732", null, "11940", null, "556163", null, "11477", null, "138463", null, "7072", null, "119671", null, "6582", null, "94933", null, "5512", null, "33179", null, "2889", null, "35.5", null, "0.5", null, "98.9", null, "3.4", null, "54.6", null, "2.2", null, "19.2", null, "1.3", null, "35.4", null, "1.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.6", null, "0.5", null, "6.0", null, "0.6", null, "7.0", null, "0.5", null, "7.3", null, "0.5", null, "7.1", null, "0.5", null, "7.9", null, "0.6", null, "8.1", null, "0.6", null, "7.7", null, "0.7", null, "7.1", null, "0.6", null, "6.0", null, "0.5", null, "6.7", null, "0.5", null, "5.5", null, "0.4", null, "5.7", null, "0.6", null, "4.7", null, "0.4", null, "3.4", null, "0.4", null, "2.2", null, "0.3", null, "1.2", null, "0.2", null, "1.0", null, "0.2", null, "13.0", null, "0.9", null, "4.3", null, "0.4", null, "22.9", null, "1.0", null, "10.0", null, "0.6", null, "45.1", null, "1.0", null, "80.0", null, "1.0", null, "77.1", null, "1.0", null, "72.7", null, "1.0", null, "18.1", null, "1.0", null, "15.6", null, "0.9", null, "12.4", null, "0.8", null, "4.3", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "2.7", null, "-888888888.0", "(X)", "380369", null, "9892", null, "19914", null, "2287", null, "23655", null, "3203", null, "27412", null, "3108", null, "27044", null, "2832", null, "27603", null, "2784", null, "30953", null, "3188", null, "31364", null, "2918", null, "30203", null, "3512", null, "27242", null, "3097", null, "23964", null, "2790", null, "24899", null, "2765", null, "20625", null, "2217", null, "21407", null, "2588", null, "17225", null, "2322", null, "10980", null, "1734", null, "8640", null, "1287", null, "3688", null, "1140", null, "3551", null, "878", null, "51067", null, "5120", null, "15666", null, "2200", null, "86647", null, "6325", null, "38981", null, "3496", null, "174409", null, "6530", null, "304107", null, "7999", null, "293722", null, "7392", null, "277078", null, "7030", null, "65491", null, "4547", null, "56581", null, "4202", null, "44084", null, "3619", null, "15879", null, "1751", null, "35.3", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.6", null, "6.2", null, "0.8", null, "7.2", null, "0.7", null, "7.1", null, "0.7", null, "7.3", null, "0.7", null, "8.1", null, "0.8", null, "8.2", null, "0.7", null, "7.9", null, "0.9", null, "7.2", null, "0.8", null, "6.3", null, "0.7", null, "6.5", null, "0.7", null, "5.4", null, "0.6", null, "5.6", null, "0.6", null, "4.5", null, "0.6", null, "2.9", null, "0.5", null, "2.3", null, "0.3", null, "1.0", null, "0.3", null, "0.9", null, "0.2", null, "13.4", null, "1.2", null, "4.1", null, "0.5", null, "22.8", null, "1.3", null, "10.2", null, "0.9", null, "45.9", null, "1.4", null, "80.0", null, "1.4", null, "77.2", null, "1.3", null, "72.8", null, "1.3", null, "17.2", null, "1.2", null, "14.9", null, "1.1", null, "11.6", null, "1.0", null, "4.2", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "384560", null, "10183", null, "23205", null, "2708", null, "22051", null, "3462", null, "26044", null, "2934", null, "28755", null, "2913", null, "26335", null, "2840", null, "29468", null, "2772", null, "30372", null, "2803", null, "29048", null, "3155", null, "26805", null, "2726", null, "21676", null, "2266", null, "26220", null, "2545", null, "21609", null, "2342", null, "22123", null, "2780", null, "18814", null, "2060", null, "14735", null, "1786", null, "8060", null, "1397", null, "5171", null, "1009", null, "4069", null, "862", null, "48095", null, "4802", null, "17250", null, "2217", null, "88550", null, "5938", null, "37840", null, "3442", null, "170783", null, "6282", null, "307971", null, "7681", null, "296010", null, "7333", null, "279085", null, "7364", null, "72972", null, "4295", null, "63090", null, "3850", null, "50849", null, "3350", null, "17300", null, "1817", null, "35.8", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.0", null, "0.7", null, "5.7", null, "0.8", null, "6.8", null, "0.7", null, "7.5", null, "0.7", null, "6.8", null, "0.7", null, "7.7", null, "0.7", null, "7.9", null, "0.7", null, "7.6", null, "0.8", null, "7.0", null, "0.7", null, "5.6", null, "0.6", null, "6.8", null, "0.6", null, "5.6", null, "0.6", null, "5.8", null, "0.7", null, "4.9", null, "0.5", null, "3.8", null, "0.5", null, "2.1", null, "0.4", null, "1.3", null, "0.3", null, "1.1", null, "0.2", null, "12.5", null, "1.1", null, "4.5", null, "0.6", null, "23.0", null, "1.2", null, "9.8", null, "0.9", null, "44.4", null, "1.1", null, "80.1", null, "1.2", null, "77.0", null, "1.2", null, "72.6", null, "1.3", null, "19.0", null, "1.2", null, "16.4", null, "1.1", null, "13.2", null, "0.9", null, "4.5", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "06", "35"], ["5001900US0636", "Congressional District 36 (119th Congress), California", "754490", null, "16667", null, "33930", null, "4070", null, "36176", null, "4135", null, "37494", null, "3639", null, "45175", null, "4552", null, "53181", null, "5166", null, "55615", null, "5470", null, "63086", null, "6002", null, "60507", null, "5657", null, "53318", null, "5986", null, "40293", null, "3815", null, "45160", null, "4007", null, "46518", null, "4774", null, "45324", null, "3913", null, "39064", null, "3813", null, "37168", null, "3519", null, "26045", null, "3338", null, "19108", null, "2420", null, "17328", null, "2122", null, "73670", null, "5917", null, "19280", null, "2486", null, "126880", null, "8332", null, "79076", null, "5450", null, "330882", null, "10339", null, "640580", null, "13745", null, "627610", null, "13141", null, "588065", null, "12322", null, "184037", null, "8266", null, "164978", null, "7325", null, "138713", null, "6718", null, "62481", null, "4138", null, "39.3", null, "0.8", null, "92.0", null, "3.0", null, "54.3", null, "2.1", null, "28.4", null, "1.7", null, "26.0", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.5", null, "0.5", null, "4.8", null, "0.5", null, "5.0", null, "0.4", null, "6.0", null, "0.6", null, "7.0", null, "0.7", null, "7.4", null, "0.7", null, "8.4", null, "0.8", null, "8.0", null, "0.7", null, "7.1", null, "0.8", null, "5.3", null, "0.5", null, "6.0", null, "0.5", null, "6.2", null, "0.6", null, "6.0", null, "0.5", null, "5.2", null, "0.5", null, "4.9", null, "0.5", null, "3.5", null, "0.4", null, "2.5", null, "0.3", null, "2.3", null, "0.3", null, "9.8", null, "0.7", null, "2.6", null, "0.3", null, "16.8", null, "0.9", null, "10.5", null, "0.7", null, "43.9", null, "1.0", null, "84.9", null, "0.9", null, "83.2", null, "0.9", null, "77.9", null, "0.9", null, "24.4", null, "1.1", null, "21.9", null, "1.0", null, "18.4", null, "0.9", null, "8.3", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.5", null, "-888888888.0", "(X)", "361469", null, "10200", null, "15936", null, "2445", null, "19204", null, "3065", null, "15887", null, "2710", null, "20920", null, "2764", null, "25347", null, "3581", null, "26414", null, "2902", null, "30085", null, "3657", null, "31325", null, "3936", null, "26707", null, "3275", null, "21451", null, "2527", null, "21457", null, "2891", null, "23364", null, "2815", null, "21103", null, "2451", null, "18098", null, "2110", null, "17941", null, "2309", null, "11455", null, "1858", null, "8324", null, "1379", null, "6451", null, "1344", null, "35091", null, "4062", null, "9518", null, "1746", null, "60545", null, "5591", null, "36749", null, "3904", null, "160798", null, "6679", null, "307188", null, "8365", null, "300924", null, "7884", null, "283143", null, "7041", null, "83372", null, "4879", null, "74878", null, "4135", null, "62269", null, "3955", null, "26230", null, "2492", null, "39.0", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.4", null, "0.6", null, "5.3", null, "0.8", null, "4.4", null, "0.7", null, "5.8", null, "0.7", null, "7.0", null, "1.0", null, "7.3", null, "0.8", null, "8.3", null, "1.0", null, "8.7", null, "1.1", null, "7.4", null, "0.9", null, "5.9", null, "0.7", null, "5.9", null, "0.8", null, "6.5", null, "0.8", null, "5.8", null, "0.6", null, "5.0", null, "0.6", null, "5.0", null, "0.6", null, "3.2", null, "0.5", null, "2.3", null, "0.4", null, "1.8", null, "0.4", null, "9.7", null, "1.0", null, "2.6", null, "0.5", null, "16.7", null, "1.3", null, "10.2", null, "1.0", null, "44.5", null, "1.3", null, "85.0", null, "1.3", null, "83.3", null, "1.3", null, "78.3", null, "1.3", null, "23.1", null, "1.3", null, "20.7", null, "1.1", null, "17.2", null, "1.1", null, "7.3", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "393021", null, "10577", null, "17994", null, "2789", null, "16972", null, "2489", null, "21607", null, "2750", null, "24255", null, "3060", null, "27834", null, "3677", null, "29201", null, "3974", null, "33001", null, "3493", null, "29182", null, "3287", null, "26611", null, "3700", null, "18842", null, "2262", null, "23703", null, "2372", null, "23154", null, "2975", null, "24221", null, "2541", null, "20966", null, "2483", null, "19227", null, "2357", null, "14590", null, "2087", null, "10784", null, "1696", null, "10877", null, "1554", null, "38579", null, "3524", null, "9762", null, "1838", null, "66335", null, "4859", null, "42327", null, "4208", null, "170084", null, "7210", null, "333392", null, "8936", null, "326686", null, "8784", null, "304922", null, "8237", null, "100665", null, "4941", null, "90100", null, "4675", null, "76444", null, "4040", null, "36251", null, "2755", null, "39.4", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.6", null, "0.7", null, "4.3", null, "0.6", null, "5.5", null, "0.6", null, "6.2", null, "0.7", null, "7.1", null, "0.9", null, "7.4", null, "1.0", null, "8.4", null, "0.9", null, "7.4", null, "0.9", null, "6.8", null, "0.9", null, "4.8", null, "0.6", null, "6.0", null, "0.6", null, "5.9", null, "0.7", null, "6.2", null, "0.6", null, "5.3", null, "0.6", null, "4.9", null, "0.6", null, "3.7", null, "0.5", null, "2.7", null, "0.5", null, "2.8", null, "0.4", null, "9.8", null, "0.8", null, "2.5", null, "0.5", null, "16.9", null, "1.0", null, "10.8", null, "1.0", null, "43.3", null, "1.3", null, "84.8", null, "1.1", null, "83.1", null, "1.0", null, "77.6", null, "1.1", null, "25.6", null, "1.3", null, "22.9", null, "1.3", null, "19.5", null, "1.1", null, "9.2", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "06", "36"], ["5001900US0637", "Congressional District 37 (119th Congress), California", "744775", null, "22238", null, "37645", null, "3327", null, "43080", null, "4265", null, "46042", null, "3891", null, "55134", null, "4613", null, "60560", null, "6413", null, "61287", null, "5047", null, "65149", null, "5453", null, "49817", null, "4796", null, "51034", null, "4523", null, "49647", null, "4258", null, "45154", null, "4566", null, "40168", null, "3713", null, "42995", null, "3983", null, "35362", null, "3158", null, "23706", null, "2367", null, "17592", null, "2031", null, "9931", null, "1627", null, "10472", null, "1558", null, "89122", null, "6154", null, "30628", null, "3628", null, "157395", null, "8967", null, "85066", null, "7012", null, "342981", null, "12013", null, "606571", null, "17458", null, "587380", null, "17465", null, "552794", null, "17446", null, "140058", null, "7379", null, "121488", null, "7090", null, "97063", null, "5559", null, "37995", null, "3012", null, "35.3", null, "0.8", null, "96.8", null, "3.3", null, "51.9", null, "2.1", null, "19.8", null, "1.2", null, "32.1", null, "1.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.1", null, "0.4", null, "5.8", null, "0.5", null, "6.2", null, "0.5", null, "7.4", null, "0.6", null, "8.1", null, "0.8", null, "8.2", null, "0.6", null, "8.7", null, "0.7", null, "6.7", null, "0.6", null, "6.9", null, "0.6", null, "6.7", null, "0.5", null, "6.1", null, "0.6", null, "5.4", null, "0.5", null, "5.8", null, "0.5", null, "4.7", null, "0.4", null, "3.2", null, "0.3", null, "2.4", null, "0.3", null, "1.3", null, "0.2", null, "1.4", null, "0.2", null, "12.0", null, "0.7", null, "4.1", null, "0.5", null, "21.1", null, "0.9", null, "11.4", null, "0.9", null, "46.1", null, "1.0", null, "81.4", null, "0.8", null, "78.9", null, "0.9", null, "74.2", null, "1.0", null, "18.8", null, "0.9", null, "16.3", null, "0.8", null, "13.0", null, "0.7", null, "5.1", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.7", null, "-888888888.0", "(X)", "366330", null, "12660", null, "19238", null, "2486", null, "20745", null, "2638", null, "21749", null, "2609", null, "27615", null, "3340", null, "30775", null, "3988", null, "29084", null, "3226", null, "31483", null, "3199", null, "27510", null, "3369", null, "25947", null, "2973", null, "24429", null, "2667", null, "23247", null, "2990", null, "19950", null, "2726", null, "22380", null, "2647", null, "16489", null, "2186", null, "10465", null, "1386", null, "7877", null, "1191", null, "3910", null, "1098", null, "3437", null, "754", null, "42494", null, "3771", null, "15701", null, "2746", null, "77433", null, "5917", null, "42689", null, "4156", null, "172414", null, "7494", null, "298008", null, "10491", null, "288897", null, "10354", null, "271733", null, "10435", null, "64558", null, "4493", null, "55569", null, "4373", null, "42178", null, "3383", null, "15224", null, "1605", null, "35.4", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.3", null, "0.6", null, "5.7", null, "0.7", null, "5.9", null, "0.7", null, "7.5", null, "0.9", null, "8.4", null, "1.0", null, "7.9", null, "0.9", null, "8.6", null, "0.9", null, "7.5", null, "0.9", null, "7.1", null, "0.8", null, "6.7", null, "0.7", null, "6.3", null, "0.8", null, "5.4", null, "0.7", null, "6.1", null, "0.7", null, "4.5", null, "0.6", null, "2.9", null, "0.4", null, "2.2", null, "0.3", null, "1.1", null, "0.3", null, "0.9", null, "0.2", null, "11.6", null, "0.9", null, "4.3", null, "0.7", null, "21.1", null, "1.3", null, "11.7", null, "1.0", null, "47.1", null, "1.4", null, "81.3", null, "1.2", null, "78.9", null, "1.3", null, "74.2", null, "1.4", null, "17.6", null, "1.0", null, "15.2", null, "1.0", null, "11.5", null, "0.8", null, "4.2", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "378445", null, "12946", null, "18407", null, "2741", null, "22335", null, "2905", null, "24293", null, "3107", null, "27519", null, "2989", null, "29785", null, "3814", null, "32203", null, "3380", null, "33666", null, "3687", null, "22307", null, "2590", null, "25087", null, "3054", null, "25218", null, "2601", null, "21907", null, "2865", null, "20218", null, "2349", null, "20615", null, "2541", null, "18873", null, "2127", null, "13241", null, "1999", null, "9715", null, "1718", null, "6021", null, "1215", null, "7035", null, "1380", null, "46628", null, "4381", null, "14927", null, "2109", null, "79962", null, "5928", null, "42377", null, "4354", null, "170567", null, "7569", null, "308563", null, "9504", null, "298483", null, "9550", null, "281061", null, "9614", null, "75500", null, "4495", null, "65919", null, "4120", null, "54885", null, "3562", null, "22771", null, "2264", null, "35.2", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.9", null, "0.7", null, "5.9", null, "0.7", null, "6.4", null, "0.8", null, "7.3", null, "0.8", null, "7.9", null, "1.0", null, "8.5", null, "0.8", null, "8.9", null, "0.9", null, "5.9", null, "0.7", null, "6.6", null, "0.8", null, "6.7", null, "0.6", null, "5.8", null, "0.8", null, "5.3", null, "0.6", null, "5.4", null, "0.7", null, "5.0", null, "0.5", null, "3.5", null, "0.5", null, "2.6", null, "0.4", null, "1.6", null, "0.3", null, "1.9", null, "0.4", null, "12.3", null, "1.0", null, "3.9", null, "0.6", null, "21.1", null, "1.2", null, "11.2", null, "1.1", null, "45.1", null, "1.5", null, "81.5", null, "1.1", null, "78.9", null, "1.2", null, "74.3", null, "1.2", null, "20.0", null, "1.1", null, "17.4", null, "1.0", null, "14.5", null, "0.9", null, "6.0", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "06", "37"], ["5001900US0638", "Congressional District 38 (119th Congress), California", "722610", null, "13756", null, "34033", null, "4120", null, "41900", null, "3989", null, "47567", null, "5089", null, "45793", null, "4343", null, "42726", null, "3841", null, "39587", null, "4328", null, "49576", null, "4444", null, "49361", null, "4609", null, "50856", null, "4700", null, "49560", null, "4688", null, "45305", null, "3036", null, "45753", null, "3730", null, "45440", null, "4025", null, "41659", null, "3257", null, "36109", null, "3679", null, "26469", null, "3000", null, "17092", null, "2255", null, "13824", null, "1906", null, "89467", null, "6293", null, "27855", null, "2932", null, "151355", null, "8737", null, "60664", null, "4754", null, "277899", null, "9628", null, "590821", null, "11673", null, "571255", null, "11531", null, "543989", null, "10589", null, "180593", null, "7196", null, "162458", null, "6723", null, "135153", null, "6114", null, "57385", null, "4192", null, "41.1", null, "0.9", null, "98.9", null, "2.9", null, "65.7", null, "2.9", null, "31.0", null, "1.8", null, "34.7", null, "2.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.7", null, "0.5", null, "5.8", null, "0.5", null, "6.6", null, "0.7", null, "6.3", null, "0.5", null, "5.9", null, "0.5", null, "5.5", null, "0.6", null, "6.9", null, "0.6", null, "6.8", null, "0.6", null, "7.0", null, "0.6", null, "6.9", null, "0.6", null, "6.3", null, "0.4", null, "6.3", null, "0.5", null, "6.3", null, "0.6", null, "5.8", null, "0.5", null, "5.0", null, "0.5", null, "3.7", null, "0.4", null, "2.4", null, "0.3", null, "1.9", null, "0.3", null, "12.4", null, "0.8", null, "3.9", null, "0.4", null, "20.9", null, "1.0", null, "8.4", null, "0.6", null, "38.5", null, "0.9", null, "81.8", null, "0.9", null, "79.1", null, "1.0", null, "75.3", null, "1.1", null, "25.0", null, "1.0", null, "22.5", null, "1.0", null, "18.7", null, "0.9", null, "7.9", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.7", null, "-888888888.0", "(X)", "359335", null, "9283", null, "17099", null, "2497", null, "20095", null, "2803", null, "25369", null, "3718", null, "23893", null, "2890", null, "22038", null, "2478", null, "21360", null, "2996", null, "25575", null, "3068", null, "22775", null, "2738", null, "27587", null, "3127", null, "25840", null, "3014", null, "23526", null, "1954", null, "22608", null, "2484", null, "21301", null, "2079", null, "19683", null, "2050", null, "16737", null, "2165", null, "12911", null, "1572", null, "6348", null, "1150", null, "4590", null, "991", null, "45464", null, "4489", null, "14890", null, "2147", null, "77453", null, "5776", null, "31041", null, "3086", null, "143228", null, "6285", null, "291838", null, "7333", null, "281882", null, "7217", null, "266911", null, "6601", null, "81570", null, "3731", null, "73296", null, "3636", null, "60269", null, "3195", null, "23849", null, "1955", null, "40.3", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.8", null, "0.7", null, "5.6", null, "0.7", null, "7.1", null, "1.0", null, "6.6", null, "0.7", null, "6.1", null, "0.6", null, "5.9", null, "0.8", null, "7.1", null, "0.8", null, "6.3", null, "0.7", null, "7.7", null, "0.9", null, "7.2", null, "0.8", null, "6.5", null, "0.6", null, "6.3", null, "0.7", null, "5.9", null, "0.6", null, "5.5", null, "0.6", null, "4.7", null, "0.6", null, "3.6", null, "0.4", null, "1.8", null, "0.3", null, "1.3", null, "0.3", null, "12.7", null, "1.1", null, "4.1", null, "0.6", null, "21.6", null, "1.3", null, "8.6", null, "0.8", null, "39.9", null, "1.3", null, "81.2", null, "1.2", null, "78.4", null, "1.3", null, "74.3", null, "1.4", null, "22.7", null, "1.1", null, "20.4", null, "1.1", null, "16.8", null, "1.0", null, "6.6", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "363275", null, "8056", null, "16934", null, "2889", null, "21805", null, "2961", null, "22198", null, "3244", null, "21900", null, "2933", null, "20688", null, "2659", null, "18227", null, "2366", null, "24001", null, "2711", null, "26586", null, "2913", null, "23269", null, "2595", null, "23720", null, "2559", null, "21779", null, "2124", null, "23145", null, "2741", null, "24139", null, "2591", null, "21976", null, "2317", null, "19372", null, "2256", null, "13558", null, "2130", null, "10744", null, "1628", null, "9234", null, "1545", null, "44003", null, "4411", null, "12965", null, "2109", null, "73902", null, "6114", null, "29623", null, "3336", null, "134671", null, "5664", null, "298983", null, "6456", null, "289373", null, "6292", null, "277078", null, "5751", null, "99023", null, "4439", null, "89162", null, "4262", null, "74884", null, "4005", null, "33536", null, "2954", null, "42.1", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.7", null, "0.8", null, "6.0", null, "0.7", null, "6.1", null, "0.9", null, "6.0", null, "0.8", null, "5.7", null, "0.7", null, "5.0", null, "0.7", null, "6.6", null, "0.7", null, "7.3", null, "0.8", null, "6.4", null, "0.7", null, "6.5", null, "0.7", null, "6.0", null, "0.6", null, "6.4", null, "0.8", null, "6.6", null, "0.7", null, "6.0", null, "0.7", null, "5.3", null, "0.6", null, "3.7", null, "0.6", null, "3.0", null, "0.5", null, "2.5", null, "0.4", null, "12.1", null, "1.1", null, "3.6", null, "0.6", null, "20.3", null, "1.4", null, "8.2", null, "0.8", null, "37.1", null, "1.2", null, "82.3", null, "1.4", null, "79.7", null, "1.4", null, "76.3", null, "1.5", null, "27.3", null, "1.3", null, "24.5", null, "1.2", null, "20.6", null, "1.1", null, "9.2", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "06", "38"], ["5001900US0639", "Congressional District 39 (119th Congress), California", "780819", null, "8998", null, "45446", null, "3519", null, "46701", null, "4070", null, "56457", null, "5147", null, "64625", null, "4242", null, "63659", null, "4055", null, "61624", null, "4629", null, "64378", null, "4441", null, "60585", null, "4924", null, "54663", null, "4851", null, "43716", null, "3679", null, "46409", null, "3936", null, "42603", null, "3493", null, "42431", null, "3578", null, "30417", null, "2947", null, "23722", null, "2490", null, "15310", null, "2213", null, "9486", null, "1578", null, "8587", null, "1818", null, "103158", null, "7229", null, "35528", null, "3209", null, "184132", null, "8562", null, "92756", null, "4865", null, "369534", null, "8437", null, "622222", null, "9368", null, "596687", null, "9274", null, "554805", null, "9368", null, "129953", null, "7152", null, "113462", null, "6903", null, "87522", null, "5532", null, "33383", null, "3338", null, "34.1", null, "0.6", null, "101.3", null, "3.1", null, "53.4", null, "2.3", null, "17.2", null, "1.2", null, "36.2", null, "2.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.8", null, "0.4", null, "6.0", null, "0.5", null, "7.2", null, "0.6", null, "8.3", null, "0.5", null, "8.2", null, "0.5", null, "7.9", null, "0.6", null, "8.2", null, "0.6", null, "7.8", null, "0.6", null, "7.0", null, "0.6", null, "5.6", null, "0.5", null, "5.9", null, "0.5", null, "5.5", null, "0.4", null, "5.4", null, "0.5", null, "3.9", null, "0.4", null, "3.0", null, "0.3", null, "2.0", null, "0.3", null, "1.2", null, "0.2", null, "1.1", null, "0.2", null, "13.2", null, "0.9", null, "4.6", null, "0.4", null, "23.6", null, "1.0", null, "11.9", null, "0.7", null, "47.3", null, "1.0", null, "79.7", null, "1.0", null, "76.4", null, "1.0", null, "71.1", null, "1.0", null, "16.6", null, "0.9", null, "14.5", null, "0.9", null, "11.2", null, "0.7", null, "4.3", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.1", null, "-888888888.0", "(X)", "392874", null, "7876", null, "24278", null, "2641", null, "24824", null, "3063", null, "27993", null, "3312", null, "33895", null, "3148", null, "33966", null, "2936", null, "30243", null, "3199", null, "33719", null, "3179", null, "31947", null, "3300", null, "27147", null, "3342", null, "21706", null, "2771", null, "21866", null, "2424", null, "21381", null, "2581", null, "21828", null, "2397", null, "14688", null, "1726", null, "10230", null, "1646", null, "5788", null, "1187", null, "3980", null, "973", null, "3395", null, "1044", null, "52817", null, "4914", null, "18861", null, "2292", null, "95956", null, "6193", null, "49000", null, "3619", null, "190917", null, "6015", null, "311616", null, "7599", null, "296918", null, "7284", null, "275123", null, "6911", null, "59909", null, "3816", null, "52009", null, "3980", null, "38081", null, "3007", null, "13163", null, "1894", null, "33.3", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.2", null, "0.6", null, "6.3", null, "0.8", null, "7.1", null, "0.8", null, "8.6", null, "0.8", null, "8.6", null, "0.7", null, "7.7", null, "0.8", null, "8.6", null, "0.8", null, "8.1", null, "0.8", null, "6.9", null, "0.9", null, "5.5", null, "0.7", null, "5.6", null, "0.6", null, "5.4", null, "0.6", null, "5.6", null, "0.6", null, "3.7", null, "0.4", null, "2.6", null, "0.4", null, "1.5", null, "0.3", null, "1.0", null, "0.2", null, "0.9", null, "0.3", null, "13.4", null, "1.2", null, "4.8", null, "0.6", null, "24.4", null, "1.4", null, "12.5", null, "0.9", null, "48.6", null, "1.2", null, "79.3", null, "1.4", null, "75.6", null, "1.4", null, "70.0", null, "1.5", null, "15.2", null, "0.9", null, "13.2", null, "1.0", null, "9.7", null, "0.7", null, "3.4", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "387945", null, "6997", null, "21168", null, "2406", null, "21877", null, "2642", null, "28464", null, "3583", null, "30730", null, "2610", null, "29693", null, "2679", null, "31381", null, "2935", null, "30659", null, "2507", null, "28638", null, "2475", null, "27516", null, "2943", null, "22010", null, "2177", null, "24543", null, "2484", null, "21222", null, "2033", null, "20603", null, "2169", null, "15729", null, "1809", null, "13492", null, "1562", null, "9522", null, "1642", null, "5506", null, "1223", null, "5192", null, "1232", null, "50341", null, "4432", null, "16667", null, "2012", null, "88176", null, "5010", null, "43756", null, "3131", null, "178617", null, "5864", null, "310606", null, "6463", null, "299769", null, "6229", null, "279682", null, "5734", null, "70044", null, "4582", null, "61453", null, "4248", null, "49441", null, "3578", null, "20220", null, "2234", null, "35.0", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.6", null, "5.6", null, "0.7", null, "7.3", null, "0.9", null, "7.9", null, "0.6", null, "7.7", null, "0.7", null, "8.1", null, "0.8", null, "7.9", null, "0.6", null, "7.4", null, "0.6", null, "7.1", null, "0.7", null, "5.7", null, "0.6", null, "6.3", null, "0.7", null, "5.5", null, "0.5", null, "5.3", null, "0.6", null, "4.1", null, "0.5", null, "3.5", null, "0.4", null, "2.5", null, "0.4", null, "1.4", null, "0.3", null, "1.3", null, "0.3", null, "13.0", null, "1.1", null, "4.3", null, "0.5", null, "22.7", null, "1.1", null, "11.3", null, "0.8", null, "46.0", null, "1.2", null, "80.1", null, "1.2", null, "77.3", null, "1.1", null, "72.1", null, "1.1", null, "18.1", null, "1.1", null, "15.8", null, "1.0", null, "12.7", null, "0.9", null, "5.2", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "06", "39"], ["5001900US0640", "Congressional District 40 (119th Congress), California", "744076", null, "11825", null, "38245", null, "4741", null, "39859", null, "5040", null, "45236", null, "4430", null, "40037", null, "3409", null, "40282", null, "4487", null, "43340", null, "4836", null, "47740", null, "4403", null, "49286", null, "4630", null, "50609", null, "4088", null, "45149", null, "3382", null, "50758", null, "3690", null, "51460", null, "3741", null, "56255", null, "4649", null, "43748", null, "4045", null, "39454", null, "2994", null, "25201", null, "2745", null, "17984", null, "2265", null, "19433", null, "2509", null, "85095", null, "6544", null, "25290", null, "2618", null, "148630", null, "8426", null, "55029", null, "4928", null, "271294", null, "8890", null, "613318", null, "11112", null, "595446", null, "10866", null, "572558", null, "10190", null, "202075", null, "7613", null, "178874", null, "7010", null, "145820", null, "5868", null, "62618", null, "3933", null, "42.7", null, "0.9", null, "98.6", null, "3.0", null, "65.5", null, "2.7", null, "32.4", null, "1.6", null, "33.1", null, "2.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.1", null, "0.6", null, "5.4", null, "0.7", null, "6.1", null, "0.6", null, "5.4", null, "0.4", null, "5.4", null, "0.6", null, "5.8", null, "0.6", null, "6.4", null, "0.6", null, "6.6", null, "0.6", null, "6.8", null, "0.5", null, "6.1", null, "0.4", null, "6.8", null, "0.5", null, "6.9", null, "0.5", null, "7.6", null, "0.6", null, "5.9", null, "0.6", null, "5.3", null, "0.4", null, "3.4", null, "0.4", null, "2.4", null, "0.3", null, "2.6", null, "0.3", null, "11.4", null, "0.8", null, "3.4", null, "0.3", null, "20.0", null, "1.0", null, "7.4", null, "0.6", null, "36.5", null, "1.0", null, "82.4", null, "1.0", null, "80.0", null, "1.0", null, "76.9", null, "1.0", null, "27.2", null, "1.1", null, "24.0", null, "1.0", null, "19.6", null, "0.8", null, "8.4", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.4", null, "-888888888.0", "(X)", "369393", null, "8719", null, "21764", null, "4000", null, "19574", null, "3290", null, "23134", null, "2709", null, "20918", null, "2181", null, "22128", null, "2867", null, "22855", null, "3436", null, "23652", null, "3118", null, "23265", null, "3059", null, "26242", null, "2768", null, "22215", null, "2244", null, "24316", null, "2483", null, "24089", null, "2492", null, "27747", null, "3095", null, "22300", null, "2402", null, "18677", null, "2093", null, "11610", null, "1641", null, "6762", null, "1117", null, "8145", null, "1424", null, "42708", null, "4177", null, "13011", null, "1762", null, "77483", null, "6223", null, "30035", null, "3400", null, "139060", null, "6111", null, "300893", null, "6855", null, "291910", null, "6785", null, "279346", null, "6115", null, "95241", null, "4690", null, "83044", null, "4261", null, "67494", null, "3594", null, "26517", null, "2361", null, "41.4", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.9", null, "1.0", null, "5.3", null, "0.9", null, "6.3", null, "0.7", null, "5.7", null, "0.6", null, "6.0", null, "0.8", null, "6.2", null, "0.9", null, "6.4", null, "0.9", null, "6.3", null, "0.8", null, "7.1", null, "0.7", null, "6.0", null, "0.6", null, "6.6", null, "0.7", null, "6.5", null, "0.7", null, "7.5", null, "0.8", null, "6.0", null, "0.7", null, "5.1", null, "0.6", null, "3.1", null, "0.4", null, "1.8", null, "0.3", null, "2.2", null, "0.4", null, "11.6", null, "1.0", null, "3.5", null, "0.5", null, "21.0", null, "1.4", null, "8.1", null, "0.9", null, "37.6", null, "1.4", null, "81.5", null, "1.4", null, "79.0", null, "1.4", null, "75.6", null, "1.4", null, "25.8", null, "1.3", null, "22.5", null, "1.2", null, "18.3", null, "1.0", null, "7.2", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "374683", null, "7709", null, "16481", null, "2434", null, "20285", null, "3228", null, "22102", null, "3386", null, "19119", null, "2244", null, "18154", null, "2878", null, "20485", null, "2784", null, "24088", null, "2758", null, "26021", null, "2922", null, "24367", null, "2873", null, "22934", null, "2134", null, "26442", null, "2471", null, "27371", null, "2683", null, "28508", null, "2716", null, "21448", null, "2491", null, "20777", null, "2202", null, "13591", null, "1657", null, "11222", null, "1754", null, "11288", null, "1748", null, "42387", null, "4550", null, "12279", null, "1814", null, "71147", null, "5096", null, "24994", null, "2998", null, "132234", null, "5443", null, "312425", null, "7261", null, "303536", null, "7054", null, "293212", null, "6785", null, "106834", null, "4502", null, "95830", null, "4289", null, "78326", null, "3594", null, "36101", null, "2291", null, "44.2", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.4", null, "0.6", null, "5.4", null, "0.8", null, "5.9", null, "0.9", null, "5.1", null, "0.6", null, "4.8", null, "0.7", null, "5.5", null, "0.7", null, "6.4", null, "0.7", null, "6.9", null, "0.8", null, "6.5", null, "0.7", null, "6.1", null, "0.6", null, "7.1", null, "0.6", null, "7.3", null, "0.7", null, "7.6", null, "0.7", null, "5.7", null, "0.7", null, "5.5", null, "0.6", null, "3.6", null, "0.4", null, "3.0", null, "0.5", null, "3.0", null, "0.5", null, "11.3", null, "1.1", null, "3.3", null, "0.5", null, "19.0", null, "1.2", null, "6.7", null, "0.8", null, "35.3", null, "1.2", null, "83.4", null, "1.2", null, "81.0", null, "1.2", null, "78.3", null, "1.2", null, "28.5", null, "1.3", null, "25.6", null, "1.2", null, "20.9", null, "1.0", null, "9.6", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "06", "40"], ["5001900US0641", "Congressional District 41 (119th Congress), California", "824187", null, "12212", null, "43405", null, "4598", null, "47992", null, "4982", null, "55190", null, "5019", null, "55512", null, "4055", null, "45301", null, "4366", null, "44707", null, "4299", null, "51579", null, "4507", null, "55453", null, "4946", null, "55786", null, "5277", null, "56638", null, "4833", null, "48078", null, "4557", null, "47906", null, "3469", null, "49717", null, "3765", null, "50289", null, "3778", null, "39471", null, "3432", null, "35194", null, "3122", null, "23886", null, "2613", null, "18083", null, "2655", null, "103182", null, "7307", null, "35630", null, "3520", null, "182217", null, "8784", null, "65183", null, "5115", null, "308338", null, "8201", null, "666999", null, "10628", null, "641970", null, "10259", null, "613928", null, "10294", null, "216640", null, "7440", null, "193919", null, "7149", null, "166923", null, "6365", null, "77163", null, "3977", null, "41.4", null, "1.0", null, "100.4", null, "2.9", null, "73.5", null, "2.8", null, "35.1", null, "1.8", null, "38.4", null, "2.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.3", null, "0.6", null, "5.8", null, "0.6", null, "6.7", null, "0.6", null, "6.7", null, "0.5", null, "5.5", null, "0.5", null, "5.4", null, "0.5", null, "6.3", null, "0.6", null, "6.7", null, "0.6", null, "6.8", null, "0.6", null, "6.9", null, "0.6", null, "5.8", null, "0.5", null, "5.8", null, "0.4", null, "6.0", null, "0.5", null, "6.1", null, "0.5", null, "4.8", null, "0.4", null, "4.3", null, "0.4", null, "2.9", null, "0.3", null, "2.2", null, "0.3", null, "12.5", null, "0.8", null, "4.3", null, "0.4", null, "22.1", null, "0.9", null, "7.9", null, "0.6", null, "37.4", null, "0.8", null, "80.9", null, "0.9", null, "77.9", null, "0.9", null, "74.5", null, "1.0", null, "26.3", null, "1.0", null, "23.5", null, "0.9", null, "20.3", null, "0.8", null, "9.4", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.1", null, "-888888888.0", "(X)", "412967", null, "8688", null, "21746", null, "3017", null, "25447", null, "3626", null, "28200", null, "3282", null, "26739", null, "2922", null, "23092", null, "2788", null, "24368", null, "2992", null, "24057", null, "2874", null, "28796", null, "3439", null, "27285", null, "3337", null, "28615", null, "3063", null, "25422", null, "3005", null, "22670", null, "2269", null, "26517", null, "2610", null, "24500", null, "2304", null, "19632", null, "2071", null, "16526", null, "1793", null, "10608", null, "1689", null, "8747", null, "1595", null, "53647", null, "4700", null, "17718", null, "2658", null, "93111", null, "6003", null, "32113", null, "3281", null, "154337", null, "5737", null, "331997", null, "7136", null, "319856", null, "7121", null, "306141", null, "6830", null, "106530", null, "4295", null, "92895", null, "3898", null, "80013", null, "3331", null, "35881", null, "2185", null, "40.9", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.3", null, "0.7", null, "6.2", null, "0.8", null, "6.8", null, "0.7", null, "6.5", null, "0.7", null, "5.6", null, "0.7", null, "5.9", null, "0.7", null, "5.8", null, "0.7", null, "7.0", null, "0.8", null, "6.6", null, "0.8", null, "6.9", null, "0.7", null, "6.2", null, "0.7", null, "5.5", null, "0.5", null, "6.4", null, "0.6", null, "5.9", null, "0.6", null, "4.8", null, "0.5", null, "4.0", null, "0.4", null, "2.6", null, "0.4", null, "2.1", null, "0.4", null, "13.0", null, "1.0", null, "4.3", null, "0.7", null, "22.5", null, "1.2", null, "7.8", null, "0.8", null, "37.4", null, "1.1", null, "80.4", null, "1.2", null, "77.5", null, "1.2", null, "74.1", null, "1.3", null, "25.8", null, "1.1", null, "22.5", null, "1.0", null, "19.4", null, "0.9", null, "8.7", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "411220", null, "8503", null, "21659", null, "3058", null, "22545", null, "2743", null, "26990", null, "3710", null, "28773", null, "2538", null, "22209", null, "2920", null, "20339", null, "2661", null, "27522", null, "2431", null, "26657", null, "3134", null, "28501", null, "3296", null, "28023", null, "2696", null, "22656", null, "2459", null, "25236", null, "2453", null, "23200", null, "2385", null, "25789", null, "2466", null, "19839", null, "2354", null, "18668", null, "2067", null, "13278", null, "2134", null, "9336", null, "1708", null, "49535", null, "4961", null, "17912", null, "2350", null, "89106", null, "5600", null, "33070", null, "3505", null, "154001", null, "5380", null, "335002", null, "6845", null, "322114", null, "6550", null, "307787", null, "6275", null, "110110", null, "4518", null, "101024", null, "4607", null, "86910", null, "4052", null, "41282", null, "2831", null, "42.0", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.3", null, "0.7", null, "5.5", null, "0.6", null, "6.6", null, "0.9", null, "7.0", null, "0.6", null, "5.4", null, "0.7", null, "4.9", null, "0.7", null, "6.7", null, "0.6", null, "6.5", null, "0.8", null, "6.9", null, "0.8", null, "6.8", null, "0.6", null, "5.5", null, "0.6", null, "6.1", null, "0.6", null, "5.6", null, "0.6", null, "6.3", null, "0.6", null, "4.8", null, "0.6", null, "4.5", null, "0.5", null, "3.2", null, "0.5", null, "2.3", null, "0.4", null, "12.0", null, "1.1", null, "4.4", null, "0.6", null, "21.7", null, "1.1", null, "8.0", null, "0.8", null, "37.4", null, "1.1", null, "81.5", null, "1.1", null, "78.3", null, "1.1", null, "74.8", null, "1.2", null, "26.8", null, "1.1", null, "24.6", null, "1.1", null, "21.1", null, "1.0", null, "10.0", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "06", "41"], ["5001900US0642", "Congressional District 42 (119th Congress), California", "722218", null, "17661", null, "37507", null, "3914", null, "41529", null, "4546", null, "43447", null, "4035", null, "52066", null, "4480", null, "56967", null, "5442", null, "55410", null, "4672", null, "58123", null, "5520", null, "53057", null, "4616", null, "49138", null, "4650", null, "45701", null, "3975", null, "51738", null, "4294", null, "42979", null, "4510", null, "39833", null, "3314", null, "32085", null, "2780", null, "26216", null, "2618", null, "16588", null, "2072", null, "10238", null, "1798", null, "9596", null, "1577", null, "84976", null, "6354", null, "29699", null, "3528", null, "152182", null, "9343", null, "79334", null, "6030", null, "324761", null, "12011", null, "590582", null, "14329", null, "570036", null, "14015", null, "536341", null, "13080", null, "134556", null, "6319", null, "117066", null, "5949", null, "94723", null, "5280", null, "36422", null, "3094", null, "36.4", null, "0.8", null, "99.2", null, "3.3", null, "51.9", null, "2.6", null, "19.9", null, "1.3", null, "32.0", null, "2.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.5", null, "5.8", null, "0.6", null, "6.0", null, "0.5", null, "7.2", null, "0.6", null, "7.9", null, "0.7", null, "7.7", null, "0.6", null, "8.0", null, "0.7", null, "7.3", null, "0.6", null, "6.8", null, "0.6", null, "6.3", null, "0.5", null, "7.2", null, "0.6", null, "6.0", null, "0.6", null, "5.5", null, "0.5", null, "4.4", null, "0.4", null, "3.6", null, "0.4", null, "2.3", null, "0.3", null, "1.4", null, "0.3", null, "1.3", null, "0.2", null, "11.8", null, "0.8", null, "4.1", null, "0.5", null, "21.1", null, "1.1", null, "11.0", null, "0.8", null, "45.0", null, "1.0", null, "81.8", null, "1.0", null, "78.9", null, "1.1", null, "74.3", null, "1.1", null, "18.6", null, "0.9", null, "16.2", null, "0.8", null, "13.1", null, "0.7", null, "5.0", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.5", null, "-888888888.0", "(X)", "359580", null, "10819", null, "19908", null, "2763", null, "22298", null, "2798", null, "20381", null, "2671", null, "25750", null, "3307", null, "28969", null, "4088", null, "28594", null, "3359", null, "29232", null, "3822", null, "26629", null, "2820", null, "25832", null, "3034", null, "23505", null, "2922", null, "24011", null, "2713", null, "22327", null, "2877", null, "19903", null, "2362", null, "15138", null, "1864", null, "11018", null, "1519", null, "7610", null, "1368", null, "4723", null, "998", null, "3752", null, "958", null, "42679", null, "4278", null, "15374", null, "2503", null, "77961", null, "6490", null, "39345", null, "4124", null, "165006", null, "7866", null, "291923", null, "9014", null, "281619", null, "8794", null, "266190", null, "8589", null, "62144", null, "3635", null, "52875", null, "3546", null, "42241", null, "3176", null, "16085", null, "1927", null, "35.8", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.7", null, "6.2", null, "0.7", null, "5.7", null, "0.7", null, "7.2", null, "0.9", null, "8.1", null, "1.1", null, "8.0", null, "0.9", null, "8.1", null, "1.0", null, "7.4", null, "0.8", null, "7.2", null, "0.8", null, "6.5", null, "0.8", null, "6.7", null, "0.7", null, "6.2", null, "0.8", null, "5.5", null, "0.7", null, "4.2", null, "0.5", null, "3.1", null, "0.4", null, "2.1", null, "0.4", null, "1.3", null, "0.3", null, "1.0", null, "0.3", null, "11.9", null, "1.0", null, "4.3", null, "0.7", null, "21.7", null, "1.5", null, "10.9", null, "1.1", null, "45.9", null, "1.5", null, "81.2", null, "1.4", null, "78.3", null, "1.5", null, "74.0", null, "1.6", null, "17.3", null, "1.1", null, "14.7", null, "1.0", null, "11.7", null, "0.9", null, "4.5", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "362638", null, "10450", null, "17599", null, "2581", null, "19231", null, "3313", null, "23066", null, "3132", null, "26316", null, "2957", null, "27998", null, "3462", null, "26816", null, "2876", null, "28891", null, "2888", null, "26428", null, "3025", null, "23306", null, "2599", null, "22196", null, "2465", null, "27727", null, "2784", null, "20652", null, "2639", null, "19930", null, "2166", null, "16947", null, "2297", null, "15198", null, "2164", null, "8978", null, "1502", null, "5515", null, "1322", null, "5844", null, "1186", null, "42297", null, "4297", null, "14325", null, "2128", null, "74221", null, "5825", null, "39989", null, "4030", null, "159755", null, "7148", null, "298659", null, "8049", null, "288417", null, "8013", null, "270151", null, "7186", null, "72412", null, "4246", null, "64191", null, "3884", null, "52482", null, "3734", null, "20337", null, "2157", null, "37.0", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.9", null, "0.7", null, "5.3", null, "0.9", null, "6.4", null, "0.8", null, "7.3", null, "0.8", null, "7.7", null, "0.9", null, "7.4", null, "0.8", null, "8.0", null, "0.7", null, "7.3", null, "0.8", null, "6.4", null, "0.7", null, "6.1", null, "0.7", null, "7.6", null, "0.8", null, "5.7", null, "0.8", null, "5.5", null, "0.6", null, "4.7", null, "0.6", null, "4.2", null, "0.6", null, "2.5", null, "0.4", null, "1.5", null, "0.4", null, "1.6", null, "0.3", null, "11.7", null, "1.0", null, "4.0", null, "0.6", null, "20.5", null, "1.3", null, "11.0", null, "1.0", null, "44.1", null, "1.4", null, "82.4", null, "1.3", null, "79.5", null, "1.3", null, "74.5", null, "1.3", null, "20.0", null, "1.1", null, "17.7", null, "1.1", null, "14.5", null, "1.0", null, "5.6", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "06", "42"], ["5001900US0643", "Congressional District 43 (119th Congress), California", "719690", null, "15362", null, "38959", null, "4586", null, "42978", null, "4033", null, "51715", null, "4773", null, "48232", null, "4366", null, "43953", null, "3439", null, "53886", null, "4443", null, "59391", null, "4853", null, "52605", null, "5006", null, "47490", null, "4394", null, "46994", null, "4080", null, "45967", null, "3987", null, "43759", null, "3870", null, "47585", null, "3865", null, "33218", null, "3068", null, "23099", null, "2560", null, "18925", null, "2767", null, "10794", null, "1709", null, "10140", null, "1963", null, "94693", null, "6926", null, "30810", null, "3101", null, "164462", null, "10303", null, "61375", null, "4261", null, "305557", null, "9620", null, "576421", null, "14364", null, "555228", null, "14317", null, "528063", null, "13847", null, "143761", null, "6833", null, "123767", null, "6172", null, "96176", null, "5408", null, "39859", null, "3873", null, "36.8", null, "0.8", null, "93.0", null, "3.2", null, "56.8", null, "2.9", null, "21.0", null, "1.3", null, "35.8", null, "2.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.6", null, "6.0", null, "0.5", null, "7.2", null, "0.6", null, "6.7", null, "0.6", null, "6.1", null, "0.4", null, "7.5", null, "0.6", null, "8.3", null, "0.6", null, "7.3", null, "0.7", null, "6.6", null, "0.6", null, "6.5", null, "0.6", null, "6.4", null, "0.5", null, "6.1", null, "0.5", null, "6.6", null, "0.5", null, "4.6", null, "0.4", null, "3.2", null, "0.4", null, "2.6", null, "0.4", null, "1.5", null, "0.2", null, "1.4", null, "0.3", null, "13.2", null, "0.9", null, "4.3", null, "0.4", null, "22.9", null, "1.3", null, "8.5", null, "0.5", null, "42.5", null, "0.9", null, "80.1", null, "1.2", null, "77.1", null, "1.3", null, "73.4", null, "1.3", null, "20.0", null, "0.9", null, "17.2", null, "0.8", null, "13.4", null, "0.7", null, "5.5", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.3", null, "-888888888.0", "(X)", "346849", null, "9209", null, "22051", null, "3499", null, "20206", null, "2973", null, "26750", null, "3252", null, "22373", null, "2800", null, "21520", null, "2221", null, "26837", null, "3605", null, "30245", null, "3294", null, "24659", null, "2933", null, "21542", null, "2505", null, "23189", null, "2933", null, "22613", null, "3063", null, "20499", null, "2338", null, "23093", null, "2594", null, "15572", null, "2244", null, "10080", null, "1586", null, "7833", null, "1617", null, "4836", null, "1236", null, "2951", null, "896", null, "46956", null, "4812", null, "14527", null, "2296", null, "83534", null, "6732", null, "29366", null, "2766", null, "147176", null, "6578", null, "273205", null, "8810", null, "263315", null, "8682", null, "249674", null, "8543", null, "64365", null, "4107", null, "55096", null, "3948", null, "41272", null, "3207", null, "15620", null, "2202", null, "35.6", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.4", null, "1.0", null, "5.8", null, "0.8", null, "7.7", null, "0.9", null, "6.5", null, "0.8", null, "6.2", null, "0.6", null, "7.7", null, "1.0", null, "8.7", null, "0.9", null, "7.1", null, "0.8", null, "6.2", null, "0.7", null, "6.7", null, "0.8", null, "6.5", null, "0.9", null, "5.9", null, "0.7", null, "6.7", null, "0.7", null, "4.5", null, "0.6", null, "2.9", null, "0.5", null, "2.3", null, "0.5", null, "1.4", null, "0.4", null, "0.9", null, "0.3", null, "13.5", null, "1.3", null, "4.2", null, "0.6", null, "24.1", null, "1.8", null, "8.5", null, "0.8", null, "42.4", null, "1.6", null, "78.8", null, "1.7", null, "75.9", null, "1.8", null, "72.0", null, "1.7", null, "18.6", null, "1.2", null, "15.9", null, "1.1", null, "11.9", null, "0.9", null, "4.5", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "372841", null, "10487", null, "16908", null, "2569", null, "22772", null, "2617", null, "24965", null, "3505", null, "25859", null, "3016", null, "22433", null, "2496", null, "27049", null, "2575", null, "29146", null, "3128", null, "27946", null, "3683", null, "25948", null, "2986", null, "23805", null, "2685", null, "23354", null, "2661", null, "23260", null, "2608", null, "24492", null, "2294", null, "17646", null, "1879", null, "13019", null, "1834", null, "11092", null, "1656", null, "5958", null, "1408", null, "7189", null, "1545", null, "47737", null, "4518", null, "16283", null, "2096", null, "80928", null, "6075", null, "32009", null, "3037", null, "158381", null, "6910", null, "303216", null, "9050", null, "291913", null, "9027", null, "278389", null, "8462", null, "79396", null, "4645", null, "68671", null, "4060", null, "54904", null, "3853", null, "24239", null, "2600", null, "38.1", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.5", null, "0.7", null, "6.1", null, "0.7", null, "6.7", null, "0.9", null, "6.9", null, "0.8", null, "6.0", null, "0.6", null, "7.3", null, "0.7", null, "7.8", null, "0.8", null, "7.5", null, "0.9", null, "7.0", null, "0.8", null, "6.4", null, "0.7", null, "6.3", null, "0.7", null, "6.2", null, "0.7", null, "6.6", null, "0.6", null, "4.7", null, "0.5", null, "3.5", null, "0.5", null, "3.0", null, "0.4", null, "1.6", null, "0.4", null, "1.9", null, "0.4", null, "12.8", null, "1.1", null, "4.4", null, "0.6", null, "21.7", null, "1.4", null, "8.6", null, "0.7", null, "42.5", null, "1.3", null, "81.3", null, "1.4", null, "78.3", null, "1.4", null, "74.7", null, "1.4", null, "21.3", null, "1.2", null, "18.4", null, "1.1", null, "14.7", null, "1.0", null, "6.5", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "06", "43"], ["5001900US0644", "Congressional District 44 (119th Congress), California", "742823", null, "20074", null, "38622", null, "4123", null, "41562", null, "4033", null, "50077", null, "4259", null, "50373", null, "3582", null, "50425", null, "4025", null, "47648", null, "3770", null, "52566", null, "4355", null, "52329", null, "4593", null, "50680", null, "4186", null, "45655", null, "3691", null, "51078", null, "4498", null, "47275", null, "4360", null, "44899", null, "4006", null, "39394", null, "3718", null, "31965", null, "3100", null, "21894", null, "2690", null, "14075", null, "2302", null, "12306", null, "1952", null, "91639", null, "6101", null, "29662", null, "2889", null, "159923", null, "7984", null, "71136", null, "5071", null, "304021", null, "11445", null, "602405", null, "17324", null, "582900", null, "17143", null, "552086", null, "16108", null, "164533", null, "8763", null, "144395", null, "7918", null, "119634", null, "7030", null, "48275", null, "4429", null, "38.7", null, "0.6", null, "96.0", null, "2.8", null, "60.3", null, "2.6", null, "25.8", null, "1.6", null, "34.5", null, "1.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.5", null, "5.6", null, "0.5", null, "6.7", null, "0.6", null, "6.8", null, "0.4", null, "6.8", null, "0.5", null, "6.4", null, "0.5", null, "7.1", null, "0.6", null, "7.0", null, "0.6", null, "6.8", null, "0.5", null, "6.1", null, "0.5", null, "6.9", null, "0.6", null, "6.4", null, "0.6", null, "6.0", null, "0.5", null, "5.3", null, "0.5", null, "4.3", null, "0.4", null, "2.9", null, "0.4", null, "1.9", null, "0.3", null, "1.7", null, "0.3", null, "12.3", null, "0.8", null, "4.0", null, "0.4", null, "21.5", null, "0.9", null, "9.6", null, "0.6", null, "40.9", null, "0.9", null, "81.1", null, "0.8", null, "78.5", null, "0.9", null, "74.3", null, "0.9", null, "22.1", null, "1.0", null, "19.4", null, "0.9", null, "16.1", null, "0.8", null, "6.5", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.4", null, "-888888888.0", "(X)", "363908", null, "10543", null, "17935", null, "2800", null, "20428", null, "3217", null, "26852", null, "3640", null, "27238", null, "2638", null, "24925", null, "2956", null, "23761", null, "2455", null, "27041", null, "3048", null, "25762", null, "2934", null, "25937", null, "3137", null, "20210", null, "2129", null, "26026", null, "3115", null, "23161", null, "3018", null, "20873", null, "2254", null, "18755", null, "2354", null, "16120", null, "2115", null, "9336", null, "1717", null, "5206", null, "1215", null, "4342", null, "1076", null, "47280", null, "4852", null, "14993", null, "2141", null, "80208", null, "5528", null, "37170", null, "3832", null, "154664", null, "6837", null, "293607", null, "9005", null, "283700", null, "9195", null, "266309", null, "8374", null, "74632", null, "4757", null, "64490", null, "4291", null, "53759", null, "4056", null, "18884", null, "2501", null, "37.6", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.9", null, "0.8", null, "5.6", null, "0.8", null, "7.4", null, "1.0", null, "7.5", null, "0.7", null, "6.8", null, "0.8", null, "6.5", null, "0.6", null, "7.4", null, "0.8", null, "7.1", null, "0.8", null, "7.1", null, "0.8", null, "5.6", null, "0.6", null, "7.2", null, "0.8", null, "6.4", null, "0.8", null, "5.7", null, "0.6", null, "5.2", null, "0.6", null, "4.4", null, "0.6", null, "2.6", null, "0.5", null, "1.4", null, "0.3", null, "1.2", null, "0.3", null, "13.0", null, "1.2", null, "4.1", null, "0.6", null, "22.0", null, "1.3", null, "10.2", null, "1.0", null, "42.5", null, "1.4", null, "80.7", null, "1.3", null, "78.0", null, "1.3", null, "73.2", null, "1.3", null, "20.5", null, "1.3", null, "17.7", null, "1.1", null, "14.8", null, "1.1", null, "5.2", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "378915", null, "12221", null, "20687", null, "2982", null, "21134", null, "2461", null, "23225", null, "2617", null, "23135", null, "2550", null, "25500", null, "3013", null, "23887", null, "2814", null, "25525", null, "2427", null, "26567", null, "2691", null, "24743", null, "2470", null, "25445", null, "2589", null, "25052", null, "2915", null, "24114", null, "2724", null, "24026", null, "2853", null, "20639", null, "2347", null, "15845", null, "1994", null, "12558", null, "1644", null, "8869", null, "1671", null, "7964", null, "1547", null, "44359", null, "3537", null, "14669", null, "2129", null, "79715", null, "5281", null, "33966", null, "3702", null, "149357", null, "7428", null, "308798", null, "10871", null, "299200", null, "10652", null, "285777", null, "9851", null, "89901", null, "5522", null, "79905", null, "5037", null, "65875", null, "4190", null, "29391", null, "2764", null, "39.9", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.7", null, "5.6", null, "0.6", null, "6.1", null, "0.7", null, "6.1", null, "0.6", null, "6.7", null, "0.7", null, "6.3", null, "0.7", null, "6.7", null, "0.6", null, "7.0", null, "0.7", null, "6.5", null, "0.6", null, "6.7", null, "0.7", null, "6.6", null, "0.8", null, "6.4", null, "0.7", null, "6.3", null, "0.7", null, "5.4", null, "0.6", null, "4.2", null, "0.5", null, "3.3", null, "0.4", null, "2.3", null, "0.4", null, "2.1", null, "0.4", null, "11.7", null, "0.9", null, "3.9", null, "0.5", null, "21.0", null, "1.2", null, "9.0", null, "0.9", null, "39.4", null, "1.3", null, "81.5", null, "1.1", null, "79.0", null, "1.2", null, "75.4", null, "1.2", null, "23.7", null, "1.2", null, "21.1", null, "1.1", null, "17.4", null, "1.0", null, "7.8", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "06", "44"], ["5001900US0645", "Congressional District 45 (119th Congress), California", "741928", null, "10499", null, "33018", null, "3246", null, "36992", null, "3697", null, "46957", null, "4784", null, "50758", null, "4313", null, "45520", null, "4067", null, "40604", null, "3695", null, "48748", null, "4764", null, "46967", null, "4029", null, "47514", null, "3913", null, "45104", null, "3389", null, "52725", null, "3349", null, "53597", null, "4396", null, "48673", null, "3569", null, "43352", null, "3550", null, "34737", null, "3343", null, "26307", null, "2657", null, "22581", null, "2486", null, "17774", null, "2445", null, "83949", null, "5303", null, "31609", null, "3313", null, "148576", null, "7298", null, "64669", null, "4577", null, "280111", null, "8450", null, "614591", null, "9400", null, "593352", null, "9501", null, "566580", null, "9691", null, "193424", null, "8033", null, "173054", null, "7385", null, "144751", null, "6277", null, "66662", null, "4639", null, "42.2", null, "1.0", null, "94.0", null, "2.8", null, "65.4", null, "2.3", null, "32.3", null, "1.7", null, "33.1", null, "1.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.5", null, "0.4", null, "5.0", null, "0.5", null, "6.3", null, "0.6", null, "6.8", null, "0.6", null, "6.1", null, "0.5", null, "5.5", null, "0.5", null, "6.6", null, "0.6", null, "6.3", null, "0.5", null, "6.4", null, "0.5", null, "6.1", null, "0.4", null, "7.1", null, "0.4", null, "7.2", null, "0.6", null, "6.6", null, "0.5", null, "5.8", null, "0.5", null, "4.7", null, "0.5", null, "3.5", null, "0.4", null, "3.0", null, "0.3", null, "2.4", null, "0.3", null, "11.3", null, "0.7", null, "4.3", null, "0.4", null, "20.0", null, "0.9", null, "8.7", null, "0.6", null, "37.8", null, "1.0", null, "82.8", null, "0.8", null, "80.0", null, "0.9", null, "76.4", null, "1.0", null, "26.1", null, "1.1", null, "23.3", null, "1.1", null, "19.5", null, "0.9", null, "9.0", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.7", null, "-888888888.0", "(X)", "359436", null, "8022", null, "15982", null, "1966", null, "17255", null, "2410", null, "23984", null, "3297", null, "25639", null, "2935", null, "22512", null, "2804", null, "19420", null, "2181", null, "23928", null, "2853", null, "23303", null, "2733", null, "24544", null, "2469", null, "22192", null, "2449", null, "24078", null, "2293", null, "27195", null, "2979", null, "24472", null, "2578", null, "21332", null, "2166", null, "15780", null, "1797", null, "11907", null, "1864", null, "9154", null, "1433", null, "6759", null, "1393", null, "41239", null, "3728", null, "16161", null, "2277", null, "73382", null, "4592", null, "31990", null, "2965", null, "139346", null, "5729", null, "296295", null, "6634", null, "286054", null, "6647", null, "273312", null, "6540", null, "89404", null, "4510", null, "78706", null, "4193", null, "64932", null, "3449", null, "27820", null, "2673", null, "41.5", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.4", null, "0.5", null, "4.8", null, "0.7", null, "6.7", null, "0.9", null, "7.1", null, "0.8", null, "6.3", null, "0.7", null, "5.4", null, "0.6", null, "6.7", null, "0.8", null, "6.5", null, "0.8", null, "6.8", null, "0.7", null, "6.2", null, "0.7", null, "6.7", null, "0.6", null, "7.6", null, "0.8", null, "6.8", null, "0.7", null, "5.9", null, "0.6", null, "4.4", null, "0.5", null, "3.3", null, "0.5", null, "2.5", null, "0.4", null, "1.9", null, "0.4", null, "11.5", null, "1.0", null, "4.5", null, "0.6", null, "20.4", null, "1.1", null, "8.9", null, "0.8", null, "38.8", null, "1.3", null, "82.4", null, "1.1", null, "79.6", null, "1.1", null, "76.0", null, "1.1", null, "24.9", null, "1.3", null, "21.9", null, "1.2", null, "18.1", null, "1.0", null, "7.7", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "382492", null, "7188", null, "17036", null, "2060", null, "19737", null, "2699", null, "22973", null, "2950", null, "25119", null, "2886", null, "23008", null, "2809", null, "21184", null, "2521", null, "24820", null, "3002", null, "23664", null, "2865", null, "22970", null, "2602", null, "22912", null, "1969", null, "28647", null, "2158", null, "26402", null, "2529", null, "24201", null, "2368", null, "22020", null, "2107", null, "18957", null, "2365", null, "14400", null, "1633", null, "13427", null, "1857", null, "11015", null, "1707", null, "42710", null, "3560", null, "15448", null, "2172", null, "75194", null, "4872", null, "32679", null, "3474", null, "140765", null, "6451", null, "318296", null, "6565", null, "307298", null, "6609", null, "293268", null, "6560", null, "104020", null, "4896", null, "94348", null, "4547", null, "79819", null, "3877", null, "38842", null, "2849", null, "43.1", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.5", null, "0.5", null, "5.2", null, "0.7", null, "6.0", null, "0.7", null, "6.6", null, "0.7", null, "6.0", null, "0.7", null, "5.5", null, "0.6", null, "6.5", null, "0.8", null, "6.2", null, "0.7", null, "6.0", null, "0.7", null, "6.0", null, "0.5", null, "7.5", null, "0.6", null, "6.9", null, "0.7", null, "6.3", null, "0.6", null, "5.8", null, "0.6", null, "5.0", null, "0.6", null, "3.8", null, "0.4", null, "3.5", null, "0.5", null, "2.9", null, "0.5", null, "11.2", null, "0.9", null, "4.0", null, "0.6", null, "19.7", null, "1.2", null, "8.5", null, "0.8", null, "36.8", null, "1.3", null, "83.2", null, "1.1", null, "80.3", null, "1.2", null, "76.7", null, "1.3", null, "27.2", null, "1.3", null, "24.7", null, "1.3", null, "20.9", null, "1.1", null, "10.2", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "06", "45"], ["5001900US0646", "Congressional District 46 (119th Congress), California", "763396", null, "10380", null, "43337", null, "4456", null, "42283", null, "4435", null, "51054", null, "3948", null, "53692", null, "3926", null, "54438", null, "4145", null, "63618", null, "4385", null, "69143", null, "4930", null, "51672", null, "4519", null, "52824", null, "4180", null, "47078", null, "3867", null, "50401", null, "3586", null, "44708", null, "3765", null, "40813", null, "3527", null, "33397", null, "2744", null, "24146", null, "2890", null, "20247", null, "2964", null, "10110", null, "1630", null, "10435", null, "1883", null, "93337", null, "4983", null, "32236", null, "2836", null, "168910", null, "7863", null, "75894", null, "4424", null, "345387", null, "8531", null, "616538", null, "9996", null, "594486", null, "9826", null, "561421", null, "9932", null, "139148", null, "6156", null, "122498", null, "6028", null, "98335", null, "5186", null, "40792", null, "3347", null, "35.3", null, "0.6", null, "106.6", null, "3.0", null, "53.9", null, "2.2", null, "19.8", null, "1.2", null, "34.0", null, "1.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.7", null, "0.6", null, "5.5", null, "0.6", null, "6.7", null, "0.5", null, "7.0", null, "0.5", null, "7.1", null, "0.5", null, "8.3", null, "0.6", null, "9.1", null, "0.6", null, "6.8", null, "0.6", null, "6.9", null, "0.5", null, "6.2", null, "0.5", null, "6.6", null, "0.5", null, "5.9", null, "0.5", null, "5.3", null, "0.5", null, "4.4", null, "0.4", null, "3.2", null, "0.4", null, "2.7", null, "0.4", null, "1.3", null, "0.2", null, "1.4", null, "0.2", null, "12.2", null, "0.6", null, "4.2", null, "0.4", null, "22.1", null, "0.9", null, "9.9", null, "0.6", null, "45.2", null, "0.9", null, "80.8", null, "0.9", null, "77.9", null, "0.9", null, "73.5", null, "1.0", null, "18.2", null, "0.9", null, "16.0", null, "0.8", null, "12.9", null, "0.7", null, "5.3", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.7", null, "-888888888.0", "(X)", "393818", null, "7511", null, "25498", null, "3068", null, "23216", null, "3135", null, "27474", null, "2891", null, "26560", null, "2665", null, "27484", null, "2855", null, "34084", null, "3176", null, "35885", null, "3135", null, "26623", null, "2757", null, "28737", null, "3056", null, "23078", null, "2712", null, "25692", null, "2390", null, "22456", null, "2708", null, "21419", null, "2546", null, "16845", null, "1756", null, "11099", null, "1644", null, "9035", null, "1658", null, "3960", null, "989", null, "4673", null, "1075", null, "50690", null, "3677", null, "15672", null, "2043", null, "91860", null, "5227", null, "38372", null, "2994", null, "179373", null, "6114", null, "313300", null, "6455", null, "301958", null, "6429", null, "285269", null, "6283", null, "67031", null, "3686", null, "57441", null, "3643", null, "45612", null, "3106", null, "17668", null, "2080", null, "34.6", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.5", null, "0.7", null, "5.9", null, "0.8", null, "7.0", null, "0.7", null, "6.7", null, "0.7", null, "7.0", null, "0.7", null, "8.7", null, "0.8", null, "9.1", null, "0.8", null, "6.8", null, "0.7", null, "7.3", null, "0.8", null, "5.9", null, "0.7", null, "6.5", null, "0.6", null, "5.7", null, "0.7", null, "5.4", null, "0.6", null, "4.3", null, "0.4", null, "2.8", null, "0.4", null, "2.3", null, "0.4", null, "1.0", null, "0.3", null, "1.2", null, "0.3", null, "12.9", null, "0.9", null, "4.0", null, "0.5", null, "23.3", null, "1.1", null, "9.7", null, "0.7", null, "45.5", null, "1.4", null, "79.6", null, "1.1", null, "76.7", null, "1.1", null, "72.4", null, "1.2", null, "17.0", null, "1.0", null, "14.6", null, "1.0", null, "11.6", null, "0.8", null, "4.5", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "369578", null, "7370", null, "17839", null, "2588", null, "19067", null, "2994", null, "23580", null, "2952", null, "27132", null, "2725", null, "26954", null, "3138", null, "29534", null, "2872", null, "33258", null, "3254", null, "25049", null, "2683", null, "24087", null, "2647", null, "24000", null, "2288", null, "24709", null, "2427", null, "22252", null, "2428", null, "19394", null, "2304", null, "16552", null, "1921", null, "13047", null, "2009", null, "11212", null, "1757", null, "6150", null, "1225", null, "5762", null, "1181", null, "42647", null, "3719", null, "16564", null, "2111", null, "77050", null, "4715", null, "37522", null, "3565", null, "166014", null, "6000", null, "303238", null, "7295", null, "292528", null, "7218", null, "276152", null, "7083", null, "72117", null, "3959", null, "65057", null, "3737", null, "52723", null, "3212", null, "23124", null, "1904", null, "36.2", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.8", null, "0.7", null, "5.2", null, "0.8", null, "6.4", null, "0.8", null, "7.3", null, "0.7", null, "7.3", null, "0.8", null, "8.0", null, "0.7", null, "9.0", null, "0.9", null, "6.8", null, "0.7", null, "6.5", null, "0.7", null, "6.5", null, "0.6", null, "6.7", null, "0.7", null, "6.0", null, "0.6", null, "5.2", null, "0.6", null, "4.5", null, "0.5", null, "3.5", null, "0.6", null, "3.0", null, "0.5", null, "1.7", null, "0.3", null, "1.6", null, "0.3", null, "11.5", null, "1.0", null, "4.5", null, "0.6", null, "20.8", null, "1.2", null, "10.2", null, "0.9", null, "44.9", null, "1.1", null, "82.0", null, "1.2", null, "79.2", null, "1.2", null, "74.7", null, "1.3", null, "19.5", null, "1.1", null, "17.6", null, "1.0", null, "14.3", null, "0.9", null, "6.3", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "06", "46"], ["5001900US0647", "Congressional District 47 (119th Congress), California", "756257", null, "4370", null, "37946", null, "3923", null, "37576", null, "4041", null, "40989", null, "3657", null, "51987", null, "3517", null, "52396", null, "5049", null, "59070", null, "4240", null, "56654", null, "4822", null, "50486", null, "5114", null, "55858", null, "4927", null, "46163", null, "3178", null, "45240", null, "4148", null, "45979", null, "3974", null, "44572", null, "4402", null, "42322", null, "3683", null, "31897", null, "2955", null, "27302", null, "2641", null, "14087", null, "2141", null, "15733", null, "2078", null, "78565", null, "5263", null, "27257", null, "2731", null, "143768", null, "7611", null, "77126", null, "5234", null, "326451", null, "7386", null, "632464", null, "7762", null, "612489", null, "8167", null, "577501", null, "8145", null, "175913", null, "6881", null, "155523", null, "6110", null, "131341", null, "5379", null, "57122", null, "3872", null, "39.1", null, "0.8", null, "93.9", null, "3.3", null, "57.2", null, "2.3", null, "27.3", null, "1.3", null, "29.9", null, "1.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.0", null, "0.5", null, "5.0", null, "0.5", null, "5.4", null, "0.5", null, "6.9", null, "0.5", null, "6.9", null, "0.7", null, "7.8", null, "0.6", null, "7.5", null, "0.6", null, "6.7", null, "0.7", null, "7.4", null, "0.7", null, "6.1", null, "0.4", null, "6.0", null, "0.5", null, "6.1", null, "0.5", null, "5.9", null, "0.6", null, "5.6", null, "0.5", null, "4.2", null, "0.4", null, "3.6", null, "0.4", null, "1.9", null, "0.3", null, "2.1", null, "0.3", null, "10.4", null, "0.7", null, "3.6", null, "0.4", null, "19.0", null, "1.0", null, "10.2", null, "0.7", null, "43.2", null, "0.9", null, "83.6", null, "0.9", null, "81.0", null, "1.0", null, "76.4", null, "1.0", null, "23.3", null, "0.9", null, "20.6", null, "0.8", null, "17.4", null, "0.7", null, "7.6", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.2", null, "-888888888.0", "(X)", "366245", null, "6842", null, "17176", null, "2631", null, "19828", null, "2842", null, "20430", null, "2742", null, "25961", null, "2628", null, "24307", null, "3370", null, "28016", null, "2886", null, "29333", null, "3027", null, "23651", null, "3243", null, "27117", null, "2977", null, "22642", null, "2093", null, "23887", null, "2817", null, "23769", null, "3090", null, "21587", null, "2753", null, "18895", null, "2358", null, "14144", null, "1750", null, "13423", null, "1931", null, "6227", null, "1271", null, "5852", null, "941", null, "40258", null, "3585", null, "13741", null, "2018", null, "71175", null, "4765", null, "36527", null, "3417", null, "158385", null, "6236", null, "304907", null, "7254", null, "295070", null, "7307", null, "278988", null, "7373", null, "80128", null, "4173", null, "69850", null, "3611", null, "58541", null, "2948", null, "25502", null, "2227", null, "38.7", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.7", null, "0.7", null, "5.4", null, "0.8", null, "5.6", null, "0.7", null, "7.1", null, "0.7", null, "6.6", null, "0.9", null, "7.6", null, "0.8", null, "8.0", null, "0.8", null, "6.5", null, "0.9", null, "7.4", null, "0.8", null, "6.2", null, "0.6", null, "6.5", null, "0.8", null, "6.5", null, "0.8", null, "5.9", null, "0.7", null, "5.2", null, "0.6", null, "3.9", null, "0.5", null, "3.7", null, "0.5", null, "1.7", null, "0.3", null, "1.6", null, "0.3", null, "11.0", null, "0.9", null, "3.8", null, "0.6", null, "19.4", null, "1.3", null, "10.0", null, "0.9", null, "43.2", null, "1.3", null, "83.3", null, "1.2", null, "80.6", null, "1.3", null, "76.2", null, "1.4", null, "21.9", null, "1.1", null, "19.1", null, "1.0", null, "16.0", null, "0.8", null, "7.0", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "390012", null, "7080", null, "20770", null, "2673", null, "17748", null, "2834", null, "20559", null, "2603", null, "26026", null, "2591", null, "28089", null, "4092", null, "31054", null, "3245", null, "27321", null, "2884", null, "26835", null, "3433", null, "28741", null, "3287", null, "23521", null, "2306", null, "21353", null, "2387", null, "22210", null, "2492", null, "22985", null, "2712", null, "23427", null, "2353", null, "17753", null, "2276", null, "13879", null, "1750", null, "7860", null, "1339", null, "9881", null, "1903", null, "38307", null, "3689", null, "13516", null, "2333", null, "72593", null, "5460", null, "40599", null, "4286", null, "168066", null, "6203", null, "327557", null, "6629", null, "317419", null, "6643", null, "298513", null, "6597", null, "95785", null, "4180", null, "85673", null, "3912", null, "72800", null, "3822", null, "31620", null, "2637", null, "39.4", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.3", null, "0.7", null, "4.6", null, "0.7", null, "5.3", null, "0.7", null, "6.7", null, "0.6", null, "7.2", null, "1.0", null, "8.0", null, "0.8", null, "7.0", null, "0.8", null, "6.9", null, "0.9", null, "7.4", null, "0.8", null, "6.0", null, "0.6", null, "5.5", null, "0.6", null, "5.7", null, "0.6", null, "5.9", null, "0.7", null, "6.0", null, "0.6", null, "4.6", null, "0.6", null, "3.6", null, "0.5", null, "2.0", null, "0.3", null, "2.5", null, "0.5", null, "9.8", null, "0.9", null, "3.5", null, "0.6", null, "18.6", null, "1.3", null, "10.4", null, "1.0", null, "43.1", null, "1.3", null, "84.0", null, "1.1", null, "81.4", null, "1.3", null, "76.5", null, "1.3", null, "24.6", null, "1.1", null, "22.0", null, "1.0", null, "18.7", null, "0.9", null, "8.1", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "06", "47"], ["5001900US0648", "Congressional District 48 (119th Congress), California", "768439", null, "13186", null, "50766", null, "4962", null, "44835", null, "5303", null, "54576", null, "4575", null, "49305", null, "4283", null, "44207", null, "4307", null, "38494", null, "4196", null, "55256", null, "5448", null, "54820", null, "5060", null, "59462", null, "5314", null, "41817", null, "3691", null, "46597", null, "4084", null, "50385", null, "4137", null, "49251", null, "4897", null, "43081", null, "4085", null, "31938", null, "2683", null, "26152", null, "3098", null, "15242", null, "2282", null, "12255", null, "1764", null, "99411", null, "7381", null, "32375", null, "2899", null, "182552", null, "10360", null, "61137", null, "4729", null, "301544", null, "9429", null, "606498", null, "11803", null, "585887", null, "12024", null, "558159", null, "11316", null, "177919", null, "8828", null, "159647", null, "7729", null, "128668", null, "7150", null, "53649", null, "4584", null, "39.2", null, "1.1", null, "97.0", null, "2.8", null, "68.1", null, "3.1", null, "28.1", null, "1.9", null, "39.9", null, "2.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.6", null, "0.6", null, "5.8", null, "0.7", null, "7.1", null, "0.6", null, "6.4", null, "0.5", null, "5.8", null, "0.6", null, "5.0", null, "0.5", null, "7.2", null, "0.7", null, "7.1", null, "0.7", null, "7.7", null, "0.7", null, "5.4", null, "0.5", null, "6.1", null, "0.5", null, "6.6", null, "0.5", null, "6.4", null, "0.6", null, "5.6", null, "0.5", null, "4.2", null, "0.4", null, "3.4", null, "0.4", null, "2.0", null, "0.3", null, "1.6", null, "0.2", null, "12.9", null, "0.9", null, "4.2", null, "0.4", null, "23.8", null, "1.2", null, "8.0", null, "0.6", null, "39.2", null, "0.9", null, "78.9", null, "1.1", null, "76.2", null, "1.2", null, "72.6", null, "1.2", null, "23.2", null, "1.2", null, "20.8", null, "1.1", null, "16.7", null, "1.0", null, "7.0", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.1", null, "-888888888.0", "(X)", "378442", null, "8074", null, "26471", null, "3900", null, "22768", null, "3210", null, "25478", null, "3014", null, "24629", null, "3352", null, "21945", null, "3059", null, "19265", null, "2614", null, "27966", null, "3581", null, "27188", null, "3011", null, "31379", null, "3585", null, "20394", null, "2085", null, "22708", null, "2821", null, "24387", null, "3007", null, "23881", null, "2804", null, "21834", null, "2319", null, "15016", null, "1822", null, "11539", null, "1574", null, "6600", null, "1340", null, "4994", null, "883", null, "48246", null, "3915", null, "15079", null, "2169", null, "89796", null, "6162", null, "31495", null, "3604", null, "152372", null, "6627", null, "298087", null, "8049", null, "288646", null, "7722", null, "273942", null, "7324", null, "83864", null, "4422", null, "75539", null, "3904", null, "59983", null, "3714", null, "23133", null, "2277", null, "38.8", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "7.0", null, "1.0", null, "6.0", null, "0.8", null, "6.7", null, "0.8", null, "6.5", null, "0.9", null, "5.8", null, "0.8", null, "5.1", null, "0.7", null, "7.4", null, "0.9", null, "7.2", null, "0.8", null, "8.3", null, "0.9", null, "5.4", null, "0.5", null, "6.0", null, "0.7", null, "6.4", null, "0.8", null, "6.3", null, "0.7", null, "5.8", null, "0.6", null, "4.0", null, "0.5", null, "3.0", null, "0.4", null, "1.7", null, "0.4", null, "1.3", null, "0.2", null, "12.7", null, "1.0", null, "4.0", null, "0.6", null, "23.7", null, "1.5", null, "8.3", null, "0.9", null, "40.3", null, "1.4", null, "78.8", null, "1.5", null, "76.3", null, "1.5", null, "72.4", null, "1.5", null, "22.2", null, "1.2", null, "20.0", null, "1.0", null, "15.8", null, "1.0", null, "6.1", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "389997", null, "9199", null, "24295", null, "3080", null, "22067", null, "3740", null, "29098", null, "3216", null, "24676", null, "2802", null, "22262", null, "3036", null, "19229", null, "2583", null, "27290", null, "3087", null, "27632", null, "2909", null, "28083", null, "2594", null, "21423", null, "2478", null, "23889", null, "2345", null, "25998", null, "2383", null, "25370", null, "3114", null, "21247", null, "2579", null, "16922", null, "1723", null, "14613", null, "2367", null, "8642", null, "1694", null, "7261", null, "1403", null, "51165", null, "5232", null, "17296", null, "1983", null, "92756", null, "6944", null, "29642", null, "3357", null, "149172", null, "6251", null, "308411", null, "7116", null, "297241", null, "7286", null, "284217", null, "7018", null, "94055", null, "5804", null, "84108", null, "5025", null, "68685", null, "4419", null, "30516", null, "3149", null, "39.7", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.2", null, "0.7", null, "5.7", null, "0.9", null, "7.5", null, "0.8", null, "6.3", null, "0.7", null, "5.7", null, "0.7", null, "4.9", null, "0.7", null, "7.0", null, "0.8", null, "7.1", null, "0.7", null, "7.2", null, "0.7", null, "5.5", null, "0.6", null, "6.1", null, "0.6", null, "6.7", null, "0.6", null, "6.5", null, "0.8", null, "5.4", null, "0.6", null, "4.3", null, "0.5", null, "3.7", null, "0.6", null, "2.2", null, "0.4", null, "1.9", null, "0.4", null, "13.1", null, "1.2", null, "4.4", null, "0.5", null, "23.8", null, "1.5", null, "7.6", null, "0.8", null, "38.2", null, "1.3", null, "79.1", null, "1.4", null, "76.2", null, "1.5", null, "72.9", null, "1.5", null, "24.1", null, "1.5", null, "21.6", null, "1.3", null, "17.6", null, "1.2", null, "7.8", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "06", "48"], ["5001900US0649", "Congressional District 49 (119th Congress), California", "748243", null, "8926", null, "35056", null, "3748", null, "39139", null, "4562", null, "44625", null, "4792", null, "48477", null, "4298", null, "50614", null, "4531", null, "45840", null, "4754", null, "41629", null, "4473", null, "47361", null, "4551", null, "49317", null, "4949", null, "48763", null, "3804", null, "51018", null, "4332", null, "52011", null, "4770", null, "50112", null, "4937", null, "44218", null, "3949", null, "40046", null, "3528", null, "27481", null, "3108", null, "16410", null, "2192", null, "16126", null, "2502", null, "83764", null, "7138", null, "27424", null, "3107", null, "146244", null, "8423", null, "71667", null, "5592", null, "283238", null, "9668", null, "621673", null, "9021", null, "601999", null, "9106", null, "570620", null, "9093", null, "194393", null, "10172", null, "174347", null, "8895", null, "144281", null, "7771", null, "60017", null, "4899", null, "42.3", null, "1.0", null, "105.3", null, "3.1", null, "63.5", null, "2.9", null, "31.5", null, "2.1", null, "32.0", null, "2.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.7", null, "0.5", null, "5.2", null, "0.6", null, "6.0", null, "0.6", null, "6.5", null, "0.6", null, "6.8", null, "0.6", null, "6.1", null, "0.6", null, "5.6", null, "0.6", null, "6.3", null, "0.6", null, "6.6", null, "0.7", null, "6.5", null, "0.5", null, "6.8", null, "0.6", null, "7.0", null, "0.6", null, "6.7", null, "0.7", null, "5.9", null, "0.5", null, "5.4", null, "0.5", null, "3.7", null, "0.4", null, "2.2", null, "0.3", null, "2.2", null, "0.3", null, "11.2", null, "0.9", null, "3.7", null, "0.4", null, "19.5", null, "1.0", null, "9.6", null, "0.7", null, "37.9", null, "1.2", null, "83.1", null, "1.0", null, "80.5", null, "1.0", null, "76.3", null, "1.1", null, "26.0", null, "1.4", null, "23.3", null, "1.2", null, "19.3", null, "1.1", null, "8.0", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.3", null, "-888888888.0", "(X)", "383785", null, "7579", null, "17902", null, "2600", null, "20479", null, "2744", null, "24628", null, "3124", null, "28435", null, "3496", null, "31998", null, "3372", null, "23659", null, "2874", null, "22363", null, "3083", null, "24272", null, "3056", null, "25036", null, "3017", null, "24011", null, "2542", null, "24936", null, "2870", null, "25053", null, "2780", null, "24105", null, "3138", null, "21558", null, "2434", null, "18920", null, "2245", null, "12219", null, "1872", null, "7046", null, "1343", null, "7165", null, "1516", null, "45107", null, "3936", null, "15907", null, "2368", null, "78916", null, "5046", null, "44526", null, "3670", null, "155763", null, "7744", null, "316427", null, "6868", null, "304869", null, "6617", null, "284714", null, "6479", null, "91013", null, "5373", null, "81207", null, "4880", null, "66908", null, "4043", null, "26430", null, "2675", null, "39.7", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.7", null, "0.7", null, "5.3", null, "0.7", null, "6.4", null, "0.8", null, "7.4", null, "0.9", null, "8.3", null, "0.8", null, "6.2", null, "0.7", null, "5.8", null, "0.8", null, "6.3", null, "0.8", null, "6.5", null, "0.8", null, "6.3", null, "0.7", null, "6.5", null, "0.7", null, "6.5", null, "0.7", null, "6.3", null, "0.8", null, "5.6", null, "0.6", null, "4.9", null, "0.6", null, "3.2", null, "0.5", null, "1.8", null, "0.4", null, "1.9", null, "0.4", null, "11.8", null, "1.0", null, "4.1", null, "0.6", null, "20.6", null, "1.2", null, "11.6", null, "0.9", null, "40.6", null, "1.6", null, "82.4", null, "1.0", null, "79.4", null, "1.2", null, "74.2", null, "1.3", null, "23.7", null, "1.5", null, "21.2", null, "1.3", null, "17.4", null, "1.1", null, "6.9", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "364458", null, "6702", null, "17154", null, "2456", null, "18660", null, "2940", null, "19997", null, "3090", null, "20042", null, "2718", null, "18616", null, "2445", null, "22181", null, "3103", null, "19266", null, "2427", null, "23089", null, "2352", null, "24281", null, "3157", null, "24752", null, "2419", null, "26082", null, "2577", null, "26958", null, "2933", null, "26007", null, "3070", null, "22660", null, "2419", null, "21126", null, "2076", null, "15262", null, "1895", null, "9364", null, "1571", null, "8961", null, "1661", null, "38657", null, "4532", null, "11517", null, "1925", null, "67328", null, "5751", null, "27141", null, "3211", null, "127475", null, "5175", null, "305246", null, "6734", null, "297130", null, "6490", null, "285906", null, "6258", null, "103380", null, "5953", null, "93140", null, "5192", null, "77373", null, "4443", null, "33587", null, "2956", null, "44.8", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.7", null, "0.7", null, "5.1", null, "0.8", null, "5.5", null, "0.8", null, "5.5", null, "0.7", null, "5.1", null, "0.7", null, "6.1", null, "0.8", null, "5.3", null, "0.7", null, "6.3", null, "0.7", null, "6.7", null, "0.9", null, "6.8", null, "0.6", null, "7.2", null, "0.7", null, "7.4", null, "0.8", null, "7.1", null, "0.8", null, "6.2", null, "0.7", null, "5.8", null, "0.6", null, "4.2", null, "0.5", null, "2.6", null, "0.4", null, "2.5", null, "0.4", null, "10.6", null, "1.2", null, "3.2", null, "0.5", null, "18.5", null, "1.4", null, "7.4", null, "0.9", null, "35.0", null, "1.4", null, "83.8", null, "1.4", null, "81.5", null, "1.4", null, "78.4", null, "1.5", null, "28.4", null, "1.6", null, "25.6", null, "1.4", null, "21.2", null, "1.2", null, "9.2", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "06", "49"], ["5001900US0650", "Congressional District 50 (119th Congress), California", "759815", null, "17940", null, "32642", null, "3642", null, "34745", null, "3900", null, "41534", null, "4379", null, "47393", null, "3620", null, "50885", null, "4102", null, "67364", null, "5079", null, "69487", null, "5312", null, "59070", null, "4837", null, "58051", null, "5281", null, "47660", null, "3871", null, "41099", null, "3947", null, "38964", null, "3327", null, "40867", null, "3658", null, "38836", null, "3098", null, "34851", null, "3166", null, "27364", null, "2989", null, "13979", null, "1833", null, "15024", null, "2706", null, "76279", null, "5882", null, "22981", null, "2269", null, "131902", null, "7687", null, "75297", null, "4634", null, "352250", null, "11126", null, "644953", null, "15345", null, "627913", null, "14729", null, "593258", null, "14045", null, "170921", null, "7092", null, "154454", null, "6621", null, "130054", null, "6109", null, "56367", null, "4023", null, "37.9", null, "0.7", null, "98.7", null, "3.2", null, "52.6", null, "2.3", null, "26.1", null, "1.5", null, "26.5", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.3", null, "0.5", null, "4.6", null, "0.5", null, "5.5", null, "0.6", null, "6.2", null, "0.5", null, "6.7", null, "0.5", null, "8.9", null, "0.7", null, "9.1", null, "0.6", null, "7.8", null, "0.6", null, "7.6", null, "0.7", null, "6.3", null, "0.5", null, "5.4", null, "0.5", null, "5.1", null, "0.4", null, "5.4", null, "0.5", null, "5.1", null, "0.4", null, "4.6", null, "0.4", null, "3.6", null, "0.4", null, "1.8", null, "0.2", null, "2.0", null, "0.3", null, "10.0", null, "0.7", null, "3.0", null, "0.3", null, "17.4", null, "0.8", null, "9.9", null, "0.6", null, "46.4", null, "1.0", null, "84.9", null, "0.8", null, "82.6", null, "0.8", null, "78.1", null, "0.9", null, "22.5", null, "0.9", null, "20.3", null, "0.9", null, "17.1", null, "0.8", null, "7.4", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.0", null, "-888888888.0", "(X)", "377501", null, "10831", null, "16631", null, "2481", null, "18717", null, "2743", null, "22267", null, "3542", null, "22014", null, "2856", null, "25813", null, "3580", null, "33604", null, "3563", null, "35475", null, "3299", null, "31845", null, "3111", null, "29644", null, "3649", null, "23759", null, "2529", null, "20289", null, "2345", null, "19462", null, "2057", null, "19806", null, "2446", null, "18068", null, "1843", null, "15179", null, "2098", null, "12512", null, "1918", null, "6027", null, "1063", null, "6389", null, "1345", null, "40984", null, "4628", null, "11190", null, "1683", null, "68805", null, "5650", null, "36637", null, "3978", null, "178395", null, "7186", null, "316416", null, "8538", null, "308696", null, "8301", null, "292398", null, "7697", null, "77981", null, "4037", null, "69894", null, "3723", null, "58175", null, "3281", null, "24928", null, "2307", null, "37.1", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.4", null, "0.6", null, "5.0", null, "0.7", null, "5.9", null, "0.9", null, "5.8", null, "0.7", null, "6.8", null, "0.9", null, "8.9", null, "0.9", null, "9.4", null, "0.8", null, "8.4", null, "0.8", null, "7.9", null, "0.9", null, "6.3", null, "0.6", null, "5.4", null, "0.6", null, "5.2", null, "0.5", null, "5.2", null, "0.6", null, "4.8", null, "0.5", null, "4.0", null, "0.6", null, "3.3", null, "0.5", null, "1.6", null, "0.3", null, "1.7", null, "0.4", null, "10.9", null, "1.1", null, "3.0", null, "0.4", null, "18.2", null, "1.2", null, "9.7", null, "1.0", null, "47.3", null, "1.4", null, "83.8", null, "1.3", null, "81.8", null, "1.2", null, "77.5", null, "1.3", null, "20.7", null, "1.1", null, "18.5", null, "1.1", null, "15.4", null, "0.9", null, "6.6", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "382314", null, "10975", null, "16011", null, "2506", null, "16028", null, "2352", null, "19267", null, "2549", null, "25379", null, "2551", null, "25072", null, "2826", null, "33760", null, "2652", null, "34012", null, "3241", null, "27225", null, "2662", null, "28407", null, "3394", null, "23901", null, "2238", null, "20810", null, "2589", null, "19502", null, "2032", null, "21061", null, "2085", null, "20768", null, "2317", null, "19672", null, "1964", null, "14852", null, "1852", null, "7952", null, "1438", null, "8635", null, "1748", null, "35295", null, "3472", null, "11791", null, "1777", null, "63097", null, "4764", null, "38660", null, "3380", null, "173855", null, "6657", null, "328537", null, "9328", null, "319217", null, "8851", null, "300860", null, "8840", null, "92940", null, "4313", null, "84560", null, "4140", null, "71879", null, "3759", null, "31439", null, "2571", null, "38.8", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.2", null, "0.6", null, "4.2", null, "0.6", null, "5.0", null, "0.7", null, "6.6", null, "0.6", null, "6.6", null, "0.7", null, "8.8", null, "0.7", null, "8.9", null, "0.8", null, "7.1", null, "0.7", null, "7.4", null, "0.9", null, "6.3", null, "0.6", null, "5.4", null, "0.6", null, "5.1", null, "0.5", null, "5.5", null, "0.5", null, "5.4", null, "0.6", null, "5.1", null, "0.5", null, "3.9", null, "0.5", null, "2.1", null, "0.4", null, "2.3", null, "0.4", null, "9.2", null, "0.8", null, "3.1", null, "0.4", null, "16.5", null, "1.0", null, "10.1", null, "0.8", null, "45.5", null, "1.2", null, "85.9", null, "1.0", null, "83.5", null, "1.0", null, "78.7", null, "1.1", null, "24.3", null, "1.1", null, "22.1", null, "1.1", null, "18.8", null, "0.9", null, "8.2", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "06", "50"], ["5001900US0651", "Congressional District 51 (119th Congress), California", "766304", null, "18633", null, "41402", null, "4135", null, "43454", null, "4234", null, "44048", null, "4062", null, "46632", null, "3961", null, "54311", null, "5154", null, "63080", null, "5057", null, "71195", null, "5579", null, "63396", null, "5304", null, "51118", null, "4992", null, "44393", null, "3500", null, "44166", null, "3893", null, "40945", null, "3770", null, "41646", null, "3928", null, "39019", null, "4020", null, "29000", null, "2851", null, "23062", null, "2588", null, "11854", null, "1631", null, "13583", null, "2183", null, "87502", null, "5472", null, "21322", null, "2255", null, "150226", null, "8186", null, "79621", null, "6089", null, "349732", null, "12160", null, "629573", null, "15945", null, "616078", null, "16079", null, "578215", null, "15018", null, "158164", null, "7619", null, "143930", null, "7155", null, "116518", null, "5820", null, "48499", null, "3818", null, "36.5", null, "0.8", null, "102.6", null, "3.7", null, "53.4", null, "2.3", null, "23.3", null, "1.3", null, "30.1", null, "1.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.5", null, "5.7", null, "0.5", null, "5.7", null, "0.5", null, "6.1", null, "0.5", null, "7.1", null, "0.7", null, "8.2", null, "0.7", null, "9.3", null, "0.6", null, "8.3", null, "0.7", null, "6.7", null, "0.7", null, "5.8", null, "0.4", null, "5.8", null, "0.5", null, "5.3", null, "0.5", null, "5.4", null, "0.5", null, "5.1", null, "0.5", null, "3.8", null, "0.4", null, "3.0", null, "0.3", null, "1.5", null, "0.2", null, "1.8", null, "0.3", null, "11.4", null, "0.6", null, "2.8", null, "0.3", null, "19.6", null, "0.9", null, "10.4", null, "0.7", null, "45.6", null, "1.1", null, "82.2", null, "0.9", null, "80.4", null, "0.9", null, "75.5", null, "0.9", null, "20.6", null, "0.9", null, "18.8", null, "0.8", null, "15.2", null, "0.7", null, "6.3", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.5", null, "-888888888.0", "(X)", "388118", null, "11307", null, "19737", null, "2722", null, "20983", null, "2565", null, "23459", null, "2996", null, "23728", null, "2819", null, "29627", null, "4108", null, "31883", null, "3277", null, "37261", null, "3755", null, "34535", null, "3582", null, "26999", null, "3217", null, "22942", null, "2458", null, "21947", null, "2362", null, "20970", null, "2017", null, "20931", null, "2349", null, "19271", null, "2298", null, "13585", null, "1737", null, "10341", null, "1682", null, "4988", null, "966", null, "4931", null, "1095", null, "44442", null, "3599", null, "10342", null, "1860", null, "74521", null, "4948", null, "43013", null, "4364", null, "184033", null, "7828", null, "319968", null, "9409", null, "313597", null, "9443", null, "293031", null, "8997", null, "74047", null, "4379", null, "65917", null, "4116", null, "53116", null, "3344", null, "20260", null, "2087", null, "35.9", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.1", null, "0.7", null, "5.4", null, "0.6", null, "6.0", null, "0.7", null, "6.1", null, "0.7", null, "7.6", null, "1.0", null, "8.2", null, "0.9", null, "9.6", null, "0.9", null, "8.9", null, "0.9", null, "7.0", null, "0.8", null, "5.9", null, "0.6", null, "5.7", null, "0.6", null, "5.4", null, "0.5", null, "5.4", null, "0.6", null, "5.0", null, "0.6", null, "3.5", null, "0.4", null, "2.7", null, "0.4", null, "1.3", null, "0.2", null, "1.3", null, "0.3", null, "11.5", null, "0.8", null, "2.7", null, "0.5", null, "19.2", null, "1.1", null, "11.1", null, "1.0", null, "47.4", null, "1.4", null, "82.4", null, "1.1", null, "80.8", null, "1.1", null, "75.5", null, "1.1", null, "19.1", null, "1.1", null, "17.0", null, "1.0", null, "13.7", null, "0.8", null, "5.2", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "378186", null, "11787", null, "21665", null, "2640", null, "22471", null, "2993", null, "20589", null, "2617", null, "22904", null, "2406", null, "24684", null, "3182", null, "31197", null, "3179", null, "33934", null, "2990", null, "28861", null, "2733", null, "24119", null, "2938", null, "21451", null, "2797", null, "22219", null, "2511", null, "19975", null, "2593", null, "20715", null, "2299", null, "19748", null, "2447", null, "15415", null, "1959", null, "12721", null, "1413", null, "6866", null, "1225", null, "8652", null, "1606", null, "43060", null, "3746", null, "10980", null, "1616", null, "75705", null, "5394", null, "36608", null, "3764", null, "165699", null, "7058", null, "309605", null, "9887", null, "302481", null, "9843", null, "285184", null, "9275", null, "84117", null, "4153", null, "78013", null, "3976", null, "63402", null, "3293", null, "28239", null, "2355", null, "37.1", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.7", null, "0.7", null, "5.9", null, "0.7", null, "5.4", null, "0.7", null, "6.1", null, "0.6", null, "6.5", null, "0.8", null, "8.2", null, "0.8", null, "9.0", null, "0.7", null, "7.6", null, "0.7", null, "6.4", null, "0.8", null, "5.7", null, "0.7", null, "5.9", null, "0.7", null, "5.3", null, "0.6", null, "5.5", null, "0.6", null, "5.2", null, "0.6", null, "4.1", null, "0.5", null, "3.4", null, "0.4", null, "1.8", null, "0.3", null, "2.3", null, "0.4", null, "11.4", null, "0.9", null, "2.9", null, "0.4", null, "20.0", null, "1.2", null, "9.7", null, "0.9", null, "43.8", null, "1.4", null, "81.9", null, "1.2", null, "80.0", null, "1.2", null, "75.4", null, "1.2", null, "22.2", null, "0.9", null, "20.6", null, "0.9", null, "16.8", null, "0.8", null, "7.5", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "06", "51"], ["5001900US0652", "Congressional District 52 (119th Congress), California", "756396", null, "16262", null, "42115", null, "4428", null, "46119", null, "4998", null, "51028", null, "4514", null, "51644", null, "3792", null, "52333", null, "4359", null, "54193", null, "4502", null, "61442", null, "4628", null, "58223", null, "4876", null, "51238", null, "4429", null, "46668", null, "3719", null, "48999", null, "4373", null, "41140", null, "3736", null, "42235", null, "3695", null, "36503", null, "3139", null, "24948", null, "2808", null, "21655", null, "2459", null, "11517", null, "1735", null, "14396", null, "1886", null, "97147", null, "5969", null, "31843", null, "3028", null, "171105", null, "8934", null, "72134", null, "5162", null, "329073", null, "10239", null, "606891", null, "12902", null, "585291", null, "12791", null, "557660", null, "12416", null, "151254", null, "6693", null, "133365", null, "6124", null, "109019", null, "4869", null, "47568", null, "3014", null, "36.7", null, "0.8", null, "102.4", null, "3.1", null, "58.8", null, "2.3", null, "22.9", null, "1.2", null, "35.9", null, "1.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.6", null, "0.5", null, "6.1", null, "0.6", null, "6.7", null, "0.6", null, "6.8", null, "0.5", null, "6.9", null, "0.6", null, "7.2", null, "0.6", null, "8.1", null, "0.6", null, "7.7", null, "0.6", null, "6.8", null, "0.5", null, "6.2", null, "0.5", null, "6.5", null, "0.6", null, "5.4", null, "0.5", null, "5.6", null, "0.5", null, "4.8", null, "0.4", null, "3.3", null, "0.4", null, "2.9", null, "0.3", null, "1.5", null, "0.2", null, "1.9", null, "0.3", null, "12.8", null, "0.7", null, "4.2", null, "0.4", null, "22.6", null, "1.0", null, "9.5", null, "0.7", null, "43.5", null, "0.9", null, "80.2", null, "0.9", null, "77.4", null, "1.0", null, "73.7", null, "0.9", null, "20.0", null, "0.9", null, "17.6", null, "0.8", null, "14.4", null, "0.7", null, "6.3", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "4.1", null, "-888888888.0", "(X)", "382591", null, "10200", null, "21121", null, "3335", null, "23061", null, "3134", null, "26720", null, "2969", null, "28563", null, "2529", null, "27193", null, "3272", null, "28900", null, "3580", null, "31341", null, "3348", null, "31174", null, "3408", null, "26120", null, "3154", null, "23912", null, "2683", null, "25535", null, "2842", null, "21534", null, "2424", null, "20654", null, "2348", null, "16441", null, "1867", null, "11891", null, "1685", null, "8885", null, "1621", null, "5052", null, "1157", null, "4494", null, "962", null, "49781", null, "4306", null, "18302", null, "2059", null, "89204", null, "5968", null, "37454", null, "3665", null, "173291", null, "7884", null, "305440", null, "8957", null, "293387", null, "9012", null, "278566", null, "8593", null, "67417", null, "4095", null, "59411", null, "3782", null, "46763", null, "2859", null, "18431", null, "2036", null, "35.6", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.8", null, "6.0", null, "0.8", null, "7.0", null, "0.7", null, "7.5", null, "0.7", null, "7.1", null, "0.8", null, "7.6", null, "0.9", null, "8.2", null, "0.8", null, "8.1", null, "0.9", null, "6.8", null, "0.8", null, "6.3", null, "0.7", null, "6.7", null, "0.7", null, "5.6", null, "0.6", null, "5.4", null, "0.6", null, "4.3", null, "0.5", null, "3.1", null, "0.4", null, "2.3", null, "0.4", null, "1.3", null, "0.3", null, "1.2", null, "0.3", null, "13.0", null, "1.1", null, "4.8", null, "0.6", null, "23.3", null, "1.4", null, "9.8", null, "0.9", null, "45.3", null, "1.4", null, "79.8", null, "1.3", null, "76.7", null, "1.4", null, "72.8", null, "1.3", null, "17.6", null, "1.1", null, "15.5", null, "1.0", null, "12.2", null, "0.8", null, "4.8", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "373805", null, "9709", null, "20994", null, "3068", null, "23058", null, "3603", null, "24308", null, "3177", null, "23081", null, "2474", null, "25140", null, "2777", null, "25293", null, "2654", null, "30101", null, "2660", null, "27049", null, "2604", null, "25118", null, "2563", null, "22756", null, "2208", null, "23464", null, "2392", null, "19606", null, "2257", null, "21581", null, "2339", null, "20062", null, "2066", null, "13057", null, "1856", null, "12770", null, "1599", null, "6465", null, "1216", null, "9902", null, "1592", null, "47366", null, "4074", null, "13541", null, "1937", null, "81901", null, "5957", null, "34680", null, "3348", null, "155782", null, "5611", null, "301451", null, "7322", null, "291904", null, "7016", null, "279094", null, "6721", null, "83837", null, "4174", null, "73954", null, "3910", null, "62256", null, "3432", null, "29137", null, "2105", null, "37.9", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.6", null, "0.8", null, "6.2", null, "0.9", null, "6.5", null, "0.8", null, "6.2", null, "0.6", null, "6.7", null, "0.7", null, "6.8", null, "0.7", null, "8.1", null, "0.7", null, "7.2", null, "0.7", null, "6.7", null, "0.7", null, "6.1", null, "0.6", null, "6.3", null, "0.6", null, "5.2", null, "0.6", null, "5.8", null, "0.6", null, "5.4", null, "0.6", null, "3.5", null, "0.5", null, "3.4", null, "0.4", null, "1.7", null, "0.3", null, "2.6", null, "0.4", null, "12.7", null, "0.9", null, "3.6", null, "0.5", null, "21.9", null, "1.3", null, "9.3", null, "0.9", null, "41.7", null, "1.1", null, "80.6", null, "1.2", null, "78.1", null, "1.3", null, "74.7", null, "1.2", null, "22.4", null, "1.1", null, "19.8", null, "1.0", null, "16.7", null, "0.9", null, "7.8", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "06", "52"], ["5001900US0801", "Congressional District 1 (119th Congress), Colorado", "735987", null, "2226", null, "38577", null, "1223", null, "35545", null, "2702", null, "33613", null, "2687", null, "34740", null, "1453", null, "45103", null, "1506", null, "85107", null, "1391", null, "89409", null, "1029", null, "71185", null, "4540", null, "56835", null, "4439", null, "44016", null, "1187", null, "40734", null, "1120", null, "33897", null, "2842", null, "32161", null, "2774", null, "28165", null, "2786", null, "26989", null, "2508", null, "18558", null, "1477", null, "10398", null, "1526", null, "10955", null, "1732", null, "69158", null, "421", null, "20893", null, "229", null, "128628", null, "1238", null, "58950", null, "708", null, "382379", null, "1848", null, "620937", null, "2431", null, "607359", null, "1641", null, "584462", null, "2988", null, "127226", null, "2704", null, "111135", null, "2195", null, "95065", null, "845", null, "39911", null, "1044", null, "35.4", null, "0.2", null, "102.2", null, "0.7", null, "43.7", null, "0.3", null, "18.6", null, "0.2", null, "25.1", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.2", null, "4.8", null, "0.4", null, "4.6", null, "0.4", null, "4.7", null, "0.2", null, "6.1", null, "0.2", null, "11.6", null, "0.2", null, "12.1", null, "0.1", null, "9.7", null, "0.6", null, "7.7", null, "0.6", null, "6.0", null, "0.2", null, "5.5", null, "0.2", null, "4.6", null, "0.4", null, "4.4", null, "0.4", null, "3.8", null, "0.4", null, "3.7", null, "0.3", null, "2.5", null, "0.2", null, "1.4", null, "0.2", null, "1.5", null, "0.2", null, "9.4", null, "0.1", null, "2.8", null, "0.1", null, "17.5", null, "0.1", null, "8.0", null, "0.1", null, "52.0", null, "0.2", null, "84.4", null, "0.3", null, "82.5", null, "0.1", null, "79.4", null, "0.3", null, "17.3", null, "0.4", null, "15.1", null, "0.3", null, "12.9", null, "0.1", null, "5.4", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.7", null, "-888888888.0", "(X)", "371940", null, "1839", null, "19787", null, "695", null, "18789", null, "2232", null, "16461", null, "2209", null, "18281", null, "1017", null, "20802", null, "1081", null, "42151", null, "1101", null, "46709", null, "807", null, "37138", null, "3109", null, "30854", null, "2850", null, "22449", null, "967", null, "22208", null, "742", null, "16812", null, "1904", null, "16697", null, "1931", null, "13599", null, "1628", null, "11924", null, "1615", null, "7743", null, "1064", null, "5138", null, "1071", null, "4398", null, "1152", null, "35250", null, "373", null, "9941", null, "829", null, "64978", null, "1127", null, "29142", null, "593", null, "195935", null, "1887", null, "313176", null, "2041", null, "306962", null, "1485", null, "294123", null, "2026", null, "59499", null, "1962", null, "49955", null, "1425", null, "42802", null, "746", null, "17279", null, "726", null, "35.4", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.3", null, "0.2", null, "5.1", null, "0.6", null, "4.4", null, "0.6", null, "4.9", null, "0.3", null, "5.6", null, "0.3", null, "11.3", null, "0.3", null, "12.6", null, "0.2", null, "10.0", null, "0.8", null, "8.3", null, "0.8", null, "6.0", null, "0.3", null, "6.0", null, "0.2", null, "4.5", null, "0.5", null, "4.5", null, "0.5", null, "3.7", null, "0.4", null, "3.2", null, "0.4", null, "2.1", null, "0.3", null, "1.4", null, "0.3", null, "1.2", null, "0.3", null, "9.5", null, "0.1", null, "2.7", null, "0.2", null, "17.5", null, "0.3", null, "7.8", null, "0.2", null, "52.7", null, "0.4", null, "84.2", null, "0.4", null, "82.5", null, "0.3", null, "79.1", null, "0.5", null, "16.0", null, "0.5", null, "13.4", null, "0.4", null, "11.5", null, "0.2", null, "4.6", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "364047", null, "1422", null, "18790", null, "564", null, "16756", null, "2340", null, "17152", null, "2344", null, "16459", null, "1320", null, "24301", null, "900", null, "42956", null, "618", null, "42700", null, "510", null, "34047", null, "2957", null, "25981", null, "3070", null, "21567", null, "889", null, "18526", null, "857", null, "17085", null, "1716", null, "15464", null, "1589", null, "14566", null, "1799", null, "15065", null, "1571", null, "10815", null, "1015", null, "5260", null, "1072", null, "6557", null, "1015", null, "33908", null, "98", null, "10952", null, "838", null, "63650", null, "968", null, "29808", null, "352", null, "186444", null, "1092", null, "307761", null, "1676", null, "300397", null, "925", null, "290339", null, "2192", null, "67727", null, "1563", null, "61180", null, "1418", null, "52263", null, "421", null, "22632", null, "579", null, "35.5", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.1", null, "4.6", null, "0.6", null, "4.7", null, "0.6", null, "4.5", null, "0.4", null, "6.7", null, "0.3", null, "11.8", null, "0.2", null, "11.7", null, "0.1", null, "9.4", null, "0.8", null, "7.1", null, "0.8", null, "5.9", null, "0.2", null, "5.1", null, "0.2", null, "4.7", null, "0.5", null, "4.2", null, "0.4", null, "4.0", null, "0.5", null, "4.1", null, "0.4", null, "3.0", null, "0.3", null, "1.4", null, "0.3", null, "1.8", null, "0.3", null, "9.3", null, "0.1", null, "3.0", null, "0.2", null, "17.5", null, "0.2", null, "8.2", null, "0.1", null, "51.2", null, "0.2", null, "84.5", null, "0.3", null, "82.5", null, "0.2", null, "79.8", null, "0.6", null, "18.6", null, "0.4", null, "16.8", null, "0.4", null, "14.4", null, "0.1", null, "6.2", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "08", "01"], ["5001900US0802", "Congressional District 2 (119th Congress), Colorado", "728333", null, "9019", null, "25201", null, "2065", null, "34347", null, "3012", null, "38765", null, "3262", null, "58186", null, "3107", null, "68203", null, "3787", null, "51346", null, "2763", null, "55101", null, "3795", null, "50765", null, "3999", null, "49007", null, "3875", null, "43130", null, "2654", null, "44986", null, "3311", null, "38206", null, "3436", null, "44124", null, "2764", null, "40788", null, "2918", null, "35869", null, "2708", null, "24402", null, "2484", null, "13540", null, "1857", null, "12367", null, "1532", null, "73112", null, "3726", null, "25003", null, "1751", null, "123316", null, "4409", null, "101386", null, "3996", null, "332608", null, "7404", null, "622079", null, "7214", null, "605017", null, "7052", null, "556574", null, "7724", null, "171090", null, "4396", null, "153659", null, "4291", null, "126966", null, "3423", null, "50309", null, "2116", null, "38.3", null, "0.7", null, "103.5", null, "2.1", null, "52.4", null, "1.2", null, "26.6", null, "0.9", null, "25.8", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "3.5", null, "0.3", null, "4.7", null, "0.4", null, "5.3", null, "0.4", null, "8.0", null, "0.4", null, "9.4", null, "0.5", null, "7.0", null, "0.4", null, "7.6", null, "0.5", null, "7.0", null, "0.5", null, "6.7", null, "0.5", null, "5.9", null, "0.4", null, "6.2", null, "0.5", null, "5.2", null, "0.5", null, "6.1", null, "0.4", null, "5.6", null, "0.4", null, "4.9", null, "0.4", null, "3.4", null, "0.3", null, "1.9", null, "0.3", null, "1.7", null, "0.2", null, "10.0", null, "0.5", null, "3.4", null, "0.2", null, "16.9", null, "0.5", null, "13.9", null, "0.5", null, "45.7", null, "0.7", null, "85.4", null, "0.5", null, "83.1", null, "0.5", null, "76.4", null, "0.7", null, "23.5", null, "0.6", null, "21.1", null, "0.6", null, "17.4", null, "0.5", null, "6.9", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "0.9", null, "-888888888.0", "(X)", "370357", null, "5639", null, "12454", null, "1670", null, "18230", null, "2139", null, "20781", null, "2586", null, "29942", null, "2309", null, "33509", null, "2669", null, "27672", null, "2446", null, "28733", null, "2007", null, "27621", null, "2777", null, "23763", null, "2612", null, "22617", null, "2075", null, "23273", null, "2610", null, "18846", null, "2344", null, "22450", null, "2059", null, "20225", null, "1828", null, "17119", null, "1642", null, "11091", null, "1323", null, "6700", null, "1217", null, "5331", null, "885", null, "39011", null, "2477", null, "12977", null, "1355", null, "64442", null, "3266", null, "50474", null, "2906", null, "171240", null, "4659", null, "314761", null, "4525", null, "305915", null, "4438", null, "283048", null, "4649", null, "82916", null, "2947", null, "73881", null, "2711", null, "60466", null, "1890", null, "23122", null, "1334", null, "37.5", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "3.4", null, "0.4", null, "4.9", null, "0.6", null, "5.6", null, "0.7", null, "8.1", null, "0.6", null, "9.0", null, "0.7", null, "7.5", null, "0.6", null, "7.8", null, "0.5", null, "7.5", null, "0.7", null, "6.4", null, "0.7", null, "6.1", null, "0.6", null, "6.3", null, "0.7", null, "5.1", null, "0.6", null, "6.1", null, "0.6", null, "5.5", null, "0.5", null, "4.6", null, "0.4", null, "3.0", null, "0.4", null, "1.8", null, "0.3", null, "1.4", null, "0.2", null, "10.5", null, "0.6", null, "3.5", null, "0.4", null, "17.4", null, "0.7", null, "13.6", null, "0.7", null, "46.2", null, "0.9", null, "85.0", null, "0.8", null, "82.6", null, "0.7", null, "76.4", null, "1.0", null, "22.4", null, "0.8", null, "19.9", null, "0.7", null, "16.3", null, "0.5", null, "6.2", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "357976", null, "6082", null, "12747", null, "1516", null, "16117", null, "2029", null, "17984", null, "2407", null, "28244", null, "2319", null, "34694", null, "2272", null, "23674", null, "1607", null, "26368", null, "2361", null, "23144", null, "2277", null, "25244", null, "2323", null, "20513", null, "1426", null, "21713", null, "1537", null, "19360", null, "2023", null, "21674", null, "1776", null, "20563", null, "1957", null, "18750", null, "1961", null, "13311", null, "1705", null, "6840", null, "1205", null, "7036", null, "1119", null, "34101", null, "2662", null, "12026", null, "1426", null, "58874", null, "3829", null, "50912", null, "2322", null, "161368", null, "4247", null, "307318", null, "4409", null, "299102", null, "4205", null, "273526", null, "4987", null, "88174", null, "2516", null, "79778", null, "2578", null, "66500", null, "2082", null, "27187", null, "1357", null, "39.3", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "3.6", null, "0.4", null, "4.5", null, "0.6", null, "5.0", null, "0.6", null, "7.9", null, "0.6", null, "9.7", null, "0.7", null, "6.6", null, "0.4", null, "7.4", null, "0.6", null, "6.5", null, "0.6", null, "7.1", null, "0.7", null, "5.7", null, "0.4", null, "6.1", null, "0.4", null, "5.4", null, "0.6", null, "6.1", null, "0.5", null, "5.7", null, "0.6", null, "5.2", null, "0.5", null, "3.7", null, "0.5", null, "1.9", null, "0.3", null, "2.0", null, "0.3", null, "9.5", null, "0.7", null, "3.4", null, "0.4", null, "16.4", null, "0.9", null, "14.2", null, "0.6", null, "45.1", null, "0.8", null, "85.8", null, "0.9", null, "83.6", null, "0.9", null, "76.4", null, "1.1", null, "24.6", null, "0.7", null, "22.3", null, "0.7", null, "18.6", null, "0.6", null, "7.6", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "08", "02"], ["5001900US0803", "Congressional District 3 (119th Congress), Colorado", "742698", null, "5158", null, "32465", null, "1824", null, "36632", null, "3106", null, "45086", null, "3294", null, "44221", null, "3049", null, "43064", null, "3477", null, "41281", null, "2747", null, "49326", null, "2989", null, "49098", null, "4669", null, "52448", null, "4231", null, "43572", null, "2865", null, "41636", null, "2072", null, "41459", null, "3242", null, "55501", null, "3007", null, "50976", null, "2484", null, "49067", null, "2532", null, "33547", null, "2498", null, "19367", null, "1836", null, "13952", null, "1598", null, "81718", null, "2711", null, "28349", null, "2232", null, "142532", null, "2799", null, "58936", null, "3819", null, "279438", null, "5846", null, "619180", null, "4524", null, "600166", null, "4146", null, "577494", null, "4369", null, "222410", null, "4584", null, "203535", null, "4540", null, "166909", null, "3303", null, "66866", null, "1958", null, "42.9", null, "0.6", null, "101.2", null, "1.7", null, "71.4", null, "1.5", null, "38.5", null, "1.1", null, "32.9", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.4", null, "0.2", null, "4.9", null, "0.4", null, "6.1", null, "0.4", null, "6.0", null, "0.4", null, "5.8", null, "0.5", null, "5.6", null, "0.4", null, "6.6", null, "0.4", null, "6.6", null, "0.6", null, "7.1", null, "0.6", null, "5.9", null, "0.4", null, "5.6", null, "0.3", null, "5.6", null, "0.4", null, "7.5", null, "0.4", null, "6.9", null, "0.3", null, "6.6", null, "0.3", null, "4.5", null, "0.3", null, "2.6", null, "0.2", null, "1.9", null, "0.2", null, "11.0", null, "0.4", null, "3.8", null, "0.3", null, "19.2", null, "0.3", null, "7.9", null, "0.5", null, "37.6", null, "0.7", null, "83.4", null, "0.4", null, "80.8", null, "0.3", null, "77.8", null, "0.5", null, "29.9", null, "0.6", null, "27.4", null, "0.6", null, "22.5", null, "0.5", null, "9.0", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.3", null, "-888888888.0", "(X)", "373513", null, "4311", null, "16322", null, "1693", null, "17367", null, "2062", null, "24804", null, "2418", null, "24597", null, "2107", null, "21749", null, "2471", null, "21676", null, "2145", null, "25741", null, "2251", null, "24683", null, "2857", null, "27380", null, "2754", null, "22114", null, "1694", null, "21323", null, "1448", null, "19087", null, "2291", null, "26584", null, "2024", null, "24123", null, "1768", null, "25135", null, "1845", null, "15600", null, "1421", null, "9698", null, "1282", null, "5530", null, "968", null, "42171", null, "2494", null, "16314", null, "1843", null, "74807", null, "2744", null, "30032", null, "2682", null, "145826", null, "3995", null, "308822", null, "3582", null, "298706", null, "3353", null, "286934", null, "3628", null, "106670", null, "2954", null, "96855", null, "2826", null, "80086", null, "1837", null, "30828", null, "1263", null, "41.7", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.4", null, "0.5", null, "4.6", null, "0.5", null, "6.6", null, "0.6", null, "6.6", null, "0.5", null, "5.8", null, "0.7", null, "5.8", null, "0.6", null, "6.9", null, "0.6", null, "6.6", null, "0.8", null, "7.3", null, "0.7", null, "5.9", null, "0.4", null, "5.7", null, "0.4", null, "5.1", null, "0.6", null, "7.1", null, "0.5", null, "6.5", null, "0.5", null, "6.7", null, "0.5", null, "4.2", null, "0.4", null, "2.6", null, "0.3", null, "1.5", null, "0.3", null, "11.3", null, "0.6", null, "4.4", null, "0.5", null, "20.0", null, "0.6", null, "8.0", null, "0.7", null, "39.0", null, "0.9", null, "82.7", null, "0.6", null, "80.0", null, "0.6", null, "76.8", null, "0.8", null, "28.6", null, "0.8", null, "25.9", null, "0.8", null, "21.4", null, "0.5", null, "8.3", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "369185", null, "3717", null, "16143", null, "1439", null, "19265", null, "1961", null, "20282", null, "2131", null, "19624", null, "2274", null, "21315", null, "2168", null, "19605", null, "1932", null, "23585", null, "1769", null, "24415", null, "2898", null, "25068", null, "2619", null, "21458", null, "1880", null, "20313", null, "1451", null, "22372", null, "2081", null, "28917", null, "1985", null, "26853", null, "1681", null, "23932", null, "1773", null, "17947", null, "1676", null, "9669", null, "1166", null, "8422", null, "1085", null, "39547", null, "1940", null, "12035", null, "1625", null, "67725", null, "2373", null, "28904", null, "2492", null, "133612", null, "3233", null, "310358", null, "3150", null, "301460", null, "2685", null, "290560", null, "3045", null, "115740", null, "2841", null, "106680", null, "3053", null, "86823", null, "2106", null, "36038", null, "1139", null, "44.0", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.4", null, "0.4", null, "5.2", null, "0.5", null, "5.5", null, "0.6", null, "5.3", null, "0.6", null, "5.8", null, "0.6", null, "5.3", null, "0.5", null, "6.4", null, "0.5", null, "6.6", null, "0.8", null, "6.8", null, "0.7", null, "5.8", null, "0.5", null, "5.5", null, "0.4", null, "6.1", null, "0.6", null, "7.8", null, "0.6", null, "7.3", null, "0.4", null, "6.5", null, "0.5", null, "4.9", null, "0.5", null, "2.6", null, "0.3", null, "2.3", null, "0.3", null, "10.7", null, "0.5", null, "3.3", null, "0.4", null, "18.3", null, "0.5", null, "7.8", null, "0.7", null, "36.2", null, "0.7", null, "84.1", null, "0.6", null, "81.7", null, "0.5", null, "78.7", null, "0.8", null, "31.4", null, "0.8", null, "28.9", null, "0.9", null, "23.5", null, "0.6", null, "9.8", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "08", "03"], ["5001900US0804", "Congressional District 4 (119th Congress), Colorado", "789599", null, "9661", null, "43469", null, "2260", null, "48424", null, "3118", null, "55956", null, "3953", null, "50307", null, "2462", null, "46067", null, "3149", null, "45461", null, "2920", null, "53820", null, "2856", null, "57354", null, "4272", null, "59575", null, "4311", null, "55015", null, "3344", null, "53884", null, "2499", null, "45221", null, "3264", null, "49603", null, "3240", null, "43597", null, "2975", null, "32509", null, "2805", null, "23988", null, "1960", null, "13438", null, "1322", null, "11911", null, "1494", null, "104380", null, "3875", null, "33509", null, "1684", null, "181358", null, "4928", null, "62865", null, "3419", null, "312584", null, "6966", null, "632006", null, "7496", null, "608241", null, "7249", null, "582591", null, "7932", null, "175046", null, "4877", null, "154792", null, "4087", null, "125443", null, "3594", null, "49337", null, "1905", null, "39.4", null, "0.6", null, "103.1", null, "2.0", null, "63.5", null, "1.3", null, "26.0", null, "0.9", null, "37.6", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.3", null, "6.1", null, "0.4", null, "7.1", null, "0.5", null, "6.4", null, "0.3", null, "5.8", null, "0.4", null, "5.8", null, "0.4", null, "6.8", null, "0.3", null, "7.3", null, "0.5", null, "7.5", null, "0.5", null, "7.0", null, "0.4", null, "6.8", null, "0.3", null, "5.7", null, "0.4", null, "6.3", null, "0.4", null, "5.5", null, "0.4", null, "4.1", null, "0.4", null, "3.0", null, "0.2", null, "1.7", null, "0.2", null, "1.5", null, "0.2", null, "13.2", null, "0.4", null, "4.2", null, "0.2", null, "23.0", null, "0.5", null, "8.0", null, "0.4", null, "39.6", null, "0.7", null, "80.0", null, "0.5", null, "77.0", null, "0.5", null, "73.8", null, "0.5", null, "22.2", null, "0.6", null, "19.6", null, "0.5", null, "15.9", null, "0.5", null, "6.2", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.3", null, "-888888888.0", "(X)", "400791", null, "6837", null, "22188", null, "1681", null, "23901", null, "2337", null, "28427", null, "2324", null, "27632", null, "1626", null, "25135", null, "2137", null, "22464", null, "1738", null, "28530", null, "1940", null, "28019", null, "2616", null, "32223", null, "2766", null, "27721", null, "1932", null, "29487", null, "1943", null, "23458", null, "1962", null, "22977", null, "1975", null, "20697", null, "1879", null, "16072", null, "1679", null, "11109", null, "1193", null, "5896", null, "810", null, "4855", null, "865", null, "52328", null, "3057", null, "18702", null, "1505", null, "93218", null, "4170", null, "34065", null, "2236", null, "164003", null, "4545", null, "321262", null, "4807", null, "307573", null, "4473", null, "294641", null, "4980", null, "81606", null, "2640", null, "72286", null, "2308", null, "58629", null, "1766", null, "21860", null, "1094", null, "38.7", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.4", null, "6.0", null, "0.5", null, "7.1", null, "0.5", null, "6.9", null, "0.4", null, "6.3", null, "0.5", null, "5.6", null, "0.4", null, "7.1", null, "0.5", null, "7.0", null, "0.6", null, "8.0", null, "0.7", null, "6.9", null, "0.5", null, "7.4", null, "0.5", null, "5.9", null, "0.5", null, "5.7", null, "0.5", null, "5.2", null, "0.5", null, "4.0", null, "0.4", null, "2.8", null, "0.3", null, "1.5", null, "0.2", null, "1.2", null, "0.2", null, "13.1", null, "0.6", null, "4.7", null, "0.3", null, "23.3", null, "0.8", null, "8.5", null, "0.5", null, "40.9", null, "0.8", null, "80.2", null, "0.7", null, "76.7", null, "0.8", null, "73.5", null, "0.8", null, "20.4", null, "0.7", null, "18.0", null, "0.6", null, "14.6", null, "0.5", null, "5.5", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "388808", null, "5315", null, "21281", null, "1908", null, "24523", null, "2410", null, "27529", null, "3064", null, "22675", null, "1854", null, "20932", null, "2082", null, "22997", null, "1764", null, "25290", null, "1696", null, "29335", null, "2606", null, "27352", null, "2646", null, "27294", null, "1897", null, "24397", null, "1468", null, "21763", null, "2079", null, "26626", null, "2366", null, "22900", null, "1837", null, "16437", null, "1870", null, "12879", null, "1378", null, "7542", null, "939", null, "7056", null, "1120", null, "52052", null, "2313", null, "14807", null, "1293", null, "88140", null, "3273", null, "28800", null, "2416", null, "148581", null, "3812", null, "310744", null, "4072", null, "300668", null, "4009", null, "287950", null, "3978", null, "93440", null, "3190", null, "82506", null, "2877", null, "66814", null, "2318", null, "27477", null, "1295", null, "40.0", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.5", null, "6.3", null, "0.6", null, "7.1", null, "0.8", null, "5.8", null, "0.5", null, "5.4", null, "0.5", null, "5.9", null, "0.4", null, "6.5", null, "0.4", null, "7.5", null, "0.7", null, "7.0", null, "0.7", null, "7.0", null, "0.5", null, "6.3", null, "0.4", null, "5.6", null, "0.5", null, "6.8", null, "0.6", null, "5.9", null, "0.5", null, "4.2", null, "0.5", null, "3.3", null, "0.4", null, "1.9", null, "0.2", null, "1.8", null, "0.3", null, "13.4", null, "0.5", null, "3.8", null, "0.3", null, "22.7", null, "0.7", null, "7.4", null, "0.6", null, "38.2", null, "0.7", null, "79.9", null, "0.6", null, "77.3", null, "0.7", null, "74.1", null, "0.8", null, "24.0", null, "0.8", null, "21.2", null, "0.7", null, "17.2", null, "0.6", null, "7.1", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "08", "04"], ["5001900US0805", "Congressional District 5 (119th Congress), Colorado", "745409", null, "1652", null, "44769", null, "488", null, "43800", null, "3264", null, "49992", null, "3243", null, "50862", null, "1176", null, "55864", null, "1202", null, "60633", null, "350", null, "62192", null, "807", null, "54859", null, "3672", null, "52049", null, "3562", null, "41826", null, "700", null, "39335", null, "562", null, "35918", null, "2154", null, "43141", null, "2116", null, "35715", null, "2165", null, "30802", null, "2209", null, "22144", null, "2127", null, "10890", null, "1358", null, "10618", null, "1646", null, "93792", null, "512", null, "29569", null, "320", null, "168130", null, "823", null, "77157", null, "904", null, "336459", null, "1020", null, "598015", null, "1894", null, "577279", null, "1195", null, "546578", null, "1893", null, "153310", null, "2275", null, "135470", null, "2262", null, "110169", null, "524", null, "43652", null, "769", null, "35.4", null, "0.1", null, "102.6", null, "0.4", null, "59.6", null, "0.2", null, "23.6", null, "0.1", null, "36.0", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.0", null, "0.1", null, "5.9", null, "0.4", null, "6.7", null, "0.4", null, "6.8", null, "0.2", null, "7.5", null, "0.2", null, "8.1", null, "0.1", null, "8.3", null, "0.1", null, "7.4", null, "0.5", null, "7.0", null, "0.5", null, "5.6", null, "0.1", null, "5.3", null, "0.1", null, "4.8", null, "0.3", null, "5.8", null, "0.3", null, "4.8", null, "0.3", null, "4.1", null, "0.3", null, "3.0", null, "0.3", null, "1.5", null, "0.2", null, "1.4", null, "0.2", null, "12.6", null, "0.1", null, "4.0", null, "0.1", null, "22.6", null, "0.1", null, "10.4", null, "0.1", null, "45.1", null, "0.1", null, "80.2", null, "0.2", null, "77.4", null, "0.1", null, "73.3", null, "0.3", null, "20.6", null, "0.3", null, "18.2", null, "0.3", null, "14.8", null, "0.1", null, "5.9", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.0", null, "-888888888.0", "(X)", "377442", null, "1205", null, "22641", null, "417", null, "23019", null, "2007", null, "25070", null, "2053", null, "26582", null, "1234", null, "31335", null, "1062", null, "32016", null, "233", null, "33127", null, "592", null, "27771", null, "2706", null, "27604", null, "2585", null, "20709", null, "439", null, "19531", null, "360", null, "16873", null, "1418", null, "21269", null, "1400", null, "14912", null, "1438", null, "16068", null, "1401", null, "9964", null, "1235", null, "4681", null, "1012", null, "4270", null, "924", null, "48089", null, "401", null, "14616", null, "577", null, "85346", null, "856", null, "43301", null, "510", null, "178435", null, "850", null, "302511", null, "1337", null, "292096", null, "685", null, "274408", null, "1343", null, "71164", null, "1515", null, "62710", null, "1608", null, "49895", null, "331", null, "18915", null, "510", null, "34.3", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.0", null, "0.1", null, "6.1", null, "0.5", null, "6.6", null, "0.5", null, "7.0", null, "0.3", null, "8.3", null, "0.3", null, "8.5", null, "0.1", null, "8.8", null, "0.1", null, "7.4", null, "0.7", null, "7.3", null, "0.7", null, "5.5", null, "0.1", null, "5.2", null, "0.1", null, "4.5", null, "0.4", null, "5.6", null, "0.4", null, "4.0", null, "0.4", null, "4.3", null, "0.4", null, "2.6", null, "0.3", null, "1.2", null, "0.3", null, "1.1", null, "0.2", null, "12.7", null, "0.1", null, "3.9", null, "0.1", null, "22.6", null, "0.2", null, "11.5", null, "0.1", null, "47.3", null, "0.2", null, "80.1", null, "0.3", null, "77.4", null, "0.2", null, "72.7", null, "0.4", null, "18.9", null, "0.4", null, "16.6", null, "0.4", null, "13.2", null, "0.1", null, "5.0", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "367967", null, "1112", null, "22128", null, "292", null, "20781", null, "2475", null, "24922", null, "2427", null, "24280", null, "731", null, "24529", null, "407", null, "28617", null, "235", null, "29065", null, "437", null, "27088", null, "2220", null, "24445", null, "2122", null, "21117", null, "468", null, "19804", null, "351", null, "19045", null, "1697", null, "21872", null, "1689", null, "20803", null, "1448", null, "14734", null, "1437", null, "12180", null, "1362", null, "6209", null, "968", null, "6348", null, "1250", null, "45703", null, "381", null, "14953", null, "535", null, "82784", null, "734", null, "33856", null, "530", null, "158024", null, "891", null, "295504", null, "1241", null, "285183", null, "836", null, "272170", null, "1212", null, "82146", null, "1706", null, "72760", null, "1611", null, "60274", null, "312", null, "24737", null, "450", null, "36.7", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.0", null, "0.1", null, "5.6", null, "0.7", null, "6.8", null, "0.7", null, "6.6", null, "0.2", null, "6.7", null, "0.1", null, "7.8", null, "0.1", null, "7.9", null, "0.1", null, "7.4", null, "0.6", null, "6.6", null, "0.6", null, "5.7", null, "0.1", null, "5.4", null, "0.1", null, "5.2", null, "0.5", null, "5.9", null, "0.5", null, "5.7", null, "0.4", null, "4.0", null, "0.4", null, "3.3", null, "0.4", null, "1.7", null, "0.3", null, "1.7", null, "0.3", null, "12.4", null, "0.1", null, "4.1", null, "0.1", null, "22.5", null, "0.2", null, "9.2", null, "0.1", null, "42.9", null, "0.2", null, "80.3", null, "0.3", null, "77.5", null, "0.2", null, "74.0", null, "0.3", null, "22.3", null, "0.5", null, "19.8", null, "0.4", null, "16.4", null, "0.1", null, "6.7", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "08", "05"], ["5001900US0806", "Congressional District 6 (119th Congress), Colorado", "730108", null, "6944", null, "42146", null, "2881", null, "41312", null, "3413", null, "45025", null, "3341", null, "47616", null, "2415", null, "43401", null, "1807", null, "55212", null, "2959", null, "59080", null, "2656", null, "57210", null, "4583", null, "53714", null, "4006", null, "45285", null, "1777", null, "44941", null, "1828", null, "38016", null, "2458", null, "42744", null, "2763", null, "38611", null, "2167", null, "30640", null, "2168", null, "22469", null, "1972", null, "12082", null, "1567", null, "10604", null, "1546", null, "86337", null, "3631", null, "31071", null, "1587", null, "159554", null, "5195", null, "59946", null, "2211", null, "316233", null, "4934", null, "591480", null, "6190", null, "570554", null, "6245", null, "548102", null, "6631", null, "157150", null, "3731", null, "138518", null, "3385", null, "114406", null, "2287", null, "45155", null, "1487", null, "37.6", null, "0.5", null, "99.9", null, "1.6", null, "60.1", null, "1.6", null, "25.1", null, "0.6", null, "35.0", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.8", null, "0.4", null, "5.7", null, "0.5", null, "6.2", null, "0.4", null, "6.5", null, "0.3", null, "5.9", null, "0.2", null, "7.6", null, "0.4", null, "8.1", null, "0.4", null, "7.8", null, "0.6", null, "7.4", null, "0.5", null, "6.2", null, "0.2", null, "6.2", null, "0.2", null, "5.2", null, "0.3", null, "5.9", null, "0.4", null, "5.3", null, "0.3", null, "4.2", null, "0.3", null, "3.1", null, "0.3", null, "1.7", null, "0.2", null, "1.5", null, "0.2", null, "11.8", null, "0.5", null, "4.3", null, "0.2", null, "21.9", null, "0.6", null, "8.2", null, "0.3", null, "43.3", null, "0.5", null, "81.0", null, "0.7", null, "78.1", null, "0.6", null, "75.1", null, "0.7", null, "21.5", null, "0.5", null, "19.0", null, "0.5", null, "15.7", null, "0.3", null, "6.2", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.4", null, "-888888888.0", "(X)", "364916", null, "4766", null, "21417", null, "2121", null, "19194", null, "2103", null, "24353", null, "2236", null, "25668", null, "1927", null, "23198", null, "1378", null, "28332", null, "2124", null, "29433", null, "2030", null, "28874", null, "2596", null, "28996", null, "2784", null, "23187", null, "1404", null, "21955", null, "1320", null, "18545", null, "1770", null, "20564", null, "1758", null, "18186", null, "1419", null, "14366", null, "1400", null, "9827", null, "1228", null, "4716", null, "922", null, "4105", null, "889", null, "43547", null, "2139", null, "16546", null, "1212", null, "81510", null, "3214", null, "32320", null, "1802", null, "164501", null, "3703", null, "294606", null, "4113", null, "283406", null, "4185", null, "271581", null, "4064", null, "71764", null, "2356", null, "62574", null, "1975", null, "51200", null, "1364", null, "18648", null, "1042", null, "36.8", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.9", null, "0.6", null, "5.3", null, "0.6", null, "6.7", null, "0.6", null, "7.0", null, "0.5", null, "6.4", null, "0.4", null, "7.8", null, "0.6", null, "8.1", null, "0.6", null, "7.9", null, "0.7", null, "7.9", null, "0.8", null, "6.4", null, "0.4", null, "6.0", null, "0.4", null, "5.1", null, "0.5", null, "5.6", null, "0.5", null, "5.0", null, "0.4", null, "3.9", null, "0.4", null, "2.7", null, "0.3", null, "1.3", null, "0.2", null, "1.1", null, "0.2", null, "11.9", null, "0.5", null, "4.5", null, "0.3", null, "22.3", null, "0.8", null, "8.9", null, "0.5", null, "45.1", null, "0.7", null, "80.7", null, "0.8", null, "77.7", null, "0.8", null, "74.4", null, "0.8", null, "19.7", null, "0.7", null, "17.1", null, "0.6", null, "14.0", null, "0.4", null, "5.1", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "365192", null, "4306", null, "20729", null, "1455", null, "22118", null, "2354", null, "20672", null, "2140", null, "21948", null, "1584", null, "20203", null, "1358", null, "26880", null, "1556", null, "29647", null, "1520", null, "28336", null, "3051", null, "24718", null, "2611", null, "22098", null, "1107", null, "22986", null, "1154", null, "19471", null, "1676", null, "22180", null, "1900", null, "20425", null, "1379", null, "16274", null, "1459", null, "12642", null, "1308", null, "7366", null, "1232", null, "6499", null, "1154", null, "42790", null, "2143", null, "14525", null, "1131", null, "78044", null, "2978", null, "27626", null, "1405", null, "151732", null, "2744", null, "296874", null, "3621", null, "287148", null, "3503", null, "276521", null, "4002", null, "85386", null, "2353", null, "75944", null, "2136", null, "63206", null, "1418", null, "26507", null, "913", null, "38.6", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.7", null, "0.4", null, "6.1", null, "0.6", null, "5.7", null, "0.6", null, "6.0", null, "0.4", null, "5.5", null, "0.4", null, "7.4", null, "0.4", null, "8.1", null, "0.4", null, "7.8", null, "0.8", null, "6.8", null, "0.7", null, "6.1", null, "0.3", null, "6.3", null, "0.3", null, "5.3", null, "0.4", null, "6.1", null, "0.5", null, "5.6", null, "0.4", null, "4.5", null, "0.4", null, "3.5", null, "0.4", null, "2.0", null, "0.3", null, "1.8", null, "0.3", null, "11.7", null, "0.5", null, "4.0", null, "0.3", null, "21.4", null, "0.7", null, "7.6", null, "0.4", null, "41.5", null, "0.6", null, "81.3", null, "0.8", null, "78.6", null, "0.7", null, "75.7", null, "0.8", null, "23.4", null, "0.7", null, "20.8", null, "0.6", null, "17.3", null, "0.4", null, "7.3", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "08", "06"], ["5001900US0807", "Congressional District 7 (119th Congress), Colorado", "728241", null, "6282", null, "32769", null, "1908", null, "33322", null, "2634", null, "36165", null, "2518", null, "39914", null, "1922", null, "40423", null, "2083", null, "50727", null, "2423", null, "62228", null, "2260", null, "57091", null, "3901", null, "53307", null, "4358", null, "46841", null, "2082", null, "44324", null, "1795", null, "40480", null, "2868", null, "48228", null, "3157", null, "46941", null, "2891", null, "38432", null, "2540", null, "25742", null, "2053", null, "17826", null, "2113", null, "13481", null, "1840", null, "69487", null, "2160", null, "25181", null, "1394", null, "127437", null, "2891", null, "55156", null, "2229", null, "303690", null, "5067", null, "616727", null, "5325", null, "600804", null, "4849", null, "576431", null, "5210", null, "190650", null, "3940", null, "172563", null, "3473", null, "142422", null, "2646", null, "57049", null, "1523", null, "41.1", null, "0.5", null, "104.7", null, "1.6", null, "58.9", null, "1.0", null, "31.1", null, "0.8", null, "27.8", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.5", null, "0.3", null, "4.6", null, "0.4", null, "5.0", null, "0.3", null, "5.5", null, "0.2", null, "5.6", null, "0.3", null, "7.0", null, "0.3", null, "8.5", null, "0.3", null, "7.8", null, "0.5", null, "7.3", null, "0.6", null, "6.4", null, "0.3", null, "6.1", null, "0.2", null, "5.6", null, "0.4", null, "6.6", null, "0.4", null, "6.4", null, "0.4", null, "5.3", null, "0.4", null, "3.5", null, "0.3", null, "2.4", null, "0.3", null, "1.9", null, "0.3", null, "9.5", null, "0.3", null, "3.5", null, "0.2", null, "17.5", null, "0.3", null, "7.6", null, "0.3", null, "41.7", null, "0.5", null, "84.7", null, "0.3", null, "82.5", null, "0.3", null, "79.2", null, "0.5", null, "26.2", null, "0.6", null, "23.7", null, "0.5", null, "19.6", null, "0.4", null, "7.8", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.4", null, "-888888888.0", "(X)", "372520", null, "4211", null, "16834", null, "1279", null, "18760", null, "1978", null, "17591", null, "1913", null, "20650", null, "1456", null, "20960", null, "1517", null, "27346", null, "1477", null, "34086", null, "1657", null, "28642", null, "2588", null, "29206", null, "2839", null, "24725", null, "1548", null, "23630", null, "1399", null, "20373", null, "1840", null, "23144", null, "1847", null, "22702", null, "1898", null, "19288", null, "1587", null, "12023", null, "1030", null, "7368", null, "1085", null, "5192", null, "975", null, "36351", null, "1882", null, "12671", null, "1156", null, "65856", null, "2617", null, "28939", null, "1606", null, "160890", null, "3189", null, "314850", null, "3546", null, "306664", null, "3227", null, "292991", null, "3235", null, "89717", null, "2272", null, "81043", null, "2092", null, "66573", null, "1721", null, "24583", null, "1001", null, "40.2", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.5", null, "0.3", null, "5.0", null, "0.5", null, "4.7", null, "0.5", null, "5.5", null, "0.4", null, "5.6", null, "0.4", null, "7.3", null, "0.4", null, "9.2", null, "0.4", null, "7.7", null, "0.7", null, "7.8", null, "0.8", null, "6.6", null, "0.4", null, "6.3", null, "0.4", null, "5.5", null, "0.5", null, "6.2", null, "0.5", null, "6.1", null, "0.5", null, "5.2", null, "0.4", null, "3.2", null, "0.3", null, "2.0", null, "0.3", null, "1.4", null, "0.3", null, "9.8", null, "0.5", null, "3.4", null, "0.3", null, "17.7", null, "0.6", null, "7.8", null, "0.4", null, "43.2", null, "0.7", null, "84.5", null, "0.6", null, "82.3", null, "0.6", null, "78.7", null, "0.7", null, "24.1", null, "0.6", null, "21.8", null, "0.6", null, "17.9", null, "0.5", null, "6.6", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "355721", null, "4215", null, "15935", null, "1423", null, "14562", null, "1785", null, "18574", null, "1721", null, "19264", null, "1163", null, "19463", null, "1088", null, "23381", null, "1449", null, "28142", null, "1414", null, "28449", null, "2072", null, "24101", null, "2455", null, "22116", null, "1090", null, "20694", null, "909", null, "20107", null, "2036", null, "25084", null, "2243", null, "24239", null, "1762", null, "19144", null, "1784", null, "13719", null, "1457", null, "10458", null, "1647", null, "8289", null, "1331", null, "33136", null, "1605", null, "12510", null, "767", null, "61581", null, "2371", null, "26217", null, "1157", null, "142800", null, "2729", null, "301877", null, "3120", null, "294140", null, "2928", null, "283440", null, "3523", null, "100933", null, "2724", null, "91520", null, "2551", null, "75849", null, "1591", null, "32466", null, "1027", null, "42.1", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.5", null, "0.4", null, "4.1", null, "0.5", null, "5.2", null, "0.5", null, "5.4", null, "0.3", null, "5.5", null, "0.3", null, "6.6", null, "0.4", null, "7.9", null, "0.4", null, "8.0", null, "0.6", null, "6.8", null, "0.7", null, "6.2", null, "0.3", null, "5.8", null, "0.3", null, "5.7", null, "0.6", null, "7.1", null, "0.6", null, "6.8", null, "0.5", null, "5.4", null, "0.5", null, "3.9", null, "0.4", null, "2.9", null, "0.5", null, "2.3", null, "0.4", null, "9.3", null, "0.4", null, "3.5", null, "0.2", null, "17.3", null, "0.5", null, "7.4", null, "0.3", null, "40.1", null, "0.6", null, "84.9", null, "0.6", null, "82.7", null, "0.5", null, "79.7", null, "0.7", null, "28.4", null, "0.8", null, "25.7", null, "0.8", null, "21.3", null, "0.5", null, "9.1", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "08", "07"], ["5001900US0808", "Congressional District 8 (119th Congress), Colorado", "757119", null, "8605", null, "47068", null, "2282", null, "50166", null, "3874", null, "48066", null, "4016", null, "50922", null, "2934", null, "50959", null, "2397", null, "56365", null, "2655", null, "66143", null, "3063", null, "60571", null, "4172", null, "57604", null, "3826", null, "46373", null, "2426", null, "42525", null, "1964", null, "38705", null, "3019", null, "42668", null, "3330", null, "35043", null, "2691", null, "26564", null, "2963", null, "18827", null, "1644", null, "9925", null, "1594", null, "8625", null, "1508", null, "98232", null, "3834", null, "30592", null, "2145", null, "175892", null, "5041", null, "71289", null, "2809", null, "342564", null, "6045", null, "601533", null, "7475", null, "581227", null, "7360", null, "548201", null, "7279", null, "141652", null, "4268", null, "124002", null, "4167", null, "98984", null, "2726", null, "37377", null, "1210", null, "35.8", null, "0.4", null, "103.6", null, "1.9", null, "57.0", null, "1.2", null, "20.5", null, "0.6", null, "36.5", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.2", null, "0.3", null, "6.6", null, "0.5", null, "6.3", null, "0.5", null, "6.7", null, "0.4", null, "6.7", null, "0.3", null, "7.4", null, "0.4", null, "8.7", null, "0.4", null, "8.0", null, "0.5", null, "7.6", null, "0.5", null, "6.1", null, "0.3", null, "5.6", null, "0.3", null, "5.1", null, "0.4", null, "5.6", null, "0.4", null, "4.6", null, "0.4", null, "3.5", null, "0.4", null, "2.5", null, "0.2", null, "1.3", null, "0.2", null, "1.1", null, "0.2", null, "13.0", null, "0.5", null, "4.0", null, "0.3", null, "23.2", null, "0.6", null, "9.4", null, "0.4", null, "45.2", null, "0.5", null, "79.5", null, "0.6", null, "76.8", null, "0.6", null, "72.4", null, "0.6", null, "18.7", null, "0.6", null, "16.4", null, "0.6", null, "13.1", null, "0.4", null, "4.9", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "2.2", null, "-888888888.0", "(X)", "385240", null, "5296", null, "24975", null, "1766", null, "27973", null, "3018", null, "22610", null, "2823", null, "26011", null, "2157", null, "26260", null, "1729", null, "28307", null, "1973", null, "34864", null, "1808", null, "30772", null, "2729", null, "31314", null, "2731", null, "23995", null, "1592", null, "21413", null, "1557", null, "21122", null, "2007", null, "19987", null, "2210", null, "16481", null, "1607", null, "12867", null, "1810", null, "9104", null, "1089", null, "4198", null, "1003", null, "2987", null, "832", null, "50583", null, "2259", null, "15839", null, "1773", null, "91397", null, "3276", null, "36432", null, "2104", null, "177528", null, "4237", null, "304401", null, "5237", null, "293843", null, "4937", null, "278167", null, "4707", null, "65624", null, "2599", null, "58328", null, "2359", null, "45637", null, "1622", null, "16289", null, "764", null, "35.3", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.5", null, "0.5", null, "7.3", null, "0.8", null, "5.9", null, "0.7", null, "6.8", null, "0.5", null, "6.8", null, "0.4", null, "7.3", null, "0.5", null, "9.0", null, "0.4", null, "8.0", null, "0.7", null, "8.1", null, "0.7", null, "6.2", null, "0.4", null, "5.6", null, "0.4", null, "5.5", null, "0.5", null, "5.2", null, "0.6", null, "4.3", null, "0.4", null, "3.3", null, "0.5", null, "2.4", null, "0.3", null, "1.1", null, "0.3", null, "0.8", null, "0.2", null, "13.1", null, "0.6", null, "4.1", null, "0.4", null, "23.7", null, "0.8", null, "9.5", null, "0.5", null, "46.1", null, "0.7", null, "79.0", null, "0.8", null, "76.3", null, "0.8", null, "72.2", null, "0.8", null, "17.0", null, "0.7", null, "15.1", null, "0.6", null, "11.8", null, "0.4", null, "4.2", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "371879", null, "5716", null, "22093", null, "1474", null, "22193", null, "2725", null, "25456", null, "2509", null, "24911", null, "1454", null, "24699", null, "1465", null, "28058", null, "1506", null, "31279", null, "1942", null, "29799", null, "2451", null, "26290", null, "2284", null, "22378", null, "1445", null, "21112", null, "1336", null, "17583", null, "1902", null, "22681", null, "1914", null, "18562", null, "1672", null, "13697", null, "1549", null, "9723", null, "1305", null, "5727", null, "1147", null, "5638", null, "1212", null, "47649", null, "2708", null, "14753", null, "1151", null, "84495", null, "3392", null, "34857", null, "1513", null, "165036", null, "3350", null, "297132", null, "4031", null, "287384", null, "3761", null, "270034", null, "4018", null, "76028", null, "2422", null, "65674", null, "2607", null, "53347", null, "1512", null, "21088", null, "802", null, "36.4", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.9", null, "0.4", null, "6.0", null, "0.7", null, "6.8", null, "0.7", null, "6.7", null, "0.4", null, "6.6", null, "0.4", null, "7.5", null, "0.4", null, "8.4", null, "0.5", null, "8.0", null, "0.6", null, "7.1", null, "0.6", null, "6.0", null, "0.4", null, "5.7", null, "0.4", null, "4.7", null, "0.5", null, "6.1", null, "0.5", null, "5.0", null, "0.5", null, "3.7", null, "0.4", null, "2.6", null, "0.3", null, "1.5", null, "0.3", null, "1.5", null, "0.3", null, "12.8", null, "0.6", null, "4.0", null, "0.3", null, "22.7", null, "0.7", null, "9.4", null, "0.4", null, "44.4", null, "0.6", null, "79.9", null, "0.7", null, "77.3", null, "0.7", null, "72.6", null, "0.8", null, "20.4", null, "0.7", null, "17.7", null, "0.7", null, "14.3", null, "0.4", null, "5.7", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "08", "08"], ["5001900US0901", "Congressional District 1 (119th Congress), Connecticut", "734950", null, "9210", null, "37812", null, "2921", null, "38856", null, "3129", null, "41142", null, "3367", null, "47694", null, "2901", null, "48230", null, "3055", null, "48767", null, "3323", null, "51418", null, "3704", null, "52623", null, "3702", null, "47189", null, "3492", null, "43415", null, "3409", null, "42191", null, "3057", null, "45933", null, "3341", null, "48507", null, "3215", null, "44392", null, "2969", null, "34643", null, "2450", null, "25868", null, "2156", null, "17475", null, "2189", null, "18795", null, "2100", null, "79998", null, "4476", null, "27721", null, "2094", null, "145531", null, "6143", null, "68203", null, "3699", null, "295921", null, "5823", null, "609338", null, "8190", null, "589419", null, "7889", null, "560728", null, "7277", null, "189680", null, "6015", null, "171520", null, "5640", null, "141173", null, "4947", null, "62138", null, "2984", null, "40.1", null, "0.7", null, "91.9", null, "2.2", null, "64.0", null, "1.6", null, "31.5", null, "1.3", null, "32.5", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.1", null, "0.4", null, "5.3", null, "0.4", null, "5.6", null, "0.4", null, "6.5", null, "0.4", null, "6.6", null, "0.4", null, "6.6", null, "0.4", null, "7.0", null, "0.5", null, "7.2", null, "0.5", null, "6.4", null, "0.5", null, "5.9", null, "0.4", null, "5.7", null, "0.4", null, "6.2", null, "0.4", null, "6.6", null, "0.4", null, "6.0", null, "0.4", null, "4.7", null, "0.3", null, "3.5", null, "0.3", null, "2.4", null, "0.3", null, "2.6", null, "0.3", null, "10.9", null, "0.5", null, "3.8", null, "0.3", null, "19.8", null, "0.7", null, "9.3", null, "0.5", null, "40.3", null, "0.7", null, "82.9", null, "0.7", null, "80.2", null, "0.7", null, "76.3", null, "0.7", null, "25.8", null, "0.9", null, "23.3", null, "0.8", null, "19.2", null, "0.7", null, "8.5", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.5", null, "-888888888.0", "(X)", "351963", null, "6664", null, "19909", null, "2295", null, "20087", null, "2178", null, "18880", null, "2365", null, "22375", null, "1704", null, "23995", null, "2207", null, "25024", null, "2300", null, "25902", null, "2349", null, "25251", null, "2504", null, "25270", null, "2764", null, "19502", null, "2066", null, "20894", null, "2071", null, "21903", null, "2190", null, "23475", null, "2104", null, "20180", null, "2066", null, "15880", null, "1749", null, "10148", null, "1202", null, "7275", null, "1245", null, "6013", null, "1195", null, "38967", null, "2809", null, "12382", null, "1070", null, "71258", null, "3958", null, "33988", null, "2803", null, "147817", null, "4860", null, "290019", null, "5667", null, "280705", null, "5661", null, "266256", null, "5494", null, "82971", null, "3321", null, "74655", null, "3238", null, "59496", null, "2775", null, "23436", null, "1719", null, "38.8", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.7", null, "0.6", null, "5.7", null, "0.6", null, "5.4", null, "0.7", null, "6.4", null, "0.5", null, "6.8", null, "0.6", null, "7.1", null, "0.6", null, "7.4", null, "0.7", null, "7.2", null, "0.7", null, "7.2", null, "0.7", null, "5.5", null, "0.6", null, "5.9", null, "0.6", null, "6.2", null, "0.6", null, "6.7", null, "0.6", null, "5.7", null, "0.6", null, "4.5", null, "0.5", null, "2.9", null, "0.3", null, "2.1", null, "0.4", null, "1.7", null, "0.3", null, "11.1", null, "0.7", null, "3.5", null, "0.3", null, "20.2", null, "1.0", null, "9.7", null, "0.8", null, "42.0", null, "1.1", null, "82.4", null, "1.0", null, "79.8", null, "1.0", null, "75.6", null, "1.1", null, "23.6", null, "1.0", null, "21.2", null, "1.0", null, "16.9", null, "0.8", null, "6.7", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "382987", null, "6153", null, "17903", null, "1653", null, "18769", null, "2379", null, "22262", null, "2323", null, "25319", null, "2459", null, "24235", null, "2067", null, "23743", null, "1826", null, "25516", null, "1901", null, "27372", null, "2502", null, "21919", null, "2169", null, "23913", null, "1867", null, "21297", null, "1740", null, "24030", null, "2266", null, "25032", null, "2222", null, "24212", null, "2262", null, "18763", null, "1722", null, "15720", null, "1678", null, "10200", null, "1657", null, "12782", null, "1737", null, "41031", null, "2908", null, "15339", null, "1722", null, "74273", null, "3896", null, "34215", null, "2447", null, "148104", null, "3775", null, "319319", null, "5407", null, "308714", null, "4889", null, "294472", null, "4495", null, "106709", null, "3837", null, "96865", null, "3612", null, "81677", null, "3051", null, "38702", null, "1930", null, "41.5", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.7", null, "0.4", null, "4.9", null, "0.6", null, "5.8", null, "0.6", null, "6.6", null, "0.6", null, "6.3", null, "0.5", null, "6.2", null, "0.5", null, "6.7", null, "0.5", null, "7.1", null, "0.7", null, "5.7", null, "0.6", null, "6.2", null, "0.5", null, "5.6", null, "0.4", null, "6.3", null, "0.6", null, "6.5", null, "0.6", null, "6.3", null, "0.6", null, "4.9", null, "0.5", null, "4.1", null, "0.4", null, "2.7", null, "0.4", null, "3.3", null, "0.5", null, "10.7", null, "0.7", null, "4.0", null, "0.4", null, "19.4", null, "0.9", null, "8.9", null, "0.6", null, "38.7", null, "0.8", null, "83.4", null, "0.8", null, "80.6", null, "0.9", null, "76.9", null, "1.0", null, "27.9", null, "1.0", null, "25.3", null, "0.9", null, "21.3", null, "0.8", null, "10.1", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "09", "01"], ["5001900US0902", "Congressional District 2 (119th Congress), Connecticut", "731305", null, "7274", null, "31307", null, "2235", null, "37976", null, "2802", null, "39402", null, "2928", null, "47343", null, "2818", null, "51239", null, "2912", null, "41069", null, "2527", null, "45303", null, "2500", null, "43488", null, "3552", null, "48184", null, "3176", null, "40455", null, "2613", null, "43764", null, "2510", null, "47963", null, "2538", null, "58099", null, "2805", null, "50634", null, "2886", null, "40643", null, "2952", null, "29759", null, "2658", null, "17793", null, "1897", null, "16884", null, "1585", null, "77378", null, "3434", null, "26249", null, "1959", null, "134934", null, "4397", null, "72333", null, "3380", null, "276626", null, "5486", null, "615250", null, "6716", null, "596371", null, "6352", null, "564709", null, "6529", null, "213812", null, "4923", null, "192283", null, "4784", null, "155713", null, "4241", null, "64436", null, "2721", null, "43.2", null, "0.6", null, "100.8", null, "2.0", null, "66.0", null, "1.4", null, "35.3", null, "1.1", null, "30.6", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.3", null, "0.3", null, "5.2", null, "0.4", null, "5.4", null, "0.4", null, "6.5", null, "0.4", null, "7.0", null, "0.4", null, "5.6", null, "0.3", null, "6.2", null, "0.3", null, "5.9", null, "0.5", null, "6.6", null, "0.4", null, "5.5", null, "0.4", null, "6.0", null, "0.3", null, "6.6", null, "0.4", null, "7.9", null, "0.4", null, "6.9", null, "0.4", null, "5.6", null, "0.4", null, "4.1", null, "0.4", null, "2.4", null, "0.3", null, "2.3", null, "0.2", null, "10.6", null, "0.4", null, "3.6", null, "0.3", null, "18.5", null, "0.5", null, "9.9", null, "0.4", null, "37.8", null, "0.6", null, "84.1", null, "0.5", null, "81.5", null, "0.5", null, "77.2", null, "0.6", null, "29.2", null, "0.6", null, "26.3", null, "0.6", null, "21.3", null, "0.6", null, "8.8", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "0.8", null, "-888888888.0", "(X)", "367095", null, "5007", null, "16851", null, "1648", null, "19621", null, "2060", null, "19700", null, "2084", null, "24405", null, "1941", null, "28127", null, "2133", null, "22643", null, "1816", null, "22295", null, "1585", null, "20569", null, "2051", null, "25775", null, "2396", null, "20080", null, "1644", null, "21564", null, "1586", null, "24346", null, "1660", null, "26520", null, "1843", null, "24793", null, "1944", null, "21070", null, "2192", null, "13766", null, "1789", null, "8169", null, "1071", null, "6801", null, "1106", null, "39321", null, "2092", null, "13974", null, "1316", null, "70146", null, "3039", null, "38558", null, "2827", null, "143814", null, "3811", null, "307360", null, "4606", null, "296949", null, "4430", null, "280966", null, "4148", null, "101119", null, "2939", null, "91190", null, "2861", null, "74599", null, "2502", null, "28736", null, "1658", null, "42.0", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.6", null, "0.4", null, "5.3", null, "0.5", null, "5.4", null, "0.6", null, "6.6", null, "0.5", null, "7.7", null, "0.5", null, "6.2", null, "0.5", null, "6.1", null, "0.4", null, "5.6", null, "0.6", null, "7.0", null, "0.6", null, "5.5", null, "0.4", null, "5.9", null, "0.4", null, "6.6", null, "0.5", null, "7.2", null, "0.5", null, "6.8", null, "0.5", null, "5.7", null, "0.6", null, "3.7", null, "0.5", null, "2.2", null, "0.3", null, "1.9", null, "0.3", null, "10.7", null, "0.5", null, "3.8", null, "0.3", null, "19.1", null, "0.7", null, "10.5", null, "0.7", null, "39.2", null, "0.8", null, "83.7", null, "0.7", null, "80.9", null, "0.7", null, "76.5", null, "0.8", null, "27.5", null, "0.8", null, "24.8", null, "0.7", null, "20.3", null, "0.7", null, "7.8", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "364210", null, "5167", null, "14456", null, "1282", null, "18355", null, "1947", null, "19702", null, "2263", null, "22938", null, "2030", null, "23112", null, "1870", null, "18426", null, "1331", null, "23008", null, "1735", null, "22919", null, "2389", null, "22409", null, "2088", null, "20375", null, "1722", null, "22200", null, "1550", null, "23617", null, "1642", null, "31579", null, "2216", null, "25841", null, "1824", null, "19573", null, "1747", null, "15993", null, "1594", null, "9624", null, "1424", null, "10083", null, "1160", null, "38057", null, "2384", null, "12275", null, "1387", null, "64788", null, "2815", null, "33775", null, "2309", null, "132812", null, "3659", null, "307890", null, "4554", null, "299422", null, "4192", null, "283743", null, "4251", null, "112693", null, "3204", null, "101093", null, "3048", null, "81114", null, "2507", null, "35700", null, "1716", null, "44.4", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.0", null, "0.4", null, "5.0", null, "0.5", null, "5.4", null, "0.6", null, "6.3", null, "0.5", null, "6.3", null, "0.5", null, "5.1", null, "0.4", null, "6.3", null, "0.5", null, "6.3", null, "0.7", null, "6.2", null, "0.6", null, "5.6", null, "0.5", null, "6.1", null, "0.4", null, "6.5", null, "0.5", null, "8.7", null, "0.6", null, "7.1", null, "0.5", null, "5.4", null, "0.5", null, "4.4", null, "0.4", null, "2.6", null, "0.4", null, "2.8", null, "0.3", null, "10.4", null, "0.6", null, "3.4", null, "0.4", null, "17.8", null, "0.7", null, "9.3", null, "0.6", null, "36.5", null, "0.8", null, "84.5", null, "0.6", null, "82.2", null, "0.7", null, "77.9", null, "0.7", null, "30.9", null, "0.8", null, "27.8", null, "0.8", null, "22.3", null, "0.7", null, "9.8", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "09", "02"], ["5001900US0903", "Congressional District 3 (119th Congress), Connecticut", "741529", null, "10259", null, "35847", null, "2647", null, "35303", null, "3212", null, "38300", null, "3996", null, "51730", null, "3018", null, "56226", null, "2954", null, "50495", null, "2425", null, "51898", null, "3598", null, "48749", null, "3641", null, "48299", null, "3749", null, "41353", null, "2563", null, "45736", null, "2597", null, "52451", null, "3670", null, "45076", null, "3361", null, "43612", null, "3051", null, "34464", null, "2811", null, "28054", null, "2543", null, "17436", null, "1785", null, "16500", null, "1959", null, "73603", null, "4318", null, "27188", null, "2305", null, "136638", null, "5872", null, "80768", null, "3110", null, "307397", null, "7509", null, "622857", null, "8550", null, "604891", null, "8043", null, "570035", null, "8373", null, "185142", null, "5702", null, "165847", null, "5386", null, "140066", null, "4177", null, "61990", null, "2871", null, "40.2", null, "0.7", null, "95.8", null, "2.4", null, "59.5", null, "1.6", null, "30.1", null, "1.1", null, "29.4", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.8", null, "0.3", null, "4.8", null, "0.4", null, "5.2", null, "0.5", null, "7.0", null, "0.4", null, "7.6", null, "0.4", null, "6.8", null, "0.3", null, "7.0", null, "0.5", null, "6.6", null, "0.5", null, "6.5", null, "0.5", null, "5.6", null, "0.3", null, "6.2", null, "0.3", null, "7.1", null, "0.5", null, "6.1", null, "0.5", null, "5.9", null, "0.4", null, "4.6", null, "0.4", null, "3.8", null, "0.3", null, "2.4", null, "0.2", null, "2.2", null, "0.3", null, "9.9", null, "0.5", null, "3.7", null, "0.3", null, "18.4", null, "0.7", null, "10.9", null, "0.4", null, "41.5", null, "0.7", null, "84.0", null, "0.6", null, "81.6", null, "0.7", null, "76.9", null, "0.8", null, "25.0", null, "0.8", null, "22.4", null, "0.8", null, "18.9", null, "0.6", null, "8.4", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.1", null, "-888888888.0", "(X)", "362824", null, "6386", null, "19409", null, "1823", null, "17945", null, "2531", null, "19912", null, "2648", null, "25209", null, "2118", null, "28707", null, "1892", null, "25645", null, "1893", null, "26901", null, "2632", null, "23516", null, "2750", null, "23413", null, "2448", null, "20432", null, "1560", null, "22270", null, "1529", null, "26849", null, "2744", null, "21521", null, "2227", null, "20357", null, "1948", null, "15819", null, "1745", null, "12256", null, "1228", null, "6594", null, "1134", null, "6069", null, "1504", null, "37857", null, "2779", null, "13558", null, "1582", null, "70824", null, "3870", null, "40358", null, "2103", null, "153391", null, "5051", null, "300721", null, "5558", null, "292000", null, "5296", null, "274342", null, "5324", null, "82616", null, "3154", null, "74197", null, "3127", null, "61095", null, "2502", null, "24919", null, "1572", null, "39.0", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.3", null, "0.5", null, "4.9", null, "0.7", null, "5.5", null, "0.7", null, "6.9", null, "0.5", null, "7.9", null, "0.5", null, "7.1", null, "0.5", null, "7.4", null, "0.7", null, "6.5", null, "0.8", null, "6.5", null, "0.6", null, "5.6", null, "0.4", null, "6.1", null, "0.4", null, "7.4", null, "0.8", null, "5.9", null, "0.6", null, "5.6", null, "0.6", null, "4.4", null, "0.5", null, "3.4", null, "0.3", null, "1.8", null, "0.3", null, "1.7", null, "0.4", null, "10.4", null, "0.7", null, "3.7", null, "0.4", null, "19.5", null, "0.9", null, "11.1", null, "0.5", null, "42.3", null, "1.0", null, "82.9", null, "0.8", null, "80.5", null, "0.9", null, "75.6", null, "1.1", null, "22.8", null, "0.8", null, "20.4", null, "0.8", null, "16.8", null, "0.7", null, "6.9", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "378705", null, "7339", null, "16438", null, "1818", null, "17358", null, "2090", null, "18388", null, "2605", null, "26521", null, "1740", null, "27519", null, "2115", null, "24850", null, "1653", null, "24997", null, "1941", null, "25233", null, "2666", null, "24886", null, "2767", null, "20921", null, "1687", null, "23466", null, "1852", null, "25602", null, "2134", null, "23555", null, "2225", null, "23255", null, "1988", null, "18645", null, "1934", null, "15798", null, "1849", null, "10842", null, "1261", null, "10431", null, "1273", null, "35746", null, "2920", null, "13630", null, "1389", null, "65814", null, "3802", null, "40410", null, "2143", null, "154006", null, "4673", null, "322136", null, "6121", null, "312891", null, "5853", null, "295693", null, "6085", null, "102526", null, "3932", null, "91650", null, "3725", null, "78971", null, "2904", null, "37071", null, "1983", null, "41.6", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.3", null, "0.5", null, "4.6", null, "0.5", null, "4.9", null, "0.7", null, "7.0", null, "0.4", null, "7.3", null, "0.5", null, "6.6", null, "0.4", null, "6.6", null, "0.5", null, "6.7", null, "0.7", null, "6.6", null, "0.7", null, "5.5", null, "0.4", null, "6.2", null, "0.5", null, "6.8", null, "0.6", null, "6.2", null, "0.6", null, "6.1", null, "0.5", null, "4.9", null, "0.5", null, "4.2", null, "0.5", null, "2.9", null, "0.3", null, "2.8", null, "0.3", null, "9.4", null, "0.7", null, "3.6", null, "0.4", null, "17.4", null, "0.8", null, "10.7", null, "0.5", null, "40.7", null, "0.9", null, "85.1", null, "0.8", null, "82.6", null, "0.8", null, "78.1", null, "1.0", null, "27.1", null, "1.1", null, "24.2", null, "1.0", null, "20.9", null, "0.8", null, "9.8", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "09", "03"], ["5001900US0904", "Congressional District 4 (119th Congress), Connecticut", "739251", null, "6188", null, "41487", null, "1807", null, "45358", null, "3270", null, "49119", null, "3204", null, "52798", null, "3205", null, "42188", null, "3060", null, "45707", null, "2927", null, "44506", null, "2284", null, "49927", null, "3299", null, "47656", null, "3659", null, "45557", null, "2218", null, "51390", null, "2015", null, "47277", null, "3464", null, "51365", null, "3085", null, "38588", null, "2666", null, "32453", null, "2634", null, "20883", null, "2083", null, "16011", null, "1914", null, "16981", null, "2062", null, "94477", null, "2836", null, "30404", null, "2140", null, "166368", null, "3574", null, "64582", null, "3300", null, "282782", null, "5761", null, "591478", null, "5184", null, "572883", null, "5095", null, "541145", null, "5337", null, "176281", null, "4238", null, "153324", null, "4163", null, "124916", null, "3414", null, "53875", null, "2239", null, "39.9", null, "0.5", null, "94.6", null, "2.1", null, "65.0", null, "1.6", null, "27.9", null, "1.0", null, "37.1", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.6", null, "0.2", null, "6.1", null, "0.4", null, "6.6", null, "0.4", null, "7.1", null, "0.4", null, "5.7", null, "0.4", null, "6.2", null, "0.4", null, "6.0", null, "0.3", null, "6.8", null, "0.4", null, "6.4", null, "0.5", null, "6.2", null, "0.3", null, "7.0", null, "0.3", null, "6.4", null, "0.5", null, "6.9", null, "0.4", null, "5.2", null, "0.4", null, "4.4", null, "0.4", null, "2.8", null, "0.3", null, "2.2", null, "0.3", null, "2.3", null, "0.3", null, "12.8", null, "0.4", null, "4.1", null, "0.3", null, "22.5", null, "0.4", null, "8.7", null, "0.4", null, "38.3", null, "0.7", null, "80.0", null, "0.5", null, "77.5", null, "0.4", null, "73.2", null, "0.5", null, "23.8", null, "0.6", null, "20.7", null, "0.6", null, "16.9", null, "0.5", null, "7.3", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.2", null, "-888888888.0", "(X)", "359294", null, "5259", null, "21544", null, "1195", null, "21482", null, "2469", null, "25318", null, "2407", null, "25887", null, "2607", null, "20380", null, "1962", null, "22769", null, "1996", null, "21211", null, "1564", null, "24164", null, "2251", null, "23407", null, "2677", null, "23552", null, "1517", null, "24419", null, "1438", null, "24992", null, "2395", null, "24307", null, "2048", null, "18362", null, "1571", null, "15189", null, "1679", null, "8923", null, "1309", null, "7427", null, "1217", null, "5961", null, "1152", null, "46800", null, "2361", null, "15787", null, "1866", null, "84131", null, "2956", null, "30480", null, "2494", null, "137818", null, "4652", null, "284597", null, "4215", null, "275163", null, "4038", null, "261057", null, "3969", null, "80169", null, "3230", null, "68421", null, "2784", null, "55862", null, "2169", null, "22311", null, "1457", null, "39.4", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.0", null, "0.3", null, "6.0", null, "0.7", null, "7.0", null, "0.7", null, "7.2", null, "0.7", null, "5.7", null, "0.5", null, "6.3", null, "0.5", null, "5.9", null, "0.4", null, "6.7", null, "0.6", null, "6.5", null, "0.7", null, "6.6", null, "0.4", null, "6.8", null, "0.4", null, "7.0", null, "0.7", null, "6.8", null, "0.6", null, "5.1", null, "0.4", null, "4.2", null, "0.5", null, "2.5", null, "0.4", null, "2.1", null, "0.3", null, "1.7", null, "0.3", null, "13.0", null, "0.6", null, "4.4", null, "0.5", null, "23.4", null, "0.7", null, "8.5", null, "0.7", null, "38.4", null, "1.0", null, "79.2", null, "0.7", null, "76.6", null, "0.7", null, "72.7", null, "0.8", null, "22.3", null, "1.0", null, "19.0", null, "0.8", null, "15.5", null, "0.7", null, "6.2", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "379957", null, "5135", null, "19943", null, "1511", null, "23876", null, "2192", null, "23801", null, "2347", null, "26911", null, "1895", null, "21808", null, "2447", null, "22938", null, "1957", null, "23295", null, "1342", null, "25763", null, "2199", null, "24249", null, "2143", null, "22005", null, "1332", null, "26971", null, "1400", null, "22285", null, "2247", null, "27058", null, "2396", null, "20226", null, "2082", null, "17264", null, "1945", null, "11960", null, "1625", null, "8584", null, "1383", null, "11020", null, "1604", null, "47677", null, "1729", null, "14617", null, "1292", null, "82237", null, "2695", null, "34102", null, "2240", null, "144964", null, "3477", null, "306881", null, "4405", null, "297720", null, "4237", null, "280088", null, "4128", null, "96112", null, "2609", null, "84903", null, "2489", null, "69054", null, "2065", null, "31564", null, "1547", null, "40.3", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.4", null, "6.3", null, "0.6", null, "6.3", null, "0.6", null, "7.1", null, "0.5", null, "5.7", null, "0.6", null, "6.0", null, "0.5", null, "6.1", null, "0.3", null, "6.8", null, "0.6", null, "6.4", null, "0.6", null, "5.8", null, "0.4", null, "7.1", null, "0.4", null, "5.9", null, "0.6", null, "7.1", null, "0.6", null, "5.3", null, "0.6", null, "4.5", null, "0.5", null, "3.1", null, "0.4", null, "2.3", null, "0.4", null, "2.9", null, "0.4", null, "12.5", null, "0.4", null, "3.8", null, "0.3", null, "21.6", null, "0.6", null, "9.0", null, "0.6", null, "38.2", null, "0.7", null, "80.8", null, "0.6", null, "78.4", null, "0.6", null, "73.7", null, "0.7", null, "25.3", null, "0.6", null, "22.3", null, "0.6", null, "18.2", null, "0.6", null, "8.3", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "09", "04"], ["5001900US0905", "Congressional District 5 (119th Congress), Connecticut", "728034", null, "11495", null, "33443", null, "3691", null, "39033", null, "4060", null, "43106", null, "4000", null, "41932", null, "4255", null, "42187", null, "3826", null, "43648", null, "4030", null, "45393", null, "4207", null, "49195", null, "4185", null, "44242", null, "4174", null, "44373", null, "3461", null, "42230", null, "3597", null, "52538", null, "4085", null, "55245", null, "4994", null, "49956", null, "3502", null, "37384", null, "3231", null, "29022", null, "3211", null, "18141", null, "2154", null, "16966", null, "2268", null, "82139", null, "5171", null, "28167", null, "2918", null, "143749", null, "6735", null, "55952", null, "4458", null, "266597", null, "9255", null, "603337", null, "9443", null, "584285", null, "8889", null, "561173", null, "8617", null, "206714", null, "7701", null, "185151", null, "6485", null, "151469", null, "6162", null, "64129", null, "4014", null, "43.1", null, "0.9", null, "99.8", null, "3.3", null, "68.2", null, "2.4", null, "35.0", null, "1.9", null, "33.2", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.6", null, "0.5", null, "5.4", null, "0.5", null, "5.9", null, "0.5", null, "5.8", null, "0.6", null, "5.8", null, "0.5", null, "6.0", null, "0.5", null, "6.2", null, "0.6", null, "6.8", null, "0.5", null, "6.1", null, "0.6", null, "6.1", null, "0.5", null, "5.8", null, "0.5", null, "7.2", null, "0.6", null, "7.6", null, "0.7", null, "6.9", null, "0.5", null, "5.1", null, "0.5", null, "4.0", null, "0.5", null, "2.5", null, "0.3", null, "2.3", null, "0.3", null, "11.3", null, "0.6", null, "3.9", null, "0.4", null, "19.7", null, "0.8", null, "7.7", null, "0.6", null, "36.6", null, "1.0", null, "82.9", null, "0.8", null, "80.3", null, "0.8", null, "77.1", null, "0.8", null, "28.4", null, "1.1", null, "25.4", null, "1.0", null, "20.8", null, "0.9", null, "8.8", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.3", null, "-888888888.0", "(X)", "363720", null, "8478", null, "15741", null, "2644", null, "23444", null, "2988", null, "23367", null, "3071", null, "22420", null, "3146", null, "23170", null, "2597", null, "21626", null, "2399", null, "23744", null, "2662", null, "25015", null, "2722", null, "22666", null, "2918", null, "21463", null, "2107", null, "21341", null, "2399", null, "25200", null, "2633", null, "25401", null, "3029", null, "23782", null, "2337", null, "17790", null, "1798", null, "14118", null, "2046", null, "7925", null, "1278", null, "5507", null, "1269", null, "46811", null, "3952", null, "14996", null, "2159", null, "77548", null, "4855", null, "30594", null, "3108", null, "138641", null, "6609", null, "296723", null, "7109", null, "286172", null, "6736", null, "273323", null, "6335", null, "94523", null, "4234", null, "84911", null, "3962", null, "69122", null, "3299", null, "27550", null, "2253", null, "40.7", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.3", null, "0.7", null, "6.4", null, "0.8", null, "6.4", null, "0.8", null, "6.2", null, "0.8", null, "6.4", null, "0.7", null, "5.9", null, "0.6", null, "6.5", null, "0.7", null, "6.9", null, "0.7", null, "6.2", null, "0.8", null, "5.9", null, "0.6", null, "5.9", null, "0.6", null, "6.9", null, "0.7", null, "7.0", null, "0.8", null, "6.5", null, "0.6", null, "4.9", null, "0.5", null, "3.9", null, "0.6", null, "2.2", null, "0.4", null, "1.5", null, "0.4", null, "12.9", null, "1.0", null, "4.1", null, "0.6", null, "21.3", null, "1.1", null, "8.4", null, "0.8", null, "38.1", null, "1.3", null, "81.6", null, "1.1", null, "78.7", null, "1.1", null, "75.1", null, "1.3", null, "26.0", null, "1.2", null, "23.3", null, "1.2", null, "19.0", null, "1.0", null, "7.6", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "364314", null, "8099", null, "17702", null, "2283", null, "15589", null, "2673", null, "19739", null, "2426", null, "19512", null, "2404", null, "19017", null, "2709", null, "22022", null, "2698", null, "21649", null, "2585", null, "24180", null, "2882", null, "21576", null, "2494", null, "22910", null, "2427", null, "20889", null, "2237", null, "27338", null, "2798", null, "29844", null, "3074", null, "26174", null, "2228", null, "19594", null, "2377", null, "14904", null, "1891", null, "10216", null, "1742", null, "11459", null, "1753", null, "35328", null, "3251", null, "13171", null, "1918", null, "66201", null, "4431", null, "25358", null, "3118", null, "127956", null, "5683", null, "306614", null, "6966", null, "298113", null, "6719", null, "287850", null, "6405", null, "112191", null, "4998", null, "100240", null, "4271", null, "82347", null, "4169", null, "36579", null, "2684", null, "45.3", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.9", null, "0.6", null, "4.3", null, "0.7", null, "5.4", null, "0.7", null, "5.4", null, "0.6", null, "5.2", null, "0.7", null, "6.0", null, "0.7", null, "5.9", null, "0.7", null, "6.6", null, "0.8", null, "5.9", null, "0.7", null, "6.3", null, "0.7", null, "5.7", null, "0.6", null, "7.5", null, "0.7", null, "8.2", null, "0.8", null, "7.2", null, "0.6", null, "5.4", null, "0.7", null, "4.1", null, "0.5", null, "2.8", null, "0.5", null, "3.1", null, "0.5", null, "9.7", null, "0.8", null, "3.6", null, "0.5", null, "18.2", null, "1.0", null, "7.0", null, "0.8", null, "35.1", null, "1.3", null, "84.2", null, "1.0", null, "81.8", null, "1.0", null, "79.0", null, "1.0", null, "30.8", null, "1.3", null, "27.5", null, "1.1", null, "22.6", null, "1.1", null, "10.0", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "09", "05"], ["5001900US1000", "Congressional District (at Large) (119th Congress), Delaware", "1051917", null, "-555555555", "*****", "54788", null, "209", null, "57714", null, "3688", null, "62720", null, "3707", null, "66217", null, "2238", null, "63767", null, "2365", null, "59395", null, "1725", null, "67753", null, "1127", null, "67752", null, "4398", null, "64490", null, "4090", null, "57213", null, "1321", null, "59062", null, "1135", null, "64820", null, "3732", null, "78402", null, "3652", null, "75197", null, "3276", null, "60775", null, "3344", null, "43429", null, "2597", null, "25834", null, "2169", null, "22589", null, "2215", null, "120434", null, "496", null, "38524", null, "465", null, "213746", null, "243", null, "91460", null, "1711", null, "389374", null, "1784", null, "863403", null, "1751", null, "838171", null, "243", null, "797979", null, "2746", null, "306226", null, "3742", null, "273966", null, "3002", null, "227824", null, "779", null, "91852", null, "937", null, "42.1", null, "0.3", null, "93.0", null, "0.5", null, "72.3", null, "0.2", null, "37.3", null, "0.2", null, "35.0", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.1", null, "5.5", null, "0.4", null, "6.0", null, "0.4", null, "6.3", null, "0.2", null, "6.1", null, "0.2", null, "5.6", null, "0.2", null, "6.4", null, "0.1", null, "6.4", null, "0.4", null, "6.1", null, "0.4", null, "5.4", null, "0.1", null, "5.6", null, "0.1", null, "6.2", null, "0.4", null, "7.5", null, "0.3", null, "7.1", null, "0.3", null, "5.8", null, "0.3", null, "4.1", null, "0.2", null, "2.5", null, "0.2", null, "2.1", null, "0.2", null, "11.4", null, "0.1", null, "3.7", null, "0.1", null, "20.3", null, "0.1", null, "8.7", null, "0.2", null, "37.0", null, "0.2", null, "82.1", null, "0.2", null, "79.7", null, "0.1", null, "75.9", null, "0.3", null, "29.1", null, "0.4", null, "26.0", null, "0.3", null, "21.7", null, "0.1", null, "8.7", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.3", null, "-888888888.0", "(X)", "506763", null, "1404", null, "26707", null, "1179", null, "28485", null, "2943", null, "32523", null, "2927", null, "31381", null, "1679", null, "33301", null, "1628", null, "29632", null, "1202", null, "34870", null, "955", null, "33103", null, "2965", null, "30173", null, "2736", null, "27360", null, "1148", null, "28697", null, "920", null, "30567", null, "2279", null, "36790", null, "2191", null, "33999", null, "2153", null, "29112", null, "2136", null, "20324", null, "1354", null, "11554", null, "1275", null, "8185", null, "1331", null, "61008", null, "318", null, "18913", null, "631", null, "106628", null, "1319", null, "45769", null, "1205", null, "192460", null, "1430", null, "413075", null, "1348", null, "400135", null, "426", null, "381180", null, "2239", null, "139964", null, "2292", null, "124665", null, "1958", null, "103174", null, "487", null, "40063", null, "537", null, "40.6", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.3", null, "0.2", null, "5.6", null, "0.6", null, "6.4", null, "0.6", null, "6.2", null, "0.3", null, "6.6", null, "0.3", null, "5.8", null, "0.2", null, "6.9", null, "0.2", null, "6.5", null, "0.6", null, "6.0", null, "0.5", null, "5.4", null, "0.2", null, "5.7", null, "0.2", null, "6.0", null, "0.5", null, "7.3", null, "0.4", null, "6.7", null, "0.4", null, "5.7", null, "0.4", null, "4.0", null, "0.3", null, "2.3", null, "0.3", null, "1.6", null, "0.3", null, "12.0", null, "0.1", null, "3.7", null, "0.1", null, "21.0", null, "0.2", null, "9.0", null, "0.2", null, "38.0", null, "0.3", null, "81.5", null, "0.3", null, "79.0", null, "0.2", null, "75.2", null, "0.5", null, "27.6", null, "0.5", null, "24.6", null, "0.4", null, "20.4", null, "0.1", null, "7.9", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "545154", null, "1404", null, "28081", null, "1184", null, "29229", null, "2445", null, "30197", null, "2346", null, "34836", null, "1985", null, "30466", null, "1894", null, "29763", null, "1035", null, "32883", null, "589", null, "34649", null, "2605", null, "34317", null, "2653", null, "29853", null, "895", null, "30365", null, "721", null, "34253", null, "2810", null, "41612", null, "2793", null, "41198", null, "2230", null, "31663", null, "2243", null, "23105", null, "1937", null, "14280", null, "1544", null, "14404", null, "1507", null, "59426", null, "507", null, "19611", null, "742", null, "107118", null, "1310", null, "45691", null, "1067", null, "196914", null, "1223", null, "450328", null, "1392", null, "438036", null, "403", null, "416799", null, "1742", null, "166262", null, "2838", null, "149301", null, "2309", null, "124650", null, "526", null, "51789", null, "618", null, "43.3", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.2", null, "5.4", null, "0.4", null, "5.5", null, "0.4", null, "6.4", null, "0.4", null, "5.6", null, "0.3", null, "5.5", null, "0.2", null, "6.0", null, "0.1", null, "6.4", null, "0.5", null, "6.3", null, "0.5", null, "5.5", null, "0.2", null, "5.6", null, "0.1", null, "6.3", null, "0.5", null, "7.6", null, "0.5", null, "7.6", null, "0.4", null, "5.8", null, "0.4", null, "4.2", null, "0.4", null, "2.6", null, "0.3", null, "2.6", null, "0.3", null, "10.9", null, "0.1", null, "3.6", null, "0.1", null, "19.6", null, "0.2", null, "8.4", null, "0.2", null, "36.1", null, "0.2", null, "82.6", null, "0.3", null, "80.4", null, "0.2", null, "76.5", null, "0.3", null, "30.5", null, "0.5", null, "27.4", null, "0.4", null, "22.9", null, "0.1", null, "9.5", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10", "00"], ["5001900US1198", "Delegate District (at Large) (119th Congress), District of Columbia", "702250", null, "-555555555", "*****", "39498", null, "79", null, "40844", null, "3529", null, "31330", null, "3541", null, "37960", null, "1898", null, "51246", null, "1866", null, "73496", null, "715", null, "77820", null, "253", null, "63730", null, "3422", null, "56764", null, "3382", null, "39775", null, "559", null, "34776", null, "558", null, "32940", null, "2480", null, "31397", null, "2479", null, "27028", null, "2049", null, "23822", null, "1982", null, "17251", null, "1855", null, "13210", null, "2013", null, "9363", null, "1126", null, "72174", null, "259", null, "18346", null, "268", null, "130018", null, "48", null, "70860", null, "676", null, "361016", null, "394", null, "584506", null, "1651", null, "572232", null, "48", null, "543551", null, "2464", null, "122071", null, "2482", null, "110753", null, "2623", null, "90674", null, "94", null, "39824", null, "716", null, "34.9", null, "0.1", null, "89.7", null, "0.5", null, "45.8", null, "0.1", null, "18.8", null, "0.1", null, "27.0", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.6", null, "0.1", null, "5.8", null, "0.5", null, "4.5", null, "0.5", null, "5.4", null, "0.3", null, "7.3", null, "0.3", null, "10.5", null, "0.1", null, "11.1", null, "0.1", null, "9.1", null, "0.5", null, "8.1", null, "0.5", null, "5.7", null, "0.1", null, "5.0", null, "0.1", null, "4.7", null, "0.4", null, "4.5", null, "0.4", null, "3.8", null, "0.3", null, "3.4", null, "0.3", null, "2.5", null, "0.3", null, "1.9", null, "0.3", null, "1.3", null, "0.2", null, "10.3", null, "0.1", null, "2.6", null, "0.1", null, "18.5", null, "0.1", null, "10.1", null, "0.1", null, "51.4", null, "0.1", null, "83.2", null, "0.2", null, "81.5", null, "0.1", null, "77.4", null, "0.4", null, "17.4", null, "0.4", null, "15.8", null, "0.4", null, "12.9", null, "0.1", null, "5.7", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.5", null, "-888888888.0", "(X)", "332062", null, "940", null, "19495", null, "408", null, "19365", null, "2280", null, "17192", null, "2266", null, "17787", null, "1349", null, "22533", null, "1075", null, "32711", null, "3", null, "37052", null, "161", null, "31355", null, "2229", null, "27663", null, "2203", null, "19563", null, "559", null, "17565", null, "559", null, "16781", null, "1768", null, "14980", null, "1776", null, "12431", null, "1482", null, "9881", null, "1370", null, "6773", null, "889", null, "5067", null, "1085", null, "3868", null, "757", null, "36557", null, "95", null, "9048", null, "772", null, "65100", null, "863", null, "31272", null, "48", null, "169101", null, "847", null, "273263", null, "1291", null, "266962", null, "278", null, "253928", null, "1593", null, "53000", null, "1776", null, "48190", null, "1775", null, "38020", null, "2", null, "15708", null, "580", null, "35.0", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.9", null, "0.1", null, "5.8", null, "0.7", null, "5.2", null, "0.7", null, "5.4", null, "0.4", null, "6.8", null, "0.3", null, "9.9", null, "0.1", null, "11.2", null, "0.1", null, "9.4", null, "0.7", null, "8.3", null, "0.7", null, "5.9", null, "0.2", null, "5.3", null, "0.2", null, "5.1", null, "0.5", null, "4.5", null, "0.5", null, "3.7", null, "0.4", null, "3.0", null, "0.4", null, "2.0", null, "0.3", null, "1.5", null, "0.3", null, "1.2", null, "0.2", null, "11.0", null, "0.1", null, "2.7", null, "0.2", null, "19.6", null, "0.2", null, "9.4", null, "0.1", null, "50.9", null, "0.2", null, "82.3", null, "0.4", null, "80.4", null, "0.2", null, "76.5", null, "0.5", null, "16.0", null, "0.5", null, "14.5", null, "0.5", null, "11.4", null, "0.1", null, "4.7", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "370188", null, "940", null, "20003", null, "402", null, "21479", null, "2302", null, "14138", null, "2307", null, "20173", null, "1593", null, "28713", null, "1371", null, "40785", null, "715", null, "40768", null, "232", null, "32375", null, "2516", null, "29101", null, "2491", null, "20212", null, "2", null, "17211", null, "2", null, "16159", null, "1896", null, "16417", null, "1905", null, "14597", null, "1537", null, "13941", null, "1526", null, "10478", null, "1441", null, "8143", null, "1680", null, "5495", null, "959", null, "35617", null, "266", null, "9298", null, "810", null, "64918", null, "862", null, "39588", null, "678", null, "191915", null, "857", null, "311243", null, "1433", null, "305270", null, "274", null, "289623", null, "1910", null, "69071", null, "1907", null, "62563", null, "1864", null, "52654", null, "93", null, "24116", null, "453", null, "34.9", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.1", null, "5.8", null, "0.6", null, "3.8", null, "0.6", null, "5.4", null, "0.4", null, "7.8", null, "0.4", null, "11.0", null, "0.2", null, "11.0", null, "0.1", null, "8.7", null, "0.7", null, "7.9", null, "0.7", null, "5.5", null, "0.1", null, "4.6", null, "0.1", null, "4.4", null, "0.5", null, "4.4", null, "0.5", null, "3.9", null, "0.4", null, "3.8", null, "0.4", null, "2.8", null, "0.4", null, "2.2", null, "0.5", null, "1.5", null, "0.3", null, "9.6", null, "0.1", null, "2.5", null, "0.2", null, "17.5", null, "0.2", null, "10.7", null, "0.2", null, "51.8", null, "0.1", null, "84.1", null, "0.4", null, "82.5", null, "0.2", null, "78.2", null, "0.5", null, "18.7", null, "0.5", null, "16.9", null, "0.5", null, "14.2", null, "0.1", null, "6.5", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11", "98"], ["5001900US1201", "Congressional District 1 (119th Congress), Florida", "817541", null, "3411", null, "44056", null, "1214", null, "48466", null, "3155", null, "50459", null, "3015", null, "49901", null, "1755", null, "53746", null, "2951", null, "56590", null, "2231", null, "59018", null, "2174", null, "57033", null, "4380", null, "54369", null, "4280", null, "45101", null, "1764", null, "47288", null, "1794", null, "49656", null, "3313", null, "55711", null, "3076", null, "48693", null, "2423", null, "39197", null, "2613", null, "28232", null, "2284", null, "16445", null, "1700", null, "13580", null, "1665", null, "98925", null, "2072", null, "30767", null, "1075", null, "173748", null, "1462", null, "72880", null, "2944", null, "330657", null, "3381", null, "663687", null, "3532", null, "643793", null, "2838", null, "614844", null, "3789", null, "201858", null, "3176", null, "179875", null, "3063", null, "146147", null, "2113", null, "58257", null, "1413", null, "39.0", null, "0.5", null, "100.5", null, "0.9", null, "64.3", null, "0.7", null, "29.4", null, "0.5", null, "34.9", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.1", null, "5.9", null, "0.4", null, "6.2", null, "0.4", null, "6.1", null, "0.2", null, "6.6", null, "0.4", null, "6.9", null, "0.3", null, "7.2", null, "0.3", null, "7.0", null, "0.5", null, "6.7", null, "0.5", null, "5.5", null, "0.2", null, "5.8", null, "0.2", null, "6.1", null, "0.4", null, "6.8", null, "0.4", null, "6.0", null, "0.3", null, "4.8", null, "0.3", null, "3.5", null, "0.3", null, "2.0", null, "0.2", null, "1.7", null, "0.2", null, "12.1", null, "0.2", null, "3.8", null, "0.1", null, "21.3", null, "0.1", null, "8.9", null, "0.4", null, "40.4", null, "0.3", null, "81.2", null, "0.3", null, "78.7", null, "0.1", null, "75.2", null, "0.4", null, "24.7", null, "0.4", null, "22.0", null, "0.4", null, "17.9", null, "0.3", null, "7.1", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.0", null, "-888888888.0", "(X)", "409872", null, "2366", null, "22804", null, "1148", null, "25941", null, "2231", null, "24426", null, "2159", null, "27349", null, "1668", null, "29115", null, "1621", null, "30125", null, "1562", null, "29669", null, "1569", null, "29248", null, "2880", null, "28866", null, "2898", null, "22022", null, "1011", null, "23861", null, "1296", null, "23200", null, "1932", null, "27645", null, "1955", null, "22678", null, "1794", null, "18110", null, "1878", null, "12538", null, "1235", null, "6682", null, "981", null, "5593", null, "944", null, "50367", null, "1393", null, "15497", null, "1037", null, "88668", null, "1780", null, "40967", null, "1599", null, "174372", null, "2171", null, "331343", null, "1946", null, "321204", null, "1713", null, "304468", null, "2941", null, "93246", null, "2095", null, "82303", null, "2103", null, "65601", null, "1257", null, "24813", null, "666", null, "37.4", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.6", null, "0.3", null, "6.3", null, "0.5", null, "6.0", null, "0.5", null, "6.7", null, "0.4", null, "7.1", null, "0.4", null, "7.3", null, "0.4", null, "7.2", null, "0.4", null, "7.1", null, "0.7", null, "7.0", null, "0.7", null, "5.4", null, "0.2", null, "5.8", null, "0.3", null, "5.7", null, "0.5", null, "6.7", null, "0.5", null, "5.5", null, "0.4", null, "4.4", null, "0.5", null, "3.1", null, "0.3", null, "1.6", null, "0.2", null, "1.4", null, "0.2", null, "12.3", null, "0.3", null, "3.8", null, "0.2", null, "21.6", null, "0.4", null, "10.0", null, "0.4", null, "42.5", null, "0.4", null, "80.8", null, "0.4", null, "78.4", null, "0.4", null, "74.3", null, "0.6", null, "22.8", null, "0.5", null, "20.1", null, "0.5", null, "16.0", null, "0.3", null, "6.1", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "407669", null, "2563", null, "21252", null, "1070", null, "22525", null, "1988", null, "26033", null, "2107", null, "22552", null, "1600", null, "24631", null, "2131", null, "26465", null, "1446", null, "29349", null, "1676", null, "27785", null, "2735", null, "25503", null, "2799", null, "23079", null, "1578", null, "23427", null, "1168", null, "26456", null, "2389", null, "28066", null, "2118", null, "26015", null, "1791", null, "21087", null, "1800", null, "15694", null, "1732", null, "9763", null, "1286", null, "7987", null, "1216", null, "48558", null, "1262", null, "15270", null, "1286", null, "85080", null, "1663", null, "31913", null, "2056", null, "156285", null, "2569", null, "332344", null, "2354", null, "322589", null, "1907", null, "310376", null, "2608", null, "108612", null, "2066", null, "97572", null, "2026", null, "80546", null, "1423", null, "33444", null, "1172", null, "40.5", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.2", null, "5.5", null, "0.5", null, "6.4", null, "0.5", null, "5.5", null, "0.4", null, "6.0", null, "0.5", null, "6.5", null, "0.4", null, "7.2", null, "0.4", null, "6.8", null, "0.7", null, "6.3", null, "0.7", null, "5.7", null, "0.4", null, "5.7", null, "0.3", null, "6.5", null, "0.6", null, "6.9", null, "0.5", null, "6.4", null, "0.4", null, "5.2", null, "0.4", null, "3.8", null, "0.4", null, "2.4", null, "0.3", null, "2.0", null, "0.3", null, "11.9", null, "0.3", null, "3.7", null, "0.3", null, "20.9", null, "0.3", null, "7.8", null, "0.5", null, "38.3", null, "0.6", null, "81.5", null, "0.5", null, "79.1", null, "0.3", null, "76.1", null, "0.5", null, "26.6", null, "0.5", null, "23.9", null, "0.5", null, "19.8", null, "0.3", null, "8.2", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12", "01"], ["5001900US1202", "Congressional District 2 (119th Congress), Florida", "819004", null, "4214", null, "39387", null, "1600", null, "45590", null, "3955", null, "46266", null, "3668", null, "60697", null, "2942", null, "69808", null, "3539", null, "52136", null, "2422", null, "54974", null, "3096", null, "52425", null, "3555", null, "55138", null, "4021", null, "45951", null, "2311", null, "46932", null, "2434", null, "48594", null, "3113", null, "52476", null, "2602", null, "50627", null, "3182", null, "36862", null, "2729", null, "28453", null, "2287", null, "19200", null, "1912", null, "13488", null, "1681", null, "91856", null, "2310", null, "28026", null, "1571", null, "159269", null, "1945", null, "102479", null, "2937", null, "345178", null, "4454", null, "678228", null, "4360", null, "659735", null, "3612", null, "612135", null, "4846", null, "201106", null, "3146", null, "182208", null, "3219", null, "148630", null, "2271", null, "61141", null, "1716", null, "39.0", null, "0.6", null, "101.7", null, "1.5", null, "60.2", null, "0.7", null, "29.1", null, "0.5", null, "31.2", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.8", null, "0.2", null, "5.6", null, "0.5", null, "5.6", null, "0.4", null, "7.4", null, "0.4", null, "8.5", null, "0.4", null, "6.4", null, "0.3", null, "6.7", null, "0.4", null, "6.4", null, "0.4", null, "6.7", null, "0.5", null, "5.6", null, "0.3", null, "5.7", null, "0.3", null, "5.9", null, "0.4", null, "6.4", null, "0.3", null, "6.2", null, "0.4", null, "4.5", null, "0.3", null, "3.5", null, "0.3", null, "2.3", null, "0.2", null, "1.6", null, "0.2", null, "11.2", null, "0.3", null, "3.4", null, "0.2", null, "19.4", null, "0.2", null, "12.5", null, "0.4", null, "42.1", null, "0.5", null, "82.8", null, "0.3", null, "80.6", null, "0.2", null, "74.7", null, "0.4", null, "24.6", null, "0.4", null, "22.2", null, "0.4", null, "18.1", null, "0.3", null, "7.5", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.6", null, "-888888888.0", "(X)", "412906", null, "3618", null, "19090", null, "1415", null, "23557", null, "2723", null, "25897", null, "2864", null, "28714", null, "2402", null, "36128", null, "2149", null, "28677", null, "1767", null, "28504", null, "2163", null, "29687", null, "2325", null, "27973", null, "2779", null, "23292", null, "1540", null, "23026", null, "1353", null, "25656", null, "2277", null, "24930", null, "1876", null, "23660", null, "1971", null, "17398", null, "1712", null, "12820", null, "1402", null, "8691", null, "1140", null, "5206", null, "1016", null, "49454", null, "2581", null, "15420", null, "1553", null, "83964", null, "2709", null, "49422", null, "1837", null, "179683", null, "2756", null, "340203", null, "2843", null, "328942", null, "2131", null, "307142", null, "3187", null, "92705", null, "2443", null, "84649", null, "2386", null, "67775", null, "1484", null, "26717", null, "1020", null, "37.6", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.6", null, "0.3", null, "5.7", null, "0.7", null, "6.3", null, "0.7", null, "7.0", null, "0.6", null, "8.7", null, "0.5", null, "6.9", null, "0.4", null, "6.9", null, "0.5", null, "7.2", null, "0.6", null, "6.8", null, "0.7", null, "5.6", null, "0.4", null, "5.6", null, "0.3", null, "6.2", null, "0.6", null, "6.0", null, "0.5", null, "5.7", null, "0.5", null, "4.2", null, "0.4", null, "3.1", null, "0.3", null, "2.1", null, "0.3", null, "1.3", null, "0.2", null, "12.0", null, "0.6", null, "3.7", null, "0.4", null, "20.3", null, "0.5", null, "12.0", null, "0.5", null, "43.5", null, "0.6", null, "82.4", null, "0.6", null, "79.7", null, "0.5", null, "74.4", null, "0.8", null, "22.5", null, "0.6", null, "20.5", null, "0.6", null, "16.4", null, "0.3", null, "6.5", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "406098", null, "3741", null, "20297", null, "1321", null, "22033", null, "2821", null, "20369", null, "2426", null, "31983", null, "2346", null, "33680", null, "2590", null, "23459", null, "1669", null, "26470", null, "2140", null, "22738", null, "2271", null, "27165", null, "2593", null, "22659", null, "1486", null, "23906", null, "1751", null, "22938", null, "1916", null, "27546", null, "1847", null, "26967", null, "2142", null, "19464", null, "1885", null, "15633", null, "1692", null, "10509", null, "1676", null, "8282", null, "1428", null, "42402", null, "2091", null, "12606", null, "1222", null, "75305", null, "2916", null, "53057", null, "1832", null, "165495", null, "3140", null, "338025", null, "3259", null, "330793", null, "2605", null, "304993", null, "3186", null, "108401", null, "1808", null, "97559", null, "1778", null, "80855", null, "1319", null, "34424", null, "1083", null, "40.4", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.0", null, "0.3", null, "5.4", null, "0.7", null, "5.0", null, "0.6", null, "7.9", null, "0.6", null, "8.3", null, "0.6", null, "5.8", null, "0.4", null, "6.5", null, "0.5", null, "5.6", null, "0.6", null, "6.7", null, "0.6", null, "5.6", null, "0.4", null, "5.9", null, "0.4", null, "5.6", null, "0.5", null, "6.8", null, "0.5", null, "6.6", null, "0.5", null, "4.8", null, "0.5", null, "3.8", null, "0.4", null, "2.6", null, "0.4", null, "2.0", null, "0.3", null, "10.4", null, "0.5", null, "3.1", null, "0.3", null, "18.5", null, "0.6", null, "13.1", null, "0.5", null, "40.8", null, "0.7", null, "83.2", null, "0.6", null, "81.5", null, "0.6", null, "75.1", null, "0.8", null, "26.7", null, "0.5", null, "24.0", null, "0.5", null, "19.9", null, "0.3", null, "8.5", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12", "02"], ["5001900US1203", "Congressional District 3 (119th Congress), Florida", "845635", null, "10397", null, "37910", null, "3076", null, "40700", null, "3717", null, "49578", null, "4191", null, "60990", null, "3549", null, "76014", null, "3995", null, "48229", null, "2836", null, "51428", null, "2373", null, "52630", null, "4348", null, "51908", null, "4389", null, "46177", null, "3717", null, "45797", null, "3452", null, "43122", null, "3762", null, "57057", null, "3878", null, "55009", null, "3645", null, "47610", null, "3085", null, "41026", null, "2963", null, "22203", null, "2506", null, "18247", null, "2282", null, "90278", null, "4195", null, "31012", null, "1804", null, "159200", null, "5542", null, "105992", null, "3485", null, "341199", null, "6410", null, "707837", null, "8179", null, "686435", null, "7244", null, "636049", null, "7924", null, "241152", null, "5701", null, "220211", null, "5903", null, "184095", null, "4274", null, "81476", null, "2471", null, "40.6", null, "0.7", null, "100.0", null, "2.2", null, "68.3", null, "1.6", null, "36.6", null, "1.1", null, "31.7", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.5", null, "0.4", null, "4.8", null, "0.4", null, "5.9", null, "0.5", null, "7.2", null, "0.4", null, "9.0", null, "0.5", null, "5.7", null, "0.3", null, "6.1", null, "0.3", null, "6.2", null, "0.5", null, "6.1", null, "0.5", null, "5.5", null, "0.4", null, "5.4", null, "0.4", null, "5.1", null, "0.4", null, "6.7", null, "0.5", null, "6.5", null, "0.4", null, "5.6", null, "0.4", null, "4.9", null, "0.3", null, "2.6", null, "0.3", null, "2.2", null, "0.3", null, "10.7", null, "0.4", null, "3.7", null, "0.2", null, "18.8", null, "0.5", null, "12.5", null, "0.4", null, "40.3", null, "0.6", null, "83.7", null, "0.5", null, "81.2", null, "0.5", null, "75.2", null, "0.6", null, "28.5", null, "0.7", null, "26.0", null, "0.7", null, "21.8", null, "0.5", null, "9.6", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.3", null, "-888888888.0", "(X)", "422900", null, "6472", null, "20055", null, "2635", null, "19137", null, "2754", null, "27445", null, "3647", null, "31192", null, "3280", null, "39489", null, "2758", null, "25464", null, "2207", null, "25197", null, "1688", null, "27662", null, "3093", null, "26769", null, "3052", null, "23610", null, "2283", null, "22729", null, "2035", null, "21456", null, "2354", null, "27586", null, "2497", null, "25673", null, "2303", null, "22428", null, "2170", null, "19547", null, "1748", null, "10544", null, "1543", null, "6917", null, "1284", null, "46582", null, "3194", null, "16333", null, "1832", null, "82970", null, "4182", null, "54348", null, "2434", null, "175773", null, "4077", null, "349455", null, "5074", null, "339930", null, "4296", null, "315501", null, "5225", null, "112695", null, "3485", null, "103228", null, "3733", null, "85109", null, "2285", null, "37008", null, "1609", null, "39.1", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.7", null, "0.6", null, "4.5", null, "0.6", null, "6.5", null, "0.8", null, "7.4", null, "0.7", null, "9.3", null, "0.7", null, "6.0", null, "0.5", null, "6.0", null, "0.4", null, "6.5", null, "0.7", null, "6.3", null, "0.7", null, "5.6", null, "0.5", null, "5.4", null, "0.5", null, "5.1", null, "0.5", null, "6.5", null, "0.6", null, "6.1", null, "0.5", null, "5.3", null, "0.5", null, "4.6", null, "0.4", null, "2.5", null, "0.4", null, "1.6", null, "0.3", null, "11.0", null, "0.7", null, "3.9", null, "0.4", null, "19.6", null, "0.8", null, "12.9", null, "0.6", null, "41.6", null, "0.8", null, "82.6", null, "0.8", null, "80.4", null, "0.8", null, "74.6", null, "1.0", null, "26.6", null, "0.8", null, "24.4", null, "0.8", null, "20.1", null, "0.5", null, "8.8", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "422735", null, "7348", null, "17855", null, "2401", null, "21563", null, "2521", null, "22133", null, "2569", null, "29798", null, "2708", null, "36525", null, "2516", null, "22765", null, "1707", null, "26231", null, "1620", null, "24968", null, "2694", null, "25139", null, "3365", null, "22567", null, "2258", null, "23068", null, "2534", null, "21666", null, "2336", null, "29471", null, "2360", null, "29336", null, "2336", null, "25182", null, "2009", null, "21479", null, "2327", null, "11659", null, "1723", null, "11330", null, "1638", null, "43696", null, "2708", null, "14679", null, "1842", null, "76230", null, "4600", null, "51644", null, "2522", null, "165426", null, "4416", null, "358382", null, "5263", null, "346505", null, "4827", null, "320548", null, "4988", null, "128457", null, "3190", null, "116983", null, "3465", null, "98986", null, "2660", null, "44468", null, "1494", null, "42.1", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.2", null, "0.5", null, "5.1", null, "0.6", null, "5.2", null, "0.6", null, "7.0", null, "0.6", null, "8.6", null, "0.6", null, "5.4", null, "0.4", null, "6.2", null, "0.4", null, "5.9", null, "0.6", null, "5.9", null, "0.8", null, "5.3", null, "0.5", null, "5.5", null, "0.6", null, "5.1", null, "0.5", null, "7.0", null, "0.6", null, "6.9", null, "0.6", null, "6.0", null, "0.5", null, "5.1", null, "0.5", null, "2.8", null, "0.4", null, "2.7", null, "0.4", null, "10.3", null, "0.6", null, "3.5", null, "0.4", null, "18.0", null, "0.9", null, "12.2", null, "0.6", null, "39.1", null, "0.9", null, "84.8", null, "0.8", null, "82.0", null, "0.9", null, "75.8", null, "1.1", null, "30.4", null, "0.8", null, "27.7", null, "0.8", null, "23.4", null, "0.7", null, "10.5", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12", "03"], ["5001900US1204", "Congressional District 4 (119th Congress), Florida", "842213", null, "17267", null, "49477", null, "3583", null, "54836", null, "4747", null, "51342", null, "3867", null, "52407", null, "3312", null, "47999", null, "3526", null, "50153", null, "4185", null, "61951", null, "4668", null, "58522", null, "5570", null, "56838", null, "4993", null, "47844", null, "2878", null, "56058", null, "3905", null, "46927", null, "3721", null, "58313", null, "3567", null, "50106", null, "3534", null, "41966", null, "3013", null, "28044", null, "2210", null, "16629", null, "1735", null, "12801", null, "1969", null, "106178", null, "6017", null, "33395", null, "2499", null, "189050", null, "8126", null, "67011", null, "4145", null, "327870", null, "9486", null, "677385", null, "12165", null, "653163", null, "11607", null, "623729", null, "11478", null, "207859", null, "4791", null, "183079", null, "4838", null, "149546", null, "3857", null, "57474", null, "2423", null, "39.6", null, "0.6", null, "95.5", null, "2.7", null, "67.2", null, "1.9", null, "29.7", null, "1.0", null, "37.5", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.9", null, "0.4", null, "6.5", null, "0.5", null, "6.1", null, "0.4", null, "6.2", null, "0.4", null, "5.7", null, "0.4", null, "6.0", null, "0.5", null, "7.4", null, "0.5", null, "6.9", null, "0.6", null, "6.7", null, "0.6", null, "5.7", null, "0.3", null, "6.7", null, "0.5", null, "5.6", null, "0.4", null, "6.9", null, "0.5", null, "5.9", null, "0.4", null, "5.0", null, "0.4", null, "3.3", null, "0.3", null, "2.0", null, "0.2", null, "1.5", null, "0.2", null, "12.6", null, "0.6", null, "4.0", null, "0.3", null, "22.4", null, "0.6", null, "8.0", null, "0.5", null, "38.9", null, "0.7", null, "80.4", null, "0.7", null, "77.6", null, "0.6", null, "74.1", null, "0.7", null, "24.7", null, "0.7", null, "21.7", null, "0.6", null, "17.8", null, "0.5", null, "6.8", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.5", null, "-888888888.0", "(X)", "411313", null, "9577", null, "25370", null, "2250", null, "28226", null, "3532", null, "25484", null, "2948", null, "26510", null, "2573", null, "25800", null, "2270", null, "23291", null, "2489", null, "30048", null, "3035", null, "28113", null, "3543", null, "29702", null, "3355", null, "23428", null, "1854", null, "26655", null, "2521", null, "22478", null, "2367", null, "28864", null, "2833", null, "22855", null, "2293", null, "19554", null, "1934", null, "13839", null, "1432", null, "6403", null, "1070", null, "4693", null, "1119", null, "53710", null, "3853", null, "16512", null, "1922", null, "95592", null, "5004", null, "35798", null, "2512", null, "163464", null, "5804", null, "328046", null, "7187", null, "315721", null, "6617", null, "299530", null, "6436", null, "96208", null, "3261", null, "82494", null, "3129", null, "67344", null, "2341", null, "24935", null, "1584", null, "38.7", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.2", null, "0.5", null, "6.9", null, "0.8", null, "6.2", null, "0.7", null, "6.4", null, "0.6", null, "6.3", null, "0.5", null, "5.7", null, "0.6", null, "7.3", null, "0.7", null, "6.8", null, "0.8", null, "7.2", null, "0.8", null, "5.7", null, "0.4", null, "6.5", null, "0.6", null, "5.5", null, "0.6", null, "7.0", null, "0.7", null, "5.6", null, "0.6", null, "4.8", null, "0.5", null, "3.4", null, "0.3", null, "1.6", null, "0.3", null, "1.1", null, "0.3", null, "13.1", null, "0.8", null, "4.0", null, "0.4", null, "23.2", null, "0.9", null, "8.7", null, "0.5", null, "39.7", null, "0.9", null, "79.8", null, "0.9", null, "76.8", null, "0.9", null, "72.8", null, "1.1", null, "23.4", null, "0.9", null, "20.1", null, "0.9", null, "16.4", null, "0.6", null, "6.1", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "430900", null, "11310", null, "24107", null, "2641", null, "26610", null, "2969", null, "25858", null, "2889", null, "25897", null, "2178", null, "22199", null, "2784", null, "26862", null, "2630", null, "31903", null, "3011", null, "30409", null, "3468", null, "27136", null, "3108", null, "24416", null, "2158", null, "29403", null, "2410", null, "24449", null, "2908", null, "29449", null, "2515", null, "27251", null, "2261", null, "22412", null, "2179", null, "14205", null, "1501", null, "10226", null, "1368", null, "8108", null, "1448", null, "52468", null, "4155", null, "16883", null, "1708", null, "93458", null, "5534", null, "31213", null, "3187", null, "164406", null, "6320", null, "349339", null, "7949", null, "337442", null, "7510", null, "324199", null, "7565", null, "111651", null, "3440", null, "100585", null, "3123", null, "82202", null, "2562", null, "32539", null, "1592", null, "40.3", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.6", null, "0.5", null, "6.2", null, "0.7", null, "6.0", null, "0.6", null, "6.0", null, "0.5", null, "5.2", null, "0.6", null, "6.2", null, "0.6", null, "7.4", null, "0.7", null, "7.1", null, "0.7", null, "6.3", null, "0.7", null, "5.7", null, "0.5", null, "6.8", null, "0.5", null, "5.7", null, "0.6", null, "6.8", null, "0.6", null, "6.3", null, "0.6", null, "5.2", null, "0.5", null, "3.3", null, "0.3", null, "2.4", null, "0.3", null, "1.9", null, "0.3", null, "12.2", null, "0.8", null, "3.9", null, "0.4", null, "21.7", null, "0.9", null, "7.2", null, "0.7", null, "38.2", null, "1.0", null, "81.1", null, "1.0", null, "78.3", null, "0.9", null, "75.2", null, "1.0", null, "25.9", null, "0.9", null, "23.3", null, "0.9", null, "19.1", null, "0.6", null, "7.6", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12", "04"], ["5001900US1205", "Congressional District 5 (119th Congress), Florida", "852413", null, "17692", null, "44731", null, "3562", null, "48457", null, "4623", null, "57085", null, "4679", null, "52592", null, "3523", null, "50153", null, "3588", null, "57220", null, "3797", null, "61782", null, "4811", null, "60880", null, "5552", null, "60818", null, "5524", null, "55744", null, "2723", null, "50326", null, "3412", null, "52056", null, "4354", null, "50452", null, "4656", null, "46279", null, "3392", null, "39556", null, "3378", null, "29513", null, "2531", null, "18685", null, "2224", null, "16084", null, "2327", null, "105542", null, "5832", null, "33184", null, "2212", null, "183457", null, "8233", null, "69561", null, "4097", null, "343445", null, "9649", null, "692162", null, "13013", null, "668956", null, "12382", null, "638841", null, "11646", null, "200569", null, "6077", null, "181898", null, "5487", null, "150117", null, "4004", null, "64282", null, "2577", null, "39.5", null, "0.6", null, "94.4", null, "2.4", null, "64.3", null, "1.9", null, "28.9", null, "0.9", null, "35.4", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.4", null, "5.7", null, "0.5", null, "6.7", null, "0.5", null, "6.2", null, "0.4", null, "5.9", null, "0.4", null, "6.7", null, "0.4", null, "7.2", null, "0.5", null, "7.1", null, "0.6", null, "7.1", null, "0.6", null, "6.5", null, "0.3", null, "5.9", null, "0.4", null, "6.1", null, "0.5", null, "5.9", null, "0.5", null, "5.4", null, "0.4", null, "4.6", null, "0.4", null, "3.5", null, "0.3", null, "2.2", null, "0.3", null, "1.9", null, "0.3", null, "12.4", null, "0.6", null, "3.9", null, "0.2", null, "21.5", null, "0.7", null, "8.2", null, "0.4", null, "40.3", null, "0.7", null, "81.2", null, "0.7", null, "78.5", null, "0.7", null, "74.9", null, "0.8", null, "23.5", null, "0.7", null, "21.3", null, "0.6", null, "17.6", null, "0.5", null, "7.5", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "0.9", null, "-888888888.0", "(X)", "413973", null, "9836", null, "22656", null, "2211", null, "26443", null, "3417", null, "28814", null, "3269", null, "26465", null, "2457", null, "24216", null, "2341", null, "29086", null, "2409", null, "30449", null, "3059", null, "26703", null, "3580", null, "31320", null, "3596", null, "27593", null, "2174", null, "26246", null, "2173", null, "24771", null, "2440", null, "23961", null, "2795", null, "20237", null, "1948", null, "18324", null, "1950", null, "13975", null, "1739", null, "6978", null, "1262", null, "5736", null, "1211", null, "55257", null, "3781", null, "16674", null, "1337", null, "94587", null, "5105", null, "34007", null, "2691", null, "168239", null, "6102", null, "331281", null, "7516", null, "319386", null, "7096", null, "304201", null, "6679", null, "89211", null, "3460", null, "79450", null, "3027", null, "65250", null, "2330", null, "26689", null, "1667", null, "38.5", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.5", null, "6.4", null, "0.8", null, "7.0", null, "0.7", null, "6.4", null, "0.6", null, "5.8", null, "0.5", null, "7.0", null, "0.6", null, "7.4", null, "0.7", null, "6.5", null, "0.8", null, "7.6", null, "0.9", null, "6.7", null, "0.5", null, "6.3", null, "0.5", null, "6.0", null, "0.6", null, "5.8", null, "0.7", null, "4.9", null, "0.5", null, "4.4", null, "0.5", null, "3.4", null, "0.4", null, "1.7", null, "0.3", null, "1.4", null, "0.3", null, "13.3", null, "0.7", null, "4.0", null, "0.3", null, "22.8", null, "0.9", null, "8.2", null, "0.6", null, "40.6", null, "1.0", null, "80.0", null, "0.9", null, "77.2", null, "0.9", null, "73.5", null, "1.1", null, "21.5", null, "0.9", null, "19.2", null, "0.8", null, "15.8", null, "0.6", null, "6.4", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "438440", null, "10909", null, "22075", null, "2393", null, "22014", null, "2836", null, "28271", null, "4000", null, "26127", null, "2495", null, "25937", null, "2491", null, "28134", null, "2424", null, "31333", null, "2851", null, "34177", null, "3378", null, "29498", null, "3290", null, "28151", null, "1732", null, "24080", null, "2052", null, "27285", null, "2980", null, "26491", null, "2917", null, "26042", null, "2145", null, "21232", null, "2183", null, "15538", null, "1665", null, "11707", null, "1818", null, "10348", null, "1840", null, "50285", null, "4082", null, "16510", null, "1791", null, "88870", null, "5420", null, "35554", null, "2952", null, "175206", null, "5966", null, "360881", null, "8116", null, "349570", null, "7642", null, "334640", null, "7399", null, "111358", null, "4167", null, "102448", null, "3916", null, "84867", null, "2620", null, "37593", null, "1802", null, "40.3", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.0", null, "0.5", null, "5.0", null, "0.6", null, "6.4", null, "0.9", null, "6.0", null, "0.5", null, "5.9", null, "0.6", null, "6.4", null, "0.5", null, "7.1", null, "0.6", null, "7.8", null, "0.7", null, "6.7", null, "0.7", null, "6.4", null, "0.4", null, "5.5", null, "0.5", null, "6.2", null, "0.7", null, "6.0", null, "0.6", null, "5.9", null, "0.5", null, "4.8", null, "0.5", null, "3.5", null, "0.4", null, "2.7", null, "0.4", null, "2.4", null, "0.4", null, "11.5", null, "0.8", null, "3.8", null, "0.4", null, "20.3", null, "0.9", null, "8.1", null, "0.6", null, "40.0", null, "0.8", null, "82.3", null, "1.0", null, "79.7", null, "0.9", null, "76.3", null, "1.0", null, "25.4", null, "0.9", null, "23.4", null, "0.9", null, "19.4", null, "0.6", null, "8.6", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12", "05"], ["5001900US1206", "Congressional District 6 (119th Congress), Florida", "834806", null, "15838", null, "36537", null, "4008", null, "37421", null, "3912", null, "42953", null, "4694", null, "46414", null, "3771", null, "44247", null, "4070", null, "42674", null, "3969", null, "41414", null, "3193", null, "45458", null, "5140", null, "49434", null, "4989", null, "42366", null, "3864", null, "45462", null, "3357", null, "55464", null, "3555", null, "66841", null, "4478", null, "66484", null, "3994", null, "62478", null, "3974", null, "48632", null, "3347", null, "35784", null, "3158", null, "24743", null, "2990", null, "80374", null, "5416", null, "23192", null, "2422", null, "140103", null, "7863", null, "67469", null, "4836", null, "269641", null, "9608", null, "709486", null, "12773", null, "694703", null, "12233", null, "663244", null, "11031", null, "304962", null, "9300", null, "279283", null, "8325", null, "238121", null, "7025", null, "109159", null, "4822", null, "48.7", null, "1.2", null, "93.7", null, "2.3", null, "82.8", null, "2.4", null, "52.2", null, "2.0", null, "30.7", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.4", null, "0.5", null, "4.5", null, "0.4", null, "5.1", null, "0.5", null, "5.6", null, "0.4", null, "5.3", null, "0.5", null, "5.1", null, "0.5", null, "5.0", null, "0.4", null, "5.4", null, "0.6", null, "5.9", null, "0.6", null, "5.1", null, "0.4", null, "5.4", null, "0.4", null, "6.6", null, "0.4", null, "8.0", null, "0.5", null, "8.0", null, "0.5", null, "7.5", null, "0.5", null, "5.8", null, "0.4", null, "4.3", null, "0.4", null, "3.0", null, "0.4", null, "9.6", null, "0.6", null, "2.8", null, "0.3", null, "16.8", null, "0.8", null, "8.1", null, "0.5", null, "32.3", null, "0.9", null, "85.0", null, "0.8", null, "83.2", null, "0.8", null, "79.4", null, "0.8", null, "36.5", null, "1.1", null, "33.5", null, "1.0", null, "28.5", null, "0.8", null, "13.1", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.6", null, "-888888888.0", "(X)", "403829", null, "8207", null, "16293", null, "2466", null, "20029", null, "2750", null, "22377", null, "2447", null, "22601", null, "2964", null, "23916", null, "3151", null, "21174", null, "2403", null, "21135", null, "1906", null, "21583", null, "2691", null, "23091", null, "3078", null, "20759", null, "2725", null, "22565", null, "2132", null, "25654", null, "2779", null, "31961", null, "2809", null, "31770", null, "2684", null, "27735", null, "2757", null, "22847", null, "2122", null, "16963", null, "1660", null, "11376", null, "1540", null, "42406", null, "3260", null, "10500", null, "2081", null, "69199", null, "4969", null, "36017", null, "3388", null, "133500", null, "5699", null, "340946", null, "6968", null, "334630", null, "6552", null, "318707", null, "5696", null, "142652", null, "4792", null, "130764", null, "4511", null, "110691", null, "3787", null, "51186", null, "2578", null, "47.4", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.0", null, "0.6", null, "5.0", null, "0.7", null, "5.5", null, "0.6", null, "5.6", null, "0.7", null, "5.9", null, "0.7", null, "5.2", null, "0.6", null, "5.2", null, "0.5", null, "5.3", null, "0.7", null, "5.7", null, "0.8", null, "5.1", null, "0.6", null, "5.6", null, "0.5", null, "6.4", null, "0.7", null, "7.9", null, "0.7", null, "7.9", null, "0.6", null, "6.9", null, "0.7", null, "5.7", null, "0.5", null, "4.2", null, "0.4", null, "2.8", null, "0.4", null, "10.5", null, "0.8", null, "2.6", null, "0.5", null, "17.1", null, "1.1", null, "8.9", null, "0.8", null, "33.1", null, "1.2", null, "84.4", null, "1.0", null, "82.9", null, "1.1", null, "78.9", null, "1.1", null, "35.3", null, "1.3", null, "32.4", null, "1.2", null, "27.4", null, "1.0", null, "12.7", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "430977", null, "10539", null, "20244", null, "2759", null, "17392", null, "2618", null, "20576", null, "3432", null, "23813", null, "2558", null, "20331", null, "2039", null, "21500", null, "2838", null, "20279", null, "2315", null, "23875", null, "4015", null, "26343", null, "3153", null, "21607", null, "2063", null, "22897", null, "2223", null, "29810", null, "2492", null, "34880", null, "3053", null, "34714", null, "2679", null, "34743", null, "2623", null, "25785", null, "2020", null, "18821", null, "2220", null, "13367", null, "2190", null, "37968", null, "3713", null, "12692", null, "1852", null, "70904", null, "5148", null, "31452", null, "2639", null, "136141", null, "5711", null, "368540", null, "8629", null, "360073", null, "8423", null, "344537", null, "7998", null, "162310", null, "6090", null, "148519", null, "5186", null, "127430", null, "4288", null, "57973", null, "3141", null, "49.9", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.7", null, "0.6", null, "4.0", null, "0.6", null, "4.8", null, "0.8", null, "5.5", null, "0.6", null, "4.7", null, "0.5", null, "5.0", null, "0.6", null, "4.7", null, "0.5", null, "5.5", null, "0.9", null, "6.1", null, "0.7", null, "5.0", null, "0.5", null, "5.3", null, "0.5", null, "6.9", null, "0.6", null, "8.1", null, "0.7", null, "8.1", null, "0.6", null, "8.1", null, "0.6", null, "6.0", null, "0.5", null, "4.4", null, "0.5", null, "3.1", null, "0.5", null, "8.8", null, "0.8", null, "2.9", null, "0.4", null, "16.5", null, "1.0", null, "7.3", null, "0.6", null, "31.6", null, "0.9", null, "85.5", null, "1.0", null, "83.5", null, "1.0", null, "79.9", null, "1.1", null, "37.7", null, "1.3", null, "34.5", null, "1.1", null, "29.6", null, "0.9", null, "13.5", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12", "06"], ["5001900US1207", "Congressional District 7 (119th Congress), Florida", "813213", null, "7569", null, "39746", null, "2041", null, "41840", null, "3345", null, "49376", null, "3379", null, "43963", null, "2217", null, "43299", null, "2535", null, "49933", null, "2269", null, "58524", null, "2443", null, "59299", null, "4280", null, "54370", null, "4031", null, "48072", null, "2230", null, "52227", null, "2221", null, "52982", null, "3725", null, "52413", null, "3018", null, "55457", null, "2881", null, "39003", null, "2927", null, "35863", null, "3050", null, "20906", null, "2401", null, "15940", null, "2026", null, "91216", null, "3224", null, "30109", null, "1611", null, "161071", null, "4576", null, "57153", null, "2283", null, "309388", null, "5130", null, "673339", null, "6895", null, "652142", null, "6290", null, "630174", null, "7004", null, "219582", null, "5020", null, "197211", null, "4965", null, "167169", null, "4098", null, "72709", null, "2691", null, "42.0", null, "0.6", null, "94.2", null, "1.7", null, "67.7", null, "1.3", null, "34.5", null, "0.9", null, "33.2", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.9", null, "0.2", null, "5.1", null, "0.4", null, "6.1", null, "0.4", null, "5.4", null, "0.3", null, "5.3", null, "0.3", null, "6.1", null, "0.3", null, "7.2", null, "0.3", null, "7.3", null, "0.5", null, "6.7", null, "0.5", null, "5.9", null, "0.3", null, "6.4", null, "0.3", null, "6.5", null, "0.5", null, "6.4", null, "0.4", null, "6.8", null, "0.4", null, "4.8", null, "0.3", null, "4.4", null, "0.4", null, "2.6", null, "0.3", null, "2.0", null, "0.2", null, "11.2", null, "0.4", null, "3.7", null, "0.2", null, "19.8", null, "0.5", null, "7.0", null, "0.3", null, "38.0", null, "0.5", null, "82.8", null, "0.5", null, "80.2", null, "0.5", null, "77.5", null, "0.5", null, "27.0", null, "0.6", null, "24.3", null, "0.6", null, "20.6", null, "0.5", null, "8.9", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.4", null, "-888888888.0", "(X)", "394438", null, "5072", null, "20695", null, "1500", null, "20482", null, "2703", null, "25285", null, "2600", null, "22522", null, "1961", null, "20921", null, "1641", null, "25258", null, "1491", null, "28908", null, "1507", null, "30955", null, "2681", null, "27182", null, "2996", null, "23196", null, "1468", null, "24668", null, "1437", null, "25005", null, "2404", null, "25695", null, "2005", null, "25544", null, "1810", null, "17661", null, "1983", null, "15154", null, "1616", null, "8454", null, "1502", null, "6853", null, "1121", null, "45767", null, "2069", null, "14517", null, "1576", null, "80979", null, "3247", null, "28926", null, "1505", null, "155746", null, "3708", null, "324417", null, "4474", null, "313459", null, "3991", null, "301527", null, "4378", null, "99361", null, "3063", null, "88623", null, "2973", null, "73666", null, "2326", null, "30461", null, "1509", null, "40.5", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.4", null, "5.2", null, "0.7", null, "6.4", null, "0.7", null, "5.7", null, "0.5", null, "5.3", null, "0.4", null, "6.4", null, "0.4", null, "7.3", null, "0.4", null, "7.8", null, "0.7", null, "6.9", null, "0.8", null, "5.9", null, "0.4", null, "6.3", null, "0.4", null, "6.3", null, "0.6", null, "6.5", null, "0.5", null, "6.5", null, "0.5", null, "4.5", null, "0.5", null, "3.8", null, "0.4", null, "2.1", null, "0.4", null, "1.7", null, "0.3", null, "11.6", null, "0.5", null, "3.7", null, "0.4", null, "20.5", null, "0.7", null, "7.3", null, "0.4", null, "39.5", null, "0.7", null, "82.2", null, "0.6", null, "79.5", null, "0.7", null, "76.4", null, "0.8", null, "25.2", null, "0.8", null, "22.5", null, "0.8", null, "18.7", null, "0.6", null, "7.7", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "418775", null, "5476", null, "19051", null, "1950", null, "21358", null, "2226", null, "24091", null, "2252", null, "21441", null, "1682", null, "22378", null, "1594", null, "24675", null, "1500", null, "29616", null, "1753", null, "28344", null, "2776", null, "27188", null, "2754", null, "24876", null, "1342", null, "27559", null, "1343", null, "27977", null, "2448", null, "26718", null, "2282", null, "29913", null, "2198", null, "21342", null, "2157", null, "20709", null, "2412", null, "12452", null, "1722", null, "9087", null, "1593", null, "45449", null, "1963", null, "15592", null, "1206", null, "80092", null, "3278", null, "28227", null, "1497", null, "153642", null, "3082", null, "348922", null, "4648", null, "338683", null, "4225", null, "328647", null, "4556", null, "120221", null, "3285", null, "108588", null, "3126", null, "93503", null, "2564", null, "42248", null, "1722", null, "43.5", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.5", null, "0.4", null, "5.1", null, "0.5", null, "5.8", null, "0.5", null, "5.1", null, "0.4", null, "5.3", null, "0.4", null, "5.9", null, "0.4", null, "7.1", null, "0.4", null, "6.8", null, "0.6", null, "6.5", null, "0.7", null, "5.9", null, "0.3", null, "6.6", null, "0.3", null, "6.7", null, "0.6", null, "6.4", null, "0.5", null, "7.1", null, "0.5", null, "5.1", null, "0.5", null, "4.9", null, "0.6", null, "3.0", null, "0.4", null, "2.2", null, "0.4", null, "10.9", null, "0.4", null, "3.7", null, "0.3", null, "19.1", null, "0.7", null, "6.7", null, "0.4", null, "36.7", null, "0.5", null, "83.3", null, "0.7", null, "80.9", null, "0.7", null, "78.5", null, "0.7", null, "28.7", null, "0.7", null, "25.9", null, "0.7", null, "22.3", null, "0.5", null, "10.1", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12", "07"], ["5001900US1208", "Congressional District 8 (119th Congress), Florida", "831434", null, "606", null, "33848", null, "953", null, "39191", null, "3501", null, "42541", null, "3518", null, "42407", null, "1263", null, "40608", null, "1372", null, "43597", null, "1048", null, "47007", null, "1330", null, "46490", null, "4209", null, "51770", null, "4062", null, "44054", null, "1482", null, "47888", null, "1001", null, "54009", null, "3766", null, "69819", null, "3722", null, "68200", null, "3339", null, "56615", null, "3302", null, "44755", null, "2907", null, "32998", null, "2678", null, "25637", null, "2671", null, "81732", null, "779", null, "26567", null, "508", null, "142147", null, "623", null, "56448", null, "1071", null, "271879", null, "1570", null, "707716", null, "1899", null, "689287", null, "988", null, "665175", null, "2387", null, "298024", null, "3789", null, "271057", null, "3895", null, "228205", null, "1037", null, "103390", null, "793", null, "48.0", null, "0.2", null, "96.8", null, "0.7", null, "80.3", null, "0.5", null, "49.5", null, "0.3", null, "30.8", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.1", null, "0.1", null, "4.7", null, "0.4", null, "5.1", null, "0.4", null, "5.1", null, "0.2", null, "4.9", null, "0.2", null, "5.2", null, "0.1", null, "5.7", null, "0.2", null, "5.6", null, "0.5", null, "6.2", null, "0.5", null, "5.3", null, "0.2", null, "5.8", null, "0.1", null, "6.5", null, "0.5", null, "8.4", null, "0.4", null, "8.2", null, "0.4", null, "6.8", null, "0.4", null, "5.4", null, "0.4", null, "4.0", null, "0.3", null, "3.1", null, "0.3", null, "9.8", null, "0.1", null, "3.2", null, "0.1", null, "17.1", null, "0.1", null, "6.8", null, "0.1", null, "32.7", null, "0.2", null, "85.1", null, "0.2", null, "82.9", null, "0.1", null, "80.0", null, "0.3", null, "35.8", null, "0.5", null, "32.6", null, "0.5", null, "27.4", null, "0.1", null, "12.4", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.3", null, "-888888888.0", "(X)", "408966", null, "1710", null, "17463", null, "684", null, "21144", null, "2819", null, "20960", null, "2813", null, "22747", null, "1250", null, "22218", null, "838", null, "22163", null, "751", null, "24359", null, "993", null, "20994", null, "2581", null, "26974", null, "2430", null, "21651", null, "885", null, "23013", null, "704", null, "27280", null, "2270", null, "32062", null, "2235", null, "33165", null, "1819", null, "26104", null, "1796", null, "21029", null, "1818", null, "15456", null, "1882", null, "10184", null, "1787", null, "42104", null, "765", null, "14189", null, "1007", null, "73756", null, "1296", null, "30776", null, "749", null, "139455", null, "1279", null, "345187", null, "1623", null, "335210", null, "1045", null, "321574", null, "2119", null, "138000", null, "2260", null, "125018", null, "2056", null, "105938", null, "751", null, "46669", null, "440", null, "46.0", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.3", null, "0.2", null, "5.2", null, "0.7", null, "5.1", null, "0.7", null, "5.6", null, "0.3", null, "5.4", null, "0.2", null, "5.4", null, "0.2", null, "6.0", null, "0.2", null, "5.1", null, "0.6", null, "6.6", null, "0.6", null, "5.3", null, "0.2", null, "5.6", null, "0.2", null, "6.7", null, "0.6", null, "7.8", null, "0.5", null, "8.1", null, "0.4", null, "6.4", null, "0.4", null, "5.1", null, "0.4", null, "3.8", null, "0.5", null, "2.5", null, "0.4", null, "10.3", null, "0.2", null, "3.5", null, "0.2", null, "18.0", null, "0.3", null, "7.5", null, "0.2", null, "34.1", null, "0.2", null, "84.4", null, "0.4", null, "82.0", null, "0.3", null, "78.6", null, "0.4", null, "33.7", null, "0.6", null, "30.6", null, "0.5", null, "25.9", null, "0.2", null, "11.4", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "422468", null, "1557", null, "16385", null, "901", null, "18047", null, "1891", null, "21581", null, "1899", null, "19660", null, "1392", null, "18390", null, "1019", null, "21434", null, "640", null, "22648", null, "838", null, "25496", null, "2756", null, "24796", null, "2791", null, "22403", null, "980", null, "24875", null, "740", null, "26729", null, "2667", null, "37757", null, "2581", null, "35035", null, "2547", null, "30511", null, "2490", null, "23726", null, "2074", null, "17542", null, "1951", null, "15453", null, "1559", null, "39628", null, "553", null, "12378", null, "1119", null, "68391", null, "1364", null, "25672", null, "596", null, "132424", null, "1844", null, "362529", null, "1468", null, "354077", null, "702", null, "343601", null, "1371", null, "160024", null, "2700", null, "146039", null, "2838", null, "122267", null, "719", null, "56721", null, "636", null, "50.1", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "3.9", null, "0.2", null, "4.3", null, "0.4", null, "5.1", null, "0.5", null, "4.7", null, "0.3", null, "4.4", null, "0.2", null, "5.1", null, "0.1", null, "5.4", null, "0.2", null, "6.0", null, "0.7", null, "5.9", null, "0.7", null, "5.3", null, "0.2", null, "5.9", null, "0.2", null, "6.3", null, "0.6", null, "8.9", null, "0.6", null, "8.3", null, "0.6", null, "7.2", null, "0.6", null, "5.6", null, "0.5", null, "4.2", null, "0.5", null, "3.7", null, "0.4", null, "9.4", null, "0.1", null, "2.9", null, "0.3", null, "16.2", null, "0.3", null, "6.1", null, "0.1", null, "31.3", null, "0.4", null, "85.8", null, "0.3", null, "83.8", null, "0.3", null, "81.3", null, "0.4", null, "37.9", null, "0.6", null, "34.6", null, "0.7", null, "28.9", null, "0.2", null, "13.4", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12", "08"], ["5001900US1209", "Congressional District 9 (119th Congress), Florida", "909540", null, "22905", null, "54219", null, "4998", null, "56608", null, "6573", null, "58030", null, "4896", null, "62813", null, "4795", null, "55941", null, "4802", null, "61851", null, "4715", null, "68206", null, "4829", null, "67284", null, "6801", null, "76134", null, "7029", null, "62668", null, "4707", null, "60760", null, "4821", null, "55145", null, "4653", null, "46536", null, "4082", null, "40591", null, "3352", null, "31772", null, "3425", null, "27251", null, "2895", null, "13162", null, "2006", null, "10569", null, "2060", null, "114638", null, "6301", null, "40202", null, "2922", null, "209059", null, "10575", null, "78552", null, "5108", null, "392229", null, "12827", null, "729707", null, "16944", null, "700481", null, "15818", null, "665267", null, "15834", null, "169881", null, "6702", null, "149842", null, "6557", null, "123345", null, "5376", null, "50982", null, "3164", null, "37.4", null, "0.7", null, "95.9", null, "2.0", null, "57.6", null, "2.0", null, "21.4", null, "1.1", null, "36.2", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.0", null, "0.5", null, "6.2", null, "0.7", null, "6.4", null, "0.5", null, "6.9", null, "0.5", null, "6.2", null, "0.5", null, "6.8", null, "0.5", null, "7.5", null, "0.5", null, "7.4", null, "0.7", null, "8.4", null, "0.7", null, "6.9", null, "0.5", null, "6.7", null, "0.5", null, "6.1", null, "0.5", null, "5.1", null, "0.5", null, "4.5", null, "0.4", null, "3.5", null, "0.4", null, "3.0", null, "0.3", null, "1.4", null, "0.2", null, "1.2", null, "0.2", null, "12.6", null, "0.5", null, "4.4", null, "0.3", null, "23.0", null, "0.8", null, "8.6", null, "0.5", null, "43.1", null, "0.9", null, "80.2", null, "0.8", null, "77.0", null, "0.8", null, "73.1", null, "0.8", null, "18.7", null, "0.8", null, "16.5", null, "0.8", null, "13.6", null, "0.6", null, "5.6", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.4", null, "-888888888.0", "(X)", "445167", null, "12420", null, "27517", null, "3232", null, "25022", null, "3245", null, "29703", null, "3308", null, "32273", null, "3237", null, "27576", null, "2715", null, "29275", null, "2697", null, "31639", null, "2592", null, "36491", null, "4815", null, "37258", null, "3992", null, "30767", null, "3062", null, "32099", null, "3435", null, "25739", null, "2828", null, "22919", null, "2879", null, "20630", null, "2336", null, "13412", null, "1893", null, "11990", null, "1579", null, "6651", null, "1355", null, "4206", null, "1264", null, "54725", null, "3786", null, "20692", null, "2386", null, "102934", null, "5936", null, "39157", null, "2940", null, "194512", null, "7375", null, "357487", null, "10028", null, "342233", null, "9140", null, "323927", null, "9031", null, "79808", null, "4121", null, "69026", null, "3590", null, "56889", null, "3017", null, "22847", null, "1886", null, "37.3", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.2", null, "0.7", null, "5.6", null, "0.7", null, "6.7", null, "0.7", null, "7.2", null, "0.7", null, "6.2", null, "0.6", null, "6.6", null, "0.6", null, "7.1", null, "0.5", null, "8.2", null, "1.0", null, "8.4", null, "0.9", null, "6.9", null, "0.7", null, "7.2", null, "0.7", null, "5.8", null, "0.6", null, "5.1", null, "0.7", null, "4.6", null, "0.5", null, "3.0", null, "0.4", null, "2.7", null, "0.3", null, "1.5", null, "0.3", null, "0.9", null, "0.3", null, "12.3", null, "0.7", null, "4.6", null, "0.5", null, "23.1", null, "1.0", null, "8.8", null, "0.7", null, "43.7", null, "1.2", null, "80.3", null, "1.0", null, "76.9", null, "1.0", null, "72.8", null, "1.0", null, "17.9", null, "0.9", null, "15.5", null, "0.8", null, "12.8", null, "0.6", null, "5.1", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "464373", null, "12291", null, "26702", null, "3306", null, "31586", null, "5001", null, "28327", null, "3488", null, "30540", null, "2963", null, "28365", null, "3377", null, "32576", null, "3284", null, "36567", null, "3863", null, "30793", null, "4148", null, "38876", null, "4281", null, "31901", null, "2745", null, "28661", null, "2521", null, "29406", null, "3136", null, "23617", null, "2553", null, "19961", null, "2289", null, "18360", null, "2780", null, "15261", null, "2127", null, "6511", null, "1633", null, "6363", null, "1539", null, "59913", null, "4589", null, "19510", null, "2016", null, "106125", null, "6966", null, "39395", null, "3374", null, "197717", null, "7250", null, "372220", null, "8648", null, "358248", null, "8267", null, "341340", null, "8556", null, "90073", null, "3958", null, "80816", null, "4090", null, "66456", null, "3146", null, "28135", null, "2123", null, "37.5", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.8", null, "0.6", null, "6.8", null, "1.0", null, "6.1", null, "0.8", null, "6.6", null, "0.6", null, "6.1", null, "0.7", null, "7.0", null, "0.7", null, "7.9", null, "0.8", null, "6.6", null, "0.9", null, "8.4", null, "0.8", null, "6.9", null, "0.6", null, "6.2", null, "0.5", null, "6.3", null, "0.7", null, "5.1", null, "0.6", null, "4.3", null, "0.5", null, "4.0", null, "0.6", null, "3.3", null, "0.5", null, "1.4", null, "0.3", null, "1.4", null, "0.3", null, "12.9", null, "0.8", null, "4.2", null, "0.4", null, "22.9", null, "1.1", null, "8.5", null, "0.7", null, "42.6", null, "1.0", null, "80.2", null, "1.1", null, "77.1", null, "1.1", null, "73.5", null, "1.1", null, "19.4", null, "1.0", null, "17.4", null, "1.0", null, "14.3", null, "0.8", null, "6.1", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12", "09"], ["5001900US1210", "Congressional District 10 (119th Congress), Florida", "802532", null, "20862", null, "46554", null, "5075", null, "43543", null, "4578", null, "41138", null, "4671", null, "56023", null, "4072", null, "62911", null, "4400", null, "67802", null, "4542", null, "69016", null, "5079", null, "65168", null, "5832", null, "56621", null, "5277", null, "48181", null, "3821", null, "44956", null, "4306", null, "44258", null, "4456", null, "44521", null, "4796", null, "35229", null, "4073", null, "30626", null, "3455", null, "21886", null, "2367", null, "12567", null, "2112", null, "11532", null, "1975", null, "84681", null, "6436", null, "24718", null, "3297", null, "155953", null, "10694", null, "94216", null, "4862", null, "377541", null, "12429", null, "663921", null, "15590", null, "646579", null, "14360", null, "604961", null, "13654", null, "156361", null, "7321", null, "139112", null, "6973", null, "111840", null, "5159", null, "45985", null, "3080", null, "35.9", null, "0.6", null, "97.6", null, "2.4", null, "50.1", null, "2.1", null, "20.9", null, "1.2", null, "29.2", null, "1.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.8", null, "0.6", null, "5.4", null, "0.5", null, "5.1", null, "0.5", null, "7.0", null, "0.4", null, "7.8", null, "0.5", null, "8.4", null, "0.6", null, "8.6", null, "0.6", null, "8.1", null, "0.7", null, "7.1", null, "0.6", null, "6.0", null, "0.5", null, "5.6", null, "0.5", null, "5.5", null, "0.5", null, "5.5", null, "0.6", null, "4.4", null, "0.5", null, "3.8", null, "0.4", null, "2.7", null, "0.3", null, "1.6", null, "0.3", null, "1.4", null, "0.3", null, "10.6", null, "0.7", null, "3.1", null, "0.4", null, "19.4", null, "1.0", null, "11.7", null, "0.6", null, "47.0", null, "1.0", null, "82.7", null, "1.0", null, "80.6", null, "1.0", null, "75.4", null, "0.9", null, "19.5", null, "1.0", null, "17.3", null, "1.0", null, "13.9", null, "0.7", null, "5.7", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.9", null, "-888888888.0", "(X)", "396380", null, "12183", null, "22974", null, "3167", null, "21765", null, "3318", null, "22639", null, "3187", null, "26737", null, "3054", null, "31731", null, "2535", null, "35433", null, "2785", null, "36046", null, "2994", null, "33152", null, "3640", null, "27496", null, "3328", null, "23677", null, "2432", null, "22175", null, "2432", null, "21723", null, "3165", null, "22286", null, "2881", null, "16223", null, "2450", null, "14249", null, "2289", null, "9575", null, "1451", null, "4685", null, "1079", null, "3814", null, "1080", null, "44404", null, "4226", null, "12788", null, "2543", null, "80166", null, "6564", null, "45680", null, "3284", null, "190595", null, "7623", null, "325276", null, "9256", null, "316214", null, "8503", null, "297572", null, "8015", null, "70832", null, "4416", null, "62397", null, "4450", null, "48546", null, "2868", null, "18074", null, "1719", null, "35.1", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.8", null, "0.7", null, "5.5", null, "0.8", null, "5.7", null, "0.7", null, "6.7", null, "0.7", null, "8.0", null, "0.6", null, "8.9", null, "0.7", null, "9.1", null, "0.7", null, "8.4", null, "0.9", null, "6.9", null, "0.8", null, "6.0", null, "0.6", null, "5.6", null, "0.6", null, "5.5", null, "0.8", null, "5.6", null, "0.7", null, "4.1", null, "0.6", null, "3.6", null, "0.6", null, "2.4", null, "0.4", null, "1.2", null, "0.3", null, "1.0", null, "0.3", null, "11.2", null, "0.9", null, "3.2", null, "0.6", null, "20.2", null, "1.3", null, "11.5", null, "0.8", null, "48.1", null, "1.2", null, "82.1", null, "1.2", null, "79.8", null, "1.3", null, "75.1", null, "1.3", null, "17.9", null, "1.2", null, "15.7", null, "1.2", null, "12.2", null, "0.8", null, "4.6", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "406152", null, "10882", null, "23580", null, "3147", null, "21778", null, "3013", null, "18499", null, "2963", null, "29286", null, "2308", null, "31180", null, "3317", null, "32369", null, "2802", null, "32970", null, "3770", null, "32016", null, "3563", null, "29125", null, "3251", null, "24504", null, "2443", null, "22781", null, "2633", null, "22535", null, "2740", null, "22235", null, "2972", null, "19006", null, "2469", null, "16377", null, "2115", null, "12311", null, "1894", null, "7882", null, "1585", null, "7718", null, "1443", null, "40277", null, "4197", null, "11930", null, "1745", null, "75787", null, "5958", null, "48536", null, "3390", null, "186946", null, "6836", null, "338645", null, "8712", null, "330365", null, "8296", null, "307389", null, "7813", null, "85529", null, "4114", null, "76715", null, "3665", null, "63294", null, "3120", null, "27911", null, "2231", null, "36.7", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.8", null, "0.7", null, "5.4", null, "0.7", null, "4.6", null, "0.7", null, "7.2", null, "0.5", null, "7.7", null, "0.8", null, "8.0", null, "0.7", null, "8.1", null, "0.9", null, "7.9", null, "0.9", null, "7.2", null, "0.8", null, "6.0", null, "0.6", null, "5.6", null, "0.6", null, "5.5", null, "0.7", null, "5.5", null, "0.7", null, "4.7", null, "0.6", null, "4.0", null, "0.5", null, "3.0", null, "0.5", null, "1.9", null, "0.4", null, "1.9", null, "0.4", null, "9.9", null, "0.9", null, "2.9", null, "0.4", null, "18.7", null, "1.2", null, "12.0", null, "0.8", null, "46.0", null, "1.2", null, "83.4", null, "1.2", null, "81.3", null, "1.2", null, "75.7", null, "1.1", null, "21.1", null, "1.1", null, "18.9", null, "1.0", null, "15.6", null, "0.8", null, "6.9", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12", "10"], ["5001900US1211", "Congressional District 11 (119th Congress), Florida", "893440", null, "18534", null, "35704", null, "3952", null, "47519", null, "5883", null, "51021", null, "5710", null, "45234", null, "4062", null, "46686", null, "4481", null, "46831", null, "4138", null, "54418", null, "4606", null, "56064", null, "5830", null, "57439", null, "6583", null, "53299", null, "4458", null, "56829", null, "4511", null, "56161", null, "4835", null, "60560", null, "4508", null, "61333", null, "4243", null, "56411", null, "3671", null, "59602", null, "3462", null, "29395", null, "2983", null, "18934", null, "2649", null, "98540", null, "6569", null, "30389", null, "3176", null, "164633", null, "9411", null, "61531", null, "5078", null, "306672", null, "12096", null, "750703", null, "14187", null, "728807", null, "13352", null, "706718", null, "13151", null, "286235", null, "6491", null, "262427", null, "6406", null, "225675", null, "4959", null, "107931", null, "3353", null, "45.6", null, "1.1", null, "98.4", null, "2.5", null, "77.6", null, "2.4", null, "44.9", null, "1.6", null, "32.7", null, "1.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.0", null, "0.4", null, "5.3", null, "0.6", null, "5.7", null, "0.6", null, "5.1", null, "0.4", null, "5.2", null, "0.5", null, "5.2", null, "0.5", null, "6.1", null, "0.5", null, "6.3", null, "0.6", null, "6.4", null, "0.7", null, "6.0", null, "0.5", null, "6.4", null, "0.5", null, "6.3", null, "0.5", null, "6.8", null, "0.5", null, "6.9", null, "0.5", null, "6.3", null, "0.4", null, "6.7", null, "0.4", null, "3.3", null, "0.3", null, "2.1", null, "0.3", null, "11.0", null, "0.6", null, "3.4", null, "0.3", null, "18.4", null, "0.8", null, "6.9", null, "0.6", null, "34.3", null, "1.0", null, "84.0", null, "0.8", null, "81.6", null, "0.8", null, "79.1", null, "0.8", null, "32.0", null, "0.9", null, "29.4", null, "0.9", null, "25.3", null, "0.7", null, "12.1", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "2.5", null, "-888888888.0", "(X)", "443145", null, "10942", null, "18126", null, "2321", null, "28127", null, "4031", null, "25897", null, "3660", null, "25721", null, "3132", null, "22249", null, "2859", null, "23020", null, "2689", null, "26587", null, "2684", null, "28652", null, "3847", null, "29460", null, "3819", null, "27182", null, "3066", null, "27682", null, "2766", null, "26055", null, "3258", null, "30185", null, "2929", null, "27674", null, "2613", null, "25927", null, "2415", null, "27551", null, "2257", null, "14804", null, "2069", null, "8246", null, "1816", null, "54024", null, "4729", null, "16664", null, "2375", null, "88814", null, "6428", null, "31306", null, "3544", null, "155689", null, "7730", null, "365722", null, "8322", null, "354331", null, "7924", null, "342645", null, "7824", null, "134387", null, "3901", null, "122838", null, "3859", null, "104202", null, "2843", null, "50601", null, "1976", null, "44.1", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.1", null, "0.5", null, "6.3", null, "0.9", null, "5.8", null, "0.8", null, "5.8", null, "0.7", null, "5.0", null, "0.6", null, "5.2", null, "0.6", null, "6.0", null, "0.6", null, "6.5", null, "0.9", null, "6.6", null, "0.8", null, "6.1", null, "0.7", null, "6.2", null, "0.6", null, "5.9", null, "0.7", null, "6.8", null, "0.7", null, "6.2", null, "0.6", null, "5.9", null, "0.6", null, "6.2", null, "0.5", null, "3.3", null, "0.5", null, "1.9", null, "0.4", null, "12.2", null, "0.9", null, "3.8", null, "0.5", null, "20.0", null, "1.2", null, "7.1", null, "0.8", null, "35.1", null, "1.3", null, "82.5", null, "1.0", null, "80.0", null, "1.2", null, "77.3", null, "1.2", null, "30.3", null, "1.1", null, "27.7", null, "1.0", null, "23.5", null, "0.8", null, "11.4", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "450295", null, "10723", null, "17578", null, "2873", null, "19392", null, "3708", null, "25124", null, "3514", null, "19513", null, "2406", null, "24437", null, "2870", null, "23811", null, "2441", null, "27831", null, "3320", null, "27412", null, "3658", null, "27979", null, "4346", null, "26117", null, "2580", null, "29147", null, "2708", null, "30106", null, "2714", null, "30375", null, "3011", null, "33659", null, "3233", null, "30484", null, "2550", null, "32051", null, "2267", null, "14591", null, "1831", null, "10688", null, "1846", null, "44516", null, "4837", null, "13725", null, "2222", null, "75819", null, "6133", null, "30225", null, "3258", null, "150983", null, "6974", null, "384981", null, "8637", null, "374476", null, "8387", null, "364073", null, "8300", null, "151848", null, "4724", null, "139589", null, "4370", null, "121473", null, "3429", null, "57330", null, "2388", null, "47.3", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "3.9", null, "0.6", null, "4.3", null, "0.8", null, "5.6", null, "0.7", null, "4.3", null, "0.5", null, "5.4", null, "0.6", null, "5.3", null, "0.5", null, "6.2", null, "0.7", null, "6.1", null, "0.8", null, "6.2", null, "1.0", null, "5.8", null, "0.6", null, "6.5", null, "0.6", null, "6.7", null, "0.6", null, "6.7", null, "0.7", null, "7.5", null, "0.7", null, "6.8", null, "0.6", null, "7.1", null, "0.5", null, "3.2", null, "0.4", null, "2.4", null, "0.4", null, "9.9", null, "1.0", null, "3.0", null, "0.5", null, "16.8", null, "1.2", null, "6.7", null, "0.7", null, "33.5", null, "1.2", null, "85.5", null, "1.2", null, "83.2", null, "1.2", null, "80.9", null, "1.2", null, "33.7", null, "1.2", null, "31.0", null, "1.1", null, "27.0", null, "0.9", null, "12.7", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12", "11"], ["5001900US1212", "Congressional District 12 (119th Congress), Florida", "871072", null, "11568", null, "37738", null, "2306", null, "45895", null, "4242", null, "46434", null, "3224", null, "46306", null, "2269", null, "43209", null, "2849", null, "44201", null, "3008", null, "50159", null, "2692", null, "52693", null, "4976", null, "54483", null, "5222", null, "50883", null, "2467", null, "53860", null, "2318", null, "60233", null, "3706", null, "60583", null, "3519", null, "61947", null, "2995", null, "56219", null, "3265", null, "52969", null, "2932", null, "30092", null, "2358", null, "23168", null, "2309", null, "92329", null, "3666", null, "32444", null, "1614", null, "162511", null, "5135", null, "57071", null, "2770", null, "291051", null, "7449", null, "729880", null, "8798", null, "708561", null, "8402", null, "685473", null, "8474", null, "284978", null, "4709", null, "263238", null, "3985", null, "224395", null, "3591", null, "106229", null, "2231", null, "46.5", null, "0.7", null, "94.2", null, "1.4", null, "79.9", null, "1.3", null, "46.3", null, "1.1", null, "33.6", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.3", null, "0.2", null, "5.3", null, "0.5", null, "5.3", null, "0.4", null, "5.3", null, "0.2", null, "5.0", null, "0.3", null, "5.1", null, "0.3", null, "5.8", null, "0.3", null, "6.0", null, "0.5", null, "6.3", null, "0.6", null, "5.8", null, "0.3", null, "6.2", null, "0.3", null, "6.9", null, "0.4", null, "7.0", null, "0.4", null, "7.1", null, "0.4", null, "6.5", null, "0.4", null, "6.1", null, "0.3", null, "3.5", null, "0.3", null, "2.7", null, "0.3", null, "10.6", null, "0.3", null, "3.7", null, "0.2", null, "18.7", null, "0.4", null, "6.6", null, "0.3", null, "33.4", null, "0.6", null, "83.8", null, "0.4", null, "81.3", null, "0.4", null, "78.7", null, "0.5", null, "32.7", null, "0.6", null, "30.2", null, "0.5", null, "25.8", null, "0.5", null, "12.2", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.5", null, "-888888888.0", "(X)", "422537", null, "6763", null, "18083", null, "1607", null, "24321", null, "2841", null, "22926", null, "2109", null, "23453", null, "1604", null, "21932", null, "1672", null, "22572", null, "1761", null, "25325", null, "2084", null, "23402", null, "2734", null, "28686", null, "3439", null, "24948", null, "1632", null, "26815", null, "1448", null, "28326", null, "2480", null, "27702", null, "2096", null, "30362", null, "2159", null, "25392", null, "2360", null, "23991", null, "1838", null, "14811", null, "1589", null, "9490", null, "1229", null, "47247", null, "2486", null, "16749", null, "1296", null, "82079", null, "3429", null, "28636", null, "1724", null, "145370", null, "4398", null, "352915", null, "5030", null, "340458", null, "4931", null, "328762", null, "5094", null, "131748", null, "2562", null, "121561", null, "2468", null, "104046", null, "1934", null, "48292", null, "1501", null, "45.1", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.3", null, "0.4", null, "5.8", null, "0.7", null, "5.4", null, "0.5", null, "5.6", null, "0.4", null, "5.2", null, "0.4", null, "5.3", null, "0.4", null, "6.0", null, "0.5", null, "5.5", null, "0.6", null, "6.8", null, "0.8", null, "5.9", null, "0.4", null, "6.3", null, "0.3", null, "6.7", null, "0.6", null, "6.6", null, "0.5", null, "7.2", null, "0.5", null, "6.0", null, "0.6", null, "5.7", null, "0.4", null, "3.5", null, "0.4", null, "2.2", null, "0.3", null, "11.2", null, "0.5", null, "4.0", null, "0.3", null, "19.4", null, "0.6", null, "6.8", null, "0.4", null, "34.4", null, "0.7", null, "83.5", null, "0.6", null, "80.6", null, "0.6", null, "77.8", null, "0.8", null, "31.2", null, "0.7", null, "28.8", null, "0.7", null, "24.6", null, "0.6", null, "11.4", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "448535", null, "6433", null, "19655", null, "1610", null, "21574", null, "2512", null, "23508", null, "2119", null, "22853", null, "1867", null, "21277", null, "2082", null, "21629", null, "2410", null, "24834", null, "1232", null, "29291", null, "3470", null, "25797", null, "3102", null, "25935", null, "1730", null, "27045", null, "1322", null, "31907", null, "2836", null, "32881", null, "2981", null, "31585", null, "2066", null, "30827", null, "2135", null, "28978", null, "2199", null, "15281", null, "1708", null, "13678", null, "1811", null, "45082", null, "2120", null, "15695", null, "1541", null, "80432", null, "3157", null, "28435", null, "2265", null, "145681", null, "4274", null, "376965", null, "4961", null, "368103", null, "4539", null, "356711", null, "4590", null, "153230", null, "3599", null, "141677", null, "3050", null, "120349", null, "2248", null, "57937", null, "1465", null, "47.6", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.4", null, "0.3", null, "4.8", null, "0.5", null, "5.2", null, "0.5", null, "5.1", null, "0.4", null, "4.7", null, "0.5", null, "4.8", null, "0.5", null, "5.5", null, "0.3", null, "6.5", null, "0.7", null, "5.8", null, "0.7", null, "5.8", null, "0.4", null, "6.0", null, "0.3", null, "7.1", null, "0.6", null, "7.3", null, "0.7", null, "7.0", null, "0.5", null, "6.9", null, "0.5", null, "6.5", null, "0.5", null, "3.4", null, "0.4", null, "3.0", null, "0.4", null, "10.1", null, "0.4", null, "3.5", null, "0.3", null, "17.9", null, "0.5", null, "6.3", null, "0.5", null, "32.5", null, "0.7", null, "84.0", null, "0.6", null, "82.1", null, "0.5", null, "79.5", null, "0.6", null, "34.2", null, "0.9", null, "31.6", null, "0.7", null, "26.8", null, "0.5", null, "12.9", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12", "12"], ["5001900US1213", "Congressional District 13 (119th Congress), Florida", "762930", null, "6827", null, "27428", null, "2052", null, "25280", null, "3146", null, "36711", null, "3511", null, "33225", null, "1559", null, "35131", null, "2115", null, "39458", null, "2403", null, "44963", null, "2912", null, "42220", null, "4141", null, "44596", null, "3738", null, "42815", null, "2280", null, "47911", null, "1703", null, "54021", null, "3186", null, "67366", null, "3652", null, "58220", null, "2967", null, "57978", null, "2810", null, "45621", null, "3295", null, "31586", null, "2791", null, "28400", null, "2411", null, "61991", null, "3875", null, "20328", null, "1256", null, "109747", null, "4943", null, "48028", null, "2349", null, "239593", null, "4498", null, "667785", null, "6865", null, "653183", null, "6680", null, "631980", null, "6702", null, "289171", null, "5508", null, "261152", null, "5041", null, "221805", null, "3720", null, "105607", null, "2381", null, "51.0", null, "0.6", null, "91.5", null, "1.4", null, "76.9", null, "1.8", null, "51.4", null, "1.1", null, "25.4", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "3.6", null, "0.3", null, "3.3", null, "0.4", null, "4.8", null, "0.5", null, "4.4", null, "0.2", null, "4.6", null, "0.3", null, "5.2", null, "0.3", null, "5.9", null, "0.4", null, "5.5", null, "0.5", null, "5.8", null, "0.5", null, "5.6", null, "0.3", null, "6.3", null, "0.2", null, "7.1", null, "0.4", null, "8.8", null, "0.5", null, "7.6", null, "0.4", null, "7.6", null, "0.4", null, "6.0", null, "0.4", null, "4.1", null, "0.4", null, "3.7", null, "0.3", null, "8.1", null, "0.5", null, "2.7", null, "0.2", null, "14.4", null, "0.6", null, "6.3", null, "0.3", null, "31.4", null, "0.5", null, "87.5", null, "0.6", null, "85.6", null, "0.6", null, "82.8", null, "0.6", null, "37.9", null, "0.7", null, "34.2", null, "0.6", null, "29.1", null, "0.5", null, "13.8", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "2.0", null, "-888888888.0", "(X)", "364522", null, "4648", null, "14771", null, "1512", null, "12221", null, "2346", null, "16925", null, "2504", null, "16659", null, "1060", null, "16982", null, "1450", null, "20213", null, "1756", null, "24113", null, "1664", null, "21061", null, "2677", null, "20435", null, "2512", null, "21134", null, "1557", null, "22606", null, "1126", null, "26678", null, "2197", null, "31383", null, "2624", null, "24767", null, "1858", null, "27756", null, "2118", null, "19684", null, "1837", null, "15549", null, "2070", null, "11585", null, "1604", null, "29146", null, "2630", null, "10065", null, "815", null, "53982", null, "3063", null, "23576", null, "1590", null, "119463", null, "3124", null, "318430", null, "5012", null, "310540", null, "4792", null, "300649", null, "4819", null, "130724", null, "3686", null, "117564", null, "2914", null, "99341", null, "2232", null, "46818", null, "1507", null, "49.5", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.1", null, "0.4", null, "3.4", null, "0.6", null, "4.6", null, "0.7", null, "4.6", null, "0.3", null, "4.7", null, "0.4", null, "5.5", null, "0.5", null, "6.6", null, "0.4", null, "5.8", null, "0.7", null, "5.6", null, "0.7", null, "5.8", null, "0.4", null, "6.2", null, "0.3", null, "7.3", null, "0.6", null, "8.6", null, "0.7", null, "6.8", null, "0.5", null, "7.6", null, "0.6", null, "5.4", null, "0.5", null, "4.3", null, "0.6", null, "3.2", null, "0.4", null, "8.0", null, "0.7", null, "2.8", null, "0.2", null, "14.8", null, "0.8", null, "6.5", null, "0.4", null, "32.8", null, "0.7", null, "87.4", null, "0.8", null, "85.2", null, "0.8", null, "82.5", null, "0.9", null, "35.9", null, "0.9", null, "32.3", null, "0.7", null, "27.3", null, "0.5", null, "12.8", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "398408", null, "4279", null, "12657", null, "1504", null, "13059", null, "2054", null, "19786", null, "2447", null, "16566", null, "1219", null, "18149", null, "1672", null, "19245", null, "1638", null, "20850", null, "1921", null, "21159", null, "2540", null, "24161", null, "2362", null, "21681", null, "1255", null, "25305", null, "1236", null, "27343", null, "2507", null, "35983", null, "2425", null, "33453", null, "2260", null, "30222", null, "1930", null, "25937", null, "2280", null, "16037", null, "1790", null, "16815", null, "1713", null, "32845", null, "1871", null, "10263", null, "928", null, "55765", null, "2881", null, "24452", null, "1887", null, "120130", null, "3208", null, "349355", null, "4072", null, "342643", null, "3884", null, "331331", null, "3701", null, "158447", null, "3545", null, "143588", null, "3048", null, "122464", null, "2240", null, "58789", null, "1482", null, "52.4", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "3.2", null, "0.4", null, "3.3", null, "0.5", null, "5.0", null, "0.6", null, "4.2", null, "0.3", null, "4.6", null, "0.4", null, "4.8", null, "0.4", null, "5.2", null, "0.5", null, "5.3", null, "0.6", null, "6.1", null, "0.6", null, "5.4", null, "0.3", null, "6.4", null, "0.3", null, "6.9", null, "0.6", null, "9.0", null, "0.6", null, "8.4", null, "0.6", null, "7.6", null, "0.5", null, "6.5", null, "0.6", null, "4.0", null, "0.4", null, "4.2", null, "0.4", null, "8.2", null, "0.5", null, "2.6", null, "0.2", null, "14.0", null, "0.7", null, "6.1", null, "0.5", null, "30.2", null, "0.6", null, "87.7", null, "0.7", null, "86.0", null, "0.7", null, "83.2", null, "0.8", null, "39.8", null, "0.9", null, "36.0", null, "0.8", null, "30.7", null, "0.6", null, "14.8", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12", "13"], ["5001900US1214", "Congressional District 14 (119th Congress), Florida", "826751", null, "19075", null, "45925", null, "4405", null, "39134", null, "4877", null, "44649", null, "5025", null, "45857", null, "3926", null, "52404", null, "4054", null, "66949", null, "5486", null, "69361", null, "5513", null, "60840", null, "4871", null, "64001", null, "5164", null, "49834", null, "4480", null, "50518", null, "3569", null, "51971", null, "4311", null, "51396", null, "4016", null, "44583", null, "4003", null, "34549", null, "2993", null, "22580", null, "2334", null, "16460", null, "2946", null, "15740", null, "2404", null, "83783", null, "7568", null, "28977", null, "2628", null, "158685", null, "9956", null, "69284", null, "4435", null, "359412", null, "11472", null, "687214", null, "15104", null, "668066", null, "14679", null, "641745", null, "13953", null, "185308", null, "7060", null, "162642", null, "6673", null, "133912", null, "5893", null, "54780", null, "3584", null, "39.0", null, "0.9", null, "101.2", null, "3.1", null, "54.8", null, "2.3", null, "25.1", null, "1.4", null, "29.7", null, "1.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.6", null, "0.5", null, "4.7", null, "0.6", null, "5.4", null, "0.6", null, "5.5", null, "0.4", null, "6.3", null, "0.5", null, "8.1", null, "0.6", null, "8.4", null, "0.6", null, "7.4", null, "0.6", null, "7.7", null, "0.6", null, "6.0", null, "0.5", null, "6.1", null, "0.4", null, "6.3", null, "0.5", null, "6.2", null, "0.5", null, "5.4", null, "0.5", null, "4.2", null, "0.4", null, "2.7", null, "0.3", null, "2.0", null, "0.4", null, "1.9", null, "0.3", null, "10.1", null, "0.8", null, "3.5", null, "0.3", null, "19.2", null, "1.0", null, "8.4", null, "0.5", null, "43.5", null, "0.9", null, "83.1", null, "1.0", null, "80.8", null, "1.0", null, "77.6", null, "1.0", null, "22.4", null, "1.0", null, "19.7", null, "0.9", null, "16.2", null, "0.8", null, "6.6", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "0.9", null, "-888888888.0", "(X)", "415882", null, "11098", null, "24925", null, "3114", null, "19779", null, "3185", null, "26282", null, "3710", null, "24406", null, "3062", null, "24332", null, "2783", null, "33254", null, "3515", null, "37298", null, "3652", null, "29840", null, "2950", null, "32995", null, "3778", null, "25094", null, "3111", null, "26730", null, "2664", null, "28183", null, "2721", null, "22689", null, "2487", null, "21710", null, "2578", null, "16550", null, "1906", null, "10039", null, "1475", null, "5979", null, "1250", null, "5797", null, "1050", null, "46061", null, "4736", null, "16249", null, "1935", null, "87235", null, "5923", null, "32489", null, "3272", null, "182125", null, "7178", null, "339703", null, "9474", null, "328647", null, "8949", null, "315951", null, "8696", null, "82764", null, "4193", null, "72006", null, "3998", null, "60075", null, "3518", null, "21815", null, "1907", null, "37.8", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.0", null, "0.7", null, "4.8", null, "0.8", null, "6.3", null, "0.8", null, "5.9", null, "0.7", null, "5.9", null, "0.7", null, "8.0", null, "0.8", null, "9.0", null, "0.9", null, "7.2", null, "0.7", null, "7.9", null, "0.9", null, "6.0", null, "0.7", null, "6.4", null, "0.6", null, "6.8", null, "0.6", null, "5.5", null, "0.6", null, "5.2", null, "0.6", null, "4.0", null, "0.5", null, "2.4", null, "0.4", null, "1.4", null, "0.3", null, "1.4", null, "0.3", null, "11.1", null, "1.1", null, "3.9", null, "0.4", null, "21.0", null, "1.2", null, "7.8", null, "0.8", null, "43.8", null, "1.3", null, "81.7", null, "1.2", null, "79.0", null, "1.2", null, "76.0", null, "1.3", null, "19.9", null, "1.1", null, "17.3", null, "1.0", null, "14.4", null, "0.8", null, "5.2", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "410869", null, "11693", null, "21000", null, "2844", null, "19355", null, "3195", null, "18367", null, "3201", null, "21451", null, "2431", null, "28072", null, "3000", null, "33695", null, "3427", null, "32063", null, "3654", null, "31000", null, "3456", null, "31006", null, "3058", null, "24740", null, "2487", null, "23788", null, "2249", null, "23788", null, "2667", null, "28707", null, "2907", null, "22873", null, "2536", null, "17999", null, "1926", null, "12541", null, "1827", null, "10481", null, "2273", null, "9943", null, "1994", null, "37722", null, "4723", null, "12728", null, "1892", null, "71450", null, "5864", null, "36795", null, "3238", null, "177287", null, "8033", null, "347511", null, "9604", null, "339419", null, "9476", null, "325794", null, "9018", null, "102544", null, "4480", null, "90636", null, "4174", null, "73837", null, "3717", null, "32965", null, "2684", null, "40.1", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.1", null, "0.7", null, "4.7", null, "0.7", null, "4.5", null, "0.7", null, "5.2", null, "0.6", null, "6.8", null, "0.7", null, "8.2", null, "0.8", null, "7.8", null, "0.8", null, "7.5", null, "0.8", null, "7.5", null, "0.7", null, "6.0", null, "0.6", null, "5.8", null, "0.5", null, "5.8", null, "0.6", null, "7.0", null, "0.7", null, "5.6", null, "0.6", null, "4.4", null, "0.5", null, "3.1", null, "0.4", null, "2.6", null, "0.6", null, "2.4", null, "0.5", null, "9.2", null, "1.1", null, "3.1", null, "0.4", null, "17.4", null, "1.2", null, "9.0", null, "0.7", null, "43.1", null, "1.2", null, "84.6", null, "1.2", null, "82.6", null, "1.2", null, "79.3", null, "1.1", null, "25.0", null, "1.3", null, "22.1", null, "1.1", null, "18.0", null, "1.0", null, "8.0", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12", "14"], ["5001900US1215", "Congressional District 15 (119th Congress), Florida", "835404", null, "25069", null, "37141", null, "4042", null, "48650", null, "5686", null, "55812", null, "5675", null, "56670", null, "5013", null, "57579", null, "4446", null, "54220", null, "6032", null, "58825", null, "5502", null, "60779", null, "6911", null, "57686", null, "6689", null, "50392", null, "5047", null, "51595", null, "4777", null, "46688", null, "4379", null, "52527", null, "3802", null, "42378", null, "3512", null, "40797", null, "3540", null, "32326", null, "3195", null, "18550", null, "2654", null, "12789", null, "1983", null, "104462", null, "8019", null, "30197", null, "3694", null, "171800", null, "10753", null, "84052", null, "5436", null, "345759", null, "15204", null, "684437", null, "21029", null, "663604", null, "20443", null, "625251", null, "19880", null, "199367", null, "8235", null, "179008", null, "7882", null, "146840", null, "6795", null, "63665", null, "4024", null, "39.1", null, "0.8", null, "93.2", null, "2.9", null, "61.7", null, "2.6", null, "28.4", null, "1.6", null, "33.2", null, "2.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.4", null, "0.5", null, "5.8", null, "0.7", null, "6.7", null, "0.6", null, "6.8", null, "0.5", null, "6.9", null, "0.5", null, "6.5", null, "0.7", null, "7.0", null, "0.6", null, "7.3", null, "0.7", null, "6.9", null, "0.8", null, "6.0", null, "0.6", null, "6.2", null, "0.6", null, "5.6", null, "0.5", null, "6.3", null, "0.4", null, "5.1", null, "0.4", null, "4.9", null, "0.5", null, "3.9", null, "0.4", null, "2.2", null, "0.3", null, "1.5", null, "0.2", null, "12.5", null, "0.8", null, "3.6", null, "0.4", null, "20.6", null, "1.0", null, "10.1", null, "0.6", null, "41.4", null, "1.1", null, "81.9", null, "1.0", null, "79.4", null, "1.0", null, "74.8", null, "1.1", null, "23.9", null, "1.0", null, "21.4", null, "0.9", null, "17.6", null, "0.8", null, "7.6", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "0.9", null, "-888888888.0", "(X)", "403059", null, "14370", null, "17602", null, "2887", null, "21213", null, "2897", null, "28451", null, "3818", null, "28196", null, "3180", null, "30065", null, "3196", null, "25658", null, "3496", null, "28711", null, "3427", null, "29738", null, "4219", null, "29222", null, "3791", null, "24051", null, "3012", null, "24150", null, "2814", null, "23985", null, "3089", null, "25517", null, "2661", null, "18891", null, "2272", null, "18923", null, "2297", null, "15475", null, "2059", null, "8228", null, "1483", null, "4983", null, "1170", null, "49664", null, "4502", null, "14118", null, "2418", null, "81384", null, "6583", null, "44143", null, "3880", null, "171590", null, "9046", null, "331800", null, "12134", null, "321675", null, "11904", null, "300804", null, "11573", null, "92017", null, "4676", null, "82052", null, "4503", null, "66500", null, "4041", null, "28686", null, "2213", null, "38.6", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.4", null, "0.7", null, "5.3", null, "0.7", null, "7.1", null, "0.9", null, "7.0", null, "0.8", null, "7.5", null, "0.7", null, "6.4", null, "0.8", null, "7.1", null, "0.8", null, "7.4", null, "0.9", null, "7.3", null, "0.9", null, "6.0", null, "0.7", null, "6.0", null, "0.7", null, "6.0", null, "0.7", null, "6.3", null, "0.6", null, "4.7", null, "0.5", null, "4.7", null, "0.6", null, "3.8", null, "0.5", null, "2.0", null, "0.4", null, "1.2", null, "0.3", null, "12.3", null, "1.0", null, "3.5", null, "0.6", null, "20.2", null, "1.4", null, "11.0", null, "0.9", null, "42.6", null, "1.4", null, "82.3", null, "1.2", null, "79.8", null, "1.4", null, "74.6", null, "1.4", null, "22.8", null, "1.2", null, "20.4", null, "1.1", null, "16.5", null, "1.1", null, "7.1", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "432345", null, "13735", null, "19539", null, "3015", null, "27437", null, "4085", null, "27361", null, "3357", null, "28474", null, "3508", null, "27514", null, "3099", null, "28562", null, "4060", null, "30114", null, "3383", null, "31041", null, "3917", null, "28464", null, "3998", null, "26341", null, "3199", null, "27445", null, "2921", null, "22703", null, "2507", null, "27010", null, "2530", null, "23487", null, "2601", null, "21874", null, "2647", null, "16851", null, "2008", null, "10322", null, "1904", null, "7806", null, "1344", null, "54798", null, "5246", null, "16079", null, "2570", null, "90416", null, "6641", null, "39909", null, "3514", null, "174169", null, "8809", null, "352637", null, "11426", null, "341929", null, "10850", null, "324447", null, "10369", null, "107350", null, "4870", null, "96956", null, "4752", null, "80340", null, "4146", null, "34979", null, "2744", null, "39.5", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.5", null, "0.7", null, "6.3", null, "0.9", null, "6.3", null, "0.7", null, "6.6", null, "0.7", null, "6.4", null, "0.7", null, "6.6", null, "0.9", null, "7.0", null, "0.8", null, "7.2", null, "0.8", null, "6.6", null, "0.9", null, "6.1", null, "0.7", null, "6.3", null, "0.7", null, "5.3", null, "0.6", null, "6.2", null, "0.6", null, "5.4", null, "0.6", null, "5.1", null, "0.6", null, "3.9", null, "0.5", null, "2.4", null, "0.4", null, "1.8", null, "0.3", null, "12.7", null, "1.1", null, "3.7", null, "0.6", null, "20.9", null, "1.2", null, "9.2", null, "0.7", null, "40.3", null, "1.3", null, "81.6", null, "1.3", null, "79.1", null, "1.2", null, "75.0", null, "1.4", null, "24.8", null, "1.1", null, "22.4", null, "1.0", null, "18.6", null, "0.9", null, "8.1", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12", "15"], ["5001900US1216", "Congressional District 16 (119th Congress), Florida", "882786", null, "18861", null, "47400", null, "3922", null, "47810", null, "5678", null, "52248", null, "5003", null, "45781", null, "3854", null, "42368", null, "3726", null, "48475", null, "4405", null, "53689", null, "5146", null, "60226", null, "5649", null, "53636", null, "5518", null, "54460", null, "4083", null, "57434", null, "3419", null, "53210", null, "3819", null, "59857", null, "3628", null, "54431", null, "3817", null, "55133", null, "3451", null, "48036", null, "3421", null, "27405", null, "2890", null, "21187", null, "2642", null, "100058", null, "7010", null, "31173", null, "2796", null, "178631", null, "9409", null, "56976", null, "4290", null, "304175", null, "11320", null, "723389", null, "13347", null, "704155", null, "12861", null, "681798", null, "12675", null, "266049", null, "6029", null, "240416", null, "5604", null, "206192", null, "4835", null, "96628", null, "3097", null, "43.9", null, "1.0", null, "95.6", null, "2.7", null, "77.3", null, "2.4", null, "41.4", null, "1.5", null, "35.9", null, "1.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.4", null, "5.4", null, "0.6", null, "5.9", null, "0.5", null, "5.2", null, "0.4", null, "4.8", null, "0.4", null, "5.5", null, "0.5", null, "6.1", null, "0.5", null, "6.8", null, "0.6", null, "6.1", null, "0.6", null, "6.2", null, "0.4", null, "6.5", null, "0.4", null, "6.0", null, "0.4", null, "6.8", null, "0.4", null, "6.2", null, "0.4", null, "6.2", null, "0.4", null, "5.4", null, "0.4", null, "3.1", null, "0.3", null, "2.4", null, "0.3", null, "11.3", null, "0.7", null, "3.5", null, "0.3", null, "20.2", null, "0.8", null, "6.5", null, "0.4", null, "34.5", null, "0.9", null, "81.9", null, "0.8", null, "79.8", null, "0.8", null, "77.2", null, "0.8", null, "30.1", null, "0.8", null, "27.2", null, "0.7", null, "23.4", null, "0.7", null, "10.9", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.6", null, "-888888888.0", "(X)", "431572", null, "11395", null, "24730", null, "2639", null, "23709", null, "3687", null, "28425", null, "3735", null, "22828", null, "2630", null, "21783", null, "2396", null, "25797", null, "2866", null, "24628", null, "3393", null, "31383", null, "3846", null, "25325", null, "3365", null, "27640", null, "2899", null, "27177", null, "2211", null, "24439", null, "2661", null, "29542", null, "2536", null, "25426", null, "2350", null, "23526", null, "2318", null, "23586", null, "2008", null, "12963", null, "1966", null, "8665", null, "1386", null, "52134", null, "4480", null, "15192", null, "1994", null, "92056", null, "6133", null, "29419", null, "3002", null, "151744", null, "7681", null, "349976", null, "8732", null, "339516", null, "8500", null, "327490", null, "8388", null, "123708", null, "3749", null, "110963", null, "3346", null, "94166", null, "2732", null, "45214", null, "1857", null, "42.4", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.7", null, "0.6", null, "5.5", null, "0.8", null, "6.6", null, "0.8", null, "5.3", null, "0.6", null, "5.0", null, "0.5", null, "6.0", null, "0.7", null, "5.7", null, "0.7", null, "7.3", null, "0.9", null, "5.9", null, "0.8", null, "6.4", null, "0.7", null, "6.3", null, "0.5", null, "5.7", null, "0.6", null, "6.8", null, "0.5", null, "5.9", null, "0.5", null, "5.5", null, "0.5", null, "5.5", null, "0.5", null, "3.0", null, "0.4", null, "2.0", null, "0.3", null, "12.1", null, "0.9", null, "3.5", null, "0.4", null, "21.3", null, "1.1", null, "6.8", null, "0.6", null, "35.2", null, "1.3", null, "81.1", null, "1.1", null, "78.7", null, "1.1", null, "75.9", null, "1.2", null, "28.7", null, "0.8", null, "25.7", null, "0.8", null, "21.8", null, "0.7", null, "10.5", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "451214", null, "11086", null, "22670", null, "2997", null, "24101", null, "3590", null, "23823", null, "3479", null, "22953", null, "2701", null, "20585", null, "2126", null, "22678", null, "2670", null, "29061", null, "2949", null, "28843", null, "3371", null, "28311", null, "3603", null, "26820", null, "2521", null, "30257", null, "2403", null, "28771", null, "2687", null, "30315", null, "2521", null, "29005", null, "2731", null, "31607", null, "2068", null, "24450", null, "2573", null, "14442", null, "1838", null, "12522", null, "1910", null, "47924", null, "4638", null, "15981", null, "2024", null, "86575", null, "6343", null, "27557", null, "2414", null, "152431", null, "6791", null, "373413", null, "8026", null, "364639", null, "7599", null, "354308", null, "7552", null, "142341", null, "3694", null, "129453", null, "3856", null, "112026", null, "3221", null, "51414", null, "2277", null, "45.5", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.0", null, "0.6", null, "5.3", null, "0.7", null, "5.3", null, "0.7", null, "5.1", null, "0.6", null, "4.6", null, "0.5", null, "5.0", null, "0.6", null, "6.4", null, "0.6", null, "6.4", null, "0.7", null, "6.3", null, "0.8", null, "5.9", null, "0.6", null, "6.7", null, "0.6", null, "6.4", null, "0.6", null, "6.7", null, "0.6", null, "6.4", null, "0.6", null, "7.0", null, "0.5", null, "5.4", null, "0.6", null, "3.2", null, "0.4", null, "2.8", null, "0.4", null, "10.6", null, "0.9", null, "3.5", null, "0.4", null, "19.2", null, "1.1", null, "6.1", null, "0.5", null, "33.8", null, "1.0", null, "82.8", null, "1.1", null, "80.8", null, "1.1", null, "78.5", null, "1.1", null, "31.5", null, "1.0", null, "28.7", null, "1.0", null, "24.8", null, "0.9", null, "11.4", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12", "16"], ["5001900US1217", "Congressional District 17 (119th Congress), Florida", "877095", null, "11665", null, "31230", null, "2894", null, "36034", null, "3382", null, "42918", null, "3863", null, "38426", null, "2550", null, "36168", null, "2590", null, "37986", null, "3196", null, "44300", null, "3106", null, "37974", null, "3469", null, "47852", null, "3722", null, "39755", null, "2739", null, "49350", null, "2683", null, "56428", null, "3655", null, "72950", null, "3769", null, "77486", null, "4954", null, "75352", null, "4356", null, "75533", null, "4402", null, "43063", null, "3796", null, "34290", null, "3050", null, "78952", null, "4315", null, "25991", null, "1831", null, "136173", null, "5181", null, "48603", null, "2871", null, "242706", null, "7400", null, "758524", null, "8826", null, "740922", null, "8463", null, "721785", null, "8472", null, "378674", null, "4949", null, "350451", null, "5117", null, "305724", null, "3488", null, "152886", null, "2861", null, "54.7", null, "0.6", null, "94.2", null, "1.5", null, "101.5", null, "2.1", null, "70.2", null, "1.7", null, "31.3", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "3.6", null, "0.3", null, "4.1", null, "0.4", null, "4.9", null, "0.4", null, "4.4", null, "0.3", null, "4.1", null, "0.3", null, "4.3", null, "0.3", null, "5.1", null, "0.3", null, "4.3", null, "0.4", null, "5.5", null, "0.4", null, "4.5", null, "0.3", null, "5.6", null, "0.3", null, "6.4", null, "0.4", null, "8.3", null, "0.4", null, "8.8", null, "0.6", null, "8.6", null, "0.5", null, "8.6", null, "0.5", null, "4.9", null, "0.4", null, "3.9", null, "0.4", null, "9.0", null, "0.4", null, "3.0", null, "0.2", null, "15.5", null, "0.5", null, "5.5", null, "0.3", null, "27.7", null, "0.6", null, "86.5", null, "0.5", null, "84.5", null, "0.5", null, "82.3", null, "0.5", null, "43.2", null, "0.8", null, "40.0", null, "0.7", null, "34.9", null, "0.6", null, "17.4", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "3.3", null, "-888888888.0", "(X)", "425336", null, "6790", null, "17215", null, "2081", null, "20206", null, "2775", null, "20631", null, "2351", null, "20184", null, "1532", null, "17977", null, "1525", null, "20121", null, "1923", null, "22402", null, "1990", null, "17617", null, "2294", null, "24255", null, "2651", null, "18255", null, "1650", null, "22953", null, "1710", null, "25017", null, "2101", null, "35004", null, "2341", null, "35218", null, "2667", null, "36779", null, "2582", null, "36038", null, "2538", null, "20497", null, "2219", null, "14967", null, "1786", null, "40837", null, "2669", null, "13990", null, "1328", null, "72042", null, "3674", null, "24171", null, "1733", null, "122556", null, "4581", null, "362159", null, "5435", null, "353294", null, "5104", null, "343666", null, "4844", null, "178503", null, "3054", null, "165884", null, "2792", null, "143499", null, "1787", null, "71502", null, "1359", null, "53.2", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.0", null, "0.5", null, "4.8", null, "0.6", null, "4.9", null, "0.5", null, "4.7", null, "0.3", null, "4.2", null, "0.4", null, "4.7", null, "0.4", null, "5.3", null, "0.4", null, "4.1", null, "0.5", null, "5.7", null, "0.6", null, "4.3", null, "0.4", null, "5.4", null, "0.4", null, "5.9", null, "0.5", null, "8.2", null, "0.6", null, "8.3", null, "0.7", null, "8.6", null, "0.6", null, "8.5", null, "0.6", null, "4.8", null, "0.5", null, "3.5", null, "0.4", null, "9.6", null, "0.6", null, "3.3", null, "0.3", null, "16.9", null, "0.7", null, "5.7", null, "0.4", null, "28.8", null, "0.8", null, "85.1", null, "0.7", null, "83.1", null, "0.7", null, "80.8", null, "0.7", null, "42.0", null, "0.9", null, "39.0", null, "0.8", null, "33.7", null, "0.6", null, "16.8", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "451759", null, "6739", null, "14015", null, "1919", null, "15828", null, "1993", null, "22287", null, "2902", null, "18242", null, "1994", null, "18191", null, "1796", null, "17865", null, "1943", null, "21898", null, "1868", null, "20357", null, "2563", null, "23597", null, "2853", null, "21500", null, "2070", null, "26397", null, "1865", null, "31411", null, "2737", null, "37946", null, "2570", null, "42268", null, "3253", null, "38573", null, "2877", null, "39495", null, "2788", null, "22566", null, "2669", null, "19323", null, "2038", null, "38115", null, "2805", null, "12001", null, "1299", null, "64131", null, "3248", null, "24432", null, "2112", null, "120150", null, "4264", null, "396365", null, "5261", null, "387628", null, "5008", null, "378119", null, "4864", null, "200171", null, "3140", null, "184567", null, "3499", null, "162225", null, "2487", null, "81384", null, "2122", null, "56.1", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "3.1", null, "0.4", null, "3.5", null, "0.4", null, "4.9", null, "0.6", null, "4.0", null, "0.4", null, "4.0", null, "0.4", null, "4.0", null, "0.4", null, "4.8", null, "0.4", null, "4.5", null, "0.6", null, "5.2", null, "0.6", null, "4.8", null, "0.5", null, "5.8", null, "0.4", null, "7.0", null, "0.6", null, "8.4", null, "0.6", null, "9.4", null, "0.7", null, "8.5", null, "0.6", null, "8.7", null, "0.6", null, "5.0", null, "0.6", null, "4.3", null, "0.5", null, "8.4", null, "0.6", null, "2.7", null, "0.3", null, "14.2", null, "0.6", null, "5.4", null, "0.4", null, "26.6", null, "0.7", null, "87.7", null, "0.6", null, "85.8", null, "0.6", null, "83.7", null, "0.7", null, "44.3", null, "1.0", null, "40.9", null, "0.9", null, "35.9", null, "0.7", null, "18.0", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12", "17"], ["5001900US1218", "Congressional District 18 (119th Congress), Florida", "875428", null, "15516", null, "45691", null, "2780", null, "47504", null, "4003", null, "54136", null, "3688", null, "58955", null, "3344", null, "52646", null, "4059", null, "50776", null, "3611", null, "58316", null, "3592", null, "55227", null, "4751", null, "59971", null, "4830", null, "52013", null, "3494", null, "50834", null, "2857", null, "46753", null, "3942", null, "54536", null, "3872", null, "52962", null, "3325", null, "47197", null, "3044", null, "44957", null, "2966", null, "24170", null, "2118", null, "18784", null, "2348", null, "101640", null, "4607", null, "34311", null, "2378", null, "181642", null, "7063", null, "77290", null, "4206", null, "335891", null, "9498", null, "715097", null, "12504", null, "693786", null, "12181", null, "658460", null, "12427", null, "242606", null, "5223", null, "220025", null, "5155", null, "188070", null, "4058", null, "87911", null, "2743", null, "41.2", null, "0.7", null, "102.1", null, "1.9", null, "73.1", null, "2.1", null, "37.2", null, "1.2", null, "35.9", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.3", null, "5.4", null, "0.4", null, "6.2", null, "0.4", null, "6.7", null, "0.4", null, "6.0", null, "0.4", null, "5.8", null, "0.4", null, "6.7", null, "0.4", null, "6.3", null, "0.5", null, "6.9", null, "0.5", null, "5.9", null, "0.4", null, "5.8", null, "0.3", null, "5.3", null, "0.5", null, "6.2", null, "0.4", null, "6.0", null, "0.4", null, "5.4", null, "0.3", null, "5.1", null, "0.3", null, "2.8", null, "0.2", null, "2.1", null, "0.3", null, "11.6", null, "0.5", null, "3.9", null, "0.3", null, "20.7", null, "0.6", null, "8.8", null, "0.4", null, "38.4", null, "0.6", null, "81.7", null, "0.6", null, "79.3", null, "0.6", null, "75.2", null, "0.7", null, "27.7", null, "0.6", null, "25.1", null, "0.6", null, "21.5", null, "0.5", null, "10.0", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "2.1", null, "-888888888.0", "(X)", "442157", null, "8381", null, "22812", null, "2379", null, "23697", null, "2385", null, "29166", null, "2484", null, "30959", null, "2809", null, "27437", null, "2794", null, "26708", null, "1948", null, "30995", null, "2574", null, "31830", null, "3737", null, "28453", null, "3715", null, "25407", null, "2499", null, "26572", null, "1939", null, "24297", null, "2637", null, "25538", null, "2300", null, "24770", null, "2359", null, "22521", null, "2107", null, "21654", null, "1877", null, "11264", null, "1361", null, "8077", null, "1453", null, "52863", null, "2710", null, "17950", null, "2082", null, "93625", null, "4586", null, "40446", null, "2633", null, "176382", null, "6277", null, "358998", null, "6929", null, "348532", null, "6672", null, "329917", null, "7031", null, "113824", null, "3234", null, "104885", null, "3336", null, "88286", null, "2643", null, "40995", null, "1883", null, "39.6", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.5", null, "5.4", null, "0.5", null, "6.6", null, "0.6", null, "7.0", null, "0.6", null, "6.2", null, "0.6", null, "6.0", null, "0.4", null, "7.0", null, "0.6", null, "7.2", null, "0.8", null, "6.4", null, "0.8", null, "5.7", null, "0.6", null, "6.0", null, "0.4", null, "5.5", null, "0.6", null, "5.8", null, "0.5", null, "5.6", null, "0.5", null, "5.1", null, "0.5", null, "4.9", null, "0.4", null, "2.5", null, "0.3", null, "1.8", null, "0.3", null, "12.0", null, "0.6", null, "4.1", null, "0.4", null, "21.2", null, "0.9", null, "9.1", null, "0.5", null, "39.9", null, "0.9", null, "81.2", null, "0.8", null, "78.8", null, "0.9", null, "74.6", null, "0.9", null, "25.7", null, "0.7", null, "23.7", null, "0.8", null, "20.0", null, "0.7", null, "9.3", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "433271", null, "9184", null, "22879", null, "2268", null, "23807", null, "2910", null, "24970", null, "2438", null, "27996", null, "1866", null, "25209", null, "2556", null, "24068", null, "2436", null, "27321", null, "2365", null, "23397", null, "2855", null, "31518", null, "2826", null, "26606", null, "2486", null, "24262", null, "1672", null, "22456", null, "2249", null, "28998", null, "2526", null, "28192", null, "2398", null, "24676", null, "2041", null, "23303", null, "2186", null, "12906", null, "1876", null, "10707", null, "1622", null, "48777", null, "3138", null, "16361", null, "1417", null, "88017", null, "4267", null, "36844", null, "2713", null, "159509", null, "5029", null, "356099", null, "7313", null, "345254", null, "7005", null, "328543", null, "7237", null, "128782", null, "3617", null, "115140", null, "3170", null, "99784", null, "2421", null, "46916", null, "1635", null, "43.0", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.3", null, "0.5", null, "5.5", null, "0.6", null, "5.8", null, "0.6", null, "6.5", null, "0.4", null, "5.8", null, "0.6", null, "5.6", null, "0.5", null, "6.3", null, "0.5", null, "5.4", null, "0.6", null, "7.3", null, "0.7", null, "6.1", null, "0.6", null, "5.6", null, "0.4", null, "5.2", null, "0.5", null, "6.7", null, "0.6", null, "6.5", null, "0.6", null, "5.7", null, "0.5", null, "5.4", null, "0.5", null, "3.0", null, "0.4", null, "2.5", null, "0.4", null, "11.3", null, "0.6", null, "3.8", null, "0.3", null, "20.3", null, "0.8", null, "8.5", null, "0.6", null, "36.8", null, "0.7", null, "82.2", null, "0.8", null, "79.7", null, "0.8", null, "75.8", null, "0.8", null, "29.7", null, "0.8", null, "26.6", null, "0.8", null, "23.0", null, "0.6", null, "10.8", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12", "18"], ["5001900US1219", "Congressional District 19 (119th Congress), Florida", "826915", null, "13241", null, "31046", null, "3240", null, "31653", null, "4120", null, "34008", null, "3835", null, "38595", null, "2451", null, "40232", null, "2635", null, "39709", null, "3255", null, "39821", null, "2702", null, "40448", null, "3922", null, "42485", null, "3729", null, "41732", null, "2153", null, "47791", null, "2484", null, "54290", null, "3876", null, "65089", null, "3876", null, "69479", null, "3750", null, "64519", null, "3332", null, "69424", null, "4336", null, "44210", null, "3198", null, "32384", null, "3067", null, "65661", null, "4594", null, "22263", null, "1870", null, "118970", null, "6004", null, "56564", null, "2917", null, "241290", null, "8258", null, "722460", null, "9572", null, "707945", null, "9309", null, "683704", null, "9159", null, "345105", null, "6501", null, "319341", null, "6237", null, "280016", null, "4973", null, "146018", null, "3695", null, "53.7", null, "0.8", null, "96.5", null, "1.8", null, "93.2", null, "2.5", null, "65.4", null, "2.2", null, "27.8", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "3.8", null, "0.4", null, "3.8", null, "0.5", null, "4.1", null, "0.4", null, "4.7", null, "0.3", null, "4.9", null, "0.3", null, "4.8", null, "0.4", null, "4.8", null, "0.3", null, "4.9", null, "0.4", null, "5.1", null, "0.4", null, "5.0", null, "0.2", null, "5.8", null, "0.3", null, "6.6", null, "0.5", null, "7.9", null, "0.5", null, "8.4", null, "0.5", null, "7.8", null, "0.4", null, "8.4", null, "0.5", null, "5.3", null, "0.4", null, "3.9", null, "0.4", null, "7.9", null, "0.5", null, "2.7", null, "0.2", null, "14.4", null, "0.6", null, "6.8", null, "0.4", null, "29.2", null, "0.7", null, "87.4", null, "0.6", null, "85.6", null, "0.6", null, "82.7", null, "0.6", null, "41.7", null, "1.0", null, "38.6", null, "0.9", null, "33.9", null, "0.8", null, "17.7", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.6", null, "-888888888.0", "(X)", "406071", null, "7862", null, "15289", null, "2061", null, "16732", null, "2675", null, "16195", null, "2664", null, "20073", null, "2084", null, "21431", null, "1834", null, "20531", null, "1763", null, "19894", null, "1683", null, "20217", null, "2347", null, "22386", null, "2471", null, "19932", null, "1476", null, "23474", null, "1693", null, "25518", null, "2605", null, "32351", null, "2503", null, "30973", null, "2131", null, "30980", null, "2076", null, "33215", null, "2475", null, "22943", null, "2244", null, "13937", null, "1800", null, "32927", null, "3056", null, "11757", null, "1579", null, "59973", null, "3968", null, "29747", null, "2052", null, "124532", null, "4687", null, "354320", null, "5804", null, "346098", null, "5682", null, "334172", null, "5441", null, "164399", null, "3795", null, "151184", null, "3877", null, "132048", null, "2619", null, "70095", null, "2115", null, "52.6", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "3.8", null, "0.5", null, "4.1", null, "0.6", null, "4.0", null, "0.6", null, "4.9", null, "0.5", null, "5.3", null, "0.5", null, "5.1", null, "0.4", null, "4.9", null, "0.4", null, "5.0", null, "0.6", null, "5.5", null, "0.6", null, "4.9", null, "0.3", null, "5.8", null, "0.4", null, "6.3", null, "0.6", null, "8.0", null, "0.6", null, "7.6", null, "0.5", null, "7.6", null, "0.5", null, "8.2", null, "0.7", null, "5.6", null, "0.5", null, "3.4", null, "0.5", null, "8.1", null, "0.7", null, "2.9", null, "0.4", null, "14.8", null, "0.8", null, "7.3", null, "0.5", null, "30.7", null, "0.9", null, "87.3", null, "0.8", null, "85.2", null, "0.8", null, "82.3", null, "0.8", null, "40.5", null, "1.1", null, "37.2", null, "1.1", null, "32.5", null, "0.8", null, "17.3", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "420844", null, "7407", null, "15757", null, "1892", null, "14921", null, "2590", null, "17813", null, "2606", null, "18522", null, "1651", null, "18801", null, "1610", null, "19178", null, "2307", null, "19927", null, "1766", null, "20231", null, "2554", null, "20099", null, "2309", null, "21800", null, "1458", null, "24317", null, "1653", null, "28772", null, "2491", null, "32738", null, "2801", null, "38506", null, "2527", null, "33539", null, "2266", null, "36209", null, "2921", null, "21267", null, "2091", null, "18447", null, "2408", null, "32734", null, "2576", null, "10506", null, "1552", null, "58997", null, "3820", null, "26817", null, "1834", null, "116758", null, "4636", null, "368140", null, "5228", null, "361847", null, "4942", null, "349532", null, "4915", null, "180706", null, "4010", null, "168157", null, "3630", null, "147968", null, "3079", null, "75923", null, "2420", null, "54.8", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "3.7", null, "0.4", null, "3.5", null, "0.6", null, "4.2", null, "0.6", null, "4.4", null, "0.4", null, "4.5", null, "0.4", null, "4.6", null, "0.5", null, "4.7", null, "0.4", null, "4.8", null, "0.6", null, "4.8", null, "0.5", null, "5.2", null, "0.3", null, "5.8", null, "0.4", null, "6.8", null, "0.6", null, "7.8", null, "0.7", null, "9.1", null, "0.6", null, "8.0", null, "0.6", null, "8.6", null, "0.7", null, "5.1", null, "0.5", null, "4.4", null, "0.6", null, "7.8", null, "0.5", null, "2.5", null, "0.4", null, "14.0", null, "0.7", null, "6.4", null, "0.4", null, "27.7", null, "0.8", null, "87.5", null, "0.7", null, "86.0", null, "0.7", null, "83.1", null, "0.8", null, "42.9", null, "1.1", null, "40.0", null, "1.0", null, "35.2", null, "0.9", null, "18.0", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12", "19"], ["5001900US1220", "Congressional District 20 (119th Congress), Florida", "818131", null, "23318", null, "52428", null, "6048", null, "46482", null, "5793", null, "49879", null, "5636", null, "46082", null, "4791", null, "49158", null, "5225", null, "49551", null, "5463", null, "54781", null, "5167", null, "60334", null, "5587", null, "62536", null, "5585", null, "49922", null, "4738", null, "52175", null, "4216", null, "50564", null, "4450", null, "49096", null, "4681", null, "47791", null, "4809", null, "34094", null, "3584", null, "26954", null, "3375", null, "16834", null, "2215", null, "19470", null, "2927", null, "96361", null, "8455", null, "30420", null, "3735", null, "179209", null, "11197", null, "64820", null, "6317", null, "322442", null, "12716", null, "659030", null, "18438", null, "638922", null, "18002", null, "613785", null, "17030", null, "194239", null, "8076", null, "173780", null, "7304", null, "145143", null, "6709", null, "63258", null, "3665", null, "40.0", null, "0.8", null, "93.3", null, "3.4", null, "65.7", null, "2.9", null, "29.4", null, "1.8", null, "36.3", null, "2.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.4", null, "0.7", null, "5.7", null, "0.7", null, "6.1", null, "0.6", null, "5.6", null, "0.6", null, "6.0", null, "0.6", null, "6.1", null, "0.6", null, "6.7", null, "0.6", null, "7.4", null, "0.6", null, "7.6", null, "0.7", null, "6.1", null, "0.5", null, "6.4", null, "0.5", null, "6.2", null, "0.5", null, "6.0", null, "0.6", null, "5.8", null, "0.6", null, "4.2", null, "0.5", null, "3.3", null, "0.4", null, "2.1", null, "0.3", null, "2.4", null, "0.4", null, "11.8", null, "0.9", null, "3.7", null, "0.4", null, "21.9", null, "1.1", null, "7.9", null, "0.7", null, "39.4", null, "0.9", null, "80.6", null, "1.0", null, "78.1", null, "1.1", null, "75.0", null, "1.0", null, "23.7", null, "1.1", null, "21.2", null, "1.0", null, "17.7", null, "0.9", null, "7.7", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "2.6", null, "-888888888.0", "(X)", "394973", null, "13727", null, "25048", null, "3525", null, "21661", null, "4134", null, "26503", null, "3694", null, "21321", null, "3158", null, "25591", null, "3879", null, "22961", null, "3371", null, "26738", null, "3187", null, "31478", null, "4094", null, "31040", null, "3963", null, "24016", null, "2877", null, "25631", null, "2942", null, "25396", null, "2987", null, "23001", null, "2612", null, "22653", null, "3374", null, "17308", null, "2412", null, "11490", null, "1953", null, "6626", null, "1557", null, "6511", null, "1645", null, "48164", null, "5155", null, "13156", null, "2723", null, "86368", null, "7193", null, "33756", null, "4638", null, "159129", null, "8517", null, "319245", null, "12012", null, "308605", null, "11919", null, "294441", null, "11011", null, "87589", null, "4939", null, "77705", null, "4720", null, "64588", null, "4006", null, "24627", null, "2387", null, "39.4", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.3", null, "0.9", null, "5.5", null, "1.0", null, "6.7", null, "0.9", null, "5.4", null, "0.8", null, "6.5", null, "0.9", null, "5.8", null, "0.8", null, "6.8", null, "0.8", null, "8.0", null, "1.0", null, "7.9", null, "1.0", null, "6.1", null, "0.7", null, "6.5", null, "0.7", null, "6.4", null, "0.8", null, "5.8", null, "0.6", null, "5.7", null, "0.8", null, "4.4", null, "0.7", null, "2.9", null, "0.5", null, "1.7", null, "0.4", null, "1.6", null, "0.4", null, "12.2", null, "1.2", null, "3.3", null, "0.7", null, "21.9", null, "1.6", null, "8.5", null, "1.1", null, "40.3", null, "1.5", null, "80.8", null, "1.5", null, "78.1", null, "1.6", null, "74.5", null, "1.4", null, "22.2", null, "1.2", null, "19.7", null, "1.2", null, "16.4", null, "1.0", null, "6.2", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "423158", null, "13850", null, "27380", null, "3652", null, "24821", null, "3593", null, "23376", null, "3750", null, "24761", null, "2677", null, "23567", null, "2909", null, "26590", null, "3546", null, "28043", null, "3165", null, "28856", null, "3672", null, "31496", null, "3450", null, "25906", null, "3297", null, "26544", null, "2959", null, "25168", null, "3280", null, "26095", null, "3564", null, "25138", null, "2825", null, "16786", null, "2205", null, "15464", null, "2320", null, "10208", null, "1353", null, "12959", null, "2504", null, "48197", null, "5380", null, "17264", null, "2158", null, "92841", null, "6576", null, "31064", null, "3612", null, "163313", null, "7425", null, "339785", null, "10269", null, "330317", null, "9977", null, "319344", null, "9360", null, "106650", null, "5032", null, "96075", null, "4448", null, "80555", null, "4169", null, "38631", null, "2669", null, "40.6", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.5", null, "0.8", null, "5.9", null, "0.8", null, "5.5", null, "0.8", null, "5.9", null, "0.6", null, "5.6", null, "0.6", null, "6.3", null, "0.8", null, "6.6", null, "0.7", null, "6.8", null, "0.9", null, "7.4", null, "0.8", null, "6.1", null, "0.7", null, "6.3", null, "0.7", null, "5.9", null, "0.8", null, "6.2", null, "0.8", null, "5.9", null, "0.7", null, "4.0", null, "0.5", null, "3.7", null, "0.6", null, "2.4", null, "0.3", null, "3.1", null, "0.6", null, "11.4", null, "1.1", null, "4.1", null, "0.5", null, "21.9", null, "1.1", null, "7.3", null, "0.8", null, "38.6", null, "1.1", null, "80.3", null, "1.1", null, "78.1", null, "1.1", null, "75.5", null, "1.2", null, "25.2", null, "1.3", null, "22.7", null, "1.2", null, "19.0", null, "1.1", null, "9.1", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12", "20"], ["5001900US1221", "Congressional District 21 (119th Congress), Florida", "859087", null, "11324", null, "38744", null, "3219", null, "41049", null, "3358", null, "43714", null, "3738", null, "45784", null, "3348", null, "37417", null, "2995", null, "46315", null, "3393", null, "48603", null, "2987", null, "45635", null, "3817", null, "50462", null, "4427", null, "46955", null, "3107", null, "53840", null, "3354", null, "53283", null, "3814", null, "68491", null, "4247", null, "66389", null, "3993", null, "56316", null, "4137", null, "47967", null, "3614", null, "35652", null, "3147", null, "32471", null, "3759", null, "84763", null, "3594", null, "27379", null, "2136", null, "150886", null, "5538", null, "55822", null, "3199", null, "274216", null, "7750", null, "726747", null, "9355", null, "708201", null, "8851", null, "683646", null, "8885", null, "307286", null, "7081", null, "281542", null, "6342", null, "238795", null, "5003", null, "116090", null, "4035", null, "48.6", null, "0.9", null, "96.9", null, "2.2", null, "83.0", null, "2.0", null, "50.9", null, "1.6", null, "32.1", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.5", null, "0.4", null, "4.8", null, "0.4", null, "5.1", null, "0.4", null, "5.3", null, "0.4", null, "4.4", null, "0.3", null, "5.4", null, "0.4", null, "5.7", null, "0.3", null, "5.3", null, "0.4", null, "5.9", null, "0.5", null, "5.5", null, "0.4", null, "6.3", null, "0.4", null, "6.2", null, "0.4", null, "8.0", null, "0.5", null, "7.7", null, "0.5", null, "6.6", null, "0.5", null, "5.6", null, "0.4", null, "4.1", null, "0.4", null, "3.8", null, "0.4", null, "9.9", null, "0.4", null, "3.2", null, "0.2", null, "17.6", null, "0.5", null, "6.5", null, "0.4", null, "31.9", null, "0.7", null, "84.6", null, "0.6", null, "82.4", null, "0.5", null, "79.6", null, "0.6", null, "35.8", null, "0.9", null, "32.8", null, "0.8", null, "27.8", null, "0.6", null, "13.5", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.3", null, "-888888888.0", "(X)", "422820", null, "7288", null, "20190", null, "2184", null, "20759", null, "2292", null, "20597", null, "2414", null, "24330", null, "2425", null, "18795", null, "1849", null, "24587", null, "2970", null, "25161", null, "1794", null, "22398", null, "2643", null, "26357", null, "2870", null, "23173", null, "1945", null, "26540", null, "2396", null, "24262", null, "2660", null, "34461", null, "2906", null, "32958", null, "2888", null, "25322", null, "2752", null, "23619", null, "2031", null, "16448", null, "1665", null, "12863", null, "1819", null, "41356", null, "2187", null, "15061", null, "1632", null, "76607", null, "3621", null, "28064", null, "2116", null, "141628", null, "4864", null, "355185", null, "6135", null, "346213", null, "5964", null, "333621", null, "6102", null, "145671", null, "4638", null, "133425", null, "4399", null, "111210", null, "3283", null, "52930", null, "2202", null, "46.8", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.8", null, "0.5", null, "4.9", null, "0.5", null, "4.9", null, "0.5", null, "5.8", null, "0.6", null, "4.4", null, "0.4", null, "5.8", null, "0.7", null, "6.0", null, "0.4", null, "5.3", null, "0.6", null, "6.2", null, "0.6", null, "5.5", null, "0.4", null, "6.3", null, "0.6", null, "5.7", null, "0.6", null, "8.2", null, "0.7", null, "7.8", null, "0.7", null, "6.0", null, "0.6", null, "5.6", null, "0.5", null, "3.9", null, "0.4", null, "3.0", null, "0.4", null, "9.8", null, "0.4", null, "3.6", null, "0.4", null, "18.1", null, "0.7", null, "6.6", null, "0.5", null, "33.5", null, "0.9", null, "84.0", null, "0.8", null, "81.9", null, "0.7", null, "78.9", null, "0.9", null, "34.5", null, "1.1", null, "31.6", null, "1.0", null, "26.3", null, "0.8", null, "12.5", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "436267", null, "7658", null, "18554", null, "2066", null, "20290", null, "2272", null, "23117", null, "2639", null, "21454", null, "2173", null, "18622", null, "2410", null, "21728", null, "2059", null, "23442", null, "1959", null, "23237", null, "2402", null, "24105", null, "2756", null, "23782", null, "2176", null, "27300", null, "1641", null, "29021", null, "2888", null, "34030", null, "3210", null, "33431", null, "2494", null, "30994", null, "2731", null, "24348", null, "2695", null, "19204", null, "2473", null, "19608", null, "2931", null, "43407", null, "2991", null, "12318", null, "1240", null, "74279", null, "4107", null, "27758", null, "2605", null, "132588", null, "4978", null, "371562", null, "6119", null, "361988", null, "5728", null, "350025", null, "5703", null, "161615", null, "4668", null, "148117", null, "3989", null, "127585", null, "3518", null, "63160", null, "2952", null, "50.0", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.3", null, "0.4", null, "4.7", null, "0.5", null, "5.3", null, "0.6", null, "4.9", null, "0.5", null, "4.3", null, "0.5", null, "5.0", null, "0.5", null, "5.4", null, "0.4", null, "5.3", null, "0.6", null, "5.5", null, "0.6", null, "5.5", null, "0.5", null, "6.3", null, "0.4", null, "6.7", null, "0.7", null, "7.8", null, "0.7", null, "7.7", null, "0.6", null, "7.1", null, "0.6", null, "5.6", null, "0.6", null, "4.4", null, "0.6", null, "4.5", null, "0.7", null, "9.9", null, "0.6", null, "2.8", null, "0.3", null, "17.0", null, "0.8", null, "6.4", null, "0.6", null, "30.4", null, "0.9", null, "85.2", null, "0.8", null, "83.0", null, "0.8", null, "80.2", null, "0.9", null, "37.0", null, "1.1", null, "34.0", null, "1.0", null, "29.2", null, "0.8", null, "14.5", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12", "21"], ["5001900US1222", "Congressional District 22 (119th Congress), Florida", "804159", null, "14777", null, "39701", null, "3485", null, "39224", null, "3937", null, "43790", null, "4208", null, "41030", null, "3195", null, "42119", null, "4614", null, "43222", null, "3790", null, "49984", null, "3658", null, "52066", null, "4282", null, "42492", null, "4328", null, "48292", null, "3450", null, "48236", null, "3465", null, "51125", null, "4131", null, "53759", null, "4380", null, "49201", null, "3279", null, "46379", null, "3382", null, "48704", null, "3551", null, "33621", null, "2989", null, "31214", null, "2546", null, "83014", null, "5281", null, "27978", null, "2276", null, "150693", null, "6421", null, "55171", null, "5270", null, "270913", null, "8757", null, "671277", null, "11660", null, "653466", null, "11739", null, "633661", null, "10769", null, "262878", null, "6382", null, "240344", null, "5661", null, "209119", null, "5206", null, "113539", null, "3738", null, "45.9", null, "0.8", null, "94.8", null, "2.2", null, "81.0", null, "2.6", null, "47.1", null, "1.8", null, "33.9", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.9", null, "0.4", null, "4.9", null, "0.5", null, "5.4", null, "0.5", null, "5.1", null, "0.4", null, "5.2", null, "0.5", null, "5.4", null, "0.5", null, "6.2", null, "0.4", null, "6.5", null, "0.5", null, "5.3", null, "0.5", null, "6.0", null, "0.4", null, "6.0", null, "0.4", null, "6.4", null, "0.5", null, "6.7", null, "0.5", null, "6.1", null, "0.4", null, "5.8", null, "0.4", null, "6.1", null, "0.4", null, "4.2", null, "0.4", null, "3.9", null, "0.3", null, "10.3", null, "0.6", null, "3.5", null, "0.3", null, "18.7", null, "0.6", null, "6.9", null, "0.6", null, "33.7", null, "0.8", null, "83.5", null, "0.6", null, "81.3", null, "0.6", null, "78.8", null, "0.7", null, "32.7", null, "0.8", null, "29.9", null, "0.8", null, "26.0", null, "0.7", null, "14.1", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "2.3", null, "-888888888.0", "(X)", "391244", null, "8279", null, "21456", null, "2408", null, "19026", null, "2798", null, "25151", null, "2963", null, "20238", null, "2461", null, "20854", null, "2820", null, "21530", null, "2648", null, "24592", null, "2123", null, "25163", null, "2957", null, "21602", null, "2990", null, "24241", null, "2412", null, "24580", null, "2232", null, "24300", null, "2678", null, "25059", null, "3162", null, "22438", null, "2248", null, "19984", null, "2258", null, "23936", null, "2224", null, "14765", null, "1808", null, "12329", null, "1655", null, "44177", null, "3601", null, "12949", null, "1708", null, "78582", null, "4563", null, "28143", null, "3465", null, "133979", null, "5241", null, "322098", null, "5743", null, "312662", null, "5971", null, "301963", null, "5949", null, "118511", null, "4026", null, "106742", null, "3474", null, "93452", null, "3214", null, "51030", null, "2129", null, "44.2", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.6", null, "4.9", null, "0.7", null, "6.4", null, "0.7", null, "5.2", null, "0.6", null, "5.3", null, "0.7", null, "5.5", null, "0.7", null, "6.3", null, "0.5", null, "6.4", null, "0.8", null, "5.5", null, "0.7", null, "6.2", null, "0.6", null, "6.3", null, "0.6", null, "6.2", null, "0.7", null, "6.4", null, "0.8", null, "5.7", null, "0.6", null, "5.1", null, "0.6", null, "6.1", null, "0.6", null, "3.8", null, "0.5", null, "3.2", null, "0.4", null, "11.3", null, "0.8", null, "3.3", null, "0.4", null, "20.1", null, "0.9", null, "7.2", null, "0.9", null, "34.2", null, "1.1", null, "82.3", null, "1.0", null, "79.9", null, "0.9", null, "77.2", null, "1.0", null, "30.3", null, "1.1", null, "27.3", null, "1.0", null, "23.9", null, "0.9", null, "13.0", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "412915", null, "9258", null, "18245", null, "2341", null, "20198", null, "2957", null, "18639", null, "2512", null, "20792", null, "2335", null, "21265", null, "2937", null, "21692", null, "2274", null, "25392", null, "2379", null, "26903", null, "3040", null, "20890", null, "3065", null, "24051", null, "2217", null, "23656", null, "2080", null, "26825", null, "2832", null, "28700", null, "2753", null, "26763", null, "2262", null, "26395", null, "2152", null, "24768", null, "2172", null, "18856", null, "2324", null, "18885", null, "2077", null, "38837", null, "3549", null, "15029", null, "2008", null, "72111", null, "4649", null, "27028", null, "3212", null, "136934", null, "5742", null, "349179", null, "7614", null, "340804", null, "7369", null, "331698", null, "6760", null, "144367", null, "4116", null, "133602", null, "3858", null, "115667", null, "3511", null, "62509", null, "2840", null, "47.8", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.4", null, "0.6", null, "4.9", null, "0.7", null, "4.5", null, "0.6", null, "5.0", null, "0.5", null, "5.1", null, "0.7", null, "5.3", null, "0.5", null, "6.1", null, "0.6", null, "6.5", null, "0.7", null, "5.1", null, "0.7", null, "5.8", null, "0.5", null, "5.7", null, "0.5", null, "6.5", null, "0.7", null, "7.0", null, "0.6", null, "6.5", null, "0.6", null, "6.4", null, "0.5", null, "6.0", null, "0.5", null, "4.6", null, "0.5", null, "4.6", null, "0.5", null, "9.4", null, "0.8", null, "3.6", null, "0.5", null, "17.5", null, "0.9", null, "6.5", null, "0.7", null, "33.2", null, "1.0", null, "84.6", null, "0.9", null, "82.5", null, "0.9", null, "80.3", null, "1.0", null, "35.0", null, "1.0", null, "32.4", null, "0.9", null, "28.0", null, "0.9", null, "15.1", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12", "22"], ["5001900US1223", "Congressional District 23 (119th Congress), Florida", "802266", null, "19798", null, "36744", null, "4524", null, "37909", null, "4782", null, "38969", null, "5093", null, "49619", null, "3990", null, "45370", null, "4773", null, "46287", null, "4868", null, "46513", null, "5174", null, "49620", null, "5311", null, "50879", null, "4925", null, "48356", null, "3393", null, "48095", null, "4523", null, "52659", null, "3944", null, "62328", null, "5562", null, "51719", null, "3913", null, "44793", null, "4153", null, "39142", null, "3619", null, "27008", null, "3165", null, "26256", null, "2801", null, "76878", null, "7152", null, "25605", null, "3187", null, "139227", null, "10015", null, "69384", null, "5675", null, "288288", null, "12398", null, "679788", null, "16384", null, "663039", null, "15809", null, "629312", null, "14946", null, "251246", null, "8840", null, "226330", null, "8803", null, "188918", null, "7719", null, "92406", null, "4870", null, "44.9", null, "0.9", null, "100.6", null, "3.4", null, "69.2", null, "2.9", null, "39.8", null, "2.1", null, "29.4", null, "2.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.6", null, "0.5", null, "4.7", null, "0.6", null, "4.9", null, "0.6", null, "6.2", null, "0.4", null, "5.7", null, "0.6", null, "5.8", null, "0.6", null, "5.8", null, "0.6", null, "6.2", null, "0.6", null, "6.3", null, "0.6", null, "6.0", null, "0.4", null, "6.0", null, "0.5", null, "6.6", null, "0.5", null, "7.8", null, "0.7", null, "6.4", null, "0.5", null, "5.6", null, "0.5", null, "4.9", null, "0.5", null, "3.4", null, "0.4", null, "3.3", null, "0.3", null, "9.6", null, "0.8", null, "3.2", null, "0.4", null, "17.4", null, "1.0", null, "8.6", null, "0.7", null, "35.9", null, "1.0", null, "84.7", null, "1.0", null, "82.6", null, "1.0", null, "78.4", null, "1.0", null, "31.3", null, "1.2", null, "28.2", null, "1.1", null, "23.5", null, "1.0", null, "11.5", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.1", null, "-888888888.0", "(X)", "402363", null, "11884", null, "20210", null, "3093", null, "20274", null, "3039", null, "19056", null, "2831", null, "26218", null, "3375", null, "24202", null, "3533", null, "22735", null, "3214", null, "25512", null, "3368", null, "24348", null, "3275", null, "26260", null, "3305", null, "24456", null, "2760", null, "22937", null, "2582", null, "27148", null, "2924", null, "33332", null, "3582", null, "24291", null, "2437", null, "20297", null, "2542", null, "18016", null, "1984", null, "13652", null, "2014", null, "9419", null, "1682", null, "39330", null, "4005", null, "14951", null, "2583", null, "74491", null, "6042", null, "35469", null, "4192", null, "149275", null, "8173", null, "337216", null, "10333", null, "327872", null, "10326", null, "311054", null, "9675", null, "119007", null, "4901", null, "105573", null, "5116", null, "85675", null, "4249", null, "41087", null, "2700", null, "43.5", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.0", null, "0.7", null, "5.0", null, "0.7", null, "4.7", null, "0.7", null, "6.5", null, "0.8", null, "6.0", null, "0.9", null, "5.7", null, "0.7", null, "6.3", null, "0.8", null, "6.1", null, "0.8", null, "6.5", null, "0.8", null, "6.1", null, "0.7", null, "5.7", null, "0.6", null, "6.7", null, "0.7", null, "8.3", null, "0.9", null, "6.0", null, "0.6", null, "5.0", null, "0.6", null, "4.5", null, "0.5", null, "3.4", null, "0.5", null, "2.3", null, "0.4", null, "9.8", null, "0.9", null, "3.7", null, "0.6", null, "18.5", null, "1.3", null, "8.8", null, "1.0", null, "37.1", null, "1.4", null, "83.8", null, "1.2", null, "81.5", null, "1.3", null, "77.3", null, "1.3", null, "29.6", null, "1.3", null, "26.2", null, "1.3", null, "21.3", null, "1.1", null, "10.2", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "399903", null, "12121", null, "16534", null, "2902", null, "17635", null, "3088", null, "19913", null, "3859", null, "23401", null, "2741", null, "21168", null, "2763", null, "23552", null, "3369", null, "21001", null, "3062", null, "25272", null, "3336", null, "24619", null, "2740", null, "23900", null, "2257", null, "25158", null, "2860", null, "25511", null, "2524", null, "28996", null, "3453", null, "27428", null, "2907", null, "24496", null, "2918", null, "21126", null, "2500", null, "13356", null, "2054", null, "16837", null, "2006", null, "37548", null, "5108", null, "10654", null, "1880", null, "64736", null, "6321", null, "33915", null, "3312", null, "139013", null, "6828", null, "342572", null, "9830", null, "335167", null, "9248", null, "318258", null, "9076", null, "132239", null, "5664", null, "120757", null, "5380", null, "103243", null, "4870", null, "51319", null, "3154", null, "46.2", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.1", null, "0.7", null, "4.4", null, "0.7", null, "5.0", null, "0.9", null, "5.9", null, "0.7", null, "5.3", null, "0.7", null, "5.9", null, "0.8", null, "5.3", null, "0.7", null, "6.3", null, "0.8", null, "6.2", null, "0.7", null, "6.0", null, "0.6", null, "6.3", null, "0.7", null, "6.4", null, "0.6", null, "7.3", null, "0.9", null, "6.9", null, "0.8", null, "6.1", null, "0.7", null, "5.3", null, "0.6", null, "3.3", null, "0.5", null, "4.2", null, "0.5", null, "9.4", null, "1.2", null, "2.7", null, "0.5", null, "16.2", null, "1.3", null, "8.5", null, "0.8", null, "34.8", null, "1.2", null, "85.7", null, "1.4", null, "83.8", null, "1.3", null, "79.6", null, "1.3", null, "33.1", null, "1.5", null, "30.2", null, "1.4", null, "25.8", null, "1.3", null, "12.8", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12", "23"], ["5001900US1224", "Congressional District 24 (119th Congress), Florida", "830040", null, "23101", null, "43983", null, "4483", null, "50064", null, "6028", null, "47028", null, "4996", null, "49035", null, "4297", null, "48592", null, "3728", null, "58131", null, "4496", null, "63136", null, "4390", null, "62718", null, "5090", null, "58683", null, "4957", null, "57983", null, "4963", null, "52943", null, "4633", null, "50887", null, "4681", null, "48268", null, "4397", null, "40616", null, "3583", null, "37008", null, "3372", null, "26364", null, "2564", null, "18222", null, "3188", null, "16379", null, "2136", null, "97092", null, "6392", null, "32327", null, "3628", null, "173402", null, "10549", null, "65300", null, "4328", null, "340295", null, "13545", null, "676456", null, "18638", null, "656638", null, "17584", null, "630831", null, "17033", null, "186857", null, "7074", null, "166249", null, "6744", null, "138589", null, "6010", null, "60965", null, "4624", null, "39.4", null, "0.8", null, "94.7", null, "3.0", null, "60.2", null, "2.4", null, "26.8", null, "1.4", null, "33.5", null, "1.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.3", null, "0.5", null, "6.0", null, "0.7", null, "5.7", null, "0.6", null, "5.9", null, "0.5", null, "5.9", null, "0.4", null, "7.0", null, "0.5", null, "7.6", null, "0.5", null, "7.6", null, "0.6", null, "7.1", null, "0.6", null, "7.0", null, "0.6", null, "6.4", null, "0.5", null, "6.1", null, "0.6", null, "5.8", null, "0.5", null, "4.9", null, "0.4", null, "4.5", null, "0.4", null, "3.2", null, "0.3", null, "2.2", null, "0.4", null, "2.0", null, "0.3", null, "11.7", null, "0.6", null, "3.9", null, "0.4", null, "20.9", null, "1.0", null, "7.9", null, "0.5", null, "41.0", null, "1.0", null, "81.5", null, "0.9", null, "79.1", null, "1.0", null, "76.0", null, "1.0", null, "22.5", null, "0.9", null, "20.0", null, "0.9", null, "16.7", null, "0.8", null, "7.3", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "2.8", null, "-888888888.0", "(X)", "403832", null, "14079", null, "23312", null, "2833", null, "26715", null, "3589", null, "23280", null, "3065", null, "23983", null, "2826", null, "23311", null, "2517", null, "30548", null, "3619", null, "31101", null, "2868", null, "33327", null, "3445", null, "27564", null, "3579", null, "28684", null, "3035", null, "24845", null, "3155", null, "23371", null, "3283", null, "23747", null, "2788", null, "17963", null, "2187", null, "16531", null, "2148", null, "12647", null, "1631", null, "6098", null, "1408", null, "6805", null, "1335", null, "49995", null, "4484", null, "15516", null, "2533", null, "88823", null, "7205", null, "31778", null, "3150", null, "169834", null, "8712", null, "325604", null, "10786", null, "315009", null, "10297", null, "302979", null, "10170", null, "83791", null, "4379", null, "73272", null, "3960", null, "60044", null, "3504", null, "25550", null, "2363", null, "37.8", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.8", null, "0.6", null, "6.6", null, "0.8", null, "5.8", null, "0.7", null, "5.9", null, "0.6", null, "5.8", null, "0.6", null, "7.6", null, "0.8", null, "7.7", null, "0.7", null, "8.3", null, "0.8", null, "6.8", null, "0.8", null, "7.1", null, "0.7", null, "6.2", null, "0.8", null, "5.8", null, "0.8", null, "5.9", null, "0.7", null, "4.4", null, "0.5", null, "4.1", null, "0.6", null, "3.1", null, "0.4", null, "1.5", null, "0.4", null, "1.7", null, "0.3", null, "12.4", null, "0.9", null, "3.8", null, "0.6", null, "22.0", null, "1.3", null, "7.9", null, "0.8", null, "42.1", null, "1.4", null, "80.6", null, "1.2", null, "78.0", null, "1.3", null, "75.0", null, "1.3", null, "20.7", null, "1.1", null, "18.1", null, "1.0", null, "14.9", null, "0.9", null, "6.3", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "426208", null, "12269", null, "20671", null, "3021", null, "23349", null, "3567", null, "23748", null, "3106", null, "25052", null, "2757", null, "25281", null, "2831", null, "27583", null, "2919", null, "32035", null, "2875", null, "29391", null, "3192", null, "31119", null, "3138", null, "29299", null, "3139", null, "28098", null, "2983", null, "27516", null, "2567", null, "24521", null, "2961", null, "22653", null, "2314", null, "20477", null, "2708", null, "13717", null, "1961", null, "12124", null, "2209", null, "9574", null, "1521", null, "47097", null, "3767", null, "16811", null, "2361", null, "84579", null, "5553", null, "33522", null, "2797", null, "170461", null, "7764", null, "350852", null, "11072", null, "341629", null, "10471", null, "327852", null, "10264", null, "103066", null, "4779", null, "92977", null, "4531", null, "78545", null, "3996", null, "35415", null, "3051", null, "41.0", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.8", null, "0.7", null, "5.5", null, "0.8", null, "5.6", null, "0.7", null, "5.9", null, "0.6", null, "5.9", null, "0.6", null, "6.5", null, "0.6", null, "7.5", null, "0.6", null, "6.9", null, "0.7", null, "7.3", null, "0.7", null, "6.9", null, "0.7", null, "6.6", null, "0.7", null, "6.5", null, "0.6", null, "5.8", null, "0.7", null, "5.3", null, "0.5", null, "4.8", null, "0.7", null, "3.2", null, "0.5", null, "2.8", null, "0.5", null, "2.2", null, "0.3", null, "11.1", null, "0.8", null, "3.9", null, "0.5", null, "19.8", null, "1.1", null, "7.9", null, "0.6", null, "40.0", null, "1.3", null, "82.3", null, "1.1", null, "80.2", null, "1.1", null, "76.9", null, "1.2", null, "24.2", null, "1.1", null, "21.8", null, "1.0", null, "18.4", null, "0.9", null, "8.3", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12", "24"], ["5001900US1225", "Congressional District 25 (119th Congress), Florida", "807029", null, "11531", null, "41726", null, "4564", null, "50234", null, "4481", null, "52286", null, "4734", null, "49052", null, "3783", null, "39608", null, "4051", null, "46498", null, "3801", null, "59332", null, "3922", null, "58565", null, "4884", null, "57640", null, "4980", null, "54683", null, "4086", null, "54467", null, "4200", null, "50105", null, "4058", null, "54021", null, "4543", null, "43112", null, "4136", null, "34378", null, "3397", null, "26220", null, "2831", null, "18251", null, "2189", null, "16851", null, "2722", null, "102520", null, "6005", null, "31435", null, "2985", null, "175681", null, "8925", null, "57225", null, "4405", null, "310695", null, "9051", null, "652303", null, "11309", null, "631348", null, "10816", null, "607373", null, "11087", null, "192833", null, "7852", null, "167901", null, "7509", null, "138812", null, "6351", null, "61322", null, "3882", null, "40.7", null, "1.1", null, "98.2", null, "3.5", null, "63.9", null, "2.6", null, "28.2", null, "1.6", null, "35.7", null, "2.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.5", null, "6.2", null, "0.5", null, "6.5", null, "0.6", null, "6.1", null, "0.4", null, "4.9", null, "0.5", null, "5.8", null, "0.5", null, "7.4", null, "0.5", null, "7.3", null, "0.6", null, "7.1", null, "0.6", null, "6.8", null, "0.5", null, "6.7", null, "0.5", null, "6.2", null, "0.5", null, "6.7", null, "0.6", null, "5.3", null, "0.5", null, "4.3", null, "0.4", null, "3.2", null, "0.4", null, "2.3", null, "0.3", null, "2.1", null, "0.3", null, "12.7", null, "0.7", null, "3.9", null, "0.4", null, "21.8", null, "1.0", null, "7.1", null, "0.5", null, "38.5", null, "0.8", null, "80.8", null, "1.0", null, "78.2", null, "1.0", null, "75.3", null, "1.1", null, "23.9", null, "1.0", null, "20.8", null, "1.0", null, "17.2", null, "0.8", null, "7.6", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "2.1", null, "-888888888.0", "(X)", "399869", null, "10048", null, "20459", null, "2896", null, "26426", null, "3034", null, "25844", null, "3045", null, "26534", null, "3179", null, "20352", null, "2663", null, "25964", null, "2745", null, "28226", null, "2768", null, "30010", null, "3156", null, "27230", null, "3400", null, "27516", null, "2688", null, "27006", null, "2555", null, "24905", null, "2955", null, "25888", null, "2969", null, "19489", null, "2541", null, "16807", null, "2486", null, "12516", null, "1875", null, "8061", null, "1437", null, "6636", null, "1627", null, "52270", null, "4251", null, "16976", null, "2207", null, "89705", null, "5999", null, "29910", null, "3236", null, "158316", null, "6916", null, "322397", null, "8713", null, "310164", null, "8230", null, "296682", null, "7935", null, "89397", null, "4604", null, "77160", null, "4171", null, "63509", null, "3440", null, "27213", null, "2105", null, "39.4", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.1", null, "0.7", null, "6.6", null, "0.7", null, "6.5", null, "0.7", null, "6.6", null, "0.7", null, "5.1", null, "0.7", null, "6.5", null, "0.7", null, "7.1", null, "0.6", null, "7.5", null, "0.8", null, "6.8", null, "0.8", null, "6.9", null, "0.6", null, "6.8", null, "0.6", null, "6.2", null, "0.7", null, "6.5", null, "0.8", null, "4.9", null, "0.7", null, "4.2", null, "0.6", null, "3.1", null, "0.5", null, "2.0", null, "0.4", null, "1.7", null, "0.4", null, "13.1", null, "1.0", null, "4.2", null, "0.5", null, "22.4", null, "1.3", null, "7.5", null, "0.8", null, "39.6", null, "1.2", null, "80.6", null, "1.2", null, "77.6", null, "1.3", null, "74.2", null, "1.3", null, "22.4", null, "1.2", null, "19.3", null, "1.1", null, "15.9", null, "0.9", null, "6.8", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "407160", null, "8112", null, "21267", null, "2774", null, "23808", null, "3375", null, "26442", null, "3398", null, "22518", null, "2182", null, "19256", null, "2774", null, "20534", null, "2159", null, "31106", null, "2525", null, "28555", null, "2880", null, "30410", null, "3223", null, "27167", null, "2949", null, "27461", null, "2607", null, "25200", null, "2890", null, "28133", null, "3077", null, "23623", null, "2557", null, "17571", null, "2161", null, "13704", null, "1864", null, "10190", null, "1878", null, "10215", null, "1985", null, "50250", null, "4463", null, "14459", null, "1965", null, "85976", null, "5797", null, "27315", null, "2801", null, "152379", null, "5583", null, "329906", null, "7500", null, "321184", null, "7300", null, "310691", null, "7456", null, "103436", null, "4915", null, "90741", null, "4581", null, "75303", null, "3994", null, "34109", null, "2838", null, "41.6", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.7", null, "5.8", null, "0.8", null, "6.5", null, "0.8", null, "5.5", null, "0.5", null, "4.7", null, "0.7", null, "5.0", null, "0.5", null, "7.6", null, "0.6", null, "7.0", null, "0.7", null, "7.5", null, "0.8", null, "6.7", null, "0.7", null, "6.7", null, "0.7", null, "6.2", null, "0.7", null, "6.9", null, "0.7", null, "5.8", null, "0.6", null, "4.3", null, "0.5", null, "3.4", null, "0.5", null, "2.5", null, "0.5", null, "2.5", null, "0.5", null, "12.3", null, "1.0", null, "3.6", null, "0.5", null, "21.1", null, "1.3", null, "6.7", null, "0.7", null, "37.4", null, "1.1", null, "81.0", null, "1.3", null, "78.9", null, "1.3", null, "76.3", null, "1.3", null, "25.4", null, "1.2", null, "22.3", null, "1.1", null, "18.5", null, "1.0", null, "8.4", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12", "25"], ["5001900US1226", "Congressional District 26 (119th Congress), Florida", "851047", null, "14449", null, "39801", null, "3643", null, "41771", null, "3859", null, "48952", null, "4123", null, "47174", null, "4195", null, "49520", null, "3548", null, "47268", null, "4241", null, "58058", null, "3184", null, "58467", null, "4663", null, "59191", null, "5470", null, "48857", null, "3732", null, "55803", null, "4154", null, "60539", null, "4745", null, "62766", null, "4517", null, "48025", null, "3386", null, "41194", null, "3734", null, "35207", null, "3669", null, "25930", null, "2763", null, "22524", null, "2623", null, "90723", null, "5310", null, "28954", null, "3237", null, "159478", null, "7243", null, "67740", null, "4218", null, "319678", null, "10817", null, "712452", null, "11736", null, "691569", null, "11133", null, "663552", null, "11080", null, "235646", null, "8491", null, "209422", null, "7640", null, "172880", null, "7175", null, "83661", null, "4290", null, "42.7", null, "0.9", null, "100.1", null, "2.8", null, "64.1", null, "2.2", null, "33.3", null, "1.8", null, "30.7", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.7", null, "0.4", null, "4.9", null, "0.4", null, "5.8", null, "0.5", null, "5.5", null, "0.5", null, "5.8", null, "0.4", null, "5.6", null, "0.5", null, "6.8", null, "0.4", null, "6.9", null, "0.5", null, "7.0", null, "0.6", null, "5.7", null, "0.4", null, "6.6", null, "0.5", null, "7.1", null, "0.5", null, "7.4", null, "0.5", null, "5.6", null, "0.4", null, "4.8", null, "0.4", null, "4.1", null, "0.4", null, "3.0", null, "0.3", null, "2.6", null, "0.3", null, "10.7", null, "0.6", null, "3.4", null, "0.4", null, "18.7", null, "0.7", null, "8.0", null, "0.5", null, "37.6", null, "0.9", null, "83.7", null, "0.6", null, "81.3", null, "0.7", null, "78.0", null, "0.8", null, "27.7", null, "1.1", null, "24.6", null, "1.0", null, "20.3", null, "0.9", null, "9.8", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.1", null, "-888888888.0", "(X)", "425810", null, "9340", null, "20481", null, "2821", null, "20847", null, "2668", null, "24816", null, "2515", null, "26667", null, "3100", null, "26657", null, "2406", null, "22557", null, "2257", null, "29763", null, "2260", null, "32678", null, "3448", null, "31962", null, "3684", null, "25775", null, "2551", null, "28717", null, "2919", null, "29907", null, "3029", null, "28454", null, "2792", null, "21802", null, "2442", null, "18858", null, "2281", null, "16522", null, "2204", null, "11400", null, "1793", null, "7947", null, "1494", null, "45663", null, "3298", null, "16177", null, "2380", null, "82321", null, "5146", null, "37147", null, "2752", null, "170284", null, "6597", null, "354805", null, "7289", null, "343489", null, "6984", null, "327119", null, "7483", null, "104983", null, "5075", null, "91892", null, "4168", null, "76529", null, "3884", null, "35869", null, "2648", null, "41.1", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.8", null, "0.6", null, "4.9", null, "0.6", null, "5.8", null, "0.6", null, "6.3", null, "0.7", null, "6.3", null, "0.5", null, "5.3", null, "0.5", null, "7.0", null, "0.5", null, "7.7", null, "0.8", null, "7.5", null, "0.8", null, "6.1", null, "0.6", null, "6.7", null, "0.7", null, "7.0", null, "0.7", null, "6.7", null, "0.7", null, "5.1", null, "0.6", null, "4.4", null, "0.5", null, "3.9", null, "0.5", null, "2.7", null, "0.4", null, "1.9", null, "0.4", null, "10.7", null, "0.7", null, "3.8", null, "0.5", null, "19.3", null, "1.0", null, "8.7", null, "0.6", null, "40.0", null, "1.2", null, "83.3", null, "0.9", null, "80.7", null, "1.0", null, "76.8", null, "1.1", null, "24.7", null, "1.2", null, "21.6", null, "1.0", null, "18.0", null, "0.9", null, "8.4", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "425237", null, "9357", null, "19320", null, "2346", null, "20924", null, "2773", null, "24136", null, "2953", null, "20507", null, "2215", null, "22863", null, "2280", null, "24711", null, "2939", null, "28295", null, "2531", null, "25789", null, "3081", null, "27229", null, "2836", null, "23082", null, "2227", null, "27086", null, "2458", null, "30632", null, "3104", null, "34312", null, "3133", null, "26223", null, "2288", null, "22336", null, "2565", null, "18685", null, "2379", null, "14530", null, "2115", null, "14577", null, "1930", null, "45060", null, "3901", null, "12777", null, "1775", null, "77157", null, "4921", null, "30593", null, "2582", null, "149394", null, "6207", null, "357647", null, "7508", null, "348080", null, "6928", null, "336433", null, "6645", null, "130663", null, "5111", null, "117530", null, "4885", null, "96351", null, "4723", null, "47792", null, "2926", null, "44.7", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.5", null, "0.5", null, "4.9", null, "0.6", null, "5.7", null, "0.7", null, "4.8", null, "0.5", null, "5.4", null, "0.5", null, "5.8", null, "0.7", null, "6.7", null, "0.6", null, "6.1", null, "0.7", null, "6.4", null, "0.7", null, "5.4", null, "0.5", null, "6.4", null, "0.6", null, "7.2", null, "0.7", null, "8.1", null, "0.7", null, "6.2", null, "0.5", null, "5.3", null, "0.6", null, "4.4", null, "0.6", null, "3.4", null, "0.5", null, "3.4", null, "0.5", null, "10.6", null, "0.8", null, "3.0", null, "0.4", null, "18.1", null, "0.9", null, "7.2", null, "0.6", null, "35.1", null, "1.1", null, "84.1", null, "0.9", null, "81.9", null, "0.9", null, "79.1", null, "1.0", null, "30.7", null, "1.3", null, "27.6", null, "1.2", null, "22.7", null, "1.2", null, "11.2", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12", "26"], ["5001900US1227", "Congressional District 27 (119th Congress), Florida", "788713", null, "15104", null, "42835", null, "3899", null, "32999", null, "3473", null, "42645", null, "4828", null, "41669", null, "3439", null, "48790", null, "4117", null, "53306", null, "4050", null, "55443", null, "4138", null, "57938", null, "4947", null, "47592", null, "4091", null, "50153", null, "3867", null, "59475", null, "4823", null, "53744", null, "4605", null, "52771", null, "3866", null, "42132", null, "3351", null, "39677", null, "3492", null, "26069", null, "2639", null, "19914", null, "2422", null, "21561", null, "2275", null, "75644", null, "5263", null, "23231", null, "2430", null, "141710", null, "6114", null, "67228", null, "4540", null, "304738", null, "9216", null, "663526", null, "13702", null, "647003", null, "13556", null, "619504", null, "13481", null, "202124", null, "6208", null, "180806", null, "6059", null, "149353", null, "5091", null, "67544", null, "3637", null, "41.9", null, "0.8", null, "94.6", null, "3.0", null, "58.5", null, "2.1", null, "30.0", null, "1.3", null, "28.5", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.5", null, "4.2", null, "0.4", null, "5.4", null, "0.6", null, "5.3", null, "0.4", null, "6.2", null, "0.5", null, "6.8", null, "0.5", null, "7.0", null, "0.5", null, "7.3", null, "0.6", null, "6.0", null, "0.5", null, "6.4", null, "0.5", null, "7.5", null, "0.6", null, "6.8", null, "0.6", null, "6.7", null, "0.5", null, "5.3", null, "0.4", null, "5.0", null, "0.4", null, "3.3", null, "0.3", null, "2.5", null, "0.3", null, "2.7", null, "0.3", null, "9.6", null, "0.6", null, "2.9", null, "0.3", null, "18.0", null, "0.7", null, "8.5", null, "0.5", null, "38.6", null, "0.9", null, "84.1", null, "0.7", null, "82.0", null, "0.7", null, "78.5", null, "0.8", null, "25.6", null, "0.8", null, "22.9", null, "0.8", null, "18.9", null, "0.7", null, "8.6", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "2.3", null, "-888888888.0", "(X)", "383462", null, "8824", null, "20284", null, "2560", null, "16807", null, "2689", null, "21770", null, "3432", null, "19703", null, "2497", null, "25673", null, "3069", null, "26050", null, "2466", null, "27969", null, "2409", null, "29432", null, "3263", null, "24283", null, "3163", null, "24843", null, "2435", null, "30838", null, "2880", null, "25386", null, "3152", null, "27907", null, "2614", null, "18499", null, "2125", null, "19819", null, "2437", null, "9915", null, "1468", null, "7378", null, "1221", null, "6906", null, "1387", null, "38577", null, "4001", null, "11166", null, "1988", null, "70027", null, "5097", null, "34210", null, "3308", null, "153110", null, "5941", null, "321102", null, "7326", null, "313435", null, "7266", null, "300886", null, "6865", null, "90424", null, "3415", null, "79359", null, "3187", null, "62517", null, "2748", null, "24199", null, "2109", null, "40.8", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.3", null, "0.6", null, "4.4", null, "0.7", null, "5.7", null, "0.9", null, "5.1", null, "0.6", null, "6.7", null, "0.8", null, "6.8", null, "0.6", null, "7.3", null, "0.7", null, "7.7", null, "0.8", null, "6.3", null, "0.8", null, "6.5", null, "0.6", null, "8.0", null, "0.7", null, "6.6", null, "0.8", null, "7.3", null, "0.7", null, "4.8", null, "0.6", null, "5.2", null, "0.6", null, "2.6", null, "0.4", null, "1.9", null, "0.3", null, "1.8", null, "0.4", null, "10.1", null, "1.0", null, "2.9", null, "0.5", null, "18.3", null, "1.1", null, "8.9", null, "0.8", null, "39.9", null, "1.2", null, "83.7", null, "1.0", null, "81.7", null, "1.1", null, "78.5", null, "1.2", null, "23.6", null, "1.0", null, "20.7", null, "0.9", null, "16.3", null, "0.8", null, "6.3", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "405251", null, "10663", null, "22551", null, "2916", null, "16192", null, "2070", null, "20875", null, "2773", null, "21966", null, "2461", null, "23117", null, "2902", null, "27256", null, "2843", null, "27474", null, "2764", null, "28506", null, "3313", null, "23309", null, "2909", null, "25310", null, "2539", null, "28637", null, "2927", null, "28358", null, "2607", null, "24864", null, "2445", null, "23633", null, "2364", null, "19858", null, "2114", null, "16154", null, "2123", null, "12536", null, "2118", null, "14655", null, "2133", null, "37067", null, "3161", null, "12065", null, "1884", null, "71683", null, "4059", null, "33018", null, "3229", null, "151628", null, "6406", null, "342424", null, "9538", null, "333568", null, "9329", null, "318618", null, "9528", null, "111700", null, "4826", null, "101447", null, "4979", null, "86836", null, "4129", null, "43345", null, "2843", null, "43.3", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.6", null, "0.7", null, "4.0", null, "0.5", null, "5.2", null, "0.6", null, "5.4", null, "0.6", null, "5.7", null, "0.7", null, "6.7", null, "0.6", null, "6.8", null, "0.7", null, "7.0", null, "0.8", null, "5.8", null, "0.7", null, "6.2", null, "0.6", null, "7.1", null, "0.7", null, "7.0", null, "0.6", null, "6.1", null, "0.6", null, "5.8", null, "0.5", null, "4.9", null, "0.5", null, "4.0", null, "0.5", null, "3.1", null, "0.5", null, "3.6", null, "0.5", null, "9.1", null, "0.7", null, "3.0", null, "0.5", null, "17.7", null, "0.9", null, "8.1", null, "0.8", null, "37.4", null, "1.1", null, "84.5", null, "0.8", null, "82.3", null, "0.9", null, "78.6", null, "1.0", null, "27.6", null, "1.1", null, "25.0", null, "1.1", null, "21.4", null, "0.9", null, "10.7", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12", "27"], ["5001900US1228", "Congressional District 28 (119th Congress), Florida", "791591", null, "18636", null, "44896", null, "5026", null, "43991", null, "4956", null, "44406", null, "4181", null, "55617", null, "3974", null, "49365", null, "4305", null, "42571", null, "3681", null, "50072", null, "3631", null, "53899", null, "4627", null, "54546", null, "4734", null, "57152", null, "4199", null, "61156", null, "4666", null, "53504", null, "4585", null, "47516", null, "3902", null, "41835", null, "3463", null, "32759", null, "3305", null, "26560", null, "2566", null, "17357", null, "2581", null, "14389", null, "2051", null, "88397", null, "6459", null, "32508", null, "2916", null, "165801", null, "8680", null, "72474", null, "5187", null, "306070", null, "9622", null, "647838", null, "15351", null, "625790", null, "14889", null, "593182", null, "14426", null, "180416", null, "8056", null, "159666", null, "7330", null, "132900", null, "6461", null, "58306", null, "3838", null, "41.0", null, "0.8", null, "97.2", null, "2.9", null, "60.6", null, "2.5", null, "27.0", null, "1.5", null, "33.6", null, "1.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.7", null, "0.6", null, "5.6", null, "0.6", null, "5.6", null, "0.5", null, "7.0", null, "0.5", null, "6.2", null, "0.5", null, "5.4", null, "0.5", null, "6.3", null, "0.5", null, "6.8", null, "0.5", null, "6.9", null, "0.6", null, "7.2", null, "0.5", null, "7.7", null, "0.6", null, "6.8", null, "0.6", null, "6.0", null, "0.5", null, "5.3", null, "0.4", null, "4.1", null, "0.4", null, "3.4", null, "0.3", null, "2.2", null, "0.3", null, "1.8", null, "0.3", null, "11.2", null, "0.7", null, "4.1", null, "0.3", null, "20.9", null, "0.9", null, "9.2", null, "0.6", null, "38.7", null, "0.9", null, "81.8", null, "0.8", null, "79.1", null, "0.9", null, "74.9", null, "0.8", null, "22.8", null, "0.9", null, "20.2", null, "0.8", null, "16.8", null, "0.8", null, "7.4", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "3.0", null, "-888888888.0", "(X)", "390200", null, "11511", null, "23628", null, "3258", null, "22540", null, "3177", null, "23447", null, "2983", null, "28496", null, "3179", null, "23839", null, "2989", null, "21741", null, "2811", null, "26567", null, "2337", null, "25659", null, "3091", null, "28084", null, "3013", null, "27845", null, "2738", null, "30509", null, "3256", null, "26127", null, "2992", null, "23045", null, "2358", null, "19515", null, "2096", null, "13633", null, "2032", null, "12410", null, "1966", null, "7851", null, "1357", null, "5264", null, "1154", null, "45987", null, "4593", null, "16710", null, "2448", null, "86325", null, "6062", null, "35625", null, "3584", null, "154386", null, "7179", null, "316726", null, "9932", null, "303875", null, "9197", null, "287238", null, "8707", null, "81718", null, "4422", null, "71305", null, "4109", null, "58673", null, "3537", null, "25525", null, "2443", null, "39.9", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.1", null, "0.8", null, "5.8", null, "0.8", null, "6.0", null, "0.7", null, "7.3", null, "0.7", null, "6.1", null, "0.7", null, "5.6", null, "0.7", null, "6.8", null, "0.6", null, "6.6", null, "0.8", null, "7.2", null, "0.7", null, "7.1", null, "0.7", null, "7.8", null, "0.8", null, "6.7", null, "0.8", null, "5.9", null, "0.6", null, "5.0", null, "0.6", null, "3.5", null, "0.5", null, "3.2", null, "0.5", null, "2.0", null, "0.3", null, "1.3", null, "0.3", null, "11.8", null, "1.1", null, "4.3", null, "0.6", null, "22.1", null, "1.3", null, "9.1", null, "0.8", null, "39.6", null, "1.3", null, "81.2", null, "1.2", null, "77.9", null, "1.3", null, "73.6", null, "1.4", null, "20.9", null, "1.1", null, "18.3", null, "1.1", null, "15.0", null, "0.9", null, "6.5", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "401391", null, "10507", null, "21268", null, "3341", null, "21451", null, "3455", null, "20959", null, "2642", null, "27121", null, "2808", null, "25526", null, "3257", null, "20830", null, "2218", null, "23505", null, "2446", null, "28240", null, "3087", null, "26462", null, "2910", null, "29307", null, "2957", null, "30647", null, "2799", null, "27377", null, "2793", null, "24471", null, "2625", null, "22320", null, "2379", null, "19126", null, "2503", null, "14150", null, "1737", null, "9506", null, "1870", null, "9125", null, "1561", null, "42410", null, "4052", null, "15798", null, "2115", null, "79476", null, "5853", null, "36849", null, "3606", null, "151684", null, "5816", null, "331112", null, "8003", null, "321915", null, "7866", null, "305944", null, "7854", null, "98698", null, "5114", null, "88361", null, "4534", null, "74227", null, "4143", null, "32781", null, "2417", null, "42.0", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.3", null, "0.8", null, "5.3", null, "0.8", null, "5.2", null, "0.7", null, "6.8", null, "0.7", null, "6.4", null, "0.8", null, "5.2", null, "0.6", null, "5.9", null, "0.6", null, "7.0", null, "0.7", null, "6.6", null, "0.7", null, "7.3", null, "0.7", null, "7.6", null, "0.7", null, "6.8", null, "0.7", null, "6.1", null, "0.6", null, "5.6", null, "0.6", null, "4.8", null, "0.6", null, "3.5", null, "0.4", null, "2.4", null, "0.5", null, "2.3", null, "0.4", null, "10.6", null, "0.9", null, "3.9", null, "0.5", null, "19.8", null, "1.2", null, "9.2", null, "0.9", null, "37.8", null, "1.2", null, "82.5", null, "1.2", null, "80.2", null, "1.2", null, "76.2", null, "1.2", null, "24.6", null, "1.1", null, "22.0", null, "1.0", null, "18.5", null, "0.9", null, "8.2", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12", "28"], ["5001900US1301", "Congressional District 1 (119th Congress), Georgia", "806580", null, "4392", null, "48066", null, "2320", null, "47816", null, "3766", null, "53609", null, "4321", null, "54261", null, "3232", null, "53986", null, "3229", null, "57621", null, "2833", null, "57683", null, "3041", null, "54887", null, "3929", null, "55947", null, "5111", null, "44262", null, "2884", null, "49044", null, "2810", null, "46713", null, "2834", null, "46178", null, "2878", null, "42307", null, "2705", null, "38488", null, "2897", null, "27690", null, "2068", null, "16268", null, "2057", null, "11754", null, "1846", null, "101425", null, "2940", null, "31923", null, "1954", null, "181414", null, "2278", null, "76324", null, "3118", null, "334385", null, "4251", null, "648139", null, "3762", null, "625166", null, "3047", null, "593415", null, "3996", null, "182685", null, "3110", null, "162840", null, "2724", null, "136507", null, "1980", null, "55712", null, "1604", null, "37.6", null, "0.5", null, "96.7", null, "1.5", null, "65.1", null, "0.7", null, "27.9", null, "0.5", null, "37.1", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.0", null, "0.3", null, "5.9", null, "0.5", null, "6.6", null, "0.5", null, "6.7", null, "0.4", null, "6.7", null, "0.4", null, "7.1", null, "0.4", null, "7.2", null, "0.4", null, "6.8", null, "0.5", null, "6.9", null, "0.6", null, "5.5", null, "0.4", null, "6.1", null, "0.3", null, "5.8", null, "0.3", null, "5.7", null, "0.4", null, "5.2", null, "0.3", null, "4.8", null, "0.4", null, "3.4", null, "0.3", null, "2.0", null, "0.3", null, "1.5", null, "0.2", null, "12.6", null, "0.3", null, "4.0", null, "0.2", null, "22.5", null, "0.2", null, "9.5", null, "0.4", null, "41.5", null, "0.5", null, "80.4", null, "0.3", null, "77.5", null, "0.2", null, "73.6", null, "0.4", null, "22.6", null, "0.4", null, "20.2", null, "0.4", null, "16.9", null, "0.2", null, "6.9", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.0", null, "-888888888.0", "(X)", "396464", null, "3725", null, "23605", null, "2109", null, "26257", null, "2222", null, "25743", null, "2690", null, "29300", null, "2719", null, "28922", null, "2285", null, "28879", null, "2208", null, "30751", null, "2283", null, "26879", null, "2353", null, "27806", null, "3292", null, "20034", null, "1648", null, "22625", null, "1354", null, "22780", null, "2109", null, "22195", null, "1971", null, "20287", null, "1495", null, "17049", null, "1747", null, "13046", null, "1288", null, "5817", null, "1149", null, "4489", null, "997", null, "52000", null, "2326", null, "16645", null, "1719", null, "92250", null, "2849", null, "41577", null, "2284", null, "172537", null, "2425", null, "316954", null, "2670", null, "304214", null, "2359", null, "287735", null, "2995", null, "82883", null, "2216", null, "73062", null, "1893", null, "60688", null, "1435", null, "23352", null, "944", null, "35.8", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.0", null, "0.5", null, "6.6", null, "0.6", null, "6.5", null, "0.7", null, "7.4", null, "0.7", null, "7.3", null, "0.6", null, "7.3", null, "0.6", null, "7.8", null, "0.6", null, "6.8", null, "0.6", null, "7.0", null, "0.8", null, "5.1", null, "0.4", null, "5.7", null, "0.3", null, "5.7", null, "0.5", null, "5.6", null, "0.5", null, "5.1", null, "0.4", null, "4.3", null, "0.4", null, "3.3", null, "0.3", null, "1.5", null, "0.3", null, "1.1", null, "0.3", null, "13.1", null, "0.5", null, "4.2", null, "0.4", null, "23.3", null, "0.6", null, "10.5", null, "0.6", null, "43.5", null, "0.7", null, "79.9", null, "0.6", null, "76.7", null, "0.6", null, "72.6", null, "0.7", null, "20.9", null, "0.6", null, "18.4", null, "0.5", null, "15.3", null, "0.4", null, "5.9", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "410116", null, "4082", null, "24461", null, "2118", null, "21559", null, "2692", null, "27866", null, "3060", null, "24961", null, "2544", null, "25064", null, "2064", null, "28742", null, "1720", null, "26932", null, "1781", null, "28008", null, "2578", null, "28141", null, "3124", null, "24228", null, "2159", null, "26419", null, "2254", null, "23933", null, "1932", null, "23983", null, "1985", null, "22020", null, "1858", null, "21439", null, "1673", null, "14644", null, "1627", null, "10451", null, "1591", null, "7265", null, "1296", null, "49425", null, "2434", null, "15278", null, "1687", null, "89164", null, "3040", null, "34747", null, "2060", null, "161848", null, "3650", null, "331185", null, "2952", null, "320952", null, "2179", null, "305680", null, "2688", null, "99802", null, "2212", null, "89778", null, "2251", null, "75819", null, "1318", null, "32360", null, "1154", null, "39.5", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.0", null, "0.5", null, "5.3", null, "0.6", null, "6.8", null, "0.7", null, "6.1", null, "0.6", null, "6.1", null, "0.5", null, "7.0", null, "0.4", null, "6.6", null, "0.4", null, "6.8", null, "0.6", null, "6.9", null, "0.8", null, "5.9", null, "0.5", null, "6.4", null, "0.6", null, "5.8", null, "0.5", null, "5.8", null, "0.5", null, "5.4", null, "0.5", null, "5.2", null, "0.4", null, "3.6", null, "0.4", null, "2.5", null, "0.4", null, "1.8", null, "0.3", null, "12.1", null, "0.5", null, "3.7", null, "0.4", null, "21.7", null, "0.6", null, "8.5", null, "0.5", null, "39.5", null, "0.8", null, "80.8", null, "0.6", null, "78.3", null, "0.6", null, "74.5", null, "0.7", null, "24.3", null, "0.6", null, "21.9", null, "0.6", null, "18.5", null, "0.4", null, "7.9", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13", "01"], ["5001900US1302", "Congressional District 2 (119th Congress), Georgia", "757227", null, "10328", null, "41382", null, "3127", null, "48504", null, "5142", null, "49508", null, "3975", null, "53054", null, "3693", null, "52599", null, "3637", null, "47222", null, "3554", null, "51861", null, "3072", null, "50744", null, "4156", null, "50483", null, "4103", null, "41799", null, "2918", null, "43079", null, "3051", null, "43291", null, "2719", null, "47380", null, "2609", null, "43734", null, "2778", null, "35732", null, "2396", null, "29128", null, "2287", null, "15624", null, "1533", null, "12103", null, "1623", null, "98012", null, "4552", null, "32567", null, "2192", null, "171961", null, "5649", null, "73086", null, "3486", null, "305963", null, "7101", null, "607076", null, "7589", null, "585266", null, "6873", null, "554411", null, "6748", null, "183701", null, "3864", null, "164872", null, "4367", null, "136321", null, "3230", null, "56855", null, "2453", null, "38.2", null, "0.7", null, "94.7", null, "1.7", null, "68.7", null, "1.4", null, "30.4", null, "1.0", null, "38.3", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.4", null, "6.4", null, "0.6", null, "6.5", null, "0.5", null, "7.0", null, "0.5", null, "6.9", null, "0.5", null, "6.2", null, "0.5", null, "6.8", null, "0.4", null, "6.7", null, "0.5", null, "6.7", null, "0.5", null, "5.5", null, "0.4", null, "5.7", null, "0.4", null, "5.7", null, "0.3", null, "6.3", null, "0.3", null, "5.8", null, "0.4", null, "4.7", null, "0.3", null, "3.8", null, "0.3", null, "2.1", null, "0.2", null, "1.6", null, "0.2", null, "12.9", null, "0.5", null, "4.3", null, "0.3", null, "22.7", null, "0.5", null, "9.7", null, "0.4", null, "40.4", null, "0.7", null, "80.2", null, "0.6", null, "77.3", null, "0.5", null, "73.2", null, "0.6", null, "24.3", null, "0.6", null, "21.8", null, "0.6", null, "18.0", null, "0.5", null, "7.5", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "2.6", null, "-888888888.0", "(X)", "368230", null, "5335", null, "21846", null, "2244", null, "26712", null, "3481", null, "23768", null, "3217", null, "29717", null, "3176", null, "27333", null, "2794", null, "23517", null, "2319", null, "25565", null, "1809", null, "25708", null, "2783", null, "24307", null, "2744", null, "19837", null, "2090", null, "21150", null, "2015", null, "20112", null, "1777", null, "22417", null, "1894", null, "19826", null, "1654", null, "15081", null, "1495", null, "11767", null, "1171", null, "5425", null, "925", null, "4142", null, "976", null, "50480", null, "3170", null, "18025", null, "2174", null, "90351", null, "3575", null, "39025", null, "2361", null, "156147", null, "4720", null, "290546", null, "4439", null, "277879", null, "3810", null, "260908", null, "4077", null, "78658", null, "2429", null, "70657", null, "2393", null, "56241", null, "1726", null, "21334", null, "1406", null, "36.1", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.9", null, "0.6", null, "7.3", null, "0.9", null, "6.5", null, "0.9", null, "8.1", null, "0.8", null, "7.4", null, "0.7", null, "6.4", null, "0.6", null, "6.9", null, "0.5", null, "7.0", null, "0.8", null, "6.6", null, "0.7", null, "5.4", null, "0.6", null, "5.7", null, "0.5", null, "5.5", null, "0.5", null, "6.1", null, "0.5", null, "5.4", null, "0.5", null, "4.1", null, "0.4", null, "3.2", null, "0.3", null, "1.5", null, "0.3", null, "1.1", null, "0.3", null, "13.7", null, "0.8", null, "4.9", null, "0.6", null, "24.5", null, "0.8", null, "10.6", null, "0.6", null, "42.4", null, "1.0", null, "78.9", null, "0.8", null, "75.5", null, "0.8", null, "70.9", null, "0.9", null, "21.4", null, "0.7", null, "19.2", null, "0.7", null, "15.3", null, "0.5", null, "5.8", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "388997", null, "7050", null, "19536", null, "2235", null, "21792", null, "2909", null, "25740", null, "2740", null, "23337", null, "2767", null, "25266", null, "2194", null, "23705", null, "2202", null, "26296", null, "2256", null, "25036", null, "2610", null, "26176", null, "2734", null, "21962", null, "1809", null, "21929", null, "1992", null, "23179", null, "2019", null, "24963", null, "1852", null, "23908", null, "1832", null, "20651", null, "1548", null, "17361", null, "1703", null, "10199", null, "1323", null, "7961", null, "1133", null, "47532", null, "3078", null, "14542", null, "2135", null, "81610", null, "4092", null, "34061", null, "2427", null, "149816", null, "4580", null, "316530", null, "4986", null, "307387", null, "4492", null, "293503", null, "4295", null, "105043", null, "2718", null, "94215", null, "2883", null, "80080", null, "1997", null, "35521", null, "1631", null, "40.9", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.0", null, "0.6", null, "5.6", null, "0.7", null, "6.6", null, "0.7", null, "6.0", null, "0.7", null, "6.5", null, "0.5", null, "6.1", null, "0.6", null, "6.8", null, "0.6", null, "6.4", null, "0.7", null, "6.7", null, "0.7", null, "5.6", null, "0.5", null, "5.6", null, "0.5", null, "6.0", null, "0.5", null, "6.4", null, "0.5", null, "6.1", null, "0.5", null, "5.3", null, "0.4", null, "4.5", null, "0.5", null, "2.6", null, "0.3", null, "2.0", null, "0.3", null, "12.2", null, "0.7", null, "3.7", null, "0.5", null, "21.0", null, "0.8", null, "8.8", null, "0.6", null, "38.5", null, "0.9", null, "81.4", null, "0.8", null, "79.0", null, "0.8", null, "75.5", null, "0.9", null, "27.0", null, "0.8", null, "24.2", null, "0.8", null, "20.6", null, "0.6", null, "9.1", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13", "02"], ["5001900US1303", "Congressional District 3 (119th Congress), Georgia", "799818", null, "10778", null, "40471", null, "2622", null, "50025", null, "3488", null, "56908", null, "4107", null, "59328", null, "3393", null, "46052", null, "3570", null, "46433", null, "3409", null, "49935", null, "3517", null, "50241", null, "4142", null, "55277", null, "3958", null, "50827", null, "3256", null, "55705", null, "3549", null, "47102", null, "3171", null, "52166", null, "3256", null, "43230", null, "2948", null, "36976", null, "2611", null, "27683", null, "1740", null, "17324", null, "1767", null, "14135", null, "1749", null, "106933", null, "4221", null, "35027", null, "2105", null, "182431", null, "5067", null, "70353", null, "4176", null, "307266", null, "6356", null, "640906", null, "7892", null, "617387", null, "7629", null, "583910", null, "7466", null, "191514", null, "4765", null, "171004", null, "4444", null, "139348", null, "3163", null, "59142", null, "1998", null, "40.0", null, "0.5", null, "93.2", null, "1.8", null, "67.3", null, "1.5", null, "29.1", null, "0.9", null, "38.2", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.1", null, "0.3", null, "6.3", null, "0.4", null, "7.1", null, "0.5", null, "7.4", null, "0.4", null, "5.8", null, "0.4", null, "5.8", null, "0.4", null, "6.2", null, "0.4", null, "6.3", null, "0.5", null, "6.9", null, "0.5", null, "6.4", null, "0.4", null, "7.0", null, "0.4", null, "5.9", null, "0.4", null, "6.5", null, "0.4", null, "5.4", null, "0.4", null, "4.6", null, "0.3", null, "3.5", null, "0.2", null, "2.2", null, "0.2", null, "1.8", null, "0.2", null, "13.4", null, "0.5", null, "4.4", null, "0.2", null, "22.8", null, "0.4", null, "8.8", null, "0.5", null, "38.4", null, "0.6", null, "80.1", null, "0.5", null, "77.2", null, "0.4", null, "73.0", null, "0.6", null, "23.9", null, "0.6", null, "21.4", null, "0.6", null, "17.4", null, "0.4", null, "7.4", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "2.3", null, "-888888888.0", "(X)", "385890", null, "6631", null, "19444", null, "1700", null, "26829", null, "2521", null, "29494", null, "3088", null, "28705", null, "2969", null, "24189", null, "2445", null, "23063", null, "2306", null, "22093", null, "2212", null, "23299", null, "2683", null, "29515", null, "2939", null, "23220", null, "2471", null, "26082", null, "2107", null, "23372", null, "2271", null, "25120", null, "2103", null, "20405", null, "1829", null, "15308", null, "1544", null, "12665", null, "1236", null, "7865", null, "1303", null, "5222", null, "1061", null, "56323", null, "3458", null, "16698", null, "1912", null, "92465", null, "4149", null, "36196", null, "2214", null, "150864", null, "4687", null, "304927", null, "4786", null, "293425", null, "4445", null, "276828", null, "4516", null, "86585", null, "2601", null, "76883", null, "2597", null, "61465", null, "1848", null, "25752", null, "1197", null, "39.2", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.0", null, "0.4", null, "7.0", null, "0.6", null, "7.6", null, "0.7", null, "7.4", null, "0.7", null, "6.3", null, "0.6", null, "6.0", null, "0.6", null, "5.7", null, "0.6", null, "6.0", null, "0.7", null, "7.6", null, "0.8", null, "6.0", null, "0.6", null, "6.8", null, "0.6", null, "6.1", null, "0.6", null, "6.5", null, "0.5", null, "5.3", null, "0.5", null, "4.0", null, "0.4", null, "3.3", null, "0.3", null, "2.0", null, "0.3", null, "1.4", null, "0.3", null, "14.6", null, "0.8", null, "4.3", null, "0.5", null, "24.0", null, "0.8", null, "9.4", null, "0.6", null, "39.1", null, "1.0", null, "79.0", null, "0.8", null, "76.0", null, "0.8", null, "71.7", null, "0.9", null, "22.4", null, "0.7", null, "19.9", null, "0.7", null, "15.9", null, "0.5", null, "6.7", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "413928", null, "6729", null, "21027", null, "2826", null, "23196", null, "2542", null, "27414", null, "2785", null, "30623", null, "2353", null, "21863", null, "2467", null, "23370", null, "2083", null, "27842", null, "2631", null, "26942", null, "2703", null, "25762", null, "2685", null, "27607", null, "2422", null, "29623", null, "2390", null, "23730", null, "2063", null, "27046", null, "2156", null, "22825", null, "1894", null, "21668", null, "1851", null, "15018", null, "1456", null, "9459", null, "1534", null, "8913", null, "1359", null, "50610", null, "3012", null, "18329", null, "1366", null, "89966", null, "4217", null, "34157", null, "2742", null, "156402", null, "3716", null, "335979", null, "4855", null, "323962", null, "4884", null, "307082", null, "5125", null, "104929", null, "3128", null, "94121", null, "2778", null, "77883", null, "1966", null, "33390", null, "1392", null, "41.1", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.1", null, "0.6", null, "5.6", null, "0.6", null, "6.6", null, "0.6", null, "7.4", null, "0.6", null, "5.3", null, "0.6", null, "5.6", null, "0.5", null, "6.7", null, "0.6", null, "6.5", null, "0.7", null, "6.2", null, "0.6", null, "6.7", null, "0.6", null, "7.2", null, "0.6", null, "5.7", null, "0.5", null, "6.5", null, "0.5", null, "5.5", null, "0.5", null, "5.2", null, "0.4", null, "3.6", null, "0.4", null, "2.3", null, "0.4", null, "2.2", null, "0.3", null, "12.2", null, "0.7", null, "4.4", null, "0.3", null, "21.7", null, "0.8", null, "8.3", null, "0.6", null, "37.8", null, "0.7", null, "81.2", null, "0.9", null, "78.3", null, "0.8", null, "74.2", null, "1.0", null, "25.3", null, "0.8", null, "22.7", null, "0.7", null, "18.8", null, "0.5", null, "8.1", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13", "03"], ["5001900US1304", "Congressional District 4 (119th Congress), Georgia", "759754", null, "13974", null, "47108", null, "4165", null, "48268", null, "4322", null, "48006", null, "4303", null, "45402", null, "3072", null, "50370", null, "3182", null, "54757", null, "3623", null, "64572", null, "3255", null, "58671", null, "4639", null, "50711", null, "3780", null, "46887", null, "3425", null, "46265", null, "2927", null, "38141", null, "3576", null, "50952", null, "3269", null, "37550", null, "2926", null, "29537", null, "2902", null, "20452", null, "1848", null, "12109", null, "2131", null, "9996", null, "2121", null, "96274", null, "4910", null, "29701", null, "2191", null, "173083", null, "7511", null, "66071", null, "3811", null, "324483", null, "7853", null, "606499", null, "10252", null, "586671", null, "10214", null, "563003", null, "9795", null, "160596", null, "4896", null, "138887", null, "4839", null, "109644", null, "4173", null, "42557", null, "2305", null, "36.7", null, "0.7", null, "92.1", null, "2.3", null, "59.3", null, "2.0", null, "23.0", null, "1.0", null, "36.3", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.2", null, "0.5", null, "6.4", null, "0.6", null, "6.3", null, "0.5", null, "6.0", null, "0.4", null, "6.6", null, "0.4", null, "7.2", null, "0.5", null, "8.5", null, "0.4", null, "7.7", null, "0.6", null, "6.7", null, "0.5", null, "6.2", null, "0.4", null, "6.1", null, "0.4", null, "5.0", null, "0.5", null, "6.7", null, "0.4", null, "4.9", null, "0.4", null, "3.9", null, "0.4", null, "2.7", null, "0.2", null, "1.6", null, "0.3", null, "1.3", null, "0.3", null, "12.7", null, "0.5", null, "3.9", null, "0.3", null, "22.8", null, "0.8", null, "8.7", null, "0.5", null, "42.7", null, "0.7", null, "79.8", null, "0.8", null, "77.2", null, "0.8", null, "74.1", null, "0.8", null, "21.1", null, "0.7", null, "18.3", null, "0.7", null, "14.4", null, "0.5", null, "5.6", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.2", null, "-888888888.0", "(X)", "364295", null, "7943", null, "25230", null, "2633", null, "24525", null, "3062", null, "21557", null, "2618", null, "23496", null, "2186", null, "25423", null, "2334", null, "26840", null, "2323", null, "32511", null, "1999", null, "28036", null, "2983", null, "25889", null, "2720", null, "22274", null, "1870", null, "22807", null, "1731", null, "17003", null, "1841", null, "22410", null, "2263", null, "16564", null, "1762", null, "11175", null, "1594", null, "8694", null, "1164", null, "5225", null, "1232", null, "4636", null, "1475", null, "46082", null, "3324", null, "14890", null, "1562", null, "86202", null, "4734", null, "34029", null, "2877", null, "162195", null, "4644", null, "287042", null, "5368", null, "278093", null, "5533", null, "266418", null, "5590", null, "68704", null, "2944", null, "58625", null, "2891", null, "46294", null, "2264", null, "18555", null, "1287", null, "35.3", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.9", null, "0.7", null, "6.7", null, "0.8", null, "5.9", null, "0.7", null, "6.4", null, "0.6", null, "7.0", null, "0.6", null, "7.4", null, "0.6", null, "8.9", null, "0.6", null, "7.7", null, "0.8", null, "7.1", null, "0.7", null, "6.1", null, "0.5", null, "6.3", null, "0.5", null, "4.7", null, "0.5", null, "6.2", null, "0.6", null, "4.5", null, "0.5", null, "3.1", null, "0.4", null, "2.4", null, "0.3", null, "1.4", null, "0.3", null, "1.3", null, "0.4", null, "12.6", null, "0.8", null, "4.1", null, "0.4", null, "23.7", null, "1.0", null, "9.3", null, "0.8", null, "44.5", null, "1.1", null, "78.8", null, "1.0", null, "76.3", null, "1.0", null, "73.1", null, "1.0", null, "18.9", null, "0.8", null, "16.1", null, "0.8", null, "12.7", null, "0.6", null, "5.1", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "395459", null, "9021", null, "21878", null, "2601", null, "23743", null, "3285", null, "26449", null, "3404", null, "21906", null, "2288", null, "24947", null, "2518", null, "27917", null, "2438", null, "32061", null, "2218", null, "30635", null, "3201", null, "24822", null, "2458", null, "24613", null, "2438", null, "23458", null, "1917", null, "21138", null, "2568", null, "28542", null, "2512", null, "20986", null, "2266", null, "18362", null, "2106", null, "11758", null, "1377", null, "6884", null, "1460", null, "5360", null, "1103", null, "50192", null, "3610", null, "14811", null, "1941", null, "86881", null, "5605", null, "32042", null, "2812", null, "162288", null, "5668", null, "319457", null, "6992", null, "308578", null, "6530", null, "296585", null, "6386", null, "91892", null, "3376", null, "80262", null, "3413", null, "63350", null, "2796", null, "24002", null, "1690", null, "38.0", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.6", null, "6.0", null, "0.8", null, "6.7", null, "0.8", null, "5.5", null, "0.5", null, "6.3", null, "0.6", null, "7.1", null, "0.6", null, "8.1", null, "0.5", null, "7.7", null, "0.8", null, "6.3", null, "0.6", null, "6.2", null, "0.6", null, "5.9", null, "0.5", null, "5.3", null, "0.7", null, "7.2", null, "0.7", null, "5.3", null, "0.6", null, "4.6", null, "0.5", null, "3.0", null, "0.4", null, "1.7", null, "0.4", null, "1.4", null, "0.3", null, "12.7", null, "0.8", null, "3.7", null, "0.5", null, "22.0", null, "1.1", null, "8.1", null, "0.7", null, "41.0", null, "0.9", null, "80.8", null, "1.1", null, "78.0", null, "1.1", null, "75.0", null, "1.2", null, "23.2", null, "0.9", null, "20.3", null, "0.9", null, "16.0", null, "0.7", null, "6.1", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13", "04"], ["5001900US1305", "Congressional District 5 (119th Congress), Georgia", "771555", null, "16620", null, "42986", null, "4043", null, "38403", null, "4933", null, "43280", null, "4641", null, "55381", null, "4874", null, "62258", null, "5282", null, "69961", null, "4352", null, "79938", null, "6090", null, "63736", null, "4943", null, "52261", null, "4230", null, "45481", null, "3928", null, "46189", null, "3907", null, "44641", null, "4540", null, "36179", null, "3516", null, "27455", null, "2852", null, "27649", null, "2538", null, "18097", null, "1856", null, "10338", null, "1729", null, "7322", null, "1552", null, "81683", null, "7047", null, "25365", null, "3158", null, "150034", null, "9157", null, "92274", null, "5612", null, "383535", null, "11500", null, "637716", null, "12829", null, "621521", null, "12178", null, "578906", null, "11853", null, "127040", null, "6151", null, "113775", null, "5670", null, "90861", null, "4340", null, "35757", null, "2718", null, "34.7", null, "0.5", null, "92.6", null, "3.4", null, "45.4", null, "1.7", null, "17.1", null, "0.9", null, "28.3", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.6", null, "0.5", null, "5.0", null, "0.6", null, "5.6", null, "0.6", null, "7.2", null, "0.6", null, "8.1", null, "0.7", null, "9.1", null, "0.5", null, "10.4", null, "0.8", null, "8.3", null, "0.6", null, "6.8", null, "0.5", null, "5.9", null, "0.5", null, "6.0", null, "0.5", null, "5.8", null, "0.6", null, "4.7", null, "0.5", null, "3.6", null, "0.4", null, "3.6", null, "0.3", null, "2.3", null, "0.2", null, "1.3", null, "0.2", null, "0.9", null, "0.2", null, "10.6", null, "0.8", null, "3.3", null, "0.4", null, "19.4", null, "0.9", null, "12.0", null, "0.7", null, "49.7", null, "1.0", null, "82.7", null, "0.9", null, "80.6", null, "0.9", null, "75.0", null, "1.1", null, "16.5", null, "0.9", null, "14.7", null, "0.8", null, "11.8", null, "0.6", null, "4.6", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.5", null, "-888888888.0", "(X)", "370920", null, "10765", null, "19925", null, "2767", null, "20299", null, "3440", null, "22449", null, "3255", null, "27553", null, "3067", null, "27955", null, "3100", null, "34489", null, "3227", null, "38260", null, "3908", null, "33672", null, "3185", null, "24214", null, "2705", null, "21208", null, "2396", null, "21758", null, "2275", null, "22602", null, "3098", null, "19032", null, "2212", null, "12115", null, "1812", null, "12337", null, "1772", null, "6484", null, "1018", null, "3794", null, "910", null, "2774", null, "885", null, "42748", null, "4599", null, "13017", null, "1937", null, "75690", null, "6173", null, "42491", null, "3288", null, "186143", null, "6557", null, "303642", null, "7962", null, "295230", null, "7722", null, "274834", null, "7881", null, "56536", null, "3627", null, "48816", null, "3425", null, "37504", null, "2748", null, "13052", null, "1456", null, "34.4", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.7", null, "5.5", null, "0.9", null, "6.1", null, "0.8", null, "7.4", null, "0.8", null, "7.5", null, "0.8", null, "9.3", null, "0.8", null, "10.3", null, "1.0", null, "9.1", null, "0.8", null, "6.5", null, "0.7", null, "5.7", null, "0.6", null, "5.9", null, "0.6", null, "6.1", null, "0.8", null, "5.1", null, "0.6", null, "3.3", null, "0.5", null, "3.3", null, "0.5", null, "1.7", null, "0.3", null, "1.0", null, "0.2", null, "0.7", null, "0.2", null, "11.5", null, "1.1", null, "3.5", null, "0.5", null, "20.4", null, "1.3", null, "11.5", null, "0.9", null, "50.2", null, "1.3", null, "81.9", null, "1.2", null, "79.6", null, "1.3", null, "74.1", null, "1.5", null, "15.2", null, "1.1", null, "13.2", null, "0.9", null, "10.1", null, "0.8", null, "3.5", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "400635", null, "11067", null, "23061", null, "2968", null, "18104", null, "3031", null, "20831", null, "2759", null, "27828", null, "3456", null, "34303", null, "3831", null, "35472", null, "3239", null, "41678", null, "3468", null, "30064", null, "3054", null, "28047", null, "2807", null, "24273", null, "2794", null, "24431", null, "2622", null, "22039", null, "2740", null, "17147", null, "2567", null, "15340", null, "1850", null, "15312", null, "1934", null, "11613", null, "1558", null, "6544", null, "1404", null, "4548", null, "1115", null, "38935", null, "4084", null, "12348", null, "2294", null, "74344", null, "5708", null, "49783", null, "4203", null, "197392", null, "8330", null, "334074", null, "9134", null, "326291", null, "8476", null, "304072", null, "7966", null, "70504", null, "4146", null, "64959", null, "3841", null, "53357", null, "2848", null, "22705", null, "2132", null, "34.9", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.8", null, "0.7", null, "4.5", null, "0.7", null, "5.2", null, "0.7", null, "6.9", null, "0.8", null, "8.6", null, "0.9", null, "8.9", null, "0.8", null, "10.4", null, "0.8", null, "7.5", null, "0.8", null, "7.0", null, "0.7", null, "6.1", null, "0.7", null, "6.1", null, "0.7", null, "5.5", null, "0.7", null, "4.3", null, "0.6", null, "3.8", null, "0.5", null, "3.8", null, "0.5", null, "2.9", null, "0.4", null, "1.6", null, "0.3", null, "1.1", null, "0.3", null, "9.7", null, "0.9", null, "3.1", null, "0.5", null, "18.6", null, "1.2", null, "12.4", null, "1.0", null, "49.3", null, "1.3", null, "83.4", null, "1.2", null, "81.4", null, "1.2", null, "75.9", null, "1.2", null, "17.6", null, "1.1", null, "16.2", null, "1.0", null, "13.3", null, "0.7", null, "5.7", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13", "05"], ["5001900US1306", "Congressional District 6 (119th Congress), Georgia", "803570", null, "15911", null, "45195", null, "4351", null, "50981", null, "4298", null, "49346", null, "4339", null, "50160", null, "4386", null, "50728", null, "4978", null, "67016", null, "4940", null, "68835", null, "5016", null, "61871", null, "4830", null, "54276", null, "4881", null, "53124", null, "3924", null, "53058", null, "3768", null, "44879", null, "3852", null, "45936", null, "3892", null, "38067", null, "2964", null, "29064", null, "2448", null, "18525", null, "2260", null, "13602", null, "1790", null, "8907", null, "1723", null, "100327", null, "5770", null, "32566", null, "2790", null, "178088", null, "8341", null, "68322", null, "5679", null, "352886", null, "11300", null, "647293", null, "13426", null, "625482", null, "12159", null, "599531", null, "11579", null, "154101", null, "6186", null, "134267", null, "5636", null, "108165", null, "4562", null, "41034", null, "2830", null, "36.4", null, "0.6", null, "92.1", null, "2.7", null, "55.3", null, "2.0", null, "20.9", null, "1.1", null, "34.4", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.6", null, "0.5", null, "6.3", null, "0.5", null, "6.1", null, "0.5", null, "6.2", null, "0.5", null, "6.3", null, "0.6", null, "8.3", null, "0.6", null, "8.6", null, "0.6", null, "7.7", null, "0.6", null, "6.8", null, "0.6", null, "6.6", null, "0.5", null, "6.6", null, "0.5", null, "5.6", null, "0.5", null, "5.7", null, "0.5", null, "4.7", null, "0.4", null, "3.6", null, "0.3", null, "2.3", null, "0.3", null, "1.7", null, "0.2", null, "1.1", null, "0.2", null, "12.5", null, "0.6", null, "4.1", null, "0.3", null, "22.2", null, "0.8", null, "8.5", null, "0.7", null, "43.9", null, "0.9", null, "80.6", null, "0.8", null, "77.8", null, "0.8", null, "74.6", null, "0.8", null, "19.2", null, "0.8", null, "16.7", null, "0.7", null, "13.5", null, "0.6", null, "5.1", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "3.2", null, "-888888888.0", "(X)", "385250", null, "9581", null, "24183", null, "3102", null, "24261", null, "3075", null, "26377", null, "3429", null, "25669", null, "2604", null, "26422", null, "2984", null, "32353", null, "3292", null, "32535", null, "3094", null, "29842", null, "3684", null, "25313", null, "3557", null, "25028", null, "2196", null, "23937", null, "2217", null, "20412", null, "2550", null, "21733", null, "2688", null, "16811", null, "1974", null, "13374", null, "1791", null, "8314", null, "1434", null, "5497", null, "1089", null, "3189", null, "946", null, "50638", null, "4385", null, "15695", null, "1852", null, "90516", null, "6090", null, "36396", null, "3540", null, "172134", null, "6851", null, "305327", null, "7658", null, "294734", null, "7216", null, "280954", null, "7237", null, "68918", null, "4152", null, "59289", null, "3650", null, "47185", null, "2723", null, "17000", null, "1647", null, "35.1", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.3", null, "0.8", null, "6.3", null, "0.8", null, "6.8", null, "0.8", null, "6.7", null, "0.6", null, "6.9", null, "0.7", null, "8.4", null, "0.8", null, "8.4", null, "0.7", null, "7.7", null, "0.9", null, "6.6", null, "0.9", null, "6.5", null, "0.6", null, "6.2", null, "0.6", null, "5.3", null, "0.6", null, "5.6", null, "0.7", null, "4.4", null, "0.5", null, "3.5", null, "0.5", null, "2.2", null, "0.4", null, "1.4", null, "0.3", null, "0.8", null, "0.2", null, "13.1", null, "1.0", null, "4.1", null, "0.4", null, "23.5", null, "1.3", null, "9.4", null, "0.9", null, "44.7", null, "1.2", null, "79.3", null, "1.3", null, "76.5", null, "1.3", null, "72.9", null, "1.3", null, "17.9", null, "1.1", null, "15.4", null, "1.0", null, "12.2", null, "0.7", null, "4.4", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "418320", null, "10107", null, "21012", null, "2832", null, "26720", null, "3062", null, "22969", null, "3099", null, "24491", null, "2890", null, "24306", null, "3281", null, "34663", null, "3351", null, "36300", null, "3201", null, "32029", null, "3062", null, "28963", null, "3433", null, "28096", null, "2727", null, "29121", null, "2504", null, "24467", null, "2645", null, "24203", null, "2672", null, "21256", null, "1959", null, "15690", null, "1767", null, "10211", null, "1565", null, "8105", null, "1429", null, "5718", null, "1420", null, "49689", null, "3752", null, "16871", null, "2041", null, "87572", null, "5088", null, "31926", null, "3721", null, "180752", null, "6902", null, "341966", null, "8739", null, "330748", null, "8036", null, "318577", null, "7380", null, "85183", null, "3895", null, "74978", null, "3626", null, "60980", null, "3001", null, "24034", null, "1978", null, "38.1", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.0", null, "0.6", null, "6.4", null, "0.7", null, "5.5", null, "0.8", null, "5.9", null, "0.7", null, "5.8", null, "0.8", null, "8.3", null, "0.8", null, "8.7", null, "0.7", null, "7.7", null, "0.7", null, "6.9", null, "0.8", null, "6.7", null, "0.6", null, "7.0", null, "0.6", null, "5.8", null, "0.6", null, "5.8", null, "0.6", null, "5.1", null, "0.5", null, "3.8", null, "0.4", null, "2.4", null, "0.4", null, "1.9", null, "0.3", null, "1.4", null, "0.3", null, "11.9", null, "0.8", null, "4.0", null, "0.5", null, "20.9", null, "1.0", null, "7.6", null, "0.8", null, "43.2", null, "1.1", null, "81.7", null, "1.0", null, "79.1", null, "1.0", null, "76.2", null, "1.0", null, "20.4", null, "0.9", null, "17.9", null, "0.8", null, "14.6", null, "0.7", null, "5.7", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13", "06"], ["5001900US1307", "Congressional District 7 (119th Congress), Georgia", "815698", null, "8798", null, "44536", null, "2742", null, "49472", null, "3614", null, "65333", null, "4719", null, "53824", null, "3494", null, "44426", null, "3589", null, "39354", null, "3364", null, "47118", null, "3572", null, "61488", null, "5032", null, "62781", null, "4754", null, "59052", null, "2981", null, "61685", null, "2811", null, "54885", null, "3495", null, "49042", null, "2669", null, "38833", null, "2756", null, "32230", null, "2203", null, "24352", null, "2469", null, "15234", null, "1958", null, "12053", null, "1803", null, "114805", null, "4826", null, "34784", null, "2244", null, "194125", null, "6192", null, "63466", null, "4260", null, "308991", null, "6371", null, "644260", null, "8623", null, "621573", null, "8041", null, "594637", null, "8281", null, "171744", null, "4775", null, "151337", null, "4798", null, "122702", null, "3846", null, "51639", null, "2484", null, "40.2", null, "0.5", null, "97.9", null, "2.5", null, "63.5", null, "1.9", null, "24.6", null, "0.9", null, "38.9", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.3", null, "6.1", null, "0.4", null, "8.0", null, "0.6", null, "6.6", null, "0.4", null, "5.4", null, "0.4", null, "4.8", null, "0.4", null, "5.8", null, "0.4", null, "7.5", null, "0.6", null, "7.7", null, "0.6", null, "7.2", null, "0.4", null, "7.6", null, "0.3", null, "6.7", null, "0.4", null, "6.0", null, "0.3", null, "4.8", null, "0.3", null, "4.0", null, "0.3", null, "3.0", null, "0.3", null, "1.9", null, "0.2", null, "1.5", null, "0.2", null, "14.1", null, "0.6", null, "4.3", null, "0.3", null, "23.8", null, "0.7", null, "7.8", null, "0.5", null, "37.9", null, "0.6", null, "79.0", null, "0.7", null, "76.2", null, "0.7", null, "72.9", null, "0.7", null, "21.1", null, "0.6", null, "18.6", null, "0.6", null, "15.0", null, "0.5", null, "6.3", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "2.0", null, "-888888888.0", "(X)", "403491", null, "6033", null, "23721", null, "2486", null, "24658", null, "2319", null, "34971", null, "3041", null, "28264", null, "2607", null, "23178", null, "2095", null, "19732", null, "2306", null, "21060", null, "2354", null, "28419", null, "3289", null, "32743", null, "3028", null, "29570", null, "2094", null, "30650", null, "1814", null, "26763", null, "2145", null, "23801", null, "1918", null, "18359", null, "1695", null, "15938", null, "1453", null, "10500", null, "1381", null, "6591", null, "1229", null, "4573", null, "943", null, "59629", null, "3242", null, "19032", null, "1679", null, "102382", null, "5211", null, "32410", null, "2772", null, "153396", null, "3941", null, "313766", null, "5421", null, "301109", null, "5028", null, "287341", null, "5148", null, "79762", null, "2517", null, "69640", null, "2534", null, "55961", null, "2295", null, "21664", null, "1322", null, "39.6", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.9", null, "0.6", null, "6.1", null, "0.6", null, "8.7", null, "0.7", null, "7.0", null, "0.6", null, "5.7", null, "0.5", null, "4.9", null, "0.6", null, "5.2", null, "0.6", null, "7.0", null, "0.8", null, "8.1", null, "0.7", null, "7.3", null, "0.5", null, "7.6", null, "0.5", null, "6.6", null, "0.5", null, "5.9", null, "0.5", null, "4.6", null, "0.4", null, "4.0", null, "0.4", null, "2.6", null, "0.4", null, "1.6", null, "0.3", null, "1.1", null, "0.2", null, "14.8", null, "0.7", null, "4.7", null, "0.4", null, "25.4", null, "1.1", null, "8.0", null, "0.7", null, "38.0", null, "0.8", null, "77.8", null, "1.1", null, "74.6", null, "1.1", null, "71.2", null, "1.2", null, "19.8", null, "0.7", null, "17.3", null, "0.7", null, "13.9", null, "0.6", null, "5.4", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "412207", null, "7387", null, "20815", null, "1824", null, "24814", null, "2605", null, "30362", null, "3218", null, "25560", null, "2181", null, "21248", null, "2803", null, "19622", null, "2282", null, "26058", null, "2718", null, "33069", null, "3118", null, "30038", null, "2967", null, "29482", null, "1971", null, "31035", null, "1783", null, "28122", null, "2396", null, "25241", null, "2142", null, "20474", null, "1766", null, "16292", null, "1463", null, "13852", null, "1666", null, "8643", null, "1334", null, "7480", null, "1282", null, "55176", null, "3393", null, "15752", null, "1474", null, "91743", null, "4397", null, "31056", null, "2970", null, "155595", null, "4979", null, "330494", null, "6448", null, "320464", null, "6208", null, "307296", null, "6020", null, "91982", null, "3456", null, "81697", null, "3210", null, "66741", null, "2330", null, "29975", null, "1884", null, "40.7", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.0", null, "0.4", null, "6.0", null, "0.6", null, "7.4", null, "0.8", null, "6.2", null, "0.5", null, "5.2", null, "0.7", null, "4.8", null, "0.5", null, "6.3", null, "0.6", null, "8.0", null, "0.7", null, "7.3", null, "0.7", null, "7.2", null, "0.5", null, "7.5", null, "0.4", null, "6.8", null, "0.6", null, "6.1", null, "0.5", null, "5.0", null, "0.4", null, "4.0", null, "0.4", null, "3.4", null, "0.4", null, "2.1", null, "0.3", null, "1.8", null, "0.3", null, "13.4", null, "0.7", null, "3.8", null, "0.4", null, "22.3", null, "0.9", null, "7.5", null, "0.7", null, "37.7", null, "1.0", null, "80.2", null, "1.0", null, "77.7", null, "0.9", null, "74.5", null, "0.9", null, "22.3", null, "0.8", null, "19.8", null, "0.8", null, "16.2", null, "0.6", null, "7.3", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13", "07"], ["5001900US1308", "Congressional District 8 (119th Congress), Georgia", "787897", null, "9779", null, "44642", null, "3365", null, "52072", null, "3863", null, "57835", null, "3829", null, "55645", null, "3705", null, "56060", null, "4231", null, "51503", null, "3615", null, "52734", null, "3342", null, "46999", null, "4591", null, "50382", null, "4206", null, "47228", null, "3881", null, "47217", null, "3383", null, "37525", null, "3132", null, "53914", null, "3190", null, "44636", null, "2690", null, "34866", null, "2805", null, "27989", null, "2041", null, "15223", null, "1608", null, "11427", null, "1847", null, "109907", null, "4751", null, "31359", null, "2505", null, "185908", null, "5568", null, "80346", null, "4050", null, "313323", null, "6156", null, "623105", null, "6918", null, "601989", null, "6393", null, "567646", null, "7558", null, "188055", null, "4247", null, "166842", null, "3758", null, "134141", null, "3250", null, "54639", null, "2193", null, "37.3", null, "0.7", null, "94.6", null, "2.1", null, "68.4", null, "1.5", null, "28.7", null, "0.9", null, "39.7", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.7", null, "0.4", null, "6.6", null, "0.5", null, "7.3", null, "0.5", null, "7.1", null, "0.5", null, "7.1", null, "0.5", null, "6.5", null, "0.5", null, "6.7", null, "0.4", null, "6.0", null, "0.6", null, "6.4", null, "0.5", null, "6.0", null, "0.5", null, "6.0", null, "0.4", null, "4.8", null, "0.4", null, "6.8", null, "0.4", null, "5.7", null, "0.4", null, "4.4", null, "0.4", null, "3.6", null, "0.3", null, "1.9", null, "0.2", null, "1.5", null, "0.2", null, "13.9", null, "0.5", null, "4.0", null, "0.3", null, "23.6", null, "0.5", null, "10.2", null, "0.5", null, "39.8", null, "0.6", null, "79.1", null, "0.6", null, "76.4", null, "0.5", null, "72.0", null, "0.6", null, "23.9", null, "0.5", null, "21.2", null, "0.5", null, "17.0", null, "0.4", null, "6.9", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.7", null, "-888888888.0", "(X)", "383018", null, "6708", null, "20609", null, "2561", null, "26555", null, "2993", null, "31792", null, "2907", null, "27556", null, "2853", null, "28029", null, "2751", null, "26159", null, "2783", null, "26232", null, "2317", null, "20332", null, "2301", null, "23897", null, "2392", null, "23845", null, "2612", null, "23720", null, "2017", null, "18161", null, "1744", null, "24752", null, "1927", null, "20877", null, "1679", null, "16408", null, "1625", null, "13114", null, "1362", null, "7542", null, "1098", null, "3438", null, "915", null, "58347", null, "3524", null, "16019", null, "2415", null, "94975", null, "4676", null, "39566", null, "2833", null, "152205", null, "4144", null, "298438", null, "4600", null, "288043", null, "4091", null, "271577", null, "4833", null, "86131", null, "2511", null, "76523", null, "2400", null, "61379", null, "1807", null, "24094", null, "1371", null, "36.2", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.6", null, "6.9", null, "0.8", null, "8.3", null, "0.7", null, "7.2", null, "0.7", null, "7.3", null, "0.7", null, "6.8", null, "0.7", null, "6.8", null, "0.6", null, "5.3", null, "0.6", null, "6.2", null, "0.6", null, "6.2", null, "0.7", null, "6.2", null, "0.5", null, "4.7", null, "0.5", null, "6.5", null, "0.5", null, "5.5", null, "0.4", null, "4.3", null, "0.4", null, "3.4", null, "0.4", null, "2.0", null, "0.3", null, "0.9", null, "0.2", null, "15.2", null, "0.9", null, "4.2", null, "0.6", null, "24.8", null, "0.9", null, "10.3", null, "0.8", null, "39.7", null, "0.9", null, "77.9", null, "0.9", null, "75.2", null, "0.9", null, "70.9", null, "0.9", null, "22.5", null, "0.6", null, "20.0", null, "0.6", null, "16.0", null, "0.5", null, "6.3", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "404879", null, "6276", null, "24033", null, "2547", null, "25517", null, "2523", null, "26043", null, "2516", null, "28089", null, "2677", null, "28031", null, "2526", null, "25344", null, "1975", null, "26502", null, "2241", null, "26667", null, "3121", null, "26485", null, "2837", null, "23383", null, "2541", null, "23497", null, "2034", null, "19364", null, "1995", null, "29162", null, "1969", null, "23759", null, "1956", null, "18458", null, "1895", null, "14875", null, "1468", null, "7681", null, "1177", null, "7989", null, "1454", null, "51560", null, "3109", null, "15340", null, "1425", null, "90933", null, "4606", null, "40780", null, "2678", null, "161118", null, "4002", null, "324667", null, "3990", null, "313946", null, "3722", null, "296069", null, "3972", null, "101924", null, "2737", null, "90319", null, "2447", null, "72762", null, "2027", null, "30545", null, "1556", null, "38.3", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.9", null, "0.6", null, "6.3", null, "0.6", null, "6.4", null, "0.6", null, "6.9", null, "0.6", null, "6.9", null, "0.6", null, "6.3", null, "0.5", null, "6.5", null, "0.5", null, "6.6", null, "0.8", null, "6.5", null, "0.7", null, "5.8", null, "0.6", null, "5.8", null, "0.5", null, "4.8", null, "0.5", null, "7.2", null, "0.5", null, "5.9", null, "0.5", null, "4.6", null, "0.5", null, "3.7", null, "0.4", null, "1.9", null, "0.3", null, "2.0", null, "0.4", null, "12.7", null, "0.7", null, "3.8", null, "0.3", null, "22.5", null, "0.9", null, "10.1", null, "0.6", null, "39.8", null, "0.8", null, "80.2", null, "0.9", null, "77.5", null, "0.9", null, "73.1", null, "1.0", null, "25.2", null, "0.7", null, "22.3", null, "0.6", null, "18.0", null, "0.5", null, "7.5", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13", "08"], ["5001900US1309", "Congressional District 9 (119th Congress), Georgia", "828902", null, "18304", null, "42969", null, "3316", null, "46716", null, "3912", null, "60621", null, "4666", null, "59539", null, "3671", null, "52315", null, "3587", null, "52740", null, "3362", null, "48654", null, "3288", null, "50864", null, "4400", null, "52960", null, "4327", null, "52115", null, "3300", null, "54310", null, "3137", null, "54987", null, "4375", null, "55878", null, "3791", null, "47603", null, "2795", null, "39295", null, "2878", null, "28239", null, "2207", null, "17940", null, "1791", null, "11157", null, "1437", null, "107337", null, "6248", null, "38658", null, "2858", null, "188964", null, "8768", null, "73196", null, "4044", null, "317072", null, "10586", null, "667040", null, "12405", null, "639938", null, "11958", null, "608643", null, "11225", null, "200112", null, "5268", null, "177976", null, "4565", null, "144234", null, "3851", null, "57336", null, "2157", null, "40.0", null, "0.8", null, "95.7", null, "1.9", null, "67.2", null, "1.7", null, "29.1", null, "1.2", null, "38.1", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.4", null, "5.6", null, "0.4", null, "7.3", null, "0.5", null, "7.2", null, "0.4", null, "6.3", null, "0.4", null, "6.4", null, "0.4", null, "5.9", null, "0.4", null, "6.1", null, "0.5", null, "6.4", null, "0.5", null, "6.3", null, "0.4", null, "6.6", null, "0.4", null, "6.6", null, "0.5", null, "6.7", null, "0.5", null, "5.7", null, "0.4", null, "4.7", null, "0.4", null, "3.4", null, "0.3", null, "2.2", null, "0.2", null, "1.3", null, "0.2", null, "12.9", null, "0.6", null, "4.7", null, "0.3", null, "22.8", null, "0.7", null, "8.8", null, "0.4", null, "38.3", null, "0.7", null, "80.5", null, "0.7", null, "77.2", null, "0.7", null, "73.4", null, "0.7", null, "24.1", null, "0.8", null, "21.5", null, "0.7", null, "17.4", null, "0.6", null, "6.9", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.2", null, "-888888888.0", "(X)", "405436", null, "9187", null, "20441", null, "2408", null, "23900", null, "2405", null, "30841", null, "3125", null, "30476", null, "2679", null, "26400", null, "2474", null, "26534", null, "2595", null, "23415", null, "1695", null, "25505", null, "2332", null, "25800", null, "2293", null, "25583", null, "1933", null, "24904", null, "1732", null, "27200", null, "2478", null, "28517", null, "2662", null, "24295", null, "1637", null, "16587", null, "1688", null, "12708", null, "1412", null, "8308", null, "1283", null, "4022", null, "761", null, "54741", null, "3676", null, "19632", null, "2055", null, "94814", null, "5272", null, "37244", null, "2677", null, "158130", null, "5772", null, "324064", null, "5892", null, "310622", null, "5725", null, "294552", null, "5590", null, "94437", null, "2958", null, "83739", null, "2669", null, "65920", null, "2112", null, "25038", null, "1275", null, "39.1", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.0", null, "0.6", null, "5.9", null, "0.6", null, "7.6", null, "0.7", null, "7.5", null, "0.6", null, "6.5", null, "0.6", null, "6.5", null, "0.6", null, "5.8", null, "0.4", null, "6.3", null, "0.6", null, "6.4", null, "0.5", null, "6.3", null, "0.5", null, "6.1", null, "0.4", null, "6.7", null, "0.6", null, "7.0", null, "0.6", null, "6.0", null, "0.4", null, "4.1", null, "0.4", null, "3.1", null, "0.4", null, "2.0", null, "0.3", null, "1.0", null, "0.2", null, "13.5", null, "0.7", null, "4.8", null, "0.5", null, "23.4", null, "0.9", null, "9.2", null, "0.6", null, "39.0", null, "1.0", null, "79.9", null, "1.0", null, "76.6", null, "0.9", null, "72.7", null, "1.0", null, "23.3", null, "0.9", null, "20.7", null, "0.8", null, "16.3", null, "0.7", null, "6.2", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "423466", null, "10867", null, "22528", null, "2169", null, "22816", null, "3053", null, "29780", null, "2944", null, "29063", null, "2424", null, "25915", null, "2367", null, "26206", null, "1816", null, "25239", null, "2271", null, "25359", null, "2790", null, "27160", null, "2666", null, "26532", null, "2120", null, "29406", null, "2147", null, "27787", null, "2821", null, "27361", null, "2538", null, "23308", null, "1995", null, "22708", null, "1975", null, "15531", null, "1602", null, "9632", null, "1258", null, "7135", null, "1202", null, "52596", null, "4100", null, "19026", null, "1863", null, "94150", null, "5420", null, "35952", null, "2623", null, "158942", null, "6010", null, "342976", null, "7944", null, "329316", null, "7615", null, "314091", null, "7010", null, "105675", null, "3588", null, "94237", null, "3103", null, "78314", null, "2533", null, "32298", null, "1624", null, "40.9", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.3", null, "0.5", null, "5.4", null, "0.7", null, "7.0", null, "0.6", null, "6.9", null, "0.5", null, "6.1", null, "0.5", null, "6.2", null, "0.4", null, "6.0", null, "0.5", null, "6.0", null, "0.6", null, "6.4", null, "0.6", null, "6.3", null, "0.5", null, "6.9", null, "0.5", null, "6.6", null, "0.7", null, "6.5", null, "0.6", null, "5.5", null, "0.5", null, "5.4", null, "0.5", null, "3.7", null, "0.4", null, "2.3", null, "0.3", null, "1.7", null, "0.3", null, "12.4", null, "0.8", null, "4.5", null, "0.4", null, "22.2", null, "0.9", null, "8.5", null, "0.6", null, "37.5", null, "0.8", null, "81.0", null, "0.9", null, "77.8", null, "0.9", null, "74.2", null, "0.9", null, "25.0", null, "1.0", null, "22.3", null, "0.9", null, "18.5", null, "0.8", null, "7.6", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13", "09"], ["5001900US1310", "Congressional District 10 (119th Congress), Georgia", "835755", null, "10380", null, "42371", null, "2741", null, "49055", null, "3572", null, "59458", null, "4698", null, "60991", null, "3820", null, "66370", null, "4180", null, "50831", null, "3408", null, "54199", null, "4149", null, "54549", null, "4375", null, "56534", null, "4755", null, "52809", null, "3114", null, "52641", null, "3306", null, "48345", null, "2937", null, "52217", null, "2884", null, "45617", null, "3141", null, "35535", null, "2559", null, "26517", null, "2121", null, "16207", null, "1673", null, "11509", null, "1445", null, "108513", null, "4067", null, "33608", null, "2192", null, "184492", null, "4802", null, "93753", null, "3997", null, "343474", null, "7497", null, "671949", null, "8387", null, "651263", null, "7863", null, "605815", null, "7796", null, "187602", null, "4920", null, "164643", null, "4725", null, "135385", null, "3533", null, "54233", null, "2059", null, "38.2", null, "0.5", null, "94.5", null, "2.1", null, "62.0", null, "1.2", null, "26.2", null, "0.8", null, "35.8", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.1", null, "0.3", null, "5.9", null, "0.4", null, "7.1", null, "0.5", null, "7.3", null, "0.4", null, "7.9", null, "0.5", null, "6.1", null, "0.4", null, "6.5", null, "0.5", null, "6.5", null, "0.5", null, "6.8", null, "0.5", null, "6.3", null, "0.4", null, "6.3", null, "0.4", null, "5.8", null, "0.4", null, "6.2", null, "0.3", null, "5.5", null, "0.4", null, "4.3", null, "0.3", null, "3.2", null, "0.3", null, "1.9", null, "0.2", null, "1.4", null, "0.2", null, "13.0", null, "0.4", null, "4.0", null, "0.3", null, "22.1", null, "0.4", null, "11.2", null, "0.4", null, "41.1", null, "0.7", null, "80.4", null, "0.4", null, "77.9", null, "0.4", null, "72.5", null, "0.6", null, "22.4", null, "0.6", null, "19.7", null, "0.6", null, "16.2", null, "0.4", null, "6.5", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.2", null, "-888888888.0", "(X)", "406136", null, "7237", null, "22411", null, "2313", null, "23609", null, "2779", null, "29130", null, "3040", null, "32110", null, "3230", null, "34344", null, "2628", null, "25193", null, "2201", null, "26205", null, "2973", null, "25744", null, "2863", null, "27016", null, "2947", null, "26006", null, "2387", null, "25363", null, "2044", null, "22379", null, "2023", null, "26805", null, "1928", null, "20368", null, "1733", null, "17084", null, "1781", null, "12116", null, "1321", null, "5958", null, "947", null, "4295", null, "886", null, "52739", null, "3713", null, "18034", null, "1881", null, "93184", null, "4362", null, "48420", null, "3095", null, "170612", null, "5590", null, "325075", null, "5713", null, "312952", null, "5097", null, "288756", null, "5008", null, "86626", null, "2761", null, "74079", null, "2562", null, "59821", null, "1829", null, "22369", null, "1253", null, "36.7", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.6", null, "5.8", null, "0.7", null, "7.2", null, "0.7", null, "7.9", null, "0.8", null, "8.5", null, "0.6", null, "6.2", null, "0.5", null, "6.5", null, "0.7", null, "6.3", null, "0.7", null, "6.7", null, "0.7", null, "6.4", null, "0.6", null, "6.2", null, "0.5", null, "5.5", null, "0.5", null, "6.6", null, "0.5", null, "5.0", null, "0.4", null, "4.2", null, "0.5", null, "3.0", null, "0.3", null, "1.5", null, "0.2", null, "1.1", null, "0.2", null, "13.0", null, "0.8", null, "4.4", null, "0.4", null, "22.9", null, "0.8", null, "11.9", null, "0.7", null, "42.0", null, "1.0", null, "80.0", null, "0.9", null, "77.1", null, "0.8", null, "71.1", null, "1.0", null, "21.3", null, "0.8", null, "18.2", null, "0.7", null, "14.7", null, "0.5", null, "5.5", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "429619", null, "6610", null, "19960", null, "1998", null, "25446", null, "2884", null, "30328", null, "3637", null, "28881", null, "2490", null, "32026", null, "2685", null, "25638", null, "2299", null, "27994", null, "2552", null, "28805", null, "2808", null, "29518", null, "3306", null, "26803", null, "2148", null, "27278", null, "2177", null, "25966", null, "2044", null, "25412", null, "2004", null, "25249", null, "2200", null, "18451", null, "1725", null, "14401", null, "1468", null, "10249", null, "1380", null, "7214", null, "1144", null, "55774", null, "3104", null, "15574", null, "1849", null, "91308", null, "4048", null, "45333", null, "2253", null, "172862", null, "4306", null, "346874", null, "4811", null, "338311", null, "4536", null, "317059", null, "5193", null, "100976", null, "3371", null, "90564", null, "3297", null, "75564", null, "2371", null, "31864", null, "1446", null, "39.3", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.6", null, "0.4", null, "5.9", null, "0.7", null, "7.1", null, "0.8", null, "6.7", null, "0.6", null, "7.5", null, "0.6", null, "6.0", null, "0.5", null, "6.5", null, "0.6", null, "6.7", null, "0.6", null, "6.9", null, "0.8", null, "6.2", null, "0.5", null, "6.3", null, "0.5", null, "6.0", null, "0.5", null, "5.9", null, "0.5", null, "5.9", null, "0.5", null, "4.3", null, "0.4", null, "3.4", null, "0.3", null, "2.4", null, "0.3", null, "1.7", null, "0.3", null, "13.0", null, "0.6", null, "3.6", null, "0.4", null, "21.3", null, "0.7", null, "10.6", null, "0.5", null, "40.2", null, "0.8", null, "80.7", null, "0.7", null, "78.7", null, "0.7", null, "73.8", null, "1.0", null, "23.5", null, "0.8", null, "21.1", null, "0.7", null, "17.6", null, "0.5", null, "7.4", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13", "10"], ["5001900US1311", "Congressional District 11 (119th Congress), Georgia", "811695", null, "11491", null, "43180", null, "2868", null, "48433", null, "3928", null, "49018", null, "3781", null, "55170", null, "3231", null, "54455", null, "4055", null, "52281", null, "2867", null, "53427", null, "3320", null, "51315", null, "3934", null, "56338", null, "4158", null, "55441", null, "3163", null, "56950", null, "2617", null, "50099", null, "3854", null, "53864", null, "4286", null, "41448", null, "2827", null, "37105", null, "2968", null, "25865", null, "2386", null, "15639", null, "1606", null, "11667", null, "2375", null, "97451", null, "4768", null, "33945", null, "2077", null, "174576", null, "5747", null, "75680", null, "3895", null, "322986", null, "6396", null, "660877", null, "9627", null, "637119", null, "9132", null, "605201", null, "8955", null, "185588", null, "5294", null, "163681", null, "4468", null, "131724", null, "3697", null, "53171", null, "2531", null, "39.9", null, "0.6", null, "96.9", null, "2.1", null, "60.6", null, "1.7", null, "26.1", null, "0.9", null, "34.5", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.3", null, "0.3", null, "6.0", null, "0.5", null, "6.0", null, "0.4", null, "6.8", null, "0.4", null, "6.7", null, "0.5", null, "6.4", null, "0.4", null, "6.6", null, "0.4", null, "6.3", null, "0.5", null, "6.9", null, "0.5", null, "6.8", null, "0.4", null, "7.0", null, "0.3", null, "6.2", null, "0.5", null, "6.6", null, "0.5", null, "5.1", null, "0.4", null, "4.6", null, "0.4", null, "3.2", null, "0.3", null, "1.9", null, "0.2", null, "1.4", null, "0.3", null, "12.0", null, "0.5", null, "4.2", null, "0.3", null, "21.5", null, "0.6", null, "9.3", null, "0.5", null, "39.8", null, "0.6", null, "81.4", null, "0.6", null, "78.5", null, "0.6", null, "74.6", null, "0.6", null, "22.9", null, "0.7", null, "20.2", null, "0.6", null, "16.2", null, "0.5", null, "6.6", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.6", null, "-888888888.0", "(X)", "399532", null, "7579", null, "20978", null, "1855", null, "25472", null, "2388", null, "24628", null, "2595", null, "26454", null, "2056", null, "26868", null, "2470", null, "27110", null, "1845", null, "27911", null, "2062", null, "25105", null, "2534", null, "27560", null, "2560", null, "28344", null, "2206", null, "29040", null, "2059", null, "27105", null, "2267", null, "24873", null, "2569", null, "19151", null, "1757", null, "17343", null, "1899", null, "11089", null, "1388", null, "6785", null, "1040", null, "3716", null, "1032", null, "50100", null, "3156", null, "16616", null, "1681", null, "87694", null, "3996", null, "36706", null, "2488", null, "161008", null, "5038", null, "322602", null, "6620", null, "311838", null, "5890", null, "297259", null, "5945", null, "82957", null, "3040", null, "73269", null, "2712", null, "58084", null, "2328", null, "21590", null, "1466", null, "39.2", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.3", null, "0.5", null, "6.4", null, "0.6", null, "6.2", null, "0.6", null, "6.6", null, "0.5", null, "6.7", null, "0.6", null, "6.8", null, "0.4", null, "7.0", null, "0.5", null, "6.3", null, "0.6", null, "6.9", null, "0.6", null, "7.1", null, "0.5", null, "7.3", null, "0.5", null, "6.8", null, "0.5", null, "6.2", null, "0.6", null, "4.8", null, "0.4", null, "4.3", null, "0.5", null, "2.8", null, "0.4", null, "1.7", null, "0.3", null, "0.9", null, "0.3", null, "12.5", null, "0.7", null, "4.2", null, "0.4", null, "21.9", null, "0.8", null, "9.2", null, "0.6", null, "40.3", null, "0.9", null, "80.7", null, "0.9", null, "78.1", null, "0.8", null, "74.4", null, "0.8", null, "20.8", null, "0.8", null, "18.3", null, "0.7", null, "14.5", null, "0.6", null, "5.4", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "412163", null, "6939", null, "22202", null, "2146", null, "22961", null, "2675", null, "24390", null, "2346", null, "28716", null, "2641", null, "27587", null, "2714", null, "25171", null, "1931", null, "25516", null, "2049", null, "26210", null, "2814", null, "28778", null, "2892", null, "27097", null, "2063", null, "27910", null, "1544", null, "22994", null, "2750", null, "28991", null, "2810", null, "22297", null, "1982", null, "19762", null, "1804", null, "14776", null, "1559", null, "8854", null, "1244", null, "7951", null, "1785", null, "47351", null, "2942", null, "17329", null, "1791", null, "86882", null, "3915", null, "38974", null, "2678", null, "161978", null, "4320", null, "338275", null, "5380", null, "325281", null, "5086", null, "307942", null, "4831", null, "102631", null, "3669", null, "90412", null, "2981", null, "73640", null, "2278", null, "31581", null, "1785", null, "40.6", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.5", null, "5.6", null, "0.6", null, "5.9", null, "0.6", null, "7.0", null, "0.6", null, "6.7", null, "0.6", null, "6.1", null, "0.5", null, "6.2", null, "0.5", null, "6.4", null, "0.6", null, "7.0", null, "0.7", null, "6.6", null, "0.5", null, "6.8", null, "0.4", null, "5.6", null, "0.7", null, "7.0", null, "0.7", null, "5.4", null, "0.5", null, "4.8", null, "0.4", null, "3.6", null, "0.4", null, "2.1", null, "0.3", null, "1.9", null, "0.4", null, "11.5", null, "0.6", null, "4.2", null, "0.4", null, "21.1", null, "0.8", null, "9.5", null, "0.6", null, "39.3", null, "0.8", null, "82.1", null, "0.8", null, "78.9", null, "0.8", null, "74.7", null, "0.8", null, "24.9", null, "0.9", null, "21.9", null, "0.8", null, "17.9", null, "0.6", null, "7.7", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13", "11"], ["5001900US1312", "Congressional District 12 (119th Congress), Georgia", "786415", null, "4691", null, "41197", null, "1752", null, "51392", null, "3627", null, "51689", null, "3639", null, "57057", null, "3377", null, "58814", null, "3738", null, "49386", null, "2910", null, "53388", null, "3044", null, "53689", null, "4417", null, "53449", null, "4822", null, "44787", null, "2805", null, "45768", null, "2581", null, "45076", null, "3346", null, "45177", null, "2937", null, "42033", null, "2576", null, "39684", null, "2738", null, "24539", null, "1882", null, "17316", null, "1977", null, "11974", null, "1582", null, "103081", null, "3113", null, "34681", null, "2043", null, "178959", null, "2194", null, "81190", null, "3157", null, "325783", null, "4027", null, "631140", null, "4544", null, "607456", null, "3566", null, "571677", null, "3965", null, "180723", null, "3309", null, "164783", null, "3233", null, "135546", null, "2058", null, "53829", null, "1605", null, "37.6", null, "0.5", null, "96.5", null, "1.4", null, "66.6", null, "0.8", null, "28.7", null, "0.5", null, "37.9", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.2", null, "6.5", null, "0.5", null, "6.6", null, "0.5", null, "7.3", null, "0.4", null, "7.5", null, "0.5", null, "6.3", null, "0.4", null, "6.8", null, "0.4", null, "6.8", null, "0.6", null, "6.8", null, "0.6", null, "5.7", null, "0.3", null, "5.8", null, "0.3", null, "5.7", null, "0.4", null, "5.7", null, "0.4", null, "5.3", null, "0.3", null, "5.0", null, "0.3", null, "3.1", null, "0.2", null, "2.2", null, "0.3", null, "1.5", null, "0.2", null, "13.1", null, "0.4", null, "4.4", null, "0.3", null, "22.8", null, "0.2", null, "10.3", null, "0.4", null, "41.4", null, "0.4", null, "80.3", null, "0.3", null, "77.2", null, "0.2", null, "72.7", null, "0.5", null, "23.0", null, "0.4", null, "21.0", null, "0.4", null, "17.2", null, "0.3", null, "6.8", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.2", null, "-888888888.0", "(X)", "386276", null, "3976", null, "20328", null, "1711", null, "27992", null, "2445", null, "25336", null, "2366", null, "33079", null, "2745", null, "29815", null, "1907", null, "25927", null, "1768", null, "25890", null, "2069", null, "26964", null, "2621", null, "26150", null, "3149", null, "21123", null, "1964", null, "22719", null, "1795", null, "23421", null, "2295", null, "18714", null, "1795", null, "19674", null, "1838", null, "17468", null, "1738", null, "10457", null, "1369", null, "7347", null, "1271", null, "3872", null, "915", null, "53328", null, "2147", null, "19247", null, "1819", null, "92903", null, "2426", null, "43647", null, "2061", null, "167825", null, "3751", null, "306671", null, "3522", null, "293373", null, "2682", null, "273072", null, "3023", null, "77532", null, "2217", null, "71427", null, "2123", null, "58818", null, "1290", null, "21676", null, "1182", null, "35.8", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.3", null, "0.4", null, "7.2", null, "0.6", null, "6.6", null, "0.6", null, "8.6", null, "0.7", null, "7.7", null, "0.5", null, "6.7", null, "0.5", null, "6.7", null, "0.6", null, "7.0", null, "0.7", null, "6.8", null, "0.8", null, "5.5", null, "0.5", null, "5.9", null, "0.5", null, "6.1", null, "0.6", null, "4.8", null, "0.5", null, "5.1", null, "0.5", null, "4.5", null, "0.5", null, "2.7", null, "0.4", null, "1.9", null, "0.3", null, "1.0", null, "0.2", null, "13.8", null, "0.5", null, "5.0", null, "0.5", null, "24.1", null, "0.5", null, "11.3", null, "0.5", null, "43.4", null, "0.8", null, "79.4", null, "0.5", null, "75.9", null, "0.5", null, "70.7", null, "0.8", null, "20.1", null, "0.6", null, "18.5", null, "0.6", null, "15.2", null, "0.3", null, "5.6", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "400139", null, "3438", null, "20869", null, "1869", null, "23400", null, "2487", null, "26353", null, "2367", null, "23978", null, "2602", null, "28999", null, "3104", null, "23459", null, "2193", null, "27498", null, "2075", null, "26725", null, "2703", null, "27299", null, "3321", null, "23664", null, "1657", null, "23049", null, "1525", null, "21655", null, "2070", null, "26463", null, "2060", null, "22359", null, "1786", null, "22216", null, "2016", null, "14082", null, "1206", null, "9969", null, "1351", null, "8102", null, "1188", null, "49753", null, "2252", null, "15434", null, "1892", null, "86056", null, "2754", null, "37543", null, "2262", null, "157958", null, "3072", null, "324469", null, "2597", null, "314083", null, "1984", null, "298605", null, "2556", null, "103191", null, "2150", null, "93356", null, "2035", null, "76728", null, "1360", null, "32153", null, "977", null, "39.8", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.4", null, "5.8", null, "0.6", null, "6.6", null, "0.6", null, "6.0", null, "0.6", null, "7.2", null, "0.8", null, "5.9", null, "0.5", null, "6.9", null, "0.5", null, "6.7", null, "0.7", null, "6.8", null, "0.8", null, "5.9", null, "0.4", null, "5.8", null, "0.4", null, "5.4", null, "0.5", null, "6.6", null, "0.5", null, "5.6", null, "0.4", null, "5.6", null, "0.5", null, "3.5", null, "0.3", null, "2.5", null, "0.3", null, "2.0", null, "0.3", null, "12.4", null, "0.5", null, "3.9", null, "0.5", null, "21.5", null, "0.5", null, "9.4", null, "0.6", null, "39.5", null, "0.7", null, "81.1", null, "0.6", null, "78.5", null, "0.5", null, "74.6", null, "0.7", null, "25.8", null, "0.6", null, "23.3", null, "0.5", null, "19.2", null, "0.4", null, "8.0", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13", "12"], ["5001900US1313", "Congressional District 13 (119th Congress), Georgia", "820432", null, "20820", null, "47290", null, "3970", null, "57657", null, "5489", null, "56955", null, "5466", null, "68338", null, "4731", null, "53562", null, "4284", null, "52770", null, "4581", null, "51160", null, "4813", null, "56022", null, "5195", null, "58977", null, "4770", null, "52107", null, "3802", null, "56130", null, "3703", null, "45710", null, "3435", null, "53710", null, "3708", null, "36072", null, "3072", null, "31768", null, "2577", null, "22763", null, "2554", null, "11213", null, "1723", null, "8228", null, "1415", null, "114612", null, "6840", null, "45045", null, "3115", null, "206947", null, "9493", null, "76855", null, "5020", null, "340829", null, "12289", null, "644597", null, "15643", null, "613485", null, "15036", null, "578219", null, "14443", null, "163754", null, "5490", null, "140346", null, "5573", null, "110044", null, "4683", null, "42204", null, "2988", null, "37.2", null, "0.7", null, "93.9", null, "2.7", null, "63.0", null, "2.3", null, "21.9", null, "1.1", null, "41.1", null, "1.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.8", null, "0.4", null, "7.0", null, "0.6", null, "6.9", null, "0.6", null, "8.3", null, "0.5", null, "6.5", null, "0.5", null, "6.4", null, "0.5", null, "6.2", null, "0.5", null, "6.8", null, "0.6", null, "7.2", null, "0.6", null, "6.4", null, "0.4", null, "6.8", null, "0.4", null, "5.6", null, "0.4", null, "6.5", null, "0.5", null, "4.4", null, "0.4", null, "3.9", null, "0.3", null, "2.8", null, "0.3", null, "1.4", null, "0.2", null, "1.0", null, "0.2", null, "14.0", null, "0.7", null, "5.5", null, "0.4", null, "25.2", null, "0.8", null, "9.4", null, "0.5", null, "41.5", null, "0.9", null, "78.6", null, "0.8", null, "74.8", null, "0.8", null, "70.5", null, "0.9", null, "20.0", null, "0.7", null, "17.1", null, "0.7", null, "13.4", null, "0.6", null, "5.1", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.2", null, "-888888888.0", "(X)", "397243", null, "10747", null, "23917", null, "2972", null, "32932", null, "3615", null, "29028", null, "3766", null, "36055", null, "3384", null, "24855", null, "3045", null, "25189", null, "2941", null, "26321", null, "3182", null, "24977", null, "3232", null, "26183", null, "3253", null, "24021", null, "2453", null, "28201", null, "2305", null, "20409", null, "2160", null, "27124", null, "2599", null, "16649", null, "1751", null, "13946", null, "1474", null, "10033", null, "1401", null, "4579", null, "921", null, "2824", null, "711", null, "61960", null, "4196", null, "22258", null, "2363", null, "108135", null, "5737", null, "38652", null, "3624", null, "163580", null, "7437", null, "304651", null, "8568", null, "289108", null, "8277", null, "268192", null, "7640", null, "75155", null, "3271", null, "64262", null, "3310", null, "48031", null, "2320", null, "17436", null, "1556", null, "35.1", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.0", null, "0.7", null, "8.3", null, "0.9", null, "7.3", null, "0.9", null, "9.1", null, "0.8", null, "6.3", null, "0.7", null, "6.3", null, "0.7", null, "6.6", null, "0.8", null, "6.3", null, "0.8", null, "6.6", null, "0.8", null, "6.0", null, "0.6", null, "7.1", null, "0.6", null, "5.1", null, "0.5", null, "6.8", null, "0.7", null, "4.2", null, "0.5", null, "3.5", null, "0.4", null, "2.5", null, "0.4", null, "1.2", null, "0.2", null, "0.7", null, "0.2", null, "15.6", null, "0.9", null, "5.6", null, "0.6", null, "27.2", null, "1.1", null, "9.7", null, "0.8", null, "41.2", null, "1.4", null, "76.7", null, "1.2", null, "72.8", null, "1.1", null, "67.5", null, "1.1", null, "18.9", null, "0.9", null, "16.2", null, "0.9", null, "12.1", null, "0.6", null, "4.4", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "423189", null, "13174", null, "23373", null, "2983", null, "24725", null, "3184", null, "27927", null, "3366", null, "32283", null, "3475", null, "28707", null, "3244", null, "27581", null, "2605", null, "24839", null, "3054", null, "31045", null, "3436", null, "32794", null, "3098", null, "28086", null, "2855", null, "27929", null, "2568", null, "25301", null, "2466", null, "26586", null, "2449", null, "19423", null, "2312", null, "17822", null, "2031", null, "12730", null, "1849", null, "6634", null, "1161", null, "5404", null, "1129", null, "52652", null, "4348", null, "22787", null, "2685", null, "98812", null, "6486", null, "38203", null, "3504", null, "177249", null, "8456", null, "339946", null, "10455", null, "324377", null, "10018", null, "310027", null, "9649", null, "88599", null, "3696", null, "76084", null, "3754", null, "62013", null, "3194", null, "24768", null, "2082", null, "38.8", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.7", null, "5.8", null, "0.7", null, "6.6", null, "0.7", null, "7.6", null, "0.7", null, "6.8", null, "0.7", null, "6.5", null, "0.6", null, "5.9", null, "0.7", null, "7.3", null, "0.8", null, "7.7", null, "0.7", null, "6.6", null, "0.7", null, "6.6", null, "0.6", null, "6.0", null, "0.6", null, "6.3", null, "0.6", null, "4.6", null, "0.5", null, "4.2", null, "0.5", null, "3.0", null, "0.4", null, "1.6", null, "0.3", null, "1.3", null, "0.3", null, "12.4", null, "0.9", null, "5.4", null, "0.6", null, "23.3", null, "1.2", null, "9.0", null, "0.7", null, "41.9", null, "1.2", null, "80.3", null, "1.1", null, "76.7", null, "1.2", null, "73.3", null, "1.3", null, "20.9", null, "0.9", null, "18.0", null, "0.9", null, "14.7", null, "0.8", null, "5.9", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13", "13"], ["5001900US1314", "Congressional District 14 (119th Congress), Georgia", "795580", null, "8219", null, "41150", null, "1917", null, "46917", null, "3517", null, "54580", null, "3698", null, "56184", null, "2886", null, "51384", null, "2794", null, "49160", null, "2485", null, "51669", null, "3033", null, "53356", null, "3912", null, "51169", null, "3960", null, "49178", null, "2522", null, "56690", null, "2508", null, "52358", null, "3211", null, "50804", null, "3120", null, "41881", null, "2473", null, "35492", null, "2876", null, "24643", null, "2223", null, "17209", null, "1928", null, "11756", null, "1718", null, "101497", null, "3339", null, "37502", null, "1844", null, "180149", null, "4036", null, "70066", null, "2741", null, "312922", null, "5698", null, "641809", null, "6341", null, "615431", null, "5883", null, "585815", null, "6454", null, "181785", null, "4183", null, "162199", null, "4128", null, "130981", null, "2788", null, "53608", null, "2086", null, "39.3", null, "0.5", null, "95.9", null, "1.7", null, "64.2", null, "1.1", null, "27.0", null, "0.7", null, "37.2", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.2", null, "5.9", null, "0.4", null, "6.9", null, "0.4", null, "7.1", null, "0.3", null, "6.5", null, "0.3", null, "6.2", null, "0.3", null, "6.5", null, "0.4", null, "6.7", null, "0.5", null, "6.4", null, "0.5", null, "6.2", null, "0.3", null, "7.1", null, "0.3", null, "6.6", null, "0.4", null, "6.4", null, "0.4", null, "5.3", null, "0.3", null, "4.5", null, "0.4", null, "3.1", null, "0.3", null, "2.2", null, "0.2", null, "1.5", null, "0.2", null, "12.8", null, "0.4", null, "4.7", null, "0.2", null, "22.6", null, "0.4", null, "8.8", null, "0.3", null, "39.3", null, "0.5", null, "80.7", null, "0.4", null, "77.4", null, "0.4", null, "73.6", null, "0.6", null, "22.8", null, "0.5", null, "20.4", null, "0.5", null, "16.5", null, "0.3", null, "6.7", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.5", null, "-888888888.0", "(X)", "389405", null, "5550", null, "22653", null, "1892", null, "21451", null, "2357", null, "27943", null, "2318", null, "30471", null, "2458", null, "24262", null, "2050", null, "25286", null, "1886", null, "25473", null, "2059", null, "26629", null, "2671", null, "24027", null, "2515", null, "23468", null, "1659", null, "28465", null, "1756", null, "26326", null, "2390", null, "24176", null, "2551", null, "20088", null, "1580", null, "15680", null, "1847", null, "11249", null, "1376", null, "8732", null, "1372", null, "3026", null, "653", null, "49394", null, "2239", null, "19744", null, "1729", null, "91791", null, "3789", null, "34989", null, "1819", null, "156148", null, "3789", null, "311751", null, "4184", null, "297614", null, "3772", null, "281878", null, "4186", null, "82951", null, "2712", null, "73983", null, "2436", null, "58775", null, "1593", null, "23007", null, "1528", null, "38.1", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.8", null, "0.5", null, "5.5", null, "0.6", null, "7.2", null, "0.6", null, "7.8", null, "0.6", null, "6.2", null, "0.5", null, "6.5", null, "0.5", null, "6.5", null, "0.5", null, "6.8", null, "0.7", null, "6.2", null, "0.6", null, "6.0", null, "0.4", null, "7.3", null, "0.5", null, "6.8", null, "0.6", null, "6.2", null, "0.6", null, "5.2", null, "0.4", null, "4.0", null, "0.5", null, "2.9", null, "0.4", null, "2.2", null, "0.4", null, "0.8", null, "0.2", null, "12.7", null, "0.5", null, "5.1", null, "0.4", null, "23.6", null, "0.8", null, "9.0", null, "0.5", null, "40.1", null, "0.7", null, "80.1", null, "0.7", null, "76.4", null, "0.8", null, "72.4", null, "0.9", null, "21.3", null, "0.7", null, "19.0", null, "0.6", null, "15.1", null, "0.4", null, "5.9", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "406175", null, "5232", null, "18497", null, "1588", null, "25466", null, "2864", null, "26637", null, "2846", null, "25713", null, "2207", null, "27122", null, "1984", null, "23874", null, "1432", null, "26196", null, "2046", null, "26727", null, "2539", null, "27142", null, "2666", null, "25710", null, "1692", null, "28225", null, "1596", null, "26032", null, "2127", null, "26628", null, "1975", null, "21793", null, "1630", null, "19812", null, "1722", null, "13394", null, "1554", null, "8477", null, "1174", null, "8730", null, "1481", null, "52103", null, "2684", null, "17758", null, "1702", null, "88358", null, "3531", null, "35077", null, "2023", null, "156774", null, "3450", null, "330058", null, "3737", null, "317817", null, "3433", null, "303937", null, "3515", null, "98834", null, "2649", null, "88216", null, "2710", null, "72206", null, "1859", null, "30601", null, "1181", null, "40.6", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.6", null, "0.4", null, "6.3", null, "0.7", null, "6.6", null, "0.7", null, "6.3", null, "0.5", null, "6.7", null, "0.5", null, "5.9", null, "0.4", null, "6.4", null, "0.5", null, "6.6", null, "0.6", null, "6.7", null, "0.7", null, "6.3", null, "0.4", null, "6.9", null, "0.4", null, "6.4", null, "0.5", null, "6.6", null, "0.5", null, "5.4", null, "0.4", null, "4.9", null, "0.4", null, "3.3", null, "0.4", null, "2.1", null, "0.3", null, "2.1", null, "0.4", null, "12.8", null, "0.6", null, "4.4", null, "0.4", null, "21.8", null, "0.7", null, "8.6", null, "0.5", null, "38.6", null, "0.8", null, "81.3", null, "0.7", null, "78.2", null, "0.7", null, "74.8", null, "0.8", null, "24.3", null, "0.7", null, "21.7", null, "0.6", null, "17.8", null, "0.4", null, "7.5", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13", "14"], ["5001900US1501", "Congressional District 1 (119th Congress), Hawaii", "719060", null, "11399", null, "37416", null, "1937", null, "39227", null, "3586", null, "36889", null, "3055", null, "36660", null, "1665", null, "42414", null, "2105", null, "49628", null, "2045", null, "51186", null, "2714", null, "49060", null, "3681", null, "46055", null, "3479", null, "44603", null, "2001", null, "44491", null, "1497", null, "42876", null, "2444", null, "44959", null, "2082", null, "42929", null, "2496", null, "33678", null, "2423", null, "33968", null, "2225", null, "21295", null, "1929", null, "21726", null, "2213", null, "76116", null, "3945", null, "22421", null, "1070", null, "135953", null, "5021", null, "56653", null, "2451", null, "275003", null, "6565", null, "598439", null, "8073", null, "583107", null, "7880", null, "561495", null, "7599", null, "198555", null, "3739", null, "178896", null, "3465", null, "153596", null, "3092", null, "76989", null, "2193", null, "42.0", null, "0.7", null, "100.9", null, "1.8", null, "67.4", null, "1.4", null, "35.8", null, "0.9", null, "31.7", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.3", null, "5.5", null, "0.5", null, "5.1", null, "0.4", null, "5.1", null, "0.2", null, "5.9", null, "0.3", null, "6.9", null, "0.3", null, "7.1", null, "0.3", null, "6.8", null, "0.5", null, "6.4", null, "0.5", null, "6.2", null, "0.3", null, "6.2", null, "0.2", null, "6.0", null, "0.3", null, "6.3", null, "0.3", null, "6.0", null, "0.3", null, "4.7", null, "0.3", null, "4.7", null, "0.3", null, "3.0", null, "0.3", null, "3.0", null, "0.3", null, "10.6", null, "0.4", null, "3.1", null, "0.1", null, "18.9", null, "0.5", null, "7.9", null, "0.3", null, "38.2", null, "0.6", null, "83.2", null, "0.5", null, "81.1", null, "0.5", null, "78.1", null, "0.5", null, "27.6", null, "0.6", null, "24.9", null, "0.5", null, "21.4", null, "0.4", null, "10.7", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.8", null, "-888888888.0", "(X)", "361156", null, "6609", null, "19848", null, "1288", null, "20990", null, "2455", null, "18742", null, "2161", null, "19261", null, "1124", null, "22503", null, "1471", null, "26586", null, "1297", null, "26630", null, "1701", null, "26200", null, "2401", null, "22995", null, "2399", null, "22689", null, "1299", null, "22151", null, "911", null, "21003", null, "1695", null, "21853", null, "1479", null, "20809", null, "1507", null, "16277", null, "1466", null, "15446", null, "1377", null, "9366", null, "1152", null, "7807", null, "1271", null, "39732", null, "2400", null, "11650", null, "814", null, "71230", null, "2915", null, "30114", null, "1750", null, "144175", null, "3862", null, "297974", null, "4870", null, "289926", null, "4807", null, "278544", null, "4561", null, "91558", null, "2494", null, "81427", null, "2262", null, "69705", null, "1772", null, "32619", null, "1192", null, "40.0", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.3", null, "5.8", null, "0.6", null, "5.2", null, "0.6", null, "5.3", null, "0.3", null, "6.2", null, "0.4", null, "7.4", null, "0.4", null, "7.4", null, "0.4", null, "7.3", null, "0.6", null, "6.4", null, "0.7", null, "6.3", null, "0.3", null, "6.1", null, "0.3", null, "5.8", null, "0.5", null, "6.1", null, "0.4", null, "5.8", null, "0.4", null, "4.5", null, "0.4", null, "4.3", null, "0.4", null, "2.6", null, "0.3", null, "2.2", null, "0.3", null, "11.0", null, "0.6", null, "3.2", null, "0.2", null, "19.7", null, "0.6", null, "8.3", null, "0.5", null, "39.9", null, "0.7", null, "82.5", null, "0.6", null, "80.3", null, "0.6", null, "77.1", null, "0.7", null, "25.4", null, "0.7", null, "22.5", null, "0.6", null, "19.3", null, "0.5", null, "9.0", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "357904", null, "6472", null, "17568", null, "1249", null, "18237", null, "2201", null, "18147", null, "2347", null, "17399", null, "1205", null, "19911", null, "1441", null, "23042", null, "1209", null, "24556", null, "1446", null, "22860", null, "2183", null, "23060", null, "2021", null, "21914", null, "1224", null, "22340", null, "1007", null, "21873", null, "1777", null, "23106", null, "1708", null, "22120", null, "1695", null, "17401", null, "1611", null, "18522", null, "1722", null, "11929", null, "1497", null, "13919", null, "1576", null, "36384", null, "2436", null, "10771", null, "744", null, "64723", null, "2943", null, "26539", null, "1693", null, "130828", null, "3685", null, "300465", null, "4765", null, "293181", null, "4543", null, "282951", null, "4392", null, "106997", null, "2218", null, "97469", null, "2221", null, "83891", null, "1924", null, "44370", null, "1487", null, "43.8", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.9", null, "0.3", null, "5.1", null, "0.6", null, "5.1", null, "0.6", null, "4.9", null, "0.3", null, "5.6", null, "0.4", null, "6.4", null, "0.3", null, "6.9", null, "0.4", null, "6.4", null, "0.6", null, "6.4", null, "0.6", null, "6.1", null, "0.3", null, "6.2", null, "0.3", null, "6.1", null, "0.5", null, "6.5", null, "0.5", null, "6.2", null, "0.5", null, "4.9", null, "0.5", null, "5.2", null, "0.5", null, "3.3", null, "0.4", null, "3.9", null, "0.4", null, "10.2", null, "0.6", null, "3.0", null, "0.2", null, "18.1", null, "0.6", null, "7.4", null, "0.4", null, "36.6", null, "0.6", null, "84.0", null, "0.7", null, "81.9", null, "0.6", null, "79.1", null, "0.7", null, "29.9", null, "0.7", null, "27.2", null, "0.6", null, "23.4", null, "0.5", null, "12.4", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15", "01"], ["5001900US1502", "Congressional District 2 (119th Congress), Hawaii", "727086", null, "11399", null, "38641", null, "2061", null, "47516", null, "3641", null, "44983", null, "3032", null, "42966", null, "2881", null, "42461", null, "2969", null, "40325", null, "3266", null, "44567", null, "2956", null, "48323", null, "3986", null, "53726", null, "3695", null, "40119", null, "2366", null, "40076", null, "1778", null, "40636", null, "2796", null, "45038", null, "2838", null, "47331", null, "3026", null, "43449", null, "2929", null, "33702", null, "2844", null, "16246", null, "1769", null, "16981", null, "2265", null, "92499", null, "4142", null, "26467", null, "1616", null, "157607", null, "5008", null, "58960", null, "3275", null, "272368", null, "7070", null, "586047", null, "8680", null, "569479", null, "7895", null, "546293", null, "7712", null, "202747", null, "4274", null, "185504", null, "4281", null, "157709", null, "3095", null, "66929", null, "2413", null, "41.2", null, "0.7", null, "99.6", null, "1.9", null, "76.6", null, "1.5", null, "38.3", null, "1.0", null, "38.3", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.3", null, "0.3", null, "6.5", null, "0.5", null, "6.2", null, "0.4", null, "5.9", null, "0.4", null, "5.8", null, "0.4", null, "5.5", null, "0.4", null, "6.1", null, "0.4", null, "6.6", null, "0.5", null, "7.4", null, "0.5", null, "5.5", null, "0.3", null, "5.5", null, "0.2", null, "5.6", null, "0.4", null, "6.2", null, "0.4", null, "6.5", null, "0.4", null, "6.0", null, "0.4", null, "4.6", null, "0.4", null, "2.2", null, "0.2", null, "2.3", null, "0.3", null, "12.7", null, "0.5", null, "3.6", null, "0.2", null, "21.7", null, "0.5", null, "8.1", null, "0.4", null, "37.5", null, "0.6", null, "80.6", null, "0.5", null, "78.3", null, "0.5", null, "75.1", null, "0.5", null, "27.9", null, "0.6", null, "25.5", null, "0.6", null, "21.7", null, "0.4", null, "9.2", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "2.3", null, "-888888888.0", "(X)", "362767", null, "6844", null, "19769", null, "1571", null, "24907", null, "2393", null, "22260", null, "2159", null, "21836", null, "2020", null, "24468", null, "2117", null, "20109", null, "1814", null, "22562", null, "2053", null, "24046", null, "2701", null, "25844", null, "2679", null, "20384", null, "1550", null, "20140", null, "1175", null, "19476", null, "1821", null, "23240", null, "1964", null, "22076", null, "1933", null, "21570", null, "1800", null, "17309", null, "1604", null, "6652", null, "991", null, "6119", null, "1167", null, "47167", null, "2575", null, "13311", null, "1360", null, "80247", null, "3249", null, "32993", null, "2461", null, "138865", null, "4230", null, "290670", null, "5481", null, "282520", null, "4905", null, "269915", null, "4830", null, "96966", null, "2710", null, "87379", null, "2796", null, "73726", null, "1780", null, "30080", null, "1278", null, "40.2", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.4", null, "6.9", null, "0.6", null, "6.1", null, "0.6", null, "6.0", null, "0.5", null, "6.7", null, "0.6", null, "5.5", null, "0.5", null, "6.2", null, "0.5", null, "6.6", null, "0.7", null, "7.1", null, "0.7", null, "5.6", null, "0.4", null, "5.6", null, "0.3", null, "5.4", null, "0.5", null, "6.4", null, "0.5", null, "6.1", null, "0.5", null, "5.9", null, "0.5", null, "4.8", null, "0.4", null, "1.8", null, "0.3", null, "1.7", null, "0.3", null, "13.0", null, "0.6", null, "3.7", null, "0.4", null, "22.1", null, "0.6", null, "9.1", null, "0.6", null, "38.3", null, "0.8", null, "80.1", null, "0.7", null, "77.9", null, "0.6", null, "74.4", null, "0.7", null, "26.7", null, "0.7", null, "24.1", null, "0.7", null, "20.3", null, "0.5", null, "8.3", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "364319", null, "6517", null, "18872", null, "1680", null, "22609", null, "2138", null, "22723", null, "2137", null, "21130", null, "1989", null, "17993", null, "1948", null, "20216", null, "1950", null, "22005", null, "1604", null, "24277", null, "2345", null, "27882", null, "2394", null, "19735", null, "1382", null, "19936", null, "1052", null, "21160", null, "2212", null, "21798", null, "2007", null, "25255", null, "2217", null, "21879", null, "2252", null, "16393", null, "1976", null, "9594", null, "1444", null, "10862", null, "1725", null, "45332", null, "2450", null, "13156", null, "1454", null, "77360", null, "3368", null, "25967", null, "2004", null, "133503", null, "4126", null, "295377", null, "4827", null, "286959", null, "4563", null, "276378", null, "4445", null, "105781", null, "2725", null, "98125", null, "2475", null, "83983", null, "1976", null, "36849", null, "1674", null, "42.3", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.4", null, "6.2", null, "0.6", null, "6.2", null, "0.6", null, "5.8", null, "0.5", null, "4.9", null, "0.5", null, "5.5", null, "0.5", null, "6.0", null, "0.4", null, "6.7", null, "0.6", null, "7.7", null, "0.7", null, "5.4", null, "0.4", null, "5.5", null, "0.3", null, "5.8", null, "0.6", null, "6.0", null, "0.6", null, "6.9", null, "0.6", null, "6.0", null, "0.6", null, "4.5", null, "0.5", null, "2.6", null, "0.4", null, "3.0", null, "0.5", null, "12.4", null, "0.6", null, "3.6", null, "0.4", null, "21.2", null, "0.7", null, "7.1", null, "0.5", null, "36.6", null, "0.8", null, "81.1", null, "0.7", null, "78.8", null, "0.7", null, "75.9", null, "0.7", null, "29.0", null, "0.8", null, "26.9", null, "0.7", null, "23.1", null, "0.6", null, "10.1", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15", "02"], ["5001900US1601", "Congressional District 1 (119th Congress), Idaho", "1033662", null, "5309", null, "57634", null, "1954", null, "63548", null, "3549", null, "75296", null, "3847", null, "69618", null, "2419", null, "60261", null, "2668", null, "63515", null, "2607", null, "64797", null, "2367", null, "69653", null, "4012", null, "70867", null, "3725", null, "60634", null, "1837", null, "59640", null, "1790", null, "52222", null, "2734", null, "69256", null, "3520", null, "59412", null, "2634", null, "58619", null, "2682", null, "37754", null, "2118", null, "24324", null, "2129", null, "16612", null, "1717", null, "138844", null, "3515", null, "44760", null, "1448", null, "241238", null, "4131", null, "85119", null, "2945", null, "398711", null, "4255", null, "822231", null, "4801", null, "792424", null, "4533", null, "753974", null, "5096", null, "265977", null, "4344", null, "239679", null, "4004", null, "196721", null, "2915", null, "78690", null, "2005", null, "39.4", null, "0.4", null, "102.7", null, "1.2", null, "73.5", null, "1.0", null, "33.0", null, "0.6", null, "40.5", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.6", null, "0.2", null, "6.1", null, "0.3", null, "7.3", null, "0.4", null, "6.7", null, "0.2", null, "5.8", null, "0.3", null, "6.1", null, "0.3", null, "6.3", null, "0.2", null, "6.7", null, "0.4", null, "6.9", null, "0.4", null, "5.9", null, "0.2", null, "5.8", null, "0.2", null, "5.1", null, "0.3", null, "6.7", null, "0.3", null, "5.7", null, "0.3", null, "5.7", null, "0.3", null, "3.7", null, "0.2", null, "2.4", null, "0.2", null, "1.6", null, "0.2", null, "13.4", null, "0.3", null, "4.3", null, "0.1", null, "23.3", null, "0.3", null, "8.2", null, "0.3", null, "38.6", null, "0.4", null, "79.5", null, "0.3", null, "76.7", null, "0.3", null, "72.9", null, "0.4", null, "25.7", null, "0.4", null, "23.2", null, "0.4", null, "19.0", null, "0.3", null, "7.6", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.2", null, "-888888888.0", "(X)", "523613", null, "4149", null, "31047", null, "1324", null, "30718", null, "2433", null, "39798", null, "2901", null, "35912", null, "1594", null, "32818", null, "1985", null, "33381", null, "1658", null, "33455", null, "1610", null, "35280", null, "2812", null, "37098", null, "2500", null, "30122", null, "1329", null, "30104", null, "1175", null, "25569", null, "2043", null, "33729", null, "2406", null, "28227", null, "1890", null, "30022", null, "1850", null, "17124", null, "1321", null, "11714", null, "1412", null, "7495", null, "1121", null, "70516", null, "2368", null, "23389", null, "1124", null, "124952", null, "2633", null, "45341", null, "2061", null, "207944", null, "3112", null, "414092", null, "3684", null, "398661", null, "3291", null, "378609", null, "3249", null, "128311", null, "2662", null, "115859", null, "2550", null, "94582", null, "1722", null, "36333", null, "1201", null, "38.4", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.9", null, "0.2", null, "5.9", null, "0.5", null, "7.6", null, "0.6", null, "6.9", null, "0.3", null, "6.3", null, "0.4", null, "6.4", null, "0.3", null, "6.4", null, "0.3", null, "6.7", null, "0.5", null, "7.1", null, "0.5", null, "5.8", null, "0.2", null, "5.7", null, "0.2", null, "4.9", null, "0.4", null, "6.4", null, "0.5", null, "5.4", null, "0.4", null, "5.7", null, "0.4", null, "3.3", null, "0.3", null, "2.2", null, "0.3", null, "1.4", null, "0.2", null, "13.5", null, "0.4", null, "4.5", null, "0.2", null, "23.9", null, "0.4", null, "8.7", null, "0.4", null, "39.7", null, "0.5", null, "79.1", null, "0.5", null, "76.1", null, "0.4", null, "72.3", null, "0.5", null, "24.5", null, "0.5", null, "22.1", null, "0.5", null, "18.1", null, "0.4", null, "6.9", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "510049", null, "3774", null, "26587", null, "1487", null, "32830", null, "2865", null, "35498", null, "2729", null, "33706", null, "1700", null, "27443", null, "1713", null, "30134", null, "1510", null, "31342", null, "1491", null, "34373", null, "2582", null, "33769", null, "2311", null, "30512", null, "1249", null, "29536", null, "1055", null, "26653", null, "1890", null, "35527", null, "2120", null, "31185", null, "1899", null, "28597", null, "1809", null, "20630", null, "1575", null, "12610", null, "1412", null, "9117", null, "1216", null, "68328", null, "2128", null, "21371", null, "1021", null, "116286", null, "2739", null, "39778", null, "1925", null, "190767", null, "3144", null, "408139", null, "3171", null, "393763", null, "2906", null, "375365", null, "3566", null, "137666", null, "2897", null, "123820", null, "2630", null, "102139", null, "2116", null, "42357", null, "1378", null, "40.5", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.3", null, "6.4", null, "0.6", null, "7.0", null, "0.5", null, "6.6", null, "0.3", null, "5.4", null, "0.3", null, "5.9", null, "0.3", null, "6.1", null, "0.3", null, "6.7", null, "0.5", null, "6.6", null, "0.5", null, "6.0", null, "0.2", null, "5.8", null, "0.2", null, "5.2", null, "0.4", null, "7.0", null, "0.4", null, "6.1", null, "0.4", null, "5.6", null, "0.4", null, "4.0", null, "0.3", null, "2.5", null, "0.3", null, "1.8", null, "0.2", null, "13.4", null, "0.4", null, "4.2", null, "0.2", null, "22.8", null, "0.4", null, "7.8", null, "0.4", null, "37.4", null, "0.5", null, "80.0", null, "0.5", null, "77.2", null, "0.4", null, "73.6", null, "0.6", null, "27.0", null, "0.6", null, "24.3", null, "0.5", null, "20.0", null, "0.4", null, "8.3", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16", "01"], ["5001900US1602", "Congressional District 2 (119th Congress), Idaho", "967957", null, "5309", null, "52961", null, "1611", null, "62916", null, "3073", null, "65786", null, "3662", null, "76730", null, "3425", null, "81462", null, "3724", null, "64745", null, "2270", null, "66264", null, "2679", null, "66463", null, "4520", null, "60367", null, "4117", null, "55212", null, "2390", null, "50129", null, "2321", null, "51813", null, "2947", null, "54279", null, "2514", null, "50126", null, "2850", null, "44689", null, "2874", null, "27851", null, "2266", null, "20012", null, "1974", null, "16152", null, "1453", null, "128702", null, "3151", null, "44346", null, "1964", null, "226009", null, "3795", null, "113846", null, "3193", null, "416031", null, "4780", null, "771563", null, "4558", null, "741948", null, "4489", null, "695249", null, "5635", null, "213109", null, "3969", null, "189883", null, "3861", null, "158830", null, "2992", null, "64015", null, "1878", null, "36.0", null, "0.4", null, "99.9", null, "1.4", null, "66.0", null, "0.9", null, "27.2", null, "0.6", null, "38.8", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.2", null, "6.5", null, "0.3", null, "6.8", null, "0.4", null, "7.9", null, "0.3", null, "8.4", null, "0.4", null, "6.7", null, "0.2", null, "6.8", null, "0.3", null, "6.9", null, "0.5", null, "6.2", null, "0.4", null, "5.7", null, "0.2", null, "5.2", null, "0.2", null, "5.4", null, "0.3", null, "5.6", null, "0.3", null, "5.2", null, "0.3", null, "4.6", null, "0.3", null, "2.9", null, "0.2", null, "2.1", null, "0.2", null, "1.7", null, "0.2", null, "13.3", null, "0.3", null, "4.6", null, "0.2", null, "23.3", null, "0.3", null, "11.8", null, "0.3", null, "43.0", null, "0.4", null, "79.7", null, "0.3", null, "76.7", null, "0.3", null, "71.8", null, "0.5", null, "22.0", null, "0.4", null, "19.6", null, "0.4", null, "16.4", null, "0.3", null, "6.6", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.4", null, "-888888888.0", "(X)", "483620", null, "4526", null, "26353", null, "1677", null, "33999", null, "2091", null, "32862", null, "2116", null, "38017", null, "2478", null, "38579", null, "2100", null, "34774", null, "1531", null, "32954", null, "1608", null, "32744", null, "2412", null, "31216", null, "2369", null, "28791", null, "1692", null, "24870", null, "1415", null, "25304", null, "2029", null, "28572", null, "1956", null, "23137", null, "1878", null, "22272", null, "1828", null, "13043", null, "1595", null, "8698", null, "1398", null, "7435", null, "871", null, "66861", null, "1963", null, "22293", null, "1648", null, "115507", null, "2640", null, "54303", null, "2131", null, "208284", null, "3399", null, "383487", null, "3540", null, "368113", null, "3360", null, "344643", null, "3831", null, "103157", null, "2583", null, "90639", null, "2519", null, "74585", null, "1937", null, "29176", null, "1175", null, "35.7", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.3", null, "7.0", null, "0.4", null, "6.8", null, "0.4", null, "7.9", null, "0.5", null, "8.0", null, "0.4", null, "7.2", null, "0.3", null, "6.8", null, "0.3", null, "6.8", null, "0.5", null, "6.5", null, "0.5", null, "6.0", null, "0.3", null, "5.1", null, "0.3", null, "5.2", null, "0.4", null, "5.9", null, "0.4", null, "4.8", null, "0.4", null, "4.6", null, "0.4", null, "2.7", null, "0.3", null, "1.8", null, "0.3", null, "1.5", null, "0.2", null, "13.8", null, "0.4", null, "4.6", null, "0.3", null, "23.9", null, "0.4", null, "11.2", null, "0.4", null, "43.1", null, "0.6", null, "79.3", null, "0.4", null, "76.1", null, "0.4", null, "71.3", null, "0.6", null, "21.3", null, "0.5", null, "18.7", null, "0.5", null, "15.4", null, "0.4", null, "6.0", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "484337", null, "4018", null, "26608", null, "1535", null, "28917", null, "2324", null, "32924", null, "2512", null, "38713", null, "2391", null, "42883", null, "2637", null, "29971", null, "1760", null, "33310", null, "2030", null, "33719", null, "2855", null, "29151", null, "2555", null, "26421", null, "1336", null, "25259", null, "1533", null, "26509", null, "1858", null, "25707", null, "1866", null, "26989", null, "1701", null, "22417", null, "1880", null, "14808", null, "1302", null, "11314", null, "1376", null, "8717", null, "1271", null, "61841", null, "2348", null, "22053", null, "1374", null, "110502", null, "2779", null, "59543", null, "2235", null, "207747", null, "3428", null, "388076", null, "3368", null, "373835", null, "3125", null, "350606", null, "3744", null, "109952", null, "2663", null, "99244", null, "2496", null, "84245", null, "1788", null, "34839", null, "1180", null, "36.3", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.3", null, "6.0", null, "0.5", null, "6.8", null, "0.5", null, "8.0", null, "0.5", null, "8.9", null, "0.5", null, "6.2", null, "0.4", null, "6.9", null, "0.4", null, "7.0", null, "0.6", null, "6.0", null, "0.5", null, "5.5", null, "0.3", null, "5.2", null, "0.3", null, "5.5", null, "0.4", null, "5.3", null, "0.4", null, "5.6", null, "0.3", null, "4.6", null, "0.4", null, "3.1", null, "0.3", null, "2.3", null, "0.3", null, "1.8", null, "0.3", null, "12.8", null, "0.5", null, "4.6", null, "0.3", null, "22.8", null, "0.5", null, "12.3", null, "0.4", null, "42.9", null, "0.5", null, "80.1", null, "0.5", null, "77.2", null, "0.5", null, "72.4", null, "0.6", null, "22.7", null, "0.5", null, "20.5", null, "0.5", null, "17.4", null, "0.4", null, "7.2", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16", "02"], ["5001900US1701", "Congressional District 1 (119th Congress), Illinois", "735259", null, "20417", null, "38836", null, "5050", null, "46483", null, "5178", null, "47867", null, "4718", null, "48538", null, "4155", null, "51155", null, "4804", null, "41583", null, "4970", null, "46237", null, "4839", null, "49396", null, "4983", null, "48781", null, "4717", null, "45655", null, "4049", null, "46993", null, "3923", null, "37553", null, "3379", null, "46762", null, "3862", null, "44978", null, "3523", null, "36625", null, "3470", null, "23943", null, "2252", null, "18916", null, "2478", null, "14958", null, "1939", null, "94350", null, "7151", null, "28572", null, "3184", null, "161758", null, "11507", null, "71121", null, "5413", null, "285690", null, "13003", null, "593322", null, "13801", null, "573501", null, "12506", null, "542716", null, "12449", null, "186182", null, "6832", null, "168743", null, "6403", null, "139420", null, "5881", null, "57817", null, "3399", null, "39.8", null, "1.1", null, "92.5", null, "3.0", null, "69.4", null, "2.8", null, "32.1", null, "2.0", null, "37.3", null, "2.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.3", null, "0.6", null, "6.3", null, "0.6", null, "6.5", null, "0.6", null, "6.6", null, "0.5", null, "7.0", null, "0.6", null, "5.7", null, "0.7", null, "6.3", null, "0.6", null, "6.7", null, "0.6", null, "6.6", null, "0.6", null, "6.2", null, "0.5", null, "6.4", null, "0.6", null, "5.1", null, "0.5", null, "6.4", null, "0.5", null, "6.1", null, "0.5", null, "5.0", null, "0.5", null, "3.3", null, "0.3", null, "2.6", null, "0.4", null, "2.0", null, "0.3", null, "12.8", null, "0.7", null, "3.9", null, "0.4", null, "22.0", null, "1.1", null, "9.7", null, "0.7", null, "38.9", null, "1.0", null, "80.7", null, "1.0", null, "78.0", null, "1.1", null, "73.8", null, "1.1", null, "25.3", null, "1.2", null, "23.0", null, "1.1", null, "19.0", null, "1.0", null, "7.9", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.7", null, "-888888888.0", "(X)", "353354", null, "10995", null, "20190", null, "3553", null, "23713", null, "3453", null, "23210", null, "2934", null, "24826", null, "2555", null, "27159", null, "3259", null, "21604", null, "3275", null, "24066", null, "3447", null, "23642", null, "3046", null, "25335", null, "3519", null, "20858", null, "2760", null, "21610", null, "2597", null, "17480", null, "2002", null, "22233", null, "2787", null, "20672", null, "2123", null, "15940", null, "2002", null, "9555", null, "1566", null, "6999", null, "1174", null, "4262", null, "1009", null, "46923", null, "3999", null, "15467", null, "1804", null, "82580", null, "6245", null, "36518", null, "3693", null, "146632", null, "8054", null, "281070", null, "8265", null, "270774", null, "7846", null, "256079", null, "7334", null, "79661", null, "3513", null, "71390", null, "3385", null, "57428", null, "2971", null, "20816", null, "1910", null, "37.4", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.7", null, "0.9", null, "6.7", null, "0.9", null, "6.6", null, "0.8", null, "7.0", null, "0.7", null, "7.7", null, "0.9", null, "6.1", null, "0.9", null, "6.8", null, "0.9", null, "6.7", null, "0.8", null, "7.2", null, "0.9", null, "5.9", null, "0.8", null, "6.1", null, "0.8", null, "4.9", null, "0.6", null, "6.3", null, "0.8", null, "5.9", null, "0.6", null, "4.5", null, "0.6", null, "2.7", null, "0.5", null, "2.0", null, "0.3", null, "1.2", null, "0.3", null, "13.3", null, "1.0", null, "4.4", null, "0.5", null, "23.4", null, "1.3", null, "10.3", null, "0.9", null, "41.5", null, "1.5", null, "79.5", null, "1.3", null, "76.6", null, "1.3", null, "72.5", null, "1.4", null, "22.5", null, "1.2", null, "20.2", null, "1.2", null, "16.3", null, "1.1", null, "5.9", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "381905", null, "12632", null, "18646", null, "3035", null, "22770", null, "3494", null, "24657", null, "3364", null, "23712", null, "2802", null, "23996", null, "3413", null, "19979", null, "2909", null, "22171", null, "2768", null, "25754", null, "3113", null, "23446", null, "2722", null, "24797", null, "2473", null, "25383", null, "2514", null, "20073", null, "2373", null, "24529", null, "2210", null, "24306", null, "2290", null, "20685", null, "2345", null, "14388", null, "1562", null, "11917", null, "2124", null, "10696", null, "1586", null, "47427", null, "4737", null, "13105", null, "2315", null, "79178", null, "6951", null, "34603", null, "3973", null, "139058", null, "8094", null, "312252", null, "8948", null, "302727", null, "8129", null, "286637", null, "8107", null, "106521", null, "4795", null, "97353", null, "4707", null, "81992", null, "4244", null, "37001", null, "2594", null, "41.7", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.9", null, "0.8", null, "6.0", null, "0.8", null, "6.5", null, "0.8", null, "6.2", null, "0.7", null, "6.3", null, "0.8", null, "5.2", null, "0.7", null, "5.8", null, "0.7", null, "6.7", null, "0.8", null, "6.1", null, "0.7", null, "6.5", null, "0.6", null, "6.6", null, "0.7", null, "5.3", null, "0.6", null, "6.4", null, "0.6", null, "6.4", null, "0.6", null, "5.4", null, "0.6", null, "3.8", null, "0.4", null, "3.1", null, "0.6", null, "2.8", null, "0.4", null, "12.4", null, "1.0", null, "3.4", null, "0.6", null, "20.7", null, "1.3", null, "9.1", null, "1.0", null, "36.4", null, "1.3", null, "81.8", null, "1.2", null, "79.3", null, "1.3", null, "75.1", null, "1.3", null, "27.9", null, "1.6", null, "25.5", null, "1.5", null, "21.5", null, "1.3", null, "9.7", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17", "01"], ["5001900US1702", "Congressional District 2 (119th Congress), Illinois", "732352", null, "14822", null, "37398", null, "3801", null, "50493", null, "4853", null, "47098", null, "4488", null, "47578", null, "4218", null, "39453", null, "4690", null, "47225", null, "4946", null, "50640", null, "4554", null, "42895", null, "4396", null, "44851", null, "4322", null, "43412", null, "4279", null, "44751", null, "3993", null, "46047", null, "3537", null, "53947", null, "3997", null, "46026", null, "3682", null, "34385", null, "3113", null, "23861", null, "2597", null, "15967", null, "1790", null, "16325", null, "2153", null, "97591", null, "6675", null, "31268", null, "3448", null, "166257", null, "9068", null, "55763", null, "5563", null, "272642", null, "11758", null, "586324", null, "11945", null, "566095", null, "11938", null, "542799", null, "11835", null, "190511", null, "7068", null, "169995", null, "6574", null, "136564", null, "5342", null, "56153", null, "3482", null, "40.3", null, "1.1", null, "91.3", null, "3.4", null, "70.5", null, "3.0", null, "31.8", null, "1.7", null, "38.7", null, "2.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.1", null, "0.5", null, "6.9", null, "0.6", null, "6.4", null, "0.6", null, "6.5", null, "0.5", null, "5.4", null, "0.6", null, "6.4", null, "0.6", null, "6.9", null, "0.6", null, "5.9", null, "0.6", null, "6.1", null, "0.6", null, "5.9", null, "0.6", null, "6.1", null, "0.6", null, "6.3", null, "0.5", null, "7.4", null, "0.5", null, "6.3", null, "0.5", null, "4.7", null, "0.4", null, "3.3", null, "0.4", null, "2.2", null, "0.2", null, "2.2", null, "0.3", null, "13.3", null, "0.8", null, "4.3", null, "0.5", null, "22.7", null, "1.0", null, "7.6", null, "0.7", null, "37.2", null, "1.1", null, "80.1", null, "1.0", null, "77.3", null, "1.0", null, "74.1", null, "1.1", null, "26.0", null, "1.0", null, "23.2", null, "1.0", null, "18.6", null, "0.8", null, "7.7", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.2", null, "-888888888.0", "(X)", "349472", null, "9577", null, "18794", null, "2818", null, "28095", null, "3566", null, "22300", null, "3002", null, "24425", null, "2871", null, "18407", null, "2599", null, "23852", null, "3634", null, "24799", null, "2761", null, "18959", null, "2725", null, "20588", null, "2947", null, "22080", null, "3054", null, "21282", null, "2598", null, "21183", null, "2422", null, "25897", null, "2457", null, "22927", null, "2424", null, "14152", null, "1810", null, "9736", null, "1410", null, "7105", null, "1160", null, "4891", null, "1167", null, "50395", null, "4203", null, "15607", null, "2472", null, "84796", null, "5807", null, "27225", null, "3496", null, "131030", null, "7212", null, "274247", null, "7989", null, "264676", null, "7796", null, "252926", null, "7505", null, "84708", null, "4403", null, "74950", null, "4464", null, "58811", null, "3474", null, "21732", null, "2085", null, "38.5", null, "1.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.7", null, "8.0", null, "1.0", null, "6.4", null, "0.8", null, "7.0", null, "0.8", null, "5.3", null, "0.7", null, "6.8", null, "1.0", null, "7.1", null, "0.7", null, "5.4", null, "0.8", null, "5.9", null, "0.8", null, "6.3", null, "0.9", null, "6.1", null, "0.8", null, "6.1", null, "0.7", null, "7.4", null, "0.7", null, "6.6", null, "0.7", null, "4.0", null, "0.5", null, "2.8", null, "0.4", null, "2.0", null, "0.3", null, "1.4", null, "0.3", null, "14.4", null, "1.1", null, "4.5", null, "0.7", null, "24.3", null, "1.4", null, "7.8", null, "0.9", null, "37.5", null, "1.5", null, "78.5", null, "1.4", null, "75.7", null, "1.4", null, "72.4", null, "1.4", null, "24.2", null, "1.4", null, "21.4", null, "1.3", null, "16.8", null, "1.1", null, "6.2", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "382880", null, "10654", null, "18604", null, "2714", null, "22398", null, "3310", null, "24798", null, "3406", null, "23153", null, "2965", null, "21046", null, "3241", null, "23373", null, "2919", null, "25841", null, "3223", null, "23936", null, "3210", null, "24263", null, "3151", null, "21332", null, "3134", null, "23469", null, "2680", null, "24864", null, "2606", null, "28050", null, "2568", null, "23099", null, "2292", null, "20233", null, "2362", null, "14125", null, "1926", null, "8862", null, "1101", null, "11434", null, "1618", null, "47196", null, "4613", null, "15661", null, "2281", null, "81461", null, "6041", null, "28538", null, "3763", null, "141612", null, "7782", null, "312077", null, "9063", null, "301419", null, "8613", null, "289873", null, "8278", null, "105803", null, "4152", null, "95045", null, "3975", null, "77753", null, "3185", null, "34421", null, "2319", null, "41.6", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.9", null, "0.7", null, "5.8", null, "0.8", null, "6.5", null, "0.8", null, "6.0", null, "0.7", null, "5.5", null, "0.8", null, "6.1", null, "0.7", null, "6.7", null, "0.8", null, "6.3", null, "0.8", null, "6.3", null, "0.8", null, "5.6", null, "0.8", null, "6.1", null, "0.7", null, "6.5", null, "0.7", null, "7.3", null, "0.7", null, "6.0", null, "0.6", null, "5.3", null, "0.6", null, "3.7", null, "0.5", null, "2.3", null, "0.3", null, "3.0", null, "0.4", null, "12.3", null, "1.1", null, "4.1", null, "0.6", null, "21.3", null, "1.3", null, "7.5", null, "0.9", null, "37.0", null, "1.5", null, "81.5", null, "1.3", null, "78.7", null, "1.3", null, "75.7", null, "1.4", null, "27.6", null, "1.2", null, "24.8", null, "1.2", null, "20.3", null, "1.0", null, "9.0", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17", "02"], ["5001900US1703", "Congressional District 3 (119th Congress), Illinois", "732771", null, "20223", null, "42763", null, "4804", null, "41691", null, "4401", null, "43712", null, "4411", null, "46123", null, "4656", null, "47062", null, "4630", null, "53153", null, "4962", null, "66451", null, "5485", null, "54017", null, "5131", null, "56395", null, "5088", null, "45494", null, "3192", null, "45169", null, "3473", null, "37252", null, "3594", null, "42350", null, "3882", null, "37207", null, "3920", null, "28547", null, "3202", null, "23016", null, "3115", null, "12353", null, "1686", null, "10016", null, "1534", null, "85403", null, "6458", null, "27485", null, "3567", null, "155651", null, "10130", null, "65700", null, "5476", null, "323201", null, "11591", null, "594606", null, "13879", null, "577120", null, "12654", null, "550539", null, "12354", null, "153489", null, "6752", null, "134412", null, "6097", null, "111139", null, "6226", null, "45385", null, "3566", null, "37.4", null, "0.8", null, "99.7", null, "3.2", null, "57.3", null, "2.3", null, "23.9", null, "1.6", null, "33.4", null, "1.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.8", null, "0.6", null, "5.7", null, "0.5", null, "6.0", null, "0.6", null, "6.3", null, "0.6", null, "6.4", null, "0.6", null, "7.3", null, "0.7", null, "9.1", null, "0.7", null, "7.4", null, "0.7", null, "7.7", null, "0.6", null, "6.2", null, "0.4", null, "6.2", null, "0.4", null, "5.1", null, "0.5", null, "5.8", null, "0.5", null, "5.1", null, "0.5", null, "3.9", null, "0.4", null, "3.1", null, "0.4", null, "1.7", null, "0.2", null, "1.4", null, "0.2", null, "11.7", null, "0.7", null, "3.8", null, "0.4", null, "21.2", null, "0.9", null, "9.0", null, "0.7", null, "44.1", null, "1.0", null, "81.1", null, "0.9", null, "78.8", null, "0.9", null, "75.1", null, "1.0", null, "20.9", null, "1.0", null, "18.3", null, "0.9", null, "15.2", null, "0.9", null, "6.2", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.5", null, "-888888888.0", "(X)", "365853", null, "12162", null, "21565", null, "2888", null, "23052", null, "3096", null, "22411", null, "2979", null, "24324", null, "3194", null, "21575", null, "2885", null, "26625", null, "3527", null, "35045", null, "3182", null, "27540", null, "3613", null, "29854", null, "3835", null, "21799", null, "2169", null, "24082", null, "2845", null, "18091", null, "2507", null, "19645", null, "2392", null, "18057", null, "2691", null, "12987", null, "1890", null, "10551", null, "2000", null, "4843", null, "906", null, "3807", null, "1113", null, "45463", null, "4026", null, "14279", null, "2694", null, "81307", null, "6329", null, "31620", null, "3766", null, "164963", null, "7779", null, "293634", null, "9234", null, "284546", null, "9036", null, "270661", null, "8805", null, "69890", null, "4084", null, "60668", null, "3775", null, "50245", null, "3703", null, "19201", null, "2209", null, "36.3", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.9", null, "0.7", null, "6.3", null, "0.8", null, "6.1", null, "0.8", null, "6.6", null, "0.8", null, "5.9", null, "0.8", null, "7.3", null, "0.9", null, "9.6", null, "0.8", null, "7.5", null, "0.9", null, "8.2", null, "1.0", null, "6.0", null, "0.6", null, "6.6", null, "0.7", null, "4.9", null, "0.7", null, "5.4", null, "0.7", null, "4.9", null, "0.7", null, "3.5", null, "0.5", null, "2.9", null, "0.6", null, "1.3", null, "0.2", null, "1.0", null, "0.3", null, "12.4", null, "0.9", null, "3.9", null, "0.7", null, "22.2", null, "1.3", null, "8.6", null, "1.0", null, "45.1", null, "1.4", null, "80.3", null, "1.3", null, "77.8", null, "1.3", null, "74.0", null, "1.4", null, "19.1", null, "1.2", null, "16.6", null, "1.1", null, "13.7", null, "1.1", null, "5.2", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "366918", null, "11252", null, "21198", null, "3098", null, "18639", null, "2928", null, "21301", null, "2523", null, "21799", null, "3228", null, "25487", null, "3360", null, "26528", null, "2648", null, "31406", null, "3616", null, "26477", null, "2862", null, "26541", null, "3219", null, "23695", null, "2342", null, "21087", null, "2028", null, "19161", null, "1994", null, "22705", null, "2532", null, "19150", null, "2035", null, "15560", null, "2207", null, "12465", null, "2143", null, "7510", null, "1439", null, "6209", null, "1159", null, "39940", null, "4024", null, "13206", null, "2354", null, "74344", null, "6305", null, "34080", null, "4103", null, "158238", null, "7155", null, "300972", null, "7770", null, "292574", null, "6926", null, "279878", null, "6585", null, "83599", null, "4276", null, "73744", null, "3849", null, "60894", null, "3691", null, "26184", null, "2426", null, "38.4", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.8", null, "0.8", null, "5.1", null, "0.8", null, "5.8", null, "0.6", null, "5.9", null, "0.8", null, "6.9", null, "0.9", null, "7.2", null, "0.7", null, "8.6", null, "0.9", null, "7.2", null, "0.8", null, "7.2", null, "0.8", null, "6.5", null, "0.7", null, "5.7", null, "0.5", null, "5.2", null, "0.6", null, "6.2", null, "0.7", null, "5.2", null, "0.6", null, "4.2", null, "0.6", null, "3.4", null, "0.6", null, "2.0", null, "0.4", null, "1.7", null, "0.3", null, "10.9", null, "0.9", null, "3.6", null, "0.6", null, "20.3", null, "1.2", null, "9.3", null, "1.1", null, "43.1", null, "1.2", null, "82.0", null, "1.1", null, "79.7", null, "1.2", null, "76.3", null, "1.3", null, "22.8", null, "1.2", null, "20.1", null, "1.1", null, "16.6", null, "1.0", null, "7.1", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17", "03"], ["5001900US1704", "Congressional District 4 (119th Congress), Illinois", "712078", null, "21055", null, "32956", null, "4056", null, "41418", null, "4642", null, "45667", null, "4877", null, "54639", null, "4876", null, "51193", null, "4261", null, "51449", null, "4852", null, "50524", null, "5029", null, "48400", null, "4769", null, "46972", null, "4869", null, "47253", null, "4335", null, "51090", null, "4331", null, "40770", null, "3902", null, "44839", null, "4265", null, "33600", null, "3185", null, "29264", null, "3803", null, "18862", null, "2529", null, "13330", null, "2284", null, "9852", null, "1692", null, "87085", null, "6872", null, "36424", null, "3504", null, "156465", null, "9209", null, "69408", null, "4977", null, "303177", null, "11695", null, "580693", null, "17028", null, "555613", null, "16510", null, "528883", null, "16008", null, "149747", null, "7052", null, "131346", null, "6348", null, "104908", null, "5689", null, "42044", null, "3078", null, "38.1", null, "0.6", null, "103.8", null, "3.5", null, "58.0", null, "2.7", null, "23.3", null, "1.4", null, "34.7", null, "2.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.6", null, "0.5", null, "5.8", null, "0.6", null, "6.4", null, "0.7", null, "7.7", null, "0.7", null, "7.2", null, "0.6", null, "7.2", null, "0.6", null, "7.1", null, "0.6", null, "6.8", null, "0.7", null, "6.6", null, "0.7", null, "6.6", null, "0.6", null, "7.2", null, "0.6", null, "5.7", null, "0.5", null, "6.3", null, "0.6", null, "4.7", null, "0.4", null, "4.1", null, "0.5", null, "2.6", null, "0.3", null, "1.9", null, "0.3", null, "1.4", null, "0.2", null, "12.2", null, "0.8", null, "5.1", null, "0.5", null, "22.0", null, "1.0", null, "9.7", null, "0.6", null, "42.6", null, "0.9", null, "81.5", null, "1.0", null, "78.0", null, "1.0", null, "74.3", null, "1.1", null, "21.0", null, "0.9", null, "18.4", null, "0.9", null, "14.7", null, "0.8", null, "5.9", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.7", null, "-888888888.0", "(X)", "362594", null, "12348", null, "15658", null, "2592", null, "24388", null, "3433", null, "22348", null, "3312", null, "27169", null, "3800", null, "26414", null, "3423", null, "25977", null, "2946", null, "24808", null, "3392", null, "24966", null, "3249", null, "24081", null, "3224", null, "25368", null, "2639", null, "26129", null, "2699", null, "22039", null, "2396", null, "23475", null, "2692", null, "16770", null, "2138", null, "14415", null, "2199", null, "8213", null, "1645", null, "6096", null, "1557", null, "4280", null, "991", null, "46736", null, "4377", null, "17568", null, "2839", null, "79962", null, "5965", null, "36015", null, "3761", null, "153415", null, "8412", null, "294306", null, "10800", null, "282632", null, "10121", null, "267832", null, "9896", null, "73249", null, "4349", null, "63758", null, "4103", null, "49774", null, "3489", null, "18589", null, "2127", null, "38.0", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.3", null, "0.7", null, "6.7", null, "0.9", null, "6.2", null, "0.9", null, "7.5", null, "1.0", null, "7.3", null, "0.9", null, "7.2", null, "0.8", null, "6.8", null, "0.8", null, "6.9", null, "0.9", null, "6.6", null, "0.8", null, "7.0", null, "0.7", null, "7.2", null, "0.7", null, "6.1", null, "0.7", null, "6.5", null, "0.7", null, "4.6", null, "0.6", null, "4.0", null, "0.6", null, "2.3", null, "0.4", null, "1.7", null, "0.4", null, "1.2", null, "0.3", null, "12.9", null, "1.2", null, "4.8", null, "0.7", null, "22.1", null, "1.4", null, "9.9", null, "1.0", null, "42.3", null, "1.5", null, "81.2", null, "1.3", null, "77.9", null, "1.4", null, "73.9", null, "1.4", null, "20.2", null, "1.1", null, "17.6", null, "1.0", null, "13.7", null, "0.9", null, "5.1", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "349484", null, "11828", null, "17298", null, "2279", null, "17030", null, "3027", null, "23319", null, "3033", null, "27470", null, "3331", null, "24779", null, "3085", null, "25472", null, "3325", null, "25716", null, "3421", null, "23434", null, "2833", null, "22891", null, "3026", null, "21885", null, "2636", null, "24961", null, "2954", null, "18731", null, "2318", null, "21364", null, "2538", null, "16830", null, "2121", null, "14849", null, "2191", null, "10649", null, "1522", null, "7234", null, "1365", null, "5572", null, "1130", null, "40349", null, "4367", null, "18856", null, "2578", null, "76503", null, "5479", null, "33393", null, "3742", null, "149762", null, "7371", null, "286387", null, "9804", null, "272981", null, "9644", null, "261051", null, "9114", null, "76498", null, "3838", null, "67588", null, "3443", null, "55134", null, "3187", null, "23455", null, "1877", null, "38.2", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.9", null, "0.6", null, "4.9", null, "0.8", null, "6.7", null, "0.8", null, "7.9", null, "0.9", null, "7.1", null, "0.8", null, "7.3", null, "0.9", null, "7.4", null, "0.9", null, "6.7", null, "0.8", null, "6.5", null, "0.9", null, "6.3", null, "0.7", null, "7.1", null, "0.8", null, "5.4", null, "0.7", null, "6.1", null, "0.8", null, "4.8", null, "0.6", null, "4.2", null, "0.6", null, "3.0", null, "0.4", null, "2.1", null, "0.4", null, "1.6", null, "0.3", null, "11.5", null, "1.1", null, "5.4", null, "0.7", null, "21.9", null, "1.3", null, "9.6", null, "1.0", null, "42.9", null, "1.3", null, "81.9", null, "1.3", null, "78.1", null, "1.3", null, "74.7", null, "1.4", null, "21.9", null, "1.1", null, "19.3", null, "1.0", null, "15.8", null, "0.9", null, "6.7", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17", "04"], ["5001900US1705", "Congressional District 5 (119th Congress), Illinois", "773710", null, "20109", null, "41109", null, "4398", null, "40716", null, "4695", null, "39384", null, "4364", null, "37731", null, "4085", null, "47602", null, "5669", null, "78822", null, "5067", null, "68557", null, "4709", null, "62155", null, "5153", null, "57320", null, "5276", null, "44774", null, "4070", null, "41016", null, "3388", null, "45703", null, "4381", null, "46951", null, "3609", null, "38085", null, "3672", null, "30553", null, "3384", null, "25731", null, "2879", null, "14390", null, "2020", null, "13111", null, "1766", null, "80100", null, "6785", null, "22761", null, "2694", null, "143970", null, "10190", null, "62572", null, "6067", null, "352187", null, "11962", null, "644748", null, "14186", null, "629740", null, "13933", null, "610330", null, "14136", null, "168821", null, "7470", null, "146534", null, "6877", null, "121870", null, "6339", null, "53232", null, "3571", null, "37.4", null, "0.7", null, "93.7", null, "3.0", null, "52.3", null, "2.1", null, "24.0", null, "1.4", null, "28.3", null, "1.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.3", null, "0.5", null, "5.3", null, "0.5", null, "5.1", null, "0.5", null, "4.9", null, "0.5", null, "6.2", null, "0.7", null, "10.2", null, "0.7", null, "8.9", null, "0.6", null, "8.0", null, "0.6", null, "7.4", null, "0.6", null, "5.8", null, "0.5", null, "5.3", null, "0.4", null, "5.9", null, "0.6", null, "6.1", null, "0.5", null, "4.9", null, "0.5", null, "3.9", null, "0.4", null, "3.3", null, "0.4", null, "1.9", null, "0.3", null, "1.7", null, "0.2", null, "10.4", null, "0.7", null, "2.9", null, "0.3", null, "18.6", null, "1.0", null, "8.1", null, "0.7", null, "45.5", null, "1.0", null, "83.3", null, "1.0", null, "81.4", null, "1.0", null, "78.9", null, "1.1", null, "21.8", null, "1.0", null, "18.9", null, "0.9", null, "15.8", null, "0.8", null, "6.9", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "0.9", null, "-888888888.0", "(X)", "374351", null, "12092", null, "22407", null, "3147", null, "20154", null, "2898", null, "20001", null, "3067", null, "19994", null, "3180", null, "19036", null, "3358", null, "39120", null, "3334", null, "32371", null, "2684", null, "31897", null, "3313", null, "26401", null, "2852", null, "22555", null, "2590", null, "21025", null, "2206", null, "22882", null, "2732", null, "23712", null, "2317", null, "18166", null, "2292", null, "13235", null, "1598", null, "10460", null, "1846", null, "6840", null, "1255", null, "4095", null, "965", null, "40155", null, "4173", null, "12672", null, "2278", null, "75234", null, "6341", null, "26358", null, "3840", null, "168819", null, "7455", null, "307565", null, "9283", null, "299117", null, "9270", null, "289427", null, "9276", null, "76508", null, "4659", null, "64879", null, "4197", null, "52796", null, "3734", null, "21395", null, "2308", null, "37.1", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.0", null, "0.8", null, "5.4", null, "0.7", null, "5.3", null, "0.8", null, "5.3", null, "0.8", null, "5.1", null, "0.8", null, "10.5", null, "0.9", null, "8.6", null, "0.7", null, "8.5", null, "0.8", null, "7.1", null, "0.7", null, "6.0", null, "0.7", null, "5.6", null, "0.6", null, "6.1", null, "0.7", null, "6.3", null, "0.6", null, "4.9", null, "0.6", null, "3.5", null, "0.4", null, "2.8", null, "0.5", null, "1.8", null, "0.3", null, "1.1", null, "0.3", null, "10.7", null, "1.0", null, "3.4", null, "0.6", null, "20.1", null, "1.4", null, "7.0", null, "1.0", null, "45.1", null, "1.4", null, "82.2", null, "1.3", null, "79.9", null, "1.4", null, "77.3", null, "1.4", null, "20.4", null, "1.2", null, "17.3", null, "1.0", null, "14.1", null, "0.9", null, "5.7", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "399359", null, "11599", null, "18702", null, "2496", null, "20562", null, "2827", null, "19383", null, "2311", null, "17737", null, "2200", null, "28566", null, "3933", null, "39702", null, "3253", null, "36186", null, "3386", null, "30258", null, "3144", null, "30919", null, "3429", null, "22219", null, "2449", null, "19991", null, "2030", null, "22821", null, "2756", null, "23239", null, "2470", null, "19919", null, "2275", null, "17318", null, "2468", null, "15271", null, "2043", null, "7550", null, "1528", null, "9016", null, "1509", null, "39945", null, "3691", null, "10089", null, "1301", null, "68736", null, "5478", null, "36214", null, "4355", null, "183368", null, "8155", null, "337183", null, "8689", null, "330623", null, "8724", null, "320903", null, "8288", null, "92313", null, "4047", null, "81655", null, "4037", null, "69074", null, "3851", null, "31837", null, "2394", null, "37.8", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.7", null, "0.6", null, "5.1", null, "0.6", null, "4.9", null, "0.6", null, "4.4", null, "0.5", null, "7.2", null, "0.9", null, "9.9", null, "0.8", null, "9.1", null, "0.8", null, "7.6", null, "0.7", null, "7.7", null, "0.8", null, "5.6", null, "0.6", null, "5.0", null, "0.5", null, "5.7", null, "0.7", null, "5.8", null, "0.6", null, "5.0", null, "0.6", null, "4.3", null, "0.6", null, "3.8", null, "0.5", null, "1.9", null, "0.4", null, "2.3", null, "0.4", null, "10.0", null, "0.8", null, "2.5", null, "0.3", null, "17.2", null, "1.1", null, "9.1", null, "1.0", null, "45.9", null, "1.3", null, "84.4", null, "1.1", null, "82.8", null, "1.1", null, "80.4", null, "1.2", null, "23.1", null, "1.1", null, "20.4", null, "1.1", null, "17.3", null, "1.1", null, "8.0", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17", "05"], ["5001900US1706", "Congressional District 6 (119th Congress), Illinois", "764465", null, "14491", null, "43000", null, "4048", null, "49362", null, "5665", null, "47945", null, "4196", null, "47507", null, "4156", null, "41210", null, "4937", null, "38895", null, "4010", null, "46444", null, "4612", null, "54853", null, "4804", null, "47254", null, "4521", null, "44736", null, "3321", null, "48239", null, "3954", null, "46088", null, "4459", null, "54726", null, "4374", null, "50481", null, "4397", null, "39438", null, "3437", null, "28867", null, "2987", null, "18675", null, "2534", null, "16745", null, "2015", null, "97307", null, "6723", null, "31686", null, "3461", null, "171993", null, "8825", null, "57031", null, "5709", null, "276163", null, "8911", null, "614993", null, "12003", null, "592472", null, "12039", null, "570005", null, "11591", null, "208932", null, "7872", null, "188197", null, "7321", null, "154206", null, "7252", null, "64287", null, "4480", null, "41.3", null, "0.9", null, "97.9", null, "3.0", null, "74.4", null, "3.4", null, "35.2", null, "2.1", null, "39.2", null, "2.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.6", null, "0.5", null, "6.5", null, "0.7", null, "6.3", null, "0.5", null, "6.2", null, "0.5", null, "5.4", null, "0.6", null, "5.1", null, "0.5", null, "6.1", null, "0.6", null, "7.2", null, "0.6", null, "6.2", null, "0.6", null, "5.9", null, "0.4", null, "6.3", null, "0.5", null, "6.0", null, "0.6", null, "7.2", null, "0.6", null, "6.6", null, "0.6", null, "5.2", null, "0.4", null, "3.8", null, "0.4", null, "2.4", null, "0.3", null, "2.2", null, "0.3", null, "12.7", null, "0.8", null, "4.1", null, "0.4", null, "22.5", null, "1.0", null, "7.5", null, "0.7", null, "36.1", null, "1.0", null, "80.4", null, "1.0", null, "77.5", null, "1.0", null, "74.6", null, "1.0", null, "27.3", null, "1.0", null, "24.6", null, "0.9", null, "20.2", null, "0.9", null, "8.4", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.3", null, "-888888888.0", "(X)", "378258", null, "8605", null, "22731", null, "3225", null, "25986", null, "3461", null, "24263", null, "3136", null, "24623", null, "2671", null, "23011", null, "3623", null, "18810", null, "2456", null, "22594", null, "2628", null, "27020", null, "3067", null, "24460", null, "3661", null, "22623", null, "2199", null, "23790", null, "2472", null, "22534", null, "3130", null, "25486", null, "2579", null, "24107", null, "2816", null, "19912", null, "2392", null, "12874", null, "1774", null, "7483", null, "1268", null, "5951", null, "1236", null, "50249", null, "4125", null, "15576", null, "2236", null, "88556", null, "5482", null, "32058", null, "4235", null, "140518", null, "6271", null, "300452", null, "7647", null, "289702", null, "7355", null, "276820", null, "6828", null, "95813", null, "4872", null, "86094", null, "4575", null, "70327", null, "4453", null, "26308", null, "2442", null, "40.0", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.0", null, "0.8", null, "6.9", null, "0.9", null, "6.4", null, "0.8", null, "6.5", null, "0.7", null, "6.1", null, "0.9", null, "5.0", null, "0.6", null, "6.0", null, "0.7", null, "7.1", null, "0.8", null, "6.5", null, "1.0", null, "6.0", null, "0.5", null, "6.3", null, "0.7", null, "6.0", null, "0.8", null, "6.7", null, "0.7", null, "6.4", null, "0.7", null, "5.3", null, "0.6", null, "3.4", null, "0.5", null, "2.0", null, "0.3", null, "1.6", null, "0.3", null, "13.3", null, "1.0", null, "4.1", null, "0.6", null, "23.4", null, "1.3", null, "8.5", null, "1.1", null, "37.1", null, "1.5", null, "79.4", null, "1.3", null, "76.6", null, "1.3", null, "73.2", null, "1.3", null, "25.3", null, "1.3", null, "22.8", null, "1.2", null, "18.6", null, "1.2", null, "7.0", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "386207", null, "9951", null, "20269", null, "2494", null, "23376", null, "3655", null, "23682", null, "2961", null, "22884", null, "2868", null, "18199", null, "2845", null, "20085", null, "2472", null, "23850", null, "2946", null, "27833", null, "3017", null, "22794", null, "2393", null, "22113", null, "2217", null, "24449", null, "2314", null, "23554", null, "2672", null, "29240", null, "2959", null, "26374", null, "2548", null, "19526", null, "1873", null, "15993", null, "1985", null, "11192", null, "1844", null, "10794", null, "1593", null, "47058", null, "4652", null, "16110", null, "2320", null, "83437", null, "6321", null, "24973", null, "3532", null, "135645", null, "5572", null, "314541", null, "7338", null, "302770", null, "7235", null, "293185", null, "6899", null, "113119", null, "4265", null, "102103", null, "3944", null, "83879", null, "4036", null, "37979", null, "2870", null, "43.1", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.6", null, "6.1", null, "0.9", null, "6.1", null, "0.7", null, "5.9", null, "0.7", null, "4.7", null, "0.7", null, "5.2", null, "0.6", null, "6.2", null, "0.8", null, "7.2", null, "0.8", null, "5.9", null, "0.6", null, "5.7", null, "0.6", null, "6.3", null, "0.6", null, "6.1", null, "0.7", null, "7.6", null, "0.8", null, "6.8", null, "0.7", null, "5.1", null, "0.5", null, "4.1", null, "0.5", null, "2.9", null, "0.5", null, "2.8", null, "0.4", null, "12.2", null, "1.0", null, "4.2", null, "0.6", null, "21.6", null, "1.3", null, "6.5", null, "0.9", null, "35.1", null, "1.1", null, "81.4", null, "1.2", null, "78.4", null, "1.3", null, "75.9", null, "1.4", null, "29.3", null, "1.1", null, "26.4", null, "1.0", null, "21.7", null, "1.0", null, "9.8", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17", "06"], ["5001900US1707", "Congressional District 7 (119th Congress), Illinois", "760384", null, "22125", null, "37683", null, "4782", null, "38774", null, "5298", null, "41853", null, "5325", null, "42956", null, "4251", null, "55343", null, "6572", null, "90452", null, "6631", null, "82246", null, "5827", null, "62816", null, "6430", null, "51091", null, "5606", null, "42145", null, "4962", null, "39850", null, "4227", null, "37038", null, "3812", null, "41430", null, "4844", null, "30492", null, "3806", null, "27646", null, "3174", null, "18407", null, "2438", null, "11154", null, "2158", null, "9008", null, "1826", null, "80627", null, "8264", null, "23336", null, "2975", null, "141646", null, "11065", null, "74963", null, "7206", null, "384904", null, "15260", null, "636109", null, "17003", null, "618738", null, "16626", null, "590603", null, "16276", null, "138137", null, "8638", null, "120358", null, "8064", null, "96707", null, "7211", null, "38569", null, "4364", null, "34.5", null, "0.6", null, "93.1", null, "3.3", null, "45.7", null, "2.6", null, "18.5", null, "1.8", null, "27.1", null, "2.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.0", null, "0.6", null, "5.1", null, "0.6", null, "5.5", null, "0.7", null, "5.6", null, "0.5", null, "7.3", null, "0.8", null, "11.9", null, "0.9", null, "10.8", null, "0.8", null, "8.3", null, "0.8", null, "6.7", null, "0.7", null, "5.5", null, "0.6", null, "5.2", null, "0.5", null, "4.9", null, "0.5", null, "5.4", null, "0.6", null, "4.0", null, "0.5", null, "3.6", null, "0.4", null, "2.4", null, "0.3", null, "1.5", null, "0.3", null, "1.2", null, "0.2", null, "10.6", null, "0.9", null, "3.1", null, "0.4", null, "18.6", null, "1.2", null, "9.9", null, "0.8", null, "50.6", null, "1.3", null, "83.7", null, "1.1", null, "81.4", null, "1.2", null, "77.7", null, "1.2", null, "18.2", null, "1.2", null, "15.8", null, "1.2", null, "12.7", null, "1.1", null, "5.1", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.2", null, "-888888888.0", "(X)", "366616", null, "12745", null, "18909", null, "3156", null, "19976", null, "3441", null, "20275", null, "3239", null, "21680", null, "2732", null, "26813", null, "4229", null, "43477", null, "5063", null, "39668", null, "3738", null, "33095", null, "4388", null, "25531", null, "3517", null, "19801", null, "3408", null, "18425", null, "2964", null, "18263", null, "2918", null, "20743", null, "3627", null, "13238", null, "2207", null, "12074", null, "2487", null, "7258", null, "1484", null, "4250", null, "1272", null, "3140", null, "1005", null, "40251", null, "4331", null, "12165", null, "2008", null, "71325", null, "6493", null, "36328", null, "4805", null, "190264", null, "10074", null, "304864", null, "11523", null, "295291", null, "11470", null, "280490", null, "10893", null, "60703", null, "5534", null, "51297", null, "4652", null, "39960", null, "4285", null, "14648", null, "2546", null, "34.2", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.8", null, "5.4", null, "0.9", null, "5.5", null, "0.9", null, "5.9", null, "0.7", null, "7.3", null, "1.0", null, "11.9", null, "1.4", null, "10.8", null, "1.0", null, "9.0", null, "1.2", null, "7.0", null, "0.9", null, "5.4", null, "0.9", null, "5.0", null, "0.8", null, "5.0", null, "0.8", null, "5.7", null, "0.9", null, "3.6", null, "0.6", null, "3.3", null, "0.7", null, "2.0", null, "0.4", null, "1.2", null, "0.4", null, "0.9", null, "0.3", null, "11.0", null, "1.1", null, "3.3", null, "0.5", null, "19.5", null, "1.6", null, "9.9", null, "1.1", null, "51.9", null, "2.0", null, "83.2", null, "1.5", null, "80.5", null, "1.6", null, "76.5", null, "1.6", null, "16.6", null, "1.5", null, "14.0", null, "1.4", null, "10.9", null, "1.3", null, "4.0", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "393768", null, "13216", null, "18774", null, "3284", null, "18798", null, "3423", null, "21578", null, "3392", null, "21276", null, "3428", null, "28530", null, "4208", null, "46975", null, "4651", null, "42578", null, "3562", null, "29721", null, "4331", null, "25560", null, "3659", null, "22344", null, "3149", null, "21425", null, "2812", null, "18775", null, "2456", null, "20687", null, "2685", null, "17254", null, "2898", null, "15572", null, "2127", null, "11149", null, "1726", null, "6904", null, "1311", null, "5868", null, "1354", null, "40376", null, "5379", null, "11171", null, "2196", null, "70321", null, "6431", null, "38635", null, "4686", null, "194640", null, "9798", null, "331245", null, "10309", null, "323447", null, "9797", null, "310113", null, "9351", null, "77434", null, "4712", null, "69061", null, "4639", null, "56747", null, "4164", null, "23921", null, "2559", null, "34.8", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.8", null, "0.8", null, "4.8", null, "0.8", null, "5.5", null, "0.8", null, "5.4", null, "0.8", null, "7.2", null, "1.0", null, "11.9", null, "1.1", null, "10.8", null, "1.0", null, "7.5", null, "1.0", null, "6.5", null, "0.9", null, "5.7", null, "0.8", null, "5.4", null, "0.7", null, "4.8", null, "0.6", null, "5.3", null, "0.7", null, "4.4", null, "0.8", null, "4.0", null, "0.6", null, "2.8", null, "0.4", null, "1.8", null, "0.4", null, "1.5", null, "0.3", null, "10.3", null, "1.2", null, "2.8", null, "0.5", null, "17.9", null, "1.3", null, "9.8", null, "1.1", null, "49.4", null, "1.6", null, "84.1", null, "1.3", null, "82.1", null, "1.3", null, "78.8", null, "1.3", null, "19.7", null, "1.4", null, "17.5", null, "1.3", null, "14.4", null, "1.2", null, "6.1", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17", "07"], ["5001900US1708", "Congressional District 8 (119th Congress), Illinois", "752591", null, "12657", null, "38424", null, "3613", null, "44571", null, "4292", null, "46850", null, "4540", null, "47972", null, "4587", null, "41779", null, "3569", null, "44255", null, "4109", null, "49971", null, "4510", null, "58834", null, "4585", null, "54398", null, "4865", null, "50016", null, "4702", null, "47652", null, "3878", null, "46465", null, "4113", null, "51970", null, "4479", null, "44176", null, "3624", null, "32306", null, "2908", null, "24287", null, "3004", null, "14388", null, "1948", null, "14277", null, "2385", null, "91421", null, "6014", null, "30035", null, "2982", null, "159880", null, "7102", null, "59716", null, "4631", null, "297209", null, "8185", null, "612521", null, "12062", null, "592711", null, "11284", null, "566393", null, "11222", null, "181404", null, "7667", null, "157532", null, "7393", null, "129434", null, "6681", null, "52952", null, "3737", null, "40.3", null, "0.8", null, "101.4", null, "2.9", null, "62.4", null, "2.8", null, "27.9", null, "1.8", null, "34.5", null, "1.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.1", null, "0.5", null, "5.9", null, "0.6", null, "6.2", null, "0.6", null, "6.4", null, "0.6", null, "5.6", null, "0.5", null, "5.9", null, "0.6", null, "6.6", null, "0.6", null, "7.8", null, "0.6", null, "7.2", null, "0.7", null, "6.6", null, "0.6", null, "6.3", null, "0.5", null, "6.2", null, "0.5", null, "6.9", null, "0.6", null, "5.9", null, "0.5", null, "4.3", null, "0.4", null, "3.2", null, "0.4", null, "1.9", null, "0.3", null, "1.9", null, "0.3", null, "12.1", null, "0.8", null, "4.0", null, "0.4", null, "21.2", null, "0.8", null, "7.9", null, "0.6", null, "39.5", null, "0.8", null, "81.4", null, "0.9", null, "78.8", null, "0.8", null, "75.3", null, "0.9", null, "24.1", null, "1.0", null, "20.9", null, "1.0", null, "17.2", null, "0.9", null, "7.0", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.4", null, "-888888888.0", "(X)", "378879", null, "8223", null, "19912", null, "2341", null, "22867", null, "2797", null, "23175", null, "2890", null, "25742", null, "2986", null, "23376", null, "2503", null, "23067", null, "2685", null, "24469", null, "2896", null, "30622", null, "2697", null, "27680", null, "2879", null, "25676", null, "3109", null, "23970", null, "2652", null, "22820", null, "2808", null, "25576", null, "2945", null, "20839", null, "2161", null, "16219", null, "1963", null, "11181", null, "1879", null, "6106", null, "1107", null, "5582", null, "1248", null, "46042", null, "3967", null, "15722", null, "2005", null, "81676", null, "4832", null, "33396", null, "3143", null, "154956", null, "5993", null, "307085", null, "8018", null, "297203", null, "7497", null, "282549", null, "7056", null, "85503", null, "4462", null, "73860", null, "4073", null, "59927", null, "3698", null, "22869", null, "2084", null, "39.4", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.3", null, "0.6", null, "6.0", null, "0.7", null, "6.1", null, "0.8", null, "6.8", null, "0.7", null, "6.2", null, "0.7", null, "6.1", null, "0.7", null, "6.5", null, "0.7", null, "8.1", null, "0.7", null, "7.3", null, "0.8", null, "6.8", null, "0.8", null, "6.3", null, "0.7", null, "6.0", null, "0.7", null, "6.8", null, "0.8", null, "5.5", null, "0.6", null, "4.3", null, "0.5", null, "3.0", null, "0.5", null, "1.6", null, "0.3", null, "1.5", null, "0.3", null, "12.2", null, "1.0", null, "4.1", null, "0.5", null, "21.6", null, "1.2", null, "8.8", null, "0.8", null, "40.9", null, "1.2", null, "81.1", null, "1.2", null, "78.4", null, "1.2", null, "74.6", null, "1.2", null, "22.6", null, "1.2", null, "19.5", null, "1.1", null, "15.8", null, "1.0", null, "6.0", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "373712", null, "8279", null, "18512", null, "2451", null, "21704", null, "2808", null, "23675", null, "3294", null, "22230", null, "3084", null, "18403", null, "2447", null, "21188", null, "2493", null, "25502", null, "2760", null, "28212", null, "3025", null, "26718", null, "3070", null, "24340", null, "2921", null, "23682", null, "2497", null, "23645", null, "2537", null, "26394", null, "2675", null, "23337", null, "2433", null, "16087", null, "1921", null, "13106", null, "1882", null, "8282", null, "1420", null, "8695", null, "1671", null, "45379", null, "3935", null, "14313", null, "2104", null, "78204", null, "4633", null, "26320", null, "3153", null, "142253", null, "5200", null, "305436", null, "7157", null, "295508", null, "6758", null, "283844", null, "6795", null, "95901", null, "4863", null, "83672", null, "4471", null, "69507", null, "3934", null, "30083", null, "2378", null, "41.3", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.0", null, "0.6", null, "5.8", null, "0.7", null, "6.3", null, "0.9", null, "5.9", null, "0.8", null, "4.9", null, "0.6", null, "5.7", null, "0.7", null, "6.8", null, "0.7", null, "7.5", null, "0.8", null, "7.1", null, "0.8", null, "6.5", null, "0.8", null, "6.3", null, "0.7", null, "6.3", null, "0.7", null, "7.1", null, "0.7", null, "6.2", null, "0.6", null, "4.3", null, "0.5", null, "3.5", null, "0.5", null, "2.2", null, "0.4", null, "2.3", null, "0.4", null, "12.1", null, "1.0", null, "3.8", null, "0.5", null, "20.9", null, "1.0", null, "7.0", null, "0.8", null, "38.1", null, "1.1", null, "81.7", null, "1.1", null, "79.1", null, "1.0", null, "76.0", null, "1.1", null, "25.7", null, "1.3", null, "22.4", null, "1.1", null, "18.6", null, "1.0", null, "8.0", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17", "08"], ["5001900US1709", "Congressional District 9 (119th Congress), Illinois", "740435", null, "15999", null, "33773", null, "3876", null, "42108", null, "4394", null, "40154", null, "2994", null, "46265", null, "4631", null, "48812", null, "5867", null, "48334", null, "5152", null, "49035", null, "4011", null, "49802", null, "5086", null, "51207", null, "4564", null, "49262", null, "3923", null, "47240", null, "4131", null, "42962", null, "3487", null, "48155", null, "3697", null, "44697", null, "3710", null, "32539", null, "3138", null, "28615", null, "3217", null, "18178", null, "2680", null, "19297", null, "2411", null, "82262", null, "5500", null, "27220", null, "3308", null, "143255", null, "7628", null, "67857", null, "6397", null, "293455", null, "11957", null, "616188", null, "13804", null, "597180", null, "13579", null, "570482", null, "13107", null, "191481", null, "7158", null, "171018", null, "6974", null, "143326", null, "6496", null, "66090", null, "4784", null, "41.3", null, "0.9", null, "95.4", null, "2.8", null, "63.1", null, "3.1", null, "31.6", null, "1.8", null, "31.6", null, "1.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.6", null, "0.5", null, "5.7", null, "0.6", null, "5.4", null, "0.4", null, "6.2", null, "0.6", null, "6.6", null, "0.8", null, "6.5", null, "0.6", null, "6.6", null, "0.5", null, "6.7", null, "0.7", null, "6.9", null, "0.6", null, "6.7", null, "0.5", null, "6.4", null, "0.6", null, "5.8", null, "0.5", null, "6.5", null, "0.5", null, "6.0", null, "0.5", null, "4.4", null, "0.4", null, "3.9", null, "0.4", null, "2.5", null, "0.4", null, "2.6", null, "0.3", null, "11.1", null, "0.7", null, "3.7", null, "0.4", null, "19.3", null, "0.9", null, "9.2", null, "0.8", null, "39.6", null, "1.2", null, "83.2", null, "0.8", null, "80.7", null, "0.9", null, "77.0", null, "0.9", null, "25.9", null, "1.0", null, "23.1", null, "0.9", null, "19.4", null, "0.9", null, "8.9", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "0.9", null, "-888888888.0", "(X)", "361521", null, "8734", null, "18265", null, "2306", null, "22643", null, "3202", null, "18938", null, "2128", null, "22364", null, "2932", null, "23342", null, "3493", null, "24401", null, "3196", null, "25356", null, "3175", null, "26349", null, "3306", null, "24031", null, "2749", null, "25390", null, "3066", null, "23738", null, "2698", null, "20382", null, "2554", null, "24119", null, "2536", null, "19887", null, "2276", null, "15119", null, "2008", null, "12403", null, "1581", null, "8567", null, "1853", null, "6227", null, "1408", null, "41581", null, "3197", null, "13779", null, "2462", null, "73625", null, "4736", null, "31927", null, "3810", null, "145843", null, "7617", null, "297628", null, "7546", null, "287896", null, "7654", null, "276201", null, "7577", null, "86322", null, "3950", null, "75880", null, "3986", null, "62203", null, "3646", null, "27197", null, "2598", null, "39.8", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.1", null, "0.6", null, "6.3", null, "0.9", null, "5.2", null, "0.6", null, "6.2", null, "0.8", null, "6.5", null, "1.0", null, "6.7", null, "0.8", null, "7.0", null, "0.8", null, "7.3", null, "0.9", null, "6.6", null, "0.8", null, "7.0", null, "0.8", null, "6.6", null, "0.7", null, "5.6", null, "0.7", null, "6.7", null, "0.7", null, "5.5", null, "0.6", null, "4.2", null, "0.6", null, "3.4", null, "0.4", null, "2.4", null, "0.5", null, "1.7", null, "0.4", null, "11.5", null, "0.8", null, "3.8", null, "0.7", null, "20.4", null, "1.2", null, "8.8", null, "1.0", null, "40.3", null, "1.6", null, "82.3", null, "1.0", null, "79.6", null, "1.2", null, "76.4", null, "1.2", null, "23.9", null, "1.2", null, "21.0", null, "1.2", null, "17.2", null, "1.0", null, "7.5", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "378914", null, "10532", null, "15508", null, "2565", null, "19465", null, "2909", null, "21216", null, "2939", null, "23901", null, "3113", null, "25470", null, "4127", null, "23933", null, "3262", null, "23679", null, "2390", null, "23453", null, "2935", null, "27176", null, "3102", null, "23872", null, "2625", null, "23502", null, "2747", null, "22580", null, "2361", null, "24036", null, "2334", null, "24810", null, "2517", null, "17420", null, "1760", null, "16212", null, "2340", null, "9611", null, "1534", null, "13070", null, "2020", null, "40681", null, "3971", null, "13441", null, "2335", null, "69630", null, "5118", null, "35930", null, "4443", null, "147612", null, "7036", null, "318560", null, "8904", null, "309284", null, "8720", null, "294281", null, "8543", null, "105159", null, "4745", null, "95138", null, "4540", null, "81123", null, "4308", null, "38893", null, "3282", null, "42.3", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.1", null, "0.6", null, "5.1", null, "0.7", null, "5.6", null, "0.8", null, "6.3", null, "0.8", null, "6.7", null, "1.1", null, "6.3", null, "0.8", null, "6.2", null, "0.6", null, "6.2", null, "0.8", null, "7.2", null, "0.8", null, "6.3", null, "0.7", null, "6.2", null, "0.7", null, "6.0", null, "0.6", null, "6.3", null, "0.6", null, "6.5", null, "0.7", null, "4.6", null, "0.5", null, "4.3", null, "0.6", null, "2.5", null, "0.4", null, "3.4", null, "0.5", null, "10.7", null, "1.0", null, "3.5", null, "0.6", null, "18.4", null, "1.1", null, "9.5", null, "1.1", null, "39.0", null, "1.3", null, "84.1", null, "1.0", null, "81.6", null, "1.1", null, "77.7", null, "1.2", null, "27.8", null, "1.1", null, "25.1", null, "1.1", null, "21.4", null, "1.1", null, "10.3", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17", "09"], ["5001900US1710", "Congressional District 10 (119th Congress), Illinois", "749775", null, "6968", null, "38818", null, "1873", null, "48260", null, "3913", null, "46516", null, "3594", null, "55594", null, "2560", null, "50997", null, "2201", null, "42246", null, "2829", null, "42888", null, "2601", null, "48750", null, "3564", null, "44623", null, "3468", null, "47714", null, "2235", null, "47705", null, "2001", null, "49341", null, "3759", null, "48592", null, "3490", null, "48129", null, "2875", null, "31385", null, "2754", null, "26354", null, "2159", null, "15257", null, "1678", null, "16606", null, "2419", null, "94776", null, "3868", null, "33893", null, "1883", null, "167487", null, "4548", null, "72698", null, "2454", null, "285098", null, "5662", null, "604365", null, "6519", null, "582288", null, "5917", null, "550509", null, "5713", null, "186323", null, "5620", null, "165998", null, "4801", null, "137731", null, "4270", null, "58217", null, "2802", null, "40.1", null, "0.6", null, "98.7", null, "1.8", null, "68.7", null, "1.4", null, "31.0", null, "1.1", null, "37.7", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.2", null, "6.4", null, "0.5", null, "6.2", null, "0.5", null, "7.4", null, "0.3", null, "6.8", null, "0.3", null, "5.6", null, "0.4", null, "5.7", null, "0.3", null, "6.5", null, "0.5", null, "6.0", null, "0.5", null, "6.4", null, "0.3", null, "6.4", null, "0.3", null, "6.6", null, "0.5", null, "6.5", null, "0.5", null, "6.4", null, "0.4", null, "4.2", null, "0.4", null, "3.5", null, "0.3", null, "2.0", null, "0.2", null, "2.2", null, "0.3", null, "12.6", null, "0.5", null, "4.5", null, "0.2", null, "22.3", null, "0.5", null, "9.7", null, "0.3", null, "38.0", null, "0.6", null, "80.6", null, "0.6", null, "77.7", null, "0.5", null, "73.4", null, "0.6", null, "24.9", null, "0.8", null, "22.1", null, "0.7", null, "18.4", null, "0.6", null, "7.8", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "0.7", null, "-888888888.0", "(X)", "372493", null, "5100", null, "18871", null, "1210", null, "22954", null, "2325", null, "24073", null, "2294", null, "29498", null, "2073", null, "26817", null, "1489", null, "22043", null, "1867", null, "21286", null, "1756", null, "24324", null, "1993", null, "23868", null, "2155", null, "23825", null, "1272", null, "23878", null, "1232", null, "24938", null, "2321", null, "23406", null, "1919", null, "22973", null, "1700", null, "14711", null, "1554", null, "12187", null, "1467", null, "7365", null, "1196", null, "5476", null, "1159", null, "47027", null, "2425", null, "17220", null, "1457", null, "83118", null, "3304", null, "39095", null, "1751", null, "147836", null, "3986", null, "301048", null, "4315", null, "289375", null, "4069", null, "271819", null, "3679", null, "86118", null, "3080", null, "76577", null, "2718", null, "62712", null, "2347", null, "25028", null, "1614", null, "39.3", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.1", null, "0.3", null, "6.2", null, "0.6", null, "6.5", null, "0.6", null, "7.9", null, "0.5", null, "7.2", null, "0.4", null, "5.9", null, "0.5", null, "5.7", null, "0.5", null, "6.5", null, "0.5", null, "6.4", null, "0.6", null, "6.4", null, "0.3", null, "6.4", null, "0.3", null, "6.7", null, "0.6", null, "6.3", null, "0.5", null, "6.2", null, "0.5", null, "3.9", null, "0.4", null, "3.3", null, "0.4", null, "2.0", null, "0.3", null, "1.5", null, "0.3", null, "12.6", null, "0.6", null, "4.6", null, "0.4", null, "22.3", null, "0.7", null, "10.5", null, "0.5", null, "39.7", null, "0.8", null, "80.8", null, "0.7", null, "77.7", null, "0.7", null, "73.0", null, "0.8", null, "23.1", null, "0.9", null, "20.6", null, "0.8", null, "16.8", null, "0.6", null, "6.7", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "377282", null, "4649", null, "19947", null, "1482", null, "25306", null, "2713", null, "22443", null, "2404", null, "26096", null, "1768", null, "24180", null, "1479", null, "20203", null, "1681", null, "21602", null, "1507", null, "24426", null, "2199", null, "20755", null, "1968", null, "23889", null, "1411", null, "23827", null, "1065", null, "24403", null, "2225", null, "25186", null, "2399", null, "25156", null, "1999", null, "16674", null, "1846", null, "14167", null, "1564", null, "7892", null, "1176", null, "11130", null, "1707", null, "47749", null, "2569", null, "16673", null, "1508", null, "84369", null, "3277", null, "33603", null, "1524", null, "137262", null, "3235", null, "303317", null, "4247", null, "292913", null, "3781", null, "278690", null, "3795", null, "100205", null, "3566", null, "89421", null, "3037", null, "75019", null, "2657", null, "33189", null, "1858", null, "41.2", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.3", null, "0.4", null, "6.7", null, "0.7", null, "5.9", null, "0.6", null, "6.9", null, "0.4", null, "6.4", null, "0.4", null, "5.4", null, "0.4", null, "5.7", null, "0.4", null, "6.5", null, "0.6", null, "5.5", null, "0.5", null, "6.3", null, "0.4", null, "6.3", null, "0.3", null, "6.5", null, "0.6", null, "6.7", null, "0.6", null, "6.7", null, "0.5", null, "4.4", null, "0.5", null, "3.8", null, "0.4", null, "2.1", null, "0.3", null, "3.0", null, "0.5", null, "12.7", null, "0.6", null, "4.4", null, "0.4", null, "22.4", null, "0.7", null, "8.9", null, "0.4", null, "36.4", null, "0.7", null, "80.4", null, "0.8", null, "77.6", null, "0.7", null, "73.9", null, "0.9", null, "26.6", null, "0.9", null, "23.7", null, "0.8", null, "19.9", null, "0.7", null, "8.8", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17", "10"], ["5001900US1711", "Congressional District 11 (119th Congress), Illinois", "766584", null, "11743", null, "41829", null, "3709", null, "44289", null, "3964", null, "48654", null, "4053", null, "53278", null, "3418", null, "50909", null, "4205", null, "46100", null, "3359", null, "54211", null, "4131", null, "46821", null, "3969", null, "51776", null, "4769", null, "50990", null, "3744", null, "50218", null, "3041", null, "50265", null, "3468", null, "45581", null, "4129", null, "41480", null, "3543", null, "36908", null, "3232", null, "23516", null, "1950", null, "14871", null, "1719", null, "14888", null, "1706", null, "92943", null, "5921", null, "31745", null, "2576", null, "166517", null, "8187", null, "72442", null, "5055", null, "303095", null, "8762", null, "623362", null, "9709", null, "600067", null, "9575", null, "569260", null, "8257", null, "177244", null, "6020", null, "157282", null, "5797", null, "131663", null, "5179", null, "53275", null, "3031", null, "39.6", null, "1.0", null, "99.0", null, "2.5", null, "63.7", null, "2.5", null, "28.1", null, "1.3", null, "35.5", null, "1.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.5", null, "5.8", null, "0.5", null, "6.3", null, "0.5", null, "7.0", null, "0.4", null, "6.6", null, "0.6", null, "6.0", null, "0.4", null, "7.1", null, "0.5", null, "6.1", null, "0.5", null, "6.8", null, "0.6", null, "6.7", null, "0.5", null, "6.6", null, "0.4", null, "6.6", null, "0.5", null, "5.9", null, "0.5", null, "5.4", null, "0.5", null, "4.8", null, "0.4", null, "3.1", null, "0.3", null, "1.9", null, "0.2", null, "1.9", null, "0.2", null, "12.1", null, "0.7", null, "4.1", null, "0.3", null, "21.7", null, "0.9", null, "9.4", null, "0.6", null, "39.5", null, "0.8", null, "81.3", null, "0.8", null, "78.3", null, "0.9", null, "74.3", null, "0.9", null, "23.1", null, "0.8", null, "20.5", null, "0.8", null, "17.2", null, "0.7", null, "6.9", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "0.9", null, "-888888888.0", "(X)", "381442", null, "6727", null, "21442", null, "2639", null, "23053", null, "2772", null, "24305", null, "3239", null, "27854", null, "2498", null, "26888", null, "2550", null, "21745", null, "2520", null, "29038", null, "2991", null, "24752", null, "2732", null, "26569", null, "3031", null, "24358", null, "2325", null, "25083", null, "2045", null, "25702", null, "2577", null, "22026", null, "2249", null, "19442", null, "2179", null, "16577", null, "1958", null, "10040", null, "1396", null, "6381", null, "1108", null, "6187", null, "1156", null, "47358", null, "3984", null, "15789", null, "1834", null, "84589", null, "5104", null, "38953", null, "3044", null, "156846", null, "5261", null, "308204", null, "6186", null, "296853", null, "6161", null, "280293", null, "5770", null, "80653", null, "3188", null, "71344", null, "3196", null, "58627", null, "2726", null, "22608", null, "1653", null, "38.0", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.6", null, "0.7", null, "6.0", null, "0.7", null, "6.4", null, "0.8", null, "7.3", null, "0.6", null, "7.0", null, "0.7", null, "5.7", null, "0.7", null, "7.6", null, "0.7", null, "6.5", null, "0.7", null, "7.0", null, "0.8", null, "6.4", null, "0.6", null, "6.6", null, "0.6", null, "6.7", null, "0.7", null, "5.8", null, "0.6", null, "5.1", null, "0.6", null, "4.3", null, "0.5", null, "2.6", null, "0.4", null, "1.7", null, "0.3", null, "1.6", null, "0.3", null, "12.4", null, "1.0", null, "4.1", null, "0.5", null, "22.2", null, "1.2", null, "10.2", null, "0.8", null, "41.1", null, "1.1", null, "80.8", null, "1.1", null, "77.8", null, "1.2", null, "73.5", null, "1.2", null, "21.1", null, "0.8", null, "18.7", null, "0.8", null, "15.4", null, "0.7", null, "5.9", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "385142", null, "8455", null, "20387", null, "2241", null, "21236", null, "2318", null, "24349", null, "2841", null, "25424", null, "2681", null, "24021", null, "3235", null, "24355", null, "2312", null, "25173", null, "2411", null, "22069", null, "2549", null, "25207", null, "2893", null, "26632", null, "2084", null, "25135", null, "2048", null, "24563", null, "2120", null, "23555", null, "2733", null, "22038", null, "2170", null, "20331", null, "2062", null, "13476", null, "1442", null, "8490", null, "1324", null, "8701", null, "1219", null, "45585", null, "3678", null, "15956", null, "1918", null, "81928", null, "5063", null, "33489", null, "3583", null, "146249", null, "6057", null, "315158", null, "6537", null, "303214", null, "6469", null, "288967", null, "5600", null, "96591", null, "3789", null, "85938", null, "3537", null, "73036", null, "3341", null, "30667", null, "1986", null, "41.3", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.3", null, "0.5", null, "5.5", null, "0.6", null, "6.3", null, "0.7", null, "6.6", null, "0.7", null, "6.2", null, "0.8", null, "6.3", null, "0.6", null, "6.5", null, "0.6", null, "5.7", null, "0.7", null, "6.5", null, "0.7", null, "6.9", null, "0.5", null, "6.5", null, "0.5", null, "6.4", null, "0.6", null, "6.1", null, "0.7", null, "5.7", null, "0.6", null, "5.3", null, "0.6", null, "3.5", null, "0.4", null, "2.2", null, "0.3", null, "2.3", null, "0.3", null, "11.8", null, "0.8", null, "4.1", null, "0.5", null, "21.3", null, "1.1", null, "8.7", null, "0.9", null, "38.0", null, "1.1", null, "81.8", null, "1.0", null, "78.7", null, "1.1", null, "75.0", null, "1.0", null, "25.1", null, "1.1", null, "22.3", null, "1.0", null, "19.0", null, "0.9", null, "8.0", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17", "11"], ["5001900US1712", "Congressional District 12 (119th Congress), Illinois", "745901", null, "6522", null, "38124", null, "1508", null, "45718", null, "2601", null, "47089", null, "2810", null, "47471", null, "2284", null, "42130", null, "2165", null, "39452", null, "1859", null, "47113", null, "1636", null, "46826", null, "2527", null, "48628", null, "3479", null, "44462", null, "1841", null, "45774", null, "1405", null, "46427", null, "2520", null, "51920", null, "2285", null, "49174", null, "2429", null, "40460", null, "2242", null, "29557", null, "1704", null, "17635", null, "1451", null, "17941", null, "1823", null, "92807", null, "2405", null, "29787", null, "1351", null, "160718", null, "2973", null, "59814", null, "2038", null, "271620", null, "4213", null, "605774", null, "5510", null, "585183", null, "5029", null, "559437", null, "5337", null, "206687", null, "3376", null, "186266", null, "3168", null, "154767", null, "2465", null, "65133", null, "1357", null, "42.0", null, "0.4", null, "103.5", null, "1.4", null, "73.3", null, "1.0", null, "36.0", null, "0.7", null, "37.3", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.1", null, "0.2", null, "6.1", null, "0.3", null, "6.3", null, "0.4", null, "6.4", null, "0.3", null, "5.6", null, "0.3", null, "5.3", null, "0.2", null, "6.3", null, "0.2", null, "6.3", null, "0.3", null, "6.5", null, "0.5", null, "6.0", null, "0.2", null, "6.1", null, "0.2", null, "6.2", null, "0.3", null, "7.0", null, "0.3", null, "6.6", null, "0.3", null, "5.4", null, "0.3", null, "4.0", null, "0.2", null, "2.4", null, "0.2", null, "2.4", null, "0.2", null, "12.4", null, "0.3", null, "4.0", null, "0.2", null, "21.5", null, "0.3", null, "8.0", null, "0.3", null, "36.4", null, "0.4", null, "81.2", null, "0.3", null, "78.5", null, "0.3", null, "75.0", null, "0.4", null, "27.7", null, "0.5", null, "25.0", null, "0.4", null, "20.7", null, "0.3", null, "8.7", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.0", null, "-888888888.0", "(X)", "379391", null, "4458", null, "19162", null, "1139", null, "23406", null, "1663", null, "25046", null, "1867", null, "25616", null, "1628", null, "22739", null, "1731", null, "20774", null, "1255", null, "24239", null, "1125", null, "23345", null, "1849", null, "25838", null, "1941", null, "23782", null, "1168", null, "23910", null, "1004", null, "23187", null, "1640", null, "26322", null, "1573", null, "24219", null, "1405", null, "19673", null, "1367", null, "14564", null, "1013", null, "7731", null, "1012", null, "5838", null, "934", null, "48452", null, "1887", null, "16138", null, "1216", null, "83752", null, "2598", null, "32217", null, "1601", null, "142551", null, "2709", null, "306387", null, "3368", null, "295639", null, "3112", null, "281704", null, "3355", null, "98347", null, "1987", null, "87132", null, "1751", null, "72025", null, "1394", null, "28133", null, "768", null, "41.0", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.1", null, "0.3", null, "6.2", null, "0.4", null, "6.6", null, "0.5", null, "6.8", null, "0.4", null, "6.0", null, "0.4", null, "5.5", null, "0.3", null, "6.4", null, "0.3", null, "6.2", null, "0.5", null, "6.8", null, "0.5", null, "6.3", null, "0.3", null, "6.3", null, "0.3", null, "6.1", null, "0.4", null, "6.9", null, "0.4", null, "6.4", null, "0.4", null, "5.2", null, "0.4", null, "3.8", null, "0.3", null, "2.0", null, "0.3", null, "1.5", null, "0.2", null, "12.8", null, "0.4", null, "4.3", null, "0.3", null, "22.1", null, "0.5", null, "8.5", null, "0.4", null, "37.6", null, "0.5", null, "80.8", null, "0.5", null, "77.9", null, "0.5", null, "74.3", null, "0.6", null, "25.9", null, "0.6", null, "23.0", null, "0.5", null, "19.0", null, "0.4", null, "7.4", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "366510", null, "3706", null, "18962", null, "1213", null, "22312", null, "1813", null, "22043", null, "1862", null, "21855", null, "1475", null, "19391", null, "1202", null, "18678", null, "1027", null, "22874", null, "1267", null, "23481", null, "1859", null, "22790", null, "2222", null, "20680", null, "1136", null, "21864", null, "1082", null, "23240", null, "1718", null, "25598", null, "1466", null, "24955", null, "1673", null, "20787", null, "1532", null, "14993", null, "1190", null, "9904", null, "850", null, "12103", null, "1231", null, "44355", null, "1487", null, "13649", null, "957", null, "76966", null, "2100", null, "27597", null, "1381", null, "129069", null, "2244", null, "299387", null, "3194", null, "289544", null, "3099", null, "277733", null, "3270", null, "108340", null, "2290", null, "99134", null, "2218", null, "82742", null, "1652", null, "37000", null, "1040", null, "43.1", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.3", null, "6.1", null, "0.5", null, "6.0", null, "0.5", null, "6.0", null, "0.4", null, "5.3", null, "0.3", null, "5.1", null, "0.3", null, "6.2", null, "0.3", null, "6.4", null, "0.5", null, "6.2", null, "0.6", null, "5.6", null, "0.3", null, "6.0", null, "0.3", null, "6.3", null, "0.5", null, "7.0", null, "0.4", null, "6.8", null, "0.4", null, "5.7", null, "0.4", null, "4.1", null, "0.3", null, "2.7", null, "0.2", null, "3.3", null, "0.3", null, "12.1", null, "0.4", null, "3.7", null, "0.3", null, "21.0", null, "0.5", null, "7.5", null, "0.4", null, "35.2", null, "0.5", null, "81.7", null, "0.5", null, "79.0", null, "0.5", null, "75.8", null, "0.6", null, "29.6", null, "0.6", null, "27.0", null, "0.6", null, "22.6", null, "0.4", null, "10.1", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17", "12"], ["5001900US1713", "Congressional District 13 (119th Congress), Illinois", "741808", null, "10721", null, "37807", null, "2331", null, "37653", null, "3585", null, "45791", null, "3375", null, "52793", null, "2731", null, "72399", null, "3946", null, "51085", null, "2895", null, "49337", null, "2405", null, "49472", null, "3634", null, "47187", null, "3311", null, "41893", null, "3045", null, "41039", null, "2200", null, "38814", null, "2648", null, "46755", null, "2759", null, "41660", null, "3168", null, "35826", null, "3124", null, "23565", null, "1929", null, "14149", null, "1584", null, "14583", null, "1828", null, "83444", null, "4261", null, "28069", null, "1691", null, "149320", null, "5045", null, "97123", null, "3554", null, "322273", null, "5853", null, "610217", null, "7998", null, "592488", null, "7777", null, "551356", null, "8486", null, "176538", null, "5574", null, "156390", null, "5326", null, "129783", null, "4356", null, "52297", null, "2195", null, "37.2", null, "0.6", null, "95.2", null, "1.9", null, "60.3", null, "1.5", null, "28.0", null, "1.0", null, "32.3", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.1", null, "0.3", null, "5.1", null, "0.5", null, "6.2", null, "0.4", null, "7.1", null, "0.3", null, "9.8", null, "0.5", null, "6.9", null, "0.4", null, "6.7", null, "0.3", null, "6.7", null, "0.5", null, "6.4", null, "0.4", null, "5.6", null, "0.4", null, "5.5", null, "0.3", null, "5.2", null, "0.4", null, "6.3", null, "0.3", null, "5.6", null, "0.4", null, "4.8", null, "0.4", null, "3.2", null, "0.3", null, "1.9", null, "0.2", null, "2.0", null, "0.2", null, "11.2", null, "0.5", null, "3.8", null, "0.2", null, "20.1", null, "0.5", null, "13.1", null, "0.5", null, "43.4", null, "0.6", null, "82.3", null, "0.5", null, "79.9", null, "0.5", null, "74.3", null, "0.6", null, "23.8", null, "0.6", null, "21.1", null, "0.6", null, "17.5", null, "0.5", null, "7.0", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "0.7", null, "-888888888.0", "(X)", "361742", null, "6553", null, "18305", null, "1718", null, "19781", null, "3005", null, "23707", null, "2471", null, "28018", null, "2406", null, "37532", null, "2637", null, "24454", null, "1751", null, "23396", null, "1476", null, "23375", null, "2240", null, "23571", null, "2170", null, "20831", null, "1707", null, "20019", null, "1502", null, "19240", null, "1787", null, "22626", null, "1776", null, "19202", null, "1959", null, "17091", null, "1847", null, "9950", null, "1346", null, "5674", null, "1106", null, "4970", null, "1080", null, "43488", null, "3197", null, "14488", null, "1665", null, "76281", null, "3944", null, "51062", null, "1928", null, "160346", null, "3830", null, "294813", null, "4305", null, "285461", null, "4092", null, "263406", null, "4532", null, "79513", null, "3097", null, "69452", null, "2849", null, "56887", null, "2559", null, "20594", null, "1354", null, "36.1", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.1", null, "0.5", null, "5.5", null, "0.8", null, "6.6", null, "0.7", null, "7.7", null, "0.6", null, "10.4", null, "0.7", null, "6.8", null, "0.5", null, "6.5", null, "0.4", null, "6.5", null, "0.6", null, "6.5", null, "0.6", null, "5.8", null, "0.4", null, "5.5", null, "0.4", null, "5.3", null, "0.5", null, "6.3", null, "0.5", null, "5.3", null, "0.5", null, "4.7", null, "0.5", null, "2.8", null, "0.4", null, "1.6", null, "0.3", null, "1.4", null, "0.3", null, "12.0", null, "0.7", null, "4.0", null, "0.4", null, "21.1", null, "0.8", null, "14.1", null, "0.5", null, "44.3", null, "0.9", null, "81.5", null, "0.8", null, "78.9", null, "0.8", null, "72.8", null, "0.9", null, "22.0", null, "0.8", null, "19.2", null, "0.7", null, "15.7", null, "0.7", null, "5.7", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "380066", null, "6371", null, "19502", null, "1900", null, "17872", null, "2261", null, "22084", null, "2295", null, "24775", null, "1874", null, "34867", null, "2582", null, "26631", null, "2222", null, "25941", null, "1601", null, "26097", null, "2534", null, "23616", null, "2268", null, "21062", null, "2058", null, "21020", null, "1313", null, "19574", null, "1623", null, "24129", null, "2075", null, "22458", null, "2084", null, "18735", null, "1954", null, "13615", null, "1265", null, "8475", null, "1057", null, "9613", null, "1334", null, "39956", null, "2390", null, "13581", null, "1359", null, "73039", null, "3177", null, "46061", null, "2581", null, "161927", null, "3547", null, "315404", null, "5121", null, "307027", null, "5075", null, "287950", null, "5217", null, "97025", null, "3406", null, "86938", null, "3315", null, "72896", null, "2580", null, "31703", null, "1404", null, "38.4", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.1", null, "0.5", null, "4.7", null, "0.6", null, "5.8", null, "0.6", null, "6.5", null, "0.5", null, "9.2", null, "0.7", null, "7.0", null, "0.6", null, "6.8", null, "0.4", null, "6.9", null, "0.7", null, "6.2", null, "0.6", null, "5.5", null, "0.5", null, "5.5", null, "0.3", null, "5.2", null, "0.4", null, "6.3", null, "0.5", null, "5.9", null, "0.5", null, "4.9", null, "0.5", null, "3.6", null, "0.3", null, "2.2", null, "0.3", null, "2.5", null, "0.3", null, "10.5", null, "0.6", null, "3.6", null, "0.4", null, "19.2", null, "0.7", null, "12.1", null, "0.6", null, "42.6", null, "0.8", null, "83.0", null, "0.7", null, "80.8", null, "0.7", null, "75.8", null, "0.9", null, "25.5", null, "0.8", null, "22.9", null, "0.8", null, "19.2", null, "0.6", null, "8.3", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17", "13"], ["5001900US1714", "Congressional District 14 (119th Congress), Illinois", "766577", null, "9171", null, "38536", null, "2482", null, "44526", null, "3203", null, "51201", null, "3442", null, "58376", null, "3472", null, "57887", null, "3566", null, "46084", null, "3429", null, "51047", null, "2694", null, "51438", null, "4220", null, "52034", null, "3497", null, "53893", null, "3088", null, "53495", null, "2911", null, "50911", null, "3334", null, "43825", null, "3007", null, "35991", null, "2903", null, "31400", null, "2683", null, "23468", null, "2096", null, "12177", null, "1544", null, "10288", null, "1286", null, "95727", null, "3918", null, "37224", null, "2186", null, "171487", null, "5213", null, "79039", null, "3754", null, "316866", null, "6185", null, "619922", null, "7928", null, "595090", null, "7664", null, "561819", null, "7469", null, "157149", null, "5110", null, "138231", null, "5258", null, "113324", null, "4554", null, "45933", null, "2096", null, "38.4", null, "0.6", null, "100.1", null, "2.1", null, "59.1", null, "1.7", null, "23.5", null, "1.1", null, "35.6", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.0", null, "0.3", null, "5.8", null, "0.4", null, "6.7", null, "0.4", null, "7.6", null, "0.4", null, "7.6", null, "0.5", null, "6.0", null, "0.4", null, "6.7", null, "0.3", null, "6.7", null, "0.5", null, "6.8", null, "0.5", null, "7.0", null, "0.4", null, "7.0", null, "0.4", null, "6.6", null, "0.4", null, "5.7", null, "0.4", null, "4.7", null, "0.4", null, "4.1", null, "0.4", null, "3.1", null, "0.3", null, "1.6", null, "0.2", null, "1.3", null, "0.2", null, "12.5", null, "0.5", null, "4.9", null, "0.3", null, "22.4", null, "0.6", null, "10.3", null, "0.5", null, "41.3", null, "0.6", null, "80.9", null, "0.5", null, "77.6", null, "0.6", null, "73.3", null, "0.7", null, "20.5", null, "0.7", null, "18.0", null, "0.7", null, "14.8", null, "0.6", null, "6.0", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "0.8", null, "-888888888.0", "(X)", "383549", null, "6620", null, "20044", null, "1979", null, "22111", null, "2185", null, "26904", null, "2625", null, "29112", null, "2377", null, "30449", null, "2181", null, "22442", null, "2361", null, "25445", null, "1767", null, "24849", null, "2725", null, "27001", null, "2514", null, "27485", null, "1885", null, "26917", null, "1989", null, "26473", null, "2235", null, "22735", null, "1991", null, "18033", null, "1920", null, "14262", null, "1526", null, "10616", null, "1175", null, "5607", null, "953", null, "3064", null, "740", null, "49015", null, "2824", null, "18301", null, "1516", null, "87360", null, "3788", null, "41260", null, "2452", null, "159298", null, "4272", null, "308305", null, "5295", null, "296189", null, "4900", null, "279259", null, "4703", null, "74317", null, "2939", null, "64329", null, "2972", null, "51582", null, "2621", null, "19287", null, "1343", null, "37.9", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.5", null, "5.8", null, "0.5", null, "7.0", null, "0.7", null, "7.6", null, "0.6", null, "7.9", null, "0.5", null, "5.9", null, "0.6", null, "6.6", null, "0.4", null, "6.5", null, "0.7", null, "7.0", null, "0.7", null, "7.2", null, "0.5", null, "7.0", null, "0.5", null, "6.9", null, "0.6", null, "5.9", null, "0.5", null, "4.7", null, "0.5", null, "3.7", null, "0.4", null, "2.8", null, "0.3", null, "1.5", null, "0.2", null, "0.8", null, "0.2", null, "12.8", null, "0.7", null, "4.8", null, "0.4", null, "22.8", null, "0.8", null, "10.8", null, "0.6", null, "41.5", null, "0.8", null, "80.4", null, "0.8", null, "77.2", null, "0.8", null, "72.8", null, "0.9", null, "19.4", null, "0.8", null, "16.8", null, "0.7", null, "13.4", null, "0.7", null, "5.0", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "383028", null, "5550", null, "18492", null, "1753", null, "22415", null, "2049", null, "24297", null, "2066", null, "29264", null, "2420", null, "27438", null, "2501", null, "23642", null, "1837", null, "25602", null, "1574", null, "26589", null, "2297", null, "25033", null, "2013", null, "26408", null, "2306", null, "26578", null, "1703", null, "24438", null, "2069", null, "21090", null, "1826", null, "17958", null, "1743", null, "17138", null, "1977", null, "12852", null, "1641", null, "6570", null, "1057", null, "7224", null, "1039", null, "46712", null, "2087", null, "18923", null, "1659", null, "84127", null, "3276", null, "37779", null, "2637", null, "157568", null, "3999", null, "311617", null, "4666", null, "298901", null, "4580", null, "282560", null, "4645", null, "82832", null, "3400", null, "73902", null, "3422", null, "61742", null, "2789", null, "26646", null, "1568", null, "38.8", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.8", null, "0.4", null, "5.9", null, "0.5", null, "6.3", null, "0.5", null, "7.6", null, "0.6", null, "7.2", null, "0.6", null, "6.2", null, "0.5", null, "6.7", null, "0.4", null, "6.9", null, "0.6", null, "6.5", null, "0.5", null, "6.9", null, "0.6", null, "6.9", null, "0.4", null, "6.4", null, "0.5", null, "5.5", null, "0.5", null, "4.7", null, "0.5", null, "4.5", null, "0.5", null, "3.4", null, "0.4", null, "1.7", null, "0.3", null, "1.9", null, "0.3", null, "12.2", null, "0.5", null, "4.9", null, "0.4", null, "22.0", null, "0.7", null, "9.9", null, "0.7", null, "41.1", null, "0.9", null, "81.4", null, "0.7", null, "78.0", null, "0.7", null, "73.8", null, "0.9", null, "21.6", null, "0.9", null, "19.3", null, "0.9", null, "16.1", null, "0.7", null, "7.0", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17", "14"], ["5001900US1715", "Congressional District 15 (119th Congress), Illinois", "739197", null, "9168", null, "35384", null, "1848", null, "41786", null, "2920", null, "43132", null, "2982", null, "49885", null, "2711", null, "41478", null, "2795", null, "38062", null, "2182", null, "41397", null, "2028", null, "43479", null, "3454", null, "48584", null, "3355", null, "41414", null, "2259", null, "44932", null, "2120", null, "46739", null, "2746", null, "53254", null, "2635", null, "53789", null, "2966", null, "42875", null, "2917", null, "32643", null, "2114", null, "22474", null, "2229", null, "17890", null, "1721", null, "84918", null, "3158", null, "29354", null, "1470", null, "149656", null, "3940", null, "62009", null, "3086", null, "262885", null, "5493", null, "609039", null, "7421", null, "589541", null, "6981", null, "559728", null, "6845", null, "222925", null, "5016", null, "201129", null, "4498", null, "169671", null, "4010", null, "73007", null, "2318", null, "43.6", null, "0.5", null, "98.9", null, "1.7", null, "76.1", null, "1.6", null, "40.4", null, "1.2", null, "35.6", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.8", null, "0.2", null, "5.7", null, "0.4", null, "5.8", null, "0.4", null, "6.7", null, "0.4", null, "5.6", null, "0.4", null, "5.1", null, "0.3", null, "5.6", null, "0.3", null, "5.9", null, "0.5", null, "6.6", null, "0.4", null, "5.6", null, "0.3", null, "6.1", null, "0.3", null, "6.3", null, "0.4", null, "7.2", null, "0.4", null, "7.3", null, "0.4", null, "5.8", null, "0.4", null, "4.4", null, "0.3", null, "3.0", null, "0.3", null, "2.4", null, "0.2", null, "11.5", null, "0.4", null, "4.0", null, "0.2", null, "20.2", null, "0.4", null, "8.4", null, "0.4", null, "35.6", null, "0.5", null, "82.4", null, "0.4", null, "79.8", null, "0.4", null, "75.7", null, "0.5", null, "30.2", null, "0.7", null, "27.2", null, "0.6", null, "23.0", null, "0.5", null, "9.9", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "0.8", null, "-888888888.0", "(X)", "367590", null, "5753", null, "17585", null, "1375", null, "21525", null, "2079", null, "22586", null, "2348", null, "25341", null, "2001", null, "22414", null, "1917", null, "19287", null, "1426", null, "21151", null, "1556", null, "22755", null, "2155", null, "23700", null, "1891", null, "21347", null, "1435", null, "23499", null, "1439", null, "23496", null, "1886", null, "24850", null, "1818", null, "27247", null, "1913", null, "20210", null, "1671", null, "13478", null, "1307", null, "9192", null, "1255", null, "7927", null, "1093", null, "44111", null, "2277", null, "15007", null, "1304", null, "76703", null, "3093", null, "32748", null, "1942", null, "134648", null, "3681", null, "300626", null, "4976", null, "290887", null, "4656", null, "275520", null, "4487", null, "102904", null, "3093", null, "93202", null, "2714", null, "78054", null, "2287", null, "30597", null, "1265", null, "42.5", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.8", null, "0.4", null, "5.9", null, "0.5", null, "6.1", null, "0.6", null, "6.9", null, "0.5", null, "6.1", null, "0.5", null, "5.2", null, "0.4", null, "5.8", null, "0.4", null, "6.2", null, "0.6", null, "6.4", null, "0.5", null, "5.8", null, "0.4", null, "6.4", null, "0.4", null, "6.4", null, "0.5", null, "6.8", null, "0.5", null, "7.4", null, "0.5", null, "5.5", null, "0.5", null, "3.7", null, "0.3", null, "2.5", null, "0.3", null, "2.2", null, "0.3", null, "12.0", null, "0.6", null, "4.1", null, "0.3", null, "20.9", null, "0.7", null, "8.9", null, "0.5", null, "36.6", null, "0.7", null, "81.8", null, "0.7", null, "79.1", null, "0.7", null, "75.0", null, "0.8", null, "28.0", null, "0.8", null, "25.4", null, "0.8", null, "21.2", null, "0.6", null, "8.3", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "371607", null, "5481", null, "17799", null, "1553", null, "20261", null, "1846", null, "20546", null, "1833", null, "24544", null, "2023", null, "19064", null, "1650", null, "18775", null, "1354", null, "20246", null, "1248", null, "20724", null, "2253", null, "24884", null, "2208", null, "20067", null, "1299", null, "21433", null, "1289", null, "23243", null, "1902", null, "28404", null, "1737", null, "26542", null, "1711", null, "22665", null, "1853", null, "19165", null, "1497", null, "13282", null, "1514", null, "9963", null, "1179", null, "40807", null, "2017", null, "14347", null, "1351", null, "72953", null, "2611", null, "29261", null, "2102", null, "128237", null, "3310", null, "308413", null, "4302", null, "298654", null, "4058", null, "284208", null, "3789", null, "120021", null, "2815", null, "107927", null, "2643", null, "91617", null, "2385", null, "42410", null, "1571", null, "44.8", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.8", null, "0.4", null, "5.5", null, "0.5", null, "5.5", null, "0.5", null, "6.6", null, "0.5", null, "5.1", null, "0.4", null, "5.1", null, "0.4", null, "5.4", null, "0.3", null, "5.6", null, "0.6", null, "6.7", null, "0.6", null, "5.4", null, "0.3", null, "5.8", null, "0.3", null, "6.3", null, "0.5", null, "7.6", null, "0.5", null, "7.1", null, "0.5", null, "6.1", null, "0.5", null, "5.2", null, "0.4", null, "3.6", null, "0.4", null, "2.7", null, "0.3", null, "11.0", null, "0.5", null, "3.9", null, "0.4", null, "19.6", null, "0.5", null, "7.9", null, "0.5", null, "34.5", null, "0.7", null, "83.0", null, "0.6", null, "80.4", null, "0.5", null, "76.5", null, "0.7", null, "32.3", null, "0.8", null, "29.0", null, "0.7", null, "24.7", null, "0.6", null, "11.4", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17", "15"], ["5001900US1716", "Congressional District 16 (119th Congress), Illinois", "752764", null, "9531", null, "39955", null, "2693", null, "45823", null, "2789", null, "53964", null, "3653", null, "42287", null, "2784", null, "40292", null, "2909", null, "41827", null, "2672", null, "46925", null, "2979", null, "44433", null, "2764", null, "47990", null, "3216", null, "44606", null, "2471", null, "47979", null, "2321", null, "44851", null, "2916", null, "50592", null, "3089", null, "52324", null, "2860", null, "40153", null, "2831", null, "31802", null, "2105", null, "19587", null, "1753", null, "17374", null, "1755", null, "99787", null, "4183", null, "30503", null, "1991", null, "170245", null, "5941", null, "52076", null, "3226", null, "263754", null, "6015", null, "602668", null, "7320", null, "582519", null, "6884", null, "562909", null, "6842", null, "211832", null, "4658", null, "191295", null, "4099", null, "161240", null, "3690", null, "68763", null, "2232", null, "42.2", null, "0.7", null, "99.9", null, "1.9", null, "78.7", null, "1.7", null, "38.3", null, "1.1", null, "40.4", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.3", null, "0.3", null, "6.1", null, "0.4", null, "7.2", null, "0.5", null, "5.6", null, "0.4", null, "5.4", null, "0.4", null, "5.6", null, "0.3", null, "6.2", null, "0.4", null, "5.9", null, "0.4", null, "6.4", null, "0.4", null, "5.9", null, "0.3", null, "6.4", null, "0.3", null, "6.0", null, "0.4", null, "6.7", null, "0.4", null, "7.0", null, "0.4", null, "5.3", null, "0.4", null, "4.2", null, "0.3", null, "2.6", null, "0.2", null, "2.3", null, "0.2", null, "13.3", null, "0.5", null, "4.1", null, "0.2", null, "22.6", null, "0.6", null, "6.9", null, "0.4", null, "35.0", null, "0.6", null, "80.1", null, "0.6", null, "77.4", null, "0.6", null, "74.8", null, "0.7", null, "28.1", null, "0.6", null, "25.4", null, "0.6", null, "21.4", null, "0.5", null, "9.1", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "0.7", null, "-888888888.0", "(X)", "376101", null, "6742", null, "20091", null, "1707", null, "24099", null, "2002", null, "28412", null, "2686", null, "21222", null, "1888", null, "21186", null, "1693", null, "20414", null, "1755", null, "24518", null, "1787", null, "22352", null, "2050", null, "24746", null, "2524", null, "22706", null, "1722", null, "23171", null, "1426", null, "22830", null, "1941", null, "24990", null, "2034", null, "25177", null, "1783", null, "19668", null, "1622", null, "14556", null, "1460", null, "8534", null, "1165", null, "7429", null, "967", null, "52511", null, "3006", null, "14823", null, "1208", null, "87425", null, "4073", null, "27585", null, "1945", null, "134438", null, "3861", null, "298892", null, "4980", null, "288676", null, "4613", null, "278470", null, "4543", null, "100354", null, "2854", null, "89701", null, "2519", null, "75364", null, "2128", null, "30519", null, "1209", null, "41.0", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.3", null, "0.4", null, "6.4", null, "0.5", null, "7.6", null, "0.7", null, "5.6", null, "0.5", null, "5.6", null, "0.4", null, "5.4", null, "0.4", null, "6.5", null, "0.5", null, "5.9", null, "0.5", null, "6.6", null, "0.7", null, "6.0", null, "0.4", null, "6.2", null, "0.4", null, "6.1", null, "0.5", null, "6.6", null, "0.5", null, "6.7", null, "0.5", null, "5.2", null, "0.4", null, "3.9", null, "0.4", null, "2.3", null, "0.3", null, "2.0", null, "0.3", null, "14.0", null, "0.7", null, "3.9", null, "0.3", null, "23.2", null, "0.8", null, "7.3", null, "0.5", null, "35.7", null, "0.8", null, "79.5", null, "0.8", null, "76.8", null, "0.8", null, "74.0", null, "0.9", null, "26.7", null, "0.8", null, "23.9", null, "0.7", null, "20.0", null, "0.6", null, "8.1", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "376663", null, "5016", null, "19864", null, "1843", null, "21724", null, "1635", null, "25552", null, "1897", null, "21065", null, "1801", null, "19106", null, "1991", null, "21413", null, "1733", null, "22407", null, "1749", null, "22081", null, "1955", null, "23244", null, "1819", null, "21900", null, "1451", null, "24808", null, "1492", null, "22021", null, "1754", null, "25602", null, "1673", null, "27147", null, "1865", null, "20485", null, "1693", null, "17246", null, "1481", null, "11053", null, "1307", null, "9945", null, "1149", null, "47276", null, "2201", null, "15680", null, "1430", null, "82820", null, "3184", null, "24491", null, "2160", null, "129316", null, "3657", null, "303776", null, "4257", null, "293843", null, "3899", null, "284439", null, "3930", null, "111478", null, "2646", null, "101594", null, "2484", null, "85876", null, "2162", null, "38244", null, "1465", null, "43.2", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.3", null, "0.5", null, "5.8", null, "0.4", null, "6.8", null, "0.5", null, "5.6", null, "0.5", null, "5.1", null, "0.5", null, "5.7", null, "0.4", null, "5.9", null, "0.4", null, "5.9", null, "0.5", null, "6.2", null, "0.5", null, "5.8", null, "0.4", null, "6.6", null, "0.4", null, "5.8", null, "0.5", null, "6.8", null, "0.4", null, "7.2", null, "0.5", null, "5.4", null, "0.5", null, "4.6", null, "0.4", null, "2.9", null, "0.3", null, "2.6", null, "0.3", null, "12.6", null, "0.6", null, "4.2", null, "0.4", null, "22.0", null, "0.7", null, "6.5", null, "0.5", null, "34.3", null, "0.7", null, "80.6", null, "0.7", null, "78.0", null, "0.7", null, "75.5", null, "0.8", null, "29.6", null, "0.7", null, "27.0", null, "0.7", null, "22.8", null, "0.6", null, "10.2", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17", "16"], ["5001900US1717", "Congressional District 17 (119th Congress), Illinois", "743507", null, "8773", null, "38722", null, "2519", null, "44715", null, "3105", null, "43865", null, "3186", null, "56064", null, "3397", null, "61707", null, "3518", null, "47213", null, "2743", null, "47833", null, "3579", null, "45767", null, "3540", null, "45729", null, "3628", null, "43921", null, "2665", null, "39621", null, "2393", null, "40699", null, "3072", null, "48822", null, "2984", null, "45096", null, "2611", null, "35839", null, "2643", null, "25580", null, "2181", null, "16148", null, "1337", null, "16166", null, "2111", null, "88580", null, "4208", null, "29053", null, "2085", null, "156355", null, "5237", null, "88718", null, "3274", null, "304313", null, "6078", null, "607763", null, "6684", null, "587152", null, "6201", null, "548073", null, "6640", null, "187651", null, "4365", null, "167445", null, "4063", null, "138829", null, "3553", null, "57894", null, "1907", null, "38.4", null, "0.6", null, "97.5", null, "1.9", null, "65.8", null, "1.3", null, "31.0", null, "1.0", null, "34.9", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.3", null, "6.0", null, "0.4", null, "5.9", null, "0.4", null, "7.5", null, "0.5", null, "8.3", null, "0.4", null, "6.4", null, "0.4", null, "6.4", null, "0.5", null, "6.2", null, "0.5", null, "6.2", null, "0.5", null, "5.9", null, "0.4", null, "5.3", null, "0.3", null, "5.5", null, "0.4", null, "6.6", null, "0.4", null, "6.1", null, "0.3", null, "4.8", null, "0.4", null, "3.4", null, "0.3", null, "2.2", null, "0.2", null, "2.2", null, "0.3", null, "11.9", null, "0.5", null, "3.9", null, "0.3", null, "21.0", null, "0.6", null, "11.9", null, "0.4", null, "40.9", null, "0.5", null, "81.7", null, "0.5", null, "79.0", null, "0.6", null, "73.7", null, "0.6", null, "25.2", null, "0.6", null, "22.5", null, "0.6", null, "18.7", null, "0.5", null, "7.8", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "0.9", null, "-888888888.0", "(X)", "367053", null, "6459", null, "19267", null, "2068", null, "22324", null, "2199", null, "23233", null, "2388", null, "26304", null, "2106", null, "33148", null, "2194", null, "23737", null, "1841", null, "25113", null, "2188", null, "23082", null, "2062", null, "23457", null, "2191", null, "21465", null, "1762", null, "20480", null, "1598", null, "20887", null, "1960", null, "21701", null, "1807", null, "21916", null, "1677", null, "16984", null, "1691", null, "10805", null, "1288", null, "7118", null, "962", null, "6032", null, "1059", null, "45557", null, "3005", null, "14727", null, "1254", null, "79551", null, "3837", null, "44725", null, "2276", null, "154841", null, "4012", null, "297276", null, "4618", null, "287502", null, "4360", null, "268787", null, "4354", null, "84556", null, "2415", null, "75797", null, "2229", null, "62855", null, "2088", null, "23955", null, "1179", null, "37.2", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.5", null, "6.1", null, "0.6", null, "6.3", null, "0.6", null, "7.2", null, "0.5", null, "9.0", null, "0.6", null, "6.5", null, "0.5", null, "6.8", null, "0.6", null, "6.3", null, "0.6", null, "6.4", null, "0.6", null, "5.8", null, "0.5", null, "5.6", null, "0.4", null, "5.7", null, "0.5", null, "5.9", null, "0.5", null, "6.0", null, "0.4", null, "4.6", null, "0.5", null, "2.9", null, "0.4", null, "1.9", null, "0.3", null, "1.6", null, "0.3", null, "12.4", null, "0.7", null, "4.0", null, "0.3", null, "21.7", null, "0.8", null, "12.2", null, "0.6", null, "42.2", null, "0.7", null, "81.0", null, "0.8", null, "78.3", null, "0.8", null, "73.2", null, "0.9", null, "23.0", null, "0.7", null, "20.7", null, "0.7", null, "17.1", null, "0.6", null, "6.5", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "376454", null, "4620", null, "19455", null, "1746", null, "22391", null, "2037", null, "20632", null, "2013", null, "29760", null, "2847", null, "28559", null, "2359", null, "23476", null, "1804", null, "22720", null, "2005", null, "22685", null, "2294", null, "22272", null, "2476", null, "22456", null, "1759", null, "19141", null, "1434", null, "19812", null, "1784", null, "27121", null, "2086", null, "23180", null, "1726", null, "18855", null, "1678", null, "14775", null, "1351", null, "9030", null, "952", null, "10134", null, "1373", null, "43023", null, "2045", null, "14326", null, "1518", null, "76804", null, "3101", null, "43993", null, "2214", null, "149472", null, "3885", null, "310487", null, "3927", null, "299650", null, "3531", null, "279286", null, "3405", null, "103095", null, "2802", null, "91648", null, "2732", null, "75974", null, "1986", null, "33939", null, "1304", null, "39.7", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.4", null, "5.9", null, "0.5", null, "5.5", null, "0.5", null, "7.9", null, "0.7", null, "7.6", null, "0.6", null, "6.2", null, "0.5", null, "6.0", null, "0.5", null, "6.0", null, "0.6", null, "5.9", null, "0.7", null, "6.0", null, "0.5", null, "5.1", null, "0.4", null, "5.3", null, "0.5", null, "7.2", null, "0.5", null, "6.2", null, "0.4", null, "5.0", null, "0.5", null, "3.9", null, "0.4", null, "2.4", null, "0.3", null, "2.7", null, "0.4", null, "11.4", null, "0.5", null, "3.8", null, "0.4", null, "20.4", null, "0.7", null, "11.7", null, "0.6", null, "39.7", null, "0.8", null, "82.5", null, "0.7", null, "79.6", null, "0.7", null, "74.2", null, "0.8", null, "27.4", null, "0.7", null, "24.3", null, "0.7", null, "20.2", null, "0.5", null, "9.0", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17", "17"], ["5001900US1801", "Congressional District 1 (119th Congress), Indiana", "760512", null, "3019", null, "40978", null, "997", null, "48988", null, "3287", null, "46094", null, "3140", null, "50659", null, "1496", null, "44267", null, "1114", null, "44073", null, "1641", null, "50596", null, "1777", null, "48319", null, "3317", null, "50463", null, "3434", null, "47858", null, "1444", null, "48187", null, "1340", null, "45243", null, "2693", null, "48827", null, "2812", null, "47710", null, "2257", null, "40838", null, "2366", null, "26032", null, "1976", null, "16651", null, "1860", null, "14729", null, "1679", null, "95082", null, "1830", null, "32129", null, "925", null, "168189", null, "1633", null, "62797", null, "1323", null, "288377", null, "2515", null, "614547", null, "2858", null, "592323", null, "2404", null, "563289", null, "2465", null, "194787", null, "3248", null, "173756", null, "2949", null, "145960", null, "1527", null, "57412", null, "1070", null, "40.7", null, "0.5", null, "97.0", null, "0.8", null, "70.4", null, "0.6", null, "32.7", null, "0.4", null, "37.7", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.1", null, "6.4", null, "0.4", null, "6.1", null, "0.4", null, "6.7", null, "0.2", null, "5.8", null, "0.1", null, "5.8", null, "0.2", null, "6.7", null, "0.2", null, "6.4", null, "0.4", null, "6.6", null, "0.5", null, "6.3", null, "0.2", null, "6.3", null, "0.2", null, "5.9", null, "0.4", null, "6.4", null, "0.4", null, "6.3", null, "0.3", null, "5.4", null, "0.3", null, "3.4", null, "0.3", null, "2.2", null, "0.2", null, "1.9", null, "0.2", null, "12.5", null, "0.2", null, "4.2", null, "0.1", null, "22.1", null, "0.2", null, "8.3", null, "0.2", null, "37.9", null, "0.3", null, "80.8", null, "0.3", null, "77.9", null, "0.2", null, "74.1", null, "0.3", null, "25.6", null, "0.4", null, "22.8", null, "0.4", null, "19.2", null, "0.2", null, "7.5", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.2", null, "-888888888.0", "(X)", "374527", null, "2065", null, "20381", null, "683", null, "23420", null, "2460", null, "25089", null, "2453", null, "26660", null, "1076", null, "22872", null, "996", null, "23394", null, "993", null, "25621", null, "1169", null, "23147", null, "2199", null, "24809", null, "2151", null, "24314", null, "1067", null, "24026", null, "929", null, "20541", null, "1993", null, "25112", null, "1980", null, "21881", null, "1573", null, "19494", null, "1755", null, "11666", null, "1170", null, "6946", null, "1000", null, "5154", null, "1001", null, "48509", null, "1178", null, "16827", null, "795", null, "85717", null, "1246", null, "32705", null, "924", null, "146503", null, "1585", null, "301315", null, "1830", null, "288810", null, "1534", null, "273630", null, "1903", null, "90253", null, "2194", null, "79340", null, "1889", null, "65141", null, "937", null, "23766", null, "646", null, "39.4", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.2", null, "6.3", null, "0.7", null, "6.7", null, "0.7", null, "7.1", null, "0.3", null, "6.1", null, "0.3", null, "6.2", null, "0.3", null, "6.8", null, "0.3", null, "6.2", null, "0.6", null, "6.6", null, "0.6", null, "6.5", null, "0.3", null, "6.4", null, "0.3", null, "5.5", null, "0.5", null, "6.7", null, "0.5", null, "5.8", null, "0.4", null, "5.2", null, "0.5", null, "3.1", null, "0.3", null, "1.9", null, "0.3", null, "1.4", null, "0.3", null, "13.0", null, "0.3", null, "4.5", null, "0.2", null, "22.9", null, "0.3", null, "8.7", null, "0.2", null, "39.1", null, "0.4", null, "80.5", null, "0.4", null, "77.1", null, "0.3", null, "73.1", null, "0.5", null, "24.1", null, "0.6", null, "21.2", null, "0.5", null, "17.4", null, "0.2", null, "6.3", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "385985", null, "2152", null, "20597", null, "849", null, "25568", null, "2496", null, "21005", null, "2372", null, "23999", null, "1063", null, "21395", null, "795", null, "20679", null, "1082", null, "24975", null, "1045", null, "25172", null, "2217", null, "25654", null, "2270", null, "23544", null, "863", null, "24161", null, "964", null, "24702", null, "1807", null, "23715", null, "1844", null, "25829", null, "1590", null, "21344", null, "1576", null, "14366", null, "1459", null, "9705", null, "1195", null, "9575", null, "1285", null, "46573", null, "1061", null, "15302", null, "653", null, "82472", null, "1407", null, "30092", null, "865", null, "141874", null, "1734", null, "313232", null, "2108", null, "303513", null, "1566", null, "289659", null, "1883", null, "104534", null, "2029", null, "94416", null, "2117", null, "80819", null, "998", null, "33646", null, "671", null, "42.0", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.3", null, "0.2", null, "6.6", null, "0.6", null, "5.4", null, "0.6", null, "6.2", null, "0.3", null, "5.5", null, "0.2", null, "5.4", null, "0.3", null, "6.5", null, "0.3", null, "6.5", null, "0.6", null, "6.6", null, "0.6", null, "6.1", null, "0.2", null, "6.3", null, "0.2", null, "6.4", null, "0.5", null, "6.1", null, "0.5", null, "6.7", null, "0.4", null, "5.5", null, "0.4", null, "3.7", null, "0.4", null, "2.5", null, "0.3", null, "2.5", null, "0.3", null, "12.1", null, "0.3", null, "4.0", null, "0.2", null, "21.4", null, "0.3", null, "7.8", null, "0.2", null, "36.8", null, "0.4", null, "81.2", null, "0.4", null, "78.6", null, "0.3", null, "75.0", null, "0.5", null, "27.1", null, "0.5", null, "24.5", null, "0.6", null, "20.9", null, "0.2", null, "8.7", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18", "01"], ["5001900US1802", "Congressional District 2 (119th Congress), Indiana", "751821", null, "4655", null, "45305", null, "1483", null, "48797", null, "3538", null, "50800", null, "3123", null, "55364", null, "2315", null, "50263", null, "2248", null, "49082", null, "1663", null, "49040", null, "1635", null, "50692", null, "2595", null, "41084", null, "2812", null, "41510", null, "1761", null, "42498", null, "1501", null, "40980", null, "2945", null, "46077", null, "2670", null, "45091", null, "2909", null, "36769", null, "2495", null, "27072", null, "1946", null, "16365", null, "1561", null, "15032", null, "1719", null, "99597", null, "2230", null, "32687", null, "1022", null, "177589", null, "2550", null, "72940", null, "1707", null, "295525", null, "3267", null, "596875", null, "4000", null, "574232", null, "3580", null, "541291", null, "4626", null, "186406", null, "3092", null, "169091", null, "3023", null, "140329", null, "2221", null, "58469", null, "1534", null, "37.7", null, "0.4", null, "98.5", null, "1.3", null, "73.3", null, "1.0", null, "32.3", null, "0.7", null, "40.9", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.0", null, "0.2", null, "6.5", null, "0.5", null, "6.8", null, "0.4", null, "7.4", null, "0.3", null, "6.7", null, "0.3", null, "6.5", null, "0.2", null, "6.5", null, "0.2", null, "6.7", null, "0.3", null, "5.5", null, "0.4", null, "5.5", null, "0.2", null, "5.7", null, "0.2", null, "5.5", null, "0.4", null, "6.1", null, "0.4", null, "6.0", null, "0.4", null, "4.9", null, "0.3", null, "3.6", null, "0.3", null, "2.2", null, "0.2", null, "2.0", null, "0.2", null, "13.2", null, "0.3", null, "4.3", null, "0.1", null, "23.6", null, "0.3", null, "9.7", null, "0.2", null, "39.3", null, "0.4", null, "79.4", null, "0.3", null, "76.4", null, "0.3", null, "72.0", null, "0.4", null, "24.8", null, "0.4", null, "22.5", null, "0.4", null, "18.7", null, "0.3", null, "7.8", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.6", null, "-888888888.0", "(X)", "373047", null, "3555", null, "23427", null, "964", null, "23325", null, "2474", null, "28372", null, "2165", null, "29019", null, "2109", null, "23689", null, "1293", null, "24775", null, "903", null, "25932", null, "1507", null, "24892", null, "2094", null, "21308", null, "1944", null, "20637", null, "1345", null, "20756", null, "1298", null, "19812", null, "1936", null, "22854", null, "1668", null, "22074", null, "2028", null, "17883", null, "1563", null, "11805", null, "1130", null, "7344", null, "970", null, "5143", null, "922", null, "51697", null, "1858", null, "17583", null, "1482", null, "92707", null, "2439", null, "35125", null, "1088", null, "149615", null, "2170", null, "292365", null, "2920", null, "280340", null, "2394", null, "264114", null, "2701", null, "87103", null, "2224", null, "78818", null, "2219", null, "64249", null, "1337", null, "24292", null, "860", null, "36.7", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.3", null, "0.2", null, "6.3", null, "0.7", null, "7.6", null, "0.6", null, "7.8", null, "0.5", null, "6.4", null, "0.4", null, "6.6", null, "0.2", null, "7.0", null, "0.4", null, "6.7", null, "0.6", null, "5.7", null, "0.5", null, "5.5", null, "0.3", null, "5.6", null, "0.3", null, "5.3", null, "0.5", null, "6.1", null, "0.5", null, "5.9", null, "0.5", null, "4.8", null, "0.4", null, "3.2", null, "0.3", null, "2.0", null, "0.3", null, "1.4", null, "0.2", null, "13.9", null, "0.4", null, "4.7", null, "0.4", null, "24.9", null, "0.5", null, "9.4", null, "0.3", null, "40.1", null, "0.5", null, "78.4", null, "0.5", null, "75.1", null, "0.5", null, "70.8", null, "0.7", null, "23.3", null, "0.6", null, "21.1", null, "0.6", null, "17.2", null, "0.3", null, "6.5", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "378774", null, "3180", null, "21878", null, "1400", null, "25472", null, "2199", null, "22428", null, "2038", null, "26345", null, "1902", null, "26574", null, "1705", null, "24307", null, "1298", null, "23108", null, "724", null, "25800", null, "1852", null, "19776", null, "1879", null, "20873", null, "1122", null, "21742", null, "970", null, "21168", null, "1863", null, "23223", null, "1979", null, "23017", null, "1708", null, "18886", null, "1503", null, "15267", null, "1298", null, "9021", null, "1173", null, "9889", null, "1243", null, "47900", null, "1199", null, "15104", null, "1471", null, "84882", null, "2410", null, "37815", null, "1364", null, "145910", null, "2698", null, "304510", null, "2618", null, "293892", null, "2498", null, "277177", null, "3189", null, "99303", null, "2132", null, "90273", null, "1760", null, "76080", null, "1472", null, "34177", null, "881", null, "38.7", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.8", null, "0.3", null, "6.7", null, "0.6", null, "5.9", null, "0.5", null, "7.0", null, "0.5", null, "7.0", null, "0.4", null, "6.4", null, "0.3", null, "6.1", null, "0.2", null, "6.8", null, "0.5", null, "5.2", null, "0.5", null, "5.5", null, "0.3", null, "5.7", null, "0.2", null, "5.6", null, "0.5", null, "6.1", null, "0.5", null, "6.1", null, "0.5", null, "5.0", null, "0.4", null, "4.0", null, "0.3", null, "2.4", null, "0.3", null, "2.6", null, "0.3", null, "12.6", null, "0.3", null, "4.0", null, "0.4", null, "22.4", null, "0.5", null, "10.0", null, "0.3", null, "38.5", null, "0.6", null, "80.4", null, "0.5", null, "77.6", null, "0.5", null, "73.2", null, "0.7", null, "26.2", null, "0.6", null, "23.8", null, "0.5", null, "20.1", null, "0.4", null, "9.0", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18", "02"], ["5001900US1803", "Congressional District 3 (119th Congress), Indiana", "774688", null, "3598", null, "50045", null, "1244", null, "52866", null, "3234", null, "53222", null, "2937", null, "52831", null, "1554", null, "49593", null, "1844", null, "51366", null, "1378", null, "50696", null, "1800", null, "47595", null, "3271", null, "48412", null, "3368", null, "43891", null, "1542", null, "45445", null, "907", null, "44172", null, "2538", null, "48180", null, "2713", null, "43240", null, "2501", null, "37701", null, "2549", null, "26959", null, "1903", null, "14780", null, "1386", null, "13694", null, "1582", null, "106088", null, "1800", null, "34850", null, "831", null, "190983", null, "2337", null, "67574", null, "1286", null, "300493", null, "2384", null, "608030", null, "2807", null, "583705", null, "2471", null, "555158", null, "3176", null, "184554", null, "3000", null, "164115", null, "2738", null, "136374", null, "1352", null, "55433", null, "951", null, "37.8", null, "0.4", null, "99.4", null, "1.0", null, "73.2", null, "0.7", null, "30.5", null, "0.4", null, "42.7", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.5", null, "0.1", null, "6.8", null, "0.4", null, "6.9", null, "0.4", null, "6.8", null, "0.2", null, "6.4", null, "0.2", null, "6.6", null, "0.2", null, "6.5", null, "0.2", null, "6.1", null, "0.4", null, "6.2", null, "0.4", null, "5.7", null, "0.2", null, "5.9", null, "0.1", null, "5.7", null, "0.3", null, "6.2", null, "0.3", null, "5.6", null, "0.3", null, "4.9", null, "0.3", null, "3.5", null, "0.2", null, "1.9", null, "0.2", null, "1.8", null, "0.2", null, "13.7", null, "0.2", null, "4.5", null, "0.1", null, "24.7", null, "0.2", null, "8.7", null, "0.2", null, "38.8", null, "0.3", null, "78.5", null, "0.3", null, "75.3", null, "0.2", null, "71.7", null, "0.3", null, "23.8", null, "0.4", null, "21.2", null, "0.4", null, "17.6", null, "0.2", null, "7.2", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "0.7", null, "-888888888.0", "(X)", "386180", null, "2561", null, "25496", null, "1082", null, "25673", null, "2380", null, "28950", null, "2304", null, "27167", null, "1268", null, "25751", null, "1004", null, "26102", null, "903", null, "25932", null, "1573", null, "24242", null, "1930", null, "24286", null, "2090", null, "21985", null, "1165", null, "22633", null, "550", null, "22093", null, "1639", null, "24138", null, "1724", null, "20421", null, "1554", null, "18184", null, "1528", null, "11944", null, "1084", null, "6341", null, "908", null, "4842", null, "832", null, "54623", null, "1166", null, "18197", null, "1032", null, "98316", null, "2058", null, "34721", null, "854", null, "153480", null, "1788", null, "301097", null, "1885", null, "287864", null, "1757", null, "273644", null, "2312", null, "85870", null, "1950", null, "76089", null, "1683", null, "61732", null, "868", null, "23127", null, "479", null, "36.5", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.6", null, "0.3", null, "6.6", null, "0.6", null, "7.5", null, "0.6", null, "7.0", null, "0.3", null, "6.7", null, "0.3", null, "6.8", null, "0.2", null, "6.7", null, "0.4", null, "6.3", null, "0.5", null, "6.3", null, "0.5", null, "5.7", null, "0.3", null, "5.9", null, "0.1", null, "5.7", null, "0.4", null, "6.3", null, "0.4", null, "5.3", null, "0.4", null, "4.7", null, "0.4", null, "3.1", null, "0.3", null, "1.6", null, "0.2", null, "1.3", null, "0.2", null, "14.1", null, "0.3", null, "4.7", null, "0.3", null, "25.5", null, "0.4", null, "9.0", null, "0.2", null, "39.7", null, "0.4", null, "78.0", null, "0.4", null, "74.5", null, "0.4", null, "70.9", null, "0.5", null, "22.2", null, "0.5", null, "19.7", null, "0.4", null, "16.0", null, "0.2", null, "6.0", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "388508", null, "2664", null, "24549", null, "959", null, "27193", null, "2239", null, "24272", null, "1972", null, "25664", null, "1399", null, "23842", null, "1273", null, "25264", null, "851", null, "24764", null, "807", null, "23353", null, "2166", null, "24126", null, "2225", null, "21906", null, "1046", null, "22812", null, "672", null, "22079", null, "1755", null, "24042", null, "1692", null, "22819", null, "1462", null, "19517", null, "1559", null, "15015", null, "1328", null, "8439", null, "1057", null, "8852", null, "1145", null, "51465", null, "1017", null, "16653", null, "964", null, "92667", null, "1997", null, "32853", null, "896", null, "147013", null, "1920", null, "306933", null, "2090", null, "295841", null, "1639", null, "281514", null, "1928", null, "98684", null, "1950", null, "88026", null, "1743", null, "74642", null, "975", null, "32306", null, "754", null, "39.1", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.3", null, "0.2", null, "7.0", null, "0.6", null, "6.2", null, "0.5", null, "6.6", null, "0.3", null, "6.1", null, "0.3", null, "6.5", null, "0.2", null, "6.4", null, "0.2", null, "6.0", null, "0.6", null, "6.2", null, "0.6", null, "5.6", null, "0.3", null, "5.9", null, "0.2", null, "5.7", null, "0.4", null, "6.2", null, "0.4", null, "5.9", null, "0.4", null, "5.0", null, "0.4", null, "3.9", null, "0.3", null, "2.2", null, "0.3", null, "2.3", null, "0.3", null, "13.2", null, "0.2", null, "4.3", null, "0.2", null, "23.9", null, "0.4", null, "8.5", null, "0.2", null, "37.8", null, "0.4", null, "79.0", null, "0.4", null, "76.1", null, "0.4", null, "72.5", null, "0.4", null, "25.4", null, "0.5", null, "22.7", null, "0.5", null, "19.2", null, "0.3", null, "8.3", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18", "03"], ["5001900US1804", "Congressional District 4 (119th Congress), Indiana", "789018", null, "2407", null, "44959", null, "1674", null, "49342", null, "2782", null, "50324", null, "2898", null, "59305", null, "2013", null, "64660", null, "2228", null, "48230", null, "1953", null, "54925", null, "2452", null, "49348", null, "3333", null, "48595", null, "3534", null, "49826", null, "2342", null, "47389", null, "1772", null, "43609", null, "3016", null, "48838", null, "2824", null, "41613", null, "2184", null, "35277", null, "2128", null, "23674", null, "1720", null, "14874", null, "1441", null, "14230", null, "1702", null, "99666", null, "1731", null, "31561", null, "1039", null, "176186", null, "1933", null, "92404", null, "2098", null, "325063", null, "3173", null, "633917", null, "2682", null, "612832", null, "2147", null, "571991", null, "3154", null, "178506", null, "3560", null, "156572", null, "3330", null, "129668", null, "1700", null, "52778", null, "1114", null, "37.4", null, "0.3", null, "102.1", null, "1.4", null, "63.3", null, "0.7", null, "26.8", null, "0.5", null, "36.5", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.7", null, "0.2", null, "6.3", null, "0.4", null, "6.4", null, "0.4", null, "7.5", null, "0.3", null, "8.2", null, "0.3", null, "6.1", null, "0.2", null, "7.0", null, "0.3", null, "6.3", null, "0.4", null, "6.2", null, "0.4", null, "6.3", null, "0.3", null, "6.0", null, "0.2", null, "5.5", null, "0.4", null, "6.2", null, "0.4", null, "5.3", null, "0.3", null, "4.5", null, "0.3", null, "3.0", null, "0.2", null, "1.9", null, "0.2", null, "1.8", null, "0.2", null, "12.6", null, "0.2", null, "4.0", null, "0.1", null, "22.3", null, "0.2", null, "11.7", null, "0.3", null, "41.2", null, "0.4", null, "80.3", null, "0.3", null, "77.7", null, "0.2", null, "72.5", null, "0.4", null, "22.6", null, "0.5", null, "19.8", null, "0.4", null, "16.4", null, "0.2", null, "6.7", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.0", null, "-888888888.0", "(X)", "398647", null, "2903", null, "24009", null, "1436", null, "24926", null, "1778", null, "25527", null, "2370", null, "31416", null, "1701", null, "36113", null, "1409", null, "24558", null, "1104", null, "28224", null, "1664", null, "24411", null, "2398", null, "24883", null, "2452", null, "26399", null, "1551", null, "24287", null, "1444", null, "21658", null, "1886", null, "23563", null, "1803", null, "18672", null, "1645", null, "17854", null, "1538", null, "10040", null, "1124", null, "5969", null, "996", null, "6138", null, "912", null, "50453", null, "1506", null, "15762", null, "866", null, "90224", null, "1992", null, "51767", null, "1333", null, "169605", null, "2417", null, "318521", null, "2565", null, "308423", null, "2235", null, "285543", null, "2731", null, "82236", null, "2114", null, "72065", null, "1869", null, "58673", null, "937", null, "22147", null, "577", null, "36.2", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.0", null, "0.3", null, "6.3", null, "0.5", null, "6.4", null, "0.6", null, "7.9", null, "0.4", null, "9.1", null, "0.4", null, "6.2", null, "0.3", null, "7.1", null, "0.4", null, "6.1", null, "0.6", null, "6.2", null, "0.6", null, "6.6", null, "0.4", null, "6.1", null, "0.4", null, "5.4", null, "0.5", null, "5.9", null, "0.4", null, "4.7", null, "0.4", null, "4.5", null, "0.4", null, "2.5", null, "0.3", null, "1.5", null, "0.3", null, "1.5", null, "0.2", null, "12.7", null, "0.3", null, "4.0", null, "0.2", null, "22.6", null, "0.4", null, "13.0", null, "0.3", null, "42.5", null, "0.6", null, "79.9", null, "0.4", null, "77.4", null, "0.4", null, "71.6", null, "0.6", null, "20.6", null, "0.5", null, "18.1", null, "0.5", null, "14.7", null, "0.3", null, "5.6", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "390371", null, "2985", null, "20950", null, "1321", null, "24416", null, "2202", null, "24797", null, "1975", null, "27889", null, "1461", null, "28547", null, "1446", null, "23672", null, "1503", null, "26701", null, "1569", null, "24937", null, "1996", null, "23712", null, "2038", null, "23427", null, "1326", null, "23102", null, "925", null, "21951", null, "2263", null, "25275", null, "1905", null, "22941", null, "1481", null, "17423", null, "1406", null, "13634", null, "1198", null, "8905", null, "1171", null, "8092", null, "1241", null, "49213", null, "1901", null, "15799", null, "1048", null, "85962", null, "2319", null, "40637", null, "1387", null, "155458", null, "2118", null, "315396", null, "2431", null, "304409", null, "1946", null, "286448", null, "2600", null, "96270", null, "2404", null, "84507", null, "2365", null, "70995", null, "1245", null, "30631", null, "774", null, "38.5", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.3", null, "6.3", null, "0.5", null, "6.4", null, "0.5", null, "7.1", null, "0.4", null, "7.3", null, "0.4", null, "6.1", null, "0.4", null, "6.8", null, "0.4", null, "6.4", null, "0.5", null, "6.1", null, "0.5", null, "6.0", null, "0.3", null, "5.9", null, "0.2", null, "5.6", null, "0.6", null, "6.5", null, "0.5", null, "5.9", null, "0.4", null, "4.5", null, "0.4", null, "3.5", null, "0.3", null, "2.3", null, "0.3", null, "2.1", null, "0.3", null, "12.6", null, "0.4", null, "4.0", null, "0.3", null, "22.0", null, "0.5", null, "10.4", null, "0.4", null, "39.8", null, "0.5", null, "80.8", null, "0.5", null, "78.0", null, "0.5", null, "73.4", null, "0.7", null, "24.7", null, "0.6", null, "21.6", null, "0.6", null, "18.2", null, "0.3", null, "7.8", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18", "04"], ["5001900US1805", "Congressional District 5 (119th Congress), Indiana", "791265", null, "1756", null, "43415", null, "931", null, "47469", null, "3165", null, "53346", null, "3296", null, "54139", null, "1750", null, "54852", null, "1866", null, "50755", null, "2028", null, "48834", null, "1843", null, "48877", null, "3556", null, "54923", null, "3177", null, "49514", null, "1692", null, "50593", null, "1811", null, "46722", null, "3443", null, "50679", null, "3550", null, "42173", null, "2420", null, "37526", null, "2292", null, "27139", null, "2296", null, "16126", null, "1665", null, "14183", null, "1866", null, "100815", null, "1256", null, "33026", null, "811", null, "177256", null, "740", null, "75965", null, "2191", null, "312380", null, "2477", null, "634636", null, "2264", null, "614009", null, "1347", null, "580423", null, "2937", null, "187826", null, "3492", null, "169554", null, "2857", null, "137147", null, "1621", null, "57448", null, "1014", null, "39.4", null, "0.4", null, "96.5", null, "0.6", null, "65.9", null, "0.5", null, "28.8", null, "0.4", null, "37.2", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.1", null, "6.0", null, "0.4", null, "6.7", null, "0.4", null, "6.8", null, "0.2", null, "6.9", null, "0.2", null, "6.4", null, "0.3", null, "6.2", null, "0.2", null, "6.2", null, "0.4", null, "6.9", null, "0.4", null, "6.3", null, "0.2", null, "6.4", null, "0.2", null, "5.9", null, "0.4", null, "6.4", null, "0.4", null, "5.3", null, "0.3", null, "4.7", null, "0.3", null, "3.4", null, "0.3", null, "2.0", null, "0.2", null, "1.8", null, "0.2", null, "12.7", null, "0.2", null, "4.2", null, "0.1", null, "22.4", null, "0.1", null, "9.6", null, "0.3", null, "39.5", null, "0.3", null, "80.2", null, "0.2", null, "77.6", null, "0.1", null, "73.4", null, "0.3", null, "23.7", null, "0.4", null, "21.4", null, "0.4", null, "17.3", null, "0.2", null, "7.3", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "0.6", null, "-888888888.0", "(X)", "388650", null, "1520", null, "22126", null, "833", null, "25203", null, "2036", null, "26689", null, "2007", null, "28277", null, "1258", null, "27155", null, "1196", null, "25531", null, "1309", null, "24028", null, "1022", null, "24401", null, "2137", null, "27326", null, "1874", null, "24434", null, "1066", null, "25292", null, "1421", null, "22070", null, "2093", null, "25706", null, "2110", null, "18608", null, "1542", null, "18515", null, "1477", null, "11279", null, "1309", null, "7188", null, "1082", null, "4822", null, "860", null, "51892", null, "1001", null, "17798", null, "868", null, "91816", null, "1226", null, "37634", null, "1294", null, "156718", null, "1834", null, "308201", null, "1741", null, "296834", null, "1052", null, "280554", null, "2031", null, "86118", null, "2252", null, "76754", null, "2016", null, "60412", null, "1041", null, "23289", null, "487", null, "38.3", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.7", null, "0.2", null, "6.5", null, "0.5", null, "6.9", null, "0.5", null, "7.3", null, "0.3", null, "7.0", null, "0.3", null, "6.6", null, "0.3", null, "6.2", null, "0.3", null, "6.3", null, "0.5", null, "7.0", null, "0.5", null, "6.3", null, "0.3", null, "6.5", null, "0.4", null, "5.7", null, "0.5", null, "6.6", null, "0.5", null, "4.8", null, "0.4", null, "4.8", null, "0.4", null, "2.9", null, "0.3", null, "1.8", null, "0.3", null, "1.2", null, "0.2", null, "13.4", null, "0.2", null, "4.6", null, "0.2", null, "23.6", null, "0.3", null, "9.7", null, "0.3", null, "40.3", null, "0.5", null, "79.3", null, "0.3", null, "76.4", null, "0.3", null, "72.2", null, "0.5", null, "22.2", null, "0.6", null, "19.7", null, "0.5", null, "15.5", null, "0.3", null, "6.0", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "402615", null, "1640", null, "21289", null, "997", null, "22266", null, "2134", null, "26657", null, "2106", null, "25862", null, "1256", null, "27697", null, "1452", null, "25224", null, "1443", null, "24806", null, "1276", null, "24476", null, "2194", null, "27597", null, "2189", null, "25080", null, "1203", null, "25301", null, "1166", null, "24652", null, "2067", null, "24973", null, "2113", null, "23565", null, "1498", null, "19011", null, "1421", null, "15860", null, "1509", null, "8938", null, "1174", null, "9361", null, "1415", null, "48923", null, "871", null, "15228", null, "632", null, "85440", null, "1185", null, "38331", null, "1585", null, "155662", null, "1521", null, "326435", null, "1707", null, "317175", null, "1060", null, "299869", null, "2280", null, "101708", null, "2048", null, "92800", null, "1719", null, "76735", null, "977", null, "34159", null, "734", null, "40.6", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.3", null, "0.2", null, "5.5", null, "0.5", null, "6.6", null, "0.5", null, "6.4", null, "0.3", null, "6.9", null, "0.4", null, "6.3", null, "0.4", null, "6.2", null, "0.3", null, "6.1", null, "0.6", null, "6.9", null, "0.5", null, "6.2", null, "0.3", null, "6.3", null, "0.3", null, "6.1", null, "0.5", null, "6.2", null, "0.5", null, "5.9", null, "0.4", null, "4.7", null, "0.4", null, "3.9", null, "0.4", null, "2.2", null, "0.3", null, "2.3", null, "0.4", null, "12.2", null, "0.2", null, "3.8", null, "0.2", null, "21.2", null, "0.2", null, "9.5", null, "0.4", null, "38.7", null, "0.4", null, "81.1", null, "0.4", null, "78.8", null, "0.2", null, "74.5", null, "0.5", null, "25.3", null, "0.5", null, "23.0", null, "0.4", null, "19.1", null, "0.2", null, "8.5", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18", "05"], ["5001900US1806", "Congressional District 6 (119th Congress), Indiana", "777157", null, "3441", null, "45577", null, "2562", null, "47701", null, "3955", null, "54749", null, "4582", null, "52882", null, "3387", null, "45830", null, "3455", null, "50477", null, "3384", null, "54474", null, "4246", null, "57444", null, "3158", null, "48920", null, "4197", null, "45255", null, "2872", null, "49038", null, "2349", null, "44046", null, "3249", null, "45481", null, "3285", null, "44203", null, "2847", null, "34686", null, "2760", null, "26443", null, "2211", null, "14905", null, "1624", null, "15046", null, "1676", null, "102450", null, "4347", null, "34082", null, "2221", null, "182109", null, "4597", null, "64630", null, "4075", null, "310027", null, "4302", null, "617698", null, "5263", null, "595048", null, "5172", null, "568756", null, "5726", null, "180764", null, "4878", null, "163388", null, "4499", null, "135283", null, "3629", null, "56394", null, "1910", null, "38.1", null, "0.6", null, "99.8", null, "2.3", null, "69.0", null, "1.7", null, "29.4", null, "1.0", null, "39.6", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.9", null, "0.3", null, "6.1", null, "0.5", null, "7.0", null, "0.6", null, "6.8", null, "0.4", null, "5.9", null, "0.4", null, "6.5", null, "0.4", null, "7.0", null, "0.5", null, "7.4", null, "0.4", null, "6.3", null, "0.5", null, "5.8", null, "0.4", null, "6.3", null, "0.3", null, "5.7", null, "0.4", null, "5.9", null, "0.4", null, "5.7", null, "0.4", null, "4.5", null, "0.4", null, "3.4", null, "0.3", null, "1.9", null, "0.2", null, "1.9", null, "0.2", null, "13.2", null, "0.5", null, "4.4", null, "0.3", null, "23.4", null, "0.6", null, "8.3", null, "0.5", null, "39.9", null, "0.6", null, "79.5", null, "0.6", null, "76.6", null, "0.6", null, "73.2", null, "0.7", null, "23.3", null, "0.6", null, "21.0", null, "0.6", null, "17.4", null, "0.5", null, "7.3", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.0", null, "-888888888.0", "(X)", "388237", null, "4811", null, "24967", null, "2124", null, "25497", null, "3207", null, "27121", null, "3435", null, "27748", null, "2364", null, "21645", null, "2089", null, "27198", null, "2660", null, "27936", null, "2677", null, "29224", null, "2509", null, "25471", null, "2788", null, "21847", null, "1820", null, "24732", null, "1705", null, "23521", null, "2101", null, "20774", null, "1900", null, "20752", null, "1766", null, "16429", null, "1935", null, "12036", null, "1447", null, "6388", null, "958", null, "4951", null, "804", null, "52618", null, "3200", null, "17969", null, "1796", null, "95554", null, "3757", null, "31424", null, "2294", null, "159222", null, "4068", null, "303741", null, "5116", null, "292683", null, "4535", null, "279193", null, "4871", null, "81330", null, "3194", null, "73438", null, "2675", null, "60556", null, "2391", null, "23375", null, "1058", null, "36.7", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.4", null, "0.5", null, "6.6", null, "0.8", null, "7.0", null, "0.9", null, "7.1", null, "0.6", null, "5.6", null, "0.5", null, "7.0", null, "0.7", null, "7.2", null, "0.7", null, "7.5", null, "0.6", null, "6.6", null, "0.7", null, "5.6", null, "0.5", null, "6.4", null, "0.4", null, "6.1", null, "0.5", null, "5.4", null, "0.5", null, "5.3", null, "0.5", null, "4.2", null, "0.5", null, "3.1", null, "0.4", null, "1.6", null, "0.2", null, "1.3", null, "0.2", null, "13.6", null, "0.8", null, "4.6", null, "0.4", null, "24.6", null, "0.9", null, "8.1", null, "0.6", null, "41.0", null, "0.8", null, "78.2", null, "0.9", null, "75.4", null, "0.9", null, "71.9", null, "1.0", null, "20.9", null, "0.8", null, "18.9", null, "0.7", null, "15.6", null, "0.6", null, "6.0", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "388920", null, "4829", null, "20610", null, "1780", null, "22204", null, "2642", null, "27628", null, "3089", null, "25134", null, "2393", null, "24185", null, "2477", null, "23279", null, "1846", null, "26538", null, "2644", null, "28220", null, "2317", null, "23449", null, "2527", null, "23408", null, "1840", null, "24306", null, "1502", null, "20525", null, "2037", null, "24707", null, "2272", null, "23451", null, "2023", null, "18257", null, "1729", null, "14407", null, "1456", null, "8517", null, "1145", null, "10095", null, "1450", null, "49832", null, "2753", null, "16113", null, "1462", null, "86555", null, "3567", null, "33206", null, "2846", null, "150805", null, "3316", null, "313957", null, "3777", null, "302365", null, "3773", null, "289563", null, "4080", null, "99434", null, "2867", null, "89950", null, "2927", null, "74727", null, "2168", null, "33019", null, "1387", null, "39.5", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.3", null, "0.4", null, "5.7", null, "0.7", null, "7.1", null, "0.8", null, "6.5", null, "0.6", null, "6.2", null, "0.6", null, "6.0", null, "0.5", null, "6.8", null, "0.7", null, "7.3", null, "0.6", null, "6.0", null, "0.6", null, "6.0", null, "0.5", null, "6.2", null, "0.4", null, "5.3", null, "0.5", null, "6.4", null, "0.6", null, "6.0", null, "0.5", null, "4.7", null, "0.5", null, "3.7", null, "0.4", null, "2.2", null, "0.3", null, "2.6", null, "0.4", null, "12.8", null, "0.6", null, "4.1", null, "0.4", null, "22.3", null, "0.8", null, "8.5", null, "0.7", null, "38.8", null, "0.7", null, "80.7", null, "0.7", null, "77.7", null, "0.8", null, "74.5", null, "0.8", null, "25.6", null, "0.7", null, "23.1", null, "0.7", null, "19.2", null, "0.6", null, "8.5", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18", "06"], ["5001900US1807", "Congressional District 7 (119th Congress), Indiana", "757121", null, "945", null, "52394", null, "2451", null, "48107", null, "4170", null, "52918", null, "4027", null, "48481", null, "2743", null, "52904", null, "3004", null, "63860", null, "2627", null, "66387", null, "3088", null, "51912", null, "4300", null, "51721", null, "4256", null, "41767", null, "1915", null, "38811", null, "2343", null, "40994", null, "2932", null, "43803", null, "2850", null, "37497", null, "2339", null, "26996", null, "2468", null, "18812", null, "1871", null, "10980", null, "1429", null, "8777", null, "1212", null, "101025", null, "3446", null, "30575", null, "1962", null, "183994", null, "4519", null, "70810", null, "3685", null, "335265", null, "3646", null, "594345", null, "4742", null, "573127", null, "4533", null, "547218", null, "5339", null, "146865", null, "4247", null, "127803", null, "3676", null, "103062", null, "2961", null, "38569", null, "1723", null, "34.5", null, "0.4", null, "92.9", null, "2.0", null, "61.1", null, "1.4", null, "21.9", null, "0.7", null, "39.1", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.9", null, "0.3", null, "6.4", null, "0.6", null, "7.0", null, "0.5", null, "6.4", null, "0.4", null, "7.0", null, "0.4", null, "8.4", null, "0.3", null, "8.8", null, "0.4", null, "6.9", null, "0.6", null, "6.8", null, "0.6", null, "5.5", null, "0.3", null, "5.1", null, "0.3", null, "5.4", null, "0.4", null, "5.8", null, "0.4", null, "5.0", null, "0.3", null, "3.6", null, "0.3", null, "2.5", null, "0.2", null, "1.5", null, "0.2", null, "1.2", null, "0.2", null, "13.3", null, "0.5", null, "4.0", null, "0.3", null, "24.3", null, "0.6", null, "9.4", null, "0.5", null, "44.3", null, "0.5", null, "78.5", null, "0.6", null, "75.7", null, "0.6", null, "72.3", null, "0.7", null, "19.4", null, "0.6", null, "16.9", null, "0.5", null, "13.6", null, "0.4", null, "5.1", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.4", null, "-888888888.0", "(X)", "364550", null, "3914", null, "25270", null, "1991", null, "23337", null, "3005", null, "26576", null, "3001", null, "24767", null, "1886", null, "26628", null, "1855", null, "30216", null, "1901", null, "33204", null, "1459", null, "26723", null, "2444", null, "22526", null, "2402", null, "20943", null, "1155", null, "18239", null, "1728", null, "20013", null, "2067", null, "21398", null, "2002", null, "17688", null, "1584", null, "11652", null, "1476", null, "8210", null, "1134", null, "4295", null, "868", null, "2865", null, "712", null, "49913", null, "2650", null, "15495", null, "1526", null, "90678", null, "3237", null, "35900", null, "2039", null, "164064", null, "3682", null, "284189", null, "4449", null, "273872", null, "3963", null, "260431", null, "3919", null, "66108", null, "2625", null, "55923", null, "2357", null, "44710", null, "1692", null, "15370", null, "1000", null, "33.6", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.9", null, "0.5", null, "6.4", null, "0.8", null, "7.3", null, "0.8", null, "6.8", null, "0.5", null, "7.3", null, "0.5", null, "8.3", null, "0.5", null, "9.1", null, "0.4", null, "7.3", null, "0.7", null, "6.2", null, "0.7", null, "5.7", null, "0.3", null, "5.0", null, "0.5", null, "5.5", null, "0.6", null, "5.9", null, "0.6", null, "4.9", null, "0.4", null, "3.2", null, "0.4", null, "2.3", null, "0.3", null, "1.2", null, "0.2", null, "0.8", null, "0.2", null, "13.7", null, "0.7", null, "4.3", null, "0.4", null, "24.9", null, "0.8", null, "9.8", null, "0.5", null, "45.0", null, "0.8", null, "78.0", null, "0.9", null, "75.1", null, "0.8", null, "71.4", null, "0.9", null, "18.1", null, "0.8", null, "15.3", null, "0.7", null, "12.3", null, "0.5", null, "4.2", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "392571", null, "4217", null, "27124", null, "1623", null, "24770", null, "2787", null, "26342", null, "2780", null, "23714", null, "1712", null, "26276", null, "2101", null, "33644", null, "1517", null, "33183", null, "2096", null, "25189", null, "3241", null, "29195", null, "3157", null, "20824", null, "1396", null, "20572", null, "1362", null, "20981", null, "2201", null, "22405", null, "1990", null, "19809", null, "1653", null, "15344", null, "1768", null, "10602", null, "1300", null, "6685", null, "1075", null, "5912", null, "940", null, "51112", null, "2100", null, "15080", null, "1149", null, "93316", null, "3122", null, "34910", null, "2576", null, "171201", null, "2927", null, "310156", null, "3576", null, "299255", null, "3505", null, "286787", null, "4067", null, "80757", null, "2778", null, "71880", null, "2352", null, "58352", null, "1940", null, "23199", null, "1096", null, "35.3", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.9", null, "0.4", null, "6.3", null, "0.7", null, "6.7", null, "0.7", null, "6.0", null, "0.4", null, "6.7", null, "0.5", null, "8.6", null, "0.4", null, "8.5", null, "0.5", null, "6.4", null, "0.8", null, "7.4", null, "0.8", null, "5.3", null, "0.4", null, "5.2", null, "0.4", null, "5.3", null, "0.5", null, "5.7", null, "0.5", null, "5.0", null, "0.4", null, "3.9", null, "0.5", null, "2.7", null, "0.3", null, "1.7", null, "0.3", null, "1.5", null, "0.2", null, "13.0", null, "0.5", null, "3.8", null, "0.3", null, "23.8", null, "0.7", null, "8.9", null, "0.7", null, "43.6", null, "0.6", null, "79.0", null, "0.8", null, "76.2", null, "0.7", null, "73.1", null, "0.7", null, "20.6", null, "0.7", null, "18.3", null, "0.6", null, "14.9", null, "0.5", null, "5.9", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18", "07"], ["5001900US1808", "Congressional District 8 (119th Congress), Indiana", "758402", null, "1736", null, "42016", null, "1330", null, "45510", null, "2757", null, "47188", null, "2803", null, "51058", null, "1974", null, "49125", null, "2113", null, "47130", null, "1668", null, "49457", null, "2088", null, "48126", null, "2806", null, "46752", null, "2833", null, "42925", null, "1541", null, "43342", null, "1188", null, "44814", null, "2594", null, "52544", null, "2559", null, "47171", null, "2659", null, "38990", null, "2614", null, "28183", null, "1995", null, "18839", null, "1765", null, "15232", null, "1560", null, "92698", null, "1756", null, "30780", null, "1088", null, "165494", null, "1711", null, "69403", null, "1787", null, "291648", null, "2400", null, "614137", null, "2221", null, "592908", null, "2037", null, "563756", null, "2477", null, "200959", null, "2988", null, "179420", null, "3224", null, "148415", null, "1461", null, "62254", null, "1178", null, "40.0", null, "0.4", null, "99.8", null, "1.0", null, "70.6", null, "0.8", null, "33.4", null, "0.4", null, "37.2", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.2", null, "6.0", null, "0.4", null, "6.2", null, "0.4", null, "6.7", null, "0.3", null, "6.5", null, "0.3", null, "6.2", null, "0.2", null, "6.5", null, "0.3", null, "6.3", null, "0.4", null, "6.2", null, "0.4", null, "5.7", null, "0.2", null, "5.7", null, "0.2", null, "5.9", null, "0.3", null, "6.9", null, "0.3", null, "6.2", null, "0.4", null, "5.1", null, "0.3", null, "3.7", null, "0.3", null, "2.5", null, "0.2", null, "2.0", null, "0.2", null, "12.2", null, "0.2", null, "4.1", null, "0.1", null, "21.8", null, "0.2", null, "9.2", null, "0.2", null, "38.5", null, "0.3", null, "81.0", null, "0.2", null, "78.2", null, "0.2", null, "74.3", null, "0.3", null, "26.5", null, "0.4", null, "23.7", null, "0.4", null, "19.6", null, "0.2", null, "8.2", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "0.9", null, "-888888888.0", "(X)", "378765", null, "2047", null, "20651", null, "1105", null, "24769", null, "1863", null, "23836", null, "1844", null, "26655", null, "1691", null, "25942", null, "1646", null, "22062", null, "934", null, "25360", null, "1580", null, "24640", null, "1811", null, "24246", null, "1748", null, "22370", null, "995", null, "21438", null, "888", null, "22420", null, "1887", null, "26532", null, "1829", null, "23010", null, "1570", null, "18903", null, "1527", null, "13016", null, "941", null, "8297", null, "1208", null, "4618", null, "842", null, "48605", null, "1291", null, "16047", null, "1022", null, "85303", null, "1579", null, "36550", null, "1211", null, "148905", null, "1989", null, "304815", null, "1998", null, "293462", null, "1752", null, "278516", null, "2130", null, "94376", null, "2032", null, "83677", null, "1949", null, "67844", null, "891", null, "25931", null, "593", null, "39.1", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.3", null, "6.5", null, "0.5", null, "6.3", null, "0.5", null, "7.0", null, "0.4", null, "6.8", null, "0.4", null, "5.8", null, "0.2", null, "6.7", null, "0.4", null, "6.5", null, "0.5", null, "6.4", null, "0.5", null, "5.9", null, "0.3", null, "5.7", null, "0.2", null, "5.9", null, "0.5", null, "7.0", null, "0.5", null, "6.1", null, "0.4", null, "5.0", null, "0.4", null, "3.4", null, "0.2", null, "2.2", null, "0.3", null, "1.2", null, "0.2", null, "12.8", null, "0.4", null, "4.2", null, "0.3", null, "22.5", null, "0.4", null, "9.6", null, "0.3", null, "39.3", null, "0.5", null, "80.5", null, "0.4", null, "77.5", null, "0.4", null, "73.5", null, "0.5", null, "24.9", null, "0.5", null, "22.1", null, "0.5", null, "17.9", null, "0.2", null, "6.8", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "379637", null, "2101", null, "21365", null, "1190", null, "20741", null, "1891", null, "23352", null, "1821", null, "24403", null, "1549", null, "23183", null, "1425", null, "25068", null, "1456", null, "24097", null, "1075", null, "23486", null, "1810", null, "22506", null, "1993", null, "20555", null, "969", null, "21904", null, "843", null, "22394", null, "1543", null, "26012", null, "1578", null, "24161", null, "1643", null, "20087", null, "1610", null, "15167", null, "1781", null, "10542", null, "1393", null, "10614", null, "1257", null, "44093", null, "1022", null, "14733", null, "1080", null, "80191", null, "1683", null, "32853", null, "1442", null, "142743", null, "1868", null, "309322", null, "1881", null, "299446", null, "1489", null, "285240", null, "1898", null, "106583", null, "2005", null, "95743", null, "2157", null, "80571", null, "1082", null, "36323", null, "1010", null, "40.9", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.6", null, "0.3", null, "5.5", null, "0.5", null, "6.2", null, "0.5", null, "6.4", null, "0.4", null, "6.1", null, "0.4", null, "6.6", null, "0.4", null, "6.3", null, "0.3", null, "6.2", null, "0.5", null, "5.9", null, "0.5", null, "5.4", null, "0.3", null, "5.8", null, "0.2", null, "5.9", null, "0.4", null, "6.9", null, "0.4", null, "6.4", null, "0.4", null, "5.3", null, "0.4", null, "4.0", null, "0.5", null, "2.8", null, "0.4", null, "2.8", null, "0.3", null, "11.6", null, "0.3", null, "3.9", null, "0.3", null, "21.1", null, "0.4", null, "8.7", null, "0.4", null, "37.6", null, "0.4", null, "81.5", null, "0.4", null, "78.9", null, "0.4", null, "75.1", null, "0.5", null, "28.1", null, "0.5", null, "25.2", null, "0.6", null, "21.2", null, "0.3", null, "9.6", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18", "08"], ["5001900US1809", "Congressional District 9 (119th Congress), Indiana", "764291", null, "2895", null, "38845", null, "1812", null, "40622", null, "3120", null, "48128", null, "3533", null, "56116", null, "2881", null, "56650", null, "2675", null, "49990", null, "2728", null, "50330", null, "2216", null, "46930", null, "3200", null, "48982", null, "3331", null, "43881", null, "1731", null, "44137", null, "1249", null, "44081", null, "3089", null, "53436", null, "3053", null, "46496", null, "2782", null, "38108", null, "2571", null, "29635", null, "1988", null, "15084", null, "1665", null, "12840", null, "1528", null, "88750", null, "2579", null, "29333", null, "1212", null, "156928", null, "2198", null, "83433", null, "2392", null, "308998", null, "3127", null, "627857", null, "2773", null, "607363", null, "2614", null, "568360", null, "3771", null, "195599", null, "3418", null, "174885", null, "3389", null, "142163", null, "1944", null, "57559", null, "998", null, "39.3", null, "0.5", null, "98.5", null, "1.3", null, "64.3", null, "0.8", null, "30.6", null, "0.5", null, "33.7", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.1", null, "0.2", null, "5.3", null, "0.4", null, "6.3", null, "0.5", null, "7.3", null, "0.4", null, "7.4", null, "0.4", null, "6.5", null, "0.4", null, "6.6", null, "0.3", null, "6.1", null, "0.4", null, "6.4", null, "0.4", null, "5.7", null, "0.2", null, "5.8", null, "0.2", null, "5.8", null, "0.4", null, "7.0", null, "0.4", null, "6.1", null, "0.4", null, "5.0", null, "0.3", null, "3.9", null, "0.3", null, "2.0", null, "0.2", null, "1.7", null, "0.2", null, "11.6", null, "0.3", null, "3.8", null, "0.2", null, "20.5", null, "0.3", null, "10.9", null, "0.3", null, "40.4", null, "0.4", null, "82.1", null, "0.3", null, "79.5", null, "0.3", null, "74.4", null, "0.4", null, "25.6", null, "0.4", null, "22.9", null, "0.4", null, "18.6", null, "0.3", null, "7.5", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "0.9", null, "-888888888.0", "(X)", "379161", null, "2948", null, "18815", null, "1582", null, "22255", null, "2501", null, "24196", null, "2561", null, "27223", null, "1800", null, "31559", null, "1813", null, "25077", null, "1925", null, "24162", null, "1518", null, "24325", null, "2265", null, "23878", null, "2031", null, "22192", null, "1213", null, "22639", null, "752", null, "22401", null, "2173", null, "26307", null, "2154", null, "23465", null, "1813", null, "16668", null, "1803", null, "12651", null, "1007", null, "6692", null, "1022", null, "4656", null, "814", null, "46451", null, "2492", null, "15903", null, "1406", null, "81169", null, "2487", null, "42879", null, "1672", null, "156224", null, "2948", null, "309209", null, "2549", null, "297992", null, "2203", null, "281081", null, "2813", null, "90439", null, "2316", null, "79370", null, "2040", null, "64132", null, "1258", null, "23999", null, "509", null, "38.3", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.0", null, "0.4", null, "5.9", null, "0.7", null, "6.4", null, "0.7", null, "7.2", null, "0.5", null, "8.3", null, "0.5", null, "6.6", null, "0.5", null, "6.4", null, "0.4", null, "6.4", null, "0.6", null, "6.3", null, "0.5", null, "5.9", null, "0.3", null, "6.0", null, "0.2", null, "5.9", null, "0.6", null, "6.9", null, "0.6", null, "6.2", null, "0.5", null, "4.4", null, "0.5", null, "3.3", null, "0.3", null, "1.8", null, "0.3", null, "1.2", null, "0.2", null, "12.3", null, "0.6", null, "4.2", null, "0.4", null, "21.4", null, "0.6", null, "11.3", null, "0.4", null, "41.2", null, "0.7", null, "81.6", null, "0.6", null, "78.6", null, "0.6", null, "74.1", null, "0.7", null, "23.9", null, "0.6", null, "20.9", null, "0.5", null, "16.9", null, "0.3", null, "6.3", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "385130", null, "2906", null, "20030", null, "1657", null, "18367", null, "2144", null, "23932", null, "2219", null, "28893", null, "2278", null, "25091", null, "2057", null, "24913", null, "1298", null, "26168", null, "1610", null, "22605", null, "2031", null, "25104", null, "2168", null, "21689", null, "917", null, "21498", null, "885", null, "21680", null, "1936", null, "27129", null, "1871", null, "23031", null, "1689", null, "21440", null, "1675", null, "16984", null, "1466", null, "8392", null, "1134", null, "8184", null, "1198", null, "42299", null, "1779", null, "13430", null, "1255", null, "75759", null, "2234", null, "40554", null, "1792", null, "152774", null, "2117", null, "318648", null, "2486", null, "309371", null, "2202", null, "287279", null, "2830", null, "105160", null, "2236", null, "95515", null, "2298", null, "78031", null, "1102", null, "33560", null, "777", null, "40.4", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.4", null, "4.8", null, "0.6", null, "6.2", null, "0.6", null, "7.5", null, "0.6", null, "6.5", null, "0.5", null, "6.5", null, "0.3", null, "6.8", null, "0.4", null, "5.9", null, "0.5", null, "6.5", null, "0.6", null, "5.6", null, "0.2", null, "5.6", null, "0.2", null, "5.6", null, "0.5", null, "7.0", null, "0.5", null, "6.0", null, "0.4", null, "5.6", null, "0.4", null, "4.4", null, "0.4", null, "2.2", null, "0.3", null, "2.1", null, "0.3", null, "11.0", null, "0.4", null, "3.5", null, "0.3", null, "19.7", null, "0.5", null, "10.5", null, "0.5", null, "39.7", null, "0.5", null, "82.7", null, "0.5", null, "80.3", null, "0.5", null, "74.6", null, "0.8", null, "27.3", null, "0.6", null, "24.8", null, "0.6", null, "20.3", null, "0.3", null, "8.7", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18", "09"], ["5001900US1901", "Congressional District 1 (119th Congress), Iowa", "804704", null, "1851", null, "44572", null, "1308", null, "47249", null, "2549", null, "51593", null, "2336", null, "55670", null, "2447", null, "56458", null, "2440", null, "50903", null, "2203", null, "50304", null, "1990", null, "49651", null, "3175", null, "52796", null, "3455", null, "48438", null, "1901", null, "44407", null, "1478", null, "47103", null, "2624", null, "52689", null, "2870", null, "49077", null, "2798", null, "39124", null, "2662", null, "29619", null, "2068", null, "17448", null, "1507", null, "17603", null, "1738", null, "98842", null, "1722", null, "31200", null, "1128", null, "174614", null, "1484", null, "80928", null, "1967", null, "315782", null, "2455", null, "651986", null, "2291", null, "630090", null, "1945", null, "593560", null, "3390", null, "205560", null, "3066", null, "183387", null, "2763", null, "152871", null, "1401", null, "64670", null, "925", null, "39.6", null, "0.4", null, "100.2", null, "1.1", null, "68.6", null, "0.6", null, "32.0", null, "0.4", null, "36.6", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.2", null, "5.9", null, "0.3", null, "6.4", null, "0.3", null, "6.9", null, "0.3", null, "7.0", null, "0.3", null, "6.3", null, "0.3", null, "6.3", null, "0.2", null, "6.2", null, "0.4", null, "6.6", null, "0.4", null, "6.0", null, "0.2", null, "5.5", null, "0.2", null, "5.9", null, "0.3", null, "6.5", null, "0.4", null, "6.1", null, "0.3", null, "4.9", null, "0.3", null, "3.7", null, "0.3", null, "2.2", null, "0.2", null, "2.2", null, "0.2", null, "12.3", null, "0.2", null, "3.9", null, "0.1", null, "21.7", null, "0.2", null, "10.1", null, "0.2", null, "39.2", null, "0.3", null, "81.0", null, "0.2", null, "78.3", null, "0.2", null, "73.8", null, "0.4", null, "25.5", null, "0.4", null, "22.8", null, "0.3", null, "19.0", null, "0.2", null, "8.0", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.0", null, "-888888888.0", "(X)", "402830", null, "2403", null, "23585", null, "1615", null, "24751", null, "1573", null, "25333", null, "1584", null, "28466", null, "2104", null, "28738", null, "1703", null, "25680", null, "1559", null, "25371", null, "1410", null, "26197", null, "2002", null, "27236", null, "2230", null, "24908", null, "1392", null, "22611", null, "1138", null, "22142", null, "1822", null, "27528", null, "1817", null, "22980", null, "1583", null, "19937", null, "1583", null, "13343", null, "1118", null, "7247", null, "859", null, "6777", null, "939", null, "50084", null, "1361", null, "15819", null, "1311", null, "89488", null, "2033", null, "41385", null, "1381", null, "161688", null, "2155", null, "324999", null, "2322", null, "313342", null, "1805", null, "293737", null, "2499", null, "97812", null, "1990", null, "85759", null, "1752", null, "70284", null, "818", null, "27367", null, "561", null, "38.8", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.9", null, "0.4", null, "6.1", null, "0.4", null, "6.3", null, "0.4", null, "7.1", null, "0.5", null, "7.1", null, "0.4", null, "6.4", null, "0.4", null, "6.3", null, "0.3", null, "6.5", null, "0.5", null, "6.8", null, "0.5", null, "6.2", null, "0.3", null, "5.6", null, "0.3", null, "5.5", null, "0.5", null, "6.8", null, "0.4", null, "5.7", null, "0.4", null, "4.9", null, "0.4", null, "3.3", null, "0.3", null, "1.8", null, "0.2", null, "1.7", null, "0.2", null, "12.4", null, "0.3", null, "3.9", null, "0.3", null, "22.2", null, "0.4", null, "10.3", null, "0.3", null, "40.1", null, "0.5", null, "80.7", null, "0.5", null, "77.8", null, "0.4", null, "72.9", null, "0.6", null, "24.3", null, "0.5", null, "21.3", null, "0.4", null, "17.4", null, "0.2", null, "6.8", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "401874", null, "2422", null, "20987", null, "1267", null, "22498", null, "1910", null, "26260", null, "1947", null, "27204", null, "1687", null, "27720", null, "1657", null, "25223", null, "1355", null, "24933", null, "1133", null, "23454", null, "1819", null, "25560", null, "1946", null, "23530", null, "1116", null, "21796", null, "841", null, "24961", null, "1630", null, "25161", null, "1822", null, "26097", null, "1751", null, "19187", null, "1638", null, "16276", null, "1411", null, "10201", null, "1061", null, "10826", null, "1211", null, "48758", null, "1057", null, "15381", null, "1207", null, "85126", null, "1919", null, "39543", null, "1380", null, "154094", null, "2191", null, "326987", null, "2088", null, "316748", null, "1814", null, "299823", null, "2675", null, "107748", null, "1824", null, "97628", null, "1733", null, "82587", null, "1088", null, "37303", null, "626", null, "40.5", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.3", null, "5.6", null, "0.5", null, "6.5", null, "0.5", null, "6.8", null, "0.4", null, "6.9", null, "0.4", null, "6.3", null, "0.3", null, "6.2", null, "0.3", null, "5.8", null, "0.5", null, "6.4", null, "0.5", null, "5.9", null, "0.3", null, "5.4", null, "0.2", null, "6.2", null, "0.4", null, "6.3", null, "0.5", null, "6.5", null, "0.4", null, "4.8", null, "0.4", null, "4.1", null, "0.4", null, "2.5", null, "0.3", null, "2.7", null, "0.3", null, "12.1", null, "0.2", null, "3.8", null, "0.3", null, "21.2", null, "0.4", null, "9.8", null, "0.3", null, "38.3", null, "0.5", null, "81.4", null, "0.4", null, "78.8", null, "0.4", null, "74.6", null, "0.5", null, "26.8", null, "0.5", null, "24.3", null, "0.4", null, "20.6", null, "0.3", null, "9.3", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "19", "01"], ["5001900US1902", "Congressional District 2 (119th Congress), Iowa", "797329", null, "2012", null, "44815", null, "1409", null, "46878", null, "2451", null, "50822", null, "2453", null, "51819", null, "2284", null, "57108", null, "2645", null, "45868", null, "1798", null, "48639", null, "1332", null, "48178", null, "3433", null, "51574", null, "3019", null, "44161", null, "1335", null, "43983", null, "1562", null, "43181", null, "2464", null, "56911", null, "2363", null, "48878", null, "2544", null, "44265", null, "2425", null, "30401", null, "1828", null, "19878", null, "1796", null, "19970", null, "1275", null, "97700", null, "1569", null, "31390", null, "941", null, "173905", null, "1370", null, "77537", null, "2202", null, "303186", null, "2693", null, "643678", null, "2202", null, "623424", null, "1719", null, "590503", null, "3043", null, "220303", null, "2675", null, "199665", null, "2811", null, "163392", null, "1198", null, "70249", null, "702", null, "40.4", null, "0.3", null, "98.6", null, "1.0", null, "73.3", null, "0.6", null, "35.5", null, "0.4", null, "37.8", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.6", null, "0.2", null, "5.9", null, "0.3", null, "6.4", null, "0.3", null, "6.5", null, "0.3", null, "7.2", null, "0.3", null, "5.8", null, "0.2", null, "6.1", null, "0.2", null, "6.0", null, "0.4", null, "6.5", null, "0.4", null, "5.5", null, "0.2", null, "5.5", null, "0.2", null, "5.4", null, "0.3", null, "7.1", null, "0.3", null, "6.1", null, "0.3", null, "5.6", null, "0.3", null, "3.8", null, "0.2", null, "2.5", null, "0.2", null, "2.5", null, "0.2", null, "12.3", null, "0.2", null, "3.9", null, "0.1", null, "21.8", null, "0.1", null, "9.7", null, "0.3", null, "38.0", null, "0.3", null, "80.7", null, "0.2", null, "78.2", null, "0.1", null, "74.1", null, "0.4", null, "27.6", null, "0.3", null, "25.0", null, "0.4", null, "20.5", null, "0.2", null, "8.8", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "0.7", null, "-888888888.0", "(X)", "395906", null, "2344", null, "22815", null, "1464", null, "24251", null, "1664", null, "25860", null, "1808", null, "27136", null, "1575", null, "28691", null, "1604", null, "23327", null, "968", null, "24024", null, "993", null, "23565", null, "1954", null, "27402", null, "1906", null, "22326", null, "821", null, "21611", null, "1069", null, "21160", null, "1573", null, "28373", null, "1553", null, "24956", null, "1645", null, "20767", null, "1638", null, "14437", null, "1041", null, "8015", null, "931", null, "7190", null, "780", null, "50111", null, "1459", null, "16320", null, "1074", null, "89246", null, "2116", null, "39507", null, "1438", null, "154145", null, "1966", null, "317472", null, "1644", null, "306660", null, "1489", null, "290690", null, "1882", null, "103738", null, "1629", null, "93805", null, "1586", null, "75365", null, "774", null, "29642", null, "437", null, "39.7", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.8", null, "0.4", null, "6.1", null, "0.4", null, "6.5", null, "0.4", null, "6.9", null, "0.4", null, "7.2", null, "0.4", null, "5.9", null, "0.3", null, "6.1", null, "0.3", null, "6.0", null, "0.5", null, "6.9", null, "0.5", null, "5.6", null, "0.2", null, "5.5", null, "0.3", null, "5.3", null, "0.4", null, "7.2", null, "0.4", null, "6.3", null, "0.4", null, "5.2", null, "0.4", null, "3.6", null, "0.3", null, "2.0", null, "0.2", null, "1.8", null, "0.2", null, "12.7", null, "0.3", null, "4.1", null, "0.3", null, "22.5", null, "0.4", null, "10.0", null, "0.4", null, "38.9", null, "0.4", null, "80.2", null, "0.4", null, "77.5", null, "0.4", null, "73.4", null, "0.6", null, "26.2", null, "0.4", null, "23.7", null, "0.4", null, "19.0", null, "0.2", null, "7.5", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "401423", null, "2353", null, "22000", null, "1516", null, "22627", null, "1740", null, "24962", null, "1630", null, "24683", null, "1809", null, "28417", null, "1808", null, "22541", null, "1312", null, "24615", null, "1074", null, "24613", null, "2230", null, "24172", null, "2023", null, "21835", null, "1088", null, "22372", null, "1038", null, "22021", null, "1539", null, "28538", null, "1608", null, "23922", null, "1546", null, "23498", null, "1507", null, "15964", null, "1230", null, "11863", null, "1339", null, "12780", null, "1019", null, "47589", null, "1037", null, "15070", null, "1081", null, "84659", null, "2127", null, "38030", null, "1476", null, "149041", null, "1826", null, "326206", null, "2033", null, "316764", null, "1631", null, "299813", null, "2372", null, "116565", null, "1883", null, "105860", null, "1999", null, "88027", null, "755", null, "40607", null, "515", null, "41.1", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.4", null, "5.6", null, "0.4", null, "6.2", null, "0.4", null, "6.1", null, "0.5", null, "7.1", null, "0.4", null, "5.6", null, "0.3", null, "6.1", null, "0.3", null, "6.1", null, "0.6", null, "6.0", null, "0.5", null, "5.4", null, "0.3", null, "5.6", null, "0.3", null, "5.5", null, "0.4", null, "7.1", null, "0.4", null, "6.0", null, "0.4", null, "5.9", null, "0.4", null, "4.0", null, "0.3", null, "3.0", null, "0.3", null, "3.2", null, "0.3", null, "11.9", null, "0.3", null, "3.8", null, "0.3", null, "21.1", null, "0.4", null, "9.5", null, "0.4", null, "37.1", null, "0.4", null, "81.3", null, "0.5", null, "78.9", null, "0.4", null, "74.7", null, "0.6", null, "29.0", null, "0.5", null, "26.4", null, "0.5", null, "21.9", null, "0.2", null, "10.1", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "19", "02"], ["5001900US1903", "Congressional District 3 (119th Congress), Iowa", "837909", null, "2746", null, "51695", null, "985", null, "53616", null, "2958", null, "59106", null, "3011", null, "55491", null, "2055", null, "51385", null, "1786", null, "59069", null, "1303", null, "59541", null, "1174", null, "63715", null, "3585", null, "54402", null, "3644", null, "51719", null, "1463", null, "46915", null, "1371", null, "42466", null, "3067", null, "52297", null, "2819", null, "42763", null, "2330", null, "37839", null, "2364", null, "24439", null, "2251", null, "14508", null, "1582", null, "16943", null, "1706", null, "112722", null, "1534", null, "36143", null, "830", null, "200560", null, "1404", null, "70733", null, "1387", null, "343603", null, "2475", null, "661324", null, "2513", null, "637349", null, "1905", null, "610487", null, "2622", null, "188789", null, "3122", null, "168578", null, "2524", null, "136492", null, "1232", null, "55890", null, "986", null, "37.2", null, "0.3", null, "99.6", null, "0.8", null, "67.3", null, "0.4", null, "27.3", null, "0.3", null, "40.0", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.2", null, "0.1", null, "6.4", null, "0.4", null, "7.1", null, "0.4", null, "6.6", null, "0.2", null, "6.1", null, "0.2", null, "7.0", null, "0.2", null, "7.1", null, "0.1", null, "7.6", null, "0.4", null, "6.5", null, "0.4", null, "6.2", null, "0.2", null, "5.6", null, "0.2", null, "5.1", null, "0.4", null, "6.2", null, "0.3", null, "5.1", null, "0.3", null, "4.5", null, "0.3", null, "2.9", null, "0.3", null, "1.7", null, "0.2", null, "2.0", null, "0.2", null, "13.5", null, "0.2", null, "4.3", null, "0.1", null, "23.9", null, "0.1", null, "8.4", null, "0.2", null, "41.0", null, "0.3", null, "78.9", null, "0.3", null, "76.1", null, "0.1", null, "72.9", null, "0.3", null, "22.5", null, "0.4", null, "20.1", null, "0.3", null, "16.3", null, "0.1", null, "6.7", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.2", null, "-888888888.0", "(X)", "418219", null, "2276", null, "27368", null, "919", null, "28457", null, "2083", null, "28606", null, "2161", null, "28410", null, "1339", null, "25496", null, "1020", null, "30034", null, "755", null, "30821", null, "886", null, "32421", null, "1986", null, "27459", null, "2312", null, "25950", null, "1022", null, "24565", null, "1212", null, "20186", null, "1828", null, "26822", null, "1769", null, "20349", null, "1403", null, "17978", null, "1377", null, "11553", null, "1209", null, "5847", null, "1007", null, "5897", null, "893", null, "57063", null, "895", null, "18609", null, "717", null, "103040", null, "1290", null, "35297", null, "847", null, "174641", null, "1985", null, "328174", null, "1893", null, "315179", null, "1486", null, "301443", null, "1803", null, "88446", null, "1738", null, "77189", null, "1636", null, "61624", null, "779", null, "23297", null, "578", null, "36.5", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.5", null, "0.2", null, "6.8", null, "0.5", null, "6.8", null, "0.5", null, "6.8", null, "0.3", null, "6.1", null, "0.2", null, "7.2", null, "0.2", null, "7.4", null, "0.2", null, "7.8", null, "0.5", null, "6.6", null, "0.6", null, "6.2", null, "0.2", null, "5.9", null, "0.3", null, "4.8", null, "0.4", null, "6.4", null, "0.4", null, "4.9", null, "0.3", null, "4.3", null, "0.3", null, "2.8", null, "0.3", null, "1.4", null, "0.2", null, "1.4", null, "0.2", null, "13.6", null, "0.2", null, "4.4", null, "0.2", null, "24.6", null, "0.2", null, "8.4", null, "0.2", null, "41.8", null, "0.4", null, "78.5", null, "0.3", null, "75.4", null, "0.2", null, "72.1", null, "0.4", null, "21.1", null, "0.4", null, "18.5", null, "0.4", null, "14.7", null, "0.2", null, "5.6", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "419690", null, "2039", null, "24327", null, "665", null, "25159", null, "2046", null, "30500", null, "2004", null, "27081", null, "1538", null, "25889", null, "1354", null, "29035", null, "996", null, "28720", null, "733", null, "31294", null, "2527", null, "26943", null, "2525", null, "25769", null, "924", null, "22350", null, "585", null, "22280", null, "1997", null, "25475", null, "1925", null, "22414", null, "1644", null, "19861", null, "1691", null, "12886", null, "1512", null, "8661", null, "1007", null, "11046", null, "1283", null, "55659", null, "988", null, "17534", null, "828", null, "97520", null, "1228", null, "35436", null, "1031", null, "168962", null, "1821", null, "333150", null, "1907", null, "322170", null, "1282", null, "309044", null, "1786", null, "100343", null, "2135", null, "91389", null, "1791", null, "74868", null, "870", null, "32593", null, "702", null, "37.9", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.8", null, "0.2", null, "6.0", null, "0.5", null, "7.3", null, "0.5", null, "6.5", null, "0.4", null, "6.2", null, "0.3", null, "6.9", null, "0.2", null, "6.8", null, "0.2", null, "7.5", null, "0.6", null, "6.4", null, "0.6", null, "6.1", null, "0.2", null, "5.3", null, "0.1", null, "5.3", null, "0.5", null, "6.1", null, "0.5", null, "5.3", null, "0.4", null, "4.7", null, "0.4", null, "3.1", null, "0.4", null, "2.1", null, "0.2", null, "2.6", null, "0.3", null, "13.3", null, "0.2", null, "4.2", null, "0.2", null, "23.2", null, "0.2", null, "8.4", null, "0.2", null, "40.3", null, "0.3", null, "79.4", null, "0.4", null, "76.8", null, "0.2", null, "73.6", null, "0.4", null, "23.9", null, "0.5", null, "21.8", null, "0.5", null, "17.8", null, "0.2", null, "7.8", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "19", "03"], ["5001900US1904", "Congressional District 4 (119th Congress), Iowa", "801546", null, "2960", null, "44994", null, "1564", null, "48857", null, "2821", null, "51534", null, "2370", null, "63834", null, "2489", null, "61618", null, "2182", null, "49155", null, "2436", null, "46619", null, "2110", null, "42419", null, "2589", null, "49732", null, "2537", null, "42960", null, "1563", null, "45098", null, "1836", null, "43819", null, "2683", null, "51059", null, "2624", null, "47387", null, "2406", null, "45631", null, "2448", null, "26201", null, "1604", null, "20572", null, "1511", null, "20057", null, "1489", null, "100391", null, "2042", null, "32906", null, "1315", null, "178291", null, "1695", null, "92546", null, "2331", null, "313377", null, "3471", null, "644831", null, "3050", null, "623255", null, "2571", null, "579148", null, "3691", null, "210907", null, "3008", null, "191678", null, "2600", null, "159848", null, "1393", null, "66830", null, "810", null, "39.0", null, "0.4", null, "102.5", null, "1.1", null, "73.0", null, "0.7", null, "34.5", null, "0.4", null, "38.5", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.6", null, "0.2", null, "6.1", null, "0.3", null, "6.4", null, "0.3", null, "8.0", null, "0.3", null, "7.7", null, "0.3", null, "6.1", null, "0.3", null, "5.8", null, "0.3", null, "5.3", null, "0.3", null, "6.2", null, "0.3", null, "5.4", null, "0.2", null, "5.6", null, "0.2", null, "5.5", null, "0.3", null, "6.4", null, "0.3", null, "5.9", null, "0.3", null, "5.7", null, "0.3", null, "3.3", null, "0.2", null, "2.6", null, "0.2", null, "2.5", null, "0.2", null, "12.5", null, "0.3", null, "4.1", null, "0.2", null, "22.2", null, "0.2", null, "11.5", null, "0.3", null, "39.1", null, "0.4", null, "80.4", null, "0.3", null, "77.8", null, "0.2", null, "72.3", null, "0.4", null, "26.3", null, "0.4", null, "23.9", null, "0.3", null, "19.9", null, "0.2", null, "8.3", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.2", null, "-888888888.0", "(X)", "405731", null, "2835", null, "22256", null, "1337", null, "25188", null, "1959", null, "25809", null, "1893", null, "34816", null, "1902", null, "33503", null, "1660", null, "26177", null, "1776", null, "23930", null, "1315", null, "21455", null, "1799", null, "26831", null, "1752", null, "22347", null, "1179", null, "21815", null, "1140", null, "21677", null, "1714", null, "25690", null, "1668", null, "23649", null, "1544", null, "22300", null, "1405", null, "12209", null, "980", null, "8592", null, "966", null, "7487", null, "996", null, "50997", null, "1233", null, "17182", null, "1125", null, "90435", null, "2025", null, "51137", null, "1798", null, "166712", null, "2565", null, "326917", null, "2487", null, "315296", null, "2243", null, "290414", null, "2877", null, "99927", null, "1882", null, "89824", null, "1723", null, "74237", null, "957", null, "28288", null, "477", null, "37.5", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.3", null, "6.2", null, "0.5", null, "6.4", null, "0.5", null, "8.6", null, "0.4", null, "8.3", null, "0.4", null, "6.5", null, "0.4", null, "5.9", null, "0.3", null, "5.3", null, "0.4", null, "6.6", null, "0.4", null, "5.5", null, "0.3", null, "5.4", null, "0.3", null, "5.3", null, "0.4", null, "6.3", null, "0.4", null, "5.8", null, "0.4", null, "5.5", null, "0.3", null, "3.0", null, "0.2", null, "2.1", null, "0.2", null, "1.8", null, "0.2", null, "12.6", null, "0.3", null, "4.2", null, "0.3", null, "22.3", null, "0.4", null, "12.6", null, "0.4", null, "41.1", null, "0.5", null, "80.6", null, "0.4", null, "77.7", null, "0.4", null, "71.6", null, "0.7", null, "24.6", null, "0.5", null, "22.1", null, "0.4", null, "18.3", null, "0.2", null, "7.0", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "395815", null, "2459", null, "22738", null, "1179", null, "23669", null, "1872", null, "25725", null, "1679", null, "29018", null, "1824", null, "28115", null, "1407", null, "22978", null, "1583", null, "22689", null, "1182", null, "20964", null, "1746", null, "22901", null, "1620", null, "20613", null, "1270", null, "23283", null, "1421", null, "22142", null, "1560", null, "25369", null, "1491", null, "23738", null, "1417", null, "23331", null, "1530", null, "13992", null, "1118", null, "11980", null, "1087", null, "12570", null, "1001", null, "49394", null, "1680", null, "15724", null, "1172", null, "87856", null, "2037", null, "41409", null, "1425", null, "146665", null, "2186", null, "317914", null, "2116", null, "307959", null, "1809", null, "288734", null, "2306", null, "110980", null, "1876", null, "101854", null, "1689", null, "85611", null, "1063", null, "38542", null, "603", null, "40.5", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.7", null, "0.3", null, "6.0", null, "0.5", null, "6.5", null, "0.4", null, "7.3", null, "0.5", null, "7.1", null, "0.4", null, "5.8", null, "0.4", null, "5.7", null, "0.3", null, "5.3", null, "0.5", null, "5.8", null, "0.4", null, "5.2", null, "0.3", null, "5.9", null, "0.4", null, "5.6", null, "0.4", null, "6.4", null, "0.4", null, "6.0", null, "0.4", null, "5.9", null, "0.4", null, "3.5", null, "0.3", null, "3.0", null, "0.3", null, "3.2", null, "0.3", null, "12.5", null, "0.4", null, "4.0", null, "0.3", null, "22.2", null, "0.4", null, "10.5", null, "0.4", null, "37.1", null, "0.5", null, "80.3", null, "0.5", null, "77.8", null, "0.4", null, "72.9", null, "0.6", null, "28.0", null, "0.5", null, "25.7", null, "0.4", null, "21.6", null, "0.3", null, "9.7", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "19", "04"], ["5001900US2001", "Congressional District 1 (119th Congress), Kansas", "731386", null, "2799", null, "39956", null, "1391", null, "44979", null, "3016", null, "46183", null, "2961", null, "60621", null, "3633", null, "66294", null, "3394", null, "48648", null, "2798", null, "47074", null, "2784", null, "45573", null, "3344", null, "47383", null, "3325", null, "36105", null, "2055", null, "34773", null, "2016", null, "36440", null, "2332", null, "46289", null, "2086", null, "40522", null, "2157", null, "35313", null, "2219", null, "25803", null, "1889", null, "13951", null, "1348", null, "15479", null, "1696", null, "91162", null, "2292", null, "30381", null, "1901", null, "161499", null, "2654", null, "96534", null, "2878", null, "315593", null, "3065", null, "589164", null, "2999", null, "569887", null, "2871", null, "523225", null, "4587", null, "177357", null, "2803", null, "160416", null, "2813", null, "131068", null, "2107", null, "55233", null, "1539", null, "36.5", null, "0.3", null, "103.6", null, "1.7", null, "66.7", null, "1.0", null, "29.9", null, "0.6", null, "36.8", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.2", null, "6.1", null, "0.4", null, "6.3", null, "0.4", null, "8.3", null, "0.5", null, "9.1", null, "0.5", null, "6.7", null, "0.4", null, "6.4", null, "0.4", null, "6.2", null, "0.5", null, "6.5", null, "0.5", null, "4.9", null, "0.3", null, "4.8", null, "0.3", null, "5.0", null, "0.3", null, "6.3", null, "0.3", null, "5.5", null, "0.3", null, "4.8", null, "0.3", null, "3.5", null, "0.3", null, "1.9", null, "0.2", null, "2.1", null, "0.2", null, "12.5", null, "0.3", null, "4.2", null, "0.3", null, "22.1", null, "0.3", null, "13.2", null, "0.4", null, "43.1", null, "0.4", null, "80.6", null, "0.3", null, "77.9", null, "0.3", null, "71.5", null, "0.6", null, "24.2", null, "0.4", null, "21.9", null, "0.4", null, "17.9", null, "0.3", null, "7.6", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.2", null, "-888888888.0", "(X)", "372073", null, "3026", null, "19194", null, "1511", null, "23616", null, "2002", null, "23133", null, "2040", null, "31210", null, "2116", null, "35934", null, "2341", null, "26212", null, "2097", null, "24779", null, "1845", null, "24489", null, "1957", null, "23794", null, "1830", null, "19599", null, "1671", null, "17899", null, "1406", null, "17532", null, "1489", null, "23480", null, "1376", null, "20483", null, "1356", null, "17034", null, "1171", null, "12139", null, "1103", null, "6186", null, "835", null, "5360", null, "935", null, "46749", null, "1760", null, "15209", null, "1256", null, "81152", null, "2441", null, "51935", null, "2060", null, "166418", null, "2732", null, "300159", null, "3085", null, "290921", null, "2920", null, "266732", null, "3694", null, "84682", null, "1903", null, "75551", null, "1909", null, "61202", null, "1355", null, "23685", null, "867", null, "35.5", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.4", null, "6.3", null, "0.5", null, "6.2", null, "0.5", null, "8.4", null, "0.6", null, "9.7", null, "0.6", null, "7.0", null, "0.6", null, "6.7", null, "0.5", null, "6.6", null, "0.5", null, "6.4", null, "0.5", null, "5.3", null, "0.4", null, "4.8", null, "0.4", null, "4.7", null, "0.4", null, "6.3", null, "0.4", null, "5.5", null, "0.4", null, "4.6", null, "0.3", null, "3.3", null, "0.3", null, "1.7", null, "0.2", null, "1.4", null, "0.3", null, "12.6", null, "0.5", null, "4.1", null, "0.3", null, "21.8", null, "0.6", null, "14.0", null, "0.5", null, "44.7", null, "0.7", null, "80.7", null, "0.6", null, "78.2", null, "0.6", null, "71.7", null, "0.8", null, "22.8", null, "0.5", null, "20.3", null, "0.5", null, "16.4", null, "0.3", null, "6.4", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "359313", null, "3541", null, "20762", null, "1502", null, "21363", null, "2130", null, "23050", null, "2238", null, "29411", null, "2745", null, "30360", null, "2372", null, "22436", null, "1573", null, "22295", null, "1844", null, "21084", null, "2328", null, "23589", null, "2368", null, "16506", null, "1432", null, "16874", null, "1377", null, "18908", null, "1474", null, "22809", null, "1509", null, "20039", null, "1276", null, "18279", null, "1417", null, "13664", null, "1243", null, "7765", null, "1127", null, "10119", null, "1304", null, "44413", null, "1663", null, "15172", null, "1618", null, "80347", null, "2523", null, "44599", null, "1987", null, "149175", null, "2715", null, "289005", null, "2828", null, "278966", null, "2441", null, "256493", null, "3482", null, "92675", null, "2091", null, "84865", null, "2081", null, "69866", null, "1533", null, "31548", null, "1153", null, "37.7", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.8", null, "0.4", null, "5.9", null, "0.6", null, "6.4", null, "0.6", null, "8.2", null, "0.7", null, "8.4", null, "0.7", null, "6.2", null, "0.4", null, "6.2", null, "0.5", null, "5.9", null, "0.7", null, "6.6", null, "0.7", null, "4.6", null, "0.4", null, "4.7", null, "0.4", null, "5.3", null, "0.4", null, "6.3", null, "0.4", null, "5.6", null, "0.4", null, "5.1", null, "0.4", null, "3.8", null, "0.4", null, "2.2", null, "0.3", null, "2.8", null, "0.4", null, "12.4", null, "0.4", null, "4.2", null, "0.4", null, "22.4", null, "0.6", null, "12.4", null, "0.5", null, "41.5", null, "0.7", null, "80.4", null, "0.6", null, "77.6", null, "0.6", null, "71.4", null, "0.9", null, "25.8", null, "0.5", null, "23.6", null, "0.5", null, "19.4", null, "0.4", null, "8.8", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "20", "01"], ["5001900US2002", "Congressional District 2 (119th Congress), Kansas", "739248", null, "5715", null, "43851", null, "1844", null, "47467", null, "3753", null, "55044", null, "3118", null, "49211", null, "2457", null, "51070", null, "2862", null, "45374", null, "2399", null, "45426", null, "2417", null, "52302", null, "3489", null, "43084", null, "3410", null, "40884", null, "2063", null, "40322", null, "2083", null, "39897", null, "2807", null, "45871", null, "2673", null, "43044", null, "2529", null, "39061", null, "2243", null, "24751", null, "1601", null, "16993", null, "1664", null, "15596", null, "1696", null, "102511", null, "2892", null, "30158", null, "1683", null, "176520", null, "3384", null, "70123", null, "2888", null, "286467", null, "4543", null, "581993", null, "4825", null, "562728", null, "4529", null, "532378", null, "4851", null, "185316", null, "3781", null, "168739", null, "3460", null, "139445", null, "2508", null, "57340", null, "1670", null, "38.2", null, "0.5", null, "100.6", null, "1.4", null, "74.6", null, "1.4", null, "32.9", null, "0.8", null, "41.7", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.9", null, "0.2", null, "6.4", null, "0.5", null, "7.4", null, "0.4", null, "6.7", null, "0.3", null, "6.9", null, "0.4", null, "6.1", null, "0.3", null, "6.1", null, "0.3", null, "7.1", null, "0.5", null, "5.8", null, "0.5", null, "5.5", null, "0.3", null, "5.5", null, "0.3", null, "5.4", null, "0.4", null, "6.2", null, "0.4", null, "5.8", null, "0.3", null, "5.3", null, "0.3", null, "3.3", null, "0.2", null, "2.3", null, "0.2", null, "2.1", null, "0.2", null, "13.9", null, "0.4", null, "4.1", null, "0.2", null, "23.9", null, "0.4", null, "9.5", null, "0.4", null, "38.8", null, "0.5", null, "78.7", null, "0.4", null, "76.1", null, "0.4", null, "72.0", null, "0.5", null, "25.1", null, "0.5", null, "22.8", null, "0.5", null, "18.9", null, "0.3", null, "7.8", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "0.9", null, "-888888888.0", "(X)", "370819", null, "3972", null, "22677", null, "1394", null, "23690", null, "2523", null, "29414", null, "2314", null, "25290", null, "1822", null, "25241", null, "1941", null, "25356", null, "1810", null, "21655", null, "1570", null, "27332", null, "2554", null, "22526", null, "2486", null, "21112", null, "1454", null, "20816", null, "1428", null, "19359", null, "1799", null, "23086", null, "1808", null, "21247", null, "1607", null, "17821", null, "1425", null, "11151", null, "1106", null, "7854", null, "1097", null, "5192", null, "852", null, "53104", null, "2038", null, "15574", null, "1421", null, "91355", null, "2498", null, "34957", null, "2075", null, "147400", null, "3658", null, "288701", null, "3533", null, "279464", null, "3192", null, "264355", null, "3215", null, "86351", null, "2242", null, "77906", null, "2073", null, "63265", null, "1365", null, "24197", null, "937", null, "37.3", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.1", null, "0.4", null, "6.4", null, "0.7", null, "7.9", null, "0.6", null, "6.8", null, "0.5", null, "6.8", null, "0.5", null, "6.8", null, "0.5", null, "5.8", null, "0.4", null, "7.4", null, "0.7", null, "6.1", null, "0.7", null, "5.7", null, "0.4", null, "5.6", null, "0.4", null, "5.2", null, "0.5", null, "6.2", null, "0.5", null, "5.7", null, "0.4", null, "4.8", null, "0.4", null, "3.0", null, "0.3", null, "2.1", null, "0.3", null, "1.4", null, "0.2", null, "14.3", null, "0.5", null, "4.2", null, "0.4", null, "24.6", null, "0.6", null, "9.4", null, "0.5", null, "39.7", null, "0.8", null, "77.9", null, "0.6", null, "75.4", null, "0.6", null, "71.3", null, "0.7", null, "23.3", null, "0.6", null, "21.0", null, "0.6", null, "17.1", null, "0.4", null, "6.5", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "368429", null, "3622", null, "21174", null, "1497", null, "23777", null, "2323", null, "25630", null, "2180", null, "23921", null, "1900", null, "25829", null, "1708", null, "20018", null, "1385", null, "23771", null, "1684", null, "24970", null, "2201", null, "20558", null, "2061", null, "19772", null, "1366", null, "19506", null, "1018", null, "20538", null, "1685", null, "22785", null, "1706", null, "21797", null, "1513", null, "21240", null, "1493", null, "13600", null, "1179", null, "9139", null, "1177", null, "10404", null, "1246", null, "49407", null, "2035", null, "14584", null, "1302", null, "85165", null, "2880", null, "35166", null, "1807", null, "139067", null, "2617", null, "293292", null, "2766", null, "283264", null, "2581", null, "268023", null, "2762", null, "98965", null, "2259", null, "90833", null, "2135", null, "76180", null, "1620", null, "33143", null, "1119", null, "39.2", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.7", null, "0.4", null, "6.5", null, "0.6", null, "7.0", null, "0.6", null, "6.5", null, "0.5", null, "7.0", null, "0.5", null, "5.4", null, "0.4", null, "6.5", null, "0.5", null, "6.8", null, "0.6", null, "5.6", null, "0.6", null, "5.4", null, "0.4", null, "5.3", null, "0.3", null, "5.6", null, "0.5", null, "6.2", null, "0.5", null, "5.9", null, "0.4", null, "5.8", null, "0.4", null, "3.7", null, "0.3", null, "2.5", null, "0.3", null, "2.8", null, "0.3", null, "13.4", null, "0.5", null, "4.0", null, "0.3", null, "23.1", null, "0.6", null, "9.5", null, "0.5", null, "37.7", null, "0.6", null, "79.6", null, "0.6", null, "76.9", null, "0.6", null, "72.7", null, "0.7", null, "26.9", null, "0.6", null, "24.7", null, "0.6", null, "20.7", null, "0.4", null, "9.0", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "20", "02"], ["5001900US2003", "Congressional District 3 (119th Congress), Kansas", "754087", null, "5082", null, "43067", null, "1404", null, "42922", null, "2731", null, "52234", null, "2860", null, "50209", null, "1549", null, "44502", null, "1998", null, "50090", null, "1773", null, "50566", null, "1780", null, "49483", null, "3431", null, "57801", null, "3622", null, "48551", null, "1514", null, "46587", null, "1216", null, "41024", null, "2806", null, "48445", null, "2800", null, "41852", null, "2318", null, "33658", null, "2539", null, "26178", null, "1716", null, "14553", null, "1297", null, "12365", null, "1439", null, "95156", null, "1778", null, "32045", null, "800", null, "170268", null, "2703", null, "62666", null, "2067", null, "302651", null, "3545", null, "604169", null, "4285", null, "583819", null, "3635", null, "558513", null, "4072", null, "177051", null, "2938", null, "160059", null, "2949", null, "128606", null, "1449", null, "53096", null, "1168", null, "39.4", null, "0.4", null, "98.0", null, "0.9", null, "65.7", null, "0.8", null, "28.3", null, "0.4", null, "37.4", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.7", null, "0.2", null, "5.7", null, "0.4", null, "6.9", null, "0.4", null, "6.7", null, "0.2", null, "5.9", null, "0.3", null, "6.6", null, "0.2", null, "6.7", null, "0.2", null, "6.6", null, "0.5", null, "7.7", null, "0.5", null, "6.4", null, "0.2", null, "6.2", null, "0.2", null, "5.4", null, "0.4", null, "6.4", null, "0.4", null, "5.6", null, "0.3", null, "4.5", null, "0.3", null, "3.5", null, "0.2", null, "1.9", null, "0.2", null, "1.6", null, "0.2", null, "12.6", null, "0.2", null, "4.2", null, "0.1", null, "22.6", null, "0.3", null, "8.3", null, "0.3", null, "40.1", null, "0.3", null, "80.1", null, "0.3", null, "77.4", null, "0.3", null, "74.1", null, "0.4", null, "23.5", null, "0.4", null, "21.2", null, "0.4", null, "17.1", null, "0.2", null, "7.0", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "0.7", null, "-888888888.0", "(X)", "373240", null, "2989", null, "21236", null, "1023", null, "20896", null, "1898", null, "27465", null, "2105", null, "25433", null, "1324", null, "23445", null, "1528", null, "25682", null, "1162", null, "25457", null, "1048", null, "23709", null, "2197", null, "30154", null, "2213", null, "24116", null, "1112", null, "24289", null, "680", null, "19901", null, "1968", null, "24019", null, "1860", null, "18886", null, "1414", null, "15992", null, "1561", null, "12428", null, "1041", null, "5753", null, "885", null, "4379", null, "845", null, "48361", null, "1188", null, "16037", null, "1032", null, "85634", null, "2117", null, "32841", null, "1378", null, "153880", null, "2361", null, "298197", null, "2409", null, "287606", null, "2333", null, "274362", null, "2716", null, "81457", null, "1913", null, "72408", null, "1997", null, "57438", null, "728", null, "22560", null, "602", null, "38.7", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.7", null, "0.3", null, "5.6", null, "0.5", null, "7.4", null, "0.5", null, "6.8", null, "0.3", null, "6.3", null, "0.4", null, "6.9", null, "0.3", null, "6.8", null, "0.3", null, "6.4", null, "0.6", null, "8.1", null, "0.6", null, "6.5", null, "0.3", null, "6.5", null, "0.2", null, "5.3", null, "0.5", null, "6.4", null, "0.5", null, "5.1", null, "0.4", null, "4.3", null, "0.4", null, "3.3", null, "0.3", null, "1.5", null, "0.2", null, "1.2", null, "0.2", null, "13.0", null, "0.3", null, "4.3", null, "0.3", null, "22.9", null, "0.5", null, "8.8", null, "0.3", null, "41.2", null, "0.5", null, "79.9", null, "0.4", null, "77.1", null, "0.5", null, "73.5", null, "0.6", null, "21.8", null, "0.6", null, "19.4", null, "0.6", null, "15.4", null, "0.2", null, "6.0", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "380847", null, "3132", null, "21831", null, "1319", null, "22026", null, "2099", null, "24769", null, "2079", null, "24776", null, "1364", null, "21057", null, "1121", null, "24408", null, "1332", null, "25109", null, "1006", null, "25774", null, "2216", null, "27647", null, "2414", null, "24435", null, "1069", null, "22298", null, "790", null, "21123", null, "1539", null, "24426", null, "1766", null, "22966", null, "1689", null, "17666", null, "1685", null, "13750", null, "1181", null, "8800", null, "956", null, "7986", null, "1099", null, "46795", null, "945", null, "16008", null, "1025", null, "84634", null, "2178", null, "29825", null, "1366", null, "148771", null, "2024", null, "305972", null, "2633", null, "296213", null, "1892", null, "284151", null, "2063", null, "95594", null, "1791", null, "87651", null, "2039", null, "71168", null, "970", null, "30536", null, "919", null, "40.1", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.7", null, "0.3", null, "5.8", null, "0.5", null, "6.5", null, "0.5", null, "6.5", null, "0.3", null, "5.5", null, "0.3", null, "6.4", null, "0.3", null, "6.6", null, "0.3", null, "6.8", null, "0.6", null, "7.3", null, "0.6", null, "6.4", null, "0.3", null, "5.9", null, "0.2", null, "5.5", null, "0.4", null, "6.4", null, "0.5", null, "6.0", null, "0.4", null, "4.6", null, "0.4", null, "3.6", null, "0.3", null, "2.3", null, "0.3", null, "2.1", null, "0.3", null, "12.3", null, "0.2", null, "4.2", null, "0.3", null, "22.2", null, "0.4", null, "7.8", null, "0.4", null, "39.1", null, "0.4", null, "80.3", null, "0.5", null, "77.8", null, "0.4", null, "74.6", null, "0.5", null, "25.1", null, "0.5", null, "23.0", null, "0.5", null, "18.7", null, "0.3", null, "8.0", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "20", "03"], ["5001900US2004", "Congressional District 4 (119th Congress), Kansas", "745885", null, "2109", null, "44144", null, "580", null, "44942", null, "2853", null, "54917", null, "3073", null, "53209", null, "1749", null, "49254", null, "1746", null, "51231", null, "1462", null, "48316", null, "893", null, "49760", null, "2656", null, "47475", null, "2471", null, "42120", null, "1373", null, "39749", null, "926", null, "39101", null, "2737", null, "47012", null, "2900", null, "43449", null, "2508", null, "36581", null, "2376", null, "26226", null, "2047", null, "13603", null, "1350", null, "14796", null, "1559", null, "99859", null, "1048", null, "34338", null, "683", null, "178341", null, "1317", null, "68125", null, "1227", null, "299245", null, "2209", null, "590427", null, "2946", null, "567544", null, "1923", null, "539118", null, "3655", null, "181667", null, "3032", null, "164272", null, "2836", null, "134655", null, "1299", null, "54625", null, "1030", null, "37.8", null, "0.3", null, "99.0", null, "0.9", null, "72.3", null, "0.5", null, "31.1", null, "0.3", null, "41.2", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.9", null, "0.1", null, "6.0", null, "0.4", null, "7.4", null, "0.4", null, "7.1", null, "0.2", null, "6.6", null, "0.2", null, "6.9", null, "0.2", null, "6.5", null, "0.1", null, "6.7", null, "0.4", null, "6.4", null, "0.3", null, "5.6", null, "0.2", null, "5.3", null, "0.1", null, "5.2", null, "0.4", null, "6.3", null, "0.4", null, "5.8", null, "0.3", null, "4.9", null, "0.3", null, "3.5", null, "0.3", null, "1.8", null, "0.2", null, "2.0", null, "0.2", null, "13.4", null, "0.1", null, "4.6", null, "0.1", null, "23.9", null, "0.2", null, "9.1", null, "0.2", null, "40.1", null, "0.3", null, "79.2", null, "0.3", null, "76.1", null, "0.2", null, "72.3", null, "0.4", null, "24.4", null, "0.4", null, "22.0", null, "0.4", null, "18.1", null, "0.2", null, "7.3", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "0.6", null, "-888888888.0", "(X)", "371101", null, "1986", null, "22056", null, "704", null, "21790", null, "2133", null, "29511", null, "2222", null, "27239", null, "1325", null, "25695", null, "1162", null, "25854", null, "663", null, "24431", null, "526", null, "24479", null, "1654", null, "24147", null, "1541", null, "21629", null, "802", null, "19684", null, "503", null, "19653", null, "1775", null, "23178", null, "1832", null, "20215", null, "1528", null, "17766", null, "1552", null, "13061", null, "1243", null, "5484", null, "780", null, "5229", null, "987", null, "51301", null, "821", null, "16865", null, "987", null, "90222", null, "1601", null, "36069", null, "700", null, "151845", null, "1531", null, "292098", null, "2265", null, "280879", null, "1385", null, "265013", null, "2623", null, "84933", null, "1971", null, "76606", null, "1807", null, "61755", null, "929", null, "23774", null, "845", null, "36.8", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.9", null, "0.2", null, "5.9", null, "0.6", null, "8.0", null, "0.6", null, "7.3", null, "0.3", null, "6.9", null, "0.3", null, "7.0", null, "0.2", null, "6.6", null, "0.1", null, "6.6", null, "0.4", null, "6.5", null, "0.4", null, "5.8", null, "0.2", null, "5.3", null, "0.1", null, "5.3", null, "0.5", null, "6.2", null, "0.5", null, "5.4", null, "0.4", null, "4.8", null, "0.4", null, "3.5", null, "0.3", null, "1.5", null, "0.2", null, "1.4", null, "0.3", null, "13.8", null, "0.2", null, "4.5", null, "0.3", null, "24.3", null, "0.3", null, "9.7", null, "0.2", null, "40.9", null, "0.3", null, "78.7", null, "0.5", null, "75.7", null, "0.3", null, "71.4", null, "0.7", null, "22.9", null, "0.5", null, "20.6", null, "0.5", null, "16.6", null, "0.2", null, "6.4", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "374784", null, "1875", null, "22088", null, "675", null, "23152", null, "1816", null, "25406", null, "1887", null, "25970", null, "1463", null, "23559", null, "1224", null, "25377", null, "1122", null, "23885", null, "666", null, "25281", null, "2067", null, "23328", null, "2079", null, "20491", null, "1055", null, "20065", null, "628", null, "19448", null, "1752", null, "23834", null, "1786", null, "23234", null, "1535", null, "18815", null, "1346", null, "13165", null, "1397", null, "8119", null, "1089", null, "9567", null, "1058", null, "48558", null, "706", null, "17473", null, "1062", null, "88119", null, "1393", null, "32056", null, "872", null, "147400", null, "1755", null, "298329", null, "1998", null, "286665", null, "1366", null, "274105", null, "1947", null, "96734", null, "1801", null, "87666", null, "1729", null, "72900", null, "848", null, "30851", null, "482", null, "38.6", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.9", null, "0.2", null, "6.2", null, "0.5", null, "6.8", null, "0.5", null, "6.9", null, "0.4", null, "6.3", null, "0.3", null, "6.8", null, "0.3", null, "6.4", null, "0.2", null, "6.7", null, "0.5", null, "6.2", null, "0.6", null, "5.5", null, "0.3", null, "5.4", null, "0.2", null, "5.2", null, "0.5", null, "6.4", null, "0.5", null, "6.2", null, "0.4", null, "5.0", null, "0.4", null, "3.5", null, "0.4", null, "2.2", null, "0.3", null, "2.6", null, "0.3", null, "13.0", null, "0.2", null, "4.7", null, "0.3", null, "23.5", null, "0.3", null, "8.6", null, "0.2", null, "39.3", null, "0.4", null, "79.6", null, "0.4", null, "76.5", null, "0.3", null, "73.1", null, "0.5", null, "25.8", null, "0.5", null, "23.4", null, "0.5", null, "19.5", null, "0.2", null, "8.2", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "20", "04"], ["5001900US2101", "Congressional District 1 (119th Congress), Kentucky", "759138", null, "4479", null, "44751", null, "2021", null, "46202", null, "2869", null, "48539", null, "2976", null, "51967", null, "2772", null, "46859", null, "2666", null, "47022", null, "2419", null, "46199", null, "2414", null, "46060", null, "3256", null, "48519", null, "3270", null, "44986", null, "2258", null, "42822", null, "1993", null, "47098", null, "2775", null, "50734", null, "2347", null, "50062", null, "2803", null, "39032", null, "2271", null, "28735", null, "2015", null, "18260", null, "1282", null, "11291", null, "1387", null, "94741", null, "2744", null, "31344", null, "1729", null, "170836", null, "2821", null, "67482", null, "2239", null, "286626", null, "4527", null, "609786", null, "4520", null, "588302", null, "3922", null, "556829", null, "5190", null, "198114", null, "3454", null, "179179", null, "3378", null, "147380", null, "2576", null, "58286", null, "1467", null, "40.2", null, "0.5", null, "98.1", null, "1.7", null, "72.2", null, "1.1", null, "33.4", null, "0.7", null, "38.7", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.9", null, "0.3", null, "6.1", null, "0.4", null, "6.4", null, "0.4", null, "6.8", null, "0.4", null, "6.2", null, "0.4", null, "6.2", null, "0.3", null, "6.1", null, "0.3", null, "6.1", null, "0.4", null, "6.4", null, "0.4", null, "5.9", null, "0.3", null, "5.6", null, "0.3", null, "6.2", null, "0.4", null, "6.7", null, "0.3", null, "6.6", null, "0.4", null, "5.1", null, "0.3", null, "3.8", null, "0.3", null, "2.4", null, "0.2", null, "1.5", null, "0.2", null, "12.5", null, "0.4", null, "4.1", null, "0.2", null, "22.5", null, "0.3", null, "8.9", null, "0.3", null, "37.8", null, "0.5", null, "80.3", null, "0.4", null, "77.5", null, "0.3", null, "73.4", null, "0.5", null, "26.1", null, "0.5", null, "23.6", null, "0.4", null, "19.4", null, "0.3", null, "7.7", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.5", null, "-888888888.0", "(X)", "375922", null, "3704", null, "22611", null, "2002", null, "22690", null, "2089", null, "25464", null, "2064", null, "26279", null, "2183", null, "23896", null, "1621", null, "24410", null, "1813", null, "24187", null, "1842", null, "23695", null, "2380", null, "24633", null, "2408", null, "22760", null, "1749", null, "22060", null, "1278", null, "22182", null, "1464", null, "24003", null, "1503", null, "23716", null, "1996", null, "18957", null, "1618", null, "12762", null, "1194", null, "7297", null, "977", null, "4320", null, "886", null, "48154", null, "2095", null, "15356", null, "1401", null, "86121", null, "2810", null, "34819", null, "1434", null, "147100", null, "3165", null, "300972", null, "3059", null, "289801", null, "2934", null, "272258", null, "3603", null, "91055", null, "2136", null, "81970", null, "2167", null, "67052", null, "1634", null, "24379", null, "841", null, "38.7", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.0", null, "0.5", null, "6.0", null, "0.5", null, "6.8", null, "0.6", null, "7.0", null, "0.6", null, "6.4", null, "0.4", null, "6.5", null, "0.5", null, "6.4", null, "0.5", null, "6.3", null, "0.6", null, "6.6", null, "0.6", null, "6.1", null, "0.5", null, "5.9", null, "0.3", null, "5.9", null, "0.4", null, "6.4", null, "0.4", null, "6.3", null, "0.5", null, "5.0", null, "0.4", null, "3.4", null, "0.3", null, "1.9", null, "0.3", null, "1.1", null, "0.2", null, "12.8", null, "0.5", null, "4.1", null, "0.4", null, "22.9", null, "0.6", null, "9.3", null, "0.4", null, "39.1", null, "0.7", null, "80.1", null, "0.6", null, "77.1", null, "0.6", null, "72.4", null, "0.8", null, "24.2", null, "0.6", null, "21.8", null, "0.6", null, "17.8", null, "0.4", null, "6.5", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "383216", null, "4235", null, "22140", null, "1611", null, "23512", null, "2249", null, "23075", null, "1928", null, "25688", null, "2481", null, "22963", null, "1878", null, "22612", null, "1524", null, "22012", null, "1497", null, "22365", null, "2186", null, "23886", null, "2222", null, "22226", null, "1307", null, "20762", null, "1330", null, "24916", null, "2121", null, "26731", null, "1751", null, "26346", null, "1751", null, "20075", null, "1611", null, "15973", null, "1406", null, "10963", null, "1095", null, "6971", null, "909", null, "46587", null, "1822", null, "15988", null, "1815", null, "84715", null, "2836", null, "32663", null, "1753", null, "139526", null, "3382", null, "308814", null, "3415", null, "298501", null, "2791", null, "284571", null, "3341", null, "107059", null, "2473", null, "97209", null, "2439", null, "80328", null, "1659", null, "33907", null, "1052", null, "41.5", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.8", null, "0.4", null, "6.1", null, "0.6", null, "6.0", null, "0.5", null, "6.7", null, "0.6", null, "6.0", null, "0.5", null, "5.9", null, "0.4", null, "5.7", null, "0.4", null, "5.8", null, "0.6", null, "6.2", null, "0.6", null, "5.8", null, "0.3", null, "5.4", null, "0.4", null, "6.5", null, "0.5", null, "7.0", null, "0.5", null, "6.9", null, "0.5", null, "5.2", null, "0.4", null, "4.2", null, "0.4", null, "2.9", null, "0.3", null, "1.8", null, "0.2", null, "12.2", null, "0.4", null, "4.2", null, "0.5", null, "22.1", null, "0.6", null, "8.5", null, "0.4", null, "36.4", null, "0.7", null, "80.6", null, "0.6", null, "77.9", null, "0.6", null, "74.3", null, "0.7", null, "27.9", null, "0.6", null, "25.4", null, "0.6", null, "21.0", null, "0.4", null, "8.8", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "21", "01"], ["5001900US2102", "Congressional District 2 (119th Congress), Kentucky", "775395", null, "5037", null, "44948", null, "1548", null, "46440", null, "3435", null, "50606", null, "3344", null, "52258", null, "2299", null, "52943", null, "2759", null, "48109", null, "1955", null, "51342", null, "2122", null, "48629", null, "4192", null, "52778", null, "3631", null, "44734", null, "1925", null, "47373", null, "1828", null, "46330", null, "2710", null, "51559", null, "2892", null, "43912", null, "2495", null, "37443", null, "2296", null, "27001", null, "1963", null, "14675", null, "1750", null, "14315", null, "1708", null, "97046", null, "2615", null, "33130", null, "1555", null, "175124", null, "2804", null, "72071", null, "2558", null, "306059", null, "3758", null, "620689", null, "4933", null, "600271", null, "4690", null, "570374", null, "5210", null, "188905", null, "3583", null, "167356", null, "3208", null, "137346", null, "2298", null, "55991", null, "1466", null, "39.1", null, "0.5", null, "100.0", null, "1.4", null, "67.5", null, "1.0", null, "29.7", null, "0.6", null, "37.8", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.8", null, "0.2", null, "6.0", null, "0.4", null, "6.5", null, "0.4", null, "6.7", null, "0.3", null, "6.8", null, "0.3", null, "6.2", null, "0.2", null, "6.6", null, "0.3", null, "6.3", null, "0.5", null, "6.8", null, "0.5", null, "5.8", null, "0.2", null, "6.1", null, "0.2", null, "6.0", null, "0.4", null, "6.6", null, "0.4", null, "5.7", null, "0.3", null, "4.8", null, "0.3", null, "3.5", null, "0.3", null, "1.9", null, "0.2", null, "1.8", null, "0.2", null, "12.5", null, "0.3", null, "4.3", null, "0.2", null, "22.6", null, "0.3", null, "9.3", null, "0.3", null, "39.5", null, "0.4", null, "80.0", null, "0.4", null, "77.4", null, "0.3", null, "73.6", null, "0.4", null, "24.4", null, "0.4", null, "21.6", null, "0.4", null, "17.7", null, "0.3", null, "7.2", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.1", null, "-888888888.0", "(X)", "387631", null, "3762", null, "22941", null, "1136", null, "24018", null, "2660", null, "26619", null, "2437", null, "26642", null, "1746", null, "28718", null, "2265", null, "24564", null, "1263", null, "26289", null, "1606", null, "25314", null, "3126", null, "26479", null, "2515", null, "22322", null, "1372", null, "23928", null, "1019", null, "23725", null, "1826", null, "24069", null, "1983", null, "20831", null, "1778", null, "16949", null, "1661", null, "13236", null, "1216", null, "5662", null, "1165", null, "5325", null, "990", null, "50637", null, "2333", null, "16478", null, "1438", null, "90056", null, "2600", null, "38882", null, "2227", null, "158006", null, "3205", null, "308194", null, "3197", null, "297575", null, "3046", null, "281248", null, "3620", null, "86072", null, "2306", null, "75736", null, "1835", null, "62003", null, "1432", null, "24223", null, "987", null, "37.4", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.9", null, "0.3", null, "6.2", null, "0.7", null, "6.9", null, "0.6", null, "6.9", null, "0.5", null, "7.4", null, "0.6", null, "6.3", null, "0.3", null, "6.8", null, "0.4", null, "6.5", null, "0.8", null, "6.8", null, "0.7", null, "5.8", null, "0.3", null, "6.2", null, "0.3", null, "6.1", null, "0.5", null, "6.2", null, "0.5", null, "5.4", null, "0.5", null, "4.4", null, "0.4", null, "3.4", null, "0.3", null, "1.5", null, "0.3", null, "1.4", null, "0.3", null, "13.1", null, "0.6", null, "4.3", null, "0.4", null, "23.2", null, "0.6", null, "10.0", null, "0.6", null, "40.8", null, "0.7", null, "79.5", null, "0.6", null, "76.8", null, "0.6", null, "72.6", null, "0.7", null, "22.2", null, "0.6", null, "19.5", null, "0.5", null, "16.0", null, "0.4", null, "6.2", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "387764", null, "3551", null, "22007", null, "1358", null, "22422", null, "2202", null, "23987", null, "2225", null, "25616", null, "1653", null, "24225", null, "1579", null, "23545", null, "1441", null, "25053", null, "1448", null, "23315", null, "2303", null, "26299", null, "2434", null, "22412", null, "1130", null, "23445", null, "1197", null, "22605", null, "1806", null, "27490", null, "1993", null, "23081", null, "1523", null, "20494", null, "1558", null, "13765", null, "1390", null, "9013", null, "1312", null, "8990", null, "1253", null, "46409", null, "1764", null, "16652", null, "1304", null, "85068", null, "2390", null, "33189", null, "1617", null, "148053", null, "2456", null, "312495", null, "3033", null, "302696", null, "2668", null, "289126", null, "2889", null, "102833", null, "2415", null, "91620", null, "2206", null, "75343", null, "1442", null, "31768", null, "928", null, "40.8", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.7", null, "0.3", null, "5.8", null, "0.6", null, "6.2", null, "0.6", null, "6.6", null, "0.4", null, "6.2", null, "0.4", null, "6.1", null, "0.4", null, "6.5", null, "0.4", null, "6.0", null, "0.6", null, "6.8", null, "0.6", null, "5.8", null, "0.3", null, "6.0", null, "0.3", null, "5.8", null, "0.5", null, "7.1", null, "0.5", null, "6.0", null, "0.4", null, "5.3", null, "0.4", null, "3.5", null, "0.4", null, "2.3", null, "0.3", null, "2.3", null, "0.3", null, "12.0", null, "0.4", null, "4.3", null, "0.3", null, "21.9", null, "0.5", null, "8.6", null, "0.4", null, "38.2", null, "0.5", null, "80.6", null, "0.6", null, "78.1", null, "0.5", null, "74.6", null, "0.6", null, "26.5", null, "0.6", null, "23.6", null, "0.6", null, "19.4", null, "0.4", null, "8.2", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "21", "02"], ["5001900US2103", "Congressional District 3 (119th Congress), Kentucky", "763950", null, "4303", null, "46945", null, "614", null, "43539", null, "3099", null, "49906", null, "3316", null, "46952", null, "626", null, "46190", null, "1102", null, "56114", null, "642", null, "58292", null, "578", null, "53106", null, "3059", null, "50902", null, "3058", null, "43374", null, "1131", null, "44157", null, "829", null, "42893", null, "2634", null, "47402", null, "2445", null, "44725", null, "2151", null, "35232", null, "2291", null, "25625", null, "1972", null, "16316", null, "1780", null, "12280", null, "1538", null, "93445", null, "1512", null, "29757", null, "470", null, "170147", null, "1978", null, "63385", null, "1174", null, "311556", null, "1743", null, "612541", null, "3900", null, "593803", null, "3300", null, "569049", null, "3732", null, "181580", null, "3001", null, "160809", null, "2625", null, "134178", null, "1513", null, "54221", null, "1089", null, "38.3", null, "0.3", null, "94.8", null, "0.6", null, "66.2", null, "0.6", null, "29.2", null, "0.4", null, "37.0", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.1", null, "0.1", null, "5.7", null, "0.4", null, "6.5", null, "0.4", null, "6.1", null, "0.1", null, "6.0", null, "0.1", null, "7.3", null, "0.1", null, "7.6", null, "0.1", null, "7.0", null, "0.4", null, "6.7", null, "0.4", null, "5.7", null, "0.1", null, "5.8", null, "0.1", null, "5.6", null, "0.3", null, "6.2", null, "0.3", null, "5.9", null, "0.3", null, "4.6", null, "0.3", null, "3.4", null, "0.3", null, "2.1", null, "0.2", null, "1.6", null, "0.2", null, "12.2", null, "0.2", null, "3.9", null, "0.1", null, "22.3", null, "0.2", null, "8.3", null, "0.1", null, "40.8", null, "0.2", null, "80.2", null, "0.3", null, "77.7", null, "0.2", null, "74.5", null, "0.3", null, "23.8", null, "0.4", null, "21.0", null, "0.3", null, "17.6", null, "0.2", null, "7.1", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.3", null, "-888888888.0", "(X)", "371791", null, "2483", null, "23724", null, "441", null, "21533", null, "2013", null, "26036", null, "2275", null, "23901", null, "549", null, "23195", null, "760", null, "27821", null, "268", null, "28886", null, "352", null, "26275", null, "2053", null, "25185", null, "2066", null, "21745", null, "567", null, "21318", null, "603", null, "21232", null, "1775", null, "22419", null, "1656", null, "20675", null, "1545", null, "15456", null, "1663", null, "12078", null, "1168", null, "5999", null, "996", null, "4313", null, "946", null, "47569", null, "1255", null, "15195", null, "515", null, "86488", null, "1513", null, "31901", null, "782", null, "155263", null, "1213", null, "294485", null, "2415", null, "285303", null, "1606", null, "272668", null, "1988", null, "80940", null, "1834", null, "70695", null, "1630", null, "58521", null, "738", null, "22390", null, "598", null, "37.1", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.4", null, "0.1", null, "5.8", null, "0.5", null, "7.0", null, "0.6", null, "6.4", null, "0.1", null, "6.2", null, "0.2", null, "7.5", null, "0.1", null, "7.8", null, "0.1", null, "7.1", null, "0.6", null, "6.8", null, "0.6", null, "5.8", null, "0.1", null, "5.7", null, "0.2", null, "5.7", null, "0.5", null, "6.0", null, "0.4", null, "5.6", null, "0.4", null, "4.2", null, "0.5", null, "3.2", null, "0.3", null, "1.6", null, "0.3", null, "1.2", null, "0.3", null, "12.8", null, "0.3", null, "4.1", null, "0.1", null, "23.3", null, "0.3", null, "8.6", null, "0.2", null, "41.8", null, "0.3", null, "79.2", null, "0.5", null, "76.7", null, "0.3", null, "73.3", null, "0.5", null, "21.8", null, "0.5", null, "19.0", null, "0.5", null, "15.7", null, "0.2", null, "6.0", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "392159", null, "2436", null, "23221", null, "361", null, "22006", null, "2045", null, "23870", null, "2044", null, "23051", null, "763", null, "22995", null, "725", null, "28293", null, "433", null, "29406", null, "335", null, "26831", null, "2304", null, "25717", null, "2314", null, "21629", null, "777", null, "22839", null, "365", null, "21661", null, "1656", null, "24983", null, "1668", null, "24050", null, "1610", null, "19776", null, "1651", null, "13547", null, "1385", null, "10317", null, "1268", null, "7967", null, "1179", null, "45876", null, "703", null, "14562", null, "642", null, "83659", null, "1179", null, "31484", null, "781", null, "156293", null, "1190", null, "318056", null, "2334", null, "308500", null, "1946", null, "296381", null, "2294", null, "100640", null, "1918", null, "90114", null, "1715", null, "75657", null, "908", null, "31831", null, "654", null, "39.4", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.9", null, "0.1", null, "5.6", null, "0.5", null, "6.1", null, "0.5", null, "5.9", null, "0.2", null, "5.9", null, "0.2", null, "7.2", null, "0.1", null, "7.5", null, "0.1", null, "6.8", null, "0.6", null, "6.6", null, "0.6", null, "5.5", null, "0.2", null, "5.8", null, "0.1", null, "5.5", null, "0.4", null, "6.4", null, "0.4", null, "6.1", null, "0.4", null, "5.0", null, "0.4", null, "3.5", null, "0.3", null, "2.6", null, "0.3", null, "2.0", null, "0.3", null, "11.7", null, "0.2", null, "3.7", null, "0.2", null, "21.3", null, "0.2", null, "8.0", null, "0.2", null, "39.9", null, "0.2", null, "81.1", null, "0.4", null, "78.7", null, "0.2", null, "75.6", null, "0.4", null, "25.7", null, "0.5", null, "23.0", null, "0.4", null, "19.3", null, "0.2", null, "8.1", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "21", "03"], ["5001900US2104", "Congressional District 4 (119th Congress), Kentucky", "776082", null, "3944", null, "42193", null, "1500", null, "47488", null, "2511", null, "53667", null, "2604", null, "52968", null, "1925", null, "45305", null, "2646", null, "47705", null, "1975", null, "50209", null, "1770", null, "51430", null, "3069", null, "50036", null, "2997", null, "48395", null, "1771", null, "50278", null, "1631", null, "50794", null, "2836", null, "49378", null, "2352", null, "45297", null, "2152", null, "36597", null, "2309", null, "27336", null, "1684", null, "14912", null, "1699", null, "12094", null, "1325", null, "101155", null, "2054", null, "34514", null, "1157", null, "177862", null, "2433", null, "63759", null, "2237", null, "297653", null, "3241", null, "620974", null, "3287", null, "598220", null, "3201", null, "572175", null, "3659", null, "185614", null, "2887", null, "166229", null, "2757", null, "136236", null, "1814", null, "54342", null, "1511", null, "39.7", null, "0.4", null, "100.1", null, "1.2", null, "68.0", null, "0.7", null, "29.5", null, "0.5", null, "38.5", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.2", null, "6.1", null, "0.3", null, "6.9", null, "0.3", null, "6.8", null, "0.2", null, "5.8", null, "0.3", null, "6.1", null, "0.2", null, "6.5", null, "0.2", null, "6.6", null, "0.4", null, "6.4", null, "0.4", null, "6.2", null, "0.2", null, "6.5", null, "0.2", null, "6.5", null, "0.4", null, "6.4", null, "0.3", null, "5.8", null, "0.3", null, "4.7", null, "0.3", null, "3.5", null, "0.2", null, "1.9", null, "0.2", null, "1.6", null, "0.2", null, "13.0", null, "0.3", null, "4.4", null, "0.1", null, "22.9", null, "0.3", null, "8.2", null, "0.3", null, "38.4", null, "0.3", null, "80.0", null, "0.3", null, "77.1", null, "0.3", null, "73.7", null, "0.4", null, "23.9", null, "0.4", null, "21.4", null, "0.4", null, "17.6", null, "0.2", null, "7.0", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "0.7", null, "-888888888.0", "(X)", "388260", null, "2966", null, "21946", null, "1104", null, "25977", null, "1761", null, "27680", null, "1800", null, "27716", null, "1642", null, "23332", null, "1913", null, "24804", null, "1535", null, "24463", null, "1239", null, "26739", null, "1986", null, "23952", null, "1766", null, "24035", null, "1078", null, "25440", null, "1177", null, "24391", null, "1755", null, "24955", null, "1772", null, "21982", null, "1663", null, "17008", null, "1550", null, "13278", null, "1291", null, "6899", null, "1098", null, "3663", null, "817", null, "53657", null, "1374", null, "17625", null, "891", null, "93228", null, "1725", null, "33423", null, "1451", null, "151006", null, "2116", null, "306630", null, "2487", null, "295032", null, "2198", null, "281263", null, "2511", null, "87785", null, "2134", null, "78267", null, "2034", null, "62830", null, "1290", null, "23840", null, "1176", null, "38.2", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.7", null, "0.3", null, "6.7", null, "0.4", null, "7.1", null, "0.5", null, "7.1", null, "0.4", null, "6.0", null, "0.5", null, "6.4", null, "0.4", null, "6.3", null, "0.3", null, "6.9", null, "0.5", null, "6.2", null, "0.5", null, "6.2", null, "0.3", null, "6.6", null, "0.3", null, "6.3", null, "0.4", null, "6.4", null, "0.5", null, "5.7", null, "0.4", null, "4.4", null, "0.4", null, "3.4", null, "0.3", null, "1.8", null, "0.3", null, "0.9", null, "0.2", null, "13.8", null, "0.3", null, "4.5", null, "0.2", null, "24.0", null, "0.3", null, "8.6", null, "0.4", null, "38.9", null, "0.4", null, "79.0", null, "0.4", null, "76.0", null, "0.3", null, "72.4", null, "0.5", null, "22.6", null, "0.5", null, "20.2", null, "0.5", null, "16.2", null, "0.3", null, "6.1", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "387822", null, "3000", null, "20247", null, "987", null, "21511", null, "1782", null, "25987", null, "1746", null, "25252", null, "1453", null, "21973", null, "1765", null, "22901", null, "1216", null, "25746", null, "1212", null, "24691", null, "2048", null, "26084", null, "2123", null, "24360", null, "1366", null, "24838", null, "1248", null, "26403", null, "2006", null, "24423", null, "1536", null, "23315", null, "1567", null, "19589", null, "1528", null, "14058", null, "1082", null, "8013", null, "1208", null, "8431", null, "1021", null, "47498", null, "1305", null, "16889", null, "1032", null, "84634", null, "1981", null, "30336", null, "1471", null, "146647", null, "2253", null, "314344", null, "2429", null, "303188", null, "2467", null, "290912", null, "2793", null, "97829", null, "1981", null, "87962", null, "2005", null, "73406", null, "1160", null, "30502", null, "680", null, "41.1", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.2", null, "5.5", null, "0.5", null, "6.7", null, "0.4", null, "6.5", null, "0.4", null, "5.7", null, "0.5", null, "5.9", null, "0.3", null, "6.6", null, "0.3", null, "6.4", null, "0.5", null, "6.7", null, "0.5", null, "6.3", null, "0.3", null, "6.4", null, "0.3", null, "6.8", null, "0.5", null, "6.3", null, "0.4", null, "6.0", null, "0.4", null, "5.1", null, "0.4", null, "3.6", null, "0.3", null, "2.1", null, "0.3", null, "2.2", null, "0.3", null, "12.2", null, "0.3", null, "4.4", null, "0.3", null, "21.8", null, "0.4", null, "7.8", null, "0.4", null, "37.8", null, "0.5", null, "81.1", null, "0.5", null, "78.2", null, "0.4", null, "75.0", null, "0.5", null, "25.2", null, "0.5", null, "22.7", null, "0.5", null, "18.9", null, "0.3", null, "7.9", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "21", "04"], ["5001900US2105", "Congressional District 5 (119th Congress), Kentucky", "736508", null, "4023", null, "40017", null, "1301", null, "41340", null, "2898", null, "49141", null, "2652", null, "45965", null, "2107", null, "42535", null, "2389", null, "43135", null, "1990", null, "46955", null, "1710", null, "45782", null, "3212", null, "45875", null, "3098", null, "46245", null, "1186", null, "47353", null, "1511", null, "46662", null, "2793", null, "52056", null, "3203", null, "47521", null, "2499", null, "37993", null, "2682", null, "30961", null, "2037", null, "14588", null, "1655", null, "12384", null, "1608", null, "90481", null, "1994", null, "29333", null, "1005", null, "159831", null, "2656", null, "59167", null, "2004", null, "270247", null, "3773", null, "597353", null, "3908", null, "576677", null, "3555", null, "550058", null, "4207", null, "195503", null, "3798", null, "174607", null, "3516", null, "143447", null, "2072", null, "57933", null, "1369", null, "41.7", null, "0.5", null, "100.6", null, "1.1", null, "70.0", null, "1.0", null, "33.1", null, "0.6", null, "36.9", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.2", null, "5.6", null, "0.4", null, "6.7", null, "0.4", null, "6.2", null, "0.3", null, "5.8", null, "0.3", null, "5.9", null, "0.3", null, "6.4", null, "0.2", null, "6.2", null, "0.4", null, "6.2", null, "0.4", null, "6.3", null, "0.2", null, "6.4", null, "0.2", null, "6.3", null, "0.4", null, "7.1", null, "0.4", null, "6.5", null, "0.3", null, "5.2", null, "0.4", null, "4.2", null, "0.3", null, "2.0", null, "0.2", null, "1.7", null, "0.2", null, "12.3", null, "0.3", null, "4.0", null, "0.1", null, "21.7", null, "0.3", null, "8.0", null, "0.3", null, "36.7", null, "0.4", null, "81.1", null, "0.3", null, "78.3", null, "0.3", null, "74.7", null, "0.4", null, "26.5", null, "0.6", null, "23.7", null, "0.5", null, "19.5", null, "0.3", null, "7.9", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "0.9", null, "-888888888.0", "(X)", "369378", null, "2832", null, "20218", null, "1112", null, "21136", null, "2228", null, "26539", null, "2081", null, "23551", null, "1664", null, "22008", null, "1660", null, "23568", null, "1287", null, "25601", null, "1155", null, "22401", null, "2378", null, "24260", null, "2134", null, "23117", null, "785", null, "23948", null, "989", null, "22451", null, "2069", null, "25310", null, "2106", null, "22922", null, "1766", null, "17665", null, "1825", null, "14146", null, "1266", null, "6006", null, "1171", null, "4531", null, "887", null, "47675", null, "1323", null, "15342", null, "936", null, "83235", null, "2043", null, "30217", null, "1372", null, "141389", null, "2514", null, "297632", null, "2800", null, "286143", null, "2634", null, "272397", null, "3124", null, "90580", null, "2370", null, "80208", null, "2098", null, "65270", null, "1250", null, "24683", null, "866", null, "39.9", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.3", null, "5.7", null, "0.6", null, "7.2", null, "0.6", null, "6.4", null, "0.4", null, "6.0", null, "0.4", null, "6.4", null, "0.3", null, "6.9", null, "0.3", null, "6.1", null, "0.6", null, "6.6", null, "0.6", null, "6.3", null, "0.2", null, "6.5", null, "0.3", null, "6.1", null, "0.6", null, "6.9", null, "0.6", null, "6.2", null, "0.5", null, "4.8", null, "0.5", null, "3.8", null, "0.3", null, "1.6", null, "0.3", null, "1.2", null, "0.2", null, "12.9", null, "0.3", null, "4.2", null, "0.2", null, "22.5", null, "0.5", null, "8.2", null, "0.4", null, "38.3", null, "0.5", null, "80.6", null, "0.5", null, "77.5", null, "0.5", null, "73.7", null, "0.7", null, "24.5", null, "0.6", null, "21.7", null, "0.6", null, "17.7", null, "0.3", null, "6.7", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "367130", null, "2838", null, "19799", null, "959", null, "20204", null, "1900", null, "22602", null, "1928", null, "22414", null, "1638", null, "20527", null, "1721", null, "19567", null, "1287", null, "21354", null, "1094", null, "23381", null, "1734", null, "21615", null, "1873", null, "23128", null, "701", null, "23405", null, "870", null, "24211", null, "1882", null, "26746", null, "2097", null, "24599", null, "1569", null, "20328", null, "1661", null, "16815", null, "1463", null, "8582", null, "1115", null, "7853", null, "1261", null, "42806", null, "1192", null, "13991", null, "919", null, "76596", null, "1846", null, "28950", null, "1379", null, "128858", null, "2205", null, "299721", null, "2618", null, "290534", null, "2284", null, "277661", null, "2571", null, "104923", null, "2539", null, "94399", null, "2220", null, "78177", null, "1198", null, "33250", null, "961", null, "43.3", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.3", null, "5.5", null, "0.5", null, "6.2", null, "0.5", null, "6.1", null, "0.4", null, "5.6", null, "0.5", null, "5.3", null, "0.3", null, "5.8", null, "0.3", null, "6.4", null, "0.5", null, "5.9", null, "0.5", null, "6.3", null, "0.2", null, "6.4", null, "0.2", null, "6.6", null, "0.5", null, "7.3", null, "0.6", null, "6.7", null, "0.4", null, "5.5", null, "0.5", null, "4.6", null, "0.4", null, "2.3", null, "0.3", null, "2.1", null, "0.3", null, "11.7", null, "0.3", null, "3.8", null, "0.2", null, "20.9", null, "0.4", null, "7.9", null, "0.4", null, "35.1", null, "0.4", null, "81.6", null, "0.5", null, "79.1", null, "0.4", null, "75.6", null, "0.6", null, "28.6", null, "0.7", null, "25.7", null, "0.6", null, "21.3", null, "0.3", null, "9.1", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "21", "05"], ["5001900US2106", "Congressional District 6 (119th Congress), Kentucky", "777299", null, "4378", null, "42671", null, "1932", null, "45119", null, "2957", null, "48177", null, "2866", null, "59489", null, "2091", null, "67080", null, "2447", null, "51797", null, "2187", null, "52549", null, "1454", null, "51207", null, "3361", null, "47908", null, "3454", null, "47133", null, "2056", null, "47026", null, "1654", null, "42774", null, "2653", null, "47106", null, "3250", null, "41980", null, "2317", null, "33722", null, "2151", null, "24051", null, "2012", null, "13747", null, "1516", null, "13763", null, "1682", null, "93296", null, "2107", null, "30444", null, "1181", null, "166411", null, "2748", null, "96125", null, "2331", null, "330030", null, "3691", null, "630312", null, "4418", null, "610888", null, "3899", null, "568384", null, "4556", null, "174369", null, "3780", null, "155507", null, "3251", null, "127263", null, "2491", null, "51561", null, "1455", null, "37.2", null, "0.4", null, "96.5", null, "1.3", null, "60.7", null, "0.9", null, "26.3", null, "0.6", null, "34.4", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.2", null, "5.8", null, "0.4", null, "6.2", null, "0.4", null, "7.7", null, "0.3", null, "8.6", null, "0.3", null, "6.7", null, "0.3", null, "6.8", null, "0.2", null, "6.6", null, "0.4", null, "6.2", null, "0.4", null, "6.1", null, "0.3", null, "6.0", null, "0.2", null, "5.5", null, "0.3", null, "6.1", null, "0.4", null, "5.4", null, "0.3", null, "4.3", null, "0.3", null, "3.1", null, "0.3", null, "1.8", null, "0.2", null, "1.8", null, "0.2", null, "12.0", null, "0.3", null, "3.9", null, "0.2", null, "21.4", null, "0.3", null, "12.4", null, "0.3", null, "42.5", null, "0.4", null, "81.1", null, "0.4", null, "78.6", null, "0.3", null, "73.1", null, "0.5", null, "22.4", null, "0.5", null, "20.0", null, "0.4", null, "16.4", null, "0.3", null, "6.6", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.0", null, "-888888888.0", "(X)", "381645", null, "3553", null, "20622", null, "1254", null, "23988", null, "1869", null, "23200", null, "2225", null, "30140", null, "2177", null, "33666", null, "1666", null, "26268", null, "1319", null, "25998", null, "1096", null, "26069", null, "2348", null, "22930", null, "2466", null, "24005", null, "1575", null, "23329", null, "1226", null, "21619", null, "1836", null, "22777", null, "2125", null, "19923", null, "1560", null, "15499", null, "1340", null, "11570", null, "1165", null, "5818", null, "906", null, "4224", null, "873", null, "47188", null, "1634", null, "15885", null, "1636", null, "83695", null, "2623", null, "47921", null, "1352", null, "165071", null, "2985", null, "307174", null, "3318", null, "297950", null, "2706", null, "276410", null, "3109", null, "79811", null, "2538", null, "71061", null, "2332", null, "57034", null, "1533", null, "21612", null, "877", null, "36.3", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.3", null, "6.3", null, "0.5", null, "6.1", null, "0.6", null, "7.9", null, "0.6", null, "8.8", null, "0.4", null, "6.9", null, "0.4", null, "6.8", null, "0.3", null, "6.8", null, "0.6", null, "6.0", null, "0.6", null, "6.3", null, "0.4", null, "6.1", null, "0.3", null, "5.7", null, "0.5", null, "6.0", null, "0.5", null, "5.2", null, "0.4", null, "4.1", null, "0.4", null, "3.0", null, "0.3", null, "1.5", null, "0.2", null, "1.1", null, "0.2", null, "12.4", null, "0.4", null, "4.2", null, "0.4", null, "21.9", null, "0.6", null, "12.6", null, "0.3", null, "43.3", null, "0.6", null, "80.5", null, "0.6", null, "78.1", null, "0.6", null, "72.4", null, "0.8", null, "20.9", null, "0.7", null, "18.6", null, "0.6", null, "14.9", null, "0.4", null, "5.7", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "395654", null, "3281", null, "22049", null, "1622", null, "21131", null, "2159", null, "24977", null, "1974", null, "29349", null, "1928", null, "33414", null, "1581", null, "25529", null, "1528", null, "26551", null, "1057", null, "25138", null, "2126", null, "24978", null, "2075", null, "23128", null, "1143", null, "23697", null, "955", null, "21155", null, "1841", null, "24329", null, "2041", null, "22057", null, "1743", null, "18223", null, "1499", null, "12481", null, "1306", null, "7929", null, "1189", null, "9539", null, "1307", null, "46108", null, "1655", null, "14559", null, "1457", null, "82716", null, "2598", null, "48204", null, "1951", null, "164959", null, "2660", null, "323138", null, "2764", null, "312938", null, "2453", null, "291974", null, "2730", null, "94558", null, "2271", null, "84446", null, "2018", null, "70229", null, "1429", null, "29949", null, "909", null, "38.0", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.6", null, "0.4", null, "5.3", null, "0.5", null, "6.3", null, "0.5", null, "7.4", null, "0.5", null, "8.4", null, "0.4", null, "6.5", null, "0.4", null, "6.7", null, "0.3", null, "6.4", null, "0.5", null, "6.3", null, "0.5", null, "5.8", null, "0.3", null, "6.0", null, "0.3", null, "5.3", null, "0.5", null, "6.1", null, "0.5", null, "5.6", null, "0.4", null, "4.6", null, "0.4", null, "3.2", null, "0.3", null, "2.0", null, "0.3", null, "2.4", null, "0.3", null, "11.7", null, "0.4", null, "3.7", null, "0.4", null, "20.9", null, "0.6", null, "12.2", null, "0.5", null, "41.7", null, "0.5", null, "81.7", null, "0.5", null, "79.1", null, "0.6", null, "73.8", null, "0.7", null, "23.9", null, "0.6", null, "21.3", null, "0.5", null, "17.8", null, "0.4", null, "7.6", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "21", "06"], ["5001900US2201", "Congressional District 1 (119th Congress), Louisiana", "798569", null, "13301", null, "46517", null, "3344", null, "49756", null, "4419", null, "54368", null, "4632", null, "50263", null, "3027", null, "46551", null, "3657", null, "43862", null, "2763", null, "53433", null, "3364", null, "56262", null, "4801", null, "52406", null, "4197", null, "50009", null, "2812", null, "43882", null, "2655", null, "44136", null, "3612", null, "56170", null, "3687", null, "48061", null, "3533", null, "41692", null, "2869", null, "30707", null, "2188", null, "17080", null, "1849", null, "13414", null, "1729", null, "104124", null, "4721", null, "32444", null, "2012", null, "183085", null, "6678", null, "64370", null, "3837", null, "302777", null, "7312", null, "635576", null, "9776", null, "615484", null, "9362", null, "589787", null, "9566", null, "207124", null, "5436", null, "185588", null, "5493", null, "150954", null, "4330", null, "61201", null, "2501", null, "39.9", null, "0.6", null, "95.7", null, "2.1", null, "71.9", null, "1.8", null, "32.5", null, "1.1", null, "39.4", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.8", null, "0.4", null, "6.2", null, "0.5", null, "6.8", null, "0.6", null, "6.3", null, "0.4", null, "5.8", null, "0.4", null, "5.5", null, "0.3", null, "6.7", null, "0.4", null, "7.0", null, "0.6", null, "6.6", null, "0.5", null, "6.3", null, "0.3", null, "5.5", null, "0.3", null, "5.5", null, "0.5", null, "7.0", null, "0.5", null, "6.0", null, "0.4", null, "5.2", null, "0.4", null, "3.8", null, "0.3", null, "2.1", null, "0.2", null, "1.7", null, "0.2", null, "13.0", null, "0.5", null, "4.1", null, "0.2", null, "22.9", null, "0.6", null, "8.1", null, "0.5", null, "37.9", null, "0.6", null, "79.6", null, "0.6", null, "77.1", null, "0.6", null, "73.9", null, "0.7", null, "25.9", null, "0.7", null, "23.2", null, "0.7", null, "18.9", null, "0.5", null, "7.7", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.3", null, "-888888888.0", "(X)", "1.5", null, "-888888888.0", "(X)", "390613", null, "7828", null, "24605", null, "1943", null, "26456", null, "3420", null, "26117", null, "3008", null, "26215", null, "1996", null, "22789", null, "2634", null, "23091", null, "1616", null, "24396", null, "2137", null, "26876", null, "2792", null, "26162", null, "2799", null, "24884", null, "1922", null, "21444", null, "1827", null, "21237", null, "2421", null, "28540", null, "2590", null, "22440", null, "1966", null, "19588", null, "1952", null, "14223", null, "1438", null, "7004", null, "1079", null, "4546", null, "939", null, "52573", null, "3263", null, "16912", null, "1520", null, "94090", null, "4413", null, "32092", null, "2563", null, "149529", null, "4629", null, "307554", null, "5663", null, "296523", null, "5598", null, "283936", null, "5603", null, "96341", null, "3248", null, "86270", null, "3146", null, "67801", null, "2274", null, "25773", null, "1680", null, "39.1", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.3", null, "0.5", null, "6.8", null, "0.8", null, "6.7", null, "0.8", null, "6.7", null, "0.5", null, "5.8", null, "0.6", null, "5.9", null, "0.4", null, "6.2", null, "0.6", null, "6.9", null, "0.7", null, "6.7", null, "0.7", null, "6.4", null, "0.5", null, "5.5", null, "0.5", null, "5.4", null, "0.6", null, "7.3", null, "0.7", null, "5.7", null, "0.5", null, "5.0", null, "0.5", null, "3.6", null, "0.4", null, "1.8", null, "0.3", null, "1.2", null, "0.2", null, "13.5", null, "0.7", null, "4.3", null, "0.4", null, "24.1", null, "0.9", null, "8.2", null, "0.6", null, "38.3", null, "0.9", null, "78.7", null, "0.8", null, "75.9", null, "0.9", null, "72.7", null, "0.9", null, "24.7", null, "0.9", null, "22.1", null, "0.9", null, "17.4", null, "0.6", null, "6.6", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "407956", null, "8071", null, "21912", null, "2455", null, "23300", null, "2824", null, "28251", null, "2903", null, "24048", null, "2217", null, "23762", null, "1877", null, "20771", null, "2022", null, "29037", null, "2308", null, "29386", null, "3107", null, "26244", null, "2754", null, "25125", null, "1656", null, "22438", null, "1560", null, "22899", null, "2398", null, "27630", null, "2188", null, "25621", null, "2411", null, "22104", null, "2075", null, "16484", null, "1331", null, "10076", null, "1449", null, "8868", null, "1223", null, "51551", null, "3097", null, "15532", null, "1407", null, "88995", null, "4387", null, "32278", null, "2210", null, "153248", null, "4652", null, "328022", null, "5844", null, "318961", null, "5479", null, "305851", null, "5800", null, "110783", null, "3603", null, "99318", null, "3591", null, "83153", null, "2762", null, "35428", null, "1336", null, "40.7", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.6", null, "5.7", null, "0.7", null, "6.9", null, "0.7", null, "5.9", null, "0.5", null, "5.8", null, "0.4", null, "5.1", null, "0.5", null, "7.1", null, "0.5", null, "7.2", null, "0.7", null, "6.4", null, "0.7", null, "6.2", null, "0.4", null, "5.5", null, "0.4", null, "5.6", null, "0.6", null, "6.8", null, "0.6", null, "6.3", null, "0.6", null, "5.4", null, "0.5", null, "4.0", null, "0.3", null, "2.5", null, "0.3", null, "2.2", null, "0.3", null, "12.6", null, "0.7", null, "3.8", null, "0.3", null, "21.8", null, "0.8", null, "7.9", null, "0.5", null, "37.6", null, "0.7", null, "80.4", null, "0.9", null, "78.2", null, "0.8", null, "75.0", null, "0.9", null, "27.2", null, "0.9", null, "24.3", null, "0.9", null, "20.4", null, "0.6", null, "8.7", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "22", "01"], ["5001900US2202", "Congressional District 2 (119th Congress), Louisiana", "736254", null, "11844", null, "40694", null, "3384", null, "41943", null, "3771", null, "46396", null, "3874", null, "44502", null, "3288", null, "40604", null, "4210", null, "45597", null, "3274", null, "54788", null, "4280", null, "58210", null, "5136", null, "52146", null, "4368", null, "45300", null, "2679", null, "42451", null, "2555", null, "41044", null, "3061", null, "51211", null, "3166", null, "44588", null, "2687", null, "34387", null, "2478", null, "26433", null, "2178", null, "14793", null, "2094", null, "11167", null, "1533", null, "88339", null, "4338", null, "28077", null, "2119", null, "157110", null, "5819", null, "57029", null, "4467", null, "295847", null, "6781", null, "596139", null, "9112", null, "579144", null, "8418", null, "553797", null, "8179", null, "182579", null, "5042", null, "161844", null, "5472", null, "131368", null, "4189", null, "52393", null, "2688", null, "39.6", null, "0.6", null, "92.1", null, "2.0", null, "64.4", null, "1.6", null, "29.3", null, "1.1", null, "35.1", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.4", null, "5.7", null, "0.5", null, "6.3", null, "0.5", null, "6.0", null, "0.4", null, "5.5", null, "0.6", null, "6.2", null, "0.4", null, "7.4", null, "0.6", null, "7.9", null, "0.7", null, "7.1", null, "0.6", null, "6.2", null, "0.4", null, "5.8", null, "0.3", null, "5.6", null, "0.4", null, "7.0", null, "0.4", null, "6.1", null, "0.4", null, "4.7", null, "0.3", null, "3.6", null, "0.3", null, "2.0", null, "0.3", null, "1.5", null, "0.2", null, "12.0", null, "0.5", null, "3.8", null, "0.3", null, "21.3", null, "0.6", null, "7.7", null, "0.6", null, "40.2", null, "0.6", null, "81.0", null, "0.6", null, "78.7", null, "0.6", null, "75.2", null, "0.7", null, "24.8", null, "0.7", null, "22.0", null, "0.8", null, "17.8", null, "0.6", null, "7.1", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.6", null, "-888888888.0", "(X)", "353060", null, "7520", null, "20061", null, "2261", null, "21643", null, "2870", null, "23319", null, "2649", null, "23430", null, "2720", null, "20781", null, "2599", null, "20293", null, "1998", null, "26709", null, "2530", null, "26350", null, "2931", null, "27182", null, "2684", null, "20587", null, "2071", null, "21240", null, "1889", null, "18102", null, "2019", null, "23613", null, "1918", null, "21699", null, "1847", null, "14703", null, "1502", null, "12515", null, "1655", null, "6986", null, "1300", null, "3847", null, "968", null, "44962", null, "2886", null, "14522", null, "1640", null, "79545", null, "4447", null, "29689", null, "2970", null, "144745", null, "4603", null, "281265", null, "5894", null, "273515", null, "5251", null, "260403", null, "5158", null, "83363", null, "2910", null, "73596", null, "2949", null, "59750", null, "2287", null, "23348", null, "1682", null, "38.9", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.7", null, "0.6", null, "6.1", null, "0.8", null, "6.6", null, "0.7", null, "6.6", null, "0.7", null, "5.9", null, "0.7", null, "5.7", null, "0.6", null, "7.6", null, "0.7", null, "7.5", null, "0.8", null, "7.7", null, "0.7", null, "5.8", null, "0.6", null, "6.0", null, "0.5", null, "5.1", null, "0.6", null, "6.7", null, "0.6", null, "6.1", null, "0.5", null, "4.2", null, "0.4", null, "3.5", null, "0.5", null, "2.0", null, "0.4", null, "1.1", null, "0.3", null, "12.7", null, "0.7", null, "4.1", null, "0.4", null, "22.5", null, "1.0", null, "8.4", null, "0.8", null, "41.0", null, "1.0", null, "79.7", null, "1.0", null, "77.5", null, "1.0", null, "73.8", null, "1.2", null, "23.6", null, "0.8", null, "20.8", null, "0.9", null, "16.9", null, "0.6", null, "6.6", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "383194", null, "6728", null, "20633", null, "2429", null, "20300", null, "2552", null, "23077", null, "2724", null, "21072", null, "2110", null, "19823", null, "2637", null, "25304", null, "2052", null, "28079", null, "2592", null, "31860", null, "3179", null, "24964", null, "2901", null, "24713", null, "1893", null, "21211", null, "1582", null, "22942", null, "2467", null, "27598", null, "2578", null, "22889", null, "1916", null, "19684", null, "1698", null, "13918", null, "1451", null, "7807", null, "1343", null, "7320", null, "1172", null, "43377", null, "2709", null, "13555", null, "1752", null, "77565", null, "3582", null, "27340", null, "2706", null, "151102", null, "4443", null, "314874", null, "5250", null, "305629", null, "5027", null, "293394", null, "4925", null, "99216", null, "3416", null, "88248", null, "3551", null, "71618", null, "2555", null, "29045", null, "1595", null, "40.3", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.6", null, "5.3", null, "0.7", null, "6.0", null, "0.7", null, "5.5", null, "0.5", null, "5.2", null, "0.7", null, "6.6", null, "0.5", null, "7.3", null, "0.7", null, "8.3", null, "0.8", null, "6.5", null, "0.8", null, "6.4", null, "0.5", null, "5.5", null, "0.4", null, "6.0", null, "0.6", null, "7.2", null, "0.7", null, "6.0", null, "0.5", null, "5.1", null, "0.4", null, "3.6", null, "0.4", null, "2.0", null, "0.3", null, "1.9", null, "0.3", null, "11.3", null, "0.6", null, "3.5", null, "0.4", null, "20.2", null, "0.7", null, "7.1", null, "0.7", null, "39.4", null, "0.9", null, "82.2", null, "0.8", null, "79.8", null, "0.7", null, "76.6", null, "0.7", null, "25.9", null, "0.9", null, "23.0", null, "0.9", null, "18.7", null, "0.7", null, "7.6", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "22", "02"], ["5001900US2203", "Congressional District 3 (119th Congress), Louisiana", "777847", null, "8931", null, "50194", null, "2750", null, "52068", null, "3631", null, "54292", null, "3388", null, "51633", null, "3588", null, "45166", null, "3476", null, "47193", null, "3117", null, "52552", null, "3480", null, "52498", null, "4782", null, "54901", null, "4434", null, "46541", null, "3114", null, "43124", null, "2329", null, "42817", null, "3468", null, "49590", null, "3252", null, "48436", null, "3117", null, "36515", null, "3039", null, "24849", null, "2283", null, "12144", null, "1511", null, "13334", null, "1677", null, "106360", null, "3331", null, "35221", null, "2668", null, "191775", null, "4420", null, "61578", null, "3357", null, "303943", null, "6829", null, "609402", null, "6842", null, "586072", null, "6799", null, "563020", null, "6830", null, "184868", null, "4096", null, "165659", null, "3900", null, "135278", null, "2816", null, "50327", null, "1931", null, "38.7", null, "0.5", null, "97.4", null, "2.2", null, "72.6", null, "1.4", null, "30.0", null, "0.8", null, "42.5", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.5", null, "0.3", null, "6.7", null, "0.5", null, "7.0", null, "0.4", null, "6.6", null, "0.5", null, "5.8", null, "0.4", null, "6.1", null, "0.4", null, "6.8", null, "0.4", null, "6.7", null, "0.6", null, "7.1", null, "0.6", null, "6.0", null, "0.4", null, "5.5", null, "0.3", null, "5.5", null, "0.4", null, "6.4", null, "0.4", null, "6.2", null, "0.4", null, "4.7", null, "0.4", null, "3.2", null, "0.3", null, "1.6", null, "0.2", null, "1.7", null, "0.2", null, "13.7", null, "0.4", null, "4.5", null, "0.3", null, "24.7", null, "0.4", null, "7.9", null, "0.4", null, "39.1", null, "0.7", null, "78.3", null, "0.5", null, "75.3", null, "0.4", null, "72.4", null, "0.5", null, "23.8", null, "0.5", null, "21.3", null, "0.5", null, "17.4", null, "0.4", null, "6.5", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "3.0", null, "-888888888.0", "(X)", "383766", null, "6401", null, "26404", null, "2747", null, "27356", null, "2865", null, "27871", null, "2843", null, "26051", null, "2839", null, "23144", null, "2489", null, "23474", null, "2434", null, "24961", null, "2385", null, "25950", null, "3279", null, "28001", null, "3601", null, "23887", null, "2214", null, "20677", null, "1538", null, "21071", null, "2323", null, "22839", null, "2068", null, "22971", null, "1911", null, "17697", null, "1752", null, "11308", null, "1224", null, "5220", null, "908", null, "4884", null, "1111", null, "55227", null, "2775", null, "18338", null, "2329", null, "99969", null, "4382", null, "30857", null, "2277", null, "151581", null, "4480", null, "295349", null, "4904", null, "283797", null, "4710", null, "272798", null, "4927", null, "84919", null, "2646", null, "75995", null, "2557", null, "62080", null, "1908", null, "21412", null, "1349", null, "38.1", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.9", null, "0.7", null, "7.1", null, "0.7", null, "7.3", null, "0.7", null, "6.8", null, "0.7", null, "6.0", null, "0.7", null, "6.1", null, "0.6", null, "6.5", null, "0.6", null, "6.8", null, "0.9", null, "7.3", null, "0.9", null, "6.2", null, "0.5", null, "5.4", null, "0.4", null, "5.5", null, "0.6", null, "6.0", null, "0.5", null, "6.0", null, "0.5", null, "4.6", null, "0.5", null, "2.9", null, "0.3", null, "1.4", null, "0.2", null, "1.3", null, "0.3", null, "14.4", null, "0.7", null, "4.8", null, "0.6", null, "26.0", null, "0.9", null, "8.0", null, "0.6", null, "39.5", null, "0.9", null, "77.0", null, "0.8", null, "74.0", null, "0.9", null, "71.1", null, "1.0", null, "22.1", null, "0.8", null, "19.8", null, "0.8", null, "16.2", null, "0.6", null, "5.6", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "394081", null, "6058", null, "23790", null, "2311", null, "24712", null, "2030", null, "26421", null, "2221", null, "25582", null, "2613", null, "22022", null, "2073", null, "23719", null, "1534", null, "27591", null, "2183", null, "26548", null, "2627", null, "26900", null, "2810", null, "22654", null, "1654", null, "22447", null, "1878", null, "21746", null, "2146", null, "26751", null, "2216", null, "25465", null, "2037", null, "18818", null, "1893", null, "13541", null, "1667", null, "6924", null, "1101", null, "8450", null, "1209", null, "51133", null, "2585", null, "16883", null, "2110", null, "91806", null, "3943", null, "30721", null, "1973", null, "152362", null, "4005", null, "314053", null, "4347", null, "302275", null, "4160", null, "290222", null, "4220", null, "99949", null, "2517", null, "89664", null, "2438", null, "73198", null, "1917", null, "28915", null, "1195", null, "39.4", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.0", null, "0.6", null, "6.3", null, "0.5", null, "6.7", null, "0.5", null, "6.5", null, "0.7", null, "5.6", null, "0.5", null, "6.0", null, "0.4", null, "7.0", null, "0.5", null, "6.7", null, "0.6", null, "6.8", null, "0.7", null, "5.7", null, "0.4", null, "5.7", null, "0.5", null, "5.5", null, "0.5", null, "6.8", null, "0.6", null, "6.5", null, "0.5", null, "4.8", null, "0.5", null, "3.4", null, "0.4", null, "1.8", null, "0.3", null, "2.1", null, "0.3", null, "13.0", null, "0.6", null, "4.3", null, "0.5", null, "23.3", null, "0.8", null, "7.8", null, "0.5", null, "38.7", null, "0.8", null, "79.7", null, "0.8", null, "76.7", null, "0.8", null, "73.6", null, "0.9", null, "25.4", null, "0.6", null, "22.8", null, "0.6", null, "18.6", null, "0.5", null, "7.3", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "22", "03"], ["5001900US2204", "Congressional District 4 (119th Congress), Louisiana", "767466", null, "10771", null, "45579", null, "2859", null, "47092", null, "4442", null, "52941", null, "4324", null, "51858", null, "3375", null, "48259", null, "3444", null, "47456", null, "3353", null, "49517", null, "3671", null, "48499", null, "4114", null, "50539", null, "3983", null, "47183", null, "2915", null, "45990", null, "3382", null, "45201", null, "3036", null, "48381", null, "3033", null, "43779", null, "2780", null, "40007", null, "3380", null, "27806", null, "2003", null, "14704", null, "1907", null, "12675", null, "1569", null, "100033", null, "5054", null, "32060", null, "2140", null, "177672", null, "6284", null, "68057", null, "3766", null, "296128", null, "7379", null, "611802", null, "7699", null, "589794", null, "7501", null, "559818", null, "7789", null, "187352", null, "3882", null, "169590", null, "4019", null, "138971", null, "3157", null, "55185", null, "1897", null, "39.2", null, "0.7", null, "96.6", null, "2.0", null, "70.2", null, "1.8", null, "30.8", null, "1.0", null, "39.4", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.9", null, "0.3", null, "6.1", null, "0.5", null, "6.9", null, "0.5", null, "6.8", null, "0.4", null, "6.3", null, "0.5", null, "6.2", null, "0.4", null, "6.5", null, "0.5", null, "6.3", null, "0.5", null, "6.6", null, "0.5", null, "6.1", null, "0.4", null, "6.0", null, "0.4", null, "5.9", null, "0.4", null, "6.3", null, "0.4", null, "5.7", null, "0.4", null, "5.2", null, "0.4", null, "3.6", null, "0.3", null, "1.9", null, "0.2", null, "1.7", null, "0.2", null, "13.0", null, "0.6", null, "4.2", null, "0.3", null, "23.2", null, "0.6", null, "8.9", null, "0.5", null, "38.6", null, "0.7", null, "79.7", null, "0.7", null, "76.8", null, "0.6", null, "72.9", null, "0.7", null, "24.4", null, "0.6", null, "22.1", null, "0.6", null, "18.1", null, "0.5", null, "7.2", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "3.4", null, "-888888888.0", "(X)", "377027", null, "6089", null, "21798", null, "1913", null, "22093", null, "3041", null, "25762", null, "2797", null, "29258", null, "2713", null, "24225", null, "2416", null, "25051", null, "2137", null, "24544", null, "2601", null, "23843", null, "2418", null, "25034", null, "2380", null, "22597", null, "1961", null, "23863", null, "1939", null, "22906", null, "1888", null, "23539", null, "2079", null, "18797", null, "1682", null, "19773", null, "2090", null, "12364", null, "1417", null, "6799", null, "1133", null, "4781", null, "858", null, "47855", null, "3183", null, "17447", null, "2016", null, "87100", null, "3914", null, "36036", null, "2870", null, "151955", null, "4900", null, "300762", null, "5123", null, "289927", null, "4823", null, "272174", null, "4761", null, "86053", null, "2733", null, "76971", null, "2571", null, "62514", null, "1953", null, "23944", null, "1171", null, "38.4", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.8", null, "0.5", null, "5.9", null, "0.8", null, "6.8", null, "0.7", null, "7.8", null, "0.7", null, "6.4", null, "0.6", null, "6.6", null, "0.5", null, "6.5", null, "0.7", null, "6.3", null, "0.6", null, "6.6", null, "0.6", null, "6.0", null, "0.5", null, "6.3", null, "0.5", null, "6.1", null, "0.5", null, "6.2", null, "0.6", null, "5.0", null, "0.4", null, "5.2", null, "0.6", null, "3.3", null, "0.4", null, "1.8", null, "0.3", null, "1.3", null, "0.2", null, "12.7", null, "0.8", null, "4.6", null, "0.5", null, "23.1", null, "0.9", null, "9.6", null, "0.7", null, "40.3", null, "1.1", null, "79.8", null, "1.0", null, "76.9", null, "0.9", null, "72.2", null, "0.9", null, "22.8", null, "0.8", null, "20.4", null, "0.7", null, "16.6", null, "0.6", null, "6.4", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "390439", null, "7317", null, "23781", null, "2280", null, "24999", null, "3140", null, "27179", null, "3216", null, "22600", null, "2201", null, "24034", null, "2622", null, "22405", null, "2419", null, "24973", null, "2023", null, "24656", null, "2929", null, "25505", null, "3013", null, "24586", null, "1966", null, "22127", null, "2288", null, "22295", null, "1816", null, "24842", null, "1862", null, "24982", null, "1997", null, "20234", null, "2037", null, "15442", null, "1523", null, "7905", null, "1454", null, "7894", null, "1206", null, "52178", null, "3410", null, "14613", null, "1457", null, "90572", null, "4492", null, "32021", null, "2741", null, "144173", null, "4910", null, "311040", null, "4875", null, "299867", null, "4671", null, "287644", null, "5211", null, "101299", null, "2602", null, "92619", null, "2663", null, "76457", null, "2118", null, "31241", null, "1415", null, "40.1", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.1", null, "0.5", null, "6.4", null, "0.8", null, "7.0", null, "0.8", null, "5.8", null, "0.6", null, "6.2", null, "0.7", null, "5.7", null, "0.6", null, "6.4", null, "0.5", null, "6.3", null, "0.7", null, "6.5", null, "0.7", null, "6.3", null, "0.5", null, "5.7", null, "0.6", null, "5.7", null, "0.5", null, "6.4", null, "0.5", null, "6.4", null, "0.5", null, "5.2", null, "0.5", null, "4.0", null, "0.4", null, "2.0", null, "0.4", null, "2.0", null, "0.3", null, "13.4", null, "0.8", null, "3.7", null, "0.4", null, "23.2", null, "0.8", null, "8.2", null, "0.7", null, "36.9", null, "1.0", null, "79.7", null, "0.9", null, "76.8", null, "0.8", null, "73.7", null, "1.1", null, "25.9", null, "0.8", null, "23.7", null, "0.8", null, "19.6", null, "0.6", null, "8.0", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "22", "04"], ["5001900US2205", "Congressional District 5 (119th Congress), Louisiana", "763961", null, "13345", null, "43154", null, "3594", null, "50480", null, "3838", null, "47292", null, "4162", null, "60654", null, "3666", null, "56571", null, "4439", null, "46031", null, "3903", null, "51972", null, "3804", null, "45877", null, "4584", null, "47878", null, "4778", null, "46486", null, "3727", null, "41631", null, "3052", null, "43139", null, "3100", null, "43509", null, "2989", null, "45494", null, "2981", null, "39921", null, "2906", null, "25519", null, "2199", null, "17501", null, "1942", null, "10852", null, "1558", null, "97772", null, "4225", null, "31022", null, "2329", null, "171948", null, "6214", null, "86203", null, "4334", null, "308983", null, "8608", null, "612807", null, "9940", null, "592013", null, "9591", null, "551037", null, "9396", null, "182796", null, "4843", null, "165863", null, "4476", null, "139287", null, "3583", null, "53872", null, "2503", null, "38.1", null, "0.8", null, "97.5", null, "2.4", null, "68.7", null, "1.5", null, "30.8", null, "1.0", null, "38.0", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.6", null, "0.4", null, "6.6", null, "0.5", null, "6.2", null, "0.5", null, "7.9", null, "0.5", null, "7.4", null, "0.6", null, "6.0", null, "0.5", null, "6.8", null, "0.5", null, "6.0", null, "0.6", null, "6.3", null, "0.6", null, "6.1", null, "0.5", null, "5.4", null, "0.4", null, "5.6", null, "0.4", null, "5.7", null, "0.4", null, "6.0", null, "0.4", null, "5.2", null, "0.4", null, "3.3", null, "0.3", null, "2.3", null, "0.3", null, "1.4", null, "0.2", null, "12.8", null, "0.5", null, "4.1", null, "0.3", null, "22.5", null, "0.6", null, "11.3", null, "0.5", null, "40.4", null, "0.8", null, "80.2", null, "0.6", null, "77.5", null, "0.6", null, "72.1", null, "0.7", null, "23.9", null, "0.7", null, "21.7", null, "0.7", null, "18.2", null, "0.5", null, "7.1", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.2", null, "-888888888.0", "(X)", "377217", null, "8762", null, "21080", null, "2692", null, "24307", null, "3110", null, "24924", null, "2853", null, "30858", null, "2650", null, "29281", null, "3104", null, "23459", null, "2713", null, "24101", null, "2290", null, "24016", null, "2866", null, "26405", null, "3198", null, "24401", null, "2335", null, "20638", null, "1638", null, "21911", null, "1975", null, "19342", null, "1962", null, "20784", null, "1801", null, "18909", null, "2008", null, "10450", null, "1422", null, "7923", null, "1162", null, "4428", null, "953", null, "49231", null, "2913", null, "15110", null, "1722", null, "85421", null, "4329", null, "45029", null, "3483", null, "158120", null, "6077", null, "300864", null, "6565", null, "291796", null, "6386", null, "270557", null, "5667", null, "81836", null, "2844", null, "74607", null, "2530", null, "62494", null, "2248", null, "22801", null, "1512", null, "37.6", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.6", null, "0.7", null, "6.4", null, "0.8", null, "6.6", null, "0.7", null, "8.2", null, "0.6", null, "7.8", null, "0.8", null, "6.2", null, "0.7", null, "6.4", null, "0.6", null, "6.4", null, "0.8", null, "7.0", null, "0.8", null, "6.5", null, "0.6", null, "5.5", null, "0.4", null, "5.8", null, "0.5", null, "5.1", null, "0.5", null, "5.5", null, "0.5", null, "5.0", null, "0.5", null, "2.8", null, "0.4", null, "2.1", null, "0.3", null, "1.2", null, "0.2", null, "13.1", null, "0.7", null, "4.0", null, "0.4", null, "22.6", null, "0.8", null, "11.9", null, "0.8", null, "41.9", null, "1.1", null, "79.8", null, "0.8", null, "77.4", null, "0.8", null, "71.7", null, "1.1", null, "21.7", null, "0.9", null, "19.8", null, "0.8", null, "16.6", null, "0.7", null, "6.0", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "386744", null, "7511", null, "22074", null, "2177", null, "26173", null, "2807", null, "22368", null, "2729", null, "29796", null, "2802", null, "27290", null, "2547", null, "22572", null, "2452", null, "27871", null, "2385", null, "21861", null, "2592", null, "21473", null, "2956", null, "22085", null, "2333", null, "20993", null, "2228", null, "21228", null, "2185", null, "24167", null, "2151", null, "24710", null, "2109", null, "21012", null, "1807", null, "15069", null, "1591", null, "9578", null, "1492", null, "6424", null, "1106", null, "48541", null, "2746", null, "15912", null, "1949", null, "86527", null, "3956", null, "41174", null, "2710", null, "150863", null, "5082", null, "311943", null, "5736", null, "300217", null, "5267", null, "280480", null, "5431", null, "100960", null, "2904", null, "91256", null, "2614", null, "76793", null, "2077", null, "31071", null, "1694", null, "38.5", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.7", null, "0.5", null, "6.8", null, "0.7", null, "5.8", null, "0.7", null, "7.7", null, "0.7", null, "7.1", null, "0.6", null, "5.8", null, "0.6", null, "7.2", null, "0.6", null, "5.7", null, "0.7", null, "5.6", null, "0.7", null, "5.7", null, "0.6", null, "5.4", null, "0.6", null, "5.5", null, "0.5", null, "6.2", null, "0.5", null, "6.4", null, "0.5", null, "5.4", null, "0.5", null, "3.9", null, "0.4", null, "2.5", null, "0.4", null, "1.7", null, "0.3", null, "12.6", null, "0.6", null, "4.1", null, "0.5", null, "22.4", null, "0.8", null, "10.6", null, "0.7", null, "39.0", null, "1.0", null, "80.7", null, "0.8", null, "77.6", null, "0.8", null, "72.5", null, "0.9", null, "26.1", null, "0.8", null, "23.6", null, "0.7", null, "19.9", null, "0.6", null, "8.0", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "22", "05"], ["5001900US2206", "Congressional District 6 (119th Congress), Louisiana", "753643", null, "13315", null, "45360", null, "3237", null, "52061", null, "4087", null, "54235", null, "4311", null, "51520", null, "3527", null, "59283", null, "3786", null, "49063", null, "3730", null, "49546", null, "3807", null, "49046", null, "4370", null, "50347", null, "4592", null, "42890", null, "3012", null, "39951", null, "2420", null, "38934", null, "3276", null, "47401", null, "3569", null, "39314", null, "2547", null, "34651", null, "2566", null, "23662", null, "1832", null, "13682", null, "1568", null, "12697", null, "1711", null, "106296", null, "4491", null, "29291", null, "2077", null, "180947", null, "6310", null, "81512", null, "4371", null, "308805", null, "8366", null, "591466", null, "9774", null, "572696", null, "9490", null, "538634", null, "9326", null, "171407", null, "5019", null, "152902", null, "4852", null, "124006", null, "3544", null, "50041", null, "2161", null, "36.5", null, "0.8", null, "91.9", null, "2.1", null, "68.0", null, "1.7", null, "27.6", null, "0.9", null, "40.3", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.0", null, "0.4", null, "6.9", null, "0.5", null, "7.2", null, "0.6", null, "6.8", null, "0.4", null, "7.9", null, "0.5", null, "6.5", null, "0.5", null, "6.6", null, "0.5", null, "6.5", null, "0.6", null, "6.7", null, "0.6", null, "5.7", null, "0.4", null, "5.3", null, "0.3", null, "5.2", null, "0.4", null, "6.3", null, "0.5", null, "5.2", null, "0.3", null, "4.6", null, "0.3", null, "3.1", null, "0.2", null, "1.8", null, "0.2", null, "1.7", null, "0.2", null, "14.1", null, "0.5", null, "3.9", null, "0.3", null, "24.0", null, "0.6", null, "10.8", null, "0.5", null, "41.0", null, "0.6", null, "78.5", null, "0.6", null, "76.0", null, "0.6", null, "71.5", null, "0.7", null, "22.7", null, "0.7", null, "20.3", null, "0.7", null, "16.5", null, "0.5", null, "6.6", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.8", null, "-888888888.0", "(X)", "360889", null, "7569", null, "23376", null, "2900", null, "29121", null, "3180", null, "26758", null, "3168", null, "25506", null, "2954", null, "29157", null, "2999", null, "24791", null, "2520", null, "23770", null, "2500", null, "21890", null, "2896", null, "26153", null, "3167", null, "19103", null, "2190", null, "19108", null, "1860", null, "17773", null, "2082", null, "21894", null, "2157", null, "17813", null, "1642", null, "15062", null, "1621", null, "9684", null, "1276", null, "5333", null, "1034", null, "4597", null, "902", null, "55879", null, "3269", null, "15423", null, "1636", null, "94678", null, "4531", null, "39240", null, "3379", null, "151267", null, "5231", null, "274946", null, "5572", null, "266211", null, "5328", null, "250856", null, "4907", null, "74383", null, "2726", null, "65246", null, "2675", null, "52489", null, "1886", null, "19614", null, "1209", null, "34.6", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.5", null, "0.8", null, "8.1", null, "0.8", null, "7.4", null, "0.9", null, "7.1", null, "0.8", null, "8.1", null, "0.8", null, "6.9", null, "0.7", null, "6.6", null, "0.7", null, "6.1", null, "0.8", null, "7.2", null, "0.9", null, "5.3", null, "0.6", null, "5.3", null, "0.5", null, "4.9", null, "0.6", null, "6.1", null, "0.6", null, "4.9", null, "0.4", null, "4.2", null, "0.5", null, "2.7", null, "0.4", null, "1.5", null, "0.3", null, "1.3", null, "0.2", null, "15.5", null, "0.8", null, "4.3", null, "0.4", null, "26.2", null, "0.9", null, "10.9", null, "0.8", null, "41.9", null, "1.0", null, "76.2", null, "1.0", null, "73.8", null, "0.9", null, "69.5", null, "1.1", null, "20.6", null, "0.8", null, "18.1", null, "0.8", null, "14.5", null, "0.5", null, "5.4", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "392754", null, "8298", null, "21984", null, "2232", null, "22940", null, "2362", null, "27477", null, "2951", null, "26014", null, "2427", null, "30126", null, "2405", null, "24272", null, "2416", null, "25776", null, "2499", null, "27156", null, "2802", null, "24194", null, "3089", null, "23787", null, "2155", null, "20843", null, "1770", null, "21161", null, "2248", null, "25507", null, "2216", null, "21501", null, "2023", null, "19589", null, "2032", null, "13978", null, "1349", null, "8349", null, "1250", null, "8100", null, "1248", null, "50417", null, "2656", null, "13868", null, "1475", null, "86269", null, "3845", null, "42272", null, "2481", null, "157538", null, "5367", null, "316520", null, "6573", null, "306485", null, "6357", null, "287778", null, "6652", null, "97024", null, "3101", null, "87656", null, "3196", null, "71517", null, "2315", null, "30427", null, "1511", null, "38.4", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.6", null, "0.5", null, "5.8", null, "0.6", null, "7.0", null, "0.7", null, "6.6", null, "0.6", null, "7.7", null, "0.6", null, "6.2", null, "0.6", null, "6.6", null, "0.6", null, "6.9", null, "0.7", null, "6.2", null, "0.7", null, "6.1", null, "0.5", null, "5.3", null, "0.5", null, "5.4", null, "0.6", null, "6.5", null, "0.6", null, "5.5", null, "0.5", null, "5.0", null, "0.5", null, "3.6", null, "0.3", null, "2.1", null, "0.3", null, "2.1", null, "0.3", null, "12.8", null, "0.6", null, "3.5", null, "0.4", null, "22.0", null, "0.7", null, "10.8", null, "0.6", null, "40.1", null, "0.9", null, "80.6", null, "0.8", null, "78.0", null, "0.7", null, "73.3", null, "0.9", null, "24.7", null, "0.8", null, "22.3", null, "0.8", null, "18.2", null, "0.5", null, "7.7", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "22", "06"], ["5001900US2301", "Congressional District 1 (119th Congress), Maine", "707732", null, "4275", null, "28848", null, "1113", null, "37460", null, "2584", null, "33478", null, "2592", null, "38627", null, "1569", null, "37470", null, "1774", null, "41498", null, "2041", null, "48476", null, "2099", null, "46123", null, "3213", null, "47757", null, "3164", null, "37351", null, "1233", null, "44091", null, "1300", null, "45907", null, "3224", null, "55889", null, "3135", null, "48188", null, "2664", null, "47473", null, "2689", null, "32096", null, "2541", null, "19671", null, "1886", null, "17329", null, "2040", null, "70938", null, "1724", null, "21906", null, "1016", null, "121692", null, "1992", null, "54191", null, "1935", null, "259951", null, "2935", null, "600745", null, "3395", null, "586040", null, "3318", null, "561559", null, "3350", null, "220646", null, "3630", null, "198919", null, "2990", null, "164757", null, "1890", null, "69096", null, "1180", null, "44.3", null, "0.3", null, "97.8", null, "0.9", null, "68.0", null, "0.8", null, "39.1", null, "0.6", null, "28.9", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.1", null, "0.2", null, "5.3", null, "0.4", null, "4.7", null, "0.4", null, "5.5", null, "0.2", null, "5.3", null, "0.3", null, "5.9", null, "0.3", null, "6.8", null, "0.3", null, "6.5", null, "0.4", null, "6.7", null, "0.5", null, "5.3", null, "0.2", null, "6.2", null, "0.2", null, "6.5", null, "0.5", null, "7.9", null, "0.4", null, "6.8", null, "0.4", null, "6.7", null, "0.4", null, "4.5", null, "0.4", null, "2.8", null, "0.3", null, "2.4", null, "0.3", null, "10.0", null, "0.2", null, "3.1", null, "0.1", null, "17.2", null, "0.2", null, "7.7", null, "0.3", null, "36.7", null, "0.3", null, "84.9", null, "0.3", null, "82.8", null, "0.2", null, "79.3", null, "0.3", null, "31.2", null, "0.5", null, "28.1", null, "0.4", null, "23.3", null, "0.3", null, "9.8", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.6", null, "-888888888.0", "(X)", "349905", null, "2878", null, "15195", null, "926", null, "18820", null, "1761", null, "17820", null, "1617", null, "20599", null, "1215", null, "19743", null, "1172", null, "21121", null, "1324", null, "24257", null, "1262", null, "23352", null, "1837", null, "23658", null, "1928", null, "18743", null, "879", null, "22393", null, "1114", null, "22431", null, "2011", null, "26385", null, "2028", null, "23712", null, "1794", null, "21192", null, "1702", null, "14827", null, "1413", null, "8693", null, "1070", null, "6964", null, "975", null, "36640", null, "1163", null, "11814", null, "894", null, "63649", null, "1588", null, "28528", null, "1332", null, "132730", null, "2083", null, "294274", null, "2529", null, "286256", null, "2197", null, "273278", null, "2314", null, "101773", null, "2317", null, "90989", null, "1808", null, "75388", null, "1189", null, "30484", null, "655", null, "43.0", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.3", null, "0.3", null, "5.4", null, "0.5", null, "5.1", null, "0.5", null, "5.9", null, "0.3", null, "5.6", null, "0.3", null, "6.0", null, "0.4", null, "6.9", null, "0.4", null, "6.7", null, "0.5", null, "6.8", null, "0.6", null, "5.4", null, "0.3", null, "6.4", null, "0.3", null, "6.4", null, "0.6", null, "7.5", null, "0.6", null, "6.8", null, "0.5", null, "6.1", null, "0.5", null, "4.2", null, "0.4", null, "2.5", null, "0.3", null, "2.0", null, "0.3", null, "10.5", null, "0.3", null, "3.4", null, "0.2", null, "18.2", null, "0.4", null, "8.2", null, "0.4", null, "37.9", null, "0.5", null, "84.1", null, "0.4", null, "81.8", null, "0.4", null, "78.1", null, "0.5", null, "29.1", null, "0.6", null, "26.0", null, "0.5", null, "21.5", null, "0.3", null, "8.7", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "357827", null, "2399", null, "13653", null, "939", null, "18640", null, "1891", null, "15658", null, "1928", null, "18028", null, "1111", null, "17727", null, "1171", null, "20377", null, "1188", null, "24219", null, "1256", null, "22771", null, "1985", null, "24099", null, "2091", null, "18608", null, "805", null, "21698", null, "756", null, "23476", null, "1934", null, "29504", null, "1986", null, "24476", null, "1802", null, "26281", null, "1819", null, "17269", null, "1606", null, "10978", null, "1397", null, "10365", null, "1515", null, "34298", null, "1257", null, "10092", null, "896", null, "58043", null, "1630", null, "25663", null, "1198", null, "127221", null, "1883", null, "306471", null, "2086", null, "299784", null, "1879", null, "288281", null, "1976", null, "118873", null, "2256", null, "107930", null, "2083", null, "89369", null, "1248", null, "38612", null, "828", null, "45.8", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "3.8", null, "0.3", null, "5.2", null, "0.5", null, "4.4", null, "0.5", null, "5.0", null, "0.3", null, "5.0", null, "0.3", null, "5.7", null, "0.3", null, "6.8", null, "0.4", null, "6.4", null, "0.5", null, "6.7", null, "0.6", null, "5.2", null, "0.2", null, "6.1", null, "0.2", null, "6.6", null, "0.5", null, "8.2", null, "0.5", null, "6.8", null, "0.5", null, "7.3", null, "0.5", null, "4.8", null, "0.4", null, "3.1", null, "0.4", null, "2.9", null, "0.4", null, "9.6", null, "0.3", null, "2.8", null, "0.3", null, "16.2", null, "0.4", null, "7.2", null, "0.3", null, "35.6", null, "0.5", null, "85.6", null, "0.5", null, "83.8", null, "0.4", null, "80.6", null, "0.5", null, "33.2", null, "0.6", null, "30.2", null, "0.6", null, "25.0", null, "0.3", null, "10.8", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "23", "01"], ["5001900US2302", "Congressional District 2 (119th Congress), Maine", "697280", null, "4275", null, "29661", null, "878", null, "34603", null, "2377", null, "34858", null, "2254", null, "41703", null, "1781", null, "38447", null, "1851", null, "39294", null, "1452", null, "42817", null, "1485", null, "41616", null, "2934", null, "41470", null, "3001", null, "40527", null, "1110", null, "44841", null, "1186", null, "45752", null, "2796", null, "56522", null, "2927", null, "53396", null, "2905", null, "44814", null, "2715", null, "32968", null, "1776", null, "19400", null, "1909", null, "14591", null, "1525", null, "69461", null, "1732", null, "23865", null, "1138", null, "122987", null, "1940", null, "56285", null, "1631", null, "245347", null, "2669", null, "589777", null, "3493", null, "574293", null, "3350", null, "547795", null, "3596", null, "221691", null, "3712", null, "200183", null, "3457", null, "165169", null, "2008", null, "66959", null, "1084", null, "45.5", null, "0.3", null, "96.7", null, "1.3", null, "70.4", null, "0.8", null, "40.4", null, "0.6", null, "30.1", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.3", null, "0.1", null, "5.0", null, "0.3", null, "5.0", null, "0.3", null, "6.0", null, "0.2", null, "5.5", null, "0.3", null, "5.6", null, "0.2", null, "6.1", null, "0.2", null, "6.0", null, "0.4", null, "5.9", null, "0.4", null, "5.8", null, "0.2", null, "6.4", null, "0.2", null, "6.6", null, "0.4", null, "8.1", null, "0.4", null, "7.7", null, "0.4", null, "6.4", null, "0.4", null, "4.7", null, "0.3", null, "2.8", null, "0.3", null, "2.1", null, "0.2", null, "10.0", null, "0.2", null, "3.4", null, "0.2", null, "17.6", null, "0.2", null, "8.1", null, "0.2", null, "35.2", null, "0.3", null, "84.6", null, "0.3", null, "82.4", null, "0.2", null, "78.6", null, "0.4", null, "31.8", null, "0.5", null, "28.7", null, "0.5", null, "23.7", null, "0.3", null, "9.6", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "0.8", null, "-888888888.0", "(X)", "342783", null, "3162", null, "15085", null, "753", null, "17790", null, "1523", null, "17597", null, "1447", null, "21731", null, "1612", null, "20004", null, "1106", null, "19229", null, "921", null, "21217", null, "1016", null, "20415", null, "1766", null, "20016", null, "1921", null, "20174", null, "795", null, "22008", null, "818", null, "21787", null, "1680", null, "28308", null, "1765", null, "25266", null, "1863", null, "22392", null, "1664", null, "15325", null, "1127", null, "8576", null, "1145", null, "5863", null, "969", null, "35387", null, "1011", null, "12142", null, "1216", null, "62614", null, "1724", null, "29593", null, "996", null, "122612", null, "2369", null, "288067", null, "2640", null, "280169", null, "2267", null, "265829", null, "2387", null, "105730", null, "2141", null, "93712", null, "2150", null, "77422", null, "1322", null, "29764", null, "538", null, "44.6", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.4", null, "0.2", null, "5.2", null, "0.4", null, "5.1", null, "0.4", null, "6.3", null, "0.4", null, "5.8", null, "0.3", null, "5.6", null, "0.3", null, "6.2", null, "0.3", null, "6.0", null, "0.5", null, "5.8", null, "0.6", null, "5.9", null, "0.2", null, "6.4", null, "0.2", null, "6.4", null, "0.5", null, "8.3", null, "0.5", null, "7.4", null, "0.5", null, "6.5", null, "0.5", null, "4.5", null, "0.3", null, "2.5", null, "0.3", null, "1.7", null, "0.3", null, "10.3", null, "0.3", null, "3.5", null, "0.3", null, "18.3", null, "0.4", null, "8.6", null, "0.3", null, "35.8", null, "0.5", null, "84.0", null, "0.4", null, "81.7", null, "0.4", null, "77.6", null, "0.5", null, "30.8", null, "0.7", null, "27.3", null, "0.7", null, "22.6", null, "0.4", null, "8.7", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "354497", null, "3221", null, "14576", null, "762", null, "16813", null, "1471", null, "17261", null, "1476", null, "19972", null, "1696", null, "18443", null, "1367", null, "20065", null, "1057", null, "21600", null, "1005", null, "21201", null, "1927", null, "21454", null, "1933", null, "20353", null, "672", null, "22833", null, "833", null, "23965", null, "2001", null, "28214", null, "2070", null, "28130", null, "1716", null, "22422", null, "1763", null, "17643", null, "1150", null, "10824", null, "1192", null, "8728", null, "1146", null, "34074", null, "1202", null, "11723", null, "1225", null, "60373", null, "1859", null, "26692", null, "1343", null, "122735", null, "2147", null, "301710", null, "2703", null, "294124", null, "2266", null, "281966", null, "2342", null, "115961", null, "2307", null, "106471", null, "2142", null, "87747", null, "1094", null, "37195", null, "758", null, "46.4", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.1", null, "0.2", null, "4.7", null, "0.4", null, "4.9", null, "0.4", null, "5.6", null, "0.5", null, "5.2", null, "0.4", null, "5.7", null, "0.3", null, "6.1", null, "0.3", null, "6.0", null, "0.5", null, "6.1", null, "0.5", null, "5.7", null, "0.2", null, "6.4", null, "0.2", null, "6.8", null, "0.6", null, "8.0", null, "0.6", null, "7.9", null, "0.5", null, "6.3", null, "0.5", null, "5.0", null, "0.3", null, "3.1", null, "0.3", null, "2.5", null, "0.3", null, "9.6", null, "0.3", null, "3.3", null, "0.3", null, "17.0", null, "0.4", null, "7.5", null, "0.4", null, "34.6", null, "0.4", null, "85.1", null, "0.5", null, "83.0", null, "0.4", null, "79.5", null, "0.6", null, "32.7", null, "0.6", null, "30.0", null, "0.6", null, "24.8", null, "0.3", null, "10.5", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "23", "02"], ["5001900US2401", "Congressional District 1 (119th Congress), Maryland", "791864", null, "5735", null, "42027", null, "2209", null, "45271", null, "2985", null, "45887", null, "3117", null, "48068", null, "3042", null, "46113", null, "3378", null, "45391", null, "2525", null, "48863", null, "2866", null, "55374", null, "4145", null, "45883", null, "3264", null, "45897", null, "3109", null, "47578", null, "2429", null, "54660", null, "3302", null, "60411", null, "3747", null, "50591", null, "2735", null, "42277", null, "2408", null, "29724", null, "2236", null, "21956", null, "1853", null, "15893", null, "1751", null, "91158", null, "2356", null, "29723", null, "1733", null, "162908", null, "2881", null, "64458", null, "3619", null, "289692", null, "4979", null, "649259", null, "5133", null, "628956", null, "4708", null, "602704", null, "4637", null, "220852", null, "4202", null, "196064", null, "3445", null, "160441", null, "2516", null, "67573", null, "1761", null, "42.0", null, "0.5", null, "93.6", null, "1.6", null, "69.0", null, "1.2", null, "34.2", null, "0.8", null, "34.8", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.3", null, "0.3", null, "5.7", null, "0.4", null, "5.8", null, "0.4", null, "6.1", null, "0.4", null, "5.8", null, "0.4", null, "5.7", null, "0.3", null, "6.2", null, "0.4", null, "7.0", null, "0.5", null, "5.8", null, "0.4", null, "5.8", null, "0.4", null, "6.0", null, "0.3", null, "6.9", null, "0.4", null, "7.6", null, "0.5", null, "6.4", null, "0.3", null, "5.3", null, "0.3", null, "3.8", null, "0.3", null, "2.8", null, "0.2", null, "2.0", null, "0.2", null, "11.5", null, "0.3", null, "3.8", null, "0.2", null, "20.6", null, "0.3", null, "8.1", null, "0.4", null, "36.6", null, "0.5", null, "82.0", null, "0.3", null, "79.4", null, "0.3", null, "76.1", null, "0.4", null, "27.9", null, "0.5", null, "24.8", null, "0.4", null, "20.3", null, "0.4", null, "8.5", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.0", null, "-888888888.0", "(X)", "382749", null, "4222", null, "21213", null, "1581", null, "19869", null, "2202", null, "25344", null, "2371", null, "24120", null, "1987", null, "22122", null, "2175", null, "22775", null, "1865", null, "22405", null, "1963", null, "28286", null, "2480", null, "22776", null, "2059", null, "23237", null, "2176", null, "23667", null, "1728", null, "27180", null, "2116", null, "28580", null, "2294", null, "23049", null, "1760", null, "20090", null, "1551", null, "12433", null, "1364", null, "10042", null, "1208", null, "5561", null, "978", null, "45213", null, "1990", null, "14759", null, "1327", null, "81185", null, "2629", null, "31483", null, "2398", null, "142484", null, "3315", null, "311793", null, "3128", null, "301564", null, "2822", null, "287586", null, "3317", null, "99755", null, "2430", null, "89486", null, "2315", null, "71175", null, "1385", null, "28036", null, "831", null, "41.2", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.4", null, "5.2", null, "0.6", null, "6.6", null, "0.6", null, "6.3", null, "0.5", null, "5.8", null, "0.6", null, "6.0", null, "0.5", null, "5.9", null, "0.5", null, "7.4", null, "0.6", null, "6.0", null, "0.5", null, "6.1", null, "0.6", null, "6.2", null, "0.5", null, "7.1", null, "0.5", null, "7.5", null, "0.6", null, "6.0", null, "0.5", null, "5.2", null, "0.4", null, "3.2", null, "0.4", null, "2.6", null, "0.3", null, "1.5", null, "0.3", null, "11.8", null, "0.5", null, "3.9", null, "0.3", null, "21.2", null, "0.5", null, "8.2", null, "0.6", null, "37.2", null, "0.7", null, "81.5", null, "0.6", null, "78.8", null, "0.5", null, "75.1", null, "0.7", null, "26.1", null, "0.7", null, "23.4", null, "0.6", null, "18.6", null, "0.4", null, "7.3", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "409115", null, "4650", null, "20814", null, "1790", null, "25402", null, "2218", null, "20543", null, "2095", null, "23948", null, "2462", null, "23991", null, "2371", null, "22616", null, "1697", null, "26458", null, "2106", null, "27088", null, "2622", null, "23107", null, "2315", null, "22660", null, "1764", null, "23911", null, "1441", null, "27480", null, "2142", null, "31831", null, "2523", null, "27542", null, "1868", null, "22187", null, "1653", null, "17291", null, "1551", null, "11914", null, "1397", null, "10332", null, "1378", null, "45945", null, "1609", null, "14964", null, "1558", null, "81723", null, "2750", null, "32975", null, "2247", null, "147208", null, "3756", null, "337466", null, "3700", null, "327392", null, "3215", null, "315118", null, "3287", null, "121097", null, "2956", null, "106578", null, "2218", null, "89266", null, "1750", null, "39537", null, "1357", null, "43.0", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.1", null, "0.4", null, "6.2", null, "0.5", null, "5.0", null, "0.5", null, "5.9", null, "0.6", null, "5.9", null, "0.6", null, "5.5", null, "0.4", null, "6.5", null, "0.5", null, "6.6", null, "0.6", null, "5.6", null, "0.6", null, "5.5", null, "0.4", null, "5.8", null, "0.4", null, "6.7", null, "0.5", null, "7.8", null, "0.6", null, "6.7", null, "0.5", null, "5.4", null, "0.4", null, "4.2", null, "0.4", null, "2.9", null, "0.3", null, "2.5", null, "0.3", null, "11.2", null, "0.4", null, "3.7", null, "0.4", null, "20.0", null, "0.5", null, "8.1", null, "0.5", null, "36.0", null, "0.8", null, "82.5", null, "0.6", null, "80.0", null, "0.5", null, "77.0", null, "0.7", null, "29.6", null, "0.7", null, "26.1", null, "0.6", null, "21.8", null, "0.5", null, "9.7", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "24", "01"], ["5001900US2402", "Congressional District 2 (119th Congress), Maryland", "783097", null, "13042", null, "44536", null, "2425", null, "49956", null, "4133", null, "46806", null, "3836", null, "53603", null, "2801", null, "48049", null, "2918", null, "45138", null, "2959", null, "48154", null, "3292", null, "51338", null, "4097", null, "55044", null, "4006", null, "44525", null, "3223", null, "46268", null, "2700", null, "42341", null, "3047", null, "52269", null, "3092", null, "46523", null, "2827", null, "40707", null, "2757", null, "31451", null, "2528", null, "19964", null, "2013", null, "16425", null, "2026", null, "96762", null, "4476", null, "31875", null, "1808", null, "173173", null, "5952", null, "69777", null, "2682", null, "301326", null, "7075", null, "632049", null, "9983", null, "609924", null, "9181", null, "579287", null, "9042", null, "207339", null, "5065", null, "189044", null, "5092", null, "155070", null, "3525", null, "67840", null, "2253", null, "40.3", null, "0.5", null, "91.9", null, "1.8", null, "72.2", null, "1.6", null, "34.1", null, "1.0", null, "38.1", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.7", null, "0.3", null, "6.4", null, "0.5", null, "6.0", null, "0.5", null, "6.8", null, "0.3", null, "6.1", null, "0.4", null, "5.8", null, "0.4", null, "6.1", null, "0.4", null, "6.6", null, "0.5", null, "7.0", null, "0.5", null, "5.7", null, "0.4", null, "5.9", null, "0.3", null, "5.4", null, "0.4", null, "6.7", null, "0.4", null, "5.9", null, "0.4", null, "5.2", null, "0.4", null, "4.0", null, "0.3", null, "2.5", null, "0.3", null, "2.1", null, "0.3", null, "12.4", null, "0.5", null, "4.1", null, "0.2", null, "22.1", null, "0.5", null, "8.9", null, "0.3", null, "38.5", null, "0.6", null, "80.7", null, "0.5", null, "77.9", null, "0.5", null, "74.0", null, "0.6", null, "26.5", null, "0.7", null, "24.1", null, "0.7", null, "19.8", null, "0.5", null, "8.7", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.5", null, "-888888888.0", "(X)", "375017", null, "6518", null, "22642", null, "1791", null, "26608", null, "2836", null, "23644", null, "2966", null, "27170", null, "2307", null, "23976", null, "1772", null, "21568", null, "2009", null, "22089", null, "2055", null, "23817", null, "2025", null, "27092", null, "2329", null, "21991", null, "2165", null, "21218", null, "1826", null, "20691", null, "1954", null, "24250", null, "2140", null, "21694", null, "1693", null, "17253", null, "1746", null, "14750", null, "1523", null, "8881", null, "1364", null, "5683", null, "1219", null, "50252", null, "2319", null, "15931", null, "1171", null, "88825", null, "3474", null, "35215", null, "2257", null, "145712", null, "4449", null, "296270", null, "5586", null, "286192", null, "5103", null, "270896", null, "4783", null, "92511", null, "3167", null, "83036", null, "3240", null, "68261", null, "2357", null, "29314", null, "1312", null, "39.0", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.0", null, "0.4", null, "7.1", null, "0.8", null, "6.3", null, "0.8", null, "7.2", null, "0.6", null, "6.4", null, "0.4", null, "5.8", null, "0.5", null, "5.9", null, "0.5", null, "6.4", null, "0.5", null, "7.2", null, "0.6", null, "5.9", null, "0.6", null, "5.7", null, "0.5", null, "5.5", null, "0.5", null, "6.5", null, "0.6", null, "5.8", null, "0.4", null, "4.6", null, "0.5", null, "3.9", null, "0.4", null, "2.4", null, "0.4", null, "1.5", null, "0.3", null, "13.4", null, "0.5", null, "4.2", null, "0.3", null, "23.7", null, "0.7", null, "9.4", null, "0.6", null, "38.9", null, "0.9", null, "79.0", null, "0.8", null, "76.3", null, "0.7", null, "72.2", null, "0.8", null, "24.7", null, "0.8", null, "22.1", null, "0.9", null, "18.2", null, "0.6", null, "7.8", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "408080", null, "8472", null, "21894", null, "1986", null, "23348", null, "2777", null, "23162", null, "2518", null, "26433", null, "1893", null, "24073", null, "2323", null, "23570", null, "1696", null, "26065", null, "1819", null, "27521", null, "2826", null, "27952", null, "2596", null, "22534", null, "1823", null, "25050", null, "1551", null, "21650", null, "2116", null, "28019", null, "2209", null, "24829", null, "1903", null, "23454", null, "1862", null, "16701", null, "1808", null, "11083", null, "1596", null, "10742", null, "1647", null, "46510", null, "2989", null, "15944", null, "1438", null, "84348", null, "4233", null, "34562", null, "2547", null, "155614", null, "4471", null, "335779", null, "6467", null, "323732", null, "5896", null, "308391", null, "5647", null, "114828", null, "3174", null, "106008", null, "3206", null, "86809", null, "2145", null, "38526", null, "1702", null, "40.9", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.5", null, "5.7", null, "0.6", null, "5.7", null, "0.6", null, "6.5", null, "0.4", null, "5.9", null, "0.6", null, "5.8", null, "0.4", null, "6.4", null, "0.4", null, "6.7", null, "0.7", null, "6.8", null, "0.6", null, "5.5", null, "0.4", null, "6.1", null, "0.4", null, "5.3", null, "0.5", null, "6.9", null, "0.5", null, "6.1", null, "0.5", null, "5.7", null, "0.5", null, "4.1", null, "0.4", null, "2.7", null, "0.4", null, "2.6", null, "0.4", null, "11.4", null, "0.6", null, "3.9", null, "0.3", null, "20.7", null, "0.8", null, "8.5", null, "0.6", null, "38.1", null, "0.7", null, "82.3", null, "0.8", null, "79.3", null, "0.8", null, "75.6", null, "0.9", null, "28.1", null, "0.8", null, "26.0", null, "0.8", null, "21.3", null, "0.6", null, "9.4", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "24", "02"], ["5001900US2403", "Congressional District 3 (119th Congress), Maryland", "782840", null, "11276", null, "41967", null, "2130", null, "44919", null, "3195", null, "53165", null, "4448", null, "47681", null, "2309", null, "49104", null, "2508", null, "45698", null, "2069", null, "51215", null, "2576", null, "51007", null, "4270", null, "62808", null, "4418", null, "49363", null, "2076", null, "47457", null, "2062", null, "51296", null, "3166", null, "52293", null, "2802", null, "42773", null, "2592", null, "35037", null, "2540", null, "24850", null, "2161", null, "17120", null, "1895", null, "15087", null, "2279", null, "98084", null, "4306", null, "30424", null, "1349", null, "170475", null, "5958", null, "66361", null, "2441", null, "307513", null, "6020", null, "632438", null, "7909", null, "612365", null, "7686", null, "586688", null, "7464", null, "187160", null, "4481", null, "168273", null, "4373", null, "134867", null, "3382", null, "57057", null, "1885", null, "40.5", null, "0.4", null, "97.5", null, "1.5", null, "63.9", null, "1.4", null, "28.2", null, "0.9", null, "35.7", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.2", null, "5.7", null, "0.4", null, "6.8", null, "0.5", null, "6.1", null, "0.3", null, "6.3", null, "0.3", null, "5.8", null, "0.3", null, "6.5", null, "0.3", null, "6.5", null, "0.5", null, "8.0", null, "0.5", null, "6.3", null, "0.3", null, "6.1", null, "0.3", null, "6.6", null, "0.4", null, "6.7", null, "0.4", null, "5.5", null, "0.3", null, "4.5", null, "0.3", null, "3.2", null, "0.3", null, "2.2", null, "0.2", null, "1.9", null, "0.3", null, "12.5", null, "0.5", null, "3.9", null, "0.2", null, "21.8", null, "0.6", null, "8.5", null, "0.3", null, "39.3", null, "0.4", null, "80.8", null, "0.5", null, "78.2", null, "0.6", null, "74.9", null, "0.6", null, "23.9", null, "0.6", null, "21.5", null, "0.6", null, "17.2", null, "0.5", null, "7.3", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.6", null, "-888888888.0", "(X)", "386394", null, "6544", null, "20584", null, "1425", null, "22736", null, "2600", null, "27300", null, "3303", null, "26048", null, "1296", null, "26030", null, "1573", null, "23149", null, "1260", null, "25519", null, "1458", null, "25978", null, "2679", null, "30470", null, "2789", null, "24351", null, "1291", null, "22640", null, "1253", null, "24977", null, "2085", null, "25787", null, "1931", null, "19877", null, "1533", null, "16486", null, "1642", null, "10568", null, "1336", null, "8127", null, "1359", null, "5767", null, "1542", null, "50036", null, "2823", null, "16413", null, "800", null, "87033", null, "3739", null, "35665", null, "1659", null, "157194", null, "3425", null, "310300", null, "4233", null, "299361", null, "4046", null, "285081", null, "4114", null, "86612", null, "2582", null, "77664", null, "2569", null, "60825", null, "1741", null, "24462", null, "947", null, "39.3", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.3", null, "0.3", null, "5.9", null, "0.7", null, "7.1", null, "0.8", null, "6.7", null, "0.3", null, "6.7", null, "0.4", null, "6.0", null, "0.3", null, "6.6", null, "0.4", null, "6.7", null, "0.7", null, "7.9", null, "0.7", null, "6.3", null, "0.3", null, "5.9", null, "0.3", null, "6.5", null, "0.5", null, "6.7", null, "0.5", null, "5.1", null, "0.4", null, "4.3", null, "0.4", null, "2.7", null, "0.4", null, "2.1", null, "0.3", null, "1.5", null, "0.4", null, "12.9", null, "0.6", null, "4.2", null, "0.2", null, "22.5", null, "0.7", null, "9.2", null, "0.4", null, "40.7", null, "0.6", null, "80.3", null, "0.8", null, "77.5", null, "0.7", null, "73.8", null, "0.7", null, "22.4", null, "0.7", null, "20.1", null, "0.6", null, "15.7", null, "0.5", null, "6.3", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "396446", null, "6266", null, "21383", null, "1612", null, "22183", null, "2317", null, "25865", null, "2674", null, "21633", null, "1933", null, "23074", null, "1599", null, "22549", null, "1530", null, "25696", null, "1456", null, "25029", null, "2729", null, "32338", null, "2465", null, "25012", null, "1176", null, "24817", null, "1378", null, "26319", null, "2124", null, "26506", null, "2000", null, "22896", null, "1784", null, "18551", null, "1797", null, "14282", null, "1564", null, "8993", null, "1712", null, "9320", null, "1684", null, "48048", null, "2348", null, "14011", null, "1278", null, "83442", null, "3640", null, "30696", null, "1469", null, "150319", null, "3632", null, "322138", null, "4943", null, "313004", null, "4679", null, "301607", null, "4416", null, "100548", null, "3101", null, "90609", null, "2908", null, "74042", null, "2297", null, "32595", null, "1463", null, "41.6", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.4", null, "5.6", null, "0.6", null, "6.5", null, "0.7", null, "5.5", null, "0.5", null, "5.8", null, "0.4", null, "5.7", null, "0.4", null, "6.5", null, "0.4", null, "6.3", null, "0.7", null, "8.2", null, "0.6", null, "6.3", null, "0.3", null, "6.3", null, "0.3", null, "6.6", null, "0.5", null, "6.7", null, "0.5", null, "5.8", null, "0.4", null, "4.7", null, "0.5", null, "3.6", null, "0.4", null, "2.3", null, "0.4", null, "2.4", null, "0.4", null, "12.1", null, "0.5", null, "3.5", null, "0.3", null, "21.0", null, "0.7", null, "7.7", null, "0.4", null, "37.9", null, "0.5", null, "81.3", null, "0.6", null, "79.0", null, "0.7", null, "76.1", null, "0.8", null, "25.4", null, "0.8", null, "22.9", null, "0.7", null, "18.7", null, "0.6", null, "8.2", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "24", "03"], ["5001900US2404", "Congressional District 4 (119th Congress), Maryland", "763420", null, "11696", null, "47896", null, "2898", null, "44711", null, "4435", null, "48331", null, "3911", null, "51652", null, "2824", null, "55796", null, "2644", null, "51833", null, "2244", null, "55811", null, "2540", null, "55920", null, "3923", null, "47557", null, "3704", null, "50201", null, "2711", null, "47822", null, "2782", null, "45490", null, "3748", null, "45761", null, "4047", null, "39397", null, "2791", null, "29863", null, "2992", null, "20945", null, "2367", null, "12614", null, "1511", null, "11820", null, "2264", null, "93042", null, "4573", null, "30354", null, "1950", null, "171292", null, "6150", null, "77094", null, "2939", null, "318569", null, "7200", null, "611828", null, "9082", null, "592128", null, "8463", null, "557747", null, "8175", null, "160400", null, "5623", null, "140867", null, "4918", null, "114639", null, "3687", null, "45379", null, "2360", null, "37.2", null, "0.5", null, "95.8", null, "1.8", null, "59.9", null, "1.6", null, "24.0", null, "1.0", null, "35.9", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.3", null, "0.4", null, "5.9", null, "0.6", null, "6.3", null, "0.5", null, "6.8", null, "0.3", null, "7.3", null, "0.3", null, "6.8", null, "0.3", null, "7.3", null, "0.3", null, "7.3", null, "0.5", null, "6.2", null, "0.5", null, "6.6", null, "0.3", null, "6.3", null, "0.3", null, "6.0", null, "0.5", null, "6.0", null, "0.5", null, "5.2", null, "0.4", null, "3.9", null, "0.4", null, "2.7", null, "0.3", null, "1.7", null, "0.2", null, "1.5", null, "0.3", null, "12.2", null, "0.5", null, "4.0", null, "0.2", null, "22.4", null, "0.6", null, "10.1", null, "0.3", null, "41.7", null, "0.7", null, "80.1", null, "0.7", null, "77.6", null, "0.6", null, "73.1", null, "0.6", null, "21.0", null, "0.7", null, "18.5", null, "0.6", null, "15.0", null, "0.5", null, "5.9", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "2.4", null, "-888888888.0", "(X)", "373569", null, "5890", null, "25867", null, "1846", null, "23887", null, "3223", null, "23926", null, "2800", null, "25980", null, "1978", null, "28523", null, "1697", null, "26466", null, "1474", null, "27696", null, "1721", null, "27443", null, "2913", null, "26293", null, "2794", null, "24705", null, "1876", null, "22618", null, "1392", null, "19785", null, "2664", null, "22830", null, "2611", null, "17321", null, "1896", null, "12317", null, "1974", null, "8401", null, "1426", null, "5201", null, "1012", null, "4310", null, "1267", null, "47813", null, "2893", null, "15502", null, "1411", null, "89182", null, "3460", null, "39001", null, "1966", null, "162401", null, "4252", null, "295069", null, "5273", null, "284387", null, "4980", null, "268102", null, "4894", null, "70380", null, "3525", null, "59401", null, "3473", null, "47550", null, "2409", null, "17912", null, "1344", null, "35.8", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.9", null, "0.5", null, "6.4", null, "0.9", null, "6.4", null, "0.7", null, "7.0", null, "0.5", null, "7.6", null, "0.4", null, "7.1", null, "0.4", null, "7.4", null, "0.5", null, "7.3", null, "0.8", null, "7.0", null, "0.7", null, "6.6", null, "0.5", null, "6.1", null, "0.3", null, "5.3", null, "0.7", null, "6.1", null, "0.7", null, "4.6", null, "0.5", null, "3.3", null, "0.5", null, "2.2", null, "0.4", null, "1.4", null, "0.3", null, "1.2", null, "0.3", null, "12.8", null, "0.7", null, "4.1", null, "0.4", null, "23.9", null, "0.8", null, "10.4", null, "0.5", null, "43.5", null, "1.0", null, "79.0", null, "0.9", null, "76.1", null, "0.8", null, "71.8", null, "0.9", null, "18.8", null, "0.9", null, "15.9", null, "0.9", null, "12.7", null, "0.6", null, "4.8", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "389851", null, "7680", null, "22029", null, "1955", null, "20824", null, "2825", null, "24405", null, "2633", null, "25672", null, "1904", null, "27273", null, "1706", null, "25367", null, "1564", null, "28115", null, "1628", null, "28477", null, "2436", null, "21264", null, "2327", null, "25496", null, "1544", null, "25204", null, "2110", null, "25705", null, "2296", null, "22931", null, "2307", null, "22076", null, "2086", null, "17546", null, "1976", null, "12544", null, "1570", null, "7413", null, "1226", null, "7510", null, "1534", null, "45229", null, "2662", null, "14852", null, "1255", null, "82110", null, "3911", null, "38093", null, "1781", null, "156168", null, "4335", null, "316759", null, "5804", null, "307741", null, "5490", null, "289645", null, "5551", null, "90020", null, "3361", null, "81466", null, "3167", null, "67089", null, "2318", null, "27467", null, "1690", null, "38.7", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.7", null, "0.5", null, "5.3", null, "0.7", null, "6.3", null, "0.6", null, "6.6", null, "0.5", null, "7.0", null, "0.4", null, "6.5", null, "0.4", null, "7.2", null, "0.4", null, "7.3", null, "0.6", null, "5.5", null, "0.6", null, "6.5", null, "0.4", null, "6.5", null, "0.5", null, "6.6", null, "0.6", null, "5.9", null, "0.6", null, "5.7", null, "0.5", null, "4.5", null, "0.5", null, "3.2", null, "0.4", null, "1.9", null, "0.3", null, "1.9", null, "0.4", null, "11.6", null, "0.6", null, "3.8", null, "0.3", null, "21.1", null, "0.8", null, "9.8", null, "0.4", null, "40.1", null, "0.8", null, "81.3", null, "0.8", null, "78.9", null, "0.8", null, "74.3", null, "0.9", null, "23.1", null, "0.9", null, "20.9", null, "0.8", null, "17.2", null, "0.7", null, "7.0", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "24", "04"], ["5001900US2405", "Congressional District 5 (119th Congress), Maryland", "805367", null, "14872", null, "43967", null, "3481", null, "53370", null, "4461", null, "53224", null, "4603", null, "51701", null, "3454", null, "40490", null, "3100", null, "46893", null, "3195", null, "52769", null, "3609", null, "54528", null, "4496", null, "63782", null, "5301", null, "48357", null, "3398", null, "53165", null, "3647", null, "54674", null, "3626", null, "59283", null, "3833", null, "44080", null, "3130", null, "33580", null, "2713", null, "24125", null, "2169", null, "15470", null, "2117", null, "11909", null, "1816", null, "106594", null, "5564", null, "33941", null, "2553", null, "184502", null, "7396", null, "58250", null, "3609", null, "310163", null, "8711", null, "642744", null, "11083", null, "620865", null, "11040", null, "595515", null, "10846", null, "188447", null, "5485", null, "163303", null, "5623", null, "129164", null, "4440", null, "51504", null, "3055", null, "40.5", null, "0.6", null, "93.1", null, "1.8", null, "63.8", null, "1.6", null, "26.3", null, "1.1", null, "37.5", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.4", null, "6.6", null, "0.5", null, "6.6", null, "0.5", null, "6.4", null, "0.4", null, "5.0", null, "0.4", null, "5.8", null, "0.4", null, "6.6", null, "0.4", null, "6.8", null, "0.6", null, "7.9", null, "0.6", null, "6.0", null, "0.4", null, "6.6", null, "0.4", null, "6.8", null, "0.5", null, "7.4", null, "0.5", null, "5.5", null, "0.4", null, "4.2", null, "0.4", null, "3.0", null, "0.3", null, "1.9", null, "0.3", null, "1.5", null, "0.2", null, "13.2", null, "0.6", null, "4.2", null, "0.3", null, "22.9", null, "0.7", null, "7.2", null, "0.4", null, "38.5", null, "0.7", null, "79.8", null, "0.7", null, "77.1", null, "0.7", null, "73.9", null, "0.7", null, "23.4", null, "0.7", null, "20.3", null, "0.7", null, "16.0", null, "0.6", null, "6.4", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.2", null, "-888888888.0", "(X)", "388390", null, "7743", null, "21059", null, "1913", null, "26193", null, "3629", null, "26513", null, "3072", null, "27913", null, "2325", null, "20770", null, "2319", null, "22281", null, "2169", null, "26338", null, "2172", null, "26718", null, "3085", null, "29071", null, "3314", null, "24718", null, "2345", null, "25377", null, "1913", null, "24693", null, "2253", null, "29611", null, "2362", null, "20702", null, "2050", null, "16353", null, "1651", null, "10211", null, "1415", null, "5470", null, "1267", null, "4399", null, "1402", null, "52706", null, "3919", null, "18586", null, "1712", null, "92351", null, "4630", null, "30097", null, "2574", null, "153091", null, "4894", null, "308532", null, "5741", null, "296039", null, "5597", null, "281996", null, "5458", null, "86746", null, "3095", null, "74253", null, "2919", null, "57135", null, "2614", null, "20080", null, "1624", null, "39.2", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.5", null, "6.7", null, "0.9", null, "6.8", null, "0.8", null, "7.2", null, "0.6", null, "5.3", null, "0.6", null, "5.7", null, "0.5", null, "6.8", null, "0.6", null, "6.9", null, "0.8", null, "7.5", null, "0.8", null, "6.4", null, "0.6", null, "6.5", null, "0.5", null, "6.4", null, "0.6", null, "7.6", null, "0.6", null, "5.3", null, "0.5", null, "4.2", null, "0.4", null, "2.6", null, "0.4", null, "1.4", null, "0.3", null, "1.1", null, "0.4", null, "13.6", null, "0.9", null, "4.8", null, "0.4", null, "23.8", null, "0.9", null, "7.7", null, "0.6", null, "39.4", null, "1.1", null, "79.4", null, "1.0", null, "76.2", null, "0.9", null, "72.6", null, "0.9", null, "22.3", null, "0.8", null, "19.1", null, "0.8", null, "14.7", null, "0.7", null, "5.2", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "416977", null, "9080", null, "22908", null, "2541", null, "27177", null, "2879", null, "26711", null, "3254", null, "23788", null, "2629", null, "19720", null, "2007", null, "24612", null, "2275", null, "26431", null, "2266", null, "27810", null, "2551", null, "34711", null, "3639", null, "23639", null, "1846", null, "27788", null, "2598", null, "29981", null, "2627", null, "29672", null, "2508", null, "23378", null, "2261", null, "17227", null, "1946", null, "13914", null, "1652", null, "10000", null, "1647", null, "7510", null, "1439", null, "53888", null, "3343", null, "15355", null, "1804", null, "92151", null, "5020", null, "28153", null, "2396", null, "157072", null, "5599", null, "334212", null, "7660", null, "324826", null, "7412", null, "313519", null, "7205", null, "101701", null, "4128", null, "89050", null, "4010", null, "72029", null, "3224", null, "31424", null, "2447", null, "41.6", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.6", null, "6.5", null, "0.7", null, "6.4", null, "0.8", null, "5.7", null, "0.6", null, "4.7", null, "0.5", null, "5.9", null, "0.5", null, "6.3", null, "0.5", null, "6.7", null, "0.6", null, "8.3", null, "0.8", null, "5.7", null, "0.4", null, "6.7", null, "0.6", null, "7.2", null, "0.6", null, "7.1", null, "0.6", null, "5.6", null, "0.5", null, "4.1", null, "0.5", null, "3.3", null, "0.4", null, "2.4", null, "0.4", null, "1.8", null, "0.3", null, "12.9", null, "0.7", null, "3.7", null, "0.4", null, "22.1", null, "1.0", null, "6.8", null, "0.5", null, "37.7", null, "0.9", null, "80.2", null, "1.0", null, "77.9", null, "1.0", null, "75.2", null, "1.1", null, "24.4", null, "1.0", null, "21.4", null, "1.0", null, "17.3", null, "0.8", null, "7.5", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "24", "05"], ["5001900US2406", "Congressional District 6 (119th Congress), Maryland", "821685", null, "13566", null, "44626", null, "2764", null, "50749", null, "3911", null, "53135", null, "3598", null, "53512", null, "3081", null, "46814", null, "3552", null, "49641", null, "3774", null, "55700", null, "3049", null, "61229", null, "4270", null, "53727", null, "4011", null, "54013", null, "2955", null, "53130", null, "2400", null, "51827", null, "3481", null, "54329", null, "3539", null, "46743", null, "2901", null, "36061", null, "3079", null, "27734", null, "2306", null, "15153", null, "1604", null, "13562", null, "2032", null, "103884", null, "4404", null, "33129", null, "2157", null, "181639", null, "6194", null, "67197", null, "4168", null, "320623", null, "8177", null, "661044", null, "9749", null, "640046", null, "9674", null, "609306", null, "9301", null, "193582", null, "4470", null, "172569", null, "4483", null, "139253", null, "3689", null, "56449", null, "2707", null, "39.6", null, "0.6", null, "101.5", null, "1.7", null, "64.1", null, "1.7", null, "27.8", null, "1.0", null, "36.3", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.3", null, "6.2", null, "0.5", null, "6.5", null, "0.4", null, "6.5", null, "0.3", null, "5.7", null, "0.4", null, "6.0", null, "0.4", null, "6.8", null, "0.3", null, "7.5", null, "0.5", null, "6.5", null, "0.5", null, "6.6", null, "0.4", null, "6.5", null, "0.3", null, "6.3", null, "0.4", null, "6.6", null, "0.4", null, "5.7", null, "0.4", null, "4.4", null, "0.4", null, "3.4", null, "0.3", null, "1.8", null, "0.2", null, "1.7", null, "0.3", null, "12.6", null, "0.5", null, "4.0", null, "0.2", null, "22.1", null, "0.5", null, "8.2", null, "0.5", null, "39.0", null, "0.6", null, "80.4", null, "0.6", null, "77.9", null, "0.5", null, "74.2", null, "0.6", null, "23.6", null, "0.6", null, "21.0", null, "0.6", null, "16.9", null, "0.5", null, "6.9", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.4", null, "-888888888.0", "(X)", "413952", null, "7502", null, "21949", null, "1908", null, "27553", null, "2364", null, "27960", null, "2371", null, "28798", null, "2567", null, "24550", null, "2254", null, "25289", null, "2198", null, "28407", null, "2204", null, "32168", null, "3348", null, "27179", null, "2657", null, "27821", null, "2049", null, "27844", null, "1543", null, "25026", null, "2314", null, "27135", null, "2350", null, "21118", null, "1690", null, "17661", null, "1949", null, "12285", null, "1236", null, "6569", null, "1021", null, "4640", null, "894", null, "55513", null, "2737", null, "17635", null, "2016", null, "95097", null, "4099", null, "35713", null, "2551", null, "166391", null, "5216", null, "330482", null, "5590", null, "318855", null, "5166", null, "302050", null, "4898", null, "89408", null, "2570", null, "79649", null, "2409", null, "62273", null, "1801", null, "23494", null, "1443", null, "38.3", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.3", null, "0.4", null, "6.7", null, "0.6", null, "6.8", null, "0.5", null, "7.0", null, "0.6", null, "5.9", null, "0.5", null, "6.1", null, "0.5", null, "6.9", null, "0.5", null, "7.8", null, "0.8", null, "6.6", null, "0.6", null, "6.7", null, "0.5", null, "6.7", null, "0.4", null, "6.0", null, "0.6", null, "6.6", null, "0.6", null, "5.1", null, "0.4", null, "4.3", null, "0.5", null, "3.0", null, "0.3", null, "1.6", null, "0.2", null, "1.1", null, "0.2", null, "13.4", null, "0.6", null, "4.3", null, "0.5", null, "23.0", null, "0.7", null, "8.6", null, "0.6", null, "40.2", null, "0.8", null, "79.8", null, "0.7", null, "77.0", null, "0.7", null, "73.0", null, "0.8", null, "21.6", null, "0.7", null, "19.2", null, "0.6", null, "15.0", null, "0.5", null, "5.7", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "407733", null, "7765", null, "22677", null, "2085", null, "23196", null, "2461", null, "25175", null, "2423", null, "24714", null, "2133", null, "22264", null, "2182", null, "24352", null, "2168", null, "27293", null, "1816", null, "29061", null, "2293", null, "26548", null, "2266", null, "26192", null, "1867", null, "25286", null, "1666", null, "26801", null, "2188", null, "27194", null, "2102", null, "25625", null, "2144", null, "18400", null, "2056", null, "15449", null, "1531", null, "8584", null, "1101", null, "8922", null, "1721", null, "48371", null, "2724", null, "15494", null, "1562", null, "86542", null, "3499", null, "31484", null, "2557", null, "154232", null, "4536", null, "330562", null, "5765", null, "321191", null, "5684", null, "307256", null, "5653", null, "104174", null, "3305", null, "92920", null, "3222", null, "76980", null, "2618", null, "32955", null, "1790", null, "40.9", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.6", null, "0.5", null, "5.7", null, "0.6", null, "6.2", null, "0.6", null, "6.1", null, "0.5", null, "5.5", null, "0.5", null, "6.0", null, "0.5", null, "6.7", null, "0.4", null, "7.1", null, "0.5", null, "6.5", null, "0.6", null, "6.4", null, "0.4", null, "6.2", null, "0.4", null, "6.6", null, "0.5", null, "6.7", null, "0.5", null, "6.3", null, "0.5", null, "4.5", null, "0.5", null, "3.8", null, "0.4", null, "2.1", null, "0.3", null, "2.2", null, "0.4", null, "11.9", null, "0.6", null, "3.8", null, "0.4", null, "21.2", null, "0.6", null, "7.7", null, "0.6", null, "37.8", null, "0.8", null, "81.1", null, "0.7", null, "78.8", null, "0.6", null, "75.4", null, "0.7", null, "25.5", null, "0.8", null, "22.8", null, "0.8", null, "18.9", null, "0.6", null, "8.1", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "24", "06"], ["5001900US2407", "Congressional District 7 (119th Congress), Maryland", "741484", null, "12144", null, "44366", null, "2523", null, "40433", null, "4208", null, "42463", null, "3979", null, "46510", null, "3133", null, "46995", null, "2952", null, "57278", null, "2737", null, "67880", null, "3008", null, "61425", null, "4277", null, "47462", null, "3888", null, "41249", null, "2557", null, "38324", null, "1977", null, "41493", null, "3189", null, "47797", null, "3433", null, "37951", null, "2400", null, "32709", null, "2958", null, "24505", null, "2303", null, "11007", null, "1484", null, "11637", null, "1647", null, "82896", null, "3758", null, "26530", null, "1670", null, "153792", null, "5637", null, "66975", null, "3214", null, "327550", null, "7025", null, "605834", null, "8732", null, "587692", null, "8380", null, "558983", null, "7943", null, "165606", null, "4619", null, "146758", null, "4104", null, "117809", null, "3266", null, "47149", null, "2068", null, "37.0", null, "0.4", null, "87.3", null, "1.7", null, "57.8", null, "1.3", null, "25.1", null, "0.8", null, "32.7", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.0", null, "0.3", null, "5.5", null, "0.5", null, "5.7", null, "0.5", null, "6.3", null, "0.4", null, "6.3", null, "0.4", null, "7.7", null, "0.4", null, "9.2", null, "0.4", null, "8.3", null, "0.5", null, "6.4", null, "0.5", null, "5.6", null, "0.3", null, "5.2", null, "0.2", null, "5.6", null, "0.4", null, "6.4", null, "0.5", null, "5.1", null, "0.3", null, "4.4", null, "0.4", null, "3.3", null, "0.3", null, "1.5", null, "0.2", null, "1.6", null, "0.2", null, "11.2", null, "0.4", null, "3.6", null, "0.2", null, "20.7", null, "0.5", null, "9.0", null, "0.4", null, "44.2", null, "0.6", null, "81.7", null, "0.5", null, "79.3", null, "0.5", null, "75.4", null, "0.6", null, "22.3", null, "0.7", null, "19.8", null, "0.6", null, "15.9", null, "0.5", null, "6.4", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "2.0", null, "-888888888.0", "(X)", "345641", null, "6353", null, "22090", null, "1617", null, "20356", null, "2663", null, "20715", null, "2843", null, "23557", null, "2050", null, "22190", null, "1741", null, "27454", null, "1895", null, "33105", null, "1914", null, "28781", null, "2916", null, "22390", null, "2608", null, "18296", null, "1383", null, "17857", null, "1197", null, "19164", null, "2046", null, "22160", null, "2265", null, "15532", null, "1562", null, "15514", null, "1718", null, "9401", null, "1139", null, "3877", null, "829", null, "3202", null, "890", null, "41071", null, "1961", null, "13981", null, "1309", null, "77142", null, "3237", null, "31766", null, "2015", null, "157477", null, "4631", null, "278236", null, "5095", null, "268499", null, "4970", null, "254644", null, "4905", null, "69686", null, "2976", null, "61060", null, "2665", null, "47526", null, "1906", null, "16480", null, "906", null, "35.5", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.4", null, "0.4", null, "5.9", null, "0.8", null, "6.0", null, "0.8", null, "6.8", null, "0.5", null, "6.4", null, "0.5", null, "7.9", null, "0.5", null, "9.6", null, "0.5", null, "8.3", null, "0.8", null, "6.5", null, "0.8", null, "5.3", null, "0.4", null, "5.2", null, "0.3", null, "5.5", null, "0.6", null, "6.4", null, "0.7", null, "4.5", null, "0.5", null, "4.5", null, "0.5", null, "2.7", null, "0.3", null, "1.1", null, "0.2", null, "0.9", null, "0.3", null, "11.9", null, "0.5", null, "4.0", null, "0.4", null, "22.3", null, "0.7", null, "9.2", null, "0.5", null, "45.6", null, "0.9", null, "80.5", null, "0.6", null, "77.7", null, "0.7", null, "73.7", null, "0.9", null, "20.2", null, "0.9", null, "17.7", null, "0.8", null, "13.8", null, "0.6", null, "4.8", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "395843", null, "7768", null, "22276", null, "1812", null, "20077", null, "3017", null, "21748", null, "2677", null, "22953", null, "2156", null, "24805", null, "2292", null, "29824", null, "1622", null, "34775", null, "1754", null, "32644", null, "2492", null, "25072", null, "2530", null, "22953", null, "1758", null, "20467", null, "1467", null, "22329", null, "2213", null, "25637", null, "2407", null, "22419", null, "1828", null, "17195", null, "1930", null, "15104", null, "1821", null, "7130", null, "1233", null, "8435", null, "1391", null, "41825", null, "2676", null, "12549", null, "1267", null, "76650", null, "3974", null, "35209", null, "2710", null, "170073", null, "4218", null, "327598", null, "5447", null, "319193", null, "5282", null, "304339", null, "4763", null, "95920", null, "2916", null, "85698", null, "2854", null, "70283", null, "2006", null, "30669", null, "1743", null, "38.0", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.6", null, "0.4", null, "5.1", null, "0.7", null, "5.5", null, "0.7", null, "5.8", null, "0.5", null, "6.3", null, "0.6", null, "7.5", null, "0.4", null, "8.8", null, "0.4", null, "8.2", null, "0.6", null, "6.3", null, "0.6", null, "5.8", null, "0.4", null, "5.2", null, "0.4", null, "5.6", null, "0.6", null, "6.5", null, "0.6", null, "5.7", null, "0.5", null, "4.3", null, "0.5", null, "3.8", null, "0.5", null, "1.8", null, "0.3", null, "2.1", null, "0.3", null, "10.6", null, "0.6", null, "3.2", null, "0.3", null, "19.4", null, "0.7", null, "8.9", null, "0.6", null, "43.0", null, "0.7", null, "82.8", null, "0.7", null, "80.6", null, "0.7", null, "76.9", null, "0.9", null, "24.2", null, "0.8", null, "21.6", null, "0.7", null, "17.8", null, "0.5", null, "7.7", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "24", "07"], ["5001900US2408", "Congressional District 8 (119th Congress), Maryland", "773463", null, "13577", null, "41588", null, "2844", null, "44819", null, "3845", null, "52306", null, "4394", null, "49128", null, "2716", null, "43400", null, "3325", null, "40866", null, "3041", null, "44460", null, "2786", null, "52816", null, "3972", null, "56595", null, "4066", null, "48897", null, "2776", null, "50722", null, "2309", null, "52868", null, "3627", null, "46489", null, "3330", null, "43669", null, "2525", null, "35493", null, "2847", null, "30037", null, "2521", null, "21047", null, "2272", null, "18263", null, "1996", null, "97125", null, "4375", null, "31849", null, "2016", null, "170562", null, "6326", null, "60679", null, "3949", null, "287265", null, "8170", null, "624189", null, "9509", null, "602901", null, "9662", null, "579557", null, "9013", null, "194998", null, "4769", null, "175252", null, "4047", null, "148509", null, "3805", null, "69347", null, "2664", null, "41.7", null, "0.5", null, "92.9", null, "1.6", null, "70.2", null, "2.0", null, "32.7", null, "1.2", null, "37.5", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.3", null, "5.8", null, "0.5", null, "6.8", null, "0.6", null, "6.4", null, "0.3", null, "5.6", null, "0.4", null, "5.3", null, "0.4", null, "5.7", null, "0.3", null, "6.8", null, "0.5", null, "7.3", null, "0.5", null, "6.3", null, "0.3", null, "6.6", null, "0.3", null, "6.8", null, "0.5", null, "6.0", null, "0.4", null, "5.6", null, "0.3", null, "4.6", null, "0.4", null, "3.9", null, "0.3", null, "2.7", null, "0.3", null, "2.4", null, "0.3", null, "12.6", null, "0.5", null, "4.1", null, "0.2", null, "22.1", null, "0.6", null, "7.8", null, "0.5", null, "37.1", null, "0.6", null, "80.7", null, "0.6", null, "77.9", null, "0.6", null, "74.9", null, "0.7", null, "25.2", null, "0.7", null, "22.7", null, "0.6", null, "19.2", null, "0.5", null, "9.0", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.2", null, "-888888888.0", "(X)", "2.4", null, "-888888888.0", "(X)", "372430", null, "7369", null, "21643", null, "1965", null, "22544", null, "2382", null, "25270", null, "2783", null, "24613", null, "1969", null, "21453", null, "2032", null, "20483", null, "1761", null, "21468", null, "1961", null, "26911", null, "2261", null, "26484", null, "2499", null, "23702", null, "1794", null, "24143", null, "1431", null, "24854", null, "2139", null, "22512", null, "2096", null, "20203", null, "1744", null, "17182", null, "1697", null, "13472", null, "1116", null, "8471", null, "1274", null, "7022", null, "1094", null, "47814", null, "2679", null, "16102", null, "1551", null, "85559", null, "3878", null, "29964", null, "2552", null, "141412", null, "5133", null, "297263", null, "5374", null, "286871", null, "5303", null, "274977", null, "4693", null, "88862", null, "2658", null, "78654", null, "2478", null, "66350", null, "2028", null, "28965", null, "1363", null, "40.5", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.8", null, "0.5", null, "6.1", null, "0.6", null, "6.8", null, "0.7", null, "6.6", null, "0.5", null, "5.8", null, "0.5", null, "5.5", null, "0.4", null, "5.8", null, "0.5", null, "7.2", null, "0.6", null, "7.1", null, "0.6", null, "6.4", null, "0.5", null, "6.5", null, "0.4", null, "6.7", null, "0.6", null, "6.0", null, "0.6", null, "5.4", null, "0.5", null, "4.6", null, "0.5", null, "3.6", null, "0.3", null, "2.3", null, "0.3", null, "1.9", null, "0.3", null, "12.8", null, "0.6", null, "4.3", null, "0.4", null, "23.0", null, "0.8", null, "8.0", null, "0.6", null, "38.0", null, "0.9", null, "79.8", null, "0.8", null, "77.0", null, "0.8", null, "73.8", null, "0.9", null, "23.9", null, "0.8", null, "21.1", null, "0.7", null, "17.8", null, "0.6", null, "7.8", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "401033", null, "7830", null, "19945", null, "1761", null, "22275", null, "2613", null, "27036", null, "2923", null, "24515", null, "1705", null, "21947", null, "1903", null, "20383", null, "1827", null, "22992", null, "1563", null, "25905", null, "2888", null, "30111", null, "2757", null, "25195", null, "1854", null, "26579", null, "1560", null, "28014", null, "2420", null, "23977", null, "2229", null, "23466", null, "1670", null, "18311", null, "1842", null, "16565", null, "2112", null, "12576", null, "1613", null, "11241", null, "1602", null, "49311", null, "2760", null, "15747", null, "1195", null, "85003", null, "3375", null, "30715", null, "2217", null, "145853", null, "4432", null, "326926", null, "5628", null, "316030", null, "5654", null, "304580", null, "5489", null, "106136", null, "3395", null, "96598", null, "2945", null, "82159", null, "2587", null, "40382", null, "1759", null, "42.4", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.0", null, "0.4", null, "5.6", null, "0.6", null, "6.7", null, "0.7", null, "6.1", null, "0.4", null, "5.5", null, "0.4", null, "5.1", null, "0.4", null, "5.7", null, "0.4", null, "6.5", null, "0.7", null, "7.5", null, "0.7", null, "6.3", null, "0.4", null, "6.6", null, "0.4", null, "7.0", null, "0.6", null, "6.0", null, "0.6", null, "5.9", null, "0.4", null, "4.6", null, "0.5", null, "4.1", null, "0.5", null, "3.1", null, "0.4", null, "2.8", null, "0.4", null, "12.3", null, "0.6", null, "3.9", null, "0.3", null, "21.2", null, "0.6", null, "7.7", null, "0.5", null, "36.4", null, "0.7", null, "81.5", null, "0.7", null, "78.8", null, "0.6", null, "75.9", null, "0.6", null, "26.5", null, "0.9", null, "24.1", null, "0.7", null, "20.5", null, "0.6", null, "10.1", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "24", "08"], ["5001900US2501", "Congressional District 1 (119th Congress), Massachusetts", "779993", null, "8095", null, "37099", null, "1981", null, "37011", null, "3622", null, "47444", null, "3910", null, "51615", null, "3089", null, "51875", null, "2603", null, "44821", null, "2205", null, "49812", null, "2107", null, "52941", null, "3881", null, "53386", null, "3877", null, "43165", null, "2531", null, "42794", null, "1840", null, "47626", null, "3217", null, "57953", null, "2966", null, "54924", null, "3403", null, "39870", null, "3223", null, "32303", null, "2457", null, "17819", null, "2225", null, "17535", null, "2049", null, "84455", null, "3275", null, "28940", null, "1882", null, "150494", null, "4161", null, "74550", null, "2985", null, "304450", null, "5306", null, "649200", null, "6842", null, "629499", null, "5916", null, "593203", null, "6489", null, "220404", null, "4425", null, "197238", null, "4228", null, "162451", null, "2710", null, "67657", null, "1715", null, "41.5", null, "0.5", null, "93.1", null, "1.2", null, "67.0", null, "1.1", null, "34.8", null, "0.7", null, "32.2", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.8", null, "0.2", null, "4.7", null, "0.5", null, "6.1", null, "0.5", null, "6.6", null, "0.4", null, "6.7", null, "0.3", null, "5.7", null, "0.3", null, "6.4", null, "0.3", null, "6.8", null, "0.5", null, "6.8", null, "0.5", null, "5.5", null, "0.3", null, "5.5", null, "0.2", null, "6.1", null, "0.4", null, "7.4", null, "0.4", null, "7.0", null, "0.4", null, "5.1", null, "0.4", null, "4.1", null, "0.3", null, "2.3", null, "0.3", null, "2.2", null, "0.3", null, "10.8", null, "0.4", null, "3.7", null, "0.2", null, "19.3", null, "0.4", null, "9.6", null, "0.4", null, "39.0", null, "0.5", null, "83.2", null, "0.5", null, "80.7", null, "0.4", null, "76.1", null, "0.6", null, "28.3", null, "0.6", null, "25.3", null, "0.6", null, "20.8", null, "0.4", null, "8.7", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.4", null, "-888888888.0", "(X)", "376164", null, "4815", null, "18222", null, "1098", null, "18103", null, "2360", null, "24677", null, "2353", null, "24507", null, "1856", null, "24359", null, "1657", null, "23107", null, "1547", null, "24093", null, "1282", null, "26349", null, "2948", null, "26808", null, "2710", null, "21285", null, "1739", null, "20866", null, "1343", null, "22691", null, "2178", null, "27908", null, "1997", null, "26187", null, "2286", null, "18953", null, "2050", null, "15017", null, "1456", null, "6676", null, "1101", null, "6356", null, "1182", null, "42780", null, "2130", null, "13527", null, "1117", null, "74529", null, "2656", null, "35339", null, "2114", null, "149223", null, "3166", null, "309903", null, "4461", null, "301635", null, "4225", null, "283132", null, "4463", null, "101097", null, "2637", null, "90948", null, "2530", null, "73189", null, "1624", null, "28049", null, "1144", null, "40.7", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.8", null, "0.3", null, "4.8", null, "0.6", null, "6.6", null, "0.6", null, "6.5", null, "0.5", null, "6.5", null, "0.4", null, "6.1", null, "0.4", null, "6.4", null, "0.3", null, "7.0", null, "0.8", null, "7.1", null, "0.7", null, "5.7", null, "0.4", null, "5.5", null, "0.4", null, "6.0", null, "0.6", null, "7.4", null, "0.5", null, "7.0", null, "0.6", null, "5.0", null, "0.6", null, "4.0", null, "0.4", null, "1.8", null, "0.3", null, "1.7", null, "0.3", null, "11.4", null, "0.5", null, "3.6", null, "0.3", null, "19.8", null, "0.6", null, "9.4", null, "0.5", null, "39.7", null, "0.6", null, "82.4", null, "0.7", null, "80.2", null, "0.6", null, "75.3", null, "0.8", null, "26.9", null, "0.7", null, "24.2", null, "0.7", null, "19.5", null, "0.4", null, "7.5", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "403829", null, "4798", null, "18877", null, "1536", null, "18908", null, "2455", null, "22767", null, "2650", null, "27108", null, "2009", null, "27516", null, "2106", null, "21714", null, "1544", null, "25719", null, "1780", null, "26592", null, "2151", null, "26578", null, "2300", null, "21880", null, "1494", null, "21928", null, "1069", null, "24935", null, "2023", null, "30045", null, "1988", null, "28737", null, "2235", null, "20917", null, "2311", null, "17286", null, "1544", null, "11143", null, "1714", null, "11179", null, "1439", null, "41675", null, "1891", null, "15413", null, "1509", null, "75965", null, "2997", null, "39211", null, "2134", null, "155227", null, "3325", null, "339297", null, "3773", null, "327864", null, "3188", null, "310071", null, "3552", null, "119307", null, "2780", null, "106290", null, "2732", null, "89262", null, "1702", null, "39608", null, "1147", null, "42.2", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.7", null, "0.4", null, "4.7", null, "0.6", null, "5.6", null, "0.6", null, "6.7", null, "0.5", null, "6.8", null, "0.5", null, "5.4", null, "0.4", null, "6.4", null, "0.4", null, "6.6", null, "0.5", null, "6.6", null, "0.6", null, "5.4", null, "0.4", null, "5.4", null, "0.3", null, "6.2", null, "0.5", null, "7.4", null, "0.5", null, "7.1", null, "0.6", null, "5.2", null, "0.6", null, "4.3", null, "0.4", null, "2.8", null, "0.4", null, "2.8", null, "0.4", null, "10.3", null, "0.4", null, "3.8", null, "0.4", null, "18.8", null, "0.6", null, "9.7", null, "0.5", null, "38.4", null, "0.6", null, "84.0", null, "0.6", null, "81.2", null, "0.6", null, "76.8", null, "0.8", null, "29.5", null, "0.7", null, "26.3", null, "0.7", null, "22.1", null, "0.5", null, "9.8", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "25", "01"], ["5001900US2502", "Congressional District 2 (119th Congress), Massachusetts", "801772", null, "11342", null, "36251", null, "2421", null, "39656", null, "3379", null, "44641", null, "3572", null, "60270", null, "2947", null, "60939", null, "3320", null, "47977", null, "3100", null, "51425", null, "2864", null, "53550", null, "3454", null, "48973", null, "3922", null, "45624", null, "2812", null, "51518", null, "2784", null, "51249", null, "3154", null, "60239", null, "3581", null, "50589", null, "2423", null, "39301", null, "2801", null, "28886", null, "2967", null, "16763", null, "1809", null, "13921", null, "1739", null, "84297", null, "4418", null, "27351", null, "1907", null, "147899", null, "5458", null, "93858", null, "3360", null, "323134", null, "6774", null, "673171", null, "8850", null, "653873", null, "8242", null, "604358", null, "8282", null, "209699", null, "5341", null, "186687", null, "4991", null, "149460", null, "4045", null, "59570", null, "2574", null, "40.7", null, "0.8", null, "98.9", null, "1.4", null, "59.0", null, "1.3", null, "29.6", null, "1.0", null, "29.3", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.5", null, "0.3", null, "4.9", null, "0.4", null, "5.6", null, "0.4", null, "7.5", null, "0.4", null, "7.6", null, "0.4", null, "6.0", null, "0.4", null, "6.4", null, "0.4", null, "6.7", null, "0.4", null, "6.1", null, "0.5", null, "5.7", null, "0.3", null, "6.4", null, "0.3", null, "6.4", null, "0.4", null, "7.5", null, "0.4", null, "6.3", null, "0.3", null, "4.9", null, "0.3", null, "3.6", null, "0.4", null, "2.1", null, "0.2", null, "1.7", null, "0.2", null, "10.5", null, "0.5", null, "3.4", null, "0.2", null, "18.4", null, "0.5", null, "11.7", null, "0.4", null, "40.3", null, "0.6", null, "84.0", null, "0.5", null, "81.6", null, "0.5", null, "75.4", null, "0.6", null, "26.2", null, "0.7", null, "23.3", null, "0.6", null, "18.6", null, "0.5", null, "7.4", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.3", null, "-888888888.0", "(X)", "398697", null, "6481", null, "20121", null, "1521", null, "20714", null, "2735", null, "23240", null, "2827", null, "30363", null, "1642", null, "32623", null, "2177", null, "24530", null, "2053", null, "26577", null, "1680", null, "26205", null, "2403", null, "23898", null, "2316", null, "22193", null, "1650", null, "26098", null, "1915", null, "25884", null, "2186", null, "27982", null, "2547", null, "25112", null, "1607", null, "17858", null, "1708", null, "13909", null, "1699", null, "6832", null, "1092", null, "4558", null, "1077", null, "43954", null, "3387", null, "14044", null, "1398", null, "78119", null, "4147", null, "48942", null, "2309", null, "164196", null, "3561", null, "330634", null, "5270", null, "320578", null, "4867", null, "295053", null, "4972", null, "96251", null, "3042", null, "85510", null, "3174", null, "68269", null, "2188", null, "25299", null, "1429", null, "39.0", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.0", null, "0.4", null, "5.2", null, "0.7", null, "5.8", null, "0.7", null, "7.6", null, "0.4", null, "8.2", null, "0.6", null, "6.2", null, "0.5", null, "6.7", null, "0.4", null, "6.6", null, "0.6", null, "6.0", null, "0.6", null, "5.6", null, "0.4", null, "6.5", null, "0.5", null, "6.5", null, "0.5", null, "7.0", null, "0.6", null, "6.3", null, "0.4", null, "4.5", null, "0.4", null, "3.5", null, "0.4", null, "1.7", null, "0.3", null, "1.1", null, "0.3", null, "11.0", null, "0.8", null, "3.5", null, "0.3", null, "19.6", null, "0.9", null, "12.3", null, "0.6", null, "41.2", null, "0.7", null, "82.9", null, "0.9", null, "80.4", null, "0.9", null, "74.0", null, "0.9", null, "24.1", null, "0.8", null, "21.4", null, "0.8", null, "17.1", null, "0.6", null, "6.3", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "403075", null, "6252", null, "16130", null, "1782", null, "18942", null, "2024", null, "21401", null, "1875", null, "29907", null, "2191", null, "28316", null, "2199", null, "23447", null, "2045", null, "24848", null, "1951", null, "27345", null, "2122", null, "25075", null, "2446", null, "23431", null, "1911", null, "25420", null, "1621", null, "25365", null, "2144", null, "32257", null, "2123", null, "25477", null, "1809", null, "21443", null, "2021", null, "14977", null, "1984", null, "9931", null, "1349", null, "9363", null, "1289", null, "40343", null, "2137", null, "13307", null, "1489", null, "69780", null, "3063", null, "44916", null, "2292", null, "158938", null, "4451", null, "342537", null, "5350", null, "333295", null, "5230", null, "309305", null, "5415", null, "113448", null, "3445", null, "101177", null, "3158", null, "81191", null, "2700", null, "34271", null, "1905", null, "42.4", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.0", null, "0.4", null, "4.7", null, "0.5", null, "5.3", null, "0.5", null, "7.4", null, "0.5", null, "7.0", null, "0.5", null, "5.8", null, "0.5", null, "6.2", null, "0.5", null, "6.8", null, "0.5", null, "6.2", null, "0.6", null, "5.8", null, "0.5", null, "6.3", null, "0.4", null, "6.3", null, "0.6", null, "8.0", null, "0.5", null, "6.3", null, "0.5", null, "5.3", null, "0.5", null, "3.7", null, "0.5", null, "2.5", null, "0.3", null, "2.3", null, "0.3", null, "10.0", null, "0.5", null, "3.3", null, "0.4", null, "17.3", null, "0.7", null, "11.1", null, "0.5", null, "39.4", null, "0.8", null, "85.0", null, "0.6", null, "82.7", null, "0.7", null, "76.7", null, "0.8", null, "28.1", null, "0.8", null, "25.1", null, "0.8", null, "20.1", null, "0.7", null, "8.5", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "25", "02"], ["5001900US2503", "Congressional District 3 (119th Congress), Massachusetts", "792213", null, "9582", null, "45827", null, "3637", null, "46598", null, "4024", null, "49024", null, "4348", null, "52503", null, "3601", null, "47699", null, "4063", null, "46492", null, "3838", null, "54958", null, "3431", null, "55526", null, "4193", null, "50202", null, "3970", null, "51834", null, "3644", null, "46453", null, "4039", null, "51381", null, "4267", null, "55823", null, "3460", null, "46389", null, "3790", null, "34036", null, "3116", null, "25154", null, "2622", null, "18702", null, "2532", null, "13612", null, "2088", null, "95622", null, "5461", null, "31665", null, "3012", null, "173114", null, "7250", null, "68537", null, "4937", null, "307380", null, "7247", null, "639908", null, "9416", null, "619099", null, "8995", null, "589566", null, "9353", null, "193716", null, "6505", null, "172294", null, "6026", null, "137893", null, "5721", null, "57468", null, "3310", null, "39.8", null, "0.7", null, "98.3", null, "2.7", null, "64.6", null, "2.2", null, "28.7", null, "1.4", null, "36.0", null, "1.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.8", null, "0.4", null, "5.9", null, "0.5", null, "6.2", null, "0.6", null, "6.6", null, "0.4", null, "6.0", null, "0.5", null, "5.9", null, "0.5", null, "6.9", null, "0.4", null, "7.0", null, "0.5", null, "6.3", null, "0.5", null, "6.5", null, "0.5", null, "5.9", null, "0.5", null, "6.5", null, "0.5", null, "7.0", null, "0.4", null, "5.9", null, "0.5", null, "4.3", null, "0.4", null, "3.2", null, "0.3", null, "2.4", null, "0.3", null, "1.7", null, "0.3", null, "12.1", null, "0.7", null, "4.0", null, "0.4", null, "21.9", null, "0.8", null, "8.7", null, "0.6", null, "38.8", null, "0.8", null, "80.8", null, "0.8", null, "78.1", null, "0.8", null, "74.4", null, "0.9", null, "24.5", null, "0.8", null, "21.7", null, "0.8", null, "17.4", null, "0.7", null, "7.3", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.3", null, "-888888888.0", "(X)", "392795", null, "7349", null, "22744", null, "2856", null, "24712", null, "3026", null, "24737", null, "2850", null, "28835", null, "2491", null, "23801", null, "2974", null, "23343", null, "2671", null, "27841", null, "2461", null, "28493", null, "3087", null, "24514", null, "2701", null, "26842", null, "2375", null, "22609", null, "2326", null, "24028", null, "2964", null, "27195", null, "2553", null, "24474", null, "2416", null, "15212", null, "2033", null, "11113", null, "1566", null, "8294", null, "1409", null, "4008", null, "1041", null, "49449", null, "3890", null, "17549", null, "2366", null, "89742", null, "5076", null, "35087", null, "3695", null, "156827", null, "5006", null, "314703", null, "6764", null, "303053", null, "6383", null, "287716", null, "6280", null, "90296", null, "3574", null, "80168", null, "3383", null, "63101", null, "3201", null, "23415", null, "1791", null, "38.6", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.8", null, "0.7", null, "6.3", null, "0.7", null, "6.3", null, "0.7", null, "7.3", null, "0.6", null, "6.1", null, "0.7", null, "5.9", null, "0.7", null, "7.1", null, "0.6", null, "7.3", null, "0.8", null, "6.2", null, "0.7", null, "6.8", null, "0.6", null, "5.8", null, "0.6", null, "6.1", null, "0.8", null, "6.9", null, "0.6", null, "6.2", null, "0.6", null, "3.9", null, "0.5", null, "2.8", null, "0.4", null, "2.1", null, "0.4", null, "1.0", null, "0.3", null, "12.6", null, "1.0", null, "4.5", null, "0.6", null, "22.8", null, "1.1", null, "8.9", null, "0.9", null, "39.9", null, "1.0", null, "80.1", null, "1.2", null, "77.2", null, "1.1", null, "73.2", null, "1.1", null, "23.0", null, "0.9", null, "20.4", null, "0.9", null, "16.1", null, "0.8", null, "6.0", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "399418", null, "7094", null, "23083", null, "2459", null, "21886", null, "2617", null, "24287", null, "2965", null, "23668", null, "2627", null, "23898", null, "2717", null, "23149", null, "2485", null, "27117", null, "2426", null, "27033", null, "2679", null, "25688", null, "2612", null, "24992", null, "2235", null, "23844", null, "2642", null, "27353", null, "2648", null, "28628", null, "2551", null, "21915", null, "2674", null, "18824", null, "1995", null, "14041", null, "1759", null, "10408", null, "1822", null, "9604", null, "1541", null, "46173", null, "3507", null, "14116", null, "2056", null, "83372", null, "4892", null, "33450", null, "3242", null, "150553", null, "5380", null, "325205", null, "5862", null, "316046", null, "5987", null, "301850", null, "5978", null, "103420", null, "4443", null, "92126", null, "4000", null, "74792", null, "3662", null, "34053", null, "2306", null, "41.0", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.8", null, "0.6", null, "5.5", null, "0.6", null, "6.1", null, "0.7", null, "5.9", null, "0.6", null, "6.0", null, "0.7", null, "5.8", null, "0.6", null, "6.8", null, "0.6", null, "6.8", null, "0.7", null, "6.4", null, "0.7", null, "6.3", null, "0.6", null, "6.0", null, "0.7", null, "6.8", null, "0.7", null, "7.2", null, "0.6", null, "5.5", null, "0.7", null, "4.7", null, "0.5", null, "3.5", null, "0.4", null, "2.6", null, "0.5", null, "2.4", null, "0.4", null, "11.6", null, "0.8", null, "3.5", null, "0.5", null, "20.9", null, "1.1", null, "8.4", null, "0.8", null, "37.7", null, "1.2", null, "81.4", null, "1.0", null, "79.1", null, "1.1", null, "75.6", null, "1.2", null, "25.9", null, "1.1", null, "23.1", null, "1.0", null, "18.7", null, "0.9", null, "8.5", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "25", "03"], ["5001900US2504", "Congressional District 4 (119th Congress), Massachusetts", "802402", null, "9575", null, "35306", null, "2655", null, "46272", null, "4017", null, "50272", null, "3213", null, "55156", null, "3751", null, "50842", null, "3474", null, "46164", null, "3829", null, "47411", null, "3314", null, "52426", null, "4307", null, "51515", null, "4552", null, "52468", null, "3219", null, "54054", null, "3649", null, "51144", null, "3619", null, "60169", null, "3812", null, "46358", null, "3327", null, "39690", null, "2964", null, "29803", null, "2563", null, "16073", null, "2042", null, "17279", null, "1876", null, "96544", null, "5127", null, "31560", null, "2616", null, "163410", null, "6248", null, "74438", null, "4126", null, "303514", null, "6698", null, "661825", null, "8110", null, "638992", null, "7948", null, "604005", null, "8327", null, "209372", null, "6407", null, "183551", null, "6340", null, "149203", null, "5211", null, "63155", null, "3207", null, "41.8", null, "0.7", null, "95.0", null, "2.3", null, "63.8", null, "1.9", null, "30.5", null, "1.3", null, "33.4", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.4", null, "0.3", null, "5.8", null, "0.5", null, "6.3", null, "0.4", null, "6.9", null, "0.4", null, "6.3", null, "0.4", null, "5.8", null, "0.5", null, "5.9", null, "0.4", null, "6.5", null, "0.5", null, "6.4", null, "0.6", null, "6.5", null, "0.4", null, "6.7", null, "0.4", null, "6.4", null, "0.5", null, "7.5", null, "0.5", null, "5.8", null, "0.4", null, "4.9", null, "0.4", null, "3.7", null, "0.3", null, "2.0", null, "0.3", null, "2.2", null, "0.2", null, "12.0", null, "0.6", null, "3.9", null, "0.3", null, "20.4", null, "0.7", null, "9.3", null, "0.5", null, "37.8", null, "0.7", null, "82.5", null, "0.6", null, "79.6", null, "0.7", null, "75.3", null, "0.8", null, "26.1", null, "0.8", null, "22.9", null, "0.8", null, "18.6", null, "0.7", null, "7.9", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.6", null, "-888888888.0", "(X)", "390894", null, "6250", null, "17079", null, "1700", null, "24353", null, "2555", null, "25279", null, "2829", null, "27344", null, "2129", null, "24976", null, "2361", null, "23198", null, "2608", null, "22645", null, "1884", null, "26348", null, "2432", null, "25259", null, "2402", null, "24933", null, "1873", null, "26902", null, "2193", null, "24479", null, "2246", null, "30136", null, "2430", null, "23095", null, "2005", null, "19197", null, "1927", null, "12905", null, "1593", null, "5751", null, "951", null, "7015", null, "1154", null, "49632", null, "3319", null, "16931", null, "1632", null, "83642", null, "4125", null, "35389", null, "2922", null, "149770", null, "4318", null, "319022", null, "5650", null, "307252", null, "5586", null, "291949", null, "5231", null, "98099", null, "3324", null, "85395", null, "3405", null, "67963", null, "2714", null, "25671", null, "1827", null, "41.1", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.4", null, "0.4", null, "6.2", null, "0.6", null, "6.5", null, "0.7", null, "7.0", null, "0.5", null, "6.4", null, "0.6", null, "5.9", null, "0.7", null, "5.8", null, "0.5", null, "6.7", null, "0.6", null, "6.5", null, "0.6", null, "6.4", null, "0.5", null, "6.9", null, "0.5", null, "6.3", null, "0.6", null, "7.7", null, "0.6", null, "5.9", null, "0.5", null, "4.9", null, "0.5", null, "3.3", null, "0.4", null, "1.5", null, "0.2", null, "1.8", null, "0.3", null, "12.7", null, "0.8", null, "4.3", null, "0.4", null, "21.4", null, "0.9", null, "9.1", null, "0.7", null, "38.3", null, "0.9", null, "81.6", null, "0.9", null, "78.6", null, "0.9", null, "74.7", null, "1.0", null, "25.1", null, "0.9", null, "21.8", null, "0.9", null, "17.4", null, "0.7", null, "6.6", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "411508", null, "7444", null, "18227", null, "2145", null, "21919", null, "2508", null, "24993", null, "2769", null, "27812", null, "3021", null, "25866", null, "2349", null, "22966", null, "2082", null, "24766", null, "2139", null, "26078", null, "2590", null, "26256", null, "2986", null, "27535", null, "2086", null, "27152", null, "2086", null, "26665", null, "2546", null, "30033", null, "2540", null, "23263", null, "2393", null, "20493", null, "1871", null, "16898", null, "1762", null, "10322", null, "1683", null, "10264", null, "1419", null, "46912", null, "3769", null, "14629", null, "2145", null, "79768", null, "4861", null, "39049", null, "2969", null, "153744", null, "5129", null, "342803", null, "5753", null, "331740", null, "5293", null, "312056", null, "5451", null, "111273", null, "4427", null, "98156", null, "4007", null, "81240", null, "3465", null, "37484", null, "2116", null, "42.5", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.4", null, "0.5", null, "5.3", null, "0.6", null, "6.1", null, "0.6", null, "6.8", null, "0.7", null, "6.3", null, "0.5", null, "5.6", null, "0.5", null, "6.0", null, "0.5", null, "6.3", null, "0.6", null, "6.4", null, "0.7", null, "6.7", null, "0.5", null, "6.6", null, "0.5", null, "6.5", null, "0.6", null, "7.3", null, "0.6", null, "5.7", null, "0.6", null, "5.0", null, "0.5", null, "4.1", null, "0.4", null, "2.5", null, "0.4", null, "2.5", null, "0.3", null, "11.4", null, "0.8", null, "3.6", null, "0.5", null, "19.4", null, "1.0", null, "9.5", null, "0.7", null, "37.4", null, "0.9", null, "83.3", null, "0.9", null, "80.6", null, "1.0", null, "75.8", null, "1.0", null, "27.0", null, "1.1", null, "23.9", null, "1.0", null, "19.7", null, "0.9", null, "9.1", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "25", "04"], ["5001900US2505", "Congressional District 5 (119th Congress), Massachusetts", "790877", null, "9045", null, "37549", null, "3363", null, "43501", null, "3919", null, "41846", null, "3678", null, "54482", null, "3570", null, "52431", null, "3319", null, "57969", null, "4079", null, "61342", null, "4145", null, "58017", null, "3601", null, "57568", null, "4190", null, "54001", null, "3385", null, "54065", null, "3532", null, "47596", null, "4273", null, "43966", null, "3908", null, "38605", null, "3441", null, "32555", null, "3583", null, "23354", null, "2698", null, "17296", null, "2252", null, "14734", null, "1783", null, "85347", null, "4667", null, "27983", null, "2615", null, "150879", null, "6029", null, "78930", null, "4068", null, "341809", null, "7445", null, "658312", null, "9081", null, "639998", null, "9443", null, "602053", null, "9607", null, "170510", null, "7443", null, "152954", null, "6730", null, "126544", null, "5607", null, "55384", null, "3669", null, "38.8", null, "0.8", null, "94.1", null, "2.6", null, "54.0", null, "1.9", null, "24.6", null, "1.3", null, "29.4", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.7", null, "0.4", null, "5.5", null, "0.5", null, "5.3", null, "0.5", null, "6.9", null, "0.4", null, "6.6", null, "0.4", null, "7.3", null, "0.5", null, "7.8", null, "0.5", null, "7.3", null, "0.4", null, "7.3", null, "0.5", null, "6.8", null, "0.4", null, "6.8", null, "0.4", null, "6.0", null, "0.5", null, "5.6", null, "0.5", null, "4.9", null, "0.4", null, "4.1", null, "0.5", null, "3.0", null, "0.3", null, "2.2", null, "0.3", null, "1.9", null, "0.2", null, "10.8", null, "0.6", null, "3.5", null, "0.3", null, "19.1", null, "0.7", null, "10.0", null, "0.5", null, "43.2", null, "0.8", null, "83.2", null, "0.7", null, "80.9", null, "0.7", null, "76.1", null, "0.8", null, "21.6", null, "0.9", null, "19.3", null, "0.8", null, "16.0", null, "0.7", null, "7.0", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.1", null, "-888888888.0", "(X)", "383405", null, "6838", null, "18873", null, "2179", null, "21734", null, "2729", null, "20230", null, "2318", null, "26463", null, "2351", null, "24784", null, "2649", null, "26987", null, "2959", null, "32022", null, "2777", null, "29350", null, "2427", null, "28659", null, "3046", null, "25579", null, "2134", null, "27359", null, "2234", null, "23858", null, "2821", null, "22127", null, "2800", null, "16968", null, "2072", null, "15240", null, "1995", null, "10239", null, "1775", null, "6843", null, "1204", null, "6090", null, "1188", null, "41964", null, "3250", null, "15025", null, "1791", null, "75862", null, "4473", null, "36222", null, "3152", null, "168265", null, "5887", null, "317073", null, "6612", null, "307543", null, "6800", null, "291469", null, "6601", null, "77507", null, "4513", null, "69777", null, "4194", null, "55380", null, "3288", null, "23172", null, "2102", null, "38.3", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.9", null, "0.6", null, "5.7", null, "0.7", null, "5.3", null, "0.6", null, "6.9", null, "0.6", null, "6.5", null, "0.7", null, "7.0", null, "0.7", null, "8.4", null, "0.7", null, "7.7", null, "0.6", null, "7.5", null, "0.8", null, "6.7", null, "0.5", null, "7.1", null, "0.6", null, "6.2", null, "0.7", null, "5.8", null, "0.7", null, "4.4", null, "0.6", null, "4.0", null, "0.5", null, "2.7", null, "0.5", null, "1.8", null, "0.3", null, "1.6", null, "0.3", null, "10.9", null, "0.8", null, "3.9", null, "0.5", null, "19.8", null, "1.1", null, "9.4", null, "0.8", null, "43.9", null, "1.1", null, "82.7", null, "1.0", null, "80.2", null, "1.1", null, "76.0", null, "1.2", null, "20.2", null, "1.2", null, "18.2", null, "1.1", null, "14.4", null, "0.9", null, "6.0", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "407472", null, "7282", null, "18676", null, "2009", null, "21767", null, "2337", null, "21616", null, "2674", null, "28019", null, "2563", null, "27647", null, "2406", null, "30982", null, "2798", null, "29320", null, "2514", null, "28667", null, "2453", null, "28909", null, "2590", null, "28422", null, "2140", null, "26706", null, "2030", null, "23738", null, "2344", null, "21839", null, "2118", null, "21637", null, "2235", null, "17315", null, "2280", null, "13115", null, "1751", null, "10453", null, "1575", null, "8644", null, "1401", null, "43383", null, "3022", null, "12958", null, "1751", null, "75017", null, "3835", null, "42708", null, "3057", null, "173544", null, "4906", null, "341239", null, "6845", null, "332455", null, "6837", null, "310584", null, "6524", null, "93003", null, "4183", null, "83177", null, "3926", null, "71164", null, "3426", null, "32212", null, "2461", null, "39.3", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.6", null, "0.5", null, "5.3", null, "0.6", null, "5.3", null, "0.6", null, "6.9", null, "0.6", null, "6.8", null, "0.6", null, "7.6", null, "0.7", null, "7.2", null, "0.6", null, "7.0", null, "0.6", null, "7.1", null, "0.6", null, "7.0", null, "0.5", null, "6.6", null, "0.5", null, "5.8", null, "0.6", null, "5.4", null, "0.5", null, "5.3", null, "0.6", null, "4.2", null, "0.6", null, "3.2", null, "0.4", null, "2.6", null, "0.4", null, "2.1", null, "0.3", null, "10.6", null, "0.7", null, "3.2", null, "0.4", null, "18.4", null, "0.9", null, "10.5", null, "0.7", null, "42.6", null, "0.9", null, "83.7", null, "0.8", null, "81.6", null, "0.9", null, "76.2", null, "1.0", null, "22.8", null, "1.0", null, "20.4", null, "0.9", null, "17.5", null, "0.8", null, "7.9", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "25", "05"], ["5001900US2506", "Congressional District 6 (119th Congress), Massachusetts", "796651", null, "5960", null, "40988", null, "2655", null, "42216", null, "3386", null, "46522", null, "3684", null, "48231", null, "2667", null, "48879", null, "3298", null, "44430", null, "2688", null, "46666", null, "3087", null, "58381", null, "3449", null, "48661", null, "3643", null, "44543", null, "2770", null, "49721", null, "2848", null, "57290", null, "3928", null, "56411", null, "3705", null, "52993", null, "3391", null, "40557", null, "3271", null, "31137", null, "2699", null, "20792", null, "2472", null, "18233", null, "2281", null, "88738", null, "4142", null, "29172", null, "1868", null, "158898", null, "5553", null, "67938", null, "3746", null, "295248", null, "5980", null, "656040", null, "7234", null, "637753", null, "6778", null, "609385", null, "6534", null, "220123", null, "5896", null, "199645", null, "5724", null, "163712", null, "4893", null, "70162", null, "3232", null, "42.2", null, "0.7", null, "94.4", null, "2.0", null, "68.1", null, "1.9", null, "34.5", null, "1.3", null, "33.5", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.1", null, "0.3", null, "5.3", null, "0.4", null, "5.8", null, "0.5", null, "6.1", null, "0.3", null, "6.1", null, "0.4", null, "5.6", null, "0.3", null, "5.9", null, "0.4", null, "7.3", null, "0.4", null, "6.1", null, "0.5", null, "5.6", null, "0.3", null, "6.2", null, "0.4", null, "7.2", null, "0.5", null, "7.1", null, "0.5", null, "6.7", null, "0.4", null, "5.1", null, "0.4", null, "3.9", null, "0.3", null, "2.6", null, "0.3", null, "2.3", null, "0.3", null, "11.1", null, "0.5", null, "3.7", null, "0.2", null, "19.9", null, "0.7", null, "8.5", null, "0.5", null, "37.1", null, "0.7", null, "82.3", null, "0.7", null, "80.1", null, "0.7", null, "76.5", null, "0.7", null, "27.6", null, "0.8", null, "25.1", null, "0.7", null, "20.6", null, "0.6", null, "8.8", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.3", null, "-888888888.0", "(X)", "386822", null, "5334", null, "21961", null, "1867", null, "20061", null, "2390", null, "24749", null, "2565", null, "23694", null, "1750", null, "24927", null, "1799", null, "23163", null, "1831", null, "22738", null, "2030", null, "28963", null, "2480", null, "23900", null, "2319", null, "21422", null, "1595", null, "23368", null, "1856", null, "28208", null, "3107", null, "27117", null, "2501", null, "23587", null, "2041", null, "19675", null, "1797", null, "13409", null, "1356", null, "8989", null, "1501", null, "6891", null, "1204", null, "44810", null, "2716", null, "13917", null, "1453", null, "80688", null, "3393", null, "34704", null, "2475", null, "147385", null, "3940", null, "314208", null, "5467", null, "306134", null, "5243", null, "292827", null, "5036", null, "99668", null, "3632", null, "90268", null, "3754", null, "72551", null, "2735", null, "29289", null, "1646", null, "40.6", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.7", null, "0.5", null, "5.2", null, "0.6", null, "6.4", null, "0.7", null, "6.1", null, "0.4", null, "6.4", null, "0.4", null, "6.0", null, "0.4", null, "5.9", null, "0.5", null, "7.5", null, "0.6", null, "6.2", null, "0.6", null, "5.5", null, "0.4", null, "6.0", null, "0.5", null, "7.3", null, "0.8", null, "7.0", null, "0.6", null, "6.1", null, "0.5", null, "5.1", null, "0.5", null, "3.5", null, "0.4", null, "2.3", null, "0.4", null, "1.8", null, "0.3", null, "11.6", null, "0.7", null, "3.6", null, "0.4", null, "20.9", null, "0.8", null, "9.0", null, "0.6", null, "38.1", null, "0.8", null, "81.2", null, "0.9", null, "79.1", null, "0.8", null, "75.7", null, "0.8", null, "25.8", null, "0.9", null, "23.3", null, "1.0", null, "18.8", null, "0.7", null, "7.6", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "409829", null, "5121", null, "19027", null, "1705", null, "22155", null, "2089", null, "21773", null, "2565", null, "24537", null, "2027", null, "23952", null, "2343", null, "21267", null, "1588", null, "23928", null, "1695", null, "29418", null, "2497", null, "24761", null, "2306", null, "23121", null, "1790", null, "26353", null, "1730", null, "29082", null, "2240", null, "29294", null, "2370", null, "29406", null, "2307", null, "20882", null, "2190", null, "17728", null, "1931", null, "11803", null, "1774", null, "11342", null, "1628", null, "43928", null, "2840", null, "15255", null, "1485", null, "78210", null, "3621", null, "33234", null, "2503", null, "147863", null, "4006", null, "341832", null, "4773", null, "331619", null, "4445", null, "316558", null, "4227", null, "120455", null, "3405", null, "109377", null, "3196", null, "91161", null, "2749", null, "40873", null, "2179", null, "44.0", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.6", null, "0.4", null, "5.4", null, "0.5", null, "5.3", null, "0.6", null, "6.0", null, "0.5", null, "5.8", null, "0.6", null, "5.2", null, "0.4", null, "5.8", null, "0.4", null, "7.2", null, "0.6", null, "6.0", null, "0.6", null, "5.6", null, "0.4", null, "6.4", null, "0.4", null, "7.1", null, "0.5", null, "7.1", null, "0.6", null, "7.2", null, "0.6", null, "5.1", null, "0.5", null, "4.3", null, "0.5", null, "2.9", null, "0.4", null, "2.8", null, "0.4", null, "10.7", null, "0.6", null, "3.7", null, "0.4", null, "19.1", null, "0.8", null, "8.1", null, "0.6", null, "36.1", null, "0.8", null, "83.4", null, "0.8", null, "80.9", null, "0.8", null, "77.2", null, "0.9", null, "29.4", null, "0.8", null, "26.7", null, "0.8", null, "22.2", null, "0.7", null, "10.0", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "25", "06"], ["5001900US2507", "Congressional District 7 (119th Congress), Massachusetts", "789900", null, "9844", null, "36021", null, "3105", null, "29997", null, "3894", null, "34956", null, "4068", null, "59804", null, "3225", null, "90648", null, "3861", null, "98419", null, "4889", null, "82989", null, "4473", null, "60278", null, "4771", null, "45518", null, "3756", null, "36913", null, "2635", null, "36685", null, "2664", null, "38647", null, "3126", null, "35991", null, "4035", null, "33742", null, "2956", null, "27018", null, "3120", null, "17985", null, "2194", null, "13705", null, "1956", null, "10584", null, "2057", null, "64953", null, "3654", null, "22499", null, "2024", null, "123473", null, "5468", null, "127953", null, "3652", null, "437656", null, "8821", null, "682952", null, "8897", null, "666427", null, "8666", null, "607758", null, "9361", null, "139025", null, "5740", null, "126012", null, "5384", null, "103034", null, "4404", null, "42274", null, "2694", null, "32.5", null, "0.5", null, "94.7", null, "2.5", null, "40.2", null, "1.4", null, "18.3", null, "0.9", null, "21.9", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.6", null, "0.4", null, "3.8", null, "0.5", null, "4.4", null, "0.5", null, "7.6", null, "0.4", null, "11.5", null, "0.5", null, "12.5", null, "0.6", null, "10.5", null, "0.6", null, "7.6", null, "0.6", null, "5.8", null, "0.5", null, "4.7", null, "0.3", null, "4.6", null, "0.3", null, "4.9", null, "0.4", null, "4.6", null, "0.5", null, "4.3", null, "0.4", null, "3.4", null, "0.4", null, "2.3", null, "0.3", null, "1.7", null, "0.2", null, "1.3", null, "0.3", null, "8.2", null, "0.4", null, "2.8", null, "0.3", null, "15.6", null, "0.6", null, "16.2", null, "0.5", null, "55.4", null, "0.9", null, "86.5", null, "0.6", null, "84.4", null, "0.6", null, "76.9", null, "0.7", null, "17.6", null, "0.7", null, "16.0", null, "0.7", null, "13.0", null, "0.6", null, "5.4", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "2.1", null, "-888888888.0", "(X)", "384144", null, "7179", null, "19091", null, "2017", null, "16113", null, "2499", null, "16497", null, "2406", null, "27119", null, "2178", null, "44406", null, "2889", null, "50482", null, "3702", null, "41087", null, "2799", null, "33069", null, "3311", null, "20760", null, "2577", null, "17801", null, "1618", null, "16356", null, "1593", null, "20053", null, "2219", null, "16954", null, "2291", null, "15685", null, "1733", null, "12828", null, "2062", null, "7755", null, "1199", null, "4986", null, "1057", null, "3102", null, "968", null, "32610", null, "2514", null, "11335", null, "1356", null, "63036", null, "3570", null, "60190", null, "2849", null, "216923", null, "6830", null, "329949", null, "6914", null, "321108", null, "6750", null, "294779", null, "7029", null, "61310", null, "3145", null, "56780", null, "2861", null, "44356", null, "2233", null, "15843", null, "1261", null, "31.8", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.0", null, "0.5", null, "4.2", null, "0.6", null, "4.3", null, "0.6", null, "7.1", null, "0.5", null, "11.6", null, "0.7", null, "13.1", null, "0.9", null, "10.7", null, "0.7", null, "8.6", null, "0.8", null, "5.4", null, "0.6", null, "4.6", null, "0.4", null, "4.3", null, "0.4", null, "5.2", null, "0.6", null, "4.4", null, "0.6", null, "4.1", null, "0.5", null, "3.3", null, "0.5", null, "2.0", null, "0.3", null, "1.3", null, "0.3", null, "0.8", null, "0.3", null, "8.5", null, "0.6", null, "3.0", null, "0.4", null, "16.4", null, "0.9", null, "15.7", null, "0.7", null, "56.5", null, "1.2", null, "85.9", null, "0.8", null, "83.6", null, "0.9", null, "76.7", null, "1.0", null, "16.0", null, "0.9", null, "14.8", null, "0.8", null, "11.5", null, "0.6", null, "4.1", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "405756", null, "7095", null, "16930", null, "1900", null, "13884", null, "2744", null, "18459", null, "2657", null, "32685", null, "2309", null, "46242", null, "2943", null, "47937", null, "3049", null, "41902", null, "2997", null, "27209", null, "2832", null, "24758", null, "2673", null, "19112", null, "1876", null, "20329", null, "1608", null, "18594", null, "2250", null, "19037", null, "2563", null, "18057", null, "1950", null, "14190", null, "1858", null, "10230", null, "1683", null, "8719", null, "1579", null, "7482", null, "1489", null, "32343", null, "2660", null, "11164", null, "1498", null, "60437", null, "4085", null, "67763", null, "3050", null, "220733", null, "4985", null, "353003", null, "5789", null, "345319", null, "5913", null, "312979", null, "6259", null, "77715", null, "3949", null, "69232", null, "3800", null, "58678", null, "3072", null, "26431", null, "2010", null, "33.1", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.2", null, "0.4", null, "3.4", null, "0.7", null, "4.5", null, "0.6", null, "8.1", null, "0.6", null, "11.4", null, "0.7", null, "11.8", null, "0.7", null, "10.3", null, "0.7", null, "6.7", null, "0.7", null, "6.1", null, "0.7", null, "4.7", null, "0.5", null, "5.0", null, "0.4", null, "4.6", null, "0.6", null, "4.7", null, "0.6", null, "4.5", null, "0.5", null, "3.5", null, "0.5", null, "2.5", null, "0.4", null, "2.1", null, "0.4", null, "1.8", null, "0.4", null, "8.0", null, "0.6", null, "2.8", null, "0.4", null, "14.9", null, "0.9", null, "16.7", null, "0.7", null, "54.4", null, "0.9", null, "87.0", null, "0.8", null, "85.1", null, "0.9", null, "77.1", null, "1.0", null, "19.2", null, "0.9", null, "17.1", null, "0.9", null, "14.5", null, "0.8", null, "6.5", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "25", "07"], ["5001900US2508", "Congressional District 8 (119th Congress), Massachusetts", "784982", null, "12162", null, "45500", null, "3211", null, "38896", null, "3521", null, "38391", null, "2818", null, "35447", null, "2895", null, "48617", null, "3291", null, "63667", null, "4169", null, "67905", null, "4608", null, "59045", null, "4824", null, "55996", null, "4330", null, "41933", null, "3608", null, "46497", null, "3923", null, "52278", null, "3934", null, "50056", null, "3563", null, "43198", null, "3441", null, "36377", null, "3249", null, "24691", null, "2069", null, "19178", null, "2140", null, "17310", null, "1842", null, "77287", null, "4029", null, "21970", null, "2364", null, "144757", null, "5349", null, "62094", null, "3915", null, "330677", null, "7843", null, "655919", null, "11328", null, "640225", null, "10761", null, "617188", null, "10802", null, "190810", null, "6408", null, "171628", null, "5435", null, "140754", null, "5189", null, "61179", null, "2906", null, "39.6", null, "0.6", null, "94.9", null, "2.4", null, "57.2", null, "1.7", null, "28.2", null, "1.2", null, "29.0", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.8", null, "0.4", null, "5.0", null, "0.4", null, "4.9", null, "0.4", null, "4.5", null, "0.4", null, "6.2", null, "0.4", null, "8.1", null, "0.5", null, "8.7", null, "0.6", null, "7.5", null, "0.6", null, "7.1", null, "0.5", null, "5.3", null, "0.5", null, "5.9", null, "0.5", null, "6.7", null, "0.5", null, "6.4", null, "0.4", null, "5.5", null, "0.4", null, "4.6", null, "0.4", null, "3.1", null, "0.3", null, "2.4", null, "0.3", null, "2.2", null, "0.2", null, "9.8", null, "0.5", null, "2.8", null, "0.3", null, "18.4", null, "0.6", null, "7.9", null, "0.5", null, "42.1", null, "0.7", null, "83.6", null, "0.6", null, "81.6", null, "0.6", null, "78.6", null, "0.6", null, "24.3", null, "0.7", null, "21.9", null, "0.6", null, "17.9", null, "0.6", null, "7.8", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.8", null, "-888888888.0", "(X)", "382318", null, "7514", null, "22636", null, "1841", null, "20659", null, "2918", null, "19644", null, "1984", null, "18016", null, "2169", null, "24300", null, "2264", null, "28711", null, "2544", null, "36624", null, "2679", null, "29322", null, "3039", null, "27271", null, "2842", null, "21989", null, "2129", null, "23453", null, "2456", null, "24368", null, "2657", null, "24664", null, "2531", null, "19895", null, "2386", null, "15902", null, "1800", null, "11822", null, "1540", null, "7978", null, "1497", null, "5064", null, "1085", null, "40303", null, "3195", null, "10420", null, "1369", null, "73359", null, "3480", null, "31896", null, "2729", null, "164244", null, "4955", null, "316612", null, "6821", null, "308959", null, "6450", null, "296788", null, "6376", null, "85325", null, "3827", null, "77031", null, "3667", null, "60661", null, "3042", null, "24864", null, "1846", null, "38.6", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.9", null, "0.5", null, "5.4", null, "0.7", null, "5.1", null, "0.5", null, "4.7", null, "0.5", null, "6.4", null, "0.6", null, "7.5", null, "0.6", null, "9.6", null, "0.7", null, "7.7", null, "0.8", null, "7.1", null, "0.7", null, "5.8", null, "0.6", null, "6.1", null, "0.6", null, "6.4", null, "0.7", null, "6.5", null, "0.7", null, "5.2", null, "0.6", null, "4.2", null, "0.5", null, "3.1", null, "0.4", null, "2.1", null, "0.4", null, "1.3", null, "0.3", null, "10.5", null, "0.8", null, "2.7", null, "0.3", null, "19.2", null, "0.8", null, "8.3", null, "0.7", null, "43.0", null, "1.0", null, "82.8", null, "0.9", null, "80.8", null, "0.8", null, "77.6", null, "0.9", null, "22.3", null, "0.9", null, "20.1", null, "0.9", null, "15.9", null, "0.7", null, "6.5", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "402664", null, "8065", null, "22864", null, "2234", null, "18237", null, "2539", null, "18747", null, "2030", null, "17431", null, "1981", null, "24317", null, "2397", null, "34956", null, "2829", null, "31281", null, "2817", null, "29723", null, "2826", null, "28725", null, "2748", null, "19944", null, "2185", null, "23044", null, "2288", null, "27910", null, "2709", null, "25392", null, "2170", null, "23303", null, "2215", null, "20475", null, "2455", null, "12869", null, "1383", null, "11200", null, "1321", null, "12246", null, "1630", null, "36984", null, "3156", null, "11550", null, "1691", null, "71398", null, "4319", null, "30198", null, "2826", null, "166433", null, "4916", null, "339307", null, "7015", null, "331266", null, "6805", null, "320400", null, "6812", null, "105485", null, "3986", null, "94597", null, "3367", null, "80093", null, "3369", null, "36315", null, "1903", null, "40.6", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.7", null, "0.5", null, "4.5", null, "0.6", null, "4.7", null, "0.5", null, "4.3", null, "0.5", null, "6.0", null, "0.6", null, "8.7", null, "0.7", null, "7.8", null, "0.7", null, "7.4", null, "0.7", null, "7.1", null, "0.7", null, "5.0", null, "0.5", null, "5.7", null, "0.6", null, "6.9", null, "0.7", null, "6.3", null, "0.5", null, "5.8", null, "0.5", null, "5.1", null, "0.6", null, "3.2", null, "0.3", null, "2.8", null, "0.3", null, "3.0", null, "0.4", null, "9.2", null, "0.7", null, "2.9", null, "0.4", null, "17.7", null, "0.9", null, "7.5", null, "0.7", null, "41.3", null, "0.9", null, "84.3", null, "0.9", null, "82.3", null, "0.9", null, "79.6", null, "1.0", null, "26.2", null, "0.9", null, "23.5", null, "0.8", null, "19.9", null, "0.8", null, "9.0", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "25", "08"], ["5001900US2509", "Congressional District 9 (119th Congress), Massachusetts", "797381", null, "8375", null, "32455", null, "2613", null, "35957", null, "3270", null, "43744", null, "3890", null, "45351", null, "2918", null, "43100", null, "3383", null, "42657", null, "3229", null, "41652", null, "3166", null, "46590", null, "3701", null, "50589", null, "4255", null, "42991", null, "2959", null, "50760", null, "2932", null, "58885", null, "3839", null, "59759", null, "4064", null, "62668", null, "3490", null, "51429", null, "3394", null, "42330", null, "2757", null, "26207", null, "2640", null, "20257", null, "2536", null, "79701", null, "3555", null, "29685", null, "2210", null, "141841", null, "4746", null, "58766", null, "3557", null, "269939", null, "6503", null, "676494", null, "7785", null, "655540", null, "7336", null, "630165", null, "7178", null, "262650", null, "5873", null, "237676", null, "5087", null, "202891", null, "3874", null, "88794", null, "2566", null, "46.7", null, "0.6", null, "93.8", null, "2.2", null, "76.2", null, "1.7", null, "44.8", null, "1.2", null, "31.3", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.1", null, "0.3", null, "4.5", null, "0.4", null, "5.5", null, "0.5", null, "5.7", null, "0.4", null, "5.4", null, "0.4", null, "5.3", null, "0.4", null, "5.2", null, "0.4", null, "5.8", null, "0.4", null, "6.3", null, "0.5", null, "5.4", null, "0.4", null, "6.4", null, "0.4", null, "7.4", null, "0.5", null, "7.5", null, "0.5", null, "7.9", null, "0.4", null, "6.4", null, "0.4", null, "5.3", null, "0.3", null, "3.3", null, "0.3", null, "2.5", null, "0.3", null, "10.0", null, "0.4", null, "3.7", null, "0.3", null, "17.8", null, "0.5", null, "7.4", null, "0.4", null, "33.9", null, "0.7", null, "84.8", null, "0.5", null, "82.2", null, "0.5", null, "79.0", null, "0.7", null, "32.9", null, "0.7", null, "29.8", null, "0.7", null, "25.4", null, "0.5", null, "11.1", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.5", null, "-888888888.0", "(X)", "385900", null, "6115", null, "16352", null, "1625", null, "17890", null, "2116", null, "21565", null, "2534", null, "22532", null, "1974", null, "22746", null, "2551", null, "22185", null, "2074", null, "19983", null, "2312", null, "22680", null, "2441", null, "26814", null, "3043", null, "20968", null, "1753", null, "25424", null, "2237", null, "28850", null, "2539", null, "26875", null, "2756", null, "29401", null, "2390", null, "23495", null, "2131", null, "18807", null, "1764", null, "11062", null, "1288", null, "8271", null, "1486", null, "39455", null, "2882", null, "14478", null, "1255", null, "70285", null, "3806", null, "30800", null, "2533", null, "136940", null, "4497", null, "326050", null, "5264", null, "315615", null, "4829", null, "302083", null, "4727", null, "117911", null, "3586", null, "106612", null, "3321", null, "91036", null, "2189", null, "38140", null, "1415", null, "45.1", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.2", null, "0.4", null, "4.6", null, "0.5", null, "5.6", null, "0.6", null, "5.8", null, "0.5", null, "5.9", null, "0.7", null, "5.7", null, "0.5", null, "5.2", null, "0.6", null, "5.9", null, "0.6", null, "6.9", null, "0.8", null, "5.4", null, "0.5", null, "6.6", null, "0.6", null, "7.5", null, "0.7", null, "7.0", null, "0.7", null, "7.6", null, "0.6", null, "6.1", null, "0.6", null, "4.9", null, "0.5", null, "2.9", null, "0.3", null, "2.1", null, "0.4", null, "10.2", null, "0.7", null, "3.8", null, "0.3", null, "18.2", null, "0.8", null, "8.0", null, "0.6", null, "35.5", null, "0.9", null, "84.5", null, "0.8", null, "81.8", null, "0.8", null, "78.3", null, "1.0", null, "30.6", null, "0.9", null, "27.6", null, "0.9", null, "23.6", null, "0.6", null, "9.9", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "411481", null, "6323", null, "16103", null, "1991", null, "18067", null, "2489", null, "22179", null, "2825", null, "22819", null, "2022", null, "20354", null, "1856", null, "20472", null, "1808", null, "21669", null, "1770", null, "23910", null, "2254", null, "23775", null, "2457", null, "22023", null, "2048", null, "25336", null, "1677", null, "30035", null, "2476", null, "32884", null, "2429", null, "33267", null, "2370", null, "27934", null, "2397", null, "23523", null, "1985", null, "15145", null, "2041", null, "11986", null, "1706", null, "40246", null, "3053", null, "15207", null, "1707", null, "71556", null, "3780", null, "27966", null, "2203", null, "132999", null, "4389", null, "350444", null, "5126", null, "339925", null, "4845", null, "328082", null, "4555", null, "144739", null, "3514", null, "131064", null, "3024", null, "111855", null, "2622", null, "50654", null, "1680", null, "48.5", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "3.9", null, "0.5", null, "4.4", null, "0.6", null, "5.4", null, "0.7", null, "5.5", null, "0.5", null, "4.9", null, "0.4", null, "5.0", null, "0.4", null, "5.3", null, "0.4", null, "5.8", null, "0.5", null, "5.8", null, "0.6", null, "5.4", null, "0.5", null, "6.2", null, "0.4", null, "7.3", null, "0.6", null, "8.0", null, "0.6", null, "8.1", null, "0.6", null, "6.8", null, "0.6", null, "5.7", null, "0.5", null, "3.7", null, "0.5", null, "2.9", null, "0.4", null, "9.8", null, "0.7", null, "3.7", null, "0.4", null, "17.4", null, "0.8", null, "6.8", null, "0.5", null, "32.3", null, "0.8", null, "85.2", null, "0.8", null, "82.6", null, "0.8", null, "79.7", null, "0.9", null, "35.2", null, "0.9", null, "31.9", null, "0.9", null, "27.2", null, "0.7", null, "12.3", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "25", "09"], ["5001900US2601", "Congressional District 1 (119th Congress), Michigan", "787617", null, "955", null, "32350", null, "760", null, "34303", null, "2075", null, "42036", null, "2168", null, "44026", null, "2086", null, "44545", null, "2046", null, "42750", null, "1873", null, "43477", null, "942", null, "43125", null, "2138", null, "46921", null, "2145", null, "41636", null, "970", null, "44399", null, "909", null, "51858", null, "2025", null, "63765", null, "2151", null, "67570", null, "2389", null, "58745", null, "2119", null, "39873", null, "1880", null, "26098", null, "1469", null, "20140", null, "1460", null, "76339", null, "717", null, "25896", null, "515", null, "134585", null, "894", null, "62675", null, "1838", null, "264844", null, "1747", null, "670517", null, "1327", null, "653032", null, "1092", null, "626410", null, "2857", null, "276191", null, "2431", null, "251963", null, "2369", null, "212426", null, "1239", null, "86111", null, "845", null, "47.4", null, "0.3", null, "103.9", null, "0.8", null, "78.8", null, "0.4", null, "48.2", null, "0.4", null, "30.5", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.1", null, "0.1", null, "4.4", null, "0.3", null, "5.3", null, "0.3", null, "5.6", null, "0.3", null, "5.7", null, "0.3", null, "5.4", null, "0.2", null, "5.5", null, "0.1", null, "5.5", null, "0.3", null, "6.0", null, "0.3", null, "5.3", null, "0.1", null, "5.6", null, "0.1", null, "6.6", null, "0.3", null, "8.1", null, "0.3", null, "8.6", null, "0.3", null, "7.5", null, "0.3", null, "5.1", null, "0.2", null, "3.3", null, "0.2", null, "2.6", null, "0.2", null, "9.7", null, "0.1", null, "3.3", null, "0.1", null, "17.1", null, "0.1", null, "8.0", null, "0.2", null, "33.6", null, "0.2", null, "85.1", null, "0.2", null, "82.9", null, "0.1", null, "79.5", null, "0.3", null, "35.1", null, "0.3", null, "32.0", null, "0.3", null, "27.0", null, "0.2", null, "10.9", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "0.9", null, "-888888888.0", "(X)", "401294", null, "1676", null, "17214", null, "709", null, "17403", null, "1443", null, "21943", null, "1567", null, "24236", null, "1583", null, "23787", null, "1494", null, "22546", null, "1263", null, "22518", null, "739", null, "22518", null, "1296", null, "24576", null, "1303", null, "21082", null, "639", null, "22534", null, "569", null, "26761", null, "1712", null, "31417", null, "1543", null, "32246", null, "1687", null, "30374", null, "1651", null, "18776", null, "927", null, "12784", null, "879", null, "8579", null, "876", null, "39346", null, "594", null, "13467", null, "721", null, "70027", null, "1085", null, "34556", null, "1304", null, "140181", null, "1551", null, "340803", null, "1491", null, "331267", null, "1294", null, "315955", null, "2427", null, "134176", null, "1646", null, "122357", null, "1538", null, "102759", null, "681", null, "40139", null, "493", null, "45.8", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.3", null, "0.2", null, "4.3", null, "0.4", null, "5.5", null, "0.4", null, "6.0", null, "0.4", null, "5.9", null, "0.4", null, "5.6", null, "0.3", null, "5.6", null, "0.2", null, "5.6", null, "0.3", null, "6.1", null, "0.3", null, "5.3", null, "0.2", null, "5.6", null, "0.1", null, "6.7", null, "0.4", null, "7.8", null, "0.4", null, "8.0", null, "0.4", null, "7.6", null, "0.4", null, "4.7", null, "0.2", null, "3.2", null, "0.2", null, "2.1", null, "0.2", null, "9.8", null, "0.1", null, "3.4", null, "0.2", null, "17.5", null, "0.2", null, "8.6", null, "0.3", null, "34.9", null, "0.3", null, "84.9", null, "0.2", null, "82.5", null, "0.2", null, "78.7", null, "0.5", null, "33.4", null, "0.5", null, "30.5", null, "0.4", null, "25.6", null, "0.2", null, "10.0", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "386323", null, "1570", null, "15136", null, "810", null, "16900", null, "1187", null, "20093", null, "1216", null, "19790", null, "1225", null, "20758", null, "1253", null, "20204", null, "945", null, "20959", null, "643", null, "20607", null, "1483", null, "22345", null, "1403", null, "20554", null, "732", null, "21865", null, "671", null, "25097", null, "1440", null, "32348", null, "1539", null, "35324", null, "1429", null, "28371", null, "1219", null, "21097", null, "1367", null, "13314", null, "1097", null, "11561", null, "1050", null, "36993", null, "595", null, "12429", null, "674", null, "64558", null, "961", null, "28119", null, "917", null, "124663", null, "1407", null, "329714", null, "1443", null, "321765", null, "1298", null, "310455", null, "1778", null, "142015", null, "1829", null, "129606", null, "1819", null, "109667", null, "939", null, "45972", null, "591", null, "48.9", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "3.9", null, "0.2", null, "4.4", null, "0.3", null, "5.2", null, "0.3", null, "5.1", null, "0.3", null, "5.4", null, "0.3", null, "5.2", null, "0.2", null, "5.4", null, "0.2", null, "5.3", null, "0.4", null, "5.8", null, "0.4", null, "5.3", null, "0.2", null, "5.7", null, "0.2", null, "6.5", null, "0.4", null, "8.4", null, "0.4", null, "9.1", null, "0.4", null, "7.3", null, "0.3", null, "5.5", null, "0.4", null, "3.4", null, "0.3", null, "3.0", null, "0.3", null, "9.6", null, "0.1", null, "3.2", null, "0.2", null, "16.7", null, "0.2", null, "7.3", null, "0.2", null, "32.3", null, "0.3", null, "85.3", null, "0.2", null, "83.3", null, "0.2", null, "80.4", null, "0.4", null, "36.8", null, "0.5", null, "33.5", null, "0.5", null, "28.4", null, "0.2", null, "11.9", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "26", "01"], ["5001900US2602", "Congressional District 2 (119th Congress), Michigan", "788872", null, "8287", null, "38617", null, "2217", null, "43398", null, "2549", null, "47470", null, "2521", null, "53074", null, "2471", null, "53186", null, "2067", null, "45142", null, "1929", null, "48528", null, "2764", null, "44311", null, "2617", null, "47633", null, "3123", null, "44494", null, "1947", null, "46788", null, "2243", null, "50771", null, "2887", null, "60845", null, "2350", null, "54522", null, "2027", null, "44537", null, "1956", null, "30207", null, "1421", null, "19381", null, "1235", null, "15968", null, "1665", null, "90868", null, "3326", null, "31059", null, "1640", null, "160544", null, "4380", null, "75201", null, "2245", null, "291874", null, "4965", null, "649302", null, "6667", null, "628328", null, "5978", null, "594813", null, "6031", null, "225460", null, "3887", null, "201858", null, "3614", null, "164615", null, "2728", null, "65556", null, "1889", null, "42.2", null, "0.6", null, "102.7", null, "1.5", null, "70.1", null, "1.2", null, "35.5", null, "0.8", null, "34.6", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.9", null, "0.3", null, "5.5", null, "0.3", null, "6.0", null, "0.3", null, "6.7", null, "0.3", null, "6.7", null, "0.3", null, "5.7", null, "0.2", null, "6.2", null, "0.3", null, "5.6", null, "0.3", null, "6.0", null, "0.4", null, "5.6", null, "0.2", null, "5.9", null, "0.3", null, "6.4", null, "0.4", null, "7.7", null, "0.3", null, "6.9", null, "0.3", null, "5.6", null, "0.2", null, "3.8", null, "0.2", null, "2.5", null, "0.2", null, "2.0", null, "0.2", null, "11.5", null, "0.4", null, "3.9", null, "0.2", null, "20.4", null, "0.4", null, "9.5", null, "0.3", null, "37.0", null, "0.4", null, "82.3", null, "0.4", null, "79.6", null, "0.4", null, "75.4", null, "0.5", null, "28.6", null, "0.5", null, "25.6", null, "0.5", null, "20.9", null, "0.4", null, "8.3", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.2", null, "-888888888.0", "(X)", "399716", null, "5170", null, "19883", null, "1483", null, "20988", null, "1450", null, "23392", null, "1765", null, "26340", null, "1741", null, "28886", null, "1612", null, "24497", null, "1476", null, "25256", null, "1492", null, "23476", null, "1697", null, "25064", null, "1765", null, "23015", null, "1251", null, "23972", null, "1421", null, "26116", null, "1882", null, "30263", null, "1615", null, "27379", null, "1074", null, "21015", null, "1249", null, "15161", null, "937", null, "9063", null, "849", null, "5950", null, "1084", null, "44380", null, "1841", null, "15565", null, "1007", null, "79828", null, "2585", null, "39661", null, "1803", null, "153519", null, "3221", null, "330248", null, "3859", null, "319888", null, "3539", null, "302632", null, "3682", null, "108831", null, "2226", null, "97084", null, "2094", null, "78568", null, "1418", null, "30174", null, "1031", null, "41.4", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.0", null, "0.4", null, "5.3", null, "0.3", null, "5.9", null, "0.4", null, "6.6", null, "0.4", null, "7.2", null, "0.4", null, "6.1", null, "0.4", null, "6.3", null, "0.4", null, "5.9", null, "0.4", null, "6.3", null, "0.4", null, "5.8", null, "0.3", null, "6.0", null, "0.3", null, "6.5", null, "0.5", null, "7.6", null, "0.4", null, "6.8", null, "0.3", null, "5.3", null, "0.3", null, "3.8", null, "0.3", null, "2.3", null, "0.2", null, "1.5", null, "0.3", null, "11.1", null, "0.4", null, "3.9", null, "0.2", null, "20.0", null, "0.5", null, "9.9", null, "0.4", null, "38.4", null, "0.6", null, "82.6", null, "0.5", null, "80.0", null, "0.5", null, "75.7", null, "0.6", null, "27.2", null, "0.6", null, "24.3", null, "0.6", null, "19.7", null, "0.4", null, "7.5", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "389156", null, "4939", null, "18734", null, "1358", null, "22410", null, "1786", null, "24078", null, "1708", null, "26734", null, "1851", null, "24300", null, "1382", null, "20645", null, "1334", null, "23272", null, "1568", null, "20835", null, "1576", null, "22569", null, "1980", null, "21479", null, "1145", null, "22816", null, "1216", null, "24655", null, "1924", null, "30582", null, "1468", null, "27143", null, "1606", null, "23522", null, "1319", null, "15046", null, "1054", null, "10318", null, "948", null, "10018", null, "1058", null, "46488", null, "2355", null, "15494", null, "1270", null, "80716", null, "3137", null, "35540", null, "1770", null, "138355", null, "3289", null, "319054", null, "4192", null, "308440", null, "3847", null, "292181", null, "3621", null, "116629", null, "2550", null, "104774", null, "2440", null, "86047", null, "1860", null, "35382", null, "1182", null, "43.1", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.8", null, "0.3", null, "5.8", null, "0.4", null, "6.2", null, "0.4", null, "6.9", null, "0.5", null, "6.2", null, "0.3", null, "5.3", null, "0.3", null, "6.0", null, "0.4", null, "5.4", null, "0.4", null, "5.8", null, "0.5", null, "5.5", null, "0.3", null, "5.9", null, "0.3", null, "6.3", null, "0.5", null, "7.9", null, "0.4", null, "7.0", null, "0.4", null, "6.0", null, "0.3", null, "3.9", null, "0.3", null, "2.7", null, "0.2", null, "2.6", null, "0.3", null, "11.9", null, "0.5", null, "4.0", null, "0.3", null, "20.7", null, "0.7", null, "9.1", null, "0.4", null, "35.6", null, "0.6", null, "82.0", null, "0.7", null, "79.3", null, "0.7", null, "75.1", null, "0.7", null, "30.0", null, "0.6", null, "26.9", null, "0.6", null, "22.1", null, "0.5", null, "9.1", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "26", "02"], ["5001900US2603", "Congressional District 3 (119th Congress), Michigan", "791175", null, "9013", null, "45319", null, "2302", null, "45893", null, "3205", null, "52210", null, "3402", null, "55148", null, "2464", null, "59070", null, "2883", null, "59096", null, "1984", null, "61116", null, "3108", null, "60489", null, "4248", null, "49625", null, "4583", null, "45283", null, "2242", null, "41562", null, "2456", null, "41502", null, "3231", null, "46387", null, "3041", null, "39014", null, "2819", null, "39592", null, "3015", null, "21772", null, "2060", null, "13163", null, "1672", null, "14934", null, "1709", null, "98103", null, "3758", null, "31779", null, "1776", null, "175201", null, "4673", null, "82439", null, "2730", null, "344544", null, "5649", null, "639228", null, "7207", null, "615974", null, "6627", null, "580682", null, "6751", null, "174862", null, "4441", null, "157831", null, "4239", null, "128475", null, "3484", null, "49869", null, "2563", null, "36.5", null, "0.4", null, "98.9", null, "1.4", null, "62.3", null, "1.3", null, "26.4", null, "0.8", null, "35.9", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.7", null, "0.3", null, "5.8", null, "0.4", null, "6.6", null, "0.4", null, "7.0", null, "0.3", null, "7.5", null, "0.4", null, "7.5", null, "0.3", null, "7.7", null, "0.4", null, "7.6", null, "0.5", null, "6.3", null, "0.6", null, "5.7", null, "0.3", null, "5.3", null, "0.3", null, "5.2", null, "0.4", null, "5.9", null, "0.4", null, "4.9", null, "0.4", null, "5.0", null, "0.4", null, "2.8", null, "0.3", null, "1.7", null, "0.2", null, "1.9", null, "0.2", null, "12.4", null, "0.4", null, "4.0", null, "0.2", null, "22.1", null, "0.5", null, "10.4", null, "0.3", null, "43.5", null, "0.4", null, "80.8", null, "0.4", null, "77.9", null, "0.5", null, "73.4", null, "0.6", null, "22.1", null, "0.6", null, "19.9", null, "0.5", null, "16.2", null, "0.4", null, "6.3", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.1", null, "-888888888.0", "(X)", "393376", null, "5470", null, "24365", null, "1642", null, "23653", null, "1811", null, "27983", null, "2349", null, "27597", null, "1833", null, "29191", null, "1987", null, "29090", null, "1151", null, "30800", null, "1612", null, "29513", null, "2474", null, "25782", null, "2740", null, "22325", null, "1515", null, "21942", null, "1534", null, "20966", null, "1860", null, "21858", null, "1708", null, "17762", null, "1693", null, "19305", null, "1481", null, "10272", null, "1388", null, "5457", null, "1008", null, "5515", null, "1095", null, "51636", null, "2085", null, "15588", null, "1001", null, "91589", null, "2940", null, "41200", null, "1592", null, "171973", null, "3334", null, "313510", null, "4304", null, "301787", null, "4000", null, "282388", null, "4381", null, "80169", null, "2369", null, "71583", null, "2468", null, "58311", null, "1929", null, "21244", null, "1484", null, "35.7", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.2", null, "0.4", null, "6.0", null, "0.5", null, "7.1", null, "0.6", null, "7.0", null, "0.4", null, "7.4", null, "0.5", null, "7.4", null, "0.3", null, "7.8", null, "0.4", null, "7.5", null, "0.6", null, "6.6", null, "0.7", null, "5.7", null, "0.4", null, "5.6", null, "0.4", null, "5.3", null, "0.5", null, "5.6", null, "0.4", null, "4.5", null, "0.4", null, "4.9", null, "0.4", null, "2.6", null, "0.4", null, "1.4", null, "0.3", null, "1.4", null, "0.3", null, "13.1", null, "0.5", null, "4.0", null, "0.2", null, "23.3", null, "0.6", null, "10.5", null, "0.4", null, "43.7", null, "0.6", null, "79.7", null, "0.5", null, "76.7", null, "0.6", null, "71.8", null, "0.8", null, "20.4", null, "0.6", null, "18.2", null, "0.6", null, "14.8", null, "0.4", null, "5.4", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "397799", null, "5218", null, "20954", null, "1354", null, "22240", null, "2453", null, "24227", null, "2381", null, "27551", null, "1881", null, "29879", null, "1844", null, "30006", null, "1374", null, "30316", null, "1774", null, "30976", null, "2599", null, "23843", null, "2667", null, "22958", null, "1261", null, "19620", null, "1286", null, "20536", null, "2135", null, "24529", null, "2195", null, "21252", null, "1934", null, "20287", null, "2064", null, "11500", null, "1244", null, "7706", null, "1226", null, "9419", null, "1322", null, "46467", null, "2598", null, "16191", null, "1507", null, "83612", null, "3254", null, "41239", null, "2143", null, "172571", null, "3777", null, "325718", null, "4272", null, "314187", null, "3791", null, "298294", null, "3625", null, "94693", null, "2900", null, "86248", null, "2665", null, "70164", null, "2118", null, "28625", null, "1604", null, "37.3", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.3", null, "0.3", null, "5.6", null, "0.6", null, "6.1", null, "0.6", null, "6.9", null, "0.4", null, "7.5", null, "0.4", null, "7.5", null, "0.3", null, "7.6", null, "0.4", null, "7.8", null, "0.6", null, "6.0", null, "0.7", null, "5.8", null, "0.3", null, "4.9", null, "0.3", null, "5.2", null, "0.5", null, "6.2", null, "0.6", null, "5.3", null, "0.5", null, "5.1", null, "0.5", null, "2.9", null, "0.3", null, "1.9", null, "0.3", null, "2.4", null, "0.3", null, "11.7", null, "0.6", null, "4.1", null, "0.4", null, "21.0", null, "0.7", null, "10.4", null, "0.5", null, "43.4", null, "0.7", null, "81.9", null, "0.7", null, "79.0", null, "0.7", null, "75.0", null, "0.7", null, "23.8", null, "0.8", null, "21.7", null, "0.7", null, "17.6", null, "0.5", null, "7.2", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "26", "03"], ["5001900US2604", "Congressional District 4 (119th Congress), Michigan", "785367", null, "7132", null, "42469", null, "2067", null, "49529", null, "3247", null, "49669", null, "2721", null, "55182", null, "2706", null, "61567", null, "3049", null, "54287", null, "2938", null, "51579", null, "2353", null, "50290", null, "3305", null, "50263", null, "3808", null, "42885", null, "2421", null, "42337", null, "1877", null, "41732", null, "2493", null, "51346", null, "2826", null, "44323", null, "2468", null, "40521", null, "2669", null, "28464", null, "2039", null, "15610", null, "1513", null, "13314", null, "1633", null, "99198", null, "3124", null, "32575", null, "1701", null, "174242", null, "4127", null, "84174", null, "2969", null, "323168", null, "4572", null, "633907", null, "5492", null, "611125", null, "5319", null, "574136", null, "5876", null, "193578", null, "4091", null, "172827", null, "3957", null, "142232", null, "2550", null, "57388", null, "1689", null, "37.7", null, "0.6", null, "97.8", null, "1.4", null, "67.5", null, "1.1", null, "30.3", null, "0.6", null, "37.2", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.2", null, "6.3", null, "0.4", null, "6.3", null, "0.3", null, "7.0", null, "0.3", null, "7.8", null, "0.4", null, "6.9", null, "0.4", null, "6.6", null, "0.3", null, "6.4", null, "0.4", null, "6.4", null, "0.5", null, "5.5", null, "0.3", null, "5.4", null, "0.2", null, "5.3", null, "0.3", null, "6.5", null, "0.4", null, "5.6", null, "0.3", null, "5.2", null, "0.3", null, "3.6", null, "0.3", null, "2.0", null, "0.2", null, "1.7", null, "0.2", null, "12.6", null, "0.3", null, "4.1", null, "0.2", null, "22.2", null, "0.4", null, "10.7", null, "0.4", null, "41.1", null, "0.5", null, "80.7", null, "0.5", null, "77.8", null, "0.4", null, "73.1", null, "0.4", null, "24.6", null, "0.5", null, "22.0", null, "0.5", null, "18.1", null, "0.3", null, "7.3", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "0.9", null, "-888888888.0", "(X)", "388221", null, "4384", null, "21454", null, "1262", null, "24861", null, "2122", null, "25324", null, "1951", null, "28034", null, "1968", null, "30650", null, "1717", null, "27560", null, "1959", null, "26687", null, "1551", null, "25626", null, "2188", null, "25037", null, "2385", null, "21646", null, "1341", null, "21379", null, "1461", null, "20211", null, "1734", null, "25475", null, "2056", null, "21943", null, "1419", null, "18315", null, "1645", null, "12889", null, "1137", null, "6519", null, "869", null, "4611", null, "888", null, "50185", null, "2079", null, "17081", null, "1393", null, "88720", null, "2588", null, "41603", null, "1638", null, "163594", null, "3029", null, "311722", null, "3891", null, "299501", null, "3700", null, "280139", null, "4011", null, "89752", null, "2480", null, "79164", null, "2242", null, "64277", null, "1599", null, "24019", null, "1021", null, "36.7", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.3", null, "6.4", null, "0.5", null, "6.5", null, "0.5", null, "7.2", null, "0.5", null, "7.9", null, "0.4", null, "7.1", null, "0.5", null, "6.9", null, "0.4", null, "6.6", null, "0.6", null, "6.4", null, "0.6", null, "5.6", null, "0.3", null, "5.5", null, "0.4", null, "5.2", null, "0.4", null, "6.6", null, "0.5", null, "5.7", null, "0.4", null, "4.7", null, "0.4", null, "3.3", null, "0.3", null, "1.7", null, "0.2", null, "1.2", null, "0.2", null, "12.9", null, "0.5", null, "4.4", null, "0.4", null, "22.9", null, "0.6", null, "10.7", null, "0.4", null, "42.1", null, "0.6", null, "80.3", null, "0.7", null, "77.1", null, "0.6", null, "72.2", null, "0.7", null, "23.1", null, "0.7", null, "20.4", null, "0.6", null, "16.6", null, "0.4", null, "6.2", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "397146", null, "4684", null, "21015", null, "1409", null, "24668", null, "2355", null, "24345", null, "2054", null, "27148", null, "2125", null, "30917", null, "2463", null, "26727", null, "2126", null, "24892", null, "1572", null, "24664", null, "2132", null, "25226", null, "2322", null, "21239", null, "1750", null, "20958", null, "1039", null, "21521", null, "1728", null, "25871", null, "1726", null, "22380", null, "1767", null, "22206", null, "1658", null, "15575", null, "1463", null, "9091", null, "1041", null, "8703", null, "1115", null, "49013", null, "2119", null, "15494", null, "1479", null, "85522", null, "2899", null, "42571", null, "2714", null, "159574", null, "3146", null, "322185", null, "3380", null, "311624", null, "3035", null, "293997", null, "3574", null, "103826", null, "2538", null, "93663", null, "2304", null, "77955", null, "1649", null, "33369", null, "1056", null, "38.6", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.3", null, "0.3", null, "6.2", null, "0.6", null, "6.1", null, "0.5", null, "6.8", null, "0.5", null, "7.8", null, "0.6", null, "6.7", null, "0.5", null, "6.3", null, "0.4", null, "6.2", null, "0.5", null, "6.4", null, "0.6", null, "5.3", null, "0.4", null, "5.3", null, "0.3", null, "5.4", null, "0.5", null, "6.5", null, "0.4", null, "5.6", null, "0.4", null, "5.6", null, "0.4", null, "3.9", null, "0.4", null, "2.3", null, "0.3", null, "2.2", null, "0.3", null, "12.3", null, "0.5", null, "3.9", null, "0.4", null, "21.5", null, "0.6", null, "10.7", null, "0.7", null, "40.2", null, "0.6", null, "81.1", null, "0.6", null, "78.5", null, "0.6", null, "74.0", null, "0.7", null, "26.1", null, "0.6", null, "23.6", null, "0.6", null, "19.6", null, "0.4", null, "8.4", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "26", "04"], ["5001900US2605", "Congressional District 5 (119th Congress), Michigan", "775260", null, "5628", null, "39180", null, "1709", null, "42290", null, "2495", null, "50401", null, "2562", null, "49729", null, "1668", null, "45763", null, "1893", null, "43462", null, "1954", null, "48653", null, "1828", null, "45322", null, "2591", null, "47000", null, "2749", null, "44060", null, "1680", null, "48805", null, "1742", null, "47530", null, "3260", null, "57295", null, "2631", null, "53107", null, "2378", null, "44027", null, "2444", null, "31511", null, "2025", null, "19945", null, "1455", null, "17180", null, "1870", null, "92691", null, "2602", null, "30431", null, "1076", null, "162302", null, "3077", null, "65061", null, "2211", null, "279929", null, "4028", null, "633758", null, "4540", null, "612958", null, "4203", null, "583590", null, "4072", null, "223065", null, "3017", null, "199590", null, "2830", null, "165770", null, "2043", null, "68636", null, "1435", null, "42.4", null, "0.5", null, "100.3", null, "1.3", null, "73.4", null, "1.0", null, "37.1", null, "0.6", null, "36.3", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.1", null, "0.2", null, "5.5", null, "0.3", null, "6.5", null, "0.3", null, "6.4", null, "0.2", null, "5.9", null, "0.2", null, "5.6", null, "0.2", null, "6.3", null, "0.2", null, "5.8", null, "0.3", null, "6.1", null, "0.4", null, "5.7", null, "0.2", null, "6.3", null, "0.2", null, "6.1", null, "0.4", null, "7.4", null, "0.3", null, "6.9", null, "0.3", null, "5.7", null, "0.3", null, "4.1", null, "0.3", null, "2.6", null, "0.2", null, "2.2", null, "0.2", null, "12.0", null, "0.3", null, "3.9", null, "0.1", null, "20.9", null, "0.3", null, "8.4", null, "0.3", null, "36.1", null, "0.4", null, "81.7", null, "0.4", null, "79.1", null, "0.3", null, "75.3", null, "0.4", null, "28.8", null, "0.4", null, "25.7", null, "0.4", null, "21.4", null, "0.3", null, "8.9", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "0.9", null, "-888888888.0", "(X)", "388172", null, "3680", null, "19636", null, "1296", null, "21449", null, "1865", null, "25404", null, "2050", null, "25012", null, "1204", null, "23372", null, "1382", null, "23635", null, "1359", null, "25015", null, "1150", null, "22540", null, "1680", null, "25361", null, "1929", null, "22413", null, "1045", null, "24775", null, "992", null, "24240", null, "1895", null, "28016", null, "1604", null, "26646", null, "1326", null, "20812", null, "1605", null, "14820", null, "1133", null, "7915", null, "944", null, "7111", null, "974", null, "46853", null, "1629", null, "15514", null, "887", null, "82003", null, "2247", null, "32870", null, "1466", null, "144935", null, "2645", null, "316553", null, "3231", null, "306169", null, "2893", null, "292328", null, "3009", null, "105320", null, "1901", null, "93867", null, "1912", null, "77304", null, "1294", null, "29846", null, "788", null, "41.5", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.1", null, "0.3", null, "5.5", null, "0.5", null, "6.5", null, "0.5", null, "6.4", null, "0.3", null, "6.0", null, "0.3", null, "6.1", null, "0.4", null, "6.4", null, "0.3", null, "5.8", null, "0.4", null, "6.5", null, "0.5", null, "5.8", null, "0.3", null, "6.4", null, "0.3", null, "6.2", null, "0.5", null, "7.2", null, "0.4", null, "6.9", null, "0.4", null, "5.4", null, "0.4", null, "3.8", null, "0.3", null, "2.0", null, "0.2", null, "1.8", null, "0.3", null, "12.1", null, "0.4", null, "4.0", null, "0.2", null, "21.1", null, "0.5", null, "8.5", null, "0.4", null, "37.3", null, "0.5", null, "81.5", null, "0.5", null, "78.9", null, "0.5", null, "75.3", null, "0.6", null, "27.1", null, "0.5", null, "24.2", null, "0.5", null, "19.9", null, "0.4", null, "7.7", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "387088", null, "3897", null, "19544", null, "1490", null, "20841", null, "2106", null, "24997", null, "1921", null, "24717", null, "1283", null, "22391", null, "1484", null, "19827", null, "1119", null, "23638", null, "1265", null, "22782", null, "1775", null, "21639", null, "1548", null, "21647", null, "1224", null, "24030", null, "1203", null, "23290", null, "2139", null, "29279", null, "1823", null, "26461", null, "1624", null, "23215", null, "1525", null, "16691", null, "1355", null, "12030", null, "1220", null, "10069", null, "1315", null, "45838", null, "1911", null, "14917", null, "776", null, "80299", null, "2674", null, "32191", null, "1842", null, "134994", null, "2605", null, "317205", null, "2705", null, "306789", null, "2571", null, "291262", null, "2466", null, "117745", null, "1955", null, "105723", null, "1976", null, "88466", null, "1257", null, "38790", null, "881", null, "43.3", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.0", null, "0.4", null, "5.4", null, "0.5", null, "6.5", null, "0.5", null, "6.4", null, "0.3", null, "5.8", null, "0.4", null, "5.1", null, "0.3", null, "6.1", null, "0.3", null, "5.9", null, "0.5", null, "5.6", null, "0.4", null, "5.6", null, "0.3", null, "6.2", null, "0.3", null, "6.0", null, "0.5", null, "7.6", null, "0.5", null, "6.8", null, "0.4", null, "6.0", null, "0.4", null, "4.3", null, "0.4", null, "3.1", null, "0.3", null, "2.6", null, "0.3", null, "11.8", null, "0.4", null, "3.9", null, "0.2", null, "20.7", null, "0.6", null, "8.3", null, "0.5", null, "34.9", null, "0.5", null, "81.9", null, "0.6", null, "79.3", null, "0.6", null, "75.2", null, "0.7", null, "30.4", null, "0.6", null, "27.3", null, "0.6", null, "22.9", null, "0.4", null, "10.0", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "26", "05"], ["5001900US2606", "Congressional District 6 (119th Congress), Michigan", "768949", null, "7618", null, "32676", null, "2342", null, "41714", null, "3460", null, "47300", null, "3292", null, "54761", null, "2884", null, "66488", null, "2998", null, "46504", null, "2397", null, "52009", null, "3245", null, "45400", null, "3086", null, "51440", null, "3364", null, "46118", null, "2615", null, "49348", null, "2371", null, "45066", null, "3535", null, "50319", null, "3146", null, "40834", null, "3018", null, "39813", null, "2622", null, "26621", null, "2326", null, "17038", null, "1752", null, "15500", null, "1837", null, "89014", null, "4355", null, "26917", null, "1957", null, "148607", null, "5094", null, "94332", null, "3645", null, "316602", null, "5107", null, "639646", null, "6953", null, "620342", null, "6623", null, "580310", null, "6909", null, "190125", null, "4948", null, "171117", null, "4919", null, "139806", null, "3784", null, "59159", null, "2818", null, "39.7", null, "0.7", null, "99.9", null, "1.9", null, "60.0", null, "1.5", null, "29.1", null, "1.0", null, "30.9", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.2", null, "0.3", null, "5.4", null, "0.4", null, "6.2", null, "0.4", null, "7.1", null, "0.4", null, "8.6", null, "0.4", null, "6.0", null, "0.3", null, "6.8", null, "0.4", null, "5.9", null, "0.4", null, "6.7", null, "0.4", null, "6.0", null, "0.3", null, "6.4", null, "0.3", null, "5.9", null, "0.4", null, "6.5", null, "0.4", null, "5.3", null, "0.4", null, "5.2", null, "0.3", null, "3.5", null, "0.3", null, "2.2", null, "0.2", null, "2.0", null, "0.2", null, "11.6", null, "0.5", null, "3.5", null, "0.3", null, "19.3", null, "0.6", null, "12.3", null, "0.5", null, "41.2", null, "0.5", null, "83.2", null, "0.6", null, "80.7", null, "0.6", null, "75.5", null, "0.6", null, "24.7", null, "0.7", null, "22.3", null, "0.7", null, "18.2", null, "0.5", null, "7.7", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.1", null, "-888888888.0", "(X)", "384268", null, "5658", null, "15636", null, "1551", null, "21212", null, "2279", null, "23745", null, "2544", null, "29177", null, "2048", null, "35037", null, "2001", null, "24607", null, "1659", null, "25807", null, "1935", null, "23145", null, "2183", null, "25684", null, "2334", null, "23029", null, "1679", null, "25917", null, "1589", null, "21504", null, "2180", null, "25671", null, "2230", null, "20682", null, "2029", null, "17808", null, "1763", null, "12757", null, "1375", null, "6561", null, "921", null, "6289", null, "1093", null, "44957", null, "2956", null, "15091", null, "1332", null, "75684", null, "3702", null, "49123", null, "2295", null, "163457", null, "3546", null, "319803", null, "5113", null, "308584", null, "4750", null, "288058", null, "4718", null, "89768", null, "3043", null, "79457", null, "2772", null, "64097", null, "2320", null, "25607", null, "1343", null, "38.7", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.1", null, "0.4", null, "5.5", null, "0.6", null, "6.2", null, "0.6", null, "7.6", null, "0.5", null, "9.1", null, "0.5", null, "6.4", null, "0.4", null, "6.7", null, "0.5", null, "6.0", null, "0.6", null, "6.7", null, "0.6", null, "6.0", null, "0.4", null, "6.7", null, "0.4", null, "5.6", null, "0.6", null, "6.7", null, "0.6", null, "5.4", null, "0.5", null, "4.6", null, "0.5", null, "3.3", null, "0.4", null, "1.7", null, "0.2", null, "1.6", null, "0.3", null, "11.7", null, "0.7", null, "3.9", null, "0.3", null, "19.7", null, "0.8", null, "12.8", null, "0.6", null, "42.5", null, "0.8", null, "83.2", null, "0.9", null, "80.3", null, "0.8", null, "75.0", null, "1.0", null, "23.4", null, "0.8", null, "20.7", null, "0.7", null, "16.7", null, "0.6", null, "6.7", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "384681", null, "4935", null, "17040", null, "1893", null, "20502", null, "2155", null, "23555", null, "2245", null, "25584", null, "1927", null, "31451", null, "2025", null, "21897", null, "1652", null, "26202", null, "1901", null, "22255", null, "1931", null, "25756", null, "2157", null, "23089", null, "1694", null, "23431", null, "1616", null, "23562", null, "2042", null, "24648", null, "2005", null, "20152", null, "1847", null, "22005", null, "1770", null, "13864", null, "1555", null, "10477", null, "1373", null, "9211", null, "1371", null, "44057", null, "3004", null, "11826", null, "1464", null, "72923", null, "3734", null, "45209", null, "2103", null, "153145", null, "2895", null, "319843", null, "3822", null, "311758", null, "3707", null, "292252", null, "4115", null, "100357", null, "2916", null, "91660", null, "2991", null, "75709", null, "2306", null, "33552", null, "2050", null, "40.6", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.4", null, "0.5", null, "5.3", null, "0.5", null, "6.1", null, "0.6", null, "6.7", null, "0.5", null, "8.2", null, "0.5", null, "5.7", null, "0.4", null, "6.8", null, "0.5", null, "5.8", null, "0.5", null, "6.7", null, "0.6", null, "6.0", null, "0.5", null, "6.1", null, "0.4", null, "6.1", null, "0.5", null, "6.4", null, "0.5", null, "5.2", null, "0.5", null, "5.7", null, "0.5", null, "3.6", null, "0.4", null, "2.7", null, "0.4", null, "2.4", null, "0.4", null, "11.5", null, "0.7", null, "3.1", null, "0.4", null, "19.0", null, "0.8", null, "11.8", null, "0.5", null, "39.8", null, "0.7", null, "83.1", null, "0.8", null, "81.0", null, "0.8", null, "76.0", null, "0.9", null, "26.1", null, "0.8", null, "23.8", null, "0.8", null, "19.7", null, "0.7", null, "8.7", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "26", "06"], ["5001900US2607", "Congressional District 7 (119th Congress), Michigan", "792585", null, "4557", null, "38225", null, "1563", null, "43258", null, "2608", null, "45748", null, "3277", null, "56975", null, "2145", null, "69104", null, "2309", null, "48223", null, "1382", null, "51524", null, "2611", null, "51474", null, "3237", null, "44341", null, "3272", null, "45751", null, "2270", null, "48349", null, "1552", null, "52634", null, "2504", null, "50391", null, "2595", null, "46701", null, "2446", null, "40569", null, "2489", null, "27055", null, "2097", null, "18500", null, "1503", null, "13763", null, "1439", null, "89006", null, "2509", null, "29461", null, "1282", null, "156692", null, "2194", null, "96618", null, "1887", null, "321641", null, "3583", null, "656012", null, "3892", null, "635893", null, "3765", null, "592086", null, "4716", null, "196979", null, "3166", null, "174347", null, "3149", null, "146588", null, "2063", null, "59318", null, "1298", null, "39.2", null, "0.4", null, "97.9", null, "1.0", null, "62.0", null, "0.9", null, "30.0", null, "0.6", null, "32.0", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.8", null, "0.2", null, "5.5", null, "0.3", null, "5.8", null, "0.4", null, "7.2", null, "0.3", null, "8.7", null, "0.3", null, "6.1", null, "0.2", null, "6.5", null, "0.3", null, "6.5", null, "0.4", null, "5.6", null, "0.4", null, "5.8", null, "0.3", null, "6.1", null, "0.2", null, "6.6", null, "0.3", null, "6.4", null, "0.3", null, "5.9", null, "0.3", null, "5.1", null, "0.3", null, "3.4", null, "0.3", null, "2.3", null, "0.2", null, "1.7", null, "0.2", null, "11.2", null, "0.3", null, "3.7", null, "0.2", null, "19.8", null, "0.2", null, "12.2", null, "0.2", null, "40.6", null, "0.4", null, "82.8", null, "0.3", null, "80.2", null, "0.2", null, "74.7", null, "0.4", null, "24.9", null, "0.4", null, "22.0", null, "0.4", null, "18.5", null, "0.3", null, "7.5", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.0", null, "-888888888.0", "(X)", "392180", null, "2866", null, "19361", null, "1124", null, "22017", null, "1793", null, "24065", null, "2006", null, "28377", null, "1709", null, "34961", null, "1597", null, "25703", null, "1051", null, "25797", null, "1432", null, "27454", null, "1927", null, "21600", null, "1854", null, "22334", null, "1421", null, "23448", null, "893", null, "26508", null, "1690", null, "24027", null, "1725", null, "21627", null, "1323", null, "18750", null, "1387", null, "12871", null, "1255", null, "8538", null, "1036", null, "4742", null, "857", null, "46082", null, "1706", null, "15311", null, "1008", null, "80754", null, "1804", null, "48027", null, "1113", null, "163892", null, "2248", null, "322479", null, "2642", null, "311426", null, "2408", null, "291632", null, "2782", null, "90555", null, "1961", null, "79164", null, "1929", null, "66528", null, "1049", null, "26151", null, "746", null, "37.7", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.9", null, "0.3", null, "5.6", null, "0.4", null, "6.1", null, "0.5", null, "7.2", null, "0.4", null, "8.9", null, "0.4", null, "6.6", null, "0.3", null, "6.6", null, "0.4", null, "7.0", null, "0.5", null, "5.5", null, "0.5", null, "5.7", null, "0.4", null, "6.0", null, "0.2", null, "6.8", null, "0.4", null, "6.1", null, "0.4", null, "5.5", null, "0.3", null, "4.8", null, "0.3", null, "3.3", null, "0.3", null, "2.2", null, "0.3", null, "1.2", null, "0.2", null, "11.8", null, "0.4", null, "3.9", null, "0.3", null, "20.6", null, "0.4", null, "12.2", null, "0.3", null, "41.8", null, "0.5", null, "82.2", null, "0.4", null, "79.4", null, "0.4", null, "74.4", null, "0.5", null, "23.1", null, "0.5", null, "20.2", null, "0.5", null, "17.0", null, "0.3", null, "6.7", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "400405", null, "3285", null, "18864", null, "1088", null, "21241", null, "1826", null, "21683", null, "2021", null, "28598", null, "1486", null, "34143", null, "1675", null, "22520", null, "1046", null, "25727", null, "1749", null, "24020", null, "2275", null, "22741", null, "2405", null, "23417", null, "1463", null, "24901", null, "1037", null, "26126", null, "1926", null, "26364", null, "1953", null, "25074", null, "1615", null, "21819", null, "1635", null, "14184", null, "1298", null, "9962", null, "1057", null, "9021", null, "1235", null, "42924", null, "1514", null, "14150", null, "906", null, "75938", null, "1896", null, "48591", null, "1374", null, "157749", null, "2185", null, "333533", null, "2512", null, "324467", null, "2259", null, "300454", null, "3410", null, "106424", null, "2266", null, "95183", null, "2120", null, "80060", null, "1477", null, "33167", null, "870", null, "40.8", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.7", null, "0.3", null, "5.3", null, "0.5", null, "5.4", null, "0.5", null, "7.1", null, "0.4", null, "8.5", null, "0.4", null, "5.6", null, "0.3", null, "6.4", null, "0.4", null, "6.0", null, "0.6", null, "5.7", null, "0.6", null, "5.8", null, "0.4", null, "6.2", null, "0.3", null, "6.5", null, "0.5", null, "6.6", null, "0.5", null, "6.3", null, "0.4", null, "5.4", null, "0.4", null, "3.5", null, "0.3", null, "2.5", null, "0.3", null, "2.3", null, "0.3", null, "10.7", null, "0.3", null, "3.5", null, "0.2", null, "19.0", null, "0.4", null, "12.1", null, "0.3", null, "39.4", null, "0.5", null, "83.3", null, "0.4", null, "81.0", null, "0.4", null, "75.0", null, "0.7", null, "26.6", null, "0.6", null, "23.8", null, "0.6", null, "20.0", null, "0.4", null, "8.3", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "26", "07"], ["5001900US2608", "Congressional District 8 (119th Congress), Michigan", "769318", null, "1401", null, "40695", null, "760", null, "43494", null, "2789", null, "47005", null, "2861", null, "49629", null, "1714", null, "43728", null, "1487", null, "49002", null, "1809", null, "51311", null, "1734", null, "46798", null, "3126", null, "43707", null, "2679", null, "43913", null, "1592", null, "48249", null, "1862", null, "47318", null, "2805", null, "55682", null, "2907", null, "51715", null, "2464", null, "40967", null, "2485", null, "29170", null, "1894", null, "21205", null, "1683", null, "15730", null, "1758", null, "90499", null, "1084", null, "30657", null, "830", null, "161851", null, "1003", null, "62700", null, "1713", null, "284175", null, "2336", null, "627600", null, "2236", null, "607467", null, "1365", null, "580635", null, "2362", null, "214469", null, "2965", null, "194450", null, "2753", null, "158787", null, "1081", null, "66105", null, "1093", null, "41.5", null, "0.4", null, "94.4", null, "0.7", null, "71.5", null, "0.5", null, "35.4", null, "0.3", null, "36.1", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.3", null, "0.1", null, "5.7", null, "0.4", null, "6.1", null, "0.4", null, "6.5", null, "0.2", null, "5.7", null, "0.2", null, "6.4", null, "0.2", null, "6.7", null, "0.2", null, "6.1", null, "0.4", null, "5.7", null, "0.3", null, "5.7", null, "0.2", null, "6.3", null, "0.2", null, "6.2", null, "0.4", null, "7.2", null, "0.4", null, "6.7", null, "0.3", null, "5.3", null, "0.3", null, "3.8", null, "0.2", null, "2.8", null, "0.2", null, "2.0", null, "0.2", null, "11.8", null, "0.1", null, "4.0", null, "0.1", null, "21.0", null, "0.1", null, "8.2", null, "0.2", null, "36.9", null, "0.3", null, "81.6", null, "0.2", null, "79.0", null, "0.1", null, "75.5", null, "0.3", null, "27.9", null, "0.4", null, "25.3", null, "0.4", null, "20.6", null, "0.1", null, "8.6", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.0", null, "-888888888.0", "(X)", "373674", null, "1580", null, "20206", null, "874", null, "22476", null, "1902", null, "24160", null, "1908", null, "25764", null, "1382", null, "21732", null, "797", null, "24907", null, "1165", null, "24845", null, "1093", null, "23697", null, "2081", null, "21350", null, "2079", null, "20891", null, "859", null, "23456", null, "1036", null, "22596", null, "1776", null, "26833", null, "1828", null, "24175", null, "1522", null, "19155", null, "1526", null, "12945", null, "1167", null, "8927", null, "1148", null, "5559", null, "939", null, "46636", null, "1057", null, "15163", null, "917", null, "82005", null, "1368", null, "32333", null, "1181", null, "142295", null, "1837", null, "301122", null, "1634", null, "291669", null, "1305", null, "277369", null, "1730", null, "97594", null, "1884", null, "87150", null, "1903", null, "70761", null, "599", null, "27431", null, "607", null, "39.8", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.2", null, "6.0", null, "0.5", null, "6.5", null, "0.5", null, "6.9", null, "0.4", null, "5.8", null, "0.2", null, "6.7", null, "0.3", null, "6.6", null, "0.3", null, "6.3", null, "0.6", null, "5.7", null, "0.6", null, "5.6", null, "0.2", null, "6.3", null, "0.3", null, "6.0", null, "0.5", null, "7.2", null, "0.5", null, "6.5", null, "0.4", null, "5.1", null, "0.4", null, "3.5", null, "0.3", null, "2.4", null, "0.3", null, "1.5", null, "0.3", null, "12.5", null, "0.3", null, "4.1", null, "0.2", null, "21.9", null, "0.3", null, "8.7", null, "0.3", null, "38.1", null, "0.4", null, "80.6", null, "0.4", null, "78.1", null, "0.3", null, "74.2", null, "0.4", null, "26.1", null, "0.5", null, "23.3", null, "0.5", null, "18.9", null, "0.2", null, "7.3", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "395644", null, "1537", null, "20489", null, "762", null, "21018", null, "1910", null, "22845", null, "2121", null, "23865", null, "1412", null, "21996", null, "1238", null, "24095", null, "1150", null, "26466", null, "1111", null, "23101", null, "2269", null, "22357", null, "1846", null, "23022", null, "1280", null, "24793", null, "1314", null, "24722", null, "2027", null, "28849", null, "2044", null, "27540", null, "1715", null, "21812", null, "1668", null, "16225", null, "1501", null, "12278", null, "1410", null, "10171", null, "1260", null, "43863", null, "652", null, "15494", null, "758", null, "79846", null, "1095", null, "30367", null, "1188", null, "141880", null, "1698", null, "326478", null, "1742", null, "315798", null, "1048", null, "303266", null, "1712", null, "116875", null, "2029", null, "107300", null, "1640", null, "88026", null, "824", null, "38674", null, "771", null, "43.4", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.2", null, "5.3", null, "0.5", null, "5.8", null, "0.5", null, "6.0", null, "0.4", null, "5.6", null, "0.3", null, "6.1", null, "0.3", null, "6.7", null, "0.3", null, "5.8", null, "0.6", null, "5.7", null, "0.5", null, "5.8", null, "0.3", null, "6.3", null, "0.3", null, "6.2", null, "0.5", null, "7.3", null, "0.5", null, "7.0", null, "0.4", null, "5.5", null, "0.4", null, "4.1", null, "0.4", null, "3.1", null, "0.4", null, "2.6", null, "0.3", null, "11.1", null, "0.2", null, "3.9", null, "0.2", null, "20.2", null, "0.2", null, "7.7", null, "0.3", null, "35.9", null, "0.4", null, "82.5", null, "0.4", null, "79.8", null, "0.2", null, "76.7", null, "0.4", null, "29.5", null, "0.5", null, "27.1", null, "0.4", null, "22.2", null, "0.2", null, "9.8", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "26", "08"], ["5001900US2609", "Congressional District 9 (119th Congress), Michigan", "782471", null, "9599", null, "38796", null, "2772", null, "49168", null, "3622", null, "46096", null, "3711", null, "45564", null, "3014", null, "45242", null, "2589", null, "43692", null, "2690", null, "45710", null, "2842", null, "46340", null, "3156", null, "43552", null, "3354", null, "47346", null, "2444", null, "53439", null, "2690", null, "55026", null, "3466", null, "61033", null, "3467", null, "51797", null, "2966", null, "43405", null, "3327", null, "30382", null, "2060", null, "19294", null, "2156", null, "16589", null, "1859", null, "95264", null, "4608", null, "30230", null, "2300", null, "164290", null, "6048", null, "60576", null, "3474", null, "270100", null, "6225", null, "637507", null, "7981", null, "618181", null, "7666", null, "594547", null, "7261", null, "222500", null, "5595", null, "197736", null, "4940", null, "161467", null, "4323", null, "66265", null, "2576", null, "43.5", null, "0.8", null, "102.1", null, "2.1", null, "71.3", null, "1.9", null, "35.4", null, "1.3", null, "36.0", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.0", null, "0.3", null, "6.3", null, "0.5", null, "5.9", null, "0.4", null, "5.8", null, "0.4", null, "5.8", null, "0.3", null, "5.6", null, "0.3", null, "5.8", null, "0.4", null, "5.9", null, "0.4", null, "5.6", null, "0.4", null, "6.1", null, "0.3", null, "6.8", null, "0.4", null, "7.0", null, "0.4", null, "7.8", null, "0.4", null, "6.6", null, "0.4", null, "5.5", null, "0.4", null, "3.9", null, "0.3", null, "2.5", null, "0.3", null, "2.1", null, "0.2", null, "12.2", null, "0.5", null, "3.9", null, "0.3", null, "21.0", null, "0.7", null, "7.7", null, "0.4", null, "34.5", null, "0.6", null, "81.5", null, "0.6", null, "79.0", null, "0.7", null, "76.0", null, "0.7", null, "28.4", null, "0.8", null, "25.3", null, "0.7", null, "20.6", null, "0.6", null, "8.5", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.0", null, "-888888888.0", "(X)", "395249", null, "6351", null, "20740", null, "1819", null, "23173", null, "2439", null, "24507", null, "2431", null, "23949", null, "1922", null, "25650", null, "2085", null, "23050", null, "1926", null, "23092", null, "1655", null, "22779", null, "2236", null, "21701", null, "2132", null, "23447", null, "1603", null, "26623", null, "1757", null, "27175", null, "2401", null, "32672", null, "2197", null, "25021", null, "1967", null, "21269", null, "1875", null, "15090", null, "1424", null, "8981", null, "1192", null, "6330", null, "1059", null, "47680", null, "3216", null, "15568", null, "1464", null, "83988", null, "4305", null, "34031", null, "2441", null, "140221", null, "3957", null, "320868", null, "5269", null, "311261", null, "4906", null, "298659", null, "4581", null, "109363", null, "3324", null, "96271", null, "2953", null, "76691", null, "2564", null, "30401", null, "1548", null, "42.2", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.4", null, "5.9", null, "0.6", null, "6.2", null, "0.6", null, "6.1", null, "0.5", null, "6.5", null, "0.5", null, "5.8", null, "0.5", null, "5.8", null, "0.4", null, "5.8", null, "0.5", null, "5.5", null, "0.6", null, "5.9", null, "0.4", null, "6.7", null, "0.4", null, "6.9", null, "0.6", null, "8.3", null, "0.5", null, "6.3", null, "0.5", null, "5.4", null, "0.5", null, "3.8", null, "0.4", null, "2.3", null, "0.3", null, "1.6", null, "0.3", null, "12.1", null, "0.7", null, "3.9", null, "0.4", null, "21.2", null, "0.9", null, "8.6", null, "0.6", null, "35.5", null, "0.8", null, "81.2", null, "0.9", null, "78.8", null, "0.9", null, "75.6", null, "0.9", null, "27.7", null, "0.9", null, "24.4", null, "0.8", null, "19.4", null, "0.7", null, "7.7", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "387222", null, "6208", null, "18056", null, "1650", null, "25995", null, "2309", null, "21589", null, "2500", null, "21615", null, "2169", null, "19592", null, "1853", null, "20642", null, "1567", null, "22618", null, "1754", null, "23561", null, "1732", null, "21851", null, "2187", null, "23899", null, "1616", null, "26816", null, "1656", null, "27851", null, "2177", null, "28361", null, "2107", null, "26776", null, "1849", null, "22136", null, "2095", null, "15292", null, "1349", null, "10313", null, "1406", null, "10259", null, "1264", null, "47584", null, "2965", null, "14662", null, "1648", null, "80302", null, "3605", null, "26545", null, "2333", null, "129879", null, "4037", null, "316639", null, "4583", null, "306920", null, "4601", null, "295888", null, "4221", null, "113137", null, "3271", null, "101465", null, "2949", null, "84776", null, "2537", null, "35864", null, "1801", null, "44.6", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.7", null, "0.4", null, "6.7", null, "0.6", null, "5.6", null, "0.6", null, "5.6", null, "0.5", null, "5.1", null, "0.4", null, "5.3", null, "0.4", null, "5.8", null, "0.5", null, "6.1", null, "0.4", null, "5.6", null, "0.5", null, "6.2", null, "0.4", null, "6.9", null, "0.4", null, "7.2", null, "0.5", null, "7.3", null, "0.5", null, "6.9", null, "0.5", null, "5.7", null, "0.6", null, "3.9", null, "0.3", null, "2.7", null, "0.4", null, "2.6", null, "0.3", null, "12.3", null, "0.7", null, "3.8", null, "0.4", null, "20.7", null, "0.7", null, "6.9", null, "0.5", null, "33.5", null, "0.8", null, "81.8", null, "0.7", null, "79.3", null, "0.7", null, "76.4", null, "0.9", null, "29.2", null, "0.9", null, "26.2", null, "0.8", null, "21.9", null, "0.7", null, "9.3", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "26", "09"], ["5001900US2610", "Congressional District 10 (119th Congress), Michigan", "775317", null, "6310", null, "36914", null, "2051", null, "40123", null, "3492", null, "46887", null, "2880", null, "46485", null, "2408", null, "44861", null, "2759", null, "53596", null, "2522", null, "57960", null, "2494", null, "47630", null, "3152", null, "51151", null, "3425", null, "46644", null, "2124", null, "50086", null, "2452", null, "53519", null, "3413", null, "49373", null, "3591", null, "49343", null, "3250", null, "37815", null, "3330", null, "30772", null, "2378", null, "15445", null, "2066", null, "16713", null, "2105", null, "87010", null, "3863", null, "30360", null, "1962", null, "154284", null, "4811", null, "60986", null, "3086", null, "301683", null, "4989", null, "640919", null, "6042", null, "621033", null, "6085", null, "596481", null, "6099", null, "199461", null, "5096", null, "178992", null, "4577", null, "150088", null, "3999", null, "62930", null, "2915", null, "41.3", null, "0.6", null, "93.9", null, "1.5", null, "64.6", null, "1.5", null, "31.9", null, "1.1", null, "32.8", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.8", null, "0.3", null, "5.2", null, "0.4", null, "6.0", null, "0.4", null, "6.0", null, "0.3", null, "5.8", null, "0.3", null, "6.9", null, "0.3", null, "7.5", null, "0.3", null, "6.1", null, "0.4", null, "6.6", null, "0.4", null, "6.0", null, "0.3", null, "6.5", null, "0.3", null, "6.9", null, "0.4", null, "6.4", null, "0.5", null, "6.4", null, "0.4", null, "4.9", null, "0.4", null, "4.0", null, "0.3", null, "2.0", null, "0.3", null, "2.2", null, "0.3", null, "11.2", null, "0.5", null, "3.9", null, "0.3", null, "19.9", null, "0.6", null, "7.9", null, "0.4", null, "38.9", null, "0.5", null, "82.7", null, "0.6", null, "80.1", null, "0.6", null, "76.9", null, "0.6", null, "25.7", null, "0.7", null, "23.1", null, "0.6", null, "19.4", null, "0.6", null, "8.1", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "0.8", null, "-888888888.0", "(X)", "375443", null, "4511", null, "17805", null, "1351", null, "22520", null, "2437", null, "22165", null, "2033", null, "24804", null, "1542", null, "21436", null, "1784", null, "26831", null, "1582", null, "28793", null, "1355", null, "21956", null, "2008", null, "27073", null, "2171", null, "24017", null, "1389", null, "24429", null, "1475", null, "25269", null, "1987", null, "23451", null, "1841", null, "23813", null, "2102", null, "16712", null, "1971", null, "12815", null, "1283", null, "5427", null, "939", null, "6127", null, "1194", null, "44685", null, "2498", null, "16211", null, "1272", null, "78701", null, "3468", null, "30029", null, "2018", null, "150893", null, "3126", null, "307992", null, "3502", null, "296742", null, "3467", null, "284536", null, "3681", null, "88345", null, "2797", null, "77728", null, "2532", null, "64894", null, "2208", null, "24369", null, "1594", null, "40.2", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.7", null, "0.3", null, "6.0", null, "0.6", null, "5.9", null, "0.5", null, "6.6", null, "0.4", null, "5.7", null, "0.5", null, "7.1", null, "0.4", null, "7.7", null, "0.4", null, "5.8", null, "0.5", null, "7.2", null, "0.6", null, "6.4", null, "0.4", null, "6.5", null, "0.4", null, "6.7", null, "0.5", null, "6.2", null, "0.5", null, "6.3", null, "0.6", null, "4.5", null, "0.5", null, "3.4", null, "0.3", null, "1.4", null, "0.2", null, "1.6", null, "0.3", null, "11.9", null, "0.6", null, "4.3", null, "0.3", null, "21.0", null, "0.8", null, "8.0", null, "0.5", null, "40.2", null, "0.7", null, "82.0", null, "0.8", null, "79.0", null, "0.8", null, "75.8", null, "0.8", null, "23.5", null, "0.8", null, "20.7", null, "0.7", null, "17.3", null, "0.6", null, "6.5", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "399874", null, "4338", null, "19109", null, "1155", null, "17603", null, "2326", null, "24722", null, "2284", null, "21681", null, "1843", null, "23425", null, "1677", null, "26765", null, "1444", null, "29167", null, "1538", null, "25674", null, "2134", null, "24078", null, "2359", null, "22627", null, "1327", null, "25657", null, "1637", null, "28250", null, "2167", null, "25922", null, "2410", null, "25530", null, "1963", null, "21103", null, "2098", null, "17957", null, "1666", null, "10018", null, "1716", null, "10586", null, "1489", null, "42325", null, "2360", null, "14149", null, "1476", null, "75583", null, "2866", null, "30957", null, "1815", null, "150790", null, "3196", null, "332927", null, "4108", null, "324291", null, "3923", null, "311945", null, "3649", null, "111116", null, "3238", null, "101264", null, "2833", null, "85194", null, "2415", null, "38561", null, "1739", null, "42.5", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.8", null, "0.3", null, "4.4", null, "0.6", null, "6.2", null, "0.6", null, "5.4", null, "0.4", null, "5.9", null, "0.4", null, "6.7", null, "0.3", null, "7.3", null, "0.4", null, "6.4", null, "0.5", null, "6.0", null, "0.6", null, "5.7", null, "0.3", null, "6.4", null, "0.4", null, "7.1", null, "0.5", null, "6.5", null, "0.6", null, "6.4", null, "0.5", null, "5.3", null, "0.5", null, "4.5", null, "0.4", null, "2.5", null, "0.4", null, "2.6", null, "0.4", null, "10.6", null, "0.5", null, "3.5", null, "0.4", null, "18.9", null, "0.6", null, "7.7", null, "0.4", null, "37.7", null, "0.6", null, "83.3", null, "0.6", null, "81.1", null, "0.6", null, "78.0", null, "0.7", null, "27.8", null, "0.8", null, "25.3", null, "0.8", null, "21.3", null, "0.6", null, "9.6", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "26", "10"], ["5001900US2611", "Congressional District 11 (119th Congress), Michigan", "787210", null, "8898", null, "43374", null, "2308", null, "41277", null, "3190", null, "36427", null, "3487", null, "41490", null, "2817", null, "44754", null, "2881", null, "57954", null, "2752", null, "64569", null, "3279", null, "59179", null, "3668", null, "47771", null, "3231", null, "42974", null, "2103", null, "48587", null, "2757", null, "49893", null, "3348", null, "56726", null, "3368", null, "52276", null, "2381", null, "41418", null, "2554", null, "25831", null, "2330", null, "17202", null, "1917", null, "15508", null, "1849", null, "77704", null, "4298", null, "25716", null, "2009", null, "146794", null, "5153", null, "60528", null, "3468", null, "315717", null, "5662", null, "657259", null, "7986", null, "640416", null, "7709", null, "618440", null, "7738", null, "208961", null, "6041", null, "184776", null, "5326", null, "152235", null, "4627", null, "58541", null, "2540", null, "40.5", null, "0.7", null, "97.9", null, "1.9", null, "61.3", null, "1.3", null, "31.2", null, "1.1", null, "30.1", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.3", null, "5.2", null, "0.4", null, "4.6", null, "0.4", null, "5.3", null, "0.3", null, "5.7", null, "0.4", null, "7.4", null, "0.3", null, "8.2", null, "0.4", null, "7.5", null, "0.5", null, "6.1", null, "0.4", null, "5.5", null, "0.3", null, "6.2", null, "0.3", null, "6.3", null, "0.4", null, "7.2", null, "0.4", null, "6.6", null, "0.3", null, "5.3", null, "0.3", null, "3.3", null, "0.3", null, "2.2", null, "0.2", null, "2.0", null, "0.2", null, "9.9", null, "0.5", null, "3.3", null, "0.3", null, "18.6", null, "0.6", null, "7.7", null, "0.4", null, "40.1", null, "0.6", null, "83.5", null, "0.6", null, "81.4", null, "0.6", null, "78.6", null, "0.6", null, "26.5", null, "0.7", null, "23.5", null, "0.7", null, "19.3", null, "0.6", null, "7.4", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.7", null, "-888888888.0", "(X)", "389380", null, "5335", null, "21799", null, "1525", null, "20369", null, "2260", null, "19068", null, "2006", null, "21224", null, "1829", null, "21586", null, "1763", null, "29637", null, "1801", null, "34781", null, "1781", null, "29856", null, "2631", null, "24068", null, "2226", null, "21278", null, "1418", null, "24107", null, "1568", null, "23789", null, "2130", null, "28299", null, "2304", null, "24418", null, "1750", null, "20396", null, "1809", null, "11925", null, "1325", null, "7130", null, "1112", null, "5650", null, "1090", null, "39437", null, "2559", null, "13235", null, "1410", null, "74471", null, "3139", null, "29575", null, "2130", null, "161152", null, "3502", null, "323482", null, "4375", null, "314909", null, "4213", null, "303629", null, "4239", null, "97818", null, "3889", null, "85774", null, "3453", null, "69519", null, "2724", null, "24705", null, "1493", null, "39.4", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.6", null, "0.4", null, "5.2", null, "0.6", null, "4.9", null, "0.5", null, "5.5", null, "0.5", null, "5.5", null, "0.4", null, "7.6", null, "0.5", null, "8.9", null, "0.5", null, "7.7", null, "0.7", null, "6.2", null, "0.6", null, "5.5", null, "0.4", null, "6.2", null, "0.4", null, "6.1", null, "0.5", null, "7.3", null, "0.6", null, "6.3", null, "0.4", null, "5.2", null, "0.5", null, "3.1", null, "0.3", null, "1.8", null, "0.3", null, "1.5", null, "0.3", null, "10.1", null, "0.6", null, "3.4", null, "0.4", null, "19.1", null, "0.7", null, "7.6", null, "0.5", null, "41.4", null, "0.8", null, "83.1", null, "0.7", null, "80.9", null, "0.7", null, "78.0", null, "0.8", null, "25.1", null, "1.0", null, "22.0", null, "0.9", null, "17.9", null, "0.7", null, "6.3", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "397830", null, "6322", null, "21575", null, "1400", null, "20908", null, "2052", null, "17359", null, "2397", null, "20266", null, "1818", null, "23168", null, "2117", null, "28317", null, "1713", null, "29788", null, "2129", null, "29323", null, "2503", null, "23703", null, "2430", null, "21696", null, "1329", null, "24480", null, "1853", null, "26104", null, "2018", null, "28427", null, "1975", null, "27858", null, "1713", null, "21022", null, "1775", null, "13906", null, "1633", null, "10072", null, "1420", null, "9858", null, "1568", null, "38267", null, "2805", null, "12481", null, "1166", null, "72323", null, "3564", null, "30953", null, "2418", null, "154565", null, "4157", null, "333777", null, "5556", null, "325507", null, "5464", null, "314811", null, "5288", null, "111143", null, "3084", null, "99002", null, "2777", null, "82716", null, "2528", null, "33836", null, "1645", null, "41.9", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.3", null, "5.3", null, "0.5", null, "4.4", null, "0.6", null, "5.1", null, "0.4", null, "5.8", null, "0.5", null, "7.1", null, "0.4", null, "7.5", null, "0.5", null, "7.4", null, "0.6", null, "6.0", null, "0.6", null, "5.5", null, "0.3", null, "6.2", null, "0.4", null, "6.6", null, "0.5", null, "7.1", null, "0.5", null, "7.0", null, "0.4", null, "5.3", null, "0.5", null, "3.5", null, "0.4", null, "2.5", null, "0.4", null, "2.5", null, "0.4", null, "9.6", null, "0.7", null, "3.1", null, "0.3", null, "18.2", null, "0.8", null, "7.8", null, "0.6", null, "38.9", null, "0.7", null, "83.9", null, "0.8", null, "81.8", null, "0.8", null, "79.1", null, "0.9", null, "27.9", null, "0.8", null, "24.9", null, "0.7", null, "20.8", null, "0.6", null, "8.5", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "26", "11"], ["5001900US2612", "Congressional District 12 (119th Congress), Michigan", "751709", null, "13245", null, "46414", null, "4856", null, "45493", null, "4048", null, "49501", null, "4471", null, "44971", null, "3494", null, "43500", null, "3751", null, "53093", null, "3770", null, "54248", null, "3770", null, "49460", null, "4054", null, "44343", null, "3759", null, "42908", null, "3471", null, "44305", null, "3697", null, "47202", null, "3875", null, "46722", null, "3859", null, "41842", null, "3329", null, "38530", null, "3418", null, "23824", null, "2271", null, "17814", null, "2320", null, "17539", null, "2141", null, "94994", null, "5794", null, "30682", null, "2817", null, "172090", null, "8525", null, "57789", null, "4278", null, "289615", null, "7605", null, "600465", null, "11048", null, "579619", null, "10421", null, "557018", null, "10269", null, "186271", null, "6802", null, "168555", null, "6393", null, "139549", null, "5633", null, "59177", null, "3403", null, "38.7", null, "1.0", null, "90.9", null, "2.8", null, "70.8", null, "2.5", null, "31.7", null, "1.6", null, "39.1", null, "2.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.2", null, "0.6", null, "6.1", null, "0.5", null, "6.6", null, "0.6", null, "6.0", null, "0.5", null, "5.8", null, "0.5", null, "7.1", null, "0.5", null, "7.2", null, "0.5", null, "6.6", null, "0.5", null, "5.9", null, "0.5", null, "5.7", null, "0.5", null, "5.9", null, "0.5", null, "6.3", null, "0.5", null, "6.2", null, "0.5", null, "5.6", null, "0.4", null, "5.1", null, "0.5", null, "3.2", null, "0.3", null, "2.4", null, "0.3", null, "2.3", null, "0.3", null, "12.6", null, "0.7", null, "4.1", null, "0.4", null, "22.9", null, "0.9", null, "7.7", null, "0.5", null, "38.5", null, "0.8", null, "79.9", null, "1.0", null, "77.1", null, "0.9", null, "74.1", null, "1.0", null, "24.8", null, "0.9", null, "22.4", null, "0.9", null, "18.6", null, "0.8", null, "7.9", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.4", null, "-888888888.0", "(X)", "357997", null, "8027", null, "25241", null, "3047", null, "23280", null, "2794", null, "26335", null, "3170", null, "22306", null, "2558", null, "22055", null, "2372", null, "25561", null, "2536", null, "26293", null, "2522", null, "24906", null, "3007", null, "21664", null, "2589", null, "19659", null, "2174", null, "20677", null, "2290", null, "22509", null, "2636", null, "20418", null, "2355", null, "18250", null, "2097", null, "16455", null, "1865", null, "10705", null, "1571", null, "6300", null, "1266", null, "5383", null, "1158", null, "49615", null, "3899", null, "15714", null, "1992", null, "90570", null, "5560", null, "28647", null, "2956", null, "142785", null, "5408", null, "277576", null, "6814", null, "267427", null, "6422", null, "256991", null, "6301", null, "77511", null, "3659", null, "70000", null, "3389", null, "57093", null, "2950", null, "22388", null, "1885", null, "36.3", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "7.1", null, "0.8", null, "6.5", null, "0.8", null, "7.4", null, "0.9", null, "6.2", null, "0.7", null, "6.2", null, "0.6", null, "7.1", null, "0.7", null, "7.3", null, "0.7", null, "7.0", null, "0.9", null, "6.1", null, "0.7", null, "5.5", null, "0.6", null, "5.8", null, "0.6", null, "6.3", null, "0.7", null, "5.7", null, "0.6", null, "5.1", null, "0.6", null, "4.6", null, "0.5", null, "3.0", null, "0.4", null, "1.8", null, "0.4", null, "1.5", null, "0.3", null, "13.9", null, "1.0", null, "4.4", null, "0.5", null, "25.3", null, "1.3", null, "8.0", null, "0.8", null, "39.9", null, "1.2", null, "77.5", null, "1.3", null, "74.7", null, "1.3", null, "71.8", null, "1.4", null, "21.7", null, "1.0", null, "19.6", null, "1.0", null, "15.9", null, "0.9", null, "6.3", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "393712", null, "9398", null, "21173", null, "3081", null, "22213", null, "3300", null, "23166", null, "2797", null, "22665", null, "2569", null, "21445", null, "2686", null, "27532", null, "2642", null, "27955", null, "2368", null, "24554", null, "2745", null, "22679", null, "2683", null, "23249", null, "2265", null, "23628", null, "2343", null, "24693", null, "2468", null, "26304", null, "2499", null, "23592", null, "2321", null, "22075", null, "2360", null, "13119", null, "1447", null, "11514", null, "1691", null, "12156", null, "1738", null, "45379", null, "3768", null, "14968", null, "1984", null, "81520", null, "5588", null, "29142", null, "2901", null, "146830", null, "6087", null, "322889", null, "8078", null, "312192", null, "7667", null, "300027", null, "7353", null, "108760", null, "4650", null, "98555", null, "4744", null, "82456", null, "4142", null, "36789", null, "2404", null, "41.4", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.7", null, "5.6", null, "0.8", null, "5.9", null, "0.7", null, "5.8", null, "0.6", null, "5.4", null, "0.7", null, "7.0", null, "0.6", null, "7.1", null, "0.6", null, "6.2", null, "0.7", null, "5.8", null, "0.7", null, "5.9", null, "0.6", null, "6.0", null, "0.6", null, "6.3", null, "0.6", null, "6.7", null, "0.6", null, "6.0", null, "0.6", null, "5.6", null, "0.6", null, "3.3", null, "0.4", null, "2.9", null, "0.4", null, "3.1", null, "0.5", null, "11.5", null, "0.9", null, "3.8", null, "0.5", null, "20.7", null, "1.2", null, "7.4", null, "0.7", null, "37.3", null, "1.2", null, "82.0", null, "1.2", null, "79.3", null, "1.2", null, "76.2", null, "1.2", null, "27.6", null, "1.2", null, "25.0", null, "1.2", null, "20.9", null, "1.0", null, "9.3", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "26", "12"], ["5001900US2613", "Congressional District 13 (119th Congress), Michigan", "784609", null, "15798", null, "49859", null, "4479", null, "53496", null, "4700", null, "53772", null, "4107", null, "55858", null, "3672", null, "50525", null, "3669", null, "54471", null, "3849", null, "62701", null, "3878", null, "52241", null, "4490", null, "45372", null, "3918", null, "42211", null, "2964", null, "48608", null, "3342", null, "47010", null, "3728", null, "42664", null, "3072", null, "45585", null, "3523", null, "32674", null, "2901", null, "22926", null, "2251", null, "12838", null, "1914", null, "11798", null, "2031", null, "107268", null, "5626", null, "35146", null, "2851", null, "192273", null, "8450", null, "71237", null, "4248", null, "321168", null, "8290", null, "616264", null, "12011", null, "592336", null, "11870", null, "561997", null, "11477", null, "168485", null, "5246", null, "150995", null, "5165", null, "125821", null, "4499", null, "47562", null, "2741", null, "35.9", null, "0.6", null, "92.3", null, "2.6", null, "68.2", null, "2.3", null, "27.0", null, "1.1", null, "41.2", null, "1.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.4", null, "0.5", null, "6.8", null, "0.6", null, "6.9", null, "0.5", null, "7.1", null, "0.4", null, "6.4", null, "0.4", null, "6.9", null, "0.5", null, "8.0", null, "0.5", null, "6.7", null, "0.6", null, "5.8", null, "0.5", null, "5.4", null, "0.4", null, "6.2", null, "0.4", null, "6.0", null, "0.5", null, "5.4", null, "0.4", null, "5.8", null, "0.4", null, "4.2", null, "0.4", null, "2.9", null, "0.3", null, "1.6", null, "0.3", null, "1.5", null, "0.3", null, "13.7", null, "0.6", null, "4.5", null, "0.4", null, "24.5", null, "0.8", null, "9.1", null, "0.5", null, "40.9", null, "0.7", null, "78.5", null, "0.8", null, "75.5", null, "0.8", null, "71.6", null, "0.9", null, "21.5", null, "0.6", null, "19.2", null, "0.6", null, "16.0", null, "0.6", null, "6.1", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.5", null, "-888888888.0", "(X)", "376572", null, "8221", null, "24445", null, "2839", null, "28082", null, "2934", null, "26899", null, "2623", null, "27282", null, "2232", null, "25519", null, "2156", null, "26164", null, "2496", null, "30654", null, "2659", null, "24869", null, "3085", null, "21091", null, "2328", null, "19615", null, "1974", null, "22460", null, "2281", null, "23528", null, "2575", null, "20868", null, "2009", null, "21355", null, "2246", null, "14867", null, "2125", null, "10960", null, "1290", null, "4416", null, "1034", null, "3498", null, "964", null, "54981", null, "3310", null, "16982", null, "1847", null, "96408", null, "4809", null, "35819", null, "2668", null, "155579", null, "4904", null, "291108", null, "6658", null, "280164", null, "6445", null, "264953", null, "6387", null, "75964", null, "3029", null, "67689", null, "3064", null, "55096", null, "2532", null, "18874", null, "1512", null, "34.8", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.5", null, "0.7", null, "7.5", null, "0.7", null, "7.1", null, "0.7", null, "7.2", null, "0.6", null, "6.8", null, "0.6", null, "6.9", null, "0.6", null, "8.1", null, "0.7", null, "6.6", null, "0.8", null, "5.6", null, "0.6", null, "5.2", null, "0.5", null, "6.0", null, "0.6", null, "6.2", null, "0.7", null, "5.5", null, "0.5", null, "5.7", null, "0.6", null, "3.9", null, "0.6", null, "2.9", null, "0.3", null, "1.2", null, "0.3", null, "0.9", null, "0.3", null, "14.6", null, "0.8", null, "4.5", null, "0.5", null, "25.6", null, "1.0", null, "9.5", null, "0.7", null, "41.3", null, "1.0", null, "77.3", null, "1.1", null, "74.4", null, "1.0", null, "70.4", null, "1.1", null, "20.2", null, "0.8", null, "18.0", null, "0.8", null, "14.6", null, "0.7", null, "5.0", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "408037", null, "11010", null, "25414", null, "2825", null, "25414", null, "3332", null, "26873", null, "3395", null, "28576", null, "2441", null, "25006", null, "2749", null, "28307", null, "2521", null, "32047", null, "2359", null, "27372", null, "2822", null, "24281", null, "2816", null, "22596", null, "1982", null, "26148", null, "2076", null, "23482", null, "2516", null, "21796", null, "2063", null, "24230", null, "2146", null, "17807", null, "1938", null, "11966", null, "1523", null, "8422", null, "1426", null, "8300", null, "1535", null, "52287", null, "4142", null, "18164", null, "1957", null, "95865", null, "5787", null, "35418", null, "3037", null, "165589", null, "5673", null, "325156", null, "8536", null, "312172", null, "8176", null, "297044", null, "7673", null, "92521", null, "3852", null, "83306", null, "3645", null, "70725", null, "3122", null, "28688", null, "2042", null, "37.2", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.2", null, "0.6", null, "6.2", null, "0.8", null, "6.6", null, "0.8", null, "7.0", null, "0.6", null, "6.1", null, "0.6", null, "6.9", null, "0.6", null, "7.9", null, "0.6", null, "6.7", null, "0.7", null, "6.0", null, "0.7", null, "5.5", null, "0.5", null, "6.4", null, "0.5", null, "5.8", null, "0.6", null, "5.3", null, "0.5", null, "5.9", null, "0.5", null, "4.4", null, "0.5", null, "2.9", null, "0.4", null, "2.1", null, "0.4", null, "2.0", null, "0.4", null, "12.8", null, "0.9", null, "4.5", null, "0.5", null, "23.5", null, "1.1", null, "8.7", null, "0.7", null, "40.6", null, "1.0", null, "79.7", null, "1.1", null, "76.5", null, "1.1", null, "72.8", null, "1.2", null, "22.7", null, "0.8", null, "20.4", null, "0.8", null, "17.3", null, "0.7", null, "7.0", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "26", "13"], ["5001900US2701", "Congressional District 1 (119th Congress), Minnesota", "718116", null, "1542", null, "36938", null, "1700", null, "43385", null, "2614", null, "46568", null, "2768", null, "52982", null, "2227", null, "52453", null, "2756", null, "44041", null, "2425", null, "42146", null, "1645", null, "43844", null, "2981", null, "48490", null, "2463", null, "40679", null, "1555", null, "39125", null, "1412", null, "38869", null, "2054", null, "46920", null, "1847", null, "44260", null, "2033", null, "34958", null, "1850", null, "25261", null, "1810", null, "16324", null, "1330", null, "20873", null, "1790", null, "89953", null, "1843", null, "28951", null, "1210", null, "155842", null, "1918", null, "76484", null, "2784", null, "283956", null, "2632", null, "581320", null, "2220", null, "562274", null, "1732", null, "526612", null, "2825", null, "188596", null, "2614", null, "169293", null, "2598", null, "141676", null, "1813", null, "62458", null, "1017", null, "39.6", null, "0.4", null, "100.7", null, "1.3", null, "70.7", null, "0.8", null, "33.7", null, "0.6", null, "37.1", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.1", null, "0.2", null, "6.0", null, "0.4", null, "6.5", null, "0.4", null, "7.4", null, "0.3", null, "7.3", null, "0.4", null, "6.1", null, "0.3", null, "5.9", null, "0.2", null, "6.1", null, "0.4", null, "6.8", null, "0.3", null, "5.7", null, "0.2", null, "5.4", null, "0.2", null, "5.4", null, "0.3", null, "6.5", null, "0.3", null, "6.2", null, "0.3", null, "4.9", null, "0.3", null, "3.5", null, "0.3", null, "2.3", null, "0.2", null, "2.9", null, "0.2", null, "12.5", null, "0.3", null, "4.0", null, "0.2", null, "21.7", null, "0.2", null, "10.7", null, "0.4", null, "39.5", null, "0.4", null, "81.0", null, "0.3", null, "78.3", null, "0.2", null, "73.3", null, "0.4", null, "26.3", null, "0.4", null, "23.6", null, "0.4", null, "19.7", null, "0.3", null, "8.7", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "0.8", null, "-888888888.0", "(X)", "360328", null, "2476", null, "18362", null, "1136", null, "22228", null, "2085", null, "24225", null, "2206", null, "27757", null, "1581", null, "27065", null, "1592", null, "22060", null, "1550", null, "20627", null, "1091", null, "21982", null, "1826", null, "25489", null, "1718", null, "21015", null, "1108", null, "20173", null, "1016", null, "19756", null, "1535", null, "24274", null, "1436", null, "21082", null, "1052", null, "17448", null, "1140", null, "12568", null, "980", null, "6382", null, "718", null, "7835", null, "938", null, "46453", null, "1791", null, "15247", null, "905", null, "80062", null, "2297", null, "39575", null, "1577", null, "144980", null, "1903", null, "290866", null, "2004", null, "280266", null, "1872", null, "262492", null, "2446", null, "89589", null, "1723", null, "79229", null, "1416", null, "65315", null, "876", null, "26785", null, "550", null, "39.1", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.1", null, "0.3", null, "6.2", null, "0.6", null, "6.7", null, "0.6", null, "7.7", null, "0.4", null, "7.5", null, "0.4", null, "6.1", null, "0.4", null, "5.7", null, "0.3", null, "6.1", null, "0.5", null, "7.1", null, "0.5", null, "5.8", null, "0.3", null, "5.6", null, "0.3", null, "5.5", null, "0.4", null, "6.7", null, "0.4", null, "5.9", null, "0.3", null, "4.8", null, "0.3", null, "3.5", null, "0.3", null, "1.8", null, "0.2", null, "2.2", null, "0.3", null, "12.9", null, "0.5", null, "4.2", null, "0.2", null, "22.2", null, "0.5", null, "11.0", null, "0.4", null, "40.2", null, "0.5", null, "80.7", null, "0.5", null, "77.8", null, "0.5", null, "72.8", null, "0.8", null, "24.9", null, "0.4", null, "22.0", null, "0.4", null, "18.1", null, "0.3", null, "7.4", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "357788", null, "2524", null, "18576", null, "1222", null, "21157", null, "1774", null, "22343", null, "1653", null, "25225", null, "1547", null, "25388", null, "1880", null, "21981", null, "1723", null, "21519", null, "1202", null, "21862", null, "1827", null, "23001", null, "1482", null, "19664", null, "916", null, "18952", null, "824", null, "19113", null, "1072", null, "22646", null, "1022", null, "23178", null, "1477", null, "17510", null, "1150", null, "12693", null, "1154", null, "9942", null, "1119", null, "13038", null, "1455", null, "43500", null, "1563", null, "13704", null, "849", null, "75780", null, "2065", null, "36909", null, "1934", null, "138976", null, "1973", null, "290454", null, "2110", null, "282008", null, "1887", null, "264120", null, "2396", null, "99007", null, "1780", null, "90064", null, "1835", null, "76361", null, "1398", null, "35673", null, "878", null, "40.2", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.3", null, "5.9", null, "0.5", null, "6.2", null, "0.5", null, "7.1", null, "0.4", null, "7.1", null, "0.5", null, "6.1", null, "0.5", null, "6.0", null, "0.3", null, "6.1", null, "0.5", null, "6.4", null, "0.4", null, "5.5", null, "0.2", null, "5.3", null, "0.2", null, "5.3", null, "0.3", null, "6.3", null, "0.3", null, "6.5", null, "0.4", null, "4.9", null, "0.3", null, "3.5", null, "0.3", null, "2.8", null, "0.3", null, "3.6", null, "0.4", null, "12.2", null, "0.4", null, "3.8", null, "0.2", null, "21.2", null, "0.5", null, "10.3", null, "0.5", null, "38.8", null, "0.5", null, "81.2", null, "0.6", null, "78.8", null, "0.5", null, "73.8", null, "0.7", null, "27.7", null, "0.5", null, "25.2", null, "0.5", null, "21.3", null, "0.4", null, "10.0", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "27", "01"], ["5001900US2702", "Congressional District 2 (119th Congress), Minnesota", "746020", null, "4022", null, "40521", null, "1086", null, "47568", null, "3302", null, "55940", null, "3093", null, "52050", null, "1875", null, "47744", null, "2490", null, "42904", null, "2160", null, "48265", null, "1843", null, "53115", null, "3285", null, "53606", null, "3340", null, "46443", null, "1574", null, "45408", null, "1560", null, "44613", null, "2742", null, "50004", null, "2429", null, "39308", null, "2367", null, "31685", null, "2463", null, "22413", null, "1790", null, "14678", null, "1454", null, "9755", null, "1438", null, "103508", null, "2256", null, "32856", null, "1009", null, "176885", null, "2499", null, "66938", null, "2375", null, "297684", null, "3204", null, "591686", null, "3332", null, "569135", null, "2999", null, "541925", null, "3730", null, "167843", null, "3615", null, "145213", null, "3157", null, "117839", null, "2174", null, "46846", null, "1112", null, "38.6", null, "0.4", null, "99.3", null, "1.1", null, "65.3", null, "0.7", null, "26.1", null, "0.6", null, "39.2", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.1", null, "6.4", null, "0.4", null, "7.5", null, "0.4", null, "7.0", null, "0.2", null, "6.4", null, "0.3", null, "5.8", null, "0.3", null, "6.5", null, "0.2", null, "7.1", null, "0.4", null, "7.2", null, "0.5", null, "6.2", null, "0.2", null, "6.1", null, "0.2", null, "6.0", null, "0.4", null, "6.7", null, "0.3", null, "5.3", null, "0.3", null, "4.2", null, "0.3", null, "3.0", null, "0.2", null, "2.0", null, "0.2", null, "1.3", null, "0.2", null, "13.9", null, "0.3", null, "4.4", null, "0.1", null, "23.7", null, "0.3", null, "9.0", null, "0.3", null, "39.9", null, "0.4", null, "79.3", null, "0.3", null, "76.3", null, "0.3", null, "72.6", null, "0.4", null, "22.5", null, "0.5", null, "19.5", null, "0.4", null, "15.8", null, "0.3", null, "6.3", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "0.8", null, "-888888888.0", "(X)", "371776", null, "3083", null, "21013", null, "790", null, "23355", null, "2511", null, "29531", null, "2336", null, "24852", null, "1067", null, "25249", null, "1902", null, "21810", null, "1535", null, "24579", null, "1307", null, "26766", null, "2075", null, "26219", null, "2400", null, "23651", null, "991", null, "23525", null, "987", null, "23086", null, "2015", null, "23946", null, "1786", null, "19146", null, "1576", null, "15001", null, "1666", null, "10014", null, "1119", null, "6328", null, "799", null, "3705", null, "881", null, "52886", null, "1585", null, "16239", null, "849", null, "90138", null, "2110", null, "33862", null, "1848", null, "149475", null, "2216", null, "293214", null, "2481", null, "281638", null, "2133", null, "268062", null, "2513", null, "78140", null, "2187", null, "67333", null, "1880", null, "54194", null, "1225", null, "20047", null, "861", null, "37.9", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.7", null, "0.2", null, "6.3", null, "0.7", null, "7.9", null, "0.6", null, "6.7", null, "0.3", null, "6.8", null, "0.5", null, "5.9", null, "0.4", null, "6.6", null, "0.3", null, "7.2", null, "0.6", null, "7.1", null, "0.7", null, "6.4", null, "0.3", null, "6.3", null, "0.3", null, "6.2", null, "0.5", null, "6.4", null, "0.5", null, "5.1", null, "0.4", null, "4.0", null, "0.4", null, "2.7", null, "0.3", null, "1.7", null, "0.2", null, "1.0", null, "0.2", null, "14.2", null, "0.4", null, "4.4", null, "0.2", null, "24.2", null, "0.4", null, "9.1", null, "0.5", null, "40.2", null, "0.5", null, "78.9", null, "0.4", null, "75.8", null, "0.4", null, "72.1", null, "0.6", null, "21.0", null, "0.6", null, "18.1", null, "0.5", null, "14.6", null, "0.4", null, "5.4", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "374244", null, "2566", null, "19508", null, "993", null, "24213", null, "1864", null, "26409", null, "1977", null, "27198", null, "1739", null, "22495", null, "1830", null, "21094", null, "1313", null, "23686", null, "968", null, "26349", null, "2171", null, "27387", null, "1980", null, "22792", null, "1078", null, "21883", null, "1013", null, "21527", null, "1463", null, "26058", null, "1638", null, "20162", null, "1523", null, "16684", null, "1398", null, "12399", null, "1129", null, "8350", null, "1109", null, "6050", null, "1087", null, "50622", null, "1277", null, "16617", null, "974", null, "86747", null, "1762", null, "33076", null, "1755", null, "148209", null, "2663", null, "298472", null, "2343", null, "287497", null, "2130", null, "273863", null, "2387", null, "89703", null, "2249", null, "77880", null, "2015", null, "63645", null, "1374", null, "26799", null, "785", null, "39.3", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.3", null, "6.5", null, "0.5", null, "7.1", null, "0.5", null, "7.3", null, "0.5", null, "6.0", null, "0.5", null, "5.6", null, "0.3", null, "6.3", null, "0.3", null, "7.0", null, "0.6", null, "7.3", null, "0.5", null, "6.1", null, "0.3", null, "5.8", null, "0.3", null, "5.8", null, "0.4", null, "7.0", null, "0.4", null, "5.4", null, "0.4", null, "4.5", null, "0.4", null, "3.3", null, "0.3", null, "2.2", null, "0.3", null, "1.6", null, "0.3", null, "13.5", null, "0.3", null, "4.4", null, "0.3", null, "23.2", null, "0.4", null, "8.8", null, "0.5", null, "39.6", null, "0.6", null, "79.8", null, "0.5", null, "76.8", null, "0.4", null, "73.2", null, "0.6", null, "24.0", null, "0.6", null, "20.8", null, "0.5", null, "17.0", null, "0.4", null, "7.2", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "27", "02"], ["5001900US2703", "Congressional District 3 (119th Congress), Minnesota", "710658", null, "7264", null, "43409", null, "3159", null, "43146", null, "3097", null, "46332", null, "4131", null, "41643", null, "2744", null, "32319", null, "3016", null, "42317", null, "3565", null, "46589", null, "3538", null, "53945", null, "4246", null, "47018", null, "3658", null, "43921", null, "3139", null, "45049", null, "3061", null, "42530", null, "2922", null, "48680", null, "3010", null, "40577", null, "2997", null, "37074", null, "2971", null, "23687", null, "2276", null, "16416", null, "1458", null, "16006", null, "1878", null, "89478", null, "5047", null, "30549", null, "2153", null, "163436", null, "6821", null, "43413", null, "3618", null, "263831", null, "5927", null, "568886", null, "7113", null, "547222", null, "7316", null, "531032", null, "7122", null, "182440", null, "5655", null, "162639", null, "5280", null, "133760", null, "4782", null, "56109", null, "2677", null, "40.6", null, "0.9", null, "96.1", null, "2.5", null, "71.9", null, "2.3", null, "32.4", null, "1.4", null, "39.5", null, "1.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.1", null, "0.4", null, "6.1", null, "0.4", null, "6.5", null, "0.6", null, "5.9", null, "0.4", null, "4.5", null, "0.4", null, "6.0", null, "0.5", null, "6.6", null, "0.5", null, "7.6", null, "0.6", null, "6.6", null, "0.5", null, "6.2", null, "0.4", null, "6.3", null, "0.4", null, "6.0", null, "0.4", null, "6.8", null, "0.4", null, "5.7", null, "0.4", null, "5.2", null, "0.4", null, "3.3", null, "0.3", null, "2.3", null, "0.2", null, "2.3", null, "0.3", null, "12.6", null, "0.7", null, "4.3", null, "0.3", null, "23.0", null, "0.9", null, "6.1", null, "0.5", null, "37.1", null, "0.7", null, "80.1", null, "0.8", null, "77.0", null, "0.9", null, "74.7", null, "0.9", null, "25.7", null, "0.8", null, "22.9", null, "0.8", null, "18.8", null, "0.7", null, "7.9", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "0.9", null, "-888888888.0", "(X)", "348288", null, "5848", null, "20309", null, "2179", null, "20619", null, "2260", null, "22125", null, "2605", null, "23066", null, "2218", null, "16835", null, "1949", null, "22647", null, "2239", null, "23163", null, "2302", null, "28675", null, "2913", null, "21897", null, "2444", null, "22575", null, "2123", null, "23253", null, "1940", null, "20380", null, "1794", null, "23239", null, "2229", null, "19214", null, "1914", null, "16905", null, "1894", null, "10721", null, "1294", null, "7202", null, "958", null, "5463", null, "941", null, "42744", null, "3201", null, "16673", null, "1668", null, "79726", null, "4581", null, "23228", null, "2444", null, "136283", null, "4907", null, "280054", null, "5198", null, "268562", null, "5279", null, "259781", null, "5159", null, "82744", null, "3605", null, "72984", null, "3244", null, "59505", null, "2789", null, "23386", null, "1387", null, "39.5", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.8", null, "0.6", null, "5.9", null, "0.6", null, "6.4", null, "0.7", null, "6.6", null, "0.6", null, "4.8", null, "0.5", null, "6.5", null, "0.6", null, "6.7", null, "0.7", null, "8.2", null, "0.8", null, "6.3", null, "0.7", null, "6.5", null, "0.6", null, "6.7", null, "0.6", null, "5.9", null, "0.5", null, "6.7", null, "0.6", null, "5.5", null, "0.6", null, "4.9", null, "0.5", null, "3.1", null, "0.4", null, "2.1", null, "0.3", null, "1.6", null, "0.3", null, "12.3", null, "0.8", null, "4.8", null, "0.5", null, "22.9", null, "1.2", null, "6.7", null, "0.7", null, "39.1", null, "1.1", null, "80.4", null, "1.1", null, "77.1", null, "1.2", null, "74.6", null, "1.3", null, "23.8", null, "1.0", null, "21.0", null, "1.0", null, "17.1", null, "0.8", null, "6.7", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "362370", null, "5788", null, "23100", null, "2162", null, "22527", null, "2584", null, "24207", null, "2779", null, "18577", null, "1832", null, "15484", null, "2198", null, "19670", null, "2451", null, "23426", null, "2133", null, "25270", null, "2441", null, "25121", null, "2278", null, "21346", null, "2093", null, "21796", null, "1772", null, "22150", null, "2209", null, "25441", null, "1928", null, "21363", null, "1890", null, "20169", null, "1841", null, "12966", null, "1541", null, "9214", null, "1178", null, "10543", null, "1351", null, "46734", null, "3162", null, "13876", null, "1405", null, "83710", null, "4285", null, "20185", null, "2463", null, "127548", null, "3624", null, "288832", null, "5171", null, "278660", null, "4976", null, "271251", null, "4857", null, "99696", null, "3279", null, "89655", null, "3239", null, "74255", null, "3009", null, "32723", null, "1906", null, "42.0", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.4", null, "0.6", null, "6.2", null, "0.7", null, "6.7", null, "0.7", null, "5.1", null, "0.5", null, "4.3", null, "0.6", null, "5.4", null, "0.7", null, "6.5", null, "0.6", null, "7.0", null, "0.7", null, "6.9", null, "0.6", null, "5.9", null, "0.6", null, "6.0", null, "0.5", null, "6.1", null, "0.6", null, "7.0", null, "0.6", null, "5.9", null, "0.5", null, "5.6", null, "0.5", null, "3.6", null, "0.4", null, "2.5", null, "0.3", null, "2.9", null, "0.4", null, "12.9", null, "0.8", null, "3.8", null, "0.4", null, "23.1", null, "1.0", null, "5.6", null, "0.7", null, "35.2", null, "0.8", null, "79.7", null, "1.0", null, "76.9", null, "1.0", null, "74.9", null, "1.1", null, "27.5", null, "0.9", null, "24.7", null, "0.9", null, "20.5", null, "0.8", null, "9.0", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "27", "03"], ["5001900US2704", "Congressional District 4 (119th Congress), Minnesota", "708464", null, "5507", null, "41570", null, "1314", null, "43615", null, "3106", null, "47563", null, "3077", null, "46567", null, "1616", null, "44834", null, "2026", null, "49733", null, "1578", null, "52952", null, "1685", null, "50869", null, "3246", null, "49252", null, "2931", null, "39008", null, "1394", null, "37591", null, "1418", null, "37414", null, "2592", null, "45066", null, "2524", null, "39031", null, "2171", null, "32143", null, "2333", null, "23128", null, "1954", null, "14664", null, "1776", null, "13464", null, "1592", null, "91178", null, "2071", null, "28542", null, "1201", null, "161290", null, "2876", null, "62859", null, "2003", null, "294207", null, "3511", null, "566384", null, "4266", null, "547174", null, "3823", null, "518678", null, "4319", null, "167496", null, "3038", null, "150198", null, "3077", null, "122430", null, "1854", null, "51256", null, "1159", null, "37.7", null, "0.3", null, "96.7", null, "1.0", null, "66.8", null, "0.8", null, "28.8", null, "0.5", null, "38.0", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.9", null, "0.2", null, "6.2", null, "0.4", null, "6.7", null, "0.4", null, "6.6", null, "0.2", null, "6.3", null, "0.3", null, "7.0", null, "0.2", null, "7.5", null, "0.2", null, "7.2", null, "0.5", null, "7.0", null, "0.4", null, "5.5", null, "0.2", null, "5.3", null, "0.2", null, "5.3", null, "0.4", null, "6.4", null, "0.4", null, "5.5", null, "0.3", null, "4.5", null, "0.3", null, "3.3", null, "0.3", null, "2.1", null, "0.2", null, "1.9", null, "0.2", null, "12.9", null, "0.2", null, "4.0", null, "0.2", null, "22.8", null, "0.3", null, "8.9", null, "0.3", null, "41.5", null, "0.3", null, "79.9", null, "0.3", null, "77.2", null, "0.3", null, "73.2", null, "0.4", null, "23.6", null, "0.4", null, "21.2", null, "0.4", null, "17.3", null, "0.3", null, "7.2", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.0", null, "-888888888.0", "(X)", "348235", null, "3382", null, "21204", null, "858", null, "20956", null, "1964", null, "25817", null, "1967", null, "23732", null, "1406", null, "21329", null, "1411", null, "25040", null, "1059", null, "26979", null, "1064", null, "26810", null, "2089", null, "23870", null, "1892", null, "19490", null, "875", null, "18632", null, "788", null, "20060", null, "1776", null, "20412", null, "1710", null, "17244", null, "1426", null, "15112", null, "1538", null, "10228", null, "1165", null, "5786", null, "965", null, "5534", null, "974", null, "46773", null, "1336", null, "14674", null, "1086", null, "82651", null, "1999", null, "30387", null, "1343", null, "147760", null, "2603", null, "274991", null, "2588", null, "265584", null, "2105", null, "250114", null, "2731", null, "74316", null, "1892", null, "66550", null, "1787", null, "53904", null, "992", null, "21548", null, "754", null, "36.6", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.1", null, "0.2", null, "6.0", null, "0.6", null, "7.4", null, "0.6", null, "6.8", null, "0.4", null, "6.1", null, "0.4", null, "7.2", null, "0.3", null, "7.7", null, "0.3", null, "7.7", null, "0.6", null, "6.9", null, "0.5", null, "5.6", null, "0.3", null, "5.4", null, "0.2", null, "5.8", null, "0.5", null, "5.9", null, "0.5", null, "5.0", null, "0.4", null, "4.3", null, "0.4", null, "2.9", null, "0.3", null, "1.7", null, "0.3", null, "1.6", null, "0.3", null, "13.4", null, "0.3", null, "4.2", null, "0.3", null, "23.7", null, "0.4", null, "8.7", null, "0.4", null, "42.4", null, "0.5", null, "79.0", null, "0.5", null, "76.3", null, "0.4", null, "71.8", null, "0.7", null, "21.3", null, "0.6", null, "19.1", null, "0.5", null, "15.5", null, "0.3", null, "6.2", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "360229", null, "3189", null, "20366", null, "891", null, "22659", null, "2185", null, "21746", null, "2133", null, "22835", null, "1165", null, "23505", null, "1114", null, "24693", null, "959", null, "25973", null, "894", null, "24059", null, "2317", null, "25382", null, "2347", null, "19518", null, "954", null, "18959", null, "1024", null, "17354", null, "1747", null, "24654", null, "1870", null, "21787", null, "1320", null, "17031", null, "1312", null, "12900", null, "1307", null, "8878", null, "1235", null, "7930", null, "1259", null, "44405", null, "1458", null, "13868", null, "827", null, "78639", null, "1964", null, "32472", null, "1239", null, "146447", null, "2158", null, "291393", null, "2501", null, "281590", null, "2351", null, "268564", null, "2442", null, "93180", null, "2176", null, "83648", null, "2033", null, "68526", null, "1148", null, "29708", null, "776", null, "38.8", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.7", null, "0.2", null, "6.3", null, "0.6", null, "6.0", null, "0.6", null, "6.3", null, "0.3", null, "6.5", null, "0.3", null, "6.9", null, "0.3", null, "7.2", null, "0.2", null, "6.7", null, "0.6", null, "7.0", null, "0.6", null, "5.4", null, "0.3", null, "5.3", null, "0.3", null, "4.8", null, "0.5", null, "6.8", null, "0.5", null, "6.0", null, "0.4", null, "4.7", null, "0.4", null, "3.6", null, "0.4", null, "2.5", null, "0.3", null, "2.2", null, "0.4", null, "12.3", null, "0.4", null, "3.8", null, "0.2", null, "21.8", null, "0.4", null, "9.0", null, "0.3", null, "40.7", null, "0.4", null, "80.9", null, "0.4", null, "78.2", null, "0.4", null, "74.6", null, "0.4", null, "25.9", null, "0.6", null, "23.2", null, "0.6", null, "19.0", null, "0.3", null, "8.2", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "27", "04"], ["5001900US2705", "Congressional District 5 (119th Congress), Minnesota", "705006", null, "7111", null, "37975", null, "2554", null, "40616", null, "3901", null, "40097", null, "3939", null, "43160", null, "2657", null, "56298", null, "3412", null, "64918", null, "3221", null, "66333", null, "3748", null, "55602", null, "3302", null, "53126", null, "4394", null, "39773", null, "3579", null, "33818", null, "2937", null, "32972", null, "3200", null, "39825", null, "2842", null, "28905", null, "2553", null, "29229", null, "2342", null, "18333", null, "2072", null, "12290", null, "1785", null, "11736", null, "1591", null, "80713", null, "4695", null, "21196", null, "2141", null, "139884", null, "5899", null, "78262", null, "4033", null, "339437", null, "6534", null, "580267", null, "7391", null, "565122", null, "7200", null, "531881", null, "7394", null, "140318", null, "5582", null, "123502", null, "5417", null, "100493", null, "4709", null, "42359", null, "2769", null, "35.2", null, "0.5", null, "99.9", null, "2.5", null, "51.7", null, "1.7", null, "21.6", null, "1.1", null, "30.1", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.4", null, "5.8", null, "0.6", null, "5.7", null, "0.5", null, "6.1", null, "0.4", null, "8.0", null, "0.5", null, "9.2", null, "0.5", null, "9.4", null, "0.5", null, "7.9", null, "0.5", null, "7.5", null, "0.6", null, "5.6", null, "0.5", null, "4.8", null, "0.4", null, "4.7", null, "0.5", null, "5.6", null, "0.4", null, "4.1", null, "0.4", null, "4.1", null, "0.3", null, "2.6", null, "0.3", null, "1.7", null, "0.3", null, "1.7", null, "0.2", null, "11.4", null, "0.6", null, "3.0", null, "0.3", null, "19.8", null, "0.8", null, "11.1", null, "0.6", null, "48.1", null, "0.8", null, "82.3", null, "0.8", null, "80.2", null, "0.8", null, "75.4", null, "0.9", null, "19.9", null, "0.8", null, "17.5", null, "0.8", null, "14.3", null, "0.7", null, "6.0", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.1", null, "-888888888.0", "(X)", "352279", null, "5773", null, "20938", null, "1950", null, "21041", null, "2486", null, "22473", null, "2553", null, "19008", null, "2135", null, "26898", null, "1931", null, "30713", null, "2066", null, "35035", null, "2321", null, "28156", null, "2632", null, "28205", null, "2991", null, "19639", null, "2344", null, "16776", null, "2015", null, "18450", null, "2100", null, "19870", null, "2060", null, "13828", null, "1442", null, "13787", null, "1576", null, "7794", null, "1060", null, "5127", null, "925", null, "4541", null, "1023", null, "43514", null, "2917", null, "8880", null, "1591", null, "73332", null, "4124", null, "37026", null, "2562", null, "168015", null, "4821", null, "285498", null, "5422", null, "278947", null, "5279", null, "263177", null, "5286", null, "64947", null, "3196", null, "55599", null, "2829", null, "45077", null, "2488", null, "17462", null, "1393", null, "35.0", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.9", null, "0.5", null, "6.0", null, "0.7", null, "6.4", null, "0.7", null, "5.4", null, "0.6", null, "7.6", null, "0.5", null, "8.7", null, "0.6", null, "9.9", null, "0.6", null, "8.0", null, "0.7", null, "8.0", null, "0.9", null, "5.6", null, "0.7", null, "4.8", null, "0.6", null, "5.2", null, "0.6", null, "5.6", null, "0.6", null, "3.9", null, "0.4", null, "3.9", null, "0.4", null, "2.2", null, "0.3", null, "1.5", null, "0.3", null, "1.3", null, "0.3", null, "12.4", null, "0.8", null, "2.5", null, "0.4", null, "20.8", null, "1.1", null, "10.5", null, "0.7", null, "47.7", null, "1.1", null, "81.0", null, "1.0", null, "79.2", null, "1.1", null, "74.7", null, "1.1", null, "18.4", null, "0.9", null, "15.8", null, "0.8", null, "12.8", null, "0.7", null, "5.0", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "352727", null, "5627", null, "17037", null, "1914", null, "19575", null, "2911", null, "17624", null, "2404", null, "24152", null, "1603", null, "29400", null, "2463", null, "34205", null, "2424", null, "31298", null, "2233", null, "27446", null, "2755", null, "24921", null, "2633", null, "20134", null, "2214", null, "17042", null, "1658", null, "14522", null, "2053", null, "19955", null, "1830", null, "15077", null, "1703", null, "15442", null, "1628", null, "10539", null, "1845", null, "7163", null, "1235", null, "7195", null, "1164", null, "37199", null, "3214", null, "12316", null, "1269", null, "66552", null, "4017", null, "41236", null, "2624", null, "171422", null, "3656", null, "294769", null, "4994", null, "286175", null, "4814", null, "268704", null, "4938", null, "75371", null, "3644", null, "67903", null, "3656", null, "55416", null, "2978", null, "24897", null, "1907", null, "35.5", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.8", null, "0.5", null, "5.5", null, "0.8", null, "5.0", null, "0.7", null, "6.8", null, "0.4", null, "8.3", null, "0.7", null, "9.7", null, "0.7", null, "8.9", null, "0.6", null, "7.8", null, "0.8", null, "7.1", null, "0.7", null, "5.7", null, "0.6", null, "4.8", null, "0.5", null, "4.1", null, "0.6", null, "5.7", null, "0.5", null, "4.3", null, "0.5", null, "4.4", null, "0.5", null, "3.0", null, "0.5", null, "2.0", null, "0.3", null, "2.0", null, "0.3", null, "10.5", null, "0.9", null, "3.5", null, "0.3", null, "18.9", null, "1.0", null, "11.7", null, "0.7", null, "48.6", null, "0.8", null, "83.6", null, "1.0", null, "81.1", null, "1.0", null, "76.2", null, "1.0", null, "21.4", null, "1.0", null, "19.3", null, "1.0", null, "15.7", null, "0.8", null, "7.1", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "27", "05"], ["5001900US2706", "Congressional District 6 (119th Congress), Minnesota", "755084", null, "5713", null, "42426", null, "2026", null, "50665", null, "2943", null, "53727", null, "3188", null, "58406", null, "2455", null, "44543", null, "2708", null, "42507", null, "2498", null, "46802", null, "2117", null, "55270", null, "4001", null, "54968", null, "3625", null, "47976", null, "1702", null, "47469", null, "1949", null, "47941", null, "2871", null, "46201", null, "2728", null, "40503", null, "2482", null, "31337", null, "2283", null, "21052", null, "1887", null, "12641", null, "1373", null, "10650", null, "1330", null, "104392", null, "2457", null, "35847", null, "1686", null, "182665", null, "3266", null, "67102", null, "2671", null, "302496", null, "4886", null, "596157", null, "5615", null, "572419", null, "4922", null, "539894", null, "4849", null, "162384", null, "3572", null, "144343", null, "3321", null, "116183", null, "2595", null, "44343", null, "1427", null, "38.6", null, "0.4", null, "102.4", null, "1.6", null, "65.5", null, "1.0", null, "25.5", null, "0.7", null, "40.0", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.6", null, "0.3", null, "6.7", null, "0.4", null, "7.1", null, "0.4", null, "7.7", null, "0.3", null, "5.9", null, "0.4", null, "5.6", null, "0.3", null, "6.2", null, "0.3", null, "7.3", null, "0.5", null, "7.3", null, "0.5", null, "6.4", null, "0.2", null, "6.3", null, "0.3", null, "6.3", null, "0.4", null, "6.1", null, "0.4", null, "5.4", null, "0.3", null, "4.2", null, "0.3", null, "2.8", null, "0.3", null, "1.7", null, "0.2", null, "1.4", null, "0.2", null, "13.8", null, "0.3", null, "4.7", null, "0.2", null, "24.2", null, "0.4", null, "8.9", null, "0.3", null, "40.1", null, "0.5", null, "79.0", null, "0.4", null, "75.8", null, "0.4", null, "71.5", null, "0.5", null, "21.5", null, "0.5", null, "19.1", null, "0.4", null, "15.4", null, "0.4", null, "5.9", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "0.7", null, "-888888888.0", "(X)", "382006", null, "3766", null, "21759", null, "1558", null, "26594", null, "2218", null, "28057", null, "2537", null, "30933", null, "1723", null, "22193", null, "1570", null, "22731", null, "1757", null, "22820", null, "1669", null, "27115", null, "2440", null, "28796", null, "2306", null, "24753", null, "1461", null, "24126", null, "1419", null, "24293", null, "1987", null, "22630", null, "1801", null, "19808", null, "1610", null, "15733", null, "1600", null, "10077", null, "1141", null, "6026", null, "1064", null, "3562", null, "751", null, "54651", null, "1805", null, "19089", null, "1192", null, "95499", null, "2488", null, "34037", null, "1708", null, "154588", null, "3122", null, "299062", null, "3887", null, "286507", null, "3378", null, "270151", null, "3279", null, "77836", null, "2330", null, "68841", null, "2146", null, "55206", null, "1430", null, "19665", null, "871", null, "38.0", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.7", null, "0.4", null, "7.0", null, "0.6", null, "7.3", null, "0.7", null, "8.1", null, "0.4", null, "5.8", null, "0.4", null, "6.0", null, "0.4", null, "6.0", null, "0.4", null, "7.1", null, "0.6", null, "7.5", null, "0.6", null, "6.5", null, "0.4", null, "6.3", null, "0.4", null, "6.4", null, "0.5", null, "5.9", null, "0.5", null, "5.2", null, "0.4", null, "4.1", null, "0.4", null, "2.6", null, "0.3", null, "1.6", null, "0.3", null, "0.9", null, "0.2", null, "14.3", null, "0.5", null, "5.0", null, "0.3", null, "25.0", null, "0.6", null, "8.9", null, "0.4", null, "40.5", null, "0.6", null, "78.3", null, "0.6", null, "75.0", null, "0.6", null, "70.7", null, "0.7", null, "20.4", null, "0.6", null, "18.0", null, "0.5", null, "14.5", null, "0.4", null, "5.1", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "373078", null, "4367", null, "20667", null, "1321", null, "24071", null, "1963", null, "25670", null, "1582", null, "27473", null, "1640", null, "22350", null, "2076", null, "19776", null, "1482", null, "23982", null, "1227", null, "28155", null, "2666", null, "26172", null, "2509", null, "23223", null, "1078", null, "23343", null, "1253", null, "23648", null, "1788", null, "23571", null, "1828", null, "20695", null, "1476", null, "15604", null, "1360", null, "10975", null, "1151", null, "6615", null, "903", null, "7088", null, "925", null, "49741", null, "1809", null, "16758", null, "1038", null, "87166", null, "2351", null, "33065", null, "1903", null, "147908", null, "3461", null, "297095", null, "3975", null, "285912", null, "3635", null, "269743", null, "3554", null, "84548", null, "2299", null, "75502", null, "1964", null, "60977", null, "1612", null, "24678", null, "909", null, "39.1", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.3", null, "6.5", null, "0.5", null, "6.9", null, "0.4", null, "7.4", null, "0.4", null, "6.0", null, "0.5", null, "5.3", null, "0.4", null, "6.4", null, "0.3", null, "7.5", null, "0.7", null, "7.0", null, "0.7", null, "6.2", null, "0.3", null, "6.3", null, "0.3", null, "6.3", null, "0.5", null, "6.3", null, "0.5", null, "5.5", null, "0.4", null, "4.2", null, "0.4", null, "2.9", null, "0.3", null, "1.8", null, "0.2", null, "1.9", null, "0.2", null, "13.3", null, "0.4", null, "4.5", null, "0.3", null, "23.4", null, "0.5", null, "8.9", null, "0.5", null, "39.6", null, "0.7", null, "79.6", null, "0.5", null, "76.6", null, "0.5", null, "72.3", null, "0.8", null, "22.7", null, "0.7", null, "20.2", null, "0.6", null, "16.3", null, "0.5", null, "6.6", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "27", "06"], ["5001900US2707", "Congressional District 7 (119th Congress), Minnesota", "722392", null, "4168", null, "40510", null, "1557", null, "44896", null, "2038", null, "47809", null, "1779", null, "47279", null, "1404", null, "44612", null, "2167", null, "38552", null, "1642", null, "41657", null, "1304", null, "43673", null, "2160", null, "44039", null, "2083", null, "39375", null, "1317", null, "37449", null, "887", null, "40291", null, "1584", null, "52738", null, "1789", null, "49392", null, "1744", null, "41570", null, "1288", null, "30029", null, "1767", null, "18920", null, "1187", null, "19601", null, "1322", null, "92705", null, "2021", null, "30233", null, "1046", null, "163448", null, "2621", null, "61658", null, "2240", null, "259812", null, "3055", null, "579350", null, "3515", null, "558944", null, "3348", null, "532213", null, "3385", null, "212250", null, "2410", null, "192936", null, "2471", null, "159512", null, "1705", null, "68550", null, "1033", null, "41.3", null, "0.4", null, "102.5", null, "1.2", null, "80.9", null, "1.0", null, "39.9", null, "0.6", null, "40.9", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.6", null, "0.2", null, "6.2", null, "0.3", null, "6.6", null, "0.2", null, "6.5", null, "0.2", null, "6.2", null, "0.3", null, "5.3", null, "0.2", null, "5.8", null, "0.2", null, "6.0", null, "0.3", null, "6.1", null, "0.3", null, "5.5", null, "0.2", null, "5.2", null, "0.1", null, "5.6", null, "0.2", null, "7.3", null, "0.2", null, "6.8", null, "0.2", null, "5.8", null, "0.2", null, "4.2", null, "0.2", null, "2.6", null, "0.2", null, "2.7", null, "0.2", null, "12.8", null, "0.3", null, "4.2", null, "0.1", null, "22.6", null, "0.3", null, "8.5", null, "0.3", null, "36.0", null, "0.3", null, "80.2", null, "0.3", null, "77.4", null, "0.3", null, "73.7", null, "0.4", null, "29.4", null, "0.4", null, "26.7", null, "0.4", null, "22.1", null, "0.3", null, "9.5", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "0.7", null, "-888888888.0", "(X)", "365699", null, "3252", null, "20406", null, "1163", null, "23346", null, "1388", null, "24129", null, "1316", null, "24386", null, "956", null, "24221", null, "1900", null, "20029", null, "918", null, "21069", null, "1109", null, "21815", null, "1582", null, "23641", null, "1523", null, "20872", null, "1055", null, "19081", null, "610", null, "20530", null, "1077", null, "26039", null, "1115", null, "24419", null, "1303", null, "21586", null, "906", null, "13867", null, "899", null, "8480", null, "752", null, "7783", null, "787", null, "47475", null, "1435", null, "15671", null, "825", null, "83552", null, "1881", null, "32936", null, "1994", null, "135161", null, "2282", null, "292716", null, "2741", null, "282147", null, "2598", null, "268409", null, "2570", null, "102174", null, "1575", null, "92430", null, "1543", null, "76135", null, "1104", null, "30130", null, "550", null, "40.7", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.6", null, "0.3", null, "6.4", null, "0.4", null, "6.6", null, "0.4", null, "6.7", null, "0.2", null, "6.6", null, "0.5", null, "5.5", null, "0.3", null, "5.8", null, "0.3", null, "6.0", null, "0.4", null, "6.5", null, "0.4", null, "5.7", null, "0.3", null, "5.2", null, "0.2", null, "5.6", null, "0.3", null, "7.1", null, "0.3", null, "6.7", null, "0.3", null, "5.9", null, "0.3", null, "3.8", null, "0.2", null, "2.3", null, "0.2", null, "2.1", null, "0.2", null, "13.0", null, "0.4", null, "4.3", null, "0.2", null, "22.8", null, "0.4", null, "9.0", null, "0.5", null, "37.0", null, "0.5", null, "80.0", null, "0.4", null, "77.2", null, "0.4", null, "73.4", null, "0.5", null, "27.9", null, "0.4", null, "25.3", null, "0.4", null, "20.8", null, "0.3", null, "8.2", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "356693", null, "2724", null, "20104", null, "899", null, "21550", null, "1288", null, "23680", null, "1071", null, "22893", null, "1104", null, "20391", null, "1067", null, "18523", null, "1240", null, "20588", null, "810", null, "21858", null, "1403", null, "20398", null, "1117", null, "18503", null, "649", null, "18368", null, "617", null, "19761", null, "1077", null, "26699", null, "1353", null, "24973", null, "1148", null, "19984", null, "1082", null, "16162", null, "1303", null, "10440", null, "894", null, "11818", null, "1025", null, "45230", null, "1207", null, "14562", null, "673", null, "79896", null, "1605", null, "28722", null, "1015", null, "124651", null, "2288", null, "286634", null, "2374", null, "276797", null, "2239", null, "263804", null, "2143", null, "110076", null, "1746", null, "100506", null, "1776", null, "83377", null, "1058", null, "38420", null, "725", null, "42.1", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.6", null, "0.2", null, "6.0", null, "0.4", null, "6.6", null, "0.3", null, "6.4", null, "0.3", null, "5.7", null, "0.3", null, "5.2", null, "0.3", null, "5.8", null, "0.2", null, "6.1", null, "0.4", null, "5.7", null, "0.3", null, "5.2", null, "0.2", null, "5.1", null, "0.2", null, "5.5", null, "0.3", null, "7.5", null, "0.4", null, "7.0", null, "0.3", null, "5.6", null, "0.3", null, "4.5", null, "0.4", null, "2.9", null, "0.2", null, "3.3", null, "0.3", null, "12.7", null, "0.3", null, "4.1", null, "0.2", null, "22.4", null, "0.4", null, "8.1", null, "0.3", null, "34.9", null, "0.5", null, "80.4", null, "0.4", null, "77.6", null, "0.4", null, "74.0", null, "0.5", null, "30.9", null, "0.5", null, "28.2", null, "0.5", null, "23.4", null, "0.3", null, "10.8", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "27", "07"], ["5001900US2708", "Congressional District 8 (119th Congress), Minnesota", "727411", null, "4524", null, "35246", null, "1352", null, "42706", null, "2418", null, "42178", null, "2067", null, "45815", null, "1618", null, "44590", null, "1421", null, "36874", null, "1199", null, "42564", null, "1432", null, "45753", null, "2196", null, "44325", null, "2062", null, "42285", null, "1284", null, "41118", null, "1095", null, "41547", null, "2144", null, "58030", null, "2247", null, "50868", null, "2212", null, "47553", null, "2237", null, "30556", null, "1471", null, "18832", null, "1481", null, "16571", null, "1359", null, "84884", null, "1684", null, "27244", null, "938", null, "147374", null, "2408", null, "63161", null, "1492", null, "259921", null, "2993", null, "599237", null, "3525", null, "580037", null, "3294", null, "551450", null, "4034", null, "222410", null, "2647", null, "201304", null, "2209", null, "164380", null, "1533", null, "65959", null, "908", null, "43.1", null, "0.4", null, "103.1", null, "0.9", null, "75.0", null, "0.7", null, "39.5", null, "0.5", null, "35.5", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.8", null, "0.2", null, "5.9", null, "0.3", null, "5.8", null, "0.3", null, "6.3", null, "0.2", null, "6.1", null, "0.2", null, "5.1", null, "0.2", null, "5.9", null, "0.2", null, "6.3", null, "0.3", null, "6.1", null, "0.3", null, "5.8", null, "0.2", null, "5.7", null, "0.1", null, "5.7", null, "0.3", null, "8.0", null, "0.3", null, "7.0", null, "0.3", null, "6.5", null, "0.3", null, "4.2", null, "0.2", null, "2.6", null, "0.2", null, "2.3", null, "0.2", null, "11.7", null, "0.2", null, "3.7", null, "0.1", null, "20.3", null, "0.3", null, "8.7", null, "0.2", null, "35.7", null, "0.3", null, "82.4", null, "0.3", null, "79.7", null, "0.3", null, "75.8", null, "0.4", null, "30.6", null, "0.4", null, "27.7", null, "0.3", null, "22.6", null, "0.2", null, "9.1", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.0", null, "-888888888.0", "(X)", "369259", null, "2916", null, "17874", null, "972", null, "21468", null, "1806", null, "22170", null, "1617", null, "24100", null, "1099", null, "23518", null, "1174", null, "18837", null, "808", null, "21674", null, "1014", null, "24573", null, "1636", null, "22533", null, "1449", null, "21645", null, "740", null, "21401", null, "741", null, "20807", null, "1445", null, "29033", null, "1434", null, "25583", null, "1288", null, "24096", null, "1171", null, "14791", null, "858", null, "8377", null, "825", null, "6779", null, "673", null, "43638", null, "1080", null, "13906", null, "683", null, "75418", null, "1501", null, "33712", null, "1069", null, "135235", null, "1829", null, "303196", null, "2241", null, "293841", null, "2206", null, "278031", null, "2665", null, "108659", null, "1785", null, "98502", null, "1423", null, "79626", null, "957", null, "29947", null, "500", null, "42.2", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.8", null, "0.3", null, "5.8", null, "0.5", null, "6.0", null, "0.4", null, "6.5", null, "0.3", null, "6.4", null, "0.3", null, "5.1", null, "0.2", null, "5.9", null, "0.3", null, "6.7", null, "0.4", null, "6.1", null, "0.4", null, "5.9", null, "0.2", null, "5.8", null, "0.2", null, "5.6", null, "0.4", null, "7.9", null, "0.4", null, "6.9", null, "0.3", null, "6.5", null, "0.3", null, "4.0", null, "0.2", null, "2.3", null, "0.2", null, "1.8", null, "0.2", null, "11.8", null, "0.3", null, "3.8", null, "0.2", null, "20.4", null, "0.3", null, "9.1", null, "0.3", null, "36.6", null, "0.4", null, "82.1", null, "0.4", null, "79.6", null, "0.3", null, "75.3", null, "0.5", null, "29.4", null, "0.5", null, "26.7", null, "0.4", null, "21.6", null, "0.3", null, "8.1", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "358152", null, "2630", null, "17372", null, "952", null, "21238", null, "1430", null, "20008", null, "1283", null, "21715", null, "944", null, "21072", null, "860", null, "18037", null, "827", null, "20890", null, "862", null, "21180", null, "1437", null, "21792", null, "1377", null, "20640", null, "836", null, "19717", null, "723", null, "20740", null, "1387", null, "28997", null, "1433", null, "25285", null, "1449", null, "23457", null, "1519", null, "15765", null, "1041", null, "10455", null, "1029", null, "9792", null, "1024", null, "41246", null, "1203", null, "13338", null, "612", null, "71956", null, "1786", null, "29449", null, "940", null, "124686", null, "1660", null, "296041", null, "1920", null, "286196", null, "1774", null, "273419", null, "2166", null, "113751", null, "1565", null, "102802", null, "1522", null, "84754", null, "943", null, "36012", null, "612", null, "44.0", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.9", null, "0.2", null, "5.9", null, "0.4", null, "5.6", null, "0.3", null, "6.1", null, "0.3", null, "5.9", null, "0.2", null, "5.0", null, "0.2", null, "5.8", null, "0.2", null, "5.9", null, "0.4", null, "6.1", null, "0.4", null, "5.8", null, "0.2", null, "5.5", null, "0.2", null, "5.8", null, "0.4", null, "8.1", null, "0.4", null, "7.1", null, "0.4", null, "6.5", null, "0.4", null, "4.4", null, "0.3", null, "2.9", null, "0.3", null, "2.7", null, "0.3", null, "11.5", null, "0.3", null, "3.7", null, "0.2", null, "20.1", null, "0.4", null, "8.2", null, "0.3", null, "34.8", null, "0.4", null, "82.7", null, "0.4", null, "79.9", null, "0.4", null, "76.3", null, "0.6", null, "31.8", null, "0.5", null, "28.7", null, "0.4", null, "23.7", null, "0.3", null, "10.1", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "27", "08"], ["5001900US2801", "Congressional District 1 (119th Congress), Mississippi", "753783", null, "3024", null, "44281", null, "1957", null, "45024", null, "3252", null, "50491", null, "3533", null, "58484", null, "3288", null, "51183", null, "3678", null, "49202", null, "3202", null, "45144", null, "2371", null, "44765", null, "3969", null, "53874", null, "4119", null, "44187", null, "2626", null, "47443", null, "2478", null, "43882", null, "2774", null, "47191", null, "2764", null, "40699", null, "2437", null, "34890", null, "2483", null, "25776", null, "2077", null, "14463", null, "1702", null, "12804", null, "1586", null, "95515", null, "2893", null, "32917", null, "1770", null, "172713", null, "1675", null, "76750", null, "4254", null, "302652", null, "3740", null, "603390", null, "3290", null, "581070", null, "2673", null, "547673", null, "3233", null, "175823", null, "2965", null, "156058", null, "2834", null, "128632", null, "1704", null, "53043", null, "1275", null, "38.5", null, "0.5", null, "91.7", null, "1.7", null, "66.6", null, "0.8", null, "28.4", null, "0.5", null, "38.2", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.9", null, "0.3", null, "6.0", null, "0.4", null, "6.7", null, "0.5", null, "7.8", null, "0.4", null, "6.8", null, "0.5", null, "6.5", null, "0.4", null, "6.0", null, "0.3", null, "5.9", null, "0.5", null, "7.1", null, "0.5", null, "5.9", null, "0.3", null, "6.3", null, "0.3", null, "5.8", null, "0.4", null, "6.3", null, "0.4", null, "5.4", null, "0.3", null, "4.6", null, "0.3", null, "3.4", null, "0.3", null, "1.9", null, "0.2", null, "1.7", null, "0.2", null, "12.7", null, "0.4", null, "4.4", null, "0.2", null, "22.9", null, "0.2", null, "10.2", null, "0.6", null, "40.2", null, "0.5", null, "80.0", null, "0.4", null, "77.1", null, "0.2", null, "72.7", null, "0.4", null, "23.3", null, "0.4", null, "20.7", null, "0.4", null, "17.1", null, "0.2", null, "7.0", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.0", null, "-888888888.0", "(X)", "360545", null, "3541", null, "20889", null, "1859", null, "21392", null, "2394", null, "26248", null, "2656", null, "28126", null, "2826", null, "27596", null, "2548", null, "23335", null, "1957", null, "22251", null, "1822", null, "20067", null, "2190", null, "26167", null, "2521", null, "21579", null, "1827", null, "23079", null, "1692", null, "20155", null, "2068", null, "22730", null, "2027", null, "17709", null, "1639", null, "16979", null, "1784", null, "11530", null, "1309", null, "6121", null, "1047", null, "4592", null, "916", null, "47640", null, "2245", null, "16248", null, "2265", null, "84777", null, "3264", null, "39474", null, "2353", null, "147542", null, "3146", null, "286456", null, "2596", null, "275768", null, "2083", null, "259877", null, "2584", null, "79661", null, "2099", null, "69822", null, "1805", null, "56931", null, "959", null, "22243", null, "916", null, "37.3", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.8", null, "0.5", null, "5.9", null, "0.6", null, "7.3", null, "0.7", null, "7.8", null, "0.8", null, "7.7", null, "0.7", null, "6.5", null, "0.5", null, "6.2", null, "0.5", null, "5.6", null, "0.6", null, "7.3", null, "0.7", null, "6.0", null, "0.5", null, "6.4", null, "0.5", null, "5.6", null, "0.6", null, "6.3", null, "0.6", null, "4.9", null, "0.5", null, "4.7", null, "0.5", null, "3.2", null, "0.4", null, "1.7", null, "0.3", null, "1.3", null, "0.3", null, "13.2", null, "0.6", null, "4.5", null, "0.6", null, "23.5", null, "0.7", null, "10.9", null, "0.7", null, "40.9", null, "0.8", null, "79.5", null, "0.7", null, "76.5", null, "0.7", null, "72.1", null, "0.8", null, "22.1", null, "0.6", null, "19.4", null, "0.5", null, "15.8", null, "0.3", null, "6.2", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "393238", null, "3933", null, "23392", null, "2029", null, "23632", null, "2327", null, "24243", null, "2639", null, "30358", null, "3036", null, "23587", null, "2343", null, "25867", null, "2010", null, "22893", null, "1655", null, "24698", null, "2710", null, "27707", null, "2678", null, "22608", null, "2056", null, "24364", null, "1549", null, "23727", null, "2015", null, "24461", null, "2060", null, "22990", null, "1745", null, "17911", null, "1636", null, "14246", null, "1440", null, "8342", null, "1120", null, "8212", null, "1284", null, "47875", null, "2253", null, "16669", null, "1840", null, "87936", null, "3380", null, "37276", null, "2582", null, "155110", null, "3256", null, "316934", null, "2667", null, "305302", null, "1908", null, "287796", null, "2733", null, "96162", null, "2328", null, "86236", null, "2030", null, "71701", null, "1258", null, "30800", null, "767", null, "39.4", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.9", null, "0.5", null, "6.0", null, "0.6", null, "6.2", null, "0.7", null, "7.7", null, "0.7", null, "6.0", null, "0.6", null, "6.6", null, "0.5", null, "5.8", null, "0.4", null, "6.3", null, "0.7", null, "7.0", null, "0.7", null, "5.7", null, "0.5", null, "6.2", null, "0.4", null, "6.0", null, "0.5", null, "6.2", null, "0.5", null, "5.8", null, "0.4", null, "4.6", null, "0.4", null, "3.6", null, "0.4", null, "2.1", null, "0.3", null, "2.1", null, "0.3", null, "12.2", null, "0.5", null, "4.2", null, "0.5", null, "22.4", null, "0.7", null, "9.5", null, "0.6", null, "39.4", null, "0.7", null, "80.6", null, "0.7", null, "77.6", null, "0.7", null, "73.2", null, "0.9", null, "24.5", null, "0.6", null, "21.9", null, "0.5", null, "18.2", null, "0.3", null, "7.8", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "28", "01"], ["5001900US2802", "Congressional District 2 (119th Congress), Mississippi", "694703", null, "5992", null, "38325", null, "2815", null, "42906", null, "3949", null, "42016", null, "3183", null, "55171", null, "3899", null, "46852", null, "3304", null, "38398", null, "3240", null, "41469", null, "3274", null, "37578", null, "3795", null, "46447", null, "3898", null, "44645", null, "3207", null, "41053", null, "2745", null, "40927", null, "2574", null, "47265", null, "2834", null, "42762", null, "2442", null, "37225", null, "2677", null, "25292", null, "1702", null, "14550", null, "1766", null, "11822", null, "1468", null, "84922", null, "3663", null, "34677", null, "3099", null, "157924", null, "3957", null, "67346", null, "3717", null, "265915", null, "5333", null, "558898", null, "5179", null, "536779", null, "4729", null, "505223", null, "4979", null, "178916", null, "3005", null, "159557", null, "2754", null, "131651", null, "1911", null, "51664", null, "1708", null, "40.7", null, "0.7", null, "90.7", null, "1.9", null, "71.5", null, "1.3", null, "32.5", null, "0.6", null, "39.0", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.4", null, "6.2", null, "0.6", null, "6.0", null, "0.5", null, "7.9", null, "0.6", null, "6.7", null, "0.5", null, "5.5", null, "0.5", null, "6.0", null, "0.5", null, "5.4", null, "0.5", null, "6.7", null, "0.6", null, "6.4", null, "0.4", null, "5.9", null, "0.4", null, "5.9", null, "0.4", null, "6.8", null, "0.4", null, "6.2", null, "0.4", null, "5.4", null, "0.4", null, "3.6", null, "0.2", null, "2.1", null, "0.3", null, "1.7", null, "0.2", null, "12.2", null, "0.5", null, "5.0", null, "0.4", null, "22.7", null, "0.5", null, "9.7", null, "0.5", null, "38.3", null, "0.7", null, "80.5", null, "0.5", null, "77.3", null, "0.5", null, "72.7", null, "0.5", null, "25.8", null, "0.4", null, "23.0", null, "0.4", null, "19.0", null, "0.3", null, "7.4", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "2.3", null, "-888888888.0", "(X)", "330475", null, "4437", null, "18076", null, "2224", null, "21253", null, "2521", null, "22004", null, "2353", null, "28673", null, "3402", null, "22077", null, "1847", null, "20252", null, "2235", null, "18283", null, "2234", null, "18122", null, "2469", null, "22975", null, "2911", null, "21579", null, "3004", null, "19889", null, "2028", null, "19657", null, "1997", null, "21383", null, "2223", null, "18754", null, "1637", null, "17204", null, "1944", null, "10382", null, "1270", null, "5292", null, "921", null, "4620", null, "930", null, "43257", null, "2661", null, "17233", null, "2978", null, "78566", null, "3883", null, "33517", null, "2343", null, "130382", null, "4496", null, "263035", null, "3679", null, "251909", null, "3121", null, "234699", null, "3503", null, "77635", null, "2231", null, "69816", null, "2088", null, "56252", null, "1290", null, "20294", null, "1238", null, "39.0", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.7", null, "6.4", null, "0.7", null, "6.7", null, "0.7", null, "8.7", null, "1.0", null, "6.7", null, "0.5", null, "6.1", null, "0.7", null, "5.5", null, "0.7", null, "5.5", null, "0.7", null, "7.0", null, "0.9", null, "6.5", null, "0.9", null, "6.0", null, "0.6", null, "5.9", null, "0.6", null, "6.5", null, "0.7", null, "5.7", null, "0.5", null, "5.2", null, "0.6", null, "3.1", null, "0.4", null, "1.6", null, "0.3", null, "1.4", null, "0.3", null, "13.1", null, "0.8", null, "5.2", null, "0.9", null, "23.8", null, "1.0", null, "10.1", null, "0.7", null, "39.5", null, "1.1", null, "79.6", null, "0.9", null, "76.2", null, "1.0", null, "71.0", null, "1.0", null, "23.5", null, "0.7", null, "21.1", null, "0.6", null, "17.0", null, "0.4", null, "6.1", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "364228", null, "4986", null, "20249", null, "2157", null, "21653", null, "2944", null, "20012", null, "2340", null, "26498", null, "3215", null, "24775", null, "2450", null, "18146", null, "2083", null, "23186", null, "2067", null, "19456", null, "2641", null, "23472", null, "2404", null, "23066", null, "1763", null, "21164", null, "1525", null, "21270", null, "2016", null, "25882", null, "1764", null, "24008", null, "1705", null, "20021", null, "1753", null, "14910", null, "1243", null, "9258", null, "1413", null, "7202", null, "1232", null, "41665", null, "2403", null, "17444", null, "2559", null, "79358", null, "3705", null, "33829", null, "2449", null, "135533", null, "4139", null, "295863", null, "3652", null, "284870", null, "2905", null, "270524", null, "3346", null, "101281", null, "2149", null, "89741", null, "1998", null, "75399", null, "1174", null, "31370", null, "1050", null, "41.7", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.6", null, "0.6", null, "5.9", null, "0.8", null, "5.5", null, "0.6", null, "7.3", null, "0.9", null, "6.8", null, "0.7", null, "5.0", null, "0.6", null, "6.4", null, "0.6", null, "5.3", null, "0.7", null, "6.4", null, "0.7", null, "6.3", null, "0.5", null, "5.8", null, "0.4", null, "5.8", null, "0.6", null, "7.1", null, "0.5", null, "6.6", null, "0.5", null, "5.5", null, "0.5", null, "4.1", null, "0.3", null, "2.5", null, "0.4", null, "2.0", null, "0.3", null, "11.4", null, "0.6", null, "4.8", null, "0.7", null, "21.8", null, "0.8", null, "9.3", null, "0.7", null, "37.2", null, "0.9", null, "81.2", null, "0.8", null, "78.2", null, "0.8", null, "74.3", null, "0.9", null, "27.8", null, "0.7", null, "24.6", null, "0.6", null, "20.7", null, "0.4", null, "8.6", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "28", "02"], ["5001900US2803", "Congressional District 3 (119th Congress), Mississippi", "734735", null, "6140", null, "40013", null, "2451", null, "37710", null, "3798", null, "56869", null, "3677", null, "55717", null, "4049", null, "49824", null, "4022", null, "45763", null, "3361", null, "45696", null, "2957", null, "43688", null, "3563", null, "48733", null, "3919", null, "45161", null, "3099", null, "43968", null, "3032", null, "38766", null, "3336", null, "48792", null, "2870", null, "43208", null, "3218", null, "36884", null, "2929", null, "24622", null, "1888", null, "16637", null, "1853", null, "12684", null, "1719", null, "94579", null, "3914", null, "32035", null, "2665", null, "166627", null, "3924", null, "73506", null, "2839", null, "289421", null, "5736", null, "591922", null, "5034", null, "568108", null, "4153", null, "535467", null, "5181", null, "182827", null, "3317", null, "161632", null, "2930", null, "134035", null, "2032", null, "53943", null, "1418", null, "39.1", null, "0.6", null, "94.7", null, "1.9", null, "69.3", null, "1.0", null, "30.9", null, "0.6", null, "38.4", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.3", null, "5.1", null, "0.5", null, "7.7", null, "0.5", null, "7.6", null, "0.6", null, "6.8", null, "0.5", null, "6.2", null, "0.5", null, "6.2", null, "0.4", null, "5.9", null, "0.5", null, "6.6", null, "0.5", null, "6.1", null, "0.4", null, "6.0", null, "0.4", null, "5.3", null, "0.5", null, "6.6", null, "0.4", null, "5.9", null, "0.4", null, "5.0", null, "0.4", null, "3.4", null, "0.3", null, "2.3", null, "0.3", null, "1.7", null, "0.2", null, "12.9", null, "0.5", null, "4.4", null, "0.4", null, "22.7", null, "0.4", null, "10.0", null, "0.4", null, "39.4", null, "0.6", null, "80.6", null, "0.5", null, "77.3", null, "0.4", null, "72.9", null, "0.5", null, "24.9", null, "0.5", null, "22.0", null, "0.4", null, "18.2", null, "0.3", null, "7.3", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "0.7", null, "-888888888.0", "(X)", "357415", null, "4685", null, "21537", null, "2225", null, "19413", null, "2164", null, "29598", null, "2991", null, "27128", null, "3375", null, "29104", null, "3061", null, "21217", null, "1693", null, "21487", null, "1995", null, "20151", null, "2554", null, "23677", null, "2658", null, "22314", null, "2086", null, "21265", null, "1881", null, "17636", null, "2017", null, "23573", null, "1809", null, "20079", null, "2083", null, "16685", null, "1690", null, "12217", null, "1175", null, "6658", null, "1173", null, "3676", null, "853", null, "49011", null, "2836", null, "15950", null, "2106", null, "86498", null, "3791", null, "40282", null, "2229", null, "142764", null, "3723", null, "282994", null, "3723", null, "270917", null, "3310", null, "253891", null, "4099", null, "82888", null, "2041", null, "72073", null, "1880", null, "59315", null, "1195", null, "22551", null, "1017", null, "37.4", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.0", null, "0.6", null, "5.4", null, "0.6", null, "8.3", null, "0.8", null, "7.6", null, "0.9", null, "8.1", null, "0.8", null, "5.9", null, "0.5", null, "6.0", null, "0.6", null, "5.6", null, "0.7", null, "6.6", null, "0.7", null, "6.2", null, "0.6", null, "5.9", null, "0.5", null, "4.9", null, "0.6", null, "6.6", null, "0.5", null, "5.6", null, "0.6", null, "4.7", null, "0.5", null, "3.4", null, "0.3", null, "1.9", null, "0.3", null, "1.0", null, "0.2", null, "13.7", null, "0.7", null, "4.5", null, "0.6", null, "24.2", null, "0.9", null, "11.3", null, "0.6", null, "39.9", null, "0.9", null, "79.2", null, "0.8", null, "75.8", null, "0.9", null, "71.0", null, "1.0", null, "23.2", null, "0.6", null, "20.2", null, "0.5", null, "16.6", null, "0.4", null, "6.3", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "377320", null, "4901", null, "18476", null, "2269", null, "18297", null, "2959", null, "27271", null, "2561", null, "28589", null, "3159", null, "20720", null, "2447", null, "24546", null, "2489", null, "24209", null, "1989", null, "23537", null, "2507", null, "25056", null, "2487", null, "22847", null, "1803", null, "22703", null, "2011", null, "21130", null, "2274", null, "25219", null, "1988", null, "23129", null, "1875", null, "20199", null, "1909", null, "12405", null, "1527", null, "9979", null, "1497", null, "9008", null, "1291", null, "45568", null, "3730", null, "16085", null, "2251", null, "80129", null, "4160", null, "33224", null, "2349", null, "146657", null, "3917", null, "308928", null, "3368", null, "297191", null, "2904", null, "281576", null, "3699", null, "99939", null, "2425", null, "89559", null, "2191", null, "74720", null, "1469", null, "31392", null, "1265", null, "40.6", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.9", null, "0.6", null, "4.8", null, "0.8", null, "7.2", null, "0.6", null, "7.6", null, "0.8", null, "5.5", null, "0.7", null, "6.5", null, "0.6", null, "6.4", null, "0.5", null, "6.2", null, "0.7", null, "6.6", null, "0.7", null, "6.1", null, "0.5", null, "6.0", null, "0.6", null, "5.6", null, "0.6", null, "6.7", null, "0.5", null, "6.1", null, "0.5", null, "5.4", null, "0.5", null, "3.3", null, "0.4", null, "2.6", null, "0.4", null, "2.4", null, "0.3", null, "12.1", null, "0.9", null, "4.3", null, "0.6", null, "21.2", null, "0.9", null, "8.8", null, "0.6", null, "38.9", null, "0.9", null, "81.9", null, "0.9", null, "78.8", null, "0.9", null, "74.6", null, "1.0", null, "26.5", null, "0.7", null, "23.7", null, "0.7", null, "19.8", null, "0.5", null, "8.3", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "28", "03"], ["5001900US2804", "Congressional District 4 (119th Congress), Mississippi", "759824", null, "1945", null, "41073", null, "1413", null, "49225", null, "3385", null, "51333", null, "3426", null, "52822", null, "2636", null, "50124", null, "2507", null, "44327", null, "2161", null, "49128", null, "2173", null, "49046", null, "3449", null, "49574", null, "3533", null, "45109", null, "2694", null, "47800", null, "2141", null, "39978", null, "2465", null, "53256", null, "2667", null, "46188", null, "3018", null, "35620", null, "3029", null, "28854", null, "2027", null, "15421", null, "1696", null, "10946", null, "1485", null, "100558", null, "1777", null, "33102", null, "1589", null, "174733", null, "1812", null, "69844", null, "2300", null, "295021", null, "3292", null, "607009", null, "2775", null, "585091", null, "2006", null, "556640", null, "2977", null, "190285", null, "2959", null, "171266", null, "3304", null, "137029", null, "1761", null, "55221", null, "1390", null, "39.3", null, "0.4", null, "96.4", null, "1.5", null, "69.6", null, "0.7", null, "30.6", null, "0.5", null, "39.0", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.2", null, "6.5", null, "0.4", null, "6.8", null, "0.4", null, "7.0", null, "0.3", null, "6.6", null, "0.3", null, "5.8", null, "0.3", null, "6.5", null, "0.3", null, "6.5", null, "0.5", null, "6.5", null, "0.5", null, "5.9", null, "0.4", null, "6.3", null, "0.3", null, "5.3", null, "0.3", null, "7.0", null, "0.3", null, "6.1", null, "0.4", null, "4.7", null, "0.4", null, "3.8", null, "0.3", null, "2.0", null, "0.2", null, "1.4", null, "0.2", null, "13.2", null, "0.2", null, "4.4", null, "0.2", null, "23.0", null, "0.2", null, "9.2", null, "0.3", null, "38.8", null, "0.4", null, "79.9", null, "0.3", null, "77.0", null, "0.2", null, "73.3", null, "0.4", null, "25.0", null, "0.4", null, "22.5", null, "0.4", null, "18.0", null, "0.2", null, "7.3", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.0", null, "-888888888.0", "(X)", "372865", null, "3269", null, "21541", null, "1548", null, "26691", null, "2317", null, "26237", null, "2408", null, "29096", null, "2034", null, "25523", null, "1728", null, "21552", null, "1282", null, "22923", null, "1143", null, "23049", null, "2140", null, "23734", null, "2320", null, "22078", null, "1917", null, "23885", null, "1570", null, "19485", null, "2125", null, "25989", null, "2118", null, "21027", null, "1780", null, "16336", null, "1743", null, "12623", null, "1094", null, "5771", null, "949", null, "5325", null, "961", null, "52928", null, "1749", null, "18952", null, "1543", null, "93421", null, "2711", null, "35667", null, "1461", null, "145877", null, "2338", null, "292104", null, "2717", null, "279444", null, "1858", null, "264682", null, "2251", null, "87071", null, "2285", null, "77720", null, "2355", null, "61082", null, "1242", null, "23719", null, "952", null, "38.0", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.8", null, "0.4", null, "7.2", null, "0.6", null, "7.0", null, "0.6", null, "7.8", null, "0.5", null, "6.8", null, "0.5", null, "5.8", null, "0.3", null, "6.1", null, "0.3", null, "6.2", null, "0.6", null, "6.4", null, "0.6", null, "5.9", null, "0.5", null, "6.4", null, "0.4", null, "5.2", null, "0.6", null, "7.0", null, "0.6", null, "5.6", null, "0.5", null, "4.4", null, "0.5", null, "3.4", null, "0.3", null, "1.5", null, "0.3", null, "1.4", null, "0.3", null, "14.2", null, "0.4", null, "5.1", null, "0.4", null, "25.1", null, "0.6", null, "9.6", null, "0.4", null, "39.1", null, "0.5", null, "78.3", null, "0.5", null, "74.9", null, "0.6", null, "71.0", null, "0.6", null, "23.4", null, "0.6", null, "20.8", null, "0.7", null, "16.4", null, "0.4", null, "6.4", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "386959", null, "2751", null, "19532", null, "1370", null, "22534", null, "2708", null, "25096", null, "2318", null, "23726", null, "2154", null, "24601", null, "1871", null, "22775", null, "1524", null, "26205", null, "1649", null, "25997", null, "2077", null, "25840", null, "2165", null, "23031", null, "1772", null, "23915", null, "1408", null, "20493", null, "1630", null, "27267", null, "1804", null, "25161", null, "1996", null, "19284", null, "1997", null, "16231", null, "1614", null, "9650", null, "1251", null, "5621", null, "1057", null, "47630", null, "1553", null, "14150", null, "1434", null, "81312", null, "2267", null, "34177", null, "1591", null, "149144", null, "2491", null, "314905", null, "1991", null, "305647", null, "1645", null, "291958", null, "2608", null, "103214", null, "2038", null, "93546", null, "2217", null, "75947", null, "1233", null, "31502", null, "977", null, "40.5", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.0", null, "0.3", null, "5.8", null, "0.7", null, "6.5", null, "0.6", null, "6.1", null, "0.6", null, "6.4", null, "0.5", null, "5.9", null, "0.4", null, "6.8", null, "0.4", null, "6.7", null, "0.5", null, "6.7", null, "0.6", null, "6.0", null, "0.5", null, "6.2", null, "0.4", null, "5.3", null, "0.4", null, "7.0", null, "0.5", null, "6.5", null, "0.5", null, "5.0", null, "0.5", null, "4.2", null, "0.4", null, "2.5", null, "0.3", null, "1.5", null, "0.3", null, "12.3", null, "0.4", null, "3.7", null, "0.4", null, "21.0", null, "0.5", null, "8.8", null, "0.4", null, "38.5", null, "0.6", null, "81.4", null, "0.5", null, "79.0", null, "0.5", null, "75.4", null, "0.7", null, "26.7", null, "0.5", null, "24.2", null, "0.6", null, "19.6", null, "0.3", null, "8.1", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "28", "04"], ["5001900US2901", "Congressional District 1 (119th Congress), Missouri", "742814", null, "9787", null, "41352", null, "1698", null, "45356", null, "3912", null, "39925", null, "3511", null, "43170", null, "2057", null, "50176", null, "2998", null, "59048", null, "2595", null, "62446", null, "2539", null, "54893", null, "3813", null, "44100", null, "3905", null, "43114", null, "2139", null, "40160", null, "2432", null, "42908", null, "3983", null, "44271", null, "3700", null, "43000", null, "2645", null, "39148", null, "2411", null, "24372", null, "2277", null, "12568", null, "1629", null, "12807", null, "1860", null, "85281", null, "3529", null, "24070", null, "1594", null, "150703", null, "4252", null, "69276", null, "2977", null, "313833", null, "5395", null, "608783", null, "8313", null, "592111", null, "7940", null, "562646", null, "8131", null, "176166", null, "4697", null, "156979", null, "4301", null, "131895", null, "3301", null, "49747", null, "2239", null, "37.5", null, "0.4", null, "90.1", null, "1.6", null, "61.4", null, "1.3", null, "28.7", null, "0.8", null, "32.7", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.6", null, "0.2", null, "6.1", null, "0.5", null, "5.4", null, "0.5", null, "5.8", null, "0.3", null, "6.8", null, "0.4", null, "7.9", null, "0.3", null, "8.4", null, "0.3", null, "7.4", null, "0.5", null, "5.9", null, "0.5", null, "5.8", null, "0.3", null, "5.4", null, "0.3", null, "5.8", null, "0.5", null, "6.0", null, "0.5", null, "5.8", null, "0.4", null, "5.3", null, "0.3", null, "3.3", null, "0.3", null, "1.7", null, "0.2", null, "1.7", null, "0.2", null, "11.5", null, "0.4", null, "3.2", null, "0.2", null, "20.3", null, "0.5", null, "9.3", null, "0.4", null, "42.2", null, "0.5", null, "82.0", null, "0.5", null, "79.7", null, "0.5", null, "75.7", null, "0.5", null, "23.7", null, "0.6", null, "21.1", null, "0.6", null, "17.8", null, "0.4", null, "6.7", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.4", null, "-888888888.0", "(X)", "352007", null, "5627", null, "21911", null, "1232", null, "21762", null, "2632", null, "23025", null, "2302", null, "20944", null, "1594", null, "23262", null, "1776", null, "29405", null, "2024", null, "29602", null, "1486", null, "26183", null, "2378", null, "21286", null, "2502", null, "20097", null, "1441", null, "19582", null, "1602", null, "19827", null, "2233", null, "20206", null, "2306", null, "19453", null, "1744", null, "16143", null, "1862", null, "11471", null, "1295", null, "4100", null, "927", null, "3748", null, "888", null, "44787", null, "2033", null, "12079", null, "1189", null, "78777", null, "2720", null, "32127", null, "1750", null, "150682", null, "3039", null, "281950", null, "5206", null, "273230", null, "5010", null, "260203", null, "5168", null, "75121", null, "2890", null, "66263", null, "2745", null, "54915", null, "1968", null, "19319", null, "1341", null, "36.0", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.2", null, "0.4", null, "6.2", null, "0.7", null, "6.5", null, "0.6", null, "5.9", null, "0.4", null, "6.6", null, "0.5", null, "8.4", null, "0.6", null, "8.4", null, "0.4", null, "7.4", null, "0.7", null, "6.0", null, "0.7", null, "5.7", null, "0.4", null, "5.6", null, "0.4", null, "5.6", null, "0.6", null, "5.7", null, "0.6", null, "5.5", null, "0.5", null, "4.6", null, "0.5", null, "3.3", null, "0.4", null, "1.2", null, "0.3", null, "1.1", null, "0.3", null, "12.7", null, "0.5", null, "3.4", null, "0.3", null, "22.4", null, "0.7", null, "9.1", null, "0.5", null, "42.8", null, "0.6", null, "80.1", null, "0.7", null, "77.6", null, "0.7", null, "73.9", null, "0.7", null, "21.3", null, "0.7", null, "18.8", null, "0.7", null, "15.6", null, "0.5", null, "5.5", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "390807", null, "6147", null, "19441", null, "1055", null, "23594", null, "2572", null, "16900", null, "2342", null, "22226", null, "1469", null, "26914", null, "2152", null, "29643", null, "1475", null, "32844", null, "1642", null, "28710", null, "2886", null, "22814", null, "2668", null, "23017", null, "1296", null, "20578", null, "1593", null, "23081", null, "2616", null, "24065", null, "2698", null, "23547", null, "2012", null, "23005", null, "2022", null, "12901", null, "1615", null, "8468", null, "1338", null, "9059", null, "1498", null, "40494", null, "2376", null, "11991", null, "1247", null, "71926", null, "2812", null, "37149", null, "2086", null, "163151", null, "3779", null, "326833", null, "5120", null, "318881", null, "4947", null, "302443", null, "4669", null, "101045", null, "3410", null, "90716", null, "3094", null, "76980", null, "2453", null, "30428", null, "1626", null, "38.9", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.0", null, "0.3", null, "6.0", null, "0.6", null, "4.3", null, "0.6", null, "5.7", null, "0.4", null, "6.9", null, "0.5", null, "7.6", null, "0.4", null, "8.4", null, "0.4", null, "7.3", null, "0.7", null, "5.8", null, "0.7", null, "5.9", null, "0.3", null, "5.3", null, "0.4", null, "5.9", null, "0.7", null, "6.2", null, "0.7", null, "6.0", null, "0.5", null, "5.9", null, "0.5", null, "3.3", null, "0.4", null, "2.2", null, "0.3", null, "2.3", null, "0.4", null, "10.4", null, "0.5", null, "3.1", null, "0.3", null, "18.4", null, "0.6", null, "9.5", null, "0.5", null, "41.7", null, "0.6", null, "83.6", null, "0.6", null, "81.6", null, "0.6", null, "77.4", null, "0.6", null, "25.9", null, "0.8", null, "23.2", null, "0.8", null, "19.7", null, "0.6", null, "7.8", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "29", "01"], ["5001900US2902", "Congressional District 2 (119th Congress), Missouri", "773921", null, "12287", null, "38158", null, "2103", null, "46306", null, "3280", null, "50472", null, "3201", null, "50111", null, "2497", null, "40327", null, "3249", null, "40387", null, "3161", null, "44377", null, "2611", null, "53382", null, "3890", null, "54142", null, "3360", null, "47585", null, "2967", null, "47681", null, "2847", null, "48552", null, "3661", null, "53089", null, "3472", null, "47624", null, "2740", null, "40623", null, "2610", null, "31587", null, "2509", null, "21295", null, "2021", null, "18223", null, "2045", null, "96778", null, "3868", null, "35068", null, "2171", null, "170004", null, "5457", null, "55370", null, "3532", null, "282726", null, "7183", null, "627292", null, "10240", null, "603917", null, "9691", null, "582278", null, "9189", null, "212441", null, "5795", null, "192030", null, "5348", null, "159352", null, "4241", null, "71105", null, "2707", null, "42.1", null, "0.6", null, "96.7", null, "1.9", null, "74.1", null, "1.8", null, "35.8", null, "1.1", null, "38.2", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.9", null, "0.2", null, "6.0", null, "0.4", null, "6.5", null, "0.4", null, "6.5", null, "0.3", null, "5.2", null, "0.4", null, "5.2", null, "0.4", null, "5.7", null, "0.3", null, "6.9", null, "0.5", null, "7.0", null, "0.4", null, "6.1", null, "0.4", null, "6.2", null, "0.4", null, "6.3", null, "0.5", null, "6.9", null, "0.5", null, "6.2", null, "0.3", null, "5.2", null, "0.4", null, "4.1", null, "0.3", null, "2.8", null, "0.3", null, "2.4", null, "0.3", null, "12.5", null, "0.4", null, "4.5", null, "0.3", null, "22.0", null, "0.5", null, "7.2", null, "0.4", null, "36.5", null, "0.6", null, "81.1", null, "0.5", null, "78.0", null, "0.5", null, "75.2", null, "0.5", null, "27.4", null, "0.7", null, "24.8", null, "0.7", null, "20.6", null, "0.5", null, "9.2", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "0.9", null, "-888888888.0", "(X)", "380371", null, "7230", null, "19253", null, "1692", null, "22661", null, "2072", null, "25910", null, "2007", null, "27194", null, "1821", null, "21421", null, "1888", null, "19336", null, "2143", null, "22516", null, "1579", null, "27174", null, "2192", null, "25754", null, "2113", null, "23948", null, "2004", null, "22963", null, "1909", null, "23596", null, "2198", null, "26743", null, "2252", null, "21821", null, "1681", null, "20301", null, "1672", null, "13704", null, "1466", null, "10119", null, "1356", null, "5957", null, "1219", null, "48571", null, "2396", null, "18529", null, "1478", null, "86353", null, "3547", null, "30086", null, "2070", null, "143395", null, "4218", null, "306408", null, "6043", null, "294018", null, "5700", null, "282562", null, "5660", null, "98645", null, "3342", null, "89164", null, "2860", null, "71902", null, "2352", null, "29780", null, "1564", null, "41.0", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.1", null, "0.4", null, "6.0", null, "0.5", null, "6.8", null, "0.5", null, "7.1", null, "0.5", null, "5.6", null, "0.5", null, "5.1", null, "0.5", null, "5.9", null, "0.4", null, "7.1", null, "0.5", null, "6.8", null, "0.5", null, "6.3", null, "0.5", null, "6.0", null, "0.5", null, "6.2", null, "0.6", null, "7.0", null, "0.6", null, "5.7", null, "0.4", null, "5.3", null, "0.4", null, "3.6", null, "0.4", null, "2.7", null, "0.4", null, "1.6", null, "0.3", null, "12.8", null, "0.6", null, "4.9", null, "0.4", null, "22.7", null, "0.7", null, "7.9", null, "0.5", null, "37.7", null, "0.7", null, "80.6", null, "0.7", null, "77.3", null, "0.7", null, "74.3", null, "0.8", null, "25.9", null, "0.9", null, "23.4", null, "0.8", null, "18.9", null, "0.6", null, "7.8", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "393550", null, "7237", null, "18905", null, "1241", null, "23645", null, "2458", null, "24562", null, "2342", null, "22917", null, "1590", null, "18906", null, "2228", null, "21051", null, "1909", null, "21861", null, "1704", null, "26208", null, "2469", null, "28388", null, "2200", null, "23637", null, "1568", null, "24718", null, "1656", null, "24956", null, "2156", null, "26346", null, "2105", null, "25803", null, "1913", null, "20322", null, "1851", null, "17883", null, "1733", null, "11176", null, "1387", null, "12266", null, "1334", null, "48207", null, "2813", null, "16539", null, "1404", null, "83651", null, "3249", null, "25284", null, "2432", null, "139331", null, "4493", null, "320884", null, "6122", null, "309899", null, "5892", null, "299716", null, "5319", null, "113796", null, "3686", null, "102866", null, "3448", null, "87450", null, "2804", null, "41325", null, "2009", null, "43.1", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.8", null, "0.3", null, "6.0", null, "0.6", null, "6.2", null, "0.6", null, "5.8", null, "0.4", null, "4.8", null, "0.5", null, "5.3", null, "0.5", null, "5.6", null, "0.4", null, "6.7", null, "0.6", null, "7.2", null, "0.5", null, "6.0", null, "0.4", null, "6.3", null, "0.4", null, "6.3", null, "0.6", null, "6.7", null, "0.5", null, "6.6", null, "0.4", null, "5.2", null, "0.5", null, "4.5", null, "0.4", null, "2.8", null, "0.3", null, "3.1", null, "0.3", null, "12.2", null, "0.7", null, "4.2", null, "0.3", null, "21.3", null, "0.7", null, "6.4", null, "0.6", null, "35.4", null, "0.8", null, "81.5", null, "0.7", null, "78.7", null, "0.7", null, "76.2", null, "0.7", null, "28.9", null, "0.9", null, "26.1", null, "0.8", null, "22.2", null, "0.6", null, "10.5", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "29", "02"], ["5001900US2903", "Congressional District 3 (119th Congress), Missouri", "799877", null, "11138", null, "41099", null, "1722", null, "44186", null, "3433", null, "51931", null, "3535", null, "52617", null, "2755", null, "61221", null, "2661", null, "49093", null, "2908", null, "52257", null, "2846", null, "50707", null, "3669", null, "49838", null, "3884", null, "44700", null, "2955", null, "44480", null, "2486", null, "47064", null, "3228", null, "59656", null, "3660", null, "51696", null, "2968", null, "40012", null, "2657", null, "28666", null, "2040", null, "17623", null, "1829", null, "13031", null, "1537", null, "96117", null, "4103", null, "28684", null, "1749", null, "165900", null, "5775", null, "85154", null, "3338", null, "315733", null, "5699", null, "653265", null, "8425", null, "633977", null, "8124", null, "596842", null, "8173", null, "210684", null, "4906", null, "186971", null, "4744", null, "151028", null, "3366", null, "59320", null, "1953", null, "39.7", null, "0.5", null, "99.0", null, "1.6", null, "65.6", null, "1.4", null, "31.3", null, "0.8", null, "34.4", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.1", null, "0.2", null, "5.5", null, "0.4", null, "6.5", null, "0.4", null, "6.6", null, "0.3", null, "7.7", null, "0.3", null, "6.1", null, "0.4", null, "6.5", null, "0.4", null, "6.3", null, "0.4", null, "6.2", null, "0.5", null, "5.6", null, "0.3", null, "5.6", null, "0.3", null, "5.9", null, "0.4", null, "7.5", null, "0.5", null, "6.5", null, "0.4", null, "5.0", null, "0.3", null, "3.6", null, "0.3", null, "2.2", null, "0.2", null, "1.6", null, "0.2", null, "12.0", null, "0.4", null, "3.6", null, "0.2", null, "20.7", null, "0.6", null, "10.6", null, "0.4", null, "39.5", null, "0.5", null, "81.7", null, "0.5", null, "79.3", null, "0.6", null, "74.6", null, "0.6", null, "26.3", null, "0.7", null, "23.4", null, "0.6", null, "18.9", null, "0.4", null, "7.4", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.3", null, "-888888888.0", "(X)", "397857", null, "6169", null, "20360", null, "1280", null, "21321", null, "2338", null, "26039", null, "2455", null, "25365", null, "2066", null, "31801", null, "2153", null, "25973", null, "2019", null, "26745", null, "1832", null, "27323", null, "2275", null, "25402", null, "2383", null, "22387", null, "1780", null, "22565", null, "1787", null, "22560", null, "2090", null, "30573", null, "2441", null, "25213", null, "1780", null, "19033", null, "1628", null, "12241", null, "1180", null, "7925", null, "1075", null, "5031", null, "840", null, "47360", null, "2546", null, "14282", null, "1602", null, "82002", null, "3568", null, "42884", null, "2692", null, "162609", null, "3436", null, "325223", null, "4887", null, "315855", null, "4471", null, "298199", null, "4298", null, "100016", null, "2971", null, "87660", null, "2806", null, "69443", null, "1805", null, "25197", null, "1028", null, "39.0", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.1", null, "0.3", null, "5.4", null, "0.6", null, "6.5", null, "0.6", null, "6.4", null, "0.5", null, "8.0", null, "0.5", null, "6.5", null, "0.5", null, "6.7", null, "0.5", null, "6.9", null, "0.6", null, "6.4", null, "0.6", null, "5.6", null, "0.4", null, "5.7", null, "0.4", null, "5.7", null, "0.5", null, "7.7", null, "0.6", null, "6.3", null, "0.4", null, "4.8", null, "0.4", null, "3.1", null, "0.3", null, "2.0", null, "0.3", null, "1.3", null, "0.2", null, "11.9", null, "0.5", null, "3.6", null, "0.4", null, "20.6", null, "0.7", null, "10.8", null, "0.6", null, "40.9", null, "0.7", null, "81.7", null, "0.6", null, "79.4", null, "0.7", null, "75.0", null, "0.9", null, "25.1", null, "0.8", null, "22.0", null, "0.7", null, "17.5", null, "0.5", null, "6.3", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "402020", null, "6777", null, "20739", null, "1434", null, "22865", null, "2031", null, "25892", null, "2396", null, "27252", null, "1557", null, "29420", null, "1945", null, "23120", null, "1619", null, "25512", null, "1732", null, "23384", null, "2334", null, "24436", null, "2277", null, "22313", null, "1840", null, "21915", null, "1591", null, "24504", null, "2085", null, "29083", null, "2100", null, "26483", null, "1955", null, "20979", null, "1610", null, "16425", null, "1551", null, "9698", null, "1241", null, "8000", null, "1191", null, "48757", null, "2666", null, "14402", null, "1449", null, "83898", null, "3819", null, "42270", null, "2060", null, "153124", null, "3919", null, "328042", null, "5400", null, "318122", null, "5140", null, "298643", null, "5273", null, "110668", null, "2976", null, "99311", null, "2862", null, "81585", null, "2236", null, "34123", null, "1325", null, "40.6", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.3", null, "5.7", null, "0.5", null, "6.4", null, "0.6", null, "6.8", null, "0.4", null, "7.3", null, "0.5", null, "5.8", null, "0.4", null, "6.3", null, "0.4", null, "5.8", null, "0.6", null, "6.1", null, "0.5", null, "5.6", null, "0.5", null, "5.5", null, "0.4", null, "6.1", null, "0.5", null, "7.2", null, "0.5", null, "6.6", null, "0.5", null, "5.2", null, "0.4", null, "4.1", null, "0.4", null, "2.4", null, "0.3", null, "2.0", null, "0.3", null, "12.1", null, "0.6", null, "3.6", null, "0.3", null, "20.9", null, "0.8", null, "10.5", null, "0.5", null, "38.1", null, "0.7", null, "81.6", null, "0.7", null, "79.1", null, "0.8", null, "74.3", null, "0.8", null, "27.5", null, "0.8", null, "24.7", null, "0.7", null, "20.3", null, "0.5", null, "8.5", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "29", "03"], ["5001900US2904", "Congressional District 4 (119th Congress), Missouri", "784156", null, "9032", null, "43469", null, "2855", null, "47093", null, "3012", null, "53660", null, "3744", null, "55262", null, "3304", null, "53423", null, "3652", null, "47502", null, "2532", null, "50047", null, "2800", null, "48144", null, "2903", null, "50979", null, "3385", null, "45144", null, "2281", null, "45338", null, "2203", null, "45597", null, "2504", null, "51872", null, "3002", null, "44889", null, "2510", null, "41006", null, "2366", null, "27205", null, "1750", null, "17353", null, "1627", null, "16173", null, "1685", null, "100753", null, "4913", null, "32807", null, "1819", null, "177029", null, "6664", null, "75878", null, "3180", null, "305357", null, "5362", null, "630866", null, "6374", null, "607127", null, "6272", null, "573342", null, "6997", null, "198498", null, "4418", null, "179579", null, "4171", null, "146626", null, "3026", null, "60731", null, "1917", null, "39.3", null, "0.7", null, "101.5", null, "2.2", null, "70.3", null, "1.7", null, "31.8", null, "0.9", null, "38.4", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.3", null, "6.0", null, "0.4", null, "6.8", null, "0.4", null, "7.0", null, "0.4", null, "6.8", null, "0.5", null, "6.1", null, "0.3", null, "6.4", null, "0.3", null, "6.1", null, "0.4", null, "6.5", null, "0.4", null, "5.8", null, "0.3", null, "5.8", null, "0.3", null, "5.8", null, "0.3", null, "6.6", null, "0.4", null, "5.7", null, "0.3", null, "5.2", null, "0.3", null, "3.5", null, "0.2", null, "2.2", null, "0.2", null, "2.1", null, "0.2", null, "12.8", null, "0.5", null, "4.2", null, "0.2", null, "22.6", null, "0.7", null, "9.7", null, "0.4", null, "38.9", null, "0.5", null, "80.5", null, "0.7", null, "77.4", null, "0.7", null, "73.1", null, "0.8", null, "25.3", null, "0.7", null, "22.9", null, "0.6", null, "18.7", null, "0.5", null, "7.7", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.2", null, "-888888888.0", "(X)", "395041", null, "6576", null, "21482", null, "1822", null, "24795", null, "2415", null, "29079", null, "2882", null, "28591", null, "2196", null, "30523", null, "2626", null, "24953", null, "1651", null, "25759", null, "1698", null, "24331", null, "1936", null, "24730", null, "2219", null, "21705", null, "1343", null, "23564", null, "1677", null, "23316", null, "1856", null, "25433", null, "1996", null, "20861", null, "1844", null, "19837", null, "1593", null, "12895", null, "1104", null, "7254", null, "1070", null, "5933", null, "1039", null, "53874", null, "3507", null, "16849", null, "1475", null, "92205", null, "4797", null, "42265", null, "2104", null, "158887", null, "3823", null, "315376", null, "4627", null, "302836", null, "4599", null, "284457", null, "5051", null, "92213", null, "2730", null, "83226", null, "2582", null, "66780", null, "1675", null, "26082", null, "1020", null, "37.6", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.4", null, "6.3", null, "0.6", null, "7.4", null, "0.7", null, "7.2", null, "0.5", null, "7.7", null, "0.7", null, "6.3", null, "0.4", null, "6.5", null, "0.4", null, "6.2", null, "0.5", null, "6.3", null, "0.5", null, "5.5", null, "0.4", null, "6.0", null, "0.4", null, "5.9", null, "0.5", null, "6.4", null, "0.5", null, "5.3", null, "0.5", null, "5.0", null, "0.4", null, "3.3", null, "0.3", null, "1.8", null, "0.3", null, "1.5", null, "0.3", null, "13.6", null, "0.8", null, "4.3", null, "0.4", null, "23.3", null, "1.0", null, "10.7", null, "0.5", null, "40.2", null, "0.7", null, "79.8", null, "1.0", null, "76.7", null, "1.0", null, "72.0", null, "1.1", null, "23.3", null, "0.7", null, "21.1", null, "0.7", null, "16.9", null, "0.5", null, "6.6", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "389115", null, "5800", null, "21987", null, "2154", null, "22298", null, "2276", null, "24581", null, "2235", null, "26671", null, "2487", null, "22900", null, "2211", null, "22549", null, "1530", null, "24288", null, "1753", null, "23813", null, "2090", null, "26249", null, "2097", null, "23439", null, "1760", null, "21774", null, "1341", null, "22281", null, "1684", null, "26439", null, "1953", null, "24028", null, "1523", null, "21169", null, "1613", null, "14310", null, "1190", null, "10099", null, "1075", null, "10240", null, "1200", null, "46879", null, "2880", null, "15958", null, "1587", null, "84824", null, "3967", null, "33613", null, "2015", null, "146470", null, "3707", null, "315490", null, "4159", null, "304291", null, "3847", null, "288885", null, "4176", null, "106285", null, "2893", null, "96353", null, "2856", null, "79846", null, "2007", null, "34649", null, "1382", null, "41.0", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.7", null, "0.5", null, "5.7", null, "0.6", null, "6.3", null, "0.5", null, "6.9", null, "0.6", null, "5.9", null, "0.6", null, "5.8", null, "0.4", null, "6.2", null, "0.4", null, "6.1", null, "0.5", null, "6.7", null, "0.5", null, "6.0", null, "0.4", null, "5.6", null, "0.3", null, "5.7", null, "0.4", null, "6.8", null, "0.5", null, "6.2", null, "0.4", null, "5.4", null, "0.4", null, "3.7", null, "0.3", null, "2.6", null, "0.3", null, "2.6", null, "0.3", null, "12.0", null, "0.6", null, "4.1", null, "0.4", null, "21.8", null, "0.8", null, "8.6", null, "0.5", null, "37.6", null, "0.7", null, "81.1", null, "0.8", null, "78.2", null, "0.8", null, "74.2", null, "1.0", null, "27.3", null, "0.8", null, "24.8", null, "0.8", null, "20.5", null, "0.6", null, "8.9", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "29", "04"], ["5001900US2905", "Congressional District 5 (119th Congress), Missouri", "776496", null, "6151", null, "46980", null, "2064", null, "44241", null, "3858", null, "51068", null, "4244", null, "45566", null, "2323", null, "51509", null, "2291", null, "61102", null, "2073", null, "62097", null, "2243", null, "58303", null, "4131", null, "53322", null, "3855", null, "42450", null, "2003", null, "41453", null, "2266", null, "40973", null, "2769", null, "47406", null, "3115", null, "41449", null, "2457", null, "36112", null, "2530", null, "24350", null, "1986", null, "14425", null, "1599", null, "13690", null, "1730", null, "95309", null, "3259", null, "28960", null, "1873", null, "171249", null, "4635", null, "68115", null, "2021", null, "331899", null, "4036", null, "624861", null, "5233", null, "605247", null, "4877", null, "581573", null, "5162", null, "177432", null, "3993", null, "158720", null, "3784", null, "130026", null, "2706", null, "52465", null, "1914", null, "37.4", null, "0.5", null, "93.3", null, "1.5", null, "63.4", null, "1.3", null, "27.4", null, "0.7", null, "36.0", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.1", null, "0.3", null, "5.7", null, "0.5", null, "6.6", null, "0.5", null, "5.9", null, "0.3", null, "6.6", null, "0.3", null, "7.9", null, "0.3", null, "8.0", null, "0.3", null, "7.5", null, "0.5", null, "6.9", null, "0.5", null, "5.5", null, "0.3", null, "5.3", null, "0.3", null, "5.3", null, "0.4", null, "6.1", null, "0.4", null, "5.3", null, "0.3", null, "4.7", null, "0.3", null, "3.1", null, "0.3", null, "1.9", null, "0.2", null, "1.8", null, "0.2", null, "12.3", null, "0.4", null, "3.7", null, "0.2", null, "22.1", null, "0.5", null, "8.8", null, "0.3", null, "42.7", null, "0.4", null, "80.5", null, "0.5", null, "77.9", null, "0.5", null, "74.9", null, "0.6", null, "22.9", null, "0.5", null, "20.4", null, "0.5", null, "16.7", null, "0.3", null, "6.8", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "0.8", null, "-888888888.0", "(X)", "374784", null, "4049", null, "24253", null, "1407", null, "20256", null, "2865", null, "27290", null, "3170", null, "23186", null, "1571", null, "23918", null, "1757", null, "29649", null, "1398", null, "31397", null, "1537", null, "27952", null, "2730", null, "26364", null, "2308", null, "21080", null, "1222", null, "20138", null, "1274", null, "20334", null, "1795", null, "21760", null, "1804", null, "20094", null, "1410", null, "15463", null, "1512", null, "11008", null, "1231", null, "5736", null, "856", null, "4906", null, "1047", null, "47546", null, "2642", null, "14418", null, "1192", null, "86217", null, "3804", null, "32686", null, "1728", null, "162466", null, "2575", null, "298549", null, "3433", null, "288567", null, "3334", null, "276548", null, "3662", null, "78967", null, "2232", null, "70185", null, "2220", null, "57207", null, "1617", null, "21650", null, "1140", null, "36.5", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.5", null, "0.4", null, "5.4", null, "0.7", null, "7.3", null, "0.8", null, "6.2", null, "0.4", null, "6.4", null, "0.5", null, "7.9", null, "0.4", null, "8.4", null, "0.4", null, "7.5", null, "0.7", null, "7.0", null, "0.6", null, "5.6", null, "0.3", null, "5.4", null, "0.3", null, "5.4", null, "0.5", null, "5.8", null, "0.5", null, "5.4", null, "0.4", null, "4.1", null, "0.4", null, "2.9", null, "0.3", null, "1.5", null, "0.2", null, "1.3", null, "0.3", null, "12.7", null, "0.6", null, "3.8", null, "0.3", null, "23.0", null, "0.9", null, "8.7", null, "0.5", null, "43.3", null, "0.6", null, "79.7", null, "0.8", null, "77.0", null, "0.9", null, "73.8", null, "1.0", null, "21.1", null, "0.6", null, "18.7", null, "0.6", null, "15.3", null, "0.4", null, "5.8", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "401712", null, "4630", null, "22727", null, "1405", null, "23985", null, "2520", null, "23778", null, "2574", null, "22380", null, "1568", null, "27591", null, "1452", null, "31453", null, "1343", null, "30700", null, "1528", null, "30351", null, "2764", null, "26958", null, "2909", null, "21370", null, "1325", null, "21315", null, "1371", null, "20639", null, "1890", null, "25646", null, "1984", null, "21355", null, "1847", null, "20649", null, "1994", null, "13342", null, "1295", null, "8689", null, "1222", null, "8784", null, "1242", null, "47763", null, "2359", null, "14542", null, "1518", null, "85032", null, "3191", null, "35429", null, "1226", null, "169433", null, "2813", null, "326312", null, "3267", null, "316680", null, "3167", null, "305025", null, "3364", null, "98465", null, "2699", null, "88535", null, "2566", null, "72819", null, "1720", null, "30815", null, "1201", null, "38.2", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.7", null, "0.3", null, "6.0", null, "0.6", null, "5.9", null, "0.6", null, "5.6", null, "0.4", null, "6.9", null, "0.4", null, "7.8", null, "0.3", null, "7.6", null, "0.4", null, "7.6", null, "0.7", null, "6.7", null, "0.7", null, "5.3", null, "0.3", null, "5.3", null, "0.3", null, "5.1", null, "0.5", null, "6.4", null, "0.5", null, "5.3", null, "0.5", null, "5.1", null, "0.5", null, "3.3", null, "0.3", null, "2.2", null, "0.3", null, "2.2", null, "0.3", null, "11.9", null, "0.5", null, "3.6", null, "0.4", null, "21.2", null, "0.6", null, "8.8", null, "0.3", null, "42.2", null, "0.5", null, "81.2", null, "0.6", null, "78.8", null, "0.6", null, "75.9", null, "0.7", null, "24.5", null, "0.6", null, "22.0", null, "0.6", null, "18.1", null, "0.4", null, "7.7", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "29", "05"], ["5001900US2906", "Congressional District 6 (119th Congress), Missouri", "788896", null, "6235", null, "44785", null, "1870", null, "45344", null, "2646", null, "56297", null, "2459", null, "54530", null, "2534", null, "48769", null, "2501", null, "45394", null, "2250", null, "48052", null, "2146", null, "49546", null, "3188", null, "49938", null, "3282", null, "47425", null, "1791", null, "48845", null, "2119", null, "48221", null, "3097", null, "54256", null, "2935", null, "45116", null, "2158", null, "39312", null, "2430", null, "29823", null, "2008", null, "18528", null, "1541", null, "14715", null, "1622", null, "101641", null, "2859", null, "35213", null, "1854", null, "181639", null, "3530", null, "68086", null, "2544", null, "296229", null, "4497", null, "630688", null, "5243", null, "607257", null, "4861", null, "578399", null, "5034", null, "201750", null, "3757", null, "180852", null, "3552", null, "147494", null, "2230", null, "63066", null, "1391", null, "40.2", null, "0.4", null, "100.3", null, "1.6", null, "71.6", null, "1.2", null, "32.1", null, "0.6", null, "39.5", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.7", null, "0.2", null, "5.7", null, "0.3", null, "7.1", null, "0.3", null, "6.9", null, "0.3", null, "6.2", null, "0.3", null, "5.8", null, "0.3", null, "6.1", null, "0.3", null, "6.3", null, "0.4", null, "6.3", null, "0.4", null, "6.0", null, "0.2", null, "6.2", null, "0.3", null, "6.1", null, "0.4", null, "6.9", null, "0.4", null, "5.7", null, "0.3", null, "5.0", null, "0.3", null, "3.8", null, "0.3", null, "2.3", null, "0.2", null, "1.9", null, "0.2", null, "12.9", null, "0.3", null, "4.5", null, "0.2", null, "23.0", null, "0.4", null, "8.6", null, "0.3", null, "37.5", null, "0.4", null, "79.9", null, "0.4", null, "77.0", null, "0.4", null, "73.3", null, "0.5", null, "25.6", null, "0.5", null, "22.9", null, "0.5", null, "18.7", null, "0.3", null, "8.0", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.7", null, "-888888888.0", "(X)", "395004", null, "4862", null, "23351", null, "1524", null, "24333", null, "2119", null, "29187", null, "2067", null, "27114", null, "2008", null, "25950", null, "1753", null, "22445", null, "1403", null, "23861", null, "1418", null, "25732", null, "2090", null, "25404", null, "2435", null, "24040", null, "1266", null, "25289", null, "1653", null, "24012", null, "1759", null, "26632", null, "1683", null, "22308", null, "1373", null, "18490", null, "1418", null, "13625", null, "1159", null, "7739", null, "1051", null, "5492", null, "913", null, "53520", null, "2216", null, "17027", null, "1389", null, "93898", null, "2829", null, "36037", null, "1727", null, "150506", null, "3275", null, "312357", null, "3883", null, "301106", null, "3479", null, "285416", null, "3681", null, "94286", null, "2018", null, "84866", null, "2089", null, "67654", null, "1394", null, "26856", null, "1001", null, "39.1", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.9", null, "0.4", null, "6.2", null, "0.5", null, "7.4", null, "0.5", null, "6.9", null, "0.5", null, "6.6", null, "0.5", null, "5.7", null, "0.3", null, "6.0", null, "0.3", null, "6.5", null, "0.5", null, "6.4", null, "0.6", null, "6.1", null, "0.3", null, "6.4", null, "0.4", null, "6.1", null, "0.4", null, "6.7", null, "0.4", null, "5.6", null, "0.3", null, "4.7", null, "0.4", null, "3.4", null, "0.3", null, "2.0", null, "0.3", null, "1.4", null, "0.2", null, "13.5", null, "0.5", null, "4.3", null, "0.3", null, "23.8", null, "0.5", null, "9.1", null, "0.4", null, "38.1", null, "0.6", null, "79.1", null, "0.5", null, "76.2", null, "0.5", null, "72.3", null, "0.7", null, "23.9", null, "0.5", null, "21.5", null, "0.5", null, "17.1", null, "0.4", null, "6.8", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "393892", null, "4055", null, "21434", null, "1282", null, "21011", null, "1794", null, "27110", null, "2029", null, "27416", null, "1718", null, "22819", null, "1636", null, "22949", null, "1516", null, "24191", null, "1482", null, "23814", null, "2007", null, "24534", null, "1827", null, "23385", null, "1386", null, "23556", null, "1250", null, "24209", null, "2110", null, "27624", null, "1968", null, "22808", null, "1549", null, "20822", null, "1660", null, "16198", null, "1333", null, "10789", null, "1003", null, "9223", null, "1153", null, "48121", null, "2194", null, "18186", null, "1476", null, "87741", null, "2672", null, "32049", null, "1572", null, "145723", null, "2638", null, "318331", null, "2862", null, "306151", null, "2821", null, "292983", null, "2978", null, "107464", null, "2629", null, "95986", null, "2329", null, "79840", null, "1536", null, "36210", null, "963", null, "41.2", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.3", null, "5.3", null, "0.4", null, "6.9", null, "0.5", null, "7.0", null, "0.4", null, "5.8", null, "0.4", null, "5.8", null, "0.4", null, "6.1", null, "0.4", null, "6.0", null, "0.5", null, "6.2", null, "0.5", null, "5.9", null, "0.3", null, "6.0", null, "0.3", null, "6.1", null, "0.5", null, "7.0", null, "0.5", null, "5.8", null, "0.4", null, "5.3", null, "0.4", null, "4.1", null, "0.3", null, "2.7", null, "0.3", null, "2.3", null, "0.3", null, "12.2", null, "0.5", null, "4.6", null, "0.4", null, "22.3", null, "0.5", null, "8.1", null, "0.4", null, "37.0", null, "0.6", null, "80.8", null, "0.5", null, "77.7", null, "0.5", null, "74.4", null, "0.7", null, "27.3", null, "0.7", null, "24.4", null, "0.6", null, "20.3", null, "0.4", null, "9.2", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "29", "06"], ["5001900US2907", "Congressional District 7 (119th Congress), Missouri", "803037", null, "4008", null, "44619", null, "1594", null, "50426", null, "2776", null, "49384", null, "3043", null, "54550", null, "2305", null, "63649", null, "2247", null, "50750", null, "2127", null, "52299", null, "1551", null, "50375", null, "2916", null, "50390", null, "3201", null, "44239", null, "1366", null, "45284", null, "1315", null, "44253", null, "2945", null, "51593", null, "3124", null, "45560", null, "2630", null, "41243", null, "2670", null, "29259", null, "2061", null, "20504", null, "1789", null, "14660", null, "1618", null, "99810", null, "2387", null, "33765", null, "1396", null, "178194", null, "2948", null, "84434", null, "2399", null, "322013", null, "2871", null, "647545", null, "3008", null, "624843", null, "2517", null, "591517", null, "3746", null, "202819", null, "3661", null, "181694", null, "3222", null, "151226", null, "1652", null, "64423", null, "1180", null, "38.3", null, "0.5", null, "97.1", null, "1.1", null, "69.6", null, "0.7", null, "31.9", null, "0.4", null, "37.6", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.6", null, "0.2", null, "6.3", null, "0.3", null, "6.1", null, "0.4", null, "6.8", null, "0.3", null, "7.9", null, "0.3", null, "6.3", null, "0.3", null, "6.5", null, "0.2", null, "6.3", null, "0.4", null, "6.3", null, "0.4", null, "5.5", null, "0.2", null, "5.6", null, "0.2", null, "5.5", null, "0.4", null, "6.4", null, "0.4", null, "5.7", null, "0.3", null, "5.1", null, "0.3", null, "3.6", null, "0.3", null, "2.6", null, "0.2", null, "1.8", null, "0.2", null, "12.4", null, "0.3", null, "4.2", null, "0.2", null, "22.2", null, "0.3", null, "10.5", null, "0.3", null, "40.1", null, "0.3", null, "80.6", null, "0.3", null, "77.8", null, "0.3", null, "73.7", null, "0.4", null, "25.3", null, "0.5", null, "22.6", null, "0.4", null, "18.8", null, "0.2", null, "8.0", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.2", null, "-888888888.0", "(X)", "1.0", null, "-888888888.0", "(X)", "395547", null, "2935", null, "23554", null, "1209", null, "26851", null, "2507", null, "24632", null, "2508", null, "27051", null, "1538", null, "32401", null, "1945", null, "25110", null, "1280", null, "26405", null, "854", null, "25647", null, "2050", null, "24776", null, "2164", null, "22465", null, "897", null, "21873", null, "763", null, "22333", null, "1754", null, "25000", null, "1868", null, "22200", null, "1590", null, "17662", null, "1667", null, "13062", null, "1186", null, "8254", null, "1066", null, "6271", null, "921", null, "51483", null, "1788", null, "17022", null, "918", null, "92059", null, "2404", null, "42430", null, "1727", null, "161390", null, "1899", null, "314529", null, "2288", null, "303488", null, "1837", null, "286715", null, "2675", null, "92449", null, "1981", null, "81724", null, "1783", null, "67449", null, "812", null, "27587", null, "653", null, "37.2", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.0", null, "0.3", null, "6.8", null, "0.6", null, "6.2", null, "0.6", null, "6.8", null, "0.4", null, "8.2", null, "0.5", null, "6.3", null, "0.3", null, "6.7", null, "0.2", null, "6.5", null, "0.5", null, "6.3", null, "0.6", null, "5.7", null, "0.2", null, "5.5", null, "0.2", null, "5.6", null, "0.4", null, "6.3", null, "0.5", null, "5.6", null, "0.4", null, "4.5", null, "0.4", null, "3.3", null, "0.3", null, "2.1", null, "0.3", null, "1.6", null, "0.2", null, "13.0", null, "0.4", null, "4.3", null, "0.2", null, "23.3", null, "0.5", null, "10.7", null, "0.4", null, "40.8", null, "0.4", null, "79.5", null, "0.5", null, "76.7", null, "0.5", null, "72.5", null, "0.6", null, "23.4", null, "0.5", null, "20.7", null, "0.5", null, "17.1", null, "0.2", null, "7.0", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "407490", null, "3150", null, "21065", null, "1028", null, "23575", null, "1854", null, "24752", null, "2047", null, "27499", null, "1715", null, "31248", null, "1432", null, "25640", null, "1663", null, "25894", null, "1279", null, "24728", null, "1971", null, "25614", null, "2139", null, "21774", null, "974", null, "23411", null, "1056", null, "21920", null, "1897", null, "26593", null, "1871", null, "23360", null, "1725", null, "23581", null, "1830", null, "16197", null, "1347", null, "12250", null, "1353", null, "8389", null, "1241", null, "48327", null, "1749", null, "16743", null, "1096", null, "86135", null, "2071", null, "42004", null, "1582", null, "160623", null, "2296", null, "333016", null, "2582", null, "321355", null, "1997", null, "304802", null, "2614", null, "110370", null, "2435", null, "99970", null, "2178", null, "83777", null, "1266", null, "36836", null, "991", null, "39.8", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.2", null, "5.8", null, "0.5", null, "6.1", null, "0.5", null, "6.7", null, "0.4", null, "7.7", null, "0.4", null, "6.3", null, "0.4", null, "6.4", null, "0.3", null, "6.1", null, "0.5", null, "6.3", null, "0.5", null, "5.3", null, "0.2", null, "5.7", null, "0.3", null, "5.4", null, "0.5", null, "6.5", null, "0.5", null, "5.7", null, "0.4", null, "5.8", null, "0.5", null, "4.0", null, "0.3", null, "3.0", null, "0.3", null, "2.1", null, "0.3", null, "11.9", null, "0.4", null, "4.1", null, "0.3", null, "21.1", null, "0.4", null, "10.3", null, "0.4", null, "39.4", null, "0.4", null, "81.7", null, "0.4", null, "78.9", null, "0.4", null, "74.8", null, "0.5", null, "27.1", null, "0.6", null, "24.5", null, "0.5", null, "20.6", null, "0.3", null, "9.0", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "29", "07"], ["5001900US2908", "Congressional District 8 (119th Congress), Missouri", "776269", null, "6384", null, "42543", null, "1672", null, "47800", null, "3270", null, "49158", null, "2981", null, "51919", null, "2252", null, "49738", null, "2529", null, "46134", null, "2574", null, "46648", null, "2086", null, "51107", null, "2937", null, "48612", null, "2983", null, "45567", null, "1633", null, "46055", null, "1457", null, "47388", null, "2695", null, "52046", null, "2789", null, "48946", null, "2576", null, "39512", null, "2677", null, "30158", null, "2267", null, "17833", null, "1684", null, "15105", null, "1646", null, "96958", null, "2501", null, "32582", null, "1117", null, "172083", null, "2849", null, "69075", null, "2297", null, "294158", null, "4141", null, "625896", null, "5936", null, "604186", null, "5185", null, "575368", null, "5675", null, "203600", null, "4043", null, "182979", null, "3415", null, "151554", null, "2268", null, "63096", null, "1203", null, "40.2", null, "0.3", null, "100.7", null, "1.6", null, "71.5", null, "1.0", null, "33.5", null, "0.6", null, "38.0", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.2", null, "6.2", null, "0.4", null, "6.3", null, "0.4", null, "6.7", null, "0.3", null, "6.4", null, "0.3", null, "5.9", null, "0.3", null, "6.0", null, "0.3", null, "6.6", null, "0.4", null, "6.3", null, "0.4", null, "5.9", null, "0.2", null, "5.9", null, "0.2", null, "6.1", null, "0.4", null, "6.7", null, "0.3", null, "6.3", null, "0.3", null, "5.1", null, "0.3", null, "3.9", null, "0.3", null, "2.3", null, "0.2", null, "1.9", null, "0.2", null, "12.5", null, "0.3", null, "4.2", null, "0.1", null, "22.2", null, "0.3", null, "8.9", null, "0.3", null, "37.9", null, "0.4", null, "80.6", null, "0.4", null, "77.8", null, "0.3", null, "74.1", null, "0.4", null, "26.2", null, "0.5", null, "23.6", null, "0.4", null, "19.5", null, "0.3", null, "8.1", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.0", null, "-888888888.0", "(X)", "389447", null, "4684", null, "23368", null, "1469", null, "23285", null, "2093", null, "28000", null, "2283", null, "26193", null, "1941", null, "26609", null, "1657", null, "24546", null, "1913", null, "22578", null, "1401", null, "26644", null, "1945", null, "24084", null, "1933", null, "23676", null, "1029", null, "23270", null, "977", null, "23057", null, "1922", null, "25709", null, "1882", null, "23716", null, "1612", null, "17567", null, "1561", null, "14168", null, "1320", null, "7496", null, "1067", null, "5481", null, "953", null, "51285", null, "1886", null, "16525", null, "1323", null, "91178", null, "2750", null, "36277", null, "1550", null, "150654", null, "2912", null, "309185", null, "3883", null, "298269", null, "3253", null, "283798", null, "3381", null, "94137", null, "2488", null, "83915", null, "2166", null, "68428", null, "1405", null, "27145", null, "815", null, "39.0", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.0", null, "0.4", null, "6.0", null, "0.5", null, "7.2", null, "0.6", null, "6.7", null, "0.5", null, "6.8", null, "0.4", null, "6.3", null, "0.5", null, "5.8", null, "0.4", null, "6.8", null, "0.5", null, "6.2", null, "0.5", null, "6.1", null, "0.3", null, "6.0", null, "0.2", null, "5.9", null, "0.5", null, "6.6", null, "0.5", null, "6.1", null, "0.4", null, "4.5", null, "0.4", null, "3.6", null, "0.3", null, "1.9", null, "0.3", null, "1.4", null, "0.3", null, "13.2", null, "0.4", null, "4.2", null, "0.3", null, "23.4", null, "0.5", null, "9.3", null, "0.4", null, "38.7", null, "0.5", null, "79.4", null, "0.5", null, "76.6", null, "0.5", null, "72.9", null, "0.7", null, "24.2", null, "0.6", null, "21.5", null, "0.5", null, "17.6", null, "0.4", null, "7.0", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "386822", null, "4199", null, "19175", null, "1393", null, "24515", null, "2306", null, "21158", null, "1742", null, "25726", null, "1718", null, "23129", null, "1643", null, "21588", null, "1438", null, "24070", null, "1156", null, "24463", null, "1883", null, "24528", null, "1923", null, "21891", null, "1033", null, "22785", null, "833", null, "24331", null, "1780", null, "26337", null, "1847", null, "25230", null, "1619", null, "21945", null, "1801", null, "15990", null, "1485", null, "10337", null, "1255", null, "9624", null, "1274", null, "45673", null, "1645", null, "16057", null, "1282", null, "80905", null, "2801", null, "32798", null, "1556", null, "143504", null, "2649", null, "316711", null, "3264", null, "305917", null, "2930", null, "291570", null, "3359", null, "109463", null, "2392", null, "99064", null, "2216", null, "83126", null, "1362", null, "35951", null, "778", null, "41.7", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.0", null, "0.3", null, "6.3", null, "0.6", null, "5.5", null, "0.4", null, "6.7", null, "0.4", null, "6.0", null, "0.4", null, "5.6", null, "0.4", null, "6.2", null, "0.3", null, "6.3", null, "0.5", null, "6.3", null, "0.5", null, "5.7", null, "0.3", null, "5.9", null, "0.2", null, "6.3", null, "0.5", null, "6.8", null, "0.5", null, "6.5", null, "0.4", null, "5.7", null, "0.5", null, "4.1", null, "0.4", null, "2.7", null, "0.3", null, "2.5", null, "0.3", null, "11.8", null, "0.4", null, "4.2", null, "0.3", null, "20.9", null, "0.6", null, "8.5", null, "0.4", null, "37.1", null, "0.5", null, "81.9", null, "0.6", null, "79.1", null, "0.6", null, "75.4", null, "0.7", null, "28.3", null, "0.6", null, "25.6", null, "0.6", null, "21.5", null, "0.4", null, "9.3", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "29", "08"], ["5001900US3001", "Congressional District 1 (119th Congress), Montana", "579075", null, "1568", null, "26136", null, "979", null, "30846", null, "2616", null, "31016", null, "2419", null, "36009", null, "2040", null, "44822", null, "2208", null, "37043", null, "1500", null, "38030", null, "1022", null, "36353", null, "2933", null, "40178", null, "2813", null, "34304", null, "994", null, "31754", null, "869", null, "32314", null, "2369", null, "37121", null, "2355", null, "37559", null, "2590", null, "37528", null, "2339", null, "22941", null, "1718", null, "14030", null, "1399", null, "11091", null, "1471", null, "61862", null, "1388", null, "20202", null, "867", null, "108200", null, "1283", null, "60629", null, "1738", null, "232435", null, "1964", null, "485109", null, "1906", null, "470875", null, "1363", null, "445115", null, "2807", null, "160270", null, "2678", null, "146395", null, "2616", null, "123149", null, "1186", null, "48062", null, "739", null, "41.2", null, "0.4", null, "103.7", null, "1.2", null, "66.5", null, "0.7", null, "35.4", null, "0.5", null, "31.1", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.5", null, "0.2", null, "5.3", null, "0.4", null, "5.4", null, "0.4", null, "6.2", null, "0.3", null, "7.7", null, "0.4", null, "6.4", null, "0.3", null, "6.6", null, "0.2", null, "6.3", null, "0.5", null, "6.9", null, "0.5", null, "5.9", null, "0.2", null, "5.5", null, "0.2", null, "5.6", null, "0.4", null, "6.4", null, "0.4", null, "6.5", null, "0.4", null, "6.5", null, "0.4", null, "4.0", null, "0.3", null, "2.4", null, "0.2", null, "1.9", null, "0.3", null, "10.7", null, "0.2", null, "3.5", null, "0.1", null, "18.7", null, "0.2", null, "10.5", null, "0.3", null, "40.1", null, "0.3", null, "83.8", null, "0.3", null, "81.3", null, "0.2", null, "76.9", null, "0.5", null, "27.7", null, "0.4", null, "25.3", null, "0.4", null, "21.3", null, "0.2", null, "8.3", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "2.0", null, "-888888888.0", "(X)", "294776", null, "1758", null, "12468", null, "820", null, "14668", null, "1877", null, "16449", null, "1851", null, "18591", null, "1262", null, "24284", null, "1292", null, "20131", null, "1213", null, "19791", null, "801", null, "20232", null, "1840", null, "19999", null, "1710", null, "17346", null, "620", null, "16453", null, "650", null, "16336", null, "1622", null, "18292", null, "1668", null, "17644", null, "1582", null, "19044", null, "1457", null, "11801", null, "1070", null, "6181", null, "1021", null, "5066", null, "902", null, "31117", null, "914", null, "10286", null, "644", null, "53871", null, "1165", null, "32589", null, "1230", null, "123028", null, "1228", null, "248389", null, "1591", null, "240905", null, "1488", null, "227861", null, "2326", null, "78028", null, "1960", null, "70928", null, "1721", null, "59736", null, "995", null, "23048", null, "517", null, "40.2", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.2", null, "0.3", null, "5.0", null, "0.6", null, "5.6", null, "0.6", null, "6.3", null, "0.4", null, "8.2", null, "0.5", null, "6.8", null, "0.4", null, "6.7", null, "0.3", null, "6.9", null, "0.6", null, "6.8", null, "0.6", null, "5.9", null, "0.2", null, "5.6", null, "0.2", null, "5.5", null, "0.6", null, "6.2", null, "0.6", null, "6.0", null, "0.5", null, "6.5", null, "0.5", null, "4.0", null, "0.4", null, "2.1", null, "0.3", null, "1.7", null, "0.3", null, "10.6", null, "0.3", null, "3.5", null, "0.2", null, "18.3", null, "0.3", null, "11.1", null, "0.4", null, "41.7", null, "0.4", null, "84.3", null, "0.4", null, "81.7", null, "0.3", null, "77.3", null, "0.7", null, "26.5", null, "0.6", null, "24.1", null, "0.6", null, "20.3", null, "0.3", null, "7.8", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "284299", null, "2014", null, "13668", null, "900", null, "16178", null, "1780", null, "14567", null, "1534", null, "17418", null, "1848", null, "20538", null, "1774", null, "16912", null, "802", null, "18239", null, "746", null, "16121", null, "1739", null, "20179", null, "1765", null, "16958", null, "807", null, "15301", null, "665", null, "15978", null, "1415", null, "18829", null, "1535", null, "19915", null, "1616", null, "18484", null, "1464", null, "11140", null, "1111", null, "7849", null, "950", null, "6025", null, "919", null, "30745", null, "1174", null, "9916", null, "910", null, "54329", null, "1367", null, "28040", null, "1101", null, "109407", null, "1780", null, "236720", null, "1910", null, "229970", null, "1338", null, "217254", null, "1955", null, "82242", null, "1719", null, "75467", null, "1765", null, "63413", null, "875", null, "25014", null, "506", null, "42.0", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.8", null, "0.3", null, "5.7", null, "0.6", null, "5.1", null, "0.5", null, "6.1", null, "0.6", null, "7.2", null, "0.6", null, "5.9", null, "0.3", null, "6.4", null, "0.3", null, "5.7", null, "0.6", null, "7.1", null, "0.6", null, "6.0", null, "0.3", null, "5.4", null, "0.2", null, "5.6", null, "0.5", null, "6.6", null, "0.5", null, "7.0", null, "0.6", null, "6.5", null, "0.5", null, "3.9", null, "0.4", null, "2.8", null, "0.3", null, "2.1", null, "0.3", null, "10.8", null, "0.4", null, "3.5", null, "0.3", null, "19.1", null, "0.4", null, "9.9", null, "0.4", null, "38.5", null, "0.6", null, "83.3", null, "0.5", null, "80.9", null, "0.4", null, "76.4", null, "0.7", null, "28.9", null, "0.6", null, "26.5", null, "0.6", null, "22.3", null, "0.3", null, "8.8", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "30", "01"], ["5001900US3002", "Congressional District 2 (119th Congress), Montana", "558158", null, "1568", null, "27819", null, "870", null, "33620", null, "1908", null, "37122", null, "2157", null, "37100", null, "2093", null, "28994", null, "1883", null, "32393", null, "1583", null, "34862", null, "1402", null, "35404", null, "2710", null, "39484", null, "2778", null, "32919", null, "1615", null, "31182", null, "1091", null, "30248", null, "2595", null, "38737", null, "2600", null, "36877", null, "1810", null, "33291", null, "1810", null, "24032", null, "1691", null, "13119", null, "1461", null, "10955", null, "1337", null, "70742", null, "1311", null, "23254", null, "984", null, "121815", null, "1409", null, "42840", null, "1905", null, "208237", null, "2508", null, "451829", null, "1863", null, "436343", null, "1297", null, "417297", null, "2233", null, "157011", null, "2944", null, "143498", null, "2678", null, "118274", null, "1155", null, "48106", null, "913", null, "41.5", null, "0.4", null, "101.1", null, "1.3", null, "75.5", null, "0.8", null, "37.2", null, "0.5", null, "38.3", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.0", null, "0.2", null, "6.0", null, "0.3", null, "6.7", null, "0.4", null, "6.6", null, "0.4", null, "5.2", null, "0.3", null, "5.8", null, "0.3", null, "6.2", null, "0.3", null, "6.3", null, "0.5", null, "7.1", null, "0.5", null, "5.9", null, "0.3", null, "5.6", null, "0.2", null, "5.4", null, "0.5", null, "6.9", null, "0.5", null, "6.6", null, "0.3", null, "6.0", null, "0.3", null, "4.3", null, "0.3", null, "2.4", null, "0.3", null, "2.0", null, "0.2", null, "12.7", null, "0.2", null, "4.2", null, "0.2", null, "21.8", null, "0.2", null, "7.7", null, "0.3", null, "37.3", null, "0.4", null, "81.0", null, "0.3", null, "78.2", null, "0.2", null, "74.8", null, "0.4", null, "28.1", null, "0.5", null, "25.7", null, "0.5", null, "21.2", null, "0.2", null, "8.6", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.6", null, "-888888888.0", "(X)", "280671", null, "1932", null, "14560", null, "964", null, "17945", null, "1710", null, "18484", null, "1672", null, "19250", null, "1444", null, "15715", null, "1250", null, "16966", null, "1313", null, "17391", null, "811", null, "18401", null, "1833", null, "20298", null, "1848", null, "17037", null, "1273", null, "15405", null, "735", null, "14748", null, "1810", null, "18875", null, "1747", null, "18979", null, "1211", null, "14977", null, "1292", null, "11909", null, "1128", null, "5925", null, "761", null, "3806", null, "852", null, "36429", null, "918", null, "12159", null, "788", null, "63148", null, "1484", null, "22806", null, "1315", null, "108021", null, "1367", null, "225156", null, "1866", null, "217523", null, "1776", null, "207637", null, "2200", null, "74471", null, "1801", null, "67788", null, "1660", null, "55596", null, "639", null, "21640", null, "315", null, "40.4", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.3", null, "6.4", null, "0.6", null, "6.6", null, "0.6", null, "6.9", null, "0.5", null, "5.6", null, "0.4", null, "6.0", null, "0.5", null, "6.2", null, "0.3", null, "6.6", null, "0.7", null, "7.2", null, "0.7", null, "6.1", null, "0.5", null, "5.5", null, "0.2", null, "5.3", null, "0.6", null, "6.7", null, "0.6", null, "6.8", null, "0.4", null, "5.3", null, "0.5", null, "4.2", null, "0.4", null, "2.1", null, "0.3", null, "1.4", null, "0.3", null, "13.0", null, "0.3", null, "4.3", null, "0.3", null, "22.5", null, "0.5", null, "8.1", null, "0.5", null, "38.5", null, "0.4", null, "80.2", null, "0.5", null, "77.5", null, "0.5", null, "74.0", null, "0.7", null, "26.5", null, "0.6", null, "24.2", null, "0.6", null, "19.8", null, "0.2", null, "7.7", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "277487", null, "2047", null, "13259", null, "833", null, "15675", null, "1371", null, "18638", null, "1521", null, "17850", null, "1187", null, "13279", null, "1140", null, "15427", null, "854", null, "17471", null, "1045", null, "17003", null, "1645", null, "19186", null, "1691", null, "15882", null, "936", null, "15777", null, "899", null, "15500", null, "1564", null, "19862", null, "1549", null, "17898", null, "1317", null, "18314", null, "1304", null, "12123", null, "1070", null, "7194", null, "1099", null, "7149", null, "1029", null, "34313", null, "977", null, "11095", null, "916", null, "58667", null, "1315", null, "20034", null, "1055", null, "100216", null, "1847", null, "226673", null, "1991", null, "218820", null, "1706", null, "209660", null, "1840", null, "82540", null, "2039", null, "75710", null, "1909", null, "62678", null, "1151", null, "26466", null, "851", null, "42.5", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.8", null, "0.3", null, "5.6", null, "0.5", null, "6.7", null, "0.5", null, "6.4", null, "0.4", null, "4.8", null, "0.4", null, "5.6", null, "0.3", null, "6.3", null, "0.4", null, "6.1", null, "0.6", null, "6.9", null, "0.6", null, "5.7", null, "0.3", null, "5.7", null, "0.3", null, "5.6", null, "0.6", null, "7.2", null, "0.6", null, "6.5", null, "0.5", null, "6.6", null, "0.5", null, "4.4", null, "0.4", null, "2.6", null, "0.4", null, "2.6", null, "0.4", null, "12.4", null, "0.3", null, "4.0", null, "0.3", null, "21.1", null, "0.4", null, "7.2", null, "0.4", null, "36.1", null, "0.6", null, "81.7", null, "0.5", null, "78.9", null, "0.4", null, "75.6", null, "0.6", null, "29.7", null, "0.7", null, "27.3", null, "0.7", null, "22.6", null, "0.4", null, "9.5", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "30", "02"], ["5001900US3101", "Congressional District 1 (119th Congress), Nebraska", "672915", null, "6316", null, "39347", null, "1630", null, "44589", null, "3045", null, "44040", null, "2789", null, "50860", null, "2098", null, "58059", null, "2014", null, "45942", null, "1776", null, "46309", null, "2585", null, "40225", null, "2865", null, "45153", null, "2974", null, "39007", null, "2081", null, "33667", null, "1453", null, "35624", null, "2291", null, "39396", null, "2403", null, "32881", null, "1886", null, "32547", null, "1950", null, "20216", null, "1459", null, "12996", null, "1330", null, "12057", null, "1342", null, "88629", null, "2593", null, "28659", null, "1251", null, "156635", null, "3026", null, "80260", null, "1815", null, "286548", null, "4464", null, "535315", null, "5069", null, "516280", null, "4299", null, "481095", null, "4813", null, "150093", null, "2536", null, "134158", null, "2681", null, "110697", null, "1996", null, "45269", null, "1052", null, "35.9", null, "0.4", null, "100.7", null, "1.2", null, "65.9", null, "1.0", null, "27.3", null, "0.6", null, "38.6", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.8", null, "0.2", null, "6.6", null, "0.4", null, "6.5", null, "0.4", null, "7.6", null, "0.3", null, "8.6", null, "0.3", null, "6.8", null, "0.3", null, "6.9", null, "0.4", null, "6.0", null, "0.4", null, "6.7", null, "0.4", null, "5.8", null, "0.3", null, "5.0", null, "0.2", null, "5.3", null, "0.3", null, "5.9", null, "0.4", null, "4.9", null, "0.3", null, "4.8", null, "0.3", null, "3.0", null, "0.2", null, "1.9", null, "0.2", null, "1.8", null, "0.2", null, "13.2", null, "0.3", null, "4.3", null, "0.2", null, "23.3", null, "0.3", null, "11.9", null, "0.2", null, "42.6", null, "0.4", null, "79.6", null, "0.4", null, "76.7", null, "0.3", null, "71.5", null, "0.5", null, "22.3", null, "0.4", null, "19.9", null, "0.4", null, "16.5", null, "0.3", null, "6.7", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "0.9", null, "-888888888.0", "(X)", "337606", null, "3805", null, "20202", null, "1289", null, "22764", null, "1911", null, "22786", null, "1931", null, "25807", null, "1931", null, "29090", null, "1462", null, "23966", null, "1294", null, "24597", null, "1746", null, "20997", null, "1743", null, "22512", null, "1832", null, "19767", null, "1326", null, "17250", null, "982", null, "17238", null, "1590", null, "20003", null, "1607", null, "16937", null, "1183", null, "14306", null, "1319", null, "8948", null, "964", null, "5348", null, "774", null, "5088", null, "878", null, "45550", null, "1551", null, "13459", null, "1185", null, "79211", null, "2292", null, "41438", null, "1288", null, "146969", null, "2664", null, "267314", null, "2909", null, "258395", null, "2623", null, "239244", null, "2941", null, "70630", null, "1734", null, "63006", null, "1760", null, "50627", null, "1278", null, "19384", null, "750", null, "34.9", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.0", null, "0.4", null, "6.7", null, "0.5", null, "6.7", null, "0.6", null, "7.6", null, "0.6", null, "8.6", null, "0.4", null, "7.1", null, "0.4", null, "7.3", null, "0.5", null, "6.2", null, "0.5", null, "6.7", null, "0.5", null, "5.9", null, "0.4", null, "5.1", null, "0.3", null, "5.1", null, "0.5", null, "5.9", null, "0.5", null, "5.0", null, "0.3", null, "4.2", null, "0.4", null, "2.7", null, "0.3", null, "1.6", null, "0.2", null, "1.5", null, "0.3", null, "13.5", null, "0.4", null, "4.0", null, "0.3", null, "23.5", null, "0.5", null, "12.3", null, "0.4", null, "43.5", null, "0.5", null, "79.2", null, "0.6", null, "76.5", null, "0.5", null, "70.9", null, "0.7", null, "20.9", null, "0.5", null, "18.7", null, "0.5", null, "15.0", null, "0.3", null, "5.7", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "335309", null, "3740", null, "19145", null, "1314", null, "21825", null, "2404", null, "21254", null, "1810", null, "25053", null, "1735", null, "28969", null, "1073", null, "21976", null, "1032", null, "21712", null, "1470", null, "19228", null, "1930", null, "22641", null, "2006", null, "19240", null, "1350", null, "16417", null, "904", null, "18386", null, "1702", null, "19393", null, "1513", null, "15944", null, "1364", null, "18241", null, "1357", null, "11268", null, "1056", null, "7648", null, "998", null, "6969", null, "897", null, "43079", null, "1808", null, "15200", null, "1482", null, "77424", null, "2257", null, "38822", null, "1073", null, "139579", null, "2498", null, "268001", null, "3107", null, "257885", null, "2348", null, "241851", null, "2784", null, "79463", null, "1839", null, "71152", null, "1789", null, "60070", null, "1134", null, "25885", null, "567", null, "36.9", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.7", null, "0.4", null, "6.5", null, "0.7", null, "6.3", null, "0.5", null, "7.5", null, "0.5", null, "8.6", null, "0.3", null, "6.6", null, "0.3", null, "6.5", null, "0.4", null, "5.7", null, "0.6", null, "6.8", null, "0.6", null, "5.7", null, "0.4", null, "4.9", null, "0.3", null, "5.5", null, "0.5", null, "5.8", null, "0.4", null, "4.8", null, "0.4", null, "5.4", null, "0.4", null, "3.4", null, "0.3", null, "2.3", null, "0.3", null, "2.1", null, "0.3", null, "12.8", null, "0.5", null, "4.5", null, "0.4", null, "23.1", null, "0.5", null, "11.6", null, "0.3", null, "41.6", null, "0.6", null, "79.9", null, "0.7", null, "76.9", null, "0.5", null, "72.1", null, "0.6", null, "23.7", null, "0.5", null, "21.2", null, "0.5", null, "17.9", null, "0.4", null, "7.7", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "31", "01"], ["5001900US3102", "Congressional District 2 (119th Congress), Nebraska", "682617", null, "4985", null, "44724", null, "1086", null, "48349", null, "3057", null, "49719", null, "3200", null, "48489", null, "1761", null, "44904", null, "1598", null, "46847", null, "971", null, "49102", null, "1165", null, "49128", null, "3676", null, "49786", null, "3703", null, "42818", null, "1381", null, "36885", null, "1151", null, "35377", null, "2410", null, "37769", null, "2576", null, "30310", null, "1989", null, "29083", null, "1938", null, "19053", null, "1234", null, "10884", null, "1227", null, "9390", null, "1259", null, "98068", null, "1637", null, "30860", null, "1295", null, "173652", null, "2594", null, "62533", null, "1304", null, "288256", null, "3240", null, "530699", null, "4024", null, "508965", null, "3396", null, "482748", null, "3746", null, "136489", null, "2914", null, "121402", null, "2298", null, "98720", null, "1032", null, "39327", null, "883", null, "35.9", null, "0.3", null, "99.6", null, "0.8", null, "66.4", null, "0.7", null, "24.1", null, "0.3", null, "42.3", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.6", null, "0.1", null, "7.1", null, "0.4", null, "7.3", null, "0.5", null, "7.1", null, "0.2", null, "6.6", null, "0.2", null, "6.9", null, "0.1", null, "7.2", null, "0.2", null, "7.2", null, "0.5", null, "7.3", null, "0.5", null, "6.3", null, "0.2", null, "5.4", null, "0.2", null, "5.2", null, "0.4", null, "5.5", null, "0.4", null, "4.4", null, "0.3", null, "4.3", null, "0.3", null, "2.8", null, "0.2", null, "1.6", null, "0.2", null, "1.4", null, "0.2", null, "14.4", null, "0.2", null, "4.5", null, "0.2", null, "25.4", null, "0.3", null, "9.2", null, "0.2", null, "42.2", null, "0.3", null, "77.7", null, "0.3", null, "74.6", null, "0.3", null, "70.7", null, "0.4", null, "20.0", null, "0.4", null, "17.8", null, "0.3", null, "14.5", null, "0.2", null, "5.8", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.9", null, "-888888888.0", "(X)", "340540", null, "3279", null, "23219", null, "767", null, "24106", null, "2049", null, "25660", null, "2271", null, "25275", null, "1149", null, "22243", null, "935", null, "23583", null, "534", null, "24632", null, "583", null, "25245", null, "2070", null, "24589", null, "2025", null, "21091", null, "624", null, "19301", null, "782", null, "17141", null, "1592", null, "19551", null, "1592", null, "15213", null, "1106", null, "12680", null, "1008", null, "8291", null, "891", null, "5029", null, "742", null, "3691", null, "725", null, "49766", null, "1068", null, "16324", null, "1038", null, "89309", null, "1864", null, "31194", null, "883", null, "145567", null, "2156", null, "263219", null, "2675", null, "251231", null, "2228", null, "238277", null, "2570", null, "64455", null, "1850", null, "56825", null, "1583", null, "44904", null, "677", null, "17011", null, "699", null, "35.3", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.8", null, "0.2", null, "7.1", null, "0.6", null, "7.5", null, "0.6", null, "7.4", null, "0.3", null, "6.5", null, "0.3", null, "6.9", null, "0.2", null, "7.2", null, "0.2", null, "7.4", null, "0.6", null, "7.2", null, "0.6", null, "6.2", null, "0.2", null, "5.7", null, "0.2", null, "5.0", null, "0.5", null, "5.7", null, "0.5", null, "4.5", null, "0.3", null, "3.7", null, "0.3", null, "2.4", null, "0.3", null, "1.5", null, "0.2", null, "1.1", null, "0.2", null, "14.6", null, "0.3", null, "4.8", null, "0.3", null, "26.2", null, "0.4", null, "9.2", null, "0.2", null, "42.7", null, "0.4", null, "77.3", null, "0.3", null, "73.8", null, "0.4", null, "70.0", null, "0.5", null, "18.9", null, "0.5", null, "16.7", null, "0.5", null, "13.2", null, "0.2", null, "5.0", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "342077", null, "2408", null, "21505", null, "548", null, "24243", null, "2365", null, "24059", null, "2323", null, "23214", null, "1042", null, "22661", null, "1093", null, "23264", null, "646", null, "24470", null, "797", null, "23883", null, "2307", null, "25197", null, "2290", null, "21727", null, "1054", null, "17584", null, "751", null, "18236", null, "1541", null, "18218", null, "1653", null, "15097", null, "1429", null, "16403", null, "1437", null, "10762", null, "1005", null, "5855", null, "962", null, "5699", null, "915", null, "48302", null, "1151", null, "14536", null, "576", null, "84343", null, "1340", null, "31339", null, "755", null, "142689", null, "1512", null, "267480", null, "2007", null, "257734", null, "1701", null, "244471", null, "1988", null, "72034", null, "1709", null, "64577", null, "1441", null, "53816", null, "596", null, "22316", null, "503", null, "36.6", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.3", null, "0.2", null, "7.1", null, "0.7", null, "7.0", null, "0.7", null, "6.8", null, "0.3", null, "6.6", null, "0.3", null, "6.8", null, "0.2", null, "7.2", null, "0.2", null, "7.0", null, "0.7", null, "7.4", null, "0.7", null, "6.4", null, "0.3", null, "5.1", null, "0.2", null, "5.3", null, "0.5", null, "5.3", null, "0.5", null, "4.4", null, "0.4", null, "4.8", null, "0.4", null, "3.1", null, "0.3", null, "1.7", null, "0.3", null, "1.7", null, "0.3", null, "14.1", null, "0.3", null, "4.2", null, "0.2", null, "24.7", null, "0.3", null, "9.2", null, "0.2", null, "41.7", null, "0.3", null, "78.2", null, "0.4", null, "75.3", null, "0.3", null, "71.5", null, "0.4", null, "21.1", null, "0.5", null, "18.9", null, "0.4", null, "15.7", null, "0.2", null, "6.5", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "31", "02"], ["5001900US3103", "Congressional District 3 (119th Congress), Nebraska", "649934", null, "3075", null, "37451", null, "1314", null, "40486", null, "2304", null, "43147", null, "2155", null, "44155", null, "2022", null, "40340", null, "2454", null, "36088", null, "1972", null, "37115", null, "2473", null, "39382", null, "2674", null, "41616", null, "3002", null, "36022", null, "2034", null, "34445", null, "1672", null, "37662", null, "2533", null, "43390", null, "2128", null, "43476", null, "2011", null, "35401", null, "2050", null, "26585", null, "1951", null, "17141", null, "1573", null, "16032", null, "1535", null, "83633", null, "2225", null, "28278", null, "1162", null, "149362", null, "1922", null, "56217", null, "2341", null, "238696", null, "3296", null, "519000", null, "2484", null, "500572", null, "2195", null, "476610", null, "3133", null, "182025", null, "2928", null, "166664", null, "2770", null, "138635", null, "1651", null, "59758", null, "1162", null, "40.9", null, "0.6", null, "104.1", null, "1.5", null, "79.6", null, "0.9", null, "38.3", null, "0.6", null, "41.3", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.8", null, "0.2", null, "6.2", null, "0.4", null, "6.6", null, "0.3", null, "6.8", null, "0.3", null, "6.2", null, "0.4", null, "5.6", null, "0.3", null, "5.7", null, "0.4", null, "6.1", null, "0.4", null, "6.4", null, "0.5", null, "5.5", null, "0.3", null, "5.3", null, "0.3", null, "5.8", null, "0.4", null, "6.7", null, "0.3", null, "6.7", null, "0.3", null, "5.4", null, "0.3", null, "4.1", null, "0.3", null, "2.6", null, "0.2", null, "2.5", null, "0.2", null, "12.9", null, "0.3", null, "4.4", null, "0.2", null, "23.0", null, "0.2", null, "8.6", null, "0.4", null, "36.7", null, "0.5", null, "79.9", null, "0.3", null, "77.0", null, "0.2", null, "73.3", null, "0.4", null, "28.0", null, "0.4", null, "25.6", null, "0.4", null, "21.3", null, "0.3", null, "9.2", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.0", null, "-888888888.0", "(X)", "331483", null, "2625", null, "19645", null, "1501", null, "21186", null, "1614", null, "22251", null, "1318", null, "24779", null, "1759", null, "21434", null, "1735", null, "18134", null, "1222", null, "19063", null, "1590", null, "20520", null, "1949", null, "21418", null, "1848", null, "18806", null, "1460", null, "17909", null, "1043", null, "19339", null, "1625", null, "22030", null, "1350", null, "20958", null, "1294", null, "18008", null, "1116", null, "12113", null, "1140", null, "7456", null, "867", null, "6434", null, "909", null, "43437", null, "1464", null, "15952", null, "1362", null, "79034", null, "2059", null, "30261", null, "1601", null, "125348", null, "2212", null, "262727", null, "2320", null, "252449", null, "1926", null, "239415", null, "2551", null, "86999", null, "1905", null, "79177", null, "1763", null, "64969", null, "1177", null, "26003", null, "707", null, "39.7", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.9", null, "0.4", null, "6.4", null, "0.5", null, "6.7", null, "0.4", null, "7.5", null, "0.5", null, "6.5", null, "0.5", null, "5.5", null, "0.4", null, "5.8", null, "0.5", null, "6.2", null, "0.6", null, "6.5", null, "0.6", null, "5.7", null, "0.4", null, "5.4", null, "0.3", null, "5.8", null, "0.5", null, "6.6", null, "0.4", null, "6.3", null, "0.4", null, "5.4", null, "0.3", null, "3.7", null, "0.3", null, "2.2", null, "0.3", null, "1.9", null, "0.3", null, "13.1", null, "0.4", null, "4.8", null, "0.4", null, "23.8", null, "0.5", null, "9.1", null, "0.5", null, "37.8", null, "0.6", null, "79.3", null, "0.6", null, "76.2", null, "0.5", null, "72.2", null, "0.7", null, "26.2", null, "0.5", null, "23.9", null, "0.5", null, "19.6", null, "0.3", null, "7.8", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "318451", null, "2876", null, "17806", null, "1208", null, "19300", null, "1450", null, "20896", null, "1529", null, "19376", null, "1694", null, "18906", null, "1423", null, "17954", null, "1371", null, "18052", null, "1603", null, "18862", null, "1480", null, "20198", null, "1791", null, "17216", null, "1162", null, "16536", null, "1196", null, "18323", null, "1512", null, "21360", null, "1236", null, "22518", null, "1264", null, "17393", null, "1521", null, "14472", null, "1211", null, "9685", null, "1021", null, "9598", null, "1002", null, "40196", null, "1405", null, "12326", null, "1165", null, "70328", null, "1972", null, "25956", null, "1486", null, "113348", null, "2514", null, "256273", null, "2454", null, "248123", null, "1942", null, "237195", null, "2518", null, "95026", null, "1846", null, "87487", null, "1870", null, "73666", null, "1312", null, "33755", null, "838", null, "42.3", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.6", null, "0.4", null, "6.1", null, "0.5", null, "6.6", null, "0.5", null, "6.1", null, "0.5", null, "5.9", null, "0.4", null, "5.6", null, "0.4", null, "5.7", null, "0.5", null, "5.9", null, "0.5", null, "6.3", null, "0.6", null, "5.4", null, "0.4", null, "5.2", null, "0.4", null, "5.8", null, "0.5", null, "6.7", null, "0.4", null, "7.1", null, "0.4", null, "5.5", null, "0.5", null, "4.5", null, "0.4", null, "3.0", null, "0.3", null, "3.0", null, "0.3", null, "12.6", null, "0.4", null, "3.9", null, "0.3", null, "22.1", null, "0.5", null, "8.2", null, "0.5", null, "35.6", null, "0.7", null, "80.5", null, "0.5", null, "77.9", null, "0.5", null, "74.5", null, "0.7", null, "29.8", null, "0.6", null, "27.5", null, "0.6", null, "23.1", null, "0.4", null, "10.6", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "31", "03"], ["5001900US3201", "Congressional District 1 (119th Congress), Nevada", "792232", null, "21250", null, "37796", null, "4145", null, "45130", null, "5324", null, "53133", null, "5029", null, "51446", null, "4558", null, "48874", null, "4825", null, "55372", null, "5381", null, "55459", null, "4548", null, "56393", null, "4892", null, "55424", null, "4118", null, "50098", null, "4553", null, "48158", null, "3380", null, "48958", null, "4388", null, "48148", null, "4168", null, "41953", null, "4234", null, "37942", null, "3685", null, "29909", null, "2808", null, "15700", null, "2152", null, "12339", null, "2070", null, "98263", null, "7162", null, "32297", null, "3325", null, "168356", null, "9175", null, "68023", null, "6022", null, "322968", null, "11972", null, "644502", null, "17987", null, "623876", null, "17320", null, "595564", null, "16216", null, "185991", null, "7918", null, "166784", null, "7132", null, "137843", null, "6275", null, "57948", null, "3289", null, "39.3", null, "0.9", null, "97.4", null, "2.9", null, "63.0", null, "2.7", null, "28.4", null, "1.5", null, "34.6", null, "2.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.8", null, "0.5", null, "5.7", null, "0.6", null, "6.7", null, "0.6", null, "6.5", null, "0.5", null, "6.2", null, "0.5", null, "7.0", null, "0.6", null, "7.0", null, "0.6", null, "7.1", null, "0.6", null, "7.0", null, "0.5", null, "6.3", null, "0.5", null, "6.1", null, "0.4", null, "6.2", null, "0.5", null, "6.1", null, "0.5", null, "5.3", null, "0.5", null, "4.8", null, "0.5", null, "3.8", null, "0.4", null, "2.0", null, "0.3", null, "1.6", null, "0.3", null, "12.4", null, "0.8", null, "4.1", null, "0.4", null, "21.3", null, "0.9", null, "8.6", null, "0.7", null, "40.8", null, "0.9", null, "81.4", null, "0.9", null, "78.7", null, "0.9", null, "75.2", null, "0.9", null, "23.5", null, "1.0", null, "21.1", null, "0.9", null, "17.4", null, "0.7", null, "7.3", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.5", null, "-888888888.0", "(X)", "390975", null, "11515", null, "19029", null, "2784", null, "20738", null, "3078", null, "27581", null, "3183", null, "24263", null, "2532", null, "23830", null, "2913", null, "27487", null, "3531", null, "28967", null, "3371", null, "27975", null, "2883", null, "27152", null, "2369", null, "27421", null, "3017", null, "22848", null, "2462", null, "25233", null, "2813", null, "24444", null, "2805", null, "19701", null, "2140", null, "18059", null, "2545", null, "13380", null, "1713", null, "7125", null, "1224", null, "5742", null, "1264", null, "48319", null, "4547", null, "14791", null, "1973", null, "82139", null, "5755", null, "33302", null, "3653", null, "159674", null, "6793", null, "318190", null, "10166", null, "308836", null, "9901", null, "294737", null, "9543", null, "88451", null, "4372", null, "78768", null, "3953", null, "64007", null, "3288", null, "26247", null, "1970", null, "39.1", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.9", null, "0.7", null, "5.3", null, "0.7", null, "7.1", null, "0.8", null, "6.2", null, "0.6", null, "6.1", null, "0.7", null, "7.0", null, "0.8", null, "7.4", null, "0.9", null, "7.2", null, "0.7", null, "6.9", null, "0.6", null, "7.0", null, "0.7", null, "5.8", null, "0.6", null, "6.5", null, "0.7", null, "6.3", null, "0.7", null, "5.0", null, "0.6", null, "4.6", null, "0.6", null, "3.4", null, "0.5", null, "1.8", null, "0.3", null, "1.5", null, "0.3", null, "12.4", null, "1.1", null, "3.8", null, "0.5", null, "21.0", null, "1.3", null, "8.5", null, "0.9", null, "40.8", null, "1.2", null, "81.4", null, "1.2", null, "79.0", null, "1.3", null, "75.4", null, "1.3", null, "22.6", null, "1.1", null, "20.1", null, "1.0", null, "16.4", null, "0.8", null, "6.7", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "401257", null, "12740", null, "18767", null, "2657", null, "24392", null, "3591", null, "25552", null, "3984", null, "27183", null, "3000", null, "25044", null, "3618", null, "27885", null, "3257", null, "26492", null, "2726", null, "28418", null, "3304", null, "28272", null, "3120", null, "22677", null, "2618", null, "25310", null, "2240", null, "23725", null, "2834", null, "23704", null, "2474", null, "22252", null, "3004", null, "19883", null, "2277", null, "16529", null, "1899", null, "8575", null, "1666", null, "6597", null, "1427", null, "49944", null, "4696", null, "17506", null, "2272", null, "86217", null, "5683", null, "34721", null, "4180", null, "163294", null, "7396", null, "326312", null, "10408", null, "315040", null, "10193", null, "300827", null, "9504", null, "97540", null, "4737", null, "88016", null, "4349", null, "73836", null, "3946", null, "31701", null, "2401", null, "39.4", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.7", null, "0.6", null, "6.1", null, "0.8", null, "6.4", null, "1.0", null, "6.8", null, "0.7", null, "6.2", null, "0.8", null, "6.9", null, "0.8", null, "6.6", null, "0.7", null, "7.1", null, "0.8", null, "7.0", null, "0.8", null, "5.7", null, "0.6", null, "6.3", null, "0.5", null, "5.9", null, "0.7", null, "5.9", null, "0.6", null, "5.5", null, "0.7", null, "5.0", null, "0.6", null, "4.1", null, "0.5", null, "2.1", null, "0.4", null, "1.6", null, "0.3", null, "12.4", null, "1.1", null, "4.4", null, "0.5", null, "21.5", null, "1.1", null, "8.7", null, "0.9", null, "40.7", null, "1.2", null, "81.3", null, "1.1", null, "78.5", null, "1.1", null, "75.0", null, "1.2", null, "24.3", null, "1.1", null, "21.9", null, "1.0", null, "18.4", null, "0.9", null, "7.9", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "32", "01"], ["5001900US3202", "Congressional District 2 (119th Congress), Nevada", "802677", null, "1898", null, "38895", null, "1092", null, "46486", null, "3178", null, "47604", null, "3422", null, "47296", null, "1967", null, "46903", null, "2291", null, "52765", null, "1833", null, "60519", null, "1948", null, "59180", null, "3336", null, "50020", null, "3369", null, "44407", null, "1612", null, "46121", null, "1773", null, "47711", null, "3266", null, "54978", null, "2970", null, "51153", null, "3018", null, "44389", null, "3004", null, "33640", null, "2078", null, "17253", null, "1515", null, "13357", null, "1682", null, "94090", null, "1786", null, "29027", null, "1229", null, "162012", null, "868", null, "65172", null, "2256", null, "316683", null, "2383", null, "661392", null, "2281", null, "640665", null, "1715", null, "613601", null, "2746", null, "214770", null, "2762", null, "192965", null, "2718", null, "159792", null, "1329", null, "64250", null, "1215", null, "40.2", null, "0.4", null, "106.4", null, "1.0", null, "66.9", null, "0.5", null, "33.2", null, "0.4", null, "33.7", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.8", null, "0.1", null, "5.8", null, "0.4", null, "5.9", null, "0.4", null, "5.9", null, "0.2", null, "5.8", null, "0.3", null, "6.6", null, "0.2", null, "7.5", null, "0.2", null, "7.4", null, "0.4", null, "6.2", null, "0.4", null, "5.5", null, "0.2", null, "5.7", null, "0.2", null, "5.9", null, "0.4", null, "6.8", null, "0.4", null, "6.4", null, "0.4", null, "5.5", null, "0.4", null, "4.2", null, "0.3", null, "2.1", null, "0.2", null, "1.7", null, "0.2", null, "11.7", null, "0.2", null, "3.6", null, "0.2", null, "20.2", null, "0.1", null, "8.1", null, "0.3", null, "39.5", null, "0.3", null, "82.4", null, "0.2", null, "79.8", null, "0.1", null, "76.4", null, "0.3", null, "26.8", null, "0.4", null, "24.0", null, "0.3", null, "19.9", null, "0.2", null, "8.0", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.6", null, "-888888888.0", "(X)", "413798", null, "2189", null, "20651", null, "1404", null, "24519", null, "2144", null, "24635", null, "2458", null, "25200", null, "1544", null, "24402", null, "1535", null, "28823", null, "1295", null, "30808", null, "1099", null, "32838", null, "2337", null, "26346", null, "2190", null, "22299", null, "1150", null, "23944", null, "1134", null, "24979", null, "2086", null, "27420", null, "1992", null, "25454", null, "1941", null, "21025", null, "1814", null, "17213", null, "1464", null, "7327", null, "944", null, "5915", null, "1118", null, "49154", null, "1416", null, "15450", null, "1068", null, "85255", null, "1746", null, "34152", null, "1494", null, "168417", null, "1817", null, "339497", null, "1717", null, "328543", null, "1226", null, "314822", null, "1775", null, "104354", null, "2218", null, "94295", null, "2239", null, "76934", null, "1117", null, "30455", null, "896", null, "39.3", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.0", null, "0.3", null, "5.9", null, "0.5", null, "6.0", null, "0.6", null, "6.1", null, "0.4", null, "5.9", null, "0.4", null, "7.0", null, "0.3", null, "7.4", null, "0.3", null, "7.9", null, "0.6", null, "6.4", null, "0.5", null, "5.4", null, "0.3", null, "5.8", null, "0.3", null, "6.0", null, "0.5", null, "6.6", null, "0.5", null, "6.2", null, "0.5", null, "5.1", null, "0.4", null, "4.2", null, "0.4", null, "1.8", null, "0.2", null, "1.4", null, "0.3", null, "11.9", null, "0.3", null, "3.7", null, "0.3", null, "20.6", null, "0.3", null, "8.3", null, "0.4", null, "40.7", null, "0.4", null, "82.0", null, "0.4", null, "79.4", null, "0.3", null, "76.1", null, "0.5", null, "25.2", null, "0.5", null, "22.8", null, "0.5", null, "18.6", null, "0.3", null, "7.4", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "388879", null, "2150", null, "18244", null, "1267", null, "21967", null, "2234", null, "22969", null, "2366", null, "22096", null, "1030", null, "22501", null, "1481", null, "23942", null, "1241", null, "29711", null, "1486", null, "26342", null, "2114", null, "23674", null, "1991", null, "22108", null, "1058", null, "22177", null, "1065", null, "22732", null, "2159", null, "27558", null, "1926", null, "25699", null, "2050", null, "23364", null, "2078", null, "16427", null, "1486", null, "9926", null, "1488", null, "7442", null, "1315", null, "44936", null, "1265", null, "13577", null, "779", null, "76757", null, "1648", null, "31020", null, "1513", null, "148266", null, "1876", null, "321895", null, "1736", null, "312122", null, "1168", null, "298779", null, "1911", null, "110416", null, "1999", null, "98670", null, "2070", null, "82858", null, "1064", null, "33795", null, "665", null, "41.2", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.7", null, "0.3", null, "5.6", null, "0.6", null, "5.9", null, "0.6", null, "5.7", null, "0.3", null, "5.8", null, "0.4", null, "6.2", null, "0.3", null, "7.6", null, "0.4", null, "6.8", null, "0.5", null, "6.1", null, "0.5", null, "5.7", null, "0.3", null, "5.7", null, "0.3", null, "5.8", null, "0.6", null, "7.1", null, "0.5", null, "6.6", null, "0.5", null, "6.0", null, "0.5", null, "4.2", null, "0.4", null, "2.6", null, "0.4", null, "1.9", null, "0.3", null, "11.6", null, "0.3", null, "3.5", null, "0.2", null, "19.7", null, "0.3", null, "8.0", null, "0.4", null, "38.1", null, "0.5", null, "82.8", null, "0.4", null, "80.3", null, "0.3", null, "76.8", null, "0.5", null, "28.4", null, "0.5", null, "25.4", null, "0.6", null, "21.3", null, "0.3", null, "8.7", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "32", "02"], ["5001900US3203", "Congressional District 3 (119th Congress), Nevada", "839433", null, "22426", null, "38193", null, "3767", null, "40828", null, "4922", null, "48795", null, "5159", null, "44115", null, "4679", null, "44622", null, "4423", null, "54740", null, "5036", null, "65858", null, "4193", null, "63524", null, "5446", null, "63937", null, "4643", null, "58072", null, "4268", null, "57470", null, "3916", null, "54625", null, "4471", null, "52837", null, "4817", null, "47060", null, "3991", null, "43382", null, "3915", null, "29212", null, "2881", null, "17862", null, "2283", null, "14301", null, "2265", null, "89623", null, "6831", null, "30819", null, "3608", null, "158635", null, "9418", null, "57918", null, "5109", null, "336796", null, "13216", null, "700965", null, "18485", null, "680798", null, "17512", null, "657794", null, "17059", null, "204654", null, "8530", null, "183859", null, "8318", null, "151817", null, "6125", null, "61375", null, "3596", null, "41.4", null, "0.8", null, "98.9", null, "2.8", null, "58.7", null, "2.0", null, "28.7", null, "1.2", null, "30.0", null, "1.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.5", null, "0.4", null, "4.9", null, "0.5", null, "5.8", null, "0.6", null, "5.3", null, "0.5", null, "5.3", null, "0.5", null, "6.5", null, "0.5", null, "7.8", null, "0.5", null, "7.6", null, "0.6", null, "7.6", null, "0.6", null, "6.9", null, "0.5", null, "6.8", null, "0.4", null, "6.5", null, "0.6", null, "6.3", null, "0.5", null, "5.6", null, "0.4", null, "5.2", null, "0.5", null, "3.5", null, "0.3", null, "2.1", null, "0.3", null, "1.7", null, "0.3", null, "10.7", null, "0.7", null, "3.7", null, "0.4", null, "18.9", null, "0.9", null, "6.9", null, "0.6", null, "40.1", null, "0.9", null, "83.5", null, "0.8", null, "81.1", null, "0.9", null, "78.4", null, "0.9", null, "24.4", null, "0.9", null, "21.9", null, "0.9", null, "18.1", null, "0.7", null, "7.3", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "0.9", null, "-888888888.0", "(X)", "417397", null, "12554", null, "19155", null, "2743", null, "19752", null, "3100", null, "25748", null, "3551", null, "22636", null, "2707", null, "23930", null, "2911", null, "28107", null, "3095", null, "31158", null, "2594", null, "33023", null, "3463", null, "32012", null, "3216", null, "28263", null, "2730", null, "30775", null, "2820", null, "27622", null, "3482", null, "25596", null, "3276", null, "22551", null, "2414", null, "19623", null, "2416", null, "13512", null, "1683", null, "8082", null, "1484", null, "5852", null, "1142", null, "45500", null, "4767", null, "16073", null, "2267", null, "80728", null, "6177", null, "30493", null, "3424", null, "170866", null, "6649", null, "347776", null, "10378", null, "336669", null, "9636", null, "323775", null, "9282", null, "95216", null, "5059", null, "85048", null, "4450", null, "69620", null, "3445", null, "27446", null, "2095", null, "40.7", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.6", null, "0.6", null, "4.7", null, "0.7", null, "6.2", null, "0.8", null, "5.4", null, "0.6", null, "5.7", null, "0.7", null, "6.7", null, "0.7", null, "7.5", null, "0.6", null, "7.9", null, "0.8", null, "7.7", null, "0.8", null, "6.8", null, "0.6", null, "7.4", null, "0.6", null, "6.6", null, "0.8", null, "6.1", null, "0.7", null, "5.4", null, "0.6", null, "4.7", null, "0.6", null, "3.2", null, "0.4", null, "1.9", null, "0.4", null, "1.4", null, "0.3", null, "10.9", null, "1.0", null, "3.9", null, "0.5", null, "19.3", null, "1.2", null, "7.3", null, "0.8", null, "40.9", null, "1.1", null, "83.3", null, "1.1", null, "80.7", null, "1.2", null, "77.6", null, "1.1", null, "22.8", null, "1.1", null, "20.4", null, "1.0", null, "16.7", null, "0.8", null, "6.6", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "422036", null, "12907", null, "19038", null, "2857", null, "21076", null, "3390", null, "23047", null, "3548", null, "21479", null, "3347", null, "20692", null, "3188", null, "26633", null, "3346", null, "34700", null, "3087", null, "30501", null, "3611", null, "31925", null, "3403", null, "29809", null, "2892", null, "26695", null, "2645", null, "27003", null, "3075", null, "27241", null, "3007", null, "24509", null, "2556", null, "23759", null, "2556", null, "15700", null, "1837", null, "9780", null, "1492", null, "8449", null, "1622", null, "44123", null, "4231", null, "14746", null, "2568", null, "77907", null, "6013", null, "27425", null, "3904", null, "165930", null, "8485", null, "353189", null, "10788", null, "344129", null, "10458", null, "334019", null, "10206", null, "109438", null, "4974", null, "98811", null, "5253", null, "82197", null, "3878", null, "33929", null, "2267", null, "42.2", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.5", null, "0.7", null, "5.0", null, "0.8", null, "5.5", null, "0.8", null, "5.1", null, "0.7", null, "4.9", null, "0.7", null, "6.3", null, "0.7", null, "8.2", null, "0.7", null, "7.2", null, "0.8", null, "7.6", null, "0.8", null, "7.1", null, "0.7", null, "6.3", null, "0.6", null, "6.4", null, "0.8", null, "6.5", null, "0.7", null, "5.8", null, "0.6", null, "5.6", null, "0.6", null, "3.7", null, "0.4", null, "2.3", null, "0.4", null, "2.0", null, "0.4", null, "10.5", null, "0.9", null, "3.5", null, "0.6", null, "18.5", null, "1.2", null, "6.5", null, "0.9", null, "39.3", null, "1.3", null, "83.7", null, "1.1", null, "81.5", null, "1.2", null, "79.1", null, "1.2", null, "25.9", null, "1.1", null, "23.4", null, "1.1", null, "19.5", null, "0.9", null, "8.0", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "32", "03"], ["5001900US3204", "Congressional District 4 (119th Congress), Nevada", "833125", null, "16430", null, "54853", null, "4951", null, "52010", null, "5030", null, "57703", null, "4199", null, "55909", null, "4665", null, "49199", null, "4226", null, "59245", null, "4860", null, "67066", null, "4941", null, "59579", null, "5331", null, "55471", null, "5059", null, "48922", null, "3536", null, "52114", null, "3726", null, "43346", null, "3886", null, "51809", null, "3498", null, "37165", null, "3164", null, "35167", null, "3189", null, "26659", null, "3025", null, "16313", null, "1856", null, "10595", null, "1480", null, "109713", null, "6355", null, "34136", null, "3402", null, "198702", null, "8407", null, "70972", null, "5564", null, "346469", null, "11539", null, "655633", null, "14191", null, "634423", null, "13796", null, "602003", null, "12488", null, "177708", null, "6892", null, "157892", null, "6416", null, "125899", null, "5668", null, "53567", null, "3415", null, "36.7", null, "0.7", null, "104.2", null, "3.3", null, "63.8", null, "2.4", null, "24.8", null, "1.4", null, "39.1", null, "1.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.6", null, "0.6", null, "6.2", null, "0.6", null, "6.9", null, "0.5", null, "6.7", null, "0.5", null, "5.9", null, "0.5", null, "7.1", null, "0.6", null, "8.0", null, "0.6", null, "7.2", null, "0.6", null, "6.7", null, "0.6", null, "5.9", null, "0.4", null, "6.3", null, "0.4", null, "5.2", null, "0.5", null, "6.2", null, "0.4", null, "4.5", null, "0.4", null, "4.2", null, "0.4", null, "3.2", null, "0.4", null, "2.0", null, "0.2", null, "1.3", null, "0.2", null, "13.2", null, "0.7", null, "4.1", null, "0.4", null, "23.9", null, "0.8", null, "8.5", null, "0.6", null, "41.6", null, "0.9", null, "78.7", null, "0.9", null, "76.1", null, "0.8", null, "72.3", null, "0.8", null, "21.3", null, "0.9", null, "19.0", null, "0.8", null, "15.1", null, "0.7", null, "6.4", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.8", null, "-888888888.0", "(X)", "425149", null, "9877", null, "28542", null, "3567", null, "26362", null, "3974", null, "31956", null, "3490", null, "31163", null, "3291", null, "25009", null, "3143", null, "29706", null, "3064", null, "34967", null, "3499", null, "29244", null, "3706", null, "30590", null, "3824", null, "23610", null, "2513", null, "25247", null, "2465", null, "21466", null, "2244", null, "26287", null, "2443", null, "18540", null, "2249", null, "17401", null, "2054", null, "13061", null, "1783", null, "7779", null, "1115", null, "4219", null, "969", null, "58318", null, "4369", null, "19078", null, "2603", null, "105938", null, "5876", null, "37094", null, "3825", null, "180679", null, "6768", null, "331385", null, "8529", null, "319211", null, "8149", null, "301532", null, "7444", null, "87287", null, "4231", null, "77740", null, "4100", null, "61000", null, "3640", null, "25059", null, "2329", null, "35.8", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.7", null, "0.8", null, "6.2", null, "0.9", null, "7.5", null, "0.8", null, "7.3", null, "0.8", null, "5.9", null, "0.7", null, "7.0", null, "0.7", null, "8.2", null, "0.8", null, "6.9", null, "0.9", null, "7.2", null, "0.9", null, "5.6", null, "0.6", null, "5.9", null, "0.5", null, "5.0", null, "0.5", null, "6.2", null, "0.6", null, "4.4", null, "0.5", null, "4.1", null, "0.5", null, "3.1", null, "0.4", null, "1.8", null, "0.3", null, "1.0", null, "0.2", null, "13.7", null, "0.9", null, "4.5", null, "0.6", null, "24.9", null, "1.2", null, "8.7", null, "0.8", null, "42.5", null, "1.2", null, "77.9", null, "1.2", null, "75.1", null, "1.2", null, "70.9", null, "1.2", null, "20.5", null, "1.0", null, "18.3", null, "1.0", null, "14.3", null, "0.9", null, "5.9", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "407976", null, "11118", null, "26311", null, "3272", null, "25648", null, "3469", null, "25747", null, "3300", null, "24746", null, "2926", null, "24190", null, "2707", null, "29539", null, "3024", null, "32099", null, "2894", null, "30335", null, "2972", null, "24881", null, "2745", null, "25312", null, "2622", null, "26867", null, "2609", null, "21880", null, "2331", null, "25522", null, "2224", null, "18625", null, "2156", null, "17766", null, "1975", null, "13598", null, "1952", null, "8534", null, "1327", null, "6376", null, "1277", null, "51395", null, "4664", null, "15058", null, "1956", null, "92764", null, "6338", null, "33878", null, "3660", null, "165790", null, "7310", null, "324248", null, "8780", null, "315212", null, "8675", null, "300471", null, "8086", null, "90421", null, "4386", null, "80152", null, "4111", null, "64899", null, "3600", null, "28508", null, "2305", null, "37.4", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.4", null, "0.8", null, "6.3", null, "0.8", null, "6.3", null, "0.8", null, "6.1", null, "0.7", null, "5.9", null, "0.6", null, "7.2", null, "0.7", null, "7.9", null, "0.7", null, "7.4", null, "0.7", null, "6.1", null, "0.7", null, "6.2", null, "0.6", null, "6.6", null, "0.6", null, "5.4", null, "0.6", null, "6.3", null, "0.6", null, "4.6", null, "0.5", null, "4.4", null, "0.5", null, "3.3", null, "0.5", null, "2.1", null, "0.3", null, "1.6", null, "0.3", null, "12.6", null, "1.0", null, "3.7", null, "0.5", null, "22.7", null, "1.3", null, "8.3", null, "0.8", null, "40.6", null, "1.3", null, "79.5", null, "1.3", null, "77.3", null, "1.3", null, "73.6", null, "1.3", null, "22.2", null, "1.2", null, "19.6", null, "1.1", null, "15.9", null, "0.9", null, "7.0", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "32", "04"], ["5001900US3301", "Congressional District 1 (119th Congress), New Hampshire", "708843", null, "8225", null, "32857", null, "1910", null, "32503", null, "3113", null, "36827", null, "3631", null, "43578", null, "2547", null, "40556", null, "3012", null, "40971", null, "2905", null, "49520", null, "2441", null, "47378", null, "4133", null, "44594", null, "3870", null, "38879", null, "2337", null, "42843", null, "2310", null, "47055", null, "3565", null, "56834", null, "3302", null, "56092", null, "3164", null, "36838", null, "2878", null, "29093", null, "2393", null, "18618", null, "2216", null, "13807", null, "1731", null, "69330", null, "3727", null, "23433", null, "1801", null, "125620", null, "4696", null, "60701", null, "2674", null, "266597", null, "4846", null, "600902", null, "6495", null, "583223", null, "6010", null, "552954", null, "6144", null, "211282", null, "4545", null, "190367", null, "4587", null, "154448", null, "3207", null, "61518", null, "2084", null, "43.4", null, "0.5", null, "99.4", null, "2.0", null, "65.3", null, "1.4", null, "36.0", null, "1.0", null, "29.3", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.6", null, "0.3", null, "4.6", null, "0.4", null, "5.2", null, "0.5", null, "6.1", null, "0.3", null, "5.7", null, "0.4", null, "5.8", null, "0.4", null, "7.0", null, "0.3", null, "6.7", null, "0.6", null, "6.3", null, "0.5", null, "5.5", null, "0.3", null, "6.0", null, "0.3", null, "6.6", null, "0.5", null, "8.0", null, "0.5", null, "7.9", null, "0.4", null, "5.2", null, "0.4", null, "4.1", null, "0.3", null, "2.6", null, "0.3", null, "1.9", null, "0.2", null, "9.8", null, "0.5", null, "3.3", null, "0.2", null, "17.7", null, "0.5", null, "8.6", null, "0.4", null, "37.6", null, "0.5", null, "84.8", null, "0.5", null, "82.3", null, "0.5", null, "78.0", null, "0.6", null, "29.8", null, "0.6", null, "26.9", null, "0.6", null, "21.8", null, "0.5", null, "8.7", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.1", null, "-888888888.0", "(X)", "353404", null, "5673", null, "16563", null, "1432", null, "16490", null, "1765", null, "18068", null, "2350", null, "20681", null, "1657", null, "23141", null, "2209", null, "20741", null, "1838", null, "25076", null, "1751", null, "25167", null, "2426", null, "23082", null, "2591", null, "20056", null, "1538", null, "21271", null, "1582", null, "23377", null, "2269", null, "27605", null, "2292", null, "27136", null, "2223", null, "18085", null, "2006", null, "13700", null, "1313", null, "8046", null, "1280", null, "5119", null, "903", null, "34558", null, "2761", null, "11856", null, "1334", null, "62977", null, "3576", null, "31966", null, "2183", null, "137888", null, "3336", null, "299541", null, "4204", null, "290427", null, "3897", null, "275536", null, "3976", null, "99691", null, "2841", null, "89506", null, "2835", null, "72086", null, "1756", null, "26865", null, "990", null, "42.5", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.7", null, "0.4", null, "4.7", null, "0.5", null, "5.1", null, "0.6", null, "5.9", null, "0.5", null, "6.5", null, "0.6", null, "5.9", null, "0.5", null, "7.1", null, "0.5", null, "7.1", null, "0.7", null, "6.5", null, "0.7", null, "5.7", null, "0.4", null, "6.0", null, "0.4", null, "6.6", null, "0.6", null, "7.8", null, "0.6", null, "7.7", null, "0.6", null, "5.1", null, "0.6", null, "3.9", null, "0.4", null, "2.3", null, "0.4", null, "1.4", null, "0.3", null, "9.8", null, "0.7", null, "3.4", null, "0.4", null, "17.8", null, "0.8", null, "9.0", null, "0.6", null, "39.0", null, "0.8", null, "84.8", null, "0.8", null, "82.2", null, "0.8", null, "78.0", null, "0.9", null, "28.2", null, "0.8", null, "25.3", null, "0.8", null, "20.4", null, "0.6", null, "7.6", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "355439", null, "5297", null, "16294", null, "1563", null, "16013", null, "2237", null, "18759", null, "2266", null, "22897", null, "2151", null, "17415", null, "1943", null, "20230", null, "1790", null, "24444", null, "1495", null, "22211", null, "2454", null, "21512", null, "2439", null, "18823", null, "1460", null, "21572", null, "1271", null, "23678", null, "2178", null, "29229", null, "2051", null, "28956", null, "2055", null, "18753", null, "1803", null, "15393", null, "1637", null, "10572", null, "1548", null, "8688", null, "1398", null, "34772", null, "2538", null, "11577", null, "1422", null, "62643", null, "3261", null, "28735", null, "1612", null, "128709", null, "3584", null, "301361", null, "4017", null, "292796", null, "3697", null, "277418", null, "3693", null, "111591", null, "2716", null, "100861", null, "2702", null, "82362", null, "2180", null, "34653", null, "1610", null, "44.6", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.6", null, "0.4", null, "4.5", null, "0.6", null, "5.3", null, "0.6", null, "6.4", null, "0.6", null, "4.9", null, "0.5", null, "5.7", null, "0.5", null, "6.9", null, "0.4", null, "6.2", null, "0.7", null, "6.1", null, "0.7", null, "5.3", null, "0.4", null, "6.1", null, "0.4", null, "6.7", null, "0.6", null, "8.2", null, "0.6", null, "8.1", null, "0.6", null, "5.3", null, "0.5", null, "4.3", null, "0.5", null, "3.0", null, "0.4", null, "2.4", null, "0.4", null, "9.8", null, "0.6", null, "3.3", null, "0.4", null, "17.6", null, "0.7", null, "8.1", null, "0.4", null, "36.2", null, "0.8", null, "84.8", null, "0.7", null, "82.4", null, "0.7", null, "78.0", null, "0.8", null, "31.4", null, "0.7", null, "28.4", null, "0.8", null, "23.2", null, "0.6", null, "9.7", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "33", "01"], ["5001900US3302", "Congressional District 2 (119th Congress), New Hampshire", "700189", null, "8225", null, "28853", null, "1949", null, "31632", null, "2373", null, "38446", null, "2886", null, "43028", null, "2736", null, "42717", null, "2471", null, "40344", null, "2593", null, "46613", null, "2434", null, "43887", null, "3017", null, "43560", null, "3293", null, "41139", null, "2303", null, "44111", null, "2383", null, "50412", null, "3487", null, "56663", null, "3955", null, "49705", null, "2547", null, "38379", null, "2547", null, "28910", null, "2134", null, "17003", null, "1702", null, "14787", null, "1639", null, "70078", null, "3404", null, "23618", null, "1944", null, "122549", null, "4592", null, "62127", null, "2372", null, "260149", null, "5014", null, "593388", null, "5952", null, "577640", null, "6014", null, "551243", null, "6201", null, "205447", null, "4924", null, "184659", null, "4087", null, "148784", null, "3206", null, "60700", null, "1958", null, "43.8", null, "0.5", null, "99.3", null, "1.9", null, "63.3", null, "1.4", null, "34.7", null, "1.0", null, "28.6", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.1", null, "0.3", null, "4.5", null, "0.3", null, "5.5", null, "0.4", null, "6.1", null, "0.4", null, "6.1", null, "0.4", null, "5.8", null, "0.4", null, "6.7", null, "0.4", null, "6.3", null, "0.4", null, "6.2", null, "0.5", null, "5.9", null, "0.3", null, "6.3", null, "0.3", null, "7.2", null, "0.5", null, "8.1", null, "0.6", null, "7.1", null, "0.4", null, "5.5", null, "0.4", null, "4.1", null, "0.3", null, "2.4", null, "0.2", null, "2.1", null, "0.2", null, "10.0", null, "0.4", null, "3.4", null, "0.3", null, "17.5", null, "0.5", null, "8.9", null, "0.3", null, "37.2", null, "0.5", null, "84.7", null, "0.5", null, "82.5", null, "0.5", null, "78.7", null, "0.6", null, "29.3", null, "0.7", null, "26.4", null, "0.6", null, "21.2", null, "0.5", null, "8.7", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.0", null, "-888888888.0", "(X)", "348787", null, "5638", null, "14506", null, "1398", null, "16408", null, "1898", null, "20448", null, "2263", null, "20405", null, "1805", null, "22463", null, "1759", null, "21519", null, "1672", null, "24943", null, "1899", null, "21751", null, "1962", null, "21297", null, "2426", null, "20282", null, "1637", null, "22285", null, "1724", null, "24996", null, "2318", null, "28748", null, "2377", null, "22600", null, "1585", null, "19772", null, "1564", null, "13342", null, "1162", null, "7083", null, "1128", null, "5939", null, "1181", null, "36856", null, "2581", null, "12331", null, "1436", null, "63693", null, "3621", null, "30537", null, "1629", null, "132378", null, "3277", null, "293444", null, "3818", null, "285094", null, "3973", null, "273050", null, "4196", null, "97484", null, "2899", null, "86837", null, "2360", null, "68736", null, "1718", null, "26364", null, "933", null, "42.8", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.2", null, "0.4", null, "4.7", null, "0.5", null, "5.9", null, "0.6", null, "5.9", null, "0.5", null, "6.4", null, "0.5", null, "6.2", null, "0.5", null, "7.2", null, "0.5", null, "6.2", null, "0.6", null, "6.1", null, "0.7", null, "5.8", null, "0.5", null, "6.4", null, "0.5", null, "7.2", null, "0.7", null, "8.2", null, "0.7", null, "6.5", null, "0.5", null, "5.7", null, "0.4", null, "3.8", null, "0.3", null, "2.0", null, "0.3", null, "1.7", null, "0.3", null, "10.6", null, "0.6", null, "3.5", null, "0.4", null, "18.3", null, "0.9", null, "8.8", null, "0.5", null, "38.0", null, "0.7", null, "84.1", null, "0.8", null, "81.7", null, "0.9", null, "78.3", null, "1.0", null, "27.9", null, "0.9", null, "24.9", null, "0.7", null, "19.7", null, "0.5", null, "7.6", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "351402", null, "5013", null, "14347", null, "1417", null, "15224", null, "1947", null, "17998", null, "1755", null, "22623", null, "1896", null, "20254", null, "1927", null, "18825", null, "1714", null, "21670", null, "1422", null, "22136", null, "1958", null, "22263", null, "2102", null, "20857", null, "1593", null, "21826", null, "1323", null, "25416", null, "2029", null, "27915", null, "2429", null, "27105", null, "1819", null, "18607", null, "1761", null, "15568", null, "1471", null, "9920", null, "1080", null, "8848", null, "1177", null, "33222", null, "2217", null, "11287", null, "1263", null, "58856", null, "2904", null, "31590", null, "1830", null, "127771", null, "3601", null, "299944", null, "3692", null, "292546", null, "3590", null, "278193", null, "3842", null, "107963", null, "3088", null, "97822", null, "2841", null, "80048", null, "2119", null, "34336", null, "1452", null, "45.1", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.1", null, "0.4", null, "4.3", null, "0.5", null, "5.1", null, "0.5", null, "6.4", null, "0.5", null, "5.8", null, "0.5", null, "5.4", null, "0.5", null, "6.2", null, "0.4", null, "6.3", null, "0.6", null, "6.3", null, "0.6", null, "5.9", null, "0.4", null, "6.2", null, "0.4", null, "7.2", null, "0.6", null, "7.9", null, "0.7", null, "7.7", null, "0.5", null, "5.3", null, "0.5", null, "4.4", null, "0.4", null, "2.8", null, "0.3", null, "2.5", null, "0.3", null, "9.5", null, "0.6", null, "3.2", null, "0.4", null, "16.7", null, "0.7", null, "9.0", null, "0.5", null, "36.4", null, "0.9", null, "85.4", null, "0.7", null, "83.3", null, "0.7", null, "79.2", null, "0.8", null, "30.7", null, "1.0", null, "27.8", null, "0.9", null, "22.8", null, "0.7", null, "9.8", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "33", "02"], ["5001900US3401", "Congressional District 1 (119th Congress), New Jersey", "784146", null, "6852", null, "43382", null, "938", null, "43384", null, "2998", null, "49485", null, "3333", null, "48397", null, "1664", null, "49596", null, "2246", null, "50091", null, "1597", null, "57341", null, "1827", null, "58148", null, "3609", null, "49932", null, "3534", null, "48762", null, "2096", null, "47093", null, "1549", null, "47050", null, "3250", null, "54366", null, "3358", null, "42853", null, "2570", null, "36383", null, "2565", null, "26070", null, "2356", null, "16936", null, "1961", null, "14877", null, "2131", null, "92869", null, "2237", null, "29556", null, "1012", null, "165807", null, "3166", null, "68437", null, "1767", null, "313505", null, "3443", null, "638405", null, "5308", null, "618339", null, "4832", null, "589863", null, "5129", null, "191485", null, "4024", null, "171159", null, "3830", null, "137119", null, "2429", null, "57883", null, "1589", null, "39.2", null, "0.4", null, "93.6", null, "1.0", null, "62.9", null, "1.0", null, "28.5", null, "0.6", null, "34.5", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.1", null, "5.5", null, "0.4", null, "6.3", null, "0.4", null, "6.2", null, "0.2", null, "6.3", null, "0.3", null, "6.4", null, "0.2", null, "7.3", null, "0.2", null, "7.4", null, "0.5", null, "6.4", null, "0.5", null, "6.2", null, "0.2", null, "6.0", null, "0.2", null, "6.0", null, "0.4", null, "6.9", null, "0.4", null, "5.5", null, "0.3", null, "4.6", null, "0.3", null, "3.3", null, "0.3", null, "2.2", null, "0.2", null, "1.9", null, "0.3", null, "11.8", null, "0.2", null, "3.8", null, "0.1", null, "21.1", null, "0.3", null, "8.7", null, "0.2", null, "40.0", null, "0.3", null, "81.4", null, "0.3", null, "78.9", null, "0.3", null, "75.2", null, "0.4", null, "24.4", null, "0.5", null, "21.8", null, "0.5", null, "17.5", null, "0.3", null, "7.4", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.3", null, "-888888888.0", "(X)", "379141", null, "3858", null, "21401", null, "853", null, "22206", null, "1927", null, "24943", null, "2358", null, "24263", null, "1147", null, "25815", null, "1312", null, "24496", null, "795", null, "28565", null, "997", null, "28345", null, "2685", null, "24866", null, "2386", null, "23976", null, "1438", null, "22343", null, "1079", null, "23545", null, "2207", null, "25082", null, "2145", null, "20408", null, "1803", null, "15861", null, "1647", null, "10607", null, "1189", null, "6805", null, "1155", null, "5614", null, "971", null, "47149", null, "1277", null, "14991", null, "780", null, "83541", null, "2028", null, "35087", null, "1188", null, "156350", null, "2506", null, "305967", null, "3280", null, "295600", null, "2903", null, "281232", null, "3289", null, "84377", null, "2368", null, "76359", null, "2313", null, "59295", null, "1235", null, "23026", null, "753", null, "38.0", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.6", null, "0.2", null, "5.9", null, "0.5", null, "6.6", null, "0.6", null, "6.4", null, "0.3", null, "6.8", null, "0.3", null, "6.5", null, "0.2", null, "7.5", null, "0.3", null, "7.5", null, "0.7", null, "6.6", null, "0.6", null, "6.3", null, "0.4", null, "5.9", null, "0.3", null, "6.2", null, "0.6", null, "6.6", null, "0.6", null, "5.4", null, "0.5", null, "4.2", null, "0.4", null, "2.8", null, "0.3", null, "1.8", null, "0.3", null, "1.5", null, "0.3", null, "12.4", null, "0.3", null, "4.0", null, "0.2", null, "22.0", null, "0.4", null, "9.3", null, "0.3", null, "41.2", null, "0.5", null, "80.7", null, "0.5", null, "78.0", null, "0.4", null, "74.2", null, "0.5", null, "22.3", null, "0.6", null, "20.1", null, "0.6", null, "15.6", null, "0.3", null, "6.1", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "405005", null, "4107", null, "21981", null, "842", null, "21178", null, "2285", null, "24542", null, "2346", null, "24134", null, "1316", null, "23781", null, "1434", null, "25595", null, "1316", null, "28776", null, "1197", null, "29803", null, "2288", null, "25066", null, "2116", null, "24786", null, "1091", null, "24750", null, "1127", null, "23505", null, "1851", null, "29284", null, "1969", null, "22445", null, "1662", null, "20522", null, "1746", null, "15463", null, "1652", null, "10131", null, "1480", null, "9263", null, "1659", null, "45720", null, "1695", null, "14565", null, "828", null, "82266", null, "2285", null, "33350", null, "1098", null, "157155", null, "2262", null, "332438", null, "3377", null, "322739", null, "3128", null, "308631", null, "3396", null, "107108", null, "2343", null, "94800", null, "2371", null, "77824", null, "1550", null, "34857", null, "1198", null, "40.7", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.2", null, "5.2", null, "0.6", null, "6.1", null, "0.6", null, "6.0", null, "0.3", null, "5.9", null, "0.3", null, "6.3", null, "0.3", null, "7.1", null, "0.3", null, "7.4", null, "0.6", null, "6.2", null, "0.5", null, "6.1", null, "0.3", null, "6.1", null, "0.3", null, "5.8", null, "0.5", null, "7.2", null, "0.5", null, "5.5", null, "0.4", null, "5.1", null, "0.4", null, "3.8", null, "0.4", null, "2.5", null, "0.4", null, "2.3", null, "0.4", null, "11.3", null, "0.4", null, "3.6", null, "0.2", null, "20.3", null, "0.5", null, "8.2", null, "0.3", null, "38.8", null, "0.4", null, "82.1", null, "0.5", null, "79.7", null, "0.5", null, "76.2", null, "0.6", null, "26.4", null, "0.6", null, "23.4", null, "0.6", null, "19.2", null, "0.4", null, "8.6", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "34", "01"], ["5001900US3402", "Congressional District 2 (119th Congress), New Jersey", "794193", null, "6814", null, "36931", null, "2251", null, "43565", null, "3449", null, "50916", null, "3771", null, "50543", null, "3103", null, "47559", null, "3151", null, "40898", null, "3049", null, "48435", null, "2897", null, "47744", null, "3702", null, "46063", null, "4183", null, "47087", null, "3393", null, "47280", null, "2633", null, "52366", null, "3794", null, "59027", null, "3485", null, "55506", null, "2852", null, "47369", null, "2955", null, "33572", null, "2675", null, "22091", null, "2358", null, "17241", null, "1578", null, "94481", null, "3328", null, "31910", null, "1900", null, "163322", null, "3453", null, "66192", null, "3565", null, "281242", null, "5109", null, "652852", null, "6366", null, "630871", null, "5526", null, "603846", null, "6005", null, "234806", null, "4934", null, "210552", null, "4488", null, "175779", null, "3304", null, "72904", null, "2719", null, "43.6", null, "0.6", null, "99.4", null, "1.5", null, "74.5", null, "1.5", null, "38.6", null, "1.0", null, "35.9", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.7", null, "0.3", null, "5.5", null, "0.4", null, "6.4", null, "0.5", null, "6.4", null, "0.4", null, "6.0", null, "0.4", null, "5.1", null, "0.4", null, "6.1", null, "0.4", null, "6.0", null, "0.5", null, "5.8", null, "0.5", null, "5.9", null, "0.4", null, "6.0", null, "0.3", null, "6.6", null, "0.5", null, "7.4", null, "0.4", null, "7.0", null, "0.4", null, "6.0", null, "0.4", null, "4.2", null, "0.3", null, "2.8", null, "0.3", null, "2.2", null, "0.2", null, "11.9", null, "0.4", null, "4.0", null, "0.2", null, "20.6", null, "0.4", null, "8.3", null, "0.4", null, "35.4", null, "0.5", null, "82.2", null, "0.4", null, "79.4", null, "0.4", null, "76.0", null, "0.6", null, "29.6", null, "0.7", null, "26.5", null, "0.6", null, "22.1", null, "0.4", null, "9.2", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.3", null, "-888888888.0", "(X)", "395804", null, "4120", null, "21330", null, "2278", null, "21096", null, "2352", null, "27567", null, "2222", null, "24683", null, "2121", null, "26294", null, "1917", null, "21706", null, "2137", null, "23460", null, "1734", null, "24092", null, "2750", null, "23768", null, "2796", null, "23303", null, "2157", null, "23596", null, "1611", null, "24791", null, "2541", null, "29387", null, "2463", null, "26479", null, "1549", null, "22210", null, "1816", null, "16106", null, "1650", null, "8541", null, "1232", null, "7395", null, "1087", null, "48663", null, "2319", null, "15450", null, "1470", null, "85443", null, "3193", null, "35527", null, "2176", null, "144003", null, "3079", null, "321104", null, "3673", null, "310361", null, "3324", null, "296942", null, "3761", null, "110118", null, "3222", null, "98809", null, "2808", null, "80731", null, "1982", null, "32042", null, "1527", null, "41.6", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.6", null, "5.3", null, "0.6", null, "7.0", null, "0.6", null, "6.2", null, "0.5", null, "6.6", null, "0.5", null, "5.5", null, "0.5", null, "5.9", null, "0.4", null, "6.1", null, "0.7", null, "6.0", null, "0.7", null, "5.9", null, "0.5", null, "6.0", null, "0.4", null, "6.3", null, "0.6", null, "7.4", null, "0.6", null, "6.7", null, "0.4", null, "5.6", null, "0.5", null, "4.1", null, "0.4", null, "2.2", null, "0.3", null, "1.9", null, "0.3", null, "12.3", null, "0.6", null, "3.9", null, "0.4", null, "21.6", null, "0.7", null, "9.0", null, "0.5", null, "36.4", null, "0.7", null, "81.1", null, "0.6", null, "78.4", null, "0.7", null, "75.0", null, "0.9", null, "27.8", null, "0.8", null, "25.0", null, "0.7", null, "20.4", null, "0.5", null, "8.1", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "398389", null, "4925", null, "15601", null, "1720", null, "22469", null, "2223", null, "23349", null, "2541", null, "25860", null, "2407", null, "21265", null, "2390", null, "19192", null, "1889", null, "24975", null, "2091", null, "23652", null, "2026", null, "22295", null, "2193", null, "23784", null, "1745", null, "23684", null, "1720", null, "27575", null, "2633", null, "29640", null, "2350", null, "29027", null, "2278", null, "25159", null, "2118", null, "17466", null, "1845", null, "13550", null, "1695", null, "9846", null, "1130", null, "45818", null, "2149", null, "16460", null, "1676", null, "77879", null, "3178", null, "30665", null, "2575", null, "137239", null, "3394", null, "331748", null, "3897", null, "320510", null, "3544", null, "306904", null, "3617", null, "124688", null, "2982", null, "111743", null, "2695", null, "95048", null, "1876", null, "40862", null, "1709", null, "45.1", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "3.9", null, "0.4", null, "5.6", null, "0.5", null, "5.9", null, "0.6", null, "6.5", null, "0.6", null, "5.3", null, "0.6", null, "4.8", null, "0.5", null, "6.3", null, "0.5", null, "5.9", null, "0.5", null, "5.6", null, "0.6", null, "6.0", null, "0.4", null, "5.9", null, "0.4", null, "6.9", null, "0.7", null, "7.4", null, "0.6", null, "7.3", null, "0.6", null, "6.3", null, "0.5", null, "4.4", null, "0.5", null, "3.4", null, "0.4", null, "2.5", null, "0.3", null, "11.5", null, "0.5", null, "4.1", null, "0.4", null, "19.5", null, "0.7", null, "7.7", null, "0.6", null, "34.4", null, "0.7", null, "83.3", null, "0.6", null, "80.5", null, "0.7", null, "77.0", null, "0.7", null, "31.3", null, "0.8", null, "28.0", null, "0.7", null, "23.9", null, "0.5", null, "10.3", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "34", "02"], ["5001900US3403", "Congressional District 3 (119th Congress), New Jersey", "795627", null, "6433", null, "39709", null, "2236", null, "43824", null, "3941", null, "48527", null, "4038", null, "49506", null, "2815", null, "46209", null, "3226", null, "44318", null, "2309", null, "49729", null, "2172", null, "54561", null, "4086", null, "50461", null, "4639", null, "50891", null, "2407", null, "52085", null, "2333", null, "57422", null, "3736", null, "54406", null, "3592", null, "50083", null, "3142", null, "40213", null, "2514", null, "30616", null, "2415", null, "16484", null, "2598", null, "16583", null, "1989", null, "92351", null, "3865", null, "31842", null, "1932", null, "163902", null, "4975", null, "63873", null, "3449", null, "294784", null, "4468", null, "654728", null, "6630", null, "631725", null, "6365", null, "605609", null, "6851", null, "208385", null, "5164", null, "188609", null, "4918", null, "153979", null, "3468", null, "63683", null, "2449", null, "42.0", null, "0.6", null, "97.5", null, "1.9", null, "66.5", null, "1.6", null, "32.2", null, "0.8", null, "34.3", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.0", null, "0.3", null, "5.5", null, "0.5", null, "6.1", null, "0.5", null, "6.2", null, "0.3", null, "5.8", null, "0.4", null, "5.6", null, "0.3", null, "6.3", null, "0.3", null, "6.9", null, "0.5", null, "6.3", null, "0.6", null, "6.4", null, "0.3", null, "6.5", null, "0.3", null, "7.2", null, "0.5", null, "6.8", null, "0.4", null, "6.3", null, "0.4", null, "5.1", null, "0.3", null, "3.8", null, "0.3", null, "2.1", null, "0.3", null, "2.1", null, "0.2", null, "11.6", null, "0.5", null, "4.0", null, "0.2", null, "20.6", null, "0.6", null, "8.0", null, "0.4", null, "37.1", null, "0.5", null, "82.3", null, "0.5", null, "79.4", null, "0.6", null, "76.1", null, "0.6", null, "26.2", null, "0.6", null, "23.7", null, "0.6", null, "19.4", null, "0.4", null, "8.0", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "0.9", null, "-888888888.0", "(X)", "392699", null, "4886", null, "21206", null, "1504", null, "20758", null, "2759", null, "26382", null, "2722", null, "24721", null, "1779", null, "23974", null, "2058", null, "22638", null, "1721", null, "24686", null, "1454", null, "27143", null, "2638", null, "25751", null, "2893", null, "24350", null, "1860", null, "26880", null, "1539", null, "27890", null, "2429", null, "27324", null, "2385", null, "24386", null, "1861", null, "17227", null, "1642", null, "15077", null, "1614", null, "6604", null, "1454", null, "5702", null, "1173", null, "47140", null, "2474", null, "16350", null, "1354", null, "84696", null, "3375", null, "32345", null, "2292", null, "148913", null, "3601", null, "319599", null, "4488", null, "308003", null, "4014", null, "295450", null, "4015", null, "96320", null, "3087", null, "86239", null, "2957", null, "68996", null, "1926", null, "27383", null, "1395", null, "40.9", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.4", null, "5.3", null, "0.7", null, "6.7", null, "0.7", null, "6.3", null, "0.4", null, "6.1", null, "0.5", null, "5.8", null, "0.4", null, "6.3", null, "0.4", null, "6.9", null, "0.7", null, "6.6", null, "0.7", null, "6.2", null, "0.5", null, "6.8", null, "0.4", null, "7.1", null, "0.6", null, "7.0", null, "0.6", null, "6.2", null, "0.5", null, "4.4", null, "0.4", null, "3.8", null, "0.4", null, "1.7", null, "0.4", null, "1.5", null, "0.3", null, "12.0", null, "0.6", null, "4.2", null, "0.3", null, "21.6", null, "0.7", null, "8.2", null, "0.6", null, "37.9", null, "0.7", null, "81.4", null, "0.7", null, "78.4", null, "0.7", null, "75.2", null, "0.8", null, "24.5", null, "0.8", null, "22.0", null, "0.7", null, "17.6", null, "0.5", null, "7.0", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "402928", null, "5070", null, "18503", null, "1489", null, "23066", null, "2422", null, "22145", null, "2580", null, "24785", null, "2478", null, "22235", null, "2435", null, "21680", null, "1638", null, "25043", null, "1350", null, "27418", null, "2678", null, "24710", null, "2824", null, "26541", null, "1523", null, "25205", null, "1314", null, "29532", null, "2505", null, "27082", null, "2697", null, "25697", null, "2173", null, "22986", null, "2005", null, "15539", null, "1546", null, "9880", null, "1617", null, "10881", null, "1430", null, "45211", null, "2604", null, "15492", null, "1547", null, "79206", null, "3180", null, "31528", null, "2533", null, "145871", null, "3765", null, "335129", null, "5050", null, "323722", null, "4651", null, "310159", null, "4631", null, "112065", null, "3358", null, "102370", null, "2866", null, "84983", null, "2279", null, "36300", null, "1565", null, "43.4", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.6", null, "0.4", null, "5.7", null, "0.6", null, "5.5", null, "0.6", null, "6.2", null, "0.6", null, "5.5", null, "0.6", null, "5.4", null, "0.4", null, "6.2", null, "0.3", null, "6.8", null, "0.7", null, "6.1", null, "0.7", null, "6.6", null, "0.4", null, "6.3", null, "0.3", null, "7.3", null, "0.6", null, "6.7", null, "0.7", null, "6.4", null, "0.5", null, "5.7", null, "0.5", null, "3.9", null, "0.4", null, "2.5", null, "0.4", null, "2.7", null, "0.4", null, "11.2", null, "0.6", null, "3.8", null, "0.4", null, "19.7", null, "0.7", null, "7.8", null, "0.6", null, "36.2", null, "0.7", null, "83.2", null, "0.7", null, "80.3", null, "0.7", null, "77.0", null, "0.8", null, "27.8", null, "0.8", null, "25.4", null, "0.7", null, "21.1", null, "0.5", null, "9.0", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "34", "03"], ["5001900US3404", "Congressional District 4 (119th Congress), New Jersey", "795125", null, "9476", null, "57026", null, "2760", null, "53371", null, "3330", null, "54730", null, "3669", null, "50093", null, "3021", null, "42776", null, "2962", null, "43038", null, "2559", null, "43288", null, "2698", null, "48323", null, "3531", null, "39164", null, "3472", null, "39101", null, "2543", null, "43202", null, "2811", null, "45434", null, "3794", null, "57229", null, "3413", null, "56254", null, "2998", null, "43302", null, "2915", null, "35526", null, "2218", null, "21595", null, "2320", null, "21673", null, "2043", null, "108101", null, "3763", null, "34364", null, "2094", null, "199491", null, "5492", null, "58505", null, "3311", null, "266682", null, "6001", null, "619200", null, "7236", null, "595634", null, "6859", null, "570994", null, "6434", null, "235579", null, "5446", null, "212365", null, "4717", null, "178350", null, "4134", null, "78794", null, "2693", null, "40.5", null, "0.7", null, "95.4", null, "1.6", null, "90.5", null, "2.0", null, "42.7", null, "1.4", null, "47.8", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "7.2", null, "0.3", null, "6.7", null, "0.4", null, "6.9", null, "0.4", null, "6.3", null, "0.4", null, "5.4", null, "0.4", null, "5.4", null, "0.3", null, "5.4", null, "0.3", null, "6.1", null, "0.4", null, "4.9", null, "0.4", null, "4.9", null, "0.3", null, "5.4", null, "0.3", null, "5.7", null, "0.5", null, "7.2", null, "0.4", null, "7.1", null, "0.4", null, "5.4", null, "0.4", null, "4.5", null, "0.3", null, "2.7", null, "0.3", null, "2.7", null, "0.3", null, "13.6", null, "0.4", null, "4.3", null, "0.3", null, "25.1", null, "0.5", null, "7.4", null, "0.4", null, "33.5", null, "0.6", null, "77.9", null, "0.6", null, "74.9", null, "0.5", null, "71.8", null, "0.6", null, "29.6", null, "0.7", null, "26.7", null, "0.6", null, "22.4", null, "0.6", null, "9.9", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.3", null, "-888888888.0", "(X)", "388108", null, "6145", null, "29566", null, "2039", null, "26646", null, "1999", null, "30216", null, "2435", null, "24800", null, "1815", null, "21298", null, "1985", null, "21914", null, "1775", null, "22443", null, "1570", null, "23183", null, "2288", null, "20383", null, "2100", null, "19987", null, "1999", null, "21406", null, "1876", null, "22757", null, "2262", null, "25619", null, "2163", null, "26069", null, "1901", null, "19811", null, "1789", null, "15278", null, "1484", null, "9791", null, "1509", null, "6941", null, "1218", null, "56862", null, "2644", null, "17826", null, "1382", null, "104254", null, "3751", null, "28272", null, "2089", null, "134021", null, "3840", null, "296252", null, "4929", null, "283854", null, "4786", null, "273407", null, "4664", null, "103509", null, "3063", null, "93205", null, "2642", null, "77890", null, "2286", null, "32010", null, "1490", null, "38.4", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "7.6", null, "0.5", null, "6.9", null, "0.5", null, "7.8", null, "0.6", null, "6.4", null, "0.4", null, "5.5", null, "0.5", null, "5.6", null, "0.5", null, "5.8", null, "0.4", null, "6.0", null, "0.6", null, "5.3", null, "0.5", null, "5.1", null, "0.5", null, "5.5", null, "0.5", null, "5.9", null, "0.6", null, "6.6", null, "0.5", null, "6.7", null, "0.5", null, "5.1", null, "0.5", null, "3.9", null, "0.4", null, "2.5", null, "0.4", null, "1.8", null, "0.3", null, "14.7", null, "0.6", null, "4.6", null, "0.3", null, "26.9", null, "0.8", null, "7.3", null, "0.5", null, "34.5", null, "0.8", null, "76.3", null, "0.8", null, "73.1", null, "0.8", null, "70.4", null, "0.8", null, "26.7", null, "0.7", null, "24.0", null, "0.6", null, "20.1", null, "0.6", null, "8.2", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "407017", null, "5445", null, "27460", null, "1743", null, "26725", null, "2709", null, "24514", null, "2489", null, "25293", null, "2307", null, "21478", null, "1807", null, "21124", null, "1588", null, "20845", null, "1950", null, "25140", null, "2135", null, "18781", null, "2245", null, "19114", null, "1509", null, "21796", null, "1856", null, "22677", null, "2190", null, "31610", null, "2340", null, "30185", null, "2066", null, "23491", null, "2054", null, "20248", null, "1818", null, "11804", null, "1818", null, "14732", null, "1593", null, "51239", null, "2017", null, "16538", null, "1568", null, "95237", null, "2991", null, "30233", null, "2070", null, "132661", null, "3965", null, "322948", null, "4472", null, "311780", null, "3951", null, "297587", null, "3642", null, "132070", null, "3547", null, "119160", null, "3472", null, "100460", null, "2713", null, "46784", null, "1933", null, "42.8", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.7", null, "0.4", null, "6.6", null, "0.7", null, "6.0", null, "0.6", null, "6.2", null, "0.5", null, "5.3", null, "0.4", null, "5.2", null, "0.4", null, "5.1", null, "0.5", null, "6.2", null, "0.5", null, "4.6", null, "0.5", null, "4.7", null, "0.4", null, "5.4", null, "0.5", null, "5.6", null, "0.5", null, "7.8", null, "0.6", null, "7.4", null, "0.5", null, "5.8", null, "0.5", null, "5.0", null, "0.4", null, "2.9", null, "0.4", null, "3.6", null, "0.4", null, "12.6", null, "0.4", null, "4.1", null, "0.4", null, "23.4", null, "0.6", null, "7.4", null, "0.5", null, "32.6", null, "0.8", null, "79.3", null, "0.6", null, "76.6", null, "0.6", null, "73.1", null, "0.7", null, "32.4", null, "0.9", null, "29.3", null, "0.9", null, "24.7", null, "0.7", null, "11.5", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "34", "04"], ["5001900US3405", "Congressional District 5 (119th Congress), New Jersey", "794119", null, "12841", null, "37413", null, "3063", null, "42856", null, "3679", null, "50751", null, "3628", null, "48881", null, "2649", null, "43757", null, "3816", null, "44013", null, "2659", null, "44162", null, "2902", null, "48897", null, "4671", null, "53596", null, "3914", null, "52855", null, "3475", null, "56520", null, "2684", null, "59292", null, "3674", null, "52634", null, "4023", null, "49374", null, "3399", null, "38866", null, "2897", null, "32194", null, "2893", null, "18790", null, "2344", null, "19268", null, "1850", null, "93607", null, "4646", null, "31732", null, "1929", null, "162752", null, "6050", null, "60906", null, "4164", null, "283306", null, "7572", null, "652152", null, "10468", null, "631367", null, "9959", null, "607236", null, "9655", null, "211126", null, "5906", null, "189594", null, "5427", null, "158492", null, "4492", null, "70252", null, "3083", null, "43.2", null, "0.6", null, "95.1", null, "2.0", null, "67.9", null, "1.7", null, "33.5", null, "1.2", null, "34.4", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.7", null, "0.4", null, "5.4", null, "0.5", null, "6.4", null, "0.4", null, "6.2", null, "0.3", null, "5.5", null, "0.5", null, "5.5", null, "0.3", null, "5.6", null, "0.4", null, "6.2", null, "0.6", null, "6.7", null, "0.5", null, "6.7", null, "0.4", null, "7.1", null, "0.3", null, "7.5", null, "0.4", null, "6.6", null, "0.5", null, "6.2", null, "0.4", null, "4.9", null, "0.4", null, "4.1", null, "0.4", null, "2.4", null, "0.3", null, "2.4", null, "0.2", null, "11.8", null, "0.5", null, "4.0", null, "0.2", null, "20.5", null, "0.6", null, "7.7", null, "0.5", null, "35.7", null, "0.6", null, "82.1", null, "0.6", null, "79.5", null, "0.6", null, "76.5", null, "0.6", null, "26.6", null, "0.8", null, "23.9", null, "0.7", null, "20.0", null, "0.6", null, "8.8", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.3", null, "-888888888.0", "(X)", "387082", null, "7379", null, "19046", null, "2086", null, "20838", null, "2884", null, "26877", null, "2602", null, "24607", null, "2065", null, "21175", null, "2434", null, "22100", null, "2006", null, "21941", null, "1959", null, "24226", null, "2457", null, "25236", null, "2461", null, "26627", null, "2080", null, "27918", null, "2144", null, "28879", null, "2395", null, "26170", null, "2421", null, "23476", null, "2003", null, "18418", null, "2112", null, "14981", null, "1520", null, "8041", null, "1249", null, "6526", null, "954", null, "47715", null, "3636", null, "16005", null, "1617", null, "82766", null, "4521", null, "29777", null, "2700", null, "139285", null, "4377", null, "314157", null, "5825", null, "304316", null, "5550", null, "291850", null, "5429", null, "97612", null, "3492", null, "86346", null, "3118", null, "71442", null, "2397", null, "29548", null, "1602", null, "42.0", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.9", null, "0.5", null, "5.4", null, "0.7", null, "6.9", null, "0.6", null, "6.4", null, "0.5", null, "5.5", null, "0.6", null, "5.7", null, "0.5", null, "5.7", null, "0.5", null, "6.3", null, "0.6", null, "6.5", null, "0.6", null, "6.9", null, "0.5", null, "7.2", null, "0.5", null, "7.5", null, "0.6", null, "6.8", null, "0.6", null, "6.1", null, "0.5", null, "4.8", null, "0.5", null, "3.9", null, "0.4", null, "2.1", null, "0.3", null, "1.7", null, "0.2", null, "12.3", null, "0.9", null, "4.1", null, "0.4", null, "21.4", null, "0.9", null, "7.7", null, "0.7", null, "36.0", null, "0.9", null, "81.2", null, "0.9", null, "78.6", null, "0.9", null, "75.4", null, "1.0", null, "25.2", null, "1.0", null, "22.3", null, "0.9", null, "18.5", null, "0.7", null, "7.6", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "407037", null, "7871", null, "18367", null, "1878", null, "22018", null, "2194", null, "23874", null, "2599", null, "24274", null, "1896", null, "22582", null, "2414", null, "21913", null, "1573", null, "22221", null, "1779", null, "24671", null, "2973", null, "28360", null, "2378", null, "26228", null, "2048", null, "28602", null, "1486", null, "30413", null, "2466", null, "26464", null, "2417", null, "25898", null, "2112", null, "20448", null, "1879", null, "17213", null, "1835", null, "10749", null, "1512", null, "12742", null, "1530", null, "45892", null, "2713", null, "15727", null, "1284", null, "79986", null, "3939", null, "31129", null, "2576", null, "144021", null, "4746", null, "337995", null, "6604", null, "327051", null, "6315", null, "315386", null, "6321", null, "113514", null, "3430", null, "103248", null, "3141", null, "87050", null, "2757", null, "40704", null, "1954", null, "44.0", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.5", null, "0.4", null, "5.4", null, "0.5", null, "5.9", null, "0.6", null, "6.0", null, "0.4", null, "5.5", null, "0.6", null, "5.4", null, "0.4", null, "5.5", null, "0.4", null, "6.1", null, "0.7", null, "7.0", null, "0.6", null, "6.4", null, "0.5", null, "7.0", null, "0.4", null, "7.5", null, "0.6", null, "6.5", null, "0.6", null, "6.4", null, "0.5", null, "5.0", null, "0.5", null, "4.2", null, "0.4", null, "2.6", null, "0.4", null, "3.1", null, "0.4", null, "11.3", null, "0.6", null, "3.9", null, "0.3", null, "19.7", null, "0.8", null, "7.6", null, "0.6", null, "35.4", null, "0.8", null, "83.0", null, "0.8", null, "80.3", null, "0.8", null, "77.5", null, "0.8", null, "27.9", null, "0.9", null, "25.4", null, "0.8", null, "21.4", null, "0.6", null, "10.0", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "34", "05"], ["5001900US3406", "Congressional District 6 (119th Congress), New Jersey", "786792", null, "11195", null, "39684", null, "3498", null, "44517", null, "4158", null, "44622", null, "4716", null, "51964", null, "3323", null, "55369", null, "3730", null, "52286", null, "3357", null, "58078", null, "3463", null, "57412", null, "4479", null, "48463", null, "4318", null, "47363", null, "2889", null, "51209", null, "3349", null, "53166", null, "3880", null, "53081", null, "3929", null, "43422", null, "3260", null, "34693", null, "2642", null, "24733", null, "2363", null, "15109", null, "1827", null, "11621", null, "1701", null, "89139", null, "5488", null, "26433", null, "2410", null, "155256", null, "7394", null, "80900", null, "3877", null, "323572", null, "7703", null, "650522", null, "9324", null, "631536", null, "9420", null, "594357", null, "9275", null, "182659", null, "6574", null, "160525", null, "5683", null, "129578", null, "4559", null, "51463", null, "2987", null, "39.0", null, "0.7", null, "100.3", null, "2.0", null, "56.7", null, "1.9", null, "25.8", null, "1.2", null, "30.9", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.0", null, "0.4", null, "5.7", null, "0.5", null, "5.7", null, "0.6", null, "6.6", null, "0.4", null, "7.0", null, "0.4", null, "6.6", null, "0.4", null, "7.4", null, "0.4", null, "7.3", null, "0.6", null, "6.2", null, "0.5", null, "6.0", null, "0.4", null, "6.5", null, "0.4", null, "6.8", null, "0.5", null, "6.7", null, "0.5", null, "5.5", null, "0.4", null, "4.4", null, "0.3", null, "3.1", null, "0.3", null, "1.9", null, "0.2", null, "1.5", null, "0.2", null, "11.3", null, "0.6", null, "3.4", null, "0.3", null, "19.7", null, "0.8", null, "10.3", null, "0.4", null, "41.1", null, "0.7", null, "82.7", null, "0.8", null, "80.3", null, "0.8", null, "75.5", null, "0.8", null, "23.2", null, "0.9", null, "20.4", null, "0.8", null, "16.5", null, "0.6", null, "6.5", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "0.5", null, "-888888888.0", "(X)", "393915", null, "6808", null, "19544", null, "2141", null, "21978", null, "2856", null, "22047", null, "3146", null, "26388", null, "2571", null, "30273", null, "2427", null, "25500", null, "2033", null, "29292", null, "2206", null, "32111", null, "3202", null, "24566", null, "2741", null, "23161", null, "2098", null, "26400", null, "2092", null, "25543", null, "2764", null, "28160", null, "2762", null, "19375", null, "1883", null, "17831", null, "1755", null, "11225", null, "1510", null, "6212", null, "1088", null, "4309", null, "974", null, "44025", null, "3688", null, "12592", null, "1753", null, "76161", null, "4696", null, "44069", null, "2415", null, "168130", null, "4907", null, "325976", null, "5940", null, "317754", null, "5913", null, "298225", null, "6091", null, "87112", null, "3689", null, "74866", null, "3243", null, "58952", null, "2529", null, "21746", null, "1600", null, "38.3", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.0", null, "0.5", null, "5.6", null, "0.7", null, "5.6", null, "0.8", null, "6.7", null, "0.6", null, "7.7", null, "0.6", null, "6.5", null, "0.5", null, "7.4", null, "0.5", null, "8.2", null, "0.8", null, "6.2", null, "0.7", null, "5.9", null, "0.5", null, "6.7", null, "0.5", null, "6.5", null, "0.7", null, "7.1", null, "0.7", null, "4.9", null, "0.5", null, "4.5", null, "0.5", null, "2.8", null, "0.4", null, "1.6", null, "0.3", null, "1.1", null, "0.3", null, "11.2", null, "0.9", null, "3.2", null, "0.4", null, "19.3", null, "1.1", null, "11.2", null, "0.6", null, "42.7", null, "0.9", null, "82.8", null, "1.0", null, "80.7", null, "1.1", null, "75.7", null, "1.2", null, "22.1", null, "1.0", null, "19.0", null, "0.9", null, "15.0", null, "0.7", null, "5.5", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "392877", null, "6766", null, "20140", null, "2367", null, "22539", null, "2782", null, "22575", null, "2913", null, "25576", null, "1999", null, "25096", null, "2593", null, "26786", null, "2313", null, "28786", null, "2255", null, "25301", null, "2506", null, "23897", null, "2686", null, "24202", null, "1680", null, "24809", null, "2008", null, "27623", null, "2093", null, "24921", null, "2505", null, "24047", null, "2164", null, "16862", null, "1932", null, "13508", null, "1716", null, "8897", null, "1474", null, "7312", null, "1227", null, "45114", null, "2975", null, "13841", null, "1551", null, "79095", null, "3972", null, "36831", null, "2921", null, "155442", null, "4777", null, "324546", null, "5674", null, "313782", null, "5436", null, "296132", null, "5348", null, "95547", null, "3914", null, "85659", null, "3510", null, "70626", null, "2864", null, "29717", null, "2073", null, "39.9", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.1", null, "0.6", null, "5.7", null, "0.7", null, "5.7", null, "0.7", null, "6.5", null, "0.5", null, "6.4", null, "0.6", null, "6.8", null, "0.6", null, "7.3", null, "0.6", null, "6.4", null, "0.6", null, "6.1", null, "0.7", null, "6.2", null, "0.4", null, "6.3", null, "0.5", null, "7.0", null, "0.5", null, "6.3", null, "0.6", null, "6.1", null, "0.6", null, "4.3", null, "0.5", null, "3.4", null, "0.4", null, "2.3", null, "0.4", null, "1.9", null, "0.3", null, "11.5", null, "0.7", null, "3.5", null, "0.4", null, "20.1", null, "0.9", null, "9.4", null, "0.7", null, "39.6", null, "0.9", null, "82.6", null, "0.9", null, "79.9", null, "0.9", null, "75.4", null, "0.9", null, "24.3", null, "1.1", null, "21.8", null, "1.0", null, "18.0", null, "0.8", null, "7.6", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "34", "06"], ["5001900US3407", "Congressional District 7 (119th Congress), New Jersey", "789429", null, "11233", null, "39957", null, "2432", null, "43653", null, "2797", null, "49146", null, "3951", null, "46671", null, "3071", null, "42678", null, "3176", null, "39781", null, "3192", null, "43845", null, "3563", null, "52925", null, "3621", null, "49830", null, "3856", null, "51366", null, "3232", null, "55745", null, "3424", null, "62486", null, "3909", null, "59385", null, "3219", null, "47910", null, "2934", null, "37339", null, "2676", null, "29768", null, "2785", null, "22013", null, "2484", null, "14931", null, "1975", null, "92799", null, "4406", null, "31383", null, "2135", null, "164139", null, "5095", null, "57966", null, "3570", null, "275730", null, "5832", null, "645905", null, "9781", null, "625290", null, "9343", null, "603513", null, "9241", null, "211346", null, "6062", null, "185467", null, "5581", null, "151961", null, "5027", null, "66712", null, "3175", null, "43.6", null, "0.5", null, "99.9", null, "2.0", null, "66.8", null, "1.6", null, "32.1", null, "1.2", null, "34.7", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.1", null, "0.3", null, "5.5", null, "0.3", null, "6.2", null, "0.5", null, "5.9", null, "0.4", null, "5.4", null, "0.4", null, "5.0", null, "0.4", null, "5.6", null, "0.5", null, "6.7", null, "0.5", null, "6.3", null, "0.5", null, "6.5", null, "0.4", null, "7.1", null, "0.4", null, "7.9", null, "0.5", null, "7.5", null, "0.4", null, "6.1", null, "0.4", null, "4.7", null, "0.3", null, "3.8", null, "0.3", null, "2.8", null, "0.3", null, "1.9", null, "0.3", null, "11.8", null, "0.5", null, "4.0", null, "0.3", null, "20.8", null, "0.5", null, "7.3", null, "0.4", null, "34.9", null, "0.5", null, "81.8", null, "0.6", null, "79.2", null, "0.5", null, "76.4", null, "0.6", null, "26.8", null, "0.7", null, "23.5", null, "0.6", null, "19.2", null, "0.6", null, "8.5", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.0", null, "-888888888.0", "(X)", "394600", null, "6825", null, "21498", null, "1963", null, "23882", null, "2158", null, "25565", null, "2690", null, "24607", null, "2058", null, "21701", null, "1965", null, "19570", null, "2180", null, "21209", null, "2014", null, "27475", null, "2302", null, "25353", null, "2852", null, "25119", null, "1982", null, "29328", null, "2488", null, "30683", null, "2723", null, "29360", null, "2042", null, "23363", null, "2024", null, "18158", null, "1903", null, "12647", null, "1560", null, "9823", null, "1451", null, "5259", null, "1254", null, "49447", null, "2925", null, "16387", null, "1771", null, "87332", null, "3662", null, "29921", null, "2200", null, "139915", null, "4066", null, "317646", null, "5935", null, "307268", null, "5592", null, "294808", null, "5677", null, "98610", null, "3343", null, "86159", null, "3274", null, "69250", null, "2869", null, "27729", null, "1530", null, "42.3", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.5", null, "6.1", null, "0.5", null, "6.5", null, "0.7", null, "6.2", null, "0.5", null, "5.5", null, "0.5", null, "5.0", null, "0.5", null, "5.4", null, "0.5", null, "7.0", null, "0.6", null, "6.4", null, "0.7", null, "6.4", null, "0.5", null, "7.4", null, "0.6", null, "7.8", null, "0.7", null, "7.4", null, "0.5", null, "5.9", null, "0.5", null, "4.6", null, "0.5", null, "3.2", null, "0.4", null, "2.5", null, "0.4", null, "1.3", null, "0.3", null, "12.5", null, "0.7", null, "4.2", null, "0.4", null, "22.1", null, "0.8", null, "7.6", null, "0.5", null, "35.5", null, "0.8", null, "80.5", null, "0.8", null, "77.9", null, "0.8", null, "74.7", null, "0.9", null, "25.0", null, "0.8", null, "21.8", null, "0.8", null, "17.5", null, "0.7", null, "7.0", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "394829", null, "6892", null, "18459", null, "1676", null, "19771", null, "1858", null, "23581", null, "2616", null, "22064", null, "2373", null, "20977", null, "2217", null, "20211", null, "2021", null, "22636", null, "2180", null, "25450", null, "2237", null, "24477", null, "2251", null, "26247", null, "2114", null, "26417", null, "1716", null, "31803", null, "2499", null, "30025", null, "2114", null, "24547", null, "1791", null, "19181", null, "1559", null, "17121", null, "1811", null, "12190", null, "1677", null, "9672", null, "1420", null, "43352", null, "2528", null, "14996", null, "1530", null, "76807", null, "3239", null, "28045", null, "2419", null, "135815", null, "4043", null, "328259", null, "6077", null, "318022", null, "5811", null, "308705", null, "5620", null, "112736", null, "3767", null, "99308", null, "3346", null, "82711", null, "2779", null, "38983", null, "2264", null, "45.0", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.7", null, "0.4", null, "5.0", null, "0.5", null, "6.0", null, "0.6", null, "5.6", null, "0.6", null, "5.3", null, "0.5", null, "5.1", null, "0.5", null, "5.7", null, "0.5", null, "6.4", null, "0.6", null, "6.2", null, "0.6", null, "6.6", null, "0.5", null, "6.7", null, "0.4", null, "8.1", null, "0.6", null, "7.6", null, "0.5", null, "6.2", null, "0.4", null, "4.9", null, "0.4", null, "4.3", null, "0.5", null, "3.1", null, "0.4", null, "2.4", null, "0.4", null, "11.0", null, "0.6", null, "3.8", null, "0.4", null, "19.5", null, "0.7", null, "7.1", null, "0.6", null, "34.4", null, "0.7", null, "83.1", null, "0.7", null, "80.5", null, "0.7", null, "78.2", null, "0.8", null, "28.6", null, "0.9", null, "25.2", null, "0.8", null, "20.9", null, "0.7", null, "9.9", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "34", "07"], ["5001900US3408", "Congressional District 8 (119th Congress), New Jersey", "780391", null, "12866", null, "49583", null, "3533", null, "45794", null, "4079", null, "42189", null, "3473", null, "41195", null, "3203", null, "50783", null, "3594", null, "72119", null, "3566", null, "85791", null, "3811", null, "73580", null, "4887", null, "57082", null, "4609", null, "46596", null, "3649", null, "45726", null, "2733", null, "39216", null, "3362", null, "35978", null, "3787", null, "29634", null, "2613", null, "26332", null, "2936", null, "18898", null, "2416", null, "10537", null, "1746", null, "9358", null, "1868", null, "87983", null, "5122", null, "26060", null, "2276", null, "163626", null, "6987", null, "65918", null, "3779", null, "380550", null, "8504", null, "635936", null, "11254", null, "616765", null, "10489", null, "593717", null, "10238", null, "130737", null, "5454", null, "116306", null, "5078", null, "94759", null, "4761", null, "38793", null, "3075", null, "35.2", null, "0.4", null, "101.2", null, "2.7", null, "49.5", null, "1.6", null, "18.2", null, "1.0", null, "31.3", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.4", null, "0.4", null, "5.9", null, "0.5", null, "5.4", null, "0.4", null, "5.3", null, "0.4", null, "6.5", null, "0.5", null, "9.2", null, "0.4", null, "11.0", null, "0.5", null, "9.4", null, "0.6", null, "7.3", null, "0.6", null, "6.0", null, "0.5", null, "5.9", null, "0.3", null, "5.0", null, "0.4", null, "4.6", null, "0.5", null, "3.8", null, "0.3", null, "3.4", null, "0.4", null, "2.4", null, "0.3", null, "1.4", null, "0.2", null, "1.2", null, "0.2", null, "11.3", null, "0.6", null, "3.3", null, "0.3", null, "21.0", null, "0.8", null, "8.4", null, "0.5", null, "48.8", null, "0.7", null, "81.5", null, "0.8", null, "79.0", null, "0.8", null, "76.1", null, "0.8", null, "16.8", null, "0.7", null, "14.9", null, "0.6", null, "12.1", null, "0.6", null, "5.0", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "3.5", null, "-888888888.0", "(X)", "392579", null, "8013", null, "26082", null, "2349", null, "23076", null, "2941", null, "22226", null, "3037", null, "19317", null, "2224", null, "27048", null, "2504", null, "34944", null, "2275", null, "43920", null, "2716", null, "37636", null, "3161", null, "30093", null, "3055", null, "24974", null, "2475", null, "23800", null, "1775", null, "19630", null, "2475", null, "18319", null, "2946", null, "12769", null, "1723", null, "12912", null, "1868", null, "8322", null, "1624", null, "4015", null, "1153", null, "3496", null, "936", null, "45302", null, "3189", null, "11713", null, "1735", null, "83097", null, "4722", null, "34652", null, "2624", null, "192958", null, "5459", null, "317025", null, "6793", null, "309482", null, "6559", null, "297437", null, "6386", null, "59833", null, "3253", null, "52591", null, "2905", null, "41514", null, "2741", null, "15833", null, "1635", null, "35.0", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.6", null, "0.5", null, "5.9", null, "0.7", null, "5.7", null, "0.8", null, "4.9", null, "0.6", null, "6.9", null, "0.6", null, "8.9", null, "0.5", null, "11.2", null, "0.7", null, "9.6", null, "0.8", null, "7.7", null, "0.8", null, "6.4", null, "0.6", null, "6.1", null, "0.4", null, "5.0", null, "0.6", null, "4.7", null, "0.8", null, "3.3", null, "0.4", null, "3.3", null, "0.5", null, "2.1", null, "0.4", null, "1.0", null, "0.3", null, "0.9", null, "0.2", null, "11.5", null, "0.8", null, "3.0", null, "0.4", null, "21.2", null, "1.0", null, "8.8", null, "0.6", null, "49.2", null, "1.0", null, "80.8", null, "1.0", null, "78.8", null, "1.0", null, "75.8", null, "1.0", null, "15.2", null, "0.8", null, "13.4", null, "0.7", null, "10.6", null, "0.7", null, "4.0", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "387812", null, "8471", null, "23501", null, "2242", null, "22718", null, "2682", null, "19963", null, "2386", null, "21878", null, "2536", null, "23735", null, "2361", null, "37175", null, "2376", null, "41871", null, "2185", null, "35944", null, "3037", null, "26989", null, "2879", null, "21622", null, "2148", null, "21926", null, "1750", null, "19586", null, "1903", null, "17659", null, "1864", null, "16865", null, "1989", null, "13420", null, "1948", null, "10576", null, "1767", null, "6522", null, "1324", null, "5862", null, "1334", null, "42681", null, "3464", null, "14347", null, "1853", null, "80529", null, "4365", null, "31266", null, "2546", null, "187592", null, "4927", null, "318911", null, "7336", null, "307283", null, "6848", null, "296280", null, "6615", null, "70904", null, "3668", null, "63715", null, "3462", null, "53245", null, "3091", null, "22960", null, "1875", null, "35.4", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.1", null, "0.6", null, "5.9", null, "0.7", null, "5.1", null, "0.6", null, "5.6", null, "0.6", null, "6.1", null, "0.6", null, "9.6", null, "0.6", null, "10.8", null, "0.6", null, "9.3", null, "0.8", null, "7.0", null, "0.7", null, "5.6", null, "0.5", null, "5.7", null, "0.4", null, "5.1", null, "0.5", null, "4.6", null, "0.5", null, "4.3", null, "0.5", null, "3.5", null, "0.5", null, "2.7", null, "0.5", null, "1.7", null, "0.3", null, "1.5", null, "0.3", null, "11.0", null, "0.8", null, "3.7", null, "0.5", null, "20.8", null, "0.9", null, "8.1", null, "0.6", null, "48.4", null, "1.0", null, "82.2", null, "1.0", null, "79.2", null, "0.9", null, "76.4", null, "1.0", null, "18.3", null, "0.8", null, "16.4", null, "0.8", null, "13.7", null, "0.7", null, "5.9", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "34", "08"], ["5001900US3409", "Congressional District 9 (119th Congress), New Jersey", "772342", null, "13082", null, "47261", null, "3461", null, "44346", null, "3963", null, "50904", null, "4299", null, "46062", null, "2886", null, "49723", null, "3818", null, "49686", null, "3263", null, "53776", null, "2935", null, "54685", null, "4404", null, "52083", null, "4010", null, "48701", null, "3396", null, "44759", null, "3434", null, "54777", null, "4119", null, "46544", null, "3713", null, "40714", null, "3780", null, "33713", null, "3061", null, "23171", null, "2258", null, "15913", null, "2059", null, "15524", null, "2097", null, "95250", null, "5287", null, "28737", null, "2036", null, "171248", null, "6594", null, "67048", null, "4111", null, "306015", null, "7608", null, "621004", null, "10557", null, "601094", null, "10058", null, "575481", null, "10020", null, "175579", null, "6440", null, "156591", null, "5965", null, "129035", null, "4660", null, "54608", null, "3016", null, "38.8", null, "0.7", null, "98.1", null, "2.4", null, "63.6", null, "1.8", null, "27.3", null, "1.2", null, "36.3", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.1", null, "0.4", null, "5.7", null, "0.5", null, "6.6", null, "0.5", null, "6.0", null, "0.4", null, "6.4", null, "0.5", null, "6.4", null, "0.4", null, "7.0", null, "0.4", null, "7.1", null, "0.5", null, "6.7", null, "0.5", null, "6.3", null, "0.4", null, "5.8", null, "0.4", null, "7.1", null, "0.5", null, "6.0", null, "0.5", null, "5.3", null, "0.5", null, "4.4", null, "0.4", null, "3.0", null, "0.3", null, "2.1", null, "0.3", null, "2.0", null, "0.3", null, "12.3", null, "0.6", null, "3.7", null, "0.3", null, "22.2", null, "0.7", null, "8.7", null, "0.5", null, "39.6", null, "0.7", null, "80.4", null, "0.7", null, "77.8", null, "0.7", null, "74.5", null, "0.7", null, "22.7", null, "0.9", null, "20.3", null, "0.8", null, "16.7", null, "0.6", null, "7.1", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.4", null, "-888888888.0", "(X)", "382507", null, "7830", null, "24066", null, "2429", null, "22861", null, "2838", null, "25727", null, "3244", null, "25368", null, "2429", null, "25406", null, "2546", null, "25943", null, "2149", null, "25957", null, "1821", null, "28447", null, "2951", null, "26731", null, "2873", null, "23428", null, "2231", null, "22208", null, "2261", null, "25395", null, "2417", null, "23486", null, "2467", null, "19605", null, "2561", null, "15652", null, "1997", null, "9215", null, "1405", null, "6794", null, "1284", null, "6218", null, "1163", null, "48588", null, "4001", null, "16349", null, "1650", null, "89003", null, "5016", null, "34425", null, "2710", null, "157852", null, "4670", null, "304632", null, "5852", null, "293504", null, "5511", null, "280772", null, "5609", null, "80970", null, "3637", null, "72027", null, "3469", null, "57484", null, "2615", null, "22227", null, "1588", null, "37.5", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.3", null, "0.6", null, "6.0", null, "0.7", null, "6.7", null, "0.8", null, "6.6", null, "0.6", null, "6.6", null, "0.7", null, "6.8", null, "0.6", null, "6.8", null, "0.5", null, "7.4", null, "0.8", null, "7.0", null, "0.7", null, "6.1", null, "0.5", null, "5.8", null, "0.6", null, "6.6", null, "0.6", null, "6.1", null, "0.7", null, "5.1", null, "0.7", null, "4.1", null, "0.5", null, "2.4", null, "0.4", null, "1.8", null, "0.3", null, "1.6", null, "0.3", null, "12.7", null, "0.9", null, "4.3", null, "0.4", null, "23.3", null, "1.0", null, "9.0", null, "0.7", null, "41.3", null, "1.0", null, "79.6", null, "1.0", null, "76.7", null, "1.0", null, "73.4", null, "1.2", null, "21.2", null, "1.1", null, "18.8", null, "1.0", null, "15.0", null, "0.7", null, "5.8", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "389835", null, "8369", null, "23195", null, "2508", null, "21485", null, "2575", null, "25177", null, "2532", null, "20694", null, "1813", null, "24317", null, "2121", null, "23743", null, "2249", null, "27819", null, "1892", null, "26238", null, "2840", null, "25352", null, "2577", null, "25273", null, "2056", null, "22551", null, "1941", null, "29382", null, "2818", null, "23058", null, "2328", null, "21109", null, "1971", null, "18061", null, "2118", null, "13956", null, "1719", null, "9119", null, "1450", null, "9306", null, "1600", null, "46662", null, "2993", null, "12388", null, "1232", null, "82245", null, "4289", null, "32623", null, "2561", null, "148163", null, "4498", null, "316372", null, "6816", null, "307590", null, "6735", null, "294709", null, "6750", null, "94609", null, "3934", null, "84564", null, "3617", null, "71551", null, "2911", null, "32381", null, "2107", null, "40.5", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.9", null, "0.6", null, "5.5", null, "0.6", null, "6.5", null, "0.6", null, "5.3", null, "0.5", null, "6.2", null, "0.5", null, "6.1", null, "0.6", null, "7.1", null, "0.5", null, "6.7", null, "0.7", null, "6.5", null, "0.6", null, "6.5", null, "0.5", null, "5.8", null, "0.5", null, "7.5", null, "0.7", null, "5.9", null, "0.6", null, "5.4", null, "0.5", null, "4.6", null, "0.5", null, "3.6", null, "0.4", null, "2.3", null, "0.4", null, "2.4", null, "0.4", null, "12.0", null, "0.7", null, "3.2", null, "0.3", null, "21.1", null, "0.9", null, "8.4", null, "0.6", null, "38.0", null, "0.8", null, "81.2", null, "0.9", null, "78.9", null, "0.9", null, "75.6", null, "1.0", null, "24.3", null, "1.0", null, "21.7", null, "0.9", null, "18.4", null, "0.7", null, "8.3", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "34", "09"], ["5001900US3410", "Congressional District 10 (119th Congress), New Jersey", "800200", null, "14320", null, "46635", null, "3255", null, "46928", null, "4625", null, "51732", null, "5244", null, "53655", null, "3422", null, "53059", null, "3612", null, "61139", null, "3912", null, "61626", null, "3952", null, "55137", null, "4368", null, "53628", null, "4273", null, "52974", null, "3644", null, "47599", null, "2918", null, "52171", null, "4564", null, "47042", null, "4020", null, "38862", null, "3402", null, "29971", null, "2582", null, "24816", null, "2745", null, "11537", null, "1926", null, "11689", null, "2098", null, "98660", null, "6420", null, "33244", null, "2464", null, "178539", null, "7989", null, "73470", null, "4487", null, "338244", null, "8966", null, "645562", null, "12269", null, "621661", null, "11863", null, "592113", null, "11279", null, "163917", null, "7235", null, "144565", null, "6928", null, "116875", null, "5239", null, "48042", null, "3275", null, "37.3", null, "0.8", null, "94.0", null, "2.3", null, "58.5", null, "2.1", null, "23.2", null, "1.2", null, "35.4", null, "1.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.8", null, "0.4", null, "5.9", null, "0.6", null, "6.5", null, "0.6", null, "6.7", null, "0.4", null, "6.6", null, "0.4", null, "7.6", null, "0.5", null, "7.7", null, "0.5", null, "6.9", null, "0.5", null, "6.7", null, "0.5", null, "6.6", null, "0.4", null, "5.9", null, "0.4", null, "6.5", null, "0.5", null, "5.9", null, "0.5", null, "4.9", null, "0.4", null, "3.7", null, "0.3", null, "3.1", null, "0.3", null, "1.4", null, "0.2", null, "1.5", null, "0.3", null, "12.3", null, "0.7", null, "4.2", null, "0.3", null, "22.3", null, "0.8", null, "9.2", null, "0.5", null, "42.3", null, "0.7", null, "80.7", null, "0.8", null, "77.7", null, "0.8", null, "74.0", null, "0.8", null, "20.5", null, "0.9", null, "18.1", null, "0.9", null, "14.6", null, "0.7", null, "6.0", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.6", null, "-888888888.0", "(X)", "387765", null, "9261", null, "23516", null, "1972", null, "22727", null, "2931", null, "26104", null, "3517", null, "29196", null, "2575", null, "27602", null, "2713", null, "30976", null, "2327", null, "30582", null, "2944", null, "27584", null, "2914", null, "26715", null, "2939", null, "25109", null, "2506", null, "22502", null, "2049", null, "24617", null, "3128", null, "21572", null, "2554", null, "17701", null, "2131", null, "12720", null, "1364", null, "10208", null, "1740", null, "4167", null, "936", null, "4167", null, "1235", null, "48831", null, "4305", null, "18191", null, "1918", null, "90538", null, "5490", null, "38607", null, "2992", null, "172655", null, "5631", null, "310130", null, "7988", null, "297227", null, "7680", null, "282776", null, "7545", null, "70535", null, "4100", null, "61439", null, "3811", null, "48963", null, "3232", null, "18542", null, "1945", null, "35.5", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.1", null, "0.5", null, "5.9", null, "0.7", null, "6.7", null, "0.9", null, "7.5", null, "0.6", null, "7.1", null, "0.7", null, "8.0", null, "0.6", null, "7.9", null, "0.7", null, "7.1", null, "0.8", null, "6.9", null, "0.7", null, "6.5", null, "0.6", null, "5.8", null, "0.5", null, "6.3", null, "0.8", null, "5.6", null, "0.7", null, "4.6", null, "0.6", null, "3.3", null, "0.4", null, "2.6", null, "0.5", null, "1.1", null, "0.2", null, "1.1", null, "0.3", null, "12.6", null, "1.0", null, "4.7", null, "0.5", null, "23.3", null, "1.2", null, "10.0", null, "0.7", null, "44.5", null, "1.0", null, "80.0", null, "1.1", null, "76.7", null, "1.2", null, "72.9", null, "1.1", null, "18.2", null, "1.1", null, "15.8", null, "1.0", null, "12.6", null, "0.9", null, "4.8", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "412435", null, "8127", null, "23119", null, "2364", null, "24201", null, "3368", null, "25628", null, "3708", null, "24459", null, "2381", null, "25457", null, "2710", null, "30163", null, "2429", null, "31044", null, "2175", null, "27553", null, "3291", null, "26913", null, "3137", null, "27865", null, "2011", null, "25097", null, "1953", null, "27554", null, "2539", null, "25470", null, "2488", null, "21161", null, "2311", null, "17251", null, "2027", null, "14608", null, "1847", null, "7370", null, "1546", null, "7522", null, "1443", null, "49829", null, "4043", null, "15053", null, "1691", null, "88001", null, "4638", null, "34863", null, "3286", null, "165589", null, "5326", null, "335432", null, "7215", null, "324434", null, "6667", null, "309337", null, "6156", null, "93382", null, "4250", null, "83126", null, "4152", null, "67912", null, "3110", null, "29500", null, "2012", null, "39.0", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.6", null, "0.6", null, "5.9", null, "0.8", null, "6.2", null, "0.9", null, "5.9", null, "0.5", null, "6.2", null, "0.6", null, "7.3", null, "0.6", null, "7.5", null, "0.5", null, "6.7", null, "0.8", null, "6.5", null, "0.7", null, "6.8", null, "0.5", null, "6.1", null, "0.5", null, "6.7", null, "0.6", null, "6.2", null, "0.6", null, "5.1", null, "0.5", null, "4.2", null, "0.5", null, "3.5", null, "0.5", null, "1.8", null, "0.4", null, "1.8", null, "0.4", null, "12.1", null, "0.9", null, "3.6", null, "0.4", null, "21.3", null, "0.9", null, "8.5", null, "0.8", null, "40.1", null, "1.0", null, "81.3", null, "1.1", null, "78.7", null, "0.9", null, "75.0", null, "0.9", null, "22.6", null, "1.0", null, "20.2", null, "1.0", null, "16.5", null, "0.8", null, "7.2", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "34", "10"], ["5001900US3411", "Congressional District 11 (119th Congress), New Jersey", "800060", null, "10480", null, "41617", null, "2514", null, "44805", null, "3256", null, "52621", null, "3747", null, "50124", null, "3038", null, "47538", null, "3124", null, "43040", null, "2726", null, "48813", null, "2492", null, "53674", null, "4329", null, "59395", null, "3927", null, "50578", null, "2756", null, "55916", null, "3163", null, "55432", null, "3505", null, "49657", null, "3057", null, "47504", null, "3097", null, "33947", null, "2593", null, "27497", null, "2915", null, "20058", null, "2510", null, "17844", null, "2223", null, "97426", null, "3744", null, "30028", null, "2159", null, "169071", null, "5204", null, "67634", null, "3437", null, "302584", null, "6860", null, "649564", null, "9961", null, "630989", null, "9394", null, "602179", null, "8907", null, "196507", null, "5346", null, "175472", null, "5562", null, "146850", null, "4399", null, "65399", null, "2666", null, "41.5", null, "0.6", null, "96.3", null, "2.1", null, "65.3", null, "1.8", null, "30.3", null, "1.2", null, "34.9", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.3", null, "5.6", null, "0.4", null, "6.6", null, "0.5", null, "6.3", null, "0.4", null, "5.9", null, "0.4", null, "5.4", null, "0.3", null, "6.1", null, "0.3", null, "6.7", null, "0.5", null, "7.4", null, "0.5", null, "6.3", null, "0.3", null, "7.0", null, "0.4", null, "6.9", null, "0.4", null, "6.2", null, "0.4", null, "5.9", null, "0.4", null, "4.2", null, "0.3", null, "3.4", null, "0.4", null, "2.5", null, "0.3", null, "2.2", null, "0.3", null, "12.2", null, "0.5", null, "3.8", null, "0.3", null, "21.1", null, "0.6", null, "8.5", null, "0.4", null, "37.8", null, "0.6", null, "81.2", null, "0.6", null, "78.9", null, "0.6", null, "75.3", null, "0.6", null, "24.6", null, "0.7", null, "21.9", null, "0.7", null, "18.4", null, "0.6", null, "8.2", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "0.8", null, "-888888888.0", "(X)", "392581", null, "7076", null, "20410", null, "1724", null, "22708", null, "2577", null, "27622", null, "2649", null, "26065", null, "1862", null, "23906", null, "1968", null, "21221", null, "1571", null, "24889", null, "1706", null, "25297", null, "2905", null, "31079", null, "2540", null, "24894", null, "1892", null, "26951", null, "1917", null, "27838", null, "2412", null, "25005", null, "1784", null, "22340", null, "1795", null, "16167", null, "1378", null, "11893", null, "1629", null, "8095", null, "1572", null, "6201", null, "1181", null, "50330", null, "2601", null, "15439", null, "1471", null, "86179", null, "3808", null, "34532", null, "2355", null, "152457", null, "4735", null, "315130", null, "6600", null, "306402", null, "6209", null, "291399", null, "5819", null, "89701", null, "2871", null, "77689", null, "2845", null, "64696", null, "2284", null, "26189", null, "1687", null, "40.7", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.4", null, "5.8", null, "0.6", null, "7.0", null, "0.7", null, "6.6", null, "0.4", null, "6.1", null, "0.5", null, "5.4", null, "0.4", null, "6.3", null, "0.4", null, "6.4", null, "0.7", null, "7.9", null, "0.6", null, "6.3", null, "0.5", null, "6.9", null, "0.4", null, "7.1", null, "0.6", null, "6.4", null, "0.5", null, "5.7", null, "0.5", null, "4.1", null, "0.3", null, "3.0", null, "0.4", null, "2.1", null, "0.4", null, "1.6", null, "0.3", null, "12.8", null, "0.6", null, "3.9", null, "0.4", null, "22.0", null, "0.9", null, "8.8", null, "0.6", null, "38.8", null, "0.8", null, "80.3", null, "0.8", null, "78.0", null, "0.9", null, "74.2", null, "0.9", null, "22.8", null, "0.8", null, "19.8", null, "0.8", null, "16.5", null, "0.6", null, "6.7", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "407479", null, "6631", null, "21207", null, "1626", null, "22097", null, "2206", null, "24999", null, "2507", null, "24059", null, "2043", null, "23632", null, "2061", null, "21819", null, "2007", null, "23924", null, "1668", null, "28377", null, "2453", null, "28316", null, "2283", null, "25684", null, "1803", null, "28965", null, "1786", null, "27594", null, "2249", null, "24652", null, "2052", null, "25164", null, "2304", null, "17780", null, "2150", null, "15604", null, "1954", null, "11963", null, "1727", null, "11643", null, "1725", null, "47096", null, "2469", null, "14589", null, "1309", null, "82892", null, "3331", null, "33102", null, "2171", null, "150127", null, "4581", null, "334434", null, "6042", null, "324587", null, "5728", null, "310780", null, "5691", null, "106806", null, "3445", null, "97783", null, "3461", null, "82154", null, "2830", null, "39210", null, "1677", null, "42.3", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.4", null, "5.4", null, "0.5", null, "6.1", null, "0.6", null, "5.9", null, "0.5", null, "5.8", null, "0.5", null, "5.4", null, "0.5", null, "5.9", null, "0.4", null, "7.0", null, "0.6", null, "6.9", null, "0.5", null, "6.3", null, "0.4", null, "7.1", null, "0.4", null, "6.8", null, "0.5", null, "6.0", null, "0.5", null, "6.2", null, "0.6", null, "4.4", null, "0.5", null, "3.8", null, "0.5", null, "2.9", null, "0.4", null, "2.9", null, "0.4", null, "11.6", null, "0.6", null, "3.6", null, "0.3", null, "20.3", null, "0.7", null, "8.1", null, "0.5", null, "36.8", null, "0.7", null, "82.1", null, "0.7", null, "79.7", null, "0.7", null, "76.3", null, "0.8", null, "26.2", null, "0.9", null, "24.0", null, "0.9", null, "20.2", null, "0.7", null, "9.6", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "34", "11"], ["5001900US3412", "Congressional District 12 (119th Congress), New Jersey", "808427", null, "8440", null, "46553", null, "3288", null, "48756", null, "4087", null, "57047", null, "5219", null, "54731", null, "3150", null, "48692", null, "3372", null, "50848", null, "3954", null, "48839", null, "3141", null, "54770", null, "4237", null, "59881", null, "4920", null, "56275", null, "3163", null, "52376", null, "3676", null, "47328", null, "3803", null, "48443", null, "3804", null, "43566", null, "3283", null, "32295", null, "2802", null, "25861", null, "2427", null, "16586", null, "2284", null, "15580", null, "2153", null, "105803", null, "6067", null, "34066", null, "2208", null, "186422", null, "8014", null, "69357", null, "3572", null, "317761", null, "6922", null, "644656", null, "8092", null, "622005", null, "8333", null, "591239", null, "8476", null, "182331", null, "6370", null, "159288", null, "5845", null, "133888", null, "4799", null, "58027", null, "2958", null, "39.4", null, "0.7", null, "93.6", null, "2.3", null, "65.6", null, "2.5", null, "27.4", null, "1.2", null, "38.2", null, "2.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.8", null, "0.4", null, "6.0", null, "0.5", null, "7.1", null, "0.6", null, "6.8", null, "0.4", null, "6.0", null, "0.4", null, "6.3", null, "0.5", null, "6.0", null, "0.4", null, "6.8", null, "0.5", null, "7.4", null, "0.6", null, "7.0", null, "0.4", null, "6.5", null, "0.5", null, "5.9", null, "0.5", null, "6.0", null, "0.5", null, "5.4", null, "0.4", null, "4.0", null, "0.4", null, "3.2", null, "0.3", null, "2.1", null, "0.3", null, "1.9", null, "0.3", null, "13.1", null, "0.7", null, "4.2", null, "0.3", null, "23.1", null, "0.9", null, "8.6", null, "0.4", null, "39.3", null, "0.7", null, "79.7", null, "0.8", null, "76.9", null, "0.9", null, "73.1", null, "0.9", null, "22.6", null, "0.8", null, "19.7", null, "0.7", null, "16.6", null, "0.6", null, "7.2", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "0.7", null, "-888888888.0", "(X)", "390826", null, "6894", null, "22012", null, "2499", null, "26679", null, "3155", null, "28216", null, "3405", null, "26811", null, "2673", null, "23696", null, "2494", null, "25248", null, "2563", null, "24670", null, "2089", null, "27170", null, "2709", null, "27518", null, "3095", null, "30236", null, "2273", null, "23757", null, "2478", null, "22822", null, "2236", null, "23474", null, "2241", null, "20619", null, "1776", null, "15092", null, "1693", null, "10262", null, "1292", null, "7443", null, "1376", null, "5101", null, "1205", null, "54895", null, "4056", null, "16844", null, "2137", null, "93751", null, "5424", null, "33663", null, "2604", null, "155113", null, "4985", null, "308485", null, "5939", null, "297075", null, "6030", null, "282570", null, "6125", null, "81991", null, "3629", null, "70427", null, "3292", null, "58517", null, "2696", null, "22806", null, "1566", null, "38.4", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.6", null, "0.6", null, "6.8", null, "0.8", null, "7.2", null, "0.8", null, "6.9", null, "0.7", null, "6.1", null, "0.6", null, "6.5", null, "0.6", null, "6.3", null, "0.5", null, "7.0", null, "0.7", null, "7.0", null, "0.8", null, "7.7", null, "0.6", null, "6.1", null, "0.6", null, "5.8", null, "0.6", null, "6.0", null, "0.6", null, "5.3", null, "0.5", null, "3.9", null, "0.4", null, "2.6", null, "0.3", null, "1.9", null, "0.4", null, "1.3", null, "0.3", null, "14.0", null, "0.9", null, "4.3", null, "0.5", null, "24.0", null, "1.2", null, "8.6", null, "0.6", null, "39.7", null, "1.0", null, "78.9", null, "1.1", null, "76.0", null, "1.2", null, "72.3", null, "1.2", null, "21.0", null, "0.9", null, "18.0", null, "0.8", null, "15.0", null, "0.7", null, "5.8", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "417601", null, "6186", null, "24541", null, "2374", null, "22077", null, "2512", null, "28831", null, "3178", null, "27920", null, "2345", null, "24996", null, "2773", null, "25600", null, "2899", null, "24169", null, "2234", null, "27600", null, "2766", null, "32363", null, "3062", null, "26039", null, "2052", null, "28619", null, "2144", null, "24506", null, "2583", null, "24969", null, "2694", null, "22947", null, "2513", null, "17203", null, "1858", null, "15599", null, "1840", null, "9143", null, "1522", null, "10479", null, "1574", null, "50908", null, "3543", null, "17222", null, "1776", null, "92671", null, "4684", null, "35694", null, "3215", null, "162648", null, "5374", null, "336171", null, "5769", null, "324930", null, "5689", null, "308669", null, "5241", null, "100340", null, "4028", null, "88861", null, "3730", null, "75371", null, "3058", null, "35221", null, "2286", null, "40.5", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.9", null, "0.5", null, "5.3", null, "0.6", null, "6.9", null, "0.7", null, "6.7", null, "0.5", null, "6.0", null, "0.6", null, "6.1", null, "0.7", null, "5.8", null, "0.5", null, "6.6", null, "0.7", null, "7.7", null, "0.7", null, "6.2", null, "0.5", null, "6.9", null, "0.5", null, "5.9", null, "0.6", null, "6.0", null, "0.6", null, "5.5", null, "0.6", null, "4.1", null, "0.4", null, "3.7", null, "0.4", null, "2.2", null, "0.4", null, "2.5", null, "0.4", null, "12.2", null, "0.8", null, "4.1", null, "0.4", null, "22.2", null, "1.0", null, "8.5", null, "0.7", null, "38.9", null, "1.0", null, "80.5", null, "1.0", null, "77.8", null, "1.0", null, "73.9", null, "1.0", null, "24.0", null, "1.0", null, "21.3", null, "0.9", null, "18.0", null, "0.8", null, "8.4", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "34", "12"], ["5001900US3501", "Congressional District 1 (119th Congress), New Mexico", "711081", null, "12828", null, "33295", null, "2643", null, "34730", null, "3205", null, "42382", null, "3922", null, "40761", null, "2905", null, "41278", null, "3230", null, "45136", null, "2772", null, "53848", null, "2280", null, "51046", null, "4228", null, "49475", null, "4419", null, "39891", null, "2969", null, "39187", null, "2320", null, "41373", null, "2990", null, "48398", null, "3393", null, "44774", null, "2787", null, "42516", null, "2896", null, "29253", null, "2279", null, "18787", null, "2288", null, "14951", null, "1713", null, "77112", null, "4354", null, "25059", null, "1856", null, "135466", null, "6541", null, "56980", null, "3393", null, "281544", null, "7684", null, "590864", null, "9620", null, "575615", null, "9581", null, "552705", null, "9019", null, "198679", null, "5109", null, "180180", null, "4972", null, "150281", null, "3500", null, "62991", null, "2244", null, "41.3", null, "0.7", null, "99.0", null, "2.1", null, "67.2", null, "1.9", null, "35.3", null, "1.1", null, "31.8", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.7", null, "0.3", null, "4.9", null, "0.4", null, "6.0", null, "0.5", null, "5.7", null, "0.4", null, "5.8", null, "0.4", null, "6.3", null, "0.4", null, "7.6", null, "0.3", null, "7.2", null, "0.6", null, "7.0", null, "0.6", null, "5.6", null, "0.4", null, "5.5", null, "0.3", null, "5.8", null, "0.4", null, "6.8", null, "0.5", null, "6.3", null, "0.4", null, "6.0", null, "0.4", null, "4.1", null, "0.3", null, "2.6", null, "0.3", null, "2.1", null, "0.2", null, "10.8", null, "0.5", null, "3.5", null, "0.3", null, "19.1", null, "0.7", null, "8.0", null, "0.4", null, "39.6", null, "0.6", null, "83.1", null, "0.7", null, "80.9", null, "0.7", null, "77.7", null, "0.8", null, "27.9", null, "0.8", null, "25.3", null, "0.7", null, "21.1", null, "0.5", null, "8.9", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.4", null, "-888888888.0", "(X)", "353744", null, "7632", null, "19167", null, "2198", null, "18622", null, "2370", null, "21063", null, "2522", null, "21594", null, "1921", null, "20828", null, "2462", null, "22283", null, "1775", null, "26510", null, "1333", null, "26830", null, "2754", null, "25563", null, "2874", null, "20455", null, "2051", null, "18789", null, "1541", null, "19042", null, "2006", null, "25371", null, "2137", null, "20347", null, "1791", null, "19565", null, "1640", null, "13200", null, "1679", null, "9169", null, "1480", null, "5346", null, "985", null, "39685", null, "2855", null, "13321", null, "1388", null, "72173", null, "4220", null, "29101", null, "2635", null, "143608", null, "4936", null, "288890", null, "6004", null, "281571", null, "6186", null, "269493", null, "5854", null, "92998", null, "3232", null, "82921", null, "3164", null, "67627", null, "1966", null, "27715", null, "1312", null, "40.0", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.6", null, "5.3", null, "0.6", null, "6.0", null, "0.7", null, "6.1", null, "0.5", null, "5.9", null, "0.7", null, "6.3", null, "0.5", null, "7.5", null, "0.4", null, "7.6", null, "0.8", null, "7.2", null, "0.8", null, "5.8", null, "0.6", null, "5.3", null, "0.4", null, "5.4", null, "0.6", null, "7.2", null, "0.6", null, "5.8", null, "0.5", null, "5.5", null, "0.5", null, "3.7", null, "0.5", null, "2.6", null, "0.4", null, "1.5", null, "0.3", null, "11.2", null, "0.7", null, "3.8", null, "0.4", null, "20.4", null, "1.0", null, "8.2", null, "0.7", null, "40.6", null, "1.0", null, "81.7", null, "1.0", null, "79.6", null, "1.0", null, "76.2", null, "1.1", null, "26.3", null, "0.9", null, "23.4", null, "0.9", null, "19.1", null, "0.6", null, "7.8", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "357337", null, "7280", null, "14128", null, "1454", null, "16108", null, "2247", null, "21319", null, "3071", null, "19167", null, "2325", null, "20450", null, "1812", null, "22853", null, "1856", null, "27338", null, "1764", null, "24216", null, "2479", null, "23912", null, "2422", null, "19436", null, "1929", null, "20398", null, "1611", null, "22331", null, "2189", null, "23027", null, "2469", null, "24427", null, "1928", null, "22951", null, "1857", null, "16053", null, "1581", null, "9618", null, "1487", null, "9605", null, "1491", null, "37427", null, "2891", null, "11738", null, "1560", null, "63293", null, "3834", null, "27879", null, "2048", null, "137936", null, "4612", null, "301974", null, "5682", null, "294044", null, "5498", null, "283212", null, "5264", null, "105681", null, "3119", null, "97259", null, "3146", null, "82654", null, "2359", null, "35276", null, "1472", null, "42.8", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.0", null, "0.4", null, "4.5", null, "0.6", null, "6.0", null, "0.8", null, "5.4", null, "0.6", null, "5.7", null, "0.5", null, "6.4", null, "0.5", null, "7.7", null, "0.5", null, "6.8", null, "0.7", null, "6.7", null, "0.7", null, "5.4", null, "0.6", null, "5.7", null, "0.4", null, "6.2", null, "0.6", null, "6.4", null, "0.7", null, "6.8", null, "0.5", null, "6.4", null, "0.5", null, "4.5", null, "0.5", null, "2.7", null, "0.4", null, "2.7", null, "0.4", null, "10.5", null, "0.7", null, "3.3", null, "0.4", null, "17.7", null, "0.9", null, "7.8", null, "0.5", null, "38.6", null, "0.9", null, "84.5", null, "0.8", null, "82.3", null, "0.9", null, "79.3", null, "0.9", null, "29.6", null, "0.9", null, "27.2", null, "0.8", null, "23.1", null, "0.7", null, "9.9", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "35", "01"], ["5001900US3502", "Congressional District 2 (119th Congress), New Mexico", "710491", null, "13812", null, "35011", null, "2522", null, "37949", null, "4041", null, "51578", null, "4574", null, "51844", null, "3656", null, "61163", null, "4207", null, "45239", null, "3123", null, "41696", null, "3168", null, "50193", null, "4776", null, "42375", null, "4006", null, "42249", null, "3369", null, "39502", null, "2806", null, "38130", null, "3217", null, "42205", null, "3377", null, "38025", null, "2886", null, "37427", null, "2707", null, "27140", null, "2176", null, "16897", null, "2036", null, "11868", null, "1750", null, "89527", null, "5105", null, "31197", null, "2477", null, "155735", null, "7087", null, "81810", null, "4566", null, "292510", null, "8661", null, "574814", null, "10343", null, "554756", null, "10411", null, "521849", null, "10454", null, "173562", null, "4509", null, "155991", null, "4021", null, "131357", null, "3749", null, "55905", null, "2415", null, "38.0", null, "0.7", null, "101.9", null, "2.8", null, "67.8", null, "2.0", null, "31.0", null, "1.1", null, "36.8", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.9", null, "0.3", null, "5.3", null, "0.6", null, "7.3", null, "0.6", null, "7.3", null, "0.5", null, "8.6", null, "0.6", null, "6.4", null, "0.4", null, "5.9", null, "0.4", null, "7.1", null, "0.6", null, "6.0", null, "0.6", null, "5.9", null, "0.5", null, "5.6", null, "0.4", null, "5.4", null, "0.5", null, "5.9", null, "0.5", null, "5.4", null, "0.4", null, "5.3", null, "0.4", null, "3.8", null, "0.3", null, "2.4", null, "0.3", null, "1.7", null, "0.3", null, "12.6", null, "0.6", null, "4.4", null, "0.3", null, "21.9", null, "0.8", null, "11.5", null, "0.6", null, "41.2", null, "0.7", null, "80.9", null, "0.7", null, "78.1", null, "0.8", null, "73.4", null, "0.9", null, "24.4", null, "0.6", null, "22.0", null, "0.6", null, "18.5", null, "0.5", null, "7.9", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "2.2", null, "-888888888.0", "(X)", "358563", null, "8333", null, "19367", null, "1707", null, "20385", null, "3186", null, "25987", null, "3294", null, "25176", null, "2608", null, "32237", null, "2996", null, "24886", null, "2586", null, "21033", null, "1854", null, "27805", null, "3262", null, "21544", null, "3035", null, "20282", null, "2455", null, "20737", null, "2187", null, "17944", null, "2364", null, "19445", null, "2214", null, "17331", null, "1786", null, "18186", null, "1852", null, "11897", null, "1369", null, "8764", null, "1565", null, "5557", null, "1041", null, "46372", null, "3600", null, "15042", null, "2101", null, "80781", null, "4973", null, "42371", null, "3000", null, "152681", null, "5945", null, "288240", null, "6416", null, "277782", null, "6433", null, "260513", null, "6754", null, "81180", null, "2932", null, "74433", null, "2707", null, "61735", null, "2101", null, "26218", null, "1595", null, "37.0", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.5", null, "5.7", null, "0.9", null, "7.2", null, "0.9", null, "7.0", null, "0.7", null, "9.0", null, "0.8", null, "6.9", null, "0.7", null, "5.9", null, "0.5", null, "7.8", null, "0.8", null, "6.0", null, "0.8", null, "5.7", null, "0.7", null, "5.8", null, "0.6", null, "5.0", null, "0.7", null, "5.4", null, "0.6", null, "4.8", null, "0.5", null, "5.1", null, "0.5", null, "3.3", null, "0.4", null, "2.4", null, "0.4", null, "1.5", null, "0.3", null, "12.9", null, "0.9", null, "4.2", null, "0.6", null, "22.5", null, "1.1", null, "11.8", null, "0.8", null, "42.6", null, "1.2", null, "80.4", null, "1.1", null, "77.5", null, "1.1", null, "72.7", null, "1.2", null, "22.6", null, "0.8", null, "20.8", null, "0.7", null, "17.2", null, "0.6", null, "7.3", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "351928", null, "8490", null, "15644", null, "1623", null, "17564", null, "2544", null, "25591", null, "2897", null, "26668", null, "2541", null, "28926", null, "2581", null, "20353", null, "1702", null, "20663", null, "2120", null, "22388", null, "2772", null, "20831", null, "2539", null, "21967", null, "1774", null, "18765", null, "1765", null, "20186", null, "2003", null, "22760", null, "2242", null, "20694", null, "2102", null, "19241", null, "1845", null, "15243", null, "1284", null, "8133", null, "1205", null, "6311", null, "1158", null, "43155", null, "3133", null, "16155", null, "1570", null, "74954", null, "4131", null, "39439", null, "2993", null, "139829", null, "5019", null, "286574", null, "6365", null, "276974", null, "6097", null, "261336", null, "5787", null, "92382", null, "2829", null, "81558", null, "2662", null, "69622", null, "2617", null, "29687", null, "1444", null, "39.6", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.4", null, "0.4", null, "5.0", null, "0.7", null, "7.3", null, "0.8", null, "7.6", null, "0.7", null, "8.2", null, "0.7", null, "5.8", null, "0.5", null, "5.9", null, "0.6", null, "6.4", null, "0.7", null, "5.9", null, "0.7", null, "6.2", null, "0.5", null, "5.3", null, "0.5", null, "5.7", null, "0.6", null, "6.5", null, "0.6", null, "5.9", null, "0.6", null, "5.5", null, "0.5", null, "4.3", null, "0.3", null, "2.3", null, "0.4", null, "1.8", null, "0.3", null, "12.3", null, "0.8", null, "4.6", null, "0.4", null, "21.3", null, "0.9", null, "11.2", null, "0.8", null, "39.7", null, "0.9", null, "81.4", null, "0.9", null, "78.7", null, "0.9", null, "74.3", null, "1.1", null, "26.3", null, "0.7", null, "23.2", null, "0.7", null, "19.8", null, "0.7", null, "8.4", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "35", "02"], ["5001900US3503", "Congressional District 3 (119th Congress), New Mexico", "708684", null, "5494", null, "35050", null, "1792", null, "39931", null, "3370", null, "46603", null, "3331", null, "50371", null, "2663", null, "42794", null, "3270", null, "41652", null, "2417", null, "47425", null, "2860", null, "48621", null, "4203", null, "45645", null, "3853", null, "41496", null, "3176", null, "36808", null, "1937", null, "37805", null, "2713", null, "46888", null, "3294", null, "41704", null, "2445", null, "42940", null, "2799", null, "29850", null, "2238", null, "18962", null, "1761", null, "14139", null, "1389", null, "86534", null, "3149", null, "31052", null, "1652", null, "152636", null, "3202", null, "62113", null, "3105", null, "276508", null, "4800", null, "578256", null, "5364", null, "556048", null, "4793", null, "527259", null, "5661", null, "194483", null, "4080", null, "177184", null, "3498", null, "147595", null, "2423", null, "62951", null, "1970", null, "40.2", null, "0.6", null, "99.3", null, "1.6", null, "73.5", null, "1.3", null, "36.1", null, "0.8", null, "37.4", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.9", null, "0.2", null, "5.6", null, "0.5", null, "6.6", null, "0.5", null, "7.1", null, "0.4", null, "6.0", null, "0.5", null, "5.9", null, "0.3", null, "6.7", null, "0.4", null, "6.9", null, "0.6", null, "6.4", null, "0.5", null, "5.9", null, "0.4", null, "5.2", null, "0.3", null, "5.3", null, "0.4", null, "6.6", null, "0.5", null, "5.9", null, "0.3", null, "6.1", null, "0.4", null, "4.2", null, "0.3", null, "2.7", null, "0.2", null, "2.0", null, "0.2", null, "12.2", null, "0.4", null, "4.4", null, "0.2", null, "21.5", null, "0.4", null, "8.8", null, "0.4", null, "39.0", null, "0.6", null, "81.6", null, "0.4", null, "78.5", null, "0.4", null, "74.4", null, "0.6", null, "27.4", null, "0.5", null, "25.0", null, "0.5", null, "20.8", null, "0.3", null, "8.9", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "2.2", null, "-888888888.0", "(X)", "353093", null, "3803", null, "17239", null, "1539", null, "20540", null, "2144", null, "23683", null, "2073", null, "26636", null, "2048", null, "22264", null, "2148", null, "21559", null, "1638", null, "26479", null, "1965", null, "24545", null, "2518", null, "23439", null, "2487", null, "19763", null, "1707", null, "18209", null, "1485", null, "17466", null, "1761", null, "23826", null, "1934", null, "20106", null, "1529", null, "20781", null, "1700", null, "13366", null, "1419", null, "8401", null, "1159", null, "4791", null, "807", null, "44223", null, "2111", null, "16398", null, "1510", null, "77860", null, "2450", null, "32502", null, "1944", null, "144922", null, "2942", null, "286966", null, "3608", null, "275233", null, "3535", null, "260513", null, "3995", null, "91271", null, "2440", null, "82087", null, "2263", null, "67445", null, "1614", null, "26558", null, "1310", null, "38.6", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.9", null, "0.4", null, "5.8", null, "0.6", null, "6.7", null, "0.6", null, "7.5", null, "0.6", null, "6.3", null, "0.6", null, "6.1", null, "0.5", null, "7.5", null, "0.6", null, "7.0", null, "0.7", null, "6.6", null, "0.7", null, "5.6", null, "0.5", null, "5.2", null, "0.4", null, "4.9", null, "0.5", null, "6.7", null, "0.5", null, "5.7", null, "0.4", null, "5.9", null, "0.5", null, "3.8", null, "0.4", null, "2.4", null, "0.3", null, "1.4", null, "0.2", null, "12.5", null, "0.6", null, "4.6", null, "0.4", null, "22.1", null, "0.6", null, "9.2", null, "0.5", null, "41.0", null, "0.7", null, "81.3", null, "0.6", null, "77.9", null, "0.6", null, "73.8", null, "0.8", null, "25.8", null, "0.7", null, "23.2", null, "0.6", null, "19.1", null, "0.5", null, "7.5", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "355591", null, "4135", null, "17811", null, "1664", null, "19391", null, "2512", null, "22920", null, "2563", null, "23735", null, "2180", null, "20530", null, "1987", null, "20093", null, "1654", null, "20946", null, "1846", null, "24076", null, "2466", null, "22206", null, "2325", null, "21733", null, "2016", null, "18599", null, "1302", null, "20339", null, "1874", null, "23062", null, "2054", null, "21598", null, "1669", null, "22159", null, "1898", null, "16484", null, "1493", null, "10561", null, "1280", null, "9348", null, "1188", null, "42311", null, "1858", null, "14654", null, "1490", null, "74776", null, "2577", null, "29611", null, "1690", null, "131586", null, "3269", null, "291290", null, "3681", null, "280815", null, "3185", null, "266746", null, "3391", null, "103212", null, "2434", null, "95097", null, "2119", null, "80150", null, "1431", null, "36393", null, "1222", null, "41.9", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.0", null, "0.4", null, "5.5", null, "0.7", null, "6.4", null, "0.7", null, "6.7", null, "0.6", null, "5.8", null, "0.6", null, "5.7", null, "0.5", null, "5.9", null, "0.5", null, "6.8", null, "0.7", null, "6.2", null, "0.7", null, "6.1", null, "0.6", null, "5.2", null, "0.3", null, "5.7", null, "0.5", null, "6.5", null, "0.6", null, "6.1", null, "0.5", null, "6.2", null, "0.5", null, "4.6", null, "0.4", null, "3.0", null, "0.4", null, "2.6", null, "0.3", null, "11.9", null, "0.5", null, "4.1", null, "0.4", null, "21.0", null, "0.6", null, "8.3", null, "0.5", null, "37.0", null, "0.8", null, "81.9", null, "0.6", null, "79.0", null, "0.6", null, "75.0", null, "0.7", null, "29.0", null, "0.6", null, "26.7", null, "0.6", null, "22.5", null, "0.4", null, "10.2", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "35", "03"], ["5001900US3601", "Congressional District 1 (119th Congress), New York", "782097", null, "11091", null, "35825", null, "3345", null, "45345", null, "4893", null, "40999", null, "3395", null, "52536", null, "3065", null, "49882", null, "3277", null, "47508", null, "3164", null, "39867", null, "3254", null, "48031", null, "4179", null, "44018", null, "4003", null, "44822", null, "3072", null, "48743", null, "2863", null, "57658", null, "4060", null, "59155", null, "3330", null, "49206", null, "3503", null, "43045", null, "3161", null, "33815", null, "2453", null, "19538", null, "2160", null, "22104", null, "2313", null, "86344", null, "5194", null, "29699", null, "2585", null, "151868", null, "7708", null, "72719", null, "3568", null, "281842", null, "7560", null, "648909", null, "8427", null, "630229", null, "8140", null, "598266", null, "7626", null, "226863", null, "5736", null, "201509", null, "5278", null, "167708", null, "4805", null, "75457", null, "2610", null, "43.5", null, "1.0", null, "97.4", null, "2.3", null, "69.1", null, "2.2", null, "36.3", null, "1.4", null, "32.8", null, "1.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.6", null, "0.4", null, "5.8", null, "0.6", null, "5.2", null, "0.4", null, "6.7", null, "0.4", null, "6.4", null, "0.4", null, "6.1", null, "0.4", null, "5.1", null, "0.4", null, "6.1", null, "0.5", null, "5.6", null, "0.5", null, "5.7", null, "0.4", null, "6.2", null, "0.4", null, "7.4", null, "0.5", null, "7.6", null, "0.4", null, "6.3", null, "0.5", null, "5.5", null, "0.4", null, "4.3", null, "0.3", null, "2.5", null, "0.3", null, "2.8", null, "0.3", null, "11.0", null, "0.6", null, "3.8", null, "0.3", null, "19.4", null, "0.8", null, "9.3", null, "0.4", null, "36.0", null, "0.7", null, "83.0", null, "0.8", null, "80.6", null, "0.8", null, "76.5", null, "0.9", null, "29.0", null, "0.8", null, "25.8", null, "0.8", null, "21.4", null, "0.7", null, "9.6", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "2.1", null, "-888888888.0", "(X)", "385885", null, "6645", null, "18490", null, "2187", null, "23525", null, "3226", null, "20292", null, "2275", null, "28601", null, "2210", null, "26750", null, "2045", null, "22914", null, "2231", null, "19895", null, "2066", null, "25336", null, "2634", null, "20897", null, "2335", null, "22903", null, "1842", null, "23351", null, "1707", null, "27296", null, "2483", null, "28820", null, "2262", null, "24059", null, "2251", null, "20528", null, "1828", null, "15067", null, "1483", null, "8054", null, "1326", null, "9107", null, "1220", null, "43817", null, "3447", null, "15386", null, "1868", null, "77693", null, "4854", null, "39965", null, "2553", null, "144393", null, "5043", null, "317416", null, "5097", null, "308192", null, "4953", null, "290855", null, "4640", null, "105635", null, "2903", null, "91848", null, "2687", null, "76815", null, "2715", null, "32228", null, "1577", null, "41.4", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.8", null, "0.5", null, "6.1", null, "0.8", null, "5.3", null, "0.6", null, "7.4", null, "0.5", null, "6.9", null, "0.5", null, "5.9", null, "0.6", null, "5.2", null, "0.5", null, "6.6", null, "0.7", null, "5.4", null, "0.6", null, "5.9", null, "0.5", null, "6.1", null, "0.4", null, "7.1", null, "0.7", null, "7.5", null, "0.6", null, "6.2", null, "0.6", null, "5.3", null, "0.5", null, "3.9", null, "0.4", null, "2.1", null, "0.3", null, "2.4", null, "0.3", null, "11.4", null, "0.8", null, "4.0", null, "0.5", null, "20.1", null, "1.1", null, "10.4", null, "0.6", null, "37.4", null, "1.0", null, "82.3", null, "1.1", null, "79.9", null, "1.1", null, "75.4", null, "1.0", null, "27.4", null, "0.8", null, "23.8", null, "0.8", null, "19.9", null, "0.8", null, "8.4", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "396212", null, "7722", null, "17335", null, "2089", null, "21820", null, "3043", null, "20707", null, "2290", null, "23935", null, "1894", null, "23132", null, "2175", null, "24594", null, "2318", null, "19972", null, "2026", null, "22695", null, "2447", null, "23121", null, "2388", null, "21919", null, "1852", null, "25392", null, "1943", null, "30362", null, "2302", null, "30335", null, "2271", null, "25147", null, "2171", null, "22517", null, "2078", null, "18748", null, "1786", null, "11484", null, "1656", null, "12997", null, "1686", null, "42527", null, "3356", null, "14313", null, "1494", null, "74175", null, "4766", null, "32754", null, "2626", null, "137449", null, "4887", null, "331493", null, "5960", null, "322037", null, "5894", null, "307411", null, "5303", null, "121228", null, "3811", null, "109661", null, "3696", null, "90893", null, "3011", null, "43229", null, "1874", null, "45.2", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.4", null, "0.5", null, "5.5", null, "0.7", null, "5.2", null, "0.6", null, "6.0", null, "0.5", null, "5.8", null, "0.5", null, "6.2", null, "0.6", null, "5.0", null, "0.5", null, "5.7", null, "0.6", null, "5.8", null, "0.6", null, "5.5", null, "0.5", null, "6.4", null, "0.5", null, "7.7", null, "0.6", null, "7.7", null, "0.6", null, "6.3", null, "0.6", null, "5.7", null, "0.5", null, "4.7", null, "0.5", null, "2.9", null, "0.4", null, "3.3", null, "0.4", null, "10.7", null, "0.7", null, "3.6", null, "0.4", null, "18.7", null, "1.0", null, "8.3", null, "0.6", null, "34.7", null, "0.9", null, "83.7", null, "1.0", null, "81.3", null, "1.0", null, "77.6", null, "1.1", null, "30.6", null, "1.1", null, "27.7", null, "1.0", null, "22.9", null, "0.8", null, "10.9", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "36", "01"], ["5001900US3602", "Congressional District 2 (119th Congress), New York", "777625", null, "11571", null, "46934", null, "3407", null, "40801", null, "3709", null, "50005", null, "4063", null, "46593", null, "3293", null, "49729", null, "3367", null, "48125", null, "3305", null, "58127", null, "3792", null, "51117", null, "3559", null, "45923", null, "4089", null, "47790", null, "3559", null, "53409", null, "3308", null, "56515", null, "3845", null, "55651", null, "3987", null, "43517", null, "3395", null, "31200", null, "2723", null, "23501", null, "2154", null, "14820", null, "1871", null, "13868", null, "2109", null, "90806", null, "5090", null, "29064", null, "2731", null, "166804", null, "7649", null, "67258", null, "3773", null, "299614", null, "7823", null, "630267", null, "8706", null, "610821", null, "8453", null, "583999", null, "8186", null, "182557", null, "6828", null, "159677", null, "6494", null, "126906", null, "5317", null, "52189", null, "3037", null, "39.7", null, "0.7", null, "99.8", null, "2.4", null, "60.7", null, "2.1", null, "26.2", null, "1.3", null, "34.5", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.0", null, "0.4", null, "5.2", null, "0.5", null, "6.4", null, "0.5", null, "6.0", null, "0.4", null, "6.4", null, "0.4", null, "6.2", null, "0.4", null, "7.5", null, "0.5", null, "6.6", null, "0.4", null, "5.9", null, "0.5", null, "6.1", null, "0.4", null, "6.9", null, "0.4", null, "7.3", null, "0.5", null, "7.2", null, "0.5", null, "5.6", null, "0.4", null, "4.0", null, "0.4", null, "3.0", null, "0.3", null, "1.9", null, "0.2", null, "1.8", null, "0.3", null, "11.7", null, "0.6", null, "3.7", null, "0.3", null, "21.5", null, "0.8", null, "8.6", null, "0.5", null, "38.5", null, "0.7", null, "81.1", null, "0.8", null, "78.5", null, "0.8", null, "75.1", null, "0.8", null, "23.5", null, "0.9", null, "20.5", null, "0.9", null, "16.3", null, "0.7", null, "6.7", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "2.3", null, "-888888888.0", "(X)", "388439", null, "7528", null, "23605", null, "2297", null, "21760", null, "3082", null, "25648", null, "3169", null, "22603", null, "2383", null, "24921", null, "2130", null, "25001", null, "2156", null, "30369", null, "2288", null, "26610", null, "2344", null, "23244", null, "2773", null, "23363", null, "2104", null, "27660", null, "2022", null, "28725", null, "2586", null, "28446", null, "2521", null, "22149", null, "2157", null, "13915", null, "1594", null, "9891", null, "1408", null, "6161", null, "1280", null, "4368", null, "1124", null, "47408", null, "3542", null, "14755", null, "2021", null, "85768", null, "4980", null, "32769", null, "2778", null, "152748", null, "5016", null, "312779", null, "5419", null, "302671", null, "5208", null, "289919", null, "5207", null, "84930", null, "3864", null, "73008", null, "3537", null, "56484", null, "2947", null, "20420", null, "1830", null, "38.5", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.1", null, "0.5", null, "5.6", null, "0.8", null, "6.6", null, "0.8", null, "5.8", null, "0.6", null, "6.4", null, "0.5", null, "6.4", null, "0.6", null, "7.8", null, "0.6", null, "6.9", null, "0.6", null, "6.0", null, "0.7", null, "6.0", null, "0.5", null, "7.1", null, "0.5", null, "7.4", null, "0.7", null, "7.3", null, "0.6", null, "5.7", null, "0.6", null, "3.6", null, "0.4", null, "2.5", null, "0.4", null, "1.6", null, "0.3", null, "1.1", null, "0.3", null, "12.2", null, "0.8", null, "3.8", null, "0.5", null, "22.1", null, "1.0", null, "8.4", null, "0.7", null, "39.3", null, "1.0", null, "80.5", null, "1.0", null, "77.9", null, "1.0", null, "74.6", null, "1.1", null, "21.9", null, "1.0", null, "18.8", null, "0.9", null, "14.5", null, "0.8", null, "5.3", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "389186", null, "7441", null, "23329", null, "2422", null, "19041", null, "2312", null, "24357", null, "2602", null, "23990", null, "2009", null, "24808", null, "2290", null, "23124", null, "2446", null, "27758", null, "2262", null, "24507", null, "2579", null, "22679", null, "2366", null, "24427", null, "2112", null, "25749", null, "2114", null, "27790", null, "2221", null, "27205", null, "2297", null, "21368", null, "2076", null, "17285", null, "1943", null, "13610", null, "1677", null, "8659", null, "1314", null, "9500", null, "1512", null, "43398", null, "3247", null, "14309", null, "1543", null, "81036", null, "4657", null, "34489", null, "2711", null, "146866", null, "4906", null, "317488", null, "5878", null, "308150", null, "5889", null, "294080", null, "5389", null, "97627", null, "3900", null, "86669", null, "3836", null, "70422", null, "3198", null, "31769", null, "2129", null, "40.9", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.0", null, "0.6", null, "4.9", null, "0.6", null, "6.3", null, "0.6", null, "6.2", null, "0.5", null, "6.4", null, "0.6", null, "5.9", null, "0.6", null, "7.1", null, "0.6", null, "6.3", null, "0.6", null, "5.8", null, "0.6", null, "6.3", null, "0.5", null, "6.6", null, "0.5", null, "7.1", null, "0.6", null, "7.0", null, "0.6", null, "5.5", null, "0.5", null, "4.4", null, "0.5", null, "3.5", null, "0.4", null, "2.2", null, "0.3", null, "2.4", null, "0.4", null, "11.2", null, "0.7", null, "3.7", null, "0.4", null, "20.8", null, "1.0", null, "8.9", null, "0.7", null, "37.7", null, "0.9", null, "81.6", null, "1.0", null, "79.2", null, "1.0", null, "75.6", null, "1.0", null, "25.1", null, "1.0", null, "22.3", null, "1.0", null, "18.1", null, "0.8", null, "8.2", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "36", "02"], ["5001900US3603", "Congressional District 3 (119th Congress), New York", "775796", null, "17272", null, "34119", null, "2844", null, "40719", null, "3891", null, "52189", null, "4206", null, "42561", null, "3276", null, "41724", null, "3804", null, "38845", null, "2994", null, "43962", null, "3673", null, "45605", null, "4631", null, "47507", null, "3797", null, "47157", null, "4184", null, "50605", null, "3910", null, "57270", null, "4846", null, "57200", null, "3944", null, "53137", null, "3727", null, "41404", null, "2774", null, "33828", null, "3020", null, "24143", null, "2890", null, "23821", null, "2259", null, "92908", null, "5779", null, "27976", null, "2406", null, "155003", null, "7804", null, "56309", null, "4534", null, "260204", null, "10074", null, "639453", null, "14789", null, "620793", null, "14578", null, "597869", null, "14278", null, "233533", null, "8207", null, "211944", null, "7883", null, "176333", null, "7208", null, "81792", null, "4643", null, "45.1", null, "0.9", null, "96.4", null, "2.8", null, "74.5", null, "2.8", null, "39.7", null, "2.2", null, "34.9", null, "1.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.4", null, "0.3", null, "5.2", null, "0.5", null, "6.7", null, "0.5", null, "5.5", null, "0.4", null, "5.4", null, "0.5", null, "5.0", null, "0.4", null, "5.7", null, "0.5", null, "5.9", null, "0.6", null, "6.1", null, "0.5", null, "6.1", null, "0.5", null, "6.5", null, "0.5", null, "7.4", null, "0.6", null, "7.4", null, "0.5", null, "6.8", null, "0.5", null, "5.3", null, "0.4", null, "4.4", null, "0.4", null, "3.1", null, "0.4", null, "3.1", null, "0.3", null, "12.0", null, "0.7", null, "3.6", null, "0.3", null, "20.0", null, "0.8", null, "7.3", null, "0.5", null, "33.5", null, "0.8", null, "82.4", null, "0.9", null, "80.0", null, "0.8", null, "77.1", null, "0.8", null, "30.1", null, "1.1", null, "27.3", null, "1.1", null, "22.7", null, "1.0", null, "10.5", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.9", null, "-888888888.0", "(X)", "380729", null, "10526", null, "18226", null, "1980", null, "20960", null, "2630", null, "27678", null, "2861", null, "23023", null, "2650", null, "20785", null, "2258", null, "21019", null, "2118", null, "22331", null, "2497", null, "23634", null, "2813", null, "21508", null, "2482", null, "22318", null, "2485", null, "23630", null, "2295", null, "27114", null, "2684", null, "27888", null, "2822", null, "26257", null, "2431", null, "19939", null, "2201", null, "14719", null, "1866", null, "10437", null, "1583", null, "9263", null, "1569", null, "48638", null, "3542", null, "14308", null, "1841", null, "81172", null, "5057", null, "29500", null, "3062", null, "132300", null, "6576", null, "309604", null, "9372", null, "299557", null, "8864", null, "287499", null, "8532", null, "108503", null, "5202", null, "98157", null, "4931", null, "80615", null, "4281", null, "34419", null, "2443", null, "43.2", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.8", null, "0.5", null, "5.5", null, "0.7", null, "7.3", null, "0.7", null, "6.0", null, "0.7", null, "5.5", null, "0.5", null, "5.5", null, "0.6", null, "5.9", null, "0.6", null, "6.2", null, "0.7", null, "5.6", null, "0.6", null, "5.9", null, "0.6", null, "6.2", null, "0.6", null, "7.1", null, "0.7", null, "7.3", null, "0.7", null, "6.9", null, "0.7", null, "5.2", null, "0.6", null, "3.9", null, "0.5", null, "2.7", null, "0.4", null, "2.4", null, "0.4", null, "12.8", null, "0.8", null, "3.8", null, "0.5", null, "21.3", null, "1.1", null, "7.7", null, "0.7", null, "34.7", null, "1.1", null, "81.3", null, "1.2", null, "78.7", null, "1.1", null, "75.5", null, "1.2", null, "28.5", null, "1.4", null, "25.8", null, "1.3", null, "21.2", null, "1.2", null, "9.0", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "395067", null, "10068", null, "15893", null, "1876", null, "19759", null, "2736", null, "24511", null, "2577", null, "19538", null, "1959", null, "20939", null, "2800", null, "17826", null, "2080", null, "21631", null, "2338", null, "21971", null, "2521", null, "25999", null, "2470", null, "24839", null, "2465", null, "26975", null, "2296", null, "30156", null, "2914", null, "29312", null, "2408", null, "26880", null, "2373", null, "21465", null, "1728", null, "19109", null, "2158", null, "13706", null, "2300", null, "14558", null, "1471", null, "44270", null, "3847", null, "13668", null, "1625", null, "73831", null, "4731", null, "26809", null, "2862", null, "127904", null, "5919", null, "329849", null, "8465", null, "321236", null, "8497", null, "310370", null, "8318", null, "125030", null, "4571", null, "113787", null, "4323", null, "95718", null, "4085", null, "47373", null, "3224", null, "46.9", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.0", null, "0.4", null, "5.0", null, "0.7", null, "6.2", null, "0.6", null, "4.9", null, "0.5", null, "5.3", null, "0.7", null, "4.5", null, "0.5", null, "5.5", null, "0.6", null, "5.6", null, "0.6", null, "6.6", null, "0.6", null, "6.3", null, "0.6", null, "6.8", null, "0.5", null, "7.6", null, "0.7", null, "7.4", null, "0.6", null, "6.8", null, "0.6", null, "5.4", null, "0.5", null, "4.8", null, "0.5", null, "3.5", null, "0.6", null, "3.7", null, "0.4", null, "11.2", null, "0.9", null, "3.5", null, "0.4", null, "18.7", null, "1.0", null, "6.8", null, "0.7", null, "32.4", null, "1.1", null, "83.5", null, "0.9", null, "81.3", null, "1.0", null, "78.6", null, "1.0", null, "31.6", null, "1.1", null, "28.8", null, "1.2", null, "24.2", null, "1.1", null, "12.0", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "36", "03"], ["5001900US3604", "Congressional District 4 (119th Congress), New York", "777491", null, "5827", null, "39846", null, "2329", null, "42671", null, "3508", null, "48293", null, "3952", null, "51087", null, "2888", null, "50725", null, "3028", null, "49628", null, "2685", null, "45568", null, "2563", null, "45835", null, "4037", null, "50899", null, "4215", null, "49968", null, "3111", null, "50667", null, "2395", null, "51426", null, "3730", null, "58435", null, "3716", null, "44372", null, "3447", null, "38782", null, "2965", null, "25346", null, "2659", null, "17558", null, "2272", null, "16385", null, "2071", null, "90964", null, "3637", null, "30906", null, "2158", null, "161716", null, "4674", null, "70906", null, "3608", null, "293742", null, "5748", null, "635666", null, "7884", null, "615775", null, "7117", null, "586123", null, "6970", null, "200878", null, "6416", null, "176435", null, "6238", null, "142443", null, "5026", null, "59289", null, "3381", null, "41.4", null, "0.7", null, "96.1", null, "2.0", null, "64.3", null, "1.9", null, "30.1", null, "1.3", null, "34.2", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.1", null, "0.3", null, "5.5", null, "0.5", null, "6.2", null, "0.5", null, "6.6", null, "0.4", null, "6.5", null, "0.4", null, "6.4", null, "0.3", null, "5.9", null, "0.3", null, "5.9", null, "0.5", null, "6.5", null, "0.5", null, "6.4", null, "0.4", null, "6.5", null, "0.3", null, "6.6", null, "0.5", null, "7.5", null, "0.5", null, "5.7", null, "0.4", null, "5.0", null, "0.4", null, "3.3", null, "0.3", null, "2.3", null, "0.3", null, "2.1", null, "0.3", null, "11.7", null, "0.5", null, "4.0", null, "0.3", null, "20.8", null, "0.6", null, "9.1", null, "0.4", null, "37.8", null, "0.7", null, "81.8", null, "0.7", null, "79.2", null, "0.6", null, "75.4", null, "0.6", null, "25.8", null, "0.8", null, "22.7", null, "0.8", null, "18.3", null, "0.6", null, "7.6", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.8", null, "-888888888.0", "(X)", "381109", null, "5169", null, "19764", null, "1860", null, "21430", null, "2431", null, "25168", null, "2817", null, "25352", null, "2190", null, "25532", null, "2003", null, "25259", null, "2048", null, "22641", null, "1614", null, "23886", null, "2557", null, "24704", null, "2978", null, "25457", null, "1949", null, "25379", null, "1610", null, "25260", null, "2347", null, "28850", null, "2403", null, "19742", null, "2143", null, "18663", null, "1941", null, "11295", null, "1446", null, "6682", null, "1270", null, "6045", null, "1193", null, "46598", null, "2271", null, "16315", null, "1503", null, "82677", null, "3040", null, "34569", null, "2492", null, "147374", null, "4756", null, "308971", null, "6004", null, "298432", null, "5434", null, "284741", null, "5140", null, "91277", null, "3759", null, "79030", null, "3890", null, "62427", null, "3281", null, "24022", null, "1817", null, "40.3", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.5", null, "5.6", null, "0.7", null, "6.6", null, "0.7", null, "6.7", null, "0.5", null, "6.7", null, "0.5", null, "6.6", null, "0.5", null, "5.9", null, "0.4", null, "6.3", null, "0.7", null, "6.5", null, "0.8", null, "6.7", null, "0.5", null, "6.7", null, "0.4", null, "6.6", null, "0.6", null, "7.6", null, "0.6", null, "5.2", null, "0.6", null, "4.9", null, "0.5", null, "3.0", null, "0.4", null, "1.8", null, "0.3", null, "1.6", null, "0.3", null, "12.2", null, "0.6", null, "4.3", null, "0.4", null, "21.7", null, "0.8", null, "9.1", null, "0.6", null, "38.7", null, "1.0", null, "81.1", null, "0.9", null, "78.3", null, "0.8", null, "74.7", null, "0.9", null, "24.0", null, "0.9", null, "20.7", null, "1.0", null, "16.4", null, "0.8", null, "6.3", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "396382", null, "4751", null, "20082", null, "1684", null, "21241", null, "2388", null, "23125", null, "2447", null, "25735", null, "1924", null, "25193", null, "1980", null, "24369", null, "1499", null, "22927", null, "1808", null, "21949", null, "2362", null, "26195", null, "2497", null, "24511", null, "1915", null, "25288", null, "1572", null, "26166", null, "2536", null, "29585", null, "2510", null, "24630", null, "2214", null, "20119", null, "1965", null, "14051", null, "1851", null, "10876", null, "1606", null, "10340", null, "1451", null, "44366", null, "2858", null, "14591", null, "1589", null, "79039", null, "3369", null, "36337", null, "2226", null, "146368", null, "3833", null, "326695", null, "4773", null, "317343", null, "4348", null, "301382", null, "4214", null, "109601", null, "3900", null, "97405", null, "3425", null, "80016", null, "2650", null, "35267", null, "2159", null, "42.5", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.1", null, "0.4", null, "5.4", null, "0.6", null, "5.8", null, "0.6", null, "6.5", null, "0.5", null, "6.4", null, "0.5", null, "6.1", null, "0.4", null, "5.8", null, "0.4", null, "5.5", null, "0.6", null, "6.6", null, "0.6", null, "6.2", null, "0.5", null, "6.4", null, "0.4", null, "6.6", null, "0.6", null, "7.5", null, "0.6", null, "6.2", null, "0.6", null, "5.1", null, "0.5", null, "3.5", null, "0.5", null, "2.7", null, "0.4", null, "2.6", null, "0.4", null, "11.2", null, "0.7", null, "3.7", null, "0.4", null, "19.9", null, "0.8", null, "9.2", null, "0.5", null, "36.9", null, "0.8", null, "82.4", null, "0.8", null, "80.1", null, "0.8", null, "76.0", null, "0.8", null, "27.7", null, "1.0", null, "24.6", null, "0.9", null, "20.2", null, "0.7", null, "8.9", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "36", "04"], ["5001900US3605", "Congressional District 5 (119th Congress), New York", "766680", null, "18171", null, "42871", null, "3459", null, "42478", null, "4260", null, "45801", null, "4601", null, "45047", null, "3473", null, "45585", null, "3572", null, "45481", null, "3494", null, "51587", null, "4388", null, "47095", null, "3868", null, "50210", null, "4304", null, "45806", null, "3634", null, "49562", null, "3264", null, "50458", null, "3733", null, "60311", null, "4289", null, "48959", null, "3843", null, "37420", null, "3004", null, "28039", null, "3242", null, "15163", null, "2315", null, "14807", null, "1875", null, "88279", null, "6324", null, "27957", null, "2889", null, "159107", null, "7690", null, "62675", null, "3854", null, "285005", null, "10766", null, "626863", null, "14980", null, "607573", null, "14010", null, "581340", null, "13408", null, "204699", null, "7116", null, "178243", null, "6451", null, "144388", null, "5585", null, "58009", null, "4121", null, "41.6", null, "0.7", null, "93.9", null, "3.2", null, "65.5", null, "2.2", null, "31.2", null, "1.5", null, "34.4", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.6", null, "0.4", null, "5.5", null, "0.5", null, "6.0", null, "0.6", null, "5.9", null, "0.4", null, "5.9", null, "0.4", null, "5.9", null, "0.4", null, "6.7", null, "0.5", null, "6.1", null, "0.5", null, "6.5", null, "0.5", null, "6.0", null, "0.4", null, "6.5", null, "0.4", null, "6.6", null, "0.5", null, "7.9", null, "0.5", null, "6.4", null, "0.5", null, "4.9", null, "0.4", null, "3.7", null, "0.4", null, "2.0", null, "0.3", null, "1.9", null, "0.2", null, "11.5", null, "0.7", null, "3.6", null, "0.4", null, "20.8", null, "0.8", null, "8.2", null, "0.5", null, "37.2", null, "0.8", null, "81.8", null, "0.8", null, "79.2", null, "0.8", null, "75.8", null, "0.8", null, "26.7", null, "0.8", null, "23.2", null, "0.8", null, "18.8", null, "0.7", null, "7.6", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "3.4", null, "-888888888.0", "(X)", "371250", null, "11411", null, "22449", null, "2635", null, "21778", null, "2703", null, "23625", null, "3642", null, "25152", null, "2387", null, "23985", null, "2037", null, "21537", null, "2377", null, "26754", null, "2903", null, "24896", null, "2450", null, "23277", null, "2803", null, "20942", null, "2138", null, "23915", null, "2358", null, "22808", null, "2558", null, "29544", null, "2983", null, "22259", null, "2253", null, "16673", null, "1968", null, "10962", null, "1753", null, "5568", null, "1290", null, "5126", null, "1157", null, "45403", null, "3959", null, "15743", null, "2023", null, "83595", null, "5046", null, "33394", null, "2309", null, "145601", null, "6997", null, "298321", null, "9480", null, "287655", null, "8876", null, "273927", null, "8571", null, "90132", null, "4320", null, "77379", null, "3806", null, "60588", null, "3047", null, "21656", null, "2158", null, "39.3", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.0", null, "0.7", null, "5.9", null, "0.7", null, "6.4", null, "1.0", null, "6.8", null, "0.6", null, "6.5", null, "0.5", null, "5.8", null, "0.6", null, "7.2", null, "0.7", null, "6.7", null, "0.6", null, "6.3", null, "0.7", null, "5.6", null, "0.6", null, "6.4", null, "0.6", null, "6.1", null, "0.7", null, "8.0", null, "0.8", null, "6.0", null, "0.6", null, "4.5", null, "0.5", null, "3.0", null, "0.5", null, "1.5", null, "0.3", null, "1.4", null, "0.3", null, "12.2", null, "0.9", null, "4.2", null, "0.5", null, "22.5", null, "1.0", null, "9.0", null, "0.6", null, "39.2", null, "1.1", null, "80.4", null, "1.0", null, "77.5", null, "1.0", null, "73.8", null, "1.1", null, "24.3", null, "1.1", null, "20.8", null, "1.0", null, "16.3", null, "0.8", null, "5.8", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "395430", null, "10923", null, "20422", null, "2168", null, "20700", null, "3081", null, "22176", null, "2919", null, "19895", null, "2146", null, "21600", null, "2468", null, "23944", null, "2613", null, "24833", null, "2441", null, "22199", null, "2527", null, "26933", null, "2671", null, "24864", null, "2436", null, "25647", null, "1939", null, "27650", null, "2395", null, "30767", null, "2651", null, "26700", null, "2582", null, "20747", null, "2068", null, "17077", null, "2401", null, "9595", null, "1740", null, "9681", null, "1458", null, "42876", null, "4006", null, "12214", null, "1708", null, "75512", null, "4910", null, "29281", null, "2591", null, "139404", null, "6397", null, "328542", null, "8717", null, "319918", null, "8159", null, "307413", null, "7967", null, "114567", null, "4583", null, "100864", null, "4432", null, "83800", null, "3685", null, "36353", null, "2542", null, "44.0", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.5", null, "5.2", null, "0.7", null, "5.6", null, "0.7", null, "5.0", null, "0.5", null, "5.5", null, "0.6", null, "6.1", null, "0.6", null, "6.3", null, "0.6", null, "5.6", null, "0.6", null, "6.8", null, "0.6", null, "6.3", null, "0.6", null, "6.5", null, "0.5", null, "7.0", null, "0.6", null, "7.8", null, "0.6", null, "6.8", null, "0.6", null, "5.2", null, "0.5", null, "4.3", null, "0.6", null, "2.4", null, "0.4", null, "2.4", null, "0.4", null, "10.8", null, "0.9", null, "3.1", null, "0.4", null, "19.1", null, "0.9", null, "7.4", null, "0.6", null, "35.3", null, "1.1", null, "83.1", null, "1.0", null, "80.9", null, "0.9", null, "77.7", null, "0.9", null, "29.0", null, "1.0", null, "25.5", null, "1.0", null, "21.2", null, "0.9", null, "9.2", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "36", "05"], ["5001900US3606", "Congressional District 6 (119th Congress), New York", "726418", null, "22218", null, "34272", null, "3517", null, "37511", null, "4882", null, "38412", null, "3872", null, "35641", null, "3188", null, "36976", null, "4169", null, "43305", null, "3847", null, "51610", null, "4477", null, "49752", null, "4959", null, "43626", null, "3724", null, "50643", null, "3306", null, "46625", null, "4436", null, "48263", null, "4723", null, "50133", null, "4244", null, "45640", null, "4226", null, "42695", null, "3925", null, "33658", null, "4096", null, "19961", null, "2665", null, "17695", null, "2780", null, "75923", null, "6598", null, "22431", null, "2199", null, "132626", null, "8478", null, "50186", null, "4872", null, "260910", null, "12353", null, "609185", null, "17728", null, "593792", null, "17004", null, "574845", null, "15998", null, "209782", null, "8676", null, "190314", null, "8252", null, "159649", null, "7656", null, "71314", null, "5143", null, "44.2", null, "1.0", null, "94.1", null, "2.8", null, "67.3", null, "3.1", null, "36.8", null, "2.3", null, "30.5", null, "1.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.7", null, "0.4", null, "5.2", null, "0.6", null, "5.3", null, "0.5", null, "4.9", null, "0.4", null, "5.1", null, "0.5", null, "6.0", null, "0.5", null, "7.1", null, "0.5", null, "6.8", null, "0.6", null, "6.0", null, "0.5", null, "7.0", null, "0.4", null, "6.4", null, "0.6", null, "6.6", null, "0.6", null, "6.9", null, "0.6", null, "6.3", null, "0.6", null, "5.9", null, "0.5", null, "4.6", null, "0.6", null, "2.7", null, "0.4", null, "2.4", null, "0.4", null, "10.5", null, "0.8", null, "3.1", null, "0.3", null, "18.3", null, "0.8", null, "6.9", null, "0.6", null, "35.9", null, "1.0", null, "83.9", null, "0.9", null, "81.7", null, "0.8", null, "79.1", null, "0.9", null, "28.9", null, "1.2", null, "26.2", null, "1.1", null, "22.0", null, "1.1", null, "9.8", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.8", null, "-888888888.0", "(X)", "352184", null, "11821", null, "17128", null, "2554", null, "20952", null, "3971", null, "17719", null, "2253", null, "15508", null, "2015", null, "17273", null, "2248", null, "22182", null, "2734", null, "25354", null, "2683", null, "26305", null, "2865", null, "20101", null, "2088", null, "26519", null, "2620", null, "23175", null, "2887", null, "22405", null, "2778", null, "24278", null, "2886", null, "22186", null, "2631", null, "19962", null, "2651", null, "13737", null, "2254", null, "10073", null, "1681", null, "7327", null, "1682", null, "38671", null, "4114", null, "9264", null, "1608", null, "65063", null, "4957", null, "23517", null, "2713", null, "126723", null, "6816", null, "293037", null, "9440", null, "287121", null, "9261", null, "278659", null, "8852", null, "97563", null, "4700", null, "88752", null, "4360", null, "73285", null, "3921", null, "31137", null, "2448", null, "43.3", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.9", null, "0.7", null, "5.9", null, "1.1", null, "5.0", null, "0.6", null, "4.4", null, "0.5", null, "4.9", null, "0.6", null, "6.3", null, "0.7", null, "7.2", null, "0.7", null, "7.5", null, "0.8", null, "5.7", null, "0.6", null, "7.5", null, "0.7", null, "6.6", null, "0.8", null, "6.4", null, "0.7", null, "6.9", null, "0.8", null, "6.3", null, "0.8", null, "5.7", null, "0.8", null, "3.9", null, "0.7", null, "2.9", null, "0.5", null, "2.1", null, "0.5", null, "11.0", null, "1.1", null, "2.6", null, "0.4", null, "18.5", null, "1.1", null, "6.7", null, "0.7", null, "36.0", null, "1.2", null, "83.2", null, "1.1", null, "81.5", null, "1.1", null, "79.1", null, "1.2", null, "27.7", null, "1.4", null, "25.2", null, "1.3", null, "20.8", null, "1.2", null, "8.8", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "374234", null, "12966", null, "17144", null, "2416", null, "16559", null, "2683", null, "20693", null, "3422", null, "20133", null, "2102", null, "19703", null, "2908", null, "21123", null, "2151", null, "26256", null, "2960", null, "23447", null, "2910", null, "23525", null, "2723", null, "24124", null, "2023", null, "23450", null, "2256", null, "25858", null, "2952", null, "25855", null, "2838", null, "23454", null, "3079", null, "22733", null, "2811", null, "19921", null, "2959", null, "9888", null, "1884", null, "10368", null, "1912", null, "37252", null, "3990", null, "13167", null, "1683", null, "67563", null, "5374", null, "26669", null, "3385", null, "134187", null, "6974", null, "316148", null, "10581", null, "306671", null, "10140", null, "296186", null, "9511", null, "112219", null, "5667", null, "101562", null, "5537", null, "86364", null, "4907", null, "40177", null, "3593", null, "44.7", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.6", null, "0.6", null, "4.4", null, "0.7", null, "5.5", null, "0.9", null, "5.4", null, "0.5", null, "5.3", null, "0.7", null, "5.6", null, "0.6", null, "7.0", null, "0.7", null, "6.3", null, "0.7", null, "6.3", null, "0.7", null, "6.4", null, "0.5", null, "6.3", null, "0.6", null, "6.9", null, "0.8", null, "6.9", null, "0.7", null, "6.3", null, "0.8", null, "6.1", null, "0.8", null, "5.3", null, "0.8", null, "2.6", null, "0.5", null, "2.8", null, "0.5", null, "10.0", null, "0.9", null, "3.5", null, "0.4", null, "18.1", null, "1.1", null, "7.1", null, "0.8", null, "35.9", null, "1.2", null, "84.5", null, "1.2", null, "81.9", null, "1.1", null, "79.1", null, "1.1", null, "30.0", null, "1.4", null, "27.1", null, "1.3", null, "23.1", null, "1.2", null, "10.7", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "36", "06"], ["5001900US3607", "Congressional District 7 (119th Congress), New York", "777946", null, "26155", null, "50934", null, "5421", null, "43820", null, "4996", null, "42474", null, "4912", null, "36221", null, "3788", null, "52657", null, "5656", null, "91867", null, "6151", null, "84969", null, "5650", null, "77427", null, "5993", null, "49156", null, "4215", null, "36893", null, "3786", null, "43908", null, "3960", null, "36610", null, "3812", null, "36368", null, "4671", null, "26640", null, "2935", null, "23695", null, "2979", null, "20166", null, "3061", null, "11383", null, "2137", null, "12758", null, "2719", null, "86294", null, "8121", null, "24758", null, "2845", null, "161986", null, "12795", null, "64120", null, "5933", null, "392297", null, "14271", null, "632471", null, "19459", null, "615960", null, "18786", null, "597911", null, "18568", null, "131010", null, "8671", null, "117385", null, "7766", null, "94642", null, "6347", null, "44307", null, "4281", null, "34.2", null, "0.5", null, "94.2", null, "3.6", null, "49.2", null, "2.6", null, "18.2", null, "1.3", null, "31.1", null, "2.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.5", null, "0.6", null, "5.6", null, "0.5", null, "5.5", null, "0.6", null, "4.7", null, "0.4", null, "6.8", null, "0.7", null, "11.8", null, "0.8", null, "10.9", null, "0.6", null, "10.0", null, "0.7", null, "6.3", null, "0.6", null, "4.7", null, "0.5", null, "5.6", null, "0.5", null, "4.7", null, "0.5", null, "4.7", null, "0.6", null, "3.4", null, "0.4", null, "3.0", null, "0.4", null, "2.6", null, "0.4", null, "1.5", null, "0.3", null, "1.6", null, "0.4", null, "11.1", null, "0.9", null, "3.2", null, "0.3", null, "20.8", null, "1.2", null, "8.2", null, "0.7", null, "50.4", null, "1.1", null, "81.3", null, "1.2", null, "79.2", null, "1.2", null, "76.9", null, "1.3", null, "16.8", null, "1.1", null, "15.1", null, "0.9", null, "12.2", null, "0.8", null, "5.7", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "2.1", null, "-888888888.0", "(X)", "377433", null, "13623", null, "23754", null, "3736", null, "23731", null, "3906", null, "21048", null, "2990", null, "18602", null, "2581", null, "23581", null, "3224", null, "44696", null, "3697", null, "43001", null, "3561", null, "38650", null, "4078", null, "26765", null, "2549", null, "18137", null, "2427", null, "21747", null, "2397", null, "19476", null, "2560", null, "17275", null, "2821", null, "11583", null, "2124", null, "9541", null, "2040", null, "8180", null, "1859", null, "3117", null, "1044", null, "4549", null, "1507", null, "44779", null, "5589", null, "12355", null, "2073", null, "80888", null, "8104", null, "29828", null, "3806", null, "195295", null, "8704", null, "305336", null, "10918", null, "296545", null, "10623", null, "287073", null, "10199", null, "54245", null, "4758", null, "47230", null, "4540", null, "36970", null, "3668", null, "15846", null, "2307", null, "33.8", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.3", null, "0.9", null, "6.3", null, "1.0", null, "5.6", null, "0.7", null, "4.9", null, "0.7", null, "6.2", null, "0.8", null, "11.8", null, "1.0", null, "11.4", null, "0.9", null, "10.2", null, "1.0", null, "7.1", null, "0.7", null, "4.8", null, "0.6", null, "5.8", null, "0.6", null, "5.2", null, "0.7", null, "4.6", null, "0.7", null, "3.1", null, "0.6", null, "2.5", null, "0.6", null, "2.2", null, "0.5", null, "0.8", null, "0.3", null, "1.2", null, "0.4", null, "11.9", null, "1.3", null, "3.3", null, "0.5", null, "21.4", null, "1.8", null, "7.9", null, "0.9", null, "51.7", null, "1.5", null, "80.9", null, "1.7", null, "78.6", null, "1.8", null, "76.1", null, "1.8", null, "14.4", null, "1.3", null, "12.5", null, "1.2", null, "9.8", null, "1.0", null, "4.2", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "400513", null, "16393", null, "27180", null, "3952", null, "20089", null, "3198", null, "21426", null, "3354", null, "17619", null, "2472", null, "29076", null, "4181", null, "47171", null, "4428", null, "41968", null, "3645", null, "38777", null, "3366", null, "22391", null, "3171", null, "18756", null, "2478", null, "22161", null, "2405", null, "17134", null, "2469", null, "19093", null, "3087", null, "15057", null, "1954", null, "14154", null, "2119", null, "11986", null, "2168", null, "8266", null, "1683", null, "8209", null, "1893", null, "41515", null, "5097", null, "12403", null, "1994", null, "81098", null, "7997", null, "34292", null, "4158", null, "197002", null, "9127", null, "327135", null, "12508", null, "319415", null, "12175", null, "310838", null, "12445", null, "76765", null, "5288", null, "70155", null, "4800", null, "57672", null, "4223", null, "28461", null, "3278", null, "34.5", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.8", null, "0.9", null, "5.0", null, "0.7", null, "5.3", null, "0.8", null, "4.4", null, "0.6", null, "7.3", null, "1.0", null, "11.8", null, "1.0", null, "10.5", null, "0.8", null, "9.7", null, "0.8", null, "5.6", null, "0.8", null, "4.7", null, "0.6", null, "5.5", null, "0.6", null, "4.3", null, "0.6", null, "4.8", null, "0.8", null, "3.8", null, "0.5", null, "3.5", null, "0.5", null, "3.0", null, "0.5", null, "2.1", null, "0.4", null, "2.0", null, "0.5", null, "10.4", null, "1.1", null, "3.1", null, "0.5", null, "20.2", null, "1.5", null, "8.6", null, "1.0", null, "49.2", null, "1.5", null, "81.7", null, "1.5", null, "79.8", null, "1.5", null, "77.6", null, "1.6", null, "19.2", null, "1.1", null, "17.5", null, "1.0", null, "14.4", null, "0.9", null, "7.1", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "36", "07"], ["5001900US3608", "Congressional District 8 (119th Congress), New York", "739447", null, "20900", null, "35137", null, "4231", null, "35448", null, "4275", null, "48808", null, "5552", null, "41628", null, "3910", null, "40597", null, "3908", null, "54124", null, "4935", null, "60410", null, "4803", null, "54953", null, "4885", null, "43591", null, "4413", null, "45382", null, "3745", null, "44025", null, "4232", null, "42619", null, "4901", null, "45915", null, "4246", null, "45089", null, "3782", null, "38892", null, "3763", null, "31013", null, "4014", null, "15951", null, "2481", null, "15865", null, "2499", null, "84256", null, "6932", null, "25877", null, "3114", null, "145270", null, "9835", null, "56348", null, "4068", null, "295303", null, "12403", null, "611775", null, "15923", null, "594177", null, "15197", null, "571018", null, "14894", null, "192725", null, "8333", null, "173533", null, "7986", null, "146810", null, "6912", null, "62829", null, "4612", null, "39.9", null, "0.9", null, "87.1", null, "3.0", null, "65.3", null, "3.1", null, "32.8", null, "2.0", null, "32.5", null, "2.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.8", null, "0.5", null, "4.8", null, "0.5", null, "6.6", null, "0.7", null, "5.6", null, "0.5", null, "5.5", null, "0.5", null, "7.3", null, "0.6", null, "8.2", null, "0.6", null, "7.4", null, "0.6", null, "5.9", null, "0.6", null, "6.1", null, "0.5", null, "6.0", null, "0.6", null, "5.8", null, "0.6", null, "6.2", null, "0.6", null, "6.1", null, "0.5", null, "5.3", null, "0.5", null, "4.2", null, "0.5", null, "2.2", null, "0.3", null, "2.1", null, "0.3", null, "11.4", null, "0.8", null, "3.5", null, "0.4", null, "19.6", null, "1.0", null, "7.6", null, "0.5", null, "39.9", null, "1.1", null, "82.7", null, "0.9", null, "80.4", null, "1.0", null, "77.2", null, "1.1", null, "26.1", null, "1.2", null, "23.5", null, "1.1", null, "19.9", null, "1.0", null, "8.5", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "3.6", null, "-888888888.0", "(X)", "344152", null, "12017", null, "19744", null, "2869", null, "16732", null, "2560", null, "23548", null, "3635", null, "20333", null, "2371", null, "20540", null, "2464", null, "24150", null, "2967", null, "28445", null, "3332", null, "25365", null, "3230", null, "20129", null, "3007", null, "22376", null, "2088", null, "21085", null, "2680", null, "17981", null, "2854", null, "20058", null, "2682", null, "20781", null, "2216", null, "17217", null, "2196", null, "12759", null, "2164", null, "5895", null, "1522", null, "7014", null, "1641", null, "40280", null, "3857", null, "12657", null, "2004", null, "72681", null, "5748", null, "28216", null, "2674", null, "138962", null, "7596", null, "279751", null, "9405", null, "271471", null, "9136", null, "261185", null, "8977", null, "83724", null, "4570", null, "75267", null, "4445", null, "63666", null, "3756", null, "25668", null, "2482", null, "38.6", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.7", null, "0.8", null, "4.9", null, "0.7", null, "6.8", null, "1.0", null, "5.9", null, "0.7", null, "6.0", null, "0.7", null, "7.0", null, "0.8", null, "8.3", null, "0.9", null, "7.4", null, "0.9", null, "5.8", null, "0.8", null, "6.5", null, "0.6", null, "6.1", null, "0.8", null, "5.2", null, "0.8", null, "5.8", null, "0.8", null, "6.0", null, "0.7", null, "5.0", null, "0.6", null, "3.7", null, "0.6", null, "1.7", null, "0.4", null, "2.0", null, "0.5", null, "11.7", null, "1.0", null, "3.7", null, "0.6", null, "21.1", null, "1.3", null, "8.2", null, "0.8", null, "40.4", null, "1.5", null, "81.3", null, "1.2", null, "78.9", null, "1.3", null, "75.9", null, "1.3", null, "24.3", null, "1.3", null, "21.9", null, "1.3", null, "18.5", null, "1.1", null, "7.5", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "395295", null, "12426", null, "15393", null, "2529", null, "18716", null, "2910", null, "25260", null, "3597", null, "21295", null, "3049", null, "20057", null, "2917", null, "29974", null, "4045", null, "31965", null, "2851", null, "29588", null, "3055", null, "23462", null, "2770", null, "23006", null, "2557", null, "22940", null, "2334", null, "24638", null, "3358", null, "25857", null, "3073", null, "24308", null, "2683", null, "21675", null, "2762", null, "18254", null, "2411", null, "10056", null, "1716", null, "8851", null, "1455", null, "43976", null, "4634", null, "13220", null, "2531", null, "72589", null, "5880", null, "28132", null, "3189", null, "156341", null, "8452", null, "332024", null, "10315", null, "322706", null, "9711", null, "309833", null, "9587", null, "109001", null, "5029", null, "98266", null, "4830", null, "83144", null, "4394", null, "37161", null, "2993", null, "40.9", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "3.9", null, "0.6", null, "4.7", null, "0.7", null, "6.4", null, "0.8", null, "5.4", null, "0.7", null, "5.1", null, "0.7", null, "7.6", null, "1.0", null, "8.1", null, "0.7", null, "7.5", null, "0.7", null, "5.9", null, "0.7", null, "5.8", null, "0.6", null, "5.8", null, "0.6", null, "6.2", null, "0.8", null, "6.5", null, "0.8", null, "6.1", null, "0.7", null, "5.5", null, "0.7", null, "4.6", null, "0.6", null, "2.5", null, "0.4", null, "2.2", null, "0.4", null, "11.1", null, "1.0", null, "3.3", null, "0.6", null, "18.4", null, "1.2", null, "7.1", null, "0.7", null, "39.6", null, "1.5", null, "84.0", null, "1.1", null, "81.6", null, "1.2", null, "78.4", null, "1.4", null, "27.6", null, "1.3", null, "24.9", null, "1.3", null, "21.0", null, "1.2", null, "9.4", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "36", "08"], ["5001900US3609", "Congressional District 9 (119th Congress), New York", "711601", null, "24860", null, "44198", null, "4762", null, "37834", null, "4245", null, "45690", null, "4663", null, "40503", null, "4181", null, "41810", null, "4197", null, "54398", null, "4853", null, "56990", null, "6003", null, "56884", null, "5365", null, "46491", null, "4524", null, "40382", null, "3639", null, "39871", null, "4149", null, "35933", null, "3693", null, "45432", null, "4426", null, "39822", null, "3263", null, "30581", null, "3073", null, "24144", null, "2794", null, "14111", null, "2405", null, "16527", null, "2275", null, "83524", null, "6980", null, "26508", null, "3143", null, "154230", null, "10267", null, "55805", null, "4787", null, "297076", null, "14347", null, "575027", null, "18369", null, "557371", null, "17624", null, "534347", null, "16219", null, "170617", null, "7973", null, "151714", null, "7053", null, "125185", null, "5718", null, "54782", null, "3909", null, "38.0", null, "0.9", null, "88.3", null, "3.4", null, "64.7", null, "2.9", null, "29.0", null, "1.7", null, "35.7", null, "2.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.2", null, "0.6", null, "5.3", null, "0.5", null, "6.4", null, "0.6", null, "5.7", null, "0.5", null, "5.9", null, "0.5", null, "7.6", null, "0.6", null, "8.0", null, "0.8", null, "8.0", null, "0.7", null, "6.5", null, "0.6", null, "5.7", null, "0.5", null, "5.6", null, "0.6", null, "5.0", null, "0.5", null, "6.4", null, "0.6", null, "5.6", null, "0.5", null, "4.3", null, "0.4", null, "3.4", null, "0.4", null, "2.0", null, "0.3", null, "2.3", null, "0.3", null, "11.7", null, "0.8", null, "3.7", null, "0.4", null, "21.7", null, "0.9", null, "7.8", null, "0.6", null, "41.7", null, "1.1", null, "80.8", null, "1.0", null, "78.3", null, "0.9", null, "75.1", null, "1.0", null, "24.0", null, "1.2", null, "21.3", null, "1.0", null, "17.6", null, "0.8", null, "7.7", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "3.5", null, "-888888888.0", "(X)", "333752", null, "12723", null, "22121", null, "3172", null, "20070", null, "3062", null, "25902", null, "2895", null, "20378", null, "2535", null, "20201", null, "2665", null, "25523", null, "3014", null, "27008", null, "3535", null, "29096", null, "3771", null, "22673", null, "2835", null, "18190", null, "2189", null, "17891", null, "2490", null, "15561", null, "2404", null, "20760", null, "2731", null, "18225", null, "2067", null, "10165", null, "1500", null, "9769", null, "1599", null, "5346", null, "1310", null, "4873", null, "1047", null, "45972", null, "4484", null, "12834", null, "2163", null, "80927", null, "6201", null, "27745", null, "2915", null, "144879", null, "9316", null, "260552", null, "10146", null, "252825", null, "9901", null, "240946", null, "8811", null, "69138", null, "4541", null, "60711", null, "3904", null, "48378", null, "3327", null, "19988", null, "2020", null, "35.8", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.6", null, "0.9", null, "6.0", null, "0.9", null, "7.8", null, "0.8", null, "6.1", null, "0.7", null, "6.1", null, "0.7", null, "7.6", null, "0.8", null, "8.1", null, "1.0", null, "8.7", null, "1.0", null, "6.8", null, "0.8", null, "5.5", null, "0.7", null, "5.4", null, "0.7", null, "4.7", null, "0.7", null, "6.2", null, "0.8", null, "5.5", null, "0.6", null, "3.0", null, "0.4", null, "2.9", null, "0.5", null, "1.6", null, "0.4", null, "1.5", null, "0.3", null, "13.8", null, "1.2", null, "3.8", null, "0.6", null, "24.2", null, "1.4", null, "8.3", null, "0.8", null, "43.4", null, "1.8", null, "78.1", null, "1.5", null, "75.8", null, "1.4", null, "72.2", null, "1.4", null, "20.7", null, "1.4", null, "18.2", null, "1.2", null, "14.5", null, "1.0", null, "6.0", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "377849", null, "15664", null, "22077", null, "2853", null, "17764", null, "3079", null, "19788", null, "3194", null, "20125", null, "2875", null, "21609", null, "2734", null, "28875", null, "3499", null, "29982", null, "3752", null, "27788", null, "3285", null, "23818", null, "2878", null, "22192", null, "2704", null, "21980", null, "2694", null, "20372", null, "2398", null, "24672", null, "2960", null, "21597", null, "2262", null, "20416", null, "2467", null, "14375", null, "2273", null, "8765", null, "1844", null, "11654", null, "1939", null, "37552", null, "4248", null, "13674", null, "2116", null, "73303", null, "6141", null, "28060", null, "3348", null, "152197", null, "8917", null, "314475", null, "11975", null, "304546", null, "11215", null, "293401", null, "10302", null, "101479", null, "5265", null, "91003", null, "4734", null, "76807", null, "4113", null, "34794", null, "2803", null, "40.2", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.8", null, "0.7", null, "4.7", null, "0.8", null, "5.2", null, "0.8", null, "5.3", null, "0.7", null, "5.7", null, "0.7", null, "7.6", null, "0.9", null, "7.9", null, "0.9", null, "7.4", null, "0.9", null, "6.3", null, "0.7", null, "5.9", null, "0.7", null, "5.8", null, "0.7", null, "5.4", null, "0.6", null, "6.5", null, "0.8", null, "5.7", null, "0.6", null, "5.4", null, "0.7", null, "3.8", null, "0.6", null, "2.3", null, "0.5", null, "3.1", null, "0.5", null, "9.9", null, "0.9", null, "3.6", null, "0.5", null, "19.4", null, "1.1", null, "7.4", null, "0.8", null, "40.3", null, "1.4", null, "83.2", null, "1.1", null, "80.6", null, "1.1", null, "77.7", null, "1.3", null, "26.9", null, "1.3", null, "24.1", null, "1.2", null, "20.3", null, "1.1", null, "9.2", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "36", "09"], ["5001900US3610", "Congressional District 10 (119th Congress), New York", "757254", null, "21962", null, "39601", null, "5028", null, "38973", null, "4873", null, "39912", null, "5055", null, "39189", null, "3705", null, "50117", null, "5134", null, "83698", null, "7039", null, "80533", null, "6591", null, "61069", null, "5371", null, "50621", null, "5082", null, "46826", null, "4159", null, "41239", null, "3547", null, "41274", null, "5368", null, "31440", null, "3528", null, "32865", null, "3457", null, "30023", null, "3302", null, "21924", null, "2857", null, "15496", null, "2809", null, "12454", null, "2462", null, "78885", null, "7192", null, "20149", null, "2522", null, "138635", null, "10447", null, "69157", null, "6020", null, "365227", null, "13410", null, "630862", null, "16933", null, "618619", null, "16400", null, "590569", null, "16109", null, "144202", null, "7583", null, "131023", null, "6967", null, "112762", null, "6575", null, "49874", null, "4375", null, "35.4", null, "0.6", null, "97.6", null, "3.9", null, "49.7", null, "2.9", null, "22.3", null, "1.5", null, "27.4", null, "2.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.6", null, "5.1", null, "0.6", null, "5.3", null, "0.6", null, "5.2", null, "0.5", null, "6.6", null, "0.7", null, "11.1", null, "0.8", null, "10.6", null, "0.9", null, "8.1", null, "0.7", null, "6.7", null, "0.6", null, "6.2", null, "0.5", null, "5.4", null, "0.5", null, "5.5", null, "0.7", null, "4.2", null, "0.4", null, "4.3", null, "0.5", null, "4.0", null, "0.4", null, "2.9", null, "0.4", null, "2.0", null, "0.4", null, "1.6", null, "0.3", null, "10.4", null, "0.8", null, "2.7", null, "0.3", null, "18.3", null, "1.1", null, "9.1", null, "0.8", null, "48.2", null, "1.3", null, "83.3", null, "1.0", null, "81.7", null, "1.1", null, "78.0", null, "1.0", null, "19.0", null, "0.9", null, "17.3", null, "0.9", null, "14.9", null, "0.8", null, "6.6", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "2.1", null, "-888888888.0", "(X)", "374113", null, "13557", null, "20987", null, "3384", null, "18773", null, "3507", null, "22897", null, "3367", null, "22210", null, "2772", null, "25120", null, "3652", null, "37965", null, "4690", null, "40803", null, "4526", null, "29781", null, "3549", null, "26068", null, "3363", null, "21982", null, "2811", null, "19226", null, "2014", null, "20909", null, "3528", null, "16179", null, "2857", null, "17249", null, "2740", null, "13023", null, "1683", null, "8830", null, "1656", null, "6293", null, "1773", null, "5818", null, "1729", null, "41670", null, "4015", null, "12641", null, "1888", null, "75298", null, "6098", null, "34689", null, "4582", null, "181947", null, "9687", null, "306299", null, "11622", null, "298815", null, "11124", null, "284703", null, "10533", null, "67392", null, "4714", null, "60089", null, "4357", null, "51213", null, "4092", null, "20941", null, "2625", null, "34.8", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.6", null, "0.8", null, "5.0", null, "0.9", null, "6.1", null, "0.9", null, "5.9", null, "0.7", null, "6.7", null, "0.9", null, "10.1", null, "1.1", null, "10.9", null, "1.2", null, "8.0", null, "0.9", null, "7.0", null, "0.9", null, "5.9", null, "0.7", null, "5.1", null, "0.5", null, "5.6", null, "0.9", null, "4.3", null, "0.7", null, "4.6", null, "0.7", null, "3.5", null, "0.4", null, "2.4", null, "0.4", null, "1.7", null, "0.5", null, "1.6", null, "0.5", null, "11.1", null, "1.0", null, "3.4", null, "0.5", null, "20.1", null, "1.3", null, "9.3", null, "1.1", null, "48.6", null, "1.7", null, "81.9", null, "1.4", null, "79.9", null, "1.3", null, "76.1", null, "1.4", null, "18.0", null, "1.2", null, "16.1", null, "1.2", null, "13.7", null, "1.1", null, "5.6", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "383141", null, "13019", null, "18614", null, "3219", null, "20200", null, "2892", null, "17015", null, "2909", null, "16979", null, "2197", null, "24997", null, "3107", null, "45733", null, "4312", null, "39730", null, "3909", null, "31288", null, "3297", null, "24553", null, "2911", null, "24844", null, "2762", null, "22013", null, "2736", null, "20365", null, "3107", null, "15261", null, "2364", null, "15616", null, "2091", null, "17000", null, "2409", null, "13094", null, "2241", null, "9203", null, "2098", null, "6636", null, "1334", null, "37215", null, "4867", null, "7508", null, "1632", null, "63337", null, "6423", null, "34468", null, "3203", null, "183280", null, "7474", null, "324563", null, "9639", null, "319804", null, "9527", null, "305866", null, "9397", null, "76810", null, "4883", null, "70934", null, "4316", null, "61549", null, "4136", null, "28933", null, "3015", null, "36.1", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.9", null, "0.8", null, "5.3", null, "0.7", null, "4.4", null, "0.7", null, "4.4", null, "0.6", null, "6.5", null, "0.8", null, "11.9", null, "1.1", null, "10.4", null, "1.0", null, "8.2", null, "0.8", null, "6.4", null, "0.7", null, "6.5", null, "0.7", null, "5.7", null, "0.7", null, "5.3", null, "0.8", null, "4.0", null, "0.6", null, "4.1", null, "0.5", null, "4.4", null, "0.6", null, "3.4", null, "0.6", null, "2.4", null, "0.5", null, "1.7", null, "0.3", null, "9.7", null, "1.1", null, "2.0", null, "0.4", null, "16.5", null, "1.3", null, "9.0", null, "0.8", null, "47.8", null, "1.4", null, "84.7", null, "1.3", null, "83.5", null, "1.3", null, "79.8", null, "1.3", null, "20.0", null, "1.1", null, "18.5", null, "1.0", null, "16.1", null, "1.0", null, "7.6", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "36", "10"], ["5001900US3611", "Congressional District 11 (119th Congress), New York", "759734", null, "12934", null, "39401", null, "2793", null, "41877", null, "3479", null, "47451", null, "3020", null, "43866", null, "1874", null, "45266", null, "2591", null, "48534", null, "2143", null, "50306", null, "2371", null, "53272", null, "3099", null, "47535", null, "3529", null, "48671", null, "2206", null, "48763", null, "2302", null, "48418", null, "3589", null, "53933", null, "3808", null, "47336", null, "2663", null, "34339", null, "2685", null, "26459", null, "2355", null, "16053", null, "1874", null, "18254", null, "2117", null, "89328", null, "3943", null, "27303", null, "1478", null, "156032", null, "6470", null, "61829", null, "2932", null, "288779", null, "7081", null, "622667", null, "10766", null, "603702", null, "10001", null, "576227", null, "9402", null, "196374", null, "5551", null, "172579", null, "4873", null, "142441", null, "4028", null, "60766", null, "2539", null, "41.0", null, "0.7", null, "96.5", null, "1.7", null, "64.7", null, "1.8", null, "30.9", null, "1.1", null, "33.8", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.3", null, "5.5", null, "0.4", null, "6.2", null, "0.4", null, "5.8", null, "0.2", null, "6.0", null, "0.3", null, "6.4", null, "0.3", null, "6.6", null, "0.3", null, "7.0", null, "0.4", null, "6.3", null, "0.4", null, "6.4", null, "0.3", null, "6.4", null, "0.3", null, "6.4", null, "0.5", null, "7.1", null, "0.5", null, "6.2", null, "0.4", null, "4.5", null, "0.3", null, "3.5", null, "0.3", null, "2.1", null, "0.3", null, "2.4", null, "0.3", null, "11.8", null, "0.5", null, "3.6", null, "0.2", null, "20.5", null, "0.7", null, "8.1", null, "0.3", null, "38.0", null, "0.6", null, "82.0", null, "0.7", null, "79.5", null, "0.7", null, "75.8", null, "0.7", null, "25.8", null, "0.7", null, "22.7", null, "0.6", null, "18.7", null, "0.5", null, "8.0", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.7", null, "-888888888.0", "(X)", "373179", null, "6830", null, "19221", null, "1823", null, "22054", null, "2379", null, "24264", null, "2233", null, "23640", null, "1463", null, "22788", null, "2001", null, "24347", null, "1238", null, "25713", null, "1797", null, "26542", null, "2454", null, "24293", null, "2338", null, "24318", null, "1470", null, "23277", null, "1588", null, "24075", null, "2347", null, "25579", null, "2348", null, "23621", null, "1709", null, "15045", null, "1673", null, "11388", null, "1445", null, "6269", null, "1166", null, "6745", null, "1258", null, "46318", null, "2414", null, "14352", null, "1098", null, "79891", null, "3416", null, "32076", null, "2307", null, "147323", null, "4694", null, "303799", null, "6300", null, "293288", null, "5954", null, "279083", null, "5164", null, "88647", null, "3484", null, "77259", null, "3058", null, "63068", null, "2159", null, "24402", null, "1634", null, "39.6", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.5", null, "5.9", null, "0.6", null, "6.5", null, "0.6", null, "6.3", null, "0.4", null, "6.1", null, "0.5", null, "6.5", null, "0.3", null, "6.9", null, "0.4", null, "7.1", null, "0.7", null, "6.5", null, "0.6", null, "6.5", null, "0.4", null, "6.2", null, "0.4", null, "6.5", null, "0.6", null, "6.9", null, "0.6", null, "6.3", null, "0.5", null, "4.0", null, "0.4", null, "3.1", null, "0.4", null, "1.7", null, "0.3", null, "1.8", null, "0.3", null, "12.4", null, "0.6", null, "3.8", null, "0.3", null, "21.4", null, "0.8", null, "8.6", null, "0.6", null, "39.5", null, "0.9", null, "81.4", null, "0.9", null, "78.6", null, "0.8", null, "74.8", null, "0.8", null, "23.8", null, "0.9", null, "20.7", null, "0.8", null, "16.9", null, "0.6", null, "6.5", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "386555", null, "7735", null, "20180", null, "2111", null, "19823", null, "2524", null, "23187", null, "2169", null, "20226", null, "1234", null, "22478", null, "1509", null, "24187", null, "1747", null, "24593", null, "1121", null, "26730", null, "2257", null, "23242", null, "2605", null, "24353", null, "1487", null, "25486", null, "1350", null, "24343", null, "2114", null, "28354", null, "2537", null, "23715", null, "1784", null, "19294", null, "1849", null, "15071", null, "1542", null, "9784", null, "1323", null, "11509", null, "1566", null, "43010", null, "2504", null, "12951", null, "967", null, "76141", null, "4334", null, "29753", null, "1700", null, "141456", null, "3804", null, "318868", null, "5821", null, "310414", null, "5475", null, "297144", null, "5677", null, "107727", null, "3222", null, "95320", null, "2837", null, "79373", null, "2486", null, "36364", null, "1561", null, "42.5", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.5", null, "5.1", null, "0.6", null, "6.0", null, "0.5", null, "5.2", null, "0.3", null, "5.8", null, "0.4", null, "6.3", null, "0.4", null, "6.4", null, "0.3", null, "6.9", null, "0.6", null, "6.0", null, "0.6", null, "6.3", null, "0.4", null, "6.6", null, "0.3", null, "6.3", null, "0.5", null, "7.3", null, "0.7", null, "6.1", null, "0.5", null, "5.0", null, "0.5", null, "3.9", null, "0.4", null, "2.5", null, "0.3", null, "3.0", null, "0.4", null, "11.1", null, "0.5", null, "3.4", null, "0.2", null, "19.7", null, "0.9", null, "7.7", null, "0.4", null, "36.6", null, "0.6", null, "82.5", null, "0.9", null, "80.3", null, "0.9", null, "76.9", null, "0.9", null, "27.9", null, "0.9", null, "24.7", null, "0.8", null, "20.5", null, "0.7", null, "9.4", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "36", "11"], ["5001900US3612", "Congressional District 12 (119th Congress), New York", "752016", null, "18839", null, "25360", null, "3790", null, "20988", null, "3009", null, "23253", null, "4417", null, "22774", null, "2216", null, "44677", null, "4616", null, "92694", null, "7346", null, "82423", null, "5793", null, "69633", null, "6540", null, "46542", null, "5146", null, "44314", null, "3673", null, "43879", null, "3418", null, "34030", null, "4005", null, "46837", null, "3952", null, "40295", null, "4203", null, "33554", null, "4118", null, "33117", null, "3711", null, "24443", null, "3667", null, "23203", null, "3619", null, "44241", null, "4994", null, "12650", null, "1834", null, "82251", null, "6203", null, "54801", null, "5028", null, "358743", null, "12207", null, "678103", null, "16795", null, "669765", null, "16569", null, "655115", null, "16530", null, "201449", null, "6676", null, "181135", null, "7009", null, "154612", null, "6130", null, "80763", null, "4287", null, "39.5", null, "0.7", null, "89.1", null, "3.8", null, "46.0", null, "2.1", null, "30.0", null, "1.5", null, "16.0", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "3.4", null, "0.5", null, "2.8", null, "0.4", null, "3.1", null, "0.6", null, "3.0", null, "0.3", null, "5.9", null, "0.6", null, "12.3", null, "0.9", null, "11.0", null, "0.6", null, "9.3", null, "0.8", null, "6.2", null, "0.7", null, "5.9", null, "0.4", null, "5.8", null, "0.4", null, "4.5", null, "0.5", null, "6.2", null, "0.5", null, "5.4", null, "0.6", null, "4.5", null, "0.5", null, "4.4", null, "0.5", null, "3.3", null, "0.5", null, "3.1", null, "0.5", null, "5.9", null, "0.6", null, "1.7", null, "0.2", null, "10.9", null, "0.7", null, "7.3", null, "0.7", null, "47.7", null, "1.0", null, "90.2", null, "0.7", null, "89.1", null, "0.7", null, "87.1", null, "0.7", null, "26.8", null, "0.9", null, "24.1", null, "1.0", null, "20.6", null, "0.8", null, "10.7", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.3", null, "-888888888.0", "(X)", "354353", null, "12840", null, "13637", null, "2520", null, "12720", null, "2061", null, "9016", null, "2160", null, "9180", null, "1468", null, "17833", null, "3072", null, "42920", null, "4723", null, "39836", null, "3973", null, "32952", null, "4588", null, "22956", null, "4019", null, "23687", null, "2830", null, "23891", null, "2727", null, "16747", null, "2637", null, "24121", null, "3250", null, "18903", null, "2887", null, "13813", null, "2718", null, "14163", null, "1918", null, "7944", null, "1707", null, "10034", null, "2401", null, "21736", null, "2874", null, "5673", null, "1077", null, "41046", null, "3820", null, "21340", null, "3402", null, "165677", null, "8164", null, "317347", null, "12161", null, "313307", null, "11911", null, "307783", null, "11634", null, "88978", null, "4353", null, "78266", null, "4263", null, "64857", null, "3705", null, "32141", null, "2518", null, "39.9", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "3.8", null, "0.7", null, "3.6", null, "0.6", null, "2.5", null, "0.6", null, "2.6", null, "0.4", null, "5.0", null, "0.8", null, "12.1", null, "1.3", null, "11.2", null, "0.9", null, "9.3", null, "1.3", null, "6.5", null, "1.1", null, "6.7", null, "0.7", null, "6.7", null, "0.7", null, "4.7", null, "0.7", null, "6.8", null, "0.9", null, "5.3", null, "0.8", null, "3.9", null, "0.8", null, "4.0", null, "0.6", null, "2.2", null, "0.5", null, "2.8", null, "0.7", null, "6.1", null, "0.8", null, "1.6", null, "0.3", null, "11.6", null, "1.0", null, "6.0", null, "0.9", null, "46.8", null, "1.3", null, "89.6", null, "1.0", null, "88.4", null, "1.0", null, "86.9", null, "1.1", null, "25.1", null, "1.2", null, "22.1", null, "1.3", null, "18.3", null, "1.1", null, "9.1", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "397663", null, "11565", null, "11723", null, "2190", null, "8268", null, "1819", null, "14237", null, "3324", null, "13594", null, "2167", null, "26844", null, "3321", null, "49774", null, "4649", null, "42587", null, "3442", null, "36681", null, "3766", null, "23586", null, "3149", null, "20627", null, "2243", null, "19988", null, "1755", null, "17283", null, "2987", null, "22716", null, "2577", null, "21392", null, "2557", null, "19741", null, "2701", null, "18954", null, "2667", null, "16499", null, "2842", null, "13169", null, "2226", null, "22505", null, "3653", null, "6977", null, "1626", null, "41205", null, "4377", null, "33461", null, "3432", null, "193066", null, "8308", null, "360756", null, "10688", null, "356458", null, "10239", null, "347332", null, "10209", null, "112471", null, "4908", null, "102869", null, "4692", null, "89755", null, "4047", null, "48622", null, "3236", null, "39.1", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "2.9", null, "0.5", null, "2.1", null, "0.5", null, "3.6", null, "0.8", null, "3.4", null, "0.5", null, "6.8", null, "0.8", null, "12.5", null, "1.1", null, "10.7", null, "0.8", null, "9.2", null, "0.9", null, "5.9", null, "0.8", null, "5.2", null, "0.5", null, "5.0", null, "0.4", null, "4.3", null, "0.7", null, "5.7", null, "0.6", null, "5.4", null, "0.7", null, "5.0", null, "0.7", null, "4.8", null, "0.6", null, "4.1", null, "0.7", null, "3.3", null, "0.6", null, "5.7", null, "0.9", null, "1.8", null, "0.4", null, "10.4", null, "1.0", null, "8.4", null, "0.8", null, "48.6", null, "1.4", null, "90.7", null, "1.0", null, "89.6", null, "1.0", null, "87.3", null, "1.0", null, "28.3", null, "1.1", null, "25.9", null, "1.1", null, "22.6", null, "0.9", null, "12.2", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "36", "12"], ["5001900US3613", "Congressional District 13 (119th Congress), New York", "747542", null, "20633", null, "36013", null, "3971", null, "31110", null, "4420", null, "45329", null, "5882", null, "45226", null, "3786", null, "47774", null, "4489", null, "54667", null, "5185", null, "67890", null, "5515", null, "56992", null, "5394", null, "47443", null, "4611", null, "44928", null, "3888", null, "47255", null, "4218", null, "47778", null, "4968", null, "52140", null, "4905", null, "44812", null, "4432", null, "26929", null, "3408", null, "20979", null, "3222", null, "14474", null, "2558", null, "15803", null, "2669", null, "76439", null, "7777", null, "24470", null, "2784", null, "136922", null, "10027", null, "68530", null, "4949", null, "319992", null, "13141", null, "627684", null, "16468", null, "610620", null, "16095", null, "580224", null, "15165", null, "175137", null, "7241", null, "153719", null, "6963", null, "122997", null, "5382", null, "51256", null, "3486", null, "39.0", null, "0.8", null, "90.8", null, "3.3", null, "53.3", null, "2.3", null, "25.2", null, "1.3", null, "28.1", null, "2.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.8", null, "0.5", null, "4.2", null, "0.6", null, "6.1", null, "0.7", null, "6.0", null, "0.5", null, "6.4", null, "0.6", null, "7.3", null, "0.7", null, "9.1", null, "0.7", null, "7.6", null, "0.7", null, "6.3", null, "0.6", null, "6.0", null, "0.5", null, "6.3", null, "0.6", null, "6.4", null, "0.7", null, "7.0", null, "0.6", null, "6.0", null, "0.6", null, "3.6", null, "0.5", null, "2.8", null, "0.4", null, "1.9", null, "0.3", null, "2.1", null, "0.4", null, "10.2", null, "0.9", null, "3.3", null, "0.4", null, "18.3", null, "1.1", null, "9.2", null, "0.6", null, "42.8", null, "1.1", null, "84.0", null, "1.1", null, "81.7", null, "1.1", null, "77.6", null, "1.1", null, "23.4", null, "0.9", null, "20.6", null, "1.0", null, "16.5", null, "0.8", null, "6.9", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "2.2", null, "-888888888.0", "(X)", "355700", null, "12516", null, "19095", null, "3628", null, "14431", null, "2981", null, "24171", null, "3372", null, "20763", null, "2250", null, "22064", null, "3287", null, "23973", null, "2983", null, "35268", null, "4193", null, "29824", null, "3913", null, "26373", null, "3795", null, "19435", null, "2641", null, "23217", null, "3344", null, "21914", null, "2969", null, "24494", null, "3210", null, "21423", null, "2834", null, "11025", null, "2434", null, "7923", null, "1650", null, "4903", null, "1646", null, "5404", null, "1715", null, "38602", null, "4562", null, "12052", null, "1900", null, "69749", null, "6907", null, "30775", null, "3757", null, "158265", null, "8363", null, "294099", null, "10640", null, "285951", null, "10500", null, "272680", null, "10089", null, "75172", null, "4728", null, "64526", null, "4593", null, "50678", null, "3420", null, "18230", null, "1858", null, "37.9", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "1.0", null, "4.1", null, "0.8", null, "6.8", null, "0.9", null, "5.8", null, "0.6", null, "6.2", null, "0.9", null, "6.7", null, "0.8", null, "9.9", null, "1.1", null, "8.4", null, "1.1", null, "7.4", null, "1.0", null, "5.5", null, "0.7", null, "6.5", null, "0.9", null, "6.2", null, "0.9", null, "6.9", null, "0.9", null, "6.0", null, "0.8", null, "3.1", null, "0.7", null, "2.2", null, "0.5", null, "1.4", null, "0.5", null, "1.5", null, "0.5", null, "10.9", null, "1.2", null, "3.4", null, "0.5", null, "19.6", null, "1.7", null, "8.7", null, "1.0", null, "44.5", null, "1.7", null, "82.7", null, "1.6", null, "80.4", null, "1.7", null, "76.7", null, "1.7", null, "21.1", null, "1.3", null, "18.1", null, "1.3", null, "14.2", null, "1.0", null, "5.1", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "391842", null, "12211", null, "16918", null, "2424", null, "16679", null, "3123", null, "21158", null, "4128", null, "24463", null, "2771", null, "25710", null, "3358", null, "30694", null, "3629", null, "32622", null, "3108", null, "27168", null, "3576", null, "21070", null, "2742", null, "25493", null, "2584", null, "24038", null, "2492", null, "25864", null, "3334", null, "27646", null, "3508", null, "23389", null, "2874", null, "15904", null, "2344", null, "13056", null, "2620", null, "9571", null, "1874", null, "10399", null, "2108", null, "37837", null, "4613", null, "12418", null, "1809", null, "67173", null, "6360", null, "37755", null, "3220", null, "161727", null, "8276", null, "333585", null, "10580", null, "324669", null, "10193", null, "307544", null, "9983", null, "99965", null, "5056", null, "89193", null, "5034", null, "72319", null, "3857", null, "33026", null, "2940", null, "40.2", null, "1.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.3", null, "0.6", null, "4.3", null, "0.8", null, "5.4", null, "1.0", null, "6.2", null, "0.7", null, "6.6", null, "0.8", null, "7.8", null, "0.9", null, "8.3", null, "0.7", null, "6.9", null, "0.9", null, "5.4", null, "0.6", null, "6.5", null, "0.7", null, "6.1", null, "0.6", null, "6.6", null, "0.8", null, "7.1", null, "0.8", null, "6.0", null, "0.7", null, "4.1", null, "0.6", null, "3.3", null, "0.7", null, "2.4", null, "0.5", null, "2.7", null, "0.5", null, "9.7", null, "1.0", null, "3.2", null, "0.4", null, "17.1", null, "1.4", null, "9.6", null, "0.8", null, "41.3", null, "1.4", null, "85.1", null, "1.3", null, "82.9", null, "1.4", null, "78.5", null, "1.5", null, "25.5", null, "1.2", null, "22.8", null, "1.3", null, "18.5", null, "1.1", null, "8.4", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "36", "13"], ["5001900US3614", "Congressional District 14 (119th Congress), New York", "737491", null, "24424", null, "51306", null, "5013", null, "48447", null, "5396", null, "42882", null, "5175", null, "43328", null, "4486", null, "42976", null, "4814", null, "54733", null, "4655", null, "67601", null, "4788", null, "56668", null, "5029", null, "56180", null, "5013", null, "45631", null, "4055", null, "42398", null, "4292", null, "38315", null, "4118", null, "39901", null, "3954", null, "34261", null, "3333", null, "27418", null, "3934", null, "21725", null, "2786", null, "11981", null, "2311", null, "11740", null, "2181", null, "91329", null, "8299", null, "26818", null, "2920", null, "169453", null, "12453", null, "59486", null, "5492", null, "321486", null, "13582", null, "586290", null, "17448", null, "568038", null, "15847", null, "544421", null, "14831", null, "147026", null, "7110", null, "129913", null, "6911", null, "107125", null, "5732", null, "45446", null, "3682", null, "36.6", null, "0.8", null, "96.5", null, "4.1", null, "60.0", null, "2.8", null, "23.2", null, "1.5", null, "36.8", null, "2.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "7.0", null, "0.6", null, "6.6", null, "0.6", null, "5.8", null, "0.6", null, "5.9", null, "0.5", null, "5.8", null, "0.6", null, "7.4", null, "0.6", null, "9.2", null, "0.6", null, "7.7", null, "0.6", null, "7.6", null, "0.6", null, "6.2", null, "0.5", null, "5.7", null, "0.5", null, "5.2", null, "0.6", null, "5.4", null, "0.5", null, "4.6", null, "0.5", null, "3.7", null, "0.5", null, "2.9", null, "0.4", null, "1.6", null, "0.3", null, "1.6", null, "0.3", null, "12.4", null, "0.9", null, "3.6", null, "0.3", null, "23.0", null, "1.1", null, "8.1", null, "0.6", null, "43.6", null, "1.1", null, "79.5", null, "1.1", null, "77.0", null, "1.1", null, "73.8", null, "1.2", null, "19.9", null, "1.0", null, "17.6", null, "0.9", null, "14.5", null, "0.8", null, "6.2", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.8", null, "-888888888.0", "(X)", "362183", null, "13574", null, "27021", null, "3097", null, "22067", null, "3153", null, "23058", null, "3544", null, "23267", null, "2928", null, "20396", null, "3043", null, "25396", null, "2888", null, "32554", null, "3341", null, "28217", null, "3591", null, "28040", null, "3619", null, "23552", null, "2458", null, "22290", null, "2886", null, "17052", null, "2511", null, "22311", null, "2959", null, "16652", null, "2395", null, "11461", null, "1952", null, "8549", null, "1566", null, "5846", null, "1515", null, "4454", null, "1350", null, "45125", null, "5235", null, "15915", null, "2297", null, "88061", null, "7428", null, "27748", null, "3244", null, "157870", null, "8382", null, "285345", null, "10241", null, "274122", null, "9562", null, "263822", null, "9242", null, "69273", null, "4338", null, "58582", null, "4239", null, "46962", null, "3660", null, "18849", null, "2355", null, "36.4", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "7.5", null, "0.8", null, "6.1", null, "0.8", null, "6.4", null, "0.9", null, "6.4", null, "0.7", null, "5.6", null, "0.8", null, "7.0", null, "0.8", null, "9.0", null, "0.9", null, "7.8", null, "1.0", null, "7.7", null, "0.9", null, "6.5", null, "0.7", null, "6.2", null, "0.8", null, "4.7", null, "0.7", null, "6.2", null, "0.8", null, "4.6", null, "0.7", null, "3.2", null, "0.5", null, "2.4", null, "0.4", null, "1.6", null, "0.4", null, "1.2", null, "0.4", null, "12.5", null, "1.2", null, "4.4", null, "0.6", null, "24.3", null, "1.5", null, "7.7", null, "0.8", null, "43.6", null, "1.5", null, "78.8", null, "1.5", null, "75.7", null, "1.5", null, "72.8", null, "1.6", null, "19.1", null, "1.2", null, "16.2", null, "1.2", null, "13.0", null, "1.1", null, "5.2", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "375308", null, "15382", null, "24285", null, "3631", null, "26380", null, "3737", null, "19824", null, "3205", null, "20061", null, "3436", null, "22580", null, "3849", null, "29337", null, "3174", null, "35047", null, "3130", null, "28451", null, "2663", null, "28140", null, "3102", null, "22079", null, "2763", null, "20108", null, "2677", null, "21263", null, "3272", null, "17590", null, "2312", null, "17609", null, "2560", null, "15957", null, "3058", null, "13176", null, "2318", null, "6135", null, "1511", null, "7286", null, "1651", null, "46204", null, "4987", null, "10903", null, "1987", null, "81392", null, "7417", null, "31738", null, "4382", null, "163616", null, "9166", null, "300945", null, "11851", null, "293916", null, "11008", null, "280599", null, "10236", null, "77753", null, "4617", null, "71331", null, "4648", null, "60163", null, "3897", null, "26597", null, "2746", null, "36.7", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.5", null, "0.9", null, "7.0", null, "0.9", null, "5.3", null, "0.8", null, "5.3", null, "0.8", null, "6.0", null, "1.0", null, "7.8", null, "0.8", null, "9.3", null, "0.8", null, "7.6", null, "0.6", null, "7.5", null, "0.8", null, "5.9", null, "0.7", null, "5.4", null, "0.6", null, "5.7", null, "0.9", null, "4.7", null, "0.6", null, "4.7", null, "0.7", null, "4.3", null, "0.8", null, "3.5", null, "0.6", null, "1.6", null, "0.4", null, "1.9", null, "0.4", null, "12.3", null, "1.1", null, "2.9", null, "0.5", null, "21.7", null, "1.4", null, "8.5", null, "1.0", null, "43.6", null, "1.5", null, "80.2", null, "1.4", null, "78.3", null, "1.4", null, "74.8", null, "1.5", null, "20.7", null, "1.2", null, "19.0", null, "1.1", null, "16.0", null, "1.0", null, "7.1", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "36", "14"], ["5001900US3615", "Congressional District 15 (119th Congress), New York", "754448", null, "19403", null, "49881", null, "4381", null, "53755", null, "4764", null, "52973", null, "5421", null, "53926", null, "3285", null, "53371", null, "4418", null, "53167", null, "3534", null, "54728", null, "4598", null, "49846", null, "4261", null, "46822", null, "4107", null, "41339", null, "3124", null, "44675", null, "3137", null, "45149", null, "3926", null, "43272", null, "3420", null, "36672", null, "3308", null, "27470", null, "3061", null, "19853", null, "2584", null, "14344", null, "2185", null, "13205", null, "1843", null, "106728", null, "7002", null, "30529", null, "2715", null, "187138", null, "11328", null, "76768", null, "4838", null, "311860", null, "10383", null, "589464", null, "12841", null, "567310", null, "12056", null, "534683", null, "11946", null, "154816", null, "5482", null, "136851", null, "5349", null, "111544", null, "4146", null, "47402", null, "2972", null, "35.5", null, "0.8", null, "90.4", null, "2.7", null, "65.5", null, "2.4", null, "24.5", null, "1.1", null, "41.1", null, "2.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.6", null, "0.5", null, "7.1", null, "0.5", null, "7.0", null, "0.7", null, "7.1", null, "0.4", null, "7.1", null, "0.5", null, "7.0", null, "0.5", null, "7.3", null, "0.6", null, "6.6", null, "0.5", null, "6.2", null, "0.5", null, "5.5", null, "0.4", null, "5.9", null, "0.4", null, "6.0", null, "0.5", null, "5.7", null, "0.5", null, "4.9", null, "0.4", null, "3.6", null, "0.4", null, "2.6", null, "0.3", null, "1.9", null, "0.3", null, "1.8", null, "0.2", null, "14.1", null, "0.7", null, "4.0", null, "0.3", null, "24.8", null, "1.0", null, "10.2", null, "0.6", null, "41.3", null, "0.8", null, "78.1", null, "1.0", null, "75.2", null, "1.0", null, "70.9", null, "1.0", null, "20.5", null, "0.9", null, "18.1", null, "0.8", null, "14.8", null, "0.6", null, "6.3", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.4", null, "-888888888.0", "(X)", "358272", null, "9802", null, "24160", null, "2748", null, "26872", null, "3493", null, "25975", null, "3421", null, "26860", null, "2117", null, "28490", null, "3008", null, "26456", null, "2408", null, "27031", null, "2773", null, "22688", null, "2623", null, "23376", null, "2857", null, "19958", null, "2129", null, "18048", null, "2018", null, "20871", null, "2792", null, "20217", null, "2292", null, "16180", null, "2351", null, "13402", null, "1819", null, "8250", null, "1687", null, "5252", null, "1103", null, "4186", null, "1287", null, "52847", null, "4031", null, "14384", null, "1849", null, "91391", null, "6070", null, "40966", null, "3129", null, "154901", null, "5990", null, "277688", null, "7652", null, "266881", null, "7439", null, "249448", null, "7371", null, "67487", null, "3682", null, "59049", null, "3080", null, "47270", null, "2694", null, "17688", null, "1838", null, "33.7", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.7", null, "0.7", null, "7.5", null, "0.9", null, "7.3", null, "1.0", null, "7.5", null, "0.6", null, "8.0", null, "0.8", null, "7.4", null, "0.7", null, "7.5", null, "0.7", null, "6.3", null, "0.7", null, "6.5", null, "0.8", null, "5.6", null, "0.6", null, "5.0", null, "0.5", null, "5.8", null, "0.7", null, "5.6", null, "0.7", null, "4.5", null, "0.6", null, "3.7", null, "0.5", null, "2.3", null, "0.5", null, "1.5", null, "0.3", null, "1.2", null, "0.4", null, "14.8", null, "1.0", null, "4.0", null, "0.5", null, "25.5", null, "1.3", null, "11.4", null, "0.8", null, "43.2", null, "1.2", null, "77.5", null, "1.3", null, "74.5", null, "1.3", null, "69.6", null, "1.3", null, "18.8", null, "1.1", null, "16.5", null, "0.9", null, "13.2", null, "0.7", null, "4.9", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "396176", null, "12485", null, "25721", null, "3059", null, "26883", null, "3246", null, "26998", null, "3763", null, "27066", null, "2644", null, "24881", null, "3275", null, "26711", null, "2186", null, "27697", null, "2599", null, "27158", null, "3000", null, "23446", null, "2691", null, "21381", null, "1873", null, "26627", null, "2182", null, "24278", null, "2379", null, "23055", null, "2751", null, "20492", null, "2434", null, "14068", null, "2183", null, "11603", null, "1916", null, "9092", null, "1802", null, "9019", null, "1597", null, "53881", null, "4300", null, "16145", null, "2043", null, "95747", null, "6956", null, "35802", null, "3838", null, "156959", null, "6899", null, "311776", null, "8369", null, "300429", null, "8001", null, "285235", null, "7587", null, "87329", null, "4283", null, "77802", null, "4013", null, "64274", null, "3347", null, "29714", null, "2412", null, "37.4", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.5", null, "0.7", null, "6.8", null, "0.8", null, "6.8", null, "0.9", null, "6.8", null, "0.6", null, "6.3", null, "0.8", null, "6.7", null, "0.6", null, "7.0", null, "0.6", null, "6.9", null, "0.7", null, "5.9", null, "0.6", null, "5.4", null, "0.5", null, "6.7", null, "0.5", null, "6.1", null, "0.6", null, "5.8", null, "0.7", null, "5.2", null, "0.6", null, "3.6", null, "0.6", null, "2.9", null, "0.5", null, "2.3", null, "0.5", null, "2.3", null, "0.4", null, "13.6", null, "0.9", null, "4.1", null, "0.5", null, "24.2", null, "1.2", null, "9.0", null, "0.9", null, "39.6", null, "1.0", null, "78.7", null, "1.1", null, "75.8", null, "1.2", null, "72.0", null, "1.3", null, "22.0", null, "1.1", null, "19.6", null, "1.1", null, "16.2", null, "1.0", null, "7.5", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "36", "15"], ["5001900US3616", "Congressional District 16 (119th Congress), New York", "773517", null, "8691", null, "38976", null, "2731", null, "42376", null, "3814", null, "46431", null, "3523", null, "50295", null, "3204", null, "47916", null, "3655", null, "45875", null, "2659", null, "48379", null, "2675", null, "47847", null, "3772", null, "53285", null, "4657", null, "53726", null, "2531", null, "48754", null, "2924", null, "53735", null, "3418", null, "50654", null, "3373", null, "43425", null, "2699", null, "32911", null, "2376", null, "26884", null, "2624", null, "22039", null, "2591", null, "20009", null, "2477", null, "88807", null, "3494", null, "30858", null, "2173", null, "158641", null, "4764", null, "67353", null, "3824", null, "293597", null, "6117", null, "634999", null, "7799", null, "614876", null, "7073", null, "585735", null, "6292", null, "195922", null, "5167", null, "173707", null, "5467", null, "145268", null, "4814", null, "68932", null, "3027", null, "41.6", null, "0.6", null, "91.2", null, "2.1", null, "64.7", null, "1.7", null, "30.9", null, "1.3", null, "33.8", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.0", null, "0.3", null, "5.5", null, "0.5", null, "6.0", null, "0.4", null, "6.5", null, "0.4", null, "6.2", null, "0.5", null, "5.9", null, "0.3", null, "6.3", null, "0.3", null, "6.2", null, "0.5", null, "6.9", null, "0.6", null, "6.9", null, "0.3", null, "6.3", null, "0.4", null, "6.9", null, "0.4", null, "6.5", null, "0.4", null, "5.6", null, "0.4", null, "4.3", null, "0.3", null, "3.5", null, "0.3", null, "2.8", null, "0.3", null, "2.6", null, "0.3", null, "11.5", null, "0.4", null, "4.0", null, "0.3", null, "20.5", null, "0.5", null, "8.7", null, "0.5", null, "38.0", null, "0.6", null, "82.1", null, "0.6", null, "79.5", null, "0.5", null, "75.7", null, "0.5", null, "25.3", null, "0.7", null, "22.5", null, "0.7", null, "18.8", null, "0.6", null, "8.9", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.5", null, "-888888888.0", "(X)", "368901", null, "5581", null, "19928", null, "1612", null, "20772", null, "2986", null, "24751", null, "2459", null, "25299", null, "2175", null, "25317", null, "2460", null, "21734", null, "1976", null, "23697", null, "1991", null, "23555", null, "2600", null, "24627", null, "2878", null, "25330", null, "1591", null, "24355", null, "1999", null, "25440", null, "2491", null, "24124", null, "2500", null, "20176", null, "1772", null, "13464", null, "1544", null, "10947", null, "1396", null, "8474", null, "1598", null, "6911", null, "1255", null, "45523", null, "2581", null, "15501", null, "1564", null, "80952", null, "3364", null, "35115", null, "2646", null, "144229", null, "4641", null, "297771", null, "4913", null, "287949", null, "4608", null, "272875", null, "4053", null, "84096", null, "3044", null, "72584", null, "3306", null, "59972", null, "2882", null, "26332", null, "1679", null, "39.9", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.4", null, "5.6", null, "0.8", null, "6.7", null, "0.6", null, "6.9", null, "0.6", null, "6.9", null, "0.6", null, "5.9", null, "0.5", null, "6.4", null, "0.5", null, "6.4", null, "0.7", null, "6.7", null, "0.8", null, "6.9", null, "0.4", null, "6.6", null, "0.5", null, "6.9", null, "0.7", null, "6.5", null, "0.7", null, "5.5", null, "0.5", null, "3.6", null, "0.4", null, "3.0", null, "0.4", null, "2.3", null, "0.4", null, "1.9", null, "0.3", null, "12.3", null, "0.6", null, "4.2", null, "0.4", null, "21.9", null, "0.8", null, "9.5", null, "0.7", null, "39.1", null, "1.0", null, "80.7", null, "0.8", null, "78.1", null, "0.8", null, "74.0", null, "0.9", null, "22.8", null, "0.9", null, "19.7", null, "0.9", null, "16.3", null, "0.8", null, "7.1", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "404616", null, "6801", null, "19048", null, "2177", null, "21604", null, "2178", null, "21680", null, "2570", null, "24996", null, "2147", null, "22599", null, "2090", null, "24141", null, "1419", null, "24682", null, "1707", null, "24292", null, "2371", null, "28658", null, "3003", null, "28396", null, "1665", null, "24399", null, "1702", null, "28295", null, "2316", null, "26530", null, "2055", null, "23249", null, "2241", null, "19447", null, "2192", null, "15937", null, "1899", null, "13565", null, "1548", null, "13098", null, "1860", null, "43284", null, "1842", null, "15357", null, "1527", null, "77689", null, "2979", null, "32238", null, "2091", null, "149368", null, "3820", null, "337228", null, "5962", null, "326927", null, "5551", null, "312860", null, "5519", null, "111826", null, "3524", null, "101123", null, "3386", null, "85296", null, "3189", null, "42600", null, "2096", null, "43.4", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.7", null, "0.5", null, "5.3", null, "0.5", null, "5.4", null, "0.6", null, "6.2", null, "0.5", null, "5.6", null, "0.5", null, "6.0", null, "0.3", null, "6.1", null, "0.4", null, "6.0", null, "0.6", null, "7.1", null, "0.7", null, "7.0", null, "0.4", null, "6.0", null, "0.4", null, "7.0", null, "0.6", null, "6.6", null, "0.5", null, "5.7", null, "0.5", null, "4.8", null, "0.5", null, "3.9", null, "0.5", null, "3.4", null, "0.4", null, "3.2", null, "0.4", null, "10.7", null, "0.4", null, "3.8", null, "0.4", null, "19.2", null, "0.6", null, "8.0", null, "0.5", null, "36.9", null, "0.8", null, "83.3", null, "0.7", null, "80.8", null, "0.6", null, "77.3", null, "0.7", null, "27.6", null, "0.8", null, "25.0", null, "0.7", null, "21.1", null, "0.7", null, "10.5", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "36", "16"], ["5001900US3617", "Congressional District 17 (119th Congress), New York", "783152", null, "5303", null, "53433", null, "2495", null, "53108", null, "2779", null, "52350", null, "2755", null, "53011", null, "2653", null, "46992", null, "2993", null, "40868", null, "2683", null, "42057", null, "2784", null, "51281", null, "3399", null, "46578", null, "3231", null, "45451", null, "2756", null, "48973", null, "3001", null, "48429", null, "3635", null, "52968", null, "3839", null, "46591", null, "2764", null, "37145", null, "3005", null, "27951", null, "2355", null, "18148", null, "2019", null, "17818", null, "1790", null, "105458", null, "3443", null, "33853", null, "2250", null, "192744", null, "4419", null, "66150", null, "3364", null, "280787", null, "5810", null, "613511", null, "5279", null, "590408", null, "4798", null, "564739", null, "5041", null, "200621", null, "5866", null, "177663", null, "5628", null, "147653", null, "4359", null, "63917", null, "2370", null, "39.8", null, "0.7", null, "100.4", null, "1.8", null, "76.9", null, "1.7", null, "33.3", null, "1.2", null, "43.5", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.8", null, "0.3", null, "6.8", null, "0.4", null, "6.7", null, "0.3", null, "6.8", null, "0.3", null, "6.0", null, "0.4", null, "5.2", null, "0.3", null, "5.4", null, "0.4", null, "6.5", null, "0.4", null, "5.9", null, "0.4", null, "5.8", null, "0.4", null, "6.3", null, "0.4", null, "6.2", null, "0.5", null, "6.8", null, "0.5", null, "5.9", null, "0.4", null, "4.7", null, "0.4", null, "3.6", null, "0.3", null, "2.3", null, "0.3", null, "2.3", null, "0.2", null, "13.5", null, "0.4", null, "4.3", null, "0.3", null, "24.6", null, "0.5", null, "8.4", null, "0.4", null, "35.9", null, "0.7", null, "78.3", null, "0.5", null, "75.4", null, "0.5", null, "72.1", null, "0.5", null, "25.6", null, "0.8", null, "22.7", null, "0.7", null, "18.9", null, "0.6", null, "8.2", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.4", null, "-888888888.0", "(X)", "392302", null, "4627", null, "27338", null, "1862", null, "27698", null, "2028", null, "26025", null, "2312", null, "27742", null, "1947", null, "22853", null, "1999", null, "22039", null, "1770", null, "21007", null, "1973", null, "27344", null, "2335", null, "24272", null, "2515", null, "23290", null, "1931", null, "24761", null, "2100", null, "24219", null, "2399", null, "26339", null, "2211", null, "21781", null, "1886", null, "18857", null, "2071", null, "12785", null, "1633", null, "8418", null, "1345", null, "5534", null, "952", null, "53723", null, "2434", null, "17387", null, "1817", null, "98448", null, "3478", null, "33208", null, "2183", null, "145257", null, "4190", null, "305633", null, "3663", null, "293854", null, "3159", null, "279928", null, "3319", null, "93714", null, "3194", null, "81460", null, "3193", null, "67375", null, "2777", null, "26737", null, "1539", null, "39.0", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "7.0", null, "0.4", null, "7.1", null, "0.5", null, "6.6", null, "0.6", null, "7.1", null, "0.5", null, "5.8", null, "0.5", null, "5.6", null, "0.4", null, "5.4", null, "0.5", null, "7.0", null, "0.6", null, "6.2", null, "0.7", null, "5.9", null, "0.5", null, "6.3", null, "0.5", null, "6.2", null, "0.6", null, "6.7", null, "0.6", null, "5.6", null, "0.5", null, "4.8", null, "0.5", null, "3.3", null, "0.4", null, "2.1", null, "0.3", null, "1.4", null, "0.2", null, "13.7", null, "0.6", null, "4.4", null, "0.4", null, "25.1", null, "0.7", null, "8.5", null, "0.5", null, "37.0", null, "1.0", null, "77.9", null, "0.7", null, "74.9", null, "0.7", null, "71.4", null, "0.8", null, "23.9", null, "0.9", null, "20.8", null, "0.8", null, "17.2", null, "0.7", null, "6.8", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "390850", null, "4292", null, "26095", null, "2001", null, "25410", null, "2149", null, "26325", null, "1988", null, "25269", null, "1856", null, "24139", null, "2057", null, "18829", null, "1527", null, "21050", null, "1626", null, "23937", null, "2035", null, "22306", null, "2007", null, "22161", null, "1524", null, "24212", null, "1703", null, "24210", null, "2206", null, "26629", null, "2300", null, "24810", null, "2063", null, "18288", null, "1733", null, "15166", null, "1613", null, "9730", null, "1331", null, "12284", null, "1432", null, "51735", null, "2022", null, "16466", null, "1332", null, "94296", null, "2887", null, "32942", null, "2191", null, "135530", null, "3343", null, "307878", null, "4172", null, "296554", null, "3959", null, "284811", null, "3932", null, "106907", null, "3630", null, "96203", null, "3431", null, "80278", null, "2437", null, "37180", null, "1481", null, "41.0", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.7", null, "0.5", null, "6.5", null, "0.6", null, "6.7", null, "0.5", null, "6.5", null, "0.5", null, "6.2", null, "0.5", null, "4.8", null, "0.4", null, "5.4", null, "0.4", null, "6.1", null, "0.5", null, "5.7", null, "0.5", null, "5.7", null, "0.4", null, "6.2", null, "0.4", null, "6.2", null, "0.6", null, "6.8", null, "0.6", null, "6.3", null, "0.5", null, "4.7", null, "0.4", null, "3.9", null, "0.4", null, "2.5", null, "0.3", null, "3.1", null, "0.4", null, "13.2", null, "0.5", null, "4.2", null, "0.3", null, "24.1", null, "0.7", null, "8.4", null, "0.5", null, "34.7", null, "0.7", null, "78.8", null, "0.7", null, "75.9", null, "0.7", null, "72.9", null, "0.7", null, "27.4", null, "0.9", null, "24.6", null, "0.9", null, "20.5", null, "0.6", null, "9.5", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "36", "17"], ["5001900US3618", "Congressional District 18 (119th Congress), New York", "791202", null, "4980", null, "44494", null, "1489", null, "46946", null, "3292", null, "46771", null, "3306", null, "58471", null, "2384", null, "56672", null, "2030", null, "46253", null, "1788", null, "47889", null, "1861", null, "50133", null, "3304", null, "51209", null, "3773", null, "47687", null, "1985", null, "49099", null, "1889", null, "50767", null, "2767", null, "53419", null, "2535", null, "44977", null, "2821", null, "36586", null, "2923", null, "28469", null, "2069", null, "17106", null, "2005", null, "14254", null, "1679", null, "93717", null, "2187", null, "32632", null, "1148", null, "170843", null, "2729", null, "82511", null, "2086", null, "310627", null, "3429", null, "642896", null, "3922", null, "620359", null, "3842", null, "585730", null, "4393", null, "194811", null, "3563", null, "171998", null, "3610", null, "141392", null, "2667", null, "59829", null, "1629", null, "39.8", null, "0.4", null, "98.0", null, "1.1", null, "65.2", null, "1.0", null, "29.5", null, "0.7", null, "35.7", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.6", null, "0.2", null, "5.9", null, "0.4", null, "5.9", null, "0.4", null, "7.4", null, "0.3", null, "7.2", null, "0.2", null, "5.8", null, "0.2", null, "6.1", null, "0.2", null, "6.3", null, "0.4", null, "6.5", null, "0.5", null, "6.0", null, "0.2", null, "6.2", null, "0.2", null, "6.4", null, "0.3", null, "6.8", null, "0.3", null, "5.7", null, "0.4", null, "4.6", null, "0.4", null, "3.6", null, "0.3", null, "2.2", null, "0.3", null, "1.8", null, "0.2", null, "11.8", null, "0.2", null, "4.1", null, "0.1", null, "21.6", null, "0.3", null, "10.4", null, "0.3", null, "39.3", null, "0.4", null, "81.3", null, "0.3", null, "78.4", null, "0.3", null, "74.0", null, "0.4", null, "24.6", null, "0.5", null, "21.7", null, "0.5", null, "17.9", null, "0.3", null, "7.6", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.1", null, "-888888888.0", "(X)", "391638", null, "3101", null, "23158", null, "1140", null, "24443", null, "2272", null, "24025", null, "2184", null, "29422", null, "1301", null, "28514", null, "1323", null, "23311", null, "1124", null, "24598", null, "1237", null, "23892", null, "2500", null, "26584", null, "2501", null, "24192", null, "1488", null, "23728", null, "1195", null, "25183", null, "1715", null, "26338", null, "1693", null, "22404", null, "1726", null, "16944", null, "1857", null, "13120", null, "1273", null, "7323", null, "1027", null, "4459", null, "929", null, "48468", null, "1254", null, "16657", null, "988", null, "88283", null, "1953", null, "41279", null, "1315", null, "156321", null, "2156", null, "315182", null, "2549", null, "303355", null, "2270", null, "285516", null, "2816", null, "90588", null, "2341", null, "80369", null, "2390", null, "64250", null, "1550", null, "24902", null, "955", null, "38.9", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.9", null, "0.3", null, "6.2", null, "0.6", null, "6.1", null, "0.5", null, "7.5", null, "0.3", null, "7.3", null, "0.3", null, "6.0", null, "0.3", null, "6.3", null, "0.3", null, "6.1", null, "0.6", null, "6.8", null, "0.6", null, "6.2", null, "0.4", null, "6.1", null, "0.3", null, "6.4", null, "0.4", null, "6.7", null, "0.4", null, "5.7", null, "0.4", null, "4.3", null, "0.5", null, "3.4", null, "0.3", null, "1.9", null, "0.3", null, "1.1", null, "0.2", null, "12.4", null, "0.3", null, "4.3", null, "0.2", null, "22.5", null, "0.4", null, "10.5", null, "0.3", null, "39.9", null, "0.5", null, "80.5", null, "0.5", null, "77.5", null, "0.4", null, "72.9", null, "0.6", null, "23.1", null, "0.6", null, "20.5", null, "0.6", null, "16.4", null, "0.4", null, "6.4", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "399564", null, "3457", null, "21336", null, "986", null, "22503", null, "2224", null, "22746", null, "2475", null, "29049", null, "1902", null, "28158", null, "1347", null, "22942", null, "1204", null, "23291", null, "1133", null, "26241", null, "2106", null, "24625", null, "2411", null, "23495", null, "1243", null, "25371", null, "1009", null, "25584", null, "1997", null, "27081", null, "1714", null, "22573", null, "1804", null, "19642", null, "1851", null, "15349", null, "1498", null, "9783", null, "1545", null, "9795", null, "1255", null, "45249", null, "1703", null, "15975", null, "872", null, "82560", null, "2081", null, "41232", null, "1428", null, "154306", null, "2467", null, "327714", null, "2776", null, "317004", null, "2430", null, "300214", null, "2906", null, "104223", null, "2307", null, "91629", null, "2342", null, "77142", null, "1649", null, "34927", null, "1077", null, "40.8", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.3", null, "0.2", null, "5.6", null, "0.6", null, "5.7", null, "0.6", null, "7.3", null, "0.5", null, "7.0", null, "0.3", null, "5.7", null, "0.3", null, "5.8", null, "0.3", null, "6.6", null, "0.5", null, "6.2", null, "0.6", null, "5.9", null, "0.3", null, "6.3", null, "0.3", null, "6.4", null, "0.5", null, "6.8", null, "0.4", null, "5.6", null, "0.5", null, "4.9", null, "0.5", null, "3.8", null, "0.4", null, "2.4", null, "0.4", null, "2.5", null, "0.3", null, "11.3", null, "0.4", null, "4.0", null, "0.2", null, "20.7", null, "0.4", null, "10.3", null, "0.4", null, "38.6", null, "0.5", null, "82.0", null, "0.5", null, "79.3", null, "0.4", null, "75.1", null, "0.6", null, "26.1", null, "0.6", null, "22.9", null, "0.6", null, "19.3", null, "0.4", null, "8.7", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "36", "18"], ["5001900US3619", "Congressional District 19 (119th Congress), New York", "776282", null, "7705", null, "32323", null, "1486", null, "35630", null, "1923", null, "39718", null, "1968", null, "58033", null, "2379", null, "64239", null, "2978", null, "43161", null, "2304", null, "45824", null, "2187", null, "45445", null, "3464", null, "47190", null, "3127", null, "43592", null, "1958", null, "42838", null, "1841", null, "46955", null, "2626", null, "60026", null, "2601", null, "52799", null, "2681", null, "45729", null, "2253", null, "32055", null, "1845", null, "21368", null, "1940", null, "19357", null, "2054", null, "75348", null, "2189", null, "24644", null, "1579", null, "132315", null, "3102", null, "97628", null, "2684", null, "303892", null, "4965", null, "660238", null, "6079", null, "643967", null, "5712", null, "596223", null, "5799", null, "231334", null, "3626", null, "207615", null, "3684", null, "171308", null, "2541", null, "72780", null, "1639", null, "42.5", null, "0.4", null, "100.5", null, "1.7", null, "64.2", null, "1.1", null, "36.2", null, "0.8", null, "28.0", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.2", null, "0.2", null, "4.6", null, "0.2", null, "5.1", null, "0.2", null, "7.5", null, "0.3", null, "8.3", null, "0.4", null, "5.6", null, "0.3", null, "5.9", null, "0.3", null, "5.9", null, "0.4", null, "6.1", null, "0.4", null, "5.6", null, "0.2", null, "5.5", null, "0.2", null, "6.0", null, "0.3", null, "7.7", null, "0.3", null, "6.8", null, "0.4", null, "5.9", null, "0.3", null, "4.1", null, "0.2", null, "2.8", null, "0.3", null, "2.5", null, "0.3", null, "9.7", null, "0.2", null, "3.2", null, "0.2", null, "17.0", null, "0.3", null, "12.6", null, "0.3", null, "39.1", null, "0.5", null, "85.1", null, "0.3", null, "83.0", null, "0.3", null, "76.8", null, "0.4", null, "29.8", null, "0.5", null, "26.7", null, "0.5", null, "22.1", null, "0.4", null, "9.4", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.2", null, "-888888888.0", "(X)", "389152", null, "4823", null, "15380", null, "1164", null, "17648", null, "1388", null, "21977", null, "1515", null, "28500", null, "1769", null, "32962", null, "1980", null, "22983", null, "1802", null, "23842", null, "1737", null, "22635", null, "2453", null, "24838", null, "1953", null, "22563", null, "1292", null, "21535", null, "1221", null, "24662", null, "1608", null, "28370", null, "1721", null, "26316", null, "1993", null, "22152", null, "1747", null, "14827", null, "1360", null, "10480", null, "1306", null, "7482", null, "1129", null, "39625", null, "1502", null, "13080", null, "1312", null, "68085", null, "2582", null, "48382", null, "2003", null, "155760", null, "3414", null, "329497", null, "3771", null, "321067", null, "3689", null, "297874", null, "3853", null, "109627", null, "2160", null, "98317", null, "2305", null, "81257", null, "1674", null, "32789", null, "1173", null, "41.7", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.0", null, "0.3", null, "4.5", null, "0.3", null, "5.6", null, "0.4", null, "7.3", null, "0.4", null, "8.5", null, "0.5", null, "5.9", null, "0.5", null, "6.1", null, "0.4", null, "5.8", null, "0.6", null, "6.4", null, "0.5", null, "5.8", null, "0.3", null, "5.5", null, "0.3", null, "6.3", null, "0.4", null, "7.3", null, "0.4", null, "6.8", null, "0.5", null, "5.7", null, "0.5", null, "3.8", null, "0.4", null, "2.7", null, "0.3", null, "1.9", null, "0.3", null, "10.2", null, "0.3", null, "3.4", null, "0.3", null, "17.5", null, "0.5", null, "12.4", null, "0.5", null, "40.0", null, "0.7", null, "84.7", null, "0.5", null, "82.5", null, "0.5", null, "76.5", null, "0.7", null, "28.2", null, "0.6", null, "25.3", null, "0.6", null, "20.9", null, "0.5", null, "8.4", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "387130", null, "5233", null, "16943", null, "1364", null, "17982", null, "1482", null, "17741", null, "1412", null, "29533", null, "1849", null, "31277", null, "1825", null, "20178", null, "1441", null, "21982", null, "1160", null, "22810", null, "1994", null, "22352", null, "1960", null, "21029", null, "1197", null, "21303", null, "1131", null, "22293", null, "1809", null, "31656", null, "1836", null, "26483", null, "1678", null, "23577", null, "1541", null, "17228", null, "1187", null, "10888", null, "1213", null, "11875", null, "1416", null, "35723", null, "1482", null, "11564", null, "1180", null, "64230", null, "2422", null, "49246", null, "1826", null, "148132", null, "3318", null, "330741", null, "4277", null, "322900", null, "3911", null, "298349", null, "4034", null, "121707", null, "2361", null, "109298", null, "2401", null, "90051", null, "1642", null, "39991", null, "1072", null, "43.4", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.4", null, "0.3", null, "4.6", null, "0.4", null, "4.6", null, "0.4", null, "7.6", null, "0.4", null, "8.1", null, "0.4", null, "5.2", null, "0.4", null, "5.7", null, "0.3", null, "5.9", null, "0.5", null, "5.8", null, "0.5", null, "5.4", null, "0.3", null, "5.5", null, "0.3", null, "5.8", null, "0.4", null, "8.2", null, "0.5", null, "6.8", null, "0.4", null, "6.1", null, "0.4", null, "4.5", null, "0.3", null, "2.8", null, "0.3", null, "3.1", null, "0.4", null, "9.2", null, "0.4", null, "3.0", null, "0.3", null, "16.6", null, "0.5", null, "12.7", null, "0.4", null, "38.3", null, "0.6", null, "85.4", null, "0.5", null, "83.4", null, "0.5", null, "77.1", null, "0.6", null, "31.4", null, "0.7", null, "28.2", null, "0.7", null, "23.3", null, "0.4", null, "10.3", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "36", "19"], ["5001900US3620", "Congressional District 20 (119th Congress), New York", "790733", null, "6661", null, "37713", null, "1776", null, "41434", null, "2876", null, "45276", null, "2745", null, "55001", null, "2427", null, "59662", null, "2270", null, "52191", null, "2268", null, "55250", null, "2669", null, "55764", null, "3956", null, "45593", null, "3740", null, "43543", null, "2230", null, "47470", null, "2182", null, "49773", null, "3723", null, "51646", null, "3072", null, "44397", null, "2479", null, "39625", null, "2351", null, "30087", null, "2336", null, "18177", null, "1768", null, "18131", null, "1672", null, "86710", null, "2546", null, "26140", null, "1310", null, "150563", null, "2537", null, "88523", null, "2324", null, "323461", null, "3629", null, "658644", null, "5775", null, "640170", null, "5217", null, "595336", null, "5801", null, "202063", null, "4072", null, "179993", null, "3427", null, "150417", null, "2659", null, "66395", null, "1817", null, "39.3", null, "0.5", null, "95.9", null, "1.5", null, "61.5", null, "0.9", null, "30.7", null, "0.6", null, "30.7", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.8", null, "0.2", null, "5.2", null, "0.4", null, "5.7", null, "0.3", null, "7.0", null, "0.3", null, "7.5", null, "0.3", null, "6.6", null, "0.3", null, "7.0", null, "0.3", null, "7.1", null, "0.5", null, "5.8", null, "0.5", null, "5.5", null, "0.3", null, "6.0", null, "0.3", null, "6.3", null, "0.5", null, "6.5", null, "0.4", null, "5.6", null, "0.3", null, "5.0", null, "0.3", null, "3.8", null, "0.3", null, "2.3", null, "0.2", null, "2.3", null, "0.2", null, "11.0", null, "0.3", null, "3.3", null, "0.2", null, "19.0", null, "0.2", null, "11.2", null, "0.3", null, "40.9", null, "0.4", null, "83.3", null, "0.3", null, "81.0", null, "0.2", null, "75.3", null, "0.4", null, "25.6", null, "0.5", null, "22.8", null, "0.4", null, "19.0", null, "0.3", null, "8.4", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.2", null, "-888888888.0", "(X)", "387116", null, "4607", null, "17971", null, "1361", null, "22780", null, "2220", null, "22357", null, "2023", null, "28630", null, "1919", null, "29345", null, "1652", null, "25845", null, "1217", null, "26516", null, "1573", null, "28337", null, "2826", null, "22489", null, "2529", null, "21947", null, "1406", null, "24495", null, "1567", null, "24237", null, "2327", null, "25173", null, "2234", null, "21970", null, "1645", null, "17601", null, "1450", null, "13573", null, "1483", null, "7187", null, "1017", null, "6663", null, "1065", null, "45137", null, "2030", null, "13017", null, "1276", null, "76125", null, "2643", null, "44958", null, "1497", null, "161162", null, "2857", null, "319681", null, "3521", null, "310991", null, "3015", null, "286910", null, "3400", null, "92167", null, "2817", null, "81450", null, "2635", null, "66994", null, "1844", null, "27423", null, "1322", null, "38.5", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.6", null, "0.3", null, "5.9", null, "0.5", null, "5.8", null, "0.5", null, "7.4", null, "0.5", null, "7.6", null, "0.4", null, "6.7", null, "0.3", null, "6.8", null, "0.4", null, "7.3", null, "0.7", null, "5.8", null, "0.6", null, "5.7", null, "0.4", null, "6.3", null, "0.4", null, "6.3", null, "0.6", null, "6.5", null, "0.6", null, "5.7", null, "0.4", null, "4.5", null, "0.4", null, "3.5", null, "0.4", null, "1.9", null, "0.3", null, "1.7", null, "0.3", null, "11.7", null, "0.4", null, "3.4", null, "0.3", null, "19.7", null, "0.5", null, "11.6", null, "0.4", null, "41.6", null, "0.7", null, "82.6", null, "0.6", null, "80.3", null, "0.5", null, "74.1", null, "0.7", null, "23.8", null, "0.7", null, "21.0", null, "0.7", null, "17.3", null, "0.5", null, "7.1", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "403617", null, "4331", null, "19742", null, "1812", null, "18654", null, "2066", null, "22919", null, "2113", null, "26371", null, "1702", null, "30317", null, "1649", null, "26346", null, "1610", null, "28734", null, "1837", null, "27427", null, "2152", null, "23104", null, "2141", null, "21596", null, "1353", null, "22975", null, "1413", null, "25536", null, "2305", null, "26473", null, "1835", null, "22427", null, "1631", null, "22024", null, "1579", null, "16514", null, "1772", null, "10990", null, "1397", null, "11468", null, "1220", null, "41573", null, "1721", null, "13123", null, "1080", null, "74438", null, "2538", null, "43565", null, "1600", null, "162299", null, "2474", null, "338963", null, "3411", null, "329179", null, "3080", null, "308426", null, "3523", null, "109896", null, "2451", null, "98543", null, "2069", null, "83423", null, "1418", null, "38972", null, "1125", null, "40.3", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.9", null, "0.4", null, "4.6", null, "0.5", null, "5.7", null, "0.5", null, "6.5", null, "0.4", null, "7.5", null, "0.4", null, "6.5", null, "0.4", null, "7.1", null, "0.5", null, "6.8", null, "0.5", null, "5.7", null, "0.5", null, "5.4", null, "0.3", null, "5.7", null, "0.3", null, "6.3", null, "0.6", null, "6.6", null, "0.5", null, "5.6", null, "0.4", null, "5.5", null, "0.4", null, "4.1", null, "0.4", null, "2.7", null, "0.3", null, "2.8", null, "0.3", null, "10.3", null, "0.4", null, "3.3", null, "0.3", null, "18.4", null, "0.5", null, "10.8", null, "0.4", null, "40.2", null, "0.6", null, "84.0", null, "0.6", null, "81.6", null, "0.5", null, "76.4", null, "0.7", null, "27.2", null, "0.6", null, "24.4", null, "0.5", null, "20.7", null, "0.4", null, "9.7", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "36", "20"], ["5001900US3621", "Congressional District 21 (119th Congress), New York", "767674", null, "6498", null, "35061", null, "1701", null, "39356", null, "2428", null, "43806", null, "2367", null, "47754", null, "2138", null, "49586", null, "2094", null, "43645", null, "2346", null, "47306", null, "2065", null, "49070", null, "2940", null, "46200", null, "2573", null, "42646", null, "1673", null, "48035", null, "1773", null, "48828", null, "2959", null, "59965", null, "2739", null, "53416", null, "2302", null, "44967", null, "2409", null, "31235", null, "1836", null, "20397", null, "1727", null, "16401", null, "1782", null, "83162", null, "2663", null, "27680", null, "1536", null, "145903", null, "3622", null, "69660", null, "2251", null, "283561", null, "4265", null, "641039", null, "5296", null, "621771", null, "5250", null, "592819", null, "5637", null, "226381", null, "3596", null, "202730", null, "3212", null, "166416", null, "2422", null, "68033", null, "1718", null, "43.0", null, "0.5", null, "104.7", null, "1.6", null, "68.6", null, "1.1", null, "36.5", null, "0.7", null, "32.0", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.6", null, "0.2", null, "5.1", null, "0.3", null, "5.7", null, "0.3", null, "6.2", null, "0.3", null, "6.5", null, "0.3", null, "5.7", null, "0.3", null, "6.2", null, "0.3", null, "6.4", null, "0.4", null, "6.0", null, "0.3", null, "5.6", null, "0.2", null, "6.3", null, "0.2", null, "6.4", null, "0.4", null, "7.8", null, "0.4", null, "7.0", null, "0.3", null, "5.9", null, "0.3", null, "4.1", null, "0.2", null, "2.7", null, "0.2", null, "2.1", null, "0.2", null, "10.8", null, "0.3", null, "3.6", null, "0.2", null, "19.0", null, "0.4", null, "9.1", null, "0.3", null, "36.9", null, "0.4", null, "83.5", null, "0.4", null, "81.0", null, "0.4", null, "77.2", null, "0.4", null, "29.5", null, "0.5", null, "26.4", null, "0.4", null, "21.7", null, "0.3", null, "8.9", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.0", null, "-888888888.0", "(X)", "392656", null, "4282", null, "18063", null, "1256", null, "21147", null, "1644", null, "21944", null, "1662", null, "24738", null, "1483", null, "27585", null, "1585", null, "23726", null, "1673", null, "25313", null, "1566", null, "24794", null, "2195", null, "25074", null, "1938", null, "22182", null, "967", null, "24606", null, "1180", null, "25046", null, "1850", null, "30190", null, "1658", null, "26291", null, "1569", null, "21931", null, "1291", null, "14685", null, "1102", null, "8844", null, "1115", null, "6497", null, "1007", null, "43091", null, "1881", null, "14879", null, "1184", null, "76033", null, "2435", null, "37444", null, "1495", null, "151230", null, "3110", null, "326837", null, "3330", null, "316623", null, "3406", null, "301533", null, "4060", null, "108438", null, "2228", null, "96498", null, "2231", null, "78248", null, "1645", null, "30026", null, "1007", null, "41.8", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.6", null, "0.3", null, "5.4", null, "0.4", null, "5.6", null, "0.4", null, "6.3", null, "0.4", null, "7.0", null, "0.4", null, "6.0", null, "0.4", null, "6.4", null, "0.4", null, "6.3", null, "0.6", null, "6.4", null, "0.5", null, "5.6", null, "0.2", null, "6.3", null, "0.3", null, "6.4", null, "0.5", null, "7.7", null, "0.4", null, "6.7", null, "0.4", null, "5.6", null, "0.3", null, "3.7", null, "0.3", null, "2.3", null, "0.3", null, "1.7", null, "0.3", null, "11.0", null, "0.4", null, "3.8", null, "0.3", null, "19.4", null, "0.5", null, "9.5", null, "0.4", null, "38.5", null, "0.6", null, "83.2", null, "0.5", null, "80.6", null, "0.5", null, "76.8", null, "0.7", null, "27.6", null, "0.6", null, "24.6", null, "0.6", null, "19.9", null, "0.4", null, "7.6", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "375018", null, "4451", null, "16998", null, "1124", null, "18209", null, "1801", null, "21862", null, "1904", null, "23016", null, "1389", null, "22001", null, "1238", null, "19919", null, "1295", null, "21993", null, "1122", null, "24276", null, "1829", null, "21126", null, "1916", null, "20464", null, "1239", null, "23429", null, "1127", null, "23782", null, "1819", null, "29775", null, "1733", null, "27125", null, "1493", null, "23036", null, "1759", null, "16550", null, "1430", null, "11553", null, "1324", null, "9904", null, "1190", null, "40071", null, "2058", null, "12801", null, "925", null, "69870", null, "2687", null, "32216", null, "1416", null, "132331", null, "2459", null, "314202", null, "3520", null, "305148", null, "3343", null, "291286", null, "3159", null, "117943", null, "2193", null, "106232", null, "1970", null, "88168", null, "1449", null, "38007", null, "1050", null, "44.6", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.5", null, "0.3", null, "4.9", null, "0.5", null, "5.8", null, "0.5", null, "6.1", null, "0.4", null, "5.9", null, "0.3", null, "5.3", null, "0.3", null, "5.9", null, "0.3", null, "6.5", null, "0.5", null, "5.6", null, "0.5", null, "5.5", null, "0.3", null, "6.2", null, "0.3", null, "6.3", null, "0.5", null, "7.9", null, "0.5", null, "7.2", null, "0.4", null, "6.1", null, "0.5", null, "4.4", null, "0.4", null, "3.1", null, "0.4", null, "2.6", null, "0.3", null, "10.7", null, "0.5", null, "3.4", null, "0.2", null, "18.6", null, "0.6", null, "8.6", null, "0.4", null, "35.3", null, "0.5", null, "83.8", null, "0.6", null, "81.4", null, "0.6", null, "77.7", null, "0.6", null, "31.4", null, "0.7", null, "28.3", null, "0.6", null, "23.5", null, "0.4", null, "10.1", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "36", "21"], ["5001900US3622", "Congressional District 22 (119th Congress), New York", "765288", null, "5505", null, "38682", null, "1259", null, "41579", null, "3046", null, "46061", null, "2975", null, "54873", null, "1668", null, "55454", null, "1914", null, "46407", null, "1697", null, "47313", null, "1688", null, "46036", null, "3143", null, "50220", null, "3167", null, "39564", null, "1952", null, "41703", null, "1590", null, "49159", null, "2695", null, "52677", null, "2839", null, "46393", null, "2469", null, "44217", null, "2584", null, "29420", null, "1865", null, "18119", null, "1592", null, "17411", null, "1524", null, "87640", null, "2201", null, "27411", null, "1227", null, "153733", null, "3420", null, "82916", null, "1934", null, "300303", null, "3441", null, "631817", null, "4149", null, "611555", null, "3624", null, "570733", null, "3972", null, "208237", null, "3462", null, "187945", null, "3176", null, "155560", null, "2308", null, "64950", null, "1469", null, "40.5", null, "0.4", null, "96.0", null, "1.1", null, "67.8", null, "0.9", null, "34.1", null, "0.7", null, "33.7", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.1", null, "0.1", null, "5.4", null, "0.4", null, "6.0", null, "0.4", null, "7.2", null, "0.2", null, "7.2", null, "0.2", null, "6.1", null, "0.2", null, "6.2", null, "0.2", null, "6.0", null, "0.4", null, "6.6", null, "0.4", null, "5.2", null, "0.2", null, "5.4", null, "0.2", null, "6.4", null, "0.4", null, "6.9", null, "0.4", null, "6.1", null, "0.3", null, "5.8", null, "0.3", null, "3.8", null, "0.2", null, "2.4", null, "0.2", null, "2.3", null, "0.2", null, "11.5", null, "0.2", null, "3.6", null, "0.2", null, "20.1", null, "0.3", null, "10.8", null, "0.2", null, "39.2", null, "0.4", null, "82.6", null, "0.3", null, "79.9", null, "0.3", null, "74.6", null, "0.4", null, "27.2", null, "0.5", null, "24.6", null, "0.4", null, "20.3", null, "0.3", null, "8.5", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "0.8", null, "-888888888.0", "(X)", "374780", null, "3320", null, "19544", null, "1038", null, "21084", null, "1850", null, "22986", null, "1656", null, "27598", null, "1292", null, "28173", null, "1265", null, "23534", null, "1149", null, "23182", null, "1223", null, "23218", null, "1825", null, "24268", null, "1845", null, "19851", null, "1005", null, "20059", null, "1048", null, "22988", null, "1973", null, "27083", null, "2030", null, "22729", null, "1445", null, "21512", null, "1613", null, "12040", null, "1121", null, "8784", null, "1117", null, "6147", null, "972", null, "44070", null, "1276", null, "14748", null, "999", null, "78362", null, "2177", null, "41023", null, "1187", null, "149973", null, "2142", null, "306948", null, "2791", null, "296418", null, "2242", null, "276335", null, "2583", null, "98295", null, "2432", null, "87523", null, "2071", null, "71212", null, "1344", null, "26971", null, "794", null, "39.4", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.3", null, "5.6", null, "0.5", null, "6.1", null, "0.4", null, "7.4", null, "0.3", null, "7.5", null, "0.3", null, "6.3", null, "0.3", null, "6.2", null, "0.3", null, "6.2", null, "0.5", null, "6.5", null, "0.5", null, "5.3", null, "0.3", null, "5.4", null, "0.3", null, "6.1", null, "0.5", null, "7.2", null, "0.5", null, "6.1", null, "0.4", null, "5.7", null, "0.4", null, "3.2", null, "0.3", null, "2.3", null, "0.3", null, "1.6", null, "0.3", null, "11.8", null, "0.3", null, "3.9", null, "0.3", null, "20.9", null, "0.5", null, "10.9", null, "0.3", null, "40.0", null, "0.5", null, "81.9", null, "0.4", null, "79.1", null, "0.5", null, "73.7", null, "0.6", null, "26.2", null, "0.6", null, "23.4", null, "0.6", null, "19.0", null, "0.4", null, "7.2", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "390508", null, "3713", null, "19138", null, "1173", null, "20495", null, "1804", null, "23075", null, "2009", null, "27275", null, "1083", null, "27281", null, "1302", null, "22873", null, "1234", null, "24131", null, "912", null, "22818", null, "2268", null, "25952", null, "2152", null, "19713", null, "1318", null, "21644", null, "994", null, "26171", null, "1600", null, "25594", null, "1692", null, "23664", null, "1688", null, "22705", null, "1703", null, "17380", null, "1447", null, "9335", null, "994", null, "11264", null, "1115", null, "43570", null, "1306", null, "12663", null, "815", null, "75371", null, "2392", null, "41893", null, "1447", null, "150330", null, "2115", null, "324869", null, "2655", null, "315137", null, "2374", null, "294398", null, "2637", null, "109942", null, "1922", null, "100422", null, "1978", null, "84348", null, "1457", null, "37979", null, "1127", null, "41.4", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.9", null, "0.3", null, "5.2", null, "0.5", null, "5.9", null, "0.5", null, "7.0", null, "0.3", null, "7.0", null, "0.3", null, "5.9", null, "0.3", null, "6.2", null, "0.2", null, "5.8", null, "0.6", null, "6.6", null, "0.6", null, "5.0", null, "0.3", null, "5.5", null, "0.3", null, "6.7", null, "0.4", null, "6.6", null, "0.4", null, "6.1", null, "0.4", null, "5.8", null, "0.4", null, "4.5", null, "0.4", null, "2.4", null, "0.3", null, "2.9", null, "0.3", null, "11.2", null, "0.3", null, "3.2", null, "0.2", null, "19.3", null, "0.5", null, "10.7", null, "0.4", null, "38.5", null, "0.4", null, "83.2", null, "0.4", null, "80.7", null, "0.5", null, "75.4", null, "0.5", null, "28.2", null, "0.5", null, "25.7", null, "0.5", null, "21.6", null, "0.4", null, "9.7", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "36", "22"], ["5001900US3623", "Congressional District 23 (119th Congress), New York", "773707", null, "6281", null, "37700", null, "2346", null, "43664", null, "2971", null, "47544", null, "3622", null, "46600", null, "2593", null, "44706", null, "2197", null, "41449", null, "2920", null, "45779", null, "2737", null, "47106", null, "3428", null, "48600", null, "3416", null, "41972", null, "2274", null, "46895", null, "2173", null, "51177", null, "2690", null, "59553", null, "3125", null, "58321", null, "2730", null, "45676", null, "2962", null, "31065", null, "2049", null, "19493", null, "1954", null, "16407", null, "1453", null, "91208", null, "3067", null, "28186", null, "1781", null, "157094", null, "3595", null, "63120", null, "2353", null, "274240", null, "4292", null, "634770", null, "5661", null, "616613", null, "5428", null, "589287", null, "5629", null, "230515", null, "4025", null, "207392", null, "3857", null, "170962", null, "3097", null, "66965", null, "2257", null, "43.2", null, "0.5", null, "100.8", null, "1.8", null, "73.6", null, "1.5", null, "38.4", null, "0.9", null, "35.3", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.9", null, "0.3", null, "5.6", null, "0.4", null, "6.1", null, "0.5", null, "6.0", null, "0.3", null, "5.8", null, "0.3", null, "5.4", null, "0.4", null, "5.9", null, "0.3", null, "6.1", null, "0.4", null, "6.3", null, "0.4", null, "5.4", null, "0.3", null, "6.1", null, "0.3", null, "6.6", null, "0.3", null, "7.7", null, "0.4", null, "7.5", null, "0.4", null, "5.9", null, "0.4", null, "4.0", null, "0.3", null, "2.5", null, "0.2", null, "2.1", null, "0.2", null, "11.8", null, "0.4", null, "3.6", null, "0.2", null, "20.3", null, "0.4", null, "8.2", null, "0.3", null, "35.4", null, "0.4", null, "82.0", null, "0.4", null, "79.7", null, "0.4", null, "76.2", null, "0.5", null, "29.8", null, "0.5", null, "26.8", null, "0.5", null, "22.1", null, "0.4", null, "8.7", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "0.9", null, "-888888888.0", "(X)", "388393", null, "4841", null, "18233", null, "1619", null, "22388", null, "2154", null, "23800", null, "2066", null, "23812", null, "1678", null, "24974", null, "1199", null, "22171", null, "1726", null, "23885", null, "1593", null, "24778", null, "2301", null, "24660", null, "2331", null, "21027", null, "1248", null, "23539", null, "1266", null, "27011", null, "1815", null, "28624", null, "2002", null, "28537", null, "1707", null, "21244", null, "1921", null, "14794", null, "1185", null, "9045", null, "1273", null, "5871", null, "929", null, "46188", null, "2052", null, "15180", null, "1290", null, "79601", null, "2735", null, "33606", null, "1395", null, "144280", null, "3301", null, "318912", null, "3984", null, "308792", null, "3704", null, "294773", null, "3854", null, "108115", null, "2864", null, "97360", null, "2726", null, "79491", null, "2127", null, "29710", null, "1479", null, "41.9", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.7", null, "0.4", null, "5.8", null, "0.5", null, "6.1", null, "0.5", null, "6.1", null, "0.4", null, "6.4", null, "0.3", null, "5.7", null, "0.4", null, "6.1", null, "0.4", null, "6.4", null, "0.6", null, "6.3", null, "0.6", null, "5.4", null, "0.3", null, "6.1", null, "0.3", null, "7.0", null, "0.5", null, "7.4", null, "0.5", null, "7.3", null, "0.4", null, "5.5", null, "0.5", null, "3.8", null, "0.3", null, "2.3", null, "0.3", null, "1.5", null, "0.2", null, "11.9", null, "0.5", null, "3.9", null, "0.3", null, "20.5", null, "0.6", null, "8.7", null, "0.4", null, "37.1", null, "0.7", null, "82.1", null, "0.6", null, "79.5", null, "0.6", null, "75.9", null, "0.7", null, "27.8", null, "0.7", null, "25.1", null, "0.7", null, "20.5", null, "0.5", null, "7.6", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "385314", null, "4623", null, "19467", null, "1779", null, "21276", null, "2020", null, "23744", null, "2474", null, "22788", null, "1908", null, "19732", null, "1695", null, "19278", null, "1798", null, "21894", null, "1734", null, "22328", null, "1851", null, "23940", null, "1924", null, "20945", null, "1628", null, "23356", null, "1494", null, "24166", null, "1569", null, "30929", null, "1790", null, "29784", null, "1867", null, "24432", null, "1713", null, "16271", null, "1543", null, "10448", null, "1274", null, "10536", null, "1115", null, "45020", null, "2561", null, "13006", null, "1175", null, "77493", null, "3468", null, "29514", null, "1771", null, "129960", null, "2487", null, "315858", null, "3632", null, "307821", null, "3578", null, "294514", null, "3684", null, "122400", null, "2547", null, "110032", null, "2569", null, "91471", null, "2003", null, "37255", null, "1447", null, "44.5", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.1", null, "0.4", null, "5.5", null, "0.5", null, "6.2", null, "0.6", null, "5.9", null, "0.5", null, "5.1", null, "0.4", null, "5.0", null, "0.5", null, "5.7", null, "0.4", null, "5.8", null, "0.5", null, "6.2", null, "0.5", null, "5.4", null, "0.4", null, "6.1", null, "0.4", null, "6.3", null, "0.4", null, "8.0", null, "0.5", null, "7.7", null, "0.5", null, "6.3", null, "0.4", null, "4.2", null, "0.4", null, "2.7", null, "0.3", null, "2.7", null, "0.3", null, "11.7", null, "0.6", null, "3.4", null, "0.3", null, "20.1", null, "0.8", null, "7.7", null, "0.4", null, "33.7", null, "0.5", null, "82.0", null, "0.8", null, "79.9", null, "0.8", null, "76.4", null, "0.8", null, "31.8", null, "0.6", null, "28.6", null, "0.7", null, "23.7", null, "0.5", null, "9.7", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "36", "23"], ["5001900US3624", "Congressional District 24 (119th Congress), New York", "772889", null, "5600", null, "36045", null, "1553", null, "39961", null, "2696", null, "41919", null, "2387", null, "48639", null, "2120", null, "48605", null, "2359", null, "42484", null, "1833", null, "48388", null, "1941", null, "50047", null, "2630", null, "46223", null, "3149", null, "42524", null, "1829", null, "47007", null, "1375", null, "49207", null, "2802", null, "63092", null, "3099", null, "55039", null, "2553", null, "43733", null, "2470", null, "32714", null, "2044", null, "20975", null, "1723", null, "16287", null, "1594", null, "81880", null, "2782", null, "29065", null, "1726", null, "146990", null, "3476", null, "68179", null, "2319", null, "284386", null, "3887", null, "644577", null, "5040", null, "625899", null, "4528", null, "596216", null, "4448", null, "231840", null, "3665", null, "207847", null, "3451", null, "168748", null, "2364", null, "69976", null, "1566", null, "43.1", null, "0.4", null, "101.5", null, "1.4", null, "69.1", null, "1.2", null, "36.9", null, "0.7", null, "32.2", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.7", null, "0.2", null, "5.2", null, "0.3", null, "5.4", null, "0.3", null, "6.3", null, "0.3", null, "6.3", null, "0.3", null, "5.5", null, "0.2", null, "6.3", null, "0.2", null, "6.5", null, "0.3", null, "6.0", null, "0.4", null, "5.5", null, "0.2", null, "6.1", null, "0.2", null, "6.4", null, "0.4", null, "8.2", null, "0.4", null, "7.1", null, "0.3", null, "5.7", null, "0.3", null, "4.2", null, "0.3", null, "2.7", null, "0.2", null, "2.1", null, "0.2", null, "10.6", null, "0.3", null, "3.8", null, "0.2", null, "19.0", null, "0.4", null, "8.8", null, "0.3", null, "36.8", null, "0.4", null, "83.4", null, "0.4", null, "81.0", null, "0.4", null, "77.1", null, "0.4", null, "30.0", null, "0.5", null, "26.9", null, "0.4", null, "21.8", null, "0.3", null, "9.1", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.0", null, "-888888888.0", "(X)", "389386", null, "4104", null, "19138", null, "1199", null, "20984", null, "1952", null, "21965", null, "1797", null, "24262", null, "1878", null, "25041", null, "1611", null, "23239", null, "1550", null, "25146", null, "1444", null, "26659", null, "1750", null, "22604", null, "1936", null, "22041", null, "1304", null, "23237", null, "1046", null, "23385", null, "1870", null, "31192", null, "1733", null, "26483", null, "1590", null, "22682", null, "1431", null, "15012", null, "1291", null, "9757", null, "1197", null, "6559", null, "877", null, "42949", null, "1923", null, "14855", null, "1624", null, "76942", null, "2613", null, "34448", null, "1655", null, "146951", null, "3130", null, "322397", null, "3428", null, "312444", null, "3072", null, "297443", null, "3036", null, "111685", null, "2055", null, "99947", null, "1965", null, "80493", null, "1401", null, "31328", null, "982", null, "41.5", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.9", null, "0.3", null, "5.4", null, "0.5", null, "5.6", null, "0.4", null, "6.2", null, "0.5", null, "6.4", null, "0.4", null, "6.0", null, "0.4", null, "6.5", null, "0.4", null, "6.8", null, "0.5", null, "5.8", null, "0.5", null, "5.7", null, "0.3", null, "6.0", null, "0.3", null, "6.0", null, "0.5", null, "8.0", null, "0.4", null, "6.8", null, "0.4", null, "5.8", null, "0.4", null, "3.9", null, "0.3", null, "2.5", null, "0.3", null, "1.7", null, "0.2", null, "11.0", null, "0.5", null, "3.8", null, "0.4", null, "19.8", null, "0.6", null, "8.8", null, "0.4", null, "37.7", null, "0.6", null, "82.8", null, "0.5", null, "80.2", null, "0.6", null, "76.4", null, "0.6", null, "28.7", null, "0.6", null, "25.7", null, "0.5", null, "20.7", null, "0.4", null, "8.0", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "383503", null, "3480", null, "16907", null, "864", null, "18977", null, "1598", null, "19954", null, "1611", null, "24377", null, "1104", null, "23564", null, "1540", null, "19245", null, "908", null, "23242", null, "1298", null, "23388", null, "1525", null, "23619", null, "1821", null, "20483", null, "1225", null, "23770", null, "1072", null, "25822", null, "1941", null, "31900", null, "2101", null, "28556", null, "1857", null, "21051", null, "1696", null, "17702", null, "1206", null, "11218", null, "1123", null, "9728", null, "1232", null, "38931", null, "1615", null, "14210", null, "1011", null, "70048", null, "2088", null, "33731", null, "1526", null, "137435", null, "2581", null, "322180", null, "3285", null, "313455", null, "2905", null, "298773", null, "3016", null, "120155", null, "2593", null, "107900", null, "2464", null, "88255", null, "1528", null, "38648", null, "945", null, "44.6", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.4", null, "0.2", null, "4.9", null, "0.4", null, "5.2", null, "0.4", null, "6.4", null, "0.3", null, "6.1", null, "0.4", null, "5.0", null, "0.2", null, "6.1", null, "0.3", null, "6.1", null, "0.4", null, "6.2", null, "0.5", null, "5.3", null, "0.3", null, "6.2", null, "0.3", null, "6.7", null, "0.5", null, "8.3", null, "0.5", null, "7.4", null, "0.5", null, "5.5", null, "0.4", null, "4.6", null, "0.3", null, "2.9", null, "0.3", null, "2.5", null, "0.3", null, "10.2", null, "0.4", null, "3.7", null, "0.3", null, "18.3", null, "0.5", null, "8.8", null, "0.4", null, "35.8", null, "0.5", null, "84.0", null, "0.5", null, "81.7", null, "0.5", null, "77.9", null, "0.5", null, "31.3", null, "0.7", null, "28.1", null, "0.6", null, "23.0", null, "0.4", null, "10.1", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "36", "24"], ["5001900US3625", "Congressional District 25 (119th Congress), New York", "768525", null, "2070", null, "39128", null, "643", null, "42008", null, "3089", null, "44468", null, "2829", null, "50778", null, "964", null, "50647", null, "855", null, "48571", null, "415", null, "53254", null, "350", null, "54049", null, "3043", null, "47242", null, "2886", null, "41438", null, "501", null, "43248", null, "342", null, "48076", null, "3212", null, "52582", null, "3148", null, "48352", null, "2348", null, "39234", null, "2503", null, "27985", null, "1931", null, "18998", null, "1877", null, "18467", null, "2168", null, "86476", null, "912", null, "28114", null, "412", null, "153718", null, "1180", null, "73311", null, "317", null, "304541", null, "907", null, "634546", null, "2055", null, "614807", null, "1340", null, "581237", null, "1947", null, "205618", null, "3235", null, "184842", null, "2882", null, "153036", null, "677", null, "65450", null, "667", null, "40.1", null, "0.4", null, "94.1", null, "0.4", null, "66.4", null, "0.3", null, "33.1", null, "0.2", null, "33.3", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.1", null, "0.1", null, "5.5", null, "0.4", null, "5.8", null, "0.4", null, "6.6", null, "0.1", null, "6.6", null, "0.1", null, "6.3", null, "0.1", null, "6.9", null, "0.1", null, "7.0", null, "0.4", null, "6.1", null, "0.4", null, "5.4", null, "0.1", null, "5.6", null, "0.1", null, "6.3", null, "0.4", null, "6.8", null, "0.4", null, "6.3", null, "0.3", null, "5.1", null, "0.3", null, "3.6", null, "0.3", null, "2.5", null, "0.2", null, "2.4", null, "0.3", null, "11.3", null, "0.1", null, "3.7", null, "0.1", null, "20.0", null, "0.1", null, "9.5", null, "0.1", null, "39.6", null, "0.1", null, "82.6", null, "0.2", null, "80.0", null, "0.1", null, "75.6", null, "0.2", null, "26.8", null, "0.4", null, "24.1", null, "0.4", null, "19.9", null, "0.1", null, "8.5", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.1", null, "-888888888.0", "(X)", "372653", null, "1325", null, "20392", null, "844", null, "21144", null, "2137", null, "23174", null, "2009", null, "25688", null, "814", null, "25532", null, "713", null, "24048", null, "228", null, "26088", null, "153", null, "26544", null, "1997", null, "23178", null, "1896", null, "20016", null, "286", null, "20599", null, "186", null, "21913", null, "1953", null, "26267", null, "1862", null, "23606", null, "1507", null, "17733", null, "1498", null, "13378", null, "1161", null, "7729", null, "1159", null, "5624", null, "961", null, "44318", null, "656", null, "14393", null, "201", null, "79103", null, "1084", null, "36827", null, "246", null, "151078", null, "619", null, "304013", null, "1317", null, "293550", null, "744", null, "276800", null, "1295", null, "94337", null, "1907", null, "84814", null, "1747", null, "68070", null, "399", null, "26731", null, "398", null, "38.6", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.2", null, "5.7", null, "0.6", null, "6.2", null, "0.5", null, "6.9", null, "0.2", null, "6.9", null, "0.2", null, "6.5", null, "0.1", null, "7.0", null, "0.1", null, "7.1", null, "0.5", null, "6.2", null, "0.5", null, "5.4", null, "0.1", null, "5.5", null, "0.1", null, "5.9", null, "0.5", null, "7.0", null, "0.5", null, "6.3", null, "0.4", null, "4.8", null, "0.4", null, "3.6", null, "0.3", null, "2.1", null, "0.3", null, "1.5", null, "0.3", null, "11.9", null, "0.2", null, "3.9", null, "0.1", null, "21.2", null, "0.2", null, "9.9", null, "0.1", null, "40.5", null, "0.2", null, "81.6", null, "0.4", null, "78.8", null, "0.2", null, "74.3", null, "0.4", null, "25.3", null, "0.5", null, "22.8", null, "0.5", null, "18.3", null, "0.1", null, "7.2", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "395872", null, "1288", null, "18736", null, "579", null, "20864", null, "1904", null, "21294", null, "1850", null, "25090", null, "510", null, "25115", null, "311", null, "24523", null, "346", null, "27166", null, "312", null, "27505", null, "1857", null, "24064", null, "1842", null, "21422", null, "391", null, "22649", null, "262", null, "26163", null, "2267", null, "26315", null, "2280", null, "24746", null, "1426", null, "21501", null, "1576", null, "14607", null, "1539", null, "11269", null, "1526", null, "12843", null, "2041", null, "42158", null, "387", null, "13721", null, "427", null, "74615", null, "822", null, "36484", null, "200", null, "153463", null, "669", null, "330533", null, "1585", null, "321257", null, "871", null, "304437", null, "1397", null, "111281", null, "2327", null, "100028", null, "1702", null, "84966", null, "421", null, "38719", null, "488", null, "41.6", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.7", null, "0.1", null, "5.3", null, "0.5", null, "5.4", null, "0.5", null, "6.3", null, "0.1", null, "6.3", null, "0.1", null, "6.2", null, "0.1", null, "6.9", null, "0.1", null, "6.9", null, "0.5", null, "6.1", null, "0.5", null, "5.4", null, "0.1", null, "5.7", null, "0.1", null, "6.6", null, "0.6", null, "6.6", null, "0.6", null, "6.3", null, "0.4", null, "5.4", null, "0.4", null, "3.7", null, "0.4", null, "2.8", null, "0.4", null, "3.2", null, "0.5", null, "10.6", null, "0.1", null, "3.5", null, "0.1", null, "18.8", null, "0.2", null, "9.2", null, "0.1", null, "38.8", null, "0.1", null, "83.5", null, "0.3", null, "81.2", null, "0.2", null, "76.9", null, "0.3", null, "28.1", null, "0.6", null, "25.3", null, "0.4", null, "21.5", null, "0.1", null, "9.8", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "36", "25"], ["5001900US3626", "Congressional District 26 (119th Congress), New York", "760693", null, "4801", null, "39814", null, "2013", null, "41248", null, "3538", null, "43584", null, "3298", null, "45560", null, "2328", null, "51141", null, "2059", null, "53820", null, "3022", null, "56966", null, "2783", null, "47631", null, "3261", null, "51925", null, "3716", null, "41862", null, "2352", null, "40661", null, "2338", null, "46344", null, "3375", null, "49269", null, "3146", null, "47458", null, "2805", null, "38648", null, "2987", null, "27021", null, "2011", null, "19206", null, "1965", null, "18535", null, "1773", null, "84832", null, "3531", null, "26304", null, "1600", null, "150950", null, "3792", null, "70397", null, "2301", null, "307043", null, "3864", null, "628776", null, "5654", null, "609743", null, "5249", null, "581302", null, "5603", null, "200137", null, "4624", null, "180167", null, "4522", null, "150868", null, "3706", null, "64762", null, "2329", null, "40.0", null, "0.5", null, "92.2", null, "1.7", null, "65.8", null, "1.5", null, "32.9", null, "1.0", null, "32.9", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.3", null, "5.4", null, "0.5", null, "5.7", null, "0.4", null, "6.0", null, "0.3", null, "6.7", null, "0.3", null, "7.1", null, "0.4", null, "7.5", null, "0.4", null, "6.3", null, "0.4", null, "6.8", null, "0.5", null, "5.5", null, "0.3", null, "5.3", null, "0.3", null, "6.1", null, "0.4", null, "6.5", null, "0.4", null, "6.2", null, "0.4", null, "5.1", null, "0.4", null, "3.6", null, "0.3", null, "2.5", null, "0.3", null, "2.4", null, "0.2", null, "11.2", null, "0.5", null, "3.5", null, "0.2", null, "19.8", null, "0.5", null, "9.3", null, "0.3", null, "40.4", null, "0.5", null, "82.7", null, "0.5", null, "80.2", null, "0.5", null, "76.4", null, "0.6", null, "26.3", null, "0.6", null, "23.7", null, "0.6", null, "19.8", null, "0.5", null, "8.5", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.5", null, "-888888888.0", "(X)", "364900", null, "4083", null, "20133", null, "1475", null, "18610", null, "1912", null, "23738", null, "2030", null, "22754", null, "1519", null, "25447", null, "1432", null, "25586", null, "1974", null, "28917", null, "1763", null, "22651", null, "2150", null, "25004", null, "2415", null, "20013", null, "1183", null, "20876", null, "1509", null, "21409", null, "2203", null, "24003", null, "2191", null, "22244", null, "1945", null, "18013", null, "1768", null, "11648", null, "1245", null, "7422", null, "1038", null, "6432", null, "1154", null, "42348", null, "1995", null, "13008", null, "1094", null, "75489", null, "2683", null, "35193", null, "1497", null, "150359", null, "2995", null, "298613", null, "4139", null, "289411", null, "3746", null, "274388", null, "4045", null, "89762", null, "2975", null, "79218", null, "2846", null, "65759", null, "2251", null, "25502", null, "1494", null, "38.6", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.4", null, "5.1", null, "0.5", null, "6.5", null, "0.5", null, "6.2", null, "0.4", null, "7.0", null, "0.4", null, "7.0", null, "0.5", null, "7.9", null, "0.5", null, "6.2", null, "0.6", null, "6.9", null, "0.7", null, "5.5", null, "0.3", null, "5.7", null, "0.4", null, "5.9", null, "0.6", null, "6.6", null, "0.6", null, "6.1", null, "0.5", null, "4.9", null, "0.5", null, "3.2", null, "0.3", null, "2.0", null, "0.3", null, "1.8", null, "0.3", null, "11.6", null, "0.5", null, "3.6", null, "0.3", null, "20.7", null, "0.7", null, "9.6", null, "0.4", null, "41.2", null, "0.7", null, "81.8", null, "0.7", null, "79.3", null, "0.7", null, "75.2", null, "0.8", null, "24.6", null, "0.8", null, "21.7", null, "0.8", null, "18.0", null, "0.6", null, "7.0", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "395793", null, "4279", null, "19681", null, "1711", null, "22638", null, "3056", null, "19846", null, "2527", null, "22806", null, "1749", null, "25694", null, "1344", null, "28234", null, "1716", null, "28049", null, "1525", null, "24980", null, "2318", null, "26921", null, "2591", null, "21849", null, "1620", null, "19785", null, "1413", null, "24935", null, "2094", null, "25266", null, "2139", null, "25214", null, "2006", null, "20635", null, "2089", null, "15373", null, "1438", null, "11784", null, "1594", null, "12103", null, "1358", null, "42484", null, "2806", null, "13296", null, "1088", null, "75461", null, "3350", null, "35204", null, "1476", null, "156684", null, "2535", null, "330163", null, "3493", null, "320332", null, "3444", null, "306914", null, "3658", null, "110375", null, "3137", null, "100949", null, "2933", null, "85109", null, "2314", null, "39260", null, "1598", null, "40.9", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.0", null, "0.4", null, "5.7", null, "0.8", null, "5.0", null, "0.6", null, "5.8", null, "0.4", null, "6.5", null, "0.3", null, "7.1", null, "0.4", null, "7.1", null, "0.4", null, "6.3", null, "0.6", null, "6.8", null, "0.7", null, "5.5", null, "0.4", null, "5.0", null, "0.4", null, "6.3", null, "0.5", null, "6.4", null, "0.5", null, "6.4", null, "0.5", null, "5.2", null, "0.5", null, "3.9", null, "0.4", null, "3.0", null, "0.4", null, "3.1", null, "0.3", null, "10.7", null, "0.7", null, "3.4", null, "0.3", null, "19.1", null, "0.7", null, "8.9", null, "0.4", null, "39.6", null, "0.6", null, "83.4", null, "0.7", null, "80.9", null, "0.7", null, "77.5", null, "0.9", null, "27.9", null, "0.8", null, "25.5", null, "0.7", null, "21.5", null, "0.6", null, "9.9", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "36", "26"], ["5001900US3701", "Congressional District 1 (119th Congress), North Carolina", "753478", null, "3626", null, "37838", null, "2204", null, "45053", null, "3345", null, "47391", null, "3491", null, "46026", null, "2968", null, "45458", null, "3247", null, "44245", null, "3313", null, "44888", null, "3665", null, "47589", null, "4800", null, "50041", null, "4518", null, "39141", null, "2939", null, "44304", null, "2808", null, "46577", null, "2973", null, "55340", null, "3035", null, "55014", null, "2584", null, "38658", null, "2340", null, "31633", null, "2354", null, "19437", null, "2098", null, "14845", null, "1753", null, "92444", null, "2982", null, "30458", null, "1847", null, "160740", null, "2325", null, "61026", null, "3645", null, "278247", null, "4592", null, "613664", null, "3535", null, "592738", null, "2949", null, "568455", null, "3270", null, "214927", null, "3804", null, "193655", null, "2988", null, "159587", null, "2291", null, "65915", null, "1537", null, "41.9", null, "0.6", null, "94.5", null, "1.7", null, "74.0", null, "1.1", null, "36.8", null, "0.7", null, "37.1", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.0", null, "0.3", null, "6.0", null, "0.4", null, "6.3", null, "0.5", null, "6.1", null, "0.4", null, "6.0", null, "0.4", null, "5.9", null, "0.4", null, "6.0", null, "0.5", null, "6.3", null, "0.6", null, "6.6", null, "0.6", null, "5.2", null, "0.4", null, "5.9", null, "0.4", null, "6.2", null, "0.4", null, "7.3", null, "0.4", null, "7.3", null, "0.3", null, "5.1", null, "0.3", null, "4.2", null, "0.3", null, "2.6", null, "0.3", null, "2.0", null, "0.2", null, "12.3", null, "0.4", null, "4.0", null, "0.2", null, "21.3", null, "0.3", null, "8.1", null, "0.5", null, "36.9", null, "0.6", null, "81.4", null, "0.3", null, "78.7", null, "0.3", null, "75.4", null, "0.4", null, "28.5", null, "0.5", null, "25.7", null, "0.4", null, "21.2", null, "0.3", null, "8.7", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.8", null, "-888888888.0", "(X)", "366051", null, "3481", null, "19182", null, "1957", null, "23224", null, "2502", null, "23429", null, "2558", null, "23621", null, "2165", null, "23517", null, "2230", null, "23305", null, "1951", null, "22190", null, "2692", null, "23204", null, "2983", null, "23671", null, "2896", null, "19745", null, "2200", null, "21574", null, "1996", null, "21248", null, "1824", null, "28182", null, "1949", null, "24869", null, "1748", null, "17459", null, "1542", null, "12975", null, "1437", null, "9365", null, "1164", null, "5291", null, "1101", null, "46653", null, "2389", null, "14852", null, "1751", null, "80687", null, "2987", null, "32286", null, "2157", null, "139508", null, "3426", null, "294933", null, "2861", null, "285364", null, "2328", null, "271794", null, "2728", null, "98141", null, "2624", null, "88272", null, "2193", null, "69959", null, "1548", null, "27631", null, "1131", null, "40.3", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.5", null, "6.3", null, "0.7", null, "6.4", null, "0.7", null, "6.5", null, "0.6", null, "6.4", null, "0.6", null, "6.4", null, "0.5", null, "6.1", null, "0.7", null, "6.3", null, "0.8", null, "6.5", null, "0.8", null, "5.4", null, "0.6", null, "5.9", null, "0.5", null, "5.8", null, "0.5", null, "7.7", null, "0.5", null, "6.8", null, "0.5", null, "4.8", null, "0.4", null, "3.5", null, "0.4", null, "2.6", null, "0.3", null, "1.4", null, "0.3", null, "12.7", null, "0.6", null, "4.1", null, "0.5", null, "22.0", null, "0.7", null, "8.8", null, "0.6", null, "38.1", null, "0.9", null, "80.6", null, "0.7", null, "78.0", null, "0.7", null, "74.3", null, "0.7", null, "26.8", null, "0.7", null, "24.1", null, "0.6", null, "19.1", null, "0.4", null, "7.5", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "387427", null, "4141", null, "18656", null, "2083", null, "21829", null, "2190", null, "23962", null, "2326", null, "22405", null, "2468", null, "21941", null, "2061", null, "20940", null, "2101", null, "22698", null, "2149", null, "24385", null, "2853", null, "26370", null, "2782", null, "19396", null, "1788", null, "22730", null, "2165", null, "25329", null, "2088", null, "27158", null, "2226", null, "30145", null, "1667", null, "21199", null, "1466", null, "18658", null, "1652", null, "10072", null, "1519", null, "9554", null, "1211", null, "45791", null, "2670", null, "15606", null, "1765", null, "80053", null, "3144", null, "28740", null, "2282", null, "138739", null, "3479", null, "318731", null, "2923", null, "307374", null, "2305", null, "296661", null, "2488", null, "116786", null, "2560", null, "105383", null, "2216", null, "89628", null, "1393", null, "38284", null, "946", null, "43.4", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.8", null, "0.5", null, "5.6", null, "0.5", null, "6.2", null, "0.6", null, "5.8", null, "0.6", null, "5.7", null, "0.5", null, "5.4", null, "0.5", null, "5.9", null, "0.6", null, "6.3", null, "0.7", null, "6.8", null, "0.7", null, "5.0", null, "0.5", null, "5.9", null, "0.6", null, "6.5", null, "0.6", null, "7.0", null, "0.6", null, "7.8", null, "0.4", null, "5.5", null, "0.4", null, "4.8", null, "0.4", null, "2.6", null, "0.4", null, "2.5", null, "0.3", null, "11.8", null, "0.6", null, "4.0", null, "0.4", null, "20.7", null, "0.6", null, "7.4", null, "0.6", null, "35.8", null, "0.8", null, "82.3", null, "0.7", null, "79.3", null, "0.6", null, "76.6", null, "0.8", null, "30.1", null, "0.7", null, "27.2", null, "0.6", null, "23.1", null, "0.4", null, "9.9", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "37", "01"], ["5001900US3702", "Congressional District 2 (119th Congress), North Carolina", "790747", null, "12411", null, "43406", null, "2521", null, "40979", null, "4596", null, "45470", null, "4810", null, "52057", null, "3438", null, "62479", null, "2307", null, "64652", null, "2564", null, "67945", null, "3318", null, "61406", null, "4583", null, "52943", null, "4414", null, "48301", null, "2651", null, "50921", null, "2820", null, "44138", null, "4270", null, "45331", null, "3615", null, "36106", null, "3586", null, "27733", null, "3277", null, "21462", null, "2211", null, "13948", null, "2052", null, "11470", null, "1924", null, "86449", null, "4852", null, "29627", null, "2110", null, "159482", null, "6123", null, "84909", null, "3008", null, "361482", null, "7413", null, "650992", null, "10403", null, "631265", null, "9668", null, "598255", null, "9643", null, "156050", null, "5048", null, "137286", null, "4865", null, "110719", null, "4199", null, "46880", null, "2316", null, "36.5", null, "0.5", null, "95.7", null, "1.7", null, "51.9", null, "1.2", null, "21.3", null, "0.9", null, "30.6", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.3", null, "5.2", null, "0.6", null, "5.8", null, "0.6", null, "6.6", null, "0.4", null, "7.9", null, "0.3", null, "8.2", null, "0.3", null, "8.6", null, "0.4", null, "7.8", null, "0.6", null, "6.7", null, "0.5", null, "6.1", null, "0.3", null, "6.4", null, "0.3", null, "5.6", null, "0.5", null, "5.7", null, "0.5", null, "4.6", null, "0.4", null, "3.5", null, "0.4", null, "2.7", null, "0.3", null, "1.8", null, "0.3", null, "1.5", null, "0.2", null, "10.9", null, "0.5", null, "3.7", null, "0.3", null, "20.2", null, "0.6", null, "10.7", null, "0.4", null, "45.7", null, "0.6", null, "82.3", null, "0.6", null, "79.8", null, "0.6", null, "75.7", null, "0.7", null, "19.7", null, "0.7", null, "17.4", null, "0.7", null, "14.0", null, "0.5", null, "5.9", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.3", null, "-888888888.0", "(X)", "386761", null, "6921", null, "21112", null, "1844", null, "20524", null, "3041", null, "24548", null, "3588", null, "26799", null, "1995", null, "31567", null, "1414", null, "30658", null, "1792", null, "33761", null, "2272", null, "30992", null, "2755", null, "25966", null, "2806", null, "24540", null, "1443", null, "26045", null, "1840", null, "20068", null, "2759", null, "21559", null, "2616", null, "16757", null, "1913", null, "12893", null, "1801", null, "9627", null, "1216", null, "5178", null, "837", null, "4167", null, "1113", null, "45072", null, "3409", null, "15363", null, "1384", null, "81547", null, "4320", null, "43003", null, "1878", null, "179743", null, "4660", null, "314546", null, "5712", null, "305214", null, "5228", null, "287742", null, "5335", null, "70181", null, "2881", null, "62183", null, "2623", null, "48622", null, "2336", null, "18972", null, "1348", null, "35.8", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.5", null, "5.3", null, "0.8", null, "6.3", null, "0.9", null, "6.9", null, "0.5", null, "8.2", null, "0.4", null, "7.9", null, "0.4", null, "8.7", null, "0.6", null, "8.0", null, "0.7", null, "6.7", null, "0.7", null, "6.3", null, "0.4", null, "6.7", null, "0.4", null, "5.2", null, "0.7", null, "5.6", null, "0.7", null, "4.3", null, "0.5", null, "3.3", null, "0.5", null, "2.5", null, "0.3", null, "1.3", null, "0.2", null, "1.1", null, "0.3", null, "11.7", null, "0.8", null, "4.0", null, "0.3", null, "21.1", null, "0.9", null, "11.1", null, "0.5", null, "46.5", null, "0.9", null, "81.3", null, "0.9", null, "78.9", null, "0.9", null, "74.4", null, "1.0", null, "18.1", null, "0.8", null, "16.1", null, "0.8", null, "12.6", null, "0.6", null, "4.9", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "403986", null, "7297", null, "22294", null, "1742", null, "20455", null, "2841", null, "20922", null, "2863", null, "25258", null, "2077", null, "30912", null, "1711", null, "33994", null, "1552", null, "34184", null, "1755", null, "30414", null, "3043", null, "26977", null, "2777", null, "23761", null, "2061", null, "24876", null, "1829", null, "24070", null, "2657", null, "23772", null, "2430", null, "19349", null, "2281", null, "14840", null, "2141", null, "11835", null, "1641", null, "8770", null, "1649", null, "7303", null, "1316", null, "41377", null, "2860", null, "14264", null, "1525", null, "77935", null, "3494", null, "41906", null, "2107", null, "181739", null, "3989", null, "336446", null, "6040", null, "326051", null, "5929", null, "310513", null, "5833", null, "85869", null, "3404", null, "75103", null, "3311", null, "62097", null, "2467", null, "27908", null, "1409", null, "37.3", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.4", null, "5.1", null, "0.7", null, "5.2", null, "0.7", null, "6.3", null, "0.5", null, "7.7", null, "0.4", null, "8.4", null, "0.4", null, "8.5", null, "0.4", null, "7.5", null, "0.8", null, "6.7", null, "0.7", null, "5.9", null, "0.5", null, "6.2", null, "0.4", null, "6.0", null, "0.6", null, "5.9", null, "0.6", null, "4.8", null, "0.6", null, "3.7", null, "0.5", null, "2.9", null, "0.4", null, "2.2", null, "0.4", null, "1.8", null, "0.3", null, "10.2", null, "0.6", null, "3.5", null, "0.4", null, "19.3", null, "0.7", null, "10.4", null, "0.5", null, "45.0", null, "0.8", null, "83.3", null, "0.8", null, "80.7", null, "0.7", null, "76.9", null, "0.8", null, "21.3", null, "0.9", null, "18.6", null, "0.8", null, "15.4", null, "0.6", null, "6.9", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "37", "02"], ["5001900US3703", "Congressional District 3 (119th Congress), North Carolina", "775182", null, "4169", null, "45683", null, "1851", null, "45197", null, "2620", null, "45506", null, "3414", null, "54790", null, "2954", null, "81754", null, "3221", null, "49906", null, "2751", null, "48264", null, "2498", null, "47689", null, "3614", null, "43249", null, "3742", null, "39783", null, "1992", null, "42056", null, "2035", null, "39797", null, "2651", null, "47364", null, "2640", null, "47118", null, "2536", null, "40109", null, "2095", null, "26713", null, "2010", null, "17003", null, "1732", null, "13201", null, "1843", null, "90703", null, "2766", null, "29291", null, "1955", null, "165677", null, "2449", null, "107253", null, "3266", null, "325652", null, "3462", null, "627573", null, "4020", null, "609505", null, "3257", null, "568245", null, "4838", null, "191508", null, "3090", null, "173498", null, "3174", null, "144144", null, "2071", null, "56917", null, "1525", null, "36.5", null, "0.5", null, "101.3", null, "1.6", null, "66.6", null, "0.8", null, "31.0", null, "0.5", null, "35.6", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.9", null, "0.2", null, "5.8", null, "0.3", null, "5.9", null, "0.4", null, "7.1", null, "0.4", null, "10.5", null, "0.4", null, "6.4", null, "0.3", null, "6.2", null, "0.3", null, "6.2", null, "0.5", null, "5.6", null, "0.5", null, "5.1", null, "0.3", null, "5.4", null, "0.3", null, "5.1", null, "0.3", null, "6.1", null, "0.3", null, "6.1", null, "0.3", null, "5.2", null, "0.3", null, "3.4", null, "0.3", null, "2.2", null, "0.2", null, "1.7", null, "0.2", null, "11.7", null, "0.3", null, "3.8", null, "0.3", null, "21.4", null, "0.3", null, "13.8", null, "0.4", null, "42.0", null, "0.4", null, "81.0", null, "0.4", null, "78.6", null, "0.3", null, "73.3", null, "0.5", null, "24.7", null, "0.4", null, "22.4", null, "0.4", null, "18.6", null, "0.3", null, "7.3", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "3.4", null, "-888888888.0", "(X)", "390019", null, "3704", null, "24036", null, "1929", null, "22931", null, "1966", null, "23447", null, "2638", null, "29739", null, "2589", null, "49879", null, "2214", null, "26260", null, "1874", null, "25258", null, "1879", null, "23122", null, "2223", null, "20448", null, "2400", null, "19086", null, "1426", null, "20902", null, "1487", null, "18222", null, "1586", null, "22091", null, "1615", null, "20877", null, "1546", null, "19366", null, "1523", null, "12299", null, "1154", null, "6531", null, "931", null, "5525", null, "1122", null, "46378", null, "1915", null, "15570", null, "2019", null, "85984", null, "3065", null, "64048", null, "2137", null, "174706", null, "2979", null, "314346", null, "3226", null, "304035", null, "2313", null, "278863", null, "3622", null, "86689", null, "1938", null, "78412", null, "2035", null, "64598", null, "1231", null, "24355", null, "1045", null, "33.5", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.2", null, "0.5", null, "5.9", null, "0.5", null, "6.0", null, "0.7", null, "7.6", null, "0.6", null, "12.8", null, "0.6", null, "6.7", null, "0.5", null, "6.5", null, "0.5", null, "5.9", null, "0.6", null, "5.2", null, "0.6", null, "4.9", null, "0.4", null, "5.4", null, "0.4", null, "4.7", null, "0.4", null, "5.7", null, "0.4", null, "5.4", null, "0.4", null, "5.0", null, "0.4", null, "3.2", null, "0.3", null, "1.7", null, "0.2", null, "1.4", null, "0.3", null, "11.9", null, "0.5", null, "4.0", null, "0.5", null, "22.0", null, "0.6", null, "16.4", null, "0.6", null, "44.8", null, "0.6", null, "80.6", null, "0.6", null, "78.0", null, "0.6", null, "71.5", null, "0.9", null, "22.2", null, "0.5", null, "20.1", null, "0.5", null, "16.6", null, "0.3", null, "6.2", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "385163", null, "3674", null, "21647", null, "1787", null, "22266", null, "2263", null, "22059", null, "2349", null, "25051", null, "2332", null, "31875", null, "2010", null, "23646", null, "1532", null, "23006", null, "1351", null, "24567", null, "2317", null, "22801", null, "2203", null, "20697", null, "1341", null, "21154", null, "1170", null, "21575", null, "1908", null, "25273", null, "1771", null, "26241", null, "1803", null, "20743", null, "1609", null, "14414", null, "1406", null, "10472", null, "1383", null, "7676", null, "1331", null, "44325", null, "1935", null, "13721", null, "1716", null, "79693", null, "2624", null, "43205", null, "1751", null, "150946", null, "2324", null, "313227", null, "2915", null, "305470", null, "2244", null, "289382", null, "2528", null, "104819", null, "2033", null, "95086", null, "2116", null, "79546", null, "1386", null, "32562", null, "1037", null, "39.7", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.6", null, "0.4", null, "5.8", null, "0.6", null, "5.7", null, "0.6", null, "6.5", null, "0.6", null, "8.3", null, "0.6", null, "6.1", null, "0.4", null, "6.0", null, "0.4", null, "6.4", null, "0.6", null, "5.9", null, "0.6", null, "5.4", null, "0.3", null, "5.5", null, "0.3", null, "5.6", null, "0.5", null, "6.6", null, "0.5", null, "6.8", null, "0.5", null, "5.4", null, "0.4", null, "3.7", null, "0.4", null, "2.7", null, "0.4", null, "2.0", null, "0.3", null, "11.5", null, "0.5", null, "3.6", null, "0.4", null, "20.7", null, "0.5", null, "11.2", null, "0.5", null, "39.2", null, "0.6", null, "81.3", null, "0.6", null, "79.3", null, "0.5", null, "75.1", null, "0.7", null, "27.2", null, "0.5", null, "24.7", null, "0.5", null, "20.7", null, "0.3", null, "8.5", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "37", "03"], ["5001900US3704", "Congressional District 4 (119th Congress), North Carolina", "804357", null, "9285", null, "43333", null, "2406", null, "49419", null, "4058", null, "49870", null, "3909", null, "58122", null, "4454", null, "55639", null, "2869", null, "52771", null, "2508", null, "57895", null, "2727", null, "59846", null, "4617", null, "62678", null, "4504", null, "55483", null, "3100", null, "51391", null, "3359", null, "40705", null, "3001", null, "48192", null, "3658", null, "37900", null, "2652", null, "32347", null, "2760", null, "24847", null, "2083", null, "14344", null, "1895", null, "9575", null, "1455", null, "99289", null, "3784", null, "31092", null, "2263", null, "173714", null, "5296", null, "82669", null, "3144", null, "346951", null, "5900", null, "651340", null, "8244", null, "630643", null, "7381", null, "591100", null, "7468", null, "167205", null, "5240", null, "145680", null, "4657", null, "119013", null, "3767", null, "48766", null, "2190", null, "38.0", null, "0.5", null, "93.5", null, "2.1", null, "57.2", null, "1.2", null, "23.3", null, "0.8", null, "34.0", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.3", null, "6.1", null, "0.5", null, "6.2", null, "0.5", null, "7.2", null, "0.5", null, "6.9", null, "0.4", null, "6.6", null, "0.3", null, "7.2", null, "0.3", null, "7.4", null, "0.6", null, "7.8", null, "0.6", null, "6.9", null, "0.4", null, "6.4", null, "0.4", null, "5.1", null, "0.4", null, "6.0", null, "0.5", null, "4.7", null, "0.3", null, "4.0", null, "0.3", null, "3.1", null, "0.3", null, "1.8", null, "0.2", null, "1.2", null, "0.2", null, "12.3", null, "0.4", null, "3.9", null, "0.3", null, "21.6", null, "0.5", null, "10.3", null, "0.4", null, "43.1", null, "0.6", null, "81.0", null, "0.6", null, "78.4", null, "0.5", null, "73.5", null, "0.6", null, "20.8", null, "0.6", null, "18.1", null, "0.6", null, "14.8", null, "0.5", null, "6.1", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.6", null, "-888888888.0", "(X)", "388685", null, "5956", null, "21297", null, "2158", null, "24499", null, "3146", null, "25807", null, "2994", null, "28610", null, "2817", null, "26167", null, "2308", null, "26364", null, "1853", null, "27440", null, "1912", null, "29049", null, "2942", null, "31248", null, "3123", null, "26437", null, "1907", null, "25725", null, "1698", null, "20099", null, "1933", null, "23776", null, "2489", null, "18089", null, "1830", null, "13488", null, "1554", null, "11888", null, "1244", null, "5474", null, "1066", null, "3228", null, "790", null, "50306", null, "3263", null, "15402", null, "1870", null, "87005", null, "4535", null, "39375", null, "1915", null, "168878", null, "3905", null, "312430", null, "4904", null, "301680", null, "4528", null, "281760", null, "5218", null, "75943", null, "3118", null, "64491", null, "2614", null, "52167", null, "2146", null, "20590", null, "1194", null, "37.4", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.5", null, "6.3", null, "0.8", null, "6.6", null, "0.7", null, "7.4", null, "0.7", null, "6.7", null, "0.6", null, "6.8", null, "0.5", null, "7.1", null, "0.5", null, "7.5", null, "0.8", null, "8.0", null, "0.8", null, "6.8", null, "0.5", null, "6.6", null, "0.4", null, "5.2", null, "0.5", null, "6.1", null, "0.6", null, "4.7", null, "0.5", null, "3.5", null, "0.4", null, "3.1", null, "0.3", null, "1.4", null, "0.3", null, "0.8", null, "0.2", null, "12.9", null, "0.8", null, "4.0", null, "0.5", null, "22.4", null, "1.0", null, "10.1", null, "0.5", null, "43.4", null, "0.9", null, "80.4", null, "0.9", null, "77.6", null, "1.0", null, "72.5", null, "1.1", null, "19.5", null, "0.8", null, "16.6", null, "0.7", null, "13.4", null, "0.6", null, "5.3", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "415672", null, "6854", null, "22036", null, "2348", null, "24920", null, "2619", null, "24063", null, "2735", null, "29512", null, "3393", null, "29472", null, "2246", null, "26407", null, "1700", null, "30455", null, "1431", null, "30797", null, "2960", null, "31430", null, "2579", null, "29046", null, "2187", null, "25666", null, "2304", null, "20606", null, "2052", null, "24416", null, "2204", null, "19811", null, "1578", null, "18859", null, "1892", null, "12959", null, "1565", null, "8870", null, "1486", null, "6347", null, "1131", null, "48983", null, "2645", null, "15690", null, "2027", null, "86709", null, "4013", null, "43294", null, "2102", null, "178073", null, "3838", null, "338910", null, "5242", null, "328963", null, "4811", null, "309340", null, "4589", null, "91262", null, "2988", null, "81189", null, "2932", null, "66846", null, "2275", null, "28176", null, "1389", null, "38.5", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.3", null, "0.5", null, "6.0", null, "0.6", null, "5.8", null, "0.6", null, "7.1", null, "0.8", null, "7.1", null, "0.6", null, "6.4", null, "0.4", null, "7.3", null, "0.4", null, "7.4", null, "0.7", null, "7.6", null, "0.7", null, "7.0", null, "0.5", null, "6.2", null, "0.5", null, "5.0", null, "0.5", null, "5.9", null, "0.5", null, "4.8", null, "0.4", null, "4.5", null, "0.5", null, "3.1", null, "0.4", null, "2.1", null, "0.4", null, "1.5", null, "0.3", null, "11.8", null, "0.6", null, "3.8", null, "0.5", null, "20.9", null, "0.8", null, "10.4", null, "0.5", null, "42.8", null, "0.7", null, "81.5", null, "0.7", null, "79.1", null, "0.8", null, "74.4", null, "0.9", null, "22.0", null, "0.7", null, "19.5", null, "0.7", null, "16.1", null, "0.6", null, "6.8", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "37", "04"], ["5001900US3705", "Congressional District 5 (119th Congress), North Carolina", "755224", null, "10538", null, "36528", null, "2155", null, "40706", null, "3218", null, "40803", null, "3939", null, "55289", null, "3977", null, "57590", null, "3437", null, "43276", null, "3823", null, "44575", null, "3240", null, "43644", null, "3181", null, "43769", null, "3762", null, "45958", null, "3198", null, "49957", null, "2668", null, "49378", null, "3635", null, "52066", null, "3662", null, "49195", null, "2677", null, "40208", null, "2736", null, "29377", null, "2397", null, "17320", null, "2138", null, "15585", null, "1889", null, "81509", null, "4192", null, "27929", null, "2153", null, "145966", null, "5355", null, "84950", null, "3688", null, "288143", null, "6735", null, "628978", null, "7604", null, "609258", null, "7350", null, "566997", null, "7560", null, "203751", null, "5016", null, "181113", null, "4604", null, "151685", null, "3227", null, "62282", null, "1935", null, "41.8", null, "0.6", null, "94.2", null, "1.9", null, "65.0", null, "1.3", null, "33.1", null, "0.8", null, "31.9", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.8", null, "0.3", null, "5.4", null, "0.4", null, "5.4", null, "0.5", null, "7.3", null, "0.5", null, "7.6", null, "0.5", null, "5.7", null, "0.5", null, "5.9", null, "0.4", null, "5.8", null, "0.4", null, "5.8", null, "0.5", null, "6.1", null, "0.4", null, "6.6", null, "0.4", null, "6.5", null, "0.5", null, "6.9", null, "0.5", null, "6.5", null, "0.3", null, "5.3", null, "0.4", null, "3.9", null, "0.3", null, "2.3", null, "0.3", null, "2.1", null, "0.2", null, "10.8", null, "0.5", null, "3.7", null, "0.3", null, "19.3", null, "0.5", null, "11.2", null, "0.5", null, "38.2", null, "0.7", null, "83.3", null, "0.6", null, "80.7", null, "0.5", null, "75.1", null, "0.6", null, "27.0", null, "0.6", null, "24.0", null, "0.6", null, "20.1", null, "0.4", null, "8.2", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.3", null, "-888888888.0", "(X)", "366330", null, "5823", null, "19156", null, "1650", null, "20236", null, "2016", null, "20110", null, "2633", null, "24640", null, "2734", null, "29602", null, "2746", null, "20984", null, "2810", null, "21660", null, "2298", null, "21340", null, "2431", null, "22197", null, "2380", null, "22795", null, "1958", null, "24788", null, "2157", null, "24642", null, "2335", null, "24695", null, "2359", null, "23215", null, "1748", null, "19458", null, "1875", null, "14619", null, "1630", null, "6202", null, "1067", null, "5991", null, "1117", null, "40346", null, "2583", null, "12665", null, "1565", null, "72167", null, "3448", null, "41577", null, "3040", null, "140423", null, "4449", null, "303232", null, "4663", null, "294163", null, "4469", null, "274682", null, "4477", null, "94180", null, "2888", null, "83671", null, "2743", null, "69485", null, "1928", null, "26812", null, "964", null, "41.2", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.4", null, "5.5", null, "0.5", null, "5.5", null, "0.7", null, "6.7", null, "0.7", null, "8.1", null, "0.8", null, "5.7", null, "0.7", null, "5.9", null, "0.6", null, "5.8", null, "0.7", null, "6.1", null, "0.6", null, "6.2", null, "0.5", null, "6.8", null, "0.6", null, "6.7", null, "0.7", null, "6.7", null, "0.6", null, "6.3", null, "0.5", null, "5.3", null, "0.5", null, "4.0", null, "0.5", null, "1.7", null, "0.3", null, "1.6", null, "0.3", null, "11.0", null, "0.6", null, "3.5", null, "0.4", null, "19.7", null, "0.8", null, "11.3", null, "0.8", null, "38.3", null, "0.9", null, "82.8", null, "0.7", null, "80.3", null, "0.8", null, "75.0", null, "0.9", null, "25.7", null, "0.8", null, "22.8", null, "0.7", null, "19.0", null, "0.6", null, "7.3", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "388894", null, "7232", null, "17372", null, "1846", null, "20470", null, "2470", null, "20693", null, "2519", null, "30649", null, "3332", null, "27988", null, "2741", null, "22292", null, "2107", null, "22915", null, "1991", null, "22304", null, "2246", null, "21572", null, "2529", null, "23163", null, "2088", null, "25169", null, "1690", null, "24736", null, "2566", null, "27371", null, "2536", null, "25980", null, "1964", null, "20750", null, "2078", null, "14758", null, "1504", null, "11118", null, "1574", null, "9594", null, "1183", null, "41163", null, "2770", null, "15264", null, "2149", null, "73799", null, "4202", null, "43373", null, "2863", null, "147720", null, "4900", null, "325746", null, "5379", null, "315095", null, "4997", null, "292315", null, "4988", null, "109571", null, "3387", null, "97442", null, "2953", null, "82200", null, "2231", null, "35470", null, "1480", null, "42.4", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.5", null, "0.4", null, "5.3", null, "0.6", null, "5.3", null, "0.6", null, "7.9", null, "0.8", null, "7.2", null, "0.7", null, "5.7", null, "0.5", null, "5.9", null, "0.5", null, "5.7", null, "0.6", null, "5.5", null, "0.6", null, "6.0", null, "0.5", null, "6.5", null, "0.4", null, "6.4", null, "0.7", null, "7.0", null, "0.7", null, "6.7", null, "0.5", null, "5.3", null, "0.5", null, "3.8", null, "0.4", null, "2.9", null, "0.4", null, "2.5", null, "0.3", null, "10.6", null, "0.7", null, "3.9", null, "0.5", null, "19.0", null, "0.9", null, "11.2", null, "0.7", null, "38.0", null, "0.9", null, "83.8", null, "0.9", null, "81.0", null, "0.9", null, "75.2", null, "0.9", null, "28.2", null, "0.9", null, "25.1", null, "0.8", null, "21.1", null, "0.6", null, "9.1", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "37", "05"], ["5001900US3706", "Congressional District 6 (119th Congress), North Carolina", "794243", null, "13430", null, "40753", null, "2981", null, "49540", null, "4080", null, "50374", null, "4603", null, "54380", null, "3651", null, "53599", null, "4113", null, "51417", null, "3768", null, "54451", null, "4071", null, "49391", null, "4458", null, "51513", null, "4144", null, "48641", null, "3480", null, "48698", null, "3541", null, "52320", null, "4438", null, "50345", null, "3845", null, "42753", null, "3098", null, "37607", null, "3335", null, "27659", null, "2404", null, "16180", null, "1996", null, "14622", null, "2110", null, "99914", null, "5724", null, "32165", null, "2179", null, "172832", null, "7351", null, "75814", null, "4570", null, "314751", null, "8734", null, "642522", null, "9712", null, "621411", null, "10014", null, "586152", null, "9299", null, "189166", null, "5523", null, "168615", null, "5090", null, "138821", null, "4252", null, "58461", null, "2548", null, "39.3", null, "0.8", null, "95.1", null, "2.5", null, "64.6", null, "1.8", null, "28.8", null, "1.1", null, "35.8", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.1", null, "0.4", null, "6.2", null, "0.5", null, "6.3", null, "0.6", null, "6.8", null, "0.4", null, "6.7", null, "0.5", null, "6.5", null, "0.5", null, "6.9", null, "0.5", null, "6.2", null, "0.6", null, "6.5", null, "0.5", null, "6.1", null, "0.4", null, "6.1", null, "0.5", null, "6.6", null, "0.5", null, "6.3", null, "0.5", null, "5.4", null, "0.4", null, "4.7", null, "0.4", null, "3.5", null, "0.3", null, "2.0", null, "0.3", null, "1.8", null, "0.3", null, "12.6", null, "0.6", null, "4.0", null, "0.3", null, "21.8", null, "0.7", null, "9.5", null, "0.5", null, "39.6", null, "0.8", null, "80.9", null, "0.7", null, "78.2", null, "0.7", null, "73.8", null, "0.7", null, "23.8", null, "0.8", null, "21.2", null, "0.7", null, "17.5", null, "0.6", null, "7.4", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.2", null, "-888888888.0", "(X)", "387137", null, "9795", null, "23707", null, "2562", null, "24919", null, "2986", null, "26457", null, "3807", null, "25830", null, "2798", null, "25434", null, "2984", null, "25555", null, "2342", null, "26312", null, "2737", null, "24676", null, "2850", null, "24728", null, "2839", null, "24892", null, "2357", null, "23305", null, "2271", null, "25127", null, "3255", null, "24658", null, "2459", null, "19841", null, "1831", null, "17456", null, "2005", null, "13052", null, "1549", null, "6096", null, "1048", null, "5092", null, "1111", null, "51376", null, "4151", null, "15901", null, "1821", null, "90984", null, "5714", null, "35363", null, "3523", null, "152535", null, "6215", null, "306996", null, "6839", null, "296153", null, "6898", null, "279365", null, "6366", null, "86195", null, "3287", null, "76723", null, "2917", null, "61537", null, "2417", null, "24240", null, "1417", null, "38.4", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.1", null, "0.6", null, "6.4", null, "0.7", null, "6.8", null, "0.9", null, "6.7", null, "0.7", null, "6.6", null, "0.8", null, "6.6", null, "0.6", null, "6.8", null, "0.7", null, "6.4", null, "0.7", null, "6.4", null, "0.7", null, "6.4", null, "0.6", null, "6.0", null, "0.6", null, "6.5", null, "0.8", null, "6.4", null, "0.7", null, "5.1", null, "0.5", null, "4.5", null, "0.5", null, "3.4", null, "0.4", null, "1.6", null, "0.3", null, "1.3", null, "0.3", null, "13.3", null, "0.9", null, "4.1", null, "0.4", null, "23.5", null, "1.1", null, "9.1", null, "0.9", null, "39.4", null, "1.1", null, "79.3", null, "1.2", null, "76.5", null, "1.1", null, "72.2", null, "1.1", null, "22.3", null, "1.0", null, "19.8", null, "0.8", null, "15.9", null, "0.7", null, "6.3", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "407106", null, "6853", null, "17046", null, "1870", null, "24621", null, "2845", null, "23917", null, "2667", null, "28550", null, "3141", null, "28165", null, "2922", null, "25862", null, "2695", null, "28139", null, "2414", null, "24715", null, "2880", null, "26785", null, "2912", null, "23749", null, "2035", null, "25393", null, "2194", null, "27193", null, "2326", null, "25687", null, "2360", null, "22912", null, "2311", null, "20151", null, "2071", null, "14607", null, "1599", null, "10084", null, "1381", null, "9530", null, "1596", null, "48538", null, "3034", null, "16264", null, "1695", null, "81848", null, "3962", null, "40451", null, "3285", null, "162216", null, "4920", null, "335526", null, "5516", null, "325258", null, "5352", null, "306787", null, "4915", null, "102971", null, "3540", null, "91892", null, "3302", null, "77284", null, "2663", null, "34221", null, "1952", null, "40.5", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.2", null, "0.4", null, "6.0", null, "0.7", null, "5.9", null, "0.6", null, "7.0", null, "0.8", null, "6.9", null, "0.7", null, "6.4", null, "0.7", null, "6.9", null, "0.6", null, "6.1", null, "0.7", null, "6.6", null, "0.7", null, "5.8", null, "0.5", null, "6.2", null, "0.5", null, "6.7", null, "0.6", null, "6.3", null, "0.6", null, "5.6", null, "0.6", null, "4.9", null, "0.5", null, "3.6", null, "0.4", null, "2.5", null, "0.3", null, "2.3", null, "0.4", null, "11.9", null, "0.7", null, "4.0", null, "0.4", null, "20.1", null, "0.8", null, "9.9", null, "0.8", null, "39.8", null, "1.0", null, "82.4", null, "0.8", null, "79.9", null, "0.8", null, "75.4", null, "0.9", null, "25.3", null, "0.9", null, "22.6", null, "0.8", null, "19.0", null, "0.7", null, "8.4", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "37", "06"], ["5001900US3707", "Congressional District 7 (119th Congress), North Carolina", "805748", null, "6108", null, "42763", null, "2136", null, "45860", null, "3435", null, "44754", null, "3536", null, "49501", null, "3324", null, "51516", null, "3001", null, "49341", null, "2610", null, "49323", null, "2347", null, "48507", null, "3670", null, "48776", null, "3377", null, "43478", null, "1949", null, "48142", null, "2078", null, "43700", null, "3028", null, "63288", null, "3170", null, "56092", null, "3309", null, "49912", null, "3365", null, "37247", null, "2436", null, "20317", null, "2386", null, "13231", null, "1730", null, "90614", null, "3248", null, "29040", null, "2008", null, "162417", null, "3557", null, "71977", null, "2940", null, "296964", null, "4818", null, "663094", null, "5169", null, "643331", null, "4107", null, "614807", null, "4784", null, "240087", null, "3595", null, "214145", null, "3115", null, "176799", null, "2293", null, "70795", null, "1729", null, "42.1", null, "0.5", null, "92.5", null, "1.3", null, "72.7", null, "1.2", null, "37.9", null, "0.7", null, "34.8", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.3", null, "0.3", null, "5.7", null, "0.4", null, "5.6", null, "0.4", null, "6.1", null, "0.4", null, "6.4", null, "0.4", null, "6.1", null, "0.3", null, "6.1", null, "0.3", null, "6.0", null, "0.5", null, "6.1", null, "0.4", null, "5.4", null, "0.2", null, "6.0", null, "0.3", null, "5.4", null, "0.4", null, "7.9", null, "0.4", null, "7.0", null, "0.4", null, "6.2", null, "0.4", null, "4.6", null, "0.3", null, "2.5", null, "0.3", null, "1.6", null, "0.2", null, "11.2", null, "0.4", null, "3.6", null, "0.2", null, "20.2", null, "0.3", null, "8.9", null, "0.4", null, "36.9", null, "0.5", null, "82.3", null, "0.4", null, "79.8", null, "0.3", null, "76.3", null, "0.5", null, "29.8", null, "0.5", null, "26.6", null, "0.4", null, "21.9", null, "0.3", null, "8.8", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.1", null, "-888888888.0", "(X)", "387260", null, "3723", null, "22622", null, "1888", null, "22748", null, "2315", null, "21923", null, "2186", null, "25343", null, "2483", null, "24954", null, "2010", null, "23906", null, "1659", null, "24234", null, "1515", null, "25372", null, "2487", null, "22451", null, "2064", null, "22289", null, "1477", null, "21910", null, "1377", null, "19451", null, "1998", null, "30080", null, "2059", null, "25184", null, "2288", null, "22849", null, "2281", null, "16889", null, "1770", null, "10056", null, "1387", null, "4999", null, "903", null, "44671", null, "1918", null, "14635", null, "1563", null, "81928", null, "3012", null, "35662", null, "2088", null, "146260", null, "3192", null, "315699", null, "3125", null, "305332", null, "2318", null, "290905", null, "3001", null, "110057", null, "2291", null, "97699", null, "2230", null, "79977", null, "1569", null, "31944", null, "1280", null, "40.7", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.8", null, "0.5", null, "5.9", null, "0.6", null, "5.7", null, "0.6", null, "6.5", null, "0.6", null, "6.4", null, "0.5", null, "6.2", null, "0.4", null, "6.3", null, "0.4", null, "6.6", null, "0.6", null, "5.8", null, "0.5", null, "5.8", null, "0.4", null, "5.7", null, "0.4", null, "5.0", null, "0.5", null, "7.8", null, "0.5", null, "6.5", null, "0.6", null, "5.9", null, "0.6", null, "4.4", null, "0.5", null, "2.6", null, "0.4", null, "1.3", null, "0.2", null, "11.5", null, "0.4", null, "3.8", null, "0.4", null, "21.2", null, "0.6", null, "9.2", null, "0.5", null, "37.8", null, "0.7", null, "81.5", null, "0.6", null, "78.8", null, "0.6", null, "75.1", null, "0.8", null, "28.4", null, "0.6", null, "25.2", null, "0.6", null, "20.7", null, "0.4", null, "8.2", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "418488", null, "4500", null, "20141", null, "1708", null, "23112", null, "2746", null, "22831", null, "2477", null, "24158", null, "2022", null, "26562", null, "2204", null, "25435", null, "1752", null, "25089", null, "1707", null, "23135", null, "2128", null, "26325", null, "2464", null, "21189", null, "1217", null, "26232", null, "1408", null, "24249", null, "2066", null, "33208", null, "2285", null, "30908", null, "1997", null, "27063", null, "2009", null, "20358", null, "1491", null, "10261", null, "1526", null, "8232", null, "1311", null, "45943", null, "2568", null, "14405", null, "1386", null, "80489", null, "3082", null, "36315", null, "2026", null, "150704", null, "3197", null, "347395", null, "3594", null, "337999", null, "3068", null, "323902", null, "3250", null, "130030", null, "2673", null, "116446", null, "1961", null, "96822", null, "1466", null, "38851", null, "1281", null, "43.6", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.8", null, "0.4", null, "5.5", null, "0.6", null, "5.5", null, "0.6", null, "5.8", null, "0.5", null, "6.3", null, "0.5", null, "6.1", null, "0.4", null, "6.0", null, "0.4", null, "5.5", null, "0.5", null, "6.3", null, "0.6", null, "5.1", null, "0.3", null, "6.3", null, "0.3", null, "5.8", null, "0.5", null, "7.9", null, "0.5", null, "7.4", null, "0.5", null, "6.5", null, "0.5", null, "4.9", null, "0.3", null, "2.5", null, "0.4", null, "2.0", null, "0.3", null, "11.0", null, "0.6", null, "3.4", null, "0.3", null, "19.2", null, "0.6", null, "8.7", null, "0.5", null, "36.0", null, "0.6", null, "83.0", null, "0.7", null, "80.8", null, "0.6", null, "77.4", null, "0.6", null, "31.1", null, "0.6", null, "27.8", null, "0.5", null, "23.1", null, "0.4", null, "9.3", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "37", "07"], ["5001900US3708", "Congressional District 8 (119th Congress), North Carolina", "788892", null, "10887", null, "43651", null, "2653", null, "50651", null, "3729", null, "52773", null, "3467", null, "57999", null, "2931", null, "43025", null, "3389", null, "42437", null, "3179", null, "49431", null, "3430", null, "47210", null, "3643", null, "56477", null, "3860", null, "54066", null, "3463", null, "54676", null, "3090", null, "49302", null, "3584", null, "52816", null, "3813", null, "40255", null, "2208", null, "37316", null, "1949", null, "27159", null, "1923", null, "16371", null, "1635", null, "13277", null, "1901", null, "103424", null, "4286", null, "37903", null, "1866", null, "184978", null, "5155", null, "63121", null, "3749", null, "296579", null, "5920", null, "628828", null, "8316", null, "603914", null, "7784", null, "576136", null, "7538", null, "187194", null, "5083", null, "164430", null, "4357", null, "134378", null, "3241", null, "56807", null, "2517", null, "40.6", null, "0.5", null, "96.4", null, "2.0", null, "68.0", null, "1.3", null, "28.6", null, "0.8", null, "39.4", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.3", null, "6.4", null, "0.4", null, "6.7", null, "0.4", null, "7.4", null, "0.4", null, "5.5", null, "0.4", null, "5.4", null, "0.4", null, "6.3", null, "0.4", null, "6.0", null, "0.5", null, "7.2", null, "0.5", null, "6.9", null, "0.4", null, "6.9", null, "0.4", null, "6.2", null, "0.4", null, "6.7", null, "0.5", null, "5.1", null, "0.3", null, "4.7", null, "0.3", null, "3.4", null, "0.2", null, "2.1", null, "0.2", null, "1.7", null, "0.2", null, "13.1", null, "0.4", null, "4.8", null, "0.2", null, "23.4", null, "0.5", null, "8.0", null, "0.4", null, "37.6", null, "0.6", null, "79.7", null, "0.5", null, "76.6", null, "0.5", null, "73.0", null, "0.5", null, "23.7", null, "0.6", null, "20.8", null, "0.5", null, "17.0", null, "0.4", null, "7.2", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.2", null, "-888888888.0", "(X)", "387178", null, "6518", null, "21911", null, "2442", null, "25999", null, "2758", null, "27195", null, "2600", null, "28200", null, "2486", null, "22089", null, "1652", null, "21854", null, "1914", null, "24448", null, "2385", null, "23916", null, "2396", null, "28382", null, "2748", null, "26714", null, "2029", null, "26232", null, "1810", null, "24323", null, "2354", null, "25222", null, "2560", null, "19188", null, "1543", null, "17586", null, "1430", null, "11917", null, "1311", null, "7478", null, "1109", null, "4524", null, "892", null, "53194", null, "2540", null, "18119", null, "1690", null, "93224", null, "4092", null, "32170", null, "2337", null, "148889", null, "4112", null, "306138", null, "4776", null, "293954", null, "4287", null, "280118", null, "4236", null, "85915", null, "3289", null, "75511", null, "2681", null, "60693", null, "1981", null, "23919", null, "1557", null, "39.7", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.7", null, "0.6", null, "6.7", null, "0.7", null, "7.0", null, "0.7", null, "7.3", null, "0.6", null, "5.7", null, "0.4", null, "5.6", null, "0.5", null, "6.3", null, "0.6", null, "6.2", null, "0.6", null, "7.3", null, "0.7", null, "6.9", null, "0.5", null, "6.8", null, "0.5", null, "6.3", null, "0.6", null, "6.5", null, "0.6", null, "5.0", null, "0.4", null, "4.5", null, "0.4", null, "3.1", null, "0.3", null, "1.9", null, "0.3", null, "1.2", null, "0.2", null, "13.7", null, "0.5", null, "4.7", null, "0.4", null, "24.1", null, "0.8", null, "8.3", null, "0.6", null, "38.5", null, "0.9", null, "79.1", null, "0.7", null, "75.9", null, "0.8", null, "72.3", null, "0.9", null, "22.2", null, "0.8", null, "19.5", null, "0.7", null, "15.7", null, "0.5", null, "6.2", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "401714", null, "7070", null, "21740", null, "2000", null, "24652", null, "2546", null, "25578", null, "2201", null, "29799", null, "2169", null, "20936", null, "2496", null, "20583", null, "2123", null, "24983", null, "1962", null, "23294", null, "2450", null, "28095", null, "2346", null, "27352", null, "1965", null, "28444", null, "2055", null, "24979", null, "2298", null, "27594", null, "2532", null, "21067", null, "1618", null, "19730", null, "1698", null, "15242", null, "1390", null, "8893", null, "1131", null, "8753", null, "1441", null, "50230", null, "3095", null, "19784", null, "1690", null, "91754", null, "4218", null, "30951", null, "2550", null, "147690", null, "4058", null, "322690", null, "5501", null, "309960", null, "5238", null, "296018", null, "5117", null, "101279", null, "3018", null, "88919", null, "2691", null, "73685", null, "1851", null, "32888", null, "1509", null, "41.7", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.5", null, "6.1", null, "0.6", null, "6.4", null, "0.5", null, "7.4", null, "0.5", null, "5.2", null, "0.6", null, "5.1", null, "0.5", null, "6.2", null, "0.5", null, "5.8", null, "0.6", null, "7.0", null, "0.6", null, "6.8", null, "0.5", null, "7.1", null, "0.5", null, "6.2", null, "0.6", null, "6.9", null, "0.6", null, "5.2", null, "0.4", null, "4.9", null, "0.4", null, "3.8", null, "0.3", null, "2.2", null, "0.3", null, "2.2", null, "0.4", null, "12.5", null, "0.7", null, "4.9", null, "0.4", null, "22.8", null, "0.8", null, "7.7", null, "0.6", null, "36.8", null, "0.7", null, "80.3", null, "0.9", null, "77.2", null, "0.8", null, "73.7", null, "0.9", null, "25.2", null, "0.7", null, "22.1", null, "0.6", null, "18.3", null, "0.5", null, "8.2", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "37", "08"], ["5001900US3709", "Congressional District 9 (119th Congress), North Carolina", "790294", null, "10234", null, "48120", null, "2351", null, "51941", null, "4513", null, "49513", null, "3472", null, "50782", null, "2986", null, "58010", null, "3620", null, "52653", null, "3093", null, "53979", null, "3007", null, "48138", null, "3793", null, "52502", null, "4070", null, "45089", null, "2899", null, "43631", null, "3008", null, "48607", null, "3458", null, "47063", null, "3172", null, "43414", null, "2452", null, "38046", null, "2568", null, "28775", null, "2391", null, "18513", null, "2043", null, "11518", null, "1936", null, "101454", null, "4122", null, "31051", null, "2150", null, "180625", null, "5436", null, "77741", null, "3924", null, "316064", null, "6433", null, "630987", null, "8428", null, "609669", null, "7675", null, "578493", null, "7525", null, "187329", null, "4617", null, "168593", null, "4606", null, "140266", null, "3586", null, "58806", null, "2645", null, "38.2", null, "0.6", null, "97.9", null, "1.7", null, "68.4", null, "1.3", null, "29.9", null, "0.8", null, "38.5", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.1", null, "0.3", null, "6.6", null, "0.5", null, "6.3", null, "0.4", null, "6.4", null, "0.4", null, "7.3", null, "0.4", null, "6.7", null, "0.4", null, "6.8", null, "0.4", null, "6.1", null, "0.5", null, "6.6", null, "0.5", null, "5.7", null, "0.4", null, "5.5", null, "0.4", null, "6.2", null, "0.5", null, "6.0", null, "0.4", null, "5.5", null, "0.3", null, "4.8", null, "0.3", null, "3.6", null, "0.3", null, "2.3", null, "0.3", null, "1.5", null, "0.2", null, "12.8", null, "0.5", null, "3.9", null, "0.3", null, "22.9", null, "0.5", null, "9.8", null, "0.5", null, "40.0", null, "0.6", null, "79.8", null, "0.6", null, "77.1", null, "0.5", null, "73.2", null, "0.6", null, "23.7", null, "0.5", null, "21.3", null, "0.6", null, "17.7", null, "0.4", null, "7.4", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.3", null, "-888888888.0", "(X)", "391050", null, "5552", null, "24441", null, "2145", null, "27165", null, "2891", null, "27318", null, "2452", null, "26746", null, "2115", null, "32081", null, "2472", null, "28278", null, "1782", null, "27698", null, "2154", null, "22330", null, "2342", null, "24694", null, "2365", null, "21843", null, "1882", null, "20168", null, "1911", null, "23895", null, "2225", null, "22527", null, "1936", null, "21703", null, "1959", null, "15965", null, "1709", null, "13086", null, "1266", null, "7254", null, "1280", null, "3858", null, "835", null, "54483", null, "2802", null, "16920", null, "1461", null, "95844", null, "3736", null, "41907", null, "2293", null, "161827", null, "3754", null, "307065", null, "4326", null, "295206", null, "4011", null, "278710", null, "4307", null, "84393", null, "2650", null, "74842", null, "2431", null, "61866", null, "1838", null, "24198", null, "1278", null, "35.5", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.3", null, "0.5", null, "6.9", null, "0.7", null, "7.0", null, "0.6", null, "6.8", null, "0.5", null, "8.2", null, "0.6", null, "7.2", null, "0.4", null, "7.1", null, "0.5", null, "5.7", null, "0.6", null, "6.3", null, "0.6", null, "5.6", null, "0.5", null, "5.2", null, "0.5", null, "6.1", null, "0.6", null, "5.8", null, "0.5", null, "5.5", null, "0.5", null, "4.1", null, "0.4", null, "3.3", null, "0.3", null, "1.9", null, "0.3", null, "1.0", null, "0.2", null, "13.9", null, "0.6", null, "4.3", null, "0.4", null, "24.5", null, "0.8", null, "10.7", null, "0.6", null, "41.4", null, "0.8", null, "78.5", null, "0.8", null, "75.5", null, "0.8", null, "71.3", null, "0.8", null, "21.6", null, "0.7", null, "19.1", null, "0.6", null, "15.8", null, "0.5", null, "6.2", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "399244", null, "6690", null, "23679", null, "1964", null, "24776", null, "3069", null, "22195", null, "2855", null, "24036", null, "2433", null, "25929", null, "2352", null, "24375", null, "2095", null, "26281", null, "2147", null, "25808", null, "2621", null, "27808", null, "2740", null, "23246", null, "1873", null, "23463", null, "2089", null, "24712", null, "2170", null, "24536", null, "1889", null, "21711", null, "1832", null, "22081", null, "1752", null, "15689", null, "1798", null, "11259", null, "1711", null, "7660", null, "1482", null, "46971", null, "2801", null, "14131", null, "1689", null, "84781", null, "3982", null, "35834", null, "2641", null, "154237", null, "4493", null, "323922", null, "5370", null, "314463", null, "4943", null, "299783", null, "4649", null, "102936", null, "3028", null, "93751", null, "3281", null, "78400", null, "2495", null, "34608", null, "1887", null, "40.4", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.9", null, "0.5", null, "6.2", null, "0.7", null, "5.6", null, "0.7", null, "6.0", null, "0.6", null, "6.5", null, "0.6", null, "6.1", null, "0.5", null, "6.6", null, "0.5", null, "6.5", null, "0.7", null, "7.0", null, "0.7", null, "5.8", null, "0.5", null, "5.9", null, "0.5", null, "6.2", null, "0.6", null, "6.1", null, "0.5", null, "5.4", null, "0.5", null, "5.5", null, "0.4", null, "3.9", null, "0.5", null, "2.8", null, "0.4", null, "1.9", null, "0.4", null, "11.8", null, "0.6", null, "3.5", null, "0.4", null, "21.2", null, "0.8", null, "9.0", null, "0.6", null, "38.6", null, "0.8", null, "81.1", null, "0.8", null, "78.8", null, "0.8", null, "75.1", null, "0.9", null, "25.8", null, "0.7", null, "23.5", null, "0.8", null, "19.6", null, "0.6", null, "8.7", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "37", "09"], ["5001900US3710", "Congressional District 10 (119th Congress), North Carolina", "787565", null, "8672", null, "41830", null, "2732", null, "43507", null, "3414", null, "49019", null, "3637", null, "52473", null, "3080", null, "49821", null, "2410", null, "49758", null, "2509", null, "50040", null, "3377", null, "47911", null, "3795", null, "48271", null, "4136", null, "48119", null, "2585", null, "55661", null, "2596", null, "52080", null, "3723", null, "53177", null, "3682", null, "45731", null, "2775", null, "39708", null, "2602", null, "29203", null, "2240", null, "18297", null, "2083", null, "12959", null, "1669", null, "92526", null, "3419", null, "32101", null, "2007", null, "166457", null, "4735", null, "70193", null, "2697", null, "298274", null, "5321", null, "641482", null, "6247", null, "621108", null, "5770", null, "589736", null, "5838", null, "199075", null, "4576", null, "176383", null, "4465", null, "145898", null, "2433", null, "60459", null, "1871", null, "41.2", null, "0.7", null, "95.1", null, "1.7", null, "65.7", null, "1.1", null, "30.7", null, "0.6", null, "35.0", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.3", null, "0.3", null, "5.5", null, "0.4", null, "6.2", null, "0.4", null, "6.7", null, "0.4", null, "6.3", null, "0.3", null, "6.3", null, "0.3", null, "6.4", null, "0.4", null, "6.1", null, "0.5", null, "6.1", null, "0.5", null, "6.1", null, "0.3", null, "7.1", null, "0.3", null, "6.6", null, "0.5", null, "6.8", null, "0.5", null, "5.8", null, "0.4", null, "5.0", null, "0.3", null, "3.7", null, "0.3", null, "2.3", null, "0.3", null, "1.6", null, "0.2", null, "11.7", null, "0.4", null, "4.1", null, "0.3", null, "21.1", null, "0.4", null, "8.9", null, "0.3", null, "37.9", null, "0.5", null, "81.5", null, "0.5", null, "78.9", null, "0.4", null, "74.9", null, "0.5", null, "25.3", null, "0.6", null, "22.4", null, "0.6", null, "18.5", null, "0.3", null, "7.7", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.2", null, "-888888888.0", "(X)", "383828", null, "5599", null, "20993", null, "2780", null, "22378", null, "2421", null, "23553", null, "2805", null, "27998", null, "2359", null, "24876", null, "1962", null, "26021", null, "1767", null, "25278", null, "1878", null, "23397", null, "2407", null, "23530", null, "2559", null, "22592", null, "1676", null, "26478", null, "1573", null, "26406", null, "2593", null, "25181", null, "2295", null, "21475", null, "1886", null, "18724", null, "2015", null, "12821", null, "1326", null, "7807", null, "1319", null, "4320", null, "832", null, "45931", null, "2501", null, "17654", null, "1785", null, "84578", null, "4186", null, "35220", null, "2028", null, "151100", null, "2888", null, "311644", null, "3822", null, "299250", null, "3491", null, "282909", null, "3861", null, "90328", null, "2819", null, "79907", null, "2522", null, "65147", null, "1572", null, "24948", null, "939", null, "39.5", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.7", null, "5.8", null, "0.6", null, "6.1", null, "0.7", null, "7.3", null, "0.6", null, "6.5", null, "0.5", null, "6.8", null, "0.5", null, "6.6", null, "0.5", null, "6.1", null, "0.6", null, "6.1", null, "0.7", null, "5.9", null, "0.4", null, "6.9", null, "0.4", null, "6.9", null, "0.7", null, "6.6", null, "0.6", null, "5.6", null, "0.5", null, "4.9", null, "0.5", null, "3.3", null, "0.3", null, "2.0", null, "0.3", null, "1.1", null, "0.2", null, "12.0", null, "0.6", null, "4.6", null, "0.5", null, "22.0", null, "0.9", null, "9.2", null, "0.5", null, "39.4", null, "0.7", null, "81.2", null, "0.9", null, "78.0", null, "0.9", null, "73.7", null, "1.0", null, "23.5", null, "0.8", null, "20.8", null, "0.7", null, "17.0", null, "0.4", null, "6.5", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "403737", null, "5577", null, "20837", null, "2506", null, "21129", null, "2683", null, "25466", null, "2775", null, "24475", null, "2137", null, "24945", null, "1441", null, "23737", null, "1590", null, "24762", null, "2397", null, "24514", null, "2814", null, "24741", null, "2651", null, "25527", null, "1821", null, "29183", null, "1983", null, "25674", null, "2274", null, "27996", null, "2615", null, "24256", null, "2104", null, "20984", null, "1897", null, "16382", null, "1731", null, "10490", null, "1408", null, "8639", null, "1206", null, "46595", null, "2050", null, "14447", null, "1780", null, "81879", null, "3843", null, "34973", null, "1774", null, "147174", null, "4156", null, "329838", null, "3753", null, "321858", null, "3503", null, "306827", null, "3312", null, "108747", null, "2780", null, "96476", null, "2779", null, "80751", null, "1584", null, "35511", null, "1394", null, "42.7", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.6", null, "5.2", null, "0.7", null, "6.3", null, "0.7", null, "6.1", null, "0.5", null, "6.2", null, "0.3", null, "5.9", null, "0.4", null, "6.1", null, "0.6", null, "6.1", null, "0.7", null, "6.1", null, "0.7", null, "6.3", null, "0.4", null, "7.2", null, "0.5", null, "6.4", null, "0.6", null, "6.9", null, "0.6", null, "6.0", null, "0.5", null, "5.2", null, "0.5", null, "4.1", null, "0.4", null, "2.6", null, "0.3", null, "2.1", null, "0.3", null, "11.5", null, "0.4", null, "3.6", null, "0.4", null, "20.3", null, "0.8", null, "8.7", null, "0.4", null, "36.5", null, "0.8", null, "81.7", null, "0.8", null, "79.7", null, "0.8", null, "76.0", null, "0.7", null, "26.9", null, "0.7", null, "23.9", null, "0.7", null, "20.0", null, "0.4", null, "8.8", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "37", "10"], ["5001900US3711", "Congressional District 11 (119th Congress), North Carolina", "770851", null, "1754", null, "32684", null, "2034", null, "37048", null, "2941", null, "37989", null, "3227", null, "43786", null, "3413", null, "40305", null, "3441", null, "41173", null, "2929", null, "48594", null, "2510", null, "50456", null, "3855", null, "50764", null, "3991", null, "43475", null, "2047", null, "46169", null, "1764", null, "48412", null, "2986", null, "55036", null, "3009", null, "57892", null, "3161", null, "51289", null, "3278", null, "40998", null, "2491", null, "25531", null, "2238", null, "19250", null, "2094", null, "75037", null, "2785", null, "24890", null, "1647", null, "132611", null, "1375", null, "59201", null, "2939", null, "275078", null, "3394", null, "654297", null, "2498", null, "638240", null, "1923", null, "610074", null, "3986", null, "249996", null, "2961", null, "231869", null, "3284", null, "194960", null, "1932", null, "85779", null, "1238", null, "45.4", null, "0.4", null, "97.3", null, "1.8", null, "73.9", null, "0.8", null, "44.0", null, "0.6", null, "29.9", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.2", null, "0.3", null, "4.8", null, "0.4", null, "4.9", null, "0.4", null, "5.7", null, "0.4", null, "5.2", null, "0.4", null, "5.3", null, "0.4", null, "6.3", null, "0.3", null, "6.5", null, "0.5", null, "6.6", null, "0.5", null, "5.6", null, "0.3", null, "6.0", null, "0.2", null, "6.3", null, "0.4", null, "7.1", null, "0.4", null, "7.5", null, "0.4", null, "6.7", null, "0.4", null, "5.3", null, "0.3", null, "3.3", null, "0.3", null, "2.5", null, "0.3", null, "9.7", null, "0.4", null, "3.2", null, "0.2", null, "17.2", null, "0.2", null, "7.7", null, "0.4", null, "35.7", null, "0.4", null, "84.9", null, "0.3", null, "82.8", null, "0.2", null, "79.1", null, "0.5", null, "32.4", null, "0.4", null, "30.1", null, "0.4", null, "25.3", null, "0.2", null, "11.1", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.2", null, "-888888888.0", "(X)", "380122", null, "3697", null, "18094", null, "2198", null, "20717", null, "2490", null, "20607", null, "2341", null, "21442", null, "3102", null, "20214", null, "2608", null, "21980", null, "1951", null, "23662", null, "1596", null, "23584", null, "2832", null, "26565", null, "2352", null, "22172", null, "1492", null, "23147", null, "1257", null, "22890", null, "2225", null, "27406", null, "2185", null, "26662", null, "2024", null, "23834", null, "2079", null, "17963", null, "1593", null, "11308", null, "1424", null, "7875", null, "1384", null, "41324", null, "2566", null, "12502", null, "1855", null, "71920", null, "3219", null, "29154", null, "1991", null, "137447", null, "3070", null, "316653", null, "2730", null, "308202", null, "2229", null, "294531", null, "3196", null, "115048", null, "2358", null, "105878", null, "2500", null, "87642", null, "1581", null, "37146", null, "892", null, "43.6", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.8", null, "0.6", null, "5.5", null, "0.6", null, "5.4", null, "0.6", null, "5.6", null, "0.8", null, "5.3", null, "0.7", null, "5.8", null, "0.5", null, "6.2", null, "0.4", null, "6.2", null, "0.7", null, "7.0", null, "0.6", null, "5.8", null, "0.4", null, "6.1", null, "0.3", null, "6.0", null, "0.6", null, "7.2", null, "0.6", null, "7.0", null, "0.5", null, "6.3", null, "0.6", null, "4.7", null, "0.4", null, "3.0", null, "0.4", null, "2.1", null, "0.4", null, "10.9", null, "0.6", null, "3.3", null, "0.5", null, "18.9", null, "0.7", null, "7.7", null, "0.5", null, "36.2", null, "0.7", null, "83.3", null, "0.6", null, "81.1", null, "0.7", null, "77.5", null, "1.0", null, "30.3", null, "0.7", null, "27.9", null, "0.7", null, "23.1", null, "0.4", null, "9.8", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "390729", null, "3716", null, "14590", null, "1448", null, "16331", null, "1752", null, "17382", null, "1907", null, "22344", null, "2205", null, "20091", null, "1961", null, "19193", null, "1507", null, "24932", null, "1624", null, "26872", null, "2571", null, "24199", null, "2986", null, "21303", null, "1216", null, "23022", null, "1125", null, "25522", null, "1955", null, "27630", null, "1921", null, "31230", null, "2071", null, "27455", null, "2185", null, "23035", null, "1658", null, "14223", null, "1580", null, "11375", null, "1445", null, "33713", null, "1976", null, "12388", null, "1768", null, "60691", null, "3255", null, "30047", null, "1898", null, "137631", null, "2689", null, "337644", null, "2182", null, "330038", null, "2123", null, "315543", null, "2585", null, "134948", null, "2074", null, "125991", null, "2320", null, "107318", null, "1103", null, "48633", null, "912", null, "47.4", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "3.7", null, "0.4", null, "4.2", null, "0.4", null, "4.4", null, "0.5", null, "5.7", null, "0.6", null, "5.1", null, "0.5", null, "4.9", null, "0.4", null, "6.4", null, "0.4", null, "6.9", null, "0.7", null, "6.2", null, "0.8", null, "5.5", null, "0.3", null, "5.9", null, "0.3", null, "6.5", null, "0.5", null, "7.1", null, "0.5", null, "8.0", null, "0.5", null, "7.0", null, "0.6", null, "5.9", null, "0.4", null, "3.6", null, "0.4", null, "2.9", null, "0.4", null, "8.6", null, "0.5", null, "3.2", null, "0.4", null, "15.5", null, "0.7", null, "7.7", null, "0.5", null, "35.2", null, "0.6", null, "86.4", null, "0.7", null, "84.5", null, "0.7", null, "80.8", null, "0.9", null, "34.5", null, "0.6", null, "32.2", null, "0.6", null, "27.5", null, "0.3", null, "12.4", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "37", "11"], ["5001900US3712", "Congressional District 12 (119th Congress), North Carolina", "801527", null, "11561", null, "53176", null, "3018", null, "51103", null, "4134", null, "43995", null, "3776", null, "49771", null, "2509", null, "64177", null, "2964", null, "81383", null, "3220", null, "78632", null, "2565", null, "67964", null, "4505", null, "52242", null, "4894", null, "47158", null, "2741", null, "45828", null, "2635", null, "40364", null, "3497", null, "35122", null, "3534", null, "31802", null, "2140", null, "24749", null, "2425", null, "16403", null, "1728", null, "10195", null, "1711", null, "7463", null, "1336", null, "95098", null, "3983", null, "28341", null, "1742", null, "176615", null, "5521", null, "85607", null, "3648", null, "394169", null, "7113", null, "643547", null, "9548", null, "624912", null, "9038", null, "592496", null, "8378", null, "125734", null, "4329", null, "110099", null, "3566", null, "90612", null, "3117", null, "34061", null, "2012", null, "33.5", null, "0.4", null, "94.5", null, "1.6", null, "50.0", null, "1.3", null, "17.0", null, "0.7", null, "33.1", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.6", null, "0.3", null, "6.4", null, "0.5", null, "5.5", null, "0.5", null, "6.2", null, "0.3", null, "8.0", null, "0.3", null, "10.2", null, "0.4", null, "9.8", null, "0.3", null, "8.5", null, "0.5", null, "6.5", null, "0.6", null, "5.9", null, "0.3", null, "5.7", null, "0.3", null, "5.0", null, "0.4", null, "4.4", null, "0.4", null, "4.0", null, "0.3", null, "3.1", null, "0.3", null, "2.0", null, "0.2", null, "1.3", null, "0.2", null, "0.9", null, "0.2", null, "11.9", null, "0.4", null, "3.5", null, "0.2", null, "22.0", null, "0.5", null, "10.7", null, "0.4", null, "49.2", null, "0.6", null, "80.3", null, "0.6", null, "78.0", null, "0.5", null, "73.9", null, "0.6", null, "15.7", null, "0.5", null, "13.7", null, "0.5", null, "11.3", null, "0.4", null, "4.2", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.6", null, "-888888888.0", "(X)", "389471", null, "6311", null, "25970", null, "2209", null, "27210", null, "2528", null, "23343", null, "2427", null, "25084", null, "1724", null, "31172", null, "2087", null, "40306", null, "1891", null, "39758", null, "1698", null, "33282", null, "2937", null, "25900", null, "3206", null, "21878", null, "1531", null, "21677", null, "1677", null, "20973", null, "2235", null, "15385", null, "2221", null, "14050", null, "1484", null, "10817", null, "1507", null, "6603", null, "1110", null, "4005", null, "883", null, "2058", null, "685", null, "50553", null, "2484", null, "14284", null, "1116", null, "90807", null, "3307", null, "41972", null, "2669", null, "195502", null, "4437", null, "307051", null, "5631", null, "298664", null, "5186", null, "281186", null, "4853", null, "52918", null, "2626", null, "45881", null, "2273", null, "37533", null, "1960", null, "12666", null, "1163", null, "32.5", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.7", null, "0.5", null, "7.0", null, "0.7", null, "6.0", null, "0.6", null, "6.4", null, "0.4", null, "8.0", null, "0.5", null, "10.3", null, "0.5", null, "10.2", null, "0.4", null, "8.5", null, "0.7", null, "6.7", null, "0.8", null, "5.6", null, "0.4", null, "5.6", null, "0.4", null, "5.4", null, "0.6", null, "4.0", null, "0.6", null, "3.6", null, "0.4", null, "2.8", null, "0.4", null, "1.7", null, "0.3", null, "1.0", null, "0.2", null, "0.5", null, "0.2", null, "13.0", null, "0.6", null, "3.7", null, "0.3", null, "23.3", null, "0.7", null, "10.8", null, "0.6", null, "50.2", null, "0.8", null, "78.8", null, "0.7", null, "76.7", null, "0.7", null, "72.2", null, "0.9", null, "13.6", null, "0.7", null, "11.8", null, "0.6", null, "9.6", null, "0.5", null, "3.3", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "412056", null, "7094", null, "27206", null, "1881", null, "23893", null, "2628", null, "20652", null, "2584", null, "24687", null, "1607", null, "33005", null, "1746", null, "41077", null, "2017", null, "38874", null, "1902", null, "34682", null, "2719", null, "26342", null, "2957", null, "25280", null, "1847", null, "24151", null, "1678", null, "19391", null, "2078", null, "19737", null, "2087", null, "17752", null, "1613", null, "13932", null, "1778", null, "9800", null, "1229", null, "6190", null, "1177", null, "5405", null, "1106", null, "44545", null, "2605", null, "14057", null, "1211", null, "85808", null, "3615", null, "43635", null, "2052", null, "198667", null, "4220", null, "336496", null, "5598", null, "326248", null, "5550", null, "311310", null, "5500", null, "72816", null, "2764", null, "64218", null, "2298", null, "53079", null, "1931", null, "21395", null, "1274", null, "34.5", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.6", null, "0.4", null, "5.8", null, "0.6", null, "5.0", null, "0.6", null, "6.0", null, "0.4", null, "8.0", null, "0.4", null, "10.0", null, "0.5", null, "9.4", null, "0.5", null, "8.4", null, "0.6", null, "6.4", null, "0.7", null, "6.1", null, "0.4", null, "5.9", null, "0.4", null, "4.7", null, "0.5", null, "4.8", null, "0.5", null, "4.3", null, "0.4", null, "3.4", null, "0.4", null, "2.4", null, "0.3", null, "1.5", null, "0.3", null, "1.3", null, "0.3", null, "10.8", null, "0.6", null, "3.4", null, "0.3", null, "20.8", null, "0.7", null, "10.6", null, "0.5", null, "48.2", null, "0.7", null, "81.7", null, "0.7", null, "79.2", null, "0.7", null, "75.6", null, "0.6", null, "17.7", null, "0.6", null, "15.6", null, "0.5", null, "12.9", null, "0.5", null, "5.2", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "37", "12"], ["5001900US3713", "Congressional District 13 (119th Congress), North Carolina", "835054", null, "11139", null, "49256", null, "3039", null, "51858", null, "4434", null, "58736", null, "4389", null, "55583", null, "3767", null, "45801", null, "3596", null, "46874", null, "3286", null, "59810", null, "3923", null, "59351", null, "4740", null, "56245", null, "4918", null, "54538", null, "3758", null, "55225", null, "3441", null, "52004", null, "3573", null, "53639", null, "3342", null, "43947", null, "3012", null, "38239", null, "2863", null, "26811", null, "2031", null, "16093", null, "2094", null, "11044", null, "1553", null, "110594", null, "4747", null, "34711", null, "2320", null, "194561", null, "5976", null, "66673", null, "3985", null, "323664", null, "7851", null, "664088", null, "9058", null, "640493", null, "8359", null, "609794", null, "8082", null, "189773", null, "5514", null, "169152", null, "5310", null, "136134", null, "3700", null, "53948", null, "2304", null, "39.2", null, "0.6", null, "95.4", null, "1.9", null, "65.6", null, "1.6", null, "27.0", null, "1.0", null, "38.6", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.9", null, "0.4", null, "6.2", null, "0.5", null, "7.0", null, "0.5", null, "6.7", null, "0.4", null, "5.5", null, "0.4", null, "5.6", null, "0.4", null, "7.2", null, "0.5", null, "7.1", null, "0.5", null, "6.7", null, "0.6", null, "6.5", null, "0.4", null, "6.6", null, "0.4", null, "6.2", null, "0.4", null, "6.4", null, "0.4", null, "5.3", null, "0.4", null, "4.6", null, "0.3", null, "3.2", null, "0.2", null, "1.9", null, "0.2", null, "1.3", null, "0.2", null, "13.2", null, "0.5", null, "4.2", null, "0.3", null, "23.3", null, "0.6", null, "8.0", null, "0.5", null, "38.8", null, "0.7", null, "79.5", null, "0.6", null, "76.7", null, "0.6", null, "73.0", null, "0.6", null, "22.7", null, "0.7", null, "20.3", null, "0.7", null, "16.3", null, "0.5", null, "6.5", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.1", null, "-888888888.0", "(X)", "407791", null, "7146", null, "23357", null, "2451", null, "25465", null, "3009", null, "30175", null, "3141", null, "27659", null, "2770", null, "22170", null, "2495", null, "24184", null, "2235", null, "30580", null, "2305", null, "29222", null, "3206", null, "27533", null, "2844", null, "27455", null, "2684", null, "27098", null, "2589", null, "27652", null, "2338", null, "24294", null, "2179", null, "20115", null, "1964", null, "18129", null, "1776", null, "12581", null, "1382", null, "5453", null, "1075", null, "4669", null, "930", null, "55640", null, "2971", null, "16669", null, "1966", null, "95666", null, "4564", null, "33160", null, "2831", null, "161348", null, "4880", null, "322170", null, "5365", null, "312125", null, "5022", null, "296782", null, "5054", null, "85241", null, "3191", null, "75565", null, "2986", null, "60947", null, "2107", null, "22703", null, "1584", null, "38.5", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.7", null, "0.6", null, "6.2", null, "0.7", null, "7.4", null, "0.7", null, "6.8", null, "0.6", null, "5.4", null, "0.6", null, "5.9", null, "0.5", null, "7.5", null, "0.6", null, "7.2", null, "0.8", null, "6.8", null, "0.7", null, "6.7", null, "0.7", null, "6.6", null, "0.6", null, "6.8", null, "0.6", null, "6.0", null, "0.5", null, "4.9", null, "0.5", null, "4.4", null, "0.5", null, "3.1", null, "0.3", null, "1.3", null, "0.3", null, "1.1", null, "0.2", null, "13.6", null, "0.6", null, "4.1", null, "0.5", null, "23.5", null, "0.9", null, "8.1", null, "0.7", null, "39.6", null, "0.9", null, "79.0", null, "0.8", null, "76.5", null, "0.9", null, "72.8", null, "1.0", null, "20.9", null, "0.8", null, "18.5", null, "0.7", null, "14.9", null, "0.5", null, "5.6", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "427263", null, "6855", null, "25899", null, "2469", null, "26393", null, "3348", null, "28561", null, "2598", null, "27924", null, "2785", null, "23631", null, "2213", null, "22690", null, "1936", null, "29230", null, "2429", null, "30129", null, "2860", null, "28712", null, "3349", null, "27083", null, "2316", null, "28127", null, "2277", null, "24352", null, "2147", null, "29345", null, "2434", null, "23832", null, "1895", null, "20110", null, "1946", null, "14230", null, "1396", null, "10640", null, "1635", null, "6375", null, "1095", null, "54954", null, "3457", null, "18042", null, "2114", null, "98895", null, "4679", null, "33513", null, "2590", null, "162316", null, "4645", null, "341918", null, "5035", null, "328368", null, "4511", null, "313012", null, "4556", null, "104532", null, "3409", null, "93587", null, "3287", null, "75187", null, "2141", null, "31245", null, "1427", null, "39.9", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.1", null, "0.5", null, "6.2", null, "0.8", null, "6.7", null, "0.6", null, "6.5", null, "0.6", null, "5.5", null, "0.5", null, "5.3", null, "0.5", null, "6.8", null, "0.6", null, "7.1", null, "0.7", null, "6.7", null, "0.8", null, "6.3", null, "0.5", null, "6.6", null, "0.5", null, "5.7", null, "0.5", null, "6.9", null, "0.6", null, "5.6", null, "0.5", null, "4.7", null, "0.5", null, "3.3", null, "0.3", null, "2.5", null, "0.4", null, "1.5", null, "0.3", null, "12.9", null, "0.7", null, "4.2", null, "0.5", null, "23.1", null, "0.9", null, "7.8", null, "0.6", null, "38.0", null, "0.9", null, "80.0", null, "0.9", null, "76.9", null, "0.9", null, "73.3", null, "1.0", null, "24.5", null, "0.9", null, "21.9", null, "0.9", null, "17.6", null, "0.6", null, "7.3", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "37", "13"], ["5001900US3714", "Congressional District 14 (119th Congress), North Carolina", "792862", null, "11339", null, "45876", null, "2961", null, "45835", null, "3569", null, "49113", null, "3612", null, "49739", null, "2975", null, "41132", null, "3418", null, "47853", null, "3254", null, "56202", null, "2698", null, "55992", null, "4332", null, "50600", null, "3975", null, "49687", null, "2753", null, "55839", null, "2759", null, "53167", null, "3656", null, "54153", null, "3482", null, "44059", null, "2328", null, "36619", null, "2237", null, "25922", null, "1761", null, "17866", null, "1730", null, "13208", null, "1649", null, "94948", null, "4284", null, "32017", null, "1923", null, "172841", null, "5514", null, "58854", null, "3652", null, "301518", null, "7187", null, "640831", null, "8717", null, "620021", null, "8649", null, "593513", null, "8605", null, "191827", null, "4781", null, "170812", null, "4530", null, "137674", null, "3101", null, "56996", null, "1819", null, "40.5", null, "0.6", null, "94.1", null, "1.9", null, "64.4", null, "1.4", null, "28.5", null, "0.8", null, "35.8", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.8", null, "0.4", null, "5.8", null, "0.4", null, "6.2", null, "0.4", null, "6.3", null, "0.4", null, "5.2", null, "0.4", null, "6.0", null, "0.4", null, "7.1", null, "0.3", null, "7.1", null, "0.5", null, "6.4", null, "0.5", null, "6.3", null, "0.3", null, "7.0", null, "0.3", null, "6.7", null, "0.4", null, "6.8", null, "0.5", null, "5.6", null, "0.3", null, "4.6", null, "0.3", null, "3.3", null, "0.2", null, "2.3", null, "0.2", null, "1.7", null, "0.2", null, "12.0", null, "0.5", null, "4.0", null, "0.2", null, "21.8", null, "0.5", null, "7.4", null, "0.4", null, "38.0", null, "0.6", null, "80.8", null, "0.5", null, "78.2", null, "0.5", null, "74.9", null, "0.6", null, "24.2", null, "0.7", null, "21.5", null, "0.6", null, "17.4", null, "0.4", null, "7.2", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.3", null, "-888888888.0", "(X)", "384334", null, "6333", null, "24178", null, "2237", null, "23156", null, "2673", null, "24249", null, "2222", null, "27014", null, "2148", null, "22119", null, "2408", null, "23340", null, "2020", null, "26436", null, "1919", null, "27422", null, "2679", null, "23909", null, "2219", null, "23586", null, "1521", null, "26401", null, "1718", null, "25856", null, "2365", null, "25875", null, "2193", null, "20880", null, "1548", null, "16754", null, "1522", null, "11187", null, "1025", null, "7189", null, "1204", null, "4783", null, "1016", null, "47405", null, "2570", null, "18046", null, "1570", null, "89629", null, "3619", null, "31087", null, "2441", null, "150240", null, "4524", null, "306297", null, "4976", null, "294705", null, "4723", null, "280795", null, "4721", null, "86668", null, "2833", null, "77263", null, "2473", null, "60793", null, "1833", null, "23159", null, "1020", null, "38.8", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.3", null, "0.6", null, "6.0", null, "0.7", null, "6.3", null, "0.6", null, "7.0", null, "0.5", null, "5.8", null, "0.6", null, "6.1", null, "0.5", null, "6.9", null, "0.5", null, "7.1", null, "0.7", null, "6.2", null, "0.6", null, "6.1", null, "0.4", null, "6.9", null, "0.4", null, "6.7", null, "0.6", null, "6.7", null, "0.6", null, "5.4", null, "0.4", null, "4.4", null, "0.4", null, "2.9", null, "0.3", null, "1.9", null, "0.3", null, "1.2", null, "0.3", null, "12.3", null, "0.6", null, "4.7", null, "0.4", null, "23.3", null, "0.7", null, "8.1", null, "0.6", null, "39.1", null, "0.9", null, "79.7", null, "0.7", null, "76.7", null, "0.7", null, "73.1", null, "0.8", null, "22.6", null, "0.8", null, "20.1", null, "0.7", null, "15.8", null, "0.5", null, "6.0", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "408528", null, "7445", null, "21698", null, "2109", null, "22679", null, "2208", null, "24864", null, "2719", null, "22725", null, "2033", null, "19013", null, "1741", null, "24513", null, "2066", null, "29766", null, "2096", null, "28570", null, "3041", null, "26691", null, "2922", null, "26101", null, "1998", null, "29438", null, "1807", null, "27311", null, "2238", null, "28278", null, "2133", null, "23179", null, "1563", null, "19865", null, "1481", null, "14735", null, "1398", null, "10677", null, "1241", null, "8425", null, "1236", null, "47543", null, "3083", null, "13971", null, "1478", null, "83212", null, "4235", null, "27767", null, "2311", null, "151278", null, "4129", null, "334534", null, "5667", null, "325316", null, "5579", null, "312718", null, "5311", null, "105159", null, "2903", null, "93549", null, "3035", null, "76881", null, "1972", null, "33837", null, "1310", null, "42.2", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.3", null, "0.5", null, "5.6", null, "0.5", null, "6.1", null, "0.6", null, "5.6", null, "0.5", null, "4.7", null, "0.4", null, "6.0", null, "0.5", null, "7.3", null, "0.5", null, "7.0", null, "0.7", null, "6.5", null, "0.7", null, "6.4", null, "0.5", null, "7.2", null, "0.4", null, "6.7", null, "0.5", null, "6.9", null, "0.5", null, "5.7", null, "0.4", null, "4.9", null, "0.4", null, "3.6", null, "0.3", null, "2.6", null, "0.3", null, "2.1", null, "0.3", null, "11.6", null, "0.6", null, "3.4", null, "0.4", null, "20.4", null, "0.8", null, "6.8", null, "0.5", null, "37.0", null, "0.7", null, "81.9", null, "0.8", null, "79.6", null, "0.8", null, "76.5", null, "0.8", null, "25.7", null, "0.8", null, "22.9", null, "0.8", null, "18.8", null, "0.5", null, "8.3", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "37", "14"], ["5001900US3800", "Congressional District (at Large) (119th Congress), North Dakota", "796568", null, "-555555555", "*****", "43600", null, "1828", null, "49702", null, "2901", null, "55415", null, "3643", null, "55036", null, "3164", null, "61599", null, "3290", null, "57096", null, "2810", null, "57761", null, "3109", null, "58557", null, "4321", null, "51858", null, "3845", null, "41757", null, "2242", null, "37378", null, "1209", null, "38373", null, "2477", null, "48141", null, "2507", null, "43965", null, "2176", null, "36185", null, "2089", null, "24638", null, "1865", null, "17636", null, "1796", null, "17871", null, "1712", null, "105117", null, "2615", null, "29310", null, "1532", null, "178027", null, "2136", null, "87325", null, "3415", null, "341907", null, "3951", null, "637108", null, "2344", null, "618541", null, "2136", null, "581552", null, "3481", null, "188436", null, "2900", null, "169136", null, "2647", null, "140295", null, "1739", null, "60145", null, "1190", null, "36.7", null, "0.4", null, "105.4", null, "1.3", null, "66.6", null, "0.8", null, "29.3", null, "0.5", null, "37.2", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.2", null, "6.2", null, "0.4", null, "7.0", null, "0.5", null, "6.9", null, "0.4", null, "7.7", null, "0.4", null, "7.2", null, "0.4", null, "7.3", null, "0.4", null, "7.4", null, "0.5", null, "6.5", null, "0.5", null, "5.2", null, "0.3", null, "4.7", null, "0.2", null, "4.8", null, "0.3", null, "6.0", null, "0.3", null, "5.5", null, "0.3", null, "4.5", null, "0.3", null, "3.1", null, "0.2", null, "2.2", null, "0.2", null, "2.2", null, "0.2", null, "13.2", null, "0.3", null, "3.7", null, "0.2", null, "22.3", null, "0.3", null, "11.0", null, "0.4", null, "42.9", null, "0.5", null, "80.0", null, "0.3", null, "77.7", null, "0.3", null, "73.0", null, "0.4", null, "23.7", null, "0.4", null, "21.2", null, "0.3", null, "17.6", null, "0.2", null, "7.6", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.2", null, "-888888888.0", "(X)", "408714", null, "2484", null, "22074", null, "1508", null, "25974", null, "1978", null, "26588", null, "2209", null, "28753", null, "2432", null, "34691", null, "2490", null, "30079", null, "1982", null, "30924", null, "2013", null, "30657", null, "2977", null, "26269", null, "2593", null, "23830", null, "1968", null, "19045", null, "789", null, "19895", null, "1775", null, "24275", null, "1617", null, "22116", null, "1530", null, "17753", null, "1437", null, "12200", null, "1286", null, "7664", null, "1076", null, "5927", null, "931", null, "52562", null, "1832", null, "15388", null, "1273", null, "90024", null, "2109", null, "48056", null, "2491", null, "181373", null, "3003", null, "328484", null, "2395", null, "318690", null, "2389", null, "298258", null, "3055", null, "89935", null, "1814", null, "80892", null, "1881", null, "65660", null, "1199", null, "25791", null, "800", null, "35.9", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.4", null, "6.4", null, "0.5", null, "6.5", null, "0.5", null, "7.0", null, "0.6", null, "8.5", null, "0.6", null, "7.4", null, "0.5", null, "7.6", null, "0.5", null, "7.5", null, "0.7", null, "6.4", null, "0.6", null, "5.8", null, "0.5", null, "4.7", null, "0.2", null, "4.9", null, "0.4", null, "5.9", null, "0.4", null, "5.4", null, "0.4", null, "4.3", null, "0.3", null, "3.0", null, "0.3", null, "1.9", null, "0.3", null, "1.5", null, "0.2", null, "12.9", null, "0.4", null, "3.8", null, "0.3", null, "22.0", null, "0.5", null, "11.8", null, "0.6", null, "44.4", null, "0.7", null, "80.4", null, "0.5", null, "78.0", null, "0.5", null, "73.0", null, "0.6", null, "22.0", null, "0.4", null, "19.8", null, "0.5", null, "16.1", null, "0.3", null, "6.3", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "387854", null, "2484", null, "21526", null, "1350", null, "23728", null, "2143", null, "28827", null, "2513", null, "26283", null, "1785", null, "26908", null, "1809", null, "27017", null, "1820", null, "26837", null, "1792", null, "27900", null, "2508", null, "25589", null, "2191", null, "17927", null, "1094", null, "18333", null, "878", null, "18478", null, "1398", null, "23866", null, "1582", null, "21849", null, "1405", null, "18432", null, "1412", null, "12438", null, "1339", null, "9972", null, "1366", null, "11944", null, "1291", null, "52555", null, "1855", null, "13922", null, "1324", null, "88003", null, "2194", null, "39269", null, "1663", null, "160534", null, "2438", null, "308624", null, "2354", null, "299851", null, "2011", null, "283294", null, "2535", null, "98501", null, "2082", null, "88244", null, "1764", null, "74635", null, "1385", null, "34354", null, "848", null, "37.4", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.6", null, "0.3", null, "6.1", null, "0.5", null, "7.4", null, "0.6", null, "6.8", null, "0.5", null, "6.9", null, "0.5", null, "7.0", null, "0.5", null, "6.9", null, "0.5", null, "7.2", null, "0.7", null, "6.6", null, "0.6", null, "4.6", null, "0.3", null, "4.7", null, "0.2", null, "4.8", null, "0.4", null, "6.2", null, "0.4", null, "5.6", null, "0.4", null, "4.8", null, "0.4", null, "3.2", null, "0.3", null, "2.6", null, "0.4", null, "3.1", null, "0.3", null, "13.6", null, "0.5", null, "3.6", null, "0.3", null, "22.7", null, "0.5", null, "10.1", null, "0.4", null, "41.4", null, "0.6", null, "79.6", null, "0.5", null, "77.3", null, "0.5", null, "73.0", null, "0.7", null, "25.4", null, "0.5", null, "22.8", null, "0.5", null, "19.2", null, "0.4", null, "8.9", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "38", "00"], ["5001900US3901", "Congressional District 1 (119th Congress), Ohio", "809863", null, "6630", null, "49204", null, "2133", null, "54373", null, "4373", null, "48490", null, "3546", null, "57527", null, "2594", null, "57006", null, "2372", null, "59217", null, "2136", null, "60111", null, "2976", null, "60243", null, "3856", null, "49908", null, "3420", null, "46516", null, "2178", null, "43921", null, "2603", null, "44149", null, "3149", null, "50353", null, "2878", null, "42774", null, "3113", null, "36226", null, "2581", null, "22169", null, "2199", null, "12472", null, "1542", null, "15204", null, "1836", null, "102863", null, "4180", null, "33313", null, "2244", null, "185380", null, "5024", null, "81220", null, "2495", null, "344012", null, "4899", null, "647228", null, "6701", null, "624483", null, "5987", null, "589430", null, "5719", null, "179198", null, "5518", null, "158125", null, "5502", null, "128845", null, "4180", null, "49845", null, "2222", null, "36.6", null, "0.5", null, "99.0", null, "2.0", null, "63.4", null, "1.3", null, "26.0", null, "0.9", null, "37.4", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.1", null, "0.3", null, "6.7", null, "0.5", null, "6.0", null, "0.4", null, "7.1", null, "0.3", null, "7.0", null, "0.3", null, "7.3", null, "0.3", null, "7.4", null, "0.4", null, "7.4", null, "0.5", null, "6.2", null, "0.4", null, "5.7", null, "0.3", null, "5.4", null, "0.3", null, "5.5", null, "0.4", null, "6.2", null, "0.4", null, "5.3", null, "0.4", null, "4.5", null, "0.3", null, "2.7", null, "0.3", null, "1.5", null, "0.2", null, "1.9", null, "0.2", null, "12.7", null, "0.5", null, "4.1", null, "0.3", null, "22.9", null, "0.6", null, "10.0", null, "0.3", null, "42.5", null, "0.5", null, "79.9", null, "0.6", null, "77.1", null, "0.6", null, "72.8", null, "0.5", null, "22.1", null, "0.7", null, "19.5", null, "0.7", null, "15.9", null, "0.5", null, "6.2", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.0", null, "-888888888.0", "(X)", "402925", null, "5510", null, "24809", null, "1756", null, "27981", null, "3150", null, "27154", null, "2442", null, "30318", null, "1921", null, "30066", null, "1809", null, "29075", null, "1883", null, "30477", null, "1968", null, "30782", null, "2852", null, "23433", null, "2421", null, "23674", null, "1464", null, "22753", null, "1913", null, "21624", null, "2062", null, "24131", null, "1977", null, "19765", null, "2104", null, "16182", null, "1665", null, "10479", null, "1382", null, "4587", null, "766", null, "5635", null, "994", null, "55135", null, "3012", null, "17729", null, "1516", null, "97673", null, "3617", null, "42655", null, "2008", null, "174151", null, "3625", null, "317355", null, "5289", null, "305252", null, "4448", null, "286426", null, "4444", null, "80779", null, "3085", null, "69997", null, "3132", null, "56648", null, "2323", null, "20701", null, "1380", null, "35.2", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.2", null, "0.4", null, "6.9", null, "0.8", null, "6.7", null, "0.6", null, "7.5", null, "0.5", null, "7.5", null, "0.4", null, "7.2", null, "0.5", null, "7.6", null, "0.5", null, "7.6", null, "0.7", null, "5.8", null, "0.6", null, "5.9", null, "0.4", null, "5.6", null, "0.5", null, "5.4", null, "0.5", null, "6.0", null, "0.5", null, "4.9", null, "0.5", null, "4.0", null, "0.4", null, "2.6", null, "0.3", null, "1.1", null, "0.2", null, "1.4", null, "0.2", null, "13.7", null, "0.7", null, "4.4", null, "0.4", null, "24.2", null, "0.7", null, "10.6", null, "0.5", null, "43.2", null, "0.7", null, "78.8", null, "0.8", null, "75.8", null, "0.7", null, "71.1", null, "0.8", null, "20.0", null, "0.8", null, "17.4", null, "0.8", null, "14.1", null, "0.6", null, "5.1", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "406938", null, "5165", null, "24395", null, "1613", null, "26392", null, "2716", null, "21336", null, "2449", null, "27209", null, "2089", null, "26940", null, "1672", null, "30142", null, "1384", null, "29634", null, "2146", null, "29461", null, "2598", null, "26475", null, "2253", null, "22842", null, "1524", null, "21168", null, "1568", null, "22525", null, "1754", null, "26222", null, "1683", null, "23009", null, "1921", null, "20044", null, "1844", null, "11690", null, "1535", null, "7885", null, "1240", null, "9569", null, "1388", null, "47728", null, "2658", null, "15584", null, "1821", null, "87707", null, "3696", null, "38565", null, "1903", null, "169861", null, "4159", null, "329873", null, "4400", null, "319231", null, "4071", null, "303004", null, "4104", null, "98419", null, "3020", null, "88128", null, "3283", null, "72197", null, "2466", null, "29144", null, "1581", null, "38.1", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.0", null, "0.4", null, "6.5", null, "0.7", null, "5.2", null, "0.6", null, "6.7", null, "0.5", null, "6.6", null, "0.4", null, "7.4", null, "0.3", null, "7.3", null, "0.5", null, "7.2", null, "0.6", null, "6.5", null, "0.5", null, "5.6", null, "0.4", null, "5.2", null, "0.4", null, "5.5", null, "0.4", null, "6.4", null, "0.4", null, "5.7", null, "0.5", null, "4.9", null, "0.5", null, "2.9", null, "0.4", null, "1.9", null, "0.3", null, "2.4", null, "0.3", null, "11.7", null, "0.6", null, "3.8", null, "0.4", null, "21.6", null, "0.8", null, "9.5", null, "0.5", null, "41.7", null, "0.8", null, "81.1", null, "0.7", null, "78.4", null, "0.8", null, "74.5", null, "0.7", null, "24.2", null, "0.8", null, "21.7", null, "0.8", null, "17.7", null, "0.6", null, "7.2", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "39", "01"], ["5001900US3902", "Congressional District 2 (119th Congress), Ohio", "790454", null, "2351", null, "42029", null, "838", null, "49038", null, "2431", null, "47060", null, "2450", null, "50920", null, "2332", null, "47181", null, "2230", null, "45741", null, "1739", null, "48231", null, "1371", null, "53071", null, "3741", null, "49409", null, "3790", null, "47974", null, "1634", null, "50084", null, "1138", null, "44759", null, "2948", null, "60940", null, "3060", null, "54220", null, "2507", null, "37496", null, "2425", null, "31204", null, "2301", null, "16648", null, "1736", null, "14449", null, "1813", null, "96098", null, "1282", null, "33274", null, "944", null, "171401", null, "1382", null, "64827", null, "1977", null, "294553", null, "2939", null, "641640", null, "2345", null, "619053", null, "1771", null, "591148", null, "2510", null, "214957", null, "3100", null, "189901", null, "3037", null, "154017", null, "1260", null, "62301", null, "1018", null, "41.1", null, "0.4", null, "100.1", null, "0.9", null, "70.0", null, "0.5", null, "33.1", null, "0.4", null, "36.9", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.3", null, "0.1", null, "6.2", null, "0.3", null, "6.0", null, "0.3", null, "6.4", null, "0.3", null, "6.0", null, "0.3", null, "5.8", null, "0.2", null, "6.1", null, "0.2", null, "6.7", null, "0.5", null, "6.3", null, "0.5", null, "6.1", null, "0.2", null, "6.3", null, "0.1", null, "5.7", null, "0.4", null, "7.7", null, "0.4", null, "6.9", null, "0.3", null, "4.7", null, "0.3", null, "3.9", null, "0.3", null, "2.1", null, "0.2", null, "1.8", null, "0.2", null, "12.2", null, "0.2", null, "4.2", null, "0.1", null, "21.7", null, "0.1", null, "8.2", null, "0.2", null, "37.3", null, "0.3", null, "81.2", null, "0.2", null, "78.3", null, "0.1", null, "74.8", null, "0.4", null, "27.2", null, "0.4", null, "24.0", null, "0.4", null, "19.5", null, "0.2", null, "7.9", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "0.9", null, "-888888888.0", "(X)", "395456", null, "2100", null, "22220", null, "851", null, "25076", null, "1997", null, "23918", null, "1974", null, "26227", null, "2030", null, "24499", null, "1619", null, "24198", null, "1048", null, "24868", null, "857", null, "27388", null, "2125", null, "24989", null, "2366", null, "23863", null, "1256", null, "25514", null, "824", null, "24148", null, "1599", null, "28496", null, "1837", null, "26282", null, "1563", null, "17745", null, "1405", null, "13687", null, "1199", null, "6484", null, "1071", null, "5854", null, "1018", null, "48994", null, "928", null, "16830", null, "1178", null, "88044", null, "1937", null, "33896", null, "1220", null, "152169", null, "2101", null, "318932", null, "1839", null, "307412", null, "1289", null, "293257", null, "1975", null, "98548", null, "1944", null, "87236", null, "2081", null, "70052", null, "798", null, "26025", null, "494", null, "39.8", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.6", null, "0.2", null, "6.3", null, "0.5", null, "6.0", null, "0.5", null, "6.6", null, "0.5", null, "6.2", null, "0.4", null, "6.1", null, "0.3", null, "6.3", null, "0.2", null, "6.9", null, "0.5", null, "6.3", null, "0.6", null, "6.0", null, "0.3", null, "6.5", null, "0.2", null, "6.1", null, "0.4", null, "7.2", null, "0.5", null, "6.6", null, "0.4", null, "4.5", null, "0.4", null, "3.5", null, "0.3", null, "1.6", null, "0.3", null, "1.5", null, "0.3", null, "12.4", null, "0.2", null, "4.3", null, "0.3", null, "22.3", null, "0.4", null, "8.6", null, "0.3", null, "38.5", null, "0.4", null, "80.6", null, "0.4", null, "77.7", null, "0.4", null, "74.2", null, "0.6", null, "24.9", null, "0.5", null, "22.1", null, "0.5", null, "17.7", null, "0.2", null, "6.6", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "394998", null, "2242", null, "19809", null, "852", null, "23962", null, "1915", null, "23142", null, "1996", null, "24693", null, "1525", null, "22682", null, "1326", null, "21543", null, "1223", null, "23363", null, "1052", null, "25683", null, "2531", null, "24420", null, "2344", null, "24111", null, "1063", null, "24570", null, "759", null, "20611", null, "2224", null, "32444", null, "2094", null, "27938", null, "1698", null, "19751", null, "1734", null, "17517", null, "1633", null, "10164", null, "1233", null, "8595", null, "1327", null, "47104", null, "990", null, "16444", null, "1035", null, "83357", null, "1705", null, "30931", null, "1186", null, "142384", null, "1818", null, "322708", null, "1850", null, "311641", null, "1595", null, "297891", null, "1753", null, "116409", null, "2161", null, "102665", null, "1974", null, "83965", null, "964", null, "36276", null, "778", null, "42.2", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.0", null, "0.2", null, "6.1", null, "0.5", null, "5.9", null, "0.5", null, "6.3", null, "0.4", null, "5.7", null, "0.3", null, "5.5", null, "0.3", null, "5.9", null, "0.3", null, "6.5", null, "0.6", null, "6.2", null, "0.6", null, "6.1", null, "0.3", null, "6.2", null, "0.2", null, "5.2", null, "0.6", null, "8.2", null, "0.5", null, "7.1", null, "0.4", null, "5.0", null, "0.4", null, "4.4", null, "0.4", null, "2.6", null, "0.3", null, "2.2", null, "0.3", null, "11.9", null, "0.2", null, "4.2", null, "0.3", null, "21.1", null, "0.4", null, "7.8", null, "0.3", null, "36.0", null, "0.4", null, "81.7", null, "0.4", null, "78.9", null, "0.4", null, "75.4", null, "0.5", null, "29.5", null, "0.6", null, "26.0", null, "0.5", null, "21.3", null, "0.2", null, "9.2", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "39", "02"], ["5001900US3903", "Congressional District 3 (119th Congress), Ohio", "787191", null, "16434", null, "48279", null, "3821", null, "50275", null, "4606", null, "47258", null, "4384", null, "53724", null, "3134", null, "62227", null, "3366", null, "63693", null, "4023", null, "70989", null, "3492", null, "64815", null, "5162", null, "53601", null, "4596", null, "41539", null, "2629", null, "41475", null, "3039", null, "36060", null, "3031", null, "43091", null, "3205", null, "36927", null, "2722", null, "27373", null, "2854", null, "20267", null, "2216", null, "13925", null, "1910", null, "11673", null, "1510", null, "97533", null, "5547", null, "26190", null, "2354", null, "172002", null, "8386", null, "89761", null, "3712", null, "369049", null, "9359", null, "633883", null, "11929", null, "615189", null, "11645", null, "575364", null, "11739", null, "153256", null, "5910", null, "136174", null, "5195", null, "110165", null, "4432", null, "45865", null, "2390", null, "34.8", null, "0.6", null, "96.3", null, "2.5", null, "55.9", null, "1.8", null, "21.8", null, "1.0", null, "34.1", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.1", null, "0.4", null, "6.4", null, "0.5", null, "6.0", null, "0.5", null, "6.8", null, "0.4", null, "7.9", null, "0.4", null, "8.1", null, "0.5", null, "9.0", null, "0.4", null, "8.2", null, "0.6", null, "6.8", null, "0.6", null, "5.3", null, "0.3", null, "5.3", null, "0.4", null, "4.6", null, "0.4", null, "5.5", null, "0.4", null, "4.7", null, "0.3", null, "3.5", null, "0.4", null, "2.6", null, "0.3", null, "1.8", null, "0.2", null, "1.5", null, "0.2", null, "12.4", null, "0.6", null, "3.3", null, "0.3", null, "21.9", null, "0.8", null, "11.4", null, "0.4", null, "46.9", null, "0.7", null, "80.5", null, "0.7", null, "78.1", null, "0.8", null, "73.1", null, "0.8", null, "19.5", null, "0.8", null, "17.3", null, "0.7", null, "14.0", null, "0.6", null, "5.8", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "0.8", null, "-888888888.0", "(X)", "386146", null, "9440", null, "25877", null, "2539", null, "26533", null, "2849", null, "23072", null, "2817", null, "27165", null, "2565", null, "30726", null, "2412", null, "32299", null, "2388", null, "34950", null, "2820", null, "32065", null, "3462", null, "27001", null, "2877", null, "21215", null, "1753", null, "19390", null, "1856", null, "17508", null, "2005", null, "20363", null, "1904", null, "17929", null, "1662", null, "11569", null, "1581", null, "7767", null, "1295", null, "6424", null, "926", null, "4293", null, "865", null, "49605", null, "3303", null, "13756", null, "1588", null, "89238", null, "4949", null, "44135", null, "2899", null, "184206", null, "6673", null, "307708", null, "7846", null, "296908", null, "7509", null, "278020", null, "7177", null, "68345", null, "3255", null, "60380", null, "3017", null, "47982", null, "2675", null, "18484", null, "1247", null, "33.8", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.7", null, "0.6", null, "6.9", null, "0.7", null, "6.0", null, "0.7", null, "7.0", null, "0.6", null, "8.0", null, "0.6", null, "8.4", null, "0.6", null, "9.1", null, "0.7", null, "8.3", null, "0.9", null, "7.0", null, "0.7", null, "5.5", null, "0.4", null, "5.0", null, "0.5", null, "4.5", null, "0.5", null, "5.3", null, "0.5", null, "4.6", null, "0.4", null, "3.0", null, "0.4", null, "2.0", null, "0.3", null, "1.7", null, "0.2", null, "1.1", null, "0.2", null, "12.8", null, "0.7", null, "3.6", null, "0.4", null, "23.1", null, "1.0", null, "11.4", null, "0.7", null, "47.7", null, "1.1", null, "79.7", null, "1.0", null, "76.9", null, "1.0", null, "72.0", null, "1.1", null, "17.7", null, "0.9", null, "15.6", null, "0.9", null, "12.4", null, "0.7", null, "4.8", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "401045", null, "10019", null, "22402", null, "2261", null, "23742", null, "2819", null, "24186", null, "2944", null, "26559", null, "1914", null, "31501", null, "2146", null, "31394", null, "2743", null, "36039", null, "2207", null, "32750", null, "2967", null, "26600", null, "3100", null, "20324", null, "1707", null, "22085", null, "1777", null, "18552", null, "1882", null, "22728", null, "2165", null, "18998", null, "2043", null, "15804", null, "2130", null, "12500", null, "1574", null, "7501", null, "1455", null, "7380", null, "1217", null, "47928", null, "3338", null, "12434", null, "1461", null, "82764", null, "4984", null, "45626", null, "2217", null, "184843", null, "5411", null, "326175", null, "7127", null, "318281", null, "7082", null, "297344", null, "7217", null, "84911", null, "3746", null, "75794", null, "3470", null, "62183", null, "2729", null, "27381", null, "1567", null, "35.8", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.6", null, "0.5", null, "5.9", null, "0.6", null, "6.0", null, "0.7", null, "6.6", null, "0.5", null, "7.9", null, "0.5", null, "7.8", null, "0.6", null, "9.0", null, "0.5", null, "8.2", null, "0.7", null, "6.6", null, "0.8", null, "5.1", null, "0.4", null, "5.5", null, "0.4", null, "4.6", null, "0.5", null, "5.7", null, "0.5", null, "4.7", null, "0.5", null, "3.9", null, "0.5", null, "3.1", null, "0.4", null, "1.9", null, "0.4", null, "1.8", null, "0.3", null, "12.0", null, "0.7", null, "3.1", null, "0.4", null, "20.6", null, "0.9", null, "11.4", null, "0.5", null, "46.1", null, "0.9", null, "81.3", null, "0.9", null, "79.4", null, "0.9", null, "74.1", null, "1.0", null, "21.2", null, "0.9", null, "18.9", null, "0.8", null, "15.5", null, "0.6", null, "6.8", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "39", "03"], ["5001900US3904", "Congressional District 4 (119th Congress), Ohio", "810105", null, "4428", null, "44897", null, "1588", null, "53640", null, "3170", null, "51840", null, "3328", null, "51709", null, "2416", null, "50677", null, "2361", null, "45550", null, "1646", null, "49918", null, "1900", null, "52179", null, "3326", null, "55364", null, "3255", null, "51152", null, "1601", null, "52712", null, "1856", null, "46074", null, "2703", null, "55359", null, "2781", null, "46152", null, "2324", null, "41293", null, "2303", null, "29256", null, "2419", null, "17850", null, "1682", null, "14483", null, "1908", null, "105480", null, "1973", null, "33258", null, "1544", null, "183635", null, "2361", null, "69128", null, "2039", null, "305397", null, "3318", null, "649308", null, "4373", null, "626470", null, "3811", null, "597437", null, "4317", null, "204393", null, "3652", null, "181688", null, "3739", null, "149034", null, "2287", null, "61589", null, "1551", null, "40.5", null, "0.4", null, "102.5", null, "1.3", null, "69.7", null, "0.8", null, "31.2", null, "0.6", null, "38.5", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.2", null, "6.6", null, "0.4", null, "6.4", null, "0.4", null, "6.4", null, "0.3", null, "6.3", null, "0.3", null, "5.6", null, "0.2", null, "6.2", null, "0.2", null, "6.4", null, "0.4", null, "6.8", null, "0.4", null, "6.3", null, "0.2", null, "6.5", null, "0.2", null, "5.7", null, "0.3", null, "6.8", null, "0.3", null, "5.7", null, "0.3", null, "5.1", null, "0.3", null, "3.6", null, "0.3", null, "2.2", null, "0.2", null, "1.8", null, "0.2", null, "13.0", null, "0.2", null, "4.1", null, "0.2", null, "22.7", null, "0.3", null, "8.5", null, "0.3", null, "37.7", null, "0.4", null, "80.2", null, "0.3", null, "77.3", null, "0.3", null, "73.7", null, "0.4", null, "25.2", null, "0.4", null, "22.4", null, "0.5", null, "18.4", null, "0.3", null, "7.6", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "0.9", null, "-888888888.0", "(X)", "409965", null, "3729", null, "24000", null, "1271", null, "25826", null, "1889", null, "27032", null, "2059", null, "27077", null, "2204", null, "26681", null, "1484", null, "24169", null, "1250", null, "25576", null, "1219", null, "27198", null, "2178", null, "28583", null, "2182", null, "26692", null, "1302", null, "26511", null, "1225", null, "24007", null, "1869", null, "28039", null, "2127", null, "22093", null, "1552", null, "20179", null, "1473", null, "13899", null, "1617", null, "7531", null, "1182", null, "4872", null, "1172", null, "52858", null, "1463", null, "17675", null, "1490", null, "94533", null, "2129", null, "36083", null, "1357", null, "159284", null, "2598", null, "327220", null, "3445", null, "315432", null, "2949", null, "300170", null, "3263", null, "96613", null, "2782", null, "84944", null, "2559", null, "68574", null, "1531", null, "26302", null, "1024", null, "39.6", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.9", null, "0.3", null, "6.3", null, "0.5", null, "6.6", null, "0.5", null, "6.6", null, "0.5", null, "6.5", null, "0.4", null, "5.9", null, "0.3", null, "6.2", null, "0.3", null, "6.6", null, "0.5", null, "7.0", null, "0.5", null, "6.5", null, "0.3", null, "6.5", null, "0.3", null, "5.9", null, "0.5", null, "6.8", null, "0.5", null, "5.4", null, "0.4", null, "4.9", null, "0.4", null, "3.4", null, "0.4", null, "1.8", null, "0.3", null, "1.2", null, "0.3", null, "12.9", null, "0.3", null, "4.3", null, "0.4", null, "23.1", null, "0.4", null, "8.8", null, "0.3", null, "38.9", null, "0.5", null, "79.8", null, "0.4", null, "76.9", null, "0.4", null, "73.2", null, "0.6", null, "23.6", null, "0.6", null, "20.7", null, "0.6", null, "16.7", null, "0.3", null, "6.4", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "400140", null, "2962", null, "20897", null, "1335", null, "27814", null, "2679", null, "24808", null, "2625", null, "24632", null, "1473", null, "23996", null, "1643", null, "21381", null, "764", null, "24342", null, "1196", null, "24981", null, "2165", null, "26781", null, "2230", null, "24460", null, "1277", null, "26201", null, "1186", null, "22067", null, "1599", null, "27320", null, "1505", null, "24059", null, "1661", null, "21114", null, "1574", null, "15357", null, "1472", null, "10319", null, "1167", null, "9611", null, "1293", null, "52622", null, "1283", null, "15583", null, "1009", null, "89102", null, "2134", null, "33045", null, "1345", null, "146113", null, "2249", null, "322088", null, "2787", null, "311038", null, "2251", null, "297267", null, "2724", null, "107780", null, "1974", null, "96744", null, "2385", null, "80460", null, "1346", null, "35287", null, "916", null, "41.5", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.3", null, "7.0", null, "0.7", null, "6.2", null, "0.7", null, "6.2", null, "0.4", null, "6.0", null, "0.4", null, "5.3", null, "0.2", null, "6.1", null, "0.3", null, "6.2", null, "0.5", null, "6.7", null, "0.6", null, "6.1", null, "0.3", null, "6.5", null, "0.3", null, "5.5", null, "0.4", null, "6.8", null, "0.4", null, "6.0", null, "0.4", null, "5.3", null, "0.4", null, "3.8", null, "0.4", null, "2.6", null, "0.3", null, "2.4", null, "0.3", null, "13.2", null, "0.3", null, "3.9", null, "0.2", null, "22.3", null, "0.4", null, "8.3", null, "0.3", null, "36.5", null, "0.5", null, "80.5", null, "0.5", null, "77.7", null, "0.4", null, "74.3", null, "0.6", null, "26.9", null, "0.5", null, "24.2", null, "0.6", null, "20.1", null, "0.4", null, "8.8", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "39", "04"], ["5001900US3905", "Congressional District 5 (119th Congress), Ohio", "796997", null, "3094", null, "43762", null, "1229", null, "48291", null, "2588", null, "48366", null, "2562", null, "56560", null, "1920", null, "51592", null, "2201", null, "44966", null, "1655", null, "48199", null, "1676", null, "49544", null, "2549", null, "49150", null, "2838", null, "45186", null, "1340", null, "47767", null, "1116", null, "48103", null, "2180", null, "55026", null, "2471", null, "48309", null, "2710", null, "46288", null, "2557", null, "28878", null, "2105", null, "20098", null, "1664", null, "16912", null, "1756", null, "96657", null, "1536", null, "31869", null, "1186", null, "172288", null, "1795", null, "76283", null, "2031", null, "300011", null, "2877", null, "644944", null, "3196", null, "624709", null, "2487", null, "587669", null, "3049", null, "215511", null, "2666", null, "190586", null, "2647", null, "160485", null, "1655", null, "65888", null, "1178", null, "40.7", null, "0.3", null, "99.5", null, "1.1", null, "71.7", null, "0.6", null, "34.6", null, "0.4", null, "37.1", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.2", null, "6.1", null, "0.3", null, "6.1", null, "0.3", null, "7.1", null, "0.2", null, "6.5", null, "0.3", null, "5.6", null, "0.2", null, "6.0", null, "0.2", null, "6.2", null, "0.3", null, "6.2", null, "0.4", null, "5.7", null, "0.2", null, "6.0", null, "0.1", null, "6.0", null, "0.3", null, "6.9", null, "0.3", null, "6.1", null, "0.3", null, "5.8", null, "0.3", null, "3.6", null, "0.3", null, "2.5", null, "0.2", null, "2.1", null, "0.2", null, "12.1", null, "0.2", null, "4.0", null, "0.1", null, "21.6", null, "0.2", null, "9.6", null, "0.2", null, "37.6", null, "0.3", null, "80.9", null, "0.3", null, "78.4", null, "0.2", null, "73.7", null, "0.3", null, "27.0", null, "0.3", null, "23.9", null, "0.3", null, "20.1", null, "0.2", null, "8.3", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.0", null, "-888888888.0", "(X)", "397415", null, "2513", null, "22872", null, "993", null, "24621", null, "2006", null, "24476", null, "1979", null, "28257", null, "1612", null, "26607", null, "1443", null, "23180", null, "1322", null, "24248", null, "1265", null, "25572", null, "1871", null, "25155", null, "2055", null, "23243", null, "1090", null, "24445", null, "859", null, "24181", null, "1595", null, "26809", null, "1831", null, "23170", null, "1606", null, "22316", null, "1522", null, "13739", null, "1224", null, "8338", null, "1008", null, "6186", null, "976", null, "49097", null, "1042", null, "16208", null, "1122", null, "88177", null, "1702", null, "38656", null, "1269", null, "153019", null, "2118", null, "319698", null, "2184", null, "309238", null, "1813", null, "290947", null, "2569", null, "100558", null, "1800", null, "88027", null, "1679", null, "73749", null, "977", null, "28263", null, "840", null, "39.8", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.8", null, "0.2", null, "6.2", null, "0.5", null, "6.2", null, "0.5", null, "7.1", null, "0.4", null, "6.7", null, "0.4", null, "5.8", null, "0.3", null, "6.1", null, "0.3", null, "6.4", null, "0.5", null, "6.3", null, "0.5", null, "5.8", null, "0.3", null, "6.2", null, "0.2", null, "6.1", null, "0.4", null, "6.7", null, "0.5", null, "5.8", null, "0.4", null, "5.6", null, "0.4", null, "3.5", null, "0.3", null, "2.1", null, "0.3", null, "1.6", null, "0.2", null, "12.4", null, "0.2", null, "4.1", null, "0.3", null, "22.2", null, "0.3", null, "9.7", null, "0.3", null, "38.5", null, "0.4", null, "80.4", null, "0.4", null, "77.8", null, "0.3", null, "73.2", null, "0.5", null, "25.3", null, "0.4", null, "22.1", null, "0.4", null, "18.6", null, "0.2", null, "7.1", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "399582", null, "2713", null, "20890", null, "1077", null, "23670", null, "1986", null, "23890", null, "1815", null, "28303", null, "1699", null, "24985", null, "1565", null, "21786", null, "1121", null, "23951", null, "958", null, "23972", null, "1818", null, "23995", null, "2059", null, "21943", null, "821", null, "23322", null, "641", null, "23922", null, "1580", null, "28217", null, "1794", null, "25139", null, "1761", null, "23972", null, "1717", null, "15139", null, "1415", null, "11760", null, "1216", null, "10726", null, "1299", null, "47560", null, "1055", null, "15661", null, "1186", null, "84111", null, "1917", null, "37627", null, "1348", null, "146992", null, "2014", null, "325246", null, "2319", null, "315471", null, "1878", null, "296722", null, "2262", null, "114953", null, "2037", null, "102559", null, "1895", null, "86736", null, "1067", null, "37625", null, "595", null, "41.7", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.3", null, "5.9", null, "0.5", null, "6.0", null, "0.5", null, "7.1", null, "0.4", null, "6.3", null, "0.4", null, "5.5", null, "0.3", null, "6.0", null, "0.2", null, "6.0", null, "0.5", null, "6.0", null, "0.5", null, "5.5", null, "0.2", null, "5.8", null, "0.2", null, "6.0", null, "0.4", null, "7.1", null, "0.4", null, "6.3", null, "0.4", null, "6.0", null, "0.4", null, "3.8", null, "0.4", null, "2.9", null, "0.3", null, "2.7", null, "0.3", null, "11.9", null, "0.2", null, "3.9", null, "0.3", null, "21.0", null, "0.4", null, "9.4", null, "0.3", null, "36.8", null, "0.4", null, "81.4", null, "0.4", null, "79.0", null, "0.4", null, "74.3", null, "0.5", null, "28.8", null, "0.5", null, "25.7", null, "0.5", null, "21.7", null, "0.3", null, "9.4", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "39", "05"], ["5001900US3906", "Congressional District 6 (119th Congress), Ohio", "775304", null, "5788", null, "37098", null, "1835", null, "47252", null, "3165", null, "40596", null, "2962", null, "44061", null, "2122", null, "44630", null, "2142", null, "44090", null, "1984", null, "45251", null, "1935", null, "46476", null, "2933", null, "44833", null, "3604", null, "44135", null, "1917", null, "48229", null, "1943", null, "52059", null, "3031", null, "55386", null, "3185", null, "56018", null, "3142", null, "50030", null, "3121", null, "34893", null, "2391", null, "22225", null, "2005", null, "18042", null, "1997", null, "87848", null, "2591", null, "28310", null, "1253", null, "153256", null, "3708", null, "60381", null, "1787", null, "269341", null, "4237", null, "640460", null, "4876", null, "622048", null, "4676", null, "596925", null, "4716", null, "236594", null, "4345", null, "214789", null, "3876", null, "181208", null, "2922", null, "75160", null, "1876", null, "44.2", null, "0.5", null, "100.9", null, "1.4", null, "75.9", null, "1.3", null, "41.1", null, "1.0", null, "34.8", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.8", null, "0.2", null, "6.1", null, "0.4", null, "5.2", null, "0.4", null, "5.7", null, "0.3", null, "5.8", null, "0.3", null, "5.7", null, "0.2", null, "5.8", null, "0.3", null, "6.0", null, "0.4", null, "5.8", null, "0.5", null, "5.7", null, "0.3", null, "6.2", null, "0.2", null, "6.7", null, "0.4", null, "7.1", null, "0.4", null, "7.2", null, "0.4", null, "6.5", null, "0.4", null, "4.5", null, "0.3", null, "2.9", null, "0.3", null, "2.3", null, "0.3", null, "11.3", null, "0.3", null, "3.7", null, "0.2", null, "19.8", null, "0.4", null, "7.8", null, "0.2", null, "34.7", null, "0.4", null, "82.6", null, "0.4", null, "80.2", null, "0.4", null, "77.0", null, "0.5", null, "30.5", null, "0.6", null, "27.7", null, "0.6", null, "23.4", null, "0.4", null, "9.7", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "0.8", null, "-888888888.0", "(X)", "389294", null, "3630", null, "19025", null, "1229", null, "24223", null, "2045", null, "21603", null, "2154", null, "22103", null, "1669", null, "23956", null, "1578", null, "22516", null, "1121", null, "23587", null, "1361", null, "24920", null, "2096", null, "23497", null, "2354", null, "22555", null, "1262", null, "24990", null, "1390", null, "24989", null, "2055", null, "28899", null, "2062", null, "27257", null, "1973", null, "24124", null, "1846", null, "15786", null, "1434", null, "9061", null, "1177", null, "6203", null, "1236", null, "45826", null, "1697", null, "13797", null, "1218", null, "78648", null, "2407", null, "32262", null, "1241", null, "140579", null, "3012", null, "319129", null, "3008", null, "310646", null, "2836", null, "296838", null, "2831", null, "111330", null, "2686", null, "100258", null, "2552", null, "82431", null, "1659", null, "31050", null, "1070", null, "42.8", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.9", null, "0.3", null, "6.2", null, "0.5", null, "5.5", null, "0.6", null, "5.7", null, "0.4", null, "6.2", null, "0.4", null, "5.8", null, "0.3", null, "6.1", null, "0.3", null, "6.4", null, "0.5", null, "6.0", null, "0.6", null, "5.8", null, "0.3", null, "6.4", null, "0.3", null, "6.4", null, "0.5", null, "7.4", null, "0.5", null, "7.0", null, "0.5", null, "6.2", null, "0.5", null, "4.1", null, "0.4", null, "2.3", null, "0.3", null, "1.6", null, "0.3", null, "11.8", null, "0.4", null, "3.5", null, "0.3", null, "20.2", null, "0.5", null, "8.3", null, "0.3", null, "36.1", null, "0.6", null, "82.0", null, "0.5", null, "79.8", null, "0.5", null, "76.3", null, "0.6", null, "28.6", null, "0.7", null, "25.8", null, "0.7", null, "21.2", null, "0.5", null, "8.0", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "386010", null, "4143", null, "18073", null, "1261", null, "23029", null, "2234", null, "18993", null, "1869", null, "21958", null, "1661", null, "20674", null, "1345", null, "21574", null, "1298", null, "21664", null, "1240", null, "21556", null, "2086", null, "21336", null, "2325", null, "21580", null, "1343", null, "23239", null, "1070", null, "27070", null, "2112", null, "26487", null, "2176", null, "28761", null, "1998", null, "25906", null, "2154", null, "19107", null, "1632", null, "13164", null, "1484", null, "11839", null, "1320", null, "42022", null, "1621", null, "14513", null, "1121", null, "74608", null, "2351", null, "28119", null, "1267", null, "128762", null, "2669", null, "321331", null, "3638", null, "311402", null, "3287", null, "300087", null, "3498", null, "125264", null, "2808", null, "114531", null, "2498", null, "98777", null, "1831", null, "44110", null, "1177", null, "46.0", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.7", null, "0.3", null, "6.0", null, "0.6", null, "4.9", null, "0.5", null, "5.7", null, "0.4", null, "5.4", null, "0.4", null, "5.6", null, "0.3", null, "5.6", null, "0.3", null, "5.6", null, "0.5", null, "5.5", null, "0.6", null, "5.6", null, "0.3", null, "6.0", null, "0.3", null, "7.0", null, "0.5", null, "6.9", null, "0.6", null, "7.5", null, "0.5", null, "6.7", null, "0.6", null, "4.9", null, "0.4", null, "3.4", null, "0.4", null, "3.1", null, "0.3", null, "10.9", null, "0.4", null, "3.8", null, "0.3", null, "19.3", null, "0.5", null, "7.3", null, "0.3", null, "33.4", null, "0.5", null, "83.2", null, "0.5", null, "80.7", null, "0.5", null, "77.7", null, "0.7", null, "32.5", null, "0.8", null, "29.7", null, "0.7", null, "25.6", null, "0.5", null, "11.4", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "39", "06"], ["5001900US3907", "Congressional District 7 (119th Congress), Ohio", "789433", null, "8931", null, "41419", null, "2382", null, "48515", null, "3576", null, "46101", null, "3017", null, "46173", null, "2106", null, "42623", null, "2843", null, "43622", null, "2926", null, "49100", null, "2308", null, "50541", null, "3167", null, "49887", null, "3561", null, "45334", null, "2087", null, "46074", null, "2293", null, "50523", null, "4002", null, "56966", null, "3114", null, "55299", null, "2610", null, "43826", null, "2734", null, "33583", null, "2297", null, "20574", null, "2315", null, "19273", null, "2220", null, "94616", null, "3800", null, "28701", null, "1642", null, "164736", null, "5293", null, "60095", null, "3252", null, "281946", null, "5722", null, "642508", null, "7634", null, "624697", null, "7456", null, "600178", null, "7436", null, "229521", null, "5082", null, "206927", null, "4560", null, "172555", null, "3763", null, "73430", null, "2597", null, "42.7", null, "0.7", null, "96.1", null, "1.8", null, "74.6", null, "1.6", null, "38.2", null, "1.0", null, "36.4", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.3", null, "6.1", null, "0.4", null, "5.8", null, "0.4", null, "5.8", null, "0.3", null, "5.4", null, "0.4", null, "5.5", null, "0.4", null, "6.2", null, "0.3", null, "6.4", null, "0.4", null, "6.3", null, "0.4", null, "5.7", null, "0.3", null, "5.8", null, "0.3", null, "6.4", null, "0.5", null, "7.2", null, "0.4", null, "7.0", null, "0.3", null, "5.6", null, "0.4", null, "4.3", null, "0.3", null, "2.6", null, "0.3", null, "2.4", null, "0.3", null, "12.0", null, "0.4", null, "3.6", null, "0.2", null, "20.9", null, "0.6", null, "7.6", null, "0.4", null, "35.7", null, "0.5", null, "81.4", null, "0.6", null, "79.1", null, "0.6", null, "76.0", null, "0.6", null, "29.1", null, "0.6", null, "26.2", null, "0.6", null, "21.9", null, "0.5", null, "9.3", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "0.9", null, "-888888888.0", "(X)", "386812", null, "5238", null, "20182", null, "1651", null, "25312", null, "2251", null, "22263", null, "2165", null, "24614", null, "1296", null, "21925", null, "1669", null, "21103", null, "1768", null, "25812", null, "1560", null, "26753", null, "2274", null, "24643", null, "2420", null, "22579", null, "1374", null, "22884", null, "1243", null, "25593", null, "2500", null, "27083", null, "1970", null, "26792", null, "1552", null, "19493", null, "1603", null, "15230", null, "1347", null, "8451", null, "1075", null, "6100", null, "1098", null, "47575", null, "2476", null, "14978", null, "1117", null, "82735", null, "3097", null, "31561", null, "1817", null, "144850", null, "3938", null, "313144", null, "4490", null, "304077", null, "4428", null, "291063", null, "4414", null, "103149", null, "2853", null, "92085", null, "2792", null, "76066", null, "2277", null, "29781", null, "1526", null, "41.1", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.4", null, "6.5", null, "0.6", null, "5.8", null, "0.6", null, "6.4", null, "0.3", null, "5.7", null, "0.4", null, "5.5", null, "0.4", null, "6.7", null, "0.4", null, "6.9", null, "0.6", null, "6.4", null, "0.6", null, "5.8", null, "0.4", null, "5.9", null, "0.3", null, "6.6", null, "0.6", null, "7.0", null, "0.5", null, "6.9", null, "0.4", null, "5.0", null, "0.4", null, "3.9", null, "0.3", null, "2.2", null, "0.3", null, "1.6", null, "0.3", null, "12.3", null, "0.6", null, "3.9", null, "0.3", null, "21.4", null, "0.7", null, "8.2", null, "0.5", null, "37.4", null, "0.8", null, "81.0", null, "0.7", null, "78.6", null, "0.7", null, "75.2", null, "0.7", null, "26.7", null, "0.7", null, "23.8", null, "0.7", null, "19.7", null, "0.6", null, "7.7", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "402621", null, "6332", null, "21237", null, "1633", null, "23203", null, "2499", null, "23838", null, "2506", null, "21559", null, "1626", null, "20698", null, "2081", null, "22519", null, "2079", null, "23288", null, "1424", null, "23788", null, "2017", null, "25244", null, "2072", null, "22755", null, "1505", null, "23190", null, "1640", null, "24930", null, "2450", null, "29883", null, "2250", null, "28507", null, "1911", null, "24333", null, "1922", null, "18353", null, "1733", null, "12123", null, "1895", null, "13173", null, "1805", null, "47041", null, "2771", null, "13723", null, "1103", null, "82001", null, "3709", null, "28534", null, "2287", null, "137096", null, "3439", null, "329364", null, "5081", null, "320620", null, "5004", null, "309115", null, "4901", null, "126372", null, "3510", null, "114842", null, "3033", null, "96489", null, "2495", null, "43649", null, "1901", null, "44.3", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.3", null, "0.4", null, "5.8", null, "0.6", null, "5.9", null, "0.6", null, "5.4", null, "0.4", null, "5.1", null, "0.5", null, "5.6", null, "0.5", null, "5.8", null, "0.4", null, "5.9", null, "0.5", null, "6.3", null, "0.5", null, "5.7", null, "0.4", null, "5.8", null, "0.4", null, "6.2", null, "0.6", null, "7.4", null, "0.5", null, "7.1", null, "0.5", null, "6.0", null, "0.5", null, "4.6", null, "0.4", null, "3.0", null, "0.5", null, "3.3", null, "0.5", null, "11.7", null, "0.6", null, "3.4", null, "0.3", null, "20.4", null, "0.8", null, "7.1", null, "0.6", null, "34.1", null, "0.7", null, "81.8", null, "0.8", null, "79.6", null, "0.8", null, "76.8", null, "0.8", null, "31.4", null, "0.8", null, "28.5", null, "0.7", null, "24.0", null, "0.6", null, "10.8", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "39", "07"], ["5001900US3908", "Congressional District 8 (119th Congress), Ohio", "791238", null, "7309", null, "43349", null, "2255", null, "46160", null, "4209", null, "55662", null, "4743", null, "59010", null, "3579", null, "52156", null, "2736", null, "44219", null, "2389", null, "47573", null, "3005", null, "50708", null, "4173", null, "50511", null, "4180", null, "45391", null, "2036", null, "48615", null, "2818", null, "44874", null, "3569", null, "55776", null, "3641", null, "47579", null, "3320", null, "37993", null, "3123", null, "28561", null, "2472", null, "16254", null, "2049", null, "16847", null, "2450", null, "101822", null, "4504", null, "34055", null, "2431", null, "179226", null, "5171", null, "77111", null, "2725", null, "304177", null, "5319", null, "635611", null, "7131", null, "612012", null, "6472", null, "574900", null, "6976", null, "203010", null, "5569", null, "178656", null, "5954", null, "147234", null, "4538", null, "61662", null, "2453", null, "39.7", null, "0.6", null, "94.9", null, "2.1", null, "70.2", null, "1.5", null, "31.7", null, "1.1", null, "38.6", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.3", null, "5.8", null, "0.5", null, "7.0", null, "0.6", null, "7.5", null, "0.4", null, "6.6", null, "0.4", null, "5.6", null, "0.3", null, "6.0", null, "0.4", null, "6.4", null, "0.5", null, "6.4", null, "0.5", null, "5.7", null, "0.3", null, "6.1", null, "0.3", null, "5.7", null, "0.4", null, "7.0", null, "0.5", null, "6.0", null, "0.4", null, "4.8", null, "0.4", null, "3.6", null, "0.3", null, "2.1", null, "0.3", null, "2.1", null, "0.3", null, "12.9", null, "0.5", null, "4.3", null, "0.3", null, "22.7", null, "0.6", null, "9.7", null, "0.3", null, "38.4", null, "0.6", null, "80.3", null, "0.6", null, "77.3", null, "0.6", null, "72.7", null, "0.7", null, "25.7", null, "0.7", null, "22.6", null, "0.8", null, "18.6", null, "0.6", null, "7.8", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.2", null, "-888888888.0", "(X)", "0.7", null, "-888888888.0", "(X)", "385317", null, "5842", null, "21907", null, "1876", null, "23214", null, "2772", null, "27233", null, "3284", null, "28765", null, "2520", null, "25008", null, "1874", null, "24421", null, "1758", null, "23744", null, "1925", null, "24812", null, "2225", null, "24154", null, "2562", null, "22867", null, "1544", null, "23001", null, "1988", null, "23063", null, "2244", null, "26696", null, "2289", null, "23008", null, "2148", null, "17606", null, "2000", null, "13052", null, "1563", null, "6729", null, "1072", null, "6037", null, "1184", null, "50447", null, "3043", null, "16414", null, "1737", null, "88768", null, "3865", null, "37359", null, "2138", null, "150904", null, "3853", null, "307933", null, "5249", null, "296549", null, "4791", null, "278170", null, "4576", null, "93128", null, "2870", null, "81397", null, "2950", null, "66432", null, "2470", null, "25818", null, "1415", null, "38.6", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.7", null, "0.5", null, "6.0", null, "0.7", null, "7.1", null, "0.8", null, "7.5", null, "0.6", null, "6.5", null, "0.5", null, "6.3", null, "0.5", null, "6.2", null, "0.5", null, "6.4", null, "0.6", null, "6.3", null, "0.7", null, "5.9", null, "0.4", null, "6.0", null, "0.5", null, "6.0", null, "0.6", null, "6.9", null, "0.6", null, "6.0", null, "0.6", null, "4.6", null, "0.5", null, "3.4", null, "0.4", null, "1.7", null, "0.3", null, "1.6", null, "0.3", null, "13.1", null, "0.7", null, "4.3", null, "0.4", null, "23.0", null, "0.9", null, "9.7", null, "0.5", null, "39.2", null, "0.8", null, "79.9", null, "0.9", null, "77.0", null, "0.9", null, "72.2", null, "1.0", null, "24.2", null, "0.8", null, "21.1", null, "0.8", null, "17.2", null, "0.6", null, "6.7", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "405921", null, "5407", null, "21442", null, "1714", null, "22946", null, "3018", null, "28429", null, "2991", null, "30245", null, "2674", null, "27148", null, "1932", null, "19798", null, "1649", null, "23829", null, "2139", null, "25896", null, "3175", null, "26357", null, "2976", null, "22524", null, "1651", null, "25614", null, "1701", null, "21811", null, "2147", null, "29080", null, "2451", null, "24571", null, "1971", null, "20387", null, "1929", null, "15509", null, "1626", null, "9525", null, "1499", null, "10810", null, "1813", null, "51375", null, "2848", null, "17641", null, "1892", null, "90458", null, "3807", null, "39752", null, "2060", null, "153273", null, "4191", null, "327678", null, "4520", null, "315463", null, "4097", null, "296730", null, "4503", null, "109882", null, "3723", null, "97259", null, "3859", null, "80802", null, "2727", null, "35844", null, "1799", null, "40.6", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.3", null, "0.4", null, "5.7", null, "0.7", null, "7.0", null, "0.7", null, "7.5", null, "0.6", null, "6.7", null, "0.5", null, "4.9", null, "0.4", null, "5.9", null, "0.5", null, "6.4", null, "0.8", null, "6.5", null, "0.7", null, "5.5", null, "0.4", null, "6.3", null, "0.4", null, "5.4", null, "0.5", null, "7.2", null, "0.6", null, "6.1", null, "0.5", null, "5.0", null, "0.5", null, "3.8", null, "0.4", null, "2.3", null, "0.4", null, "2.7", null, "0.4", null, "12.7", null, "0.6", null, "4.3", null, "0.5", null, "22.3", null, "0.8", null, "9.8", null, "0.5", null, "37.8", null, "0.9", null, "80.7", null, "0.8", null, "77.7", null, "0.8", null, "73.1", null, "1.0", null, "27.1", null, "0.9", null, "24.0", null, "1.0", null, "19.9", null, "0.7", null, "8.8", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "39", "08"], ["5001900US3909", "Congressional District 9 (119th Congress), Ohio", "776236", null, "3104", null, "42017", null, "1111", null, "47700", null, "2807", null, "46169", null, "2536", null, "47902", null, "1531", null, "48804", null, "1931", null, "47073", null, "1366", null, "51513", null, "1684", null, "49215", null, "3077", null, "47497", null, "2963", null, "43542", null, "1621", null, "47404", null, "1254", null, "45614", null, "2934", null, "54726", null, "2616", null, "49383", null, "2811", null, "42944", null, "2570", null, "31598", null, "1927", null, "18004", null, "1929", null, "15131", null, "1573", null, "93869", null, "1707", null, "30594", null, "1185", null, "166480", null, "1774", null, "66112", null, "1849", null, "292004", null, "2660", null, "629682", null, "3148", null, "609756", null, "2264", null, "581799", null, "3050", null, "211786", null, "3112", null, "192103", null, "3230", null, "157060", null, "1653", null, "64733", null, "1139", null, "40.7", null, "0.4", null, "96.9", null, "1.0", null, "71.5", null, "0.6", null, "34.7", null, "0.5", null, "36.8", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.1", null, "6.1", null, "0.4", null, "5.9", null, "0.3", null, "6.2", null, "0.2", null, "6.3", null, "0.2", null, "6.1", null, "0.2", null, "6.6", null, "0.2", null, "6.3", null, "0.4", null, "6.1", null, "0.4", null, "5.6", null, "0.2", null, "6.1", null, "0.2", null, "5.9", null, "0.4", null, "7.1", null, "0.3", null, "6.4", null, "0.4", null, "5.5", null, "0.3", null, "4.1", null, "0.2", null, "2.3", null, "0.2", null, "1.9", null, "0.2", null, "12.1", null, "0.2", null, "3.9", null, "0.2", null, "21.4", null, "0.2", null, "8.5", null, "0.2", null, "37.6", null, "0.3", null, "81.1", null, "0.3", null, "78.6", null, "0.2", null, "75.0", null, "0.3", null, "27.3", null, "0.4", null, "24.7", null, "0.4", null, "20.2", null, "0.2", null, "8.3", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.3", null, "-888888888.0", "(X)", "381974", null, "2506", null, "22078", null, "1054", null, "24289", null, "2143", null, "23686", null, "2057", null, "24971", null, "1179", null, "24274", null, "1202", null, "24141", null, "973", null, "25924", null, "949", null, "25033", null, "2008", null, "23790", null, "2042", null, "21304", null, "1223", null, "22932", null, "862", null, "23401", null, "1918", null, "24987", null, "1912", null, "23993", null, "1573", null, "19951", null, "1343", null, "13519", null, "1025", null, "7965", null, "935", null, "5736", null, "842", null, "47975", null, "1371", null, "15530", null, "1009", null, "85583", null, "1685", null, "33715", null, "1160", null, "148133", null, "1836", null, "305918", null, "2283", null, "296391", null, "1882", null, "281349", null, "2273", null, "96151", null, "2195", null, "88138", null, "2009", null, "71164", null, "956", null, "27220", null, "647", null, "39.2", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.8", null, "0.3", null, "6.4", null, "0.6", null, "6.2", null, "0.5", null, "6.5", null, "0.3", null, "6.4", null, "0.3", null, "6.3", null, "0.3", null, "6.8", null, "0.3", null, "6.6", null, "0.5", null, "6.2", null, "0.5", null, "5.6", null, "0.3", null, "6.0", null, "0.2", null, "6.1", null, "0.5", null, "6.5", null, "0.5", null, "6.3", null, "0.4", null, "5.2", null, "0.4", null, "3.5", null, "0.3", null, "2.1", null, "0.2", null, "1.5", null, "0.2", null, "12.6", null, "0.3", null, "4.1", null, "0.3", null, "22.4", null, "0.4", null, "8.8", null, "0.3", null, "38.8", null, "0.4", null, "80.1", null, "0.4", null, "77.6", null, "0.4", null, "73.7", null, "0.5", null, "25.2", null, "0.6", null, "23.1", null, "0.5", null, "18.6", null, "0.3", null, "7.1", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "394262", null, "2634", null, "19939", null, "1121", null, "23411", null, "1739", null, "22483", null, "1790", null, "22931", null, "1189", null, "24530", null, "1415", null, "22932", null, "896", null, "25589", null, "1349", null, "24182", null, "2104", null, "23707", null, "1848", null, "22238", null, "912", null, "24472", null, "773", null, "22213", null, "1731", null, "29739", null, "1715", null, "25390", null, "2133", null, "22993", null, "1981", null, "18079", null, "1371", null, "10039", null, "1296", null, "9395", null, "1195", null, "45894", null, "1270", null, "15064", null, "774", null, "80897", null, "1735", null, "32397", null, "1230", null, "143871", null, "1817", null, "323764", null, "2282", null, "313365", null, "1853", null, "300450", null, "2297", null, "115635", null, "2061", null, "103965", null, "2414", null, "85896", null, "1174", null, "37513", null, "803", null, "42.6", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.1", null, "0.3", null, "5.9", null, "0.4", null, "5.7", null, "0.4", null, "5.8", null, "0.3", null, "6.2", null, "0.3", null, "5.8", null, "0.2", null, "6.5", null, "0.3", null, "6.1", null, "0.5", null, "6.0", null, "0.5", null, "5.6", null, "0.2", null, "6.2", null, "0.2", null, "5.6", null, "0.4", null, "7.5", null, "0.4", null, "6.4", null, "0.5", null, "5.8", null, "0.5", null, "4.6", null, "0.3", null, "2.5", null, "0.3", null, "2.4", null, "0.3", null, "11.6", null, "0.3", null, "3.8", null, "0.2", null, "20.5", null, "0.4", null, "8.2", null, "0.3", null, "36.5", null, "0.4", null, "82.1", null, "0.4", null, "79.5", null, "0.4", null, "76.2", null, "0.6", null, "29.3", null, "0.5", null, "26.4", null, "0.6", null, "21.8", null, "0.3", null, "9.5", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "39", "09"], ["5001900US3910", "Congressional District 10 (119th Congress), Ohio", "791001", null, "2855", null, "44324", null, "1584", null, "48625", null, "3271", null, "45945", null, "3424", null, "52627", null, "2242", null, "53550", null, "1865", null, "54197", null, "1694", null, "55588", null, "2377", null, "52741", null, "3559", null, "47391", null, "3176", null, "42952", null, "1149", null, "45005", null, "1385", null, "46263", null, "2901", null, "50151", null, "2750", null, "46642", null, "2084", null, "40596", null, "1996", null, "28697", null, "2164", null, "19410", null, "2105", null, "16297", null, "1815", null, "94570", null, "1690", null, "32239", null, "1321", null, "171133", null, "1798", null, "73938", null, "1645", null, "316094", null, "2693", null, "643365", null, "2817", null, "619868", null, "1969", null, "590059", null, "3192", null, "201793", null, "3690", null, "181642", null, "3195", null, "151642", null, "1841", null, "64404", null, "1204", null, "38.7", null, "0.5", null, "95.1", null, "0.8", null, "68.9", null, "0.7", null, "32.4", null, "0.5", null, "36.5", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.6", null, "0.2", null, "6.1", null, "0.4", null, "5.8", null, "0.4", null, "6.7", null, "0.3", null, "6.8", null, "0.2", null, "6.9", null, "0.2", null, "7.0", null, "0.3", null, "6.7", null, "0.4", null, "6.0", null, "0.4", null, "5.4", null, "0.1", null, "5.7", null, "0.2", null, "5.8", null, "0.4", null, "6.3", null, "0.3", null, "5.9", null, "0.3", null, "5.1", null, "0.3", null, "3.6", null, "0.3", null, "2.5", null, "0.3", null, "2.1", null, "0.2", null, "12.0", null, "0.2", null, "4.1", null, "0.2", null, "21.6", null, "0.2", null, "9.3", null, "0.2", null, "40.0", null, "0.3", null, "81.3", null, "0.3", null, "78.4", null, "0.2", null, "74.6", null, "0.3", null, "25.5", null, "0.5", null, "23.0", null, "0.4", null, "19.2", null, "0.2", null, "8.1", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.2", null, "-888888888.0", "(X)", "385632", null, "2363", null, "23108", null, "1235", null, "25116", null, "2190", null, "22765", null, "2349", null, "26800", null, "1833", null, "26623", null, "1264", null, "26834", null, "925", null, "28522", null, "1573", null, "25816", null, "2071", null, "23983", null, "1948", null, "20648", null, "609", null, "21981", null, "978", null, "23820", null, "2151", null, "22978", null, "1781", null, "22164", null, "1305", null, "17735", null, "1296", null, "13628", null, "1334", null, "7803", null, "1182", null, "5308", null, "1073", null, "47881", null, "1202", null, "16261", null, "1137", null, "87250", null, "1931", null, "37162", null, "1036", null, "158578", null, "1788", null, "310157", null, "2005", null, "298382", null, "1173", null, "283187", null, "2103", null, "89616", null, "2319", null, "80912", null, "1978", null, "66638", null, "1171", null, "26739", null, "879", null, "37.3", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.0", null, "0.3", null, "6.5", null, "0.6", null, "5.9", null, "0.6", null, "6.9", null, "0.5", null, "6.9", null, "0.3", null, "7.0", null, "0.2", null, "7.4", null, "0.4", null, "6.7", null, "0.5", null, "6.2", null, "0.5", null, "5.4", null, "0.2", null, "5.7", null, "0.3", null, "6.2", null, "0.6", null, "6.0", null, "0.5", null, "5.7", null, "0.3", null, "4.6", null, "0.3", null, "3.5", null, "0.3", null, "2.0", null, "0.3", null, "1.4", null, "0.3", null, "12.4", null, "0.3", null, "4.2", null, "0.3", null, "22.6", null, "0.4", null, "9.6", null, "0.3", null, "41.1", null, "0.4", null, "80.4", null, "0.4", null, "77.4", null, "0.4", null, "73.4", null, "0.6", null, "23.2", null, "0.6", null, "21.0", null, "0.5", null, "17.3", null, "0.3", null, "6.9", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "405369", null, "2159", null, "21216", null, "1143", null, "23509", null, "2053", null, "23180", null, "2044", null, "25827", null, "1556", null, "26927", null, "1300", null, "27363", null, "1193", null, "27066", null, "1187", null, "26925", null, "2352", null, "23408", null, "2228", null, "22304", null, "960", null, "23024", null, "1027", null, "22443", null, "1841", null, "27173", null, "2032", null, "24478", null, "1510", null, "22861", null, "1403", null, "15069", null, "1401", null, "11607", null, "1437", null, "10989", null, "1322", null, "46689", null, "1258", null, "15978", null, "1148", null, "83883", null, "1860", null, "36776", null, "1147", null, "157516", null, "2025", null, "333208", null, "1864", null, "321486", null, "1349", null, "306872", null, "2033", null, "112177", null, "2381", null, "100730", null, "2074", null, "85004", null, "924", null, "37665", null, "647", null, "40.2", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.3", null, "5.8", null, "0.5", null, "5.7", null, "0.5", null, "6.4", null, "0.4", null, "6.6", null, "0.3", null, "6.8", null, "0.3", null, "6.7", null, "0.3", null, "6.6", null, "0.6", null, "5.8", null, "0.6", null, "5.5", null, "0.2", null, "5.7", null, "0.3", null, "5.5", null, "0.5", null, "6.7", null, "0.5", null, "6.0", null, "0.4", null, "5.6", null, "0.3", null, "3.7", null, "0.3", null, "2.9", null, "0.4", null, "2.7", null, "0.3", null, "11.5", null, "0.3", null, "3.9", null, "0.3", null, "20.7", null, "0.4", null, "9.1", null, "0.3", null, "38.9", null, "0.5", null, "82.2", null, "0.5", null, "79.3", null, "0.4", null, "75.7", null, "0.6", null, "27.7", null, "0.6", null, "24.8", null, "0.5", null, "21.0", null, "0.2", null, "9.3", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "39", "10"], ["5001900US3911", "Congressional District 11 (119th Congress), Ohio", "759075", null, "8726", null, "40149", null, "2333", null, "40704", null, "3882", null, "42909", null, "3007", null, "46265", null, "1900", null, "50156", null, "2825", null, "58858", null, "2924", null, "62133", null, "2302", null, "51882", null, "3642", null, "44598", null, "3162", null, "41119", null, "2150", null, "43215", null, "2355", null, "41817", null, "2848", null, "50187", null, "3233", null, "47830", null, "2840", null, "37252", null, "2535", null, "26527", null, "2285", null, "14699", null, "1577", null, "18775", null, "2208", null, "83613", null, "3687", null, "28802", null, "1573", null, "152564", null, "5213", null, "67619", null, "3197", null, "313892", null, "5717", null, "626348", null, "7787", null, "606511", null, "7460", null, "578728", null, "7488", null, "195270", null, "4997", null, "175302", null, "4739", null, "145083", null, "3764", null, "60001", null, "2457", null, "38.8", null, "0.6", null, "91.0", null, "1.6", null, "64.5", null, "1.5", null, "31.4", null, "1.0", null, "33.1", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.3", null, "0.3", null, "5.4", null, "0.5", null, "5.7", null, "0.4", null, "6.1", null, "0.2", null, "6.6", null, "0.4", null, "7.8", null, "0.4", null, "8.2", null, "0.3", null, "6.8", null, "0.5", null, "5.9", null, "0.4", null, "5.4", null, "0.3", null, "5.7", null, "0.3", null, "5.5", null, "0.4", null, "6.6", null, "0.4", null, "6.3", null, "0.4", null, "4.9", null, "0.3", null, "3.5", null, "0.3", null, "1.9", null, "0.2", null, "2.5", null, "0.3", null, "11.0", null, "0.5", null, "3.8", null, "0.2", null, "20.1", null, "0.6", null, "8.9", null, "0.4", null, "41.4", null, "0.5", null, "82.5", null, "0.6", null, "79.9", null, "0.6", null, "76.2", null, "0.6", null, "25.7", null, "0.6", null, "23.1", null, "0.6", null, "19.1", null, "0.5", null, "7.9", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.1", null, "-888888888.0", "(X)", "361620", null, "4978", null, "20887", null, "1618", null, "20468", null, "2382", null, "23764", null, "1933", null, "22226", null, "1173", null, "25344", null, "1580", null, "29520", null, "1868", null, "28482", null, "1455", null, "25234", null, "2308", null, "19917", null, "2016", null, "19544", null, "1569", null, "20004", null, "1385", null, "20155", null, "2125", null, "22571", null, "2192", null, "21631", null, "1708", null, "17655", null, "1504", null, "11614", null, "1280", null, "5416", null, "1111", null, "7188", null, "1219", null, "44232", null, "2303", null, "14161", null, "1082", null, "79280", null, "2977", null, "33409", null, "1744", null, "150723", null, "3851", null, "292377", null, "4640", null, "282340", null, "4376", null, "270573", null, "4388", null, "86075", null, "2735", null, "76954", null, "2672", null, "63504", null, "2240", null, "24218", null, "1510", null, "37.1", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.8", null, "0.4", null, "5.7", null, "0.7", null, "6.6", null, "0.5", null, "6.1", null, "0.3", null, "7.0", null, "0.4", null, "8.2", null, "0.5", null, "7.9", null, "0.4", null, "7.0", null, "0.6", null, "5.5", null, "0.6", null, "5.4", null, "0.4", null, "5.5", null, "0.4", null, "5.6", null, "0.6", null, "6.2", null, "0.6", null, "6.0", null, "0.5", null, "4.9", null, "0.4", null, "3.2", null, "0.3", null, "1.5", null, "0.3", null, "2.0", null, "0.3", null, "12.2", null, "0.6", null, "3.9", null, "0.3", null, "21.9", null, "0.7", null, "9.2", null, "0.5", null, "41.7", null, "0.8", null, "80.9", null, "0.8", null, "78.1", null, "0.7", null, "74.8", null, "0.7", null, "23.8", null, "0.8", null, "21.3", null, "0.7", null, "17.6", null, "0.6", null, "6.7", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "397455", null, "6034", null, "19262", null, "1589", null, "20236", null, "2542", null, "19145", null, "2292", null, "24039", null, "1353", null, "24812", null, "1980", null, "29338", null, "2029", null, "33651", null, "1387", null, "26648", null, "2612", null, "24681", null, "2456", null, "21575", null, "1387", null, "23211", null, "1563", null, "21662", null, "1698", null, "27616", null, "2131", null, "26199", null, "1973", null, "19597", null, "1912", null, "14913", null, "1853", null, "9283", null, "1256", null, "11587", null, "1773", null, "39381", null, "2734", null, "14641", null, "974", null, "73284", null, "3492", null, "34210", null, "2199", null, "163169", null, "3423", null, "333971", null, "4910", null, "324171", null, "4874", null, "308155", null, "4965", null, "109195", null, "3258", null, "98348", null, "3089", null, "81579", null, "2397", null, "35783", null, "1800", null, "40.4", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.8", null, "0.4", null, "5.1", null, "0.6", null, "4.8", null, "0.6", null, "6.0", null, "0.3", null, "6.2", null, "0.5", null, "7.4", null, "0.5", null, "8.5", null, "0.3", null, "6.7", null, "0.6", null, "6.2", null, "0.6", null, "5.4", null, "0.3", null, "5.8", null, "0.4", null, "5.5", null, "0.4", null, "6.9", null, "0.5", null, "6.6", null, "0.5", null, "4.9", null, "0.5", null, "3.8", null, "0.5", null, "2.3", null, "0.3", null, "2.9", null, "0.4", null, "9.9", null, "0.6", null, "3.7", null, "0.2", null, "18.4", null, "0.7", null, "8.6", null, "0.5", null, "41.1", null, "0.7", null, "84.0", null, "0.7", null, "81.6", null, "0.7", null, "77.5", null, "0.9", null, "27.5", null, "0.8", null, "24.7", null, "0.8", null, "20.5", null, "0.6", null, "9.0", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "39", "11"], ["5001900US3912", "Congressional District 12 (119th Congress), Ohio", "812727", null, "5221", null, "45348", null, "1571", null, "46445", null, "2791", null, "56537", null, "3223", null, "59209", null, "2225", null, "56161", null, "2189", null, "44844", null, "1653", null, "48971", null, "1886", null, "51492", null, "3357", null, "49501", null, "3388", null, "48197", null, "1664", null, "49939", null, "1737", null, "50944", null, "3437", null, "54378", null, "3417", null, "48325", null, "2557", null, "40719", null, "2101", null, "27470", null, "1828", null, "19056", null, "1577", null, "15191", null, "1512", null, "102982", null, "2339", null, "33732", null, "1434", null, "182062", null, "2582", null, "81638", null, "2628", null, "310178", null, "3647", null, "653820", null, "5128", null, "630665", null, "4520", null, "591358", null, "4857", null, "205139", null, "4615", null, "185879", null, "4452", null, "150761", null, "2775", null, "61717", null, "1737", null, "39.8", null, "0.3", null, "100.2", null, "1.3", null, "69.4", null, "1.0", null, "31.4", null, "0.7", null, "37.9", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.6", null, "0.2", null, "5.7", null, "0.3", null, "7.0", null, "0.4", null, "7.3", null, "0.3", null, "6.9", null, "0.3", null, "5.5", null, "0.2", null, "6.0", null, "0.2", null, "6.3", null, "0.4", null, "6.1", null, "0.4", null, "5.9", null, "0.2", null, "6.1", null, "0.2", null, "6.3", null, "0.4", null, "6.7", null, "0.4", null, "5.9", null, "0.3", null, "5.0", null, "0.3", null, "3.4", null, "0.2", null, "2.3", null, "0.2", null, "1.9", null, "0.2", null, "12.7", null, "0.3", null, "4.2", null, "0.2", null, "22.4", null, "0.3", null, "10.0", null, "0.3", null, "38.2", null, "0.4", null, "80.4", null, "0.4", null, "77.6", null, "0.3", null, "72.8", null, "0.4", null, "25.2", null, "0.6", null, "22.9", null, "0.5", null, "18.6", null, "0.3", null, "7.6", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.2", null, "-888888888.0", "(X)", "406699", null, "3982", null, "23671", null, "1511", null, "24997", null, "2391", null, "29510", null, "2744", null, "28889", null, "1726", null, "30253", null, "1478", null, "23646", null, "1169", null, "24017", null, "952", null, "25759", null, "2108", null, "24815", null, "2130", null, "24323", null, "1236", null, "25972", null, "1330", null, "24889", null, "2012", null, "26769", null, "1957", null, "23470", null, "1768", null, "18717", null, "1482", null, "12859", null, "1225", null, "7997", null, "909", null, "6146", null, "922", null, "54507", null, "1700", null, "17922", null, "1295", null, "96100", null, "2616", null, "41220", null, "1891", null, "157379", null, "2376", null, "323225", null, "3383", null, "310599", null, "3005", null, "292817", null, "3206", null, "95958", null, "2457", null, "86019", null, "2341", null, "69189", null, "1648", null, "27002", null, "1218", null, "38.8", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.8", null, "0.4", null, "6.1", null, "0.6", null, "7.3", null, "0.7", null, "7.1", null, "0.4", null, "7.4", null, "0.4", null, "5.8", null, "0.3", null, "5.9", null, "0.2", null, "6.3", null, "0.5", null, "6.1", null, "0.5", null, "6.0", null, "0.3", null, "6.4", null, "0.3", null, "6.1", null, "0.5", null, "6.6", null, "0.5", null, "5.8", null, "0.4", null, "4.6", null, "0.4", null, "3.2", null, "0.3", null, "2.0", null, "0.2", null, "1.5", null, "0.2", null, "13.4", null, "0.4", null, "4.4", null, "0.3", null, "23.6", null, "0.5", null, "10.1", null, "0.5", null, "38.7", null, "0.5", null, "79.5", null, "0.6", null, "76.4", null, "0.5", null, "72.0", null, "0.7", null, "23.6", null, "0.6", null, "21.2", null, "0.6", null, "17.0", null, "0.4", null, "6.6", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "406028", null, "3375", null, "21677", null, "1293", null, "21448", null, "1803", null, "27027", null, "1937", null, "30320", null, "1692", null, "25908", null, "1702", null, "21198", null, "1063", null, "24954", null, "1481", null, "25733", null, "1984", null, "24686", null, "2049", null, "23874", null, "1036", null, "23967", null, "914", null, "26055", null, "2290", null, "27609", null, "2199", null, "24855", null, "1844", null, "22002", null, "1789", null, "14611", null, "1108", null, "11059", null, "1045", null, "9045", null, "1030", null, "48475", null, "1340", null, "15810", null, "1371", null, "85962", null, "2069", null, "40418", null, "1706", null, "152799", null, "2394", null, "330595", null, "2830", null, "320066", null, "2392", null, "298541", null, "2619", null, "109181", null, "2782", null, "99860", null, "2660", null, "81572", null, "1619", null, "34715", null, "959", null, "41.0", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.3", null, "0.3", null, "5.3", null, "0.4", null, "6.7", null, "0.5", null, "7.5", null, "0.4", null, "6.4", null, "0.4", null, "5.2", null, "0.3", null, "6.1", null, "0.4", null, "6.3", null, "0.5", null, "6.1", null, "0.5", null, "5.9", null, "0.2", null, "5.9", null, "0.2", null, "6.4", null, "0.6", null, "6.8", null, "0.5", null, "6.1", null, "0.4", null, "5.4", null, "0.4", null, "3.6", null, "0.3", null, "2.7", null, "0.3", null, "2.2", null, "0.3", null, "11.9", null, "0.3", null, "3.9", null, "0.3", null, "21.2", null, "0.4", null, "10.0", null, "0.4", null, "37.6", null, "0.5", null, "81.4", null, "0.5", null, "78.8", null, "0.4", null, "73.5", null, "0.6", null, "26.9", null, "0.7", null, "24.6", null, "0.7", null, "20.1", null, "0.4", null, "8.5", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "39", "12"], ["5001900US3913", "Congressional District 13 (119th Congress), Ohio", "785020", null, "3827", null, "41209", null, "1337", null, "46527", null, "3595", null, "47859", null, "4020", null, "48226", null, "1699", null, "45995", null, "1656", null, "50132", null, "1806", null, "54602", null, "1554", null, "49720", null, "3697", null, "49742", null, "3464", null, "44019", null, "1693", null, "45708", null, "2176", null, "46099", null, "2830", null, "56248", null, "3146", null, "48513", null, "3131", null, "44878", null, "3313", null, "31911", null, "2471", null, "18792", null, "2205", null, "14840", null, "1641", null, "94386", null, "2067", null, "30548", null, "1133", null, "166143", null, "2867", null, "63673", null, "1877", null, "298417", null, "3415", null, "639866", null, "3592", null, "618877", null, "3414", null, "591714", null, "3301", null, "215182", null, "4301", null, "192691", null, "4136", null, "158934", null, "2606", null, "65543", null, "1855", null, "41.0", null, "0.5", null, "94.0", null, "1.3", null, "70.7", null, "0.8", null, "34.6", null, "0.7", null, "36.1", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.2", null, "5.9", null, "0.5", null, "6.1", null, "0.5", null, "6.1", null, "0.2", null, "5.9", null, "0.2", null, "6.4", null, "0.2", null, "7.0", null, "0.2", null, "6.3", null, "0.5", null, "6.3", null, "0.4", null, "5.6", null, "0.2", null, "5.8", null, "0.3", null, "5.9", null, "0.4", null, "7.2", null, "0.4", null, "6.2", null, "0.4", null, "5.7", null, "0.4", null, "4.1", null, "0.3", null, "2.4", null, "0.3", null, "1.9", null, "0.2", null, "12.0", null, "0.3", null, "3.9", null, "0.1", null, "21.2", null, "0.3", null, "8.1", null, "0.2", null, "38.0", null, "0.4", null, "81.5", null, "0.4", null, "78.8", null, "0.3", null, "75.4", null, "0.4", null, "27.4", null, "0.5", null, "24.5", null, "0.5", null, "20.2", null, "0.3", null, "8.3", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "0.7", null, "-888888888.0", "(X)", "380463", null, "3335", null, "21267", null, "1058", null, "22910", null, "2573", null, "25026", null, "2707", null, "24003", null, "1325", null, "23824", null, "1243", null, "25302", null, "1458", null, "27111", null, "1251", null, "23879", null, "2258", null, "23894", null, "2187", null, "21452", null, "1025", null, "21456", null, "1405", null, "22905", null, "1757", null, "25787", null, "1941", null, "23070", null, "1779", null, "21210", null, "1914", null, "13893", null, "1418", null, "7646", null, "1230", null, "5828", null, "980", null, "47936", null, "1552", null, "15605", null, "1206", null, "84808", null, "2351", null, "32222", null, "1204", null, "148013", null, "2522", null, "306043", null, "2779", null, "295655", null, "2255", null, "282030", null, "2619", null, "97434", null, "2205", null, "88049", null, "2258", null, "71647", null, "1440", null, "27367", null, "1010", null, "39.5", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.6", null, "0.3", null, "6.0", null, "0.7", null, "6.6", null, "0.7", null, "6.3", null, "0.3", null, "6.3", null, "0.3", null, "6.7", null, "0.4", null, "7.1", null, "0.3", null, "6.3", null, "0.6", null, "6.3", null, "0.6", null, "5.6", null, "0.3", null, "5.6", null, "0.4", null, "6.0", null, "0.5", null, "6.8", null, "0.5", null, "6.1", null, "0.5", null, "5.6", null, "0.5", null, "3.7", null, "0.4", null, "2.0", null, "0.3", null, "1.5", null, "0.3", null, "12.6", null, "0.4", null, "4.1", null, "0.3", null, "22.3", null, "0.5", null, "8.5", null, "0.3", null, "38.9", null, "0.5", null, "80.4", null, "0.5", null, "77.7", null, "0.5", null, "74.1", null, "0.6", null, "25.6", null, "0.6", null, "23.1", null, "0.6", null, "18.8", null, "0.4", null, "7.2", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "404557", null, "3134", null, "19942", null, "1321", null, "23617", null, "2286", null, "22833", null, "2353", null, "24223", null, "1312", null, "22171", null, "1142", null, "24830", null, "1108", null, "27491", null, "859", null, "25841", null, "2294", null, "25848", null, "2261", null, "22567", null, "1160", null, "24252", null, "1067", null, "23194", null, "2056", null, "30461", null, "2304", null, "25443", null, "2121", null, "23668", null, "2234", null, "18018", null, "1769", null, "11146", null, "1469", null, "9012", null, "1219", null, "46450", null, "1251", null, "14943", null, "806", null, "81335", null, "2191", null, "31451", null, "1381", null, "150404", null, "1952", null, "333823", null, "2542", null, "323222", null, "2430", null, "309684", null, "2372", null, "117748", null, "3176", null, "104642", null, "2996", null, "87287", null, "1665", null, "38176", null, "1196", null, "42.2", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.9", null, "0.3", null, "5.8", null, "0.6", null, "5.6", null, "0.6", null, "6.0", null, "0.3", null, "5.5", null, "0.3", null, "6.1", null, "0.3", null, "6.8", null, "0.2", null, "6.4", null, "0.6", null, "6.4", null, "0.6", null, "5.6", null, "0.3", null, "6.0", null, "0.3", null, "5.7", null, "0.5", null, "7.5", null, "0.6", null, "6.3", null, "0.5", null, "5.9", null, "0.6", null, "4.5", null, "0.4", null, "2.8", null, "0.4", null, "2.2", null, "0.3", null, "11.5", null, "0.3", null, "3.7", null, "0.2", null, "20.1", null, "0.5", null, "7.8", null, "0.3", null, "37.2", null, "0.5", null, "82.5", null, "0.5", null, "79.9", null, "0.5", null, "76.5", null, "0.6", null, "29.1", null, "0.7", null, "25.9", null, "0.7", null, "21.6", null, "0.4", null, "9.4", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "39", "13"], ["5001900US3914", "Congressional District 14 (119th Congress), Ohio", "785649", null, "1116", null, "37643", null, "1224", null, "40572", null, "3142", null, "46789", null, "3128", null, "48895", null, "1531", null, "51470", null, "1337", null, "44984", null, "1640", null, "48664", null, "1617", null, "43840", null, "2918", null, "48220", null, "3081", null, "42980", null, "1332", null, "49375", null, "1644", null, "50682", null, "2980", null, "57265", null, "2836", null, "56910", null, "2456", null, "45252", null, "2661", null, "34014", null, "1952", null, "21098", null, "1977", null, "16996", null, "1627", null, "87361", null, "1464", null, "28897", null, "1020", null, "153901", null, "586", null, "71468", null, "1575", null, "286073", null, "2280", null, "651704", null, "2020", null, "631748", null, "1095", null, "599731", null, "2564", null, "231535", null, "2911", null, "209598", null, "2707", null, "174270", null, "1191", null, "72108", null, "1061", null, "43.2", null, "0.3", null, "98.2", null, "1.1", null, "71.7", null, "0.5", null, "38.1", null, "0.4", null, "33.6", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.8", null, "0.2", null, "5.2", null, "0.4", null, "6.0", null, "0.4", null, "6.2", null, "0.2", null, "6.6", null, "0.2", null, "5.7", null, "0.2", null, "6.2", null, "0.2", null, "5.6", null, "0.4", null, "6.1", null, "0.4", null, "5.5", null, "0.2", null, "6.3", null, "0.2", null, "6.5", null, "0.4", null, "7.3", null, "0.4", null, "7.2", null, "0.3", null, "5.8", null, "0.3", null, "4.3", null, "0.2", null, "2.7", null, "0.3", null, "2.2", null, "0.2", null, "11.1", null, "0.2", null, "3.7", null, "0.1", null, "19.6", null, "0.1", null, "9.1", null, "0.2", null, "36.4", null, "0.3", null, "83.0", null, "0.2", null, "80.4", null, "0.1", null, "76.3", null, "0.3", null, "29.5", null, "0.4", null, "26.7", null, "0.3", null, "22.2", null, "0.2", null, "9.2", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "0.9", null, "-888888888.0", "(X)", "389197", null, "2225", null, "19877", null, "1241", null, "21920", null, "2057", null, "23826", null, "2150", null, "24308", null, "955", null, "25570", null, "906", null, "23002", null, "1027", null, "25185", null, "1097", null, "22849", null, "2136", null, "23387", null, "1977", null, "22380", null, "878", null, "24891", null, "896", null, "25174", null, "1946", null, "27141", null, "1902", null, "27089", null, "1550", null, "21571", null, "1666", null, "16022", null, "1246", null, "10104", null, "1492", null, "4901", null, "815", null, "45746", null, "1107", null, "14680", null, "852", null, "80303", null, "1250", null, "35198", null, "972", null, "144301", null, "1865", null, "318877", null, "2127", null, "308894", null, "1665", null, "294235", null, "2022", null, "106828", null, "2041", null, "95599", null, "1951", null, "79687", null, "1125", null, "31027", null, "921", null, "41.9", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.1", null, "0.3", null, "5.6", null, "0.5", null, "6.1", null, "0.6", null, "6.2", null, "0.2", null, "6.6", null, "0.2", null, "5.9", null, "0.3", null, "6.5", null, "0.3", null, "5.9", null, "0.5", null, "6.0", null, "0.5", null, "5.8", null, "0.2", null, "6.4", null, "0.2", null, "6.5", null, "0.5", null, "7.0", null, "0.5", null, "7.0", null, "0.4", null, "5.5", null, "0.4", null, "4.1", null, "0.3", null, "2.6", null, "0.4", null, "1.3", null, "0.2", null, "11.8", null, "0.3", null, "3.8", null, "0.2", null, "20.6", null, "0.3", null, "9.0", null, "0.3", null, "37.1", null, "0.4", null, "81.9", null, "0.4", null, "79.4", null, "0.3", null, "75.6", null, "0.4", null, "27.4", null, "0.5", null, "24.6", null, "0.5", null, "20.5", null, "0.3", null, "8.0", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "396452", null, "2127", null, "17766", null, "923", null, "18652", null, "1954", null, "22963", null, "1976", null, "24587", null, "1228", null, "25900", null, "1196", null, "21982", null, "1162", null, "23479", null, "1129", null, "20991", null, "1584", null, "24833", null, "1901", null, "20600", null, "836", null, "24484", null, "1076", null, "25508", null, "1827", null, "30124", null, "1858", null, "29821", null, "1976", null, "23681", null, "1748", null, "17992", null, "1437", null, "10994", null, "1316", null, "12095", null, "1256", null, "41615", null, "969", null, "14217", null, "759", null, "73598", null, "1186", null, "36270", null, "1320", null, "141772", null, "1713", null, "332827", null, "1872", null, "322854", null, "1598", null, "305496", null, "2636", null, "124707", null, "1899", null, "113999", null, "2016", null, "94583", null, "1051", null, "41081", null, "507", null, "44.3", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.5", null, "0.2", null, "4.7", null, "0.5", null, "5.8", null, "0.5", null, "6.2", null, "0.3", null, "6.5", null, "0.3", null, "5.5", null, "0.3", null, "5.9", null, "0.3", null, "5.3", null, "0.4", null, "6.3", null, "0.5", null, "5.2", null, "0.2", null, "6.2", null, "0.3", null, "6.4", null, "0.5", null, "7.6", null, "0.5", null, "7.5", null, "0.5", null, "6.0", null, "0.4", null, "4.5", null, "0.4", null, "2.8", null, "0.3", null, "3.1", null, "0.3", null, "10.5", null, "0.2", null, "3.6", null, "0.2", null, "18.6", null, "0.2", null, "9.1", null, "0.3", null, "35.8", null, "0.4", null, "84.0", null, "0.4", null, "81.4", null, "0.2", null, "77.1", null, "0.6", null, "31.5", null, "0.5", null, "28.8", null, "0.5", null, "23.9", null, "0.3", null, "10.4", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "39", "14"], ["5001900US3915", "Congressional District 15 (119th Congress), Ohio", "823011", null, "17538", null, "51515", null, "4104", null, "51915", null, "4989", null, "54477", null, "4964", null, "53363", null, "3530", null, "41263", null, "3011", null, "65690", null, "4221", null, "64588", null, "3838", null, "55096", null, "4435", null, "56583", null, "4112", null, "51513", null, "2915", null, "50313", null, "3393", null, "43980", null, "3571", null, "52611", null, "3798", null, "42947", null, "3278", null, "36406", null, "2862", null, "23395", null, "2425", null, "13918", null, "1735", null, "13438", null, "1923", null, "106392", null, "5843", null, "36452", null, "2712", null, "194359", null, "8802", null, "58174", null, "3564", null, "336583", null, "9874", null, "654307", null, "12581", null, "628652", null, "12260", null, "603095", null, "11906", null, "182715", null, "6621", null, "162852", null, "6124", null, "130104", null, "4936", null, "50751", null, "2533", null, "37.6", null, "0.7", null, "98.5", null, "2.6", null, "65.1", null, "2.1", null, "26.1", null, "1.2", null, "39.0", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.3", null, "0.4", null, "6.3", null, "0.6", null, "6.6", null, "0.6", null, "6.5", null, "0.4", null, "5.0", null, "0.3", null, "8.0", null, "0.5", null, "7.8", null, "0.4", null, "6.7", null, "0.5", null, "6.9", null, "0.5", null, "6.3", null, "0.4", null, "6.1", null, "0.4", null, "5.3", null, "0.4", null, "6.4", null, "0.4", null, "5.2", null, "0.4", null, "4.4", null, "0.3", null, "2.8", null, "0.3", null, "1.7", null, "0.2", null, "1.6", null, "0.2", null, "12.9", null, "0.6", null, "4.4", null, "0.3", null, "23.6", null, "0.8", null, "7.1", null, "0.4", null, "40.9", null, "0.8", null, "79.5", null, "0.8", null, "76.4", null, "0.8", null, "73.3", null, "0.8", null, "22.2", null, "0.8", null, "19.8", null, "0.7", null, "15.8", null, "0.6", null, "6.2", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "0.8", null, "-888888888.0", "(X)", "408474", null, "10011", null, "25197", null, "2711", null, "27285", null, "3256", null, "27404", null, "3108", null, "27240", null, "2633", null, "21188", null, "2231", null, "31793", null, "2485", null, "33154", null, "3048", null, "28036", null, "2709", null, "29031", null, "2729", null, "25337", null, "1732", null, "26141", null, "2068", null, "23443", null, "2139", null, "25247", null, "2338", null, "21943", null, "2118", null, "15004", null, "1552", null, "9520", null, "1518", null, "6235", null, "1251", null, "5276", null, "1224", null, "54689", null, "3729", null, "18623", null, "1889", null, "98509", null, "5374", null, "29805", null, "2954", null, "170442", null, "7087", null, "323570", null, "8001", null, "309965", null, "7601", null, "296279", null, "7141", null, "83225", null, "4062", null, "74477", null, "3689", null, "57978", null, "3068", null, "21031", null, "1521", null, "36.9", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.2", null, "0.6", null, "6.7", null, "0.7", null, "6.7", null, "0.7", null, "6.7", null, "0.6", null, "5.2", null, "0.5", null, "7.8", null, "0.6", null, "8.1", null, "0.7", null, "6.9", null, "0.6", null, "7.1", null, "0.7", null, "6.2", null, "0.4", null, "6.4", null, "0.5", null, "5.7", null, "0.5", null, "6.2", null, "0.6", null, "5.4", null, "0.5", null, "3.7", null, "0.4", null, "2.3", null, "0.4", null, "1.5", null, "0.3", null, "1.3", null, "0.3", null, "13.4", null, "0.8", null, "4.6", null, "0.5", null, "24.1", null, "1.0", null, "7.3", null, "0.7", null, "41.7", null, "1.2", null, "79.2", null, "1.1", null, "75.9", null, "1.0", null, "72.5", null, "1.1", null, "20.4", null, "1.0", null, "18.2", null, "0.9", null, "14.2", null, "0.8", null, "5.1", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "414537", null, "10548", null, "26318", null, "2564", null, "24630", null, "3265", null, "27073", null, "3145", null, "26123", null, "2230", null, "20075", null, "2001", null, "33897", null, "2852", null, "31434", null, "2415", null, "27060", null, "3055", null, "27552", null, "2707", null, "26176", null, "2033", null, "24172", null, "1957", null, "20537", null, "2123", null, "27364", null, "2431", null, "21004", null, "1981", null, "21402", null, "2292", null, "13875", null, "1622", null, "7683", null, "1190", null, "8162", null, "1279", null, "51703", null, "3419", null, "17829", null, "1626", null, "95850", null, "5178", null, "28369", null, "2130", null, "166141", null, "5606", null, "330737", null, "7360", null, "318687", null, "7362", null, "306816", null, "7258", null, "99490", null, "3955", null, "88375", null, "3837", null, "72126", null, "2929", null, "29720", null, "1713", null, "38.2", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.3", null, "0.5", null, "5.9", null, "0.8", null, "6.5", null, "0.7", null, "6.3", null, "0.5", null, "4.8", null, "0.5", null, "8.2", null, "0.7", null, "7.6", null, "0.6", null, "6.5", null, "0.7", null, "6.6", null, "0.6", null, "6.3", null, "0.5", null, "5.8", null, "0.5", null, "5.0", null, "0.5", null, "6.6", null, "0.5", null, "5.1", null, "0.5", null, "5.2", null, "0.5", null, "3.3", null, "0.4", null, "1.9", null, "0.3", null, "2.0", null, "0.3", null, "12.5", null, "0.7", null, "4.3", null, "0.4", null, "23.1", null, "0.9", null, "6.8", null, "0.5", null, "40.1", null, "1.0", null, "79.8", null, "0.9", null, "76.9", null, "0.9", null, "74.0", null, "1.0", null, "24.0", null, "0.8", null, "21.3", null, "0.8", null, "17.4", null, "0.7", null, "7.2", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "39", "15"], ["5001900US4001", "Congressional District 1 (119th Congress), Oklahoma", "827396", null, "3267", null, "51628", null, "708", null, "54271", null, "2115", null, "59151", null, "2165", null, "57521", null, "1130", null, "53205", null, "1036", null, "56556", null, "917", null, "59812", null, "1083", null, "54449", null, "2634", null, "59797", null, "2378", null, "49538", null, "812", null, "47478", null, "746", null, "45072", null, "1885", null, "46169", null, "1848", null, "43545", null, "1778", null, "35111", null, "1753", null, "24341", null, "1352", null, "16671", null, "1452", null, "13081", null, "1148", null, "113422", null, "1226", null, "35948", null, "700", null, "200998", null, "1652", null, "74778", null, "1205", null, "341340", null, "2306", null, "649705", null, "2627", null, "626398", null, "2306", null, "595161", null, "2443", null, "178918", null, "2262", null, "159154", null, "2226", null, "132749", null, "1212", null, "54093", null, "1029", null, "37.1", null, "0.3", null, "97.5", null, "0.5", null, "67.6", null, "0.5", null, "26.9", null, "0.3", null, "40.7", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.2", null, "0.1", null, "6.6", null, "0.3", null, "7.1", null, "0.3", null, "7.0", null, "0.1", null, "6.4", null, "0.1", null, "6.8", null, "0.1", null, "7.2", null, "0.1", null, "6.6", null, "0.3", null, "7.2", null, "0.3", null, "6.0", null, "0.1", null, "5.7", null, "0.1", null, "5.4", null, "0.2", null, "5.6", null, "0.2", null, "5.3", null, "0.2", null, "4.2", null, "0.2", null, "2.9", null, "0.2", null, "2.0", null, "0.2", null, "1.6", null, "0.1", null, "13.7", null, "0.1", null, "4.3", null, "0.1", null, "24.3", null, "0.1", null, "9.0", null, "0.1", null, "41.3", null, "0.2", null, "78.5", null, "0.2", null, "75.7", null, "0.1", null, "71.9", null, "0.2", null, "21.6", null, "0.3", null, "19.2", null, "0.3", null, "16.0", null, "0.2", null, "6.5", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.4", null, "-888888888.0", "(X)", "408512", null, "1970", null, "26930", null, "466", null, "27135", null, "1477", null, "30603", null, "1543", null, "29986", null, "810", null, "26857", null, "745", null, "28689", null, "765", null, "29753", null, "547", null, "26928", null, "1813", null, "29693", null, "1651", null, "24591", null, "601", null, "23737", null, "489", null, "22085", null, "1414", null, "22504", null, "1514", null, "19994", null, "1271", null, "16132", null, "1214", null, "10837", null, "942", null, "7375", null, "861", null, "4683", null, "676", null, "57738", null, "794", null, "18891", null, "597", null, "103559", null, "1064", null, "37952", null, "826", null, "171906", null, "1622", null, "316993", null, "1696", null, "304953", null, "1477", null, "289024", null, "1527", null, "81525", null, "1531", null, "71575", null, "1453", null, "59021", null, "715", null, "22895", null, "659", null, "35.8", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.6", null, "0.1", null, "6.6", null, "0.4", null, "7.5", null, "0.4", null, "7.3", null, "0.2", null, "6.6", null, "0.2", null, "7.0", null, "0.2", null, "7.3", null, "0.1", null, "6.6", null, "0.4", null, "7.3", null, "0.4", null, "6.0", null, "0.1", null, "5.8", null, "0.1", null, "5.4", null, "0.3", null, "5.5", null, "0.4", null, "4.9", null, "0.3", null, "3.9", null, "0.3", null, "2.7", null, "0.2", null, "1.8", null, "0.2", null, "1.1", null, "0.2", null, "14.1", null, "0.2", null, "4.6", null, "0.1", null, "25.4", null, "0.2", null, "9.3", null, "0.2", null, "42.1", null, "0.3", null, "77.6", null, "0.3", null, "74.6", null, "0.2", null, "70.8", null, "0.3", null, "20.0", null, "0.4", null, "17.5", null, "0.4", null, "14.4", null, "0.2", null, "5.6", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "418884", null, "2007", null, "24698", null, "483", null, "27136", null, "1571", null, "28548", null, "1537", null, "27535", null, "741", null, "26348", null, "653", null, "27867", null, "510", null, "30059", null, "760", null, "27521", null, "1581", null, "30104", null, "1574", null, "24947", null, "472", null, "23741", null, "495", null, "22987", null, "1213", null, "23665", null, "1243", null, "23551", null, "1186", null, "18979", null, "1163", null, "13504", null, "967", null, "9296", null, "995", null, "8398", null, "853", null, "55684", null, "859", null, "17057", null, "486", null, "97439", null, "1093", null, "36826", null, "703", null, "169434", null, "1360", null, "332712", null, "1715", null, "321445", null, "1543", null, "306137", null, "1622", null, "97393", null, "1637", null, "87579", null, "1506", null, "73728", null, "785", null, "31198", null, "599", null, "38.2", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.9", null, "0.1", null, "6.5", null, "0.4", null, "6.8", null, "0.4", null, "6.6", null, "0.2", null, "6.3", null, "0.2", null, "6.7", null, "0.1", null, "7.2", null, "0.2", null, "6.6", null, "0.4", null, "7.2", null, "0.4", null, "6.0", null, "0.1", null, "5.7", null, "0.1", null, "5.5", null, "0.3", null, "5.6", null, "0.3", null, "5.6", null, "0.3", null, "4.5", null, "0.3", null, "3.2", null, "0.2", null, "2.2", null, "0.2", null, "2.0", null, "0.2", null, "13.3", null, "0.2", null, "4.1", null, "0.1", null, "23.3", null, "0.2", null, "8.8", null, "0.2", null, "40.4", null, "0.2", null, "79.4", null, "0.3", null, "76.7", null, "0.2", null, "73.1", null, "0.3", null, "23.3", null, "0.4", null, "20.9", null, "0.4", null, "17.6", null, "0.2", null, "7.4", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "40", "01"], ["5001900US4002", "Congressional District 2 (119th Congress), Oklahoma", "815354", null, "3399", null, "46543", null, "1173", null, "53442", null, "2460", null, "54530", null, "2375", null, "55033", null, "2161", null, "49438", null, "1940", null, "48569", null, "1582", null, "49631", null, "1657", null, "53629", null, "2641", null, "49725", null, "2309", null, "45504", null, "1521", null, "47416", null, "1404", null, "46363", null, "2038", null, "56059", null, "1949", null, "50259", null, "1950", null, "40782", null, "1553", null, "31931", null, "1691", null, "21289", null, "1398", null, "15211", null, "1166", null, "107972", null, "1718", null, "34247", null, "1277", null, "188762", null, "2102", null, "70224", null, "1524", null, "306025", null, "2974", null, "649290", null, "2663", null, "626592", null, "2309", null, "595933", null, "2858", null, "215531", null, "2466", null, "194062", null, "2340", null, "159472", null, "1578", null, "68431", null, "1034", null, "39.7", null, "0.4", null, "99.7", null, "0.9", null, "74.5", null, "0.6", null, "34.1", null, "0.4", null, "40.4", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.7", null, "0.1", null, "6.6", null, "0.3", null, "6.7", null, "0.3", null, "6.7", null, "0.3", null, "6.1", null, "0.2", null, "6.0", null, "0.2", null, "6.1", null, "0.2", null, "6.6", null, "0.3", null, "6.1", null, "0.3", null, "5.6", null, "0.2", null, "5.8", null, "0.2", null, "5.7", null, "0.2", null, "6.9", null, "0.2", null, "6.2", null, "0.2", null, "5.0", null, "0.2", null, "3.9", null, "0.2", null, "2.6", null, "0.2", null, "1.9", null, "0.1", null, "13.2", null, "0.2", null, "4.2", null, "0.2", null, "23.2", null, "0.2", null, "8.6", null, "0.2", null, "37.5", null, "0.3", null, "79.6", null, "0.2", null, "76.8", null, "0.2", null, "73.1", null, "0.3", null, "26.4", null, "0.3", null, "23.8", null, "0.3", null, "19.6", null, "0.2", null, "8.4", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.0", null, "-888888888.0", "(X)", "406972", null, "2232", null, "22468", null, "1077", null, "26714", null, "1716", null, "30011", null, "1443", null, "28988", null, "1576", null, "25732", null, "1415", null, "25485", null, "1192", null, "25898", null, "1193", null, "26611", null, "1706", null, "24835", null, "1530", null, "23073", null, "928", null, "24049", null, "883", null, "22717", null, "1264", null, "27519", null, "1371", null, "24678", null, "1108", null, "19199", null, "1073", null, "14559", null, "983", null, "9576", null, "841", null, "4860", null, "615", null, "56725", null, "1197", null, "17970", null, "1071", null, "97163", null, "1725", null, "36750", null, "1101", null, "157549", null, "2260", null, "322170", null, "1865", null, "309809", null, "1775", null, "293808", null, "2213", null, "100391", null, "1557", null, "90303", null, "1528", null, "72872", null, "1002", null, "28995", null, "597", null, "38.3", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.3", null, "6.6", null, "0.4", null, "7.4", null, "0.4", null, "7.1", null, "0.4", null, "6.3", null, "0.3", null, "6.3", null, "0.3", null, "6.4", null, "0.3", null, "6.5", null, "0.4", null, "6.1", null, "0.4", null, "5.7", null, "0.2", null, "5.9", null, "0.2", null, "5.6", null, "0.3", null, "6.8", null, "0.3", null, "6.1", null, "0.3", null, "4.7", null, "0.3", null, "3.6", null, "0.2", null, "2.4", null, "0.2", null, "1.2", null, "0.2", null, "13.9", null, "0.3", null, "4.4", null, "0.3", null, "23.9", null, "0.4", null, "9.0", null, "0.3", null, "38.7", null, "0.5", null, "79.2", null, "0.3", null, "76.1", null, "0.4", null, "72.2", null, "0.5", null, "24.7", null, "0.4", null, "22.2", null, "0.4", null, "17.9", null, "0.2", null, "7.1", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "408382", null, "2739", null, "24075", null, "1187", null, "26728", null, "1755", null, "24519", null, "1836", null, "26045", null, "1436", null, "23706", null, "1166", null, "23084", null, "903", null, "23733", null, "932", null, "27018", null, "1665", null, "24890", null, "1381", null, "22431", null, "1074", null, "23367", null, "985", null, "23646", null, "1369", null, "28540", null, "1263", null, "25581", null, "1419", null, "21583", null, "1179", null, "17372", null, "1231", null, "11713", null, "1040", null, "10351", null, "1061", null, "51247", null, "1294", null, "16277", null, "1004", null, "91599", null, "2205", null, "33474", null, "947", null, "148476", null, "1918", null, "327120", null, "1940", null, "316783", null, "1609", null, "302125", null, "1654", null, "115140", null, "1807", null, "103759", null, "1666", null, "86600", null, "1113", null, "39436", null, "809", null, "41.1", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.9", null, "0.3", null, "6.5", null, "0.4", null, "6.0", null, "0.4", null, "6.4", null, "0.3", null, "5.8", null, "0.3", null, "5.7", null, "0.2", null, "5.8", null, "0.2", null, "6.6", null, "0.4", null, "6.1", null, "0.3", null, "5.5", null, "0.3", null, "5.7", null, "0.2", null, "5.8", null, "0.3", null, "7.0", null, "0.3", null, "6.3", null, "0.4", null, "5.3", null, "0.3", null, "4.3", null, "0.3", null, "2.9", null, "0.3", null, "2.5", null, "0.3", null, "12.5", null, "0.3", null, "4.0", null, "0.2", null, "22.4", null, "0.4", null, "8.2", null, "0.2", null, "36.4", null, "0.4", null, "80.1", null, "0.4", null, "77.6", null, "0.4", null, "74.0", null, "0.5", null, "28.2", null, "0.5", null, "25.4", null, "0.5", null, "21.2", null, "0.3", null, "9.7", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "40", "02"], ["5001900US4003", "Congressional District 3 (119th Congress), Oklahoma", "797016", null, "10085", null, "49498", null, "3059", null, "50546", null, "3274", null, "55682", null, "3366", null, "64708", null, "3086", null, "63034", null, "3273", null, "50460", null, "2731", null, "52850", null, "2949", null, "53385", null, "3812", null, "53765", null, "3477", null, "46415", null, "2364", null, "42663", null, "2274", null, "38960", null, "2112", null, "47699", null, "2702", null, "43770", null, "2411", null, "32344", null, "2189", null, "22420", null, "1629", null, "15455", null, "1417", null, "13362", null, "1193", null, "106228", null, "3846", null, "36004", null, "2056", null, "191730", null, "5353", null, "91738", null, "3208", null, "338202", null, "6274", null, "628156", null, "7616", null, "605286", null, "7058", null, "562352", null, "7261", null, "175050", null, "3792", null, "156026", null, "3459", null, "127351", null, "3012", null, "51237", null, "1835", null, "36.1", null, "0.5", null, "104.9", null, "2.4", null, "66.8", null, "1.3", null, "26.6", null, "0.8", null, "40.1", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.2", null, "0.4", null, "6.3", null, "0.4", null, "7.0", null, "0.4", null, "8.1", null, "0.4", null, "7.9", null, "0.4", null, "6.3", null, "0.3", null, "6.6", null, "0.4", null, "6.7", null, "0.5", null, "6.7", null, "0.4", null, "5.8", null, "0.3", null, "5.4", null, "0.3", null, "4.9", null, "0.3", null, "6.0", null, "0.3", null, "5.5", null, "0.3", null, "4.1", null, "0.3", null, "2.8", null, "0.2", null, "1.9", null, "0.2", null, "1.7", null, "0.2", null, "13.3", null, "0.4", null, "4.5", null, "0.2", null, "24.1", null, "0.5", null, "11.5", null, "0.4", null, "42.4", null, "0.5", null, "78.8", null, "0.5", null, "75.9", null, "0.5", null, "70.6", null, "0.6", null, "22.0", null, "0.5", null, "19.6", null, "0.4", null, "16.0", null, "0.4", null, "6.4", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.2", null, "-888888888.0", "(X)", "407994", null, "6608", null, "26607", null, "2316", null, "25920", null, "2408", null, "28856", null, "2132", null, "32979", null, "2284", null, "35399", null, "2560", null, "26306", null, "1889", null, "27754", null, "2042", null, "29095", null, "2366", null, "27619", null, "2203", null, "24930", null, "1633", null, "21358", null, "1262", null, "19235", null, "1823", null, "24591", null, "1860", null, "21194", null, "1546", null, "14780", null, "1174", null, "10462", null, "1031", null, "5989", null, "749", null, "4920", null, "679", null, "54776", null, "2586", null, "17775", null, "1672", null, "99158", null, "3500", null, "50603", null, "2367", null, "179152", null, "4347", null, "320440", null, "5419", null, "308836", null, "5177", null, "285800", null, "5150", null, "81936", null, "2254", null, "72293", null, "2121", null, "57345", null, "1662", null, "21371", null, "997", null, "35.0", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.5", null, "0.5", null, "6.4", null, "0.6", null, "7.1", null, "0.5", null, "8.1", null, "0.5", null, "8.7", null, "0.6", null, "6.4", null, "0.4", null, "6.8", null, "0.5", null, "7.1", null, "0.6", null, "6.8", null, "0.5", null, "6.1", null, "0.4", null, "5.2", null, "0.3", null, "4.7", null, "0.4", null, "6.0", null, "0.4", null, "5.2", null, "0.4", null, "3.6", null, "0.3", null, "2.6", null, "0.3", null, "1.5", null, "0.2", null, "1.2", null, "0.2", null, "13.4", null, "0.6", null, "4.4", null, "0.4", null, "24.3", null, "0.7", null, "12.4", null, "0.6", null, "43.9", null, "0.8", null, "78.5", null, "0.7", null, "75.7", null, "0.7", null, "70.1", null, "0.8", null, "20.1", null, "0.5", null, "17.7", null, "0.5", null, "14.1", null, "0.4", null, "5.2", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "389022", null, "6928", null, "22891", null, "2034", null, "24626", null, "2335", null, "26826", null, "2382", null, "31729", null, "2336", null, "27635", null, "2185", null, "24154", null, "1559", null, "25096", null, "1869", null, "24290", null, "2242", null, "26146", null, "2185", null, "21485", null, "1611", null, "21305", null, "1788", null, "19725", null, "1468", null, "23108", null, "1668", null, "22576", null, "1667", null, "17564", null, "1604", null, "11958", null, "1048", null, "9466", null, "1259", null, "8442", null, "824", null, "51452", null, "2687", null, "18229", null, "1841", null, "92572", null, "3934", null, "41135", null, "2180", null, "159050", null, "4230", null, "307716", null, "5087", null, "296450", null, "4444", null, "276552", null, "4499", null, "93114", null, "2701", null, "83733", null, "2435", null, "70006", null, "2187", null, "29866", null, "1369", null, "37.3", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.9", null, "0.5", null, "6.3", null, "0.6", null, "6.9", null, "0.6", null, "8.2", null, "0.6", null, "7.1", null, "0.5", null, "6.2", null, "0.4", null, "6.5", null, "0.5", null, "6.2", null, "0.6", null, "6.7", null, "0.6", null, "5.5", null, "0.4", null, "5.5", null, "0.5", null, "5.1", null, "0.4", null, "5.9", null, "0.4", null, "5.8", null, "0.4", null, "4.5", null, "0.4", null, "3.1", null, "0.3", null, "2.4", null, "0.3", null, "2.2", null, "0.2", null, "13.2", null, "0.6", null, "4.7", null, "0.5", null, "23.8", null, "0.7", null, "10.6", null, "0.5", null, "40.9", null, "0.8", null, "79.1", null, "0.8", null, "76.2", null, "0.7", null, "71.1", null, "0.9", null, "23.9", null, "0.7", null, "21.5", null, "0.6", null, "18.0", null, "0.6", null, "7.7", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "40", "03"], ["5001900US4004", "Congressional District 4 (119th Congress), Oklahoma", "819271", null, "5757", null, "44065", null, "1467", null, "51010", null, "2989", null, "54231", null, "2772", null, "61364", null, "3552", null, "68977", null, "2973", null, "53733", null, "2185", null, "55327", null, "1876", null, "57547", null, "3028", null, "54368", null, "2814", null, "48197", null, "2392", null, "44289", null, "1615", null, "41370", null, "2608", null, "49836", null, "2440", null, "45909", null, "2174", null, "33859", null, "1965", null, "25361", null, "1891", null, "15978", null, "1497", null, "13850", null, "1402", null, "105241", null, "2772", null, "33489", null, "1793", null, "182795", null, "3351", null, "96852", null, "2985", null, "351316", null, "5142", null, "660264", null, "5262", null, "636476", null, "4552", null, "592245", null, "5221", null, "184793", null, "3323", null, "163796", null, "3053", null, "134957", null, "2208", null, "55189", null, "1544", null, "36.7", null, "0.4", null, "99.0", null, "1.4", null, "63.4", null, "0.8", null, "26.9", null, "0.5", null, "36.4", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.2", null, "6.2", null, "0.4", null, "6.6", null, "0.3", null, "7.5", null, "0.4", null, "8.4", null, "0.4", null, "6.6", null, "0.3", null, "6.8", null, "0.2", null, "7.0", null, "0.4", null, "6.6", null, "0.3", null, "5.9", null, "0.3", null, "5.4", null, "0.2", null, "5.0", null, "0.3", null, "6.1", null, "0.3", null, "5.6", null, "0.3", null, "4.1", null, "0.2", null, "3.1", null, "0.2", null, "2.0", null, "0.2", null, "1.7", null, "0.2", null, "12.8", null, "0.3", null, "4.1", null, "0.2", null, "22.3", null, "0.3", null, "11.8", null, "0.3", null, "42.9", null, "0.4", null, "80.6", null, "0.4", null, "77.7", null, "0.3", null, "72.3", null, "0.6", null, "22.6", null, "0.4", null, "20.0", null, "0.4", null, "16.5", null, "0.3", null, "6.7", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.0", null, "-888888888.0", "(X)", "407649", null, "3427", null, "22921", null, "1308", null, "26238", null, "2115", null, "27654", null, "1986", null, "32829", null, "2379", null, "34244", null, "1570", null, "28044", null, "1415", null, "28526", null, "1418", null, "29735", null, "2432", null, "25223", null, "1879", null, "23716", null, "1626", null, "22415", null, "990", null, "21588", null, "1772", null, "23513", null, "1572", null, "21200", null, "1397", null, "16032", null, "1242", null, "11453", null, "961", null, "6764", null, "979", null, "5554", null, "1010", null, "53892", null, "1931", null, "17895", null, "1465", null, "94708", null, "2677", null, "49178", null, "1495", null, "178601", null, "3300", null, "325588", null, "3334", null, "312941", null, "2792", null, "290286", null, "3230", null, "84516", null, "1958", null, "74042", null, "1681", null, "61003", null, "1182", null, "23771", null, "812", null, "35.5", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.6", null, "0.3", null, "6.4", null, "0.5", null, "6.8", null, "0.5", null, "8.1", null, "0.6", null, "8.4", null, "0.4", null, "6.9", null, "0.3", null, "7.0", null, "0.3", null, "7.3", null, "0.6", null, "6.2", null, "0.5", null, "5.8", null, "0.4", null, "5.5", null, "0.3", null, "5.3", null, "0.4", null, "5.8", null, "0.4", null, "5.2", null, "0.3", null, "3.9", null, "0.3", null, "2.8", null, "0.2", null, "1.7", null, "0.2", null, "1.4", null, "0.2", null, "13.2", null, "0.4", null, "4.4", null, "0.3", null, "23.2", null, "0.6", null, "12.1", null, "0.3", null, "43.8", null, "0.6", null, "79.9", null, "0.5", null, "76.8", null, "0.6", null, "71.2", null, "0.7", null, "20.7", null, "0.5", null, "18.2", null, "0.4", null, "15.0", null, "0.3", null, "5.8", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "411622", null, "4666", null, "21144", null, "1138", null, "24772", null, "1986", null, "26577", null, "1761", null, "28535", null, "2308", null, "34733", null, "2197", null, "25689", null, "1553", null, "26801", null, "1287", null, "27812", null, "2059", null, "29145", null, "2199", null, "24481", null, "1454", null, "21874", null, "1239", null, "19782", null, "1669", null, "26323", null, "1599", null, "24709", null, "1521", null, "17827", null, "1312", null, "13908", null, "1369", null, "9214", null, "1127", null, "8296", null, "1009", null, "51349", null, "1899", null, "15594", null, "1295", null, "88087", null, "2226", null, "47674", null, "2230", null, "172715", null, "3282", null, "334676", null, "4068", null, "323535", null, "3493", null, "301959", null, "3796", null, "100277", null, "2215", null, "89754", null, "2113", null, "73954", null, "1564", null, "31418", null, "1122", null, "38.0", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.1", null, "0.3", null, "6.0", null, "0.5", null, "6.5", null, "0.4", null, "6.9", null, "0.5", null, "8.4", null, "0.5", null, "6.2", null, "0.4", null, "6.5", null, "0.3", null, "6.8", null, "0.5", null, "7.1", null, "0.5", null, "5.9", null, "0.3", null, "5.3", null, "0.3", null, "4.8", null, "0.4", null, "6.4", null, "0.4", null, "6.0", null, "0.4", null, "4.3", null, "0.3", null, "3.4", null, "0.3", null, "2.2", null, "0.3", null, "2.0", null, "0.2", null, "12.5", null, "0.4", null, "3.8", null, "0.3", null, "21.4", null, "0.4", null, "11.6", null, "0.5", null, "42.0", null, "0.6", null, "81.3", null, "0.5", null, "78.6", null, "0.4", null, "73.4", null, "0.8", null, "24.4", null, "0.6", null, "21.8", null, "0.5", null, "18.0", null, "0.4", null, "7.6", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "40", "04"], ["5001900US4005", "Congressional District 5 (119th Congress), Oklahoma", "836356", null, "12185", null, "49511", null, "2707", null, "56766", null, "3619", null, "56663", null, "3996", null, "54893", null, "2577", null, "52439", null, "2961", null, "58465", null, "2686", null, "56963", null, "3102", null, "62464", null, "4039", null, "55508", null, "3667", null, "49096", null, "2340", null, "49062", null, "2184", null, "45441", null, "2768", null, "51533", null, "3040", null, "45816", null, "2590", null, "36376", null, "2250", null, "26623", null, "2083", null, "15060", null, "1539", null, "13677", null, "1511", null, "113429", null, "4265", null, "36122", null, "1777", null, "199062", null, "5674", null, "71210", null, "3293", null, "340732", null, "6605", null, "661552", null, "9430", null, "637294", null, "8403", null, "609764", null, "8395", null, "189085", null, "4264", null, "170041", null, "3765", null, "137552", null, "2884", null, "55360", null, "1718", null, "37.7", null, "0.5", null, "95.7", null, "1.8", null, "67.4", null, "1.3", null, "27.5", null, "0.7", null, "39.8", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.9", null, "0.3", null, "6.8", null, "0.4", null, "6.8", null, "0.5", null, "6.6", null, "0.3", null, "6.3", null, "0.3", null, "7.0", null, "0.3", null, "6.8", null, "0.4", null, "7.5", null, "0.5", null, "6.6", null, "0.4", null, "5.9", null, "0.3", null, "5.9", null, "0.3", null, "5.4", null, "0.3", null, "6.2", null, "0.4", null, "5.5", null, "0.3", null, "4.3", null, "0.3", null, "3.2", null, "0.2", null, "1.8", null, "0.2", null, "1.6", null, "0.2", null, "13.6", null, "0.4", null, "4.3", null, "0.2", null, "23.8", null, "0.5", null, "8.5", null, "0.3", null, "40.7", null, "0.5", null, "79.1", null, "0.5", null, "76.2", null, "0.5", null, "72.9", null, "0.6", null, "22.6", null, "0.5", null, "20.3", null, "0.5", null, "16.4", null, "0.4", null, "6.6", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "0.9", null, "-888888888.0", "(X)", "409055", null, "6793", null, "22781", null, "1868", null, "29591", null, "2422", null, "29436", null, "2405", null, "28577", null, "2032", null, "26321", null, "1885", null, "28687", null, "1742", null, "27115", null, "2174", null, "32232", null, "2536", null, "26477", null, "2080", null, "24282", null, "1426", null, "24607", null, "962", null, "23193", null, "1876", null, "23622", null, "2038", null, "21982", null, "1711", null, "16886", null, "1426", null, "11514", null, "1427", null, "6447", null, "1113", null, "5305", null, "1006", null, "59027", null, "3027", null, "19316", null, "1507", null, "101124", null, "3791", null, "35582", null, "1926", null, "169409", null, "4136", null, "320903", null, "5454", null, "307931", null, "5133", null, "294368", null, "5613", null, "85756", null, "2500", null, "75424", null, "2149", null, "62134", null, "1532", null, "23266", null, "1010", null, "36.7", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.6", null, "0.4", null, "7.2", null, "0.6", null, "7.2", null, "0.6", null, "7.0", null, "0.5", null, "6.4", null, "0.5", null, "7.0", null, "0.4", null, "6.6", null, "0.5", null, "7.9", null, "0.6", null, "6.5", null, "0.5", null, "5.9", null, "0.3", null, "6.0", null, "0.3", null, "5.7", null, "0.4", null, "5.8", null, "0.5", null, "5.4", null, "0.4", null, "4.1", null, "0.4", null, "2.8", null, "0.3", null, "1.6", null, "0.3", null, "1.3", null, "0.2", null, "14.4", null, "0.7", null, "4.7", null, "0.3", null, "24.7", null, "0.7", null, "8.7", null, "0.5", null, "41.4", null, "0.7", null, "78.4", null, "0.7", null, "75.3", null, "0.7", null, "72.0", null, "0.9", null, "21.0", null, "0.6", null, "18.4", null, "0.5", null, "15.2", null, "0.4", null, "5.7", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "427301", null, "7597", null, "26730", null, "2009", null, "27175", null, "2510", null, "27227", null, "2994", null, "26316", null, "1969", null, "26118", null, "2221", null, "29778", null, "1626", null, "29848", null, "1759", null, "30232", null, "2784", null, "29031", null, "2304", null, "24814", null, "1595", null, "24455", null, "1865", null, "22248", null, "1759", null, "27911", null, "1651", null, "23834", null, "1660", null, "19490", null, "1442", null, "15109", null, "1248", null, "8613", null, "1050", null, "8372", null, "936", null, "54402", null, "2726", null, "16806", null, "1556", null, "97938", null, "3828", null, "35628", null, "2363", null, "171323", null, "4183", null, "340649", null, "5453", null, "329363", null, "4962", null, "315396", null, "4747", null, "103329", null, "2727", null, "94617", null, "2659", null, "75418", null, "2129", null, "32094", null, "1246", null, "38.5", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.3", null, "0.4", null, "6.4", null, "0.6", null, "6.4", null, "0.7", null, "6.2", null, "0.4", null, "6.1", null, "0.5", null, "7.0", null, "0.4", null, "7.0", null, "0.4", null, "7.1", null, "0.7", null, "6.8", null, "0.5", null, "5.8", null, "0.4", null, "5.7", null, "0.4", null, "5.2", null, "0.4", null, "6.5", null, "0.4", null, "5.6", null, "0.4", null, "4.6", null, "0.4", null, "3.5", null, "0.3", null, "2.0", null, "0.2", null, "2.0", null, "0.2", null, "12.7", null, "0.5", null, "3.9", null, "0.3", null, "22.9", null, "0.6", null, "8.3", null, "0.5", null, "40.1", null, "0.6", null, "79.7", null, "0.6", null, "77.1", null, "0.6", null, "73.8", null, "0.7", null, "24.2", null, "0.7", null, "22.1", null, "0.7", null, "17.6", null, "0.5", null, "7.5", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "40", "05"], ["5001900US4101", "Congressional District 1 (119th Congress), Oregon", "716626", null, "11339", null, "31013", null, "2139", null, "34765", null, "3029", null, "39898", null, "2870", null, "38120", null, "2138", null, "45067", null, "3085", null, "54039", null, "3261", null, "57521", null, "3660", null, "61227", null, "4019", null, "55408", null, "4600", null, "49618", null, "2954", null, "47754", null, "3162", null, "40045", null, "2826", null, "43203", null, "3210", null, "33063", null, "2118", null, "35479", null, "2695", null, "23990", null, "1957", null, "15458", null, "1749", null, "10958", null, "1729", null, "74663", null, "3772", null, "25218", null, "1679", null, "130894", null, "4871", null, "57969", null, "3075", null, "311382", null, "7395", null, "602125", null, "9125", null, "585732", null, "8632", null, "566234", null, "8603", null, "162151", null, "4841", null, "144728", null, "4733", null, "118948", null, "3670", null, "50406", null, "2352", null, "39.7", null, "0.6", null, "102.5", null, "2.2", null, "53.5", null, "1.3", null, "25.5", null, "0.9", null, "28.0", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.3", null, "0.3", null, "4.9", null, "0.4", null, "5.6", null, "0.4", null, "5.3", null, "0.3", null, "6.3", null, "0.4", null, "7.5", null, "0.5", null, "8.0", null, "0.5", null, "8.5", null, "0.5", null, "7.7", null, "0.6", null, "6.9", null, "0.4", null, "6.7", null, "0.4", null, "5.6", null, "0.4", null, "6.0", null, "0.4", null, "4.6", null, "0.3", null, "5.0", null, "0.4", null, "3.3", null, "0.3", null, "2.2", null, "0.2", null, "1.5", null, "0.2", null, "10.4", null, "0.4", null, "3.5", null, "0.2", null, "18.3", null, "0.5", null, "8.1", null, "0.4", null, "43.5", null, "0.7", null, "84.0", null, "0.5", null, "81.7", null, "0.5", null, "79.0", null, "0.6", null, "22.6", null, "0.7", null, "20.2", null, "0.6", null, "16.6", null, "0.5", null, "7.0", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.3", null, "-888888888.0", "(X)", "362657", null, "7597", null, "16646", null, "1381", null, "19591", null, "2352", null, "19816", null, "2454", null, "19752", null, "1402", null, "21492", null, "1845", null, "26057", null, "1822", null, "30757", null, "2349", null, "31702", null, "2650", null, "28972", null, "3243", null, "26401", null, "2039", null, "24671", null, "2249", null, "20351", null, "1910", null, "21251", null, "2116", null, "16063", null, "1728", null, "17167", null, "1933", null, "10827", null, "1220", null, "6614", null, "933", null, "4527", null, "1000", null, "39407", null, "2473", null, "12621", null, "1129", null, "68674", null, "3595", null, "28623", null, "1845", null, "158732", null, "4832", null, "302729", null, "5930", null, "293983", null, "5538", null, "282897", null, "5597", null, "76449", null, "2740", null, "67565", null, "2570", null, "55198", null, "2070", null, "21968", null, "1227", null, "39.3", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.6", null, "0.4", null, "5.4", null, "0.6", null, "5.5", null, "0.6", null, "5.4", null, "0.4", null, "5.9", null, "0.5", null, "7.2", null, "0.5", null, "8.5", null, "0.6", null, "8.7", null, "0.7", null, "8.0", null, "0.9", null, "7.3", null, "0.6", null, "6.8", null, "0.6", null, "5.6", null, "0.5", null, "5.9", null, "0.6", null, "4.4", null, "0.5", null, "4.7", null, "0.5", null, "3.0", null, "0.3", null, "1.8", null, "0.3", null, "1.2", null, "0.3", null, "10.9", null, "0.5", null, "3.5", null, "0.3", null, "18.9", null, "0.8", null, "7.9", null, "0.5", null, "43.8", null, "0.9", null, "83.5", null, "0.7", null, "81.1", null, "0.8", null, "78.0", null, "0.8", null, "21.1", null, "0.7", null, "18.6", null, "0.7", null, "15.2", null, "0.6", null, "6.1", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "353969", null, "6086", null, "14367", null, "1341", null, "15174", null, "1919", null, "20082", null, "2159", null, "18368", null, "1482", null, "23575", null, "2179", null, "27982", null, "2451", null, "26764", null, "2239", null, "29525", null, "2666", null, "26436", null, "2799", null, "23217", null, "1752", null, "23083", null, "1678", null, "19694", null, "1778", null, "21952", null, "1966", null, "17000", null, "1387", null, "18312", null, "1949", null, "13163", null, "1391", null, "8844", null, "1339", null, "6431", null, "1064", null, "35256", null, "2527", null, "12597", null, "1341", null, "62220", null, "3005", null, "29346", null, "2300", null, "152650", null, "4538", null, "299396", null, "5261", null, "291749", null, "5112", null, "283337", null, "4849", null, "85702", null, "3088", null, "77163", null, "2998", null, "63750", null, "2425", null, "28438", null, "1555", null, "40.2", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.1", null, "0.4", null, "4.3", null, "0.5", null, "5.7", null, "0.6", null, "5.2", null, "0.4", null, "6.7", null, "0.6", null, "7.9", null, "0.7", null, "7.6", null, "0.6", null, "8.3", null, "0.7", null, "7.5", null, "0.8", null, "6.6", null, "0.5", null, "6.5", null, "0.5", null, "5.6", null, "0.5", null, "6.2", null, "0.5", null, "4.8", null, "0.4", null, "5.2", null, "0.5", null, "3.7", null, "0.4", null, "2.5", null, "0.4", null, "1.8", null, "0.3", null, "10.0", null, "0.7", null, "3.6", null, "0.4", null, "17.6", null, "0.7", null, "8.3", null, "0.6", null, "43.1", null, "0.9", null, "84.6", null, "0.7", null, "82.4", null, "0.7", null, "80.0", null, "0.7", null, "24.2", null, "0.8", null, "21.8", null, "0.8", null, "18.0", null, "0.7", null, "8.0", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "41", "01"], ["5001900US4102", "Congressional District 2 (119th Congress), Oregon", "704768", null, "5524", null, "34268", null, "1639", null, "39321", null, "2557", null, "43310", null, "3089", null, "44906", null, "2332", null, "33887", null, "2481", null, "37940", null, "2597", null, "41335", null, "2570", null, "45937", null, "3623", null, "47813", null, "3419", null, "40266", null, "1766", null, "38530", null, "2397", null, "41492", null, "2662", null, "47562", null, "2680", null, "48450", null, "2849", null, "47533", null, "2433", null, "35343", null, "2319", null, "20442", null, "2531", null, "16433", null, "1917", null, "82631", null, "2648", null, "28823", null, "1494", null, "145722", null, "2806", null, "49970", null, "2405", null, "251818", null, "4349", null, "579535", null, "5129", null, "559046", null, "4548", null, "534910", null, "5029", null, "215763", null, "3844", null, "196982", null, "3586", null, "168201", null, "2612", null, "72218", null, "1961", null, "43.1", null, "0.5", null, "101.1", null, "1.5", null, "80.3", null, "1.2", null, "43.0", null, "0.9", null, "37.3", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.9", null, "0.2", null, "5.6", null, "0.4", null, "6.1", null, "0.4", null, "6.4", null, "0.3", null, "4.8", null, "0.4", null, "5.4", null, "0.4", null, "5.9", null, "0.4", null, "6.5", null, "0.5", null, "6.8", null, "0.5", null, "5.7", null, "0.2", null, "5.5", null, "0.3", null, "5.9", null, "0.4", null, "6.7", null, "0.4", null, "6.9", null, "0.4", null, "6.7", null, "0.3", null, "5.0", null, "0.3", null, "2.9", null, "0.4", null, "2.3", null, "0.3", null, "11.7", null, "0.4", null, "4.1", null, "0.2", null, "20.7", null, "0.3", null, "7.1", null, "0.3", null, "35.7", null, "0.5", null, "82.2", null, "0.4", null, "79.3", null, "0.3", null, "75.9", null, "0.5", null, "30.6", null, "0.5", null, "27.9", null, "0.5", null, "23.9", null, "0.4", null, "10.2", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.8", null, "-888888888.0", "(X)", "354384", null, "4026", null, "16952", null, "1442", null, "19010", null, "2216", null, "23595", null, "2322", null, "25325", null, "1965", null, "17731", null, "1939", null, "20289", null, "1577", null, "21558", null, "1575", null, "23949", null, "2435", null, "23560", null, "2222", null, "20950", null, "1289", null, "19899", null, "1715", null, "20321", null, "1872", null, "22982", null, "1870", null, "22337", null, "1663", null, "23274", null, "1646", null, "15950", null, "1423", null, "9628", null, "1514", null, "7074", null, "984", null, "42605", null, "1753", null, "16217", null, "1559", null, "75774", null, "2462", null, "26839", null, "1518", null, "132412", null, "3104", null, "290713", null, "3375", null, "278610", null, "2796", null, "265318", null, "3220", null, "101245", null, "2357", null, "92627", null, "2200", null, "78263", null, "1592", null, "32652", null, "1237", null, "41.7", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.8", null, "0.4", null, "5.4", null, "0.6", null, "6.7", null, "0.6", null, "7.1", null, "0.5", null, "5.0", null, "0.5", null, "5.7", null, "0.4", null, "6.1", null, "0.4", null, "6.8", null, "0.7", null, "6.6", null, "0.6", null, "5.9", null, "0.4", null, "5.6", null, "0.5", null, "5.7", null, "0.5", null, "6.5", null, "0.5", null, "6.3", null, "0.5", null, "6.6", null, "0.5", null, "4.5", null, "0.4", null, "2.7", null, "0.4", null, "2.0", null, "0.3", null, "12.0", null, "0.4", null, "4.6", null, "0.4", null, "21.4", null, "0.5", null, "7.6", null, "0.4", null, "37.4", null, "0.7", null, "82.0", null, "0.6", null, "78.6", null, "0.5", null, "74.9", null, "0.7", null, "28.6", null, "0.6", null, "26.1", null, "0.6", null, "22.1", null, "0.5", null, "9.2", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "350384", null, "3534", null, "17316", null, "1890", null, "20311", null, "2449", null, "19715", null, "2742", null, "19581", null, "2037", null, "16156", null, "1393", null, "17651", null, "1620", null, "19777", null, "1606", null, "21988", null, "2403", null, "24253", null, "2560", null, "19316", null, "1168", null, "18631", null, "1360", null, "21171", null, "1606", null, "24580", null, "1916", null, "26113", null, "2037", null, "24259", null, "1580", null, "19393", null, "1795", null, "10814", null, "1546", null, "9359", null, "1455", null, "40026", null, "1887", null, "12606", null, "1496", null, "69948", null, "2737", null, "23131", null, "1495", null, "119406", null, "3080", null, "288822", null, "2996", null, "280436", null, "2650", null, "269592", null, "2844", null, "114518", null, "2434", null, "104355", null, "2237", null, "89938", null, "1806", null, "39566", null, "1235", null, "44.6", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.9", null, "0.5", null, "5.8", null, "0.7", null, "5.6", null, "0.8", null, "5.6", null, "0.6", null, "4.6", null, "0.4", null, "5.0", null, "0.5", null, "5.6", null, "0.5", null, "6.3", null, "0.7", null, "6.9", null, "0.7", null, "5.5", null, "0.3", null, "5.3", null, "0.4", null, "6.0", null, "0.5", null, "7.0", null, "0.6", null, "7.5", null, "0.6", null, "6.9", null, "0.5", null, "5.5", null, "0.5", null, "3.1", null, "0.4", null, "2.7", null, "0.4", null, "11.4", null, "0.5", null, "3.6", null, "0.4", null, "20.0", null, "0.7", null, "6.6", null, "0.4", null, "34.1", null, "0.7", null, "82.4", null, "0.7", null, "80.0", null, "0.7", null, "76.9", null, "0.8", null, "32.7", null, "0.7", null, "29.8", null, "0.6", null, "25.7", null, "0.5", null, "11.3", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "41", "02"], ["5001900US4103", "Congressional District 3 (119th Congress), Oregon", "700007", null, "10452", null, "34611", null, "2035", null, "32663", null, "3146", null, "41193", null, "3164", null, "42253", null, "2591", null, "37817", null, "2915", null, "50415", null, "2939", null, "59387", null, "2804", null, "63689", null, "3996", null, "54253", null, "4586", null, "49114", null, "2798", null, "46476", null, "2389", null, "39294", null, "2980", null, "37299", null, "3152", null, "36975", null, "2793", null, "31734", null, "2833", null, "19068", null, "2341", null, "12576", null, "1940", null, "11190", null, "2123", null, "73856", null, "3670", null, "23727", null, "1422", null, "132194", null, "4410", null, "56343", null, "3367", null, "307814", null, "5966", null, "584610", null, "8701", null, "567813", null, "8277", null, "541864", null, "7821", null, "148842", null, "5321", null, "135062", null, "4884", null, "111543", null, "4032", null, "42834", null, "2527", null, "38.9", null, "0.6", null, "97.9", null, "2.1", null, "53.4", null, "1.4", null, "24.4", null, "1.0", null, "29.0", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.9", null, "0.3", null, "4.7", null, "0.4", null, "5.9", null, "0.4", null, "6.0", null, "0.3", null, "5.4", null, "0.4", null, "7.2", null, "0.4", null, "8.5", null, "0.4", null, "9.1", null, "0.6", null, "7.8", null, "0.6", null, "7.0", null, "0.4", null, "6.6", null, "0.3", null, "5.6", null, "0.4", null, "5.3", null, "0.4", null, "5.3", null, "0.4", null, "4.5", null, "0.4", null, "2.7", null, "0.3", null, "1.8", null, "0.3", null, "1.6", null, "0.3", null, "10.6", null, "0.5", null, "3.4", null, "0.2", null, "18.9", null, "0.5", null, "8.0", null, "0.5", null, "44.0", null, "0.6", null, "83.5", null, "0.5", null, "81.1", null, "0.5", null, "77.4", null, "0.6", null, "21.3", null, "0.7", null, "19.3", null, "0.6", null, "15.9", null, "0.6", null, "6.1", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "2.3", null, "-888888888.0", "(X)", "346215", null, "6994", null, "16887", null, "1646", null, "16971", null, "2157", null, "20850", null, "2068", null, "22252", null, "1713", null, "19640", null, "2041", null, "25060", null, "1717", null, "28808", null, "1887", null, "33058", null, "2606", null, "25520", null, "2891", null, "25084", null, "2035", null, "23392", null, "1733", null, "19741", null, "1945", null, "18236", null, "2004", null, "17500", null, "1901", null, "15789", null, "1648", null, "9008", null, "1302", null, "5410", null, "1201", null, "3009", null, "826", null, "37821", null, "2448", null, "12748", null, "1119", null, "67456", null, "3333", null, "29144", null, "2114", null, "154338", null, "3808", null, "287403", null, "5301", null, "278759", null, "5068", null, "264418", null, "4946", null, "68952", null, "3027", null, "62753", null, "2970", null, "50716", null, "2348", null, "17427", null, "1385", null, "38.3", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.9", null, "0.5", null, "4.9", null, "0.6", null, "6.0", null, "0.6", null, "6.4", null, "0.5", null, "5.7", null, "0.6", null, "7.2", null, "0.5", null, "8.3", null, "0.5", null, "9.5", null, "0.8", null, "7.4", null, "0.8", null, "7.2", null, "0.6", null, "6.8", null, "0.5", null, "5.7", null, "0.5", null, "5.3", null, "0.6", null, "5.1", null, "0.5", null, "4.6", null, "0.5", null, "2.6", null, "0.4", null, "1.6", null, "0.4", null, "0.9", null, "0.2", null, "10.9", null, "0.6", null, "3.7", null, "0.3", null, "19.5", null, "0.7", null, "8.4", null, "0.6", null, "44.6", null, "0.8", null, "83.0", null, "0.7", null, "80.5", null, "0.7", null, "76.4", null, "0.9", null, "19.9", null, "0.8", null, "18.1", null, "0.8", null, "14.6", null, "0.6", null, "5.0", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "353792", null, "5870", null, "17724", null, "1762", null, "15692", null, "1891", null, "20343", null, "2283", null, "20001", null, "1858", null, "18177", null, "1895", null, "25355", null, "2110", null, "30579", null, "1671", null, "30631", null, "2497", null, "28733", null, "2928", null, "24030", null, "1559", null, "23084", null, "1378", null, "19553", null, "2174", null, "19063", null, "2105", null, "19475", null, "1720", null, "15945", null, "1769", null, "10060", null, "1652", null, "7166", null, "1217", null, "8181", null, "1838", null, "36035", null, "2361", null, "10979", null, "917", null, "64738", null, "3127", null, "27199", null, "2078", null, "153476", null, "3970", null, "297207", null, "4991", null, "289054", null, "4661", null, "277446", null, "4241", null, "79890", null, "3133", null, "72309", null, "2744", null, "60827", null, "2214", null, "25407", null, "1534", null, "39.7", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.0", null, "0.5", null, "4.4", null, "0.5", null, "5.7", null, "0.6", null, "5.7", null, "0.5", null, "5.1", null, "0.5", null, "7.2", null, "0.6", null, "8.6", null, "0.5", null, "8.7", null, "0.7", null, "8.1", null, "0.8", null, "6.8", null, "0.4", null, "6.5", null, "0.4", null, "5.5", null, "0.6", null, "5.4", null, "0.6", null, "5.5", null, "0.5", null, "4.5", null, "0.5", null, "2.8", null, "0.5", null, "2.0", null, "0.3", null, "2.3", null, "0.5", null, "10.2", null, "0.6", null, "3.1", null, "0.3", null, "18.3", null, "0.7", null, "7.7", null, "0.6", null, "43.4", null, "0.8", null, "84.0", null, "0.8", null, "81.7", null, "0.7", null, "78.4", null, "0.8", null, "22.6", null, "0.9", null, "20.4", null, "0.8", null, "17.2", null, "0.6", null, "7.2", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "41", "03"], ["5001900US4104", "Congressional District 4 (119th Congress), Oregon", "712690", null, "3875", null, "26387", null, "1459", null, "31666", null, "2347", null, "37863", null, "2470", null, "48212", null, "2322", null, "60520", null, "2704", null, "42950", null, "1802", null, "42795", null, "1687", null, "44924", null, "3354", null, "39995", null, "3211", null, "40103", null, "1403", null, "40529", null, "1616", null, "39316", null, "2727", null, "45263", null, "2575", null, "47106", null, "2920", null, "52828", null, "2642", null, "33622", null, "2012", null, "23392", null, "2091", null, "15219", null, "1822", null, "69529", null, "2103", null, "23198", null, "1586", null, "119114", null, "1806", null, "85534", null, "2111", null, "279396", null, "3057", null, "609574", null, "3127", null, "593576", null, "2804", null, "555684", null, "3877", null, "217430", null, "3242", null, "199167", null, "2932", null, "172167", null, "2305", null, "72233", null, "1514", null, "42.6", null, "0.4", null, "99.3", null, "1.1", null, "69.1", null, "1.0", null, "40.9", null, "0.8", null, "28.3", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "3.7", null, "0.2", null, "4.4", null, "0.3", null, "5.3", null, "0.3", null, "6.8", null, "0.3", null, "8.5", null, "0.4", null, "6.0", null, "0.3", null, "6.0", null, "0.2", null, "6.3", null, "0.5", null, "5.6", null, "0.5", null, "5.6", null, "0.2", null, "5.7", null, "0.2", null, "5.5", null, "0.4", null, "6.4", null, "0.4", null, "6.6", null, "0.4", null, "7.4", null, "0.4", null, "4.7", null, "0.3", null, "3.3", null, "0.3", null, "2.1", null, "0.3", null, "9.8", null, "0.3", null, "3.3", null, "0.2", null, "16.7", null, "0.2", null, "12.0", null, "0.3", null, "39.2", null, "0.4", null, "85.5", null, "0.3", null, "83.3", null, "0.2", null, "78.0", null, "0.4", null, "30.5", null, "0.5", null, "27.9", null, "0.4", null, "24.2", null, "0.3", null, "10.1", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.3", null, "-888888888.0", "(X)", "355072", null, "2760", null, "14340", null, "1217", null, "17312", null, "2009", null, "19489", null, "1867", null, "25366", null, "1966", null, "31106", null, "1725", null, "21777", null, "1231", null, "22057", null, "1039", null, "22890", null, "2000", null, "19793", null, "2026", null, "20323", null, "1052", null, "19825", null, "1010", null, "19757", null, "2030", null, "21526", null, "1870", null, "21696", null, "1889", null, "25141", null, "1726", null, "15158", null, "1278", null, "12024", null, "1333", null, "5492", null, "1117", null, "36801", null, "1595", null, "13503", null, "1523", null, "64644", null, "1868", null, "42969", null, "1366", null, "142989", null, "2105", null, "299786", null, "2482", null, "290428", null, "1972", null, "273114", null, "2741", null, "101037", null, "2214", null, "91643", null, "1936", null, "79511", null, "1418", null, "32674", null, "997", null, "40.9", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.0", null, "0.3", null, "4.9", null, "0.6", null, "5.5", null, "0.5", null, "7.1", null, "0.6", null, "8.8", null, "0.5", null, "6.1", null, "0.3", null, "6.2", null, "0.3", null, "6.4", null, "0.6", null, "5.6", null, "0.6", null, "5.7", null, "0.3", null, "5.6", null, "0.3", null, "5.6", null, "0.6", null, "6.1", null, "0.5", null, "6.1", null, "0.5", null, "7.1", null, "0.5", null, "4.3", null, "0.4", null, "3.4", null, "0.4", null, "1.5", null, "0.3", null, "10.4", null, "0.4", null, "3.8", null, "0.4", null, "18.2", null, "0.4", null, "12.1", null, "0.4", null, "40.3", null, "0.5", null, "84.4", null, "0.5", null, "81.8", null, "0.4", null, "76.9", null, "0.6", null, "28.5", null, "0.6", null, "25.8", null, "0.6", null, "22.4", null, "0.4", null, "9.2", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "357618", null, "2883", null, "12047", null, "1160", null, "14354", null, "1397", null, "18374", null, "1626", null, "22846", null, "1706", null, "29414", null, "1951", null, "21173", null, "1236", null, "20738", null, "1104", null, "22034", null, "2129", null, "20202", null, "2046", null, "19780", null, "1015", null, "20704", null, "1078", null, "19559", null, "1746", null, "23737", null, "1715", null, "25410", null, "1911", null, "27687", null, "1759", null, "18464", null, "1434", null, "11368", null, "1202", null, "9727", null, "1316", null, "32728", null, "1715", null, "9695", null, "1019", null, "54470", null, "1934", null, "42565", null, "1236", null, "136407", null, "2258", null, "309788", null, "2131", null, "303148", null, "1842", null, "282570", null, "2691", null, "116393", null, "2108", null, "107524", null, "2138", null, "92656", null, "1472", null, "39559", null, "1136", null, "44.4", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "3.4", null, "0.3", null, "4.0", null, "0.4", null, "5.1", null, "0.4", null, "6.4", null, "0.5", null, "8.2", null, "0.5", null, "5.9", null, "0.3", null, "5.8", null, "0.3", null, "6.2", null, "0.6", null, "5.6", null, "0.6", null, "5.5", null, "0.3", null, "5.8", null, "0.3", null, "5.5", null, "0.5", null, "6.6", null, "0.5", null, "7.1", null, "0.5", null, "7.7", null, "0.5", null, "5.2", null, "0.4", null, "3.2", null, "0.3", null, "2.7", null, "0.4", null, "9.2", null, "0.5", null, "2.7", null, "0.3", null, "15.2", null, "0.5", null, "11.9", null, "0.3", null, "38.1", null, "0.5", null, "86.6", null, "0.5", null, "84.8", null, "0.5", null, "79.0", null, "0.8", null, "32.5", null, "0.6", null, "30.1", null, "0.6", null, "25.9", null, "0.5", null, "11.1", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "41", "04"], ["5001900US4105", "Congressional District 5 (119th Congress), Oregon", "717312", null, "10524", null, "32266", null, "1756", null, "43264", null, "3469", null, "42235", null, "3791", null, "40571", null, "2306", null, "33447", null, "2569", null, "43100", null, "2516", null, "49775", null, "2567", null, "49856", null, "4259", null, "53876", null, "3829", null, "44755", null, "2740", null, "46208", null, "2414", null, "42706", null, "3518", null, "45513", null, "3421", null, "47381", null, "3055", null, "40560", null, "2970", null, "28704", null, "1979", null, "16417", null, "1810", null, "16678", null, "2087", null, "85499", null, "4231", null, "27347", null, "1741", null, "145112", null, "5189", null, "46671", null, "3048", null, "270625", null, "6159", null, "591419", null, "8898", null, "572200", null, "8336", null, "551733", null, "7709", null, "195253", null, "4745", null, "176604", null, "4441", null, "149740", null, "3905", null, "61799", null, "2147", null, "42.3", null, "0.6", null, "96.3", null, "1.8", null, "69.8", null, "1.8", null, "35.4", null, "1.1", null, "34.3", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.5", null, "0.2", null, "6.0", null, "0.5", null, "5.9", null, "0.5", null, "5.7", null, "0.3", null, "4.7", null, "0.3", null, "6.0", null, "0.4", null, "6.9", null, "0.3", null, "7.0", null, "0.6", null, "7.5", null, "0.5", null, "6.2", null, "0.4", null, "6.4", null, "0.3", null, "6.0", null, "0.5", null, "6.3", null, "0.5", null, "6.6", null, "0.4", null, "5.7", null, "0.4", null, "4.0", null, "0.3", null, "2.3", null, "0.3", null, "2.3", null, "0.3", null, "11.9", null, "0.5", null, "3.8", null, "0.2", null, "20.2", null, "0.6", null, "6.5", null, "0.4", null, "37.7", null, "0.7", null, "82.4", null, "0.6", null, "79.8", null, "0.6", null, "76.9", null, "0.6", null, "27.2", null, "0.7", null, "24.6", null, "0.6", null, "20.9", null, "0.5", null, "8.6", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "0.8", null, "-888888888.0", "(X)", "351964", null, "5914", null, "16533", null, "1501", null, "22848", null, "2719", null, "21196", null, "2536", null, "20321", null, "1557", null, "16914", null, "1755", null, "22217", null, "1709", null, "23841", null, "1856", null, "25825", null, "2810", null, "26796", null, "2191", null, "20679", null, "1679", null, "23835", null, "1680", null, "20571", null, "2158", null, "22445", null, "2206", null, "22547", null, "1983", null, "17443", null, "1821", null, "13135", null, "1421", null, "7431", null, "1174", null, "7387", null, "1350", null, "44044", null, "2819", null, "13167", null, "1210", null, "73744", null, "3103", null, "24068", null, "2139", null, "135914", null, "3818", null, "287963", null, "5014", null, "278220", null, "4745", null, "268008", null, "4412", null, "90388", null, "2813", null, "80869", null, "2470", null, "67943", null, "2154", null, "27953", null, "1380", null, "41.3", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.7", null, "0.4", null, "6.5", null, "0.7", null, "6.0", null, "0.7", null, "5.8", null, "0.4", null, "4.8", null, "0.5", null, "6.3", null, "0.5", null, "6.8", null, "0.5", null, "7.3", null, "0.8", null, "7.6", null, "0.6", null, "5.9", null, "0.4", null, "6.8", null, "0.5", null, "5.8", null, "0.6", null, "6.4", null, "0.6", null, "6.4", null, "0.6", null, "5.0", null, "0.5", null, "3.7", null, "0.4", null, "2.1", null, "0.3", null, "2.1", null, "0.4", null, "12.5", null, "0.7", null, "3.7", null, "0.3", null, "21.0", null, "0.7", null, "6.8", null, "0.6", null, "38.6", null, "0.9", null, "81.8", null, "0.7", null, "79.0", null, "0.7", null, "76.1", null, "0.7", null, "25.7", null, "0.8", null, "23.0", null, "0.7", null, "19.3", null, "0.6", null, "7.9", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "365348", null, "6544", null, "15733", null, "1908", null, "20416", null, "2096", null, "21039", null, "2416", null, "20250", null, "1744", null, "16533", null, "1632", null, "20883", null, "1681", null, "25934", null, "1520", null, "24031", null, "2391", null, "27080", null, "2762", null, "24076", null, "1749", null, "22373", null, "1355", null, "22135", null, "2035", null, "23068", null, "1922", null, "24834", null, "2027", null, "23117", null, "1990", null, "15569", null, "1581", null, "8986", null, "1193", null, "9291", null, "1514", null, "41455", null, "2338", null, "14180", null, "1358", null, "71368", null, "3455", null, "22603", null, "1933", null, "134711", null, "3843", null, "303456", null, "5400", null, "293980", null, "4950", null, "283725", null, "4612", null, "104865", null, "2901", null, "95735", null, "2934", null, "81797", null, "2370", null, "33846", null, "1228", null, "43.2", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.3", null, "0.5", null, "5.6", null, "0.6", null, "5.8", null, "0.6", null, "5.5", null, "0.4", null, "4.5", null, "0.4", null, "5.7", null, "0.4", null, "7.1", null, "0.4", null, "6.6", null, "0.7", null, "7.4", null, "0.8", null, "6.6", null, "0.4", null, "6.1", null, "0.4", null, "6.1", null, "0.5", null, "6.3", null, "0.5", null, "6.8", null, "0.6", null, "6.3", null, "0.5", null, "4.3", null, "0.4", null, "2.5", null, "0.3", null, "2.5", null, "0.4", null, "11.3", null, "0.6", null, "3.9", null, "0.3", null, "19.5", null, "0.8", null, "6.2", null, "0.5", null, "36.9", null, "0.9", null, "83.1", null, "0.8", null, "80.5", null, "0.8", null, "77.7", null, "0.8", null, "28.7", null, "0.8", null, "26.2", null, "0.8", null, "22.4", null, "0.6", null, "9.3", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "41", "05"], ["5001900US4106", "Congressional District 6 (119th Congress), Oregon", "720968", null, "9228", null, "38646", null, "2346", null, "42459", null, "3867", null, "43399", null, "3174", null, "44407", null, "2548", null, "48984", null, "2905", null, "49773", null, "3206", null, "55990", null, "3516", null, "49322", null, "4346", null, "51138", null, "3835", null, "44580", null, "2540", null, "42741", null, "2792", null, "39231", null, "3046", null, "40680", null, "3061", null, "36759", null, "2795", null, "36557", null, "3050", null, "24264", null, "2226", null, "17112", null, "2242", null, "14926", null, "2001", null, "85858", null, "3605", null, "27709", null, "1927", null, "152213", null, "4718", null, "65682", null, "2895", null, "299614", null, "6527", null, "586569", null, "7365", null, "568755", null, "6865", null, "542356", null, "6963", null, "170298", null, "4626", null, "155442", null, "4589", null, "129618", null, "3486", null, "56302", null, "2421", null, "38.8", null, "0.9", null, "98.6", null, "2.0", null, "64.2", null, "1.5", null, "29.5", null, "1.0", null, "34.7", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.3", null, "5.9", null, "0.5", null, "6.0", null, "0.4", null, "6.2", null, "0.3", null, "6.8", null, "0.4", null, "6.9", null, "0.5", null, "7.8", null, "0.5", null, "6.8", null, "0.6", null, "7.1", null, "0.5", null, "6.2", null, "0.3", null, "5.9", null, "0.4", null, "5.4", null, "0.4", null, "5.6", null, "0.4", null, "5.1", null, "0.4", null, "5.1", null, "0.4", null, "3.4", null, "0.3", null, "2.4", null, "0.3", null, "2.1", null, "0.3", null, "11.9", null, "0.4", null, "3.8", null, "0.3", null, "21.1", null, "0.5", null, "9.1", null, "0.4", null, "41.6", null, "0.7", null, "81.4", null, "0.5", null, "78.9", null, "0.5", null, "75.2", null, "0.6", null, "23.6", null, "0.6", null, "21.6", null, "0.6", null, "18.0", null, "0.5", null, "7.8", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "0.8", null, "-888888888.0", "(X)", "357915", null, "5659", null, "18144", null, "1242", null, "21249", null, "2869", null, "23546", null, "2857", null, "23490", null, "1596", null, "24821", null, "2027", null, "26213", null, "1953", null, "28583", null, "2239", null, "25131", null, "2545", null, "27248", null, "2298", null, "21040", null, "1626", null, "22006", null, "1903", null, "19967", null, "1948", null, "19864", null, "1913", null, "16816", null, "1759", null, "16397", null, "1846", null, "10360", null, "1263", null, "6498", null, "1108", null, "6542", null, "1235", null, "44795", null, "2524", null, "14278", null, "1138", null, "77217", null, "3116", null, "34033", null, "2055", null, "155486", null, "4083", null, "290739", null, "4713", null, "280698", null, "4499", null, "267137", null, "4754", null, "76477", null, "2919", null, "69000", null, "2786", null, "56613", null, "2057", null, "23400", null, "1307", null, "37.6", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.1", null, "0.3", null, "5.9", null, "0.8", null, "6.6", null, "0.8", null, "6.6", null, "0.4", null, "6.9", null, "0.5", null, "7.3", null, "0.6", null, "8.0", null, "0.6", null, "7.0", null, "0.7", null, "7.6", null, "0.6", null, "5.9", null, "0.4", null, "6.1", null, "0.5", null, "5.6", null, "0.5", null, "5.5", null, "0.5", null, "4.7", null, "0.5", null, "4.6", null, "0.5", null, "2.9", null, "0.4", null, "1.8", null, "0.3", null, "1.8", null, "0.3", null, "12.5", null, "0.6", null, "4.0", null, "0.3", null, "21.6", null, "0.7", null, "9.5", null, "0.5", null, "43.4", null, "1.0", null, "81.2", null, "0.8", null, "78.4", null, "0.7", null, "74.6", null, "0.8", null, "21.4", null, "0.8", null, "19.3", null, "0.8", null, "15.8", null, "0.6", null, "6.5", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "363053", null, "6138", null, "20502", null, "1980", null, "21210", null, "2354", null, "19853", null, "2206", null, "20917", null, "2167", null, "24163", null, "1942", null, "23560", null, "2108", null, "27407", null, "2023", null, "24191", null, "3031", null, "23890", null, "2624", null, "23540", null, "1966", null, "20735", null, "1653", null, "19264", null, "1801", null, "20816", null, "2038", null, "19943", null, "1954", null, "20160", null, "1934", null, "13904", null, "1431", null, "10614", null, "1670", null, "8384", null, "1295", null, "41063", null, "2409", null, "13431", null, "1702", null, "74996", null, "3478", null, "31649", null, "1955", null, "144128", null, "4090", null, "295830", null, "4692", null, "288057", null, "4397", null, "275219", null, "4172", null, "93821", null, "2811", null, "86442", null, "2930", null, "73005", null, "2216", null, "32902", null, "1550", null, "40.0", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.6", null, "0.5", null, "5.8", null, "0.6", null, "5.5", null, "0.6", null, "5.8", null, "0.6", null, "6.7", null, "0.5", null, "6.5", null, "0.6", null, "7.5", null, "0.5", null, "6.7", null, "0.8", null, "6.6", null, "0.7", null, "6.5", null, "0.5", null, "5.7", null, "0.5", null, "5.3", null, "0.5", null, "5.7", null, "0.6", null, "5.5", null, "0.5", null, "5.6", null, "0.5", null, "3.8", null, "0.4", null, "2.9", null, "0.5", null, "2.3", null, "0.4", null, "11.3", null, "0.6", null, "3.7", null, "0.5", null, "20.7", null, "0.8", null, "8.7", null, "0.5", null, "39.7", null, "0.9", null, "81.5", null, "0.8", null, "79.3", null, "0.8", null, "75.8", null, "0.9", null, "25.8", null, "0.8", null, "23.8", null, "0.8", null, "20.1", null, "0.6", null, "9.1", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "41", "06"], ["5001900US4201", "Congressional District 1 (119th Congress), Pennsylvania", "768164", null, "6689", null, "33758", null, "1073", null, "41284", null, "2953", null, "44501", null, "3283", null, "46441", null, "1755", null, "43597", null, "1825", null, "41050", null, "1943", null, "42257", null, "1696", null, "47652", null, "3665", null, "51198", null, "3843", null, "43684", null, "1453", null, "50453", null, "1999", null, "54777", null, "3567", null, "60816", null, "3466", null, "52538", null, "3353", null, "44033", null, "3309", null, "31488", null, "2254", null, "19445", null, "1962", null, "19192", null, "1973", null, "85785", null, "2665", null, "30954", null, "1305", null, "150497", null, "3129", null, "59084", null, "2049", null, "272195", null, "4171", null, "638470", null, "5948", null, "617667", null, "5417", null, "596107", null, "5399", null, "227512", null, "4358", null, "204263", null, "3810", null, "166696", null, "2611", null, "70125", null, "1876", null, "44.2", null, "0.4", null, "96.9", null, "1.0", null, "70.3", null, "1.1", null, "37.0", null, "0.8", null, "33.4", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.4", null, "0.1", null, "5.4", null, "0.4", null, "5.8", null, "0.4", null, "6.0", null, "0.2", null, "5.7", null, "0.2", null, "5.3", null, "0.2", null, "5.5", null, "0.2", null, "6.2", null, "0.5", null, "6.7", null, "0.5", null, "5.7", null, "0.2", null, "6.6", null, "0.3", null, "7.1", null, "0.5", null, "7.9", null, "0.4", null, "6.8", null, "0.4", null, "5.7", null, "0.4", null, "4.1", null, "0.3", null, "2.5", null, "0.3", null, "2.5", null, "0.3", null, "11.2", null, "0.3", null, "4.0", null, "0.2", null, "19.6", null, "0.3", null, "7.7", null, "0.2", null, "35.4", null, "0.4", null, "83.1", null, "0.4", null, "80.4", null, "0.3", null, "77.6", null, "0.4", null, "29.6", null, "0.6", null, "26.6", null, "0.5", null, "21.7", null, "0.4", null, "9.1", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "0.9", null, "-888888888.0", "(X)", "377942", null, "3953", null, "17242", null, "643", null, "20681", null, "1858", null, "22917", null, "1793", null, "22970", null, "1363", null, "22175", null, "1176", null, "21580", null, "1234", null, "21370", null, "1279", null, "23763", null, "2309", null, "25676", null, "2380", null, "21505", null, "808", null, "25441", null, "1473", null, "28174", null, "2165", null, "28358", null, "2214", null, "25311", null, "2080", null, "20906", null, "1914", null, "13936", null, "1457", null, "8713", null, "1066", null, "7224", null, "1204", null, "43598", null, "1544", null, "15391", null, "1110", null, "76231", null, "1888", null, "29754", null, "1178", null, "137534", null, "2872", null, "312235", null, "3759", null, "301711", null, "3402", null, "291207", null, "3508", null, "104448", null, "2721", null, "93645", null, "2526", null, "76090", null, "1442", null, "29873", null, "1233", null, "43.0", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.6", null, "0.2", null, "5.5", null, "0.5", null, "6.1", null, "0.5", null, "6.1", null, "0.3", null, "5.9", null, "0.3", null, "5.7", null, "0.3", null, "5.7", null, "0.3", null, "6.3", null, "0.6", null, "6.8", null, "0.6", null, "5.7", null, "0.2", null, "6.7", null, "0.4", null, "7.5", null, "0.6", null, "7.5", null, "0.6", null, "6.7", null, "0.5", null, "5.5", null, "0.5", null, "3.7", null, "0.4", null, "2.3", null, "0.3", null, "1.9", null, "0.3", null, "11.5", null, "0.4", null, "4.1", null, "0.3", null, "20.2", null, "0.4", null, "7.9", null, "0.3", null, "36.4", null, "0.5", null, "82.6", null, "0.5", null, "79.8", null, "0.4", null, "77.1", null, "0.5", null, "27.6", null, "0.7", null, "24.8", null, "0.7", null, "20.1", null, "0.4", null, "7.9", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "390222", null, "3909", null, "16516", null, "843", null, "20603", null, "2551", null, "21584", null, "2764", null, "23471", null, "1392", null, "21422", null, "1242", null, "19470", null, "1171", null, "20887", null, "875", null, "23889", null, "2327", null, "25522", null, "2321", null, "22179", null, "978", null, "25012", null, "1131", null, "26603", null, "2319", null, "32458", null, "2088", null, "27227", null, "2177", null, "23127", null, "2258", null, "17552", null, "1563", null, "10732", null, "1521", null, "11968", null, "1492", null, "42187", null, "2077", null, "15563", null, "928", null, "74266", null, "2534", null, "29330", null, "1277", null, "134661", null, "2340", null, "326235", null, "3425", null, "315956", null, "3089", null, "304900", null, "3143", null, "123064", null, "2502", null, "110618", null, "2288", null, "90606", null, "1468", null, "40252", null, "967", null, "45.4", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.2", null, "0.2", null, "5.3", null, "0.7", null, "5.5", null, "0.7", null, "6.0", null, "0.3", null, "5.5", null, "0.3", null, "5.0", null, "0.3", null, "5.4", null, "0.2", null, "6.1", null, "0.6", null, "6.5", null, "0.6", null, "5.7", null, "0.2", null, "6.4", null, "0.3", null, "6.8", null, "0.6", null, "8.3", null, "0.5", null, "7.0", null, "0.6", null, "5.9", null, "0.6", null, "4.5", null, "0.4", null, "2.8", null, "0.4", null, "3.1", null, "0.4", null, "10.8", null, "0.5", null, "4.0", null, "0.2", null, "19.0", null, "0.6", null, "7.5", null, "0.3", null, "34.5", null, "0.4", null, "83.6", null, "0.6", null, "81.0", null, "0.6", null, "78.1", null, "0.6", null, "31.5", null, "0.7", null, "28.3", null, "0.6", null, "23.2", null, "0.4", null, "10.3", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "42", "01"], ["5001900US4202", "Congressional District 2 (119th Congress), Pennsylvania", "738540", null, "21617", null, "42988", null, "5799", null, "43292", null, "6586", null, "54539", null, "5510", null, "48716", null, "3625", null, "44140", null, "4638", null, "52359", null, "4716", null, "58705", null, "4855", null, "54279", null, "5489", null, "54928", null, "6107", null, "38425", null, "2621", null, "40337", null, "3045", null, "47432", null, "4861", null, "44537", null, "4608", null, "35887", null, "2866", null, "33736", null, "3171", null, "20781", null, "2802", null, "11714", null, "1643", null, "11745", null, "1805", null, "97831", null, "7917", null, "27120", null, "2720", null, "167939", null, "12160", null, "65736", null, "5336", null, "313127", null, "10927", null, "590199", null, "13898", null, "570601", null, "13682", null, "539345", null, "12660", null, "158400", null, "6041", null, "141495", null, "5969", null, "113863", null, "4431", null, "44240", null, "3141", null, "37.1", null, "0.7", null, "91.3", null, "2.9", null, "61.7", null, "2.8", null, "24.9", null, "1.2", null, "36.8", null, "2.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.8", null, "0.7", null, "5.9", null, "0.8", null, "7.4", null, "0.7", null, "6.6", null, "0.5", null, "6.0", null, "0.6", null, "7.1", null, "0.6", null, "7.9", null, "0.6", null, "7.3", null, "0.7", null, "7.4", null, "0.8", null, "5.2", null, "0.4", null, "5.5", null, "0.4", null, "6.4", null, "0.7", null, "6.0", null, "0.6", null, "4.9", null, "0.4", null, "4.6", null, "0.4", null, "2.8", null, "0.4", null, "1.6", null, "0.2", null, "1.6", null, "0.2", null, "13.2", null, "0.8", null, "3.7", null, "0.3", null, "22.7", null, "1.2", null, "8.9", null, "0.7", null, "42.4", null, "0.8", null, "79.9", null, "1.1", null, "77.3", null, "1.2", null, "73.0", null, "1.1", null, "21.4", null, "0.9", null, "19.2", null, "0.8", null, "15.4", null, "0.6", null, "6.0", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "0.9", null, "-888888888.0", "(X)", "352395", null, "11933", null, "19880", null, "3614", null, "19752", null, "4053", null, "26670", null, "4050", null, "24630", null, "3001", null, "22752", null, "2726", null, "26653", null, "3075", null, "27510", null, "2858", null, "26818", null, "3999", null, "28498", null, "4215", null, "17695", null, "1753", null, "18724", null, "1954", null, "22759", null, "2967", null, "20826", null, "2820", null, "16990", null, "2065", null, "15912", null, "2150", null, "9272", null, "1976", null, "4273", null, "1029", null, "2781", null, "897", null, "46422", null, "5323", null, "13729", null, "1949", null, "80031", null, "7723", null, "33653", null, "3438", null, "156861", null, "6937", null, "281553", null, "8220", null, "272364", null, "8190", null, "255751", null, "7657", null, "70054", null, "3355", null, "61981", null, "3257", null, "49228", null, "2361", null, "16326", null, "2095", null, "36.1", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.6", null, "0.9", null, "5.6", null, "1.1", null, "7.6", null, "1.1", null, "7.0", null, "0.8", null, "6.5", null, "0.8", null, "7.6", null, "0.8", null, "7.8", null, "0.8", null, "7.6", null, "1.1", null, "8.1", null, "1.2", null, "5.0", null, "0.5", null, "5.3", null, "0.5", null, "6.5", null, "0.8", null, "5.9", null, "0.8", null, "4.8", null, "0.6", null, "4.5", null, "0.6", null, "2.6", null, "0.6", null, "1.2", null, "0.3", null, "0.8", null, "0.3", null, "13.2", null, "1.3", null, "3.9", null, "0.5", null, "22.7", null, "1.7", null, "9.5", null, "0.9", null, "44.5", null, "1.3", null, "79.9", null, "1.6", null, "77.3", null, "1.7", null, "72.6", null, "1.6", null, "19.9", null, "1.1", null, "17.6", null, "1.0", null, "14.0", null, "0.8", null, "4.6", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "386145", null, "12635", null, "23108", null, "3403", null, "23540", null, "4373", null, "27869", null, "4081", null, "24086", null, "2228", null, "21388", null, "3085", null, "25706", null, "2900", null, "31195", null, "3303", null, "27461", null, "3258", null, "26430", null, "3827", null, "20730", null, "1661", null, "21613", null, "2361", null, "24673", null, "3131", null, "23711", null, "3060", null, "18897", null, "2023", null, "17824", null, "2082", null, "11509", null, "1747", null, "7441", null, "1260", null, "8964", null, "1759", null, "51409", null, "4922", null, "13391", null, "1873", null, "87908", null, "7552", null, "32083", null, "3650", null, "156266", null, "6897", null, "308646", null, "8753", null, "298237", null, "8674", null, "283594", null, "7715", null, "88346", null, "4102", null, "79514", null, "3983", null, "64635", null, "3016", null, "27914", null, "1942", null, "37.7", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.0", null, "0.8", null, "6.1", null, "1.1", null, "7.2", null, "1.0", null, "6.2", null, "0.6", null, "5.5", null, "0.8", null, "6.7", null, "0.7", null, "8.1", null, "0.8", null, "7.1", null, "0.8", null, "6.8", null, "0.9", null, "5.4", null, "0.4", null, "5.6", null, "0.6", null, "6.4", null, "0.8", null, "6.1", null, "0.8", null, "4.9", null, "0.5", null, "4.6", null, "0.5", null, "3.0", null, "0.4", null, "1.9", null, "0.3", null, "2.3", null, "0.5", null, "13.3", null, "1.0", null, "3.5", null, "0.5", null, "22.8", null, "1.5", null, "8.3", null, "0.9", null, "40.5", null, "1.1", null, "79.9", null, "1.5", null, "77.2", null, "1.5", null, "73.4", null, "1.5", null, "22.9", null, "1.1", null, "20.6", null, "1.0", null, "16.7", null, "0.8", null, "7.2", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "42", "02"], ["5001900US4203", "Congressional District 3 (119th Congress), Pennsylvania", "767563", null, "21141", null, "44136", null, "5406", null, "34318", null, "4906", null, "42956", null, "5076", null, "50507", null, "3516", null, "58564", null, "4747", null, "79893", null, "4398", null, "82708", null, "5104", null, "57283", null, "6066", null, "50995", null, "6354", null, "40244", null, "2653", null, "36674", null, "3300", null, "35000", null, "3821", null, "36235", null, "3995", null, "33629", null, "3063", null, "33963", null, "3231", null, "22630", null, "2466", null, "16627", null, "1940", null, "11201", null, "1825", null, "77274", null, "7244", null, "24268", null, "2595", null, "145678", null, "10947", null, "84803", null, "5508", null, "379950", null, "11012", null, "637668", null, "15316", null, "621885", null, "14840", null, "583831", null, "14149", null, "154285", null, "5836", null, "139709", null, "5680", null, "118050", null, "4445", null, "50458", null, "3186", null, "34.4", null, "0.6", null, "87.7", null, "2.7", null, "52.3", null, "2.5", null, "23.4", null, "1.0", null, "28.9", null, "2.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.8", null, "0.6", null, "4.5", null, "0.6", null, "5.6", null, "0.6", null, "6.6", null, "0.4", null, "7.6", null, "0.6", null, "10.4", null, "0.6", null, "10.8", null, "0.6", null, "7.5", null, "0.7", null, "6.6", null, "0.8", null, "5.2", null, "0.4", null, "4.8", null, "0.4", null, "4.6", null, "0.5", null, "4.7", null, "0.5", null, "4.4", null, "0.4", null, "4.4", null, "0.4", null, "2.9", null, "0.3", null, "2.2", null, "0.3", null, "1.5", null, "0.2", null, "10.1", null, "0.8", null, "3.2", null, "0.3", null, "19.0", null, "1.1", null, "11.0", null, "0.7", null, "49.5", null, "0.8", null, "83.1", null, "1.1", null, "81.0", null, "1.1", null, "76.1", null, "1.0", null, "20.1", null, "0.7", null, "18.2", null, "0.7", null, "15.4", null, "0.6", null, "6.6", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.1", null, "-888888888.0", "(X)", "358614", null, "11679", null, "24088", null, "3371", null, "19242", null, "3458", null, "23326", null, "3889", null, "24469", null, "2937", null, "27188", null, "2926", null, "36200", null, "3086", null, "40640", null, "3134", null, "25211", null, "3930", null, "24223", null, "3611", null, "18918", null, "1724", null, "17016", null, "2380", null, "14119", null, "2201", null, "17896", null, "2467", null, "14616", null, "2139", null, "12160", null, "1824", null, "10240", null, "1905", null, "5761", null, "1279", null, "3301", null, "1031", null, "42568", null, "5106", null, "12392", null, "1848", null, "79048", null, "6972", null, "39265", null, "3347", null, "177931", null, "7302", null, "287560", null, "9707", null, "279566", null, "9558", null, "262212", null, "9431", null, "63974", null, "3562", null, "56887", null, "3401", null, "46078", null, "2648", null, "19302", null, "2202", null, "33.1", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.7", null, "0.9", null, "5.4", null, "0.9", null, "6.5", null, "1.0", null, "6.8", null, "0.8", null, "7.6", null, "0.8", null, "10.1", null, "0.8", null, "11.3", null, "0.8", null, "7.0", null, "1.0", null, "6.8", null, "1.0", null, "5.3", null, "0.5", null, "4.7", null, "0.7", null, "3.9", null, "0.6", null, "5.0", null, "0.7", null, "4.1", null, "0.6", null, "3.4", null, "0.5", null, "2.9", null, "0.5", null, "1.6", null, "0.4", null, "0.9", null, "0.3", null, "11.9", null, "1.3", null, "3.5", null, "0.5", null, "22.0", null, "1.6", null, "10.9", null, "0.9", null, "49.6", null, "1.3", null, "80.2", null, "1.5", null, "78.0", null, "1.6", null, "73.1", null, "1.7", null, "17.8", null, "1.0", null, "15.9", null, "1.0", null, "12.8", null, "0.8", null, "5.4", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "408949", null, "12569", null, "20048", null, "3322", null, "15076", null, "3116", null, "19630", null, "3379", null, "26038", null, "2111", null, "31376", null, "3039", null, "43693", null, "2738", null, "42068", null, "3413", null, "32072", null, "4169", null, "26772", null, "4064", null, "21326", null, "1777", null, "19658", null, "2630", null, "20881", null, "2884", null, "18339", null, "2838", null, "19013", null, "1999", null, "21803", null, "2288", null, "12390", null, "1615", null, "10866", null, "1536", null, "7900", null, "1396", null, "34706", null, "4569", null, "11876", null, "1781", null, "66630", null, "7172", null, "45538", null, "3753", null, "202019", null, "6836", null, "350108", null, "9019", null, "342319", null, "8879", null, "321619", null, "8564", null, "90311", null, "3657", null, "82822", null, "3637", null, "71972", null, "2809", null, "31156", null, "1895", null, "36.0", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.9", null, "0.7", null, "3.7", null, "0.7", null, "4.8", null, "0.8", null, "6.4", null, "0.5", null, "7.7", null, "0.7", null, "10.7", null, "0.7", null, "10.3", null, "0.8", null, "7.8", null, "1.0", null, "6.5", null, "1.0", null, "5.2", null, "0.5", null, "4.8", null, "0.6", null, "5.1", null, "0.7", null, "4.5", null, "0.7", null, "4.6", null, "0.5", null, "5.3", null, "0.6", null, "3.0", null, "0.4", null, "2.7", null, "0.4", null, "1.9", null, "0.3", null, "8.5", null, "1.0", null, "2.9", null, "0.4", null, "16.3", null, "1.4", null, "11.1", null, "0.9", null, "49.4", null, "1.0", null, "85.6", null, "1.4", null, "83.7", null, "1.4", null, "78.6", null, "1.4", null, "22.1", null, "0.9", null, "20.3", null, "0.9", null, "17.6", null, "0.6", null, "7.6", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "42", "03"], ["5001900US4204", "Congressional District 4 (119th Congress), Pennsylvania", "786204", null, "9933", null, "40488", null, "2368", null, "43219", null, "3238", null, "46213", null, "3428", null, "49278", null, "2574", null, "44958", null, "2848", null, "41234", null, "2994", null, "51105", null, "2533", null, "54499", null, "3673", null, "55864", null, "3894", null, "48834", null, "2182", null, "45297", null, "2545", null, "50361", null, "3929", null, "53837", null, "3641", null, "50657", null, "2717", null, "40401", null, "2876", null, "29837", null, "2650", null, "21483", null, "1970", null, "18639", null, "1880", null, "89432", null, "3531", null, "29550", null, "2025", null, "159470", null, "4858", null, "64686", null, "3203", null, "296938", null, "6120", null, "647697", null, "8235", null, "626734", null, "7842", null, "599042", null, "7345", null, "214854", null, "4969", null, "194247", null, "4419", null, "161017", null, "3262", null, "69959", null, "2318", null, "41.9", null, "0.5", null, "97.9", null, "1.7", null, "68.8", null, "1.6", null, "34.6", null, "1.0", null, "34.2", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.1", null, "0.3", null, "5.5", null, "0.4", null, "5.9", null, "0.4", null, "6.3", null, "0.3", null, "5.7", null, "0.3", null, "5.2", null, "0.4", null, "6.5", null, "0.3", null, "6.9", null, "0.4", null, "7.1", null, "0.5", null, "6.2", null, "0.3", null, "5.8", null, "0.3", null, "6.4", null, "0.5", null, "6.8", null, "0.5", null, "6.4", null, "0.3", null, "5.1", null, "0.4", null, "3.8", null, "0.3", null, "2.7", null, "0.3", null, "2.4", null, "0.2", null, "11.4", null, "0.4", null, "3.8", null, "0.2", null, "20.3", null, "0.5", null, "8.2", null, "0.4", null, "37.8", null, "0.5", null, "82.4", null, "0.5", null, "79.7", null, "0.5", null, "76.2", null, "0.5", null, "27.3", null, "0.7", null, "24.7", null, "0.7", null, "20.5", null, "0.5", null, "8.9", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "0.9", null, "-888888888.0", "(X)", "388961", null, "5654", null, "20641", null, "1525", null, "22022", null, "2332", null, "24929", null, "2400", null, "26982", null, "1763", null, "22750", null, "1678", null, "20448", null, "2148", null, "26247", null, "1643", null, "26977", null, "2254", null, "28370", null, "2524", null, "24219", null, "1349", null, "23101", null, "1643", null, "24384", null, "2093", null, "26277", null, "2153", null, "24796", null, "1963", null, "17888", null, "1807", null, "12132", null, "1384", null, "10322", null, "1221", null, "6476", null, "1091", null, "46951", null, "2370", null, "15956", null, "1331", null, "83548", null, "3232", null, "33776", null, "1933", null, "151774", null, "3977", null, "316716", null, "4949", null, "305413", null, "4871", null, "291101", null, "4710", null, "97891", null, "2687", null, "87789", null, "2410", null, "71614", null, "1759", null, "28930", null, "1301", null, "40.6", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.3", null, "0.4", null, "5.7", null, "0.6", null, "6.4", null, "0.6", null, "6.9", null, "0.4", null, "5.8", null, "0.4", null, "5.3", null, "0.5", null, "6.7", null, "0.4", null, "6.9", null, "0.6", null, "7.3", null, "0.7", null, "6.2", null, "0.4", null, "5.9", null, "0.4", null, "6.3", null, "0.5", null, "6.8", null, "0.6", null, "6.4", null, "0.5", null, "4.6", null, "0.5", null, "3.1", null, "0.4", null, "2.7", null, "0.3", null, "1.7", null, "0.3", null, "12.1", null, "0.6", null, "4.1", null, "0.3", null, "21.5", null, "0.7", null, "8.7", null, "0.4", null, "39.0", null, "0.7", null, "81.4", null, "0.7", null, "78.5", null, "0.7", null, "74.8", null, "0.8", null, "25.2", null, "0.8", null, "22.6", null, "0.7", null, "18.4", null, "0.5", null, "7.4", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "397243", null, "6415", null, "19847", null, "1477", null, "21197", null, "2154", null, "21284", null, "2246", null, "22296", null, "1975", null, "22208", null, "1908", null, "20786", null, "1571", null, "24858", null, "1580", null, "27522", null, "2405", null, "27494", null, "2491", null, "24615", null, "1369", null, "22196", null, "1453", null, "25977", null, "2574", null, "27560", null, "2373", null, "25861", null, "1644", null, "22513", null, "1907", null, "17705", null, "1888", null, "11161", null, "1319", null, "12163", null, "1506", null, "42481", null, "2723", null, "13594", null, "1674", null, "75922", null, "3549", null, "30910", null, "2131", null, "145164", null, "3939", null, "330981", null, "5179", null, "321321", null, "4586", null, "307941", null, "4254", null, "116963", null, "3273", null, "106458", null, "3033", null, "89403", null, "2188", null, "41029", null, "1606", null, "43.1", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.0", null, "0.4", null, "5.3", null, "0.5", null, "5.4", null, "0.5", null, "5.6", null, "0.5", null, "5.6", null, "0.5", null, "5.2", null, "0.4", null, "6.3", null, "0.4", null, "6.9", null, "0.6", null, "6.9", null, "0.6", null, "6.2", null, "0.3", null, "5.6", null, "0.3", null, "6.5", null, "0.6", null, "6.9", null, "0.6", null, "6.5", null, "0.4", null, "5.7", null, "0.5", null, "4.5", null, "0.5", null, "2.8", null, "0.3", null, "3.1", null, "0.4", null, "10.7", null, "0.6", null, "3.4", null, "0.4", null, "19.1", null, "0.7", null, "7.8", null, "0.5", null, "36.5", null, "0.7", null, "83.3", null, "0.7", null, "80.9", null, "0.7", null, "77.5", null, "0.7", null, "29.4", null, "0.9", null, "26.8", null, "0.8", null, "22.5", null, "0.6", null, "10.3", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "42", "04"], ["5001900US4205", "Congressional District 5 (119th Congress), Pennsylvania", "768273", null, "10148", null, "43396", null, "1909", null, "49401", null, "3964", null, "45650", null, "3193", null, "56174", null, "2802", null, "49518", null, "2721", null, "44367", null, "2329", null, "53274", null, "2985", null, "52720", null, "3671", null, "53092", null, "3478", null, "45035", null, "2205", null, "46976", null, "2170", null, "46354", null, "3299", null, "47765", null, "3057", null, "42384", null, "2540", null, "36287", null, "2782", null, "23410", null, "1870", null, "17055", null, "1874", null, "15415", null, "1703", null, "95051", null, "4277", null, "29902", null, "1732", null, "168349", null, "5389", null, "75790", null, "3053", null, "309145", null, "6283", null, "617676", null, "8131", null, "599924", null, "7712", null, "562609", null, "7830", null, "182316", null, "4351", null, "163155", null, "3816", null, "134551", null, "3288", null, "55880", null, "2056", null, "39.0", null, "0.5", null, "92.8", null, "1.7", null, "65.1", null, "1.6", null, "28.9", null, "0.9", null, "36.2", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.6", null, "0.2", null, "6.4", null, "0.5", null, "5.9", null, "0.4", null, "7.3", null, "0.4", null, "6.4", null, "0.3", null, "5.8", null, "0.3", null, "6.9", null, "0.4", null, "6.9", null, "0.5", null, "6.9", null, "0.4", null, "5.9", null, "0.3", null, "6.1", null, "0.3", null, "6.0", null, "0.4", null, "6.2", null, "0.4", null, "5.5", null, "0.3", null, "4.7", null, "0.4", null, "3.0", null, "0.2", null, "2.2", null, "0.2", null, "2.0", null, "0.2", null, "12.4", null, "0.5", null, "3.9", null, "0.2", null, "21.9", null, "0.6", null, "9.9", null, "0.4", null, "40.2", null, "0.5", null, "80.4", null, "0.6", null, "78.1", null, "0.6", null, "73.2", null, "0.6", null, "23.7", null, "0.6", null, "21.2", null, "0.5", null, "17.5", null, "0.5", null, "7.3", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.0", null, "-888888888.0", "(X)", "369689", null, "6562", null, "22295", null, "1340", null, "24682", null, "2687", null, "22795", null, "2368", null, "26587", null, "2222", null, "24207", null, "1654", null, "21885", null, "1723", null, "25984", null, "2374", null, "25991", null, "2703", null, "25888", null, "2471", null, "22257", null, "1471", null, "23103", null, "1991", null, "22593", null, "2200", null, "22106", null, "1987", null, "20134", null, "1546", null, "16426", null, "1646", null, "10082", null, "1241", null, "7803", null, "1195", null, "4871", null, "1190", null, "47477", null, "2478", null, "14166", null, "1093", null, "83938", null, "3464", null, "36628", null, "2138", null, "150542", null, "4306", null, "295195", null, "5366", null, "285751", null, "5019", null, "267757", null, "4762", null, "81422", null, "2680", null, "72673", null, "2271", null, "59316", null, "1970", null, "22756", null, "1248", null, "38.0", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.0", null, "0.3", null, "6.7", null, "0.7", null, "6.2", null, "0.6", null, "7.2", null, "0.6", null, "6.5", null, "0.4", null, "5.9", null, "0.4", null, "7.0", null, "0.6", null, "7.0", null, "0.7", null, "7.0", null, "0.7", null, "6.0", null, "0.4", null, "6.2", null, "0.5", null, "6.1", null, "0.6", null, "6.0", null, "0.5", null, "5.4", null, "0.4", null, "4.4", null, "0.5", null, "2.7", null, "0.3", null, "2.1", null, "0.3", null, "1.3", null, "0.3", null, "12.8", null, "0.6", null, "3.8", null, "0.3", null, "22.7", null, "0.7", null, "9.9", null, "0.6", null, "40.7", null, "0.7", null, "79.8", null, "0.8", null, "77.3", null, "0.7", null, "72.4", null, "0.8", null, "22.0", null, "0.8", null, "19.7", null, "0.7", null, "16.0", null, "0.6", null, "6.2", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "398584", null, "5802", null, "21101", null, "1481", null, "24719", null, "2823", null, "22855", null, "2444", null, "29587", null, "2129", null, "25311", null, "2034", null, "22482", null, "1383", null, "27290", null, "1899", null, "26729", null, "2061", null, "27204", null, "2156", null, "22778", null, "1249", null, "23873", null, "1594", null, "23761", null, "1868", null, "25659", null, "1840", null, "22250", null, "1608", null, "19861", null, "1748", null, "13328", null, "1326", null, "9252", null, "1359", null, "10544", null, "1432", null, "47574", null, "2584", null, "15736", null, "1497", null, "84411", null, "2836", null, "39162", null, "1878", null, "158603", null, "4099", null, "322481", null, "5036", null, "314173", null, "4605", null, "294852", null, "5088", null, "100894", null, "2661", null, "90482", null, "2576", null, "75235", null, "1927", null, "33124", null, "1260", null, "39.9", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.3", null, "0.4", null, "6.2", null, "0.7", null, "5.7", null, "0.6", null, "7.4", null, "0.5", null, "6.4", null, "0.5", null, "5.6", null, "0.3", null, "6.8", null, "0.5", null, "6.7", null, "0.5", null, "6.8", null, "0.5", null, "5.7", null, "0.3", null, "6.0", null, "0.4", null, "6.0", null, "0.5", null, "6.4", null, "0.5", null, "5.6", null, "0.4", null, "5.0", null, "0.4", null, "3.3", null, "0.3", null, "2.3", null, "0.3", null, "2.6", null, "0.4", null, "11.9", null, "0.6", null, "3.9", null, "0.4", null, "21.2", null, "0.6", null, "9.8", null, "0.4", null, "39.8", null, "0.7", null, "80.9", null, "0.6", null, "78.8", null, "0.6", null, "74.0", null, "0.7", null, "25.3", null, "0.7", null, "22.7", null, "0.7", null, "18.9", null, "0.5", null, "8.3", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "42", "05"], ["5001900US4206", "Congressional District 6 (119th Congress), Pennsylvania", "796009", null, "6660", null, "42990", null, "1538", null, "48307", null, "2959", null, "49437", null, "2831", null, "58237", null, "1988", null, "50976", null, "2151", null, "46317", null, "1989", null, "47461", null, "1866", null, "51359", null, "3406", null, "54105", null, "3617", null, "48356", null, "1857", null, "49959", null, "1520", null, "50225", null, "3045", null, "50930", null, "3236", null, "43274", null, "2559", null, "41734", null, "2911", null, "30572", null, "1883", null, "16449", null, "1854", null, "15321", null, "1674", null, "97744", null, "2097", null, "33084", null, "1194", null, "173818", null, "3185", null, "76129", null, "2216", null, "308455", null, "4189", null, "644476", null, "5950", null, "622191", null, "5454", null, "587012", null, "4919", null, "198280", null, "4177", null, "178275", null, "3912", null, "147350", null, "2645", null, "62342", null, "1563", null, "40.3", null, "0.5", null, "98.5", null, "1.1", null, "67.6", null, "1.0", null, "31.0", null, "0.7", null, "36.6", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.2", null, "6.1", null, "0.4", null, "6.2", null, "0.3", null, "7.3", null, "0.2", null, "6.4", null, "0.3", null, "5.8", null, "0.2", null, "6.0", null, "0.2", null, "6.5", null, "0.4", null, "6.8", null, "0.4", null, "6.1", null, "0.2", null, "6.3", null, "0.2", null, "6.3", null, "0.4", null, "6.4", null, "0.4", null, "5.4", null, "0.3", null, "5.2", null, "0.4", null, "3.8", null, "0.2", null, "2.1", null, "0.2", null, "1.9", null, "0.2", null, "12.3", null, "0.2", null, "4.2", null, "0.1", null, "21.8", null, "0.3", null, "9.6", null, "0.3", null, "38.8", null, "0.4", null, "81.0", null, "0.4", null, "78.2", null, "0.3", null, "73.7", null, "0.4", null, "24.9", null, "0.5", null, "22.4", null, "0.5", null, "18.5", null, "0.3", null, "7.8", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.0", null, "-888888888.0", "(X)", "395003", null, "3737", null, "22226", null, "948", null, "25574", null, "2151", null, "24628", null, "2169", null, "28425", null, "1513", null, "25685", null, "1391", null, "23925", null, "1260", null, "23351", null, "1270", null, "25196", null, "2426", null, "28050", null, "2534", null, "24963", null, "1474", null, "25136", null, "1069", null, "24344", null, "2059", null, "25694", null, "2029", null, "20854", null, "1642", null, "20345", null, "1722", null, "14129", null, "1278", null, "7102", null, "1095", null, "5376", null, "1047", null, "50202", null, "1248", null, "16593", null, "971", null, "89021", null, "1915", null, "37517", null, "1482", null, "154632", null, "2746", null, "316669", null, "3389", null, "305982", null, "3119", null, "290063", null, "2957", null, "93500", null, "2536", null, "84292", null, "2523", null, "67806", null, "1427", null, "26607", null, "1080", null, "39.7", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.6", null, "0.2", null, "6.5", null, "0.6", null, "6.2", null, "0.5", null, "7.2", null, "0.4", null, "6.5", null, "0.3", null, "6.1", null, "0.3", null, "5.9", null, "0.3", null, "6.4", null, "0.6", null, "7.1", null, "0.6", null, "6.3", null, "0.4", null, "6.4", null, "0.3", null, "6.2", null, "0.5", null, "6.5", null, "0.5", null, "5.3", null, "0.4", null, "5.2", null, "0.4", null, "3.6", null, "0.3", null, "1.8", null, "0.3", null, "1.4", null, "0.3", null, "12.7", null, "0.3", null, "4.2", null, "0.2", null, "22.5", null, "0.4", null, "9.5", null, "0.3", null, "39.1", null, "0.5", null, "80.2", null, "0.5", null, "77.5", null, "0.4", null, "73.4", null, "0.5", null, "23.7", null, "0.7", null, "21.3", null, "0.6", null, "17.2", null, "0.4", null, "6.7", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "401006", null, "4308", null, "20764", null, "1118", null, "22733", null, "2107", null, "24809", null, "2123", null, "29812", null, "1688", null, "25291", null, "1493", null, "22392", null, "1100", null, "24110", null, "988", null, "26163", null, "2237", null, "26055", null, "2289", null, "23393", null, "915", null, "24823", null, "766", null, "25881", null, "1787", null, "25236", null, "1902", null, "22420", null, "1782", null, "21389", null, "1974", null, "16443", null, "1251", null, "9347", null, "1134", null, "9945", null, "1186", null, "47542", null, "1292", null, "16491", null, "969", null, "84797", null, "2347", null, "38612", null, "1583", null, "153823", null, "2599", null, "327807", null, "3603", null, "316209", null, "3269", null, "296949", null, "3123", null, "104780", null, "2455", null, "93983", null, "2339", null, "79544", null, "1803", null, "35735", null, "1114", null, "41.0", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.3", null, "5.7", null, "0.5", null, "6.2", null, "0.5", null, "7.4", null, "0.4", null, "6.3", null, "0.4", null, "5.6", null, "0.3", null, "6.0", null, "0.2", null, "6.5", null, "0.6", null, "6.5", null, "0.6", null, "5.8", null, "0.2", null, "6.2", null, "0.2", null, "6.5", null, "0.4", null, "6.3", null, "0.5", null, "5.6", null, "0.4", null, "5.3", null, "0.5", null, "4.1", null, "0.3", null, "2.3", null, "0.3", null, "2.5", null, "0.3", null, "11.9", null, "0.3", null, "4.1", null, "0.2", null, "21.1", null, "0.5", null, "9.6", null, "0.4", null, "38.4", null, "0.4", null, "81.7", null, "0.5", null, "78.9", null, "0.5", null, "74.1", null, "0.6", null, "26.1", null, "0.6", null, "23.4", null, "0.6", null, "19.8", null, "0.4", null, "8.9", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "42", "06"], ["5001900US4207", "Congressional District 7 (119th Congress), Pennsylvania", "788445", null, "2655", null, "38906", null, "1016", null, "45975", null, "3099", null, "44771", null, "3291", null, "53379", null, "1560", null, "51687", null, "1897", null, "46067", null, "1722", null, "49823", null, "1563", null, "50215", null, "3796", null, "54380", null, "3620", null, "46496", null, "1660", null, "47032", null, "1054", null, "47431", null, "3224", null, "54784", null, "3231", null, "49239", null, "2504", null, "41255", null, "2393", null, "29249", null, "2226", null, "19342", null, "1986", null, "18414", null, "2003", null, "90746", null, "943", null, "29370", null, "776", null, "159022", null, "1191", null, "75696", null, "1991", null, "305551", null, "2671", null, "650339", null, "2857", null, "629423", null, "2324", null, "596245", null, "2794", null, "212283", null, "3425", null, "189547", null, "2862", null, "157499", null, "1050", null, "67005", null, "1193", null, "41.3", null, "0.4", null, "97.2", null, "0.6", null, "67.1", null, "0.5", null, "33.4", null, "0.3", null, "33.7", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.9", null, "0.1", null, "5.8", null, "0.4", null, "5.7", null, "0.4", null, "6.8", null, "0.2", null, "6.6", null, "0.2", null, "5.8", null, "0.2", null, "6.3", null, "0.2", null, "6.4", null, "0.5", null, "6.9", null, "0.5", null, "5.9", null, "0.2", null, "6.0", null, "0.1", null, "6.0", null, "0.4", null, "6.9", null, "0.4", null, "6.2", null, "0.3", null, "5.2", null, "0.3", null, "3.7", null, "0.3", null, "2.5", null, "0.3", null, "2.3", null, "0.3", null, "11.5", null, "0.1", null, "3.7", null, "0.1", null, "20.2", null, "0.1", null, "9.6", null, "0.2", null, "38.8", null, "0.3", null, "82.5", null, "0.3", null, "79.8", null, "0.1", null, "75.6", null, "0.3", null, "26.9", null, "0.4", null, "24.0", null, "0.3", null, "20.0", null, "0.1", null, "8.5", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.4", null, "-888888888.0", "(X)", "388620", null, "1967", null, "20006", null, "887", null, "24315", null, "2074", null, "21006", null, "2160", null, "27339", null, "1004", null, "27383", null, "1363", null, "23000", null, "1122", null, "25451", null, "1381", null, "24194", null, "2456", null, "28264", null, "2461", null, "23047", null, "1026", null, "23402", null, "814", null, "22539", null, "2082", null, "27860", null, "2140", null, "24156", null, "1590", null, "18590", null, "1535", null, "12654", null, "1319", null, "9007", null, "1159", null, "6407", null, "1050", null, "45321", null, "540", null, "14625", null, "725", null, "79952", null, "1241", null, "40097", null, "1336", null, "155631", null, "1847", null, "319259", null, "1838", null, "308668", null, "1326", null, "291084", null, "1898", null, "98674", null, "2175", null, "87667", null, "2032", null, "70814", null, "700", null, "28068", null, "838", null, "40.3", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.1", null, "0.2", null, "6.3", null, "0.5", null, "5.4", null, "0.6", null, "7.0", null, "0.3", null, "7.0", null, "0.3", null, "5.9", null, "0.3", null, "6.5", null, "0.3", null, "6.2", null, "0.6", null, "7.3", null, "0.6", null, "5.9", null, "0.3", null, "6.0", null, "0.2", null, "5.8", null, "0.5", null, "7.2", null, "0.6", null, "6.2", null, "0.4", null, "4.8", null, "0.4", null, "3.3", null, "0.3", null, "2.3", null, "0.3", null, "1.6", null, "0.3", null, "11.7", null, "0.1", null, "3.8", null, "0.2", null, "20.6", null, "0.3", null, "10.3", null, "0.3", null, "40.0", null, "0.4", null, "82.2", null, "0.4", null, "79.4", null, "0.3", null, "74.9", null, "0.5", null, "25.4", null, "0.6", null, "22.6", null, "0.5", null, "18.2", null, "0.2", null, "7.2", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "399825", null, "1677", null, "18900", null, "858", null, "21660", null, "2214", null, "23765", null, "2305", null, "26040", null, "1225", null, "24304", null, "1085", null, "23067", null, "1252", null, "24372", null, "806", null, "26021", null, "2283", null, "26116", null, "2403", null, "23449", null, "1142", null, "23630", null, "750", null, "24892", null, "1938", null, "26924", null, "1918", null, "25083", null, "1656", null, "22665", null, "1561", null, "16595", null, "1681", null, "10335", null, "1468", null, "12007", null, "1584", null, "45425", null, "740", null, "14745", null, "822", null, "79070", null, "1016", null, "35599", null, "1137", null, "149920", null, "1493", null, "331080", null, "1941", null, "320755", null, "1422", null, "305161", null, "2066", null, "113609", null, "2144", null, "101880", null, "2030", null, "86685", null, "741", null, "38937", null, "865", null, "42.3", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.7", null, "0.2", null, "5.4", null, "0.6", null, "5.9", null, "0.6", null, "6.5", null, "0.3", null, "6.1", null, "0.3", null, "5.8", null, "0.3", null, "6.1", null, "0.2", null, "6.5", null, "0.6", null, "6.5", null, "0.6", null, "5.9", null, "0.3", null, "5.9", null, "0.2", null, "6.2", null, "0.5", null, "6.7", null, "0.5", null, "6.3", null, "0.4", null, "5.7", null, "0.4", null, "4.2", null, "0.4", null, "2.6", null, "0.4", null, "3.0", null, "0.4", null, "11.4", null, "0.2", null, "3.7", null, "0.2", null, "19.8", null, "0.2", null, "8.9", null, "0.3", null, "37.5", null, "0.3", null, "82.8", null, "0.4", null, "80.2", null, "0.2", null, "76.3", null, "0.4", null, "28.4", null, "0.5", null, "25.5", null, "0.5", null, "21.7", null, "0.2", null, "9.7", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "42", "07"], ["5001900US4208", "Congressional District 8 (119th Congress), Pennsylvania", "773187", null, "4767", null, "35575", null, "1457", null, "38342", null, "3100", null, "47945", null, "2909", null, "48743", null, "1646", null, "47721", null, "1918", null, "42164", null, "1951", null, "49555", null, "1770", null, "49311", null, "3678", null, "47170", null, "3646", null, "42516", null, "1971", null, "49616", null, "1792", null, "49912", null, "3112", null, "58804", null, "3088", null, "54234", null, "2575", null, "41658", null, "2282", null, "32247", null, "2253", null, "18334", null, "1723", null, "19340", null, "2061", null, "86287", null, "1357", null, "29024", null, "830", null, "150886", null, "2136", null, "67440", null, "2134", null, "284664", null, "3446", null, "643468", null, "4096", null, "622301", null, "4037", null, "592080", null, "3954", null, "224617", null, "3531", null, "202555", null, "3420", null, "165813", null, "1875", null, "69921", null, "1521", null, "43.1", null, "0.3", null, "99.5", null, "1.0", null, "69.4", null, "0.9", null, "36.3", null, "0.6", null, "33.1", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.6", null, "0.2", null, "5.0", null, "0.4", null, "6.2", null, "0.4", null, "6.3", null, "0.2", null, "6.2", null, "0.2", null, "5.5", null, "0.2", null, "6.4", null, "0.2", null, "6.4", null, "0.5", null, "6.1", null, "0.5", null, "5.5", null, "0.3", null, "6.4", null, "0.2", null, "6.5", null, "0.4", null, "7.6", null, "0.4", null, "7.0", null, "0.3", null, "5.4", null, "0.3", null, "4.2", null, "0.3", null, "2.4", null, "0.2", null, "2.5", null, "0.3", null, "11.2", null, "0.2", null, "3.8", null, "0.1", null, "19.5", null, "0.2", null, "8.7", null, "0.3", null, "36.8", null, "0.3", null, "83.2", null, "0.3", null, "80.5", null, "0.2", null, "76.6", null, "0.3", null, "29.1", null, "0.5", null, "26.2", null, "0.4", null, "21.4", null, "0.3", null, "9.0", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "2.0", null, "-888888888.0", "(X)", "385661", null, "3055", null, "17956", null, "1546", null, "19499", null, "2058", null, "25480", null, "2028", null, "24840", null, "1276", null, "23533", null, "1532", null, "22698", null, "1415", null, "25959", null, "1362", null, "24002", null, "2374", null, "25264", null, "2582", null, "20970", null, "1298", null, "25254", null, "1228", null, "27485", null, "2174", null, "26472", null, "2185", null, "26752", null, "1642", null, "20127", null, "1585", null, "15177", null, "1437", null, "8214", null, "1124", null, "5979", null, "969", null, "44979", null, "885", null, "14281", null, "827", null, "77216", null, "2042", null, "34092", null, "1396", null, "146296", null, "2390", null, "319561", null, "2586", null, "308445", null, "2324", null, "292094", null, "2596", null, "102721", null, "2302", null, "92545", null, "2132", null, "76249", null, "933", null, "29370", null, "815", null, "42.0", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.7", null, "0.4", null, "5.1", null, "0.5", null, "6.6", null, "0.5", null, "6.4", null, "0.3", null, "6.1", null, "0.4", null, "5.9", null, "0.4", null, "6.7", null, "0.4", null, "6.2", null, "0.6", null, "6.6", null, "0.7", null, "5.4", null, "0.3", null, "6.5", null, "0.3", null, "7.1", null, "0.6", null, "6.9", null, "0.6", null, "6.9", null, "0.4", null, "5.2", null, "0.4", null, "3.9", null, "0.4", null, "2.1", null, "0.3", null, "1.6", null, "0.3", null, "11.7", null, "0.2", null, "3.7", null, "0.2", null, "20.0", null, "0.4", null, "8.8", null, "0.4", null, "37.9", null, "0.5", null, "82.9", null, "0.5", null, "80.0", null, "0.4", null, "75.7", null, "0.6", null, "26.6", null, "0.6", null, "24.0", null, "0.6", null, "19.8", null, "0.3", null, "7.6", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "387526", null, "3105", null, "17619", null, "1108", null, "18843", null, "2265", null, "22465", null, "2215", null, "23903", null, "1239", null, "24188", null, "1023", null, "19466", null, "994", null, "23596", null, "1050", null, "25309", null, "2422", null, "21906", null, "2196", null, "21546", null, "1216", null, "24362", null, "1156", null, "22427", null, "2000", null, "32332", null, "1992", null, "27482", null, "1853", null, "21531", null, "1743", null, "17070", null, "1547", null, "10120", null, "1255", null, "13361", null, "1786", null, "41308", null, "1080", null, "14743", null, "711", null, "73670", null, "1814", null, "33348", null, "1199", null, "138368", null, "2020", null, "323907", null, "2382", null, "313856", null, "2357", null, "299986", null, "2359", null, "121896", null, "2416", null, "110010", null, "2317", null, "89564", null, "1340", null, "40551", null, "1044", null, "44.3", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.5", null, "0.3", null, "4.9", null, "0.6", null, "5.8", null, "0.6", null, "6.2", null, "0.3", null, "6.2", null, "0.3", null, "5.0", null, "0.3", null, "6.1", null, "0.3", null, "6.5", null, "0.6", null, "5.7", null, "0.6", null, "5.6", null, "0.3", null, "6.3", null, "0.3", null, "5.8", null, "0.5", null, "8.3", null, "0.5", null, "7.1", null, "0.5", null, "5.6", null, "0.4", null, "4.4", null, "0.4", null, "2.6", null, "0.3", null, "3.4", null, "0.5", null, "10.7", null, "0.2", null, "3.8", null, "0.2", null, "19.0", null, "0.4", null, "8.6", null, "0.3", null, "35.7", null, "0.4", null, "83.6", null, "0.4", null, "81.0", null, "0.4", null, "77.4", null, "0.5", null, "31.5", null, "0.6", null, "28.4", null, "0.6", null, "23.1", null, "0.3", null, "10.5", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "42", "08"], ["5001900US4209", "Congressional District 9 (119th Congress), Pennsylvania", "770915", null, "6889", null, "36311", null, "1948", null, "41728", null, "2769", null, "46894", null, "2454", null, "47866", null, "2321", null, "46181", null, "1892", null, "43744", null, "2046", null, "46096", null, "1827", null, "48478", null, "3095", null, "47531", null, "2731", null, "43284", null, "2245", null, "46180", null, "1864", null, "48326", null, "2657", null, "58077", null, "3227", null, "51130", null, "2952", null, "47255", null, "2294", null, "31602", null, "1866", null, "20982", null, "1623", null, "19250", null, "1984", null, "88622", null, "2655", null, "28106", null, "1622", null, "153039", null, "4058", null, "65941", null, "2574", null, "279896", null, "4921", null, "637228", null, "5516", null, "617876", null, "4948", null, "587242", null, "4889", null, "228296", null, "3870", null, "206531", null, "3849", null, "170219", null, "2835", null, "71834", null, "1307", null, "42.9", null, "0.5", null, "101.3", null, "1.4", null, "72.2", null, "1.2", null, "38.0", null, "0.9", null, "34.2", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.7", null, "0.2", null, "5.4", null, "0.3", null, "6.1", null, "0.3", null, "6.2", null, "0.3", null, "6.0", null, "0.2", null, "5.7", null, "0.3", null, "6.0", null, "0.2", null, "6.3", null, "0.4", null, "6.2", null, "0.3", null, "5.6", null, "0.3", null, "6.0", null, "0.2", null, "6.3", null, "0.4", null, "7.5", null, "0.4", null, "6.6", null, "0.4", null, "6.1", null, "0.3", null, "4.1", null, "0.2", null, "2.7", null, "0.2", null, "2.5", null, "0.3", null, "11.5", null, "0.3", null, "3.6", null, "0.2", null, "19.9", null, "0.4", null, "8.6", null, "0.3", null, "36.3", null, "0.5", null, "82.7", null, "0.4", null, "80.1", null, "0.4", null, "76.2", null, "0.4", null, "29.6", null, "0.5", null, "26.8", null, "0.5", null, "22.1", null, "0.4", null, "9.3", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.1", null, "-888888888.0", "(X)", "387926", null, "3680", null, "18791", null, "1463", null, "21729", null, "1811", null, "22095", null, "1724", null, "25259", null, "1596", null, "24111", null, "1588", null, "22645", null, "1250", null, "24609", null, "1571", null, "24682", null, "2002", null, "24683", null, "1867", null, "22480", null, "1292", null, "23470", null, "1182", null, "25274", null, "1779", null, "29504", null, "2040", null, "25327", null, "1707", null, "22527", null, "1463", null, "15729", null, "1173", null, "8522", null, "949", null, "6489", null, "1105", null, "43824", null, "1470", null, "14942", null, "1362", null, "77557", null, "2507", null, "34428", null, "1742", null, "145989", null, "2866", null, "320965", null, "3231", null, "310369", null, "3135", null, "293711", null, "3305", null, "108098", null, "2232", null, "97253", null, "2244", null, "78594", null, "1313", null, "30740", null, "813", null, "42.1", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.8", null, "0.4", null, "5.6", null, "0.5", null, "5.7", null, "0.4", null, "6.5", null, "0.4", null, "6.2", null, "0.4", null, "5.8", null, "0.3", null, "6.3", null, "0.4", null, "6.4", null, "0.5", null, "6.4", null, "0.5", null, "5.8", null, "0.3", null, "6.1", null, "0.3", null, "6.5", null, "0.5", null, "7.6", null, "0.5", null, "6.5", null, "0.5", null, "5.8", null, "0.4", null, "4.1", null, "0.3", null, "2.2", null, "0.2", null, "1.7", null, "0.3", null, "11.3", null, "0.4", null, "3.9", null, "0.3", null, "20.0", null, "0.6", null, "8.9", null, "0.4", null, "37.6", null, "0.6", null, "82.7", null, "0.5", null, "80.0", null, "0.6", null, "75.7", null, "0.6", null, "27.9", null, "0.6", null, "25.1", null, "0.6", null, "20.3", null, "0.4", null, "7.9", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "382989", null, "4870", null, "17520", null, "1358", null, "19999", null, "1867", null, "24799", null, "1821", null, "22607", null, "1611", null, "22070", null, "1241", null, "21099", null, "1360", null, "21487", null, "1121", null, "23796", null, "1947", null, "22848", null, "1840", null, "20804", null, "1611", null, "22710", null, "1076", null, "23052", null, "1748", null, "28573", null, "1874", null, "25803", null, "1908", null, "24728", null, "1516", null, "15873", null, "1479", null, "12460", null, "1286", null, "12761", null, "1253", null, "44798", null, "1853", null, "13164", null, "1200", null, "75482", null, "2730", null, "31513", null, "1685", null, "133907", null, "3097", null, "316263", null, "3605", null, "307507", null, "3320", null, "293531", null, "2945", null, "120198", null, "2629", null, "109278", null, "2474", null, "91625", null, "2053", null, "41094", null, "976", null, "43.8", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.6", null, "0.3", null, "5.2", null, "0.5", null, "6.5", null, "0.5", null, "5.9", null, "0.4", null, "5.8", null, "0.3", null, "5.5", null, "0.3", null, "5.6", null, "0.3", null, "6.2", null, "0.5", null, "6.0", null, "0.5", null, "5.4", null, "0.4", null, "5.9", null, "0.3", null, "6.0", null, "0.5", null, "7.5", null, "0.5", null, "6.7", null, "0.5", null, "6.5", null, "0.4", null, "4.1", null, "0.4", null, "3.3", null, "0.3", null, "3.3", null, "0.3", null, "11.7", null, "0.4", null, "3.4", null, "0.3", null, "19.7", null, "0.5", null, "8.2", null, "0.4", null, "35.0", null, "0.7", null, "82.6", null, "0.6", null, "80.3", null, "0.5", null, "76.6", null, "0.6", null, "31.4", null, "0.7", null, "28.5", null, "0.7", null, "23.9", null, "0.6", null, "10.7", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "42", "09"], ["5001900US4210", "Congressional District 10 (119th Congress), Pennsylvania", "792599", null, "9034", null, "41952", null, "2071", null, "43019", null, "2863", null, "53317", null, "3524", null, "49054", null, "2648", null, "48814", null, "2950", null, "46894", null, "2874", null, "55611", null, "2557", null, "53749", null, "4183", null, "54901", null, "4093", null, "46142", null, "2437", null, "46162", null, "2341", null, "48380", null, "3340", null, "52098", null, "2952", null, "45519", null, "2920", null, "41338", null, "2888", null, "29015", null, "2338", null, "18751", null, "1924", null, "17883", null, "1979", null, "96336", null, "3240", null, "29712", null, "1837", null, "168000", null, "4778", null, "68156", null, "2738", null, "309023", null, "5396", null, "646213", null, "6882", null, "624599", null, "6644", null, "596826", null, "6721", null, "204604", null, "3846", null, "185605", null, "4016", null, "152506", null, "2471", null, "65649", null, "1638", null, "40.3", null, "0.6", null, "97.8", null, "1.5", null, "67.9", null, "1.2", null, "32.3", null, "0.8", null, "35.6", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.3", null, "0.2", null, "5.4", null, "0.4", null, "6.7", null, "0.4", null, "6.2", null, "0.3", null, "6.2", null, "0.4", null, "5.9", null, "0.4", null, "7.0", null, "0.3", null, "6.8", null, "0.5", null, "6.9", null, "0.5", null, "5.8", null, "0.3", null, "5.8", null, "0.3", null, "6.1", null, "0.4", null, "6.6", null, "0.4", null, "5.7", null, "0.4", null, "5.2", null, "0.4", null, "3.7", null, "0.3", null, "2.4", null, "0.2", null, "2.3", null, "0.2", null, "12.2", null, "0.3", null, "3.7", null, "0.2", null, "21.2", null, "0.5", null, "8.6", null, "0.3", null, "39.0", null, "0.5", null, "81.5", null, "0.5", null, "78.8", null, "0.5", null, "75.3", null, "0.5", null, "25.8", null, "0.5", null, "23.4", null, "0.6", null, "19.2", null, "0.4", null, "8.3", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.1", null, "-888888888.0", "(X)", "391883", null, "5597", null, "21776", null, "1771", null, "21629", null, "2261", null, "27875", null, "2210", null, "25190", null, "2342", null, "23869", null, "2215", null, "22776", null, "2008", null, "29212", null, "1719", null, "26155", null, "2819", null, "28764", null, "2763", null, "23302", null, "1689", null, "22209", null, "1789", null, "24702", null, "2169", null, "24960", null, "1808", null, "21668", null, "1819", null, "20232", null, "1860", null, "13427", null, "1312", null, "8097", null, "1354", null, "6040", null, "1079", null, "49504", null, "1711", null, "14802", null, "1695", null, "86082", null, "3067", null, "34257", null, "1910", null, "155966", null, "3472", null, "316457", null, "4512", null, "305801", null, "4143", null, "291223", null, "4573", null, "94424", null, "2360", null, "86151", null, "2350", null, "69464", null, "1393", null, "27564", null, "1164", null, "39.5", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.6", null, "0.4", null, "5.5", null, "0.6", null, "7.1", null, "0.6", null, "6.4", null, "0.6", null, "6.1", null, "0.5", null, "5.8", null, "0.5", null, "7.5", null, "0.4", null, "6.7", null, "0.7", null, "7.3", null, "0.7", null, "5.9", null, "0.4", null, "5.7", null, "0.4", null, "6.3", null, "0.5", null, "6.4", null, "0.5", null, "5.5", null, "0.5", null, "5.2", null, "0.5", null, "3.4", null, "0.3", null, "2.1", null, "0.3", null, "1.5", null, "0.3", null, "12.6", null, "0.4", null, "3.8", null, "0.4", null, "22.0", null, "0.6", null, "8.7", null, "0.5", null, "39.8", null, "0.6", null, "80.8", null, "0.6", null, "78.0", null, "0.6", null, "74.3", null, "0.7", null, "24.1", null, "0.7", null, "22.0", null, "0.6", null, "17.7", null, "0.4", null, "7.0", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "400716", null, "5315", null, "20176", null, "1595", null, "21390", null, "2187", null, "25442", null, "2412", null, "23864", null, "1814", null, "24945", null, "1924", null, "24118", null, "1799", null, "26399", null, "1866", null, "27594", null, "2931", null, "26137", null, "2637", null, "22840", null, "1804", null, "23953", null, "1606", null, "23678", null, "2177", null, "27138", null, "2104", null, "23851", null, "1944", null, "21106", null, "1765", null, "15588", null, "1723", null, "10654", null, "1398", null, "11843", null, "1539", null, "46832", null, "2288", null, "14910", null, "1597", null, "81918", null, "3227", null, "33899", null, "2096", null, "153057", null, "3913", null, "329756", null, "4149", null, "318798", null, "3723", null, "305603", null, "3494", null, "110180", null, "2824", null, "99454", null, "2915", null, "83042", null, "1840", null, "38085", null, "1219", null, "41.3", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.0", null, "0.4", null, "5.3", null, "0.5", null, "6.3", null, "0.6", null, "6.0", null, "0.4", null, "6.2", null, "0.5", null, "6.0", null, "0.4", null, "6.6", null, "0.5", null, "6.9", null, "0.7", null, "6.5", null, "0.7", null, "5.7", null, "0.5", null, "6.0", null, "0.4", null, "5.9", null, "0.5", null, "6.8", null, "0.5", null, "6.0", null, "0.5", null, "5.3", null, "0.4", null, "3.9", null, "0.4", null, "2.7", null, "0.3", null, "3.0", null, "0.4", null, "11.7", null, "0.5", null, "3.7", null, "0.4", null, "20.4", null, "0.6", null, "8.5", null, "0.5", null, "38.2", null, "0.8", null, "82.3", null, "0.6", null, "79.6", null, "0.6", null, "76.3", null, "0.6", null, "27.5", null, "0.7", null, "24.8", null, "0.7", null, "20.7", null, "0.5", null, "9.5", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "42", "10"], ["5001900US4211", "Congressional District 11 (119th Congress), Pennsylvania", "781923", null, "7147", null, "45834", null, "1622", null, "49110", null, "3244", null, "49008", null, "3292", null, "51266", null, "2108", null, "45907", null, "1983", null, "46933", null, "1938", null, "49628", null, "1661", null, "47771", null, "3412", null, "51572", null, "3191", null, "42094", null, "1867", null, "45037", null, "1771", null, "46584", null, "2780", null, "51896", null, "2617", null, "46995", null, "2570", null, "40394", null, "2485", null, "32252", null, "2251", null, "18568", null, "1778", null, "21074", null, "1954", null, "98118", null, "3012", null, "32129", null, "1419", null, "176081", null, "4227", null, "65044", null, "2074", null, "293077", null, "4232", null, "628915", null, "6209", null, "605842", null, "5439", null, "576877", null, "5262", null, "211179", null, "3459", null, "189874", null, "3073", null, "159283", null, "2364", null, "71894", null, "1842", null, "40.6", null, "0.5", null, "97.6", null, "0.9", null, "75.1", null, "1.3", null, "35.7", null, "0.7", null, "39.4", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.9", null, "0.2", null, "6.3", null, "0.4", null, "6.3", null, "0.4", null, "6.6", null, "0.3", null, "5.9", null, "0.2", null, "6.0", null, "0.2", null, "6.3", null, "0.2", null, "6.1", null, "0.4", null, "6.6", null, "0.4", null, "5.4", null, "0.2", null, "5.8", null, "0.2", null, "6.0", null, "0.3", null, "6.6", null, "0.3", null, "6.0", null, "0.3", null, "5.2", null, "0.3", null, "4.1", null, "0.3", null, "2.4", null, "0.2", null, "2.7", null, "0.3", null, "12.5", null, "0.3", null, "4.1", null, "0.2", null, "22.5", null, "0.4", null, "8.3", null, "0.3", null, "37.5", null, "0.3", null, "80.4", null, "0.4", null, "77.5", null, "0.4", null, "73.8", null, "0.5", null, "27.0", null, "0.5", null, "24.3", null, "0.4", null, "20.4", null, "0.3", null, "9.2", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "0.7", null, "-888888888.0", "(X)", "386114", null, "3939", null, "24141", null, "1301", null, "23703", null, "2597", null, "26936", null, "2512", null, "26202", null, "1317", null, "23807", null, "1432", null, "23485", null, "1173", null, "25014", null, "1098", null, "22958", null, "2593", null, "26212", null, "2427", null, "20805", null, "1296", null, "23107", null, "1172", null, "22286", null, "1748", null, "26071", null, "1627", null, "22233", null, "1653", null, "18966", null, "1479", null, "15003", null, "1354", null, "8261", null, "1060", null, "6924", null, "1163", null, "50639", null, "1752", null, "16547", null, "1062", null, "91327", null, "2413", null, "33462", null, "1504", null, "147678", null, "2957", null, "307057", null, "3706", null, "294787", null, "3372", null, "279913", null, "3376", null, "97458", null, "2210", null, "86658", null, "2083", null, "71387", null, "1362", null, "30188", null, "856", null, "39.2", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.3", null, "0.3", null, "6.1", null, "0.7", null, "7.0", null, "0.6", null, "6.8", null, "0.3", null, "6.2", null, "0.4", null, "6.1", null, "0.3", null, "6.5", null, "0.3", null, "5.9", null, "0.7", null, "6.8", null, "0.6", null, "5.4", null, "0.3", null, "6.0", null, "0.3", null, "5.8", null, "0.5", null, "6.8", null, "0.4", null, "5.8", null, "0.4", null, "4.9", null, "0.4", null, "3.9", null, "0.4", null, "2.1", null, "0.3", null, "1.8", null, "0.3", null, "13.1", null, "0.4", null, "4.3", null, "0.3", null, "23.7", null, "0.5", null, "8.7", null, "0.4", null, "38.2", null, "0.5", null, "79.5", null, "0.5", null, "76.3", null, "0.5", null, "72.5", null, "0.6", null, "25.2", null, "0.6", null, "22.4", null, "0.5", null, "18.5", null, "0.4", null, "7.8", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "395809", null, "4122", null, "21693", null, "1405", null, "25407", null, "2100", null, "22072", null, "2242", null, "25064", null, "1623", null, "22100", null, "1096", null, "23448", null, "1412", null, "24614", null, "1127", null, "24813", null, "2130", null, "25360", null, "2224", null, "21289", null, "1274", null, "21930", null, "1055", null, "24298", null, "1856", null, "25825", null, "1685", null, "24762", null, "1907", null, "21428", null, "1749", null, "17249", null, "1602", null, "10307", null, "1292", null, "14150", null, "1524", null, "47479", null, "1949", null, "15582", null, "1028", null, "84754", null, "2785", null, "31582", null, "1084", null, "145399", null, "2530", null, "321858", null, "3429", null, "311055", null, "2861", null, "296964", null, "2667", null, "113721", null, "2078", null, "103216", null, "2016", null, "87896", null, "1489", null, "41706", null, "1297", null, "41.8", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.3", null, "6.4", null, "0.5", null, "5.6", null, "0.6", null, "6.3", null, "0.4", null, "5.6", null, "0.3", null, "5.9", null, "0.4", null, "6.2", null, "0.3", null, "6.3", null, "0.5", null, "6.4", null, "0.6", null, "5.4", null, "0.3", null, "5.5", null, "0.3", null, "6.1", null, "0.5", null, "6.5", null, "0.4", null, "6.3", null, "0.5", null, "5.4", null, "0.4", null, "4.4", null, "0.4", null, "2.6", null, "0.3", null, "3.6", null, "0.4", null, "12.0", null, "0.4", null, "3.9", null, "0.2", null, "21.4", null, "0.6", null, "8.0", null, "0.3", null, "36.7", null, "0.5", null, "81.3", null, "0.6", null, "78.6", null, "0.6", null, "75.0", null, "0.7", null, "28.7", null, "0.6", null, "26.1", null, "0.6", null, "22.2", null, "0.4", null, "10.5", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "42", "11"], ["5001900US4212", "Congressional District 12 (119th Congress), Pennsylvania", "754530", null, "11535", null, "33670", null, "2718", null, "36576", null, "3540", null, "31710", null, "3423", null, "47821", null, "3354", null, "56698", null, "3637", null, "56631", null, "3388", null, "53744", null, "2983", null, "56287", null, "4271", null, "45285", null, "3426", null, "38215", null, "3201", null, "44057", null, "3104", null, "43224", null, "3313", null, "50168", null, "3419", null, "51341", null, "3304", null, "43669", null, "3392", null, "28054", null, "2267", null, "20274", null, "2172", null, "17106", null, "2001", null, "68286", null, "4663", null, "21859", null, "2501", null, "123815", null, "6646", null, "82660", null, "3663", null, "316466", null, "7354", null, "645911", null, "9148", null, "630715", null, "8541", null, "592052", null, "8239", null, "210612", null, "6472", null, "191908", null, "5658", null, "160444", null, "5163", null, "65434", null, "3187", null, "40.5", null, "0.9", null, "95.5", null, "2.3", null, "60.4", null, "1.8", null, "34.1", null, "1.4", null, "26.3", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.5", null, "0.3", null, "4.8", null, "0.5", null, "4.2", null, "0.4", null, "6.3", null, "0.4", null, "7.5", null, "0.5", null, "7.5", null, "0.5", null, "7.1", null, "0.4", null, "7.5", null, "0.5", null, "6.0", null, "0.4", null, "5.1", null, "0.4", null, "5.8", null, "0.4", null, "5.7", null, "0.4", null, "6.6", null, "0.5", null, "6.8", null, "0.5", null, "5.8", null, "0.4", null, "3.7", null, "0.3", null, "2.7", null, "0.3", null, "2.3", null, "0.3", null, "9.1", null, "0.6", null, "2.9", null, "0.3", null, "16.4", null, "0.7", null, "11.0", null, "0.5", null, "41.9", null, "0.7", null, "85.6", null, "0.7", null, "83.6", null, "0.7", null, "78.5", null, "0.8", null, "27.9", null, "0.9", null, "25.4", null, "0.8", null, "21.3", null, "0.7", null, "8.7", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.2", null, "-888888888.0", "(X)", "368505", null, "7298", null, "16464", null, "1854", null, "17376", null, "2379", null, "15237", null, "2748", null, "25426", null, "2101", null, "27048", null, "2241", null, "29063", null, "1954", null, "26026", null, "2139", null, "29088", null, "2749", null, "24979", null, "2347", null, "18899", null, "1699", null, "21704", null, "1800", null, "22856", null, "1882", null, "22561", null, "1871", null, "23674", null, "2183", null, "20863", null, "2185", null, "11579", null, "1343", null, "9573", null, "1570", null, "6089", null, "1037", null, "32613", null, "2895", null, "12427", null, "1803", null, "61504", null, "4259", null, "40047", null, "2397", null, "161630", null, "5027", null, "316396", null, "6222", null, "307001", null, "5688", null, "287899", null, "5234", null, "94339", null, "3528", null, "85591", null, "3229", null, "71778", null, "2803", null, "27241", null, "1935", null, "39.7", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.5", null, "0.5", null, "4.7", null, "0.6", null, "4.1", null, "0.7", null, "6.9", null, "0.5", null, "7.3", null, "0.6", null, "7.9", null, "0.5", null, "7.1", null, "0.6", null, "7.9", null, "0.7", null, "6.8", null, "0.6", null, "5.1", null, "0.4", null, "5.9", null, "0.5", null, "6.2", null, "0.5", null, "6.1", null, "0.5", null, "6.4", null, "0.6", null, "5.7", null, "0.6", null, "3.1", null, "0.4", null, "2.6", null, "0.4", null, "1.7", null, "0.3", null, "8.9", null, "0.7", null, "3.4", null, "0.5", null, "16.7", null, "1.0", null, "10.9", null, "0.6", null, "43.9", null, "1.0", null, "85.9", null, "1.0", null, "83.3", null, "1.0", null, "78.1", null, "1.1", null, "25.6", null, "1.0", null, "23.2", null, "0.9", null, "19.5", null, "0.8", null, "7.4", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "386025", null, "7378", null, "17206", null, "1574", null, "19200", null, "2315", null, "16473", null, "1928", null, "22395", null, "2346", null, "29650", null, "2220", null, "27568", null, "2225", null, "27718", null, "1693", null, "27199", null, "2623", null, "20306", null, "2078", null, "19316", null, "2037", null, "22353", null, "1880", null, "20368", null, "2153", null, "27607", null, "2329", null, "27667", null, "2147", null, "22806", null, "2101", null, "16475", null, "1788", null, "10701", null, "1413", null, "11017", null, "1581", null, "35673", null, "3185", null, "9432", null, "1579", null, "62311", null, "4120", null, "42613", null, "2326", null, "154836", null, "4581", null, "329515", null, "5586", null, "323714", null, "5454", null, "304153", null, "5201", null, "116273", null, "4022", null, "106317", null, "3525", null, "88666", null, "3287", null, "38193", null, "2032", null, "41.4", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.5", null, "0.4", null, "5.0", null, "0.6", null, "4.3", null, "0.5", null, "5.8", null, "0.6", null, "7.7", null, "0.6", null, "7.1", null, "0.6", null, "7.2", null, "0.4", null, "7.0", null, "0.7", null, "5.3", null, "0.5", null, "5.0", null, "0.5", null, "5.8", null, "0.5", null, "5.3", null, "0.6", null, "7.2", null, "0.6", null, "7.2", null, "0.6", null, "5.9", null, "0.5", null, "4.3", null, "0.5", null, "2.8", null, "0.4", null, "2.9", null, "0.4", null, "9.2", null, "0.7", null, "2.4", null, "0.4", null, "16.1", null, "0.9", null, "11.0", null, "0.6", null, "40.1", null, "0.9", null, "85.4", null, "0.9", null, "83.9", null, "0.9", null, "78.8", null, "0.9", null, "30.1", null, "1.1", null, "27.5", null, "0.9", null, "23.0", null, "0.8", null, "9.9", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "42", "12"], ["5001900US4213", "Congressional District 13 (119th Congress), Pennsylvania", "769505", null, "4058", null, "40052", null, "1636", null, "43551", null, "2623", null, "41535", null, "2747", null, "50733", null, "1721", null, "45739", null, "1549", null, "41090", null, "1382", null, "46481", null, "1484", null, "42844", null, "2561", null, "45317", null, "2570", null, "42411", null, "1172", null, "50666", null, "1724", null, "48138", null, "2479", null, "57821", null, "2551", null, "52866", null, "2412", null, "46631", null, "2465", null, "32522", null, "1754", null, "20866", null, "1848", null, "20242", null, "1583", null, "85086", null, "1711", null, "29525", null, "1337", null, "154663", null, "2105", null, "66947", null, "1682", null, "272204", null, "2854", null, "633688", null, "3267", null, "614842", null, "2655", null, "582438", null, "2934", null, "230948", null, "2832", null, "207369", null, "2539", null, "173127", null, "1329", null, "73630", null, "836", null, "43.7", null, "0.3", null, "100.1", null, "1.0", null, "74.2", null, "0.6", null, "39.2", null, "0.4", null, "35.0", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.2", null, "5.7", null, "0.3", null, "5.4", null, "0.4", null, "6.6", null, "0.2", null, "5.9", null, "0.2", null, "5.3", null, "0.2", null, "6.0", null, "0.2", null, "5.6", null, "0.3", null, "5.9", null, "0.3", null, "5.5", null, "0.2", null, "6.6", null, "0.2", null, "6.3", null, "0.3", null, "7.5", null, "0.3", null, "6.9", null, "0.3", null, "6.1", null, "0.3", null, "4.2", null, "0.2", null, "2.7", null, "0.2", null, "2.6", null, "0.2", null, "11.1", null, "0.2", null, "3.8", null, "0.2", null, "20.1", null, "0.2", null, "8.7", null, "0.2", null, "35.4", null, "0.3", null, "82.4", null, "0.3", null, "79.9", null, "0.2", null, "75.7", null, "0.3", null, "30.0", null, "0.4", null, "26.9", null, "0.4", null, "22.5", null, "0.2", null, "9.6", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "0.7", null, "-888888888.0", "(X)", "384911", null, "2596", null, "20829", null, "1249", null, "22205", null, "1946", null, "20773", null, "1635", null, "26350", null, "1326", null, "24525", null, "1173", null, "21553", null, "885", null, "23843", null, "1077", null, "21732", null, "1720", null, "23810", null, "1849", null, "21086", null, "850", null, "25669", null, "1114", null, "23874", null, "1621", null, "29114", null, "1633", null, "25240", null, "1523", null, "22960", null, "1564", null, "15002", null, "1083", null, "9600", null, "1149", null, "6746", null, "864", null, "42978", null, "1230", null, "15083", null, "872", null, "78890", null, "1817", null, "35792", null, "1393", null, "141813", null, "1661", null, "314272", null, "1797", null, "306021", null, "1558", null, "288716", null, "1763", null, "108662", null, "1801", null, "97574", null, "1736", null, "79548", null, "747", null, "31348", null, "464", null, "42.4", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.3", null, "5.8", null, "0.5", null, "5.4", null, "0.4", null, "6.8", null, "0.3", null, "6.4", null, "0.3", null, "5.6", null, "0.2", null, "6.2", null, "0.3", null, "5.6", null, "0.5", null, "6.2", null, "0.5", null, "5.5", null, "0.2", null, "6.7", null, "0.3", null, "6.2", null, "0.4", null, "7.6", null, "0.4", null, "6.6", null, "0.4", null, "6.0", null, "0.4", null, "3.9", null, "0.3", null, "2.5", null, "0.3", null, "1.8", null, "0.2", null, "11.2", null, "0.3", null, "3.9", null, "0.2", null, "20.5", null, "0.4", null, "9.3", null, "0.4", null, "36.8", null, "0.4", null, "81.6", null, "0.4", null, "79.5", null, "0.4", null, "75.0", null, "0.5", null, "28.2", null, "0.5", null, "25.3", null, "0.4", null, "20.7", null, "0.2", null, "8.1", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "384594", null, "3035", null, "19223", null, "1243", null, "21346", null, "2062", null, "20762", null, "1951", null, "24383", null, "1249", null, "21214", null, "975", null, "19537", null, "889", null, "22638", null, "938", null, "21112", null, "1515", null, "21507", null, "1404", null, "21325", null, "877", null, "24997", null, "1117", null, "24264", null, "1597", null, "28707", null, "1612", null, "27626", null, "1506", null, "23671", null, "1514", null, "17520", null, "1212", null, "11266", null, "1239", null, "13496", null, "1188", null, "42108", null, "1323", null, "14442", null, "951", null, "75773", null, "1926", null, "31155", null, "1095", null, "130391", null, "2030", null, "319416", null, "2224", null, "308821", null, "1784", null, "293722", null, "1893", null, "122286", null, "1758", null, "109795", null, "1474", null, "93579", null, "889", null, "42282", null, "617", null, "45.1", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.0", null, "0.3", null, "5.6", null, "0.5", null, "5.4", null, "0.5", null, "6.3", null, "0.3", null, "5.5", null, "0.2", null, "5.1", null, "0.2", null, "5.9", null, "0.2", null, "5.5", null, "0.4", null, "5.6", null, "0.4", null, "5.5", null, "0.2", null, "6.5", null, "0.3", null, "6.3", null, "0.4", null, "7.5", null, "0.4", null, "7.2", null, "0.4", null, "6.2", null, "0.4", null, "4.6", null, "0.3", null, "2.9", null, "0.3", null, "3.5", null, "0.3", null, "10.9", null, "0.3", null, "3.8", null, "0.2", null, "19.7", null, "0.4", null, "8.1", null, "0.3", null, "33.9", null, "0.4", null, "83.1", null, "0.4", null, "80.3", null, "0.4", null, "76.4", null, "0.5", null, "31.8", null, "0.5", null, "28.5", null, "0.4", null, "24.3", null, "0.3", null, "11.0", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "42", "13"], ["5001900US4214", "Congressional District 14 (119th Congress), Pennsylvania", "752379", null, "5926", null, "32898", null, "1473", null, "38580", null, "2260", null, "39109", null, "2634", null, "45097", null, "1641", null, "45001", null, "2149", null, "40221", null, "1613", null, "45512", null, "1373", null, "41009", null, "2921", null, "45880", null, "2768", null, "43175", null, "1780", null, "47001", null, "1785", null, "51999", null, "2704", null, "56620", null, "2692", null, "57503", null, "2646", null, "47476", null, "2663", null, "33067", null, "1942", null, "22241", null, "1789", null, "19990", null, "1964", null, "77689", null, "2402", null, "26276", null, "1216", null, "136863", null, "2873", null, "63822", null, "2115", null, "262720", null, "3555", null, "633919", null, "4749", null, "615516", null, "4565", null, "587025", null, "4568", null, "236897", null, "3709", null, "216151", null, "3352", null, "180277", null, "2364", null, "75298", null, "1453", null, "45.3", null, "0.4", null, "101.4", null, "1.1", null, "72.9", null, "1.0", null, "41.4", null, "0.7", null, "31.4", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.4", null, "0.2", null, "5.1", null, "0.3", null, "5.2", null, "0.3", null, "6.0", null, "0.2", null, "6.0", null, "0.3", null, "5.3", null, "0.2", null, "6.0", null, "0.2", null, "5.5", null, "0.4", null, "6.1", null, "0.4", null, "5.7", null, "0.2", null, "6.2", null, "0.2", null, "6.9", null, "0.4", null, "7.5", null, "0.4", null, "7.6", null, "0.4", null, "6.3", null, "0.4", null, "4.4", null, "0.3", null, "3.0", null, "0.2", null, "2.7", null, "0.3", null, "10.3", null, "0.3", null, "3.5", null, "0.2", null, "18.2", null, "0.3", null, "8.5", null, "0.3", null, "34.9", null, "0.3", null, "84.3", null, "0.3", null, "81.8", null, "0.3", null, "78.0", null, "0.3", null, "31.5", null, "0.5", null, "28.7", null, "0.5", null, "24.0", null, "0.3", null, "10.0", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "0.8", null, "-888888888.0", "(X)", "378809", null, "3695", null, "17531", null, "1216", null, "19184", null, "1761", null, "21727", null, "1790", null, "22934", null, "1230", null, "23985", null, "1492", null, "21530", null, "1218", null, "23556", null, "999", null, "21722", null, "1865", null, "23391", null, "1603", null, "22260", null, "991", null, "24331", null, "1177", null, "26510", null, "1838", null, "27623", null, "1701", null, "29024", null, "1823", null, "22276", null, "1805", null, "14573", null, "1184", null, "9644", null, "1055", null, "7008", null, "1098", null, "40911", null, "1506", null, "13411", null, "938", null, "71853", null, "1927", null, "33508", null, "1508", null, "137118", null, "2405", null, "316260", null, "3006", null, "306956", null, "2875", null, "291731", null, "2802", null, "110148", null, "2346", null, "100735", null, "2196", null, "82525", null, "1368", null, "31225", null, "834", null, "43.8", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.6", null, "0.3", null, "5.1", null, "0.5", null, "5.7", null, "0.5", null, "6.1", null, "0.3", null, "6.3", null, "0.4", null, "5.7", null, "0.3", null, "6.2", null, "0.3", null, "5.7", null, "0.5", null, "6.2", null, "0.4", null, "5.9", null, "0.3", null, "6.4", null, "0.3", null, "7.0", null, "0.5", null, "7.3", null, "0.4", null, "7.7", null, "0.5", null, "5.9", null, "0.5", null, "3.8", null, "0.3", null, "2.5", null, "0.3", null, "1.9", null, "0.3", null, "10.8", null, "0.4", null, "3.5", null, "0.2", null, "19.0", null, "0.4", null, "8.8", null, "0.4", null, "36.2", null, "0.4", null, "83.5", null, "0.5", null, "81.0", null, "0.4", null, "77.0", null, "0.5", null, "29.1", null, "0.6", null, "26.6", null, "0.6", null, "21.8", null, "0.4", null, "8.2", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "373570", null, "3519", null, "15367", null, "951", null, "19396", null, "1591", null, "17382", null, "1665", null, "22163", null, "1201", null, "21016", null, "1339", null, "18691", null, "995", null, "21956", null, "834", null, "19287", null, "1673", null, "22489", null, "1783", null, "20915", null, "1113", null, "22670", null, "1043", null, "25489", null, "1730", null, "28997", null, "1766", null, "28479", null, "1748", null, "25200", null, "1658", null, "18494", null, "1309", null, "12597", null, "1269", null, "12982", null, "1317", null, "36778", null, "1460", null, "12865", null, "877", null, "65010", null, "2030", null, "30314", null, "1434", null, "125602", null, "2104", null, "317659", null, "2743", null, "308560", null, "2549", null, "295294", null, "2833", null, "126749", null, "2166", null, "115416", null, "2068", null, "97752", null, "1413", null, "44073", null, "997", null, "47.3", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.1", null, "0.2", null, "5.2", null, "0.4", null, "4.7", null, "0.4", null, "5.9", null, "0.3", null, "5.6", null, "0.3", null, "5.0", null, "0.3", null, "5.9", null, "0.2", null, "5.2", null, "0.4", null, "6.0", null, "0.5", null, "5.6", null, "0.3", null, "6.1", null, "0.3", null, "6.8", null, "0.5", null, "7.8", null, "0.5", null, "7.6", null, "0.5", null, "6.7", null, "0.4", null, "5.0", null, "0.3", null, "3.4", null, "0.3", null, "3.5", null, "0.4", null, "9.8", null, "0.3", null, "3.4", null, "0.2", null, "17.4", null, "0.4", null, "8.1", null, "0.4", null, "33.6", null, "0.4", null, "85.0", null, "0.5", null, "82.6", null, "0.4", null, "79.0", null, "0.5", null, "33.9", null, "0.6", null, "30.9", null, "0.6", null, "26.2", null, "0.4", null, "11.8", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "42", "14"], ["5001900US4215", "Congressional District 15 (119th Congress), Pennsylvania", "758111", null, "4179", null, "35148", null, "1749", null, "36024", null, "1613", null, "39049", null, "1520", null, "60100", null, "2521", null, "58144", null, "2375", null, "41402", null, "1522", null, "43176", null, "1402", null, "43797", null, "2103", null, "43909", null, "2442", null, "41008", null, "1089", null, "46386", null, "1204", null, "48516", null, "2067", null, "54747", null, "2067", null, "52829", null, "2355", null, "43750", null, "2228", null, "31953", null, "1566", null, "19663", null, "1450", null, "18510", null, "1403", null, "75073", null, "1383", null, "26399", null, "779", null, "136620", null, "2564", null, "91845", null, "1917", null, "290528", null, "2242", null, "639009", null, "3086", null, "621491", null, "2887", null, "574366", null, "3507", null, "221452", null, "2695", null, "199189", null, "2566", null, "166705", null, "1510", null, "70126", null, "973", null, "42.4", null, "0.3", null, "104.7", null, "1.1", null, "66.7", null, "0.7", null, "36.7", null, "0.5", null, "30.0", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.6", null, "0.2", null, "4.8", null, "0.2", null, "5.2", null, "0.2", null, "7.9", null, "0.3", null, "7.7", null, "0.3", null, "5.5", null, "0.2", null, "5.7", null, "0.2", null, "5.8", null, "0.3", null, "5.8", null, "0.3", null, "5.4", null, "0.1", null, "6.1", null, "0.2", null, "6.4", null, "0.3", null, "7.2", null, "0.3", null, "7.0", null, "0.3", null, "5.8", null, "0.3", null, "4.2", null, "0.2", null, "2.6", null, "0.2", null, "2.4", null, "0.2", null, "9.9", null, "0.2", null, "3.5", null, "0.1", null, "18.0", null, "0.3", null, "12.1", null, "0.2", null, "38.3", null, "0.2", null, "84.3", null, "0.3", null, "82.0", null, "0.3", null, "75.8", null, "0.4", null, "29.2", null, "0.4", null, "26.3", null, "0.4", null, "22.0", null, "0.2", null, "9.3", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "0.8", null, "-888888888.0", "(X)", "387714", null, "2768", null, "17946", null, "1050", null, "18986", null, "1305", null, "20450", null, "1325", null, "30192", null, "1914", null, "31525", null, "1830", null, "22408", null, "1162", null, "23088", null, "986", null, "22320", null, "1285", null, "24632", null, "1539", null, "20847", null, "717", null, "24134", null, "834", null, "24890", null, "1489", null, "27725", null, "1384", null, "27440", null, "1567", null, "20328", null, "1398", null, "14845", null, "1100", null, "9235", null, "935", null, "6723", null, "761", null, "39436", null, "872", null, "13770", null, "701", null, "71152", null, "1764", null, "47947", null, "1503", null, "154165", null, "1678", null, "325166", null, "2621", null, "316562", null, "2301", null, "293075", null, "3115", null, "106296", null, "1632", null, "94963", null, "1403", null, "78571", null, "854", null, "30803", null, "535", null, "41.3", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.6", null, "0.3", null, "4.9", null, "0.3", null, "5.3", null, "0.3", null, "7.8", null, "0.5", null, "8.1", null, "0.5", null, "5.8", null, "0.3", null, "6.0", null, "0.2", null, "5.8", null, "0.3", null, "6.4", null, "0.4", null, "5.4", null, "0.2", null, "6.2", null, "0.2", null, "6.4", null, "0.4", null, "7.2", null, "0.4", null, "7.1", null, "0.4", null, "5.2", null, "0.4", null, "3.8", null, "0.3", null, "2.4", null, "0.2", null, "1.7", null, "0.2", null, "10.2", null, "0.2", null, "3.6", null, "0.2", null, "18.4", null, "0.4", null, "12.4", null, "0.4", null, "39.8", null, "0.3", null, "83.9", null, "0.4", null, "81.6", null, "0.4", null, "75.6", null, "0.7", null, "27.4", null, "0.5", null, "24.5", null, "0.4", null, "20.3", null, "0.2", null, "7.9", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "370397", null, "3008", null, "17202", null, "977", null, "17038", null, "1032", null, "18599", null, "1216", null, "29908", null, "1605", null, "26619", null, "1797", null, "18994", null, "818", null, "20088", null, "865", null, "21477", null, "1634", null, "19277", null, "1559", null, "20161", null, "768", null, "22252", null, "682", null, "23626", null, "1396", null, "27022", null, "1418", null, "25389", null, "1426", null, "23422", null, "1368", null, "17108", null, "920", null, "10428", null, "950", null, "11787", null, "1008", null, "35637", null, "1001", null, "12629", null, "591", null, "65468", null, "1526", null, "43898", null, "1371", null, "136363", null, "1858", null, "313843", null, "2383", null, "304929", null, "2212", null, "281291", null, "2429", null, "115156", null, "1763", null, "104226", null, "1715", null, "88134", null, "997", null, "39323", null, "691", null, "43.9", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.6", null, "0.3", null, "4.6", null, "0.3", null, "5.0", null, "0.3", null, "8.1", null, "0.4", null, "7.2", null, "0.5", null, "5.1", null, "0.2", null, "5.4", null, "0.2", null, "5.8", null, "0.4", null, "5.2", null, "0.4", null, "5.4", null, "0.2", null, "6.0", null, "0.2", null, "6.4", null, "0.4", null, "7.3", null, "0.4", null, "6.9", null, "0.4", null, "6.3", null, "0.4", null, "4.6", null, "0.3", null, "2.8", null, "0.3", null, "3.2", null, "0.3", null, "9.6", null, "0.2", null, "3.4", null, "0.2", null, "17.7", null, "0.3", null, "11.9", null, "0.3", null, "36.8", null, "0.4", null, "84.7", null, "0.3", null, "82.3", null, "0.3", null, "75.9", null, "0.5", null, "31.1", null, "0.5", null, "28.1", null, "0.5", null, "23.8", null, "0.3", null, "10.6", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "42", "15"], ["5001900US4216", "Congressional District 16 (119th Congress), Pennsylvania", "758988", null, "1856", null, "35596", null, "680", null, "39244", null, "2524", null, "44361", null, "2233", null, "50732", null, "1207", null, "47241", null, "1334", null, "40414", null, "989", null, "44669", null, "1571", null, "46072", null, "2737", null, "45683", null, "2460", null, "41659", null, "1087", null, "47071", null, "1030", null, "49224", null, "2661", null, "56038", null, "2875", null, "52646", null, "2313", null, "46633", null, "2239", null, "34704", null, "2406", null, "18169", null, "1613", null, "18832", null, "2067", null, "83605", null, "1102", null, "28117", null, "773", null, "147318", null, "827", null, "69856", null, "1314", null, "274811", null, "1879", null, "631148", null, "1885", null, "611670", null, "1471", null, "576349", null, "2207", null, "227022", null, "2971", null, "204673", null, "2710", null, "170984", null, "1092", null, "71705", null, "764", null, "43.4", null, "0.2", null, "98.9", null, "0.8", null, "72.2", null, "0.4", null, "38.8", null, "0.3", null, "33.4", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.7", null, "0.1", null, "5.2", null, "0.3", null, "5.8", null, "0.3", null, "6.7", null, "0.2", null, "6.2", null, "0.2", null, "5.3", null, "0.1", null, "5.9", null, "0.2", null, "6.1", null, "0.4", null, "6.0", null, "0.3", null, "5.5", null, "0.1", null, "6.2", null, "0.1", null, "6.5", null, "0.4", null, "7.4", null, "0.4", null, "6.9", null, "0.3", null, "6.1", null, "0.3", null, "4.6", null, "0.3", null, "2.4", null, "0.2", null, "2.5", null, "0.3", null, "11.0", null, "0.1", null, "3.7", null, "0.1", null, "19.4", null, "0.1", null, "9.2", null, "0.2", null, "36.2", null, "0.2", null, "83.2", null, "0.2", null, "80.6", null, "0.1", null, "75.9", null, "0.3", null, "29.9", null, "0.4", null, "27.0", null, "0.4", null, "22.5", null, "0.1", null, "9.4", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "0.9", null, "-888888888.0", "(X)", "377364", null, "1795", null, "17862", null, "823", null, "19523", null, "1584", null, "23760", null, "1521", null, "25753", null, "929", null, "24648", null, "960", null, "20972", null, "763", null, "22721", null, "979", null, "23790", null, "1873", null, "23861", null, "1800", null, "21164", null, "622", null, "23561", null, "729", null, "25329", null, "1807", null, "26575", null, "1874", null, "26018", null, "1533", null, "21629", null, "1536", null, "15869", null, "1351", null, "8296", null, "948", null, "6033", null, "1034", null, "43283", null, "740", null, "14747", null, "731", null, "75892", null, "1309", null, "35654", null, "896", null, "141745", null, "1364", null, "311362", null, "1523", null, "301472", null, "1119", null, "284224", null, "1635", null, "104420", null, "1937", null, "94056", null, "1588", null, "77845", null, "515", null, "30198", null, "423", null, "41.8", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.7", null, "0.2", null, "5.2", null, "0.4", null, "6.3", null, "0.4", null, "6.8", null, "0.2", null, "6.5", null, "0.3", null, "5.6", null, "0.2", null, "6.0", null, "0.3", null, "6.3", null, "0.5", null, "6.3", null, "0.5", null, "5.6", null, "0.2", null, "6.2", null, "0.2", null, "6.7", null, "0.5", null, "7.0", null, "0.5", null, "6.9", null, "0.4", null, "5.7", null, "0.4", null, "4.2", null, "0.4", null, "2.2", null, "0.3", null, "1.6", null, "0.3", null, "11.5", null, "0.2", null, "3.9", null, "0.2", null, "20.1", null, "0.3", null, "9.4", null, "0.2", null, "37.6", null, "0.3", null, "82.5", null, "0.3", null, "79.9", null, "0.3", null, "75.3", null, "0.4", null, "27.7", null, "0.5", null, "24.9", null, "0.4", null, "20.6", null, "0.2", null, "8.0", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "381624", null, "1883", null, "17734", null, "982", null, "19721", null, "1679", null, "20601", null, "1538", null, "24979", null, "1039", null, "22593", null, "894", null, "19442", null, "851", null, "21948", null, "981", null, "22282", null, "1594", null, "21822", null, "1426", null, "20495", null, "821", null, "23510", null, "775", null, "23895", null, "1589", null, "29463", null, "1765", null, "26628", null, "1483", null, "25004", null, "1586", null, "18835", null, "1596", null, "9873", null, "1162", null, "12799", null, "1487", null, "40322", null, "780", null, "13370", null, "744", null, "71426", null, "1322", null, "34202", null, "942", null, "133066", null, "1673", null, "319786", null, "1574", null, "310198", null, "1283", null, "292125", null, "1649", null, "122602", null, "1876", null, "110617", null, "1928", null, "93139", null, "812", null, "41507", null, "555", null, "44.9", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.6", null, "0.2", null, "5.2", null, "0.4", null, "5.4", null, "0.4", null, "6.5", null, "0.3", null, "5.9", null, "0.2", null, "5.1", null, "0.2", null, "5.8", null, "0.3", null, "5.8", null, "0.4", null, "5.7", null, "0.4", null, "5.4", null, "0.2", null, "6.2", null, "0.2", null, "6.3", null, "0.4", null, "7.7", null, "0.5", null, "7.0", null, "0.4", null, "6.6", null, "0.4", null, "4.9", null, "0.4", null, "2.6", null, "0.3", null, "3.4", null, "0.4", null, "10.6", null, "0.2", null, "3.5", null, "0.2", null, "18.7", null, "0.3", null, "9.0", null, "0.2", null, "34.9", null, "0.4", null, "83.8", null, "0.3", null, "81.3", null, "0.3", null, "76.5", null, "0.5", null, "32.1", null, "0.5", null, "29.0", null, "0.5", null, "24.4", null, "0.2", null, "10.9", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "42", "16"], ["5001900US4217", "Congressional District 17 (119th Congress), Pennsylvania", "753416", null, "10701", null, "36815", null, "2639", null, "42890", null, "3539", null, "44899", null, "3589", null, "42087", null, "2635", null, "31012", null, "2595", null, "41567", null, "3396", null, "53277", null, "3042", null, "54420", null, "4246", null, "51907", null, "4639", null, "43818", null, "2778", null, "42612", null, "2716", null, "47836", null, "2877", null, "52686", null, "3315", null, "52853", null, "2987", null, "43681", null, "2898", null, "33759", null, "2750", null, "18752", null, "2026", null, "18545", null, "1856", null, "87789", null, "4170", null, "28327", null, "2357", null, "152931", null, "6520", null, "44772", null, "3084", null, "274270", null, "7185", null, "619508", null, "8075", null, "600485", null, "7813", null, "582126", null, "7756", null, "220276", null, "5635", null, "199713", null, "5395", null, "167590", null, "4848", null, "71056", null, "2846", null, "42.8", null, "0.7", null, "95.9", null, "2.2", null, "74.0", null, "1.9", null, "38.7", null, "1.5", null, "35.3", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.9", null, "0.3", null, "5.7", null, "0.5", null, "6.0", null, "0.5", null, "5.6", null, "0.3", null, "4.1", null, "0.3", null, "5.5", null, "0.4", null, "7.1", null, "0.4", null, "7.2", null, "0.5", null, "6.9", null, "0.6", null, "5.8", null, "0.4", null, "5.7", null, "0.4", null, "6.3", null, "0.4", null, "7.0", null, "0.4", null, "7.0", null, "0.4", null, "5.8", null, "0.4", null, "4.5", null, "0.4", null, "2.5", null, "0.3", null, "2.5", null, "0.3", null, "11.7", null, "0.5", null, "3.8", null, "0.3", null, "20.3", null, "0.7", null, "5.9", null, "0.4", null, "36.4", null, "0.7", null, "82.2", null, "0.7", null, "79.7", null, "0.7", null, "77.3", null, "0.7", null, "29.2", null, "0.8", null, "26.5", null, "0.8", null, "22.2", null, "0.7", null, "9.4", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.2", null, "-888888888.0", "(X)", "368831", null, "6547", null, "19548", null, "1810", null, "24478", null, "2494", null, "22056", null, "2272", null, "20775", null, "1678", null, "16007", null, "1839", null, "20248", null, "1970", null, "28793", null, "2051", null, "24185", null, "2506", null, "27815", null, "2926", null, "22281", null, "1606", null, "21289", null, "1690", null, "24222", null, "1995", null, "24470", null, "2246", null, "24969", null, "1827", null, "19318", null, "1808", null, "14435", null, "1531", null, "7847", null, "1222", null, "6095", null, "887", null, "46534", null, "2641", null, "13979", null, "1469", null, "80061", null, "4076", null, "22803", null, "2016", null, "137823", null, "4734", null, "297531", null, "5452", null, "288770", null, "5116", null, "280084", null, "4822", null, "97134", null, "3416", null, "87633", null, "3184", null, "72664", null, "2564", null, "28377", null, "1662", null, "41.5", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.3", null, "0.5", null, "6.6", null, "0.7", null, "6.0", null, "0.6", null, "5.6", null, "0.4", null, "4.3", null, "0.5", null, "5.5", null, "0.5", null, "7.8", null, "0.5", null, "6.6", null, "0.7", null, "7.5", null, "0.8", null, "6.0", null, "0.4", null, "5.8", null, "0.4", null, "6.6", null, "0.5", null, "6.6", null, "0.6", null, "6.8", null, "0.5", null, "5.2", null, "0.5", null, "3.9", null, "0.4", null, "2.1", null, "0.3", null, "1.7", null, "0.2", null, "12.6", null, "0.6", null, "3.8", null, "0.4", null, "21.7", null, "0.9", null, "6.2", null, "0.5", null, "37.4", null, "0.9", null, "80.7", null, "0.9", null, "78.3", null, "0.9", null, "75.9", null, "0.9", null, "26.3", null, "1.0", null, "23.8", null, "0.9", null, "19.7", null, "0.8", null, "7.7", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "384585", null, "7089", null, "17267", null, "1533", null, "18412", null, "2258", null, "22843", null, "2449", null, "21312", null, "1939", null, "15005", null, "1703", null, "21319", null, "2247", null, "24484", null, "1746", null, "30235", null, "2837", null, "24092", null, "2554", null, "21537", null, "1699", null, "21323", null, "1639", null, "23614", null, "1826", null, "28216", null, "2037", null, "27884", null, "1952", null, "24363", null, "1948", null, "19324", null, "1867", null, "10905", null, "1363", null, "12450", null, "1535", null, "41255", null, "3084", null, "14348", null, "1587", null, "72870", null, "4027", null, "21969", null, "2156", null, "136447", null, "4438", null, "321977", null, "5317", null, "311715", null, "5131", null, "302042", null, "4975", null, "123142", null, "3620", null, "112080", null, "3524", null, "94926", null, "3108", null, "42679", null, "1869", null, "44.5", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.5", null, "0.4", null, "4.8", null, "0.6", null, "5.9", null, "0.6", null, "5.5", null, "0.5", null, "3.9", null, "0.4", null, "5.5", null, "0.6", null, "6.4", null, "0.4", null, "7.9", null, "0.7", null, "6.3", null, "0.6", null, "5.6", null, "0.4", null, "5.5", null, "0.4", null, "6.1", null, "0.5", null, "7.3", null, "0.5", null, "7.3", null, "0.5", null, "6.3", null, "0.5", null, "5.0", null, "0.5", null, "2.8", null, "0.4", null, "3.2", null, "0.4", null, "10.7", null, "0.7", null, "3.7", null, "0.4", null, "18.9", null, "0.8", null, "5.7", null, "0.6", null, "35.5", null, "0.9", null, "83.7", null, "0.9", null, "81.1", null, "0.8", null, "78.5", null, "0.8", null, "32.0", null, "0.9", null, "29.1", null, "0.9", null, "24.7", null, "0.8", null, "11.1", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "42", "17"], ["5001900US4401", "Congressional District 1 (119th Congress), Rhode Island", "555745", null, "8171", null, "27976", null, "2087", null, "26564", null, "3116", null, "29679", null, "2890", null, "35002", null, "2680", null, "37915", null, "3495", null, "36161", null, "2203", null, "40313", null, "3235", null, "39447", null, "4968", null, "39219", null, "4120", null, "27652", null, "2593", null, "31960", null, "2292", null, "36402", null, "3445", null, "35195", null, "2880", null, "34012", null, "2775", null, "30663", null, "2827", null, "19725", null, "2229", null, "14767", null, "2058", null, "13093", null, "1839", null, "56243", null, "3777", null, "18041", null, "2022", null, "102260", null, "5177", null, "54876", null, "3341", null, "228057", null, "5633", null, "466349", null, "6728", null, "453485", null, "6623", null, "427579", null, "6671", null, "147455", null, "4126", null, "135299", null, "4266", null, "112260", null, "3040", null, "47585", null, "2084", null, "40.6", null, "0.7", null, "96.9", null, "2.6", null, "62.9", null, "2.0", null, "32.9", null, "1.2", null, "30.0", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.0", null, "0.4", null, "4.8", null, "0.6", null, "5.3", null, "0.5", null, "6.3", null, "0.5", null, "6.8", null, "0.6", null, "6.5", null, "0.4", null, "7.3", null, "0.6", null, "7.1", null, "0.9", null, "7.1", null, "0.7", null, "5.0", null, "0.5", null, "5.8", null, "0.4", null, "6.6", null, "0.6", null, "6.3", null, "0.5", null, "6.1", null, "0.5", null, "5.5", null, "0.5", null, "3.5", null, "0.4", null, "2.7", null, "0.4", null, "2.4", null, "0.3", null, "10.1", null, "0.6", null, "3.2", null, "0.3", null, "18.4", null, "0.8", null, "9.9", null, "0.6", null, "41.0", null, "0.7", null, "83.9", null, "0.7", null, "81.6", null, "0.8", null, "76.9", null, "0.9", null, "26.5", null, "0.8", null, "24.3", null, "0.9", null, "20.2", null, "0.6", null, "8.6", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.2", null, "-888888888.0", "(X)", "273452", null, "6297", null, "14307", null, "1722", null, "12168", null, "2018", null, "15216", null, "2280", null, "16600", null, "2085", null, "20567", null, "2280", null, "18726", null, "1632", null, "20198", null, "2228", null, "21007", null, "2982", null, "20421", null, "2785", null, "14147", null, "1902", null, "15384", null, "1474", null, "17158", null, "2182", null, "17039", null, "1939", null, "16009", null, "1975", null, "14705", null, "1824", null, "8644", null, "1223", null, "5888", null, "1020", null, "5268", null, "1007", null, "27384", null, "2800", null, "9395", null, "1835", null, "51086", null, "4418", null, "27772", null, "2473", null, "117519", null, "4449", null, "229348", null, "4960", null, "222366", null, "4973", null, "209830", null, "4922", null, "67553", null, "2573", null, "61295", null, "2836", null, "50514", null, "1852", null, "19800", null, "1034", null, "39.4", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.6", null, "4.4", null, "0.7", null, "5.6", null, "0.8", null, "6.1", null, "0.7", null, "7.5", null, "0.8", null, "6.8", null, "0.6", null, "7.4", null, "0.8", null, "7.7", null, "1.1", null, "7.5", null, "1.0", null, "5.2", null, "0.7", null, "5.6", null, "0.5", null, "6.3", null, "0.8", null, "6.2", null, "0.7", null, "5.9", null, "0.7", null, "5.4", null, "0.7", null, "3.2", null, "0.5", null, "2.2", null, "0.4", null, "1.9", null, "0.4", null, "10.0", null, "0.9", null, "3.4", null, "0.6", null, "18.7", null, "1.4", null, "10.2", null, "0.9", null, "43.0", null, "1.2", null, "83.9", null, "1.2", null, "81.3", null, "1.4", null, "76.7", null, "1.5", null, "24.7", null, "1.1", null, "22.4", null, "1.2", null, "18.5", null, "0.8", null, "7.2", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "282293", null, "4561", null, "13669", null, "1742", null, "14396", null, "2354", null, "14463", null, "1858", null, "18402", null, "1922", null, "17348", null, "1956", null, "17435", null, "1677", null, "20115", null, "1709", null, "18440", null, "2909", null, "18798", null, "2582", null, "13505", null, "1495", null, "16576", null, "1423", null, "19244", null, "2284", null, "18156", null, "1789", null, "18003", null, "1805", null, "15958", null, "1783", null, "11081", null, "1519", null, "8879", null, "1653", null, "7825", null, "1267", null, "28859", null, "2428", null, "8646", null, "1324", null, "51174", null, "2763", null, "27104", null, "2028", null, "110538", null, "3373", null, "237001", null, "4030", null, "231119", null, "3861", null, "217749", null, "3748", null, "79902", null, "2870", null, "74004", null, "2892", null, "61746", null, "2202", null, "27785", null, "1578", null, "41.6", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.8", null, "0.6", null, "5.1", null, "0.8", null, "5.1", null, "0.6", null, "6.5", null, "0.7", null, "6.1", null, "0.7", null, "6.2", null, "0.6", null, "7.1", null, "0.6", null, "6.5", null, "1.0", null, "6.7", null, "0.9", null, "4.8", null, "0.5", null, "5.9", null, "0.5", null, "6.8", null, "0.8", null, "6.4", null, "0.6", null, "6.4", null, "0.7", null, "5.7", null, "0.6", null, "3.9", null, "0.5", null, "3.1", null, "0.6", null, "2.8", null, "0.5", null, "10.2", null, "0.8", null, "3.1", null, "0.5", null, "18.1", null, "0.9", null, "9.6", null, "0.7", null, "39.2", null, "0.9", null, "84.0", null, "0.9", null, "81.9", null, "0.9", null, "77.1", null, "0.8", null, "28.3", null, "1.1", null, "26.2", null, "1.1", null, "21.9", null, "0.8", null, "9.8", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "44", "01"], ["5001900US4402", "Congressional District 2 (119th Congress), Rhode Island", "556563", null, "8171", null, "23449", null, "2425", null, "26594", null, "3320", null, "30527", null, "3629", null, "39537", null, "3167", null, "37995", null, "3228", null, "35483", null, "2377", null, "38711", null, "3303", null, "34955", null, "3575", null, "35538", null, "3713", null, "34004", null, "2552", null, "33580", null, "2801", null, "37315", null, "3032", null, "40967", null, "3230", null, "34263", null, "2065", null, "28621", null, "2310", null, "19842", null, "2050", null, "13408", null, "1811", null, "11774", null, "1912", null, "57121", null, "3730", null, "20706", null, "1965", null, "101276", null, "4868", null, "56826", null, "3513", null, "222219", null, "5962", null, "469448", null, "7025", null, "455287", null, "6620", null, "427915", null, "6045", null, "148875", null, "4397", null, "134743", null, "3984", null, "107908", null, "2905", null, "45024", null, "1976", null, "41.3", null, "0.6", null, "96.9", null, "2.5", null, "60.2", null, "1.8", null, "31.1", null, "1.1", null, "29.2", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.2", null, "0.4", null, "4.8", null, "0.6", null, "5.5", null, "0.6", null, "7.1", null, "0.5", null, "6.8", null, "0.6", null, "6.4", null, "0.4", null, "7.0", null, "0.6", null, "6.3", null, "0.6", null, "6.4", null, "0.7", null, "6.1", null, "0.4", null, "6.0", null, "0.5", null, "6.7", null, "0.5", null, "7.4", null, "0.6", null, "6.2", null, "0.4", null, "5.1", null, "0.4", null, "3.6", null, "0.4", null, "2.4", null, "0.3", null, "2.1", null, "0.3", null, "10.3", null, "0.6", null, "3.7", null, "0.3", null, "18.2", null, "0.7", null, "10.2", null, "0.6", null, "39.9", null, "0.8", null, "84.3", null, "0.7", null, "81.8", null, "0.7", null, "76.9", null, "0.8", null, "26.7", null, "0.8", null, "24.2", null, "0.8", null, "19.4", null, "0.6", null, "8.1", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.0", null, "-888888888.0", "(X)", "273919", null, "5993", null, "11727", null, "1566", null, "12642", null, "2364", null, "18200", null, "2584", null, "21291", null, "2496", null, "18196", null, "2073", null, "17797", null, "1869", null, "20302", null, "2208", null, "16387", null, "2679", null, "18743", null, "2167", null, "15490", null, "1674", null, "16689", null, "1886", null, "19159", null, "1833", null, "19409", null, "1881", null, "16488", null, "1518", null, "13100", null, "1757", null, "8796", null, "1172", null, "5170", null, "1072", null, "4333", null, "941", null, "30842", null, "3044", null, "11700", null, "1914", null, "54269", null, "4316", null, "27787", null, "2422", null, "112716", null, "4458", null, "228494", null, "5105", null, "219650", null, "4695", null, "206654", null, "4264", null, "67296", null, "2645", null, "60629", null, "2689", null, "47887", null, "1916", null, "18299", null, "1175", null, "40.1", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.3", null, "0.5", null, "4.6", null, "0.8", null, "6.6", null, "0.9", null, "7.8", null, "0.9", null, "6.6", null, "0.7", null, "6.5", null, "0.7", null, "7.4", null, "0.8", null, "6.0", null, "1.0", null, "6.8", null, "0.8", null, "5.7", null, "0.6", null, "6.1", null, "0.7", null, "7.0", null, "0.7", null, "7.1", null, "0.7", null, "6.0", null, "0.5", null, "4.8", null, "0.7", null, "3.2", null, "0.4", null, "1.9", null, "0.4", null, "1.6", null, "0.3", null, "11.3", null, "1.0", null, "4.3", null, "0.7", null, "19.8", null, "1.3", null, "10.1", null, "0.9", null, "41.1", null, "1.3", null, "83.4", null, "1.3", null, "80.2", null, "1.3", null, "75.4", null, "1.4", null, "24.6", null, "1.1", null, "22.1", null, "1.0", null, "17.5", null, "0.8", null, "6.7", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "282644", null, "4733", null, "11722", null, "1876", null, "13952", null, "2511", null, "12327", null, "2175", null, "18246", null, "2229", null, "19799", null, "2267", null, "17686", null, "1808", null, "18409", null, "1729", null, "18568", null, "2395", null, "16795", null, "2529", null, "18514", null, "1651", null, "16891", null, "1602", null, "18156", null, "2282", null, "21558", null, "2064", null, "17775", null, "1757", null, "15521", null, "1496", null, "11046", null, "1524", null, "8238", null, "1467", null, "7441", null, "1446", null, "26279", null, "2605", null, "9006", null, "1332", null, "47007", null, "2971", null, "29039", null, "2219", null, "109503", null, "3469", null, "240954", null, "4110", null, "235637", null, "3891", null, "221261", null, "3697", null, "81579", null, "2867", null, "74114", null, "2416", null, "60021", null, "1932", null, "26725", null, "1344", null, "43.6", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.1", null, "0.7", null, "4.9", null, "0.9", null, "4.4", null, "0.8", null, "6.5", null, "0.7", null, "7.0", null, "0.8", null, "6.3", null, "0.6", null, "6.5", null, "0.6", null, "6.6", null, "0.8", null, "5.9", null, "0.9", null, "6.6", null, "0.6", null, "6.0", null, "0.5", null, "6.4", null, "0.8", null, "7.6", null, "0.7", null, "6.3", null, "0.6", null, "5.5", null, "0.5", null, "3.9", null, "0.5", null, "2.9", null, "0.5", null, "2.6", null, "0.5", null, "9.3", null, "0.9", null, "3.2", null, "0.5", null, "16.6", null, "0.9", null, "10.3", null, "0.7", null, "38.7", null, "1.0", null, "85.2", null, "1.0", null, "83.4", null, "0.9", null, "78.3", null, "1.1", null, "28.9", null, "1.0", null, "26.2", null, "0.9", null, "21.2", null, "0.7", null, "9.5", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "44", "02"], ["5001900US4501", "Congressional District 1 (119th Congress), South Carolina", "797468", null, "8949", null, "44416", null, "2484", null, "46453", null, "3422", null, "45766", null, "4202", null, "46872", null, "3025", null, "45614", null, "3094", null, "47229", null, "3121", null, "48794", null, "3385", null, "55444", null, "4208", null, "51325", null, "4502", null, "46994", null, "2645", null, "47355", null, "3082", null, "47221", null, "3768", null, "56815", null, "4019", null, "47888", null, "2998", null, "49468", null, "2920", null, "35507", null, "2289", null, "19456", null, "2312", null, "14851", null, "2214", null, "92219", null, "4118", null, "30725", null, "2109", null, "167360", null, "4350", null, "61761", null, "3010", null, "295278", null, "6712", null, "650969", null, "7733", null, "630108", null, "7000", null, "604855", null, "6633", null, "223985", null, "4784", null, "200123", null, "4367", null, "167170", null, "3223", null, "69814", null, "2066", null, "41.5", null, "0.5", null, "98.0", null, "1.9", null, "72.3", null, "1.5", null, "36.1", null, "0.9", null, "36.2", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.6", null, "0.3", null, "5.8", null, "0.4", null, "5.7", null, "0.5", null, "5.9", null, "0.4", null, "5.7", null, "0.4", null, "5.9", null, "0.4", null, "6.1", null, "0.4", null, "7.0", null, "0.5", null, "6.4", null, "0.5", null, "5.9", null, "0.3", null, "5.9", null, "0.4", null, "5.9", null, "0.5", null, "7.1", null, "0.5", null, "6.0", null, "0.4", null, "6.2", null, "0.4", null, "4.5", null, "0.3", null, "2.4", null, "0.3", null, "1.9", null, "0.3", null, "11.6", null, "0.5", null, "3.9", null, "0.3", null, "21.0", null, "0.4", null, "7.7", null, "0.4", null, "37.0", null, "0.6", null, "81.6", null, "0.5", null, "79.0", null, "0.4", null, "75.8", null, "0.5", null, "28.1", null, "0.7", null, "25.1", null, "0.6", null, "21.0", null, "0.4", null, "8.8", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "0.9", null, "-888888888.0", "(X)", "394627", null, "6118", null, "24294", null, "2161", null, "25121", null, "2341", null, "22189", null, "3028", null, "25305", null, "2401", null, "26993", null, "2041", null, "22130", null, "1820", null, "23750", null, "2312", null, "27811", null, "3173", null, "23912", null, "2821", null, "23001", null, "1841", null, "23365", null, "1779", null, "22508", null, "2682", null, "26697", null, "2504", null, "23190", null, "2054", null, "22703", null, "1828", null, "17365", null, "1475", null, "8633", null, "1390", null, "5660", null, "1240", null, "47310", null, "3018", null, "16242", null, "1908", null, "87846", null, "4267", null, "36056", null, "1807", null, "149901", null, "4011", null, "318204", null, "5106", null, "306781", null, "4422", null, "291516", null, "4479", null, "104248", null, "3054", null, "93656", null, "2925", null, "77551", null, "2003", null, "31658", null, "1149", null, "39.9", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.2", null, "0.5", null, "6.4", null, "0.6", null, "5.6", null, "0.7", null, "6.4", null, "0.6", null, "6.8", null, "0.5", null, "5.6", null, "0.5", null, "6.0", null, "0.6", null, "7.0", null, "0.8", null, "6.1", null, "0.7", null, "5.8", null, "0.5", null, "5.9", null, "0.4", null, "5.7", null, "0.7", null, "6.8", null, "0.6", null, "5.9", null, "0.5", null, "5.8", null, "0.5", null, "4.4", null, "0.4", null, "2.2", null, "0.4", null, "1.4", null, "0.3", null, "12.0", null, "0.7", null, "4.1", null, "0.5", null, "22.3", null, "0.9", null, "9.1", null, "0.5", null, "38.0", null, "0.8", null, "80.6", null, "0.8", null, "77.7", null, "0.9", null, "73.9", null, "0.9", null, "26.4", null, "0.8", null, "23.7", null, "0.8", null, "19.7", null, "0.6", null, "8.0", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "402841", null, "5570", null, "20122", null, "1605", null, "21332", null, "2635", null, "23577", null, "2949", null, "21567", null, "1961", null, "18621", null, "1878", null, "25099", null, "2157", null, "25044", null, "1753", null, "27633", null, "2617", null, "27413", null, "2791", null, "23993", null, "1636", null, "23990", null, "2001", null, "24713", null, "2016", null, "30118", null, "2340", null, "24698", null, "2055", null, "26765", null, "2196", null, "18142", null, "1625", null, "10823", null, "1635", null, "9191", null, "1561", null, "44909", null, "2837", null, "14483", null, "1603", null, "79514", null, "3597", null, "25705", null, "1971", null, "145377", null, "4062", null, "332765", null, "4591", null, "323327", null, "4206", null, "313339", null, "4236", null, "119737", null, "2837", null, "106467", null, "2745", null, "89619", null, "1895", null, "38156", null, "1330", null, "43.1", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.0", null, "0.4", null, "5.3", null, "0.6", null, "5.9", null, "0.7", null, "5.4", null, "0.5", null, "4.6", null, "0.5", null, "6.2", null, "0.5", null, "6.2", null, "0.4", null, "6.9", null, "0.7", null, "6.8", null, "0.7", null, "6.0", null, "0.4", null, "6.0", null, "0.5", null, "6.1", null, "0.5", null, "7.5", null, "0.6", null, "6.1", null, "0.5", null, "6.6", null, "0.5", null, "4.5", null, "0.4", null, "2.7", null, "0.4", null, "2.3", null, "0.4", null, "11.1", null, "0.6", null, "3.6", null, "0.4", null, "19.7", null, "0.7", null, "6.4", null, "0.5", null, "36.1", null, "0.8", null, "82.6", null, "0.8", null, "80.3", null, "0.7", null, "77.8", null, "0.8", null, "29.7", null, "0.7", null, "26.4", null, "0.7", null, "22.2", null, "0.5", null, "9.5", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "45", "01"], ["5001900US4502", "Congressional District 2 (119th Congress), South Carolina", "764414", null, "12702", null, "42269", null, "2263", null, "42705", null, "3483", null, "51451", null, "3761", null, "50532", null, "3105", null, "45619", null, "2845", null, "44421", null, "2601", null, "52604", null, "3085", null, "50167", null, "4741", null, "54666", null, "4216", null, "46332", null, "2934", null, "45982", null, "2611", null, "45393", null, "3284", null, "52760", null, "3564", null, "47488", null, "2911", null, "36120", null, "2889", null, "29996", null, "2119", null, "14397", null, "1749", null, "11512", null, "1578", null, "94156", null, "4212", null, "32322", null, "2171", null, "168747", null, "5741", null, "63829", null, "3029", null, "298009", null, "7149", null, "618774", null, "9368", null, "595667", null, "8452", null, "568265", null, "8393", null, "192273", null, "4848", null, "169233", null, "4342", null, "139513", null, "3000", null, "55905", null, "1788", null, "40.2", null, "0.5", null, "95.0", null, "1.7", null, "67.6", null, "1.4", null, "30.6", null, "0.9", null, "37.0", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.3", null, "5.6", null, "0.4", null, "6.7", null, "0.5", null, "6.6", null, "0.4", null, "6.0", null, "0.4", null, "5.8", null, "0.3", null, "6.9", null, "0.4", null, "6.6", null, "0.6", null, "7.2", null, "0.6", null, "6.1", null, "0.4", null, "6.0", null, "0.3", null, "5.9", null, "0.4", null, "6.9", null, "0.5", null, "6.2", null, "0.4", null, "4.7", null, "0.4", null, "3.9", null, "0.3", null, "1.9", null, "0.2", null, "1.5", null, "0.2", null, "12.3", null, "0.4", null, "4.2", null, "0.3", null, "22.1", null, "0.5", null, "8.4", null, "0.4", null, "39.0", null, "0.5", null, "80.9", null, "0.5", null, "77.9", null, "0.5", null, "74.3", null, "0.6", null, "25.2", null, "0.7", null, "22.1", null, "0.6", null, "18.3", null, "0.4", null, "7.3", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.2", null, "-888888888.0", "(X)", "372377", null, "6605", null, "20238", null, "1700", null, "21903", null, "2395", null, "26547", null, "2386", null, "29107", null, "2129", null, "24379", null, "2114", null, "21807", null, "1684", null, "26408", null, "2050", null, "25036", null, "2855", null, "25620", null, "2934", null, "21380", null, "1898", null, "21717", null, "1640", null, "20637", null, "2123", null, "26087", null, "2492", null, "22161", null, "1731", null, "15639", null, "1538", null, "13187", null, "1278", null, "6757", null, "1101", null, "3767", null, "806", null, "48450", null, "2585", null, "17555", null, "1330", null, "86243", null, "3145", null, "35931", null, "2269", null, "152357", null, "4296", null, "299051", null, "5250", null, "286134", null, "4776", null, "268343", null, "4682", null, "87598", null, "3099", null, "75966", null, "2560", null, "61511", null, "1800", null, "23711", null, "1209", null, "38.2", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.4", null, "5.9", null, "0.6", null, "7.1", null, "0.6", null, "7.8", null, "0.5", null, "6.5", null, "0.6", null, "5.9", null, "0.4", null, "7.1", null, "0.5", null, "6.7", null, "0.7", null, "6.9", null, "0.8", null, "5.7", null, "0.5", null, "5.8", null, "0.4", null, "5.5", null, "0.6", null, "7.0", null, "0.7", null, "6.0", null, "0.5", null, "4.2", null, "0.4", null, "3.5", null, "0.3", null, "1.8", null, "0.3", null, "1.0", null, "0.2", null, "13.0", null, "0.6", null, "4.7", null, "0.3", null, "23.2", null, "0.6", null, "9.6", null, "0.6", null, "40.9", null, "0.8", null, "80.3", null, "0.7", null, "76.8", null, "0.6", null, "72.1", null, "0.8", null, "23.5", null, "0.8", null, "20.4", null, "0.7", null, "16.5", null, "0.5", null, "6.4", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "392037", null, "7881", null, "22031", null, "1531", null, "20802", null, "2524", null, "24904", null, "2420", null, "21425", null, "2195", null, "21240", null, "2187", null, "22614", null, "1952", null, "26196", null, "1897", null, "25131", null, "2763", null, "29046", null, "2749", null, "24952", null, "1762", null, "24265", null, "1660", null, "24756", null, "2693", null, "26673", null, "2292", null, "25327", null, "2305", null, "20481", null, "2103", null, "16809", null, "1558", null, "7640", null, "1181", null, "7745", null, "1307", null, "45706", null, "2462", null, "14767", null, "1686", null, "82504", null, "3813", null, "27898", null, "2473", null, "145652", null, "4928", null, "319723", null, "5921", null, "309533", null, "5333", null, "299922", null, "5222", null, "104675", null, "3089", null, "93267", null, "2625", null, "78002", null, "1934", null, "32194", null, "1057", null, "42.0", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.6", null, "0.4", null, "5.3", null, "0.6", null, "6.4", null, "0.6", null, "5.5", null, "0.5", null, "5.4", null, "0.5", null, "5.8", null, "0.5", null, "6.7", null, "0.5", null, "6.4", null, "0.7", null, "7.4", null, "0.7", null, "6.4", null, "0.5", null, "6.2", null, "0.4", null, "6.3", null, "0.7", null, "6.8", null, "0.6", null, "6.5", null, "0.6", null, "5.2", null, "0.5", null, "4.3", null, "0.4", null, "1.9", null, "0.3", null, "2.0", null, "0.3", null, "11.7", null, "0.5", null, "3.8", null, "0.4", null, "21.0", null, "0.7", null, "7.1", null, "0.6", null, "37.2", null, "0.7", null, "81.6", null, "0.6", null, "79.0", null, "0.7", null, "76.5", null, "0.8", null, "26.7", null, "0.9", null, "23.8", null, "0.7", null, "19.9", null, "0.5", null, "8.2", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "45", "02"], ["5001900US4503", "Congressional District 3 (119th Congress), South Carolina", "766747", null, "7077", null, "38954", null, "2066", null, "41557", null, "3109", null, "45487", null, "3035", null, "58456", null, "2884", null, "50041", null, "2947", null, "42033", null, "2320", null, "48877", null, "2951", null, "44433", null, "3700", null, "46869", null, "3950", null, "42743", null, "2641", null, "48867", null, "2183", null, "47233", null, "2877", null, "54733", null, "3074", null, "50261", null, "2871", null, "40941", null, "2493", null, "30770", null, "2226", null, "19095", null, "1913", null, "15397", null, "1527", null, "87044", null, "2993", null, "30004", null, "1676", null, "156002", null, "3289", null, "78493", null, "3158", null, "290709", null, "5329", null, "632654", null, "5417", null, "610745", null, "4722", null, "569647", null, "5365", null, "211197", null, "3815", null, "191409", null, "3617", null, "156464", null, "2345", null, "65262", null, "1808", null, "41.4", null, "0.6", null, "96.7", null, "1.6", null, "68.8", null, "0.9", null, "34.4", null, "0.7", null, "34.3", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.1", null, "0.3", null, "5.4", null, "0.4", null, "5.9", null, "0.4", null, "7.6", null, "0.4", null, "6.5", null, "0.4", null, "5.5", null, "0.3", null, "6.4", null, "0.4", null, "5.8", null, "0.5", null, "6.1", null, "0.5", null, "5.6", null, "0.3", null, "6.4", null, "0.3", null, "6.2", null, "0.4", null, "7.1", null, "0.4", null, "6.6", null, "0.4", null, "5.3", null, "0.3", null, "4.0", null, "0.3", null, "2.5", null, "0.3", null, "2.0", null, "0.2", null, "11.4", null, "0.3", null, "3.9", null, "0.2", null, "20.3", null, "0.3", null, "10.2", null, "0.4", null, "37.9", null, "0.5", null, "82.5", null, "0.3", null, "79.7", null, "0.3", null, "74.3", null, "0.6", null, "27.5", null, "0.5", null, "25.0", null, "0.5", null, "20.4", null, "0.3", null, "8.5", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.0", null, "-888888888.0", "(X)", "377018", null, "4651", null, "21314", null, "2333", null, "21222", null, "2159", null, "22988", null, "1961", null, "29146", null, "2220", null, "27913", null, "2514", null, "20524", null, "1504", null, "23163", null, "1961", null, "22275", null, "2584", null, "23242", null, "2377", null, "20981", null, "1782", null, "24231", null, "1266", null, "23562", null, "2029", null, "25922", null, "2199", null, "23028", null, "1975", null, "19477", null, "1432", null, "14123", null, "1382", null, "7978", null, "1117", null, "5929", null, "1082", null, "44210", null, "2007", null, "15852", null, "1581", null, "81376", null, "2892", null, "41207", null, "2628", null, "146263", null, "3651", null, "307128", null, "3394", null, "295642", null, "2834", null, "274589", null, "3641", null, "96457", null, "2391", null, "86709", null, "2096", null, "70535", null, "1339", null, "28030", null, "1259", null, "40.0", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.7", null, "0.6", null, "5.6", null, "0.6", null, "6.1", null, "0.5", null, "7.7", null, "0.6", null, "7.4", null, "0.7", null, "5.4", null, "0.4", null, "6.1", null, "0.5", null, "5.9", null, "0.7", null, "6.2", null, "0.6", null, "5.6", null, "0.5", null, "6.4", null, "0.3", null, "6.2", null, "0.5", null, "6.9", null, "0.6", null, "6.1", null, "0.5", null, "5.2", null, "0.4", null, "3.7", null, "0.4", null, "2.1", null, "0.3", null, "1.6", null, "0.3", null, "11.7", null, "0.5", null, "4.2", null, "0.4", null, "21.6", null, "0.6", null, "10.9", null, "0.7", null, "38.8", null, "0.8", null, "81.5", null, "0.6", null, "78.4", null, "0.6", null, "72.8", null, "0.9", null, "25.6", null, "0.6", null, "23.0", null, "0.6", null, "18.7", null, "0.4", null, "7.4", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "389729", null, "4762", null, "17640", null, "1648", null, "20335", null, "2385", null, "22499", null, "2188", null, "29310", null, "2362", null, "22128", null, "1693", null, "21509", null, "1645", null, "25714", null, "1943", null, "22158", null, "1923", null, "23627", null, "2267", null, "21762", null, "1602", null, "24636", null, "1563", null, "23671", null, "1927", null, "28811", null, "1838", null, "27233", null, "1863", null, "21464", null, "1805", null, "16647", null, "1529", null, "11117", null, "1442", null, "9468", null, "1257", null, "42834", null, "2409", null, "14152", null, "1352", null, "74626", null, "3322", null, "37286", null, "1464", null, "144446", null, "3172", null, "325526", null, "3127", null, "315103", null, "2703", null, "295058", null, "3084", null, "114740", null, "2366", null, "104700", null, "2333", null, "85929", null, "1352", null, "37232", null, "1112", null, "42.6", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.5", null, "0.4", null, "5.2", null, "0.6", null, "5.8", null, "0.5", null, "7.5", null, "0.6", null, "5.7", null, "0.4", null, "5.5", null, "0.4", null, "6.6", null, "0.5", null, "5.7", null, "0.5", null, "6.1", null, "0.6", null, "5.6", null, "0.4", null, "6.3", null, "0.4", null, "6.1", null, "0.5", null, "7.4", null, "0.5", null, "7.0", null, "0.5", null, "5.5", null, "0.5", null, "4.3", null, "0.4", null, "2.9", null, "0.4", null, "2.4", null, "0.3", null, "11.0", null, "0.5", null, "3.6", null, "0.3", null, "19.1", null, "0.7", null, "9.6", null, "0.4", null, "37.1", null, "0.7", null, "83.5", null, "0.7", null, "80.9", null, "0.7", null, "75.7", null, "0.8", null, "29.4", null, "0.7", null, "26.9", null, "0.7", null, "22.0", null, "0.5", null, "9.6", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "45", "03"], ["5001900US4504", "Congressional District 4 (119th Congress), South Carolina", "810387", null, "9896", null, "46708", null, "1856", null, "48511", null, "3613", null, "53223", null, "3703", null, "54914", null, "2462", null, "53858", null, "2223", null, "52608", null, "2294", null, "59172", null, "2342", null, "52649", null, "3668", null, "56113", null, "3751", null, "49441", null, "1886", null, "48915", null, "2247", null, "45063", null, "3209", null, "52417", null, "3141", null, "41145", null, "2936", null, "37692", null, "3085", null, "26595", null, "2300", null, "18757", null, "2037", null, "12606", null, "1792", null, "101734", null, "3538", null, "34982", null, "1329", null, "183424", null, "4836", null, "73790", null, "1957", null, "329314", null, "5597", null, "648985", null, "7271", null, "626963", null, "6452", null, "597734", null, "6641", null, "189212", null, "4213", null, "168522", null, "3673", null, "136795", null, "2803", null, "57958", null, "1751", null, "38.3", null, "0.6", null, "94.6", null, "1.1", null, "65.3", null, "1.1", null, "27.9", null, "0.7", null, "37.4", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.8", null, "0.2", null, "6.0", null, "0.4", null, "6.6", null, "0.4", null, "6.8", null, "0.3", null, "6.6", null, "0.3", null, "6.5", null, "0.3", null, "7.3", null, "0.3", null, "6.5", null, "0.4", null, "6.9", null, "0.5", null, "6.1", null, "0.2", null, "6.0", null, "0.3", null, "5.6", null, "0.4", null, "6.5", null, "0.4", null, "5.1", null, "0.4", null, "4.7", null, "0.4", null, "3.3", null, "0.3", null, "2.3", null, "0.2", null, "1.6", null, "0.2", null, "12.6", null, "0.3", null, "4.3", null, "0.1", null, "22.6", null, "0.4", null, "9.1", null, "0.2", null, "40.6", null, "0.4", null, "80.1", null, "0.5", null, "77.4", null, "0.4", null, "73.8", null, "0.5", null, "23.3", null, "0.6", null, "20.8", null, "0.5", null, "16.9", null, "0.4", null, "7.2", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.5", null, "-888888888.0", "(X)", "393902", null, "5421", null, "23572", null, "1599", null, "25219", null, "2713", null, "28217", null, "2701", null, "26688", null, "2107", null, "25874", null, "1536", null, "26753", null, "1419", null, "29168", null, "1214", null, "25959", null, "2129", null, "26743", null, "2319", null, "24275", null, "1710", null, "23585", null, "1347", null, "22201", null, "2269", null, "24813", null, "1972", null, "20089", null, "1745", null, "16058", null, "1784", null, "11974", null, "1379", null, "8140", null, "1308", null, "4574", null, "1017", null, "53436", null, "2178", null, "16904", null, "1317", null, "93912", null, "2997", null, "35658", null, "1278", null, "161185", null, "3173", null, "311076", null, "4256", null, "299990", null, "3545", null, "285878", null, "3515", null, "85648", null, "2701", null, "75264", null, "2342", null, "60835", null, "1682", null, "24688", null, "1137", null, "36.8", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.0", null, "0.4", null, "6.4", null, "0.7", null, "7.2", null, "0.7", null, "6.8", null, "0.5", null, "6.6", null, "0.4", null, "6.8", null, "0.3", null, "7.4", null, "0.3", null, "6.6", null, "0.5", null, "6.8", null, "0.6", null, "6.2", null, "0.4", null, "6.0", null, "0.3", null, "5.6", null, "0.6", null, "6.3", null, "0.5", null, "5.1", null, "0.4", null, "4.1", null, "0.5", null, "3.0", null, "0.4", null, "2.1", null, "0.3", null, "1.2", null, "0.3", null, "13.6", null, "0.5", null, "4.3", null, "0.3", null, "23.8", null, "0.5", null, "9.1", null, "0.3", null, "40.9", null, "0.5", null, "79.0", null, "0.6", null, "76.2", null, "0.5", null, "72.6", null, "0.7", null, "21.7", null, "0.7", null, "19.1", null, "0.6", null, "15.4", null, "0.4", null, "6.3", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "416485", null, "5524", null, "23136", null, "1006", null, "23292", null, "2382", null, "25006", null, "2456", null, "28226", null, "1777", null, "27984", null, "1563", null, "25855", null, "1444", null, "30004", null, "1589", null, "26690", null, "2855", null, "29370", null, "2959", null, "25166", null, "1300", null, "25330", null, "1283", null, "22862", null, "2098", null, "27604", null, "2332", null, "21056", null, "1890", null, "21634", null, "2008", null, "14621", null, "1665", null, "10617", null, "1479", null, "8032", null, "1427", null, "48298", null, "2329", null, "18078", null, "1054", null, "89512", null, "2765", null, "38132", null, "1137", null, "168129", null, "3206", null, "337909", null, "4002", null, "326973", null, "3761", null, "311856", null, "4037", null, "103564", null, "2596", null, "93258", null, "2279", null, "75960", null, "1449", null, "33270", null, "1106", null, "39.7", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.6", null, "0.2", null, "5.6", null, "0.6", null, "6.0", null, "0.6", null, "6.8", null, "0.4", null, "6.7", null, "0.4", null, "6.2", null, "0.3", null, "7.2", null, "0.4", null, "6.4", null, "0.7", null, "7.1", null, "0.7", null, "6.0", null, "0.3", null, "6.1", null, "0.3", null, "5.5", null, "0.5", null, "6.6", null, "0.6", null, "5.1", null, "0.5", null, "5.2", null, "0.5", null, "3.5", null, "0.4", null, "2.5", null, "0.4", null, "1.9", null, "0.3", null, "11.6", null, "0.5", null, "4.3", null, "0.2", null, "21.5", null, "0.5", null, "9.2", null, "0.3", null, "40.4", null, "0.5", null, "81.1", null, "0.7", null, "78.5", null, "0.5", null, "74.9", null, "0.6", null, "24.9", null, "0.7", null, "22.4", null, "0.6", null, "18.2", null, "0.4", null, "8.0", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "45", "04"], ["5001900US4505", "Congressional District 5 (119th Congress), South Carolina", "782718", null, "7909", null, "44647", null, "2245", null, "50167", null, "3632", null, "53214", null, "3746", null, "49006", null, "3068", null, "43288", null, "2823", null, "44413", null, "2440", null, "51525", null, "2900", null, "54463", null, "4025", null, "53644", null, "4552", null, "47078", null, "2541", null, "49169", null, "2430", null, "46212", null, "3333", null, "49166", null, "3615", null, "51191", null, "3105", null, "36298", null, "2983", null, "29093", null, "2203", null, "15761", null, "1990", null, "14383", null, "1750", null, "103381", null, "3077", null, "30372", null, "1546", null, "178400", null, "4177", null, "61922", null, "2495", null, "296339", null, "5431", null, "624650", null, "5782", null, "604318", null, "5372", null, "578393", null, "5588", null, "195892", null, "3880", null, "175800", null, "3301", null, "146726", null, "2424", null, "59237", null, "1718", null, "40.1", null, "0.5", null, "95.2", null, "1.6", null, "71.1", null, "1.1", null, "32.1", null, "0.7", null, "39.0", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.7", null, "0.3", null, "6.4", null, "0.5", null, "6.8", null, "0.5", null, "6.3", null, "0.4", null, "5.5", null, "0.4", null, "5.7", null, "0.3", null, "6.6", null, "0.4", null, "7.0", null, "0.5", null, "6.9", null, "0.6", null, "6.0", null, "0.3", null, "6.3", null, "0.3", null, "5.9", null, "0.4", null, "6.3", null, "0.5", null, "6.5", null, "0.4", null, "4.6", null, "0.4", null, "3.7", null, "0.3", null, "2.0", null, "0.3", null, "1.8", null, "0.2", null, "13.2", null, "0.3", null, "3.9", null, "0.2", null, "22.8", null, "0.4", null, "7.9", null, "0.3", null, "37.9", null, "0.6", null, "79.8", null, "0.4", null, "77.2", null, "0.4", null, "73.9", null, "0.5", null, "25.0", null, "0.5", null, "22.5", null, "0.4", null, "18.7", null, "0.3", null, "7.6", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.7", null, "-888888888.0", "(X)", "381644", null, "4588", null, "24329", null, "1784", null, "24677", null, "2320", null, "26916", null, "2424", null, "25319", null, "2496", null, "21221", null, "2004", null, "23359", null, "1823", null, "24900", null, "1788", null, "28730", null, "2533", null, "26015", null, "2962", null, "21844", null, "1812", null, "23393", null, "1614", null, "22938", null, "2077", null, "22739", null, "2442", null, "24369", null, "1840", null, "16144", null, "1787", null, "13511", null, "1356", null, "6715", null, "1020", null, "4525", null, "852", null, "51593", null, "1799", null, "16129", null, "1470", null, "92051", null, "3013", null, "30411", null, "1838", null, "149544", null, "3665", null, "301117", null, "3622", null, "289593", null, "3217", null, "277838", null, "3472", null, "88003", null, "2287", null, "78815", null, "2070", null, "65264", null, "1570", null, "24751", null, "987", null, "38.8", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.4", null, "0.4", null, "6.5", null, "0.6", null, "7.1", null, "0.6", null, "6.6", null, "0.6", null, "5.6", null, "0.5", null, "6.1", null, "0.5", null, "6.5", null, "0.5", null, "7.5", null, "0.7", null, "6.8", null, "0.8", null, "5.7", null, "0.5", null, "6.1", null, "0.4", null, "6.0", null, "0.5", null, "6.0", null, "0.6", null, "6.4", null, "0.5", null, "4.2", null, "0.5", null, "3.5", null, "0.3", null, "1.8", null, "0.3", null, "1.2", null, "0.2", null, "13.5", null, "0.4", null, "4.2", null, "0.4", null, "24.1", null, "0.6", null, "8.0", null, "0.5", null, "39.2", null, "0.8", null, "78.9", null, "0.6", null, "75.9", null, "0.6", null, "72.8", null, "0.8", null, "23.1", null, "0.6", null, "20.7", null, "0.5", null, "17.1", null, "0.4", null, "6.5", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "401074", null, "5569", null, "20318", null, "2086", null, "25490", null, "2652", null, "26298", null, "2646", null, "23687", null, "2019", null, "22067", null, "1976", null, "21054", null, "1771", null, "26625", null, "2134", null, "25733", null, "2653", null, "27629", null, "2895", null, "25234", null, "1994", null, "25776", null, "1492", null, "23274", null, "2177", null, "26427", null, "2502", null, "26822", null, "1973", null, "20154", null, "1760", null, "15582", null, "1465", null, "9046", null, "1555", null, "9858", null, "1343", null, "51788", null, "2392", null, "14243", null, "1511", null, "86349", null, "3479", null, "31511", null, "1820", null, "146795", null, "3635", null, "323533", null, "3870", null, "314725", null, "3435", null, "300555", null, "3886", null, "107889", null, "2920", null, "96985", null, "2308", null, "81462", null, "1673", null, "34486", null, "1304", null, "41.6", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.1", null, "0.5", null, "6.4", null, "0.7", null, "6.6", null, "0.6", null, "5.9", null, "0.5", null, "5.5", null, "0.5", null, "5.2", null, "0.4", null, "6.6", null, "0.5", null, "6.4", null, "0.7", null, "6.9", null, "0.7", null, "6.3", null, "0.5", null, "6.4", null, "0.4", null, "5.8", null, "0.6", null, "6.6", null, "0.6", null, "6.7", null, "0.5", null, "5.0", null, "0.4", null, "3.9", null, "0.3", null, "2.3", null, "0.4", null, "2.5", null, "0.3", null, "12.9", null, "0.5", null, "3.6", null, "0.4", null, "21.5", null, "0.7", null, "7.9", null, "0.4", null, "36.6", null, "0.7", null, "80.7", null, "0.7", null, "78.5", null, "0.7", null, "74.9", null, "0.7", null, "26.9", null, "0.7", null, "24.2", null, "0.6", null, "20.3", null, "0.5", null, "8.6", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "45", "05"], ["5001900US4506", "Congressional District 6 (119th Congress), South Carolina", "762934", null, "18153", null, "38084", null, "3115", null, "36703", null, "4660", null, "43665", null, "4301", null, "60001", null, "4011", null, "64485", null, "4541", null, "57314", null, "3672", null, "57961", null, "4334", null, "48086", null, "4945", null, "46787", null, "5222", null, "39158", null, "3093", null, "44110", null, "3422", null, "37567", null, "3588", null, "51712", null, "3958", null, "44572", null, "3462", null, "37588", null, "2908", null, "25604", null, "2136", null, "16928", null, "2306", null, "12609", null, "1624", null, "80368", null, "5497", null, "28391", null, "2736", null, "146843", null, "7613", null, "96095", null, "4638", null, "334634", null, "11851", null, "635446", null, "13209", null, "616091", null, "12728", null, "570699", null, "12386", null, "189013", null, "6147", null, "171386", null, "5762", null, "137301", null, "4824", null, "55141", null, "2352", null, "37.3", null, "0.8", null, "93.3", null, "2.6", null, "59.3", null, "1.9", null, "28.7", null, "1.3", null, "30.7", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.0", null, "0.4", null, "4.8", null, "0.6", null, "5.7", null, "0.5", null, "7.9", null, "0.5", null, "8.5", null, "0.6", null, "7.5", null, "0.5", null, "7.6", null, "0.5", null, "6.3", null, "0.6", null, "6.1", null, "0.7", null, "5.1", null, "0.4", null, "5.8", null, "0.5", null, "4.9", null, "0.4", null, "6.8", null, "0.5", null, "5.8", null, "0.4", null, "4.9", null, "0.4", null, "3.4", null, "0.3", null, "2.2", null, "0.3", null, "1.7", null, "0.2", null, "10.5", null, "0.6", null, "3.7", null, "0.3", null, "19.2", null, "0.7", null, "12.6", null, "0.6", null, "43.9", null, "0.9", null, "83.3", null, "0.6", null, "80.8", null, "0.7", null, "74.8", null, "0.8", null, "24.8", null, "0.9", null, "22.5", null, "0.8", null, "18.0", null, "0.7", null, "7.2", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.0", null, "-888888888.0", "(X)", "368342", null, "10322", null, "19920", null, "2863", null, "18179", null, "3119", null, "23371", null, "3043", null, "29074", null, "2987", null, "31596", null, "3237", null, "28787", null, "2713", null, "28969", null, "2798", null, "23868", null, "3340", null, "23125", null, "3155", null, "18927", null, "2255", null, "21950", null, "2172", null, "17240", null, "2301", null, "24323", null, "2588", null, "19865", null, "2204", null, "16441", null, "1939", null, "11154", null, "1373", null, "7221", null, "1456", null, "4332", null, "950", null, "41550", null, "3486", null, "14384", null, "2081", null, "75854", null, "5274", null, "46286", null, "3192", null, "165419", null, "6913", null, "302385", null, "7747", null, "292488", null, "7087", null, "271666", null, "7197", null, "83336", null, "3610", null, "74625", null, "3576", null, "59013", null, "2800", null, "22707", null, "1549", null, "35.9", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.7", null, "4.9", null, "0.8", null, "6.3", null, "0.8", null, "7.9", null, "0.7", null, "8.6", null, "0.9", null, "7.8", null, "0.7", null, "7.9", null, "0.7", null, "6.5", null, "0.9", null, "6.3", null, "0.9", null, "5.1", null, "0.6", null, "6.0", null, "0.6", null, "4.7", null, "0.6", null, "6.6", null, "0.7", null, "5.4", null, "0.6", null, "4.5", null, "0.5", null, "3.0", null, "0.4", null, "2.0", null, "0.4", null, "1.2", null, "0.3", null, "11.3", null, "0.8", null, "3.9", null, "0.5", null, "20.6", null, "1.1", null, "12.6", null, "0.8", null, "44.9", null, "1.2", null, "82.1", null, "1.0", null, "79.4", null, "1.1", null, "73.8", null, "1.2", null, "22.6", null, "1.0", null, "20.3", null, "1.0", null, "16.0", null, "0.8", null, "6.2", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "394592", null, "10799", null, "18164", null, "2639", null, "18524", null, "3482", null, "20294", null, "3435", null, "30927", null, "2538", null, "32889", null, "2909", null, "28527", null, "2458", null, "28992", null, "2671", null, "24218", null, "3045", null, "23662", null, "3354", null, "20231", null, "2015", null, "22160", null, "2265", null, "20327", null, "2546", null, "27389", null, "2627", null, "24707", null, "2499", null, "21147", null, "2129", null, "14450", null, "1517", null, "9707", null, "1495", null, "8277", null, "1188", null, "38818", null, "3650", null, "14007", null, "2054", null, "70989", null, "5101", null, "49809", null, "3153", null, "169215", null, "7022", null, "333061", null, "7848", null, "323603", null, "7501", null, "299033", null, "7320", null, "105677", null, "3603", null, "96761", null, "3112", null, "78288", null, "2805", null, "32434", null, "1427", null, "38.9", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.6", null, "0.6", null, "4.7", null, "0.9", null, "5.1", null, "0.8", null, "7.8", null, "0.6", null, "8.3", null, "0.7", null, "7.2", null, "0.6", null, "7.3", null, "0.6", null, "6.1", null, "0.7", null, "6.0", null, "0.8", null, "5.1", null, "0.5", null, "5.6", null, "0.6", null, "5.2", null, "0.6", null, "6.9", null, "0.7", null, "6.3", null, "0.6", null, "5.4", null, "0.5", null, "3.7", null, "0.4", null, "2.5", null, "0.4", null, "2.1", null, "0.3", null, "9.8", null, "0.8", null, "3.5", null, "0.5", null, "18.0", null, "1.0", null, "12.6", null, "0.8", null, "42.9", null, "1.1", null, "84.4", null, "1.0", null, "82.0", null, "1.0", null, "75.8", null, "1.1", null, "26.8", null, "1.0", null, "24.5", null, "0.9", null, "19.8", null, "0.8", null, "8.2", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "45", "06"], ["5001900US4507", "Congressional District 7 (119th Congress), South Carolina", "794163", null, "2894", null, "38256", null, "1522", null, "40367", null, "2961", null, "42545", null, "2842", null, "50404", null, "2263", null, "44717", null, "3138", null, "40868", null, "3085", null, "40773", null, "2224", null, "42970", null, "3837", null, "45338", null, "4307", null, "44130", null, "2280", null, "50156", null, "2466", null, "50285", null, "3793", null, "64599", null, "3738", null, "61124", null, "3525", null, "60060", null, "3934", null, "43627", null, "2464", null, "19366", null, "2212", null, "14578", null, "1863", null, "82912", null, "2010", null, "27895", null, "1069", null, "149063", null, "2108", null, "67226", null, "2832", null, "265070", null, "2880", null, "665618", null, "2432", null, "645100", null, "2570", null, "613239", null, "3410", null, "263354", null, "4195", null, "241223", null, "4296", null, "198755", null, "2198", null, "77571", null, "1540", null, "46.0", null, "0.4", null, "93.2", null, "1.4", null, "77.9", null, "0.9", null, "44.5", null, "0.7", null, "33.4", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.8", null, "0.2", null, "5.1", null, "0.4", null, "5.4", null, "0.4", null, "6.3", null, "0.3", null, "5.6", null, "0.4", null, "5.1", null, "0.4", null, "5.1", null, "0.3", null, "5.4", null, "0.5", null, "5.7", null, "0.5", null, "5.6", null, "0.3", null, "6.3", null, "0.3", null, "6.3", null, "0.5", null, "8.1", null, "0.5", null, "7.7", null, "0.4", null, "7.6", null, "0.5", null, "5.5", null, "0.3", null, "2.4", null, "0.3", null, "1.8", null, "0.2", null, "10.4", null, "0.2", null, "3.5", null, "0.1", null, "18.8", null, "0.2", null, "8.5", null, "0.4", null, "33.4", null, "0.4", null, "83.8", null, "0.3", null, "81.2", null, "0.2", null, "77.2", null, "0.4", null, "33.2", null, "0.5", null, "30.4", null, "0.5", null, "25.0", null, "0.3", null, "9.8", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.4", null, "-888888888.0", "(X)", "383154", null, "3330", null, "20210", null, "1892", null, "21205", null, "1912", null, "21466", null, "2226", null, "26467", null, "2227", null, "22786", null, "2208", null, "19934", null, "2382", null, "20126", null, "1476", null, "21167", null, "2646", null, "21858", null, "2969", null, "20818", null, "2037", null, "23591", null, "1337", null, "24501", null, "2480", null, "28659", null, "2289", null, "29651", null, "2402", null, "25449", null, "2501", null, "20896", null, "1732", null, "9237", null, "1316", null, "5133", null, "976", null, "42671", null, "1535", null, "15312", null, "1389", null, "78193", null, "2542", null, "33941", null, "2253", null, "132338", null, "3021", null, "316229", null, "2680", null, "304961", null, "2552", null, "289021", null, "2873", null, "119025", null, "2355", null, "108246", null, "2537", null, "90366", null, "1394", null, "35266", null, "940", null, "44.2", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.3", null, "0.5", null, "5.5", null, "0.5", null, "5.6", null, "0.6", null, "6.9", null, "0.6", null, "5.9", null, "0.6", null, "5.2", null, "0.6", null, "5.3", null, "0.4", null, "5.5", null, "0.7", null, "5.7", null, "0.8", null, "5.4", null, "0.5", null, "6.2", null, "0.3", null, "6.4", null, "0.6", null, "7.5", null, "0.6", null, "7.7", null, "0.6", null, "6.6", null, "0.6", null, "5.5", null, "0.5", null, "2.4", null, "0.3", null, "1.3", null, "0.3", null, "11.1", null, "0.4", null, "4.0", null, "0.3", null, "20.4", null, "0.6", null, "8.9", null, "0.6", null, "34.5", null, "0.7", null, "82.5", null, "0.5", null, "79.6", null, "0.6", null, "75.4", null, "0.8", null, "31.1", null, "0.7", null, "28.3", null, "0.7", null, "23.6", null, "0.4", null, "9.2", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "411009", null, "3352", null, "18046", null, "1770", null, "19162", null, "2219", null, "21079", null, "2147", null, "23937", null, "2083", null, "21931", null, "2188", null, "20934", null, "1833", null, "20647", null, "1486", null, "21803", null, "2607", null, "23480", null, "2415", null, "23312", null, "1562", null, "26565", null, "1779", null, "25784", null, "2462", null, "35940", null, "2405", null, "31473", null, "2073", null, "34611", null, "2289", null, "22731", null, "1580", null, "10129", null, "1493", null, "9445", null, "1398", null, "40241", null, "1467", null, "12583", null, "1245", null, "70870", null, "2667", null, "33285", null, "1842", null, "132732", null, "2247", null, "349389", null, "1990", null, "340139", null, "1745", null, "324218", null, "2195", null, "144329", null, "2785", null, "132977", null, "2777", null, "108389", null, "1256", null, "42305", null, "1211", null, "48.1", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.4", null, "0.4", null, "4.7", null, "0.5", null, "5.1", null, "0.5", null, "5.8", null, "0.5", null, "5.3", null, "0.5", null, "5.1", null, "0.4", null, "5.0", null, "0.4", null, "5.3", null, "0.6", null, "5.7", null, "0.6", null, "5.7", null, "0.4", null, "6.5", null, "0.4", null, "6.3", null, "0.6", null, "8.7", null, "0.6", null, "7.7", null, "0.5", null, "8.4", null, "0.6", null, "5.5", null, "0.4", null, "2.5", null, "0.4", null, "2.3", null, "0.3", null, "9.8", null, "0.3", null, "3.1", null, "0.3", null, "17.2", null, "0.5", null, "8.1", null, "0.4", null, "32.3", null, "0.5", null, "85.0", null, "0.6", null, "82.8", null, "0.5", null, "78.9", null, "0.7", null, "35.1", null, "0.8", null, "32.4", null, "0.7", null, "26.4", null, "0.4", null, "10.3", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "45", "07"], ["5001900US4600", "Congressional District (at Large) (119th Congress), South Dakota", "924669", null, "-555555555", "*****", "53584", null, "1495", null, "60056", null, "3318", null, "63718", null, "3428", null, "65617", null, "2488", null, "58398", null, "2850", null, "60517", null, "2398", null, "56468", null, "2380", null, "61204", null, "3598", null, "58684", null, "4076", null, "51705", null, "1734", null, "48189", null, "1833", null, "48406", null, "3415", null, "62221", null, "3610", null, "56491", null, "2769", null, "50574", null, "2822", null, "29571", null, "2024", null, "19486", null, "1739", null, "19780", null, "1682", null, "123774", null, "2028", null, "40177", null, "1160", null, "217535", null, "2050", null, "83838", null, "2539", null, "360888", null, "3067", null, "733633", null, "2456", null, "707134", null, "2050", null, "670697", null, "3124", null, "238123", null, "3997", null, "214663", null, "3486", null, "175902", null, "1375", null, "68837", null, "1088", null, "38.7", null, "0.4", null, "105.6", null, "1.3", null, "74.1", null, "0.8", null, "33.1", null, "0.4", null, "40.9", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.8", null, "0.2", null, "6.5", null, "0.4", null, "6.9", null, "0.4", null, "7.1", null, "0.3", null, "6.3", null, "0.3", null, "6.5", null, "0.3", null, "6.1", null, "0.3", null, "6.6", null, "0.4", null, "6.3", null, "0.4", null, "5.6", null, "0.2", null, "5.2", null, "0.2", null, "5.2", null, "0.4", null, "6.7", null, "0.4", null, "6.1", null, "0.3", null, "5.5", null, "0.3", null, "3.2", null, "0.2", null, "2.1", null, "0.2", null, "2.1", null, "0.2", null, "13.4", null, "0.2", null, "4.3", null, "0.1", null, "23.5", null, "0.2", null, "9.1", null, "0.3", null, "39.0", null, "0.3", null, "79.3", null, "0.3", null, "76.5", null, "0.2", null, "72.5", null, "0.3", null, "25.8", null, "0.4", null, "23.2", null, "0.4", null, "19.0", null, "0.1", null, "7.4", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.2", null, "-888888888.0", "(X)", "474961", null, "2740", null, "29007", null, "1618", null, "30352", null, "2141", null, "34836", null, "2316", null, "33229", null, "2197", null, "31300", null, "2019", null, "31612", null, "1614", null, "30324", null, "2007", null, "32468", null, "2539", null, "30776", null, "2611", null, "28015", null, "1490", null, "24115", null, "1075", null, "24866", null, "2091", null, "30322", null, "1982", null, "28397", null, "1544", null, "25108", null, "1627", null, "14931", null, "1404", null, "7759", null, "1176", null, "7544", null, "1059", null, "65188", null, "2026", null, "19612", null, "1500", null, "113807", null, "2663", null, "44917", null, "2127", null, "189709", null, "2602", null, "374361", null, "2713", null, "361154", null, "2449", null, "341544", null, "2717", null, "114061", null, "2445", null, "102463", null, "2465", null, "83739", null, "1231", null, "30234", null, "708", null, "37.7", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.1", null, "0.3", null, "6.4", null, "0.5", null, "7.3", null, "0.5", null, "7.0", null, "0.5", null, "6.6", null, "0.4", null, "6.7", null, "0.3", null, "6.4", null, "0.4", null, "6.8", null, "0.5", null, "6.5", null, "0.6", null, "5.9", null, "0.3", null, "5.1", null, "0.2", null, "5.2", null, "0.4", null, "6.4", null, "0.4", null, "6.0", null, "0.3", null, "5.3", null, "0.3", null, "3.1", null, "0.3", null, "1.6", null, "0.2", null, "1.6", null, "0.2", null, "13.7", null, "0.4", null, "4.1", null, "0.3", null, "24.0", null, "0.5", null, "9.5", null, "0.5", null, "39.9", null, "0.5", null, "78.8", null, "0.5", null, "76.0", null, "0.5", null, "71.9", null, "0.6", null, "24.0", null, "0.5", null, "21.6", null, "0.5", null, "17.6", null, "0.3", null, "6.4", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "449708", null, "2740", null, "24577", null, "1540", null, "29704", null, "2520", null, "28882", null, "2590", null, "32388", null, "1850", null, "27098", null, "1835", null, "28905", null, "1665", null, "26144", null, "1206", null, "28736", null, "2087", null, "27908", null, "2153", null, "23690", null, "1244", null, "24074", null, "1425", null, "23540", null, "2113", null, "31899", null, "2322", null, "28094", null, "1856", null, "25466", null, "1957", null, "14640", null, "1318", null, "11727", null, "1245", null, "12236", null, "1211", null, "58586", null, "1480", null, "20565", null, "1477", null, "103728", null, "2183", null, "38921", null, "1535", null, "171179", null, "2906", null, "359272", null, "2198", null, "345980", null, "2100", null, "329153", null, "2448", null, "124062", null, "2446", null, "112200", null, "2133", null, "92163", null, "1026", null, "38603", null, "765", null, "39.7", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.3", null, "6.6", null, "0.6", null, "6.4", null, "0.6", null, "7.2", null, "0.4", null, "6.0", null, "0.4", null, "6.4", null, "0.4", null, "5.8", null, "0.3", null, "6.4", null, "0.5", null, "6.2", null, "0.5", null, "5.3", null, "0.3", null, "5.4", null, "0.3", null, "5.2", null, "0.5", null, "7.1", null, "0.5", null, "6.2", null, "0.4", null, "5.7", null, "0.4", null, "3.3", null, "0.3", null, "2.6", null, "0.3", null, "2.7", null, "0.3", null, "13.0", null, "0.3", null, "4.6", null, "0.3", null, "23.1", null, "0.4", null, "8.7", null, "0.3", null, "38.1", null, "0.6", null, "79.9", null, "0.5", null, "76.9", null, "0.4", null, "73.2", null, "0.5", null, "27.6", null, "0.5", null, "24.9", null, "0.5", null, "20.5", null, "0.2", null, "8.6", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "46", "00"], ["5001900US4701", "Congressional District 1 (119th Congress), Tennessee", "797902", null, "2199", null, "37736", null, "1477", null, "39682", null, "2915", null, "44004", null, "2873", null, "49039", null, "3311", null, "48435", null, "2693", null, "46905", null, "1974", null, "51329", null, "2115", null, "43202", null, "4182", null, "50651", null, "4316", null, "46783", null, "1569", null, "53684", null, "1275", null, "56228", null, "3370", null, "58466", null, "3372", null, "53419", null, "3102", null, "45943", null, "3097", null, "32532", null, "2462", null, "23817", null, "2152", null, "16047", null, "1887", null, "83686", null, "1629", null, "29690", null, "1475", null, "151112", null, "1486", null, "67784", null, "1956", null, "289561", null, "2852", null, "668768", null, "2404", null, "646790", null, "1827", null, "616951", null, "3284", null, "230224", null, "3451", null, "206209", null, "3392", null, "171758", null, "1627", null, "72396", null, "1141", null, "43.9", null, "0.4", null, "95.6", null, "1.4", null, "68.0", null, "0.6", null, "36.2", null, "0.5", null, "31.8", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.7", null, "0.2", null, "5.0", null, "0.4", null, "5.5", null, "0.4", null, "6.1", null, "0.4", null, "6.1", null, "0.3", null, "5.9", null, "0.2", null, "6.4", null, "0.3", null, "5.4", null, "0.5", null, "6.3", null, "0.5", null, "5.9", null, "0.2", null, "6.7", null, "0.2", null, "7.0", null, "0.4", null, "7.3", null, "0.4", null, "6.7", null, "0.4", null, "5.8", null, "0.4", null, "4.1", null, "0.3", null, "3.0", null, "0.3", null, "2.0", null, "0.2", null, "10.5", null, "0.2", null, "3.7", null, "0.2", null, "18.9", null, "0.2", null, "8.5", null, "0.2", null, "36.3", null, "0.3", null, "83.8", null, "0.2", null, "81.1", null, "0.2", null, "77.3", null, "0.4", null, "28.9", null, "0.4", null, "25.8", null, "0.4", null, "21.5", null, "0.2", null, "9.1", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.1", null, "-888888888.0", "(X)", "390068", null, "2875", null, "18904", null, "1353", null, "20900", null, "1822", null, "21412", null, "2143", null, "23452", null, "2330", null, "25723", null, "1988", null, "23827", null, "1467", null, "25990", null, "1196", null, "20952", null, "2298", null, "25268", null, "2493", null, "22808", null, "1082", null, "26768", null, "677", null, "26562", null, "2271", null, "29531", null, "2432", null, "25087", null, "1954", null, "21463", null, "1989", null, "15281", null, "1554", null, "9448", null, "1314", null, "6692", null, "1256", null, "42312", null, "1677", null, "14041", null, "1415", null, "75257", null, "2314", null, "35134", null, "1568", null, "145212", null, "2387", null, "325636", null, "2349", null, "314811", null, "1654", null, "299516", null, "2161", null, "107502", null, "2424", null, "94495", null, "2241", null, "77971", null, "1042", null, "31421", null, "735", null, "42.9", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.8", null, "0.3", null, "5.4", null, "0.5", null, "5.5", null, "0.5", null, "6.0", null, "0.6", null, "6.6", null, "0.5", null, "6.1", null, "0.4", null, "6.7", null, "0.3", null, "5.4", null, "0.6", null, "6.5", null, "0.6", null, "5.8", null, "0.3", null, "6.9", null, "0.2", null, "6.8", null, "0.6", null, "7.6", null, "0.6", null, "6.4", null, "0.5", null, "5.5", null, "0.5", null, "3.9", null, "0.4", null, "2.4", null, "0.3", null, "1.7", null, "0.3", null, "10.8", null, "0.4", null, "3.6", null, "0.3", null, "19.3", null, "0.5", null, "9.0", null, "0.4", null, "37.2", null, "0.5", null, "83.5", null, "0.4", null, "80.7", null, "0.5", null, "76.8", null, "0.6", null, "27.6", null, "0.6", null, "24.2", null, "0.6", null, "20.0", null, "0.3", null, "8.1", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "407834", null, "3264", null, "18832", null, "1441", null, "18782", null, "2412", null, "22592", null, "2148", null, "25587", null, "2654", null, "22712", null, "1994", null, "23078", null, "1086", null, "25339", null, "1465", null, "22250", null, "2981", null, "25383", null, "2825", null, "23975", null, "1096", null, "26916", null, "943", null, "29666", null, "2123", null, "28935", null, "2183", null, "28332", null, "2604", null, "24480", null, "2306", null, "17251", null, "1547", null, "14369", null, "1684", null, "9355", null, "1144", null, "41374", null, "1458", null, "15649", null, "1768", null, "75855", null, "2550", null, "32650", null, "1219", null, "144349", null, "2670", null, "343132", null, "2280", null, "331979", null, "1710", null, "317435", null, "2865", null, "122722", null, "2494", null, "111714", null, "2550", null, "93787", null, "1214", null, "40975", null, "882", null, "44.9", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.6", null, "0.3", null, "4.6", null, "0.6", null, "5.5", null, "0.5", null, "6.3", null, "0.6", null, "5.6", null, "0.5", null, "5.7", null, "0.3", null, "6.2", null, "0.4", null, "5.5", null, "0.7", null, "6.2", null, "0.7", null, "5.9", null, "0.3", null, "6.6", null, "0.2", null, "7.3", null, "0.5", null, "7.1", null, "0.5", null, "6.9", null, "0.6", null, "6.0", null, "0.6", null, "4.2", null, "0.4", null, "3.5", null, "0.4", null, "2.3", null, "0.3", null, "10.1", null, "0.3", null, "3.8", null, "0.4", null, "18.6", null, "0.5", null, "8.0", null, "0.3", null, "35.4", null, "0.5", null, "84.1", null, "0.5", null, "81.4", null, "0.5", null, "77.8", null, "0.8", null, "30.1", null, "0.6", null, "27.4", null, "0.6", null, "23.0", null, "0.3", null, "10.0", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "47", "01"], ["5001900US4702", "Congressional District 2 (119th Congress), Tennessee", "813928", null, "3551", null, "41312", null, "829", null, "43278", null, "2725", null, "47926", null, "2621", null, "52739", null, "1820", null, "64401", null, "1623", null, "52726", null, "1578", null, "55436", null, "2012", null, "45645", null, "3549", null, "53939", null, "3162", null, "48727", null, "1483", null, "48640", null, "1434", null, "54405", null, "3323", null, "49601", null, "3268", null, "47392", null, "2573", null, "42808", null, "2793", null, "29625", null, "2339", null, "18153", null, "1668", null, "17175", null, "1930", null, "91204", null, "1708", null, "30737", null, "877", null, "163253", null, "1967", null, "86403", null, "1408", null, "324886", null, "2616", null, "671785", null, "3688", null, "650675", null, "3114", null, "614109", null, "3861", null, "204754", null, "3699", null, "184015", null, "3418", null, "155153", null, "1677", null, "64953", null, "1183", null, "40.3", null, "0.4", null, "96.5", null, "0.9", null, "64.3", null, "0.6", null, "31.3", null, "0.4", null, "32.9", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.1", null, "0.1", null, "5.3", null, "0.3", null, "5.9", null, "0.3", null, "6.5", null, "0.2", null, "7.9", null, "0.2", null, "6.5", null, "0.2", null, "6.8", null, "0.2", null, "5.6", null, "0.4", null, "6.6", null, "0.4", null, "6.0", null, "0.2", null, "6.0", null, "0.2", null, "6.7", null, "0.4", null, "6.1", null, "0.4", null, "5.8", null, "0.3", null, "5.3", null, "0.3", null, "3.6", null, "0.3", null, "2.2", null, "0.2", null, "2.1", null, "0.2", null, "11.2", null, "0.2", null, "3.8", null, "0.1", null, "20.1", null, "0.2", null, "10.6", null, "0.2", null, "39.9", null, "0.2", null, "82.5", null, "0.3", null, "79.9", null, "0.2", null, "75.5", null, "0.4", null, "25.2", null, "0.5", null, "22.6", null, "0.4", null, "19.1", null, "0.2", null, "8.0", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.7", null, "-888888888.0", "(X)", "399700", null, "2238", null, "20118", null, "994", null, "24384", null, "2096", null, "23417", null, "2024", null, "26524", null, "1379", null, "33737", null, "1171", null, "26241", null, "990", null, "27970", null, "1075", null, "22877", null, "2288", null, "25518", null, "2110", null, "25018", null, "1050", null, "24069", null, "1142", null, "25899", null, "2357", null, "24183", null, "2300", null, "22448", null, "1531", null, "19479", null, "1686", null, "13496", null, "1402", null, "8784", null, "1183", null, "5538", null, "979", null, "47801", null, "1210", null, "16113", null, "979", null, "84032", null, "1546", null, "44148", null, "1172", null, "162867", null, "1983", null, "326341", null, "2406", null, "315668", null, "1964", null, "297470", null, "2826", null, "93928", null, "2455", null, "83670", null, "2282", null, "69745", null, "999", null, "27818", null, "583", null, "38.8", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.0", null, "0.2", null, "6.1", null, "0.5", null, "5.9", null, "0.5", null, "6.6", null, "0.3", null, "8.4", null, "0.3", null, "6.6", null, "0.3", null, "7.0", null, "0.3", null, "5.7", null, "0.6", null, "6.4", null, "0.5", null, "6.3", null, "0.3", null, "6.0", null, "0.3", null, "6.5", null, "0.6", null, "6.1", null, "0.6", null, "5.6", null, "0.4", null, "4.9", null, "0.4", null, "3.4", null, "0.4", null, "2.2", null, "0.3", null, "1.4", null, "0.2", null, "12.0", null, "0.3", null, "4.0", null, "0.2", null, "21.0", null, "0.3", null, "11.0", null, "0.3", null, "40.7", null, "0.4", null, "81.6", null, "0.4", null, "79.0", null, "0.3", null, "74.4", null, "0.7", null, "23.5", null, "0.6", null, "20.9", null, "0.6", null, "17.4", null, "0.3", null, "7.0", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "414228", null, "2790", null, "21194", null, "1060", null, "18894", null, "1893", null, "24509", null, "2022", null, "26215", null, "1463", null, "30664", null, "1329", null, "26485", null, "1194", null, "27466", null, "1382", null, "22768", null, "2318", null, "28421", null, "2140", null, "23709", null, "928", null, "24571", null, "675", null, "28506", null, "2099", null, "25418", null, "2090", null, "24944", null, "1876", null, "23329", null, "1943", null, "16129", null, "1778", null, "9369", null, "1163", null, "11637", null, "1459", null, "43403", null, "1002", null, "14624", null, "763", null, "79221", null, "1661", null, "42255", null, "984", null, "162019", null, "1915", null, "345444", null, "2383", null, "335007", null, "2020", null, "316639", null, "2626", null, "110826", null, "2378", null, "100345", null, "2081", null, "85408", null, "1279", null, "37135", null, "921", null, "41.3", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.1", null, "0.2", null, "4.6", null, "0.5", null, "5.9", null, "0.5", null, "6.3", null, "0.3", null, "7.4", null, "0.3", null, "6.4", null, "0.3", null, "6.6", null, "0.3", null, "5.5", null, "0.6", null, "6.9", null, "0.5", null, "5.7", null, "0.2", null, "5.9", null, "0.2", null, "6.9", null, "0.5", null, "6.1", null, "0.5", null, "6.0", null, "0.4", null, "5.6", null, "0.5", null, "3.9", null, "0.4", null, "2.3", null, "0.3", null, "2.8", null, "0.4", null, "10.5", null, "0.2", null, "3.5", null, "0.2", null, "19.1", null, "0.3", null, "10.2", null, "0.2", null, "39.1", null, "0.3", null, "83.4", null, "0.4", null, "80.9", null, "0.3", null, "76.4", null, "0.5", null, "26.8", null, "0.6", null, "24.2", null, "0.5", null, "20.6", null, "0.3", null, "9.0", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "47", "02"], ["5001900US4703", "Congressional District 3 (119th Congress), Tennessee", "809872", null, "3193", null, "44801", null, "1256", null, "44359", null, "3259", null, "47866", null, "3167", null, "49346", null, "2097", null, "46926", null, "1903", null, "51324", null, "1741", null, "59178", null, "1659", null, "51513", null, "3224", null, "51275", null, "3096", null, "46394", null, "1572", null, "51792", null, "1504", null, "54478", null, "3509", null, "51548", null, "3429", null, "49276", null, "2499", null, "41376", null, "2552", null, "33468", null, "2168", null, "18260", null, "2059", null, "16692", null, "1624", null, "92225", null, "1900", null, "30834", null, "1288", null, "167860", null, "2209", null, "65438", null, "1423", null, "309562", null, "3277", null, "663797", null, "3248", null, "642012", null, "2934", null, "613725", null, "3693", null, "210620", null, "3691", null, "190225", null, "3498", null, "159072", null, "1997", null, "68420", null, "1320", null, "40.8", null, "0.4", null, "96.7", null, "1.2", null, "67.7", null, "0.8", null, "32.9", null, "0.5", null, "34.8", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.2", null, "5.5", null, "0.4", null, "5.9", null, "0.4", null, "6.1", null, "0.3", null, "5.8", null, "0.2", null, "6.3", null, "0.2", null, "7.3", null, "0.2", null, "6.4", null, "0.4", null, "6.3", null, "0.4", null, "5.7", null, "0.2", null, "6.4", null, "0.2", null, "6.7", null, "0.4", null, "6.4", null, "0.4", null, "6.1", null, "0.3", null, "5.1", null, "0.3", null, "4.1", null, "0.3", null, "2.3", null, "0.3", null, "2.1", null, "0.2", null, "11.4", null, "0.2", null, "3.8", null, "0.2", null, "20.7", null, "0.2", null, "8.1", null, "0.2", null, "38.2", null, "0.3", null, "82.0", null, "0.3", null, "79.3", null, "0.2", null, "75.8", null, "0.4", null, "26.0", null, "0.5", null, "23.5", null, "0.4", null, "19.6", null, "0.2", null, "8.4", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.0", null, "-888888888.0", "(X)", "398149", null, "2742", null, "22731", null, "971", null, "21221", null, "2372", null, "27454", null, "2392", null, "23457", null, "2007", null, "24403", null, "1520", null, "25530", null, "1042", null, "31202", null, "1294", null, "25964", null, "1881", null, "24485", null, "1978", null, "22087", null, "821", null, "25785", null, "954", null, "27313", null, "2322", null, "25125", null, "2111", null, "23224", null, "1781", null, "19194", null, "1774", null, "15443", null, "1356", null, "7913", null, "1382", null, "5618", null, "1088", null, "48675", null, "1473", null, "13987", null, "1484", null, "85393", null, "2119", null, "33873", null, "1155", null, "155041", null, "2486", null, "323091", null, "2727", null, "312756", null, "2339", null, "299029", null, "3001", null, "96517", null, "2334", null, "85625", null, "2437", null, "71392", null, "1317", null, "28974", null, "941", null, "39.5", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.7", null, "0.2", null, "5.3", null, "0.6", null, "6.9", null, "0.6", null, "5.9", null, "0.5", null, "6.1", null, "0.4", null, "6.4", null, "0.3", null, "7.8", null, "0.3", null, "6.5", null, "0.5", null, "6.1", null, "0.5", null, "5.5", null, "0.2", null, "6.5", null, "0.2", null, "6.9", null, "0.6", null, "6.3", null, "0.5", null, "5.8", null, "0.5", null, "4.8", null, "0.4", null, "3.9", null, "0.3", null, "2.0", null, "0.3", null, "1.4", null, "0.3", null, "12.2", null, "0.4", null, "3.5", null, "0.4", null, "21.4", null, "0.5", null, "8.5", null, "0.3", null, "38.9", null, "0.5", null, "81.1", null, "0.5", null, "78.6", null, "0.5", null, "75.1", null, "0.7", null, "24.2", null, "0.6", null, "21.5", null, "0.6", null, "17.9", null, "0.3", null, "7.3", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "411723", null, "3051", null, "22070", null, "991", null, "23138", null, "2255", null, "20412", null, "2031", null, "25889", null, "1840", null, "22523", null, "943", null, "25794", null, "1477", null, "27976", null, "979", null, "25549", null, "2306", null, "26790", null, "2356", null, "24307", null, "1240", null, "26007", null, "920", null, "27165", null, "2419", null, "26423", null, "2336", null, "26052", null, "1755", null, "22182", null, "1588", null, "18025", null, "1591", null, "10347", null, "1263", null, "11074", null, "1236", null, "43550", null, "1351", null, "16847", null, "1639", null, "82467", null, "2309", null, "31565", null, "857", null, "154521", null, "2589", null, "340706", null, "2548", null, "329256", null, "2067", null, "314696", null, "2608", null, "114103", null, "2408", null, "104600", null, "2178", null, "87680", null, "1197", null, "39446", null, "810", null, "42.3", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.2", null, "5.6", null, "0.5", null, "5.0", null, "0.5", null, "6.3", null, "0.4", null, "5.5", null, "0.2", null, "6.3", null, "0.3", null, "6.8", null, "0.2", null, "6.2", null, "0.6", null, "6.5", null, "0.6", null, "5.9", null, "0.3", null, "6.3", null, "0.2", null, "6.6", null, "0.6", null, "6.4", null, "0.6", null, "6.3", null, "0.4", null, "5.4", null, "0.4", null, "4.4", null, "0.4", null, "2.5", null, "0.3", null, "2.7", null, "0.3", null, "10.6", null, "0.3", null, "4.1", null, "0.4", null, "20.0", null, "0.5", null, "7.7", null, "0.2", null, "37.5", null, "0.5", null, "82.8", null, "0.4", null, "80.0", null, "0.5", null, "76.4", null, "0.6", null, "27.7", null, "0.6", null, "25.4", null, "0.6", null, "21.3", null, "0.3", null, "9.6", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "47", "03"], ["5001900US4704", "Congressional District 4 (119th Congress), Tennessee", "826508", null, "3259", null, "47634", null, "2104", null, "48065", null, "3980", null, "57911", null, "4201", null, "60973", null, "2736", null, "60227", null, "2638", null, "50722", null, "2514", null, "55807", null, "1781", null, "54554", null, "4481", null, "53652", null, "4771", null, "50973", null, "2322", null, "52588", null, "2000", null, "49970", null, "3555", null, "51572", null, "3361", null, "44157", null, "2806", null, "35347", null, "3025", null, "25209", null, "1988", null, "13848", null, "1465", null, "13299", null, "1660", null, "105976", null, "2060", null, "37324", null, "1502", null, "190934", null, "2392", null, "83876", null, "2694", null, "335935", null, "3766", null, "659485", null, "2876", null, "635574", null, "2698", null, "598985", null, "3522", null, "183432", null, "3708", null, "161455", null, "3146", null, "131860", null, "1812", null, "52356", null, "1438", null, "37.7", null, "0.4", null, "99.5", null, "1.3", null, "64.1", null, "0.8", null, "26.2", null, "0.4", null, "37.9", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.8", null, "0.2", null, "5.8", null, "0.5", null, "7.0", null, "0.5", null, "7.4", null, "0.3", null, "7.3", null, "0.3", null, "6.1", null, "0.3", null, "6.8", null, "0.2", null, "6.6", null, "0.5", null, "6.5", null, "0.6", null, "6.2", null, "0.3", null, "6.4", null, "0.2", null, "6.0", null, "0.4", null, "6.2", null, "0.4", null, "5.3", null, "0.3", null, "4.3", null, "0.4", null, "3.1", null, "0.2", null, "1.7", null, "0.2", null, "1.6", null, "0.2", null, "12.8", null, "0.2", null, "4.5", null, "0.2", null, "23.1", null, "0.2", null, "10.1", null, "0.3", null, "40.6", null, "0.4", null, "79.8", null, "0.3", null, "76.9", null, "0.2", null, "72.5", null, "0.4", null, "22.2", null, "0.5", null, "19.5", null, "0.4", null, "16.0", null, "0.2", null, "6.3", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.0", null, "-888888888.0", "(X)", "412269", null, "3260", null, "24618", null, "1936", null, "24598", null, "3262", null, "30480", null, "3212", null, "34861", null, "2241", null, "30016", null, "1703", null, "25528", null, "2010", null, "28523", null, "1365", null, "25820", null, "2639", null, "27065", null, "2791", null, "25256", null, "1553", null, "25710", null, "1272", null, "25263", null, "2375", null, "24402", null, "2279", null, "21469", null, "1740", null, "16229", null, "1756", null, "12011", null, "1377", null, "5658", null, "800", null, "4762", null, "1022", null, "55078", null, "1814", null, "21894", null, "1767", null, "101590", null, "2763", null, "42983", null, "1884", null, "171813", null, "3095", null, "323868", null, "2675", null, "310679", null, "2356", null, "292014", null, "2849", null, "84531", null, "2501", null, "74021", null, "2352", null, "60129", null, "1258", null, "22431", null, "1053", null, "36.3", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.0", null, "0.5", null, "6.0", null, "0.8", null, "7.4", null, "0.8", null, "8.5", null, "0.5", null, "7.3", null, "0.4", null, "6.2", null, "0.5", null, "6.9", null, "0.3", null, "6.3", null, "0.6", null, "6.6", null, "0.7", null, "6.1", null, "0.4", null, "6.2", null, "0.3", null, "6.1", null, "0.6", null, "5.9", null, "0.5", null, "5.2", null, "0.4", null, "3.9", null, "0.4", null, "2.9", null, "0.3", null, "1.4", null, "0.2", null, "1.2", null, "0.2", null, "13.4", null, "0.4", null, "5.3", null, "0.4", null, "24.6", null, "0.6", null, "10.4", null, "0.5", null, "41.7", null, "0.7", null, "78.6", null, "0.6", null, "75.4", null, "0.6", null, "70.8", null, "0.7", null, "20.5", null, "0.6", null, "18.0", null, "0.6", null, "14.6", null, "0.3", null, "5.4", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "414239", null, "3198", null, "23016", null, "1283", null, "23467", null, "2214", null, "27431", null, "2395", null, "26112", null, "2082", null, "30211", null, "1789", null, "25194", null, "1454", null, "27284", null, "1313", null, "28734", null, "2761", null, "26587", null, "2901", null, "25717", null, "1590", null, "26878", null, "1293", null, "24707", null, "2056", null, "27170", null, "1832", null, "22688", null, "1858", null, "19118", null, "1855", null, "13198", null, "1214", null, "8190", null, "1166", null, "8537", null, "1179", null, "50898", null, "1342", null, "15430", null, "1382", null, "89344", null, "2543", null, "40893", null, "1764", null, "164122", null, "2690", null, "335617", null, "2497", null, "324895", null, "2037", null, "306971", null, "2268", null, "98901", null, "2167", null, "87434", null, "2072", null, "71731", null, "1051", null, "29925", null, "864", null, "39.3", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.6", null, "0.3", null, "5.7", null, "0.5", null, "6.6", null, "0.6", null, "6.3", null, "0.5", null, "7.3", null, "0.4", null, "6.1", null, "0.3", null, "6.6", null, "0.3", null, "6.9", null, "0.7", null, "6.4", null, "0.7", null, "6.2", null, "0.4", null, "6.5", null, "0.3", null, "6.0", null, "0.5", null, "6.6", null, "0.4", null, "5.5", null, "0.4", null, "4.6", null, "0.4", null, "3.2", null, "0.3", null, "2.0", null, "0.3", null, "2.1", null, "0.3", null, "12.3", null, "0.3", null, "3.7", null, "0.3", null, "21.6", null, "0.5", null, "9.9", null, "0.4", null, "39.6", null, "0.6", null, "81.0", null, "0.5", null, "78.4", null, "0.5", null, "74.1", null, "0.7", null, "23.9", null, "0.5", null, "21.1", null, "0.5", null, "17.3", null, "0.3", null, "7.2", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "47", "04"], ["5001900US4705", "Congressional District 5 (119th Congress), Tennessee", "835216", null, "14704", null, "52644", null, "3728", null, "52923", null, "4866", null, "56936", null, "4518", null, "53454", null, "3617", null, "47030", null, "4000", null, "57076", null, "3917", null, "57734", null, "4529", null, "67120", null, "4729", null, "55983", null, "4952", null, "52793", null, "4039", null, "53403", null, "3364", null, "51845", null, "3463", null, "49018", null, "4531", null, "42343", null, "3521", null, "34440", null, "3522", null, "25723", null, "2317", null, "12944", null, "1747", null, "11807", null, "1575", null, "109859", null, "5870", null, "36142", null, "2507", null, "198645", null, "7875", null, "64342", null, "4347", null, "338397", null, "9271", null, "660163", null, "10894", null, "636571", null, "10274", null, "612952", null, "10052", null, "176275", null, "5919", null, "155212", null, "4679", null, "127257", null, "3468", null, "50474", null, "2307", null, "37.9", null, "0.6", null, "95.9", null, "2.4", null, "64.0", null, "1.7", null, "25.0", null, "0.9", null, "39.0", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.3", null, "0.4", null, "6.3", null, "0.6", null, "6.8", null, "0.5", null, "6.4", null, "0.4", null, "5.6", null, "0.5", null, "6.8", null, "0.5", null, "6.9", null, "0.5", null, "8.0", null, "0.5", null, "6.7", null, "0.6", null, "6.3", null, "0.5", null, "6.4", null, "0.4", null, "6.2", null, "0.4", null, "5.9", null, "0.5", null, "5.1", null, "0.4", null, "4.1", null, "0.4", null, "3.1", null, "0.3", null, "1.5", null, "0.2", null, "1.4", null, "0.2", null, "13.2", null, "0.6", null, "4.3", null, "0.3", null, "23.8", null, "0.7", null, "7.7", null, "0.5", null, "40.5", null, "0.8", null, "79.0", null, "0.7", null, "76.2", null, "0.7", null, "73.4", null, "0.8", null, "21.1", null, "0.7", null, "18.6", null, "0.6", null, "15.2", null, "0.5", null, "6.0", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "2.0", null, "-888888888.0", "(X)", "408837", null, "9006", null, "24373", null, "2772", null, "25871", null, "2879", null, "30191", null, "3205", null, "27866", null, "2609", null, "23911", null, "2524", null, "29137", null, "2674", null, "27902", null, "2739", null, "31882", null, "3062", null, "27820", null, "2859", null, "26157", null, "2377", null, "27053", null, "2203", null, "25761", null, "2289", null, "23085", null, "2465", null, "20777", null, "2380", null, "15500", null, "2018", null, "12079", null, "1406", null, "5327", null, "1090", null, "4145", null, "931", null, "56062", null, "3818", null, "17923", null, "1899", null, "98358", null, "5200", null, "33854", null, "2917", null, "168518", null, "5875", null, "322721", null, "7297", null, "310479", null, "6685", null, "297785", null, "6652", null, "80913", null, "3247", null, "70704", null, "2679", null, "57828", null, "2174", null, "21551", null, "1312", null, "37.4", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.0", null, "0.6", null, "6.3", null, "0.7", null, "7.4", null, "0.7", null, "6.8", null, "0.6", null, "5.8", null, "0.6", null, "7.1", null, "0.6", null, "6.8", null, "0.6", null, "7.8", null, "0.7", null, "6.8", null, "0.7", null, "6.4", null, "0.5", null, "6.6", null, "0.5", null, "6.3", null, "0.6", null, "5.6", null, "0.6", null, "5.1", null, "0.6", null, "3.8", null, "0.5", null, "3.0", null, "0.3", null, "1.3", null, "0.3", null, "1.0", null, "0.2", null, "13.7", null, "0.8", null, "4.4", null, "0.4", null, "24.1", null, "1.0", null, "8.3", null, "0.7", null, "41.2", null, "1.2", null, "78.9", null, "1.1", null, "75.9", null, "1.0", null, "72.8", null, "1.1", null, "19.8", null, "0.8", null, "17.3", null, "0.7", null, "14.1", null, "0.6", null, "5.3", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "426379", null, "9132", null, "28271", null, "2364", null, "27052", null, "3498", null, "26745", null, "2816", null, "25588", null, "2108", null, "23119", null, "2775", null, "27939", null, "2512", null, "29832", null, "2849", null, "35238", null, "3358", null, "28163", null, "3260", null, "26636", null, "2734", null, "26350", null, "1801", null, "26084", null, "2277", null, "25933", null, "3156", null, "21566", null, "2030", null, "18940", null, "2403", null, "13644", null, "1702", null, "7617", null, "1261", null, "7662", null, "1175", null, "53797", null, "3544", null, "18219", null, "1463", null, "100287", null, "4591", null, "30488", null, "2928", null, "169879", null, "5787", null, "337442", null, "6480", null, "326092", null, "6395", null, "315167", null, "6125", null, "95362", null, "3933", null, "84508", null, "3276", null, "69429", null, "2509", null, "28923", null, "1630", null, "38.5", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.6", null, "0.5", null, "6.3", null, "0.8", null, "6.3", null, "0.6", null, "6.0", null, "0.5", null, "5.4", null, "0.6", null, "6.6", null, "0.6", null, "7.0", null, "0.6", null, "8.3", null, "0.8", null, "6.6", null, "0.8", null, "6.2", null, "0.6", null, "6.2", null, "0.4", null, "6.1", null, "0.5", null, "6.1", null, "0.7", null, "5.1", null, "0.5", null, "4.4", null, "0.6", null, "3.2", null, "0.4", null, "1.8", null, "0.3", null, "1.8", null, "0.3", null, "12.6", null, "0.7", null, "4.3", null, "0.3", null, "23.5", null, "0.8", null, "7.2", null, "0.6", null, "39.8", null, "1.0", null, "79.1", null, "0.8", null, "76.5", null, "0.8", null, "73.9", null, "0.9", null, "22.4", null, "0.9", null, "19.8", null, "0.8", null, "16.3", null, "0.6", null, "6.8", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "47", "05"], ["5001900US4706", "Congressional District 6 (119th Congress), Tennessee", "803181", null, "12219", null, "45892", null, "3271", null, "46590", null, "3898", null, "51318", null, "5162", null, "44429", null, "2559", null, "47423", null, "3315", null, "50137", null, "2963", null, "62313", null, "4234", null, "55114", null, "5188", null, "54284", null, "5164", null, "47724", null, "3291", null, "48515", null, "2823", null, "51039", null, "3976", null, "53071", null, "3703", null, "47185", null, "3323", null, "38145", null, "2750", null, "30462", null, "2627", null, "17248", null, "2210", null, "12292", null, "1911", null, "97908", null, "5875", null, "29167", null, "1730", null, "172967", null, "7531", null, "62685", null, "2997", null, "313700", null, "6856", null, "649254", null, "8258", null, "630214", null, "7727", null, "608063", null, "8153", null, "198403", null, "4767", null, "177333", null, "4184", null, "145332", null, "3190", null, "60002", null, "2156", null, "39.9", null, "0.6", null, "97.6", null, "2.0", null, "65.6", null, "1.7", null, "30.0", null, "0.8", null, "35.7", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.7", null, "0.4", null, "5.8", null, "0.5", null, "6.4", null, "0.6", null, "5.5", null, "0.3", null, "5.9", null, "0.4", null, "6.2", null, "0.4", null, "7.8", null, "0.5", null, "6.9", null, "0.6", null, "6.8", null, "0.6", null, "5.9", null, "0.4", null, "6.0", null, "0.4", null, "6.4", null, "0.5", null, "6.6", null, "0.5", null, "5.9", null, "0.4", null, "4.7", null, "0.4", null, "3.8", null, "0.3", null, "2.1", null, "0.3", null, "1.5", null, "0.2", null, "12.2", null, "0.6", null, "3.6", null, "0.2", null, "21.5", null, "0.7", null, "7.8", null, "0.4", null, "39.1", null, "0.7", null, "80.8", null, "0.7", null, "78.5", null, "0.7", null, "75.7", null, "0.8", null, "24.7", null, "0.7", null, "22.1", null, "0.6", null, "18.1", null, "0.4", null, "7.5", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.3", null, "-888888888.0", "(X)", "396761", null, "7600", null, "24057", null, "2480", null, "22192", null, "3000", null, "27443", null, "2938", null, "23777", null, "2336", null, "24595", null, "2072", null, "24303", null, "1747", null, "30122", null, "2488", null, "26869", null, "3257", null, "27852", null, "3202", null, "23962", null, "1916", null, "23949", null, "1689", null, "26533", null, "2668", null, "24977", null, "2622", null, "23777", null, "2056", null, "16681", null, "2080", null, "13314", null, "1612", null, "8083", null, "1391", null, "4275", null, "1076", null, "49635", null, "3720", null, "14939", null, "1608", null, "88631", null, "5089", null, "33433", null, "2003", null, "157518", null, "4644", null, "317482", null, "5579", null, "308130", null, "5489", null, "295474", null, "5609", null, "91107", null, "3302", null, "81180", null, "3067", null, "66130", null, "2279", null, "25672", null, "1303", null, "39.2", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.1", null, "0.6", null, "5.6", null, "0.7", null, "6.9", null, "0.7", null, "6.0", null, "0.6", null, "6.2", null, "0.5", null, "6.1", null, "0.4", null, "7.6", null, "0.6", null, "6.8", null, "0.8", null, "7.0", null, "0.8", null, "6.0", null, "0.5", null, "6.0", null, "0.4", null, "6.7", null, "0.7", null, "6.3", null, "0.7", null, "6.0", null, "0.5", null, "4.2", null, "0.5", null, "3.4", null, "0.4", null, "2.0", null, "0.4", null, "1.1", null, "0.3", null, "12.5", null, "0.8", null, "3.8", null, "0.4", null, "22.3", null, "1.0", null, "8.4", null, "0.5", null, "39.7", null, "1.0", null, "80.0", null, "1.0", null, "77.7", null, "1.0", null, "74.5", null, "1.2", null, "23.0", null, "0.8", null, "20.5", null, "0.8", null, "16.7", null, "0.6", null, "6.5", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "406420", null, "7082", null, "21835", null, "2164", null, "24398", null, "3065", null, "23875", null, "3282", null, "20652", null, "1577", null, "22828", null, "2067", null, "25834", null, "2078", null, "32191", null, "2648", null, "28245", null, "3008", null, "26432", null, "3213", null, "23762", null, "2082", null, "24566", null, "1607", null, "24506", null, "2624", null, "28094", null, "2479", null, "23408", null, "2127", null, "21464", null, "1767", null, "17148", null, "2132", null, "9165", null, "1624", null, "8017", null, "1443", null, "48273", null, "3323", null, "14228", null, "1254", null, "84336", null, "4178", null, "29252", null, "2056", null, "156182", null, "4564", null, "331772", null, "4635", null, "322084", null, "4280", null, "312589", null, "4548", null, "107296", null, "2882", null, "96153", null, "2620", null, "79202", null, "2057", null, "34330", null, "1533", null, "40.7", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.5", null, "6.0", null, "0.7", null, "5.9", null, "0.8", null, "5.1", null, "0.4", null, "5.6", null, "0.5", null, "6.4", null, "0.5", null, "7.9", null, "0.6", null, "6.9", null, "0.8", null, "6.5", null, "0.8", null, "5.8", null, "0.5", null, "6.0", null, "0.4", null, "6.0", null, "0.6", null, "6.9", null, "0.6", null, "5.8", null, "0.5", null, "5.3", null, "0.4", null, "4.2", null, "0.5", null, "2.3", null, "0.4", null, "2.0", null, "0.4", null, "11.9", null, "0.7", null, "3.5", null, "0.3", null, "20.8", null, "0.8", null, "7.2", null, "0.5", null, "38.4", null, "0.9", null, "81.6", null, "0.8", null, "79.2", null, "0.8", null, "76.9", null, "0.8", null, "26.4", null, "0.8", null, "23.7", null, "0.7", null, "19.5", null, "0.5", null, "8.4", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "47", "06"], ["5001900US4707", "Congressional District 7 (119th Congress), Tennessee", "816216", null, "11558", null, "47048", null, "2784", null, "46755", null, "3882", null, "46622", null, "4209", null, "52307", null, "3058", null, "64899", null, "4711", null, "70656", null, "3665", null, "69722", null, "3469", null, "58481", null, "4417", null, "52195", null, "4896", null, "46881", null, "3033", null, "48531", null, "3222", null, "44705", null, "3213", null, "46924", null, "3610", null, "42522", null, "3247", null, "33349", null, "2723", null, "22801", null, "2011", null, "12685", null, "1565", null, "9133", null, "1318", null, "93377", null, "4031", null, "29745", null, "1666", null, "170170", null, "5129", null, "87461", null, "4523", null, "368260", null, "7956", null, "666796", null, "9380", null, "646046", null, "8864", null, "608827", null, "9482", null, "167414", null, "5684", null, "149079", null, "5154", null, "120490", null, "3560", null, "44619", null, "2171", null, "35.7", null, "0.4", null, "98.6", null, "2.0", null, "55.3", null, "1.2", null, "22.9", null, "0.8", null, "32.4", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.8", null, "0.3", null, "5.7", null, "0.5", null, "5.7", null, "0.5", null, "6.4", null, "0.4", null, "8.0", null, "0.6", null, "8.7", null, "0.4", null, "8.5", null, "0.4", null, "7.2", null, "0.5", null, "6.4", null, "0.6", null, "5.7", null, "0.3", null, "5.9", null, "0.4", null, "5.5", null, "0.4", null, "5.7", null, "0.4", null, "5.2", null, "0.4", null, "4.1", null, "0.3", null, "2.8", null, "0.3", null, "1.6", null, "0.2", null, "1.1", null, "0.2", null, "11.4", null, "0.4", null, "3.6", null, "0.2", null, "20.8", null, "0.5", null, "10.7", null, "0.5", null, "45.1", null, "0.7", null, "81.7", null, "0.5", null, "79.2", null, "0.5", null, "74.6", null, "0.6", null, "20.5", null, "0.7", null, "18.3", null, "0.6", null, "14.8", null, "0.4", null, "5.5", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "0.8", null, "-888888888.0", "(X)", "405143", null, "7056", null, "25212", null, "2289", null, "25975", null, "2915", null, "23129", null, "2989", null, "26105", null, "2519", null, "32594", null, "2770", null, "36929", null, "2514", null, "34903", null, "2344", null, "28482", null, "2445", null, "26429", null, "3005", null, "23145", null, "1931", null, "24884", null, "2234", null, "20988", null, "2227", null, "23034", null, "2251", null, "19514", null, "2116", null, "14909", null, "1718", null, "9898", null, "1224", null, "6213", null, "1077", null, "2800", null, "695", null, "49104", null, "2972", null, "16082", null, "1756", null, "90398", null, "3800", null, "42617", null, "2948", null, "185442", null, "5912", null, "325508", null, "6237", null, "314745", null, "5794", null, "297280", null, "5865", null, "76368", null, "3204", null, "67747", null, "2844", null, "53334", null, "2190", null, "18911", null, "1416", null, "34.7", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.2", null, "0.6", null, "6.4", null, "0.7", null, "5.7", null, "0.7", null, "6.4", null, "0.6", null, "8.0", null, "0.7", null, "9.1", null, "0.6", null, "8.6", null, "0.6", null, "7.0", null, "0.6", null, "6.5", null, "0.7", null, "5.7", null, "0.5", null, "6.1", null, "0.5", null, "5.2", null, "0.5", null, "5.7", null, "0.6", null, "4.8", null, "0.5", null, "3.7", null, "0.4", null, "2.4", null, "0.3", null, "1.5", null, "0.3", null, "0.7", null, "0.2", null, "12.1", null, "0.7", null, "4.0", null, "0.4", null, "22.3", null, "0.8", null, "10.5", null, "0.7", null, "45.8", null, "1.1", null, "80.3", null, "0.8", null, "77.7", null, "0.8", null, "73.4", null, "0.9", null, "18.8", null, "0.8", null, "16.7", null, "0.7", null, "13.2", null, "0.6", null, "4.7", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "411073", null, "7063", null, "21836", null, "2016", null, "20780", null, "2251", null, "23493", null, "2728", null, "26202", null, "2217", null, "32305", null, "3170", null, "33727", null, "2252", null, "34819", null, "2300", null, "29999", null, "3066", null, "25766", null, "3014", null, "23736", null, "2091", null, "23647", null, "1666", null, "23717", null, "2300", null, "23890", null, "2268", null, "23008", null, "1883", null, "18440", null, "1905", null, "12903", null, "1451", null, "6472", null, "1059", null, "6333", null, "960", null, "44273", null, "2373", null, "13663", null, "1374", null, "79772", null, "3638", null, "44844", null, "3111", null, "182818", null, "4513", null, "341288", null, "5441", null, "331301", null, "5473", null, "311547", null, "5978", null, "91046", null, "3196", null, "81332", null, "3107", null, "67156", null, "2088", null, "25708", null, "1313", null, "36.7", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.3", null, "0.5", null, "5.1", null, "0.5", null, "5.7", null, "0.6", null, "6.4", null, "0.5", null, "7.9", null, "0.7", null, "8.2", null, "0.5", null, "8.5", null, "0.6", null, "7.3", null, "0.7", null, "6.3", null, "0.7", null, "5.8", null, "0.5", null, "5.8", null, "0.4", null, "5.8", null, "0.6", null, "5.8", null, "0.5", null, "5.6", null, "0.5", null, "4.5", null, "0.5", null, "3.1", null, "0.4", null, "1.6", null, "0.3", null, "1.5", null, "0.2", null, "10.8", null, "0.5", null, "3.3", null, "0.3", null, "19.4", null, "0.7", null, "10.9", null, "0.7", null, "44.5", null, "0.9", null, "83.0", null, "0.7", null, "80.6", null, "0.7", null, "75.8", null, "0.9", null, "22.1", null, "0.8", null, "19.8", null, "0.8", null, "16.3", null, "0.6", null, "6.3", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "47", "07"], ["5001900US4708", "Congressional District 8 (119th Congress), Tennessee", "774995", null, "8284", null, "41842", null, "2656", null, "44959", null, "3879", null, "52124", null, "3339", null, "49422", null, "3006", null, "46329", null, "3275", null, "38831", null, "2980", null, "44393", null, "2784", null, "49693", null, "3401", null, "51807", null, "3854", null, "42935", null, "3159", null, "53040", null, "2933", null, "52477", null, "2980", null, "54510", null, "3537", null, "42402", null, "2656", null, "45040", null, "2458", null, "31107", null, "2121", null, "14857", null, "1504", null, "19227", null, "1810", null, "97083", null, "3232", null, "30888", null, "1843", null, "169813", null, "3842", null, "64863", null, "3487", null, "280475", null, "5849", null, "627439", null, "7194", null, "605182", null, "6694", null, "577695", null, "6373", null, "207143", null, "4659", null, "185338", null, "3826", null, "152633", null, "3067", null, "65191", null, "1763", null, "41.9", null, "0.5", null, "96.2", null, "2.0", null, "71.3", null, "1.1", null, "33.7", null, "0.8", null, "37.5", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.3", null, "5.8", null, "0.5", null, "6.7", null, "0.4", null, "6.4", null, "0.4", null, "6.0", null, "0.4", null, "5.0", null, "0.4", null, "5.7", null, "0.3", null, "6.4", null, "0.4", null, "6.7", null, "0.5", null, "5.5", null, "0.4", null, "6.8", null, "0.4", null, "6.8", null, "0.4", null, "7.0", null, "0.5", null, "5.5", null, "0.3", null, "5.8", null, "0.3", null, "4.0", null, "0.3", null, "1.9", null, "0.2", null, "2.5", null, "0.2", null, "12.5", null, "0.4", null, "4.0", null, "0.2", null, "21.9", null, "0.4", null, "8.4", null, "0.4", null, "36.2", null, "0.5", null, "81.0", null, "0.4", null, "78.1", null, "0.4", null, "74.5", null, "0.5", null, "26.7", null, "0.6", null, "23.9", null, "0.5", null, "19.7", null, "0.4", null, "8.4", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.6", null, "-888888888.0", "(X)", "379892", null, "5529", null, "20874", null, "2361", null, "22421", null, "2144", null, "27861", null, "2698", null, "26628", null, "2454", null, "26226", null, "2385", null, "18729", null, "2216", null, "20690", null, "1836", null, "24958", null, "1978", null, "24436", null, "2690", null, "22461", null, "2016", null, "24458", null, "1934", null, "25932", null, "2127", null, "27045", null, "2298", null, "18885", null, "1579", null, "21316", null, "1491", null, "13741", null, "1279", null, "6764", null, "995", null, "6467", null, "983", null, "50282", null, "2661", null, "16104", null, "1819", null, "87260", null, "3860", null, "36750", null, "2389", null, "141667", null, "3810", null, "303836", null, "4511", null, "292632", null, "4070", null, "277569", null, "4192", null, "94218", null, "2763", null, "82897", null, "2489", null, "67173", null, "1958", null, "26972", null, "1072", null, "40.4", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.6", null, "5.9", null, "0.5", null, "7.3", null, "0.7", null, "7.0", null, "0.6", null, "6.9", null, "0.6", null, "4.9", null, "0.6", null, "5.4", null, "0.5", null, "6.6", null, "0.5", null, "6.4", null, "0.7", null, "5.9", null, "0.5", null, "6.4", null, "0.5", null, "6.8", null, "0.5", null, "7.1", null, "0.6", null, "5.0", null, "0.4", null, "5.6", null, "0.4", null, "3.6", null, "0.3", null, "1.8", null, "0.3", null, "1.7", null, "0.3", null, "13.2", null, "0.6", null, "4.2", null, "0.5", null, "23.0", null, "0.8", null, "9.7", null, "0.6", null, "37.3", null, "0.8", null, "80.0", null, "0.8", null, "77.0", null, "0.8", null, "73.1", null, "0.8", null, "24.8", null, "0.8", null, "21.8", null, "0.7", null, "17.7", null, "0.5", null, "7.1", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "395103", null, "5953", null, "20968", null, "2178", null, "22538", null, "2760", null, "24263", null, "2720", null, "22794", null, "2348", null, "20103", null, "1904", null, "20102", null, "1743", null, "23703", null, "1772", null, "24735", null, "2289", null, "27371", null, "2366", null, "20474", null, "1865", null, "28582", null, "2002", null, "26545", null, "1925", null, "27465", null, "2306", null, "23517", null, "1675", null, "23724", null, "1808", null, "17366", null, "1726", null, "8093", null, "1119", null, "12760", null, "1468", null, "46801", null, "2754", null, "14784", null, "1793", null, "82553", null, "3612", null, "28113", null, "2276", null, "138808", null, "4289", null, "323603", null, "4765", null, "312550", null, "4153", null, "300126", null, "4180", null, "112925", null, "3239", null, "102441", null, "2587", null, "85460", null, "1948", null, "38219", null, "1397", null, "43.4", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.3", null, "0.5", null, "5.7", null, "0.7", null, "6.1", null, "0.7", null, "5.8", null, "0.6", null, "5.1", null, "0.5", null, "5.1", null, "0.4", null, "6.0", null, "0.4", null, "6.3", null, "0.6", null, "6.9", null, "0.6", null, "5.2", null, "0.5", null, "7.2", null, "0.5", null, "6.7", null, "0.5", null, "7.0", null, "0.6", null, "6.0", null, "0.4", null, "6.0", null, "0.5", null, "4.4", null, "0.4", null, "2.0", null, "0.3", null, "3.2", null, "0.4", null, "11.8", null, "0.7", null, "3.7", null, "0.4", null, "20.9", null, "0.7", null, "7.1", null, "0.6", null, "35.1", null, "0.8", null, "81.9", null, "0.7", null, "79.1", null, "0.7", null, "76.0", null, "0.8", null, "28.6", null, "0.8", null, "25.9", null, "0.6", null, "21.6", null, "0.5", null, "9.7", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "47", "08"], ["5001900US4709", "Congressional District 9 (119th Congress), Tennessee", "749932", null, "8227", null, "51296", null, "2232", null, "51135", null, "4322", null, "54868", null, "4312", null, "51778", null, "1988", null, "54509", null, "1848", null, "59281", null, "2219", null, "59119", null, "1689", null, "48508", null, "4013", null, "47515", null, "4258", null, "42939", null, "1888", null, "39728", null, "1342", null, "35942", null, "2391", null, "42890", null, "2902", null, "39633", null, "2241", null, "30776", null, "2474", null, "20978", null, "2145", null, "9751", null, "1607", null, "9286", null, "1334", null, "106003", null, "2798", null, "34346", null, "1441", null, "191645", null, "3784", null, "71941", null, "2441", null, "320710", null, "4889", null, "582823", null, "6957", null, "558287", null, "6603", null, "530689", null, "6879", null, "153314", null, "4493", null, "137120", null, "4169", null, "110424", null, "2881", null, "40015", null, "1759", null, "34.3", null, "0.4", null, "89.5", null, "1.2", null, "67.4", null, "1.1", null, "24.7", null, "0.7", null, "42.8", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.8", null, "0.3", null, "6.8", null, "0.6", null, "7.3", null, "0.6", null, "6.9", null, "0.3", null, "7.3", null, "0.2", null, "7.9", null, "0.3", null, "7.9", null, "0.2", null, "6.5", null, "0.5", null, "6.3", null, "0.6", null, "5.7", null, "0.3", null, "5.3", null, "0.2", null, "4.8", null, "0.3", null, "5.7", null, "0.4", null, "5.3", null, "0.3", null, "4.1", null, "0.3", null, "2.8", null, "0.3", null, "1.3", null, "0.2", null, "1.2", null, "0.2", null, "14.1", null, "0.3", null, "4.6", null, "0.2", null, "25.6", null, "0.4", null, "9.6", null, "0.3", null, "42.8", null, "0.4", null, "77.7", null, "0.5", null, "74.4", null, "0.4", null, "70.8", null, "0.5", null, "20.4", null, "0.5", null, "18.3", null, "0.5", null, "14.7", null, "0.4", null, "5.3", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.7", null, "-888888888.0", "(X)", "354091", null, "4646", null, "26531", null, "1418", null, "26492", null, "3248", null, "27297", null, "3175", null, "26876", null, "1529", null, "24863", null, "1494", null, "28666", null, "1465", null, "28655", null, "936", null, "22884", null, "2408", null, "22551", null, "2519", null, "19774", null, "1009", null, "18463", null, "965", null, "16735", null, "1567", null, "18422", null, "1989", null, "16861", null, "1419", null, "13054", null, "1370", null, "10060", null, "1322", null, "3190", null, "777", null, "2717", null, "740", null, "53789", null, "2171", null, "17975", null, "1261", null, "98295", null, "2777", null, "33764", null, "1911", null, "154495", null, "3077", null, "268986", null, "3791", null, "255796", null, "3572", null, "242720", null, "3660", null, "64304", null, "2315", null, "55404", null, "2140", null, "45882", null, "1678", null, "15967", null, "1025", null, "32.7", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "7.5", null, "0.4", null, "7.5", null, "0.9", null, "7.7", null, "0.9", null, "7.6", null, "0.4", null, "7.0", null, "0.4", null, "8.1", null, "0.4", null, "8.1", null, "0.2", null, "6.5", null, "0.7", null, "6.4", null, "0.7", null, "5.6", null, "0.3", null, "5.2", null, "0.3", null, "4.7", null, "0.4", null, "5.2", null, "0.6", null, "4.8", null, "0.4", null, "3.7", null, "0.4", null, "2.8", null, "0.4", null, "0.9", null, "0.2", null, "0.8", null, "0.2", null, "15.2", null, "0.5", null, "5.1", null, "0.3", null, "27.8", null, "0.6", null, "9.5", null, "0.5", null, "43.6", null, "0.6", null, "76.0", null, "0.7", null, "72.2", null, "0.6", null, "68.5", null, "0.7", null, "18.2", null, "0.6", null, "15.6", null, "0.6", null, "13.0", null, "0.5", null, "4.5", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "395841", null, "4985", null, "24765", null, "1307", null, "24643", null, "3029", null, "27571", null, "2969", null, "24902", null, "1436", null, "29646", null, "966", null, "30615", null, "1350", null, "30464", null, "1149", null, "25624", null, "3115", null, "24964", null, "3079", null, "23165", null, "1194", null, "21265", null, "1037", null, "19207", null, "1688", null, "24468", null, "1731", null, "22772", null, "1966", null, "17722", null, "2090", null, "10918", null, "1518", null, "6561", null, "1311", null, "6569", null, "1084", null, "52214", null, "2071", null, "16371", null, "922", null, "93350", null, "2492", null, "38177", null, "1213", null, "166215", null, "2945", null, "313837", null, "4416", null, "302491", null, "3930", null, "287969", null, "4326", null, "89010", null, "2796", null, "81716", null, "2865", null, "64542", null, "1813", null, "24048", null, "1299", null, "36.1", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.3", null, "0.3", null, "6.2", null, "0.8", null, "7.0", null, "0.7", null, "6.3", null, "0.3", null, "7.5", null, "0.3", null, "7.7", null, "0.3", null, "7.7", null, "0.3", null, "6.5", null, "0.8", null, "6.3", null, "0.8", null, "5.9", null, "0.3", null, "5.4", null, "0.3", null, "4.9", null, "0.4", null, "6.2", null, "0.4", null, "5.8", null, "0.5", null, "4.5", null, "0.5", null, "2.8", null, "0.4", null, "1.7", null, "0.3", null, "1.7", null, "0.3", null, "13.2", null, "0.5", null, "4.1", null, "0.2", null, "23.6", null, "0.5", null, "9.6", null, "0.3", null, "42.0", null, "0.5", null, "79.3", null, "0.6", null, "76.4", null, "0.5", null, "72.7", null, "0.7", null, "22.5", null, "0.6", null, "20.6", null, "0.7", null, "16.3", null, "0.4", null, "6.1", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "47", "09"], ["5001900US4801", "Congressional District 1 (119th Congress), Texas", "795955", null, "4846", null, "46032", null, "1826", null, "49684", null, "2833", null, "59395", null, "3706", null, "60706", null, "3888", null, "46904", null, "3581", null, "47412", null, "2832", null, "48517", null, "2749", null, "54580", null, "3873", null, "48888", null, "4154", null, "44667", null, "2831", null, "48361", null, "2807", null, "41491", null, "2932", null, "51719", null, "3032", null, "44826", null, "3044", null, "41862", null, "3134", null, "27479", null, "2121", null, "17938", null, "2257", null, "15494", null, "1558", null, "109079", null, "3071", null, "36013", null, "2251", null, "191124", null, "2313", null, "71597", null, "3282", null, "307007", null, "4285", null, "628309", null, "4245", null, "604831", null, "3687", null, "570668", null, "4708", null, "199318", null, "3885", null, "178828", null, "3564", null, "147599", null, "2261", null, "60911", null, "1668", null, "38.6", null, "0.4", null, "97.4", null, "1.6", null, "74.1", null, "0.9", null, "32.3", null, "0.6", null, "41.8", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.8", null, "0.2", null, "6.2", null, "0.4", null, "7.5", null, "0.5", null, "7.6", null, "0.5", null, "5.9", null, "0.4", null, "6.0", null, "0.4", null, "6.1", null, "0.3", null, "6.9", null, "0.5", null, "6.1", null, "0.5", null, "5.6", null, "0.3", null, "6.1", null, "0.4", null, "5.2", null, "0.4", null, "6.5", null, "0.4", null, "5.6", null, "0.4", null, "5.3", null, "0.4", null, "3.5", null, "0.3", null, "2.3", null, "0.3", null, "1.9", null, "0.2", null, "13.7", null, "0.4", null, "4.5", null, "0.3", null, "24.0", null, "0.2", null, "9.0", null, "0.4", null, "38.6", null, "0.5", null, "78.9", null, "0.3", null, "76.0", null, "0.2", null, "71.7", null, "0.5", null, "25.0", null, "0.4", null, "22.5", null, "0.4", null, "18.5", null, "0.3", null, "7.7", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.4", null, "-888888888.0", "(X)", "392791", null, "4709", null, "23704", null, "1793", null, "27216", null, "2674", null, "29740", null, "2691", null, "31780", null, "2967", null, "24078", null, "2522", null, "24793", null, "1811", null, "23595", null, "1723", null, "26631", null, "2518", null, "23689", null, "2698", null, "22029", null, "1946", null, "23756", null, "1826", null, "20349", null, "1930", null, "24070", null, "1926", null, "21503", null, "1924", null, "20844", null, "2015", null, "12760", null, "1094", null, "7113", null, "1167", null, "5141", null, "904", null, "56956", null, "2383", null, "17914", null, "1767", null, "98574", null, "3464", null, "37944", null, "2356", null, "154566", null, "3387", null, "306263", null, "3096", null, "294217", null, "2719", null, "275620", null, "3447", null, "91431", null, "2713", null, "82053", null, "2475", null, "67361", null, "1626", null, "25014", null, "1068", null, "37.2", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.0", null, "0.4", null, "6.9", null, "0.7", null, "7.6", null, "0.7", null, "8.1", null, "0.7", null, "6.1", null, "0.6", null, "6.3", null, "0.5", null, "6.0", null, "0.4", null, "6.8", null, "0.7", null, "6.0", null, "0.7", null, "5.6", null, "0.5", null, "6.0", null, "0.5", null, "5.2", null, "0.5", null, "6.1", null, "0.5", null, "5.5", null, "0.5", null, "5.3", null, "0.5", null, "3.2", null, "0.3", null, "1.8", null, "0.3", null, "1.3", null, "0.2", null, "14.5", null, "0.5", null, "4.6", null, "0.4", null, "25.1", null, "0.7", null, "9.7", null, "0.6", null, "39.4", null, "0.8", null, "78.0", null, "0.6", null, "74.9", null, "0.7", null, "70.2", null, "0.9", null, "23.3", null, "0.7", null, "20.9", null, "0.6", null, "17.1", null, "0.4", null, "6.4", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "403164", null, "3285", null, "22328", null, "2266", null, "22468", null, "2331", null, "29655", null, "2908", null, "28926", null, "2897", null, "22826", null, "2236", null, "22619", null, "1824", null, "24922", null, "2024", null, "27949", null, "2626", null, "25199", null, "2786", null, "22638", null, "1769", null, "24605", null, "2045", null, "21142", null, "2100", null, "27649", null, "2134", null, "23323", null, "1916", null, "21018", null, "1920", null, "14719", null, "1621", null, "10825", null, "1629", null, "10353", null, "1369", null, "52123", null, "2117", null, "18099", null, "2149", null, "92550", null, "2724", null, "33653", null, "2068", null, "152441", null, "3207", null, "322046", null, "2520", null, "310614", null, "2076", null, "295048", null, "3110", null, "107887", null, "2226", null, "96775", null, "2364", null, "80238", null, "1393", null, "35897", null, "1163", null, "40.0", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.5", null, "5.6", null, "0.6", null, "7.4", null, "0.7", null, "7.2", null, "0.7", null, "5.7", null, "0.6", null, "5.6", null, "0.5", null, "6.2", null, "0.5", null, "6.9", null, "0.7", null, "6.3", null, "0.7", null, "5.6", null, "0.4", null, "6.1", null, "0.5", null, "5.2", null, "0.5", null, "6.9", null, "0.5", null, "5.8", null, "0.5", null, "5.2", null, "0.5", null, "3.7", null, "0.4", null, "2.7", null, "0.4", null, "2.6", null, "0.3", null, "12.9", null, "0.5", null, "4.5", null, "0.5", null, "23.0", null, "0.5", null, "8.3", null, "0.5", null, "37.8", null, "0.8", null, "79.9", null, "0.6", null, "77.0", null, "0.5", null, "73.2", null, "0.8", null, "26.8", null, "0.5", null, "24.0", null, "0.5", null, "19.9", null, "0.3", null, "8.9", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "48", "01"], ["5001900US4802", "Congressional District 2 (119th Congress), Texas", "882070", null, "29510", null, "57468", null, "5931", null, "67450", null, "7060", null, "62849", null, "6561", null, "67536", null, "7853", null, "54493", null, "6062", null, "58515", null, "5934", null, "57987", null, "6554", null, "58680", null, "5832", null, "64543", null, "6770", null, "61156", null, "6092", null, "58907", null, "5750", null, "46972", null, "4906", null, "51105", null, "5764", null, "40508", null, "4454", null, "30769", null, "3378", null, "21703", null, "2636", null, "13107", null, "2308", null, "8322", null, "1560", null, "130299", null, "10155", null, "43952", null, "5497", null, "231719", null, "14645", null, "78077", null, "7506", null, "361754", null, "17858", null, "678458", null, "20893", null, "650351", null, "19167", null, "617056", null, "18301", null, "165514", null, "9655", null, "142643", null, "8453", null, "114409", null, "7056", null, "43132", null, "3615", null, "36.5", null, "1.1", null, "97.9", null, "3.8", null, "64.6", null, "2.7", null, "21.3", null, "1.6", null, "43.2", null, "2.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.5", null, "0.6", null, "7.6", null, "0.7", null, "7.1", null, "0.7", null, "7.7", null, "0.8", null, "6.2", null, "0.7", null, "6.6", null, "0.6", null, "6.6", null, "0.7", null, "6.7", null, "0.6", null, "7.3", null, "0.7", null, "6.9", null, "0.6", null, "6.7", null, "0.6", null, "5.3", null, "0.6", null, "5.8", null, "0.7", null, "4.6", null, "0.5", null, "3.5", null, "0.4", null, "2.5", null, "0.3", null, "1.5", null, "0.3", null, "0.9", null, "0.2", null, "14.8", null, "0.9", null, "5.0", null, "0.6", null, "26.3", null, "1.0", null, "8.9", null, "0.8", null, "41.0", null, "1.3", null, "76.9", null, "1.1", null, "73.7", null, "1.0", null, "70.0", null, "1.1", null, "18.8", null, "1.2", null, "16.2", null, "1.0", null, "13.0", null, "0.8", null, "4.9", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.1", null, "-888888888.0", "(X)", "436268", null, "17650", null, "29151", null, "3955", null, "31889", null, "4418", null, "34373", null, "4624", null, "36264", null, "4972", null, "28618", null, "3458", null, "28553", null, "3619", null, "31168", null, "3931", null, "26707", null, "3559", null, "31978", null, "4200", null, "30196", null, "3989", null, "29624", null, "3028", null, "23000", null, "3134", null, "24199", null, "3293", null, "17763", null, "2462", null, "13524", null, "2052", null, "9944", null, "1582", null, "6381", null, "1199", null, "2936", null, "954", null, "66262", null, "6535", null, "22417", null, "3116", null, "117830", null, "9586", null, "42465", null, "4727", null, "183288", null, "10502", null, "333304", null, "11765", null, "318438", null, "10647", null, "298549", null, "10494", null, "74747", null, "5002", null, "64357", null, "4580", null, "50548", null, "4004", null, "19261", null, "2103", null, "34.7", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.7", null, "0.8", null, "7.3", null, "0.9", null, "7.9", null, "0.9", null, "8.3", null, "1.0", null, "6.6", null, "0.8", null, "6.5", null, "0.8", null, "7.1", null, "0.8", null, "6.1", null, "0.8", null, "7.3", null, "0.9", null, "6.9", null, "0.8", null, "6.8", null, "0.7", null, "5.3", null, "0.7", null, "5.5", null, "0.8", null, "4.1", null, "0.6", null, "3.1", null, "0.5", null, "2.3", null, "0.4", null, "1.5", null, "0.3", null, "0.7", null, "0.2", null, "15.2", null, "1.2", null, "5.1", null, "0.6", null, "27.0", null, "1.4", null, "9.7", null, "1.0", null, "42.0", null, "1.6", null, "76.4", null, "1.4", null, "73.0", null, "1.4", null, "68.4", null, "1.5", null, "17.1", null, "1.2", null, "14.8", null, "1.1", null, "11.6", null, "1.0", null, "4.4", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "445802", null, "16568", null, "28317", null, "3953", null, "35561", null, "5090", null, "28476", null, "4065", null, "31272", null, "4654", null, "25875", null, "4101", null, "29962", null, "4089", null, "26819", null, "3443", null, "31973", null, "3863", null, "32565", null, "4472", null, "30960", null, "3888", null, "29283", null, "3728", null, "23972", null, "3242", null, "26906", null, "3961", null, "22745", null, "2690", null, "17245", null, "2253", null, "11759", null, "1844", null, "6726", null, "1917", null, "5386", null, "1208", null, "64037", null, "6973", null, "21535", null, "3707", null, "113889", null, "9348", null, "35612", null, "4651", null, "178466", null, "10095", null, "345154", null, "11695", null, "331913", null, "10769", null, "318507", null, "10237", null, "90767", null, "5797", null, "78286", null, "4891", null, "63861", null, "3986", null, "23871", null, "2662", null, "37.7", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.4", null, "0.8", null, "8.0", null, "1.0", null, "6.4", null, "0.8", null, "7.0", null, "1.0", null, "5.8", null, "0.9", null, "6.7", null, "0.9", null, "6.0", null, "0.8", null, "7.2", null, "0.8", null, "7.3", null, "1.0", null, "6.9", null, "0.9", null, "6.6", null, "0.8", null, "5.4", null, "0.8", null, "6.0", null, "0.9", null, "5.1", null, "0.6", null, "3.9", null, "0.5", null, "2.6", null, "0.4", null, "1.5", null, "0.4", null, "1.2", null, "0.3", null, "14.4", null, "1.3", null, "4.8", null, "0.8", null, "25.5", null, "1.5", null, "8.0", null, "1.0", null, "40.0", null, "1.4", null, "77.4", null, "1.5", null, "74.5", null, "1.5", null, "71.4", null, "1.4", null, "20.4", null, "1.4", null, "17.6", null, "1.1", null, "14.3", null, "0.9", null, "5.4", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "48", "02"], ["5001900US4803", "Congressional District 3 (119th Congress), Texas", "920628", null, "12851", null, "52147", null, "3706", null, "62871", null, "4318", null, "66558", null, "4842", null, "66849", null, "3689", null, "54768", null, "4205", null, "53216", null, "3754", null, "63256", null, "3319", null, "66659", null, "4805", null, "73976", null, "5187", null, "69061", null, "3903", null, "64292", null, "3163", null, "56474", null, "4327", null, "53458", null, "3944", null, "38703", null, "3391", null, "32320", null, "2855", null, "24118", null, "2433", null, "13825", null, "1739", null, "8077", null, "1573", null, "129429", null, "5432", null, "40664", null, "2740", null, "222240", null, "6804", null, "80953", null, "4268", null, "378724", null, "8326", null, "725806", null, "10152", null, "698388", null, "9610", null, "659565", null, "9790", null, "170501", null, "5856", null, "149244", null, "5510", null, "117043", null, "4235", null, "46020", null, "2401", null, "38.3", null, "0.5", null, "100.8", null, "2.3", null, "58.4", null, "1.5", null, "20.1", null, "0.8", null, "38.2", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.7", null, "0.4", null, "6.8", null, "0.4", null, "7.2", null, "0.5", null, "7.3", null, "0.4", null, "5.9", null, "0.5", null, "5.8", null, "0.4", null, "6.9", null, "0.4", null, "7.2", null, "0.5", null, "8.0", null, "0.5", null, "7.5", null, "0.4", null, "7.0", null, "0.3", null, "6.1", null, "0.5", null, "5.8", null, "0.4", null, "4.2", null, "0.4", null, "3.5", null, "0.3", null, "2.6", null, "0.3", null, "1.5", null, "0.2", null, "0.9", null, "0.2", null, "14.1", null, "0.5", null, "4.4", null, "0.3", null, "24.1", null, "0.6", null, "8.8", null, "0.5", null, "41.1", null, "0.7", null, "78.8", null, "0.6", null, "75.9", null, "0.6", null, "71.6", null, "0.6", null, "18.5", null, "0.6", null, "16.2", null, "0.6", null, "12.7", null, "0.4", null, "5.0", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.9", null, "-888888888.0", "(X)", "462228", null, "8240", null, "28166", null, "2759", null, "33297", null, "3318", null, "33675", null, "3498", null, "35004", null, "2500", null, "27012", null, "2875", null, "26446", null, "2582", null, "31024", null, "2437", null, "34186", null, "3402", null, "37100", null, "3450", null, "33332", null, "2649", null, "32404", null, "2236", null, "30217", null, "3178", null, "26048", null, "2825", null, "17921", null, "1877", null, "16258", null, "1770", null, "10278", null, "1342", null, "6843", null, "1226", null, "3017", null, "792", null, "66972", null, "3283", null, "20562", null, "2122", null, "115700", null, "4738", null, "41454", null, "2950", null, "190772", null, "5938", null, "360471", null, "6798", null, "346528", null, "6168", null, "326184", null, "6186", null, "80365", null, "3885", null, "68883", null, "3507", null, "54317", null, "2559", null, "20138", null, "1377", null, "37.7", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.1", null, "0.6", null, "7.2", null, "0.7", null, "7.3", null, "0.7", null, "7.6", null, "0.5", null, "5.8", null, "0.6", null, "5.7", null, "0.5", null, "6.7", null, "0.5", null, "7.4", null, "0.7", null, "8.0", null, "0.7", null, "7.2", null, "0.6", null, "7.0", null, "0.5", null, "6.5", null, "0.7", null, "5.6", null, "0.6", null, "3.9", null, "0.4", null, "3.5", null, "0.4", null, "2.2", null, "0.3", null, "1.5", null, "0.3", null, "0.7", null, "0.2", null, "14.5", null, "0.6", null, "4.4", null, "0.4", null, "25.0", null, "0.8", null, "9.0", null, "0.6", null, "41.3", null, "1.0", null, "78.0", null, "0.8", null, "75.0", null, "0.8", null, "70.6", null, "0.8", null, "17.4", null, "0.8", null, "14.9", null, "0.7", null, "11.8", null, "0.5", null, "4.4", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "458400", null, "8270", null, "23981", null, "2167", null, "29574", null, "3438", null, "32883", null, "3259", null, "31845", null, "2611", null, "27756", null, "2407", null, "26770", null, "2700", null, "32232", null, "2038", null, "32473", null, "3157", null, "36876", null, "3236", null, "35729", null, "2501", null, "31888", null, "1897", null, "26257", null, "2288", null, "27410", null, "2278", null, "20782", null, "2400", null, "16062", null, "2056", null, "13840", null, "1768", null, "6982", null, "1112", null, "5060", null, "1124", null, "62457", null, "3745", null, "20102", null, "1887", null, "106540", null, "4792", null, "39499", null, "2664", null, "187952", null, "5286", null, "365335", null, "6206", null, "351860", null, "5880", null, "333381", null, "5840", null, "90136", null, "3156", null, "80361", null, "3133", null, "62726", null, "2559", null, "25882", null, "1672", null, "38.8", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.4", null, "6.5", null, "0.7", null, "7.2", null, "0.7", null, "6.9", null, "0.6", null, "6.1", null, "0.5", null, "5.8", null, "0.6", null, "7.0", null, "0.5", null, "7.1", null, "0.7", null, "8.0", null, "0.7", null, "7.8", null, "0.5", null, "7.0", null, "0.4", null, "5.7", null, "0.5", null, "6.0", null, "0.5", null, "4.5", null, "0.5", null, "3.5", null, "0.4", null, "3.0", null, "0.4", null, "1.5", null, "0.2", null, "1.1", null, "0.2", null, "13.6", null, "0.7", null, "4.4", null, "0.4", null, "23.2", null, "0.8", null, "8.6", null, "0.6", null, "41.0", null, "0.9", null, "79.7", null, "0.9", null, "76.8", null, "0.8", null, "72.7", null, "0.8", null, "19.7", null, "0.7", null, "17.5", null, "0.7", null, "13.7", null, "0.6", null, "5.6", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "48", "03"], ["5001900US4804", "Congressional District 4 (119th Congress), Texas", "874662", null, "14031", null, "53031", null, "4072", null, "58676", null, "4469", null, "66252", null, "5140", null, "57964", null, "3852", null, "47017", null, "4408", null, "52205", null, "4348", null, "61624", null, "4404", null, "63563", null, "5267", null, "73509", null, "6215", null, "60303", null, "4077", null, "56987", null, "3496", null, "46311", null, "3792", null, "50888", null, "3770", null, "40020", null, "3337", null, "33498", null, "2637", null, "24290", null, "2321", null, "15811", null, "1980", null, "12713", null, "1545", null, "124928", null, "5673", null, "40836", null, "2757", null, "218795", null, "8177", null, "64145", null, "4645", null, "355882", null, "8429", null, "684527", null, "10040", null, "655867", null, "9867", null, "630228", null, "10172", null, "177220", null, "6463", null, "156057", null, "5837", null, "126332", null, "4656", null, "52814", null, "2856", null, "38.0", null, "0.7", null, "96.3", null, "2.4", null, "65.2", null, "1.8", null, "23.9", null, "1.0", null, "41.3", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.1", null, "0.4", null, "6.7", null, "0.5", null, "7.6", null, "0.5", null, "6.6", null, "0.4", null, "5.4", null, "0.5", null, "6.0", null, "0.5", null, "7.0", null, "0.5", null, "7.3", null, "0.6", null, "8.4", null, "0.7", null, "6.9", null, "0.4", null, "6.5", null, "0.4", null, "5.3", null, "0.4", null, "5.8", null, "0.4", null, "4.6", null, "0.4", null, "3.8", null, "0.3", null, "2.8", null, "0.3", null, "1.8", null, "0.2", null, "1.5", null, "0.2", null, "14.3", null, "0.5", null, "4.7", null, "0.3", null, "25.0", null, "0.7", null, "7.3", null, "0.5", null, "40.7", null, "0.7", null, "78.3", null, "0.6", null, "75.0", null, "0.7", null, "72.1", null, "0.7", null, "20.3", null, "0.7", null, "17.8", null, "0.7", null, "14.4", null, "0.6", null, "6.0", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.5", null, "-888888888.0", "(X)", "429100", null, "8978", null, "25681", null, "3180", null, "28957", null, "3130", null, "33317", null, "3663", null, "29250", null, "2920", null, "24190", null, "3010", null, "26756", null, "3104", null, "29990", null, "3049", null, "30688", null, "3506", null, "36121", null, "3405", null, "31966", null, "2875", null, "28018", null, "2360", null, "25407", null, "2756", null, "23603", null, "2341", null, "18046", null, "1799", null, "14988", null, "1417", null, "10938", null, "1395", null, "7049", null, "1231", null, "4135", null, "974", null, "62274", null, "3319", null, "20560", null, "2314", null, "108515", null, "5443", null, "32880", null, "3252", null, "176995", null, "5977", null, "334890", null, "6875", null, "320585", null, "6352", null, "307202", null, "6483", null, "78759", null, "3711", null, "69060", null, "3638", null, "55156", null, "2623", null, "22122", null, "1622", null, "37.5", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.0", null, "0.7", null, "6.7", null, "0.7", null, "7.8", null, "0.8", null, "6.8", null, "0.7", null, "5.6", null, "0.7", null, "6.2", null, "0.7", null, "7.0", null, "0.7", null, "7.2", null, "0.8", null, "8.4", null, "0.8", null, "7.4", null, "0.7", null, "6.5", null, "0.5", null, "5.9", null, "0.7", null, "5.5", null, "0.5", null, "4.2", null, "0.4", null, "3.5", null, "0.3", null, "2.5", null, "0.3", null, "1.6", null, "0.3", null, "1.0", null, "0.2", null, "14.5", null, "0.7", null, "4.8", null, "0.5", null, "25.3", null, "1.0", null, "7.7", null, "0.7", null, "41.2", null, "1.0", null, "78.0", null, "0.9", null, "74.7", null, "1.0", null, "71.6", null, "1.1", null, "18.4", null, "0.8", null, "16.1", null, "0.8", null, "12.9", null, "0.6", null, "5.2", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "445562", null, "8804", null, "27350", null, "2388", null, "29719", null, "3014", null, "32935", null, "3443", null, "28714", null, "2850", null, "22827", null, "2774", null, "25449", null, "2611", null, "31634", null, "2847", null, "32875", null, "3565", null, "37388", null, "4149", null, "28337", null, "2688", null, "28969", null, "2685", null, "20904", null, "2262", null, "27285", null, "2552", null, "21974", null, "2236", null, "18510", null, "2021", null, "13352", null, "1487", null, "8762", null, "1373", null, "8578", null, "1196", null, "62654", null, "4027", null, "20276", null, "2188", null, "110280", null, "5600", null, "31265", null, "2822", null, "178887", null, "5327", null, "349637", null, "5695", null, "335282", null, "5876", null, "323026", null, "6099", null, "98461", null, "4155", null, "86997", null, "3538", null, "71176", null, "2942", null, "30692", null, "1865", null, "38.6", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.1", null, "0.5", null, "6.7", null, "0.6", null, "7.4", null, "0.7", null, "6.4", null, "0.7", null, "5.1", null, "0.6", null, "5.7", null, "0.6", null, "7.1", null, "0.6", null, "7.4", null, "0.8", null, "8.4", null, "0.9", null, "6.4", null, "0.6", null, "6.5", null, "0.6", null, "4.7", null, "0.5", null, "6.1", null, "0.6", null, "4.9", null, "0.5", null, "4.2", null, "0.4", null, "3.0", null, "0.3", null, "2.0", null, "0.3", null, "1.9", null, "0.3", null, "14.1", null, "0.7", null, "4.6", null, "0.5", null, "24.8", null, "0.9", null, "7.0", null, "0.6", null, "40.1", null, "1.0", null, "78.5", null, "0.9", null, "75.2", null, "0.9", null, "72.5", null, "1.0", null, "22.1", null, "1.0", null, "19.5", null, "0.8", null, "16.0", null, "0.7", null, "6.9", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "48", "04"], ["5001900US4805", "Congressional District 5 (119th Congress), Texas", "856312", null, "12196", null, "60469", null, "4790", null, "57238", null, "4759", null, "61941", null, "5312", null, "66233", null, "5087", null, "50199", null, "3731", null, "53494", null, "5246", null, "58454", null, "4617", null, "54441", null, "5291", null, "59205", null, "5321", null, "48696", null, "3471", null, "52789", null, "3744", null, "44285", null, "3791", null, "55488", null, "4002", null, "45716", null, "3772", null, "37053", null, "2988", null, "24271", null, "2745", null, "15789", null, "1832", null, "10551", null, "1541", null, "119179", null, "6911", null, "39663", null, "3532", null, "219311", null, "8704", null, "76769", null, "4318", null, "342026", null, "9204", null, "661791", null, "10715", null, "637001", null, "9900", null, "600756", null, "10425", null, "188868", null, "6392", null, "170175", null, "6267", null, "133380", null, "4919", null, "50611", null, "2826", null, "37.0", null, "0.8", null, "94.4", null, "3.0", null, "70.0", null, "2.3", null, "26.5", null, "1.1", null, "43.5", null, "1.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "7.1", null, "0.5", null, "6.7", null, "0.5", null, "7.2", null, "0.6", null, "7.7", null, "0.6", null, "5.9", null, "0.4", null, "6.2", null, "0.6", null, "6.8", null, "0.5", null, "6.4", null, "0.6", null, "6.9", null, "0.6", null, "5.7", null, "0.4", null, "6.2", null, "0.4", null, "5.2", null, "0.5", null, "6.5", null, "0.5", null, "5.3", null, "0.4", null, "4.3", null, "0.3", null, "2.8", null, "0.3", null, "1.8", null, "0.2", null, "1.2", null, "0.2", null, "13.9", null, "0.7", null, "4.6", null, "0.4", null, "25.6", null, "0.9", null, "9.0", null, "0.5", null, "39.9", null, "0.9", null, "77.3", null, "0.9", null, "74.4", null, "0.9", null, "70.2", null, "0.9", null, "22.1", null, "0.7", null, "19.9", null, "0.7", null, "15.6", null, "0.6", null, "5.9", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "2.1", null, "-888888888.0", "(X)", "415855", null, "9651", null, "28494", null, "3126", null, "29830", null, "3257", null, "30829", null, "3425", null, "34209", null, "3373", null, "21418", null, "2146", null, "27841", null, "3088", null, "27782", null, "2536", null, "27449", null, "3248", null, "29292", null, "3406", null, "23695", null, "2463", null, "25827", null, "2538", null, "22728", null, "2662", null, "27356", null, "2759", null, "23012", null, "2568", null, "15858", null, "1766", null, "10915", null, "1567", null, "5974", null, "960", null, "3346", null, "792", null, "60659", null, "4206", null, "20545", null, "2549", null, "109698", null, "6246", null, "35082", null, "2628", null, "167991", null, "6542", null, "318967", null, "7883", null, "306157", null, "7347", null, "288364", null, "7436", null, "86461", null, "3896", null, "77078", null, "3716", null, "59105", null, "2935", null, "20235", null, "1593", null, "36.6", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.9", null, "0.7", null, "7.2", null, "0.8", null, "7.4", null, "0.8", null, "8.2", null, "0.8", null, "5.2", null, "0.5", null, "6.7", null, "0.7", null, "6.7", null, "0.6", null, "6.6", null, "0.8", null, "7.0", null, "0.8", null, "5.7", null, "0.6", null, "6.2", null, "0.6", null, "5.5", null, "0.7", null, "6.6", null, "0.7", null, "5.5", null, "0.6", null, "3.8", null, "0.4", null, "2.6", null, "0.4", null, "1.4", null, "0.2", null, "0.8", null, "0.2", null, "14.6", null, "0.9", null, "4.9", null, "0.6", null, "26.4", null, "1.2", null, "8.4", null, "0.6", null, "40.4", null, "1.2", null, "76.7", null, "1.2", null, "73.6", null, "1.2", null, "69.3", null, "1.2", null, "20.8", null, "0.8", null, "18.5", null, "0.8", null, "14.2", null, "0.6", null, "4.9", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "440457", null, "8597", null, "31975", null, "3505", null, "27408", null, "3615", null, "31112", null, "3857", null, "32024", null, "3802", null, "28781", null, "2964", null, "25653", null, "3302", null, "30672", null, "3026", null, "26992", null, "3428", null, "29913", null, "3061", null, "25001", null, "2422", null, "26962", null, "2258", null, "21557", null, "2432", null, "28132", null, "2588", null, "22704", null, "2374", null, "21195", null, "2263", null, "13356", null, "1931", null, "9815", null, "1582", null, "7205", null, "1371", null, "58520", null, "4445", null, "19118", null, "3043", null, "109613", null, "6317", null, "41687", null, "3473", null, "174035", null, "6258", null, "342824", null, "6554", null, "330844", null, "5674", null, "312392", null, "5738", null, "102407", null, "3990", null, "93097", null, "3953", null, "74275", null, "3269", null, "30376", null, "2032", null, "37.5", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "7.3", null, "0.8", null, "6.2", null, "0.8", null, "7.1", null, "0.8", null, "7.3", null, "0.8", null, "6.5", null, "0.7", null, "5.8", null, "0.7", null, "7.0", null, "0.7", null, "6.1", null, "0.8", null, "6.8", null, "0.7", null, "5.7", null, "0.6", null, "6.1", null, "0.5", null, "4.9", null, "0.5", null, "6.4", null, "0.6", null, "5.2", null, "0.5", null, "4.8", null, "0.5", null, "3.0", null, "0.4", null, "2.2", null, "0.4", null, "1.6", null, "0.3", null, "13.3", null, "0.9", null, "4.3", null, "0.7", null, "24.9", null, "1.1", null, "9.5", null, "0.8", null, "39.5", null, "1.1", null, "77.8", null, "1.2", null, "75.1", null, "1.1", null, "70.9", null, "1.3", null, "23.3", null, "1.0", null, "21.1", null, "1.0", null, "16.9", null, "0.8", null, "6.9", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "48", "05"], ["5001900US4806", "Congressional District 6 (119th Congress), Texas", "848575", null, "14820", null, "51714", null, "4962", null, "55956", null, "4526", null, "66234", null, "5122", null, "63820", null, "4382", null, "56443", null, "4719", null, "57374", null, "4346", null, "66855", null, "5733", null, "62810", null, "4773", null, "57495", null, "4816", null, "50679", null, "3893", null, "52820", null, "3768", null, "46122", null, "3319", null, "48446", null, "3347", null, "38375", null, "3172", null, "30408", null, "2689", null, "20512", null, "2226", null, "13142", null, "1583", null, "9370", null, "1454", null, "122190", null, "6286", null, "39719", null, "3024", null, "213623", null, "8092", null, "80544", null, "5506", null, "364797", null, "9186", null, "661494", null, "12769", null, "634952", null, "12564", null, "599758", null, "11641", null, "160253", null, "6191", null, "140058", null, "5361", null, "111807", null, "4301", null, "43024", null, "2616", null, "35.4", null, "0.5", null, "101.5", null, "2.7", null, "62.2", null, "1.9", null, "21.4", null, "0.9", null, "40.8", null, "1.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.1", null, "0.6", null, "6.6", null, "0.5", null, "7.8", null, "0.6", null, "7.5", null, "0.5", null, "6.7", null, "0.5", null, "6.8", null, "0.5", null, "7.9", null, "0.7", null, "7.4", null, "0.5", null, "6.8", null, "0.6", null, "6.0", null, "0.4", null, "6.2", null, "0.4", null, "5.4", null, "0.4", null, "5.7", null, "0.4", null, "4.5", null, "0.4", null, "3.6", null, "0.3", null, "2.4", null, "0.3", null, "1.5", null, "0.2", null, "1.1", null, "0.2", null, "14.4", null, "0.7", null, "4.7", null, "0.4", null, "25.2", null, "0.8", null, "9.5", null, "0.6", null, "43.0", null, "0.8", null, "78.0", null, "0.9", null, "74.8", null, "0.8", null, "70.7", null, "0.8", null, "18.9", null, "0.7", null, "16.5", null, "0.6", null, "13.2", null, "0.5", null, "5.1", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.1", null, "-888888888.0", "(X)", "427362", null, "9611", null, "24834", null, "3404", null, "27618", null, "2708", null, "35184", null, "3966", null, "34521", null, "3540", null, "28765", null, "3168", null, "30228", null, "3073", null, "33305", null, "3393", null, "34134", null, "3409", null, "30036", null, "3263", null, "23073", null, "2486", null, "27002", null, "2597", null, "23186", null, "2123", null, "24407", null, "2233", null, "19448", null, "1905", null, "14319", null, "1634", null, "8065", null, "1095", null, "5765", null, "1005", null, "3472", null, "884", null, "62802", null, "4979", null, "21532", null, "2578", null, "109168", null, "5407", null, "41754", null, "3489", null, "190989", null, "7200", null, "332696", null, "8138", null, "318194", null, "7750", null, "299310", null, "7654", null, "75476", null, "3551", null, "64725", null, "3177", null, "51069", null, "2377", null, "17302", null, "1334", null, "34.9", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.8", null, "0.8", null, "6.5", null, "0.6", null, "8.2", null, "0.9", null, "8.1", null, "0.8", null, "6.7", null, "0.7", null, "7.1", null, "0.7", null, "7.8", null, "0.8", null, "8.0", null, "0.8", null, "7.0", null, "0.8", null, "5.4", null, "0.6", null, "6.3", null, "0.6", null, "5.4", null, "0.5", null, "5.7", null, "0.5", null, "4.6", null, "0.5", null, "3.4", null, "0.4", null, "1.9", null, "0.2", null, "1.3", null, "0.2", null, "0.8", null, "0.2", null, "14.7", null, "1.1", null, "5.0", null, "0.6", null, "25.5", null, "1.0", null, "9.8", null, "0.7", null, "44.7", null, "1.3", null, "77.8", null, "1.2", null, "74.5", null, "1.0", null, "70.0", null, "1.2", null, "17.7", null, "0.9", null, "15.1", null, "0.8", null, "11.9", null, "0.6", null, "4.0", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "421213", null, "9069", null, "26880", null, "3301", null, "28338", null, "3301", null, "31050", null, "3444", null, "29299", null, "2611", null, "27678", null, "3091", null, "27146", null, "2612", null, "33550", null, "3678", null, "28676", null, "2760", null, "27459", null, "2886", null, "27606", null, "2538", null, "25818", null, "2402", null, "22936", null, "2319", null, "24039", null, "1994", null, "18927", null, "2214", null, "16089", null, "1829", null, "12447", null, "1752", null, "7377", null, "1265", null, "5898", null, "1195", null, "59388", null, "3807", null, "18187", null, "2102", null, "104455", null, "5688", null, "38790", null, "3458", null, "173808", null, "5820", null, "328798", null, "7502", null, "316758", null, "7433", null, "300448", null, "6796", null, "84777", null, "3640", null, "75333", null, "3315", null, "60738", null, "2773", null, "25722", null, "1867", null, "35.9", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.4", null, "0.7", null, "6.7", null, "0.8", null, "7.4", null, "0.8", null, "7.0", null, "0.6", null, "6.6", null, "0.7", null, "6.4", null, "0.6", null, "8.0", null, "0.8", null, "6.8", null, "0.6", null, "6.5", null, "0.7", null, "6.6", null, "0.6", null, "6.1", null, "0.6", null, "5.4", null, "0.6", null, "5.7", null, "0.5", null, "4.5", null, "0.5", null, "3.8", null, "0.4", null, "3.0", null, "0.4", null, "1.8", null, "0.3", null, "1.4", null, "0.3", null, "14.1", null, "0.8", null, "4.3", null, "0.5", null, "24.8", null, "1.1", null, "9.2", null, "0.8", null, "41.3", null, "1.0", null, "78.1", null, "1.1", null, "75.2", null, "1.1", null, "71.3", null, "1.1", null, "20.1", null, "0.9", null, "17.9", null, "0.8", null, "14.4", null, "0.7", null, "6.1", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "48", "06"], ["5001900US4807", "Congressional District 7 (119th Congress), Texas", "770214", null, "27099", null, "46407", null, "4670", null, "48484", null, "5403", null, "47439", null, "5646", null, "41750", null, "5856", null, "58599", null, "6144", null, "67714", null, "5354", null, "71624", null, "5904", null, "63628", null, "6513", null, "59419", null, "5489", null, "48805", null, "4551", null, "44182", null, "4262", null, "37013", null, "4167", null, "37559", null, "3626", null, "34394", null, "3702", null, "27170", null, "3465", null, "17902", null, "2567", null, "10220", null, "2155", null, "7905", null, "1442", null, "95923", null, "8429", null, "25043", null, "4037", null, "167373", null, "12043", null, "75306", null, "7104", null, "362734", null, "16703", null, "620136", null, "20035", null, "602841", null, "18537", null, "578603", null, "17185", null, "135150", null, "7608", null, "120309", null, "7084", null, "97591", null, "6722", null, "36027", null, "3577", null, "35.2", null, "0.8", null, "95.9", null, "3.6", null, "52.4", null, "2.5", null, "19.3", null, "1.6", null, "33.1", null, "1.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.0", null, "0.6", null, "6.3", null, "0.6", null, "6.2", null, "0.6", null, "5.4", null, "0.7", null, "7.6", null, "0.8", null, "8.8", null, "0.7", null, "9.3", null, "0.7", null, "8.3", null, "0.7", null, "7.7", null, "0.6", null, "6.3", null, "0.5", null, "5.7", null, "0.5", null, "4.8", null, "0.5", null, "4.9", null, "0.5", null, "4.5", null, "0.5", null, "3.5", null, "0.5", null, "2.3", null, "0.4", null, "1.3", null, "0.3", null, "1.0", null, "0.2", null, "12.5", null, "0.8", null, "3.3", null, "0.5", null, "21.7", null, "1.0", null, "9.8", null, "0.8", null, "47.1", null, "1.1", null, "80.5", null, "0.9", null, "78.3", null, "1.0", null, "75.1", null, "1.2", null, "17.5", null, "1.1", null, "15.6", null, "1.0", null, "12.7", null, "0.9", null, "4.7", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.0", null, "-888888888.0", "(X)", "377007", null, "15606", null, "24379", null, "3161", null, "25188", null, "3856", null, "22758", null, "3609", null, "20854", null, "4421", null, "24368", null, "3404", null, "32164", null, "3842", null, "35402", null, "3556", null, "33907", null, "4329", null, "30134", null, "4074", null, "22861", null, "3203", null, "22449", null, "2806", null, "20425", null, "3107", null, "18110", null, "2517", null, "16505", null, "2377", null, "12618", null, "2000", null, "7290", null, "1564", null, "4809", null, "1255", null, "2786", null, "825", null, "47946", null, "5681", null, "12112", null, "2730", null, "84437", null, "7850", null, "33110", null, "4224", null, "176829", null, "11063", null, "300068", null, "12208", null, "292570", null, "11487", null, "280589", null, "10648", null, "62118", null, "4630", null, "54811", null, "4172", null, "44008", null, "3592", null, "14885", null, "1943", null, "35.5", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.5", null, "0.8", null, "6.7", null, "1.0", null, "6.0", null, "0.9", null, "5.5", null, "1.1", null, "6.5", null, "0.9", null, "8.5", null, "1.0", null, "9.4", null, "0.9", null, "9.0", null, "1.0", null, "8.0", null, "1.0", null, "6.1", null, "0.8", null, "6.0", null, "0.8", null, "5.4", null, "0.8", null, "4.8", null, "0.7", null, "4.4", null, "0.6", null, "3.3", null, "0.6", null, "1.9", null, "0.4", null, "1.3", null, "0.3", null, "0.7", null, "0.2", null, "12.7", null, "1.3", null, "3.2", null, "0.7", null, "22.4", null, "1.6", null, "8.8", null, "1.0", null, "46.9", null, "1.7", null, "79.6", null, "1.5", null, "77.6", null, "1.6", null, "74.4", null, "1.7", null, "16.5", null, "1.3", null, "14.5", null, "1.2", null, "11.7", null, "1.1", null, "3.9", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "393207", null, "15024", null, "22028", null, "3075", null, "23296", null, "3671", null, "24681", null, "3701", null, "20896", null, "3241", null, "34231", null, "4541", null, "35550", null, "4001", null, "36222", null, "4121", null, "29721", null, "3906", null, "29285", null, "3519", null, "25944", null, "3004", null, "21733", null, "2899", null, "16588", null, "2259", null, "19449", null, "2137", null, "17889", null, "2183", null, "14552", null, "2278", null, "10612", null, "1861", null, "5411", null, "1268", null, "5119", null, "1106", null, "47977", null, "4703", null, "12931", null, "2824", null, "82936", null, "7160", null, "42196", null, "5005", null, "185905", null, "9384", null, "320068", null, "11606", null, "310271", null, "10729", null, "298014", null, "10309", null, "73032", null, "4268", null, "65498", null, "4113", null, "53583", null, "4149", null, "21142", null, "2548", null, "35.0", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.6", null, "0.8", null, "5.9", null, "0.9", null, "6.3", null, "0.8", null, "5.3", null, "0.7", null, "8.7", null, "1.1", null, "9.0", null, "1.0", null, "9.2", null, "0.9", null, "7.6", null, "0.9", null, "7.4", null, "0.9", null, "6.6", null, "0.7", null, "5.5", null, "0.7", null, "4.2", null, "0.6", null, "4.9", null, "0.6", null, "4.5", null, "0.6", null, "3.7", null, "0.6", null, "2.7", null, "0.5", null, "1.4", null, "0.3", null, "1.3", null, "0.3", null, "12.2", null, "0.9", null, "3.3", null, "0.7", null, "21.1", null, "1.3", null, "10.7", null, "1.2", null, "47.3", null, "1.3", null, "81.4", null, "1.1", null, "78.9", null, "1.3", null, "75.8", null, "1.4", null, "18.6", null, "1.1", null, "16.7", null, "1.1", null, "13.6", null, "1.1", null, "5.4", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "48", "07"], ["5001900US4808", "Congressional District 8 (119th Congress), Texas", "946825", null, "34293", null, "60735", null, "6524", null, "70636", null, "7312", null, "67675", null, "7735", null, "65705", null, "6395", null, "51092", null, "6175", null, "54074", null, "6035", null, "65916", null, "6728", null, "82852", null, "7778", null, "72130", null, "8994", null, "62451", null, "6435", null, "62492", null, "5800", null, "49909", null, "4463", null, "54735", null, "4038", null, "46459", null, "4134", null, "35291", null, "3436", null, "22477", null, "2353", null, "12965", null, "1965", null, "9231", null, "1937", null, "138311", null, "11581", null, "43545", null, "4976", null, "242591", null, "16241", null, "73252", null, "7248", null, "391769", null, "19618", null, "737016", null, "24592", null, "704234", null, "23011", null, "674332", null, "21175", null, "181158", null, "7395", null, "159208", null, "6771", null, "126423", null, "6044", null, "44673", null, "3253", null, "37.3", null, "0.8", null, "99.5", null, "3.5", null, "63.9", null, "2.4", null, "21.9", null, "1.3", null, "42.0", null, "2.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.4", null, "0.6", null, "7.5", null, "0.7", null, "7.1", null, "0.7", null, "6.9", null, "0.6", null, "5.4", null, "0.6", null, "5.7", null, "0.6", null, "7.0", null, "0.7", null, "8.8", null, "0.7", null, "7.6", null, "0.8", null, "6.6", null, "0.6", null, "6.6", null, "0.6", null, "5.3", null, "0.5", null, "5.8", null, "0.5", null, "4.9", null, "0.5", null, "3.7", null, "0.4", null, "2.4", null, "0.3", null, "1.4", null, "0.2", null, "1.0", null, "0.2", null, "14.6", null, "0.9", null, "4.6", null, "0.5", null, "25.6", null, "1.1", null, "7.7", null, "0.7", null, "41.4", null, "1.1", null, "77.8", null, "1.1", null, "74.4", null, "1.1", null, "71.2", null, "1.1", null, "19.1", null, "1.0", null, "16.8", null, "0.9", null, "13.4", null, "0.8", null, "4.7", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.7", null, "-888888888.0", "(X)", "472213", null, "19931", null, "32801", null, "5000", null, "34429", null, "5316", null, "33065", null, "4872", null, "34478", null, "4352", null, "25644", null, "3634", null, "26648", null, "3805", null, "33137", null, "4726", null, "42163", null, "5494", null, "36738", null, "4920", null, "32838", null, "4833", null, "27781", null, "2683", null, "25111", null, "3459", null, "26510", null, "2355", null, "24908", null, "2862", null, "15394", null, "2034", null, "10956", null, "1654", null, "5539", null, "1151", null, "4073", null, "1028", null, "67494", null, "6183", null, "22579", null, "3395", null, "122874", null, "9875", null, "37543", null, "4546", null, "198808", null, "11972", null, "365739", null, "15226", null, "349339", null, "14143", null, "334067", null, "13156", null, "87380", null, "4198", null, "76191", null, "4094", null, "60870", null, "3904", null, "20568", null, "2050", null, "36.9", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.9", null, "1.0", null, "7.3", null, "1.1", null, "7.0", null, "1.0", null, "7.3", null, "0.8", null, "5.4", null, "0.7", null, "5.6", null, "0.8", null, "7.0", null, "1.0", null, "8.9", null, "1.0", null, "7.8", null, "1.0", null, "7.0", null, "1.0", null, "5.9", null, "0.6", null, "5.3", null, "0.7", null, "5.6", null, "0.6", null, "5.3", null, "0.6", null, "3.3", null, "0.4", null, "2.3", null, "0.4", null, "1.2", null, "0.2", null, "0.9", null, "0.2", null, "14.3", null, "1.1", null, "4.8", null, "0.7", null, "26.0", null, "1.5", null, "8.0", null, "0.9", null, "42.1", null, "1.5", null, "77.5", null, "1.4", null, "74.0", null, "1.5", null, "70.7", null, "1.5", null, "18.5", null, "1.1", null, "16.1", null, "1.0", null, "12.9", null, "0.9", null, "4.4", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "474612", null, "18187", null, "27934", null, "3802", null, "36207", null, "4789", null, "34610", null, "5585", null, "31227", null, "4415", null, "25448", null, "4325", null, "27426", null, "3590", null, "32779", null, "3812", null, "40689", null, "4374", null, "35392", null, "5260", null, "29613", null, "3662", null, "34711", null, "3971", null, "24798", null, "3073", null, "28225", null, "3215", null, "21551", null, "2315", null, "19897", null, "2500", null, "11521", null, "1637", null, "7426", null, "1237", null, "5158", null, "1368", null, "70817", null, "7878", null, "20966", null, "3406", null, "119717", null, "9584", null, "35709", null, "5011", null, "192961", null, "11227", null, "371277", null, "12787", null, "354895", null, "12034", null, "340265", null, "11175", null, "93778", null, "4725", null, "83017", null, "4047", null, "65553", null, "3221", null, "24105", null, "2009", null, "37.7", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.9", null, "0.8", null, "7.6", null, "0.9", null, "7.3", null, "1.0", null, "6.6", null, "0.8", null, "5.4", null, "0.9", null, "5.8", null, "0.7", null, "6.9", null, "0.8", null, "8.6", null, "0.9", null, "7.5", null, "1.0", null, "6.2", null, "0.8", null, "7.3", null, "0.8", null, "5.2", null, "0.7", null, "5.9", null, "0.7", null, "4.5", null, "0.5", null, "4.2", null, "0.5", null, "2.4", null, "0.3", null, "1.6", null, "0.3", null, "1.1", null, "0.3", null, "14.9", null, "1.3", null, "4.4", null, "0.7", null, "25.2", null, "1.4", null, "7.5", null, "1.0", null, "40.7", null, "1.3", null, "78.2", null, "1.3", null, "74.8", null, "1.4", null, "71.7", null, "1.5", null, "19.8", null, "1.2", null, "17.5", null, "1.0", null, "13.8", null, "0.7", null, "5.1", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "48", "08"], ["5001900US4809", "Congressional District 9 (119th Congress), Texas", "822791", null, "32845", null, "61044", null, "5853", null, "60883", null, "6219", null, "60271", null, "7740", null, "60428", null, "7314", null, "52188", null, "4864", null, "59221", null, "6087", null, "66798", null, "6362", null, "59662", null, "6930", null, "58776", null, "6621", null, "51965", null, "5151", null, "45857", null, "4895", null, "46071", null, "4709", null, "42683", null, "4013", null, "31981", null, "3500", null, "26652", null, "3027", null, "17543", null, "2374", null, "12342", null, "2064", null, "8426", null, "1416", null, "121154", null, "11515", null, "37952", null, "5374", null, "220150", null, "17442", null, "74664", null, "6234", null, "357073", null, "18740", null, "626670", null, "21166", null, "602641", null, "19318", null, "571546", null, "17867", null, "139627", null, "6514", null, "124931", null, "6634", null, "96944", null, "5399", null, "38311", null, "3530", null, "34.3", null, "0.8", null, "94.2", null, "3.6", null, "62.7", null, "2.9", null, "19.2", null, "1.4", null, "43.5", null, "2.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "7.4", null, "0.6", null, "7.4", null, "0.6", null, "7.3", null, "0.8", null, "7.3", null, "0.7", null, "6.3", null, "0.5", null, "7.2", null, "0.7", null, "8.1", null, "0.7", null, "7.3", null, "0.8", null, "7.1", null, "0.7", null, "6.3", null, "0.6", null, "5.6", null, "0.6", null, "5.6", null, "0.6", null, "5.2", null, "0.5", null, "3.9", null, "0.4", null, "3.2", null, "0.4", null, "2.1", null, "0.3", null, "1.5", null, "0.2", null, "1.0", null, "0.2", null, "14.7", null, "1.0", null, "4.6", null, "0.6", null, "26.8", null, "1.3", null, "9.1", null, "0.6", null, "43.4", null, "1.2", null, "76.2", null, "1.1", null, "73.2", null, "1.3", null, "69.5", null, "1.4", null, "17.0", null, "1.0", null, "15.2", null, "1.0", null, "11.8", null, "0.8", null, "4.7", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.6", null, "-888888888.0", "(X)", "399057", null, "18492", null, "33842", null, "4095", null, "31497", null, "4314", null, "31792", null, "4818", null, "28643", null, "4639", null, "25829", null, "3414", null, "30079", null, "3942", null, "29793", null, "4245", null, "27971", null, "4202", null, "27898", null, "3956", null, "24385", null, "3614", null, "22575", null, "3049", null, "22011", null, "3296", null, "20331", null, "2610", null, "14659", null, "2447", null, "12113", null, "2001", null, "7053", null, "1354", null, "6009", null, "1294", null, "2577", null, "707", null, "63289", null, "6925", null, "17761", null, "3406", null, "114892", null, "10391", null, "36711", null, "4297", null, "170213", null, "10946", null, "295771", null, "12138", null, "284165", null, "11427", null, "267337", null, "10394", null, "62742", null, "4243", null, "55839", null, "4269", null, "42411", null, "3368", null, "15639", null, "2013", null, "32.9", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "8.5", null, "0.9", null, "7.9", null, "0.9", null, "8.0", null, "1.1", null, "7.2", null, "1.0", null, "6.5", null, "0.8", null, "7.5", null, "1.0", null, "7.5", null, "1.0", null, "7.0", null, "0.9", null, "7.0", null, "0.9", null, "6.1", null, "0.9", null, "5.7", null, "0.8", null, "5.5", null, "0.8", null, "5.1", null, "0.7", null, "3.7", null, "0.6", null, "3.0", null, "0.5", null, "1.8", null, "0.4", null, "1.5", null, "0.3", null, "0.6", null, "0.2", null, "15.9", null, "1.3", null, "4.5", null, "0.8", null, "28.8", null, "1.7", null, "9.2", null, "1.0", null, "42.7", null, "1.6", null, "74.1", null, "1.5", null, "71.2", null, "1.7", null, "67.0", null, "1.9", null, "15.7", null, "1.2", null, "14.0", null, "1.2", null, "10.6", null, "0.9", null, "3.9", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "423734", null, "17854", null, "27202", null, "3846", null, "29386", null, "4058", null, "28479", null, "4943", null, "31785", null, "4366", null, "26359", null, "3650", null, "29142", null, "3780", null, "37005", null, "4634", null, "31691", null, "4469", null, "30878", null, "4485", null, "27580", null, "3131", null, "23282", null, "3321", null, "24060", null, "3092", null, "22352", null, "2849", null, "17322", null, "2187", null, "14539", null, "1957", null, "10490", null, "1676", null, "6333", null, "1432", null, "5849", null, "1104", null, "57865", null, "7189", null, "20191", null, "3362", null, "105258", null, "9878", null, "37953", null, "4161", null, "186860", null, "10312", null, "330899", null, "11873", null, "318476", null, "11122", null, "304209", null, "10944", null, "76885", null, "4062", null, "69092", null, "3687", null, "54533", null, "3066", null, "22672", null, "2191", null, "35.4", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.4", null, "0.8", null, "6.9", null, "0.9", null, "6.7", null, "1.0", null, "7.5", null, "0.9", null, "6.2", null, "0.8", null, "6.9", null, "0.9", null, "8.7", null, "1.1", null, "7.5", null, "1.0", null, "7.3", null, "1.0", null, "6.5", null, "0.7", null, "5.5", null, "0.7", null, "5.7", null, "0.7", null, "5.3", null, "0.7", null, "4.1", null, "0.5", null, "3.4", null, "0.5", null, "2.5", null, "0.4", null, "1.5", null, "0.3", null, "1.4", null, "0.3", null, "13.7", null, "1.4", null, "4.8", null, "0.7", null, "24.8", null, "1.6", null, "9.0", null, "0.9", null, "44.1", null, "1.4", null, "78.1", null, "1.6", null, "75.2", null, "1.6", null, "71.8", null, "1.6", null, "18.1", null, "1.2", null, "16.3", null, "1.0", null, "12.9", null, "0.9", null, "5.4", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "48", "09"], ["5001900US4810", "Congressional District 10 (119th Congress), Texas", "832921", null, "14049", null, "45107", null, "3349", null, "50930", null, "5342", null, "54289", null, "4691", null, "69005", null, "3799", null, "75359", null, "4245", null, "48883", null, "3256", null, "47878", null, "4158", null, "56413", null, "5303", null, "54879", null, "4092", null, "53473", null, "4072", null, "48931", null, "3242", null, "43155", null, "2880", null, "47248", null, "4223", null, "46130", null, "3191", null, "36784", null, "2974", null, "24693", null, "2055", null, "15625", null, "1852", null, "14139", null, "1950", null, "105219", null, "6243", null, "33432", null, "3122", null, "183758", null, "7686", null, "110932", null, "4303", null, "352417", null, "7271", null, "672438", null, "10366", null, "649163", null, "9720", null, "592604", null, "9606", null, "184619", null, "5746", null, "166569", null, "5253", null, "137371", null, "4258", null, "54457", null, "2898", null, "37.1", null, "0.7", null, "101.7", null, "2.2", null, "62.7", null, "1.7", null, "26.8", null, "0.9", null, "35.9", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.4", null, "6.1", null, "0.6", null, "6.5", null, "0.5", null, "8.3", null, "0.5", null, "9.0", null, "0.5", null, "5.9", null, "0.4", null, "5.7", null, "0.5", null, "6.8", null, "0.6", null, "6.6", null, "0.5", null, "6.4", null, "0.5", null, "5.9", null, "0.4", null, "5.2", null, "0.3", null, "5.7", null, "0.5", null, "5.5", null, "0.4", null, "4.4", null, "0.4", null, "3.0", null, "0.2", null, "1.9", null, "0.2", null, "1.7", null, "0.2", null, "12.6", null, "0.6", null, "4.0", null, "0.4", null, "22.1", null, "0.7", null, "13.3", null, "0.5", null, "42.3", null, "0.7", null, "80.7", null, "0.7", null, "77.9", null, "0.7", null, "71.1", null, "0.7", null, "22.2", null, "0.6", null, "20.0", null, "0.6", null, "16.5", null, "0.5", null, "6.5", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.2", null, "-888888888.0", "(X)", "419950", null, "8254", null, "25172", null, "2788", null, "25403", null, "2611", null, "27615", null, "3230", null, "33734", null, "2695", null, "41021", null, "2765", null, "25620", null, "2453", null, "26092", null, "2901", null, "27239", null, "3175", null, "27224", null, "2825", null, "27733", null, "2727", null, "25351", null, "2189", null, "21555", null, "2053", null, "22623", null, "2528", null, "21623", null, "1969", null, "17992", null, "1816", null, "11449", null, "1315", null, "6386", null, "1209", null, "6118", null, "1186", null, "53018", null, "3868", null, "15294", null, "2128", null, "93484", null, "5611", null, "59461", null, "3046", null, "180930", null, "5022", null, "336746", null, "5632", null, "326466", null, "5334", null, "297381", null, "5334", null, "86191", null, "3095", null, "77745", null, "2926", null, "63568", null, "2503", null, "23953", null, "1573", null, "35.9", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.0", null, "0.6", null, "6.0", null, "0.6", null, "6.6", null, "0.7", null, "8.0", null, "0.6", null, "9.8", null, "0.7", null, "6.1", null, "0.6", null, "6.2", null, "0.7", null, "6.5", null, "0.7", null, "6.5", null, "0.7", null, "6.6", null, "0.7", null, "6.0", null, "0.5", null, "5.1", null, "0.5", null, "5.4", null, "0.6", null, "5.1", null, "0.5", null, "4.3", null, "0.5", null, "2.7", null, "0.3", null, "1.5", null, "0.3", null, "1.5", null, "0.3", null, "12.6", null, "0.8", null, "3.6", null, "0.5", null, "22.3", null, "1.0", null, "14.2", null, "0.8", null, "43.1", null, "1.0", null, "80.2", null, "1.0", null, "77.7", null, "1.0", null, "70.8", null, "1.1", null, "20.5", null, "0.7", null, "18.5", null, "0.7", null, "15.1", null, "0.6", null, "5.7", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "412971", null, "8379", null, "19935", null, "2186", null, "25527", null, "3889", null, "26674", null, "3141", null, "35271", null, "2968", null, "34338", null, "2674", null, "23263", null, "2093", null, "21786", null, "2134", null, "29174", null, "3321", null, "27655", null, "2739", null, "25740", null, "2375", null, "23580", null, "2038", null, "21600", null, "2136", null, "24625", null, "2610", null, "24507", null, "2186", null, "18792", null, "1883", null, "13244", null, "1217", null, "9239", null, "1341", null, "8021", null, "1155", null, "52201", null, "3651", null, "18138", null, "2267", null, "90274", null, "4625", null, "51471", null, "2827", null, "171487", null, "4354", null, "335692", null, "6322", null, "322697", null, "5840", null, "295223", null, "5969", null, "98428", null, "3789", null, "88824", null, "3256", null, "73803", null, "2583", null, "30504", null, "1877", null, "38.3", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.8", null, "0.5", null, "6.2", null, "0.9", null, "6.5", null, "0.7", null, "8.5", null, "0.7", null, "8.3", null, "0.6", null, "5.6", null, "0.5", null, "5.3", null, "0.5", null, "7.1", null, "0.8", null, "6.7", null, "0.7", null, "6.2", null, "0.6", null, "5.7", null, "0.5", null, "5.2", null, "0.5", null, "6.0", null, "0.6", null, "5.9", null, "0.5", null, "4.6", null, "0.5", null, "3.2", null, "0.3", null, "2.2", null, "0.3", null, "1.9", null, "0.3", null, "12.6", null, "0.8", null, "4.4", null, "0.5", null, "21.9", null, "0.8", null, "12.5", null, "0.6", null, "41.5", null, "0.9", null, "81.3", null, "0.9", null, "78.1", null, "0.8", null, "71.5", null, "0.9", null, "23.8", null, "0.8", null, "21.5", null, "0.7", null, "17.9", null, "0.6", null, "7.4", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "48", "10"], ["5001900US4811", "Congressional District 11 (119th Congress), Texas", "802030", null, "5538", null, "58208", null, "2283", null, "58684", null, "4763", null, "61166", null, "4635", null, "55924", null, "3414", null, "61282", null, "3512", null, "57681", null, "3295", null, "58334", null, "2735", null, "59714", null, "4743", null, "56002", null, "3924", null, "47150", null, "2936", null, "40232", null, "2200", null, "36168", null, "2812", null, "44247", null, "2828", null, "34660", null, "2655", null, "29732", null, "2321", null, "19695", null, "1887", null, "12937", null, "1588", null, "10214", null, "1376", null, "119850", null, "3443", null, "37909", null, "2259", null, "215967", null, "3744", null, "79297", null, "3206", null, "348937", null, "5479", null, "610907", null, "5485", null, "586063", null, "5205", null, "556605", null, "5703", null, "151485", null, "3915", null, "131940", null, "3833", null, "107238", null, "2612", null, "42846", null, "2119", null, "34.2", null, "0.4", null, "100.1", null, "2.0", null, "67.5", null, "1.2", null, "22.4", null, "0.6", null, "45.1", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "7.3", null, "0.3", null, "7.3", null, "0.6", null, "7.6", null, "0.6", null, "7.0", null, "0.4", null, "7.6", null, "0.4", null, "7.2", null, "0.4", null, "7.3", null, "0.3", null, "7.4", null, "0.6", null, "7.0", null, "0.5", null, "5.9", null, "0.4", null, "5.0", null, "0.3", null, "4.5", null, "0.4", null, "5.5", null, "0.4", null, "4.3", null, "0.3", null, "3.7", null, "0.3", null, "2.5", null, "0.2", null, "1.6", null, "0.2", null, "1.3", null, "0.2", null, "14.9", null, "0.4", null, "4.7", null, "0.3", null, "26.9", null, "0.4", null, "9.9", null, "0.4", null, "43.5", null, "0.6", null, "76.2", null, "0.5", null, "73.1", null, "0.4", null, "69.4", null, "0.6", null, "18.9", null, "0.5", null, "16.5", null, "0.5", null, "13.4", null, "0.3", null, "5.3", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "0.8", null, "-888888888.0", "(X)", "401138", null, "4580", null, "28320", null, "1727", null, "30866", null, "3227", null, "29737", null, "3418", null, "28607", null, "2476", null, "32021", null, "2667", null, "29886", null, "2276", null, "28590", null, "1668", null, "32094", null, "3276", null, "28753", null, "2933", null, "23416", null, "1649", null, "19780", null, "1230", null, "16215", null, "2027", null, "23085", null, "2068", null, "17624", null, "1658", null, "13224", null, "1430", null, "8829", null, "1148", null, "5516", null, "908", null, "4575", null, "967", null, "60603", null, "2319", null, "19047", null, "1667", null, "107970", null, "3745", null, "41581", null, "2452", null, "179951", null, "3843", null, "305283", null, "4156", null, "293168", null, "3844", null, "277278", null, "4369", null, "72853", null, "2677", null, "62183", null, "2270", null, "49768", null, "1573", null, "18920", null, "1298", null, "33.7", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "7.1", null, "0.4", null, "7.7", null, "0.8", null, "7.4", null, "0.8", null, "7.1", null, "0.6", null, "8.0", null, "0.6", null, "7.5", null, "0.6", null, "7.1", null, "0.4", null, "8.0", null, "0.8", null, "7.2", null, "0.7", null, "5.8", null, "0.4", null, "4.9", null, "0.3", null, "4.0", null, "0.5", null, "5.8", null, "0.5", null, "4.4", null, "0.4", null, "3.3", null, "0.4", null, "2.2", null, "0.3", null, "1.4", null, "0.2", null, "1.1", null, "0.2", null, "15.1", null, "0.5", null, "4.7", null, "0.4", null, "26.9", null, "0.8", null, "10.4", null, "0.6", null, "44.9", null, "0.8", null, "76.1", null, "0.9", null, "73.1", null, "0.8", null, "69.1", null, "1.0", null, "18.2", null, "0.7", null, "15.5", null, "0.6", null, "12.4", null, "0.4", null, "4.7", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "400892", null, "5104", null, "29888", null, "1877", null, "27818", null, "3209", null, "31429", null, "2802", null, "27317", null, "2725", null, "29261", null, "1989", null, "27795", null, "1852", null, "29744", null, "2068", null, "27620", null, "2885", null, "27249", null, "2771", null, "23734", null, "1911", null, "20452", null, "1397", null, "19953", null, "2010", null, "21162", null, "2046", null, "17036", null, "1843", null, "16508", null, "1820", null, "10866", null, "1515", null, "7421", null, "1119", null, "5639", null, "983", null, "59247", null, "2720", null, "18862", null, "1975", null, "107997", null, "3272", null, "37716", null, "1775", null, "168986", null, "3838", null, "305624", null, "3861", null, "292895", null, "3471", null, "279327", null, "3629", null, "78632", null, "2683", null, "69757", null, "2432", null, "57470", null, "1800", null, "23926", null, "1309", null, "34.6", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "7.5", null, "0.4", null, "6.9", null, "0.8", null, "7.8", null, "0.7", null, "6.8", null, "0.7", null, "7.3", null, "0.5", null, "6.9", null, "0.5", null, "7.4", null, "0.5", null, "6.9", null, "0.7", null, "6.8", null, "0.7", null, "5.9", null, "0.5", null, "5.1", null, "0.4", null, "5.0", null, "0.5", null, "5.3", null, "0.5", null, "4.2", null, "0.5", null, "4.1", null, "0.4", null, "2.7", null, "0.4", null, "1.9", null, "0.3", null, "1.4", null, "0.2", null, "14.8", null, "0.6", null, "4.7", null, "0.5", null, "26.9", null, "0.6", null, "9.4", null, "0.4", null, "42.2", null, "0.8", null, "76.2", null, "0.7", null, "73.1", null, "0.6", null, "69.7", null, "0.8", null, "19.6", null, "0.6", null, "17.4", null, "0.6", null, "14.3", null, "0.4", null, "6.0", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "48", "11"], ["5001900US4812", "Congressional District 12 (119th Congress), Texas", "852259", null, "22232", null, "55080", null, "4965", null, "49086", null, "4902", null, "62999", null, "6217", null, "57718", null, "5940", null, "62463", null, "5036", null, "62533", null, "5131", null, "69927", null, "6279", null, "64357", null, "5862", null, "62571", null, "5470", null, "52367", null, "4273", null, "47214", null, "4108", null, "47192", null, "3858", null, "49018", null, "4653", null, "36236", null, "3007", null, "28020", null, "2720", null, "22499", null, "2544", null, "11976", null, "1805", null, "11003", null, "1791", null, "112085", null, "8022", null, "36369", null, "4396", null, "203534", null, "12388", null, "83812", null, "6674", null, "379569", null, "13653", null, "674605", null, "16665", null, "648725", null, "15432", null, "613590", null, "14132", null, "158752", null, "6644", null, "139473", null, "5671", null, "109734", null, "4597", null, "45478", null, "3000", null, "35.4", null, "0.8", null, "98.5", null, "2.8", null, "58.1", null, "2.2", null, "20.4", null, "1.1", null, "37.8", null, "2.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.5", null, "0.5", null, "5.8", null, "0.6", null, "7.4", null, "0.6", null, "6.8", null, "0.6", null, "7.3", null, "0.5", null, "7.3", null, "0.6", null, "8.2", null, "0.7", null, "7.6", null, "0.7", null, "7.3", null, "0.6", null, "6.1", null, "0.5", null, "5.5", null, "0.4", null, "5.5", null, "0.5", null, "5.8", null, "0.6", null, "4.3", null, "0.4", null, "3.3", null, "0.3", null, "2.6", null, "0.3", null, "1.4", null, "0.2", null, "1.3", null, "0.2", null, "13.2", null, "0.8", null, "4.3", null, "0.5", null, "23.9", null, "1.1", null, "9.8", null, "0.7", null, "44.5", null, "0.8", null, "79.2", null, "0.9", null, "76.1", null, "1.1", null, "72.0", null, "1.2", null, "18.6", null, "0.9", null, "16.4", null, "0.8", null, "12.9", null, "0.6", null, "5.3", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.4", null, "-888888888.0", "(X)", "422999", null, "11831", null, "28040", null, "3971", null, "26435", null, "3773", null, "33392", null, "4478", null, "29212", null, "3940", null, "29957", null, "2818", null, "30545", null, "3623", null, "35767", null, "3611", null, "31911", null, "3221", null, "31081", null, "3019", null, "25899", null, "2662", null, "24724", null, "2648", null, "22673", null, "3087", null, "23642", null, "2855", null, "18258", null, "2083", null, "10988", null, "1525", null, "10942", null, "1529", null, "5079", null, "1135", null, "4454", null, "988", null, "59827", null, "5716", null, "18071", null, "3132", null, "105938", null, "8076", null, "41098", null, "4043", null, "188473", null, "8323", null, "329990", null, "9569", null, "317061", null, "8933", null, "299716", null, "8326", null, "73363", null, "3868", null, "64067", null, "3485", null, "49721", null, "2676", null, "20475", null, "1709", null, "34.8", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.6", null, "0.9", null, "6.2", null, "0.9", null, "7.9", null, "1.0", null, "6.9", null, "0.9", null, "7.1", null, "0.6", null, "7.2", null, "0.8", null, "8.5", null, "0.8", null, "7.5", null, "0.7", null, "7.3", null, "0.7", null, "6.1", null, "0.6", null, "5.8", null, "0.6", null, "5.4", null, "0.7", null, "5.6", null, "0.7", null, "4.3", null, "0.5", null, "2.6", null, "0.4", null, "2.6", null, "0.4", null, "1.2", null, "0.3", null, "1.1", null, "0.2", null, "14.1", null, "1.2", null, "4.3", null, "0.7", null, "25.0", null, "1.5", null, "9.7", null, "0.9", null, "44.6", null, "1.4", null, "78.0", null, "1.4", null, "75.0", null, "1.5", null, "70.9", null, "1.6", null, "17.3", null, "1.0", null, "15.1", null, "0.9", null, "11.8", null, "0.7", null, "4.8", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "429260", null, "13346", null, "27040", null, "3682", null, "22651", null, "2914", null, "29607", null, "3721", null, "28506", null, "3677", null, "32506", null, "3435", null, "31988", null, "3094", null, "34160", null, "3866", null, "32446", null, "4007", null, "31490", null, "3641", null, "26468", null, "2640", null, "22490", null, "2400", null, "24519", null, "2267", null, "25376", null, "2717", null, "17978", null, "1756", null, "17032", null, "2181", null, "11557", null, "1584", null, "6897", null, "1456", null, "6549", null, "1264", null, "52258", null, "4727", null, "18298", null, "2630", null, "97596", null, "7096", null, "42714", null, "4056", null, "191096", null, "8188", null, "344615", null, "9811", null, "331664", null, "9350", null, "313874", null, "8517", null, "85389", null, "4146", null, "75406", null, "3707", null, "60013", null, "2962", null, "25003", null, "1951", null, "36.2", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.3", null, "0.8", null, "5.3", null, "0.7", null, "6.9", null, "0.8", null, "6.6", null, "0.8", null, "7.6", null, "0.7", null, "7.5", null, "0.7", null, "8.0", null, "0.8", null, "7.6", null, "0.9", null, "7.3", null, "0.8", null, "6.2", null, "0.6", null, "5.2", null, "0.5", null, "5.7", null, "0.5", null, "5.9", null, "0.6", null, "4.2", null, "0.4", null, "4.0", null, "0.5", null, "2.7", null, "0.4", null, "1.6", null, "0.3", null, "1.5", null, "0.3", null, "12.2", null, "1.0", null, "4.3", null, "0.6", null, "22.7", null, "1.2", null, "10.0", null, "0.8", null, "44.5", null, "1.1", null, "80.3", null, "1.1", null, "77.3", null, "1.2", null, "73.1", null, "1.4", null, "19.9", null, "1.0", null, "17.6", null, "0.9", null, "14.0", null, "0.8", null, "5.8", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "48", "12"], ["5001900US4813", "Congressional District 13 (119th Congress), Texas", "799858", null, "8831", null, "46883", null, "2978", null, "50809", null, "3822", null, "53296", null, "3885", null, "68193", null, "3782", null, "57899", null, "4064", null, "58765", null, "4075", null, "55535", null, "3494", null, "53092", null, "4535", null, "54499", null, "4058", null, "50019", null, "3479", null, "41819", null, "3133", null, "38913", null, "2851", null, "44297", null, "3087", null, "41619", null, "2802", null, "33400", null, "2102", null, "22645", null, "2329", null, "14534", null, "1894", null, "13641", null, "1653", null, "104105", null, "3704", null, "38756", null, "2432", null, "189744", null, "5134", null, "87336", null, "3862", null, "347983", null, "7035", null, "635546", null, "7207", null, "610114", null, "6955", null, "567863", null, "7567", null, "170136", null, "4279", null, "153320", null, "3943", null, "125839", null, "3330", null, "50820", null, "2725", null, "35.8", null, "0.5", null, "101.2", null, "2.5", null, "65.2", null, "1.5", null, "26.0", null, "0.9", null, "39.2", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.9", null, "0.4", null, "6.4", null, "0.5", null, "6.7", null, "0.5", null, "8.5", null, "0.5", null, "7.2", null, "0.5", null, "7.3", null, "0.5", null, "6.9", null, "0.4", null, "6.6", null, "0.6", null, "6.8", null, "0.5", null, "6.3", null, "0.4", null, "5.2", null, "0.4", null, "4.9", null, "0.4", null, "5.5", null, "0.4", null, "5.2", null, "0.3", null, "4.2", null, "0.3", null, "2.8", null, "0.3", null, "1.8", null, "0.2", null, "1.7", null, "0.2", null, "13.0", null, "0.4", null, "4.8", null, "0.3", null, "23.7", null, "0.5", null, "10.9", null, "0.5", null, "43.5", null, "0.7", null, "79.5", null, "0.6", null, "76.3", null, "0.5", null, "71.0", null, "0.7", null, "21.3", null, "0.5", null, "19.2", null, "0.5", null, "15.7", null, "0.4", null, "6.4", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.3", null, "-888888888.0", "(X)", "402397", null, "6416", null, "23694", null, "2547", null, "26017", null, "3005", null, "28502", null, "2837", null, "34433", null, "2816", null, "29994", null, "3135", null, "30505", null, "2648", null, "28842", null, "2208", null, "27068", null, "2849", null, "27747", null, "2440", null, "24971", null, "2071", null, "22622", null, "1995", null, "19406", null, "2006", null, "21802", null, "1960", null, "20391", null, "1835", null, "15774", null, "1611", null, "10779", null, "1394", null, "5968", null, "1278", null, "3882", null, "885", null, "54519", null, "2468", null, "20598", null, "1991", null, "98811", null, "3644", null, "43829", null, "2849", null, "178589", null, "4774", null, "316579", null, "5173", null, "303586", null, "4837", null, "284150", null, "5178", null, "78596", null, "2790", null, "70155", null, "2727", null, "56794", null, "2061", null, "20629", null, "1546", null, "34.8", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.9", null, "0.6", null, "6.5", null, "0.7", null, "7.1", null, "0.7", null, "8.6", null, "0.7", null, "7.5", null, "0.8", null, "7.6", null, "0.6", null, "7.2", null, "0.5", null, "6.7", null, "0.7", null, "6.9", null, "0.6", null, "6.2", null, "0.5", null, "5.6", null, "0.5", null, "4.8", null, "0.5", null, "5.4", null, "0.5", null, "5.1", null, "0.4", null, "3.9", null, "0.4", null, "2.7", null, "0.3", null, "1.5", null, "0.3", null, "1.0", null, "0.2", null, "13.5", null, "0.6", null, "5.1", null, "0.5", null, "24.6", null, "0.7", null, "10.9", null, "0.7", null, "44.4", null, "0.9", null, "78.7", null, "0.7", null, "75.4", null, "0.7", null, "70.6", null, "0.9", null, "19.5", null, "0.6", null, "17.4", null, "0.7", null, "14.1", null, "0.5", null, "5.1", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "397461", null, "6840", null, "23189", null, "2557", null, "24792", null, "2260", null, "24794", null, "2442", null, "33760", null, "3235", null, "27905", null, "2514", null, "28260", null, "2499", null, "26693", null, "2033", null, "26024", null, "2734", null, "26752", null, "2714", null, "25048", null, "2643", null, "19197", null, "1766", null, "19507", null, "1731", null, "22495", null, "1963", null, "21228", null, "1876", null, "17626", null, "1666", null, "11866", null, "1425", null, "8566", null, "1207", null, "9759", null, "1339", null, "49586", null, "2661", null, "18158", null, "2433", null, "90933", null, "4369", null, "43507", null, "2827", null, "169394", null, "5055", null, "318967", null, "5001", null, "306528", null, "4950", null, "283713", null, "4640", null, "91540", null, "2906", null, "83165", null, "2623", null, "69045", null, "2218", null, "30191", null, "1643", null, "36.6", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.8", null, "0.6", null, "6.2", null, "0.5", null, "6.2", null, "0.6", null, "8.5", null, "0.8", null, "7.0", null, "0.6", null, "7.1", null, "0.6", null, "6.7", null, "0.5", null, "6.5", null, "0.7", null, "6.7", null, "0.7", null, "6.3", null, "0.7", null, "4.8", null, "0.5", null, "4.9", null, "0.4", null, "5.7", null, "0.5", null, "5.3", null, "0.5", null, "4.4", null, "0.4", null, "3.0", null, "0.4", null, "2.2", null, "0.3", null, "2.5", null, "0.3", null, "12.5", null, "0.6", null, "4.6", null, "0.6", null, "22.9", null, "0.9", null, "10.9", null, "0.7", null, "42.6", null, "0.9", null, "80.3", null, "0.8", null, "77.1", null, "0.9", null, "71.4", null, "1.0", null, "23.0", null, "0.7", null, "20.9", null, "0.7", null, "17.4", null, "0.6", null, "7.6", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "48", "13"], ["5001900US4814", "Congressional District 14 (119th Congress), Texas", "787873", null, "10217", null, "44986", null, "2661", null, "46342", null, "3861", null, "58711", null, "3528", null, "56224", null, "2642", null, "49121", null, "2839", null, "44875", null, "2670", null, "51307", null, "2858", null, "52145", null, "4820", null, "59098", null, "3945", null, "50064", null, "2688", null, "48873", null, "2294", null, "47511", null, "3319", null, "49516", null, "3242", null, "47293", null, "2752", null, "32740", null, "2373", null, "23642", null, "1865", null, "15349", null, "1629", null, "10076", null, "1572", null, "105053", null, "3917", null, "37308", null, "1581", null, "187347", null, "5087", null, "68037", null, "2981", null, "312770", null, "5888", null, "622933", null, "8217", null, "600526", null, "7609", null, "571909", null, "7784", null, "178616", null, "3969", null, "159407", null, "3702", null, "129100", null, "2467", null, "49067", null, "1997", null, "39.1", null, "0.5", null, "102.7", null, "1.8", null, "67.1", null, "1.2", null, "27.4", null, "0.6", null, "39.7", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.7", null, "0.3", null, "5.9", null, "0.5", null, "7.5", null, "0.4", null, "7.1", null, "0.3", null, "6.2", null, "0.4", null, "5.7", null, "0.3", null, "6.5", null, "0.3", null, "6.6", null, "0.6", null, "7.5", null, "0.5", null, "6.4", null, "0.3", null, "6.2", null, "0.3", null, "6.0", null, "0.4", null, "6.3", null, "0.4", null, "6.0", null, "0.3", null, "4.2", null, "0.3", null, "3.0", null, "0.2", null, "1.9", null, "0.2", null, "1.3", null, "0.2", null, "13.3", null, "0.4", null, "4.7", null, "0.2", null, "23.8", null, "0.5", null, "8.6", null, "0.4", null, "39.7", null, "0.5", null, "79.1", null, "0.5", null, "76.2", null, "0.5", null, "72.6", null, "0.6", null, "22.7", null, "0.5", null, "20.2", null, "0.5", null, "16.4", null, "0.3", null, "6.2", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.0", null, "-888888888.0", "(X)", "399187", null, "6799", null, "21853", null, "2058", null, "24203", null, "2788", null, "30237", null, "2390", null, "28962", null, "2009", null, "25156", null, "2085", null, "23204", null, "2152", null, "27712", null, "2067", null, "26389", null, "3135", null, "31583", null, "3336", null, "27136", null, "2038", null, "24303", null, "1585", null, "25392", null, "2301", null, "23220", null, "2000", null, "24026", null, "1786", null, "14711", null, "1646", null, "10768", null, "1190", null, "6801", null, "1145", null, "3531", null, "735", null, "54440", null, "2422", null, "19525", null, "1374", null, "95818", null, "3929", null, "34593", null, "2191", null, "163006", null, "4338", null, "315109", null, "5283", null, "303369", null, "4965", null, "288704", null, "5047", null, "83057", null, "2438", null, "73528", null, "2392", null, "59837", null, "1640", null, "21100", null, "1210", null, "38.3", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.5", null, "6.1", null, "0.7", null, "7.6", null, "0.6", null, "7.3", null, "0.5", null, "6.3", null, "0.5", null, "5.8", null, "0.5", null, "6.9", null, "0.5", null, "6.6", null, "0.8", null, "7.9", null, "0.8", null, "6.8", null, "0.5", null, "6.1", null, "0.4", null, "6.4", null, "0.6", null, "5.8", null, "0.5", null, "6.0", null, "0.4", null, "3.7", null, "0.4", null, "2.7", null, "0.3", null, "1.7", null, "0.3", null, "0.9", null, "0.2", null, "13.6", null, "0.5", null, "4.9", null, "0.3", null, "24.0", null, "0.8", null, "8.7", null, "0.5", null, "40.8", null, "0.8", null, "78.9", null, "0.8", null, "76.0", null, "0.8", null, "72.3", null, "0.9", null, "20.8", null, "0.6", null, "18.4", null, "0.6", null, "15.0", null, "0.4", null, "5.3", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "388686", null, "5531", null, "23133", null, "2003", null, "22139", null, "2792", null, "28474", null, "2907", null, "27262", null, "2174", null, "23965", null, "2068", null, "21671", null, "1404", null, "23595", null, "1738", null, "25756", null, "2746", null, "27515", null, "2868", null, "22928", null, "1740", null, "24570", null, "1177", null, "22119", null, "1984", null, "26296", null, "2250", null, "23267", null, "1943", null, "18029", null, "1579", null, "12874", null, "1265", null, "8548", null, "1184", null, "6545", null, "1365", null, "50613", null, "2713", null, "17783", null, "1439", null, "91529", null, "3465", null, "33444", null, "2199", null, "149764", null, "3819", null, "307824", null, "4306", null, "297157", null, "3854", null, "283205", null, "4066", null, "95559", null, "2484", null, "85879", null, "2437", null, "69263", null, "1605", null, "27967", null, "1233", null, "39.7", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.0", null, "0.5", null, "5.7", null, "0.7", null, "7.3", null, "0.7", null, "7.0", null, "0.5", null, "6.2", null, "0.5", null, "5.6", null, "0.4", null, "6.1", null, "0.4", null, "6.6", null, "0.7", null, "7.1", null, "0.7", null, "5.9", null, "0.5", null, "6.3", null, "0.3", null, "5.7", null, "0.5", null, "6.8", null, "0.6", null, "6.0", null, "0.5", null, "4.6", null, "0.4", null, "3.3", null, "0.3", null, "2.2", null, "0.3", null, "1.7", null, "0.3", null, "13.0", null, "0.6", null, "4.6", null, "0.4", null, "23.5", null, "0.7", null, "8.6", null, "0.6", null, "38.5", null, "0.7", null, "79.2", null, "0.8", null, "76.5", null, "0.7", null, "72.9", null, "0.8", null, "24.6", null, "0.7", null, "22.1", null, "0.7", null, "17.8", null, "0.4", null, "7.2", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "48", "14"], ["5001900US4815", "Congressional District 15 (119th Congress), Texas", "812527", null, "14195", null, "58680", null, "3893", null, "63635", null, "4233", null, "72719", null, "5254", null, "60995", null, "3317", null, "56806", null, "3739", null, "58394", null, "4175", null, "58055", null, "3909", null, "53558", null, "3997", null, "49514", null, "3505", null, "48175", null, "3117", null, "46509", null, "3113", null, "40161", null, "3461", null, "38647", null, "3293", null, "32502", null, "2664", null, "27138", null, "2719", null, "23256", null, "1981", null, "12963", null, "1556", null, "10820", null, "1500", null, "136354", null, "5706", null, "38189", null, "2306", null, "233223", null, "7777", null, "79612", null, "4353", null, "337322", null, "8287", null, "604703", null, "9950", null, "579304", null, "9593", null, "544812", null, "8701", null, "145326", null, "5467", null, "129376", null, "4825", null, "106679", null, "4060", null, "47039", null, "2756", null, "33.2", null, "0.5", null, "99.7", null, "2.2", null, "71.9", null, "1.7", null, "22.6", null, "1.0", null, "49.3", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "7.2", null, "0.4", null, "7.8", null, "0.5", null, "8.9", null, "0.6", null, "7.5", null, "0.4", null, "7.0", null, "0.4", null, "7.2", null, "0.5", null, "7.1", null, "0.5", null, "6.6", null, "0.5", null, "6.1", null, "0.4", null, "5.9", null, "0.4", null, "5.7", null, "0.4", null, "4.9", null, "0.4", null, "4.8", null, "0.4", null, "4.0", null, "0.3", null, "3.3", null, "0.3", null, "2.9", null, "0.3", null, "1.6", null, "0.2", null, "1.3", null, "0.2", null, "16.8", null, "0.6", null, "4.7", null, "0.3", null, "28.7", null, "0.7", null, "9.8", null, "0.5", null, "41.5", null, "0.6", null, "74.4", null, "0.7", null, "71.3", null, "0.7", null, "67.1", null, "0.6", null, "17.9", null, "0.7", null, "15.9", null, "0.6", null, "13.1", null, "0.5", null, "5.8", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.0", null, "-888888888.0", "(X)", "405683", null, "7875", null, "31981", null, "2609", null, "33715", null, "3001", null, "34219", null, "3467", null, "31380", null, "2390", null, "29209", null, "2438", null, "28731", null, "2770", null, "30141", null, "2406", null, "27707", null, "2630", null, "25214", null, "2638", null, "23955", null, "2044", null, "24019", null, "1902", null, "17537", null, "1789", null, "19917", null, "2095", null, "14374", null, "1603", null, "13056", null, "1694", null, "10636", null, "1400", null, "5901", null, "1036", null, "3991", null, "911", null, "67934", null, "3338", null, "19489", null, "1738", null, "119404", null, "4759", null, "41100", null, "2724", null, "172382", null, "4813", null, "298576", null, "5399", null, "286279", null, "5450", null, "268295", null, "5118", null, "67875", null, "2964", null, "59240", null, "2827", null, "47958", null, "2390", null, "20528", null, "1472", null, "32.5", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "7.9", null, "0.6", null, "8.3", null, "0.7", null, "8.4", null, "0.8", null, "7.7", null, "0.6", null, "7.2", null, "0.6", null, "7.1", null, "0.6", null, "7.4", null, "0.6", null, "6.8", null, "0.7", null, "6.2", null, "0.6", null, "5.9", null, "0.5", null, "5.9", null, "0.5", null, "4.3", null, "0.5", null, "4.9", null, "0.5", null, "3.5", null, "0.4", null, "3.2", null, "0.4", null, "2.6", null, "0.3", null, "1.5", null, "0.3", null, "1.0", null, "0.2", null, "16.7", null, "0.7", null, "4.8", null, "0.4", null, "29.4", null, "0.8", null, "10.1", null, "0.6", null, "42.5", null, "0.8", null, "73.6", null, "0.8", null, "70.6", null, "0.8", null, "66.1", null, "0.9", null, "16.7", null, "0.8", null, "14.6", null, "0.7", null, "11.8", null, "0.6", null, "5.1", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "406844", null, "8792", null, "26699", null, "2645", null, "29920", null, "3148", null, "38500", null, "3575", null, "29615", null, "2463", null, "27597", null, "2604", null, "29663", null, "2375", null, "27914", null, "2095", null, "25851", null, "2521", null, "24300", null, "2035", null, "24220", null, "1818", null, "22490", null, "1830", null, "22624", null, "2409", null, "18730", null, "2226", null, "18128", null, "1658", null, "14082", null, "1799", null, "12620", null, "1240", null, "7062", null, "1143", null, "6829", null, "1030", null, "68420", null, "3618", null, "18700", null, "1802", null, "113819", null, "5004", null, "38512", null, "2755", null, "164940", null, "5390", null, "306127", null, "6624", null, "293025", null, "6013", null, "276517", null, "5804", null, "77451", null, "3635", null, "70136", null, "3368", null, "58721", null, "2504", null, "26511", null, "1878", null, "33.8", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.6", null, "0.6", null, "7.4", null, "0.7", null, "9.5", null, "0.8", null, "7.3", null, "0.6", null, "6.8", null, "0.6", null, "7.3", null, "0.6", null, "6.9", null, "0.5", null, "6.4", null, "0.6", null, "6.0", null, "0.5", null, "6.0", null, "0.4", null, "5.5", null, "0.5", null, "5.6", null, "0.6", null, "4.6", null, "0.5", null, "4.5", null, "0.4", null, "3.5", null, "0.4", null, "3.1", null, "0.3", null, "1.7", null, "0.3", null, "1.7", null, "0.3", null, "16.8", null, "0.8", null, "4.6", null, "0.4", null, "28.0", null, "0.9", null, "9.5", null, "0.6", null, "40.5", null, "0.8", null, "75.2", null, "0.9", null, "72.0", null, "0.9", null, "68.0", null, "0.9", null, "19.0", null, "0.9", null, "17.2", null, "0.8", null, "14.4", null, "0.7", null, "6.5", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "48", "15"], ["5001900US4816", "Congressional District 16 (119th Congress), Texas", "784072", null, "8007", null, "46265", null, "2203", null, "47367", null, "4179", null, "65342", null, "4464", null, "59811", null, "1902", null, "61652", null, "1773", null, "60142", null, "2050", null, "59132", null, "2253", null, "50676", null, "3827", null, "55796", null, "4058", null, "44755", null, "1935", null, "44720", null, "1241", null, "37642", null, "2882", null, "41785", null, "2988", null, "34852", null, "2818", null, "28174", null, "2303", null, "20224", null, "1906", null, "12862", null, "1531", null, "12875", null, "1713", null, "112709", null, "2678", null, "36078", null, "1367", null, "195052", null, "3705", null, "85385", null, "2128", null, "347209", null, "4345", null, "614382", null, "6128", null, "589020", null, "5897", null, "551819", null, "6024", null, "150772", null, "3594", null, "134386", null, "3299", null, "108987", null, "1857", null, "45961", null, "1245", null, "34.4", null, "0.3", null, "99.8", null, "1.5", null, "63.3", null, "0.7", null, "22.7", null, "0.4", null, "40.6", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.9", null, "0.3", null, "6.0", null, "0.5", null, "8.3", null, "0.6", null, "7.6", null, "0.2", null, "7.9", null, "0.2", null, "7.7", null, "0.3", null, "7.5", null, "0.3", null, "6.5", null, "0.5", null, "7.1", null, "0.5", null, "5.7", null, "0.2", null, "5.7", null, "0.2", null, "4.8", null, "0.4", null, "5.3", null, "0.4", null, "4.4", null, "0.4", null, "3.6", null, "0.3", null, "2.6", null, "0.2", null, "1.6", null, "0.2", null, "1.6", null, "0.2", null, "14.4", null, "0.3", null, "4.6", null, "0.2", null, "24.9", null, "0.3", null, "10.9", null, "0.3", null, "44.3", null, "0.3", null, "78.4", null, "0.4", null, "75.1", null, "0.3", null, "70.4", null, "0.5", null, "19.2", null, "0.5", null, "17.1", null, "0.4", null, "13.9", null, "0.2", null, "5.9", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.5", null, "-888888888.0", "(X)", "391740", null, "5280", null, "22958", null, "1643", null, "24355", null, "3320", null, "35021", null, "3397", null, "31816", null, "1468", null, "32612", null, "1355", null, "32259", null, "1565", null, "30145", null, "1647", null, "24121", null, "2410", null, "31057", null, "2484", null, "21891", null, "1498", null, "21285", null, "969", null, "18111", null, "1821", null, "19418", null, "1700", null, "16216", null, "1634", null, "11870", null, "1363", null, "8532", null, "1021", null, "4974", null, "945", null, "5099", null, "1185", null, "59376", null, "1312", null, "18587", null, "1125", null, "100921", null, "2492", null, "45841", null, "1600", null, "182010", null, "3094", null, "303644", null, "4327", null, "290819", null, "4229", null, "271707", null, "4176", null, "66109", null, "2036", null, "58067", null, "1909", null, "46691", null, "1056", null, "18605", null, "916", null, "32.8", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.9", null, "0.4", null, "6.2", null, "0.8", null, "8.9", null, "0.9", null, "8.1", null, "0.3", null, "8.3", null, "0.3", null, "8.2", null, "0.4", null, "7.7", null, "0.4", null, "6.2", null, "0.6", null, "7.9", null, "0.6", null, "5.6", null, "0.4", null, "5.4", null, "0.3", null, "4.6", null, "0.4", null, "5.0", null, "0.5", null, "4.1", null, "0.4", null, "3.0", null, "0.3", null, "2.2", null, "0.3", null, "1.3", null, "0.2", null, "1.3", null, "0.3", null, "15.2", null, "0.3", null, "4.7", null, "0.3", null, "25.8", null, "0.5", null, "11.7", null, "0.4", null, "46.5", null, "0.4", null, "77.5", null, "0.5", null, "74.2", null, "0.5", null, "69.4", null, "0.6", null, "16.9", null, "0.6", null, "14.8", null, "0.5", null, "11.9", null, "0.3", null, "4.7", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "392332", null, "4670", null, "23307", null, "1453", null, "23012", null, "2543", null, "30321", null, "2911", null, "27995", null, "1314", null, "29040", null, "1294", null, "27883", null, "1237", null, "28987", null, "1080", null, "26555", null, "2596", null, "24739", null, "2642", null, "22864", null, "1200", null, "23435", null, "907", null, "19531", null, "1705", null, "22367", null, "1906", null, "18636", null, "1842", null, "16304", null, "1801", null, "11692", null, "1462", null, "7888", null, "1257", null, "7776", null, "984", null, "53333", null, "2114", null, "17491", null, "734", null, "94131", null, "2924", null, "39544", null, "1512", null, "165199", null, "2518", null, "310738", null, "3208", null, "298201", null, "2792", null, "280112", null, "3120", null, "84663", null, "2228", null, "76319", null, "2206", null, "62296", null, "1260", null, "27356", null, "799", null, "36.1", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.9", null, "0.3", null, "5.9", null, "0.6", null, "7.7", null, "0.7", null, "7.1", null, "0.3", null, "7.4", null, "0.3", null, "7.1", null, "0.3", null, "7.4", null, "0.3", null, "6.8", null, "0.7", null, "6.3", null, "0.6", null, "5.8", null, "0.3", null, "6.0", null, "0.2", null, "5.0", null, "0.4", null, "5.7", null, "0.5", null, "4.8", null, "0.5", null, "4.2", null, "0.5", null, "3.0", null, "0.4", null, "2.0", null, "0.3", null, "2.0", null, "0.3", null, "13.6", null, "0.4", null, "4.5", null, "0.2", null, "24.0", null, "0.5", null, "10.1", null, "0.4", null, "42.1", null, "0.4", null, "79.2", null, "0.6", null, "76.0", null, "0.5", null, "71.4", null, "0.7", null, "21.6", null, "0.6", null, "19.5", null, "0.6", null, "15.9", null, "0.4", null, "7.0", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "48", "16"], ["5001900US4817", "Congressional District 17 (119th Congress), Texas", "798340", null, "11073", null, "43643", null, "2528", null, "46630", null, "3665", null, "53100", null, "4225", null, "61332", null, "3916", null, "66434", null, "3488", null, "54601", null, "4031", null, "57427", null, "4217", null, "49158", null, "3681", null, "54039", null, "4496", null, "45098", null, "3697", null, "49535", null, "3794", null, "46154", null, "3244", null, "45522", null, "2601", null, "39896", null, "2605", null, "34740", null, "2843", null, "24202", null, "2016", null, "15708", null, "1522", null, "11121", null, "1496", null, "99730", null, "3902", null, "30689", null, "2454", null, "174062", null, "5288", null, "97077", null, "3853", null, "342991", null, "7943", null, "643849", null, "9341", null, "624278", null, "8615", null, "578921", null, "8389", null, "171189", null, "3789", null, "152147", null, "3438", null, "125667", null, "2789", null, "51031", null, "1546", null, "36.7", null, "0.5", null, "101.1", null, "2.5", null, "60.1", null, "1.5", null, "25.2", null, "0.8", null, "34.9", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.3", null, "5.8", null, "0.5", null, "6.7", null, "0.5", null, "7.7", null, "0.5", null, "8.3", null, "0.4", null, "6.8", null, "0.5", null, "7.2", null, "0.5", null, "6.2", null, "0.5", null, "6.8", null, "0.5", null, "5.6", null, "0.5", null, "6.2", null, "0.5", null, "5.8", null, "0.4", null, "5.7", null, "0.3", null, "5.0", null, "0.3", null, "4.4", null, "0.4", null, "3.0", null, "0.3", null, "2.0", null, "0.2", null, "1.4", null, "0.2", null, "12.5", null, "0.4", null, "3.8", null, "0.3", null, "21.8", null, "0.5", null, "12.2", null, "0.5", null, "43.0", null, "0.7", null, "80.6", null, "0.5", null, "78.2", null, "0.5", null, "72.5", null, "0.7", null, "21.4", null, "0.5", null, "19.1", null, "0.5", null, "15.7", null, "0.4", null, "6.4", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "0.9", null, "-888888888.0", "(X)", "401405", null, "7233", null, "21074", null, "2309", null, "23552", null, "2939", null, "27884", null, "3142", null, "32469", null, "3113", null, "34615", null, "2764", null, "27418", null, "2462", null, "30539", null, "2850", null, "26324", null, "2885", null, "26413", null, "2976", null, "22746", null, "2463", null, "26401", null, "2470", null, "22682", null, "2430", null, "22653", null, "1972", null, "18166", null, "1578", null, "16892", null, "1758", null, "9949", null, "1135", null, "6899", null, "1072", null, "4729", null, "906", null, "51436", null, "2708", null, "18310", null, "1917", null, "90820", null, "3958", null, "48774", null, "3057", null, "177778", null, "5266", null, "322456", null, "6096", null, "310585", null, "5367", null, "288283", null, "4951", null, "79288", null, "2413", null, "69598", null, "2303", null, "56635", null, "1534", null, "21577", null, "1001", null, "35.7", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.3", null, "0.6", null, "5.9", null, "0.7", null, "6.9", null, "0.8", null, "8.1", null, "0.7", null, "8.6", null, "0.7", null, "6.8", null, "0.6", null, "7.6", null, "0.7", null, "6.6", null, "0.7", null, "6.6", null, "0.7", null, "5.7", null, "0.6", null, "6.6", null, "0.6", null, "5.7", null, "0.6", null, "5.6", null, "0.5", null, "4.5", null, "0.4", null, "4.2", null, "0.4", null, "2.5", null, "0.3", null, "1.7", null, "0.3", null, "1.2", null, "0.2", null, "12.8", null, "0.6", null, "4.6", null, "0.4", null, "22.6", null, "0.8", null, "12.2", null, "0.7", null, "44.3", null, "0.9", null, "80.3", null, "0.7", null, "77.4", null, "0.8", null, "71.8", null, "1.0", null, "19.8", null, "0.7", null, "17.3", null, "0.6", null, "14.1", null, "0.4", null, "5.4", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "396935", null, "7651", null, "22569", null, "2224", null, "23078", null, "2607", null, "25216", null, "2723", null, "28863", null, "2674", null, "31819", null, "2480", null, "27183", null, "2642", null, "26888", null, "2229", null, "22834", null, "2314", null, "27626", null, "2729", null, "22352", null, "2291", null, "23134", null, "2337", null, "23472", null, "1993", null, "22869", null, "1637", null, "21730", null, "1675", null, "17848", null, "1834", null, "14253", null, "1542", null, "8809", null, "1120", null, "6392", null, "1091", null, "48294", null, "3225", null, "12379", null, "1687", null, "83242", null, "4645", null, "48303", null, "2939", null, "165213", null, "5153", null, "321393", null, "5322", null, "313693", null, "4936", null, "290638", null, "5211", null, "91901", null, "2328", null, "82549", null, "2076", null, "69032", null, "1746", null, "29454", null, "1174", null, "37.9", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.7", null, "0.5", null, "5.8", null, "0.6", null, "6.4", null, "0.6", null, "7.3", null, "0.6", null, "8.0", null, "0.6", null, "6.8", null, "0.6", null, "6.8", null, "0.5", null, "5.8", null, "0.6", null, "7.0", null, "0.7", null, "5.6", null, "0.6", null, "5.8", null, "0.6", null, "5.9", null, "0.5", null, "5.8", null, "0.4", null, "5.5", null, "0.4", null, "4.5", null, "0.5", null, "3.6", null, "0.4", null, "2.2", null, "0.3", null, "1.6", null, "0.3", null, "12.2", null, "0.7", null, "3.1", null, "0.4", null, "21.0", null, "0.9", null, "12.2", null, "0.7", null, "41.6", null, "1.0", null, "81.0", null, "0.9", null, "79.0", null, "0.9", null, "73.2", null, "1.1", null, "23.2", null, "0.7", null, "20.8", null, "0.6", null, "17.4", null, "0.5", null, "7.4", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "48", "17"], ["5001900US4818", "Congressional District 18 (119th Congress), Texas", "825192", null, "31319", null, "59886", null, "7713", null, "58506", null, "7146", null, "47164", null, "6344", null, "62513", null, "6187", null, "67292", null, "5865", null, "71422", null, "6145", null, "70891", null, "6308", null, "63239", null, "6630", null, "58595", null, "6158", null, "49722", null, "4823", null, "50200", null, "5408", null, "37552", null, "3766", null, "42384", null, "4907", null, "32334", null, "3603", null, "23871", null, "3440", null, "13384", null, "2039", null, "8865", null, "1962", null, "7372", null, "1350", null, "105670", null, "9751", null, "36818", null, "4877", null, "202374", null, "16797", null, "92987", null, "6736", null, "393952", null, "18484", null, "647473", null, "22500", null, "622818", null, "21004", null, "581765", null, "19713", null, "128210", null, "7282", null, "111844", null, "6593", null, "85826", null, "5959", null, "29621", null, "3141", null, "33.2", null, "0.7", null, "99.2", null, "4.2", null, "53.7", null, "3.2", null, "16.0", null, "1.2", null, "37.7", null, "2.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "7.3", null, "0.8", null, "7.1", null, "0.8", null, "5.7", null, "0.7", null, "7.6", null, "0.6", null, "8.2", null, "0.6", null, "8.7", null, "0.7", null, "8.6", null, "0.7", null, "7.7", null, "0.7", null, "7.1", null, "0.7", null, "6.0", null, "0.5", null, "6.1", null, "0.7", null, "4.6", null, "0.5", null, "5.1", null, "0.6", null, "3.9", null, "0.4", null, "2.9", null, "0.4", null, "1.6", null, "0.3", null, "1.1", null, "0.2", null, "0.9", null, "0.2", null, "12.8", null, "0.9", null, "4.5", null, "0.5", null, "24.5", null, "1.4", null, "11.3", null, "0.7", null, "47.7", null, "1.2", null, "78.5", null, "1.4", null, "75.5", null, "1.4", null, "70.5", null, "1.4", null, "15.5", null, "1.0", null, "13.6", null, "0.8", null, "10.4", null, "0.7", null, "3.6", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.7", null, "-888888888.0", "(X)", "410861", null, "18497", null, "27687", null, "4654", null, "27925", null, "4699", null, "24077", null, "3946", null, "35189", null, "5005", null, "33613", null, "4012", null, "31306", null, "3750", null, "37903", null, "4149", null, "32747", null, "3885", null, "32462", null, "4487", null, "25845", null, "3338", null, "27294", null, "3838", null, "17969", null, "2425", null, "20279", null, "3036", null, "14020", null, "2076", null, "10708", null, "1880", null, "5799", null, "1268", null, "3239", null, "1132", null, "2799", null, "992", null, "52002", null, "6379", null, "20989", null, "4000", null, "100678", null, "10706", null, "47813", null, "5260", null, "203220", null, "11420", null, "323410", null, "13725", null, "310183", null, "13130", null, "288297", null, "12081", null, "56844", null, "4563", null, "48881", null, "4078", null, "36565", null, "3460", null, "11837", null, "1777", null, "33.4", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.7", null, "1.0", null, "6.8", null, "1.0", null, "5.9", null, "0.9", null, "8.6", null, "1.1", null, "8.2", null, "0.8", null, "7.6", null, "0.9", null, "9.2", null, "1.0", null, "8.0", null, "1.0", null, "7.9", null, "1.0", null, "6.3", null, "0.8", null, "6.6", null, "0.9", null, "4.4", null, "0.6", null, "4.9", null, "0.8", null, "3.4", null, "0.5", null, "2.6", null, "0.5", null, "1.4", null, "0.3", null, "0.8", null, "0.3", null, "0.7", null, "0.2", null, "12.7", null, "1.3", null, "5.1", null, "0.9", null, "24.5", null, "2.0", null, "11.6", null, "1.1", null, "49.5", null, "1.7", null, "78.7", null, "1.9", null, "75.5", null, "2.0", null, "70.2", null, "2.0", null, "13.8", null, "1.2", null, "11.9", null, "1.1", null, "8.9", null, "0.9", null, "2.9", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "414331", null, "17345", null, "32199", null, "5357", null, "30581", null, "4251", null, "23087", null, "4342", null, "27324", null, "3857", null, "33679", null, "3827", null, "40116", null, "4305", null, "32988", null, "3873", null, "30492", null, "4712", null, "26133", null, "3234", null, "23877", null, "3594", null, "22906", null, "2945", null, "19583", null, "2896", null, "22105", null, "2961", null, "18314", null, "2575", null, "13163", null, "2225", null, "7585", null, "1648", null, "5626", null, "1382", null, "4573", null, "917", null, "53668", null, "5947", null, "15829", null, "2963", null, "101696", null, "9311", null, "45174", null, "4319", null, "190732", null, "10498", null, "324063", null, "13250", null, "312635", null, "12501", null, "293468", null, "12250", null, "71366", null, "4468", null, "62963", null, "4305", null, "49261", null, "3781", null, "17784", null, "2375", null, "33.1", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "7.8", null, "1.2", null, "7.4", null, "1.0", null, "5.6", null, "1.0", null, "6.6", null, "0.9", null, "8.1", null, "0.9", null, "9.7", null, "0.9", null, "8.0", null, "0.9", null, "7.4", null, "1.0", null, "6.3", null, "0.7", null, "5.8", null, "0.8", null, "5.5", null, "0.8", null, "4.7", null, "0.7", null, "5.3", null, "0.7", null, "4.4", null, "0.6", null, "3.2", null, "0.5", null, "1.8", null, "0.4", null, "1.4", null, "0.3", null, "1.1", null, "0.2", null, "13.0", null, "1.2", null, "3.8", null, "0.7", null, "24.5", null, "1.7", null, "10.9", null, "1.0", null, "46.0", null, "1.4", null, "78.2", null, "1.7", null, "75.5", null, "1.7", null, "70.8", null, "1.8", null, "17.2", null, "1.1", null, "15.2", null, "1.0", null, "11.9", null, "0.9", null, "4.3", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "48", "18"], ["5001900US4819", "Congressional District 19 (119th Congress), Texas", "787118", null, "5934", null, "48556", null, "1803", null, "53340", null, "3443", null, "57179", null, "3780", null, "60481", null, "2594", null, "75742", null, "2710", null, "52424", null, "2224", null, "55292", null, "2513", null, "53608", null, "3828", null, "51809", null, "4113", null, "45426", null, "2528", null, "39791", null, "2326", null, "34900", null, "2255", null, "44211", null, "2541", null, "36232", null, "2124", null, "31421", null, "2361", null, "21485", null, "1955", null, "12610", null, "1421", null, "12611", null, "1300", null, "110519", null, "3448", null, "34241", null, "1793", null, "193316", null, "3104", null, "101982", null, "2826", null, "349356", null, "4343", null, "616424", null, "5060", null, "593802", null, "4526", null, "547702", null, "5623", null, "158570", null, "3365", null, "138073", null, "3277", null, "114359", null, "2204", null, "46706", null, "1500", null, "34.0", null, "0.4", null, "104.1", null, "1.5", null, "64.2", null, "0.9", null, "23.9", null, "0.5", null, "40.3", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.2", null, "0.2", null, "6.8", null, "0.4", null, "7.3", null, "0.5", null, "7.7", null, "0.3", null, "9.6", null, "0.3", null, "6.7", null, "0.3", null, "7.0", null, "0.3", null, "6.8", null, "0.5", null, "6.6", null, "0.5", null, "5.8", null, "0.3", null, "5.1", null, "0.3", null, "4.4", null, "0.3", null, "5.6", null, "0.3", null, "4.6", null, "0.3", null, "4.0", null, "0.3", null, "2.7", null, "0.2", null, "1.6", null, "0.2", null, "1.6", null, "0.2", null, "14.0", null, "0.4", null, "4.4", null, "0.2", null, "24.6", null, "0.3", null, "13.0", null, "0.3", null, "44.4", null, "0.5", null, "78.3", null, "0.3", null, "75.4", null, "0.3", null, "69.6", null, "0.6", null, "20.1", null, "0.4", null, "17.5", null, "0.4", null, "14.5", null, "0.3", null, "5.9", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.0", null, "-888888888.0", "(X)", "401438", null, "3987", null, "24337", null, "1498", null, "28273", null, "2448", null, "29345", null, "2426", null, "31863", null, "2074", null, "39451", null, "2048", null, "28657", null, "1594", null, "29029", null, "1658", null, "28776", null, "2532", null, "26775", null, "2200", null, "24414", null, "1742", null, "19607", null, "1326", null, "17241", null, "1493", null, "21950", null, "1508", null, "16669", null, "1227", null, "14746", null, "1404", null, "11486", null, "1122", null, "4871", null, "778", null, "3948", null, "722", null, "57618", null, "2373", null, "17863", null, "1432", null, "99818", null, "2989", null, "53451", null, "2080", null, "184551", null, "2998", null, "313223", null, "3145", null, "301620", null, "2711", null, "277535", null, "3170", null, "73670", null, "1623", null, "62861", null, "1858", null, "51720", null, "1325", null, "20305", null, "884", null, "33.2", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.1", null, "0.4", null, "7.0", null, "0.6", null, "7.3", null, "0.6", null, "7.9", null, "0.5", null, "9.8", null, "0.5", null, "7.1", null, "0.4", null, "7.2", null, "0.4", null, "7.2", null, "0.6", null, "6.7", null, "0.6", null, "6.1", null, "0.4", null, "4.9", null, "0.3", null, "4.3", null, "0.4", null, "5.5", null, "0.4", null, "4.2", null, "0.3", null, "3.7", null, "0.4", null, "2.9", null, "0.3", null, "1.2", null, "0.2", null, "1.0", null, "0.2", null, "14.4", null, "0.5", null, "4.4", null, "0.3", null, "24.9", null, "0.6", null, "13.3", null, "0.5", null, "46.0", null, "0.7", null, "78.0", null, "0.6", null, "75.1", null, "0.6", null, "69.1", null, "0.8", null, "18.4", null, "0.4", null, "15.7", null, "0.5", null, "12.9", null, "0.3", null, "5.1", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "385680", null, "4253", null, "24219", null, "1379", null, "25067", null, "2301", null, "27834", null, "2971", null, "28618", null, "2043", null, "36291", null, "1523", null, "23767", null, "1198", null, "26263", null, "1398", null, "24832", null, "2312", null, "25034", null, "2692", null, "21012", null, "1620", null, "20184", null, "1757", null, "17659", null, "1485", null, "22261", null, "1898", null, "19563", null, "1603", null, "16675", null, "1562", null, "9999", null, "1249", null, "7739", null, "1097", null, "8663", null, "1072", null, "52901", null, "2282", null, "16378", null, "1660", null, "93498", null, "2916", null, "48531", null, "1441", null, "164805", null, "2615", null, "303201", null, "3205", null, "292182", null, "2898", null, "270167", null, "3597", null, "84900", null, "2347", null, "75212", null, "2123", null, "62639", null, "1515", null, "26401", null, "1068", null, "35.1", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.3", null, "0.3", null, "6.5", null, "0.6", null, "7.2", null, "0.7", null, "7.4", null, "0.5", null, "9.4", null, "0.4", null, "6.2", null, "0.3", null, "6.8", null, "0.4", null, "6.4", null, "0.6", null, "6.5", null, "0.7", null, "5.4", null, "0.4", null, "5.2", null, "0.4", null, "4.6", null, "0.4", null, "5.8", null, "0.5", null, "5.1", null, "0.4", null, "4.3", null, "0.4", null, "2.6", null, "0.3", null, "2.0", null, "0.3", null, "2.2", null, "0.3", null, "13.7", null, "0.5", null, "4.2", null, "0.4", null, "24.2", null, "0.6", null, "12.6", null, "0.4", null, "42.7", null, "0.6", null, "78.6", null, "0.6", null, "75.8", null, "0.6", null, "70.0", null, "0.8", null, "22.0", null, "0.5", null, "19.5", null, "0.5", null, "16.2", null, "0.4", null, "6.8", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "48", "19"], ["5001900US4820", "Congressional District 20 (119th Congress), Texas", "766778", null, "26491", null, "48479", null, "5731", null, "54366", null, "6490", null, "47498", null, "5599", null, "55763", null, "5220", null, "65228", null, "6323", null, "63182", null, "4358", null, "58411", null, "5791", null, "59574", null, "6464", null, "59013", null, "6217", null, "49805", null, "5007", null, "39876", null, "3739", null, "35591", null, "3717", null, "37525", null, "4101", null, "32184", null, "3308", null, "23570", null, "2909", null, "17732", null, "2105", null, "8760", null, "1543", null, "10221", null, "1877", null, "101864", null, "8203", null, "34568", null, "3858", null, "184911", null, "12848", null, "86423", null, "7075", null, "361171", null, "16037", null, "604917", null, "19469", null, "581867", null, "18407", null, "548421", null, "17318", null, "129992", null, "7007", null, "115630", null, "6085", null, "92467", null, "4948", null, "36713", null, "2878", null, "34.1", null, "0.9", null, "94.3", null, "3.0", null, "56.7", null, "2.9", null, "18.9", null, "1.3", null, "37.8", null, "2.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.3", null, "0.7", null, "7.1", null, "0.8", null, "6.2", null, "0.7", null, "7.3", null, "0.6", null, "8.5", null, "0.8", null, "8.2", null, "0.6", null, "7.6", null, "0.7", null, "7.8", null, "0.8", null, "7.7", null, "0.7", null, "6.5", null, "0.6", null, "5.2", null, "0.5", null, "4.6", null, "0.5", null, "4.9", null, "0.5", null, "4.2", null, "0.4", null, "3.1", null, "0.4", null, "2.3", null, "0.3", null, "1.1", null, "0.2", null, "1.3", null, "0.3", null, "13.3", null, "0.9", null, "4.5", null, "0.5", null, "24.1", null, "1.2", null, "11.3", null, "0.9", null, "47.1", null, "1.1", null, "78.9", null, "1.1", null, "75.9", null, "1.2", null, "71.5", null, "1.2", null, "17.0", null, "1.0", null, "15.1", null, "0.8", null, "12.1", null, "0.7", null, "4.8", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.1", null, "-888888888.0", "(X)", "372220", null, "14841", null, "23175", null, "3843", null, "24791", null, "3678", null, "24307", null, "3901", null, "26686", null, "3633", null, "32761", null, "4171", null, "31436", null, "2787", null, "30084", null, "3830", null, "31376", null, "4447", null, "28212", null, "4370", null, "25643", null, "2896", null, "18250", null, "2419", null, "18465", null, "2615", null, "16246", null, "2950", null, "14755", null, "2152", null, "10183", null, "1443", null, "8325", null, "1217", null, "3269", null, "826", null, "4256", null, "1206", null, "49098", null, "5376", null, "16006", null, "2532", null, "88279", null, "7801", null, "43441", null, "4670", null, "180555", null, "9336", null, "295329", null, "10994", null, "283941", null, "10777", null, "267638", null, "10411", null, "57034", null, "4348", null, "50873", null, "3700", null, "40788", null, "2723", null, "15850", null, "1459", null, "33.8", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.2", null, "0.9", null, "6.7", null, "0.9", null, "6.5", null, "1.0", null, "7.2", null, "0.9", null, "8.8", null, "1.1", null, "8.4", null, "0.7", null, "8.1", null, "0.9", null, "8.4", null, "1.1", null, "7.6", null, "1.1", null, "6.9", null, "0.7", null, "4.9", null, "0.7", null, "5.0", null, "0.7", null, "4.4", null, "0.8", null, "4.0", null, "0.6", null, "2.7", null, "0.4", null, "2.2", null, "0.3", null, "0.9", null, "0.2", null, "1.1", null, "0.3", null, "13.2", null, "1.2", null, "4.3", null, "0.7", null, "23.7", null, "1.6", null, "11.7", null, "1.2", null, "48.5", null, "1.4", null, "79.3", null, "1.5", null, "76.3", null, "1.6", null, "71.9", null, "1.7", null, "15.3", null, "1.2", null, "13.7", null, "1.1", null, "11.0", null, "0.8", null, "4.3", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "394558", null, "14294", null, "25304", null, "3304", null, "29575", null, "5376", null, "23191", null, "3721", null, "29077", null, "3390", null, "32467", null, "3901", null, "31746", null, "2897", null, "28327", null, "3509", null, "28198", null, "3579", null, "30801", null, "3592", null, "24162", null, "3141", null, "21626", null, "2593", null, "17126", null, "2356", null, "21279", null, "2780", null, "17429", null, "1767", null, "13387", null, "2159", null, "9407", null, "1432", null, "5491", null, "1370", null, "5965", null, "1405", null, "52766", null, "5482", null, "18562", null, "2721", null, "96632", null, "7721", null, "42982", null, "4199", null, "180616", null, "9786", null, "309588", null, "11464", null, "297926", null, "10521", null, "280783", null, "10053", null, "72958", null, "4376", null, "64757", null, "3996", null, "51679", null, "3378", null, "20863", null, "2326", null, "34.6", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.4", null, "0.8", null, "7.5", null, "1.3", null, "5.9", null, "0.9", null, "7.4", null, "0.8", null, "8.2", null, "0.9", null, "8.0", null, "0.7", null, "7.2", null, "0.8", null, "7.1", null, "0.9", null, "7.8", null, "0.8", null, "6.1", null, "0.8", null, "5.5", null, "0.6", null, "4.3", null, "0.6", null, "5.4", null, "0.7", null, "4.4", null, "0.5", null, "3.4", null, "0.5", null, "2.4", null, "0.4", null, "1.4", null, "0.3", null, "1.5", null, "0.4", null, "13.4", null, "1.2", null, "4.7", null, "0.6", null, "24.5", null, "1.5", null, "10.9", null, "1.0", null, "45.8", null, "1.6", null, "78.5", null, "1.5", null, "75.5", null, "1.5", null, "71.2", null, "1.4", null, "18.5", null, "1.1", null, "16.4", null, "1.0", null, "13.1", null, "0.9", null, "5.3", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "48", "20"], ["5001900US4821", "Congressional District 21 (119th Congress), Texas", "846025", null, "21244", null, "41644", null, "4310", null, "48336", null, "4369", null, "48078", null, "4101", null, "47779", null, "3685", null, "50803", null, "5752", null, "55221", null, "5352", null, "51610", null, "4891", null, "54389", null, "5182", null, "65575", null, "5959", null, "52216", null, "4524", null, "54606", null, "4140", null, "52550", null, "4311", null, "50872", null, "3775", null, "53017", null, "3603", null, "48980", null, "3907", null, "36306", null, "3148", null, "18887", null, "1799", null, "15156", null, "2073", null, "96414", null, "6190", null, "31809", null, "3362", null, "169867", null, "9282", null, "66773", null, "6065", null, "325377", null, "12908", null, "699617", null, "16109", null, "676158", null, "15255", null, "650857", null, "14508", null, "223218", null, "5516", null, "203916", null, "5180", null, "172346", null, "4819", null, "70349", null, "2938", null, "41.9", null, "0.7", null, "98.6", null, "2.8", null, "67.9", null, "2.2", null, "34.2", null, "1.3", null, "33.7", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.9", null, "0.5", null, "5.7", null, "0.4", null, "5.7", null, "0.5", null, "5.6", null, "0.4", null, "6.0", null, "0.6", null, "6.5", null, "0.6", null, "6.1", null, "0.6", null, "6.4", null, "0.5", null, "7.8", null, "0.7", null, "6.2", null, "0.5", null, "6.5", null, "0.5", null, "6.2", null, "0.5", null, "6.0", null, "0.4", null, "6.3", null, "0.4", null, "5.8", null, "0.5", null, "4.3", null, "0.4", null, "2.2", null, "0.2", null, "1.8", null, "0.2", null, "11.4", null, "0.6", null, "3.8", null, "0.4", null, "20.1", null, "0.8", null, "7.9", null, "0.6", null, "38.5", null, "1.0", null, "82.7", null, "0.7", null, "79.9", null, "0.8", null, "76.9", null, "0.8", null, "26.4", null, "0.7", null, "24.1", null, "0.7", null, "20.4", null, "0.6", null, "8.3", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "0.8", null, "-888888888.0", "(X)", "420074", null, "11758", null, "20016", null, "3232", null, "25374", null, "3375", null, "25184", null, "2922", null, "23263", null, "2796", null, "26171", null, "3388", null, "29099", null, "3706", null, "28266", null, "3338", null, "29596", null, "3441", null, "34936", null, "4886", null, "23656", null, "2826", null, "28311", null, "2812", null, "24455", null, "2245", null, "23572", null, "2777", null, "24751", null, "2035", null, "22864", null, "2152", null, "16291", null, "1606", null, "8055", null, "1061", null, "6214", null, "1261", null, "50558", null, "4786", null, "15280", null, "2477", null, "85854", null, "6653", null, "34154", null, "3768", null, "171331", null, "7995", null, "345521", null, "8928", null, "334220", null, "8572", null, "322114", null, "8411", null, "101747", null, "3439", null, "92662", null, "3298", null, "78175", null, "2807", null, "30560", null, "1615", null, "40.4", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.8", null, "0.7", null, "6.0", null, "0.7", null, "6.0", null, "0.7", null, "5.5", null, "0.6", null, "6.2", null, "0.8", null, "6.9", null, "0.9", null, "6.7", null, "0.8", null, "7.0", null, "0.8", null, "8.3", null, "1.1", null, "5.6", null, "0.7", null, "6.7", null, "0.7", null, "5.8", null, "0.6", null, "5.6", null, "0.6", null, "5.9", null, "0.5", null, "5.4", null, "0.5", null, "3.9", null, "0.4", null, "1.9", null, "0.3", null, "1.5", null, "0.3", null, "12.0", null, "1.0", null, "3.6", null, "0.6", null, "20.4", null, "1.3", null, "8.1", null, "0.8", null, "40.8", null, "1.4", null, "82.3", null, "1.3", null, "79.6", null, "1.3", null, "76.7", null, "1.3", null, "24.2", null, "0.8", null, "22.1", null, "0.8", null, "18.6", null, "0.8", null, "7.3", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "425951", null, "12604", null, "21628", null, "2739", null, "22962", null, "3086", null, "22894", null, "2613", null, "24516", null, "2944", null, "24632", null, "3628", null, "26122", null, "3243", null, "23344", null, "2638", null, "24793", null, "3366", null, "30639", null, "2955", null, "28560", null, "3153", null, "26295", null, "2988", null, "28095", null, "3135", null, "27300", null, "2277", null, "28266", null, "2635", null, "26116", null, "2407", null, "20015", null, "2283", null, "10832", null, "1481", null, "8942", null, "1475", null, "45856", null, "3448", null, "16529", null, "2687", null, "84013", null, "5800", null, "32619", null, "3802", null, "154046", null, "7781", null, "354096", null, "10098", null, "341938", null, "9381", null, "328743", null, "8758", null, "121471", null, "3995", null, "111254", null, "3667", null, "94171", null, "3455", null, "39789", null, "2175", null, "43.4", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.1", null, "0.6", null, "5.4", null, "0.7", null, "5.4", null, "0.6", null, "5.8", null, "0.6", null, "5.8", null, "0.8", null, "6.1", null, "0.8", null, "5.5", null, "0.6", null, "5.8", null, "0.8", null, "7.2", null, "0.7", null, "6.7", null, "0.7", null, "6.2", null, "0.7", null, "6.6", null, "0.7", null, "6.4", null, "0.5", null, "6.6", null, "0.6", null, "6.1", null, "0.6", null, "4.7", null, "0.6", null, "2.5", null, "0.4", null, "2.1", null, "0.3", null, "10.8", null, "0.7", null, "3.9", null, "0.6", null, "19.7", null, "1.0", null, "7.7", null, "0.8", null, "36.2", null, "1.2", null, "83.1", null, "0.9", null, "80.3", null, "1.0", null, "77.2", null, "1.1", null, "28.5", null, "1.0", null, "26.1", null, "1.0", null, "22.1", null, "0.8", null, "9.3", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "48", "21"], ["5001900US4822", "Congressional District 22 (119th Congress), Texas", "894683", null, "20981", null, "52437", null, "4211", null, "66931", null, "5812", null, "68105", null, "6267", null, "68637", null, "4441", null, "52004", null, "4189", null, "45852", null, "4192", null, "54585", null, "4724", null, "64304", null, "6382", null, "75237", null, "6749", null, "69075", null, "4985", null, "63619", null, "4103", null, "50828", null, "4053", null, "42531", null, "4008", null, "44398", null, "3479", null, "29835", null, "3006", null, "24010", null, "2799", null, "12448", null, "1696", null, "9847", null, "1918", null, "135036", null, "7902", null, "45296", null, "3437", null, "232769", null, "9949", null, "75345", null, "5162", null, "360619", null, "12243", null, "691561", null, "15068", null, "661914", null, "14184", null, "628818", null, "13652", null, "163069", null, "6401", null, "145551", null, "6163", null, "120538", null, "5893", null, "46305", null, "3507", null, "38.0", null, "0.8", null, "99.3", null, "2.3", null, "65.3", null, "2.1", null, "22.3", null, "1.3", null, "43.0", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.9", null, "0.4", null, "7.5", null, "0.6", null, "7.6", null, "0.6", null, "7.7", null, "0.5", null, "5.8", null, "0.5", null, "5.1", null, "0.4", null, "6.1", null, "0.5", null, "7.2", null, "0.7", null, "8.4", null, "0.7", null, "7.7", null, "0.6", null, "7.1", null, "0.4", null, "5.7", null, "0.4", null, "4.8", null, "0.5", null, "5.0", null, "0.4", null, "3.3", null, "0.3", null, "2.7", null, "0.3", null, "1.4", null, "0.2", null, "1.1", null, "0.2", null, "15.1", null, "0.7", null, "5.1", null, "0.4", null, "26.0", null, "0.7", null, "8.4", null, "0.6", null, "40.3", null, "0.8", null, "77.3", null, "0.8", null, "74.0", null, "0.7", null, "70.3", null, "0.8", null, "18.2", null, "0.8", null, "16.3", null, "0.8", null, "13.5", null, "0.7", null, "5.2", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.1", null, "-888888888.0", "(X)", "445683", null, "11653", null, "25653", null, "3046", null, "33591", null, "4221", null, "35489", null, "4293", null, "36099", null, "3148", null, "27598", null, "2439", null, "25003", null, "3391", null, "25970", null, "3117", null, "29498", null, "3773", null, "38031", null, "4323", null, "34504", null, "3317", null, "31597", null, "2807", null, "25926", null, "2818", null, "20249", null, "2683", null, "20948", null, "1963", null, "14537", null, "1931", null, "11453", null, "1885", null, "5751", null, "1164", null, "3786", null, "1207", null, "69080", null, "4687", null, "23420", null, "2483", null, "118153", null, "6076", null, "40277", null, "3206", null, "182199", null, "7642", null, "342474", null, "8346", null, "327530", null, "8200", null, "308875", null, "7996", null, "76724", null, "3590", null, "67695", null, "3255", null, "56475", null, "3126", null, "20990", null, "2196", null, "37.5", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.8", null, "0.7", null, "7.5", null, "0.9", null, "8.0", null, "0.9", null, "8.1", null, "0.7", null, "6.2", null, "0.5", null, "5.6", null, "0.7", null, "5.8", null, "0.7", null, "6.6", null, "0.8", null, "8.5", null, "0.9", null, "7.7", null, "0.7", null, "7.1", null, "0.6", null, "5.8", null, "0.6", null, "4.5", null, "0.6", null, "4.7", null, "0.5", null, "3.3", null, "0.4", null, "2.6", null, "0.4", null, "1.3", null, "0.3", null, "0.8", null, "0.3", null, "15.5", null, "0.9", null, "5.3", null, "0.5", null, "26.5", null, "1.0", null, "9.0", null, "0.7", null, "40.9", null, "1.1", null, "76.8", null, "1.0", null, "73.5", null, "1.0", null, "69.3", null, "1.2", null, "17.2", null, "0.9", null, "15.2", null, "0.8", null, "12.7", null, "0.7", null, "4.7", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "449000", null, "11673", null, "26784", null, "3194", null, "33340", null, "4373", null, "32616", null, "4026", null, "32538", null, "3095", null, "24406", null, "3247", null, "20849", null, "2359", null, "28615", null, "3063", null, "34806", null, "4173", null, "37206", null, "4500", null, "34571", null, "2927", null, "32022", null, "2676", null, "24902", null, "2546", null, "22282", null, "2748", null, "23450", null, "2440", null, "15298", null, "1852", null, "12557", null, "1880", null, "6697", null, "1091", null, "6061", null, "1409", null, "65956", null, "5183", null, "21876", null, "2541", null, "114616", null, "6427", null, "35068", null, "3610", null, "178420", null, "6391", null, "349087", null, "8610", null, "334384", null, "7772", null, "319943", null, "7380", null, "86345", null, "4208", null, "77856", null, "4013", null, "64063", null, "3467", null, "25315", null, "1956", null, "38.4", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.0", null, "0.6", null, "7.4", null, "0.9", null, "7.3", null, "0.9", null, "7.2", null, "0.7", null, "5.4", null, "0.7", null, "4.6", null, "0.5", null, "6.4", null, "0.6", null, "7.8", null, "0.9", null, "8.3", null, "1.0", null, "7.7", null, "0.7", null, "7.1", null, "0.5", null, "5.5", null, "0.6", null, "5.0", null, "0.6", null, "5.2", null, "0.6", null, "3.4", null, "0.4", null, "2.8", null, "0.4", null, "1.5", null, "0.3", null, "1.3", null, "0.3", null, "14.7", null, "1.0", null, "4.9", null, "0.5", null, "25.5", null, "1.0", null, "7.8", null, "0.8", null, "39.7", null, "0.9", null, "77.7", null, "1.1", null, "74.5", null, "1.0", null, "71.3", null, "1.0", null, "19.2", null, "1.0", null, "17.3", null, "1.0", null, "14.3", null, "0.9", null, "5.6", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "48", "22"], ["5001900US4823", "Congressional District 23 (119th Congress), Texas", "806011", null, "20179", null, "55193", null, "4714", null, "57310", null, "4560", null, "68058", null, "5648", null, "56355", null, "4465", null, "50482", null, "4934", null, "52936", null, "4696", null, "62978", null, "5239", null, "57510", null, "5707", null, "49423", null, "4572", null, "51061", null, "5186", null, "45619", null, "4502", null, "43504", null, "3681", null, "40745", null, "3150", null, "34623", null, "3209", null, "32973", null, "3604", null, "23545", null, "2599", null, "13148", null, "2005", null, "10548", null, "1404", null, "125368", null, "7163", null, "34372", null, "3386", null, "214933", null, "8980", null, "72465", null, "5726", null, "329684", null, "11480", null, "614913", null, "15701", null, "591078", null, "14915", null, "560825", null, "14626", null, "155582", null, "5855", null, "138969", null, "5678", null, "114837", null, "4976", null, "47241", null, "3156", null, "35.0", null, "0.6", null, "108.7", null, "3.0", null, "69.2", null, "2.3", null, "24.1", null, "1.2", null, "45.1", null, "1.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.8", null, "0.6", null, "7.1", null, "0.5", null, "8.4", null, "0.6", null, "7.0", null, "0.5", null, "6.3", null, "0.6", null, "6.6", null, "0.6", null, "7.8", null, "0.7", null, "7.1", null, "0.6", null, "6.1", null, "0.6", null, "6.3", null, "0.6", null, "5.7", null, "0.5", null, "5.4", null, "0.4", null, "5.1", null, "0.4", null, "4.3", null, "0.4", null, "4.1", null, "0.4", null, "2.9", null, "0.3", null, "1.6", null, "0.3", null, "1.3", null, "0.2", null, "15.6", null, "0.7", null, "4.3", null, "0.4", null, "26.7", null, "0.8", null, "9.0", null, "0.7", null, "40.9", null, "1.0", null, "76.3", null, "0.8", null, "73.3", null, "0.8", null, "69.6", null, "0.8", null, "19.3", null, "0.7", null, "17.2", null, "0.7", null, "14.2", null, "0.6", null, "5.9", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "0.8", null, "-888888888.0", "(X)", "419770", null, "10953", null, "29354", null, "3641", null, "28371", null, "2625", null, "36355", null, "4603", null, "32632", null, "3376", null, "28283", null, "3162", null, "30705", null, "3261", null, "33055", null, "3507", null, "29887", null, "3389", null, "25870", null, "3196", null, "25726", null, "3616", null, "23114", null, "3211", null, "24594", null, "2430", null, "20519", null, "2231", null, "17160", null, "1834", null, "14226", null, "1693", null, "10832", null, "1977", null, "4884", null, "1003", null, "4203", null, "991", null, "64726", null, "4586", null, "18489", null, "2734", null, "112569", null, "5722", null, "42426", null, "3611", null, "180432", null, "7490", null, "320209", null, "9216", null, "307201", null, "8816", null, "288806", null, "8668", null, "71824", null, "3594", null, "63149", null, "3417", null, "51305", null, "2735", null, "19919", null, "2109", null, "33.8", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "7.0", null, "0.8", null, "6.8", null, "0.7", null, "8.7", null, "1.0", null, "7.8", null, "0.8", null, "6.7", null, "0.7", null, "7.3", null, "0.7", null, "7.9", null, "0.8", null, "7.1", null, "0.8", null, "6.2", null, "0.8", null, "6.1", null, "0.8", null, "5.5", null, "0.8", null, "5.9", null, "0.6", null, "4.9", null, "0.5", null, "4.1", null, "0.5", null, "3.4", null, "0.4", null, "2.6", null, "0.5", null, "1.2", null, "0.2", null, "1.0", null, "0.2", null, "15.4", null, "1.0", null, "4.4", null, "0.6", null, "26.8", null, "1.1", null, "10.1", null, "0.8", null, "43.0", null, "1.2", null, "76.3", null, "1.1", null, "73.2", null, "1.1", null, "68.8", null, "1.1", null, "17.1", null, "0.9", null, "15.0", null, "0.9", null, "12.2", null, "0.7", null, "4.7", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "386241", null, "12040", null, "25839", null, "2981", null, "28939", null, "3572", null, "31703", null, "3694", null, "23723", null, "2615", null, "22199", null, "3282", null, "22231", null, "2736", null, "29923", null, "3268", null, "27623", null, "3380", null, "23553", null, "3444", null, "25335", null, "3076", null, "22505", null, "2593", null, "18910", null, "2599", null, "20226", null, "1753", null, "17463", null, "2227", null, "18747", null, "2530", null, "12713", null, "1980", null, "8264", null, "1537", null, "6345", null, "1185", null, "60642", null, "4707", null, "15883", null, "1893", null, "102364", null, "6194", null, "30039", null, "3807", null, "149252", null, "6926", null, "294704", null, "8773", null, "283877", null, "8434", null, "272019", null, "8154", null, "83758", null, "3625", null, "75820", null, "3460", null, "63532", null, "3473", null, "27322", null, "2299", null, "36.5", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.7", null, "0.7", null, "7.5", null, "0.9", null, "8.2", null, "0.9", null, "6.1", null, "0.6", null, "5.7", null, "0.8", null, "5.8", null, "0.7", null, "7.7", null, "0.9", null, "7.2", null, "0.8", null, "6.1", null, "0.9", null, "6.6", null, "0.8", null, "5.8", null, "0.6", null, "4.9", null, "0.7", null, "5.2", null, "0.5", null, "4.5", null, "0.6", null, "4.9", null, "0.6", null, "3.3", null, "0.5", null, "2.1", null, "0.4", null, "1.6", null, "0.3", null, "15.7", null, "1.0", null, "4.1", null, "0.5", null, "26.5", null, "1.1", null, "7.8", null, "1.0", null, "38.6", null, "1.4", null, "76.3", null, "1.1", null, "73.5", null, "1.1", null, "70.4", null, "1.1", null, "21.7", null, "0.9", null, "19.6", null, "0.8", null, "16.4", null, "0.8", null, "7.1", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "48", "23"], ["5001900US4824", "Congressional District 24 (119th Congress), Texas", "772892", null, "19655", null, "44846", null, "4277", null, "51802", null, "5317", null, "57518", null, "4567", null, "54258", null, "4437", null, "38171", null, "4477", null, "43768", null, "4869", null, "44970", null, "4831", null, "54659", null, "4426", null, "57773", null, "5132", null, "55996", null, "3831", null, "50513", null, "4141", null, "50304", null, "4164", null, "47619", null, "3930", null, "42837", null, "3427", null, "31511", null, "2958", null, "20328", null, "2201", null, "14210", null, "2086", null, "11809", null, "2312", null, "109320", null, "7266", null, "36979", null, "3270", null, "191145", null, "10129", null, "55450", null, "4795", null, "293599", null, "12394", null, "605401", null, "15627", null, "581747", null, "14708", null, "557983", null, "14539", null, "168314", null, "7152", null, "148641", null, "6517", null, "120695", null, "5288", null, "46347", null, "3247", null, "39.7", null, "0.9", null, "96.1", null, "3.4", null, "67.6", null, "2.6", null, "26.2", null, "1.6", null, "41.5", null, "2.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.8", null, "0.5", null, "6.7", null, "0.6", null, "7.4", null, "0.6", null, "7.0", null, "0.5", null, "4.9", null, "0.6", null, "5.7", null, "0.6", null, "5.8", null, "0.6", null, "7.1", null, "0.5", null, "7.5", null, "0.6", null, "7.2", null, "0.5", null, "6.5", null, "0.5", null, "6.5", null, "0.5", null, "6.2", null, "0.5", null, "5.5", null, "0.5", null, "4.1", null, "0.4", null, "2.6", null, "0.3", null, "1.8", null, "0.3", null, "1.5", null, "0.3", null, "14.1", null, "0.8", null, "4.8", null, "0.4", null, "24.7", null, "1.0", null, "7.2", null, "0.6", null, "38.0", null, "1.0", null, "78.3", null, "1.0", null, "75.3", null, "1.0", null, "72.2", null, "1.1", null, "21.8", null, "1.0", null, "19.2", null, "1.0", null, "15.6", null, "0.8", null, "6.0", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "0.9", null, "-888888888.0", "(X)", "378691", null, "12133", null, "21713", null, "2854", null, "26325", null, "3481", null, "27770", null, "3002", null, "27832", null, "3355", null, "20187", null, "3299", null, "23512", null, "3700", null, "21021", null, "3185", null, "26615", null, "3035", null, "28547", null, "3534", null, "27440", null, "2386", null, "23804", null, "2528", null, "24950", null, "2255", null, "24435", null, "2464", null, "19566", null, "2251", null, "15238", null, "1867", null, "8864", null, "1182", null, "6451", null, "1173", null, "4421", null, "1210", null, "54095", null, "4220", null, "19497", null, "2478", null, "95305", null, "6232", null, "28522", null, "3768", null, "147714", null, "8692", null, "296133", null, "10178", null, "283386", null, "9562", null, "271913", null, "9348", null, "78975", null, "4249", null, "69297", null, "3718", null, "54540", null, "3109", null, "19736", null, "1730", null, "39.0", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.7", null, "0.7", null, "7.0", null, "0.9", null, "7.3", null, "0.7", null, "7.3", null, "0.8", null, "5.3", null, "0.8", null, "6.2", null, "0.9", null, "5.6", null, "0.8", null, "7.0", null, "0.7", null, "7.5", null, "0.9", null, "7.2", null, "0.7", null, "6.3", null, "0.7", null, "6.6", null, "0.6", null, "6.5", null, "0.6", null, "5.2", null, "0.6", null, "4.0", null, "0.5", null, "2.3", null, "0.3", null, "1.7", null, "0.3", null, "1.2", null, "0.3", null, "14.3", null, "1.0", null, "5.1", null, "0.6", null, "25.2", null, "1.3", null, "7.5", null, "0.9", null, "39.0", null, "1.4", null, "78.2", null, "1.2", null, "74.8", null, "1.3", null, "71.8", null, "1.4", null, "20.9", null, "1.2", null, "18.3", null, "1.0", null, "14.4", null, "0.9", null, "5.2", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "394201", null, "11844", null, "23133", null, "3117", null, "25477", null, "3491", null, "29748", null, "3522", null, "26426", null, "2569", null, "17984", null, "2756", null, "20256", null, "2744", null, "23949", null, "2921", null, "28044", null, "2923", null, "29226", null, "3311", null, "28556", null, "2740", null, "26709", null, "2438", null, "25354", null, "2918", null, "23184", null, "2173", null, "23271", null, "2082", null, "16273", null, "1860", null, "11464", null, "1454", null, "7759", null, "1412", null, "7388", null, "1565", null, "55225", null, "4992", null, "17482", null, "1974", null, "95840", null, "6596", null, "26928", null, "2751", null, "145885", null, "6718", null, "309268", null, "8831", null, "298361", null, "8457", null, "286070", null, "8129", null, "89339", null, "4177", null, "79344", null, "4102", null, "66155", null, "3508", null, "26611", null, "2232", null, "40.3", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.9", null, "0.7", null, "6.5", null, "0.8", null, "7.5", null, "0.9", null, "6.7", null, "0.6", null, "4.6", null, "0.7", null, "5.1", null, "0.7", null, "6.1", null, "0.7", null, "7.1", null, "0.7", null, "7.4", null, "0.8", null, "7.2", null, "0.7", null, "6.8", null, "0.6", null, "6.4", null, "0.7", null, "5.9", null, "0.5", null, "5.9", null, "0.6", null, "4.1", null, "0.5", null, "2.9", null, "0.4", null, "2.0", null, "0.4", null, "1.9", null, "0.4", null, "14.0", null, "1.1", null, "4.4", null, "0.5", null, "24.3", null, "1.3", null, "6.8", null, "0.7", null, "37.0", null, "1.2", null, "78.5", null, "1.3", null, "75.7", null, "1.3", null, "72.6", null, "1.3", null, "22.7", null, "1.2", null, "20.1", null, "1.2", null, "16.8", null, "1.0", null, "6.8", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "48", "24"], ["5001900US4825", "Congressional District 25 (119th Congress), Texas", "826421", null, "17507", null, "45200", null, "4299", null, "54989", null, "5001", null, "52053", null, "4415", null, "61555", null, "5279", null, "59753", null, "4877", null, "55432", null, "4617", null, "51483", null, "4445", null, "54921", null, "4941", null, "61389", null, "5761", null, "43966", null, "3619", null, "48047", null, "4287", null, "45850", null, "4203", null, "53701", null, "3924", null, "48221", null, "3344", null, "34894", null, "3158", null, "25971", null, "2306", null, "15281", null, "1789", null, "13715", null, "1901", null, "107042", null, "6814", null, "38129", null, "3860", null, "190371", null, "9487", null, "83179", null, "5583", null, "344533", null, "11378", null, "663369", null, "13670", null, "636050", null, "12451", null, "600925", null, "12022", null, "191783", null, "5931", null, "167551", null, "5082", null, "138082", null, "4227", null, "54967", null, "2929", null, "38.1", null, "0.7", null, "96.7", null, "2.8", null, "66.0", null, "2.2", null, "27.7", null, "1.1", null, "38.2", null, "1.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.5", null, "6.7", null, "0.6", null, "6.3", null, "0.5", null, "7.4", null, "0.6", null, "7.2", null, "0.6", null, "6.7", null, "0.5", null, "6.2", null, "0.6", null, "6.6", null, "0.6", null, "7.4", null, "0.7", null, "5.3", null, "0.4", null, "5.8", null, "0.5", null, "5.5", null, "0.5", null, "6.5", null, "0.5", null, "5.8", null, "0.4", null, "4.2", null, "0.4", null, "3.1", null, "0.3", null, "1.8", null, "0.2", null, "1.7", null, "0.2", null, "13.0", null, "0.7", null, "4.6", null, "0.4", null, "23.0", null, "0.9", null, "10.1", null, "0.6", null, "41.7", null, "1.0", null, "80.3", null, "0.9", null, "77.0", null, "0.9", null, "72.7", null, "0.9", null, "23.2", null, "0.8", null, "20.3", null, "0.7", null, "16.7", null, "0.6", null, "6.7", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.0", null, "-888888888.0", "(X)", "406363", null, "10243", null, "24517", null, "3507", null, "28076", null, "3754", null, "26680", null, "2928", null, "30775", null, "3938", null, "32084", null, "3123", null, "27598", null, "2917", null, "26318", null, "2838", null, "25948", null, "3208", null, "30238", null, "3770", null, "21731", null, "2203", null, "22272", null, "2480", null, "22063", null, "2583", null, "26228", null, "2378", null, "22816", null, "2127", null, "16406", null, "1905", null, "11053", null, "1321", null, "6852", null, "1145", null, "4708", null, "1023", null, "54756", null, "4577", null, "18703", null, "2826", null, "97976", null, "6285", null, "44156", null, "3609", null, "172961", null, "7382", null, "322120", null, "7609", null, "308387", null, "7136", null, "290198", null, "7055", null, "88063", null, "3478", null, "75248", null, "3198", null, "61835", null, "2990", null, "22613", null, "1713", null, "36.9", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.0", null, "0.8", null, "6.9", null, "0.9", null, "6.6", null, "0.7", null, "7.6", null, "0.9", null, "7.9", null, "0.7", null, "6.8", null, "0.7", null, "6.5", null, "0.7", null, "6.4", null, "0.8", null, "7.4", null, "0.9", null, "5.3", null, "0.5", null, "5.5", null, "0.6", null, "5.4", null, "0.6", null, "6.5", null, "0.6", null, "5.6", null, "0.6", null, "4.0", null, "0.5", null, "2.7", null, "0.3", null, "1.7", null, "0.3", null, "1.2", null, "0.3", null, "13.5", null, "1.0", null, "4.6", null, "0.7", null, "24.1", null, "1.2", null, "10.9", null, "0.8", null, "42.6", null, "1.4", null, "79.3", null, "1.1", null, "75.9", null, "1.2", null, "71.4", null, "1.2", null, "21.7", null, "1.0", null, "18.5", null, "0.9", null, "15.2", null, "0.9", null, "5.6", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "420058", null, "10839", null, "20683", null, "2732", null, "26913", null, "3149", null, "25373", null, "3255", null, "30780", null, "3402", null, "27669", null, "2786", null, "27834", null, "2920", null, "25165", null, "2959", null, "28973", null, "3271", null, "31151", null, "3112", null, "22235", null, "2582", null, "25775", null, "2667", null, "23787", null, "2630", null, "27473", null, "2624", null, "25405", null, "2236", null, "18488", null, "2031", null, "14918", null, "1684", null, "8429", null, "1134", null, "9007", null, "1525", null, "52286", null, "5007", null, "19426", null, "2547", null, "92395", null, "6210", null, "39023", null, "3492", null, "171572", null, "6299", null, "341249", null, "8295", null, "327663", null, "7722", null, "310727", null, "7664", null, "103720", null, "4191", null, "92303", null, "3527", null, "76247", null, "2730", null, "32354", null, "1969", null, "39.4", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.9", null, "0.6", null, "6.4", null, "0.7", null, "6.0", null, "0.7", null, "7.3", null, "0.8", null, "6.6", null, "0.6", null, "6.6", null, "0.7", null, "6.0", null, "0.7", null, "6.9", null, "0.8", null, "7.4", null, "0.7", null, "5.3", null, "0.6", null, "6.1", null, "0.6", null, "5.7", null, "0.6", null, "6.5", null, "0.6", null, "6.0", null, "0.5", null, "4.4", null, "0.5", null, "3.6", null, "0.4", null, "2.0", null, "0.3", null, "2.1", null, "0.4", null, "12.4", null, "1.0", null, "4.6", null, "0.6", null, "22.0", null, "1.1", null, "9.3", null, "0.8", null, "40.8", null, "1.0", null, "81.2", null, "1.1", null, "78.0", null, "1.1", null, "74.0", null, "1.3", null, "24.7", null, "1.0", null, "22.0", null, "0.9", null, "18.2", null, "0.7", null, "7.7", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "48", "25"], ["5001900US4826", "Congressional District 26 (119th Congress), Texas", "884703", null, "10654", null, "48741", null, "2395", null, "53332", null, "3943", null, "62155", null, "3562", null, "55320", null, "3050", null, "49314", null, "3335", null, "54091", null, "3754", null, "67576", null, "3335", null, "68218", null, "4858", null, "73061", null, "5548", null, "62287", null, "3051", null, "65275", null, "3218", null, "55887", null, "3344", null, "55558", null, "3336", null, "41112", null, "2978", null, "30452", null, "2814", null, "20861", null, "2245", null, "12179", null, "1601", null, "9284", null, "1564", null, "115487", null, "4458", null, "37825", null, "2556", null, "202053", null, "5487", null, "66809", null, "3609", null, "367580", null, "7401", null, "707531", null, "9324", null, "682650", null, "8530", null, "656096", null, "8240", null, "169446", null, "5188", null, "147783", null, "5431", null, "113888", null, "3868", null, "42324", null, "2535", null, "38.8", null, "0.6", null, "100.3", null, "1.9", null, "55.5", null, "1.3", null, "20.0", null, "0.7", null, "35.5", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.3", null, "6.0", null, "0.4", null, "7.0", null, "0.4", null, "6.3", null, "0.3", null, "5.6", null, "0.4", null, "6.1", null, "0.4", null, "7.6", null, "0.4", null, "7.7", null, "0.6", null, "8.3", null, "0.6", null, "7.0", null, "0.3", null, "7.4", null, "0.4", null, "6.3", null, "0.4", null, "6.3", null, "0.4", null, "4.6", null, "0.3", null, "3.4", null, "0.3", null, "2.4", null, "0.3", null, "1.4", null, "0.2", null, "1.0", null, "0.2", null, "13.1", null, "0.4", null, "4.3", null, "0.3", null, "22.8", null, "0.5", null, "7.6", null, "0.4", null, "41.5", null, "0.6", null, "80.0", null, "0.6", null, "77.2", null, "0.5", null, "74.2", null, "0.6", null, "19.2", null, "0.6", null, "16.7", null, "0.6", null, "12.9", null, "0.4", null, "4.8", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "2.4", null, "-888888888.0", "(X)", "442904", null, "6195", null, "25932", null, "1703", null, "27174", null, "2856", null, "31521", null, "2652", null, "30004", null, "2169", null, "25635", null, "2169", null, "26811", null, "2565", null, "32400", null, "2200", null, "37063", null, "2926", null, "34416", null, "3390", null, "31676", null, "1811", null, "32239", null, "2173", null, "28025", null, "2127", null, "28156", null, "2239", null, "19874", null, "1700", null, "13384", null, "1702", null, "9283", null, "1263", null, "5529", null, "1127", null, "3782", null, "853", null, "58695", null, "2968", null, "20160", null, "2035", null, "104787", null, "3613", null, "35479", null, "2505", null, "186329", null, "4116", null, "351983", null, "5088", null, "338117", null, "4550", null, "322788", null, "4520", null, "80008", null, "3025", null, "68890", null, "3174", null, "51852", null, "1961", null, "18594", null, "1360", null, "38.0", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.9", null, "0.4", null, "6.1", null, "0.6", null, "7.1", null, "0.6", null, "6.8", null, "0.5", null, "5.8", null, "0.5", null, "6.1", null, "0.6", null, "7.3", null, "0.5", null, "8.4", null, "0.7", null, "7.8", null, "0.8", null, "7.2", null, "0.4", null, "7.3", null, "0.5", null, "6.3", null, "0.5", null, "6.4", null, "0.5", null, "4.5", null, "0.4", null, "3.0", null, "0.4", null, "2.1", null, "0.3", null, "1.2", null, "0.2", null, "0.9", null, "0.2", null, "13.3", null, "0.6", null, "4.6", null, "0.5", null, "23.7", null, "0.6", null, "8.0", null, "0.5", null, "42.1", null, "0.8", null, "79.5", null, "0.8", null, "76.3", null, "0.6", null, "72.9", null, "0.7", null, "18.1", null, "0.7", null, "15.6", null, "0.7", null, "11.7", null, "0.4", null, "4.2", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "441799", null, "7373", null, "22809", null, "2068", null, "26158", null, "2779", null, "30634", null, "2146", null, "25316", null, "2325", null, "23679", null, "2161", null, "27280", null, "2102", null, "35176", null, "2002", null, "31155", null, "3353", null, "38645", null, "3400", null, "30611", null, "2024", null, "33036", null, "1928", null, "27862", null, "2384", null, "27402", null, "2323", null, "21238", null, "1912", null, "17068", null, "1783", null, "11578", null, "1580", null, "6650", null, "1146", null, "5502", null, "1261", null, "56792", null, "2774", null, "17665", null, "1756", null, "97266", null, "4142", null, "31330", null, "2417", null, "181251", null, "5132", null, "355548", null, "6503", null, "344533", null, "5777", null, "333308", null, "5529", null, "89438", null, "3428", null, "78893", null, "3352", null, "62036", null, "2489", null, "23730", null, "1711", null, "39.8", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.5", null, "5.9", null, "0.6", null, "6.9", null, "0.5", null, "5.7", null, "0.5", null, "5.4", null, "0.5", null, "6.2", null, "0.5", null, "8.0", null, "0.5", null, "7.1", null, "0.8", null, "8.7", null, "0.7", null, "6.9", null, "0.5", null, "7.5", null, "0.5", null, "6.3", null, "0.5", null, "6.2", null, "0.5", null, "4.8", null, "0.4", null, "3.9", null, "0.4", null, "2.6", null, "0.3", null, "1.5", null, "0.3", null, "1.2", null, "0.3", null, "12.9", null, "0.6", null, "4.0", null, "0.4", null, "22.0", null, "0.8", null, "7.1", null, "0.5", null, "41.0", null, "0.8", null, "80.5", null, "0.8", null, "78.0", null, "0.8", null, "75.4", null, "0.9", null, "20.2", null, "0.7", null, "17.9", null, "0.7", null, "14.0", null, "0.5", null, "5.4", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "48", "26"], ["5001900US4827", "Congressional District 27 (119th Congress), Texas", "793985", null, "6187", null, "49110", null, "1630", null, "50155", null, "4458", null, "52227", null, "3897", null, "55189", null, "3241", null, "50944", null, "3228", null, "50524", null, "3244", null, "51991", null, "3032", null, "49148", null, "4642", null, "58635", null, "4851", null, "49790", null, "2814", null, "45912", null, "2520", null, "41190", null, "3264", null, "48623", null, "3329", null, "45985", null, "2832", null, "37067", null, "2540", null, "28051", null, "2314", null, "15434", null, "1957", null, "14010", null, "1518", null, "102382", null, "3542", null, "34926", null, "1912", null, "186418", null, "3794", null, "71207", null, "3340", null, "316431", null, "5086", null, "630337", null, "4784", null, "607567", null, "4384", null, "577125", null, "4960", null, "189170", null, "4054", null, "172513", null, "3824", null, "140547", null, "2432", null, "57495", null, "1988", null, "38.7", null, "0.6", null, "102.3", null, "1.9", null, "70.0", null, "1.0", null, "30.1", null, "0.6", null, "39.9", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.2", null, "0.2", null, "6.3", null, "0.5", null, "6.6", null, "0.5", null, "7.0", null, "0.4", null, "6.4", null, "0.4", null, "6.4", null, "0.4", null, "6.5", null, "0.4", null, "6.2", null, "0.6", null, "7.4", null, "0.6", null, "6.3", null, "0.4", null, "5.8", null, "0.3", null, "5.2", null, "0.4", null, "6.1", null, "0.4", null, "5.8", null, "0.4", null, "4.7", null, "0.3", null, "3.5", null, "0.3", null, "1.9", null, "0.2", null, "1.8", null, "0.2", null, "12.9", null, "0.4", null, "4.4", null, "0.2", null, "23.5", null, "0.4", null, "9.0", null, "0.4", null, "39.9", null, "0.5", null, "79.4", null, "0.4", null, "76.5", null, "0.4", null, "72.7", null, "0.5", null, "23.8", null, "0.5", null, "21.7", null, "0.5", null, "17.7", null, "0.3", null, "7.2", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.1", null, "-888888888.0", "(X)", "401527", null, "4409", null, "24575", null, "2278", null, "25737", null, "2671", null, "28006", null, "2578", null, "27113", null, "2401", null, "27989", null, "2321", null, "25247", null, "2035", null, "28090", null, "1951", null, "25035", null, "3144", null, "28620", null, "3089", null, "27596", null, "2010", null, "23469", null, "1927", null, "21342", null, "2101", null, "22643", null, "1935", null, "23463", null, "1889", null, "17790", null, "1719", null, "12175", null, "1597", null, "7380", null, "1439", null, "5257", null, "1210", null, "53743", null, "2104", null, "17569", null, "1913", null, "95887", null, "3599", null, "37533", null, "2476", null, "162094", null, "4020", null, "316566", null, "3549", null, "305640", null, "3092", null, "290142", null, "3312", null, "88708", null, "2636", null, "81936", null, "2496", null, "66065", null, "1691", null, "24812", null, "1286", null, "37.7", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.1", null, "0.5", null, "6.4", null, "0.7", null, "7.0", null, "0.6", null, "6.8", null, "0.6", null, "7.0", null, "0.6", null, "6.3", null, "0.5", null, "7.0", null, "0.5", null, "6.2", null, "0.8", null, "7.1", null, "0.8", null, "6.9", null, "0.5", null, "5.8", null, "0.5", null, "5.3", null, "0.5", null, "5.6", null, "0.5", null, "5.8", null, "0.5", null, "4.4", null, "0.4", null, "3.0", null, "0.4", null, "1.8", null, "0.4", null, "1.3", null, "0.3", null, "13.4", null, "0.5", null, "4.4", null, "0.5", null, "23.9", null, "0.7", null, "9.3", null, "0.6", null, "40.4", null, "0.9", null, "78.8", null, "0.8", null, "76.1", null, "0.7", null, "72.3", null, "0.9", null, "22.1", null, "0.7", null, "20.4", null, "0.6", null, "16.5", null, "0.4", null, "6.2", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "392458", null, "5069", null, "24535", null, "2383", null, "24418", null, "2966", null, "24221", null, "2399", null, "28076", null, "2597", null, "22955", null, "1662", null, "25277", null, "2166", null, "23901", null, "1775", null, "24113", null, "2786", null, "30015", null, "3195", null, "22194", null, "1780", null, "22443", null, "1153", null, "19848", null, "1980", null, "25980", null, "2368", null, "22522", null, "1950", null, "19277", null, "1818", null, "15876", null, "1764", null, "8054", null, "1126", null, "8753", null, "1288", null, "48639", null, "2190", null, "17357", null, "1816", null, "90531", null, "3454", null, "33674", null, "1877", null, "154337", null, "3725", null, "313771", null, "3433", null, "301927", null, "2767", null, "286983", null, "3142", null, "100462", null, "2538", null, "90577", null, "2389", null, "74482", null, "1436", null, "32683", null, "1215", null, "39.7", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.3", null, "0.6", null, "6.2", null, "0.7", null, "6.2", null, "0.6", null, "7.2", null, "0.6", null, "5.8", null, "0.4", null, "6.4", null, "0.5", null, "6.1", null, "0.4", null, "6.1", null, "0.7", null, "7.6", null, "0.8", null, "5.7", null, "0.5", null, "5.7", null, "0.3", null, "5.1", null, "0.5", null, "6.6", null, "0.6", null, "5.7", null, "0.5", null, "4.9", null, "0.5", null, "4.0", null, "0.5", null, "2.1", null, "0.3", null, "2.2", null, "0.3", null, "12.4", null, "0.5", null, "4.4", null, "0.5", null, "23.1", null, "0.6", null, "8.6", null, "0.5", null, "39.3", null, "0.8", null, "80.0", null, "0.7", null, "76.9", null, "0.6", null, "73.1", null, "0.7", null, "25.6", null, "0.7", null, "23.1", null, "0.7", null, "19.0", null, "0.4", null, "8.3", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "48", "27"], ["5001900US4828", "Congressional District 28 (119th Congress), Texas", "825116", null, "21058", null, "59909", null, "4705", null, "65117", null, "5136", null, "66808", null, "4833", null, "71343", null, "4640", null, "55150", null, "3641", null, "53078", null, "4622", null, "57007", null, "4089", null, "58415", null, "4743", null, "51364", null, "4865", null, "49808", null, "3271", null, "50450", null, "3568", null, "38411", null, "2960", null, "44646", null, "3249", null, "34583", null, "2581", null, "27634", null, "2441", null, "19956", null, "2016", null, "12718", null, "1793", null, "8719", null, "1302", null, "131925", null, "6715", null, "40780", null, "2906", null, "232614", null, "9626", null, "85713", null, "4753", null, "346357", null, "11845", null, "622678", null, "14842", null, "592502", null, "14193", null, "552506", null, "13035", null, "148256", null, "4835", null, "130003", null, "4850", null, "103610", null, "3890", null, "41393", null, "2406", null, "33.3", null, "0.7", null, "96.8", null, "2.3", null, "68.8", null, "1.8", null, "21.2", null, "1.0", null, "47.6", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "7.3", null, "0.5", null, "7.9", null, "0.6", null, "8.1", null, "0.5", null, "8.6", null, "0.5", null, "6.7", null, "0.4", null, "6.4", null, "0.5", null, "6.9", null, "0.5", null, "7.1", null, "0.5", null, "6.2", null, "0.6", null, "6.0", null, "0.4", null, "6.1", null, "0.4", null, "4.7", null, "0.3", null, "5.4", null, "0.4", null, "4.2", null, "0.3", null, "3.3", null, "0.3", null, "2.4", null, "0.3", null, "1.5", null, "0.2", null, "1.1", null, "0.2", null, "16.0", null, "0.6", null, "4.9", null, "0.3", null, "28.2", null, "0.7", null, "10.4", null, "0.5", null, "42.0", null, "0.8", null, "75.5", null, "0.7", null, "71.8", null, "0.7", null, "67.0", null, "0.8", null, "18.0", null, "0.7", null, "15.8", null, "0.7", null, "12.6", null, "0.6", null, "5.0", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "0.8", null, "-888888888.0", "(X)", "405865", null, "10652", null, "31315", null, "3481", null, "30024", null, "3343", null, "36466", null, "3098", null, "36811", null, "3521", null, "29598", null, "2522", null, "26422", null, "2954", null, "26311", null, "2197", null, "29727", null, "2941", null, "25057", null, "2896", null, "22622", null, "2074", null, "26234", null, "2473", null, "18967", null, "2169", null, "18713", null, "2244", null, "17774", null, "1941", null, "13594", null, "1743", null, "8769", null, "1175", null, "4091", null, "906", null, "3370", null, "839", null, "66490", null, "4147", null, "21042", null, "2126", null, "118847", null, "6211", null, "45367", null, "3211", null, "173926", null, "5891", null, "302704", null, "7133", null, "287018", null, "7013", null, "266163", null, "6485", null, "66311", null, "2894", null, "58494", null, "2973", null, "47598", null, "2443", null, "16230", null, "1215", null, "32.0", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "7.7", null, "0.8", null, "7.4", null, "0.8", null, "9.0", null, "0.7", null, "9.1", null, "0.8", null, "7.3", null, "0.6", null, "6.5", null, "0.7", null, "6.5", null, "0.5", null, "7.3", null, "0.7", null, "6.2", null, "0.7", null, "5.6", null, "0.5", null, "6.5", null, "0.6", null, "4.7", null, "0.5", null, "4.6", null, "0.6", null, "4.4", null, "0.5", null, "3.3", null, "0.4", null, "2.2", null, "0.3", null, "1.0", null, "0.2", null, "0.8", null, "0.2", null, "16.4", null, "0.8", null, "5.2", null, "0.5", null, "29.3", null, "1.1", null, "11.2", null, "0.7", null, "42.9", null, "1.0", null, "74.6", null, "1.0", null, "70.7", null, "1.1", null, "65.6", null, "1.2", null, "16.3", null, "0.8", null, "14.4", null, "0.8", null, "11.7", null, "0.6", null, "4.0", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "419251", null, "12598", null, "28594", null, "3115", null, "35093", null, "3530", null, "30342", null, "3257", null, "34532", null, "3086", null, "25552", null, "2583", null, "26656", null, "2518", null, "30696", null, "3148", null, "28688", null, "3543", null, "26307", null, "3060", null, "27186", null, "2450", null, "24216", null, "2299", null, "19444", null, "2182", null, "25933", null, "2454", null, "16809", null, "1450", null, "14040", null, "1508", null, "11187", null, "1589", null, "8627", null, "1455", null, "5349", null, "1094", null, "65435", null, "4181", null, "19738", null, "2228", null, "113767", null, "6260", null, "40346", null, "2882", null, "172431", null, "7104", null, "319974", null, "8940", null, "305484", null, "8456", null, "286343", null, "8271", null, "81945", null, "3339", null, "71509", null, "3090", null, "56012", null, "2560", null, "25163", null, "1801", null, "34.6", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.8", null, "0.6", null, "8.4", null, "0.8", null, "7.2", null, "0.7", null, "8.2", null, "0.7", null, "6.1", null, "0.6", null, "6.4", null, "0.6", null, "7.3", null, "0.7", null, "6.8", null, "0.8", null, "6.3", null, "0.7", null, "6.5", null, "0.6", null, "5.8", null, "0.5", null, "4.6", null, "0.5", null, "6.2", null, "0.6", null, "4.0", null, "0.4", null, "3.3", null, "0.4", null, "2.7", null, "0.4", null, "2.1", null, "0.3", null, "1.3", null, "0.3", null, "15.6", null, "0.8", null, "4.7", null, "0.5", null, "27.1", null, "1.0", null, "9.6", null, "0.6", null, "41.1", null, "1.1", null, "76.3", null, "1.0", null, "72.9", null, "1.0", null, "68.3", null, "1.0", null, "19.5", null, "0.9", null, "17.1", null, "0.8", null, "13.4", null, "0.7", null, "6.0", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "48", "28"], ["5001900US4829", "Congressional District 29 (119th Congress), Texas", "755796", null, "28260", null, "52429", null, "6395", null, "57207", null, "6422", null, "57458", null, "4942", null, "61272", null, "5499", null, "61446", null, "5339", null, "50559", null, "4666", null, "59862", null, "5369", null, "49267", null, "4381", null, "53548", null, "5465", null, "48093", null, "4093", null, "41985", null, "4498", null, "37992", null, "3813", null, "37672", null, "4568", null, "32950", null, "3617", null, "23794", null, "2644", null, "14393", null, "1828", null, "9866", null, "1900", null, "6003", null, "1341", null, "114665", null, "8932", null, "39772", null, "4613", null, "206866", null, "13819", null, "82946", null, "6743", null, "335954", null, "14979", null, "576312", null, "19733", null, "548930", null, "19173", null, "515788", null, "18288", null, "124678", null, "7357", null, "106428", null, "6074", null, "87006", null, "5309", null, "30262", null, "2873", null, "33.3", null, "0.6", null, "106.5", null, "4.1", null, "63.6", null, "3.1", null, "18.8", null, "1.4", null, "44.8", null, "2.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.9", null, "0.7", null, "7.6", null, "0.7", null, "7.6", null, "0.6", null, "8.1", null, "0.6", null, "8.1", null, "0.7", null, "6.7", null, "0.6", null, "7.9", null, "0.6", null, "6.5", null, "0.5", null, "7.1", null, "0.7", null, "6.4", null, "0.5", null, "5.6", null, "0.6", null, "5.0", null, "0.5", null, "5.0", null, "0.6", null, "4.4", null, "0.5", null, "3.1", null, "0.4", null, "1.9", null, "0.2", null, "1.3", null, "0.3", null, "0.8", null, "0.2", null, "15.2", null, "0.9", null, "5.3", null, "0.6", null, "27.4", null, "1.2", null, "11.0", null, "0.8", null, "44.5", null, "1.0", null, "76.3", null, "1.2", null, "72.6", null, "1.2", null, "68.2", null, "1.2", null, "16.5", null, "1.0", null, "14.1", null, "0.8", null, "11.5", null, "0.7", null, "4.0", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.1", null, "-888888888.0", "(X)", "389762", null, "15899", null, "27804", null, "3957", null, "29223", null, "3967", null, "29592", null, "3604", null, "28428", null, "3432", null, "33684", null, "3923", null, "26030", null, "3250", null, "31993", null, "4271", null, "27440", null, "3000", null, "26781", null, "3607", null, "25493", null, "2868", null, "22108", null, "3010", null, "19178", null, "2475", null, "19142", null, "3076", null, "18134", null, "2607", null, "11752", null, "1696", null, "6585", null, "1338", null, "4332", null, "1068", null, "2063", null, "792", null, "58815", null, "5689", null, "18715", null, "2704", null, "105334", null, "8453", null, "43397", null, "4820", null, "174356", null, "8891", null, "297836", null, "11910", null, "284428", null, "11884", null, "267776", null, "11300", null, "62008", null, "4612", null, "53391", null, "4145", null, "42866", null, "3364", null, "12980", null, "1727", null, "33.1", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "7.1", null, "0.9", null, "7.5", null, "0.9", null, "7.6", null, "0.8", null, "7.3", null, "0.8", null, "8.6", null, "0.9", null, "6.7", null, "0.8", null, "8.2", null, "1.0", null, "7.0", null, "0.8", null, "6.9", null, "0.9", null, "6.5", null, "0.7", null, "5.7", null, "0.7", null, "4.9", null, "0.6", null, "4.9", null, "0.8", null, "4.7", null, "0.7", null, "3.0", null, "0.4", null, "1.7", null, "0.3", null, "1.1", null, "0.3", null, "0.5", null, "0.2", null, "15.1", null, "1.2", null, "4.8", null, "0.7", null, "27.0", null, "1.6", null, "11.1", null, "1.1", null, "44.7", null, "1.3", null, "76.4", null, "1.6", null, "73.0", null, "1.6", null, "68.7", null, "1.6", null, "15.9", null, "1.2", null, "13.7", null, "1.1", null, "11.0", null, "0.9", null, "3.3", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "366034", null, "15930", null, "24625", null, "3994", null, "27984", null, "4821", null, "27866", null, "3412", null, "32844", null, "3716", null, "27762", null, "3314", null, "24529", null, "2831", null, "27869", null, "3179", null, "21827", null, "2854", null, "26767", null, "3590", null, "22600", null, "2593", null, "19877", null, "2715", null, "18814", null, "2355", null, "18530", null, "2916", null, "14816", null, "2100", null, "12042", null, "1752", null, "7808", null, "1432", null, "5534", null, "1315", null, "3940", null, "1059", null, "55850", null, "5868", null, "21057", null, "3276", null, "101532", null, "8622", null, "39549", null, "3831", null, "161598", null, "8927", null, "278476", null, "10836", null, "264502", null, "10209", null, "248012", null, "9785", null, "62670", null, "4069", null, "53037", null, "3144", null, "44140", null, "2950", null, "17282", null, "1767", null, "33.5", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.7", null, "1.0", null, "7.6", null, "1.1", null, "7.6", null, "0.9", null, "9.0", null, "0.9", null, "7.6", null, "0.9", null, "6.7", null, "0.7", null, "7.6", null, "0.8", null, "6.0", null, "0.7", null, "7.3", null, "0.9", null, "6.2", null, "0.7", null, "5.4", null, "0.8", null, "5.1", null, "0.6", null, "5.1", null, "0.8", null, "4.0", null, "0.6", null, "3.3", null, "0.5", null, "2.1", null, "0.4", null, "1.5", null, "0.4", null, "1.1", null, "0.3", null, "15.3", null, "1.2", null, "5.8", null, "0.8", null, "27.7", null, "1.5", null, "10.8", null, "1.0", null, "44.1", null, "1.3", null, "76.1", null, "1.5", null, "72.3", null, "1.5", null, "67.8", null, "1.6", null, "17.1", null, "1.1", null, "14.5", null, "0.9", null, "12.1", null, "0.9", null, "4.7", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "48", "29"], ["5001900US4830", "Congressional District 30 (119th Congress), Texas", "788414", null, "22259", null, "44412", null, "5542", null, "52292", null, "6404", null, "56372", null, "6215", null, "57868", null, "5904", null, "58860", null, "5487", null, "66225", null, "5643", null, "66613", null, "4709", null, "54598", null, "5023", null, "50853", null, "5112", null, "45756", null, "3969", null, "46536", null, "3814", null, "45543", null, "4114", null, "42217", null, "4681", null, "33413", null, "2879", null, "28667", null, "3151", null, "20435", null, "2059", null, "9894", null, "1639", null, "7860", null, "1390", null, "108664", null, "8629", null, "35270", null, "3835", null, "188346", null, "12772", null, "81458", null, "7442", null, "355017", null, "14532", null, "625102", null, "15904", null, "600068", null, "15193", null, "566620", null, "14129", null, "142486", null, "6650", null, "124982", null, "6448", null, "100269", null, "4991", null, "38189", null, "2894", null, "34.3", null, "0.8", null, "95.9", null, "4.1", null, "57.7", null, "3.0", null, "20.1", null, "1.3", null, "37.7", null, "2.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.6", null, "0.6", null, "6.6", null, "0.8", null, "7.2", null, "0.7", null, "7.3", null, "0.7", null, "7.5", null, "0.6", null, "8.4", null, "0.7", null, "8.4", null, "0.6", null, "6.9", null, "0.6", null, "6.5", null, "0.6", null, "5.8", null, "0.5", null, "5.9", null, "0.5", null, "5.8", null, "0.5", null, "5.4", null, "0.6", null, "4.2", null, "0.4", null, "3.6", null, "0.4", null, "2.6", null, "0.3", null, "1.3", null, "0.2", null, "1.0", null, "0.2", null, "13.8", null, "0.9", null, "4.5", null, "0.5", null, "23.9", null, "1.2", null, "10.3", null, "0.8", null, "45.0", null, "1.1", null, "79.3", null, "1.2", null, "76.1", null, "1.2", null, "71.9", null, "1.3", null, "18.1", null, "1.0", null, "15.9", null, "0.9", null, "12.7", null, "0.7", null, "4.8", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "0.7", null, "-888888888.0", "(X)", "385934", null, "14408", null, "23041", null, "4032", null, "24155", null, "4129", null, "28279", null, "4733", null, "29466", null, "3822", null, "30199", null, "4075", null, "33342", null, "3965", null, "33995", null, "3617", null, "27606", null, "4036", null, "24267", null, "3439", null, "22056", null, "2360", null, "22638", null, "2637", null, "22501", null, "2715", null, "20606", null, "3134", null, "16457", null, "1772", null, "11681", null, "1981", null, "8694", null, "1394", null, "4145", null, "1005", null, "2806", null, "711", null, "52434", null, "5431", null, "17126", null, "2619", null, "92601", null, "8420", null, "42539", null, "5002", null, "178875", null, "10844", null, "305999", null, "11277", null, "293333", null, "11093", null, "275226", null, "9917", null, "64389", null, "4030", null, "55731", null, "3934", null, "43783", null, "2969", null, "15645", null, "1636", null, "33.4", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.0", null, "1.0", null, "6.3", null, "1.0", null, "7.3", null, "1.1", null, "7.6", null, "0.9", null, "7.8", null, "0.9", null, "8.6", null, "1.0", null, "8.8", null, "1.0", null, "7.2", null, "1.0", null, "6.3", null, "0.8", null, "5.7", null, "0.6", null, "5.9", null, "0.7", null, "5.8", null, "0.7", null, "5.3", null, "0.9", null, "4.3", null, "0.5", null, "3.0", null, "0.5", null, "2.3", null, "0.4", null, "1.1", null, "0.3", null, "0.7", null, "0.2", null, "13.6", null, "1.2", null, "4.4", null, "0.7", null, "24.0", null, "1.7", null, "11.0", null, "1.1", null, "46.3", null, "1.8", null, "79.3", null, "1.8", null, "76.0", null, "1.7", null, "71.3", null, "1.8", null, "16.7", null, "1.3", null, "14.4", null, "1.2", null, "11.3", null, "0.9", null, "4.1", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "402480", null, "13481", null, "21371", null, "3307", null, "28137", null, "4279", null, "28093", null, "4217", null, "28402", null, "4089", null, "28661", null, "3401", null, "32883", null, "3599", null, "32618", null, "3578", null, "26992", null, "3196", null, "26586", null, "3335", null, "23700", null, "2729", null, "23898", null, "2606", null, "23042", null, "2623", null, "21611", null, "2991", null, "16956", null, "1869", null, "16986", null, "2208", null, "11741", null, "1235", null, "5749", null, "1219", null, "5054", null, "1158", null, "56230", null, "5463", null, "18144", null, "2743", null, "95745", null, "7918", null, "38919", null, "4294", null, "176142", null, "7994", null, "319103", null, "9041", null, "306735", null, "8319", null, "291394", null, "8129", null, "78097", null, "3900", null, "69251", null, "3703", null, "56486", null, "2929", null, "22544", null, "1889", null, "35.2", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.3", null, "0.7", null, "7.0", null, "1.0", null, "7.0", null, "1.0", null, "7.1", null, "0.9", null, "7.1", null, "0.8", null, "8.2", null, "0.8", null, "8.1", null, "0.9", null, "6.7", null, "0.8", null, "6.6", null, "0.8", null, "5.9", null, "0.7", null, "5.9", null, "0.7", null, "5.7", null, "0.7", null, "5.4", null, "0.8", null, "4.2", null, "0.5", null, "4.2", null, "0.6", null, "2.9", null, "0.3", null, "1.4", null, "0.3", null, "1.3", null, "0.3", null, "14.0", null, "1.1", null, "4.5", null, "0.6", null, "23.8", null, "1.4", null, "9.7", null, "1.0", null, "43.8", null, "1.2", null, "79.3", null, "1.4", null, "76.2", null, "1.4", null, "72.4", null, "1.5", null, "19.4", null, "1.1", null, "17.2", null, "1.0", null, "14.0", null, "0.8", null, "5.6", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "48", "30"], ["5001900US4831", "Congressional District 31 (119th Congress), Texas", "901458", null, "9755", null, "56453", null, "3467", null, "61317", null, "4327", null, "62940", null, "3953", null, "60614", null, "3014", null, "55961", null, "3407", null, "57673", null, "3743", null, "67576", null, "3624", null, "68984", null, "4912", null, "71317", null, "5275", null, "56488", null, "3013", null, "52891", null, "2818", null, "45290", null, "3464", null, "46559", null, "3448", null, "45845", null, "3101", null, "33827", null, "2435", null, "27598", null, "2217", null, "16517", null, "1867", null, "13608", null, "1681", null, "124257", null, "4562", null, "37423", null, "2380", null, "218133", null, "5518", null, "79152", null, "3907", null, "382125", null, "7219", null, "708231", null, "8669", null, "683325", null, "7989", null, "648465", null, "7886", null, "183954", null, "5236", null, "164364", null, "4273", null, "137395", null, "3523", null, "57723", null, "2253", null, "37.2", null, "0.5", null, "100.5", null, "1.8", null, "65.1", null, "1.2", null, "25.2", null, "0.7", null, "40.0", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.3", null, "0.4", null, "6.8", null, "0.5", null, "7.0", null, "0.4", null, "6.7", null, "0.3", null, "6.2", null, "0.4", null, "6.4", null, "0.4", null, "7.5", null, "0.4", null, "7.7", null, "0.5", null, "7.9", null, "0.6", null, "6.3", null, "0.3", null, "5.9", null, "0.3", null, "5.0", null, "0.4", null, "5.2", null, "0.4", null, "5.1", null, "0.3", null, "3.8", null, "0.3", null, "3.1", null, "0.2", null, "1.8", null, "0.2", null, "1.5", null, "0.2", null, "13.8", null, "0.5", null, "4.2", null, "0.3", null, "24.2", null, "0.5", null, "8.8", null, "0.4", null, "42.4", null, "0.7", null, "78.6", null, "0.5", null, "75.8", null, "0.5", null, "71.9", null, "0.6", null, "20.4", null, "0.6", null, "18.2", null, "0.5", null, "15.2", null, "0.4", null, "6.4", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.6", null, "-888888888.0", "(X)", "451912", null, "6697", null, "27645", null, "1956", null, "34662", null, "2992", null, "29610", null, "2448", null, "32881", null, "2365", null, "31806", null, "2696", null, "30341", null, "2531", null, "31727", null, "2583", null, "32866", null, "3280", null, "38478", null, "3334", null, "29453", null, "1871", null, "25658", null, "1840", null, "22842", null, "2273", null, "21957", null, "2383", null, "22161", null, "1938", null, "15362", null, "1505", null, "12904", null, "1333", null, "6900", null, "1170", null, "4659", null, "952", null, "64272", null, "3215", null, "19802", null, "1557", null, "111719", null, "4210", null, "44885", null, "3225", null, "198099", null, "4919", null, "353259", null, "5229", null, "340193", null, "4866", null, "319979", null, "4927", null, "83943", null, "3150", null, "73475", null, "2426", null, "61986", null, "2063", null, "24463", null, "1362", null, "36.2", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.1", null, "0.4", null, "7.7", null, "0.6", null, "6.6", null, "0.5", null, "7.3", null, "0.5", null, "7.0", null, "0.6", null, "6.7", null, "0.6", null, "7.0", null, "0.5", null, "7.3", null, "0.7", null, "8.5", null, "0.7", null, "6.5", null, "0.4", null, "5.7", null, "0.4", null, "5.1", null, "0.5", null, "4.9", null, "0.5", null, "4.9", null, "0.4", null, "3.4", null, "0.3", null, "2.9", null, "0.3", null, "1.5", null, "0.3", null, "1.0", null, "0.2", null, "14.2", null, "0.6", null, "4.4", null, "0.3", null, "24.7", null, "0.7", null, "9.9", null, "0.7", null, "43.8", null, "0.8", null, "78.2", null, "0.7", null, "75.3", null, "0.7", null, "70.8", null, "0.9", null, "18.6", null, "0.7", null, "16.3", null, "0.6", null, "13.7", null, "0.5", null, "5.4", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "449546", null, "6027", null, "28808", null, "2460", null, "26655", null, "2865", null, "33330", null, "2828", null, "27733", null, "2130", null, "24155", null, "1770", null, "27332", null, "2156", null, "35849", null, "2343", null, "36118", null, "2938", null, "32839", null, "3217", null, "27035", null, "1784", null, "27233", null, "1835", null, "22448", null, "2319", null, "24602", null, "2199", null, "23684", null, "2053", null, "18465", null, "1781", null, "14694", null, "1626", null, "9617", null, "1426", null, "8949", null, "1279", null, "59985", null, "3167", null, "17621", null, "1516", null, "106414", null, "3904", null, "34267", null, "1969", null, "184026", null, "4240", null, "354972", null, "5214", null, "343132", null, "4863", null, "328486", null, "4899", null, "100011", null, "2975", null, "90889", null, "2601", null, "75409", null, "2120", null, "33260", null, "1463", null, "37.9", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.4", null, "0.5", null, "5.9", null, "0.6", null, "7.4", null, "0.6", null, "6.2", null, "0.5", null, "5.4", null, "0.4", null, "6.1", null, "0.5", null, "8.0", null, "0.5", null, "8.0", null, "0.6", null, "7.3", null, "0.7", null, "6.0", null, "0.4", null, "6.1", null, "0.4", null, "5.0", null, "0.5", null, "5.5", null, "0.5", null, "5.3", null, "0.4", null, "4.1", null, "0.4", null, "3.3", null, "0.4", null, "2.1", null, "0.3", null, "2.0", null, "0.3", null, "13.3", null, "0.6", null, "3.9", null, "0.3", null, "23.7", null, "0.7", null, "7.6", null, "0.4", null, "40.9", null, "0.8", null, "79.0", null, "0.8", null, "76.3", null, "0.7", null, "73.1", null, "0.8", null, "22.2", null, "0.6", null, "20.2", null, "0.5", null, "16.8", null, "0.4", null, "7.4", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "48", "31"], ["5001900US4832", "Congressional District 32 (119th Congress), Texas", "765626", null, "24585", null, "54537", null, "6780", null, "45083", null, "6957", null, "43730", null, "5127", null, "47291", null, "5352", null, "65725", null, "5757", null, "81427", null, "6807", null, "68415", null, "5486", null, "63659", null, "6338", null, "54218", null, "6801", null, "42835", null, "4968", null, "42430", null, "4585", null, "39734", null, "4219", null, "34233", null, "4026", null, "26893", null, "2856", null, "20849", null, "2727", null, "14527", null, "1932", null, "11144", null, "1602", null, "8896", null, "1661", null, "88813", null, "9436", null, "29033", null, "3564", null, "172383", null, "14035", null, "83983", null, "6839", null, "380735", null, "15589", null, "613681", null, "18403", null, "593243", null, "17760", null, "564315", null, "16817", null, "116542", null, "6171", null, "101186", null, "5511", null, "82309", null, "4696", null, "34567", null, "2908", null, "33.1", null, "0.8", null, "99.5", null, "4.2", null, "49.8", null, "3.2", null, "16.1", null, "1.1", null, "33.7", null, "2.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "7.1", null, "0.8", null, "5.9", null, "0.8", null, "5.7", null, "0.6", null, "6.2", null, "0.6", null, "8.6", null, "0.7", null, "10.6", null, "0.8", null, "8.9", null, "0.7", null, "8.3", null, "0.8", null, "7.1", null, "0.8", null, "5.6", null, "0.7", null, "5.5", null, "0.6", null, "5.2", null, "0.5", null, "4.5", null, "0.5", null, "3.5", null, "0.4", null, "2.7", null, "0.4", null, "1.9", null, "0.3", null, "1.5", null, "0.2", null, "1.2", null, "0.2", null, "11.6", null, "1.1", null, "3.8", null, "0.4", null, "22.5", null, "1.4", null, "11.0", null, "0.8", null, "49.7", null, "1.3", null, "80.2", null, "1.4", null, "77.5", null, "1.4", null, "73.7", null, "1.4", null, "15.2", null, "0.9", null, "13.2", null, "0.8", null, "10.8", null, "0.7", null, "4.5", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.3", null, "-888888888.0", "(X)", "381901", null, "15316", null, "31069", null, "4955", null, "24952", null, "4972", null, "23593", null, "4145", null, "22429", null, "3242", null, "31272", null, "3772", null, "40502", null, "5028", null, "36427", null, "3592", null, "33339", null, "4697", null, "27061", null, "4392", null, "20617", null, "3199", null, "20304", null, "2526", null, "21458", null, "2829", null, "13873", null, "2146", null, "12750", null, "2070", null, "9991", null, "1575", null, "4657", null, "954", null, "4409", null, "876", null, "3198", null, "1001", null, "48545", null, "6404", null, "12946", null, "2327", null, "92560", null, "9359", null, "40755", null, "4800", null, "191030", null, "10112", null, "297907", null, "12462", null, "289341", null, "12665", null, "275171", null, "11799", null, "48878", null, "3544", null, "42639", null, "3255", null, "35005", null, "2927", null, "12264", null, "1675", null, "32.3", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "8.1", null, "1.2", null, "6.5", null, "1.2", null, "6.2", null, "1.1", null, "5.9", null, "0.8", null, "8.2", null, "1.0", null, "10.6", null, "1.2", null, "9.5", null, "0.9", null, "8.7", null, "1.2", null, "7.1", null, "1.1", null, "5.4", null, "0.8", null, "5.3", null, "0.6", null, "5.6", null, "0.7", null, "3.6", null, "0.6", null, "3.3", null, "0.6", null, "2.6", null, "0.4", null, "1.2", null, "0.3", null, "1.2", null, "0.2", null, "0.8", null, "0.3", null, "12.7", null, "1.5", null, "3.4", null, "0.6", null, "24.2", null, "2.1", null, "10.7", null, "1.2", null, "50.0", null, "1.8", null, "78.0", null, "2.0", null, "75.8", null, "2.1", null, "72.1", null, "2.0", null, "12.8", null, "1.0", null, "11.2", null, "0.9", null, "9.2", null, "0.8", null, "3.2", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "383725", null, "13952", null, "23468", null, "3952", null, "20131", null, "3512", null, "20137", null, "3264", null, "24862", null, "3917", null, "34453", null, "3648", null, "40925", null, "3869", null, "31988", null, "4287", null, "30320", null, "3305", null, "27157", null, "4006", null, "22218", null, "2815", null, "22126", null, "2996", null, "18276", null, "2380", null, "20360", null, "2952", null, "14143", null, "1766", null, "10858", null, "1922", null, "9870", null, "1702", null, "6735", null, "1377", null, "5698", null, "1247", null, "40268", null, "5105", null, "16087", null, "2758", null, "79823", null, "7069", null, "43228", null, "3965", null, "189705", null, "10286", null, "315774", null, "10851", null, "303902", null, "10227", null, "289144", null, "9778", null, "67664", null, "3944", null, "58547", null, "3590", null, "47304", null, "3030", null, "22303", null, "2186", null, "34.3", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.1", null, "1.0", null, "5.2", null, "0.9", null, "5.2", null, "0.8", null, "6.5", null, "1.0", null, "9.0", null, "0.9", null, "10.7", null, "0.9", null, "8.3", null, "1.0", null, "7.9", null, "0.8", null, "7.1", null, "1.0", null, "5.8", null, "0.8", null, "5.8", null, "0.8", null, "4.8", null, "0.6", null, "5.3", null, "0.8", null, "3.7", null, "0.4", null, "2.8", null, "0.5", null, "2.6", null, "0.4", null, "1.8", null, "0.4", null, "1.5", null, "0.3", null, "10.5", null, "1.1", null, "4.2", null, "0.7", null, "20.8", null, "1.4", null, "11.3", null, "0.9", null, "49.4", null, "1.6", null, "82.3", null, "1.5", null, "79.2", null, "1.4", null, "75.4", null, "1.5", null, "17.6", null, "1.1", null, "15.3", null, "1.0", null, "12.3", null, "0.8", null, "5.8", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "48", "32"], ["5001900US4833", "Congressional District 33 (119th Congress), Texas", "790618", null, "25758", null, "56511", null, "6322", null, "57654", null, "6317", null, "57565", null, "6427", null, "59615", null, "4791", null, "60752", null, "5597", null, "71078", null, "6504", null, "68847", null, "7322", null, "53096", null, "4696", null, "51522", null, "5607", null, "45844", null, "4338", null, "44608", null, "4680", null, "36935", null, "3640", null, "38308", null, "4142", null, "30539", null, "3064", null, "25328", null, "2968", null, "15303", null, "2517", null, "9282", null, "1838", null, "7831", null, "2200", null, "115219", null, "9137", null, "34363", null, "3611", null, "206093", null, "13933", null, "86004", null, "6279", null, "364910", null, "14716", null, "606943", null, "19058", null, "584525", null, "18301", null, "549170", null, "18243", null, "126591", null, "6216", null, "110800", null, "6321", null, "88283", null, "5560", null, "32416", null, "3156", null, "32.3", null, "0.7", null, "101.7", null, "3.9", null, "59.3", null, "3.0", null, "17.8", null, "1.3", null, "41.5", null, "2.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "7.1", null, "0.7", null, "7.3", null, "0.7", null, "7.3", null, "0.8", null, "7.5", null, "0.6", null, "7.7", null, "0.7", null, "9.0", null, "0.8", null, "8.7", null, "0.8", null, "6.7", null, "0.6", null, "6.5", null, "0.7", null, "5.8", null, "0.5", null, "5.6", null, "0.5", null, "4.7", null, "0.4", null, "4.8", null, "0.5", null, "3.9", null, "0.4", null, "3.2", null, "0.4", null, "1.9", null, "0.3", null, "1.2", null, "0.2", null, "1.0", null, "0.3", null, "14.6", null, "1.0", null, "4.3", null, "0.4", null, "26.1", null, "1.3", null, "10.9", null, "0.7", null, "46.2", null, "1.1", null, "76.8", null, "1.2", null, "73.9", null, "1.3", null, "69.5", null, "1.3", null, "16.0", null, "0.9", null, "14.0", null, "0.9", null, "11.2", null, "0.8", null, "4.1", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.1", null, "-888888888.0", "(X)", "398731", null, "14927", null, "28022", null, "3892", null, "27571", null, "4095", null, "32153", null, "4317", null, "31460", null, "3627", null, "30682", null, "3752", null, "34139", null, "3953", null, "36554", null, "4033", null, "27644", null, "2871", null, "25142", null, "3125", null, "22772", null, "2895", null, "23593", null, "3178", null, "18565", null, "2366", null, "19195", null, "2950", null, "14404", null, "1828", null, "12273", null, "1875", null, "6430", null, "1501", null, "4453", null, "1155", null, "3679", null, "1457", null, "59724", null, "6101", null, "17447", null, "2857", null, "105193", null, "8580", null, "44695", null, "4171", null, "185621", null, "8739", null, "303631", null, "11517", null, "293538", null, "11338", null, "273632", null, "11041", null, "60434", null, "4119", null, "53147", null, "3808", null, "41239", null, "3218", null, "14562", null, "1857", null, "32.1", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "7.0", null, "0.9", null, "6.9", null, "0.9", null, "8.1", null, "1.0", null, "7.9", null, "0.9", null, "7.7", null, "0.9", null, "8.6", null, "1.0", null, "9.2", null, "0.9", null, "6.9", null, "0.7", null, "6.3", null, "0.8", null, "5.7", null, "0.7", null, "5.9", null, "0.7", null, "4.7", null, "0.6", null, "4.8", null, "0.7", null, "3.6", null, "0.5", null, "3.1", null, "0.5", null, "1.6", null, "0.4", null, "1.1", null, "0.3", null, "0.9", null, "0.4", null, "15.0", null, "1.3", null, "4.4", null, "0.7", null, "26.4", null, "1.7", null, "11.2", null, "0.9", null, "46.6", null, "1.3", null, "76.1", null, "1.6", null, "73.6", null, "1.7", null, "68.6", null, "1.7", null, "15.2", null, "1.1", null, "13.3", null, "1.0", null, "10.3", null, "0.8", null, "3.7", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "391887", null, "14914", null, "28489", null, "4168", null, "30083", null, "4222", null, "25412", null, "4048", null, "28155", null, "3406", null, "30070", null, "3779", null, "36939", null, "4529", null, "32293", null, "4764", null, "25452", null, "3118", null, "26380", null, "3694", null, "23072", null, "2960", null, "21015", null, "2742", null, "18370", null, "2440", null, "19113", null, "2535", null, "16135", null, "2079", null, "13055", null, "2112", null, "8873", null, "1757", null, "4829", null, "1386", null, "4152", null, "1110", null, "55495", null, "5761", null, "16916", null, "2540", null, "100900", null, "8286", null, "41309", null, "4394", null, "179289", null, "9304", null, "303312", null, "10719", null, "290987", null, "9860", null, "275538", null, "9837", null, "66157", null, "3570", null, "57653", null, "3949", null, "47044", null, "3329", null, "17854", null, "2080", null, "32.5", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "7.3", null, "1.0", null, "7.7", null, "1.0", null, "6.5", null, "1.0", null, "7.2", null, "0.8", null, "7.7", null, "0.9", null, "9.4", null, "1.1", null, "8.2", null, "1.1", null, "6.5", null, "0.8", null, "6.7", null, "0.9", null, "5.9", null, "0.7", null, "5.4", null, "0.6", null, "4.7", null, "0.6", null, "4.9", null, "0.7", null, "4.1", null, "0.6", null, "3.3", null, "0.5", null, "2.3", null, "0.5", null, "1.2", null, "0.3", null, "1.1", null, "0.3", null, "14.2", null, "1.2", null, "4.3", null, "0.6", null, "25.7", null, "1.5", null, "10.5", null, "1.1", null, "45.8", null, "1.5", null, "77.4", null, "1.4", null, "74.3", null, "1.5", null, "70.3", null, "1.6", null, "16.9", null, "1.1", null, "14.7", null, "1.2", null, "12.0", null, "0.9", null, "4.6", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "48", "33"], ["5001900US4834", "Congressional District 34 (119th Congress), Texas", "796178", null, "13904", null, "56418", null, "3501", null, "58384", null, "4576", null, "66394", null, "4702", null, "72284", null, "3120", null, "64396", null, "3544", null, "55531", null, "3689", null, "48814", null, "3056", null, "49168", null, "4152", null, "48842", null, "3944", null, "44848", null, "2388", null, "44610", null, "2363", null, "36113", null, "2728", null, "38859", null, "2573", null, "33021", null, "2899", null, "28461", null, "2178", null, "24245", null, "2407", null, "12842", null, "1653", null, "12948", null, "1755", null, "124778", null, "5912", null, "41904", null, "2025", null, "223100", null, "8280", null, "94776", null, "4089", null, "339035", null, "7943", null, "602344", null, "9387", null, "573078", null, "8802", null, "530514", null, "8297", null, "150376", null, "4333", null, "135018", null, "4104", null, "111517", null, "3367", null, "50035", null, "2258", null, "32.5", null, "0.6", null, "98.7", null, "2.1", null, "72.5", null, "2.0", null, "24.2", null, "0.9", null, "48.3", null, "1.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "7.1", null, "0.4", null, "7.3", null, "0.6", null, "8.3", null, "0.5", null, "9.1", null, "0.4", null, "8.1", null, "0.4", null, "7.0", null, "0.5", null, "6.1", null, "0.4", null, "6.2", null, "0.5", null, "6.1", null, "0.5", null, "5.6", null, "0.3", null, "5.6", null, "0.3", null, "4.5", null, "0.3", null, "4.9", null, "0.3", null, "4.1", null, "0.4", null, "3.6", null, "0.3", null, "3.0", null, "0.3", null, "1.6", null, "0.2", null, "1.6", null, "0.2", null, "15.7", null, "0.6", null, "5.3", null, "0.2", null, "28.0", null, "0.7", null, "11.9", null, "0.5", null, "42.6", null, "0.6", null, "75.7", null, "0.7", null, "72.0", null, "0.7", null, "66.6", null, "0.7", null, "18.9", null, "0.6", null, "17.0", null, "0.6", null, "14.0", null, "0.5", null, "6.3", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "0.7", null, "-888888888.0", "(X)", "395579", null, "7644", null, "27068", null, "2000", null, "30961", null, "2716", null, "34909", null, "3019", null, "37044", null, "2239", null, "32803", null, "2330", null, "29733", null, "2507", null, "25049", null, "2068", null, "25480", null, "2882", null, "25061", null, "2598", null, "22172", null, "1658", null, "20997", null, "1543", null, "16197", null, "1597", null, "19183", null, "1696", null, "15126", null, "1637", null, "12103", null, "1419", null, "11099", null, "1357", null, "6156", null, "1136", null, "4438", null, "958", null, "65870", null, "3235", null, "21307", null, "1502", null, "114245", null, "4638", null, "48540", null, "2612", null, "175170", null, "4981", null, "296821", null, "5537", null, "281334", null, "5349", null, "261103", null, "5030", null, "68105", null, "2329", null, "60429", null, "2313", null, "48922", null, "2021", null, "21693", null, "1247", null, "31.0", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.8", null, "0.5", null, "7.8", null, "0.7", null, "8.8", null, "0.7", null, "9.4", null, "0.5", null, "8.3", null, "0.6", null, "7.5", null, "0.6", null, "6.3", null, "0.5", null, "6.4", null, "0.7", null, "6.3", null, "0.6", null, "5.6", null, "0.4", null, "5.3", null, "0.4", null, "4.1", null, "0.4", null, "4.8", null, "0.4", null, "3.8", null, "0.4", null, "3.1", null, "0.4", null, "2.8", null, "0.4", null, "1.6", null, "0.3", null, "1.1", null, "0.2", null, "16.7", null, "0.7", null, "5.4", null, "0.4", null, "28.9", null, "0.9", null, "12.3", null, "0.6", null, "44.3", null, "0.8", null, "75.0", null, "0.8", null, "71.1", null, "0.9", null, "66.0", null, "0.9", null, "17.2", null, "0.6", null, "15.3", null, "0.6", null, "12.4", null, "0.5", null, "5.5", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "400599", null, "8592", null, "29350", null, "2689", null, "27423", null, "3007", null, "31485", null, "2678", null, "35240", null, "2222", null, "31593", null, "2120", null, "25798", null, "2443", null, "23765", null, "1700", null, "23688", null, "2380", null, "23781", null, "2272", null, "22676", null, "1394", null, "23613", null, "1346", null, "19916", null, "1804", null, "19676", null, "1816", null, "17895", null, "1863", null, "16358", null, "1425", null, "13146", null, "1540", null, "6686", null, "1208", null, "8510", null, "1321", null, "58908", null, "3596", null, "20597", null, "1585", null, "108855", null, "5239", null, "46236", null, "2496", null, "163865", null, "4787", null, "305523", null, "5872", null, "291744", null, "5282", null, "269411", null, "5080", null, "82271", null, "2867", null, "74589", null, "2632", null, "62595", null, "1906", null, "28342", null, "1549", null, "34.2", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "7.3", null, "0.6", null, "6.8", null, "0.7", null, "7.9", null, "0.6", null, "8.8", null, "0.5", null, "7.9", null, "0.5", null, "6.4", null, "0.6", null, "5.9", null, "0.4", null, "5.9", null, "0.6", null, "5.9", null, "0.5", null, "5.7", null, "0.3", null, "5.9", null, "0.4", null, "5.0", null, "0.4", null, "4.9", null, "0.4", null, "4.5", null, "0.5", null, "4.1", null, "0.3", null, "3.3", null, "0.4", null, "1.7", null, "0.3", null, "2.1", null, "0.3", null, "14.7", null, "0.8", null, "5.1", null, "0.4", null, "27.2", null, "0.9", null, "11.5", null, "0.6", null, "40.9", null, "0.7", null, "76.3", null, "0.9", null, "72.8", null, "0.9", null, "67.3", null, "1.0", null, "20.5", null, "0.8", null, "18.6", null, "0.7", null, "15.6", null, "0.5", null, "7.1", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "48", "34"], ["5001900US4835", "Congressional District 35 (119th Congress), Texas", "873155", null, "26656", null, "54115", null, "4706", null, "52489", null, "5806", null, "53651", null, "5931", null, "62163", null, "5863", null, "74092", null, "5439", null, "77902", null, "5873", null, "89448", null, "6899", null, "75164", null, "6643", null, "65910", null, "7168", null, "50545", null, "4798", null, "51490", null, "4551", null, "45497", null, "4784", null, "39794", null, "4308", null, "28729", null, "2592", null, "20743", null, "2753", null, "16709", null, "2488", null, "8899", null, "1910", null, "5815", null, "1266", null, "106140", null, "9565", null, "32481", null, "4128", null, "192736", null, "12943", null, "103774", null, "6254", null, "444679", null, "15124", null, "703466", null, "19203", null, "680419", null, "18355", null, "637015", null, "17862", null, "120689", null, "6792", null, "105748", null, "6543", null, "80895", null, "5114", null, "31423", null, "3242", null, "33.3", null, "0.7", null, "102.4", null, "3.8", null, "45.6", null, "2.1", null, "13.5", null, "0.9", null, "32.1", null, "1.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.2", null, "0.5", null, "6.0", null, "0.6", null, "6.1", null, "0.6", null, "7.1", null, "0.6", null, "8.5", null, "0.6", null, "8.9", null, "0.7", null, "10.2", null, "0.7", null, "8.6", null, "0.7", null, "7.5", null, "0.8", null, "5.8", null, "0.5", null, "5.9", null, "0.5", null, "5.2", null, "0.5", null, "4.6", null, "0.5", null, "3.3", null, "0.3", null, "2.4", null, "0.3", null, "1.9", null, "0.3", null, "1.0", null, "0.2", null, "0.7", null, "0.1", null, "12.2", null, "0.9", null, "3.7", null, "0.4", null, "22.1", null, "1.0", null, "11.9", null, "0.7", null, "50.9", null, "1.1", null, "80.6", null, "1.0", null, "77.9", null, "1.0", null, "73.0", null, "1.1", null, "13.8", null, "0.8", null, "12.1", null, "0.7", null, "9.3", null, "0.6", null, "3.6", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.2", null, "-888888888.0", "(X)", "1.6", null, "-888888888.0", "(X)", "441661", null, "14883", null, "27806", null, "3532", null, "24826", null, "3448", null, "28425", null, "3955", null, "31492", null, "4016", null, "34875", null, "3168", null, "38472", null, "4264", null, "48550", null, "4985", null, "38440", null, "4130", null, "34982", null, "4973", null, "28312", null, "3316", null, "26617", null, "3340", null, "21675", null, "3366", null, "20699", null, "3376", null, "13509", null, "2053", null, "10360", null, "2070", null, "7354", null, "1551", null, "3018", null, "1081", null, "2249", null, "605", null, "53251", null, "5839", null, "16920", null, "2961", null, "97977", null, "7563", null, "49447", null, "3846", null, "226811", null, "9888", null, "355789", null, "11524", null, "343684", null, "11407", null, "322547", null, "11736", null, "57189", null, "4200", null, "49147", null, "4067", null, "36490", null, "3017", null, "12621", null, "1782", null, "33.4", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.3", null, "0.8", null, "5.6", null, "0.7", null, "6.4", null, "0.8", null, "7.1", null, "0.9", null, "7.9", null, "0.7", null, "8.7", null, "0.9", null, "11.0", null, "1.0", null, "8.7", null, "0.9", null, "7.9", null, "1.1", null, "6.4", null, "0.7", null, "6.0", null, "0.7", null, "4.9", null, "0.7", null, "4.7", null, "0.8", null, "3.1", null, "0.5", null, "2.3", null, "0.5", null, "1.7", null, "0.3", null, "0.7", null, "0.2", null, "0.5", null, "0.1", null, "12.1", null, "1.1", null, "3.8", null, "0.7", null, "22.2", null, "1.3", null, "11.2", null, "0.9", null, "51.4", null, "1.5", null, "80.6", null, "1.3", null, "77.8", null, "1.3", null, "73.0", null, "1.6", null, "12.9", null, "0.9", null, "11.1", null, "0.9", null, "8.3", null, "0.7", null, "2.9", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "431494", null, "16276", null, "26309", null, "3183", null, "27663", null, "3797", null, "25226", null, "3751", null, "30671", null, "3774", null, "39217", null, "4371", null, "39430", null, "3561", null, "40898", null, "3861", null, "36724", null, "4022", null, "30928", null, "4480", null, "22233", null, "3081", null, "24873", null, "3255", null, "23822", null, "3109", null, "19095", null, "2309", null, "15220", null, "1733", null, "10383", null, "1553", null, "9355", null, "1583", null, "5881", null, "1535", null, "3566", null, "1041", null, "52889", null, "5637", null, "15561", null, "2805", null, "94759", null, "8103", null, "54327", null, "4693", null, "217868", null, "8671", null, "347677", null, "11964", null, "336735", null, "11607", null, "314468", null, "10722", null, "63500", null, "4118", null, "56601", null, "3958", null, "44405", null, "3463", null, "18802", null, "2406", null, "33.2", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.1", null, "0.7", null, "6.4", null, "0.8", null, "5.8", null, "0.8", null, "7.1", null, "0.8", null, "9.1", null, "1.0", null, "9.1", null, "0.9", null, "9.5", null, "0.9", null, "8.5", null, "0.9", null, "7.2", null, "1.0", null, "5.2", null, "0.7", null, "5.8", null, "0.7", null, "5.5", null, "0.7", null, "4.4", null, "0.5", null, "3.5", null, "0.4", null, "2.4", null, "0.4", null, "2.2", null, "0.4", null, "1.4", null, "0.4", null, "0.8", null, "0.2", null, "12.3", null, "1.1", null, "3.6", null, "0.6", null, "22.0", null, "1.4", null, "12.6", null, "1.0", null, "50.5", null, "1.2", null, "80.6", null, "1.2", null, "78.0", null, "1.4", null, "72.9", null, "1.4", null, "14.7", null, "0.9", null, "13.1", null, "0.9", null, "10.3", null, "0.8", null, "4.4", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "48", "35"], ["5001900US4836", "Congressional District 36 (119th Congress), Texas", "816162", null, "18106", null, "48407", null, "5359", null, "64148", null, "6171", null, "57260", null, "5465", null, "59374", null, "5174", null, "55159", null, "6590", null, "53012", null, "5169", null, "58261", null, "5941", null, "52603", null, "5155", null, "54768", null, "5022", null, "49916", null, "4858", null, "45960", null, "4671", null, "47196", null, "4410", null, "49372", null, "4420", null, "40618", null, "3846", null, "30642", null, "3140", null, "24746", null, "2286", null, "14425", null, "1978", null, "10295", null, "1567", null, "121408", null, "8439", null, "35793", null, "3452", null, "205608", null, "9885", null, "78740", null, "7360", null, "333177", null, "10678", null, "633550", null, "14452", null, "610554", null, "13840", null, "577163", null, "12965", null, "170098", null, "6387", null, "147025", null, "6089", null, "120726", null, "5039", null, "49466", null, "2963", null, "36.2", null, "0.7", null, "97.5", null, "3.7", null, "66.6", null, "2.8", null, "24.6", null, "1.3", null, "42.0", null, "2.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.9", null, "0.6", null, "7.9", null, "0.7", null, "7.0", null, "0.7", null, "7.3", null, "0.6", null, "6.8", null, "0.8", null, "6.5", null, "0.6", null, "7.1", null, "0.7", null, "6.4", null, "0.6", null, "6.7", null, "0.6", null, "6.1", null, "0.6", null, "5.6", null, "0.6", null, "5.8", null, "0.5", null, "6.0", null, "0.5", null, "5.0", null, "0.5", null, "3.8", null, "0.4", null, "3.0", null, "0.3", null, "1.8", null, "0.2", null, "1.3", null, "0.2", null, "14.9", null, "1.0", null, "4.4", null, "0.4", null, "25.2", null, "0.9", null, "9.6", null, "0.8", null, "40.8", null, "0.8", null, "77.6", null, "0.9", null, "74.8", null, "0.9", null, "70.7", null, "1.0", null, "20.8", null, "0.8", null, "18.0", null, "0.8", null, "14.8", null, "0.7", null, "6.1", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.3", null, "-888888888.0", "(X)", "402984", null, "11552", null, "23697", null, "4362", null, "34211", null, "4471", null, "30025", null, "4348", null, "30326", null, "3979", null, "30255", null, "4657", null, "25835", null, "3329", null, "27395", null, "3739", null, "25508", null, "3363", null, "29405", null, "3028", null, "24473", null, "3443", null, "21510", null, "2977", null, "23276", null, "3057", null, "23456", null, "2942", null, "18304", null, "2271", null, "15264", null, "1916", null, "10462", null, "1540", null, "5637", null, "1126", null, "3945", null, "914", null, "64236", null, "6529", null, "17121", null, "2493", null, "105054", null, "7100", null, "43460", null, "5388", null, "168724", null, "7355", null, "308417", null, "9325", null, "297930", null, "8767", null, "280100", null, "8542", null, "77068", null, "3652", null, "65631", null, "3258", null, "53612", null, "2687", null, "20044", null, "1565", null, "35.0", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.9", null, "1.0", null, "8.5", null, "1.0", null, "7.5", null, "1.1", null, "7.5", null, "0.9", null, "7.5", null, "1.1", null, "6.4", null, "0.8", null, "6.8", null, "0.9", null, "6.3", null, "0.8", null, "7.3", null, "0.8", null, "6.1", null, "0.9", null, "5.3", null, "0.7", null, "5.8", null, "0.7", null, "5.8", null, "0.7", null, "4.5", null, "0.6", null, "3.8", null, "0.5", null, "2.6", null, "0.4", null, "1.4", null, "0.3", null, "1.0", null, "0.2", null, "15.9", null, "1.5", null, "4.2", null, "0.6", null, "26.1", null, "1.4", null, "10.8", null, "1.2", null, "41.9", null, "1.3", null, "76.5", null, "1.4", null, "73.9", null, "1.4", null, "69.5", null, "1.6", null, "19.1", null, "1.0", null, "16.3", null, "0.8", null, "13.3", null, "0.7", null, "5.0", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "413178", null, "12453", null, "24710", null, "4073", null, "29937", null, "4228", null, "27235", null, "3392", null, "29048", null, "3738", null, "24904", null, "3984", null, "27177", null, "3418", null, "30866", null, "3679", null, "27095", null, "3579", null, "25363", null, "3560", null, "25443", null, "3355", null, "24450", null, "2816", null, "23920", null, "2828", null, "25916", null, "3132", null, "22314", null, "2372", null, "15378", null, "2131", null, "14284", null, "1536", null, "8788", null, "1655", null, "6350", null, "1291", null, "57172", null, "5011", null, "18672", null, "2624", null, "100554", null, "7792", null, "35280", null, "4342", null, "164453", null, "7372", null, "325133", null, "9355", null, "312624", null, "8994", null, "297063", null, "8501", null, "93030", null, "4630", null, "81394", null, "4321", null, "67114", null, "3713", null, "29422", null, "2189", null, "37.6", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.0", null, "0.9", null, "7.2", null, "1.0", null, "6.6", null, "0.8", null, "7.0", null, "0.8", null, "6.0", null, "0.9", null, "6.6", null, "0.8", null, "7.5", null, "0.9", null, "6.6", null, "0.8", null, "6.1", null, "0.8", null, "6.2", null, "0.8", null, "5.9", null, "0.7", null, "5.8", null, "0.7", null, "6.3", null, "0.8", null, "5.4", null, "0.6", null, "3.7", null, "0.5", null, "3.5", null, "0.4", null, "2.1", null, "0.4", null, "1.5", null, "0.3", null, "13.8", null, "1.1", null, "4.5", null, "0.6", null, "24.3", null, "1.5", null, "8.5", null, "1.0", null, "39.8", null, "1.2", null, "78.7", null, "1.5", null, "75.7", null, "1.5", null, "71.9", null, "1.5", null, "22.5", null, "1.1", null, "19.7", null, "1.1", null, "16.2", null, "0.9", null, "7.1", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "48", "36"], ["5001900US4837", "Congressional District 37 (119th Congress), Texas", "775784", null, "15023", null, "37354", null, "4097", null, "38632", null, "4933", null, "33305", null, "4024", null, "45122", null, "4090", null, "56306", null, "4919", null, "85139", null, "4974", null, "86934", null, "5137", null, "73315", null, "6350", null, "59330", null, "5739", null, "54076", null, "4104", null, "43742", null, "3816", null, "34878", null, "2994", null, "33411", null, "3584", null, "30501", null, "3151", null, "27100", null, "2952", null, "16344", null, "2228", null, "11374", null, "1752", null, "8921", null, "1631", null, "71937", null, "6445", null, "22968", null, "3020", null, "132259", null, "8708", null, "78460", null, "5373", null, "406146", null, "8410", null, "658560", null, "11846", null, "643525", null, "12018", null, "612016", null, "11875", null, "127651", null, "6454", null, "114066", null, "6030", null, "94240", null, "5413", null, "36639", null, "2826", null, "35.3", null, "0.5", null, "105.8", null, "3.0", null, "41.2", null, "1.7", null, "17.2", null, "1.1", null, "24.1", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.8", null, "0.5", null, "5.0", null, "0.6", null, "4.3", null, "0.5", null, "5.8", null, "0.5", null, "7.3", null, "0.6", null, "11.0", null, "0.7", null, "11.2", null, "0.7", null, "9.5", null, "0.8", null, "7.6", null, "0.7", null, "7.0", null, "0.5", null, "5.6", null, "0.5", null, "4.5", null, "0.4", null, "4.3", null, "0.4", null, "3.9", null, "0.4", null, "3.5", null, "0.4", null, "2.1", null, "0.3", null, "1.5", null, "0.2", null, "1.1", null, "0.2", null, "9.3", null, "0.8", null, "3.0", null, "0.4", null, "17.0", null, "1.0", null, "10.1", null, "0.7", null, "52.4", null, "0.7", null, "84.9", null, "0.9", null, "83.0", null, "1.0", null, "78.9", null, "1.0", null, "16.5", null, "0.8", null, "14.7", null, "0.8", null, "12.1", null, "0.7", null, "4.7", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "3.7", null, "-888888888.0", "(X)", "398880", null, "8137", null, "18783", null, "2619", null, "21182", null, "3086", null, "17863", null, "2416", null, "22264", null, "2993", null, "29498", null, "3352", null, "44306", null, "3445", null, "45757", null, "3686", null, "38658", null, "4315", null, "33935", null, "3816", null, "26021", null, "2747", null, "22749", null, "2510", null, "18005", null, "2474", null, "17780", null, "2470", null, "14106", null, "1848", null, "11977", null, "1957", null, "6714", null, "1144", null, "5890", null, "1225", null, "3392", null, "847", null, "39045", null, "3698", null, "12336", null, "2489", null, "70164", null, "4958", null, "39426", null, "4199", null, "214418", null, "6139", null, "336514", null, "7331", null, "328716", null, "7544", null, "314265", null, "6642", null, "59859", null, "3794", null, "52245", null, "3677", null, "42079", null, "3148", null, "15996", null, "1487", null, "35.0", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.7", null, "0.7", null, "5.3", null, "0.8", null, "4.5", null, "0.6", null, "5.6", null, "0.7", null, "7.4", null, "0.8", null, "11.1", null, "0.9", null, "11.5", null, "0.9", null, "9.7", null, "1.1", null, "8.5", null, "1.0", null, "6.5", null, "0.7", null, "5.7", null, "0.6", null, "4.5", null, "0.6", null, "4.5", null, "0.6", null, "3.5", null, "0.5", null, "3.0", null, "0.5", null, "1.7", null, "0.3", null, "1.5", null, "0.3", null, "0.9", null, "0.2", null, "9.8", null, "0.9", null, "3.1", null, "0.6", null, "17.6", null, "1.1", null, "9.9", null, "1.0", null, "53.8", null, "1.3", null, "84.4", null, "1.0", null, "82.4", null, "1.1", null, "78.8", null, "1.2", null, "15.0", null, "0.9", null, "13.1", null, "0.9", null, "10.5", null, "0.8", null, "4.0", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "376904", null, "10360", null, "18571", null, "2807", null, "17450", null, "3385", null, "15442", null, "2810", null, "22858", null, "2303", null, "26808", null, "2911", null, "40833", null, "3335", null, "41177", null, "2911", null, "34657", null, "3830", null, "25395", null, "3172", null, "28055", null, "2715", null, "20993", null, "2553", null, "16873", null, "1787", null, "15631", null, "2076", null, "16395", null, "2109", null, "15123", null, "1899", null, "9630", null, "1586", null, "5484", null, "1118", null, "5529", null, "1120", null, "32892", null, "4156", null, "10632", null, "1754", null, "62095", null, "5849", null, "39034", null, "3084", null, "191728", null, "6272", null, "322046", null, "8169", null, "314809", null, "8243", null, "297751", null, "8093", null, "67792", null, "3752", null, "61821", null, "3409", null, "52161", null, "3009", null, "20643", null, "1820", null, "35.8", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.9", null, "0.7", null, "4.6", null, "0.9", null, "4.1", null, "0.7", null, "6.1", null, "0.6", null, "7.1", null, "0.7", null, "10.8", null, "0.9", null, "10.9", null, "0.7", null, "9.2", null, "1.0", null, "6.7", null, "0.8", null, "7.4", null, "0.7", null, "5.6", null, "0.6", null, "4.5", null, "0.5", null, "4.1", null, "0.6", null, "4.3", null, "0.6", null, "4.0", null, "0.5", null, "2.6", null, "0.4", null, "1.5", null, "0.3", null, "1.5", null, "0.3", null, "8.7", null, "1.0", null, "2.8", null, "0.5", null, "16.5", null, "1.3", null, "10.4", null, "0.8", null, "50.9", null, "1.1", null, "85.4", null, "1.2", null, "83.5", null, "1.3", null, "79.0", null, "1.3", null, "18.0", null, "1.1", null, "16.4", null, "1.0", null, "13.8", null, "0.9", null, "5.5", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "48", "37"], ["5001900US4838", "Congressional District 38 (119th Congress), Texas", "810804", null, "28616", null, "49213", null, "6174", null, "56814", null, "6398", null, "59484", null, "7381", null, "54286", null, "5650", null, "43746", null, "5121", null, "56568", null, "6597", null, "52224", null, "6449", null, "61625", null, "6213", null, "59668", null, "5949", null, "54040", null, "4768", null, "51222", null, "5654", null, "46943", null, "5172", null, "41480", null, "4399", null, "39350", null, "3780", null, "31929", null, "3776", null, "24961", null, "2474", null, "15996", null, "2361", null, "11255", null, "2321", null, "116298", null, "10727", null, "36071", null, "4548", null, "201582", null, "15542", null, "61961", null, "6752", null, "328117", null, "16553", null, "633577", null, "20064", null, "609222", null, "18874", null, "584023", null, "17812", null, "164971", null, "6623", null, "147310", null, "6058", null, "123491", null, "5985", null, "52212", null, "3733", null, "37.8", null, "0.9", null, "97.1", null, "3.4", null, "66.9", null, "3.5", null, "25.4", null, "1.8", null, "41.5", null, "2.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.1", null, "0.7", null, "7.0", null, "0.7", null, "7.3", null, "0.8", null, "6.7", null, "0.6", null, "5.4", null, "0.6", null, "7.0", null, "0.8", null, "6.4", null, "0.7", null, "7.6", null, "0.7", null, "7.4", null, "0.7", null, "6.7", null, "0.6", null, "6.3", null, "0.7", null, "5.8", null, "0.6", null, "5.1", null, "0.5", null, "4.9", null, "0.5", null, "3.9", null, "0.5", null, "3.1", null, "0.3", null, "2.0", null, "0.3", null, "1.4", null, "0.3", null, "14.3", null, "1.0", null, "4.4", null, "0.5", null, "24.9", null, "1.3", null, "7.6", null, "0.7", null, "40.5", null, "1.3", null, "78.1", null, "1.3", null, "75.1", null, "1.3", null, "72.0", null, "1.4", null, "20.3", null, "1.1", null, "18.2", null, "1.0", null, "15.2", null, "0.9", null, "6.4", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.0", null, "-888888888.0", "(X)", "399392", null, "16431", null, "24374", null, "3618", null, "30179", null, "4749", null, "30167", null, "4503", null, "28063", null, "4354", null, "21495", null, "3392", null, "30576", null, "4056", null, "24723", null, "3950", null, "32550", null, "4076", null, "25856", null, "3272", null, "25929", null, "2981", null, "25543", null, "3334", null, "22664", null, "2869", null, "21481", null, "2937", null, "18103", null, "2396", null, "15374", null, "1940", null, "10815", null, "1521", null, "6730", null, "1450", null, "4770", null, "953", null, "60346", null, "6569", null, "19482", null, "3511", null, "104202", null, "9382", null, "30076", null, "4033", null, "163263", null, "9760", null, "308438", null, "11323", null, "295190", null, "10809", null, "283122", null, "10107", null, "77273", null, "3766", null, "67732", null, "3328", null, "55792", null, "3100", null, "22315", null, "1848", null, "36.6", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.1", null, "0.8", null, "7.6", null, "1.1", null, "7.6", null, "1.0", null, "7.0", null, "1.0", null, "5.4", null, "0.8", null, "7.7", null, "1.0", null, "6.2", null, "0.9", null, "8.1", null, "0.9", null, "6.5", null, "0.8", null, "6.5", null, "0.7", null, "6.4", null, "0.8", null, "5.7", null, "0.7", null, "5.4", null, "0.7", null, "4.5", null, "0.6", null, "3.8", null, "0.5", null, "2.7", null, "0.4", null, "1.7", null, "0.4", null, "1.2", null, "0.2", null, "15.1", null, "1.3", null, "4.9", null, "0.8", null, "26.1", null, "1.7", null, "7.5", null, "0.9", null, "40.9", null, "1.6", null, "77.2", null, "1.7", null, "73.9", null, "1.7", null, "70.9", null, "1.8", null, "19.3", null, "1.1", null, "17.0", null, "1.0", null, "14.0", null, "0.9", null, "5.6", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "411412", null, "15418", null, "24839", null, "3776", null, "26635", null, "3908", null, "29317", null, "4914", null, "26223", null, "3527", null, "22251", null, "3452", null, "25992", null, "3754", null, "27501", null, "3882", null, "29075", null, "3664", null, "33812", null, "4506", null, "28111", null, "3218", null, "25679", null, "3427", null, "24279", null, "3641", null, "19999", null, "2679", null, "21247", null, "2388", null, "16555", null, "2528", null, "14146", null, "1919", null, "9266", null, "1628", null, "6485", null, "1833", null, "55952", null, "6579", null, "16589", null, "2771", null, "97380", null, "9501", null, "31885", null, "4165", null, "164854", null, "9118", null, "325139", null, "11208", null, "314032", null, "10764", null, "300901", null, "10467", null, "87698", null, "4218", null, "79578", null, "4026", null, "67699", null, "3891", null, "29897", null, "2976", null, "39.3", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.0", null, "0.9", null, "6.5", null, "0.9", null, "7.1", null, "1.1", null, "6.4", null, "0.8", null, "5.4", null, "0.8", null, "6.3", null, "0.9", null, "6.7", null, "0.9", null, "7.1", null, "0.9", null, "8.2", null, "1.1", null, "6.8", null, "0.7", null, "6.2", null, "0.8", null, "5.9", null, "0.9", null, "4.9", null, "0.7", null, "5.2", null, "0.6", null, "4.0", null, "0.7", null, "3.4", null, "0.5", null, "2.3", null, "0.4", null, "1.6", null, "0.5", null, "13.6", null, "1.3", null, "4.0", null, "0.6", null, "23.7", null, "1.8", null, "7.8", null, "0.9", null, "40.1", null, "1.5", null, "79.0", null, "1.6", null, "76.3", null, "1.8", null, "73.1", null, "1.8", null, "21.3", null, "1.3", null, "19.3", null, "1.2", null, "16.5", null, "1.2", null, "7.3", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "48", "38"], ["5001900US4901", "Congressional District 1 (119th Congress), Utah", "871848", null, "9472", null, "53836", null, "2306", null, "63169", null, "3449", null, "63659", null, "3582", null, "72813", null, "2319", null, "79010", null, "3431", null, "71450", null, "3272", null, "63673", null, "2694", null, "56008", null, "3825", null, "60553", null, "3981", null, "56084", null, "2576", null, "43840", null, "2443", null, "40602", null, "2711", null, "38896", null, "2922", null, "37707", null, "2310", null, "27653", null, "2344", null, "21110", null, "2027", null, "11145", null, "1489", null, "10640", null, "1659", null, "126828", null, "2822", null, "43727", null, "1617", null, "224391", null, "4139", null, "108096", null, "3531", null, "403507", null, "5915", null, "675854", null, "8010", null, "647457", null, "7740", null, "601391", null, "7599", null, "147151", null, "4479", null, "131225", null, "4194", null, "108255", null, "3239", null, "42895", null, "2392", null, "32.4", null, "0.4", null, "101.5", null, "1.8", null, "61.7", null, "1.1", null, "20.1", null, "0.7", null, "41.6", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.2", null, "0.2", null, "7.2", null, "0.4", null, "7.3", null, "0.4", null, "8.4", null, "0.3", null, "9.1", null, "0.4", null, "8.2", null, "0.4", null, "7.3", null, "0.3", null, "6.4", null, "0.4", null, "6.9", null, "0.5", null, "6.4", null, "0.3", null, "5.0", null, "0.3", null, "4.7", null, "0.3", null, "4.5", null, "0.3", null, "4.3", null, "0.3", null, "3.2", null, "0.3", null, "2.4", null, "0.2", null, "1.3", null, "0.2", null, "1.2", null, "0.2", null, "14.5", null, "0.3", null, "5.0", null, "0.2", null, "25.7", null, "0.4", null, "12.4", null, "0.4", null, "46.3", null, "0.4", null, "77.5", null, "0.4", null, "74.3", null, "0.4", null, "69.0", null, "0.5", null, "16.9", null, "0.5", null, "15.1", null, "0.5", null, "12.4", null, "0.4", null, "4.9", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.9", null, "-888888888.0", "(X)", "439167", null, "6183", null, "25969", null, "1513", null, "32026", null, "2754", null, "33007", null, "2495", null, "36244", null, "1826", null, "40935", null, "2413", null, "37315", null, "2110", null, "32863", null, "1727", null, "27125", null, "2501", null, "31278", null, "2682", null, "27767", null, "1883", null, "23220", null, "1615", null, "20316", null, "1651", null, "20272", null, "1915", null, "17500", null, "1300", null, "13645", null, "1466", null, "9713", null, "1278", null, "5125", null, "964", null, "4847", null, "1166", null, "65033", null, "2191", null, "22880", null, "1166", null, "113882", null, "2912", null, "54299", null, "2577", null, "205760", null, "4028", null, "340055", null, "5081", null, "325285", null, "4969", null, "302706", null, "4789", null, "71102", null, "2630", null, "62854", null, "2366", null, "50830", null, "1696", null, "19685", null, "1398", null, "32.0", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.9", null, "0.3", null, "7.3", null, "0.6", null, "7.5", null, "0.6", null, "8.3", null, "0.4", null, "9.3", null, "0.5", null, "8.5", null, "0.5", null, "7.5", null, "0.4", null, "6.2", null, "0.6", null, "7.1", null, "0.6", null, "6.3", null, "0.4", null, "5.3", null, "0.4", null, "4.6", null, "0.4", null, "4.6", null, "0.4", null, "4.0", null, "0.3", null, "3.1", null, "0.3", null, "2.2", null, "0.3", null, "1.2", null, "0.2", null, "1.1", null, "0.3", null, "14.8", null, "0.5", null, "5.2", null, "0.2", null, "25.9", null, "0.5", null, "12.4", null, "0.5", null, "46.9", null, "0.7", null, "77.4", null, "0.5", null, "74.1", null, "0.5", null, "68.9", null, "0.6", null, "16.2", null, "0.6", null, "14.3", null, "0.6", null, "11.6", null, "0.4", null, "4.5", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "432681", null, "5910", null, "27867", null, "1698", null, "31143", null, "2297", null, "30652", null, "2315", null, "36569", null, "1741", null, "38075", null, "2276", null, "34135", null, "2139", null, "30810", null, "1809", null, "28883", null, "2635", null, "29275", null, "2588", null, "28317", null, "1652", null, "20620", null, "1546", null, "20286", null, "1691", null, "18624", null, "1640", null, "20207", null, "1658", null, "14008", null, "1521", null, "11397", null, "1482", null, "6020", null, "1165", null, "5793", null, "972", null, "61795", null, "1793", null, "20847", null, "1170", null, "110509", null, "2980", null, "53797", null, "2222", null, "197747", null, "4113", null, "335799", null, "4888", null, "322172", null, "4679", null, "298685", null, "4699", null, "76049", null, "2740", null, "68371", null, "2628", null, "57425", null, "2167", null, "23210", null, "1478", null, "32.8", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.4", null, "0.4", null, "7.2", null, "0.5", null, "7.1", null, "0.5", null, "8.5", null, "0.4", null, "8.8", null, "0.5", null, "7.9", null, "0.5", null, "7.1", null, "0.4", null, "6.7", null, "0.6", null, "6.8", null, "0.6", null, "6.5", null, "0.4", null, "4.8", null, "0.3", null, "4.7", null, "0.4", null, "4.3", null, "0.4", null, "4.7", null, "0.4", null, "3.2", null, "0.3", null, "2.6", null, "0.3", null, "1.4", null, "0.3", null, "1.3", null, "0.2", null, "14.3", null, "0.4", null, "4.8", null, "0.3", null, "25.5", null, "0.5", null, "12.4", null, "0.5", null, "45.7", null, "0.7", null, "77.6", null, "0.6", null, "74.5", null, "0.5", null, "69.0", null, "0.7", null, "17.6", null, "0.6", null, "15.8", null, "0.6", null, "13.3", null, "0.5", null, "5.4", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "49", "01"], ["5001900US4902", "Congressional District 2 (119th Congress), Utah", "880783", null, "11353", null, "50668", null, "3707", null, "56801", null, "4429", null, "63991", null, "4652", null, "68238", null, "3608", null, "71506", null, "3849", null, "65534", null, "3919", null, "65179", null, "3828", null, "60145", null, "4966", null, "61133", null, "4293", null, "53476", null, "3055", null, "51615", null, "3495", null, "39816", null, "3202", null, "43975", null, "3391", null, "40576", null, "3216", null, "33817", null, "2785", null, "25565", null, "2606", null, "16217", null, "2033", null, "12531", null, "1383", null, "120792", null, "5484", null, "42665", null, "2362", null, "214125", null, "6660", null, "97079", null, "4979", null, "391735", null, "7736", null, "694422", null, "10326", null, "666658", null, "10533", null, "627282", null, "9739", null, "172681", null, "5032", null, "154729", null, "4894", null, "128706", null, "3986", null, "54313", null, "2601", null, "34.9", null, "0.5", null, "105.2", null, "2.2", null, "63.7", null, "1.9", null, "23.9", null, "0.8", null, "39.8", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.8", null, "0.4", null, "6.4", null, "0.5", null, "7.3", null, "0.5", null, "7.7", null, "0.4", null, "8.1", null, "0.4", null, "7.4", null, "0.4", null, "7.4", null, "0.4", null, "6.8", null, "0.5", null, "6.9", null, "0.5", null, "6.1", null, "0.3", null, "5.9", null, "0.4", null, "4.5", null, "0.4", null, "5.0", null, "0.4", null, "4.6", null, "0.4", null, "3.8", null, "0.3", null, "2.9", null, "0.3", null, "1.8", null, "0.2", null, "1.4", null, "0.2", null, "13.7", null, "0.6", null, "4.8", null, "0.3", null, "24.3", null, "0.7", null, "11.0", null, "0.5", null, "44.5", null, "0.6", null, "78.8", null, "0.6", null, "75.7", null, "0.7", null, "71.2", null, "0.7", null, "19.6", null, "0.6", null, "17.6", null, "0.5", null, "14.6", null, "0.4", null, "6.2", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.6", null, "-888888888.0", "(X)", "451610", null, "7107", null, "25104", null, "2529", null, "28848", null, "3114", null, "35513", null, "3570", null, "37264", null, "2886", null, "37639", null, "2629", null, "33318", null, "2313", null, "34751", null, "2466", null, "29203", null, "3356", null, "33532", null, "2941", null, "28142", null, "2286", null, "26428", null, "2259", null, "19608", null, "2563", null, "20479", null, "2136", null, "20583", null, "1904", null, "15788", null, "1862", null, "11848", null, "1611", null, "8477", null, "1264", null, "5085", null, "882", null, "64361", null, "4055", null, "23366", null, "2051", null, "112831", null, "5154", null, "51537", null, "3675", null, "205707", null, "5674", null, "353455", null, "6645", null, "338779", null, "6526", null, "317932", null, "5967", null, "82260", null, "2854", null, "73090", null, "2720", null, "61781", null, "2389", null, "25410", null, "1410", null, "34.0", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.6", null, "0.5", null, "6.4", null, "0.7", null, "7.9", null, "0.8", null, "8.3", null, "0.6", null, "8.3", null, "0.6", null, "7.4", null, "0.5", null, "7.7", null, "0.5", null, "6.5", null, "0.7", null, "7.4", null, "0.7", null, "6.2", null, "0.5", null, "5.9", null, "0.5", null, "4.3", null, "0.6", null, "4.5", null, "0.5", null, "4.6", null, "0.4", null, "3.5", null, "0.4", null, "2.6", null, "0.3", null, "1.9", null, "0.3", null, "1.1", null, "0.2", null, "14.3", null, "0.9", null, "5.2", null, "0.4", null, "25.0", null, "1.0", null, "11.4", null, "0.7", null, "45.5", null, "1.0", null, "78.3", null, "1.0", null, "75.0", null, "1.0", null, "70.4", null, "1.0", null, "18.2", null, "0.7", null, "16.2", null, "0.6", null, "13.7", null, "0.6", null, "5.6", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "429173", null, "7548", null, "25564", null, "2498", null, "27953", null, "2655", null, "28478", null, "2947", null, "30974", null, "2529", null, "33867", null, "2479", null, "32216", null, "2576", null, "30428", null, "2285", null, "30942", null, "2614", null, "27601", null, "2388", null, "25334", null, "1965", null, "25187", null, "1997", null, "20208", null, "2007", null, "23496", null, "2199", null, "19993", null, "2083", null, "18029", null, "1837", null, "13717", null, "1721", null, "7740", null, "1247", null, "7446", null, "1014", null, "56431", null, "2968", null, "19299", null, "1711", null, "101294", null, "4026", null, "45542", null, "2852", null, "186028", null, "5429", null, "340967", null, "6491", null, "327879", null, "6247", null, "309350", null, "5610", null, "90421", null, "3412", null, "81639", null, "3323", null, "66925", null, "2465", null, "28903", null, "1973", null, "35.6", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.0", null, "0.5", null, "6.5", null, "0.6", null, "6.6", null, "0.7", null, "7.2", null, "0.5", null, "7.9", null, "0.6", null, "7.5", null, "0.6", null, "7.1", null, "0.5", null, "7.2", null, "0.6", null, "6.4", null, "0.5", null, "5.9", null, "0.4", null, "5.9", null, "0.5", null, "4.7", null, "0.5", null, "5.5", null, "0.5", null, "4.7", null, "0.5", null, "4.2", null, "0.4", null, "3.2", null, "0.4", null, "1.8", null, "0.3", null, "1.7", null, "0.2", null, "13.1", null, "0.7", null, "4.5", null, "0.4", null, "23.6", null, "0.8", null, "10.6", null, "0.6", null, "43.3", null, "1.0", null, "79.4", null, "0.7", null, "76.4", null, "0.8", null, "72.1", null, "0.8", null, "21.1", null, "0.8", null, "19.0", null, "0.7", null, "15.6", null, "0.6", null, "6.7", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "49", "02"], ["5001900US4903", "Congressional District 3 (119th Congress), Utah", "830117", null, "8931", null, "55664", null, "2949", null, "58213", null, "3908", null, "61247", null, "3735", null, "72250", null, "3206", null, "89728", null, "4275", null, "62655", null, "3715", null, "53024", null, "3297", null, "50338", null, "3243", null, "54521", null, "3906", null, "49784", null, "2933", null, "39747", null, "2602", null, "36460", null, "2934", null, "35899", null, "2744", null, "35665", null, "2447", null, "30749", null, "2576", null, "19419", null, "1962", null, "12209", null, "1487", null, "12545", null, "1381", null, "119460", null, "5707", null, "39238", null, "2275", null, "214362", null, "6575", null, "122740", null, "4792", null, "382516", null, "6476", null, "641658", null, "7951", null, "615755", null, "7454", null, "568328", null, "7489", null, "146486", null, "5285", null, "131552", null, "5126", null, "110587", null, "4307", null, "44173", null, "2247", null, "31.4", null, "0.6", null, "101.5", null, "2.0", null, "64.3", null, "1.4", null, "21.9", null, "0.9", null, "42.4", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.7", null, "0.4", null, "7.0", null, "0.5", null, "7.4", null, "0.4", null, "8.7", null, "0.4", null, "10.8", null, "0.5", null, "7.5", null, "0.4", null, "6.4", null, "0.4", null, "6.1", null, "0.4", null, "6.6", null, "0.5", null, "6.0", null, "0.3", null, "4.8", null, "0.3", null, "4.4", null, "0.4", null, "4.3", null, "0.3", null, "4.3", null, "0.3", null, "3.7", null, "0.3", null, "2.3", null, "0.2", null, "1.5", null, "0.2", null, "1.5", null, "0.2", null, "14.4", null, "0.6", null, "4.7", null, "0.3", null, "25.8", null, "0.7", null, "14.8", null, "0.6", null, "46.1", null, "0.6", null, "77.3", null, "0.7", null, "74.2", null, "0.7", null, "68.5", null, "0.7", null, "17.6", null, "0.6", null, "15.8", null, "0.6", null, "13.3", null, "0.5", null, "5.3", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.5", null, "-888888888.0", "(X)", "418151", null, "5647", null, "28859", null, "2310", null, "30215", null, "3034", null, "31667", null, "2720", null, "33966", null, "2342", null, "46057", null, "2673", null, "33622", null, "2571", null, "26968", null, "2105", null, "25102", null, "2255", null, "28723", null, "2938", null, "25750", null, "2017", null, "19448", null, "1681", null, "18052", null, "1806", null, "17679", null, "1661", null, "16852", null, "1597", null, "15024", null, "1734", null, "9689", null, "1175", null, "4914", null, "814", null, "5564", null, "1016", null, "61882", null, "3683", null, "19201", null, "1591", null, "109942", null, "4170", null, "60822", null, "3054", null, "194438", null, "4374", null, "320742", null, "5051", null, "308209", null, "4944", null, "286027", null, "5205", null, "69722", null, "2882", null, "62658", null, "2731", null, "52043", null, "2346", null, "20167", null, "1481", null, "30.7", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.9", null, "0.5", null, "7.2", null, "0.7", null, "7.6", null, "0.6", null, "8.1", null, "0.6", null, "11.0", null, "0.6", null, "8.0", null, "0.6", null, "6.4", null, "0.5", null, "6.0", null, "0.5", null, "6.9", null, "0.7", null, "6.2", null, "0.5", null, "4.7", null, "0.4", null, "4.3", null, "0.4", null, "4.2", null, "0.4", null, "4.0", null, "0.4", null, "3.6", null, "0.4", null, "2.3", null, "0.3", null, "1.2", null, "0.2", null, "1.3", null, "0.2", null, "14.8", null, "0.8", null, "4.6", null, "0.4", null, "26.3", null, "0.9", null, "14.5", null, "0.7", null, "46.5", null, "0.8", null, "76.7", null, "0.9", null, "73.7", null, "0.9", null, "68.4", null, "1.0", null, "16.7", null, "0.7", null, "15.0", null, "0.7", null, "12.4", null, "0.6", null, "4.8", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "411966", null, "6524", null, "26805", null, "2023", null, "27998", null, "2312", null, "29580", null, "2543", null, "38284", null, "2468", null, "43671", null, "2483", null, "29033", null, "2053", null, "26056", null, "2066", null, "25236", null, "2260", null, "25798", null, "2458", null, "24034", null, "1774", null, "20299", null, "1769", null, "18408", null, "1969", null, "18220", null, "1759", null, "18813", null, "1607", null, "15725", null, "1671", null, "9730", null, "1211", null, "7295", null, "1190", null, "6981", null, "905", null, "57578", null, "3566", null, "20037", null, "1939", null, "104420", null, "4922", null, "61918", null, "2814", null, "188078", null, "4953", null, "320916", null, "5249", null, "307546", null, "4752", null, "282301", null, "4415", null, "76764", null, "3272", null, "68894", null, "3045", null, "58544", null, "2430", null, "24006", null, "1371", null, "32.2", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.5", null, "0.5", null, "6.8", null, "0.6", null, "7.2", null, "0.6", null, "9.3", null, "0.5", null, "10.6", null, "0.6", null, "7.0", null, "0.5", null, "6.3", null, "0.5", null, "6.1", null, "0.5", null, "6.3", null, "0.6", null, "5.8", null, "0.4", null, "4.9", null, "0.4", null, "4.5", null, "0.5", null, "4.4", null, "0.4", null, "4.6", null, "0.4", null, "3.8", null, "0.4", null, "2.4", null, "0.3", null, "1.8", null, "0.3", null, "1.7", null, "0.2", null, "14.0", null, "0.8", null, "4.9", null, "0.4", null, "25.3", null, "1.0", null, "15.0", null, "0.6", null, "45.7", null, "0.9", null, "77.9", null, "0.9", null, "74.7", null, "1.0", null, "68.5", null, "1.0", null, "18.6", null, "0.8", null, "16.7", null, "0.8", null, "14.2", null, "0.6", null, "5.8", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "49", "03"], ["5001900US4904", "Congressional District 4 (119th Congress), Utah", "920865", null, "9997", null, "68848", null, "3996", null, "71967", null, "4999", null, "85440", null, "4979", null, "77262", null, "3719", null, "66099", null, "4854", null, "74753", null, "4591", null, "72066", null, "3708", null, "66108", null, "4546", null, "64421", null, "4250", null, "61999", null, "3299", null, "48710", null, "3435", null, "41496", null, "3371", null, "34322", null, "3078", null, "31349", null, "2816", null, "24050", null, "2338", null, "17387", null, "2073", null, "7967", null, "1192", null, "6621", null, "1359", null, "157407", null, "6299", null, "53620", null, "2822", null, "279875", null, "8142", null, "89741", null, "5442", null, "420709", null, "8539", null, "676344", null, "10063", null, "640990", null, "9686", null, "603993", null, "9556", null, "121696", null, "5764", null, "108881", null, "5634", null, "87374", null, "4573", null, "31975", null, "2267", null, "31.2", null, "0.5", null, "103.9", null, "2.4", null, "66.3", null, "2.0", null, "15.8", null, "0.9", null, "50.6", null, "1.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "7.5", null, "0.4", null, "7.8", null, "0.5", null, "9.3", null, "0.5", null, "8.4", null, "0.4", null, "7.2", null, "0.5", null, "8.1", null, "0.5", null, "7.8", null, "0.4", null, "7.2", null, "0.5", null, "7.0", null, "0.4", null, "6.7", null, "0.4", null, "5.3", null, "0.4", null, "4.5", null, "0.4", null, "3.7", null, "0.3", null, "3.4", null, "0.3", null, "2.6", null, "0.3", null, "1.9", null, "0.2", null, "0.9", null, "0.1", null, "0.7", null, "0.1", null, "17.1", null, "0.7", null, "5.8", null, "0.3", null, "30.4", null, "0.8", null, "9.7", null, "0.6", null, "45.7", null, "0.7", null, "73.4", null, "0.8", null, "69.6", null, "0.8", null, "65.6", null, "0.8", null, "13.2", null, "0.6", null, "11.8", null, "0.6", null, "9.5", null, "0.5", null, "3.5", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.2", null, "-888888888.0", "(X)", "469193", null, "6999", null, "36021", null, "3099", null, "35433", null, "3203", null, "45226", null, "3504", null, "42160", null, "2753", null, "33123", null, "2929", null, "37722", null, "2989", null, "35883", null, "2103", null, "33423", null, "2890", null, "33474", null, "2758", null, "31536", null, "2456", null, "24548", null, "2124", null, "21925", null, "2469", null, "17343", null, "1957", null, "15697", null, "1614", null, "11343", null, "1300", null, "8376", null, "1239", null, "3197", null, "790", null, "2763", null, "940", null, "80659", null, "3578", null, "27862", null, "2027", null, "144542", null, "5167", null, "47421", null, "3507", null, "215785", null, "5129", null, "343604", null, "6432", null, "324651", null, "6267", null, "302900", null, "5907", null, "58719", null, "3058", null, "52618", null, "3035", null, "41376", null, "2384", null, "14336", null, "1464", null, "30.8", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "7.7", null, "0.6", null, "7.6", null, "0.7", null, "9.6", null, "0.7", null, "9.0", null, "0.6", null, "7.1", null, "0.6", null, "8.0", null, "0.6", null, "7.6", null, "0.5", null, "7.1", null, "0.6", null, "7.1", null, "0.6", null, "6.7", null, "0.5", null, "5.2", null, "0.5", null, "4.7", null, "0.5", null, "3.7", null, "0.4", null, "3.3", null, "0.3", null, "2.4", null, "0.3", null, "1.8", null, "0.3", null, "0.7", null, "0.2", null, "0.6", null, "0.2", null, "17.2", null, "0.7", null, "5.9", null, "0.4", null, "30.8", null, "1.0", null, "10.1", null, "0.7", null, "46.0", null, "0.9", null, "73.2", null, "1.0", null, "69.2", null, "1.0", null, "64.6", null, "1.0", null, "12.5", null, "0.7", null, "11.2", null, "0.7", null, "8.8", null, "0.5", null, "3.1", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "451672", null, "7661", null, "32827", null, "2448", null, "36534", null, "3261", null, "40214", null, "3250", null, "35102", null, "2848", null, "32976", null, "3220", null, "37031", null, "2735", null, "36183", null, "2578", null, "32685", null, "2788", null, "30947", null, "2403", null, "30463", null, "2163", null, "24162", null, "2046", null, "19571", null, "2001", null, "16979", null, "1807", null, "15652", null, "1603", null, "12707", null, "1545", null, "9011", null, "1469", null, "4770", null, "978", null, "3858", null, "846", null, "76748", null, "3887", null, "25758", null, "2167", null, "135333", null, "4593", null, "42320", null, "3608", null, "204924", null, "6451", null, "332740", null, "6978", null, "316339", null, "6845", null, "301093", null, "6772", null, "62977", null, "3378", null, "56263", null, "3252", null, "45998", null, "2806", null, "17639", null, "1514", null, "31.6", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "7.3", null, "0.5", null, "8.1", null, "0.7", null, "8.9", null, "0.7", null, "7.8", null, "0.6", null, "7.3", null, "0.7", null, "8.2", null, "0.6", null, "8.0", null, "0.6", null, "7.2", null, "0.6", null, "6.9", null, "0.5", null, "6.7", null, "0.5", null, "5.3", null, "0.5", null, "4.3", null, "0.4", null, "3.8", null, "0.4", null, "3.5", null, "0.4", null, "2.8", null, "0.3", null, "2.0", null, "0.3", null, "1.1", null, "0.2", null, "0.9", null, "0.2", null, "17.0", null, "0.8", null, "5.7", null, "0.5", null, "30.0", null, "0.9", null, "9.4", null, "0.7", null, "45.4", null, "1.0", null, "73.7", null, "0.9", null, "70.0", null, "0.9", null, "66.7", null, "1.0", null, "13.9", null, "0.8", null, "12.5", null, "0.7", null, "10.2", null, "0.6", null, "3.9", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "49", "04"], ["5001900US5000", "Congressional District (at Large) (119th Congress), Vermont", "648493", null, "-555555555", "*****", "26820", null, "1086", null, "29754", null, "2159", null, "33752", null, "2268", null, "42352", null, "2222", null, "41468", null, "1999", null, "36062", null, "1358", null, "38704", null, "1025", null, "42900", null, "2775", null, "39675", null, "2998", null, "39114", null, "1362", null, "39521", null, "1174", null, "39327", null, "2238", null, "50559", null, "2297", null, "45485", null, "2277", null, "41985", null, "2390", null, "27940", null, "1849", null, "18146", null, "1535", null, "14929", null, "1274", null, "63506", null, "1066", null, "21702", null, "572", null, "112028", null, "941", null, "62118", null, "1935", null, "241161", null, "2096", null, "553496", null, "1328", null, "536465", null, "941", null, "506140", null, "2702", null, "199044", null, "2436", null, "182388", null, "2540", null, "148485", null, "1408", null, "61015", null, "1000", null, "43.9", null, "0.3", null, "97.5", null, "1.1", null, "67.1", null, "0.6", null, "38.3", null, "0.5", null, "28.9", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.1", null, "0.2", null, "4.6", null, "0.3", null, "5.2", null, "0.3", null, "6.5", null, "0.3", null, "6.4", null, "0.3", null, "5.6", null, "0.2", null, "6.0", null, "0.2", null, "6.6", null, "0.4", null, "6.1", null, "0.5", null, "6.0", null, "0.2", null, "6.1", null, "0.2", null, "6.1", null, "0.3", null, "7.8", null, "0.4", null, "7.0", null, "0.4", null, "6.5", null, "0.4", null, "4.3", null, "0.3", null, "2.8", null, "0.2", null, "2.3", null, "0.2", null, "9.8", null, "0.2", null, "3.3", null, "0.1", null, "17.3", null, "0.1", null, "9.6", null, "0.3", null, "37.2", null, "0.3", null, "85.4", null, "0.2", null, "82.7", null, "0.1", null, "78.0", null, "0.4", null, "30.7", null, "0.4", null, "28.1", null, "0.4", null, "22.9", null, "0.2", null, "9.4", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.0", null, "-888888888.0", "(X)", "320167", null, "1801", null, "13467", null, "715", null, "16647", null, "1443", null, "15786", null, "1432", null, "20307", null, "1561", null, "21405", null, "1251", null, "18570", null, "805", null, "19765", null, "554", null, "20756", null, "1856", null, "19976", null, "1999", null, "19575", null, "874", null, "20874", null, "1002", null, "20141", null, "1619", null, "24162", null, "1668", null, "21705", null, "1429", null, "20030", null, "1395", null, "12804", null, "1057", null, "8559", null, "874", null, "5638", null, "865", null, "32433", null, "669", null, "10411", null, "892", null, "56311", null, "1271", null, "31301", null, "1146", null, "120779", null, "1854", null, "272184", null, "1676", null, "263856", null, "1407", null, "249352", null, "1918", null, "92898", null, "1779", null, "85570", null, "1631", null, "68736", null, "704", null, "27001", null, "575", null, "43.1", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.2", null, "0.2", null, "5.2", null, "0.5", null, "4.9", null, "0.4", null, "6.3", null, "0.5", null, "6.7", null, "0.4", null, "5.8", null, "0.3", null, "6.2", null, "0.2", null, "6.5", null, "0.6", null, "6.2", null, "0.6", null, "6.1", null, "0.3", null, "6.5", null, "0.3", null, "6.3", null, "0.5", null, "7.5", null, "0.5", null, "6.8", null, "0.5", null, "6.3", null, "0.4", null, "4.0", null, "0.3", null, "2.7", null, "0.3", null, "1.8", null, "0.3", null, "10.1", null, "0.2", null, "3.3", null, "0.3", null, "17.6", null, "0.3", null, "9.8", null, "0.4", null, "37.7", null, "0.5", null, "85.0", null, "0.3", null, "82.4", null, "0.3", null, "77.9", null, "0.6", null, "29.0", null, "0.6", null, "26.7", null, "0.5", null, "21.5", null, "0.3", null, "8.4", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "328326", null, "1801", null, "13353", null, "875", null, "13107", null, "1391", null, "17966", null, "1611", null, "22045", null, "1771", null, "20063", null, "1587", null, "17492", null, "992", null, "18939", null, "738", null, "22144", null, "1666", null, "19699", null, "1679", null, "19539", null, "956", null, "18647", null, "670", null, "19186", null, "1465", null, "26397", null, "1509", null, "23780", null, "1263", null, "21955", null, "1477", null, "15136", null, "1272", null, "9587", null, "1128", null, "9291", null, "913", null, "31073", null, "758", null, "11291", null, "955", null, "55717", null, "1096", null, "30817", null, "1328", null, "120382", null, "1692", null, "281312", null, "1854", null, "272609", null, "1547", null, "256788", null, "2103", null, "106146", null, "1535", null, "96818", null, "1739", null, "79749", null, "1051", null, "34014", null, "586", null, "44.8", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.1", null, "0.3", null, "4.0", null, "0.4", null, "5.5", null, "0.5", null, "6.7", null, "0.5", null, "6.1", null, "0.5", null, "5.3", null, "0.3", null, "5.8", null, "0.2", null, "6.7", null, "0.5", null, "6.0", null, "0.5", null, "6.0", null, "0.3", null, "5.7", null, "0.2", null, "5.8", null, "0.4", null, "8.0", null, "0.5", null, "7.2", null, "0.4", null, "6.7", null, "0.5", null, "4.6", null, "0.4", null, "2.9", null, "0.3", null, "2.8", null, "0.3", null, "9.5", null, "0.2", null, "3.4", null, "0.3", null, "17.0", null, "0.3", null, "9.4", null, "0.4", null, "36.7", null, "0.4", null, "85.7", null, "0.3", null, "83.0", null, "0.3", null, "78.2", null, "0.5", null, "32.3", null, "0.5", null, "29.5", null, "0.5", null, "24.3", null, "0.3", null, "10.4", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "50", "00"], ["5001900US5101", "Congressional District 1 (119th Congress), Virginia", "823798", null, "11046", null, "40447", null, "2703", null, "48632", null, "3331", null, "52998", null, "3375", null, "57149", null, "3474", null, "42997", null, "3414", null, "40211", null, "3468", null, "44887", null, "3087", null, "54380", null, "3963", null, "61100", null, "4784", null, "52565", null, "3225", null, "50804", null, "2331", null, "47571", null, "3398", null, "57346", null, "3579", null, "54794", null, "3255", null, "43882", null, "2680", null, "34627", null, "2317", null, "21465", null, "2146", null, "17943", null, "2065", null, "101630", null, "4141", null, "33666", null, "1816", null, "175743", null, "6221", null, "66480", null, "4054", null, "300724", null, "6348", null, "672501", null, "8144", null, "648055", null, "8146", null, "616694", null, "8291", null, "230057", null, "5595", null, "206975", null, "5047", null, "172711", null, "4190", null, "74035", null, "2585", null, "42.6", null, "0.6", null, "96.2", null, "1.9", null, "73.3", null, "1.9", null, "36.3", null, "1.1", null, "37.0", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.9", null, "0.3", null, "5.9", null, "0.4", null, "6.4", null, "0.4", null, "6.9", null, "0.4", null, "5.2", null, "0.4", null, "4.9", null, "0.4", null, "5.4", null, "0.4", null, "6.6", null, "0.5", null, "7.4", null, "0.6", null, "6.4", null, "0.4", null, "6.2", null, "0.3", null, "5.8", null, "0.4", null, "7.0", null, "0.4", null, "6.7", null, "0.4", null, "5.3", null, "0.3", null, "4.2", null, "0.3", null, "2.6", null, "0.3", null, "2.2", null, "0.3", null, "12.3", null, "0.4", null, "4.1", null, "0.2", null, "21.3", null, "0.6", null, "8.1", null, "0.5", null, "36.5", null, "0.5", null, "81.6", null, "0.6", null, "78.7", null, "0.6", null, "74.9", null, "0.6", null, "27.9", null, "0.7", null, "25.1", null, "0.6", null, "21.0", null, "0.5", null, "9.0", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.1", null, "-888888888.0", "(X)", "403937", null, "6655", null, "20429", null, "2160", null, "25112", null, "2661", null, "28413", null, "2583", null, "30665", null, "2538", null, "20801", null, "2272", null, "21198", null, "2418", null, "20778", null, "1697", null, "26643", null, "2310", null, "30441", null, "2852", null, "26503", null, "1982", null, "25584", null, "1699", null, "21701", null, "2065", null, "29082", null, "2148", null, "25306", null, "1796", null, "20362", null, "1637", null, "15316", null, "1284", null, "8335", null, "1308", null, "7268", null, "1248", null, "53525", null, "2591", null, "17789", null, "1434", null, "91743", null, "3945", null, "33677", null, "3066", null, "150526", null, "5087", null, "324694", null, "5467", null, "312194", null, "5193", null, "295042", null, "4919", null, "105669", null, "3019", null, "93909", null, "2514", null, "76587", null, "2239", null, "30919", null, "1377", null, "41.4", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.1", null, "0.5", null, "6.2", null, "0.6", null, "7.0", null, "0.6", null, "7.6", null, "0.6", null, "5.1", null, "0.5", null, "5.2", null, "0.6", null, "5.1", null, "0.4", null, "6.6", null, "0.6", null, "7.5", null, "0.7", null, "6.6", null, "0.5", null, "6.3", null, "0.4", null, "5.4", null, "0.5", null, "7.2", null, "0.5", null, "6.3", null, "0.4", null, "5.0", null, "0.4", null, "3.8", null, "0.3", null, "2.1", null, "0.3", null, "1.8", null, "0.3", null, "13.3", null, "0.6", null, "4.4", null, "0.3", null, "22.7", null, "0.8", null, "8.3", null, "0.7", null, "37.3", null, "0.9", null, "80.4", null, "0.8", null, "77.3", null, "0.8", null, "73.0", null, "0.8", null, "26.2", null, "0.7", null, "23.2", null, "0.6", null, "19.0", null, "0.5", null, "7.7", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "419861", null, "7120", null, "20018", null, "2029", null, "23520", null, "2558", null, "24585", null, "2446", null, "26484", null, "2233", null, "22196", null, "2390", null, "19013", null, "2005", null, "24109", null, "2198", null, "27737", null, "2678", null, "30659", null, "2966", null, "26062", null, "1965", null, "25220", null, "1740", null, "25870", null, "2084", null, "28264", null, "2291", null, "29488", null, "2299", null, "23520", null, "1842", null, "19311", null, "1606", null, "13130", null, "1588", null, "10675", null, "1442", null, "48105", null, "3059", null, "15877", null, "1643", null, "84000", null, "4582", null, "32803", null, "2554", null, "150198", null, "4174", null, "347807", null, "5318", null, "335861", null, "5198", null, "321652", null, "5353", null, "124388", null, "3448", null, "113066", null, "3306", null, "96124", null, "2669", null, "43116", null, "1784", null, "43.7", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.8", null, "0.4", null, "5.6", null, "0.6", null, "5.9", null, "0.6", null, "6.3", null, "0.5", null, "5.3", null, "0.6", null, "4.5", null, "0.5", null, "5.7", null, "0.5", null, "6.6", null, "0.6", null, "7.3", null, "0.7", null, "6.2", null, "0.5", null, "6.0", null, "0.4", null, "6.2", null, "0.5", null, "6.7", null, "0.5", null, "7.0", null, "0.6", null, "5.6", null, "0.4", null, "4.6", null, "0.4", null, "3.1", null, "0.4", null, "2.5", null, "0.3", null, "11.5", null, "0.6", null, "3.8", null, "0.4", null, "20.0", null, "0.9", null, "7.8", null, "0.6", null, "35.8", null, "0.8", null, "82.8", null, "0.8", null, "80.0", null, "0.9", null, "76.6", null, "0.9", null, "29.6", null, "0.8", null, "26.9", null, "0.8", null, "22.9", null, "0.6", null, "10.3", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "51", "01"], ["5001900US5102", "Congressional District 2 (119th Congress), Virginia", "788048", null, "7139", null, "44393", null, "1530", null, "43750", null, "2753", null, "53131", null, "2844", null, "46741", null, "2414", null, "44647", null, "2210", null, "48918", null, "1964", null, "55883", null, "2039", null, "58180", null, "4442", null, "58750", null, "4246", null, "46776", null, "1638", null, "45650", null, "1669", null, "47600", null, "2943", null, "55201", null, "3363", null, "43751", null, "2991", null, "38551", null, "2918", null, "25512", null, "2248", null, "17136", null, "1907", null, "13478", null, "1990", null, "96881", null, "2049", null, "30475", null, "1483", null, "171749", null, "2696", null, "60913", null, "2105", null, "313119", null, "4912", null, "636129", null, "6391", null, "616299", null, "5805", null, "592772", null, "6048", null, "193629", null, "3792", null, "171246", null, "4002", null, "138428", null, "2315", null, "56126", null, "1528", null, "39.9", null, "0.5", null, "96.4", null, "1.2", null, "64.9", null, "1.0", null, "29.0", null, "0.7", null, "35.9", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.6", null, "0.2", null, "5.6", null, "0.3", null, "6.7", null, "0.4", null, "5.9", null, "0.3", null, "5.7", null, "0.3", null, "6.2", null, "0.2", null, "7.1", null, "0.3", null, "7.4", null, "0.5", null, "7.5", null, "0.5", null, "5.9", null, "0.2", null, "5.8", null, "0.2", null, "6.0", null, "0.4", null, "7.0", null, "0.4", null, "5.6", null, "0.4", null, "4.9", null, "0.4", null, "3.2", null, "0.3", null, "2.2", null, "0.2", null, "1.7", null, "0.3", null, "12.3", null, "0.2", null, "3.9", null, "0.2", null, "21.8", null, "0.3", null, "7.7", null, "0.2", null, "39.7", null, "0.4", null, "80.7", null, "0.4", null, "78.2", null, "0.3", null, "75.2", null, "0.4", null, "24.6", null, "0.5", null, "21.7", null, "0.5", null, "17.6", null, "0.3", null, "7.1", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.2", null, "-888888888.0", "(X)", "386755", null, "4607", null, "22546", null, "1425", null, "22577", null, "2112", null, "27188", null, "2044", null, "24651", null, "1985", null, "23477", null, "1452", null, "23691", null, "1229", null, "28015", null, "1276", null, "29111", null, "2808", null, "30169", null, "2428", null, "23412", null, "1170", null, "22453", null, "1106", null, "22283", null, "1777", null, "26993", null, "2097", null, "20311", null, "1828", null, "16992", null, "1724", null, "10916", null, "1247", null, "7632", null, "999", null, "4338", null, "853", null, "49765", null, "1461", null, "15314", null, "1176", null, "87625", null, "2235", null, "32814", null, "1698", null, "159114", null, "3532", null, "308989", null, "4005", null, "299130", null, "3594", null, "285611", null, "3684", null, "87182", null, "2323", null, "76839", null, "2361", null, "60189", null, "1341", null, "22886", null, "807", null, "38.6", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.8", null, "0.4", null, "5.8", null, "0.5", null, "7.0", null, "0.5", null, "6.4", null, "0.5", null, "6.1", null, "0.4", null, "6.1", null, "0.3", null, "7.2", null, "0.3", null, "7.5", null, "0.7", null, "7.8", null, "0.6", null, "6.1", null, "0.3", null, "5.8", null, "0.3", null, "5.8", null, "0.4", null, "7.0", null, "0.5", null, "5.3", null, "0.5", null, "4.4", null, "0.4", null, "2.8", null, "0.3", null, "2.0", null, "0.3", null, "1.1", null, "0.2", null, "12.9", null, "0.3", null, "4.0", null, "0.3", null, "22.7", null, "0.5", null, "8.5", null, "0.4", null, "41.1", null, "0.6", null, "79.9", null, "0.6", null, "77.3", null, "0.5", null, "73.8", null, "0.5", null, "22.5", null, "0.6", null, "19.9", null, "0.6", null, "15.6", null, "0.4", null, "5.9", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "401293", null, "4149", null, "21847", null, "1347", null, "21173", null, "1991", null, "25943", null, "1999", null, "22090", null, "1591", null, "21170", null, "1507", null, "25227", null, "1315", null, "27868", null, "1337", null, "29069", null, "2680", null, "28581", null, "2867", null, "23364", null, "1212", null, "23197", null, "1145", null, "25317", null, "2061", null, "28208", null, "2018", null, "23440", null, "2040", null, "21559", null, "2013", null, "14596", null, "1491", null, "9504", null, "1400", null, "9140", null, "1566", null, "47116", null, "1294", null, "15161", null, "1121", null, "84124", null, "2069", null, "28099", null, "1259", null, "154005", null, "2917", null, "327140", null, "3769", null, "317169", null, "3265", null, "307161", null, "3597", null, "106447", null, "2357", null, "94407", null, "2585", null, "78239", null, "1488", null, "33240", null, "1162", null, "41.1", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.3", null, "5.3", null, "0.5", null, "6.5", null, "0.5", null, "5.5", null, "0.4", null, "5.3", null, "0.4", null, "6.3", null, "0.3", null, "6.9", null, "0.3", null, "7.2", null, "0.7", null, "7.1", null, "0.7", null, "5.8", null, "0.3", null, "5.8", null, "0.3", null, "6.3", null, "0.5", null, "7.0", null, "0.5", null, "5.8", null, "0.5", null, "5.4", null, "0.5", null, "3.6", null, "0.4", null, "2.4", null, "0.4", null, "2.3", null, "0.4", null, "11.7", null, "0.3", null, "3.8", null, "0.3", null, "21.0", null, "0.4", null, "7.0", null, "0.3", null, "38.4", null, "0.5", null, "81.5", null, "0.5", null, "79.0", null, "0.4", null, "76.5", null, "0.5", null, "26.5", null, "0.6", null, "23.5", null, "0.7", null, "19.5", null, "0.4", null, "8.3", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "51", "02"], ["5001900US5103", "Congressional District 3 (119th Congress), Virginia", "775248", null, "7231", null, "48817", null, "1890", null, "47144", null, "3366", null, "47994", null, "3111", null, "51910", null, "3412", null, "65425", null, "3010", null, "61788", null, "2281", null, "64842", null, "1942", null, "53753", null, "3543", null, "51460", null, "3969", null, "40542", null, "1640", null, "37650", null, "1682", null, "35824", null, "3011", null, "48390", null, "3057", null, "40398", null, "2104", null, "32164", null, "2123", null, "22320", null, "1865", null, "14429", null, "1659", null, "10398", null, "1597", null, "95138", null, "2182", null, "26502", null, "1244", null, "170457", null, "2546", null, "90833", null, "2373", null, "349178", null, "5174", null, "622749", null, "6318", null, "604791", null, "5931", null, "564993", null, "5750", null, "168099", null, "3638", null, "149130", null, "3119", null, "119709", null, "1867", null, "47147", null, "1315", null, "35.0", null, "0.3", null, "96.3", null, "1.3", null, "59.8", null, "0.8", null, "24.7", null, "0.5", null, "35.1", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.3", null, "0.2", null, "6.1", null, "0.4", null, "6.2", null, "0.4", null, "6.7", null, "0.4", null, "8.4", null, "0.4", null, "8.0", null, "0.3", null, "8.4", null, "0.2", null, "6.9", null, "0.5", null, "6.6", null, "0.5", null, "5.2", null, "0.2", null, "4.9", null, "0.2", null, "4.6", null, "0.4", null, "6.2", null, "0.4", null, "5.2", null, "0.3", null, "4.1", null, "0.3", null, "2.9", null, "0.2", null, "1.9", null, "0.2", null, "1.3", null, "0.2", null, "12.3", null, "0.3", null, "3.4", null, "0.2", null, "22.0", null, "0.3", null, "11.7", null, "0.3", null, "45.0", null, "0.4", null, "80.3", null, "0.3", null, "78.0", null, "0.3", null, "72.9", null, "0.5", null, "21.7", null, "0.4", null, "19.2", null, "0.4", null, "15.4", null, "0.3", null, "6.1", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "0.9", null, "-888888888.0", "(X)", "380306", null, "4661", null, "26267", null, "2067", null, "23713", null, "2538", null, "25247", null, "2247", null, "28463", null, "2813", null, "35127", null, "2164", null, "32839", null, "1632", null, "32271", null, "1303", null, "26293", null, "2544", null, "24853", null, "2504", null, "18446", null, "1106", null, "17470", null, "1219", null, "16603", null, "2045", null, "21501", null, "1969", null, "18274", null, "1574", null, "14502", null, "1414", null, "9453", null, "1056", null, "5144", null, "841", null, "3840", null, "1029", null, "48960", null, "1638", null, "14733", null, "1594", null, "89960", null, "2922", null, "48857", null, "1848", null, "179846", null, "3358", null, "300050", null, "3770", null, "290346", null, "3535", null, "269314", null, "3782", null, "72714", null, "2329", null, "64690", null, "2033", null, "51213", null, "1223", null, "18437", null, "670", null, "32.8", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.9", null, "0.5", null, "6.2", null, "0.7", null, "6.6", null, "0.6", null, "7.5", null, "0.7", null, "9.2", null, "0.6", null, "8.6", null, "0.4", null, "8.5", null, "0.3", null, "6.9", null, "0.7", null, "6.5", null, "0.6", null, "4.9", null, "0.3", null, "4.6", null, "0.3", null, "4.4", null, "0.5", null, "5.7", null, "0.5", null, "4.8", null, "0.4", null, "3.8", null, "0.4", null, "2.5", null, "0.3", null, "1.4", null, "0.2", null, "1.0", null, "0.3", null, "12.9", null, "0.4", null, "3.9", null, "0.4", null, "23.7", null, "0.6", null, "12.8", null, "0.5", null, "47.3", null, "0.6", null, "78.9", null, "0.6", null, "76.3", null, "0.6", null, "70.8", null, "0.8", null, "19.1", null, "0.6", null, "17.0", null, "0.6", null, "13.5", null, "0.3", null, "4.8", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "394942", null, "4370", null, "22550", null, "2271", null, "23431", null, "2127", null, "22747", null, "2292", null, "23447", null, "2415", null, "30298", null, "1747", null, "28949", null, "1069", null, "32571", null, "1154", null, "27460", null, "2403", null, "26607", null, "2603", null, "22096", null, "1016", null, "20180", null, "985", null, "19221", null, "2244", null, "26889", null, "2197", null, "22124", null, "1807", null, "17662", null, "1649", null, "12867", null, "1413", null, "9285", null, "1368", null, "6558", null, "1052", null, "46178", null, "1525", null, "11769", null, "1743", null, "80497", null, "2983", null, "41976", null, "1471", null, "169332", null, "3150", null, "322699", null, "3774", null, "314445", null, "3289", null, "295679", null, "3311", null, "95385", null, "2859", null, "84440", null, "2592", null, "68496", null, "1560", null, "28710", null, "1110", null, "37.5", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.7", null, "0.6", null, "5.9", null, "0.5", null, "5.8", null, "0.6", null, "5.9", null, "0.6", null, "7.7", null, "0.4", null, "7.3", null, "0.3", null, "8.2", null, "0.3", null, "7.0", null, "0.6", null, "6.7", null, "0.6", null, "5.6", null, "0.2", null, "5.1", null, "0.2", null, "4.9", null, "0.6", null, "6.8", null, "0.6", null, "5.6", null, "0.5", null, "4.5", null, "0.4", null, "3.3", null, "0.4", null, "2.4", null, "0.3", null, "1.7", null, "0.3", null, "11.7", null, "0.4", null, "3.0", null, "0.4", null, "20.4", null, "0.6", null, "10.6", null, "0.4", null, "42.9", null, "0.6", null, "81.7", null, "0.6", null, "79.6", null, "0.6", null, "74.9", null, "0.7", null, "24.2", null, "0.7", null, "21.4", null, "0.6", null, "17.3", null, "0.4", null, "7.3", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "51", "03"], ["5001900US5104", "Congressional District 4 (119th Congress), Virginia", "810465", null, "11138", null, "43623", null, "3100", null, "48327", null, "3502", null, "43581", null, "3916", null, "48897", null, "3629", null, "49970", null, "3669", null, "64521", null, "3439", null, "71201", null, "3285", null, "68260", null, "4740", null, "48438", null, "4108", null, "45057", null, "2835", null, "43359", null, "2776", null, "45222", null, "3135", null, "54526", null, "3702", null, "44040", null, "3420", null, "38899", null, "2966", null, "26472", null, "2163", null, "14251", null, "1850", null, "11821", null, "1551", null, "91908", null, "3807", null, "24554", null, "2188", null, "160085", null, "5892", null, "74313", null, "3829", null, "351287", null, "6681", null, "668235", null, "7704", null, "650380", null, "7481", null, "616748", null, "7486", null, "190009", null, "5224", null, "169053", null, "4730", null, "135483", null, "3182", null, "52544", null, "2074", null, "37.6", null, "0.5", null, "95.8", null, "2.2", null, "57.4", null, "1.4", null, "26.3", null, "0.8", null, "31.1", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.3", null, "6.0", null, "0.4", null, "5.4", null, "0.5", null, "6.0", null, "0.4", null, "6.2", null, "0.5", null, "8.0", null, "0.4", null, "8.8", null, "0.4", null, "8.4", null, "0.6", null, "6.0", null, "0.5", null, "5.6", null, "0.3", null, "5.3", null, "0.4", null, "5.6", null, "0.4", null, "6.7", null, "0.4", null, "5.4", null, "0.4", null, "4.8", null, "0.4", null, "3.3", null, "0.3", null, "1.8", null, "0.2", null, "1.5", null, "0.2", null, "11.3", null, "0.4", null, "3.0", null, "0.3", null, "19.8", null, "0.5", null, "9.2", null, "0.5", null, "43.3", null, "0.6", null, "82.5", null, "0.6", null, "80.2", null, "0.5", null, "76.1", null, "0.6", null, "23.4", null, "0.6", null, "20.9", null, "0.6", null, "16.7", null, "0.4", null, "6.5", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "0.8", null, "-888888888.0", "(X)", "396462", null, "7021", null, "23733", null, "2439", null, "25282", null, "2743", null, "23452", null, "2775", null, "23418", null, "3095", null, "27587", null, "2703", null, "30027", null, "2158", null, "35386", null, "2073", null, "35345", null, "2908", null, "23825", null, "2607", null, "21391", null, "1787", null, "21625", null, "1632", null, "21271", null, "2206", null, "24423", null, "2151", null, "21111", null, "2072", null, "16720", null, "1736", null, "11545", null, "1396", null, "5748", null, "1142", null, "4573", null, "1032", null, "48734", null, "2894", null, "12155", null, "2039", null, "84622", null, "4751", null, "38850", null, "2837", null, "175588", null, "3978", null, "320239", null, "4761", null, "311840", null, "4414", null, "295523", null, "4573", null, "84120", null, "2964", null, "74816", null, "2923", null, "59697", null, "2005", null, "21866", null, "1374", null, "36.5", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.0", null, "0.6", null, "6.4", null, "0.7", null, "5.9", null, "0.7", null, "5.9", null, "0.7", null, "7.0", null, "0.7", null, "7.6", null, "0.5", null, "8.9", null, "0.6", null, "8.9", null, "0.7", null, "6.0", null, "0.7", null, "5.4", null, "0.4", null, "5.5", null, "0.4", null, "5.4", null, "0.6", null, "6.2", null, "0.5", null, "5.3", null, "0.5", null, "4.2", null, "0.4", null, "2.9", null, "0.4", null, "1.4", null, "0.3", null, "1.2", null, "0.3", null, "12.3", null, "0.6", null, "3.1", null, "0.5", null, "21.3", null, "0.9", null, "9.8", null, "0.7", null, "44.3", null, "0.8", null, "80.8", null, "0.8", null, "78.7", null, "0.9", null, "74.5", null, "1.2", null, "21.2", null, "0.7", null, "18.9", null, "0.7", null, "15.1", null, "0.5", null, "5.5", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "414003", null, "7487", null, "19890", null, "1936", null, "23045", null, "2861", null, "20129", null, "2950", null, "25479", null, "3000", null, "22383", null, "2518", null, "34494", null, "2107", null, "35815", null, "2159", null, "32915", null, "2979", null, "24613", null, "2767", null, "23666", null, "1929", null, "21734", null, "1772", null, "23951", null, "2566", null, "30103", null, "2513", null, "22929", null, "2371", null, "22179", null, "2418", null, "14927", null, "1606", null, "8503", null, "1375", null, "7248", null, "1142", null, "43174", null, "2955", null, "12399", null, "2003", null, "75463", null, "4561", null, "35463", null, "2208", null, "175699", null, "4286", null, "347996", null, "5048", null, "338540", null, "4791", null, "321225", null, "4871", null, "105889", null, "3224", null, "94237", null, "2863", null, "75786", null, "2063", null, "30678", null, "1499", null, "38.7", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.8", null, "0.4", null, "5.6", null, "0.7", null, "4.9", null, "0.7", null, "6.2", null, "0.7", null, "5.4", null, "0.6", null, "8.3", null, "0.5", null, "8.7", null, "0.5", null, "8.0", null, "0.7", null, "5.9", null, "0.7", null, "5.7", null, "0.5", null, "5.2", null, "0.5", null, "5.8", null, "0.6", null, "7.3", null, "0.6", null, "5.5", null, "0.6", null, "5.4", null, "0.6", null, "3.6", null, "0.4", null, "2.1", null, "0.3", null, "1.8", null, "0.3", null, "10.4", null, "0.6", null, "3.0", null, "0.5", null, "18.2", null, "0.9", null, "8.6", null, "0.5", null, "42.4", null, "0.7", null, "84.1", null, "0.9", null, "81.8", null, "0.9", null, "77.6", null, "0.9", null, "25.6", null, "0.8", null, "22.8", null, "0.7", null, "18.3", null, "0.5", null, "7.4", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "51", "04"], ["5001900US5105", "Congressional District 5 (119th Congress), Virginia", "805334", null, "4904", null, "38345", null, "1980", null, "42596", null, "2581", null, "42670", null, "3022", null, "55182", null, "3175", null, "62495", null, "2889", null, "44478", null, "2489", null, "49099", null, "2879", null, "52721", null, "3340", null, "43850", null, "3288", null, "43028", null, "2095", null, "45809", null, "2524", null, "48711", null, "2867", null, "58928", null, "3087", null, "56781", null, "3461", null, "44870", null, "2675", null, "34109", null, "2576", null, "20286", null, "1699", null, "21376", null, "2146", null, "85266", null, "2596", null, "28537", null, "1827", null, "152148", null, "2623", null, "89140", null, "3028", null, "307825", null, "4281", null, "673425", null, "4068", null, "653186", null, "3616", null, "611762", null, "4596", null, "236350", null, "3393", null, "212770", null, "3449", null, "177422", null, "2631", null, "75771", null, "1851", null, "41.8", null, "0.6", null, "95.6", null, "1.6", null, "69.3", null, "1.0", null, "37.3", null, "0.7", null, "32.0", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.8", null, "0.2", null, "5.3", null, "0.3", null, "5.3", null, "0.4", null, "6.9", null, "0.4", null, "7.8", null, "0.4", null, "5.5", null, "0.3", null, "6.1", null, "0.4", null, "6.5", null, "0.4", null, "5.4", null, "0.4", null, "5.3", null, "0.3", null, "5.7", null, "0.3", null, "6.0", null, "0.3", null, "7.3", null, "0.4", null, "7.1", null, "0.4", null, "5.6", null, "0.3", null, "4.2", null, "0.3", null, "2.5", null, "0.2", null, "2.7", null, "0.3", null, "10.6", null, "0.3", null, "3.5", null, "0.2", null, "18.9", null, "0.3", null, "11.1", null, "0.4", null, "38.2", null, "0.5", null, "83.6", null, "0.3", null, "81.1", null, "0.3", null, "76.0", null, "0.5", null, "29.3", null, "0.4", null, "26.4", null, "0.4", null, "22.0", null, "0.3", null, "9.4", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.3", null, "-888888888.0", "(X)", "393682", null, "4104", null, "19304", null, "1875", null, "20958", null, "2061", null, "22114", null, "1967", null, "28205", null, "2734", null, "31850", null, "2270", null, "23742", null, "1635", null, "23632", null, "1862", null, "25691", null, "2150", null, "21766", null, "2070", null, "21594", null, "1665", null, "22970", null, "1780", null, "23191", null, "1987", null, "28157", null, "2140", null, "28051", null, "2233", null, "20790", null, "1740", null, "15244", null, "1581", null, "8251", null, "1160", null, "8172", null, "1111", null, "43072", null, "2107", null, "14669", null, "1836", null, "77045", null, "3065", null, "45386", null, "2077", null, "154886", null, "2833", null, "326337", null, "2702", null, "316637", null, "2477", null, "295082", null, "3249", null, "108665", null, "2411", null, "96647", null, "2260", null, "80508", null, "1770", null, "31667", null, "1350", null, "40.4", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.9", null, "0.5", null, "5.3", null, "0.5", null, "5.6", null, "0.5", null, "7.2", null, "0.7", null, "8.1", null, "0.6", null, "6.0", null, "0.4", null, "6.0", null, "0.5", null, "6.5", null, "0.5", null, "5.5", null, "0.5", null, "5.5", null, "0.4", null, "5.8", null, "0.4", null, "5.9", null, "0.5", null, "7.2", null, "0.6", null, "7.1", null, "0.6", null, "5.3", null, "0.4", null, "3.9", null, "0.4", null, "2.1", null, "0.3", null, "2.1", null, "0.3", null, "10.9", null, "0.5", null, "3.7", null, "0.5", null, "19.6", null, "0.6", null, "11.5", null, "0.5", null, "39.3", null, "0.6", null, "82.9", null, "0.6", null, "80.4", null, "0.6", null, "75.0", null, "0.9", null, "27.6", null, "0.7", null, "24.5", null, "0.6", null, "20.5", null, "0.4", null, "8.0", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "411652", null, "4144", null, "19041", null, "1392", null, "21638", null, "2032", null, "20556", null, "1972", null, "26977", null, "2234", null, "30645", null, "1913", null, "20736", null, "1566", null, "25467", null, "1845", null, "27030", null, "2365", null, "22084", null, "2327", null, "21434", null, "1466", null, "22839", null, "1576", null, "25520", null, "2049", null, "30771", null, "1976", null, "28730", null, "2390", null, "24080", null, "2002", null, "18865", null, "1639", null, "12035", null, "1340", null, "13204", null, "1637", null, "42194", null, "2242", null, "13868", null, "1729", null, "75103", null, "2945", null, "43754", null, "2050", null, "152939", null, "3200", null, "347088", null, "3058", null, "336549", null, "2519", null, "316680", null, "2678", null, "127685", null, "2063", null, "116123", null, "2205", null, "96914", null, "1529", null, "44104", null, "1132", null, "43.2", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.6", null, "0.3", null, "5.3", null, "0.5", null, "5.0", null, "0.5", null, "6.6", null, "0.5", null, "7.4", null, "0.5", null, "5.0", null, "0.4", null, "6.2", null, "0.4", null, "6.6", null, "0.6", null, "5.4", null, "0.6", null, "5.2", null, "0.4", null, "5.5", null, "0.4", null, "6.2", null, "0.5", null, "7.5", null, "0.5", null, "7.0", null, "0.6", null, "5.8", null, "0.5", null, "4.6", null, "0.4", null, "2.9", null, "0.3", null, "3.2", null, "0.4", null, "10.2", null, "0.5", null, "3.4", null, "0.4", null, "18.2", null, "0.6", null, "10.6", null, "0.5", null, "37.2", null, "0.7", null, "84.3", null, "0.6", null, "81.8", null, "0.6", null, "76.9", null, "0.7", null, "31.0", null, "0.6", null, "28.2", null, "0.6", null, "23.5", null, "0.4", null, "10.7", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "51", "05"], ["5001900US5106", "Congressional District 6 (119th Congress), Virginia", "797837", null, "5050", null, "38653", null, "2013", null, "37503", null, "2942", null, "49113", null, "3299", null, "58988", null, "3405", null, "58306", null, "3288", null, "43553", null, "2144", null, "48325", null, "2666", null, "49857", null, "4007", null, "53032", null, "3726", null, "44611", null, "2518", null, "46164", null, "2317", null, "47904", null, "3182", null, "54935", null, "3373", null, "50564", null, "3076", null, "43768", null, "2995", null, "35805", null, "2555", null, "19287", null, "1887", null, "17469", null, "1953", null, "86616", null, "2810", null, "31017", null, "2231", null, "156286", null, "3380", null, "86277", null, "3375", null, "312061", null, "5078", null, "661591", null, "5136", null, "641551", null, "4274", null, "600717", null, "4974", null, "221828", null, "4068", null, "201994", null, "3652", null, "166893", null, "3149", null, "72561", null, "2186", null, "41.2", null, "0.6", null, "94.9", null, "1.9", null, "68.1", null, "1.2", null, "35.2", null, "0.8", null, "32.9", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.8", null, "0.2", null, "4.7", null, "0.4", null, "6.2", null, "0.4", null, "7.4", null, "0.4", null, "7.3", null, "0.4", null, "5.5", null, "0.3", null, "6.1", null, "0.3", null, "6.2", null, "0.5", null, "6.6", null, "0.5", null, "5.6", null, "0.3", null, "5.8", null, "0.3", null, "6.0", null, "0.4", null, "6.9", null, "0.4", null, "6.3", null, "0.4", null, "5.5", null, "0.4", null, "4.5", null, "0.3", null, "2.4", null, "0.2", null, "2.2", null, "0.2", null, "10.9", null, "0.3", null, "3.9", null, "0.3", null, "19.6", null, "0.4", null, "10.8", null, "0.4", null, "39.1", null, "0.6", null, "82.9", null, "0.4", null, "80.4", null, "0.4", null, "75.3", null, "0.5", null, "27.8", null, "0.5", null, "25.3", null, "0.5", null, "20.9", null, "0.4", null, "9.1", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "0.7", null, "-888888888.0", "(X)", "388446", null, "4697", null, "18973", null, "1470", null, "19878", null, "2488", null, "24962", null, "2323", null, "28622", null, "2387", null, "28199", null, "2005", null, "22312", null, "1874", null, "24482", null, "1695", null, "23994", null, "2388", null, "27875", null, "2848", null, "21136", null, "1538", null, "24353", null, "1524", null, "23510", null, "1958", null, "26462", null, "2178", null, "23028", null, "2022", null, "20234", null, "1851", null, "15442", null, "1349", null, "9461", null, "1168", null, "5523", null, "958", null, "44840", null, "1953", null, "14286", null, "2035", null, "78099", null, "2899", null, "42535", null, "2739", null, "155484", null, "3579", null, "320211", null, "3976", null, "310347", null, "3886", null, "290582", null, "4179", null, "100150", null, "2441", null, "91888", null, "2245", null, "73688", null, "1590", null, "30426", null, "1080", null, "40.4", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.9", null, "0.4", null, "5.1", null, "0.6", null, "6.4", null, "0.6", null, "7.4", null, "0.6", null, "7.3", null, "0.5", null, "5.7", null, "0.5", null, "6.3", null, "0.4", null, "6.2", null, "0.6", null, "7.2", null, "0.7", null, "5.4", null, "0.4", null, "6.3", null, "0.4", null, "6.1", null, "0.5", null, "6.8", null, "0.5", null, "5.9", null, "0.5", null, "5.2", null, "0.5", null, "4.0", null, "0.3", null, "2.4", null, "0.3", null, "1.4", null, "0.2", null, "11.5", null, "0.5", null, "3.7", null, "0.5", null, "20.1", null, "0.6", null, "11.0", null, "0.7", null, "40.0", null, "0.7", null, "82.4", null, "0.5", null, "79.9", null, "0.6", null, "74.8", null, "0.8", null, "25.8", null, "0.6", null, "23.7", null, "0.6", null, "19.0", null, "0.4", null, "7.8", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "409391", null, "4625", null, "19680", null, "1902", null, "17625", null, "1970", null, "24151", null, "2432", null, "30366", null, "2985", null, "30107", null, "2362", null, "21241", null, "1220", null, "23843", null, "1603", null, "25863", null, "2544", null, "25157", null, "2093", null, "23475", null, "1749", null, "21811", null, "1702", null, "24394", null, "2409", null, "28473", null, "2058", null, "27536", null, "1837", null, "23534", null, "1936", null, "20363", null, "1719", null, "9826", null, "1596", null, "11946", null, "1669", null, "41776", null, "2026", null, "16731", null, "2098", null, "78187", null, "3186", null, "43742", null, "2234", null, "156577", null, "4073", null, "341380", null, "3674", null, "331204", null, "3047", null, "310135", null, "3294", null, "121678", null, "2786", null, "110106", null, "2626", null, "93205", null, "2317", null, "42135", null, "1649", null, "42.6", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.8", null, "0.4", null, "4.3", null, "0.5", null, "5.9", null, "0.6", null, "7.4", null, "0.7", null, "7.4", null, "0.6", null, "5.2", null, "0.3", null, "5.8", null, "0.4", null, "6.3", null, "0.6", null, "6.1", null, "0.5", null, "5.7", null, "0.4", null, "5.3", null, "0.4", null, "6.0", null, "0.6", null, "7.0", null, "0.5", null, "6.7", null, "0.5", null, "5.7", null, "0.5", null, "5.0", null, "0.4", null, "2.4", null, "0.4", null, "2.9", null, "0.4", null, "10.2", null, "0.5", null, "4.1", null, "0.5", null, "19.1", null, "0.6", null, "10.7", null, "0.5", null, "38.2", null, "0.9", null, "83.4", null, "0.7", null, "80.9", null, "0.6", null, "75.8", null, "0.8", null, "29.7", null, "0.7", null, "26.9", null, "0.7", null, "22.8", null, "0.6", null, "10.3", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "51", "06"], ["5001900US5107", "Congressional District 7 (119th Congress), Virginia", "825445", null, "10297", null, "47450", null, "2891", null, "58683", null, "3908", null, "57337", null, "3814", null, "57948", null, "3208", null, "53887", null, "3644", null, "52545", null, "2897", null, "57074", null, "2756", null, "60391", null, "4247", null, "56456", null, "4547", null, "53063", null, "2787", null, "54058", null, "3047", null, "50723", null, "3716", null, "48998", null, "3058", null, "40377", null, "2121", null, "31424", null, "2541", null, "22298", null, "1993", null, "14374", null, "1596", null, "8359", null, "1476", null, "116020", null, "3625", null, "37996", null, "2088", null, "201466", null, "5587", null, "73839", null, "3548", null, "338301", null, "5948", null, "650094", null, "8389", null, "623979", null, "7541", null, "592237", null, "7572", null, "165830", null, "4113", null, "145557", null, "3722", null, "116832", null, "2888", null, "45031", null, "2160", null, "37.2", null, "0.5", null, "99.2", null, "1.6", null, "62.8", null, "1.4", null, "23.0", null, "0.7", null, "39.7", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.7", null, "0.3", null, "7.1", null, "0.5", null, "6.9", null, "0.4", null, "7.0", null, "0.4", null, "6.5", null, "0.4", null, "6.4", null, "0.4", null, "6.9", null, "0.3", null, "7.3", null, "0.5", null, "6.8", null, "0.5", null, "6.4", null, "0.3", null, "6.5", null, "0.4", null, "6.1", null, "0.5", null, "5.9", null, "0.4", null, "4.9", null, "0.3", null, "3.8", null, "0.3", null, "2.7", null, "0.2", null, "1.7", null, "0.2", null, "1.0", null, "0.2", null, "14.1", null, "0.4", null, "4.6", null, "0.2", null, "24.4", null, "0.5", null, "8.9", null, "0.4", null, "41.0", null, "0.5", null, "78.8", null, "0.5", null, "75.6", null, "0.5", null, "71.7", null, "0.6", null, "20.1", null, "0.5", null, "17.6", null, "0.5", null, "14.2", null, "0.4", null, "5.5", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.6", null, "-888888888.0", "(X)", "410970", null, "6411", null, "23650", null, "2045", null, "32040", null, "2826", null, "27623", null, "2968", null, "29981", null, "2670", null, "27621", null, "2519", null, "27346", null, "1822", null, "29854", null, "1991", null, "26925", null, "2604", null, "30549", null, "2931", null, "25959", null, "1913", null, "26567", null, "2071", null, "24413", null, "2362", null, "24803", null, "2475", null, "19607", null, "1424", null, "14514", null, "1752", null, "10146", null, "1359", null, "5751", null, "869", null, "3621", null, "917", null, "59663", null, "2469", null, "19004", null, "1740", null, "102317", null, "3628", null, "38598", null, "2425", null, "172276", null, "3825", null, "322320", null, "5384", null, "308653", null, "4673", null, "292334", null, "4800", null, "78442", null, "2875", null, "68685", null, "2196", null, "53639", null, "1578", null, "19518", null, "1369", null, "36.5", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.8", null, "0.5", null, "7.8", null, "0.7", null, "6.7", null, "0.7", null, "7.3", null, "0.6", null, "6.7", null, "0.6", null, "6.7", null, "0.4", null, "7.3", null, "0.5", null, "6.6", null, "0.6", null, "7.4", null, "0.7", null, "6.3", null, "0.4", null, "6.5", null, "0.5", null, "5.9", null, "0.6", null, "6.0", null, "0.6", null, "4.8", null, "0.4", null, "3.5", null, "0.4", null, "2.5", null, "0.3", null, "1.4", null, "0.2", null, "0.9", null, "0.2", null, "14.5", null, "0.5", null, "4.6", null, "0.4", null, "24.9", null, "0.7", null, "9.4", null, "0.6", null, "41.9", null, "0.8", null, "78.4", null, "0.7", null, "75.1", null, "0.7", null, "71.1", null, "0.7", null, "19.1", null, "0.6", null, "16.7", null, "0.5", null, "13.1", null, "0.4", null, "4.7", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "414475", null, "5804", null, "23800", null, "2148", null, "26643", null, "2609", null, "29714", null, "2566", null, "27967", null, "2274", null, "26266", null, "2386", null, "25199", null, "1790", null, "27220", null, "1899", null, "33466", null, "2720", null, "25907", null, "2656", null, "27104", null, "1693", null, "27491", null, "1822", null, "26310", null, "2686", null, "24195", null, "1951", null, "20770", null, "1673", null, "16910", null, "1765", null, "12152", null, "1177", null, "8623", null, "1259", null, "4738", null, "1037", null, "56357", null, "2708", null, "18992", null, "1776", null, "99149", null, "4063", null, "35241", null, "2291", null, "166025", null, "3394", null, "327774", null, "4047", null, "315326", null, "3848", null, "299903", null, "4110", null, "87388", null, "2909", null, "76872", null, "2620", null, "63193", null, "2103", null, "25513", null, "1518", null, "37.8", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.7", null, "0.5", null, "6.4", null, "0.6", null, "7.2", null, "0.6", null, "6.7", null, "0.5", null, "6.3", null, "0.6", null, "6.1", null, "0.4", null, "6.6", null, "0.5", null, "8.1", null, "0.7", null, "6.3", null, "0.6", null, "6.5", null, "0.4", null, "6.6", null, "0.4", null, "6.3", null, "0.6", null, "5.8", null, "0.5", null, "5.0", null, "0.4", null, "4.1", null, "0.4", null, "2.9", null, "0.3", null, "2.1", null, "0.3", null, "1.1", null, "0.3", null, "13.6", null, "0.6", null, "4.6", null, "0.4", null, "23.9", null, "0.8", null, "8.5", null, "0.5", null, "40.1", null, "0.6", null, "79.1", null, "0.8", null, "76.1", null, "0.8", null, "72.4", null, "0.9", null, "21.1", null, "0.8", null, "18.5", null, "0.7", null, "15.2", null, "0.6", null, "6.2", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "51", "07"], ["5001900US5108", "Congressional District 8 (119th Congress), Virginia", "788825", null, "15267", null, "46171", null, "2831", null, "44360", null, "3416", null, "42381", null, "3240", null, "35582", null, "2941", null, "47886", null, "3131", null, "73287", null, "2773", null, "68098", null, "2923", null, "68182", null, "4212", null, "61081", null, "4204", null, "49773", null, "2850", null, "48069", null, "2897", null, "45164", null, "3226", null, "40354", null, "3356", null, "35556", null, "2971", null, "33071", null, "2746", null, "21876", null, "2238", null, "13501", null, "1804", null, "14433", null, "2045", null, "86741", null, "4142", null, "25939", null, "2348", null, "158851", null, "6752", null, "57529", null, "3263", null, "354116", null, "7962", null, "646774", null, "11210", null, "629974", null, "10914", null, "614172", null, "10454", null, "158791", null, "4930", null, "141914", null, "4814", null, "118437", null, "3542", null, "49810", null, "2701", null, "37.6", null, "0.4", null, "100.4", null, "1.9", null, "54.2", null, "1.3", null, "23.2", null, "0.8", null, "31.1", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.9", null, "0.3", null, "5.6", null, "0.4", null, "5.4", null, "0.4", null, "4.5", null, "0.3", null, "6.1", null, "0.4", null, "9.3", null, "0.3", null, "8.6", null, "0.4", null, "8.6", null, "0.5", null, "7.7", null, "0.5", null, "6.3", null, "0.3", null, "6.1", null, "0.3", null, "5.7", null, "0.4", null, "5.1", null, "0.4", null, "4.5", null, "0.4", null, "4.2", null, "0.3", null, "2.8", null, "0.3", null, "1.7", null, "0.2", null, "1.8", null, "0.3", null, "11.0", null, "0.4", null, "3.3", null, "0.3", null, "20.1", null, "0.6", null, "7.3", null, "0.4", null, "44.9", null, "0.6", null, "82.0", null, "0.6", null, "79.9", null, "0.6", null, "77.9", null, "0.6", null, "20.1", null, "0.6", null, "18.0", null, "0.6", null, "15.0", null, "0.4", null, "6.3", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.6", null, "-888888888.0", "(X)", "395166", null, "8818", null, "25268", null, "2147", null, "22708", null, "2341", null, "22112", null, "2425", null, "18535", null, "2147", null, "24125", null, "2281", null, "36558", null, "1713", null, "34030", null, "2148", null, "34323", null, "3057", null, "31565", null, "2984", null, "25023", null, "2139", null, "24507", null, "2034", null, "22262", null, "2340", null, "20162", null, "2279", null, "16476", null, "1718", null, "16270", null, "2139", null, "10580", null, "1318", null, "5679", null, "1158", null, "4983", null, "899", null, "44820", null, "2731", null, "13065", null, "1878", null, "83153", null, "4364", null, "29595", null, "2387", null, "179136", null, "4961", null, "320697", null, "6491", null, "312013", null, "6402", null, "303086", null, "6302", null, "74150", null, "2772", null, "65513", null, "2727", null, "53988", null, "1960", null, "21242", null, "1507", null, "37.1", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.4", null, "0.5", null, "5.7", null, "0.6", null, "5.6", null, "0.6", null, "4.7", null, "0.5", null, "6.1", null, "0.5", null, "9.3", null, "0.4", null, "8.6", null, "0.5", null, "8.7", null, "0.8", null, "8.0", null, "0.7", null, "6.3", null, "0.5", null, "6.2", null, "0.5", null, "5.6", null, "0.6", null, "5.1", null, "0.6", null, "4.2", null, "0.4", null, "4.1", null, "0.5", null, "2.7", null, "0.3", null, "1.4", null, "0.3", null, "1.3", null, "0.2", null, "11.3", null, "0.6", null, "3.3", null, "0.5", null, "21.0", null, "0.8", null, "7.5", null, "0.6", null, "45.3", null, "0.8", null, "81.2", null, "0.8", null, "79.0", null, "0.8", null, "76.7", null, "0.8", null, "18.8", null, "0.7", null, "16.6", null, "0.7", null, "13.7", null, "0.5", null, "5.4", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "393659", null, "8129", null, "20903", null, "1895", null, "21652", null, "2131", null, "20269", null, "2114", null, "17047", null, "2086", null, "23761", null, "2043", null, "36729", null, "1999", null, "34068", null, "1731", null, "33859", null, "2866", null, "29516", null, "2395", null, "24750", null, "1753", null, "23562", null, "1979", null, "22902", null, "1866", null, "20192", null, "2197", null, "19080", null, "2045", null, "16801", null, "1581", null, "11296", null, "1528", null, "7822", null, "1177", null, "9450", null, "1574", null, "41921", null, "2622", null, "12874", null, "1832", null, "75698", null, "3695", null, "27934", null, "2098", null, "174980", null, "4766", null, "326077", null, "6663", null, "317961", null, "6314", null, "311086", null, "6011", null, "84641", null, "3354", null, "76401", null, "2994", null, "64449", null, "2427", null, "28568", null, "1731", null, "38.2", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.3", null, "0.5", null, "5.5", null, "0.5", null, "5.1", null, "0.5", null, "4.3", null, "0.5", null, "6.0", null, "0.5", null, "9.3", null, "0.5", null, "8.7", null, "0.4", null, "8.6", null, "0.7", null, "7.5", null, "0.6", null, "6.3", null, "0.4", null, "6.0", null, "0.5", null, "5.8", null, "0.5", null, "5.1", null, "0.5", null, "4.8", null, "0.5", null, "4.3", null, "0.4", null, "2.9", null, "0.4", null, "2.0", null, "0.3", null, "2.4", null, "0.4", null, "10.6", null, "0.6", null, "3.3", null, "0.4", null, "19.2", null, "0.7", null, "7.1", null, "0.5", null, "44.4", null, "0.8", null, "82.8", null, "0.8", null, "80.8", null, "0.7", null, "79.0", null, "0.8", null, "21.5", null, "0.8", null, "19.4", null, "0.7", null, "16.4", null, "0.6", null, "7.3", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "51", "08"], ["5001900US5109", "Congressional District 9 (119th Congress), Virginia", "782270", null, "5252", null, "31855", null, "1428", null, "37856", null, "2592", null, "43358", null, "2298", null, "54646", null, "2268", null, "57474", null, "2708", null, "43284", null, "1865", null, "42235", null, "1913", null, "46444", null, "3153", null, "43331", null, "3278", null, "45667", null, "1823", null, "50192", null, "1698", null, "51166", null, "3264", null, "57848", null, "3642", null, "52919", null, "2601", null, "48610", null, "2547", null, "37223", null, "2216", null, "20978", null, "1985", null, "17184", null, "1662", null, "81214", null, "2285", null, "27664", null, "1359", null, "140733", null, "2853", null, "84456", null, "2733", null, "287414", null, "3660", null, "662258", null, "3790", null, "641537", null, "3712", null, "603331", null, "4276", null, "234762", null, "4039", null, "211455", null, "3560", null, "176914", null, "2290", null, "75385", null, "1530", null, "43.9", null, "0.4", null, "101.1", null, "1.5", null, "68.4", null, "0.9", null, "38.1", null, "0.7", null, "30.3", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.1", null, "0.2", null, "4.8", null, "0.3", null, "5.5", null, "0.3", null, "7.0", null, "0.3", null, "7.3", null, "0.3", null, "5.5", null, "0.2", null, "5.4", null, "0.2", null, "5.9", null, "0.4", null, "5.5", null, "0.4", null, "5.8", null, "0.2", null, "6.4", null, "0.2", null, "6.5", null, "0.4", null, "7.4", null, "0.5", null, "6.8", null, "0.3", null, "6.2", null, "0.3", null, "4.8", null, "0.3", null, "2.7", null, "0.3", null, "2.2", null, "0.2", null, "10.4", null, "0.3", null, "3.5", null, "0.2", null, "18.0", null, "0.3", null, "10.8", null, "0.4", null, "36.7", null, "0.4", null, "84.7", null, "0.3", null, "82.0", null, "0.3", null, "77.1", null, "0.4", null, "30.0", null, "0.5", null, "27.0", null, "0.5", null, "22.6", null, "0.3", null, "9.6", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.1", null, "-888888888.0", "(X)", "393289", null, "3636", null, "17145", null, "1524", null, "18583", null, "1649", null, "22630", null, "1912", null, "29437", null, "1920", null, "29078", null, "1693", null, "22471", null, "1334", null, "22585", null, "1376", null, "24658", null, "2154", null, "22073", null, "2071", null, "23255", null, "1125", null, "26121", null, "1370", null, "25689", null, "2196", null, "28164", null, "2303", null, "24168", null, "1633", null, "24114", null, "1804", null, "17002", null, "1245", null, "9372", null, "1188", null, "6744", null, "982", null, "41213", null, "1700", null, "14598", null, "1285", null, "72956", null, "2663", null, "43917", null, "1676", null, "150302", null, "2625", null, "331849", null, "2710", null, "320333", null, "2565", null, "299222", null, "2840", null, "109564", null, "2504", null, "98203", null, "2392", null, "81400", null, "1429", null, "33118", null, "866", null, "42.2", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.4", null, "0.4", null, "4.7", null, "0.4", null, "5.8", null, "0.5", null, "7.5", null, "0.5", null, "7.4", null, "0.4", null, "5.7", null, "0.3", null, "5.7", null, "0.3", null, "6.3", null, "0.6", null, "5.6", null, "0.5", null, "5.9", null, "0.3", null, "6.6", null, "0.4", null, "6.5", null, "0.6", null, "7.2", null, "0.6", null, "6.1", null, "0.4", null, "6.1", null, "0.5", null, "4.3", null, "0.3", null, "2.4", null, "0.3", null, "1.7", null, "0.2", null, "10.5", null, "0.4", null, "3.7", null, "0.3", null, "18.6", null, "0.6", null, "11.2", null, "0.4", null, "38.2", null, "0.5", null, "84.4", null, "0.5", null, "81.4", null, "0.6", null, "76.1", null, "0.7", null, "27.9", null, "0.6", null, "25.0", null, "0.6", null, "20.7", null, "0.4", null, "8.4", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "388981", null, "4114", null, "14710", null, "1437", null, "19273", null, "2071", null, "20728", null, "1884", null, "25209", null, "1578", null, "28396", null, "1896", null, "20813", null, "1387", null, "19650", null, "1064", null, "21786", null, "2102", null, "21258", null, "2114", null, "22412", null, "1322", null, "24071", null, "648", null, "25477", null, "1909", null, "29684", null, "2182", null, "28751", null, "1867", null, "24496", null, "1724", null, "20221", null, "1634", null, "11606", null, "1365", null, "10440", null, "1331", null, "40001", null, "1921", null, "13066", null, "1207", null, "67777", null, "2829", null, "40539", null, "1858", null, "137112", null, "2774", null, "330409", null, "2855", null, "321204", null, "2530", null, "304109", null, "3028", null, "125198", null, "2380", null, "113252", null, "1987", null, "95514", null, "1364", null, "42267", null, "988", null, "45.6", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "3.8", null, "0.4", null, "5.0", null, "0.5", null, "5.3", null, "0.5", null, "6.5", null, "0.4", null, "7.3", null, "0.5", null, "5.4", null, "0.4", null, "5.1", null, "0.3", null, "5.6", null, "0.5", null, "5.5", null, "0.5", null, "5.8", null, "0.3", null, "6.2", null, "0.2", null, "6.5", null, "0.5", null, "7.6", null, "0.6", null, "7.4", null, "0.5", null, "6.3", null, "0.4", null, "5.2", null, "0.4", null, "3.0", null, "0.3", null, "2.7", null, "0.3", null, "10.3", null, "0.4", null, "3.4", null, "0.3", null, "17.4", null, "0.6", null, "10.4", null, "0.5", null, "35.2", null, "0.6", null, "84.9", null, "0.6", null, "82.6", null, "0.6", null, "78.2", null, "0.7", null, "32.2", null, "0.7", null, "29.1", null, "0.6", null, "24.6", null, "0.4", null, "10.9", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "51", "09"], ["5001900US5110", "Congressional District 10 (119th Congress), Virginia", "821178", null, "11035", null, "51742", null, "2578", null, "55484", null, "3964", null, "63874", null, "3513", null, "62423", null, "2735", null, "47357", null, "2823", null, "37740", null, "2333", null, "45666", null, "2431", null, "56486", null, "4681", null, "71942", null, "4636", null, "63133", null, "2607", null, "57790", null, "2455", null, "52515", null, "2937", null, "46013", null, "3493", null, "37030", null, "2702", null, "25239", null, "2357", null, "23570", null, "2486", null, "13671", null, "1752", null, "9503", null, "1448", null, "119358", null, "4314", null, "41543", null, "1697", null, "212643", null, "5824", null, "68237", null, "2753", null, "321614", null, "5503", null, "636408", null, "8477", null, "608535", null, "7662", null, "578047", null, "6947", null, "155026", null, "4338", null, "134083", null, "3959", null, "109013", null, "2701", null, "46744", null, "1917", null, "39.1", null, "0.5", null, "101.0", null, "1.4", null, "64.4", null, "1.2", null, "21.8", null, "0.7", null, "42.6", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.3", null, "0.3", null, "6.8", null, "0.4", null, "7.8", null, "0.4", null, "7.6", null, "0.3", null, "5.8", null, "0.3", null, "4.6", null, "0.3", null, "5.6", null, "0.3", null, "6.9", null, "0.6", null, "8.8", null, "0.5", null, "7.7", null, "0.3", null, "7.0", null, "0.3", null, "6.4", null, "0.4", null, "5.6", null, "0.4", null, "4.5", null, "0.3", null, "3.1", null, "0.3", null, "2.9", null, "0.3", null, "1.7", null, "0.2", null, "1.2", null, "0.2", null, "14.5", null, "0.4", null, "5.1", null, "0.2", null, "25.9", null, "0.5", null, "8.3", null, "0.3", null, "39.2", null, "0.4", null, "77.5", null, "0.6", null, "74.1", null, "0.5", null, "70.4", null, "0.5", null, "18.9", null, "0.5", null, "16.3", null, "0.5", null, "13.3", null, "0.4", null, "5.7", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.7", null, "-888888888.0", "(X)", "412563", null, "6742", null, "27161", null, "1922", null, "27022", null, "2924", null, "35491", null, "2852", null, "33054", null, "1755", null, "24932", null, "1936", null, "18155", null, "1402", null, "21063", null, "1537", null, "26859", null, "2915", null, "36660", null, "3148", null, "32331", null, "1747", null, "30364", null, "1502", null, "26460", null, "2111", null, "24393", null, "2423", null, "17313", null, "1606", null, "11239", null, "1473", null, "9784", null, "1464", null, "6612", null, "1111", null, "3670", null, "915", null, "62513", null, "2875", null, "21664", null, "1314", null, "111338", null, "3745", null, "36322", null, "1896", null, "160723", null, "3528", null, "315106", null, "5017", null, "301225", null, "4654", null, "284741", null, "4599", null, "73011", null, "2701", null, "62189", null, "2371", null, "48618", null, "1435", null, "20066", null, "1083", null, "38.5", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.6", null, "0.4", null, "6.5", null, "0.7", null, "8.6", null, "0.7", null, "8.0", null, "0.4", null, "6.0", null, "0.4", null, "4.4", null, "0.3", null, "5.1", null, "0.4", null, "6.5", null, "0.7", null, "8.9", null, "0.7", null, "7.8", null, "0.4", null, "7.4", null, "0.3", null, "6.4", null, "0.5", null, "5.9", null, "0.6", null, "4.2", null, "0.4", null, "2.7", null, "0.4", null, "2.4", null, "0.3", null, "1.6", null, "0.3", null, "0.9", null, "0.2", null, "15.2", null, "0.6", null, "5.3", null, "0.3", null, "27.0", null, "0.6", null, "8.8", null, "0.4", null, "39.0", null, "0.7", null, "76.4", null, "0.7", null, "73.0", null, "0.6", null, "69.0", null, "0.8", null, "17.7", null, "0.6", null, "15.1", null, "0.6", null, "11.8", null, "0.4", null, "4.9", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "408615", null, "5723", null, "24581", null, "1750", null, "28462", null, "2725", null, "28383", null, "2384", null, "29369", null, "2032", null, "22425", null, "1948", null, "19585", null, "1405", null, "24603", null, "1483", null, "29627", null, "2806", null, "35282", null, "2458", null, "30802", null, "1374", null, "27426", null, "1513", null, "26055", null, "1845", null, "21620", null, "1969", null, "19717", null, "1964", null, "14000", null, "1681", null, "13786", null, "1480", null, "7059", null, "1045", null, "5833", null, "1060", null, "56845", null, "2851", null, "19879", null, "1323", null, "101305", null, "3766", null, "31915", null, "1548", null, "160891", null, "3164", null, "321302", null, "4385", null, "307310", null, "3818", null, "293306", null, "3654", null, "82015", null, "2744", null, "71894", null, "2661", null, "60395", null, "1831", null, "26678", null, "1274", null, "39.6", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.0", null, "0.4", null, "7.0", null, "0.6", null, "6.9", null, "0.6", null, "7.2", null, "0.5", null, "5.5", null, "0.5", null, "4.8", null, "0.3", null, "6.0", null, "0.4", null, "7.3", null, "0.7", null, "8.6", null, "0.6", null, "7.5", null, "0.3", null, "6.7", null, "0.4", null, "6.4", null, "0.5", null, "5.3", null, "0.5", null, "4.8", null, "0.5", null, "3.4", null, "0.4", null, "3.4", null, "0.4", null, "1.7", null, "0.3", null, "1.4", null, "0.3", null, "13.9", null, "0.6", null, "4.9", null, "0.3", null, "24.8", null, "0.7", null, "7.8", null, "0.4", null, "39.4", null, "0.5", null, "78.6", null, "0.7", null, "75.2", null, "0.7", null, "71.8", null, "0.8", null, "20.1", null, "0.7", null, "17.6", null, "0.7", null, "14.8", null, "0.5", null, "6.5", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "51", "10"], ["5001900US5111", "Congressional District 11 (119th Congress), Virginia", "792747", null, "14547", null, "40018", null, "2917", null, "50126", null, "3417", null, "50180", null, "3442", null, "56195", null, "2856", null, "49670", null, "2804", null, "49562", null, "2880", null, "52926", null, "2705", null, "52316", null, "3896", null, "61099", null, "4187", null, "57878", null, "2410", null, "55730", null, "2693", null, "50099", null, "3140", null, "48405", null, "3027", null, "37513", null, "2664", null, "27613", null, "2235", null, "24559", null, "2019", null, "16263", null, "2137", null, "12595", null, "1631", null, "100306", null, "3970", null, "33545", null, "2141", null, "173869", null, "6546", null, "72320", null, "3262", null, "321768", null, "7507", null, "643532", null, "11223", null, "618878", null, "10407", null, "585907", null, "9845", null, "166948", null, "4714", null, "147231", null, "4312", null, "118543", null, "3731", null, "53417", null, "2573", null, "39.6", null, "0.4", null, "99.3", null, "2.0", null, "58.4", null, "1.4", null, "23.7", null, "0.8", null, "34.8", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.0", null, "0.3", null, "6.3", null, "0.4", null, "6.3", null, "0.4", null, "7.1", null, "0.3", null, "6.3", null, "0.3", null, "6.3", null, "0.3", null, "6.7", null, "0.3", null, "6.6", null, "0.5", null, "7.7", null, "0.5", null, "7.3", null, "0.3", null, "7.0", null, "0.3", null, "6.3", null, "0.4", null, "6.1", null, "0.4", null, "4.7", null, "0.3", null, "3.5", null, "0.3", null, "3.1", null, "0.3", null, "2.1", null, "0.3", null, "1.6", null, "0.2", null, "12.7", null, "0.4", null, "4.2", null, "0.2", null, "21.9", null, "0.6", null, "9.1", null, "0.4", null, "40.6", null, "0.5", null, "81.2", null, "0.5", null, "78.1", null, "0.6", null, "73.9", null, "0.5", null, "21.1", null, "0.6", null, "18.6", null, "0.6", null, "15.0", null, "0.5", null, "6.7", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.1", null, "-888888888.0", "(X)", "395065", null, "8682", null, "20944", null, "2246", null, "27936", null, "2497", null, "24739", null, "2444", null, "29030", null, "1988", null, "24047", null, "2160", null, "24736", null, "1737", null, "27331", null, "1853", null, "27400", null, "2394", null, "29238", null, "2723", null, "27827", null, "1779", null, "27304", null, "1715", null, "25848", null, "1777", null, "23903", null, "1894", null, "18455", null, "1673", null, "12394", null, "1199", null, "11392", null, "1039", null, "7855", null, "1282", null, "4686", null, "844", null, "52675", null, "2758", null, "16593", null, "1494", null, "90212", null, "4416", null, "36484", null, "2530", null, "161782", null, "4803", null, "317162", null, "6426", null, "304853", null, "6257", null, "287289", null, "5975", null, "78685", null, "2446", null, "69257", null, "2543", null, "54782", null, "2023", null, "23933", null, "1377", null, "38.5", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.3", null, "0.5", null, "7.1", null, "0.6", null, "6.3", null, "0.6", null, "7.3", null, "0.5", null, "6.1", null, "0.5", null, "6.3", null, "0.4", null, "6.9", null, "0.5", null, "6.9", null, "0.6", null, "7.4", null, "0.7", null, "7.0", null, "0.4", null, "6.9", null, "0.4", null, "6.5", null, "0.4", null, "6.1", null, "0.5", null, "4.7", null, "0.4", null, "3.1", null, "0.3", null, "2.9", null, "0.3", null, "2.0", null, "0.3", null, "1.2", null, "0.2", null, "13.3", null, "0.6", null, "4.2", null, "0.4", null, "22.8", null, "0.8", null, "9.2", null, "0.6", null, "41.0", null, "0.8", null, "80.3", null, "0.8", null, "77.2", null, "0.8", null, "72.7", null, "0.8", null, "19.9", null, "0.7", null, "17.5", null, "0.7", null, "13.9", null, "0.5", null, "6.1", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "397682", null, "7809", null, "19074", null, "1630", null, "22190", null, "2216", null, "25441", null, "2141", null, "27165", null, "1884", null, "25623", null, "1891", null, "24826", null, "2136", null, "25595", null, "1694", null, "24916", null, "2272", null, "31861", null, "2402", null, "30051", null, "1464", null, "28426", null, "1866", null, "24251", null, "2230", null, "24502", null, "1890", null, "19058", null, "1673", null, "15219", null, "1675", null, "13167", null, "1415", null, "8408", null, "1338", null, "7909", null, "1361", null, "47631", null, "2301", null, "16952", null, "1556", null, "83657", null, "3207", null, "35836", null, "2004", null, "159986", null, "4704", null, "326370", null, "6715", null, "314025", null, "6083", null, "298618", null, "5888", null, "88263", null, "3234", null, "77974", null, "2882", null, "63761", null, "2448", null, "29484", null, "1712", null, "40.6", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.8", null, "0.4", null, "5.6", null, "0.5", null, "6.4", null, "0.5", null, "6.8", null, "0.4", null, "6.4", null, "0.5", null, "6.2", null, "0.5", null, "6.4", null, "0.4", null, "6.3", null, "0.5", null, "8.0", null, "0.6", null, "7.6", null, "0.4", null, "7.1", null, "0.5", null, "6.1", null, "0.5", null, "6.2", null, "0.5", null, "4.8", null, "0.4", null, "3.8", null, "0.4", null, "3.3", null, "0.4", null, "2.1", null, "0.3", null, "2.0", null, "0.3", null, "12.0", null, "0.5", null, "4.3", null, "0.4", null, "21.0", null, "0.6", null, "9.0", null, "0.5", null, "40.2", null, "0.7", null, "82.1", null, "0.6", null, "79.0", null, "0.6", null, "75.1", null, "0.7", null, "22.2", null, "0.8", null, "19.6", null, "0.7", null, "16.0", null, "0.6", null, "7.4", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "51", "11"], ["5001900US5301", "Congressional District 1 (119th Congress), Washington", "810553", null, "13494", null, "46737", null, "3565", null, "51979", null, "4024", null, "44790", null, "3745", null, "45323", null, "3786", null, "43185", null, "3450", null, "59467", null, "4364", null, "77219", null, "5826", null, "75408", null, "4986", null, "65698", null, "4610", null, "53923", null, "3958", null, "50888", null, "3120", null, "45650", null, "3733", null, "41785", null, "3439", null, "33258", null, "2787", null, "29830", null, "3027", null, "20993", null, "2131", null, "13435", null, "1796", null, "10985", null, "1642", null, "96769", null, "5279", null, "28205", null, "2380", null, "171711", null, "7446", null, "60303", null, "4379", null, "366300", null, "9767", null, "657950", null, "11373", null, "638842", null, "11003", null, "613804", null, "10708", null, "150286", null, "5631", null, "133365", null, "5410", null, "108501", null, "4557", null, "45413", null, "2919", null, "37.4", null, "0.6", null, "99.9", null, "3.2", null, "52.8", null, "1.9", null, "20.5", null, "1.0", null, "32.4", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.8", null, "0.4", null, "6.4", null, "0.5", null, "5.5", null, "0.5", null, "5.6", null, "0.4", null, "5.3", null, "0.4", null, "7.3", null, "0.6", null, "9.5", null, "0.7", null, "9.3", null, "0.6", null, "8.1", null, "0.5", null, "6.7", null, "0.5", null, "6.3", null, "0.4", null, "5.6", null, "0.4", null, "5.2", null, "0.4", null, "4.1", null, "0.4", null, "3.7", null, "0.4", null, "2.6", null, "0.3", null, "1.7", null, "0.2", null, "1.4", null, "0.2", null, "11.9", null, "0.6", null, "3.5", null, "0.3", null, "21.2", null, "0.8", null, "7.4", null, "0.5", null, "45.2", null, "0.9", null, "81.2", null, "0.7", null, "78.8", null, "0.8", null, "75.7", null, "0.8", null, "18.5", null, "0.7", null, "16.5", null, "0.7", null, "13.4", null, "0.6", null, "5.6", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.3", null, "-888888888.0", "(X)", "405102", null, "9810", null, "24903", null, "2459", null, "25306", null, "2944", null, "23494", null, "2914", null, "21912", null, "2384", null, "21177", null, "2632", null, "30157", null, "3106", null, "40288", null, "4020", null, "39063", null, "3195", null, "33483", null, "3292", null, "26974", null, "2590", null, "26792", null, "2262", null, "22958", null, "2093", null, "19999", null, "1855", null, "16348", null, "1987", null, "12967", null, "1720", null, "8630", null, "1446", null, "6171", null, "1192", null, "4480", null, "1319", null, "48800", null, "3551", null, "13689", null, "1631", null, "87392", null, "5108", null, "29400", null, "3295", null, "186080", null, "7219", null, "327584", null, "8306", null, "317710", null, "8008", null, "304971", null, "7591", null, "68595", null, "3078", null, "60240", null, "3170", null, "48596", null, "2719", null, "19281", null, "1892", null, "36.8", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.1", null, "0.6", null, "6.2", null, "0.7", null, "5.8", null, "0.7", null, "5.4", null, "0.6", null, "5.2", null, "0.6", null, "7.4", null, "0.7", null, "9.9", null, "0.9", null, "9.6", null, "0.7", null, "8.3", null, "0.8", null, "6.7", null, "0.6", null, "6.6", null, "0.5", null, "5.7", null, "0.5", null, "4.9", null, "0.5", null, "4.0", null, "0.5", null, "3.2", null, "0.4", null, "2.1", null, "0.4", null, "1.5", null, "0.3", null, "1.1", null, "0.3", null, "12.0", null, "0.8", null, "3.4", null, "0.4", null, "21.6", null, "1.0", null, "7.3", null, "0.8", null, "45.9", null, "1.2", null, "80.9", null, "1.0", null, "78.4", null, "1.0", null, "75.3", null, "1.0", null, "16.9", null, "0.8", null, "14.9", null, "0.8", null, "12.0", null, "0.7", null, "4.8", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "405451", null, "8926", null, "21834", null, "2337", null, "26673", null, "2766", null, "21296", null, "2657", null, "23411", null, "2548", null, "22008", null, "2407", null, "29310", null, "2491", null, "36931", null, "2923", null, "36345", null, "3336", null, "32215", null, "2785", null, "26949", null, "2469", null, "24096", null, "1892", null, "22692", null, "2268", null, "21786", null, "2554", null, "16910", null, "1834", null, "16863", null, "2333", null, "12363", null, "1735", null, "7264", null, "1148", null, "6505", null, "899", null, "47969", null, "3452", null, "14516", null, "1503", null, "84319", null, "4700", null, "30903", null, "2938", null, "180220", null, "6245", null, "330366", null, "7078", null, "321132", null, "6846", null, "308833", null, "6332", null, "81691", null, "3737", null, "73125", null, "3889", null, "59905", null, "3358", null, "26132", null, "2075", null, "38.1", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.5", null, "6.6", null, "0.6", null, "5.3", null, "0.6", null, "5.8", null, "0.6", null, "5.4", null, "0.6", null, "7.2", null, "0.6", null, "9.1", null, "0.7", null, "9.0", null, "0.8", null, "7.9", null, "0.7", null, "6.6", null, "0.6", null, "5.9", null, "0.5", null, "5.6", null, "0.5", null, "5.4", null, "0.6", null, "4.2", null, "0.5", null, "4.2", null, "0.6", null, "3.0", null, "0.4", null, "1.8", null, "0.3", null, "1.6", null, "0.2", null, "11.8", null, "0.8", null, "3.6", null, "0.4", null, "20.8", null, "0.9", null, "7.6", null, "0.7", null, "44.4", null, "1.1", null, "81.5", null, "0.9", null, "79.2", null, "0.9", null, "76.2", null, "1.1", null, "20.1", null, "0.9", null, "18.0", null, "1.0", null, "14.8", null, "0.9", null, "6.4", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "53", "01"], ["5001900US5302", "Congressional District 2 (119th Congress), Washington", "789531", null, "9499", null, "36965", null, "3139", null, "42589", null, "3409", null, "42704", null, "3528", null, "43880", null, "2652", null, "51905", null, "2677", null, "55536", null, "3450", null, "55463", null, "3080", null, "57296", null, "4095", null, "53124", null, "3416", null, "45497", null, "2577", null, "40410", null, "2059", null, "46128", null, "3105", null, "50455", null, "3021", null, "49575", null, "2802", null, "47378", null, "2830", null, "34317", null, "2322", null, "20908", null, "1887", null, "15401", null, "1608", null, "85293", null, "4306", null, "24030", null, "1995", null, "146288", null, "5332", null, "71755", null, "3013", null, "317204", null, "6344", null, "660771", null, "7647", null, "643243", null, "7280", null, "613181", null, "7363", null, "218034", null, "5018", null, "197343", null, "4818", null, "167579", null, "3320", null, "70626", null, "2352", null, "40.8", null, "0.5", null, "102.6", null, "2.3", null, "66.0", null, "1.6", null, "35.2", null, "0.9", null, "30.8", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.7", null, "0.4", null, "5.4", null, "0.4", null, "5.4", null, "0.4", null, "5.6", null, "0.3", null, "6.6", null, "0.3", null, "7.0", null, "0.4", null, "7.0", null, "0.4", null, "7.3", null, "0.5", null, "6.7", null, "0.4", null, "5.8", null, "0.3", null, "5.1", null, "0.3", null, "5.8", null, "0.4", null, "6.4", null, "0.4", null, "6.3", null, "0.4", null, "6.0", null, "0.4", null, "4.3", null, "0.3", null, "2.6", null, "0.2", null, "2.0", null, "0.2", null, "10.8", null, "0.5", null, "3.0", null, "0.2", null, "18.5", null, "0.6", null, "9.1", null, "0.4", null, "40.2", null, "0.6", null, "83.7", null, "0.6", null, "81.5", null, "0.6", null, "77.7", null, "0.6", null, "27.6", null, "0.7", null, "25.0", null, "0.6", null, "21.2", null, "0.5", null, "8.9", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "0.9", null, "-888888888.0", "(X)", "399890", null, "6824", null, "20134", null, "2388", null, "20895", null, "1963", null, "22757", null, "2450", null, "24234", null, "2285", null, "26591", null, "1932", null, "29234", null, "2935", null, "28036", null, "2022", null, "30337", null, "2979", null, "28296", null, "2559", null, "24227", null, "1959", null, "19615", null, "1350", null, "22721", null, "2018", null, "25088", null, "2185", null, "22294", null, "1736", null, "23537", null, "1996", null, "15423", null, "1468", null, "10002", null, "1249", null, "6469", null, "917", null, "43652", null, "2662", null, "12950", null, "1464", null, "76736", null, "3692", null, "37875", null, "2260", null, "166728", null, "5141", null, "332120", null, "5987", null, "323154", null, "5695", null, "307841", null, "5505", null, "102813", null, "3067", null, "91641", null, "2839", null, "77725", null, "1905", null, "31894", null, "1601", null, "39.7", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.0", null, "0.6", null, "5.2", null, "0.5", null, "5.7", null, "0.6", null, "6.1", null, "0.6", null, "6.6", null, "0.5", null, "7.3", null, "0.7", null, "7.0", null, "0.5", null, "7.6", null, "0.7", null, "7.1", null, "0.6", null, "6.1", null, "0.5", null, "4.9", null, "0.3", null, "5.7", null, "0.5", null, "6.3", null, "0.6", null, "5.6", null, "0.5", null, "5.9", null, "0.5", null, "3.9", null, "0.4", null, "2.5", null, "0.3", null, "1.6", null, "0.2", null, "10.9", null, "0.6", null, "3.2", null, "0.4", null, "19.2", null, "0.8", null, "9.5", null, "0.6", null, "41.7", null, "0.9", null, "83.1", null, "0.8", null, "80.8", null, "0.8", null, "77.0", null, "0.8", null, "25.7", null, "0.8", null, "22.9", null, "0.8", null, "19.4", null, "0.5", null, "8.0", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "389641", null, "6076", null, "16831", null, "1801", null, "21694", null, "2587", null, "19947", null, "2342", null, "19646", null, "1898", null, "25314", null, "2101", null, "26302", null, "1853", null, "27427", null, "1988", null, "26959", null, "2398", null, "24828", null, "2095", null, "21270", null, "1691", null, "20795", null, "1558", null, "23407", null, "1983", null, "25367", null, "1934", null, "27281", null, "2097", null, "23841", null, "1844", null, "18894", null, "1746", null, "10906", null, "1341", null, "8932", null, "1098", null, "41641", null, "2995", null, "11080", null, "1428", null, "69552", null, "3334", null, "33880", null, "2007", null, "150476", null, "3596", null, "328651", null, "4856", null, "320089", null, "4557", null, "305340", null, "4773", null, "115221", null, "3178", null, "105702", null, "3051", null, "89854", null, "2212", null, "38732", null, "1592", null, "41.8", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.3", null, "0.4", null, "5.6", null, "0.6", null, "5.1", null, "0.6", null, "5.0", null, "0.5", null, "6.5", null, "0.5", null, "6.8", null, "0.5", null, "7.0", null, "0.5", null, "6.9", null, "0.6", null, "6.4", null, "0.6", null, "5.5", null, "0.4", null, "5.3", null, "0.4", null, "6.0", null, "0.5", null, "6.5", null, "0.5", null, "7.0", null, "0.5", null, "6.1", null, "0.5", null, "4.8", null, "0.4", null, "2.8", null, "0.3", null, "2.3", null, "0.3", null, "10.7", null, "0.7", null, "2.8", null, "0.4", null, "17.9", null, "0.7", null, "8.7", null, "0.5", null, "38.6", null, "0.7", null, "84.3", null, "0.7", null, "82.1", null, "0.7", null, "78.4", null, "0.8", null, "29.6", null, "0.8", null, "27.1", null, "0.8", null, "23.1", null, "0.6", null, "9.9", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "53", "02"], ["5001900US5303", "Congressional District 3 (119th Congress), Washington", "802855", null, "4128", null, "40773", null, "1596", null, "45898", null, "2992", null, "52135", null, "3129", null, "48605", null, "1965", null, "43574", null, "1610", null, "50582", null, "1974", null, "58063", null, "1997", null, "51792", null, "3484", null, "55832", null, "3432", null, "50699", null, "1735", null, "50582", null, "1806", null, "50170", null, "3279", null, "51446", null, "3201", null, "46009", null, "2510", null, "43080", null, "2598", null, "33023", null, "2429", null, "15781", null, "1682", null, "14811", null, "1925", null, "98033", null, "1863", null, "32675", null, "1156", null, "171481", null, "1860", null, "59504", null, "1760", null, "308448", null, "2711", null, "653442", null, "3636", null, "631374", null, "3596", null, "608338", null, "4240", null, "204150", null, "3316", null, "183615", null, "3211", null, "152704", null, "1796", null, "63615", null, "1548", null, "41.0", null, "0.4", null, "100.0", null, "1.0", null, "67.7", null, "0.7", null, "31.9", null, "0.5", null, "35.8", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.1", null, "0.2", null, "5.7", null, "0.4", null, "6.5", null, "0.4", null, "6.1", null, "0.2", null, "5.4", null, "0.2", null, "6.3", null, "0.2", null, "7.2", null, "0.2", null, "6.5", null, "0.4", null, "7.0", null, "0.4", null, "6.3", null, "0.2", null, "6.3", null, "0.2", null, "6.2", null, "0.4", null, "6.4", null, "0.4", null, "5.7", null, "0.3", null, "5.4", null, "0.3", null, "4.1", null, "0.3", null, "2.0", null, "0.2", null, "1.8", null, "0.2", null, "12.2", null, "0.2", null, "4.1", null, "0.1", null, "21.4", null, "0.2", null, "7.4", null, "0.2", null, "38.4", null, "0.3", null, "81.4", null, "0.2", null, "78.6", null, "0.2", null, "75.8", null, "0.3", null, "25.4", null, "0.4", null, "22.9", null, "0.4", null, "19.0", null, "0.2", null, "7.9", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.7", null, "-888888888.0", "(X)", "401328", null, "3006", null, "21524", null, "1302", null, "23915", null, "2377", null, "26922", null, "2419", null, "25569", null, "1358", null, "22354", null, "1200", null, "25637", null, "1311", null, "29313", null, "1346", null, "27007", null, "2240", null, "27647", null, "2299", null, "25593", null, "1149", null, "24488", null, "910", null, "24728", null, "2345", null, "25320", null, "2267", null, "21629", null, "1735", null, "20280", null, "1666", null, "15375", null, "1483", null, "7013", null, "1253", null, "7014", null, "1295", null, "50837", null, "1594", null, "17289", null, "1144", null, "89650", null, "1811", null, "30634", null, "1291", null, "157527", null, "2140", null, "322583", null, "2635", null, "311678", null, "2414", null, "299274", null, "2741", null, "96631", null, "2439", null, "86427", null, "1942", null, "71311", null, "1063", null, "29402", null, "1034", null, "39.7", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.3", null, "6.0", null, "0.6", null, "6.7", null, "0.6", null, "6.4", null, "0.3", null, "5.6", null, "0.3", null, "6.4", null, "0.3", null, "7.3", null, "0.3", null, "6.7", null, "0.6", null, "6.9", null, "0.6", null, "6.4", null, "0.3", null, "6.1", null, "0.2", null, "6.2", null, "0.6", null, "6.3", null, "0.6", null, "5.4", null, "0.4", null, "5.1", null, "0.4", null, "3.8", null, "0.4", null, "1.7", null, "0.3", null, "1.7", null, "0.3", null, "12.7", null, "0.4", null, "4.3", null, "0.3", null, "22.3", null, "0.4", null, "7.6", null, "0.3", null, "39.3", null, "0.4", null, "80.4", null, "0.4", null, "77.7", null, "0.4", null, "74.6", null, "0.5", null, "24.1", null, "0.6", null, "21.5", null, "0.5", null, "17.8", null, "0.2", null, "7.3", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "401527", null, "2609", null, "19249", null, "799", null, "21983", null, "2147", null, "25213", null, "2137", null, "23036", null, "1568", null, "21220", null, "1127", null, "24945", null, "1122", null, "28750", null, "1291", null, "24785", null, "2265", null, "28185", null, "2150", null, "25106", null, "1221", null, "26094", null, "1297", null, "25442", null, "2166", null, "26126", null, "2271", null, "24380", null, "1681", null, "22800", null, "1662", null, "17648", null, "1733", null, "8768", null, "923", null, "7797", null, "1223", null, "47196", null, "1390", null, "15386", null, "850", null, "81831", null, "1622", null, "28870", null, "1235", null, "150921", null, "1930", null, "330859", null, "2235", null, "319696", null, "2095", null, "309064", null, "2514", null, "107519", null, "2355", null, "97188", null, "2243", null, "81393", null, "1204", null, "34213", null, "1064", null, "42.1", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.8", null, "0.2", null, "5.5", null, "0.5", null, "6.3", null, "0.5", null, "5.7", null, "0.4", null, "5.3", null, "0.3", null, "6.2", null, "0.3", null, "7.2", null, "0.3", null, "6.2", null, "0.6", null, "7.0", null, "0.5", null, "6.3", null, "0.3", null, "6.5", null, "0.3", null, "6.3", null, "0.5", null, "6.5", null, "0.6", null, "6.1", null, "0.4", null, "5.7", null, "0.4", null, "4.4", null, "0.4", null, "2.2", null, "0.2", null, "1.9", null, "0.3", null, "11.8", null, "0.3", null, "3.8", null, "0.2", null, "20.4", null, "0.3", null, "7.2", null, "0.3", null, "37.6", null, "0.4", null, "82.4", null, "0.4", null, "79.6", null, "0.3", null, "77.0", null, "0.5", null, "26.8", null, "0.6", null, "24.2", null, "0.6", null, "20.3", null, "0.3", null, "8.5", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "53", "03"], ["5001900US5304", "Congressional District 4 (119th Congress), Washington", "794949", null, "4624", null, "50383", null, "1310", null, "58802", null, "3835", null, "60140", null, "4033", null, "60546", null, "2167", null, "54415", null, "2266", null, "51634", null, "1779", null, "55975", null, "2171", null, "56127", null, "3587", null, "47840", null, "3303", null, "45677", null, "1983", null, "42050", null, "1750", null, "39845", null, "3182", null, "44833", null, "3037", null, "39506", null, "2391", null, "35767", null, "2661", null, "23727", null, "2189", null, "14538", null, "1547", null, "13144", null, "1645", null, "118942", null, "2116", null, "39372", null, "1338", null, "208697", null, "3241", null, "75589", null, "2192", null, "326537", null, "3072", null, "613290", null, "3615", null, "586252", null, "2789", null, "555287", null, "3563", null, "171515", null, "3491", null, "153721", null, "3275", null, "126682", null, "2194", null, "51409", null, "1581", null, "35.6", null, "0.3", null, "104.1", null, "1.5", null, "73.0", null, "1.0", null, "27.6", null, "0.6", null, "45.4", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.3", null, "0.2", null, "7.4", null, "0.5", null, "7.6", null, "0.5", null, "7.6", null, "0.3", null, "6.8", null, "0.3", null, "6.5", null, "0.2", null, "7.0", null, "0.3", null, "7.1", null, "0.4", null, "6.0", null, "0.4", null, "5.7", null, "0.2", null, "5.3", null, "0.2", null, "5.0", null, "0.4", null, "5.6", null, "0.4", null, "5.0", null, "0.3", null, "4.5", null, "0.3", null, "3.0", null, "0.3", null, "1.8", null, "0.2", null, "1.7", null, "0.2", null, "15.0", null, "0.2", null, "5.0", null, "0.2", null, "26.3", null, "0.3", null, "9.5", null, "0.3", null, "41.1", null, "0.3", null, "77.1", null, "0.3", null, "73.7", null, "0.3", null, "69.9", null, "0.4", null, "21.6", null, "0.5", null, "19.3", null, "0.4", null, "15.9", null, "0.3", null, "6.5", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.6", null, "-888888888.0", "(X)", "405419", null, "3373", null, "26646", null, "1066", null, "29709", null, "2620", null, "30636", null, "2873", null, "33490", null, "2008", null, "28902", null, "1740", null, "26733", null, "1308", null, "29555", null, "1819", null, "29944", null, "2819", null, "23266", null, "2592", null, "23247", null, "1501", null, "20397", null, "1174", null, "21274", null, "2117", null, "21542", null, "2074", null, "20203", null, "1870", null, "17277", null, "1840", null, "12102", null, "1313", null, "5047", null, "824", null, "5449", null, "989", null, "60345", null, "1459", null, "21769", null, "1551", null, "108760", null, "2656", null, "40623", null, "1681", null, "171890", null, "2581", null, "311569", null, "2669", null, "296659", null, "2247", null, "279141", null, "2706", null, "81620", null, "2367", null, "74207", null, "2227", null, "60078", null, "1403", null, "22598", null, "891", null, "34.5", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.6", null, "0.2", null, "7.3", null, "0.6", null, "7.6", null, "0.7", null, "8.3", null, "0.5", null, "7.1", null, "0.4", null, "6.6", null, "0.3", null, "7.3", null, "0.4", null, "7.4", null, "0.7", null, "5.7", null, "0.6", null, "5.7", null, "0.4", null, "5.0", null, "0.3", null, "5.2", null, "0.5", null, "5.3", null, "0.5", null, "5.0", null, "0.5", null, "4.3", null, "0.5", null, "3.0", null, "0.3", null, "1.2", null, "0.2", null, "1.3", null, "0.2", null, "14.9", null, "0.3", null, "5.4", null, "0.4", null, "26.8", null, "0.5", null, "10.0", null, "0.4", null, "42.4", null, "0.5", null, "76.9", null, "0.5", null, "73.2", null, "0.5", null, "68.9", null, "0.7", null, "20.1", null, "0.6", null, "18.3", null, "0.6", null, "14.8", null, "0.4", null, "5.6", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "389530", null, "3867", null, "23737", null, "1131", null, "29093", null, "2662", null, "29504", null, "2670", null, "27056", null, "1850", null, "25513", null, "1745", null, "24901", null, "1340", null, "26420", null, "918", null, "26183", null, "2099", null, "24574", null, "2320", null, "22430", null, "1340", null, "21653", null, "1143", null, "18571", null, "2111", null, "23291", null, "1985", null, "19303", null, "1670", null, "18490", null, "1806", null, "11625", null, "1371", null, "9491", null, "1278", null, "7695", null, "1106", null, "58597", null, "1824", null, "17603", null, "1201", null, "99937", null, "2790", null, "34966", null, "1543", null, "154647", null, "2455", null, "301721", null, "2833", null, "289593", null, "2150", null, "276146", null, "2360", null, "89895", null, "2167", null, "79514", null, "1863", null, "66604", null, "1457", null, "28811", null, "1127", null, "36.9", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.1", null, "0.3", null, "7.5", null, "0.7", null, "7.6", null, "0.7", null, "6.9", null, "0.4", null, "6.5", null, "0.4", null, "6.4", null, "0.3", null, "6.8", null, "0.3", null, "6.7", null, "0.5", null, "6.3", null, "0.6", null, "5.8", null, "0.3", null, "5.6", null, "0.3", null, "4.8", null, "0.5", null, "6.0", null, "0.5", null, "5.0", null, "0.4", null, "4.7", null, "0.5", null, "3.0", null, "0.4", null, "2.4", null, "0.3", null, "2.0", null, "0.3", null, "15.0", null, "0.4", null, "4.5", null, "0.3", null, "25.7", null, "0.5", null, "9.0", null, "0.4", null, "39.7", null, "0.5", null, "77.5", null, "0.5", null, "74.3", null, "0.5", null, "70.9", null, "0.6", null, "23.1", null, "0.6", null, "20.4", null, "0.5", null, "17.1", null, "0.4", null, "7.4", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "53", "04"], ["5001900US5305", "Congressional District 5 (119th Congress), Washington", "801690", null, "5470", null, "40967", null, "1531", null, "48586", null, "3236", null, "47727", null, "2978", null, "56500", null, "2200", null, "56971", null, "2137", null, "52325", null, "1753", null, "55332", null, "1760", null, "55498", null, "3363", null, "54509", null, "2917", null, "43323", null, "1642", null, "43479", null, "1664", null, "43282", null, "2555", null, "49990", null, "2543", null, "49147", null, "2649", null, "40594", null, "2507", null, "30314", null, "2121", null, "16764", null, "1490", null, "16382", null, "2046", null, "96313", null, "2158", null, "30448", null, "1120", null, "167728", null, "3076", null, "83023", null, "1920", null, "331135", null, "3199", null, "653406", null, "3624", null, "633962", null, "3323", null, "595016", null, "3629", null, "203191", null, "2886", null, "184969", null, "2995", null, "153201", null, "1765", null, "63460", null, "1464", null, "38.9", null, "0.4", null, "101.5", null, "1.1", null, "66.8", null, "0.9", null, "31.9", null, "0.5", null, "34.9", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.1", null, "0.2", null, "6.1", null, "0.4", null, "6.0", null, "0.4", null, "7.0", null, "0.3", null, "7.1", null, "0.3", null, "6.5", null, "0.2", null, "6.9", null, "0.2", null, "6.9", null, "0.4", null, "6.8", null, "0.4", null, "5.4", null, "0.2", null, "5.4", null, "0.2", null, "5.4", null, "0.3", null, "6.2", null, "0.3", null, "6.1", null, "0.3", null, "5.1", null, "0.3", null, "3.8", null, "0.3", null, "2.1", null, "0.2", null, "2.0", null, "0.3", null, "12.0", null, "0.2", null, "3.8", null, "0.1", null, "20.9", null, "0.3", null, "10.4", null, "0.2", null, "41.3", null, "0.3", null, "81.5", null, "0.3", null, "79.1", null, "0.3", null, "74.2", null, "0.4", null, "25.3", null, "0.4", null, "23.1", null, "0.4", null, "19.1", null, "0.2", null, "7.9", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.2", null, "-888888888.0", "(X)", "403774", null, "3026", null, "20588", null, "1052", null, "24983", null, "2065", null, "23910", null, "2055", null, "30290", null, "1595", null, "30508", null, "1334", null, "26367", null, "1114", null, "28431", null, "1220", null, "28816", null, "2106", null, "28122", null, "2012", null, "21858", null, "810", null, "22370", null, "1206", null, "21168", null, "1701", null, "24340", null, "1768", null, "24377", null, "1875", null, "19071", null, "1652", null, "13929", null, "1459", null, "7418", null, "987", null, "7228", null, "1242", null, "48893", null, "1366", null, "16504", null, "859", null, "85985", null, "1926", null, "44294", null, "1190", null, "172534", null, "1889", null, "328324", null, "2104", null, "317789", null, "2048", null, "297323", null, "2562", null, "96363", null, "1949", null, "88525", null, "1928", null, "72023", null, "1128", null, "28575", null, "873", null, "38.1", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.1", null, "0.2", null, "6.2", null, "0.5", null, "5.9", null, "0.5", null, "7.5", null, "0.4", null, "7.6", null, "0.3", null, "6.5", null, "0.3", null, "7.0", null, "0.3", null, "7.1", null, "0.5", null, "7.0", null, "0.5", null, "5.4", null, "0.2", null, "5.5", null, "0.3", null, "5.2", null, "0.4", null, "6.0", null, "0.4", null, "6.0", null, "0.5", null, "4.7", null, "0.4", null, "3.4", null, "0.4", null, "1.8", null, "0.2", null, "1.8", null, "0.3", null, "12.1", null, "0.3", null, "4.1", null, "0.2", null, "21.3", null, "0.4", null, "11.0", null, "0.3", null, "42.7", null, "0.4", null, "81.3", null, "0.4", null, "78.7", null, "0.4", null, "73.6", null, "0.5", null, "23.9", null, "0.5", null, "21.9", null, "0.5", null, "17.8", null, "0.3", null, "7.1", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "397916", null, "3826", null, "20379", null, "1564", null, "23603", null, "2076", null, "23817", null, "2084", null, "26210", null, "1683", null, "26463", null, "1561", null, "25958", null, "1264", null, "26901", null, "1042", null, "26682", null, "2028", null, "26387", null, "1820", null, "21465", null, "1139", null, "21109", null, "960", null, "22114", null, "1661", null, "25650", null, "1597", null, "24770", null, "1615", null, "21523", null, "1678", null, "16385", null, "1361", null, "9346", null, "1005", null, "9154", null, "1322", null, "47420", null, "1385", null, "13944", null, "927", null, "81743", null, "2426", null, "38729", null, "1332", null, "158601", null, "2309", null, "325082", null, "2614", null, "316173", null, "2095", null, "297693", null, "2226", null, "106828", null, "1935", null, "96444", null, "1995", null, "81178", null, "1048", null, "34885", null, "885", null, "39.8", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.1", null, "0.4", null, "5.9", null, "0.5", null, "6.0", null, "0.5", null, "6.6", null, "0.4", null, "6.7", null, "0.4", null, "6.5", null, "0.3", null, "6.8", null, "0.3", null, "6.7", null, "0.5", null, "6.6", null, "0.5", null, "5.4", null, "0.3", null, "5.3", null, "0.3", null, "5.6", null, "0.4", null, "6.4", null, "0.4", null, "6.2", null, "0.4", null, "5.4", null, "0.4", null, "4.1", null, "0.3", null, "2.3", null, "0.3", null, "2.3", null, "0.3", null, "11.9", null, "0.3", null, "3.5", null, "0.2", null, "20.5", null, "0.4", null, "9.7", null, "0.3", null, "39.9", null, "0.4", null, "81.7", null, "0.5", null, "79.5", null, "0.4", null, "74.8", null, "0.6", null, "26.8", null, "0.5", null, "24.2", null, "0.5", null, "20.4", null, "0.3", null, "8.8", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "53", "05"], ["5001900US5306", "Congressional District 6 (119th Congress), Washington", "799758", null, "9171", null, "33844", null, "2361", null, "45731", null, "3401", null, "45028", null, "3885", null, "43045", null, "2549", null, "41968", null, "3141", null, "46826", null, "3065", null, "57894", null, "3218", null, "59594", null, "4583", null, "56110", null, "4237", null, "44953", null, "2558", null, "42583", null, "2239", null, "44247", null, "3152", null, "54245", null, "3211", null, "57575", null, "2957", null, "51208", null, "2699", null, "37897", null, "2223", null, "21256", null, "1878", null, "15754", null, "1934", null, "90759", null, "4274", null, "27747", null, "2042", null, "152350", null, "5419", null, "57266", null, "3175", null, "305437", null, "6021", null, "666541", null, "7348", null, "647408", null, "7038", null, "623864", null, "6885", null, "237935", null, "4676", null, "217471", null, "4164", null, "183690", null, "3195", null, "74907", null, "1787", null, "42.3", null, "0.4", null, "100.1", null, "1.6", null, "72.5", null, "1.5", null, "39.6", null, "1.0", null, "32.9", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.2", null, "0.3", null, "5.7", null, "0.4", null, "5.6", null, "0.5", null, "5.4", null, "0.3", null, "5.2", null, "0.4", null, "5.9", null, "0.4", null, "7.2", null, "0.4", null, "7.5", null, "0.6", null, "7.0", null, "0.5", null, "5.6", null, "0.3", null, "5.3", null, "0.3", null, "5.5", null, "0.4", null, "6.8", null, "0.4", null, "7.2", null, "0.4", null, "6.4", null, "0.3", null, "4.7", null, "0.3", null, "2.7", null, "0.2", null, "2.0", null, "0.2", null, "11.3", null, "0.5", null, "3.5", null, "0.2", null, "19.0", null, "0.6", null, "7.2", null, "0.4", null, "38.2", null, "0.5", null, "83.3", null, "0.6", null, "81.0", null, "0.6", null, "78.0", null, "0.6", null, "29.8", null, "0.7", null, "27.2", null, "0.6", null, "23.0", null, "0.5", null, "9.4", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.0", null, "-888888888.0", "(X)", "400165", null, "6370", null, "18237", null, "1614", null, "22537", null, "2499", null, "23147", null, "2448", null, "21599", null, "1794", null, "23502", null, "2208", null, "25788", null, "2266", null, "30322", null, "2074", null, "30327", null, "2680", null, "27047", null, "2665", null, "24313", null, "1683", null, "21411", null, "1575", null, "21330", null, "1842", null, "26243", null, "1862", null, "26237", null, "1998", null, "25083", null, "2012", null, "16071", null, "1366", null, "10171", null, "1204", null, "6800", null, "1347", null, "45684", null, "3025", null, "13630", null, "1606", null, "77551", null, "3783", null, "31471", null, "2246", null, "158585", null, "4337", null, "332434", null, "5459", null, "322614", null, "5157", null, "309204", null, "4903", null, "110605", null, "2878", null, "101224", null, "2694", null, "84362", null, "2091", null, "33042", null, "1047", null, "40.9", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.6", null, "0.4", null, "5.6", null, "0.6", null, "5.8", null, "0.6", null, "5.4", null, "0.4", null, "5.9", null, "0.6", null, "6.4", null, "0.5", null, "7.6", null, "0.5", null, "7.6", null, "0.7", null, "6.8", null, "0.7", null, "6.1", null, "0.4", null, "5.4", null, "0.4", null, "5.3", null, "0.5", null, "6.6", null, "0.5", null, "6.6", null, "0.5", null, "6.3", null, "0.5", null, "4.0", null, "0.3", null, "2.5", null, "0.3", null, "1.7", null, "0.3", null, "11.4", null, "0.7", null, "3.4", null, "0.4", null, "19.4", null, "0.8", null, "7.9", null, "0.6", null, "39.6", null, "0.7", null, "83.1", null, "0.8", null, "80.6", null, "0.8", null, "77.3", null, "0.9", null, "27.6", null, "0.8", null, "25.3", null, "0.7", null, "21.1", null, "0.6", null, "8.3", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "399593", null, "4760", null, "15607", null, "1693", null, "23194", null, "2415", null, "21881", null, "2511", null, "21446", null, "2041", null, "18466", null, "1999", null, "21038", null, "1678", null, "27572", null, "1934", null, "29267", null, "2821", null, "29063", null, "2654", null, "20640", null, "1525", null, "21172", null, "1458", null, "22917", null, "2122", null, "28002", null, "2227", null, "31338", null, "2142", null, "26125", null, "1569", null, "21826", null, "1451", null, "11085", null, "1346", null, "8954", null, "1235", null, "45075", null, "2464", null, "14117", null, "1489", null, "74799", null, "3248", null, "25795", null, "2004", null, "146852", null, "3627", null, "334107", null, "4112", null, "324794", null, "3827", null, "314660", null, "3903", null, "127330", null, "2753", null, "116247", null, "2437", null, "99328", null, "1904", null, "41865", null, "1221", null, "43.6", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "3.9", null, "0.4", null, "5.8", null, "0.6", null, "5.5", null, "0.6", null, "5.4", null, "0.5", null, "4.6", null, "0.5", null, "5.3", null, "0.4", null, "6.9", null, "0.5", null, "7.3", null, "0.7", null, "7.3", null, "0.7", null, "5.2", null, "0.4", null, "5.3", null, "0.4", null, "5.7", null, "0.5", null, "7.0", null, "0.6", null, "7.8", null, "0.5", null, "6.5", null, "0.4", null, "5.5", null, "0.4", null, "2.8", null, "0.3", null, "2.2", null, "0.3", null, "11.3", null, "0.6", null, "3.5", null, "0.4", null, "18.7", null, "0.7", null, "6.5", null, "0.5", null, "36.8", null, "0.8", null, "83.6", null, "0.8", null, "81.3", null, "0.7", null, "78.7", null, "0.7", null, "31.9", null, "0.8", null, "29.1", null, "0.7", null, "24.9", null, "0.5", null, "10.5", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "53", "06"], ["5001900US5307", "Congressional District 7 (119th Congress), Washington", "811726", null, "12952", null, "34219", null, "3180", null, "32081", null, "3623", null, "33728", null, "3691", null, "37616", null, "3190", null, "58652", null, "5144", null, "90328", null, "5496", null, "101225", null, "5407", null, "77993", null, "5705", null, "59643", null, "4637", null, "46095", null, "3570", null, "47826", null, "3829", null, "42755", null, "4169", null, "40789", null, "3097", null, "33464", null, "2991", null, "29434", null, "2413", null, "22493", null, "2185", null, "11632", null, "1720", null, "11753", null, "1899", null, "65809", null, "5637", null, "19620", null, "2356", null, "119648", null, "7977", null, "76648", null, "5525", null, "425457", null, "10757", null, "704888", null, "10844", null, "692078", null, "10248", null, "664075", null, "10317", null, "149565", null, "5871", null, "133775", null, "5740", null, "108776", null, "5302", null, "45878", null, "3344", null, "36.0", null, "0.5", null, "101.8", null, "3.5", null, "39.2", null, "1.8", null, "18.6", null, "1.0", null, "20.5", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.2", null, "0.4", null, "4.0", null, "0.4", null, "4.2", null, "0.4", null, "4.6", null, "0.4", null, "7.2", null, "0.6", null, "11.1", null, "0.7", null, "12.5", null, "0.7", null, "9.6", null, "0.7", null, "7.3", null, "0.6", null, "5.7", null, "0.4", null, "5.9", null, "0.5", null, "5.3", null, "0.5", null, "5.0", null, "0.4", null, "4.1", null, "0.4", null, "3.6", null, "0.3", null, "2.8", null, "0.3", null, "1.4", null, "0.2", null, "1.4", null, "0.2", null, "8.1", null, "0.6", null, "2.4", null, "0.3", null, "14.7", null, "0.9", null, "9.4", null, "0.7", null, "52.4", null, "1.1", null, "86.8", null, "0.8", null, "85.3", null, "0.9", null, "81.8", null, "0.8", null, "18.4", null, "0.7", null, "16.5", null, "0.7", null, "13.4", null, "0.7", null, "5.7", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.0", null, "-888888888.0", "(X)", "409529", null, "8765", null, "17084", null, "2212", null, "15323", null, "2029", null, "17482", null, "2492", null, "20026", null, "2051", null, "29348", null, "3258", null, "43760", null, "3556", null, "51969", null, "3600", null, "41854", null, "3350", null, "32287", null, "3001", null, "23722", null, "2621", null, "24148", null, "2428", null, "23137", null, "3138", null, "20084", null, "2194", null, "16687", null, "1960", null, "12973", null, "1716", null, "9990", null, "1520", null, "5407", null, "1205", null, "4248", null, "910", null, "32805", null, "3113", null, "10336", null, "1477", null, "60225", null, "4639", null, "39038", null, "3573", null, "219244", null, "7104", null, "356540", null, "7918", null, "349304", null, "7725", null, "334544", null, "7762", null, "69389", null, "3140", null, "62671", null, "3028", null, "49305", null, "2921", null, "19645", null, "1761", null, "36.0", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.2", null, "0.5", null, "3.7", null, "0.5", null, "4.3", null, "0.6", null, "4.9", null, "0.5", null, "7.2", null, "0.8", null, "10.7", null, "0.8", null, "12.7", null, "0.8", null, "10.2", null, "0.8", null, "7.9", null, "0.7", null, "5.8", null, "0.6", null, "5.9", null, "0.6", null, "5.6", null, "0.8", null, "4.9", null, "0.5", null, "4.1", null, "0.5", null, "3.2", null, "0.4", null, "2.4", null, "0.4", null, "1.3", null, "0.3", null, "1.0", null, "0.2", null, "8.0", null, "0.7", null, "2.5", null, "0.3", null, "14.7", null, "1.0", null, "9.5", null, "0.9", null, "53.5", null, "1.3", null, "87.1", null, "1.0", null, "85.3", null, "1.0", null, "81.7", null, "1.0", null, "16.9", null, "0.7", null, "15.3", null, "0.7", null, "12.0", null, "0.7", null, "4.8", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "402197", null, "10163", null, "17135", null, "2370", null, "16758", null, "2628", null, "16246", null, "2372", null, "17590", null, "2347", null, "29304", null, "3394", null, "46568", null, "3590", null, "49256", null, "3076", null, "36139", null, "3509", null, "27356", null, "2518", null, "22373", null, "2044", null, "23678", null, "2106", null, "19618", null, "2089", null, "20705", null, "1968", null, "16777", null, "2149", null, "16461", null, "1554", null, "12503", null, "1406", null, "6225", null, "1115", null, "7505", null, "1569", null, "33004", null, "3560", null, "9284", null, "1761", null, "59423", null, "5394", null, "37610", null, "3561", null, "206213", null, "7536", null, "348348", null, "8097", null, "342774", null, "7902", null, "329531", null, "7686", null, "80176", null, "4097", null, "71104", null, "4026", null, "59471", null, "3576", null, "26233", null, "2475", null, "35.9", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.3", null, "0.6", null, "4.2", null, "0.6", null, "4.0", null, "0.6", null, "4.4", null, "0.6", null, "7.3", null, "0.8", null, "11.6", null, "0.8", null, "12.2", null, "0.8", null, "9.0", null, "0.8", null, "6.8", null, "0.6", null, "5.6", null, "0.5", null, "5.9", null, "0.5", null, "4.9", null, "0.5", null, "5.1", null, "0.5", null, "4.2", null, "0.5", null, "4.1", null, "0.4", null, "3.1", null, "0.4", null, "1.5", null, "0.3", null, "1.9", null, "0.4", null, "8.2", null, "0.8", null, "2.3", null, "0.4", null, "14.8", null, "1.1", null, "9.4", null, "0.8", null, "51.3", null, "1.3", null, "86.6", null, "1.1", null, "85.2", null, "1.1", null, "81.9", null, "1.1", null, "19.9", null, "1.0", null, "17.7", null, "1.0", null, "14.8", null, "0.9", null, "6.5", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "53", "07"], ["5001900US5308", "Congressional District 8 (119th Congress), Washington", "794910", null, "16145", null, "48070", null, "4499", null, "51156", null, "3805", null, "53682", null, "4141", null, "56016", null, "3960", null, "43117", null, "4041", null, "34223", null, "3247", null, "48767", null, "4510", null, "59583", null, "4853", null, "62828", null, "5252", null, "59827", null, "4664", null, "51735", null, "4152", null, "46460", null, "4257", null, "49754", null, "3136", null, "45935", null, "3072", null, "36857", null, "2974", null, "22830", null, "2750", null, "12763", null, "1670", null, "11307", null, "1823", null, "104838", null, "6222", null, "36963", null, "3117", null, "189871", null, "8758", null, "62170", null, "4227", null, "304534", null, "9090", null, "628896", null, "11807", null, "605039", null, "11129", null, "575619", null, "11822", null, "179446", null, "6786", null, "159518", null, "6243", null, "129692", null, "5699", null, "46900", null, "3782", null, "40.2", null, "0.7", null, "101.9", null, "2.8", null, "67.2", null, "2.3", null, "27.3", null, "1.4", null, "39.9", null, "1.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.0", null, "0.5", null, "6.4", null, "0.4", null, "6.8", null, "0.5", null, "7.0", null, "0.5", null, "5.4", null, "0.5", null, "4.3", null, "0.4", null, "6.1", null, "0.6", null, "7.5", null, "0.6", null, "7.9", null, "0.6", null, "7.5", null, "0.6", null, "6.5", null, "0.5", null, "5.8", null, "0.5", null, "6.3", null, "0.4", null, "5.8", null, "0.4", null, "4.6", null, "0.4", null, "2.9", null, "0.3", null, "1.6", null, "0.2", null, "1.4", null, "0.2", null, "13.2", null, "0.7", null, "4.6", null, "0.4", null, "23.9", null, "0.8", null, "7.8", null, "0.5", null, "38.3", null, "0.9", null, "79.1", null, "0.8", null, "76.1", null, "0.8", null, "72.4", null, "0.8", null, "22.6", null, "0.9", null, "20.1", null, "0.8", null, "16.3", null, "0.7", null, "5.9", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.5", null, "-888888888.0", "(X)", "401204", null, "9991", null, "24580", null, "2862", null, "27522", null, "2680", null, "26810", null, "2662", null, "28678", null, "2545", null, "21572", null, "2935", null, "17148", null, "1984", null, "23521", null, "2788", null, "30122", null, "2831", null, "31987", null, "3301", null, "31729", null, "2932", null, "27137", null, "2668", null, "24331", null, "2528", null, "24463", null, "1768", null, "23476", null, "2061", null, "17602", null, "1861", null, "10815", null, "1493", null, "4741", null, "889", null, "4970", null, "989", null, "54332", null, "4040", null, "19562", null, "1986", null, "98474", null, "6077", null, "30688", null, "3232", null, "153028", null, "5956", null, "315076", null, "7542", null, "302730", null, "6951", null, "288520", null, "6864", null, "86067", null, "3818", null, "76820", null, "3580", null, "61604", null, "3297", null, "20526", null, "1957", null, "40.1", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.1", null, "0.6", null, "6.9", null, "0.6", null, "6.7", null, "0.6", null, "7.1", null, "0.6", null, "5.4", null, "0.7", null, "4.3", null, "0.5", null, "5.9", null, "0.7", null, "7.5", null, "0.7", null, "8.0", null, "0.8", null, "7.9", null, "0.7", null, "6.8", null, "0.6", null, "6.1", null, "0.7", null, "6.1", null, "0.4", null, "5.9", null, "0.5", null, "4.4", null, "0.5", null, "2.7", null, "0.4", null, "1.2", null, "0.2", null, "1.2", null, "0.2", null, "13.5", null, "0.9", null, "4.9", null, "0.5", null, "24.5", null, "1.1", null, "7.6", null, "0.8", null, "38.1", null, "1.1", null, "78.5", null, "1.1", null, "75.5", null, "1.1", null, "71.9", null, "1.1", null, "21.5", null, "1.0", null, "19.1", null, "0.9", null, "15.4", null, "0.8", null, "5.1", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "393706", null, "9511", null, "23490", null, "3139", null, "23634", null, "2507", null, "26872", null, "2821", null, "27338", null, "2941", null, "21545", null, "2589", null, "17075", null, "2405", null, "25246", null, "2631", null, "29461", null, "3052", null, "30841", null, "2921", null, "28098", null, "2388", null, "24598", null, "2343", null, "22129", null, "2396", null, "25291", null, "2181", null, "22459", null, "2045", null, "19255", null, "1989", null, "12015", null, "1752", null, "8022", null, "1208", null, "6337", null, "1425", null, "50506", null, "3879", null, "17401", null, "2099", null, "91397", null, "5444", null, "31482", null, "2919", null, "151506", null, "6020", null, "313820", null, "6871", null, "302309", null, "6722", null, "287099", null, "6968", null, "93379", null, "3781", null, "82698", null, "3504", null, "68088", null, "3207", null, "26374", null, "2536", null, "40.3", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.0", null, "0.7", null, "6.0", null, "0.6", null, "6.8", null, "0.6", null, "6.9", null, "0.7", null, "5.5", null, "0.6", null, "4.3", null, "0.6", null, "6.4", null, "0.7", null, "7.5", null, "0.8", null, "7.8", null, "0.7", null, "7.1", null, "0.6", null, "6.2", null, "0.6", null, "5.6", null, "0.6", null, "6.4", null, "0.6", null, "5.7", null, "0.5", null, "4.9", null, "0.5", null, "3.1", null, "0.5", null, "2.0", null, "0.3", null, "1.6", null, "0.4", null, "12.8", null, "0.9", null, "4.4", null, "0.5", null, "23.2", null, "1.1", null, "8.0", null, "0.7", null, "38.5", null, "1.2", null, "79.7", null, "1.1", null, "76.8", null, "1.1", null, "72.9", null, "1.2", null, "23.7", null, "1.0", null, "21.0", null, "0.9", null, "17.3", null, "0.8", null, "6.7", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "53", "08"], ["5001900US5309", "Congressional District 9 (119th Congress), Washington", "775676", null, "12822", null, "40917", null, "3620", null, "41553", null, "3872", null, "44801", null, "4502", null, "41794", null, "3610", null, "46040", null, "4381", null, "66625", null, "5104", null, "67805", null, "5502", null, "60773", null, "5208", null, "57510", null, "4251", null, "46271", null, "3387", null, "47533", null, "3238", null, "44667", null, "3427", null, "46830", null, "3646", null, "39046", null, "2831", null, "30643", null, "3151", null, "24310", null, "2468", null, "14799", null, "2433", null, "13759", null, "2157", null, "86354", null, "4906", null, "26784", null, "2613", null, "154055", null, "7237", null, "61050", null, "4686", null, "340547", null, "9372", null, "640812", null, "11086", null, "621621", null, "11172", null, "598498", null, "10876", null, "169387", null, "6239", null, "150381", null, "5539", null, "122557", null, "5073", null, "52868", null, "3371", null, "38.2", null, "0.6", null, "104.0", null, "3.1", null, "55.4", null, "2.1", null, "24.6", null, "1.2", null, "30.9", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.3", null, "0.4", null, "5.4", null, "0.5", null, "5.8", null, "0.6", null, "5.4", null, "0.5", null, "5.9", null, "0.6", null, "8.6", null, "0.6", null, "8.7", null, "0.7", null, "7.8", null, "0.6", null, "7.4", null, "0.5", null, "6.0", null, "0.4", null, "6.1", null, "0.4", null, "5.8", null, "0.5", null, "6.0", null, "0.5", null, "5.0", null, "0.3", null, "4.0", null, "0.4", null, "3.1", null, "0.3", null, "1.9", null, "0.3", null, "1.8", null, "0.3", null, "11.1", null, "0.6", null, "3.5", null, "0.3", null, "19.9", null, "0.8", null, "7.9", null, "0.6", null, "43.9", null, "0.9", null, "82.6", null, "0.8", null, "80.1", null, "0.8", null, "77.2", null, "0.8", null, "21.8", null, "0.8", null, "19.4", null, "0.7", null, "15.8", null, "0.6", null, "6.8", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.0", null, "-888888888.0", "(X)", "395435", null, "8520", null, "20756", null, "2465", null, "23501", null, "2866", null, "22335", null, "2420", null, "20606", null, "2406", null, "24101", null, "2748", null, "37093", null, "4001", null, "36556", null, "3683", null, "31975", null, "3806", null, "31063", null, "2665", null, "22882", null, "2389", null, "24385", null, "2395", null, "23053", null, "2449", null, "22959", null, "2125", null, "17805", null, "1706", null, "14574", null, "2057", null, "10443", null, "1572", null, "6823", null, "1479", null, "4525", null, "1047", null, "45836", null, "2924", null, "13321", null, "1829", null, "79913", null, "4451", null, "31386", null, "3011", null, "181394", null, "6753", null, "324963", null, "7569", null, "315522", null, "7693", null, "305183", null, "7578", null, "77129", null, "3852", null, "67357", null, "3473", null, "54170", null, "3107", null, "21791", null, "2072", null, "37.1", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.6", null, "5.9", null, "0.7", null, "5.6", null, "0.6", null, "5.2", null, "0.6", null, "6.1", null, "0.7", null, "9.4", null, "0.9", null, "9.2", null, "0.9", null, "8.1", null, "0.9", null, "7.9", null, "0.7", null, "5.8", null, "0.6", null, "6.2", null, "0.6", null, "5.8", null, "0.6", null, "5.8", null, "0.5", null, "4.5", null, "0.4", null, "3.7", null, "0.5", null, "2.6", null, "0.4", null, "1.7", null, "0.4", null, "1.1", null, "0.3", null, "11.6", null, "0.7", null, "3.4", null, "0.5", null, "20.2", null, "1.0", null, "7.9", null, "0.7", null, "45.9", null, "1.3", null, "82.2", null, "1.0", null, "79.8", null, "1.0", null, "77.2", null, "1.0", null, "19.5", null, "0.9", null, "17.0", null, "0.8", null, "13.7", null, "0.8", null, "5.5", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "380241", null, "8837", null, "20161", null, "2573", null, "18052", null, "2231", null, "22466", null, "3358", null, "21188", null, "2187", null, "21939", null, "2950", null, "29532", null, "2779", null, "31249", null, "3055", null, "28798", null, "2754", null, "26447", null, "2795", null, "23389", null, "1937", null, "23148", null, "1932", null, "21614", null, "2434", null, "23871", null, "2460", null, "21241", null, "2000", null, "16069", null, "2011", null, "13867", null, "1892", null, "7976", null, "1462", null, "9234", null, "1792", null, "40518", null, "3346", null, "13463", null, "1838", null, "74142", null, "4903", null, "29664", null, "3087", null, "159153", null, "6243", null, "315849", null, "7191", null, "306099", null, "7144", null, "293315", null, "6864", null, "92258", null, "3817", null, "83024", null, "3749", null, "68387", null, "3209", null, "31077", null, "2163", null, "39.4", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.3", null, "0.6", null, "4.7", null, "0.6", null, "5.9", null, "0.9", null, "5.6", null, "0.6", null, "5.8", null, "0.7", null, "7.8", null, "0.7", null, "8.2", null, "0.8", null, "7.6", null, "0.7", null, "7.0", null, "0.7", null, "6.2", null, "0.5", null, "6.1", null, "0.5", null, "5.7", null, "0.7", null, "6.3", null, "0.7", null, "5.6", null, "0.5", null, "4.2", null, "0.5", null, "3.6", null, "0.5", null, "2.1", null, "0.4", null, "2.4", null, "0.5", null, "10.7", null, "0.8", null, "3.5", null, "0.5", null, "19.5", null, "1.1", null, "7.8", null, "0.8", null, "41.9", null, "1.1", null, "83.1", null, "1.1", null, "80.5", null, "1.1", null, "77.1", null, "1.1", null, "24.3", null, "1.0", null, "21.8", null, "1.0", null, "18.0", null, "0.9", null, "8.2", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "53", "09"], ["5001900US5310", "Congressional District 10 (119th Congress), Washington", "776532", null, "13205", null, "45640", null, "3134", null, "48286", null, "3903", null, "47841", null, "4559", null, "45326", null, "2321", null, "50490", null, "2824", null, "60576", null, "3380", null, "63948", null, "2814", null, "56640", null, "3902", null, "55669", null, "3625", null, "47896", null, "2989", null, "43721", null, "2920", null, "39847", null, "3104", null, "45526", null, "2900", null, "40636", null, "2837", null, "33324", null, "2615", null, "22876", null, "1817", null, "14545", null, "1915", null, "13745", null, "1718", null, "96127", null, "4354", null, "28453", null, "1949", null, "170220", null, "6750", null, "67363", null, "3215", null, "332649", null, "7015", null, "625495", null, "9599", null, "606312", null, "9093", null, "579621", null, "9070", null, "170652", null, "4953", null, "152246", null, "4550", null, "125126", null, "3682", null, "51166", null, "2044", null, "37.3", null, "0.6", null, "99.9", null, "2.1", null, "61.4", null, "1.4", null, "26.0", null, "1.0", null, "35.4", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.9", null, "0.4", null, "6.2", null, "0.5", null, "6.2", null, "0.6", null, "5.8", null, "0.3", null, "6.5", null, "0.3", null, "7.8", null, "0.4", null, "8.2", null, "0.3", null, "7.3", null, "0.5", null, "7.2", null, "0.5", null, "6.2", null, "0.4", null, "5.6", null, "0.4", null, "5.1", null, "0.4", null, "5.9", null, "0.4", null, "5.2", null, "0.4", null, "4.3", null, "0.3", null, "2.9", null, "0.2", null, "1.9", null, "0.2", null, "1.8", null, "0.2", null, "12.4", null, "0.5", null, "3.7", null, "0.2", null, "21.9", null, "0.6", null, "8.7", null, "0.4", null, "42.8", null, "0.6", null, "80.5", null, "0.6", null, "78.1", null, "0.6", null, "74.6", null, "0.7", null, "22.0", null, "0.7", null, "19.6", null, "0.7", null, "16.1", null, "0.5", null, "6.6", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "0.9", null, "-888888888.0", "(X)", "388123", null, "8344", null, "23334", null, "2160", null, "23455", null, "2602", null, "25879", null, "2924", null, "23633", null, "1953", null, "27173", null, "1933", null, "31098", null, "2390", null, "34052", null, "1661", null, "27623", null, "2507", null, "29054", null, "2351", null, "22927", null, "2109", null, "22018", null, "1610", null, "19596", null, "2380", null, "22911", null, "2138", null, "18403", null, "1903", null, "15576", null, "1721", null, "10280", null, "1214", null, "6216", null, "1632", null, "4895", null, "1043", null, "49334", null, "2898", null, "14027", null, "1614", null, "86695", null, "4677", null, "36779", null, "2269", null, "172633", null, "5018", null, "310420", null, "6239", null, "301428", null, "5664", null, "286958", null, "5559", null, "78281", null, "3141", null, "68354", null, "2902", null, "55370", null, "2286", null, "21391", null, "1343", null, "36.0", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.0", null, "0.5", null, "6.0", null, "0.6", null, "6.7", null, "0.7", null, "6.1", null, "0.5", null, "7.0", null, "0.5", null, "8.0", null, "0.6", null, "8.8", null, "0.4", null, "7.1", null, "0.6", null, "7.5", null, "0.6", null, "5.9", null, "0.5", null, "5.7", null, "0.4", null, "5.0", null, "0.6", null, "5.9", null, "0.5", null, "4.7", null, "0.5", null, "4.0", null, "0.4", null, "2.6", null, "0.3", null, "1.6", null, "0.4", null, "1.3", null, "0.3", null, "12.7", null, "0.6", null, "3.6", null, "0.4", null, "22.3", null, "0.9", null, "9.5", null, "0.5", null, "44.5", null, "0.8", null, "80.0", null, "0.9", null, "77.7", null, "0.9", null, "73.9", null, "1.0", null, "20.2", null, "0.8", null, "17.6", null, "0.8", null, "14.3", null, "0.6", null, "5.5", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "388409", null, "7092", null, "22306", null, "1855", null, "24831", null, "2559", null, "21962", null, "3112", null, "21693", null, "1574", null, "23317", null, "1800", null, "29478", null, "1926", null, "29896", null, "1791", null, "29017", null, "2477", null, "26615", null, "2340", null, "24969", null, "1616", null, "21703", null, "1869", null, "20251", null, "2107", null, "22615", null, "1842", null, "22233", null, "1847", null, "17748", null, "1878", null, "12596", null, "1276", null, "8329", null, "1276", null, "8850", null, "1321", null, "46793", null, "2883", null, "14426", null, "1224", null, "83525", null, "3776", null, "30584", null, "2131", null, "160016", null, "3802", null, "315075", null, "5483", null, "304884", null, "5482", null, "292663", null, "5310", null, "92371", null, "3188", null, "83892", null, "3145", null, "69756", null, "2323", null, "29775", null, "1430", null, "38.6", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.7", null, "0.4", null, "6.4", null, "0.6", null, "5.7", null, "0.8", null, "5.6", null, "0.4", null, "6.0", null, "0.4", null, "7.6", null, "0.5", null, "7.7", null, "0.4", null, "7.5", null, "0.6", null, "6.9", null, "0.6", null, "6.4", null, "0.4", null, "5.6", null, "0.5", null, "5.2", null, "0.5", null, "5.8", null, "0.5", null, "5.7", null, "0.5", null, "4.6", null, "0.5", null, "3.2", null, "0.3", null, "2.1", null, "0.3", null, "2.3", null, "0.3", null, "12.0", null, "0.6", null, "3.7", null, "0.3", null, "21.5", null, "0.8", null, "7.9", null, "0.5", null, "41.2", null, "0.8", null, "81.1", null, "0.8", null, "78.5", null, "0.8", null, "75.3", null, "0.8", null, "23.8", null, "0.8", null, "21.6", null, "0.8", null, "18.0", null, "0.6", null, "7.7", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "53", "10"], ["5001900US5401", "Congressional District 1 (119th Congress), West Virginia", "861893", null, "2702", null, "41707", null, "1315", null, "40649", null, "2815", null, "55189", null, "2706", null, "54058", null, "2198", null, "48823", null, "1951", null, "48708", null, "2405", null, "49848", null, "1697", null, "46904", null, "3309", null, "54313", null, "3019", null, "54038", null, "1484", null, "56353", null, "1580", null, "51087", null, "3174", null, "60804", null, "3198", null, "63519", null, "3086", null, "52281", null, "3132", null, "40392", null, "2518", null, "23934", null, "1971", null, "19286", null, "1972", null, "95838", null, "1333", null, "33575", null, "713", null, "171120", null, "1729", null, "69306", null, "2619", null, "302654", null, "2598", null, "714612", null, "2832", null, "690773", null, "2199", null, "661707", null, "3202", null, "260216", null, "3258", null, "239468", null, "3223", null, "199412", null, "1864", null, "83612", null, "1242", null, "44.2", null, "0.3", null, "97.1", null, "1.3", null, "75.4", null, "0.7", null, "40.6", null, "0.5", null, "34.8", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.8", null, "0.1", null, "4.7", null, "0.3", null, "6.4", null, "0.3", null, "6.3", null, "0.2", null, "5.7", null, "0.2", null, "5.7", null, "0.3", null, "5.8", null, "0.2", null, "5.4", null, "0.4", null, "6.3", null, "0.3", null, "6.3", null, "0.2", null, "6.5", null, "0.2", null, "5.9", null, "0.4", null, "7.1", null, "0.4", null, "7.4", null, "0.4", null, "6.1", null, "0.4", null, "4.7", null, "0.3", null, "2.8", null, "0.2", null, "2.2", null, "0.2", null, "11.1", null, "0.1", null, "3.9", null, "0.1", null, "19.9", null, "0.2", null, "8.0", null, "0.3", null, "35.1", null, "0.3", null, "82.9", null, "0.2", null, "80.1", null, "0.2", null, "76.8", null, "0.4", null, "30.2", null, "0.4", null, "27.8", null, "0.4", null, "23.1", null, "0.2", null, "9.7", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "0.9", null, "-888888888.0", "(X)", "424643", null, "2949", null, "20070", null, "1683", null, "19331", null, "2364", null, "29955", null, "2370", null, "29211", null, "1708", null, "25173", null, "1758", null, "25571", null, "1738", null, "25386", null, "1327", null, "22605", null, "2169", null, "27973", null, "2101", null, "26294", null, "1329", null, "28044", null, "1185", null, "25461", null, "2444", null, "28510", null, "2426", null, "30498", null, "1999", null, "24576", null, "2027", null, "18278", null, "1493", null, "10669", null, "1295", null, "7038", null, "1213", null, "49286", null, "1449", null, "18134", null, "1214", null, "87490", null, "2581", null, "36250", null, "1946", null, "155919", null, "2225", null, "349989", null, "2340", null, "337153", null, "1769", null, "321194", null, "2226", null, "119569", null, "2295", null, "109279", null, "2073", null, "91059", null, "1172", null, "35985", null, "658", null, "42.9", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.7", null, "0.4", null, "4.6", null, "0.6", null, "7.1", null, "0.6", null, "6.9", null, "0.4", null, "5.9", null, "0.4", null, "6.0", null, "0.4", null, "6.0", null, "0.3", null, "5.3", null, "0.5", null, "6.6", null, "0.5", null, "6.2", null, "0.3", null, "6.6", null, "0.3", null, "6.0", null, "0.6", null, "6.7", null, "0.6", null, "7.2", null, "0.5", null, "5.8", null, "0.5", null, "4.3", null, "0.3", null, "2.5", null, "0.3", null, "1.7", null, "0.3", null, "11.6", null, "0.3", null, "4.3", null, "0.3", null, "20.6", null, "0.5", null, "8.5", null, "0.5", null, "36.7", null, "0.5", null, "82.4", null, "0.5", null, "79.4", null, "0.5", null, "75.6", null, "0.6", null, "28.2", null, "0.6", null, "25.7", null, "0.5", null, "21.4", null, "0.3", null, "8.5", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "437250", null, "3315", null, "21637", null, "1931", null, "21318", null, "2062", null, "25234", null, "1938", null, "24847", null, "1932", null, "23650", null, "1354", null, "23137", null, "1315", null, "24462", null, "854", null, "24299", null, "2069", null, "26340", null, "2021", null, "27744", null, "965", null, "28309", null, "880", null, "25626", null, "2058", null, "32294", null, "2174", null, "33021", null, "2275", null, "27705", null, "2209", null, "22114", null, "1789", null, "13265", null, "1442", null, "12248", null, "1330", null, "46552", null, "1197", null, "15441", null, "1243", null, "83630", null, "2684", null, "33056", null, "1495", null, "146735", null, "1979", null, "364623", null, "2447", null, "353620", null, "2088", null, "340513", null, "2397", null, "140647", null, "2342", null, "130189", null, "2325", null, "108353", null, "1363", null, "47627", null, "1055", null, "45.6", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.9", null, "0.4", null, "4.9", null, "0.5", null, "5.8", null, "0.4", null, "5.7", null, "0.4", null, "5.4", null, "0.3", null, "5.3", null, "0.3", null, "5.6", null, "0.2", null, "5.6", null, "0.5", null, "6.0", null, "0.5", null, "6.3", null, "0.2", null, "6.5", null, "0.2", null, "5.9", null, "0.5", null, "7.4", null, "0.5", null, "7.6", null, "0.5", null, "6.3", null, "0.5", null, "5.1", null, "0.4", null, "3.0", null, "0.3", null, "2.8", null, "0.3", null, "10.6", null, "0.3", null, "3.5", null, "0.3", null, "19.1", null, "0.5", null, "7.6", null, "0.3", null, "33.6", null, "0.4", null, "83.4", null, "0.5", null, "80.9", null, "0.5", null, "77.9", null, "0.6", null, "32.2", null, "0.5", null, "29.8", null, "0.5", null, "24.8", null, "0.3", null, "10.9", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "54", "01"], ["5001900US5402", "Congressional District 2 (119th Congress), West Virginia", "908086", null, "2702", null, "44715", null, "1809", null, "44258", null, "2905", null, "52985", null, "3037", null, "59214", null, "2481", null, "59692", null, "2041", null, "55574", null, "1746", null, "58994", null, "1538", null, "61784", null, "3546", null, "52955", null, "3561", null, "52064", null, "1765", null, "56909", null, "1477", null, "58358", null, "2958", null, "63145", null, "2927", null, "58193", null, "2807", null, "50691", null, "2775", null, "40380", null, "2135", null, "21169", null, "1795", null, "17006", null, "1701", null, "97243", null, "2289", null, "34500", null, "1508", null, "176458", null, "1715", null, "84406", null, "2102", null, "348213", null, "2731", null, "755016", null, "2704", null, "731628", null, "2481", null, "695437", null, "3383", null, "250584", null, "3242", null, "223855", null, "3237", null, "187439", null, "1783", null, "78555", null, "957", null, "41.5", null, "0.4", null, "101.3", null, "1.0", null, "66.9", null, "0.7", null, "34.4", null, "0.4", null, "32.4", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.9", null, "0.2", null, "4.9", null, "0.3", null, "5.8", null, "0.3", null, "6.5", null, "0.3", null, "6.6", null, "0.2", null, "6.1", null, "0.2", null, "6.5", null, "0.2", null, "6.8", null, "0.4", null, "5.8", null, "0.4", null, "5.7", null, "0.2", null, "6.3", null, "0.2", null, "6.4", null, "0.3", null, "7.0", null, "0.3", null, "6.4", null, "0.3", null, "5.6", null, "0.3", null, "4.4", null, "0.2", null, "2.3", null, "0.2", null, "1.9", null, "0.2", null, "10.7", null, "0.2", null, "3.8", null, "0.2", null, "19.4", null, "0.2", null, "9.3", null, "0.2", null, "38.3", null, "0.3", null, "83.1", null, "0.2", null, "80.6", null, "0.2", null, "76.6", null, "0.4", null, "27.6", null, "0.4", null, "24.7", null, "0.4", null, "20.6", null, "0.2", null, "8.7", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.0", null, "-888888888.0", "(X)", "456869", null, "2331", null, "22283", null, "1339", null, "23614", null, "2012", null, "27292", null, "2160", null, "30175", null, "2036", null, "30807", null, "1342", null, "29861", null, "1220", null, "30962", null, "1089", null, "31801", null, "2622", null, "27066", null, "2567", null, "25443", null, "1229", null, "29356", null, "1104", null, "28750", null, "2028", null, "32513", null, "2038", null, "27804", null, "1698", null, "24425", null, "1702", null, "18975", null, "1315", null, "9373", null, "1080", null, "6369", null, "965", null, "50906", null, "1828", null, "17385", null, "1380", null, "90574", null, "1963", null, "43597", null, "1423", null, "180672", null, "2013", null, "378100", null, "2221", null, "366295", null, "1903", null, "347425", null, "2441", null, "119459", null, "2277", null, "105250", null, "2109", null, "86946", null, "1090", null, "34717", null, "489", null, "40.3", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.9", null, "0.3", null, "5.2", null, "0.4", null, "6.0", null, "0.5", null, "6.6", null, "0.4", null, "6.7", null, "0.3", null, "6.5", null, "0.3", null, "6.8", null, "0.2", null, "7.0", null, "0.6", null, "5.9", null, "0.6", null, "5.6", null, "0.3", null, "6.4", null, "0.2", null, "6.3", null, "0.4", null, "7.1", null, "0.4", null, "6.1", null, "0.4", null, "5.3", null, "0.4", null, "4.2", null, "0.3", null, "2.1", null, "0.2", null, "1.4", null, "0.2", null, "11.1", null, "0.4", null, "3.8", null, "0.3", null, "19.8", null, "0.4", null, "9.5", null, "0.3", null, "39.5", null, "0.4", null, "82.8", null, "0.3", null, "80.2", null, "0.4", null, "76.0", null, "0.6", null, "26.1", null, "0.5", null, "23.0", null, "0.5", null, "19.0", null, "0.3", null, "7.6", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "451217", null, "2941", null, "22432", null, "1224", null, "20644", null, "1763", null, "25693", null, "1761", null, "29039", null, "1677", null, "28885", null, "1618", null, "25713", null, "1026", null, "28032", null, "1176", null, "29983", null, "2192", null, "25889", null, "2143", null, "26621", null, "1383", null, "27553", null, "929", null, "29608", null, "2203", null, "30632", null, "2156", null, "30389", null, "1917", null, "26266", null, "1949", null, "21405", null, "1601", null, "11796", null, "1249", null, "10637", null, "1429", null, "46337", null, "1293", null, "17115", null, "1177", null, "85884", null, "2018", null, "40809", null, "1286", null, "167541", null, "2031", null, "376916", null, "2265", null, "365333", null, "1879", null, "348012", null, "2494", null, "131125", null, "2412", null, "118605", null, "2378", null, "100493", null, "1086", null, "43838", null, "721", null, "42.9", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.0", null, "0.3", null, "4.6", null, "0.4", null, "5.7", null, "0.4", null, "6.4", null, "0.4", null, "6.4", null, "0.4", null, "5.7", null, "0.2", null, "6.2", null, "0.3", null, "6.6", null, "0.5", null, "5.7", null, "0.5", null, "5.9", null, "0.3", null, "6.1", null, "0.2", null, "6.6", null, "0.5", null, "6.8", null, "0.5", null, "6.7", null, "0.4", null, "5.8", null, "0.4", null, "4.7", null, "0.4", null, "2.6", null, "0.3", null, "2.4", null, "0.3", null, "10.3", null, "0.3", null, "3.8", null, "0.3", null, "19.0", null, "0.4", null, "9.0", null, "0.3", null, "37.1", null, "0.4", null, "83.5", null, "0.4", null, "81.0", null, "0.4", null, "77.1", null, "0.5", null, "29.1", null, "0.5", null, "26.3", null, "0.5", null, "22.3", null, "0.2", null, "9.7", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "54", "02"], ["5001900US5501", "Congressional District 1 (119th Congress), Wisconsin", "739693", null, "5525", null, "37519", null, "2030", null, "45375", null, "3651", null, "45269", null, "3379", null, "47161", null, "2537", null, "46332", null, "2358", null, "47401", null, "3100", null, "45251", null, "2944", null, "44170", null, "3141", null, "46656", null, "3624", null, "45572", null, "3226", null, "44891", null, "2491", null, "48513", null, "3303", null, "54038", null, "3288", null, "47639", null, "3028", null, "37224", null, "2787", null, "27097", null, "2084", null, "15177", null, "1474", null, "14408", null, "2013", null, "90644", null, "3100", null, "29339", null, "1884", null, "157502", null, "4021", null, "64154", null, "2654", null, "276971", null, "4999", null, "602557", null, "6085", null, "582191", null, "5543", null, "554822", null, "5701", null, "195583", null, "4886", null, "175472", null, "4615", null, "141545", null, "3819", null, "56682", null, "2119", null, "41.2", null, "0.6", null, "98.7", null, "1.6", null, "67.9", null, "1.4", null, "32.1", null, "1.0", null, "35.7", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.1", null, "0.3", null, "6.1", null, "0.5", null, "6.1", null, "0.5", null, "6.4", null, "0.3", null, "6.3", null, "0.3", null, "6.4", null, "0.4", null, "6.1", null, "0.4", null, "6.0", null, "0.4", null, "6.3", null, "0.5", null, "6.2", null, "0.4", null, "6.1", null, "0.3", null, "6.6", null, "0.4", null, "7.3", null, "0.4", null, "6.4", null, "0.4", null, "5.0", null, "0.4", null, "3.7", null, "0.3", null, "2.1", null, "0.2", null, "1.9", null, "0.3", null, "12.3", null, "0.4", null, "4.0", null, "0.2", null, "21.3", null, "0.5", null, "8.7", null, "0.3", null, "37.4", null, "0.6", null, "81.5", null, "0.5", null, "78.7", null, "0.5", null, "75.0", null, "0.6", null, "26.4", null, "0.7", null, "23.7", null, "0.6", null, "19.1", null, "0.5", null, "7.7", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.1", null, "-888888888.0", "(X)", "367431", null, "3997", null, "18995", null, "2012", null, "24058", null, "2295", null, "22270", null, "2361", null, "23239", null, "2234", null, "25348", null, "1860", null, "24094", null, "1920", null, "24161", null, "2143", null, "21637", null, "1940", null, "22663", null, "2493", null, "22826", null, "1802", null, "22829", null, "1740", null, "23260", null, "2091", null, "26929", null, "2108", null, "22913", null, "1759", null, "18100", null, "1545", null, "11886", null, "1194", null, "7055", null, "922", null, "5168", null, "1103", null, "46328", null, "1982", null, "14088", null, "1704", null, "79411", null, "2834", null, "34499", null, "2254", null, "141142", null, "3769", null, "297881", null, "4439", null, "288020", null, "3962", null, "273564", null, "3825", null, "92051", null, "3128", null, "81539", null, "2915", null, "65122", null, "2173", null, "24109", null, "1149", null, "40.0", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.5", null, "6.5", null, "0.6", null, "6.1", null, "0.6", null, "6.3", null, "0.6", null, "6.9", null, "0.5", null, "6.6", null, "0.5", null, "6.6", null, "0.6", null, "5.9", null, "0.5", null, "6.2", null, "0.7", null, "6.2", null, "0.5", null, "6.2", null, "0.5", null, "6.3", null, "0.6", null, "7.3", null, "0.6", null, "6.2", null, "0.5", null, "4.9", null, "0.4", null, "3.2", null, "0.3", null, "1.9", null, "0.3", null, "1.4", null, "0.3", null, "12.6", null, "0.5", null, "3.8", null, "0.5", null, "21.6", null, "0.7", null, "9.4", null, "0.6", null, "38.4", null, "0.9", null, "81.1", null, "0.7", null, "78.4", null, "0.7", null, "74.5", null, "0.8", null, "25.1", null, "0.8", null, "22.2", null, "0.8", null, "17.7", null, "0.6", null, "6.6", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "372262", null, "4127", null, "18524", null, "1823", null, "21317", null, "2279", null, "22999", null, "2234", null, "23922", null, "1592", null, "20984", null, "1575", null, "23307", null, "2107", null, "21090", null, "1491", null, "22533", null, "2111", null, "23993", null, "2270", null, "22746", null, "2093", null, "22062", null, "1545", null, "25253", null, "2293", null, "27109", null, "1934", null, "24726", null, "1858", null, "19124", null, "2006", null, "15211", null, "1437", null, "8122", null, "1123", null, "9240", null, "1319", null, "44316", null, "2241", null, "15251", null, "1347", null, "78091", null, "2874", null, "29655", null, "1913", null, "135829", null, "2937", null, "304676", null, "3539", null, "294171", null, "3207", null, "281258", null, "3584", null, "103532", null, "2530", null, "93933", null, "2580", null, "76423", null, "2173", null, "32573", null, "1398", null, "42.3", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.0", null, "0.5", null, "5.7", null, "0.6", null, "6.2", null, "0.6", null, "6.4", null, "0.4", null, "5.6", null, "0.4", null, "6.3", null, "0.6", null, "5.7", null, "0.4", null, "6.1", null, "0.6", null, "6.4", null, "0.6", null, "6.1", null, "0.5", null, "5.9", null, "0.4", null, "6.8", null, "0.6", null, "7.3", null, "0.5", null, "6.6", null, "0.5", null, "5.1", null, "0.5", null, "4.1", null, "0.4", null, "2.2", null, "0.3", null, "2.5", null, "0.3", null, "11.9", null, "0.6", null, "4.1", null, "0.4", null, "21.0", null, "0.7", null, "8.0", null, "0.5", null, "36.5", null, "0.7", null, "81.8", null, "0.7", null, "79.0", null, "0.7", null, "75.6", null, "0.8", null, "27.8", null, "0.7", null, "25.2", null, "0.7", null, "20.5", null, "0.6", null, "8.8", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "55", "01"], ["5001900US5502", "Congressional District 2 (119th Congress), Wisconsin", "763361", null, "2616", null, "37802", null, "826", null, "42358", null, "2570", null, "41475", null, "2506", null, "52222", null, "1876", null, "69040", null, "1840", null, "57797", null, "695", null, "55253", null, "1418", null, "56761", null, "2971", null, "47661", null, "3182", null, "44524", null, "1619", null, "40889", null, "884", null, "41057", null, "2414", null, "44904", null, "2515", null, "40810", null, "2277", null, "37926", null, "2175", null, "23459", null, "1616", null, "15461", null, "1584", null, "13962", null, "1460", null, "83833", null, "966", null, "27455", null, "474", null, "149090", null, "1276", null, "93807", null, "830", null, "338734", null, "2193", null, "632282", null, "2671", null, "614271", null, "2176", null, "576250", null, "2732", null, "176522", null, "2652", null, "159894", null, "2544", null, "131618", null, "1676", null, "52882", null, "1103", null, "37.4", null, "0.3", null, "100.6", null, "0.9", null, "58.2", null, "0.6", null, "27.3", null, "0.4", null, "30.9", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.0", null, "0.1", null, "5.5", null, "0.3", null, "5.4", null, "0.3", null, "6.8", null, "0.2", null, "9.0", null, "0.2", null, "7.6", null, "0.1", null, "7.2", null, "0.2", null, "7.4", null, "0.4", null, "6.2", null, "0.4", null, "5.8", null, "0.2", null, "5.4", null, "0.1", null, "5.4", null, "0.3", null, "5.9", null, "0.3", null, "5.3", null, "0.3", null, "5.0", null, "0.3", null, "3.1", null, "0.2", null, "2.0", null, "0.2", null, "1.8", null, "0.2", null, "11.0", null, "0.1", null, "3.6", null, "0.1", null, "19.5", null, "0.1", null, "12.3", null, "0.1", null, "44.4", null, "0.3", null, "82.8", null, "0.2", null, "80.5", null, "0.1", null, "75.5", null, "0.3", null, "23.1", null, "0.3", null, "20.9", null, "0.3", null, "17.2", null, "0.2", null, "6.9", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.0", null, "-888888888.0", "(X)", "382769", null, "1941", null, "19879", null, "1061", null, "22595", null, "2050", null, "20798", null, "2094", null, "27497", null, "1789", null, "34743", null, "1639", null, "29428", null, "373", null, "28476", null, "706", null, "30812", null, "2111", null, "24042", null, "2235", null, "21273", null, "1223", null, "20488", null, "719", null, "21731", null, "1532", null, "20343", null, "1591", null, "20016", null, "1423", null, "17805", null, "1467", null, "10941", null, "1047", null, "6268", null, "936", null, "5634", null, "1041", null, "43393", null, "706", null, "14567", null, "895", null, "77839", null, "1581", null, "47673", null, "501", null, "174998", null, "1971", null, "313621", null, "1849", null, "304930", null, "1169", null, "285472", null, "2170", null, "81007", null, "1546", null, "73445", null, "1380", null, "60664", null, "927", null, "22843", null, "745", null, "36.5", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.3", null, "5.9", null, "0.5", null, "5.4", null, "0.5", null, "7.2", null, "0.5", null, "9.1", null, "0.4", null, "7.7", null, "0.1", null, "7.4", null, "0.2", null, "8.0", null, "0.6", null, "6.3", null, "0.6", null, "5.6", null, "0.3", null, "5.4", null, "0.2", null, "5.7", null, "0.4", null, "5.3", null, "0.4", null, "5.2", null, "0.4", null, "4.7", null, "0.4", null, "2.9", null, "0.3", null, "1.6", null, "0.2", null, "1.5", null, "0.3", null, "11.3", null, "0.2", null, "3.8", null, "0.2", null, "20.3", null, "0.3", null, "12.5", null, "0.1", null, "45.7", null, "0.4", null, "81.9", null, "0.4", null, "79.7", null, "0.3", null, "74.6", null, "0.6", null, "21.2", null, "0.4", null, "19.2", null, "0.4", null, "15.8", null, "0.2", null, "6.0", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "380592", null, "2314", null, "17923", null, "1063", null, "19763", null, "1544", null, "20677", null, "1455", null, "24725", null, "1117", null, "34297", null, "902", null, "28369", null, "610", null, "26777", null, "983", null, "25949", null, "1804", null, "23619", null, "1972", null, "23251", null, "1027", null, "20401", null, "683", null, "19326", null, "1486", null, "24561", null, "1628", null, "20794", null, "1456", null, "20121", null, "1500", null, "12518", null, "1112", null, "9193", null, "1078", null, "8328", null, "1004", null, "40440", null, "654", null, "12888", null, "832", null, "71251", null, "1608", null, "46134", null, "537", null, "163736", null, "1587", null, "318661", null, "1784", null, "309341", null, "1479", null, "290778", null, "1988", null, "95515", null, "1801", null, "86449", null, "2002", null, "70954", null, "1115", null, "30039", null, "700", null, "38.5", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.7", null, "0.3", null, "5.2", null, "0.4", null, "5.4", null, "0.4", null, "6.5", null, "0.3", null, "9.0", null, "0.2", null, "7.5", null, "0.2", null, "7.0", null, "0.2", null, "6.8", null, "0.5", null, "6.2", null, "0.5", null, "6.1", null, "0.3", null, "5.4", null, "0.2", null, "5.1", null, "0.4", null, "6.5", null, "0.4", null, "5.5", null, "0.4", null, "5.3", null, "0.4", null, "3.3", null, "0.3", null, "2.4", null, "0.3", null, "2.2", null, "0.3", null, "10.6", null, "0.2", null, "3.4", null, "0.2", null, "18.7", null, "0.3", null, "12.1", null, "0.1", null, "43.0", null, "0.4", null, "83.7", null, "0.4", null, "81.3", null, "0.3", null, "76.4", null, "0.5", null, "25.1", null, "0.5", null, "22.7", null, "0.5", null, "18.6", null, "0.3", null, "7.9", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "55", "02"], ["5001900US5503", "Congressional District 3 (119th Congress), Wisconsin", "740873", null, "4011", null, "36429", null, "959", null, "39718", null, "2054", null, "43017", null, "2079", null, "55861", null, "1878", null, "64350", null, "2053", null, "43581", null, "1326", null, "45648", null, "1543", null, "43702", null, "2410", null, "43111", null, "2076", null, "39980", null, "1149", null, "40046", null, "1107", null, "43624", null, "2241", null, "50220", null, "2158", null, "47493", null, "2023", null, "42241", null, "2054", null, "29298", null, "1516", null, "17145", null, "1355", null, "15409", null, "1509", null, "82735", null, "1627", null, "28809", null, "1227", null, "147973", null, "2277", null, "91402", null, "1935", null, "296253", null, "2705", null, "612122", null, "3107", null, "592900", null, "2810", null, "550068", null, "3387", null, "201806", null, "2654", null, "181920", null, "2441", null, "151586", null, "1675", null, "61852", null, "933", null, "39.8", null, "0.3", null, "103.7", null, "1.3", null, "67.9", null, "0.7", null, "34.3", null, "0.5", null, "33.5", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.9", null, "0.1", null, "5.4", null, "0.3", null, "5.8", null, "0.3", null, "7.5", null, "0.2", null, "8.7", null, "0.3", null, "5.9", null, "0.2", null, "6.2", null, "0.2", null, "5.9", null, "0.3", null, "5.8", null, "0.3", null, "5.4", null, "0.1", null, "5.4", null, "0.1", null, "5.9", null, "0.3", null, "6.8", null, "0.3", null, "6.4", null, "0.3", null, "5.7", null, "0.3", null, "4.0", null, "0.2", null, "2.3", null, "0.2", null, "2.1", null, "0.2", null, "11.2", null, "0.2", null, "3.9", null, "0.2", null, "20.0", null, "0.2", null, "12.3", null, "0.3", null, "40.0", null, "0.3", null, "82.6", null, "0.2", null, "80.0", null, "0.2", null, "74.2", null, "0.4", null, "27.2", null, "0.4", null, "24.6", null, "0.4", null, "20.5", null, "0.2", null, "8.3", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "0.8", null, "-888888888.0", "(X)", "377226", null, "2941", null, "18653", null, "648", null, "20537", null, "1469", null, "23112", null, "1457", null, "28044", null, "1233", null, "32139", null, "1041", null, "23287", null, "850", null, "25121", null, "1253", null, "22388", null, "1543", null, "22733", null, "1287", null, "21445", null, "790", null, "20137", null, "760", null, "22912", null, "1700", null, "24484", null, "1473", null, "23259", null, "1182", null, "21199", null, "1197", null, "14041", null, "855", null, "7089", null, "709", null, "6646", null, "854", null, "43649", null, "1509", null, "14855", null, "877", null, "77157", null, "1879", null, "45328", null, "1188", null, "153712", null, "1965", null, "309922", null, "2428", null, "300069", null, "2118", null, "279421", null, "2447", null, "96718", null, "1695", null, "86711", null, "1450", null, "72234", null, "990", null, "27776", null, "523", null, "39.1", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.9", null, "0.2", null, "5.4", null, "0.4", null, "6.1", null, "0.4", null, "7.4", null, "0.3", null, "8.5", null, "0.3", null, "6.2", null, "0.2", null, "6.7", null, "0.3", null, "5.9", null, "0.4", null, "6.0", null, "0.3", null, "5.7", null, "0.2", null, "5.3", null, "0.2", null, "6.1", null, "0.4", null, "6.5", null, "0.4", null, "6.2", null, "0.3", null, "5.6", null, "0.3", null, "3.7", null, "0.2", null, "1.9", null, "0.2", null, "1.8", null, "0.2", null, "11.6", null, "0.4", null, "3.9", null, "0.2", null, "20.5", null, "0.4", null, "12.0", null, "0.3", null, "40.7", null, "0.4", null, "82.2", null, "0.4", null, "79.5", null, "0.4", null, "74.1", null, "0.6", null, "25.6", null, "0.5", null, "23.0", null, "0.4", null, "19.1", null, "0.3", null, "7.4", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "363647", null, "3176", null, "17776", null, "722", null, "19181", null, "1631", null, "19905", null, "1331", null, "27817", null, "1354", null, "32211", null, "1677", null, "20294", null, "861", null, "20527", null, "794", null, "21314", null, "1489", null, "20378", null, "1487", null, "18535", null, "688", null, "19909", null, "728", null, "20712", null, "1198", null, "25736", null, "1187", null, "24234", null, "1352", null, "21042", null, "1406", null, "15257", null, "1056", null, "10056", null, "1043", null, "8763", null, "1167", null, "39086", null, "1269", null, "13954", null, "806", null, "70816", null, "1496", null, "46074", null, "1448", null, "142541", null, "2217", null, "302200", null, "2750", null, "292831", null, "2418", null, "270647", null, "2564", null, "105088", null, "1566", null, "95209", null, "1672", null, "79352", null, "1151", null, "34076", null, "634", null, "40.8", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.9", null, "0.2", null, "5.3", null, "0.4", null, "5.5", null, "0.4", null, "7.6", null, "0.3", null, "8.9", null, "0.5", null, "5.6", null, "0.2", null, "5.6", null, "0.2", null, "5.9", null, "0.4", null, "5.6", null, "0.4", null, "5.1", null, "0.2", null, "5.5", null, "0.2", null, "5.7", null, "0.3", null, "7.1", null, "0.3", null, "6.7", null, "0.4", null, "5.8", null, "0.4", null, "4.2", null, "0.3", null, "2.8", null, "0.3", null, "2.4", null, "0.3", null, "10.7", null, "0.3", null, "3.8", null, "0.2", null, "19.5", null, "0.3", null, "12.7", null, "0.4", null, "39.2", null, "0.4", null, "83.1", null, "0.4", null, "80.5", null, "0.3", null, "74.4", null, "0.5", null, "28.9", null, "0.5", null, "26.2", null, "0.5", null, "21.8", null, "0.3", null, "9.4", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "55", "03"], ["5001900US5504", "Congressional District 4 (119th Congress), Wisconsin", "722345", null, "5512", null, "46512", null, "2108", null, "48007", null, "4086", null, "47590", null, "3898", null, "52599", null, "1964", null, "54939", null, "1716", null, "60100", null, "2823", null, "59973", null, "2144", null, "50591", null, "3580", null, "48041", null, "3518", null, "41445", null, "1822", null, "37721", null, "1638", null, "35636", null, "2992", null, "36879", null, "2550", null, "35001", null, "2224", null, "28379", null, "2169", null, "17586", null, "1598", null, "11197", null, "1203", null, "10149", null, "1414", null, "95597", null, "3017", null, "30985", null, "1458", null, "173094", null, "3990", null, "76553", null, "2081", null, "326243", null, "3650", null, "571549", null, "4858", null, "549251", null, "4989", null, "517615", null, "4793", null, "139191", null, "3936", null, "125114", null, "3344", null, "102312", null, "3051", null, "38932", null, "1870", null, "34.2", null, "0.5", null, "93.1", null, "1.5", null, "61.6", null, "1.2", null, "22.9", null, "0.8", null, "38.7", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.4", null, "0.3", null, "6.6", null, "0.6", null, "6.6", null, "0.5", null, "7.3", null, "0.3", null, "7.6", null, "0.2", null, "8.3", null, "0.4", null, "8.3", null, "0.3", null, "7.0", null, "0.5", null, "6.7", null, "0.5", null, "5.7", null, "0.2", null, "5.2", null, "0.2", null, "4.9", null, "0.4", null, "5.1", null, "0.3", null, "4.8", null, "0.3", null, "3.9", null, "0.3", null, "2.4", null, "0.2", null, "1.6", null, "0.2", null, "1.4", null, "0.2", null, "13.2", null, "0.4", null, "4.3", null, "0.2", null, "24.0", null, "0.5", null, "10.6", null, "0.3", null, "45.2", null, "0.4", null, "79.1", null, "0.4", null, "76.0", null, "0.5", null, "71.7", null, "0.5", null, "19.3", null, "0.5", null, "17.3", null, "0.4", null, "14.2", null, "0.4", null, "5.4", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.0", null, "-888888888.0", "(X)", "348330", null, "4215", null, "23484", null, "1616", null, "24506", null, "2550", null, "25258", null, "2605", null, "26633", null, "1446", null, "26258", null, "1448", null, "28466", null, "1538", null, "28684", null, "1490", null, "23868", null, "2246", null, "24048", null, "2311", null, "20103", null, "1166", null, "17067", null, "1105", null, "16766", null, "2079", null, "17933", null, "1631", null, "16006", null, "1433", null, "12974", null, "1550", null, "8179", null, "964", null, "4681", null, "698", null, "3416", null, "936", null, "49764", null, "1850", null, "15672", null, "1135", null, "88920", null, "2503", null, "37219", null, "1793", null, "157957", null, "2933", null, "270501", null, "3962", null, "259410", null, "3906", null, "242586", null, "3826", null, "63189", null, "2271", null, "55916", null, "2121", null, "45256", null, "1701", null, "16276", null, "1047", null, "33.4", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.7", null, "0.5", null, "7.0", null, "0.7", null, "7.3", null, "0.8", null, "7.6", null, "0.4", null, "7.5", null, "0.4", null, "8.2", null, "0.4", null, "8.2", null, "0.4", null, "6.9", null, "0.6", null, "6.9", null, "0.7", null, "5.8", null, "0.3", null, "4.9", null, "0.3", null, "4.8", null, "0.6", null, "5.1", null, "0.5", null, "4.6", null, "0.4", null, "3.7", null, "0.4", null, "2.3", null, "0.3", null, "1.3", null, "0.2", null, "1.0", null, "0.3", null, "14.3", null, "0.5", null, "4.5", null, "0.3", null, "25.5", null, "0.7", null, "10.7", null, "0.5", null, "45.3", null, "0.6", null, "77.7", null, "0.6", null, "74.5", null, "0.7", null, "69.6", null, "0.8", null, "18.1", null, "0.7", null, "16.1", null, "0.6", null, "13.0", null, "0.5", null, "4.7", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "374015", null, "3668", null, "23028", null, "1200", null, "23501", null, "2642", null, "22332", null, "2600", null, "25966", null, "1245", null, "28681", null, "1079", null, "31634", null, "1688", null, "31289", null, "1248", null, "26723", null, "2307", null, "23993", null, "2433", null, "21342", null, "1245", null, "20654", null, "1011", null, "18870", null, "1994", null, "18946", null, "1762", null, "18995", null, "1582", null, "15405", null, "1341", null, "9407", null, "1217", null, "6516", null, "849", null, "6733", null, "946", null, "45833", null, "1996", null, "15313", null, "926", null, "84174", null, "2384", null, "39334", null, "1323", null, "168286", null, "2304", null, "301048", null, "3083", null, "289841", null, "3081", null, "275029", null, "2989", null, "76002", null, "2546", null, "69198", null, "2305", null, "57056", null, "1946", null, "22656", null, "1181", null, "35.1", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.2", null, "0.3", null, "6.3", null, "0.7", null, "6.0", null, "0.7", null, "6.9", null, "0.3", null, "7.7", null, "0.3", null, "8.5", null, "0.5", null, "8.4", null, "0.3", null, "7.1", null, "0.6", null, "6.4", null, "0.6", null, "5.7", null, "0.3", null, "5.5", null, "0.3", null, "5.0", null, "0.5", null, "5.1", null, "0.5", null, "5.1", null, "0.4", null, "4.1", null, "0.4", null, "2.5", null, "0.3", null, "1.7", null, "0.2", null, "1.8", null, "0.2", null, "12.3", null, "0.5", null, "4.1", null, "0.3", null, "22.5", null, "0.5", null, "10.5", null, "0.3", null, "45.0", null, "0.6", null, "80.5", null, "0.5", null, "77.5", null, "0.5", null, "73.5", null, "0.7", null, "20.3", null, "0.7", null, "18.5", null, "0.6", null, "15.3", null, "0.5", null, "6.1", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "55", "04"], ["5001900US5505", "Congressional District 5 (119th Congress), Wisconsin", "750363", null, "4383", null, "36147", null, "1860", null, "39756", null, "2843", null, "46589", null, "2959", null, "43993", null, "1894", null, "38840", null, "1492", null, "41782", null, "1987", null, "44787", null, "2192", null, "46083", null, "2882", null, "52197", null, "3390", null, "46337", null, "1743", null, "47876", null, "1819", null, "47615", null, "2446", null, "59552", null, "2247", null, "49128", null, "2932", null, "42533", null, "2918", null, "28399", null, "2090", null, "19315", null, "1782", null, "19434", null, "1924", null, "86345", null, "2204", null, "27477", null, "1047", null, "149969", null, "2785", null, "55356", null, "1566", null, "267682", null, "3559", null, "617391", null, "4275", null, "600394", null, "4282", null, "577073", null, "4250", null, "218361", null, "3526", null, "197433", null, "4023", null, "158809", null, "2487", null, "67148", null, "1384", null, "43.7", null, "0.4", null, "99.4", null, "1.3", null, "69.9", null, "1.2", null, "36.0", null, "0.8", null, "34.0", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.8", null, "0.2", null, "5.3", null, "0.4", null, "6.2", null, "0.4", null, "5.9", null, "0.2", null, "5.2", null, "0.2", null, "5.6", null, "0.3", null, "6.0", null, "0.3", null, "6.1", null, "0.4", null, "7.0", null, "0.4", null, "6.2", null, "0.2", null, "6.4", null, "0.2", null, "6.3", null, "0.3", null, "7.9", null, "0.3", null, "6.5", null, "0.4", null, "5.7", null, "0.4", null, "3.8", null, "0.3", null, "2.6", null, "0.2", null, "2.6", null, "0.3", null, "11.5", null, "0.3", null, "3.7", null, "0.1", null, "20.0", null, "0.3", null, "7.4", null, "0.2", null, "35.7", null, "0.4", null, "82.3", null, "0.4", null, "80.0", null, "0.3", null, "76.9", null, "0.4", null, "29.1", null, "0.5", null, "26.3", null, "0.5", null, "21.2", null, "0.3", null, "8.9", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "0.8", null, "-888888888.0", "(X)", "373978", null, "3425", null, "17899", null, "1242", null, "21372", null, "1961", null, "22788", null, "1999", null, "23426", null, "1295", null, "19888", null, "1169", null, "21838", null, "1029", null, "22210", null, "1481", null, "23276", null, "1968", null, "26299", null, "2230", null, "24437", null, "1379", null, "24589", null, "1236", null, "24589", null, "1919", null, "27971", null, "1638", null, "24692", null, "1818", null, "20375", null, "1731", null, "12443", null, "1299", null, "8637", null, "1091", null, "7249", null, "1060", null, "44160", null, "1431", null, "14718", null, "950", null, "76777", null, "2085", null, "28596", null, "1215", null, "136937", null, "2515", null, "306016", null, "3163", null, "297201", null, "2897", null, "285721", null, "2874", null, "101367", null, "2187", null, "91372", null, "2433", null, "73396", null, "1315", null, "28329", null, "717", null, "42.9", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.8", null, "0.3", null, "5.7", null, "0.5", null, "6.1", null, "0.5", null, "6.3", null, "0.3", null, "5.3", null, "0.3", null, "5.8", null, "0.3", null, "5.9", null, "0.4", null, "6.2", null, "0.5", null, "7.0", null, "0.6", null, "6.5", null, "0.4", null, "6.6", null, "0.3", null, "6.6", null, "0.5", null, "7.5", null, "0.4", null, "6.6", null, "0.5", null, "5.4", null, "0.5", null, "3.3", null, "0.4", null, "2.3", null, "0.3", null, "1.9", null, "0.3", null, "11.8", null, "0.4", null, "3.9", null, "0.2", null, "20.5", null, "0.5", null, "7.6", null, "0.3", null, "36.6", null, "0.5", null, "81.8", null, "0.5", null, "79.5", null, "0.5", null, "76.4", null, "0.5", null, "27.1", null, "0.6", null, "24.4", null, "0.7", null, "19.6", null, "0.4", null, "7.6", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "376385", null, "3186", null, "18248", null, "1545", null, "18384", null, "1760", null, "23801", null, "1820", null, "20567", null, "1580", null, "18952", null, "1007", null, "19944", null, "1332", null, "22577", null, "1449", null, "22807", null, "1841", null, "25898", null, "1997", null, "21900", null, "966", null, "23287", null, "933", null, "23026", null, "1655", null, "31581", null, "1549", null, "24436", null, "2043", null, "22158", null, "1944", null, "15956", null, "1472", null, "10678", null, "1143", null, "12185", null, "1455", null, "42185", null, "1771", null, "12759", null, "717", null, "73192", null, "2134", null, "26760", null, "1240", null, "130745", null, "1952", null, "311375", null, "2444", null, "303193", null, "2466", null, "291352", null, "2453", null, "116994", null, "2056", null, "106061", null, "2341", null, "85413", null, "1520", null, "38819", null, "1067", null, "44.5", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.8", null, "0.4", null, "4.9", null, "0.5", null, "6.3", null, "0.5", null, "5.5", null, "0.4", null, "5.0", null, "0.3", null, "5.3", null, "0.3", null, "6.0", null, "0.4", null, "6.1", null, "0.5", null, "6.9", null, "0.5", null, "5.8", null, "0.3", null, "6.2", null, "0.2", null, "6.1", null, "0.4", null, "8.4", null, "0.4", null, "6.5", null, "0.5", null, "5.9", null, "0.5", null, "4.2", null, "0.4", null, "2.8", null, "0.3", null, "3.2", null, "0.4", null, "11.2", null, "0.4", null, "3.4", null, "0.2", null, "19.4", null, "0.5", null, "7.1", null, "0.3", null, "34.7", null, "0.4", null, "82.7", null, "0.5", null, "80.6", null, "0.5", null, "77.4", null, "0.6", null, "31.1", null, "0.6", null, "28.2", null, "0.6", null, "22.7", null, "0.4", null, "10.3", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "55", "05"], ["5001900US5506", "Congressional District 6 (119th Congress), Wisconsin", "743039", null, "3038", null, "35092", null, "1193", null, "38504", null, "2316", null, "45194", null, "2228", null, "44730", null, "1630", null, "47415", null, "1602", null, "40936", null, "1768", null, "45680", null, "1901", null, "46662", null, "2718", null, "48024", null, "2582", null, "43919", null, "1429", null, "44013", null, "1382", null, "47283", null, "2469", null, "58641", null, "2498", null, "51813", null, "2063", null, "41333", null, "2190", null, "28549", null, "1788", null, "19154", null, "1296", null, "16097", null, "1499", null, "83698", null, "1631", null, "29287", null, "1255", null, "148077", null, "1385", null, "62858", null, "1764", null, "273447", null, "2695", null, "614015", null, "2549", null, "594962", null, "2357", null, "570472", null, "2930", null, "215587", null, "2812", null, "193660", null, "2567", null, "156946", null, "1570", null, "63800", null, "739", null, "42.8", null, "0.3", null, "102.5", null, "1.2", null, "69.6", null, "0.6", null, "35.8", null, "0.5", null, "33.8", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.7", null, "0.2", null, "5.2", null, "0.3", null, "6.1", null, "0.3", null, "6.0", null, "0.2", null, "6.4", null, "0.2", null, "5.5", null, "0.2", null, "6.1", null, "0.3", null, "6.3", null, "0.4", null, "6.5", null, "0.3", null, "5.9", null, "0.2", null, "5.9", null, "0.2", null, "6.4", null, "0.3", null, "7.9", null, "0.3", null, "7.0", null, "0.3", null, "5.6", null, "0.3", null, "3.8", null, "0.2", null, "2.6", null, "0.2", null, "2.2", null, "0.2", null, "11.3", null, "0.2", null, "3.9", null, "0.2", null, "19.9", null, "0.1", null, "8.5", null, "0.2", null, "36.8", null, "0.3", null, "82.6", null, "0.2", null, "80.1", null, "0.1", null, "76.8", null, "0.3", null, "29.0", null, "0.4", null, "26.1", null, "0.3", null, "21.1", null, "0.2", null, "8.6", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "0.8", null, "-888888888.0", "(X)", "376072", null, "2664", null, "17607", null, "803", null, "19192", null, "1635", null, "24257", null, "1421", null, "22583", null, "1116", null, "24128", null, "999", null, "21463", null, "938", null, "23661", null, "1307", null, "24492", null, "1634", null, "24909", null, "1735", null, "23365", null, "978", null, "23042", null, "952", null, "24645", null, "1597", null, "29394", null, "1647", null, "25787", null, "1427", null, "19993", null, "1434", null, "13683", null, "1055", null, "8400", null, "915", null, "5471", null, "783", null, "43449", null, "1225", null, "14418", null, "849", null, "75474", null, "1547", null, "32293", null, "1023", null, "141236", null, "1888", null, "310353", null, "2289", null, "300598", null, "2121", null, "287854", null, "2382", null, "102728", null, "1813", null, "91617", null, "1599", null, "73334", null, "837", null, "27554", null, "325", null, "42.0", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.7", null, "0.2", null, "5.1", null, "0.4", null, "6.5", null, "0.4", null, "6.0", null, "0.3", null, "6.4", null, "0.3", null, "5.7", null, "0.2", null, "6.3", null, "0.3", null, "6.5", null, "0.4", null, "6.6", null, "0.5", null, "6.2", null, "0.3", null, "6.1", null, "0.3", null, "6.6", null, "0.4", null, "7.8", null, "0.4", null, "6.9", null, "0.4", null, "5.3", null, "0.4", null, "3.6", null, "0.3", null, "2.2", null, "0.2", null, "1.5", null, "0.2", null, "11.6", null, "0.3", null, "3.8", null, "0.2", null, "20.1", null, "0.3", null, "8.6", null, "0.3", null, "37.6", null, "0.4", null, "82.5", null, "0.4", null, "79.9", null, "0.3", null, "76.5", null, "0.4", null, "27.3", null, "0.5", null, "24.4", null, "0.4", null, "19.5", null, "0.2", null, "7.3", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "366967", null, "2701", null, "17485", null, "1045", null, "19312", null, "1456", null, "20937", null, "1378", null, "22147", null, "1381", null, "23287", null, "1078", null, "19473", null, "1303", null, "22019", null, "1118", null, "22170", null, "1862", null, "23115", null, "1844", null, "20554", null, "794", null, "20971", null, "807", null, "22638", null, "1634", null, "29247", null, "1758", null, "26026", null, "1324", null, "21340", null, "1401", null, "14866", null, "1357", null, "10754", null, "1033", null, "10626", null, "1063", null, "40249", null, "1082", null, "14869", null, "1204", null, "72603", null, "1783", null, "30565", null, "1219", null, "132211", null, "2182", null, "303662", null, "2147", null, "294364", null, "1802", null, "282618", null, "2092", null, "112859", null, "1958", null, "102043", null, "1866", null, "83612", null, "1105", null, "36246", null, "610", null, "43.6", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.8", null, "0.3", null, "5.3", null, "0.4", null, "5.7", null, "0.4", null, "6.0", null, "0.4", null, "6.3", null, "0.3", null, "5.3", null, "0.3", null, "6.0", null, "0.3", null, "6.0", null, "0.5", null, "6.3", null, "0.5", null, "5.6", null, "0.2", null, "5.7", null, "0.2", null, "6.2", null, "0.5", null, "8.0", null, "0.5", null, "7.1", null, "0.4", null, "5.8", null, "0.4", null, "4.1", null, "0.4", null, "2.9", null, "0.3", null, "2.9", null, "0.3", null, "11.0", null, "0.3", null, "4.1", null, "0.3", null, "19.8", null, "0.4", null, "8.3", null, "0.3", null, "36.0", null, "0.5", null, "82.7", null, "0.5", null, "80.2", null, "0.4", null, "77.0", null, "0.5", null, "30.8", null, "0.5", null, "27.8", null, "0.5", null, "22.8", null, "0.3", null, "9.9", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "55", "06"], ["5001900US5507", "Congressional District 7 (119th Congress), Wisconsin", "754076", null, "3964", null, "35004", null, "992", null, "41158", null, "2244", null, "44206", null, "1956", null, "43809", null, "1483", null, "36963", null, "1445", null, "38518", null, "1578", null, "40340", null, "1105", null, "44916", null, "2547", null, "45419", null, "2456", null, "41998", null, "961", null, "45705", null, "1022", null, "49781", null, "2122", null, "67462", null, "2389", null, "58478", null, "2196", null, "49429", null, "2183", null, "33376", null, "1523", null, "20607", null, "1518", null, "16907", null, "1395", null, "85364", null, "1892", null, "29924", null, "996", null, "150292", null, "2215", null, "50848", null, "1475", null, "249965", null, "2497", null, "623469", null, "3107", null, "603784", null, "2805", null, "583827", null, "2996", null, "246259", null, "2980", null, "219274", null, "2666", null, "178797", null, "1665", null, "70890", null, "1026", null, "45.7", null, "0.3", null, "102.8", null, "1.1", null, "77.4", null, "0.7", null, "42.1", null, "0.5", null, "35.4", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.6", null, "0.1", null, "5.5", null, "0.3", null, "5.9", null, "0.3", null, "5.8", null, "0.2", null, "4.9", null, "0.2", null, "5.1", null, "0.2", null, "5.3", null, "0.1", null, "6.0", null, "0.3", null, "6.0", null, "0.3", null, "5.6", null, "0.1", null, "6.1", null, "0.1", null, "6.6", null, "0.3", null, "8.9", null, "0.3", null, "7.8", null, "0.3", null, "6.6", null, "0.3", null, "4.4", null, "0.2", null, "2.7", null, "0.2", null, "2.2", null, "0.2", null, "11.3", null, "0.2", null, "4.0", null, "0.1", null, "19.9", null, "0.2", null, "6.7", null, "0.2", null, "33.1", null, "0.3", null, "82.7", null, "0.2", null, "80.1", null, "0.2", null, "77.4", null, "0.3", null, "32.7", null, "0.4", null, "29.1", null, "0.3", null, "23.7", null, "0.2", null, "9.4", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "0.9", null, "-888888888.0", "(X)", "382224", null, "2772", null, "17648", null, "689", null, "19966", null, "1475", null, "23119", null, "1405", null, "23542", null, "1187", null, "19314", null, "1122", null, "20313", null, "1240", null, "20081", null, "692", null, "22745", null, "1464", null, "22598", null, "1562", null, "21095", null, "630", null, "23662", null, "747", null, "25832", null, "1503", null, "34217", null, "1722", null, "30836", null, "1200", null, "24204", null, "1255", null, "17368", null, "917", null, "9173", null, "873", null, "6511", null, "849", null, "43085", null, "1277", null, "15840", null, "873", null, "76573", null, "1701", null, "27016", null, "1093", null, "128593", null, "2032", null, "316070", null, "2114", null, "305651", null, "1945", null, "294866", null, "2182", null, "122309", null, "1998", null, "108963", null, "1976", null, "88092", null, "970", null, "33052", null, "659", null, "45.4", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.6", null, "0.2", null, "5.2", null, "0.4", null, "6.0", null, "0.4", null, "6.2", null, "0.3", null, "5.1", null, "0.3", null, "5.3", null, "0.3", null, "5.3", null, "0.2", null, "6.0", null, "0.4", null, "5.9", null, "0.4", null, "5.5", null, "0.2", null, "6.2", null, "0.2", null, "6.8", null, "0.4", null, "9.0", null, "0.4", null, "8.1", null, "0.3", null, "6.3", null, "0.3", null, "4.5", null, "0.2", null, "2.4", null, "0.2", null, "1.7", null, "0.2", null, "11.3", null, "0.3", null, "4.1", null, "0.2", null, "20.0", null, "0.4", null, "7.1", null, "0.3", null, "33.6", null, "0.5", null, "82.7", null, "0.3", null, "80.0", null, "0.4", null, "77.1", null, "0.4", null, "32.0", null, "0.5", null, "28.5", null, "0.5", null, "23.0", null, "0.3", null, "8.6", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "371852", null, "2823", null, "17356", null, "658", null, "21192", null, "1441", null, "21087", null, "1363", null, "20267", null, "931", null, "17649", null, "897", null, "18205", null, "1100", null, "20259", null, "733", null, "22171", null, "1605", null, "22821", null, "1446", null, "20903", null, "626", null, "22043", null, "593", null, "23949", null, "1368", null, "33245", null, "1401", null, "27642", null, "1465", null, "25225", null, "1486", null, "16008", null, "1126", null, "11434", null, "1115", null, "10396", null, "954", null, "42279", null, "1169", null, "14084", null, "721", null, "73719", null, "1529", null, "23832", null, "887", null, "121372", null, "1715", null, "307399", null, "2280", null, "298133", null, "2177", null, "288961", null, "2264", null, "123950", null, "1742", null, "110311", null, "1593", null, "90705", null, "1060", null, "37838", null, "618", null, "46.0", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.7", null, "0.2", null, "5.7", null, "0.4", null, "5.7", null, "0.4", null, "5.5", null, "0.2", null, "4.7", null, "0.2", null, "4.9", null, "0.3", null, "5.4", null, "0.2", null, "6.0", null, "0.4", null, "6.1", null, "0.4", null, "5.6", null, "0.2", null, "5.9", null, "0.2", null, "6.4", null, "0.4", null, "8.9", null, "0.4", null, "7.4", null, "0.4", null, "6.8", null, "0.4", null, "4.3", null, "0.3", null, "3.1", null, "0.3", null, "2.8", null, "0.3", null, "11.4", null, "0.3", null, "3.8", null, "0.2", null, "19.8", null, "0.3", null, "6.4", null, "0.2", null, "32.6", null, "0.3", null, "82.7", null, "0.3", null, "80.2", null, "0.3", null, "77.7", null, "0.4", null, "33.3", null, "0.5", null, "29.7", null, "0.4", null, "24.4", null, "0.3", null, "10.2", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "55", "07"], ["5001900US5508", "Congressional District 8 (119th Congress), Wisconsin", "747225", null, "1996", null, "38539", null, "870", null, "42100", null, "2509", null, "47300", null, "2642", null, "45984", null, "1543", null, "43439", null, "1122", null, "44224", null, "1662", null, "46195", null, "1382", null, "50306", null, "2990", null, "47104", null, "3140", null, "43351", null, "1310", null, "45067", null, "1215", null, "45989", null, "2556", null, "58198", null, "2507", null, "49484", null, "2184", null, "40212", null, "2124", null, "27528", null, "1621", null, "17128", null, "1552", null, "15077", null, "1331", null, "89400", null, "1280", null, "29340", null, "1092", null, "157279", null, "1085", null, "60083", null, "1383", null, "277252", null, "2351", null, "609588", null, "2276", null, "589946", null, "1573", null, "563723", null, "2484", null, "207627", null, "2922", null, "184601", null, "2723", null, "149429", null, "1274", null, "59733", null, "841", null, "41.6", null, "0.3", null, "101.3", null, "1.0", null, "69.6", null, "0.5", null, "33.9", null, "0.4", null, "35.7", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.1", null, "5.6", null, "0.3", null, "6.3", null, "0.4", null, "6.2", null, "0.2", null, "5.8", null, "0.2", null, "5.9", null, "0.2", null, "6.2", null, "0.2", null, "6.7", null, "0.4", null, "6.3", null, "0.4", null, "5.8", null, "0.2", null, "6.0", null, "0.2", null, "6.2", null, "0.3", null, "7.8", null, "0.3", null, "6.6", null, "0.3", null, "5.4", null, "0.3", null, "3.7", null, "0.2", null, "2.3", null, "0.2", null, "2.0", null, "0.2", null, "12.0", null, "0.2", null, "3.9", null, "0.1", null, "21.0", null, "0.1", null, "8.0", null, "0.2", null, "37.1", null, "0.3", null, "81.6", null, "0.2", null, "79.0", null, "0.1", null, "75.4", null, "0.3", null, "27.8", null, "0.4", null, "24.7", null, "0.4", null, "20.0", null, "0.2", null, "8.0", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "0.9", null, "-888888888.0", "(X)", "376088", null, "1993", null, "19946", null, "716", null, "20989", null, "1858", null, "24801", null, "1824", null, "23968", null, "1015", null, "22716", null, "776", null, "22407", null, "916", null, "23822", null, "853", null, "25149", null, "1964", null, "24345", null, "1856", null, "22596", null, "1010", null, "22942", null, "845", null, "23572", null, "1582", null, "28958", null, "1560", null, "24029", null, "1475", null, "19507", null, "1310", null, "13017", null, "1126", null, "6922", null, "1021", null, "6402", null, "989", null, "45790", null, "1235", null, "15556", null, "811", null, "81292", null, "1596", null, "31128", null, "872", null, "142407", null, "1801", null, "305559", null, "1862", null, "294796", null, "1377", null, "281373", null, "1813", null, "98835", null, "1719", null, "86976", null, "1695", null, "69877", null, "944", null, "26341", null, "527", null, "40.7", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.3", null, "0.2", null, "5.6", null, "0.5", null, "6.6", null, "0.5", null, "6.4", null, "0.3", null, "6.0", null, "0.2", null, "6.0", null, "0.3", null, "6.3", null, "0.2", null, "6.7", null, "0.5", null, "6.5", null, "0.5", null, "6.0", null, "0.3", null, "6.1", null, "0.2", null, "6.3", null, "0.4", null, "7.7", null, "0.4", null, "6.4", null, "0.4", null, "5.2", null, "0.3", null, "3.5", null, "0.3", null, "1.8", null, "0.3", null, "1.7", null, "0.3", null, "12.2", null, "0.3", null, "4.1", null, "0.2", null, "21.6", null, "0.4", null, "8.3", null, "0.2", null, "37.9", null, "0.5", null, "81.2", null, "0.4", null, "78.4", null, "0.4", null, "74.8", null, "0.5", null, "26.3", null, "0.5", null, "23.1", null, "0.5", null, "18.6", null, "0.2", null, "7.0", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "371137", null, "2198", null, "18593", null, "826", null, "21111", null, "1882", null, "22499", null, "1848", null, "22016", null, "1150", null, "20723", null, "831", null, "21817", null, "1262", null, "22373", null, "1129", null, "25157", null, "1789", null, "22759", null, "2036", null, "20755", null, "672", null, "22125", null, "799", null, "22417", null, "1615", null, "29240", null, "1756", null, "25455", null, "1438", null, "20705", null, "1419", null, "14511", null, "1176", null, "10206", null, "1139", null, "8675", null, "915", null, "43610", null, "1420", null, "13784", null, "917", null, "75987", null, "1648", null, "28955", null, "1089", null, "134845", null, "1436", null, "304029", null, "1633", null, "295150", null, "1141", null, "282350", null, "1473", null, "108792", null, "1951", null, "97625", null, "1708", null, "79552", null, "894", null, "33392", null, "621", null, "42.6", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.0", null, "0.2", null, "5.7", null, "0.5", null, "6.1", null, "0.5", null, "5.9", null, "0.3", null, "5.6", null, "0.2", null, "5.9", null, "0.3", null, "6.0", null, "0.3", null, "6.8", null, "0.5", null, "6.1", null, "0.5", null, "5.6", null, "0.2", null, "6.0", null, "0.2", null, "6.0", null, "0.4", null, "7.9", null, "0.5", null, "6.9", null, "0.4", null, "5.6", null, "0.4", null, "3.9", null, "0.3", null, "2.7", null, "0.3", null, "2.3", null, "0.2", null, "11.8", null, "0.3", null, "3.7", null, "0.2", null, "20.5", null, "0.3", null, "7.8", null, "0.3", null, "36.3", null, "0.4", null, "81.9", null, "0.4", null, "79.5", null, "0.3", null, "76.1", null, "0.4", null, "29.3", null, "0.5", null, "26.3", null, "0.5", null, "21.4", null, "0.3", null, "9.0", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "55", "08"], ["5001900US5600", "Congressional District (at Large) (119th Congress), Wyoming", "587618", null, "-555555555", "*****", "28344", null, "1168", null, "31498", null, "2282", null, "40087", null, "2337", null, "41098", null, "2065", null, "37247", null, "2390", null, "35539", null, "2170", null, "38272", null, "1465", null, "40235", null, "3034", null, "40926", null, "2959", null, "34791", null, "1822", null, "32242", null, "2063", null, "31081", null, "2416", null, "38885", null, "2507", null, "36575", null, "2326", null, "35370", null, "2353", null, "22202", null, "1848", null, "13424", null, "1589", null, "9802", null, "1496", null, "71585", null, "1646", null, "25057", null, "881", null, "124986", null, "1659", null, "53288", null, "2456", null, "233317", null, "2674", null, "480483", null, "2259", null, "462632", null, "1659", null, "439234", null, "3099", null, "156258", null, "2865", null, "141799", null, "2647", null, "117373", null, "1460", null, "45428", null, "1382", null, "40.2", null, "0.4", null, "105.2", null, "2.1", null, "70.2", null, "1.0", null, "34.0", null, "0.6", null, "36.2", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.8", null, "0.2", null, "5.4", null, "0.4", null, "6.8", null, "0.4", null, "7.0", null, "0.4", null, "6.3", null, "0.4", null, "6.0", null, "0.4", null, "6.5", null, "0.2", null, "6.8", null, "0.5", null, "7.0", null, "0.5", null, "5.9", null, "0.3", null, "5.5", null, "0.4", null, "5.3", null, "0.4", null, "6.6", null, "0.4", null, "6.2", null, "0.4", null, "6.0", null, "0.4", null, "3.8", null, "0.3", null, "2.3", null, "0.3", null, "1.7", null, "0.3", null, "12.2", null, "0.3", null, "4.3", null, "0.1", null, "21.3", null, "0.3", null, "9.1", null, "0.4", null, "39.7", null, "0.5", null, "81.8", null, "0.4", null, "78.7", null, "0.3", null, "74.7", null, "0.5", null, "26.6", null, "0.5", null, "24.1", null, "0.5", null, "20.0", null, "0.2", null, "7.7", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.1", null, "-888888888.0", "(X)", "301319", null, "2922", null, "15266", null, "1427", null, "15871", null, "1669", null, "20765", null, "1777", null, "23225", null, "1627", null, "21165", null, "1749", null, "16422", null, "1524", null, "19722", null, "1001", null, "21176", null, "2166", null, "21376", null, "1978", null, "17638", null, "1196", null, "17178", null, "1448", null, "14653", null, "1513", null, "19629", null, "1539", null, "17957", null, "1787", null, "18220", null, "1879", null, "10924", null, "1233", null, "5952", null, "978", null, "4180", null, "816", null, "36636", null, "1348", null, "14899", null, "1428", null, "66801", null, "2260", null, "29491", null, "1959", null, "123086", null, "2690", null, "244289", null, "2377", null, "234518", null, "1931", null, "222330", null, "2287", null, "76862", null, "1792", null, "69740", null, "1769", null, "57233", null, "885", null, "21056", null, "763", null, "39.5", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.1", null, "0.5", null, "5.3", null, "0.5", null, "6.9", null, "0.6", null, "7.7", null, "0.5", null, "7.0", null, "0.6", null, "5.5", null, "0.5", null, "6.5", null, "0.3", null, "7.0", null, "0.7", null, "7.1", null, "0.7", null, "5.9", null, "0.4", null, "5.7", null, "0.5", null, "4.9", null, "0.5", null, "6.5", null, "0.5", null, "6.0", null, "0.6", null, "6.0", null, "0.6", null, "3.6", null, "0.4", null, "2.0", null, "0.3", null, "1.4", null, "0.3", null, "12.2", null, "0.4", null, "4.9", null, "0.5", null, "22.2", null, "0.6", null, "9.8", null, "0.6", null, "40.8", null, "0.7", null, "81.1", null, "0.6", null, "77.8", null, "0.6", null, "73.8", null, "0.7", null, "25.5", null, "0.7", null, "23.1", null, "0.6", null, "19.0", null, "0.3", null, "7.0", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "286299", null, "2922", null, "13078", null, "1104", null, "15627", null, "1837", null, "19322", null, "1834", null, "17873", null, "2178", null, "16082", null, "1761", null, "19117", null, "1515", null, "18550", null, "1140", null, "19059", null, "1825", null, "19550", null, "1963", null, "17153", null, "1319", null, "15064", null, "1145", null, "16428", null, "1799", null, "19256", null, "1910", null, "18618", null, "1664", null, "17150", null, "1421", null, "11278", null, "1422", null, "7472", null, "1147", null, "5622", null, "1103", null, "34949", null, "1481", null, "10158", null, "1242", null, "58185", null, "2052", null, "23797", null, "1725", null, "110231", null, "2884", null, "236194", null, "2427", null, "228114", null, "2043", null, "216904", null, "2464", null, "79396", null, "2311", null, "72059", null, "1912", null, "60140", null, "1196", null, "24372", null, "978", null, "41.0", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.6", null, "0.4", null, "5.5", null, "0.6", null, "6.7", null, "0.6", null, "6.2", null, "0.7", null, "5.6", null, "0.6", null, "6.7", null, "0.5", null, "6.5", null, "0.4", null, "6.7", null, "0.7", null, "6.8", null, "0.7", null, "6.0", null, "0.5", null, "5.3", null, "0.4", null, "5.7", null, "0.6", null, "6.7", null, "0.6", null, "6.5", null, "0.6", null, "6.0", null, "0.5", null, "3.9", null, "0.5", null, "2.6", null, "0.4", null, "2.0", null, "0.4", null, "12.2", null, "0.5", null, "3.5", null, "0.4", null, "20.3", null, "0.6", null, "8.3", null, "0.6", null, "38.5", null, "0.8", null, "82.5", null, "0.6", null, "79.7", null, "0.6", null, "75.8", null, "0.9", null, "27.7", null, "0.8", null, "25.2", null, "0.6", null, "21.0", null, "0.4", null, "8.5", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "56", "00"], ["5001900US7298", "Resident Commissioner District (at Large) (119th Congress), Puerto Rico", "3203295", null, "-555555555", "*****", "90280", null, "2428", null, "123329", null, "5468", null, "160119", null, "5688", null, "188887", null, "6169", null, "212615", null, "5985", null, "206423", null, "3763", null, "205615", null, "5758", null, "193377", null, "7685", null, "201848", null, "7708", null, "202007", null, "4740", null, "199691", null, "2496", null, "200217", null, "6809", null, "229373", null, "6850", null, "206861", null, "6296", null, "180608", null, "6321", null, "178813", null, "5225", null, "113321", null, "4221", null, "109911", null, "4411", null, "283448", null, "3551", null, "106998", null, "2886", null, "480726", null, "-555555555", "*****", "294504", null, "3822", null, "1208765", null, "5821", null, "2796511", null, "3432", null, "2722569", null, "-555555555", "*****", "2595224", null, "6901", null, "1018887", null, "6811", null, "924219", null, "5918", null, "789514", null, "379", null, "402045", null, "565", null, "45.4", null, "0.2", null, "89.9", null, "0.5", null, "65.7", null, "0.1", null, "40.8", null, "0.1", null, "24.9", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "2.8", null, "0.1", null, "3.9", null, "0.2", null, "5.0", null, "0.2", null, "5.9", null, "0.2", null, "6.6", null, "0.2", null, "6.4", null, "0.1", null, "6.4", null, "0.2", null, "6.0", null, "0.2", null, "6.3", null, "0.2", null, "6.3", null, "0.1", null, "6.2", null, "0.1", null, "6.3", null, "0.2", null, "7.2", null, "0.2", null, "6.5", null, "0.2", null, "5.6", null, "0.2", null, "5.6", null, "0.2", null, "3.5", null, "0.1", null, "3.4", null, "0.1", null, "8.8", null, "0.1", null, "3.3", null, "0.1", null, "15.0", null, "-555555555.0", "*****", "9.2", null, "0.1", null, "37.7", null, "0.2", null, "87.3", null, "0.1", null, "85.0", null, "-555555555.0", "*****", "81.0", null, "0.2", null, "31.8", null, "0.2", null, "28.9", null, "0.2", null, "24.6", null, "0.1", null, "12.6", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "2.1", null, "-888888888.0", "(X)", "1516882", null, "4276", null, "48205", null, "3112", null, "62986", null, "4209", null, "83132", null, "4344", null, "98598", null, "4035", null, "104261", null, "4209", null, "106775", null, "2626", null, "100236", null, "4051", null, "90722", null, "5351", null, "99241", null, "5410", null, "95074", null, "3604", null, "92690", null, "2115", null, "91941", null, "4164", null, "103880", null, "4163", null, "94356", null, "3654", null, "78631", null, "3681", null, "76490", null, "3330", null, "48374", null, "3359", null, "41290", null, "2673", null, "146118", null, "2797", null, "55370", null, "2978", null, "249693", null, "4274", null, "147489", null, "2687", null, "599833", null, "4760", null, "1304412", null, "2872", null, "1267189", null, "-555555555", "*****", "1200423", null, "4340", null, "443021", null, "4164", null, "399262", null, "4420", null, "339141", null, "378", null, "166154", null, "565", null, "43.4", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "3.2", null, "0.2", null, "4.2", null, "0.3", null, "5.5", null, "0.3", null, "6.5", null, "0.3", null, "6.9", null, "0.3", null, "7.0", null, "0.2", null, "6.6", null, "0.3", null, "6.0", null, "0.4", null, "6.5", null, "0.4", null, "6.3", null, "0.2", null, "6.1", null, "0.1", null, "6.1", null, "0.3", null, "6.8", null, "0.3", null, "6.2", null, "0.2", null, "5.2", null, "0.2", null, "5.0", null, "0.2", null, "3.2", null, "0.2", null, "2.7", null, "0.2", null, "9.6", null, "0.2", null, "3.7", null, "0.2", null, "16.5", null, "0.2", null, "9.7", null, "0.2", null, "39.5", null, "0.3", null, "86.0", null, "0.2", null, "83.5", null, "0.2", null, "79.1", null, "0.4", null, "29.2", null, "0.3", null, "26.3", null, "0.3", null, "22.4", null, "0.1", null, "11.0", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "1686413", null, "4276", null, "42075", null, "2521", null, "60343", null, "3745", null, "76987", null, "3655", null, "90289", null, "4998", null, "108354", null, "4008", null, "99648", null, "2514", null, "105379", null, "3430", null, "102655", null, "5670", null, "102607", null, "5466", null, "106933", null, "2780", null, "107001", null, "905", null, "108276", null, "5039", null, "125493", null, "5040", null, "112505", null, "4567", null, "101977", null, "4566", null, "102323", null, "4227", null, "64947", null, "3956", null, "68621", null, "4178", null, "137330", null, "2832", null, "51628", null, "2717", null, "231033", null, "4276", null, "147015", null, "2514", null, "608932", null, "4171", null, "1492099", null, "2695", null, "1455380", null, "-555555555", "*****", "1394801", null, "4339", null, "575866", null, "5040", null, "524957", null, "4268", null, "450373", null, "-555555555", "*****", "235891", null, "-555555555", "*****", "47.6", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "2.5", null, "0.1", null, "3.6", null, "0.2", null, "4.6", null, "0.2", null, "5.4", null, "0.3", null, "6.4", null, "0.2", null, "5.9", null, "0.2", null, "6.2", null, "0.2", null, "6.1", null, "0.3", null, "6.1", null, "0.3", null, "6.3", null, "0.2", null, "6.3", null, "0.1", null, "6.4", null, "0.3", null, "7.4", null, "0.3", null, "6.7", null, "0.3", null, "6.0", null, "0.3", null, "6.1", null, "0.2", null, "3.9", null, "0.2", null, "4.1", null, "0.2", null, "8.1", null, "0.2", null, "3.1", null, "0.2", null, "13.7", null, "0.2", null, "8.7", null, "0.2", null, "36.1", null, "0.2", null, "88.5", null, "0.2", null, "86.3", null, "0.2", null, "82.7", null, "0.3", null, "34.1", null, "0.3", null, "31.1", null, "0.3", null, "26.7", null, "0.1", null, "14.0", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "72", "98"]] \ No newline at end of file diff --git a/policyengine_us_data/storage/calibration/raw_inputs/acs_S0101_national_2024.json b/policyengine_us_data/storage/calibration/raw_inputs/acs_S0101_national_2024.json new file mode 100644 index 00000000..14cff7d6 --- /dev/null +++ b/policyengine_us_data/storage/calibration/raw_inputs/acs_S0101_national_2024.json @@ -0,0 +1 @@ +[["GEO_ID", "NAME", "S0101_C01_001E", "S0101_C01_001EA", "S0101_C01_001M", "S0101_C01_001MA", "S0101_C01_002E", "S0101_C01_002EA", "S0101_C01_002M", "S0101_C01_002MA", "S0101_C01_003E", "S0101_C01_003EA", "S0101_C01_003M", "S0101_C01_003MA", "S0101_C01_004E", "S0101_C01_004EA", "S0101_C01_004M", "S0101_C01_004MA", "S0101_C01_005E", "S0101_C01_005EA", "S0101_C01_005M", "S0101_C01_005MA", "S0101_C01_006E", "S0101_C01_006EA", "S0101_C01_006M", "S0101_C01_006MA", "S0101_C01_007E", "S0101_C01_007EA", "S0101_C01_007M", "S0101_C01_007MA", "S0101_C01_008E", "S0101_C01_008EA", "S0101_C01_008M", "S0101_C01_008MA", "S0101_C01_009E", "S0101_C01_009EA", "S0101_C01_009M", "S0101_C01_009MA", "S0101_C01_010E", "S0101_C01_010EA", "S0101_C01_010M", "S0101_C01_010MA", "S0101_C01_011E", "S0101_C01_011EA", "S0101_C01_011M", "S0101_C01_011MA", "S0101_C01_012E", "S0101_C01_012EA", "S0101_C01_012M", "S0101_C01_012MA", "S0101_C01_013E", "S0101_C01_013EA", "S0101_C01_013M", "S0101_C01_013MA", "S0101_C01_014E", "S0101_C01_014EA", "S0101_C01_014M", "S0101_C01_014MA", "S0101_C01_015E", "S0101_C01_015EA", "S0101_C01_015M", "S0101_C01_015MA", "S0101_C01_016E", "S0101_C01_016EA", "S0101_C01_016M", "S0101_C01_016MA", "S0101_C01_017E", "S0101_C01_017EA", "S0101_C01_017M", "S0101_C01_017MA", "S0101_C01_018E", "S0101_C01_018EA", "S0101_C01_018M", "S0101_C01_018MA", "S0101_C01_019E", "S0101_C01_019EA", "S0101_C01_019M", "S0101_C01_019MA", "S0101_C01_020E", "S0101_C01_020EA", "S0101_C01_020M", "S0101_C01_020MA", "S0101_C01_021E", "S0101_C01_021EA", "S0101_C01_021M", "S0101_C01_021MA", "S0101_C01_022E", "S0101_C01_022EA", "S0101_C01_022M", "S0101_C01_022MA", "S0101_C01_023E", "S0101_C01_023EA", "S0101_C01_023M", "S0101_C01_023MA", "S0101_C01_024E", "S0101_C01_024EA", "S0101_C01_024M", "S0101_C01_024MA", "S0101_C01_025E", "S0101_C01_025EA", "S0101_C01_025M", "S0101_C01_025MA", "S0101_C01_026E", "S0101_C01_026EA", "S0101_C01_026M", "S0101_C01_026MA", "S0101_C01_027E", "S0101_C01_027EA", "S0101_C01_027M", "S0101_C01_027MA", "S0101_C01_028E", "S0101_C01_028EA", "S0101_C01_028M", "S0101_C01_028MA", "S0101_C01_029E", "S0101_C01_029EA", "S0101_C01_029M", "S0101_C01_029MA", "S0101_C01_030E", "S0101_C01_030EA", "S0101_C01_030M", "S0101_C01_030MA", "S0101_C01_031E", "S0101_C01_031EA", "S0101_C01_031M", "S0101_C01_031MA", "S0101_C01_032E", "S0101_C01_032EA", "S0101_C01_032M", "S0101_C01_032MA", "S0101_C01_033E", "S0101_C01_033EA", "S0101_C01_033M", "S0101_C01_033MA", "S0101_C01_034E", "S0101_C01_034EA", "S0101_C01_034M", "S0101_C01_034MA", "S0101_C01_035E", "S0101_C01_035EA", "S0101_C01_035M", "S0101_C01_035MA", "S0101_C01_036E", "S0101_C01_036EA", "S0101_C01_036M", "S0101_C01_036MA", "S0101_C01_037E", "S0101_C01_037EA", "S0101_C01_037M", "S0101_C01_037MA", "S0101_C01_038E", "S0101_C01_038EA", "S0101_C01_038M", "S0101_C01_038MA", "S0101_C02_001E", "S0101_C02_001EA", "S0101_C02_001M", "S0101_C02_001MA", "S0101_C02_002E", "S0101_C02_002EA", "S0101_C02_002M", "S0101_C02_002MA", "S0101_C02_003E", "S0101_C02_003EA", "S0101_C02_003M", "S0101_C02_003MA", "S0101_C02_004E", "S0101_C02_004EA", "S0101_C02_004M", "S0101_C02_004MA", "S0101_C02_005E", "S0101_C02_005EA", "S0101_C02_005M", "S0101_C02_005MA", "S0101_C02_006E", "S0101_C02_006EA", "S0101_C02_006M", "S0101_C02_006MA", "S0101_C02_007E", "S0101_C02_007EA", "S0101_C02_007M", "S0101_C02_007MA", "S0101_C02_008E", "S0101_C02_008EA", "S0101_C02_008M", "S0101_C02_008MA", "S0101_C02_009E", "S0101_C02_009EA", "S0101_C02_009M", "S0101_C02_009MA", "S0101_C02_010E", "S0101_C02_010EA", "S0101_C02_010M", "S0101_C02_010MA", "S0101_C02_011E", "S0101_C02_011EA", "S0101_C02_011M", "S0101_C02_011MA", "S0101_C02_012E", "S0101_C02_012EA", "S0101_C02_012M", "S0101_C02_012MA", "S0101_C02_013E", "S0101_C02_013EA", "S0101_C02_013M", "S0101_C02_013MA", "S0101_C02_014E", "S0101_C02_014EA", "S0101_C02_014M", "S0101_C02_014MA", "S0101_C02_015E", "S0101_C02_015EA", "S0101_C02_015M", "S0101_C02_015MA", "S0101_C02_016E", "S0101_C02_016EA", "S0101_C02_016M", "S0101_C02_016MA", "S0101_C02_017E", "S0101_C02_017EA", "S0101_C02_017M", "S0101_C02_017MA", "S0101_C02_018E", "S0101_C02_018EA", "S0101_C02_018M", "S0101_C02_018MA", "S0101_C02_019E", "S0101_C02_019EA", "S0101_C02_019M", "S0101_C02_019MA", "S0101_C02_020E", "S0101_C02_020EA", "S0101_C02_020M", "S0101_C02_020MA", "S0101_C02_021E", "S0101_C02_021EA", "S0101_C02_021M", "S0101_C02_021MA", "S0101_C02_022E", "S0101_C02_022EA", "S0101_C02_022M", "S0101_C02_022MA", "S0101_C02_023E", "S0101_C02_023EA", "S0101_C02_023M", "S0101_C02_023MA", "S0101_C02_024E", "S0101_C02_024EA", "S0101_C02_024M", "S0101_C02_024MA", "S0101_C02_025E", "S0101_C02_025EA", "S0101_C02_025M", "S0101_C02_025MA", "S0101_C02_026E", "S0101_C02_026EA", "S0101_C02_026M", "S0101_C02_026MA", "S0101_C02_027E", "S0101_C02_027EA", "S0101_C02_027M", "S0101_C02_027MA", "S0101_C02_028E", "S0101_C02_028EA", "S0101_C02_028M", "S0101_C02_028MA", "S0101_C02_029E", "S0101_C02_029EA", "S0101_C02_029M", "S0101_C02_029MA", "S0101_C02_030E", "S0101_C02_030EA", "S0101_C02_030M", "S0101_C02_030MA", "S0101_C02_031E", "S0101_C02_031EA", "S0101_C02_031M", "S0101_C02_031MA", "S0101_C02_032E", "S0101_C02_032EA", "S0101_C02_032M", "S0101_C02_032MA", "S0101_C02_033E", "S0101_C02_033EA", "S0101_C02_033M", "S0101_C02_033MA", "S0101_C02_034E", "S0101_C02_034EA", "S0101_C02_034M", "S0101_C02_034MA", "S0101_C02_035E", "S0101_C02_035EA", "S0101_C02_035M", "S0101_C02_035MA", "S0101_C02_036E", "S0101_C02_036EA", "S0101_C02_036M", "S0101_C02_036MA", "S0101_C02_037E", "S0101_C02_037EA", "S0101_C02_037M", "S0101_C02_037MA", "S0101_C02_038E", "S0101_C02_038EA", "S0101_C02_038M", "S0101_C02_038MA", "S0101_C03_001E", "S0101_C03_001EA", "S0101_C03_001M", "S0101_C03_001MA", "S0101_C03_002E", "S0101_C03_002EA", "S0101_C03_002M", "S0101_C03_002MA", "S0101_C03_003E", "S0101_C03_003EA", "S0101_C03_003M", "S0101_C03_003MA", "S0101_C03_004E", "S0101_C03_004EA", "S0101_C03_004M", "S0101_C03_004MA", "S0101_C03_005E", "S0101_C03_005EA", "S0101_C03_005M", "S0101_C03_005MA", "S0101_C03_006E", "S0101_C03_006EA", "S0101_C03_006M", "S0101_C03_006MA", "S0101_C03_007E", "S0101_C03_007EA", "S0101_C03_007M", "S0101_C03_007MA", "S0101_C03_008E", "S0101_C03_008EA", "S0101_C03_008M", "S0101_C03_008MA", "S0101_C03_009E", "S0101_C03_009EA", "S0101_C03_009M", "S0101_C03_009MA", "S0101_C03_010E", "S0101_C03_010EA", "S0101_C03_010M", "S0101_C03_010MA", "S0101_C03_011E", "S0101_C03_011EA", "S0101_C03_011M", "S0101_C03_011MA", "S0101_C03_012E", "S0101_C03_012EA", "S0101_C03_012M", "S0101_C03_012MA", "S0101_C03_013E", "S0101_C03_013EA", "S0101_C03_013M", "S0101_C03_013MA", "S0101_C03_014E", "S0101_C03_014EA", "S0101_C03_014M", "S0101_C03_014MA", "S0101_C03_015E", "S0101_C03_015EA", "S0101_C03_015M", "S0101_C03_015MA", "S0101_C03_016E", "S0101_C03_016EA", "S0101_C03_016M", "S0101_C03_016MA", "S0101_C03_017E", "S0101_C03_017EA", "S0101_C03_017M", "S0101_C03_017MA", "S0101_C03_018E", "S0101_C03_018EA", "S0101_C03_018M", "S0101_C03_018MA", "S0101_C03_019E", "S0101_C03_019EA", "S0101_C03_019M", "S0101_C03_019MA", "S0101_C03_020E", "S0101_C03_020EA", "S0101_C03_020M", "S0101_C03_020MA", "S0101_C03_021E", "S0101_C03_021EA", "S0101_C03_021M", "S0101_C03_021MA", "S0101_C03_022E", "S0101_C03_022EA", "S0101_C03_022M", "S0101_C03_022MA", "S0101_C03_023E", "S0101_C03_023EA", "S0101_C03_023M", "S0101_C03_023MA", "S0101_C03_024E", "S0101_C03_024EA", "S0101_C03_024M", "S0101_C03_024MA", "S0101_C03_025E", "S0101_C03_025EA", "S0101_C03_025M", "S0101_C03_025MA", "S0101_C03_026E", "S0101_C03_026EA", "S0101_C03_026M", "S0101_C03_026MA", "S0101_C03_027E", "S0101_C03_027EA", "S0101_C03_027M", "S0101_C03_027MA", "S0101_C03_028E", "S0101_C03_028EA", "S0101_C03_028M", "S0101_C03_028MA", "S0101_C03_029E", "S0101_C03_029EA", "S0101_C03_029M", "S0101_C03_029MA", "S0101_C03_030E", "S0101_C03_030EA", "S0101_C03_030M", "S0101_C03_030MA", "S0101_C03_031E", "S0101_C03_031EA", "S0101_C03_031M", "S0101_C03_031MA", "S0101_C03_032E", "S0101_C03_032EA", "S0101_C03_032M", "S0101_C03_032MA", "S0101_C03_033E", "S0101_C03_033EA", "S0101_C03_033M", "S0101_C03_033MA", "S0101_C03_034E", "S0101_C03_034EA", "S0101_C03_034M", "S0101_C03_034MA", "S0101_C03_035E", "S0101_C03_035EA", "S0101_C03_035M", "S0101_C03_035MA", "S0101_C03_036E", "S0101_C03_036EA", "S0101_C03_036M", "S0101_C03_036MA", "S0101_C03_037E", "S0101_C03_037EA", "S0101_C03_037M", "S0101_C03_037MA", "S0101_C03_038E", "S0101_C03_038EA", "S0101_C03_038M", "S0101_C03_038MA", "S0101_C04_001E", "S0101_C04_001EA", "S0101_C04_001M", "S0101_C04_001MA", "S0101_C04_002E", "S0101_C04_002EA", "S0101_C04_002M", "S0101_C04_002MA", "S0101_C04_003E", "S0101_C04_003EA", "S0101_C04_003M", "S0101_C04_003MA", "S0101_C04_004E", "S0101_C04_004EA", "S0101_C04_004M", "S0101_C04_004MA", "S0101_C04_005E", "S0101_C04_005EA", "S0101_C04_005M", "S0101_C04_005MA", "S0101_C04_006E", "S0101_C04_006EA", "S0101_C04_006M", "S0101_C04_006MA", "S0101_C04_007E", "S0101_C04_007EA", "S0101_C04_007M", "S0101_C04_007MA", "S0101_C04_008E", "S0101_C04_008EA", "S0101_C04_008M", "S0101_C04_008MA", "S0101_C04_009E", "S0101_C04_009EA", "S0101_C04_009M", "S0101_C04_009MA", "S0101_C04_010E", "S0101_C04_010EA", "S0101_C04_010M", "S0101_C04_010MA", "S0101_C04_011E", "S0101_C04_011EA", "S0101_C04_011M", "S0101_C04_011MA", "S0101_C04_012E", "S0101_C04_012EA", "S0101_C04_012M", "S0101_C04_012MA", "S0101_C04_013E", "S0101_C04_013EA", "S0101_C04_013M", "S0101_C04_013MA", "S0101_C04_014E", "S0101_C04_014EA", "S0101_C04_014M", "S0101_C04_014MA", "S0101_C04_015E", "S0101_C04_015EA", "S0101_C04_015M", "S0101_C04_015MA", "S0101_C04_016E", "S0101_C04_016EA", "S0101_C04_016M", "S0101_C04_016MA", "S0101_C04_017E", "S0101_C04_017EA", "S0101_C04_017M", "S0101_C04_017MA", "S0101_C04_018E", "S0101_C04_018EA", "S0101_C04_018M", "S0101_C04_018MA", "S0101_C04_019E", "S0101_C04_019EA", "S0101_C04_019M", "S0101_C04_019MA", "S0101_C04_020E", "S0101_C04_020EA", "S0101_C04_020M", "S0101_C04_020MA", "S0101_C04_021E", "S0101_C04_021EA", "S0101_C04_021M", "S0101_C04_021MA", "S0101_C04_022E", "S0101_C04_022EA", "S0101_C04_022M", "S0101_C04_022MA", "S0101_C04_023E", "S0101_C04_023EA", "S0101_C04_023M", "S0101_C04_023MA", "S0101_C04_024E", "S0101_C04_024EA", "S0101_C04_024M", "S0101_C04_024MA", "S0101_C04_025E", "S0101_C04_025EA", "S0101_C04_025M", "S0101_C04_025MA", "S0101_C04_026E", "S0101_C04_026EA", "S0101_C04_026M", "S0101_C04_026MA", "S0101_C04_027E", "S0101_C04_027EA", "S0101_C04_027M", "S0101_C04_027MA", "S0101_C04_028E", "S0101_C04_028EA", "S0101_C04_028M", "S0101_C04_028MA", "S0101_C04_029E", "S0101_C04_029EA", "S0101_C04_029M", "S0101_C04_029MA", "S0101_C04_030E", "S0101_C04_030EA", "S0101_C04_030M", "S0101_C04_030MA", "S0101_C04_031E", "S0101_C04_031EA", "S0101_C04_031M", "S0101_C04_031MA", "S0101_C04_032E", "S0101_C04_032EA", "S0101_C04_032M", "S0101_C04_032MA", "S0101_C04_033E", "S0101_C04_033EA", "S0101_C04_033M", "S0101_C04_033MA", "S0101_C04_034E", "S0101_C04_034EA", "S0101_C04_034M", "S0101_C04_034MA", "S0101_C04_035E", "S0101_C04_035EA", "S0101_C04_035M", "S0101_C04_035MA", "S0101_C04_036E", "S0101_C04_036EA", "S0101_C04_036M", "S0101_C04_036MA", "S0101_C04_037E", "S0101_C04_037EA", "S0101_C04_037M", "S0101_C04_037MA", "S0101_C04_038E", "S0101_C04_038EA", "S0101_C04_038M", "S0101_C04_038MA", "S0101_C05_001E", "S0101_C05_001EA", "S0101_C05_001M", "S0101_C05_001MA", "S0101_C05_002E", "S0101_C05_002EA", "S0101_C05_002M", "S0101_C05_002MA", "S0101_C05_003E", "S0101_C05_003EA", "S0101_C05_003M", "S0101_C05_003MA", "S0101_C05_004E", "S0101_C05_004EA", "S0101_C05_004M", "S0101_C05_004MA", "S0101_C05_005E", "S0101_C05_005EA", "S0101_C05_005M", "S0101_C05_005MA", "S0101_C05_006E", "S0101_C05_006EA", "S0101_C05_006M", "S0101_C05_006MA", "S0101_C05_007E", "S0101_C05_007EA", "S0101_C05_007M", "S0101_C05_007MA", "S0101_C05_008E", "S0101_C05_008EA", "S0101_C05_008M", "S0101_C05_008MA", "S0101_C05_009E", "S0101_C05_009EA", "S0101_C05_009M", "S0101_C05_009MA", "S0101_C05_010E", "S0101_C05_010EA", "S0101_C05_010M", "S0101_C05_010MA", "S0101_C05_011E", "S0101_C05_011EA", "S0101_C05_011M", "S0101_C05_011MA", "S0101_C05_012E", "S0101_C05_012EA", "S0101_C05_012M", "S0101_C05_012MA", "S0101_C05_013E", "S0101_C05_013EA", "S0101_C05_013M", "S0101_C05_013MA", "S0101_C05_014E", "S0101_C05_014EA", "S0101_C05_014M", "S0101_C05_014MA", "S0101_C05_015E", "S0101_C05_015EA", "S0101_C05_015M", "S0101_C05_015MA", "S0101_C05_016E", "S0101_C05_016EA", "S0101_C05_016M", "S0101_C05_016MA", "S0101_C05_017E", "S0101_C05_017EA", "S0101_C05_017M", "S0101_C05_017MA", "S0101_C05_018E", "S0101_C05_018EA", "S0101_C05_018M", "S0101_C05_018MA", "S0101_C05_019E", "S0101_C05_019EA", "S0101_C05_019M", "S0101_C05_019MA", "S0101_C05_020E", "S0101_C05_020EA", "S0101_C05_020M", "S0101_C05_020MA", "S0101_C05_021E", "S0101_C05_021EA", "S0101_C05_021M", "S0101_C05_021MA", "S0101_C05_022E", "S0101_C05_022EA", "S0101_C05_022M", "S0101_C05_022MA", "S0101_C05_023E", "S0101_C05_023EA", "S0101_C05_023M", "S0101_C05_023MA", "S0101_C05_024E", "S0101_C05_024EA", "S0101_C05_024M", "S0101_C05_024MA", "S0101_C05_025E", "S0101_C05_025EA", "S0101_C05_025M", "S0101_C05_025MA", "S0101_C05_026E", "S0101_C05_026EA", "S0101_C05_026M", "S0101_C05_026MA", "S0101_C05_027E", "S0101_C05_027EA", "S0101_C05_027M", "S0101_C05_027MA", "S0101_C05_028E", "S0101_C05_028EA", "S0101_C05_028M", "S0101_C05_028MA", "S0101_C05_029E", "S0101_C05_029EA", "S0101_C05_029M", "S0101_C05_029MA", "S0101_C05_030E", "S0101_C05_030EA", "S0101_C05_030M", "S0101_C05_030MA", "S0101_C05_031E", "S0101_C05_031EA", "S0101_C05_031M", "S0101_C05_031MA", "S0101_C05_032E", "S0101_C05_032EA", "S0101_C05_032M", "S0101_C05_032MA", "S0101_C05_033E", "S0101_C05_033EA", "S0101_C05_033M", "S0101_C05_033MA", "S0101_C05_034E", "S0101_C05_034EA", "S0101_C05_034M", "S0101_C05_034MA", "S0101_C05_035E", "S0101_C05_035EA", "S0101_C05_035M", "S0101_C05_035MA", "S0101_C05_036E", "S0101_C05_036EA", "S0101_C05_036M", "S0101_C05_036MA", "S0101_C05_037E", "S0101_C05_037EA", "S0101_C05_037M", "S0101_C05_037MA", "S0101_C05_038E", "S0101_C05_038EA", "S0101_C05_038M", "S0101_C05_038MA", "S0101_C06_001E", "S0101_C06_001EA", "S0101_C06_001M", "S0101_C06_001MA", "S0101_C06_002E", "S0101_C06_002EA", "S0101_C06_002M", "S0101_C06_002MA", "S0101_C06_003E", "S0101_C06_003EA", "S0101_C06_003M", "S0101_C06_003MA", "S0101_C06_004E", "S0101_C06_004EA", "S0101_C06_004M", "S0101_C06_004MA", "S0101_C06_005E", "S0101_C06_005EA", "S0101_C06_005M", "S0101_C06_005MA", "S0101_C06_006E", "S0101_C06_006EA", "S0101_C06_006M", "S0101_C06_006MA", "S0101_C06_007E", "S0101_C06_007EA", "S0101_C06_007M", "S0101_C06_007MA", "S0101_C06_008E", "S0101_C06_008EA", "S0101_C06_008M", "S0101_C06_008MA", "S0101_C06_009E", "S0101_C06_009EA", "S0101_C06_009M", "S0101_C06_009MA", "S0101_C06_010E", "S0101_C06_010EA", "S0101_C06_010M", "S0101_C06_010MA", "S0101_C06_011E", "S0101_C06_011EA", "S0101_C06_011M", "S0101_C06_011MA", "S0101_C06_012E", "S0101_C06_012EA", "S0101_C06_012M", "S0101_C06_012MA", "S0101_C06_013E", "S0101_C06_013EA", "S0101_C06_013M", "S0101_C06_013MA", "S0101_C06_014E", "S0101_C06_014EA", "S0101_C06_014M", "S0101_C06_014MA", "S0101_C06_015E", "S0101_C06_015EA", "S0101_C06_015M", "S0101_C06_015MA", "S0101_C06_016E", "S0101_C06_016EA", "S0101_C06_016M", "S0101_C06_016MA", "S0101_C06_017E", "S0101_C06_017EA", "S0101_C06_017M", "S0101_C06_017MA", "S0101_C06_018E", "S0101_C06_018EA", "S0101_C06_018M", "S0101_C06_018MA", "S0101_C06_019E", "S0101_C06_019EA", "S0101_C06_019M", "S0101_C06_019MA", "S0101_C06_020E", "S0101_C06_020EA", "S0101_C06_020M", "S0101_C06_020MA", "S0101_C06_021E", "S0101_C06_021EA", "S0101_C06_021M", "S0101_C06_021MA", "S0101_C06_022E", "S0101_C06_022EA", "S0101_C06_022M", "S0101_C06_022MA", "S0101_C06_023E", "S0101_C06_023EA", "S0101_C06_023M", "S0101_C06_023MA", "S0101_C06_024E", "S0101_C06_024EA", "S0101_C06_024M", "S0101_C06_024MA", "S0101_C06_025E", "S0101_C06_025EA", "S0101_C06_025M", "S0101_C06_025MA", "S0101_C06_026E", "S0101_C06_026EA", "S0101_C06_026M", "S0101_C06_026MA", "S0101_C06_027E", "S0101_C06_027EA", "S0101_C06_027M", "S0101_C06_027MA", "S0101_C06_028E", "S0101_C06_028EA", "S0101_C06_028M", "S0101_C06_028MA", "S0101_C06_029E", "S0101_C06_029EA", "S0101_C06_029M", "S0101_C06_029MA", "S0101_C06_030E", "S0101_C06_030EA", "S0101_C06_030M", "S0101_C06_030MA", "S0101_C06_031E", "S0101_C06_031EA", "S0101_C06_031M", "S0101_C06_031MA", "S0101_C06_032E", "S0101_C06_032EA", "S0101_C06_032M", "S0101_C06_032MA", "S0101_C06_033E", "S0101_C06_033EA", "S0101_C06_033M", "S0101_C06_033MA", "S0101_C06_034E", "S0101_C06_034EA", "S0101_C06_034M", "S0101_C06_034MA", "S0101_C06_035E", "S0101_C06_035EA", "S0101_C06_035M", "S0101_C06_035MA", "S0101_C06_036E", "S0101_C06_036EA", "S0101_C06_036M", "S0101_C06_036MA", "S0101_C06_037E", "S0101_C06_037EA", "S0101_C06_037M", "S0101_C06_037MA", "S0101_C06_038E", "S0101_C06_038EA", "S0101_C06_038M", "S0101_C06_038MA", "us"], ["0100000US", "United States", "340110990", null, "-555555555", "*****", "18365047", null, "18704", null, "19806742", null, "65396", null, "21346363", null, "65976", null, "22449564", null, "41128", null, "22232555", null, "38762", null, "22323951", null, "32411", null, "23874454", null, "27146", null, "23255856", null, "79543", null, "22701029", null, "81788", null, "20348201", null, "28210", null, "20474684", null, "28087", null, "19958796", null, "64318", null, "21728465", null, "68510", null, "19356883", null, "56140", null, "16228208", null, "55248", null, "11962541", null, "47920", null, "7354498", null, "39474", null, "6343153", null, "34356", null, "41153105", null, "39134", null, "13411160", null, "22154", null, "72929312", null, "31522", null, "31270959", null, "48363", null, "136837409", null, "35009", null, "276249478", null, "52420", null, "267181678", null, "31516", null, "253717216", null, "84391", null, "82973748", null, "74037", null, "74266307", null, "64234", null, "61245283", null, "24867", null, "25660192", null, "16745", null, "39.2", null, "0.1", null, "97.9", null, "0.1", null, "65.2", null, "0.1", null, "29.7", null, "0.1", null, "35.4", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.1", null, "5.8", null, "0.1", null, "6.3", null, "0.1", null, "6.6", null, "0.1", null, "6.5", null, "0.1", null, "6.6", null, "0.1", null, "7.0", null, "0.1", null, "6.8", null, "0.1", null, "6.7", null, "0.1", null, "6.0", null, "0.1", null, "6.0", null, "0.1", null, "5.9", null, "0.1", null, "6.4", null, "0.1", null, "5.7", null, "0.1", null, "4.8", null, "0.1", null, "3.5", null, "0.1", null, "2.2", null, "0.1", null, "1.9", null, "0.1", null, "12.1", null, "0.1", null, "3.9", null, "0.1", null, "21.4", null, "0.1", null, "9.2", null, "0.1", null, "40.2", null, "0.1", null, "81.2", null, "0.1", null, "78.6", null, "0.1", null, "74.6", null, "0.1", null, "24.4", null, "0.1", null, "21.8", null, "0.1", null, "18.0", null, "0.1", null, "7.5", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.4", null, "-888888888.0", "(X)", "168294343", null, "32107", null, "9370856", null, "21642", null, "10123467", null, "42632", null, "10976815", null, "42333", null, "11503628", null, "31118", null, "11386304", null, "25087", null, "11310221", null, "21288", null, "12049960", null, "18530", null, "11736345", null, "53647", null, "11427109", null, "54310", null, "10142209", null, "18054", null, "10186138", null, "16961", null, "9826949", null, "41254", null, "10571031", null, "42931", null, "9189235", null, "36643", null, "7555183", null, "34962", null, "5403472", null, "25680", null, "3166864", null, "23622", null, "2368557", null, "20795", null, "21100282", null, "23317", null, "6884490", null, "21176", null, "37355628", null, "31612", null, "16005442", null, "29069", null, "69413567", null, "31671", null, "135592747", null, "38117", null, "130938715", null, "26572", null, "124048540", null, "48511", null, "38254342", null, "46038", null, "33999187", null, "43336", null, "27683311", null, "15483", null, "10938893", null, "12033", null, "38.1", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.6", null, "0.1", null, "6.0", null, "0.1", null, "6.5", null, "0.1", null, "6.8", null, "0.1", null, "6.8", null, "0.1", null, "6.7", null, "0.1", null, "7.2", null, "0.1", null, "7.0", null, "0.1", null, "6.8", null, "0.1", null, "6.0", null, "0.1", null, "6.1", null, "0.1", null, "5.8", null, "0.1", null, "6.3", null, "0.1", null, "5.5", null, "0.1", null, "4.5", null, "0.1", null, "3.2", null, "0.1", null, "1.9", null, "0.1", null, "1.4", null, "0.1", null, "12.5", null, "0.1", null, "4.1", null, "0.1", null, "22.2", null, "0.1", null, "9.5", null, "0.1", null, "41.2", null, "0.1", null, "80.6", null, "0.1", null, "77.8", null, "0.1", null, "73.7", null, "0.1", null, "22.7", null, "0.1", null, "20.2", null, "0.1", null, "16.4", null, "0.1", null, "6.5", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "171816647", null, "32107", null, "8994191", null, "18211", null, "9683275", null, "40981", null, "10369548", null, "43418", null, "10945936", null, "30482", null, "10846251", null, "24258", null, "11013730", null, "20511", null, "11824494", null, "18289", null, "11519511", null, "48734", null, "11273920", null, "49310", null, "10205992", null, "18682", null, "10288546", null, "19386", null, "10131847", null, "39853", null, "11157434", null, "40495", null, "10167648", null, "36504", null, "8673025", null, "35777", null, "6559069", null, "35130", null, "4187634", null, "29592", null, "3974596", null, "25125", null, "20052823", null, "26149", null, "6526670", null, "18517", null, "35573684", null, "33676", null, "15265517", null, "26562", null, "67423842", null, "31154", null, "140656731", null, "38622", null, "136242963", null, "22586", null, "129668676", null, "54838", null, "44719406", null, "43415", null, "40267120", null, "38340", null, "33561972", null, "16234", null, "14721299", null, "10390", null, "40.3", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.1", null, "5.6", null, "0.1", null, "6.0", null, "0.1", null, "6.4", null, "0.1", null, "6.3", null, "0.1", null, "6.4", null, "0.1", null, "6.9", null, "0.1", null, "6.7", null, "0.1", null, "6.6", null, "0.1", null, "5.9", null, "0.1", null, "6.0", null, "0.1", null, "5.9", null, "0.1", null, "6.5", null, "0.1", null, "5.9", null, "0.1", null, "5.0", null, "0.1", null, "3.8", null, "0.1", null, "2.4", null, "0.1", null, "2.3", null, "0.1", null, "11.7", null, "0.1", null, "3.8", null, "0.1", null, "20.7", null, "0.1", null, "8.9", null, "0.1", null, "39.2", null, "0.1", null, "81.9", null, "0.1", null, "79.3", null, "0.1", null, "75.5", null, "0.1", null, "26.0", null, "0.1", null, "23.4", null, "0.1", null, "19.5", null, "0.1", null, "8.6", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "1"]] \ No newline at end of file diff --git a/policyengine_us_data/storage/calibration/raw_inputs/acs_S0101_state_2024.json b/policyengine_us_data/storage/calibration/raw_inputs/acs_S0101_state_2024.json new file mode 100644 index 00000000..feb69235 --- /dev/null +++ b/policyengine_us_data/storage/calibration/raw_inputs/acs_S0101_state_2024.json @@ -0,0 +1 @@ +[["GEO_ID", "NAME", "S0101_C01_001E", "S0101_C01_001EA", "S0101_C01_001M", "S0101_C01_001MA", "S0101_C01_002E", "S0101_C01_002EA", "S0101_C01_002M", "S0101_C01_002MA", "S0101_C01_003E", "S0101_C01_003EA", "S0101_C01_003M", "S0101_C01_003MA", "S0101_C01_004E", "S0101_C01_004EA", "S0101_C01_004M", "S0101_C01_004MA", "S0101_C01_005E", "S0101_C01_005EA", "S0101_C01_005M", "S0101_C01_005MA", "S0101_C01_006E", "S0101_C01_006EA", "S0101_C01_006M", "S0101_C01_006MA", "S0101_C01_007E", "S0101_C01_007EA", "S0101_C01_007M", "S0101_C01_007MA", "S0101_C01_008E", "S0101_C01_008EA", "S0101_C01_008M", "S0101_C01_008MA", "S0101_C01_009E", "S0101_C01_009EA", "S0101_C01_009M", "S0101_C01_009MA", "S0101_C01_010E", "S0101_C01_010EA", "S0101_C01_010M", "S0101_C01_010MA", "S0101_C01_011E", "S0101_C01_011EA", "S0101_C01_011M", "S0101_C01_011MA", "S0101_C01_012E", "S0101_C01_012EA", "S0101_C01_012M", "S0101_C01_012MA", "S0101_C01_013E", "S0101_C01_013EA", "S0101_C01_013M", "S0101_C01_013MA", "S0101_C01_014E", "S0101_C01_014EA", "S0101_C01_014M", "S0101_C01_014MA", "S0101_C01_015E", "S0101_C01_015EA", "S0101_C01_015M", "S0101_C01_015MA", "S0101_C01_016E", "S0101_C01_016EA", "S0101_C01_016M", "S0101_C01_016MA", "S0101_C01_017E", "S0101_C01_017EA", "S0101_C01_017M", "S0101_C01_017MA", "S0101_C01_018E", "S0101_C01_018EA", "S0101_C01_018M", "S0101_C01_018MA", "S0101_C01_019E", "S0101_C01_019EA", "S0101_C01_019M", "S0101_C01_019MA", "S0101_C01_020E", "S0101_C01_020EA", "S0101_C01_020M", "S0101_C01_020MA", "S0101_C01_021E", "S0101_C01_021EA", "S0101_C01_021M", "S0101_C01_021MA", "S0101_C01_022E", "S0101_C01_022EA", "S0101_C01_022M", "S0101_C01_022MA", "S0101_C01_023E", "S0101_C01_023EA", "S0101_C01_023M", "S0101_C01_023MA", "S0101_C01_024E", "S0101_C01_024EA", "S0101_C01_024M", "S0101_C01_024MA", "S0101_C01_025E", "S0101_C01_025EA", "S0101_C01_025M", "S0101_C01_025MA", "S0101_C01_026E", "S0101_C01_026EA", "S0101_C01_026M", "S0101_C01_026MA", "S0101_C01_027E", "S0101_C01_027EA", "S0101_C01_027M", "S0101_C01_027MA", "S0101_C01_028E", "S0101_C01_028EA", "S0101_C01_028M", "S0101_C01_028MA", "S0101_C01_029E", "S0101_C01_029EA", "S0101_C01_029M", "S0101_C01_029MA", "S0101_C01_030E", "S0101_C01_030EA", "S0101_C01_030M", "S0101_C01_030MA", "S0101_C01_031E", "S0101_C01_031EA", "S0101_C01_031M", "S0101_C01_031MA", "S0101_C01_032E", "S0101_C01_032EA", "S0101_C01_032M", "S0101_C01_032MA", "S0101_C01_033E", "S0101_C01_033EA", "S0101_C01_033M", "S0101_C01_033MA", "S0101_C01_034E", "S0101_C01_034EA", "S0101_C01_034M", "S0101_C01_034MA", "S0101_C01_035E", "S0101_C01_035EA", "S0101_C01_035M", "S0101_C01_035MA", "S0101_C01_036E", "S0101_C01_036EA", "S0101_C01_036M", "S0101_C01_036MA", "S0101_C01_037E", "S0101_C01_037EA", "S0101_C01_037M", "S0101_C01_037MA", "S0101_C01_038E", "S0101_C01_038EA", "S0101_C01_038M", "S0101_C01_038MA", "S0101_C02_001E", "S0101_C02_001EA", "S0101_C02_001M", "S0101_C02_001MA", "S0101_C02_002E", "S0101_C02_002EA", "S0101_C02_002M", "S0101_C02_002MA", "S0101_C02_003E", "S0101_C02_003EA", "S0101_C02_003M", "S0101_C02_003MA", "S0101_C02_004E", "S0101_C02_004EA", "S0101_C02_004M", "S0101_C02_004MA", "S0101_C02_005E", "S0101_C02_005EA", "S0101_C02_005M", "S0101_C02_005MA", "S0101_C02_006E", "S0101_C02_006EA", "S0101_C02_006M", "S0101_C02_006MA", "S0101_C02_007E", "S0101_C02_007EA", "S0101_C02_007M", "S0101_C02_007MA", "S0101_C02_008E", "S0101_C02_008EA", "S0101_C02_008M", "S0101_C02_008MA", "S0101_C02_009E", "S0101_C02_009EA", "S0101_C02_009M", "S0101_C02_009MA", "S0101_C02_010E", "S0101_C02_010EA", "S0101_C02_010M", "S0101_C02_010MA", "S0101_C02_011E", "S0101_C02_011EA", "S0101_C02_011M", "S0101_C02_011MA", "S0101_C02_012E", "S0101_C02_012EA", "S0101_C02_012M", "S0101_C02_012MA", "S0101_C02_013E", "S0101_C02_013EA", "S0101_C02_013M", "S0101_C02_013MA", "S0101_C02_014E", "S0101_C02_014EA", "S0101_C02_014M", "S0101_C02_014MA", "S0101_C02_015E", "S0101_C02_015EA", "S0101_C02_015M", "S0101_C02_015MA", "S0101_C02_016E", "S0101_C02_016EA", "S0101_C02_016M", "S0101_C02_016MA", "S0101_C02_017E", "S0101_C02_017EA", "S0101_C02_017M", "S0101_C02_017MA", "S0101_C02_018E", "S0101_C02_018EA", "S0101_C02_018M", "S0101_C02_018MA", "S0101_C02_019E", "S0101_C02_019EA", "S0101_C02_019M", "S0101_C02_019MA", "S0101_C02_020E", "S0101_C02_020EA", "S0101_C02_020M", "S0101_C02_020MA", "S0101_C02_021E", "S0101_C02_021EA", "S0101_C02_021M", "S0101_C02_021MA", "S0101_C02_022E", "S0101_C02_022EA", "S0101_C02_022M", "S0101_C02_022MA", "S0101_C02_023E", "S0101_C02_023EA", "S0101_C02_023M", "S0101_C02_023MA", "S0101_C02_024E", "S0101_C02_024EA", "S0101_C02_024M", "S0101_C02_024MA", "S0101_C02_025E", "S0101_C02_025EA", "S0101_C02_025M", "S0101_C02_025MA", "S0101_C02_026E", "S0101_C02_026EA", "S0101_C02_026M", "S0101_C02_026MA", "S0101_C02_027E", "S0101_C02_027EA", "S0101_C02_027M", "S0101_C02_027MA", "S0101_C02_028E", "S0101_C02_028EA", "S0101_C02_028M", "S0101_C02_028MA", "S0101_C02_029E", "S0101_C02_029EA", "S0101_C02_029M", "S0101_C02_029MA", "S0101_C02_030E", "S0101_C02_030EA", "S0101_C02_030M", "S0101_C02_030MA", "S0101_C02_031E", "S0101_C02_031EA", "S0101_C02_031M", "S0101_C02_031MA", "S0101_C02_032E", "S0101_C02_032EA", "S0101_C02_032M", "S0101_C02_032MA", "S0101_C02_033E", "S0101_C02_033EA", "S0101_C02_033M", "S0101_C02_033MA", "S0101_C02_034E", "S0101_C02_034EA", "S0101_C02_034M", "S0101_C02_034MA", "S0101_C02_035E", "S0101_C02_035EA", "S0101_C02_035M", "S0101_C02_035MA", "S0101_C02_036E", "S0101_C02_036EA", "S0101_C02_036M", "S0101_C02_036MA", "S0101_C02_037E", "S0101_C02_037EA", "S0101_C02_037M", "S0101_C02_037MA", "S0101_C02_038E", "S0101_C02_038EA", "S0101_C02_038M", "S0101_C02_038MA", "S0101_C03_001E", "S0101_C03_001EA", "S0101_C03_001M", "S0101_C03_001MA", "S0101_C03_002E", "S0101_C03_002EA", "S0101_C03_002M", "S0101_C03_002MA", "S0101_C03_003E", "S0101_C03_003EA", "S0101_C03_003M", "S0101_C03_003MA", "S0101_C03_004E", "S0101_C03_004EA", "S0101_C03_004M", "S0101_C03_004MA", "S0101_C03_005E", "S0101_C03_005EA", "S0101_C03_005M", "S0101_C03_005MA", "S0101_C03_006E", "S0101_C03_006EA", "S0101_C03_006M", "S0101_C03_006MA", "S0101_C03_007E", "S0101_C03_007EA", "S0101_C03_007M", "S0101_C03_007MA", "S0101_C03_008E", "S0101_C03_008EA", "S0101_C03_008M", "S0101_C03_008MA", "S0101_C03_009E", "S0101_C03_009EA", "S0101_C03_009M", "S0101_C03_009MA", "S0101_C03_010E", "S0101_C03_010EA", "S0101_C03_010M", "S0101_C03_010MA", "S0101_C03_011E", "S0101_C03_011EA", "S0101_C03_011M", "S0101_C03_011MA", "S0101_C03_012E", "S0101_C03_012EA", "S0101_C03_012M", "S0101_C03_012MA", "S0101_C03_013E", "S0101_C03_013EA", "S0101_C03_013M", "S0101_C03_013MA", "S0101_C03_014E", "S0101_C03_014EA", "S0101_C03_014M", "S0101_C03_014MA", "S0101_C03_015E", "S0101_C03_015EA", "S0101_C03_015M", "S0101_C03_015MA", "S0101_C03_016E", "S0101_C03_016EA", "S0101_C03_016M", "S0101_C03_016MA", "S0101_C03_017E", "S0101_C03_017EA", "S0101_C03_017M", "S0101_C03_017MA", "S0101_C03_018E", "S0101_C03_018EA", "S0101_C03_018M", "S0101_C03_018MA", "S0101_C03_019E", "S0101_C03_019EA", "S0101_C03_019M", "S0101_C03_019MA", "S0101_C03_020E", "S0101_C03_020EA", "S0101_C03_020M", "S0101_C03_020MA", "S0101_C03_021E", "S0101_C03_021EA", "S0101_C03_021M", "S0101_C03_021MA", "S0101_C03_022E", "S0101_C03_022EA", "S0101_C03_022M", "S0101_C03_022MA", "S0101_C03_023E", "S0101_C03_023EA", "S0101_C03_023M", "S0101_C03_023MA", "S0101_C03_024E", "S0101_C03_024EA", "S0101_C03_024M", "S0101_C03_024MA", "S0101_C03_025E", "S0101_C03_025EA", "S0101_C03_025M", "S0101_C03_025MA", "S0101_C03_026E", "S0101_C03_026EA", "S0101_C03_026M", "S0101_C03_026MA", "S0101_C03_027E", "S0101_C03_027EA", "S0101_C03_027M", "S0101_C03_027MA", "S0101_C03_028E", "S0101_C03_028EA", "S0101_C03_028M", "S0101_C03_028MA", "S0101_C03_029E", "S0101_C03_029EA", "S0101_C03_029M", "S0101_C03_029MA", "S0101_C03_030E", "S0101_C03_030EA", "S0101_C03_030M", "S0101_C03_030MA", "S0101_C03_031E", "S0101_C03_031EA", "S0101_C03_031M", "S0101_C03_031MA", "S0101_C03_032E", "S0101_C03_032EA", "S0101_C03_032M", "S0101_C03_032MA", "S0101_C03_033E", "S0101_C03_033EA", "S0101_C03_033M", "S0101_C03_033MA", "S0101_C03_034E", "S0101_C03_034EA", "S0101_C03_034M", "S0101_C03_034MA", "S0101_C03_035E", "S0101_C03_035EA", "S0101_C03_035M", "S0101_C03_035MA", "S0101_C03_036E", "S0101_C03_036EA", "S0101_C03_036M", "S0101_C03_036MA", "S0101_C03_037E", "S0101_C03_037EA", "S0101_C03_037M", "S0101_C03_037MA", "S0101_C03_038E", "S0101_C03_038EA", "S0101_C03_038M", "S0101_C03_038MA", "S0101_C04_001E", "S0101_C04_001EA", "S0101_C04_001M", "S0101_C04_001MA", "S0101_C04_002E", "S0101_C04_002EA", "S0101_C04_002M", "S0101_C04_002MA", "S0101_C04_003E", "S0101_C04_003EA", "S0101_C04_003M", "S0101_C04_003MA", "S0101_C04_004E", "S0101_C04_004EA", "S0101_C04_004M", "S0101_C04_004MA", "S0101_C04_005E", "S0101_C04_005EA", "S0101_C04_005M", "S0101_C04_005MA", "S0101_C04_006E", "S0101_C04_006EA", "S0101_C04_006M", "S0101_C04_006MA", "S0101_C04_007E", "S0101_C04_007EA", "S0101_C04_007M", "S0101_C04_007MA", "S0101_C04_008E", "S0101_C04_008EA", "S0101_C04_008M", "S0101_C04_008MA", "S0101_C04_009E", "S0101_C04_009EA", "S0101_C04_009M", "S0101_C04_009MA", "S0101_C04_010E", "S0101_C04_010EA", "S0101_C04_010M", "S0101_C04_010MA", "S0101_C04_011E", "S0101_C04_011EA", "S0101_C04_011M", "S0101_C04_011MA", "S0101_C04_012E", "S0101_C04_012EA", "S0101_C04_012M", "S0101_C04_012MA", "S0101_C04_013E", "S0101_C04_013EA", "S0101_C04_013M", "S0101_C04_013MA", "S0101_C04_014E", "S0101_C04_014EA", "S0101_C04_014M", "S0101_C04_014MA", "S0101_C04_015E", "S0101_C04_015EA", "S0101_C04_015M", "S0101_C04_015MA", "S0101_C04_016E", "S0101_C04_016EA", "S0101_C04_016M", "S0101_C04_016MA", "S0101_C04_017E", "S0101_C04_017EA", "S0101_C04_017M", "S0101_C04_017MA", "S0101_C04_018E", "S0101_C04_018EA", "S0101_C04_018M", "S0101_C04_018MA", "S0101_C04_019E", "S0101_C04_019EA", "S0101_C04_019M", "S0101_C04_019MA", "S0101_C04_020E", "S0101_C04_020EA", "S0101_C04_020M", "S0101_C04_020MA", "S0101_C04_021E", "S0101_C04_021EA", "S0101_C04_021M", "S0101_C04_021MA", "S0101_C04_022E", "S0101_C04_022EA", "S0101_C04_022M", "S0101_C04_022MA", "S0101_C04_023E", "S0101_C04_023EA", "S0101_C04_023M", "S0101_C04_023MA", "S0101_C04_024E", "S0101_C04_024EA", "S0101_C04_024M", "S0101_C04_024MA", "S0101_C04_025E", "S0101_C04_025EA", "S0101_C04_025M", "S0101_C04_025MA", "S0101_C04_026E", "S0101_C04_026EA", "S0101_C04_026M", "S0101_C04_026MA", "S0101_C04_027E", "S0101_C04_027EA", "S0101_C04_027M", "S0101_C04_027MA", "S0101_C04_028E", "S0101_C04_028EA", "S0101_C04_028M", "S0101_C04_028MA", "S0101_C04_029E", "S0101_C04_029EA", "S0101_C04_029M", "S0101_C04_029MA", "S0101_C04_030E", "S0101_C04_030EA", "S0101_C04_030M", "S0101_C04_030MA", "S0101_C04_031E", "S0101_C04_031EA", "S0101_C04_031M", "S0101_C04_031MA", "S0101_C04_032E", "S0101_C04_032EA", "S0101_C04_032M", "S0101_C04_032MA", "S0101_C04_033E", "S0101_C04_033EA", "S0101_C04_033M", "S0101_C04_033MA", "S0101_C04_034E", "S0101_C04_034EA", "S0101_C04_034M", "S0101_C04_034MA", "S0101_C04_035E", "S0101_C04_035EA", "S0101_C04_035M", "S0101_C04_035MA", "S0101_C04_036E", "S0101_C04_036EA", "S0101_C04_036M", "S0101_C04_036MA", "S0101_C04_037E", "S0101_C04_037EA", "S0101_C04_037M", "S0101_C04_037MA", "S0101_C04_038E", "S0101_C04_038EA", "S0101_C04_038M", "S0101_C04_038MA", "S0101_C05_001E", "S0101_C05_001EA", "S0101_C05_001M", "S0101_C05_001MA", "S0101_C05_002E", "S0101_C05_002EA", "S0101_C05_002M", "S0101_C05_002MA", "S0101_C05_003E", "S0101_C05_003EA", "S0101_C05_003M", "S0101_C05_003MA", "S0101_C05_004E", "S0101_C05_004EA", "S0101_C05_004M", "S0101_C05_004MA", "S0101_C05_005E", "S0101_C05_005EA", "S0101_C05_005M", "S0101_C05_005MA", "S0101_C05_006E", "S0101_C05_006EA", "S0101_C05_006M", "S0101_C05_006MA", "S0101_C05_007E", "S0101_C05_007EA", "S0101_C05_007M", "S0101_C05_007MA", "S0101_C05_008E", "S0101_C05_008EA", "S0101_C05_008M", "S0101_C05_008MA", "S0101_C05_009E", "S0101_C05_009EA", "S0101_C05_009M", "S0101_C05_009MA", "S0101_C05_010E", "S0101_C05_010EA", "S0101_C05_010M", "S0101_C05_010MA", "S0101_C05_011E", "S0101_C05_011EA", "S0101_C05_011M", "S0101_C05_011MA", "S0101_C05_012E", "S0101_C05_012EA", "S0101_C05_012M", "S0101_C05_012MA", "S0101_C05_013E", "S0101_C05_013EA", "S0101_C05_013M", "S0101_C05_013MA", "S0101_C05_014E", "S0101_C05_014EA", "S0101_C05_014M", "S0101_C05_014MA", "S0101_C05_015E", "S0101_C05_015EA", "S0101_C05_015M", "S0101_C05_015MA", "S0101_C05_016E", "S0101_C05_016EA", "S0101_C05_016M", "S0101_C05_016MA", "S0101_C05_017E", "S0101_C05_017EA", "S0101_C05_017M", "S0101_C05_017MA", "S0101_C05_018E", "S0101_C05_018EA", "S0101_C05_018M", "S0101_C05_018MA", "S0101_C05_019E", "S0101_C05_019EA", "S0101_C05_019M", "S0101_C05_019MA", "S0101_C05_020E", "S0101_C05_020EA", "S0101_C05_020M", "S0101_C05_020MA", "S0101_C05_021E", "S0101_C05_021EA", "S0101_C05_021M", "S0101_C05_021MA", "S0101_C05_022E", "S0101_C05_022EA", "S0101_C05_022M", "S0101_C05_022MA", "S0101_C05_023E", "S0101_C05_023EA", "S0101_C05_023M", "S0101_C05_023MA", "S0101_C05_024E", "S0101_C05_024EA", "S0101_C05_024M", "S0101_C05_024MA", "S0101_C05_025E", "S0101_C05_025EA", "S0101_C05_025M", "S0101_C05_025MA", "S0101_C05_026E", "S0101_C05_026EA", "S0101_C05_026M", "S0101_C05_026MA", "S0101_C05_027E", "S0101_C05_027EA", "S0101_C05_027M", "S0101_C05_027MA", "S0101_C05_028E", "S0101_C05_028EA", "S0101_C05_028M", "S0101_C05_028MA", "S0101_C05_029E", "S0101_C05_029EA", "S0101_C05_029M", "S0101_C05_029MA", "S0101_C05_030E", "S0101_C05_030EA", "S0101_C05_030M", "S0101_C05_030MA", "S0101_C05_031E", "S0101_C05_031EA", "S0101_C05_031M", "S0101_C05_031MA", "S0101_C05_032E", "S0101_C05_032EA", "S0101_C05_032M", "S0101_C05_032MA", "S0101_C05_033E", "S0101_C05_033EA", "S0101_C05_033M", "S0101_C05_033MA", "S0101_C05_034E", "S0101_C05_034EA", "S0101_C05_034M", "S0101_C05_034MA", "S0101_C05_035E", "S0101_C05_035EA", "S0101_C05_035M", "S0101_C05_035MA", "S0101_C05_036E", "S0101_C05_036EA", "S0101_C05_036M", "S0101_C05_036MA", "S0101_C05_037E", "S0101_C05_037EA", "S0101_C05_037M", "S0101_C05_037MA", "S0101_C05_038E", "S0101_C05_038EA", "S0101_C05_038M", "S0101_C05_038MA", "S0101_C06_001E", "S0101_C06_001EA", "S0101_C06_001M", "S0101_C06_001MA", "S0101_C06_002E", "S0101_C06_002EA", "S0101_C06_002M", "S0101_C06_002MA", "S0101_C06_003E", "S0101_C06_003EA", "S0101_C06_003M", "S0101_C06_003MA", "S0101_C06_004E", "S0101_C06_004EA", "S0101_C06_004M", "S0101_C06_004MA", "S0101_C06_005E", "S0101_C06_005EA", "S0101_C06_005M", "S0101_C06_005MA", "S0101_C06_006E", "S0101_C06_006EA", "S0101_C06_006M", "S0101_C06_006MA", "S0101_C06_007E", "S0101_C06_007EA", "S0101_C06_007M", "S0101_C06_007MA", "S0101_C06_008E", "S0101_C06_008EA", "S0101_C06_008M", "S0101_C06_008MA", "S0101_C06_009E", "S0101_C06_009EA", "S0101_C06_009M", "S0101_C06_009MA", "S0101_C06_010E", "S0101_C06_010EA", "S0101_C06_010M", "S0101_C06_010MA", "S0101_C06_011E", "S0101_C06_011EA", "S0101_C06_011M", "S0101_C06_011MA", "S0101_C06_012E", "S0101_C06_012EA", "S0101_C06_012M", "S0101_C06_012MA", "S0101_C06_013E", "S0101_C06_013EA", "S0101_C06_013M", "S0101_C06_013MA", "S0101_C06_014E", "S0101_C06_014EA", "S0101_C06_014M", "S0101_C06_014MA", "S0101_C06_015E", "S0101_C06_015EA", "S0101_C06_015M", "S0101_C06_015MA", "S0101_C06_016E", "S0101_C06_016EA", "S0101_C06_016M", "S0101_C06_016MA", "S0101_C06_017E", "S0101_C06_017EA", "S0101_C06_017M", "S0101_C06_017MA", "S0101_C06_018E", "S0101_C06_018EA", "S0101_C06_018M", "S0101_C06_018MA", "S0101_C06_019E", "S0101_C06_019EA", "S0101_C06_019M", "S0101_C06_019MA", "S0101_C06_020E", "S0101_C06_020EA", "S0101_C06_020M", "S0101_C06_020MA", "S0101_C06_021E", "S0101_C06_021EA", "S0101_C06_021M", "S0101_C06_021MA", "S0101_C06_022E", "S0101_C06_022EA", "S0101_C06_022M", "S0101_C06_022MA", "S0101_C06_023E", "S0101_C06_023EA", "S0101_C06_023M", "S0101_C06_023MA", "S0101_C06_024E", "S0101_C06_024EA", "S0101_C06_024M", "S0101_C06_024MA", "S0101_C06_025E", "S0101_C06_025EA", "S0101_C06_025M", "S0101_C06_025MA", "S0101_C06_026E", "S0101_C06_026EA", "S0101_C06_026M", "S0101_C06_026MA", "S0101_C06_027E", "S0101_C06_027EA", "S0101_C06_027M", "S0101_C06_027MA", "S0101_C06_028E", "S0101_C06_028EA", "S0101_C06_028M", "S0101_C06_028MA", "S0101_C06_029E", "S0101_C06_029EA", "S0101_C06_029M", "S0101_C06_029MA", "S0101_C06_030E", "S0101_C06_030EA", "S0101_C06_030M", "S0101_C06_030MA", "S0101_C06_031E", "S0101_C06_031EA", "S0101_C06_031M", "S0101_C06_031MA", "S0101_C06_032E", "S0101_C06_032EA", "S0101_C06_032M", "S0101_C06_032MA", "S0101_C06_033E", "S0101_C06_033EA", "S0101_C06_033M", "S0101_C06_033MA", "S0101_C06_034E", "S0101_C06_034EA", "S0101_C06_034M", "S0101_C06_034MA", "S0101_C06_035E", "S0101_C06_035EA", "S0101_C06_035M", "S0101_C06_035MA", "S0101_C06_036E", "S0101_C06_036EA", "S0101_C06_036M", "S0101_C06_036MA", "S0101_C06_037E", "S0101_C06_037EA", "S0101_C06_037M", "S0101_C06_037MA", "S0101_C06_038E", "S0101_C06_038EA", "S0101_C06_038M", "S0101_C06_038MA", "state"], ["0400000US01", "Alabama", "5157699", null, "-555555555", "*****", "285758", null, "3966", null, "312813", null, "8424", null, "328997", null, "8785", null, "358378", null, "6567", null, "331692", null, "6267", null, "316960", null, "5418", null, "338387", null, "6155", null, "330906", null, "9319", null, "327479", null, "10546", null, "304452", null, "4626", null, "318895", null, "5230", null, "309735", null, "6533", null, "338081", null, "7081", null, "308640", null, "6572", null, "253332", null, "6246", null, "187477", null, "4844", null, "113066", null, "4794", null, "92651", null, "4346", null, "641810", null, "5338", null, "204635", null, "4148", null, "1132203", null, "2477", null, "485435", null, "6891", null, "2003802", null, "6898", null, "4160138", null, "4725", null, "4025496", null, "2477", null, "3796788", null, "7924", null, "1293247", null, "6922", null, "1161521", null, "7436", null, "955166", null, "3252", null, "393194", null, "2591", null, "39.6", null, "0.2", null, "93.4", null, "0.3", null, "68.0", null, "0.2", null, "31.1", null, "0.1", null, "36.9", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.1", null, "6.1", null, "0.2", null, "6.4", null, "0.2", null, "6.9", null, "0.1", null, "6.4", null, "0.1", null, "6.1", null, "0.1", null, "6.6", null, "0.1", null, "6.4", null, "0.2", null, "6.3", null, "0.2", null, "5.9", null, "0.1", null, "6.2", null, "0.1", null, "6.0", null, "0.1", null, "6.6", null, "0.1", null, "6.0", null, "0.1", null, "4.9", null, "0.1", null, "3.6", null, "0.1", null, "2.2", null, "0.1", null, "1.8", null, "0.1", null, "12.4", null, "0.1", null, "4.0", null, "0.1", null, "22.0", null, "0.1", null, "9.4", null, "0.1", null, "38.9", null, "0.1", null, "80.7", null, "0.1", null, "78.0", null, "0.1", null, "73.6", null, "0.2", null, "25.1", null, "0.1", null, "22.5", null, "0.1", null, "18.5", null, "0.1", null, "7.6", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.1", null, "-888888888.0", "(X)", "2490551", null, "4590", null, "141881", null, "3118", null, "161224", null, "5521", null, "164873", null, "6384", null, "177445", null, "4979", null, "167010", null, "4128", null, "157413", null, "4008", null, "166602", null, "4336", null, "163977", null, "7097", null, "155700", null, "7028", null, "145897", null, "3348", null, "156919", null, "4235", null, "149999", null, "4522", null, "161278", null, "4569", null, "142859", null, "4392", null, "114607", null, "3997", null, "78623", null, "2751", null, "50666", null, "2407", null, "33578", null, "2684", null, "326097", null, "3739", null, "103995", null, "3390", null, "571973", null, "5403", null, "240460", null, "4132", null, "988147", null, "5372", null, "1986097", null, "4322", null, "1918578", null, "3569", null, "1807842", null, "5473", null, "581611", null, "4325", null, "517351", null, "4971", null, "420333", null, "2217", null, "162867", null, "1529", null, "38.4", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.7", null, "0.1", null, "6.5", null, "0.2", null, "6.6", null, "0.3", null, "7.1", null, "0.2", null, "6.7", null, "0.2", null, "6.3", null, "0.2", null, "6.7", null, "0.2", null, "6.6", null, "0.3", null, "6.3", null, "0.3", null, "5.9", null, "0.1", null, "6.3", null, "0.2", null, "6.0", null, "0.2", null, "6.5", null, "0.2", null, "5.7", null, "0.2", null, "4.6", null, "0.2", null, "3.2", null, "0.1", null, "2.0", null, "0.1", null, "1.3", null, "0.1", null, "13.1", null, "0.1", null, "4.2", null, "0.1", null, "23.0", null, "0.2", null, "9.7", null, "0.2", null, "39.7", null, "0.2", null, "79.7", null, "0.2", null, "77.0", null, "0.2", null, "72.6", null, "0.2", null, "23.4", null, "0.2", null, "20.8", null, "0.2", null, "16.9", null, "0.1", null, "6.5", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "2667148", null, "4590", null, "143877", null, "3807", null, "151589", null, "6266", null, "164124", null, "5898", null, "180933", null, "5127", null, "164682", null, "4672", null, "159547", null, "3916", null, "171785", null, "3858", null, "166929", null, "5741", null, "171779", null, "6693", null, "158555", null, "3239", null, "161976", null, "2792", null, "159736", null, "4713", null, "176803", null, "5320", null, "165781", null, "4626", null, "138725", null, "4635", null, "108854", null, "4203", null, "62400", null, "3881", null, "59073", null, "3110", null, "315713", null, "4095", null, "100640", null, "3503", null, "560230", null, "4911", null, "244975", null, "4984", null, "1015655", null, "5105", null, "2174041", null, "4332", null, "2106918", null, "2809", null, "1988946", null, "5828", null, "711636", null, "5431", null, "644170", null, "4967", null, "534833", null, "2331", null, "230327", null, "2088", null, "40.8", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.1", null, "5.7", null, "0.2", null, "6.2", null, "0.2", null, "6.8", null, "0.2", null, "6.2", null, "0.2", null, "6.0", null, "0.1", null, "6.4", null, "0.1", null, "6.3", null, "0.2", null, "6.4", null, "0.3", null, "5.9", null, "0.1", null, "6.1", null, "0.1", null, "6.0", null, "0.2", null, "6.6", null, "0.2", null, "6.2", null, "0.2", null, "5.2", null, "0.2", null, "4.1", null, "0.2", null, "2.3", null, "0.1", null, "2.2", null, "0.1", null, "11.8", null, "0.1", null, "3.8", null, "0.1", null, "21.0", null, "0.2", null, "9.2", null, "0.2", null, "38.1", null, "0.2", null, "81.5", null, "0.2", null, "79.0", null, "0.2", null, "74.6", null, "0.2", null, "26.7", null, "0.2", null, "24.2", null, "0.2", null, "20.1", null, "0.1", null, "8.6", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "01"], ["0400000US02", "Alaska", "740133", null, "-555555555", "*****", "44922", null, "1672", null, "46547", null, "2971", null, "53079", null, "3110", null, "47163", null, "2256", null, "50498", null, "2169", null, "53084", null, "2022", null, "60227", null, "2516", null, "58570", null, "2742", null, "49628", null, "2945", null, "43637", null, "2269", null, "38983", null, "1429", null, "36095", null, "2606", null, "48285", null, "2690", null, "37683", null, "2228", null, "32900", null, "2348", null, "20507", null, "1778", null, "9975", null, "1442", null, "8350", null, "1574", null, "99626", null, "1635", null, "29650", null, "1234", null, "174198", null, "835", null, "68011", null, "2504", null, "319170", null, "2542", null, "586083", null, "1667", null, "565935", null, "835", null, "539862", null, "2238", null, "157700", null, "2949", null, "138571", null, "2670", null, "109415", null, "1468", null, "38832", null, "1207", null, "36.3", null, "0.3", null, "111.6", null, "1.6", null, "62.1", null, "0.6", null, "24.0", null, "0.4", null, "38.2", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.1", null, "0.2", null, "6.3", null, "0.4", null, "7.2", null, "0.4", null, "6.4", null, "0.3", null, "6.8", null, "0.3", null, "7.2", null, "0.3", null, "8.1", null, "0.3", null, "7.9", null, "0.4", null, "6.7", null, "0.4", null, "5.9", null, "0.3", null, "5.3", null, "0.2", null, "4.9", null, "0.4", null, "6.5", null, "0.4", null, "5.1", null, "0.3", null, "4.4", null, "0.3", null, "2.8", null, "0.2", null, "1.3", null, "0.2", null, "1.1", null, "0.2", null, "13.5", null, "0.2", null, "4.0", null, "0.2", null, "23.5", null, "0.1", null, "9.2", null, "0.3", null, "43.1", null, "0.3", null, "79.2", null, "0.2", null, "76.5", null, "0.1", null, "72.9", null, "0.3", null, "21.3", null, "0.4", null, "18.7", null, "0.4", null, "14.8", null, "0.2", null, "5.2", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.3", null, "-888888888.0", "(X)", "2.1", null, "-888888888.0", "(X)", "390301", null, "2584", null, "23437", null, "1572", null, "22605", null, "1865", null, "27855", null, "2019", null, "25912", null, "1798", null, "29529", null, "1640", null, "28734", null, "1368", null, "31037", null, "1404", null, "30878", null, "1946", null, "26926", null, "2193", null, "23528", null, "1562", null, "20445", null, "1057", null, "19161", null, "1797", null, "25179", null, "1747", null, "19751", null, "1723", null, "16459", null, "1490", null, "10296", null, "1287", null, "5012", null, "1024", null, "3557", null, "1000", null, "50460", null, "1340", null, "15902", null, "1219", null, "89799", null, "2118", null, "39539", null, "1782", null, "173016", null, "1917", null, "311354", null, "1916", null, "300502", null, "1501", null, "285253", null, "2245", null, "80254", null, "1999", null, "70709", null, "2046", null, "55075", null, "1264", null, "18865", null, "802", null, "35.9", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.0", null, "0.4", null, "5.8", null, "0.5", null, "7.1", null, "0.5", null, "6.6", null, "0.5", null, "7.6", null, "0.4", null, "7.4", null, "0.3", null, "8.0", null, "0.4", null, "7.9", null, "0.5", null, "6.9", null, "0.6", null, "6.0", null, "0.4", null, "5.2", null, "0.3", null, "4.9", null, "0.5", null, "6.5", null, "0.5", null, "5.1", null, "0.4", null, "4.2", null, "0.4", null, "2.6", null, "0.3", null, "1.3", null, "0.3", null, "0.9", null, "0.3", null, "12.9", null, "0.3", null, "4.1", null, "0.3", null, "23.0", null, "0.4", null, "10.1", null, "0.5", null, "44.3", null, "0.5", null, "79.8", null, "0.5", null, "77.0", null, "0.4", null, "73.1", null, "0.5", null, "20.6", null, "0.5", null, "18.1", null, "0.5", null, "14.1", null, "0.3", null, "4.8", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "349832", null, "2584", null, "21485", null, "1819", null, "23942", null, "1942", null, "25224", null, "1996", null, "21251", null, "1487", null, "20969", null, "1679", null, "24350", null, "1543", null, "29190", null, "1694", null, "27692", null, "1710", null, "22702", null, "1845", null, "20109", null, "1386", null, "18538", null, "795", null, "16934", null, "1411", null, "23106", null, "1583", null, "17932", null, "1437", null, "16441", null, "1568", null, "10211", null, "1075", null, "4963", null, "964", null, "4793", null, "832", null, "49166", null, "1085", null, "13748", null, "1154", null, "84399", null, "2134", null, "28472", null, "1733", null, "146154", null, "2151", null, "274729", null, "1624", null, "265433", null, "1282", null, "254609", null, "1554", null, "77446", null, "1837", null, "67862", null, "1765", null, "54340", null, "1161", null, "19967", null, "783", null, "36.6", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.1", null, "0.5", null, "6.8", null, "0.6", null, "7.2", null, "0.6", null, "6.1", null, "0.4", null, "6.0", null, "0.5", null, "7.0", null, "0.4", null, "8.3", null, "0.5", null, "7.9", null, "0.5", null, "6.5", null, "0.5", null, "5.7", null, "0.4", null, "5.3", null, "0.2", null, "4.8", null, "0.4", null, "6.6", null, "0.5", null, "5.1", null, "0.4", null, "4.7", null, "0.4", null, "2.9", null, "0.3", null, "1.4", null, "0.3", null, "1.4", null, "0.2", null, "14.1", null, "0.3", null, "3.9", null, "0.3", null, "24.1", null, "0.5", null, "8.1", null, "0.5", null, "41.8", null, "0.5", null, "78.5", null, "0.5", null, "75.9", null, "0.5", null, "72.8", null, "0.5", null, "22.1", null, "0.5", null, "19.4", null, "0.5", null, "15.5", null, "0.3", null, "5.7", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "02"], ["0400000US04", "Arizona", "7582384", null, "-555555555", "*****", "393963", null, "1266", null, "415119", null, "8605", null, "477222", null, "8342", null, "506259", null, "4238", null, "520068", null, "4103", null, "519901", null, "3136", null, "527833", null, "3005", null, "494476", null, "11923", null, "486580", null, "11509", null, "433176", null, "2905", null, "435880", null, "2651", null, "409768", null, "8864", null, "470981", null, "9256", null, "446202", null, "8944", null, "380096", null, "9408", null, "326064", null, "8237", null, "199277", null, "7420", null, "139519", null, "6529", null, "892341", null, "1871", null, "299447", null, "1746", null, "1585751", null, "1135", null, "726880", null, "3555", null, "3055117", null, "3809", null, "6193806", null, "5131", null, "5996633", null, "1135", null, "5682695", null, "7266", null, "1962139", null, "9077", null, "1775958", null, "8929", null, "1491158", null, "2097", null, "664860", null, "2126", null, "39.4", null, "0.1", null, "99.6", null, "0.2", null, "68.3", null, "0.1", null, "33.1", null, "0.1", null, "35.2", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.1", null, "5.5", null, "0.1", null, "6.3", null, "0.1", null, "6.7", null, "0.1", null, "6.9", null, "0.1", null, "6.9", null, "0.1", null, "7.0", null, "0.1", null, "6.5", null, "0.2", null, "6.4", null, "0.2", null, "5.7", null, "0.1", null, "5.7", null, "0.1", null, "5.4", null, "0.1", null, "6.2", null, "0.1", null, "5.9", null, "0.1", null, "5.0", null, "0.1", null, "4.3", null, "0.1", null, "2.6", null, "0.1", null, "1.8", null, "0.1", null, "11.8", null, "0.1", null, "3.9", null, "0.1", null, "20.9", null, "0.1", null, "9.6", null, "0.1", null, "40.3", null, "0.1", null, "81.7", null, "0.1", null, "79.1", null, "0.1", null, "74.9", null, "0.1", null, "25.9", null, "0.1", null, "23.4", null, "0.1", null, "19.7", null, "0.1", null, "8.8", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.5", null, "-888888888.0", "(X)", "3782883", null, "3295", null, "200775", null, "1483", null, "207831", null, "6969", null, "246928", null, "6990", null, "261131", null, "3344", null, "269458", null, "3317", null, "269134", null, "2351", null, "272512", null, "2399", null, "258707", null, "8331", null, "245202", null, "7611", null, "217568", null, "2055", null, "216536", null, "1734", null, "197287", null, "7005", null, "230703", null, "7048", null, "210040", null, "5522", null, "175356", null, "5719", null, "152268", null, "5150", null, "92759", null, "4514", null, "58688", null, "3266", null, "454759", null, "1570", null, "153345", null, "2196", null, "808879", null, "3108", null, "377244", null, "2957", null, "1576144", null, "3387", null, "3073614", null, "4684", null, "2974004", null, "1995", null, "2810215", null, "5576", null, "919814", null, "7246", null, "830956", null, "5783", null, "689111", null, "1370", null, "303715", null, "1406", null, "38.2", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.3", null, "0.1", null, "5.5", null, "0.2", null, "6.5", null, "0.2", null, "6.9", null, "0.1", null, "7.1", null, "0.1", null, "7.1", null, "0.1", null, "7.2", null, "0.1", null, "6.8", null, "0.2", null, "6.5", null, "0.2", null, "5.8", null, "0.1", null, "5.7", null, "0.1", null, "5.2", null, "0.2", null, "6.1", null, "0.2", null, "5.6", null, "0.1", null, "4.6", null, "0.2", null, "4.0", null, "0.1", null, "2.5", null, "0.1", null, "1.6", null, "0.1", null, "12.0", null, "0.1", null, "4.1", null, "0.1", null, "21.4", null, "0.1", null, "10.0", null, "0.1", null, "41.7", null, "0.1", null, "81.3", null, "0.1", null, "78.6", null, "0.1", null, "74.3", null, "0.2", null, "24.3", null, "0.2", null, "22.0", null, "0.2", null, "18.2", null, "0.1", null, "8.0", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "3799501", null, "3295", null, "193188", null, "1449", null, "207288", null, "7334", null, "230294", null, "7428", null, "245128", null, "3541", null, "250610", null, "3011", null, "250767", null, "1722", null, "255321", null, "1749", null, "235769", null, "7156", null, "241378", null, "7252", null, "215608", null, "1878", null, "219344", null, "2059", null, "212481", null, "5637", null, "240278", null, "5933", null, "236162", null, "5735", null, "204740", null, "6032", null, "173796", null, "5069", null, "106518", null, "4662", null, "80831", null, "4611", null, "437582", null, "1546", null, "146102", null, "2274", null, "776872", null, "3024", null, "349636", null, "2128", null, "1478973", null, "3522", null, "3120192", null, "4162", null, "3022629", null, "1604", null, "2872480", null, "5000", null, "1042325", null, "5937", null, "945002", null, "5992", null, "802047", null, "1610", null, "361145", null, "1341", null, "40.6", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.1", null, "0.1", null, "5.5", null, "0.2", null, "6.1", null, "0.2", null, "6.5", null, "0.1", null, "6.6", null, "0.1", null, "6.6", null, "0.1", null, "6.7", null, "0.1", null, "6.2", null, "0.2", null, "6.4", null, "0.2", null, "5.7", null, "0.1", null, "5.8", null, "0.1", null, "5.6", null, "0.1", null, "6.3", null, "0.2", null, "6.2", null, "0.2", null, "5.4", null, "0.2", null, "4.6", null, "0.1", null, "2.8", null, "0.1", null, "2.1", null, "0.1", null, "11.5", null, "0.1", null, "3.8", null, "0.1", null, "20.4", null, "0.1", null, "9.2", null, "0.1", null, "38.9", null, "0.1", null, "82.1", null, "0.1", null, "79.6", null, "0.1", null, "75.6", null, "0.1", null, "27.4", null, "0.2", null, "24.9", null, "0.2", null, "21.1", null, "0.1", null, "9.5", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "04"], ["0400000US05", "Arkansas", "3088354", null, "-555555555", "*****", "176599", null, "3020", null, "194255", null, "6339", null, "200474", null, "7070", null, "213047", null, "5139", null, "205309", null, "5327", null, "192786", null, "4346", null, "197737", null, "4588", null, "201214", null, "7203", null, "204905", null, "6346", null, "182734", null, "3507", null, "184414", null, "4148", null, "172334", null, "5316", null, "199839", null, "5344", null, "174951", null, "4987", null, "152572", null, "5257", null, "113009", null, "3781", null, "68004", null, "3265", null, "54171", null, "3107", null, "394729", null, "3861", null, "126813", null, "2730", null, "698141", null, "2055", null, "291543", null, "5333", null, "1214998", null, "6232", null, "2477205", null, "4547", null, "2390213", null, "2055", null, "2261840", null, "6075", null, "762546", null, "5504", null, "684145", null, "5357", null, "562707", null, "2857", null, "235184", null, "2274", null, "39.1", null, "0.3", null, "96.6", null, "0.6", null, "69.0", null, "0.3", null, "30.8", null, "0.2", null, "38.2", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.7", null, "0.1", null, "6.3", null, "0.2", null, "6.5", null, "0.2", null, "6.9", null, "0.2", null, "6.6", null, "0.2", null, "6.2", null, "0.1", null, "6.4", null, "0.1", null, "6.5", null, "0.2", null, "6.6", null, "0.2", null, "5.9", null, "0.1", null, "6.0", null, "0.1", null, "5.6", null, "0.2", null, "6.5", null, "0.2", null, "5.7", null, "0.2", null, "4.9", null, "0.2", null, "3.7", null, "0.1", null, "2.2", null, "0.1", null, "1.8", null, "0.1", null, "12.8", null, "0.1", null, "4.1", null, "0.1", null, "22.6", null, "0.1", null, "9.4", null, "0.2", null, "39.3", null, "0.2", null, "80.2", null, "0.1", null, "77.4", null, "0.1", null, "73.2", null, "0.2", null, "24.7", null, "0.2", null, "22.2", null, "0.2", null, "18.2", null, "0.1", null, "7.6", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.6", null, "-888888888.0", "(X)", "1517526", null, "4557", null, "89764", null, "2735", null, "97420", null, "5337", null, "104574", null, "5368", null, "108080", null, "4037", null, "103147", null, "3526", null, "99535", null, "2890", null, "99359", null, "2933", null, "99160", null, "5103", null, "103425", null, "4756", null, "89349", null, "2615", null, "89377", null, "2264", null, "85459", null, "3908", null, "95529", null, "3339", null, "81707", null, "3224", null, "71107", null, "3224", null, "49474", null, "2094", null, "30338", null, "2293", null, "20722", null, "1970", null, "201994", null, "3285", null, "64562", null, "2183", null, "356320", null, "4149", null, "146665", null, "3156", null, "612706", null, "4311", null, "1205225", null, "4122", null, "1161206", null, "2752", null, "1096033", null, "4537", null, "348877", null, "3723", null, "313865", null, "3992", null, "253348", null, "2005", null, "100534", null, "1409", null, "37.8", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.9", null, "0.2", null, "6.4", null, "0.4", null, "6.9", null, "0.4", null, "7.1", null, "0.3", null, "6.8", null, "0.2", null, "6.6", null, "0.2", null, "6.5", null, "0.2", null, "6.5", null, "0.3", null, "6.8", null, "0.3", null, "5.9", null, "0.2", null, "5.9", null, "0.2", null, "5.6", null, "0.3", null, "6.3", null, "0.2", null, "5.4", null, "0.2", null, "4.7", null, "0.2", null, "3.3", null, "0.1", null, "2.0", null, "0.2", null, "1.4", null, "0.1", null, "13.3", null, "0.2", null, "4.3", null, "0.1", null, "23.5", null, "0.2", null, "9.7", null, "0.2", null, "40.4", null, "0.3", null, "79.4", null, "0.2", null, "76.5", null, "0.2", null, "72.2", null, "0.3", null, "23.0", null, "0.2", null, "20.7", null, "0.3", null, "16.7", null, "0.1", null, "6.6", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "1570828", null, "4557", null, "86835", null, "2529", null, "96835", null, "4875", null, "95900", null, "5352", null, "104967", null, "4229", null, "102162", null, "3622", null, "93251", null, "2632", null, "98378", null, "3112", null, "102054", null, "4014", null, "101480", null, "3830", null, "93385", null, "2668", null, "95037", null, "3219", null, "86875", null, "3945", null, "104310", null, "3733", null, "93244", null, "3267", null, "81465", null, "3662", null, "63535", null, "3003", null, "37666", null, "2706", null, "33449", null, "2820", null, "192735", null, "3345", null, "62251", null, "2817", null, "341821", null, "3947", null, "144878", null, "3529", null, "602292", null, "4894", null, "1271980", null, "3691", null, "1229007", null, "2392", null, "1165807", null, "4472", null, "413669", null, "4006", null, "370280", null, "3331", null, "309359", null, "2047", null, "134650", null, "1446", null, "40.2", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.2", null, "6.2", null, "0.3", null, "6.1", null, "0.3", null, "6.7", null, "0.3", null, "6.5", null, "0.2", null, "5.9", null, "0.2", null, "6.3", null, "0.2", null, "6.5", null, "0.3", null, "6.5", null, "0.2", null, "5.9", null, "0.2", null, "6.1", null, "0.2", null, "5.5", null, "0.3", null, "6.6", null, "0.2", null, "5.9", null, "0.2", null, "5.2", null, "0.2", null, "4.0", null, "0.2", null, "2.4", null, "0.2", null, "2.1", null, "0.2", null, "12.3", null, "0.2", null, "4.0", null, "0.2", null, "21.8", null, "0.2", null, "9.2", null, "0.2", null, "38.3", null, "0.3", null, "81.0", null, "0.2", null, "78.2", null, "0.2", null, "74.2", null, "0.3", null, "26.3", null, "0.3", null, "23.6", null, "0.2", null, "19.7", null, "0.1", null, "8.6", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "05"], ["0400000US06", "California", "39431263", null, "-555555555", "*****", "2083154", null, "3122", null, "2257499", null, "19874", null, "2500710", null, "20168", null, "2641200", null, "5920", null, "2572905", null, "6376", null, "2706297", null, "5124", null, "3002440", null, "5110", null, "2848870", null, "26242", null, "2753109", null, "26154", null, "2434775", null, "5061", null, "2426685", null, "5182", null, "2325201", null, "21656", null, "2353557", null, "21633", null, "2060536", null, "19730", null, "1691506", null, "19546", null, "1263798", null, "17535", null, "784181", null, "11917", null, "724840", null, "13370", null, "4758209", null, "4513", null, "1569975", null, "2790", null, "8411338", null, "2847", null, "3644130", null, "5026", null, "16524821", null, "6960", null, "32089744", null, "11642", null, "31019925", null, "2847", null, "29426405", null, "12946", null, "8878418", null, "21964", null, "7905281", null, "20821", null, "6524861", null, "3900", null, "2772819", null, "3495", null, "38.4", null, "0.1", null, "99.6", null, "0.1", null, "61.0", null, "0.1", null, "26.6", null, "0.1", null, "34.3", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.3", null, "0.1", null, "5.7", null, "0.1", null, "6.3", null, "0.1", null, "6.7", null, "0.1", null, "6.5", null, "0.1", null, "6.9", null, "0.1", null, "7.6", null, "0.1", null, "7.2", null, "0.1", null, "7.0", null, "0.1", null, "6.2", null, "0.1", null, "6.2", null, "0.1", null, "5.9", null, "0.1", null, "6.0", null, "0.1", null, "5.2", null, "0.1", null, "4.3", null, "0.1", null, "3.2", null, "0.1", null, "2.0", null, "0.1", null, "1.8", null, "0.1", null, "12.1", null, "0.1", null, "4.0", null, "0.1", null, "21.3", null, "0.1", null, "9.2", null, "0.1", null, "41.9", null, "0.1", null, "81.4", null, "0.1", null, "78.7", null, "0.1", null, "74.6", null, "0.1", null, "22.5", null, "0.1", null, "20.0", null, "0.1", null, "16.5", null, "0.1", null, "7.0", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.6", null, "-888888888.0", "(X)", "19675103", null, "6629", null, "1061708", null, "4445", null, "1159051", null, "15168", null, "1279071", null, "15095", null, "1350715", null, "4981", null, "1320991", null, "4887", null, "1377449", null, "3719", null, "1537122", null, "3316", null, "1470860", null, "16371", null, "1402460", null, "16106", null, "1224094", null, "3887", null, "1214417", null, "3220", null, "1156579", null, "15762", null, "1166240", null, "15675", null, "985928", null, "11656", null, "785673", null, "11475", null, "570969", null, "9671", null, "331708", null, "7443", null, "280068", null, "7591", null, "2438122", null, "4142", null, "806056", null, "3010", null, "4305886", null, "6253", null, "1865650", null, "3995", null, "8459597", null, "6318", null, "15918140", null, "9117", null, "15369217", null, "4032", null, "14555493", null, "10726", null, "4120586", null, "15583", null, "3634227", null, "14272", null, "2954346", null, "2630", null, "1182745", null, "2567", null, "37.5", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.1", null, "5.9", null, "0.1", null, "6.5", null, "0.1", null, "6.9", null, "0.1", null, "6.7", null, "0.1", null, "7.0", null, "0.1", null, "7.8", null, "0.1", null, "7.5", null, "0.1", null, "7.1", null, "0.1", null, "6.2", null, "0.1", null, "6.2", null, "0.1", null, "5.9", null, "0.1", null, "5.9", null, "0.1", null, "5.0", null, "0.1", null, "4.0", null, "0.1", null, "2.9", null, "0.1", null, "1.7", null, "0.1", null, "1.4", null, "0.1", null, "12.4", null, "0.1", null, "4.1", null, "0.1", null, "21.9", null, "0.1", null, "9.5", null, "0.1", null, "43.0", null, "0.1", null, "80.9", null, "0.1", null, "78.1", null, "0.1", null, "74.0", null, "0.1", null, "20.9", null, "0.1", null, "18.5", null, "0.1", null, "15.0", null, "0.1", null, "6.0", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "19756160", null, "6629", null, "1021446", null, "3973", null, "1098448", null, "12599", null, "1221639", null, "12508", null, "1290485", null, "3916", null, "1251914", null, "3770", null, "1328848", null, "3235", null, "1465318", null, "3173", null, "1378010", null, "15608", null, "1350649", null, "15859", null, "1210681", null, "3338", null, "1212268", null, "3549", null, "1168622", null, "12692", null, "1187317", null, "12408", null, "1074608", null, "12378", null, "905833", null, "12055", null, "692829", null, "11678", null, "452473", null, "9215", null, "444772", null, "9731", null, "2320087", null, "3020", null, "763919", null, "2622", null, "4105452", null, "5833", null, "1778480", null, "3444", null, "8065224", null, "4990", null, "16171604", null, "8869", null, "15650708", null, "2957", null, "14870912", null, "10513", null, "4757832", null, "12598", null, "4271054", null, "12798", null, "3570515", null, "2421", null, "1590074", null, "1956", null, "39.3", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.1", null, "5.6", null, "0.1", null, "6.2", null, "0.1", null, "6.5", null, "0.1", null, "6.3", null, "0.1", null, "6.7", null, "0.1", null, "7.4", null, "0.1", null, "7.0", null, "0.1", null, "6.8", null, "0.1", null, "6.1", null, "0.1", null, "6.1", null, "0.1", null, "5.9", null, "0.1", null, "6.0", null, "0.1", null, "5.4", null, "0.1", null, "4.6", null, "0.1", null, "3.5", null, "0.1", null, "2.3", null, "0.1", null, "2.3", null, "0.1", null, "11.7", null, "0.1", null, "3.9", null, "0.1", null, "20.8", null, "0.1", null, "9.0", null, "0.1", null, "40.8", null, "0.1", null, "81.9", null, "0.1", null, "79.2", null, "0.1", null, "75.3", null, "0.1", null, "24.1", null, "0.1", null, "21.6", null, "0.1", null, "18.1", null, "0.1", null, "8.0", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "06"], ["0400000US08", "Colorado", "5957494", null, "-555555555", "*****", "306464", null, "2732", null, "323548", null, "7846", null, "352668", null, "8727", null, "376768", null, "4493", null, "393084", null, "4888", null, "446132", null, "3814", null, "497299", null, "4999", null, "458133", null, "10834", null, "434539", null, "10286", null, "366058", null, "4394", null, "352365", null, "3539", null, "311902", null, "8568", null, "358170", null, "8297", null, "319836", null, "7011", null, "270872", null, "6721", null, "189677", null, "5058", null, "107466", null, "4054", null, "92513", null, "4692", null, "676216", null, "3814", null, "224167", null, "3208", null, "1206847", null, "2062", null, "545685", null, "4171", null, "2605955", null, "6179", null, "4901957", null, "5181", null, "4750647", null, "2061", null, "4520433", null, "6979", null, "1338534", null, "8876", null, "1193674", null, "7468", null, "980364", null, "2772", null, "389656", null, "2466", null, "38.0", null, "0.1", null, "102.6", null, "0.3", null, "58.0", null, "0.1", null, "26.0", null, "0.1", null, "32.0", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.1", null, "0.1", null, "5.4", null, "0.1", null, "5.9", null, "0.1", null, "6.3", null, "0.1", null, "6.6", null, "0.1", null, "7.5", null, "0.1", null, "8.3", null, "0.1", null, "7.7", null, "0.2", null, "7.3", null, "0.2", null, "6.1", null, "0.1", null, "5.9", null, "0.1", null, "5.2", null, "0.1", null, "6.0", null, "0.1", null, "5.4", null, "0.1", null, "4.5", null, "0.1", null, "3.2", null, "0.1", null, "1.8", null, "0.1", null, "1.6", null, "0.1", null, "11.4", null, "0.1", null, "3.8", null, "0.1", null, "20.3", null, "0.1", null, "9.2", null, "0.1", null, "43.7", null, "0.1", null, "82.3", null, "0.1", null, "79.7", null, "0.1", null, "75.9", null, "0.1", null, "22.5", null, "0.1", null, "20.0", null, "0.1", null, "16.5", null, "0.1", null, "6.5", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.4", null, "-888888888.0", "(X)", "3016719", null, "3954", null, "156618", null, "2651", null, "167233", null, "5772", null, "180097", null, "6538", null, "199363", null, "3343", null, "202948", null, "3632", null, "229964", null, "3123", null, "261223", null, "3384", null, "233520", null, "7220", null, "231340", null, "6738", null, "187517", null, "2748", null, "182820", null, "2938", null, "155116", null, "5795", null, "173672", null, "5446", null, "150925", null, "4126", null, "132839", null, "3890", null, "86461", null, "3189", null, "48395", null, "2303", null, "36668", null, "2447", null, "347330", null, "3219", null, "117606", null, "3046", null, "621554", null, "3604", null, "284705", null, "3064", null, "1358358", null, "4931", null, "2474389", null, "4402", null, "2395165", null, "2554", null, "2275893", null, "5140", null, "628960", null, "5710", null, "557632", null, "5021", null, "455288", null, "2037", null, "171524", null, "1624", null, "37.3", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.1", null, "5.5", null, "0.2", null, "6.0", null, "0.2", null, "6.6", null, "0.1", null, "6.7", null, "0.1", null, "7.6", null, "0.1", null, "8.7", null, "0.1", null, "7.7", null, "0.2", null, "7.7", null, "0.2", null, "6.2", null, "0.1", null, "6.1", null, "0.1", null, "5.1", null, "0.2", null, "5.8", null, "0.2", null, "5.0", null, "0.1", null, "4.4", null, "0.1", null, "2.9", null, "0.1", null, "1.6", null, "0.1", null, "1.2", null, "0.1", null, "11.5", null, "0.1", null, "3.9", null, "0.1", null, "20.6", null, "0.1", null, "9.4", null, "0.1", null, "45.0", null, "0.2", null, "82.0", null, "0.1", null, "79.4", null, "0.1", null, "75.4", null, "0.2", null, "20.8", null, "0.2", null, "18.5", null, "0.2", null, "15.1", null, "0.1", null, "5.7", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "2940775", null, "3953", null, "149846", null, "2657", null, "156315", null, "7051", null, "172571", null, "7055", null, "177405", null, "3759", null, "190136", null, "3321", null, "216168", null, "2904", null, "236076", null, "3163", null, "224613", null, "6576", null, "203199", null, "6413", null, "178541", null, "2936", null, "169545", null, "2146", null, "156786", null, "4921", null, "184498", null, "4943", null, "168911", null, "4320", null, "138033", null, "4610", null, "103216", null, "3509", null, "59071", null, "3320", null, "55845", null, "3348", null, "328886", null, "2602", null, "106561", null, "2496", null, "585293", null, "3775", null, "260980", null, "3125", null, "1247597", null, "4006", null, "2427568", null, "3557", null, "2355482", null, "2126", null, "2244540", null, "5191", null, "709574", null, "5559", null, "636042", null, "5370", null, "525076", null, "2021", null, "218132", null, "1480", null, "38.8", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.1", null, "0.1", null, "5.3", null, "0.2", null, "5.9", null, "0.2", null, "6.0", null, "0.1", null, "6.5", null, "0.1", null, "7.4", null, "0.1", null, "8.0", null, "0.1", null, "7.6", null, "0.2", null, "6.9", null, "0.2", null, "6.1", null, "0.1", null, "5.8", null, "0.1", null, "5.3", null, "0.2", null, "6.3", null, "0.2", null, "5.7", null, "0.1", null, "4.7", null, "0.2", null, "3.5", null, "0.1", null, "2.0", null, "0.1", null, "1.9", null, "0.1", null, "11.2", null, "0.1", null, "3.6", null, "0.1", null, "19.9", null, "0.1", null, "8.9", null, "0.1", null, "42.4", null, "0.1", null, "82.5", null, "0.1", null, "80.1", null, "0.1", null, "76.3", null, "0.2", null, "24.1", null, "0.2", null, "21.6", null, "0.2", null, "17.9", null, "0.1", null, "7.4", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "08"], ["0400000US09", "Connecticut", "3675069", null, "-555555555", "*****", "179896", null, "1906", null, "196526", null, "5925", null, "211069", null, "5694", null, "241497", null, "3310", null, "240070", null, "3904", null, "229686", null, "2942", null, "238518", null, "2526", null, "243982", null, "6437", null, "235570", null, "6262", null, "215153", null, "2006", null, "225311", null, "1483", null, "246162", null, "5859", null, "258292", null, "6231", null, "227182", null, "5423", null, "179587", null, "5384", null, "133586", null, "4868", null, "86856", null, "3737", null, "86126", null, "4166", null, "407595", null, "2126", null, "139729", null, "1350", null, "727220", null, "666", null, "341838", null, "2873", null, "1429323", null, "2807", null, "3042260", null, "4188", null, "2947849", null, "666", null, "2797790", null, "5255", null, "971629", null, "5969", null, "868125", null, "5751", null, "713337", null, "2180", null, "306568", null, "2251", null, "41.2", null, "0.2", null, "96.5", null, "0.3", null, "64.5", null, "0.2", null, "31.9", null, "0.1", null, "32.5", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.9", null, "0.1", null, "5.3", null, "0.2", null, "5.7", null, "0.2", null, "6.6", null, "0.1", null, "6.5", null, "0.1", null, "6.2", null, "0.1", null, "6.5", null, "0.1", null, "6.6", null, "0.2", null, "6.4", null, "0.2", null, "5.9", null, "0.1", null, "6.1", null, "0.1", null, "6.7", null, "0.2", null, "7.0", null, "0.2", null, "6.2", null, "0.1", null, "4.9", null, "0.1", null, "3.6", null, "0.1", null, "2.4", null, "0.1", null, "2.3", null, "0.1", null, "11.1", null, "0.1", null, "3.8", null, "0.1", null, "19.8", null, "0.1", null, "9.3", null, "0.1", null, "38.9", null, "0.1", null, "82.8", null, "0.1", null, "80.2", null, "0.1", null, "76.1", null, "0.1", null, "26.4", null, "0.2", null, "23.6", null, "0.2", null, "19.4", null, "0.1", null, "8.3", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.2", null, "-888888888.0", "(X)", "1804896", null, "3097", null, "93454", null, "1616", null, "102579", null, "4333", null, "107177", null, "4188", null, "120296", null, "2418", null, "124379", null, "2110", null, "117707", null, "1583", null, "120053", null, "2079", null, "118515", null, "4977", null, "120531", null, "5062", null, "105029", null, "1343", null, "110488", null, "1149", null, "123290", null, "4075", null, "121224", null, "4511", null, "107474", null, "3850", null, "85748", null, "3997", null, "59211", null, "2696", null, "37390", null, "2276", null, "30351", null, "2552", null, "209756", null, "2086", null, "70697", null, "1574", null, "373907", null, "2709", null, "173978", null, "1504", null, "721481", null, "2489", null, "1479420", null, "3477", null, "1430989", null, "1676", null, "1355944", null, "3724", null, "441398", null, "4406", null, "393374", null, "3868", null, "320174", null, "2014", null, "126952", null, "1540", null, "39.9", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.1", null, "5.7", null, "0.2", null, "5.9", null, "0.2", null, "6.7", null, "0.1", null, "6.9", null, "0.1", null, "6.5", null, "0.1", null, "6.7", null, "0.1", null, "6.6", null, "0.3", null, "6.7", null, "0.3", null, "5.8", null, "0.1", null, "6.1", null, "0.1", null, "6.8", null, "0.2", null, "6.7", null, "0.2", null, "6.0", null, "0.2", null, "4.8", null, "0.2", null, "3.3", null, "0.1", null, "2.1", null, "0.1", null, "1.7", null, "0.1", null, "11.6", null, "0.1", null, "3.9", null, "0.1", null, "20.7", null, "0.1", null, "9.6", null, "0.1", null, "40.0", null, "0.1", null, "82.0", null, "0.2", null, "79.3", null, "0.1", null, "75.1", null, "0.2", null, "24.5", null, "0.2", null, "21.8", null, "0.2", null, "17.7", null, "0.1", null, "7.0", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "1870173", null, "3097", null, "86442", null, "1605", null, "93947", null, "4389", null, "103892", null, "4310", null, "121201", null, "2801", null, "115691", null, "2867", null, "111979", null, "2271", null, "118465", null, "1396", null, "125467", null, "4709", null, "115039", null, "4460", null, "110124", null, "1707", null, "114823", null, "869", null, "122872", null, "4139", null, "137068", null, "4239", null, "119708", null, "3730", null, "93839", null, "3711", null, "74375", null, "3727", null, "49466", null, "2920", null, "55775", null, "3036", null, "197839", null, "1111", null, "69032", null, "1781", null, "353313", null, "2610", null, "167860", null, "2140", null, "707842", null, "2519", null, "1562840", null, "3317", null, "1516860", null, "1465", null, "1441846", null, "4293", null, "530231", null, "4372", null, "474751", null, "4749", null, "393163", null, "1145", null, "179616", null, "1227", null, "42.6", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.6", null, "0.1", null, "5.0", null, "0.2", null, "5.6", null, "0.2", null, "6.5", null, "0.1", null, "6.2", null, "0.2", null, "6.0", null, "0.1", null, "6.3", null, "0.1", null, "6.7", null, "0.3", null, "6.2", null, "0.2", null, "5.9", null, "0.1", null, "6.1", null, "0.1", null, "6.6", null, "0.2", null, "7.3", null, "0.2", null, "6.4", null, "0.2", null, "5.0", null, "0.2", null, "4.0", null, "0.2", null, "2.6", null, "0.2", null, "3.0", null, "0.2", null, "10.6", null, "0.1", null, "3.7", null, "0.1", null, "18.9", null, "0.1", null, "9.0", null, "0.1", null, "37.8", null, "0.1", null, "83.6", null, "0.2", null, "81.1", null, "0.1", null, "77.1", null, "0.2", null, "28.4", null, "0.2", null, "25.4", null, "0.2", null, "21.0", null, "0.1", null, "9.6", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "09"], ["0400000US10", "Delaware", "1051917", null, "-555555555", "*****", "54788", null, "209", null, "57714", null, "3688", null, "62720", null, "3707", null, "66217", null, "2238", null, "63767", null, "2365", null, "59395", null, "1725", null, "67753", null, "1127", null, "67752", null, "4398", null, "64490", null, "4090", null, "57213", null, "1321", null, "59062", null, "1135", null, "64820", null, "3732", null, "78402", null, "3652", null, "75197", null, "3276", null, "60775", null, "3344", null, "43429", null, "2597", null, "25834", null, "2169", null, "22589", null, "2215", null, "120434", null, "496", null, "38524", null, "465", null, "213746", null, "243", null, "91460", null, "1711", null, "389374", null, "1784", null, "863403", null, "1751", null, "838171", null, "243", null, "797979", null, "2746", null, "306226", null, "3742", null, "273966", null, "3002", null, "227824", null, "779", null, "91852", null, "937", null, "42.1", null, "0.3", null, "93.0", null, "0.5", null, "72.3", null, "0.2", null, "37.3", null, "0.2", null, "35.0", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.1", null, "5.5", null, "0.4", null, "6.0", null, "0.4", null, "6.3", null, "0.2", null, "6.1", null, "0.2", null, "5.6", null, "0.2", null, "6.4", null, "0.1", null, "6.4", null, "0.4", null, "6.1", null, "0.4", null, "5.4", null, "0.1", null, "5.6", null, "0.1", null, "6.2", null, "0.4", null, "7.5", null, "0.3", null, "7.1", null, "0.3", null, "5.8", null, "0.3", null, "4.1", null, "0.2", null, "2.5", null, "0.2", null, "2.1", null, "0.2", null, "11.4", null, "0.1", null, "3.7", null, "0.1", null, "20.3", null, "0.1", null, "8.7", null, "0.2", null, "37.0", null, "0.2", null, "82.1", null, "0.2", null, "79.7", null, "0.1", null, "75.9", null, "0.3", null, "29.1", null, "0.4", null, "26.0", null, "0.3", null, "21.7", null, "0.1", null, "8.7", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.3", null, "-888888888.0", "(X)", "506763", null, "1404", null, "26707", null, "1179", null, "28485", null, "2943", null, "32523", null, "2927", null, "31381", null, "1679", null, "33301", null, "1628", null, "29632", null, "1202", null, "34870", null, "955", null, "33103", null, "2965", null, "30173", null, "2736", null, "27360", null, "1148", null, "28697", null, "920", null, "30567", null, "2279", null, "36790", null, "2191", null, "33999", null, "2153", null, "29112", null, "2136", null, "20324", null, "1354", null, "11554", null, "1275", null, "8185", null, "1331", null, "61008", null, "318", null, "18913", null, "631", null, "106628", null, "1319", null, "45769", null, "1205", null, "192460", null, "1430", null, "413075", null, "1348", null, "400135", null, "426", null, "381180", null, "2239", null, "139964", null, "2292", null, "124665", null, "1958", null, "103174", null, "487", null, "40063", null, "537", null, "40.6", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.3", null, "0.2", null, "5.6", null, "0.6", null, "6.4", null, "0.6", null, "6.2", null, "0.3", null, "6.6", null, "0.3", null, "5.8", null, "0.2", null, "6.9", null, "0.2", null, "6.5", null, "0.6", null, "6.0", null, "0.5", null, "5.4", null, "0.2", null, "5.7", null, "0.2", null, "6.0", null, "0.5", null, "7.3", null, "0.4", null, "6.7", null, "0.4", null, "5.7", null, "0.4", null, "4.0", null, "0.3", null, "2.3", null, "0.3", null, "1.6", null, "0.3", null, "12.0", null, "0.1", null, "3.7", null, "0.1", null, "21.0", null, "0.2", null, "9.0", null, "0.2", null, "38.0", null, "0.3", null, "81.5", null, "0.3", null, "79.0", null, "0.2", null, "75.2", null, "0.5", null, "27.6", null, "0.5", null, "24.6", null, "0.4", null, "20.4", null, "0.1", null, "7.9", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "545154", null, "1404", null, "28081", null, "1184", null, "29229", null, "2445", null, "30197", null, "2346", null, "34836", null, "1985", null, "30466", null, "1894", null, "29763", null, "1035", null, "32883", null, "589", null, "34649", null, "2605", null, "34317", null, "2653", null, "29853", null, "895", null, "30365", null, "721", null, "34253", null, "2810", null, "41612", null, "2793", null, "41198", null, "2230", null, "31663", null, "2243", null, "23105", null, "1937", null, "14280", null, "1544", null, "14404", null, "1507", null, "59426", null, "507", null, "19611", null, "742", null, "107118", null, "1310", null, "45691", null, "1067", null, "196914", null, "1223", null, "450328", null, "1392", null, "438036", null, "403", null, "416799", null, "1742", null, "166262", null, "2838", null, "149301", null, "2309", null, "124650", null, "526", null, "51789", null, "618", null, "43.3", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.2", null, "5.4", null, "0.4", null, "5.5", null, "0.4", null, "6.4", null, "0.4", null, "5.6", null, "0.3", null, "5.5", null, "0.2", null, "6.0", null, "0.1", null, "6.4", null, "0.5", null, "6.3", null, "0.5", null, "5.5", null, "0.2", null, "5.6", null, "0.1", null, "6.3", null, "0.5", null, "7.6", null, "0.5", null, "7.6", null, "0.4", null, "5.8", null, "0.4", null, "4.2", null, "0.4", null, "2.6", null, "0.3", null, "2.6", null, "0.3", null, "10.9", null, "0.1", null, "3.6", null, "0.1", null, "19.6", null, "0.2", null, "8.4", null, "0.2", null, "36.1", null, "0.2", null, "82.6", null, "0.3", null, "80.4", null, "0.2", null, "76.5", null, "0.3", null, "30.5", null, "0.5", null, "27.4", null, "0.4", null, "22.9", null, "0.1", null, "9.5", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10"], ["0400000US11", "District of Columbia", "702250", null, "-555555555", "*****", "39498", null, "79", null, "40844", null, "3529", null, "31330", null, "3541", null, "37960", null, "1898", null, "51246", null, "1866", null, "73496", null, "715", null, "77820", null, "253", null, "63730", null, "3422", null, "56764", null, "3382", null, "39775", null, "559", null, "34776", null, "558", null, "32940", null, "2480", null, "31397", null, "2479", null, "27028", null, "2049", null, "23822", null, "1982", null, "17251", null, "1855", null, "13210", null, "2013", null, "9363", null, "1126", null, "72174", null, "259", null, "18346", null, "268", null, "130018", null, "48", null, "70860", null, "676", null, "361016", null, "394", null, "584506", null, "1651", null, "572232", null, "48", null, "543551", null, "2464", null, "122071", null, "2482", null, "110753", null, "2623", null, "90674", null, "94", null, "39824", null, "716", null, "34.9", null, "0.1", null, "89.7", null, "0.5", null, "45.8", null, "0.1", null, "18.8", null, "0.1", null, "27.0", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.6", null, "0.1", null, "5.8", null, "0.5", null, "4.5", null, "0.5", null, "5.4", null, "0.3", null, "7.3", null, "0.3", null, "10.5", null, "0.1", null, "11.1", null, "0.1", null, "9.1", null, "0.5", null, "8.1", null, "0.5", null, "5.7", null, "0.1", null, "5.0", null, "0.1", null, "4.7", null, "0.4", null, "4.5", null, "0.4", null, "3.8", null, "0.3", null, "3.4", null, "0.3", null, "2.5", null, "0.3", null, "1.9", null, "0.3", null, "1.3", null, "0.2", null, "10.3", null, "0.1", null, "2.6", null, "0.1", null, "18.5", null, "0.1", null, "10.1", null, "0.1", null, "51.4", null, "0.1", null, "83.2", null, "0.2", null, "81.5", null, "0.1", null, "77.4", null, "0.4", null, "17.4", null, "0.4", null, "15.8", null, "0.4", null, "12.9", null, "0.1", null, "5.7", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.5", null, "-888888888.0", "(X)", "332062", null, "940", null, "19495", null, "408", null, "19365", null, "2280", null, "17192", null, "2266", null, "17787", null, "1349", null, "22533", null, "1075", null, "32711", null, "3", null, "37052", null, "161", null, "31355", null, "2229", null, "27663", null, "2203", null, "19563", null, "559", null, "17565", null, "559", null, "16781", null, "1768", null, "14980", null, "1776", null, "12431", null, "1482", null, "9881", null, "1370", null, "6773", null, "889", null, "5067", null, "1085", null, "3868", null, "757", null, "36557", null, "95", null, "9048", null, "772", null, "65100", null, "863", null, "31272", null, "48", null, "169101", null, "847", null, "273263", null, "1291", null, "266962", null, "278", null, "253928", null, "1593", null, "53000", null, "1776", null, "48190", null, "1775", null, "38020", null, "2", null, "15708", null, "580", null, "35.0", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.9", null, "0.1", null, "5.8", null, "0.7", null, "5.2", null, "0.7", null, "5.4", null, "0.4", null, "6.8", null, "0.3", null, "9.9", null, "0.1", null, "11.2", null, "0.1", null, "9.4", null, "0.7", null, "8.3", null, "0.7", null, "5.9", null, "0.2", null, "5.3", null, "0.2", null, "5.1", null, "0.5", null, "4.5", null, "0.5", null, "3.7", null, "0.4", null, "3.0", null, "0.4", null, "2.0", null, "0.3", null, "1.5", null, "0.3", null, "1.2", null, "0.2", null, "11.0", null, "0.1", null, "2.7", null, "0.2", null, "19.6", null, "0.2", null, "9.4", null, "0.1", null, "50.9", null, "0.2", null, "82.3", null, "0.4", null, "80.4", null, "0.2", null, "76.5", null, "0.5", null, "16.0", null, "0.5", null, "14.5", null, "0.5", null, "11.4", null, "0.1", null, "4.7", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "370188", null, "940", null, "20003", null, "402", null, "21479", null, "2302", null, "14138", null, "2307", null, "20173", null, "1593", null, "28713", null, "1371", null, "40785", null, "715", null, "40768", null, "232", null, "32375", null, "2516", null, "29101", null, "2491", null, "20212", null, "2", null, "17211", null, "2", null, "16159", null, "1896", null, "16417", null, "1905", null, "14597", null, "1537", null, "13941", null, "1526", null, "10478", null, "1441", null, "8143", null, "1680", null, "5495", null, "959", null, "35617", null, "266", null, "9298", null, "810", null, "64918", null, "862", null, "39588", null, "678", null, "191915", null, "857", null, "311243", null, "1433", null, "305270", null, "274", null, "289623", null, "1910", null, "69071", null, "1907", null, "62563", null, "1864", null, "52654", null, "93", null, "24116", null, "453", null, "34.9", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.1", null, "5.8", null, "0.6", null, "3.8", null, "0.6", null, "5.4", null, "0.4", null, "7.8", null, "0.4", null, "11.0", null, "0.2", null, "11.0", null, "0.1", null, "8.7", null, "0.7", null, "7.9", null, "0.7", null, "5.5", null, "0.1", null, "4.6", null, "0.1", null, "4.4", null, "0.5", null, "4.4", null, "0.5", null, "3.9", null, "0.4", null, "3.8", null, "0.4", null, "2.8", null, "0.4", null, "2.2", null, "0.5", null, "1.5", null, "0.3", null, "9.6", null, "0.1", null, "2.5", null, "0.2", null, "17.5", null, "0.2", null, "10.7", null, "0.2", null, "51.8", null, "0.1", null, "84.1", null, "0.4", null, "82.5", null, "0.2", null, "78.2", null, "0.5", null, "18.7", null, "0.5", null, "16.9", null, "0.5", null, "14.2", null, "0.1", null, "6.5", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11"], ["0400000US12", "Florida", "23372215", null, "-555555555", "*****", "1146626", null, "4333", null, "1209854", null, "18573", null, "1318374", null, "18673", null, "1362318", null, "7709", null, "1361088", null, "9275", null, "1391939", null, "7803", null, "1533094", null, "7058", null, "1530902", null, "24251", null, "1533570", null, "23895", null, "1383694", null, "7740", null, "1450006", null, "7192", null, "1458378", null, "16682", null, "1598019", null, "16843", null, "1470314", null, "16497", null, "1280438", null, "15244", null, "1087890", null, "15008", null, "686299", null, "15005", null, "569412", null, "12796", null, "2528228", null, "6468", null, "817082", null, "4789", null, "4491936", null, "3586", null, "1906324", null, "8750", null, "8712911", null, "9486", null, "19432374", null, "9788", null, "18880279", null, "3586", null, "18066179", null, "12466", null, "6692372", null, "16200", null, "6048516", null, "17052", null, "5094353", null, "4646", null, "2343601", null, "4682", null, "42.7", null, "0.1", null, "96.7", null, "0.1", null, "69.5", null, "0.1", null, "37.0", null, "0.1", null, "32.6", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.9", null, "0.1", null, "5.2", null, "0.1", null, "5.6", null, "0.1", null, "5.8", null, "0.1", null, "5.8", null, "0.1", null, "6.0", null, "0.1", null, "6.6", null, "0.1", null, "6.6", null, "0.1", null, "6.6", null, "0.1", null, "5.9", null, "0.1", null, "6.2", null, "0.1", null, "6.2", null, "0.1", null, "6.8", null, "0.1", null, "6.3", null, "0.1", null, "5.5", null, "0.1", null, "4.7", null, "0.1", null, "2.9", null, "0.1", null, "2.4", null, "0.1", null, "10.8", null, "0.1", null, "3.5", null, "0.1", null, "19.2", null, "0.1", null, "8.2", null, "0.1", null, "37.3", null, "0.1", null, "83.1", null, "0.1", null, "80.8", null, "0.1", null, "77.3", null, "0.1", null, "28.6", null, "0.1", null, "25.9", null, "0.1", null, "21.8", null, "0.1", null, "10.0", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.7", null, "-888888888.0", "(X)", "11488598", null, "8625", null, "583538", null, "5204", null, "616806", null, "13461", null, "678392", null, "13999", null, "697079", null, "7717", null, "694572", null, "5878", null, "706493", null, "4867", null, "771536", null, "4384", null, "772821", null, "15617", null, "772230", null, "15160", null, "684187", null, "5457", null, "716799", null, "5119", null, "706262", null, "10717", null, "772714", null, "10897", null, "681834", null, "10655", null, "591888", null, "10446", null, "505618", null, "8457", null, "310824", null, "8321", null, "225005", null, "7421", null, "1295198", null, "4041", null, "418518", null, "4956", null, "2297254", null, "8096", null, "973133", null, "5506", null, "4414731", null, "8018", null, "9482042", null, "7796", null, "9191344", null, "4793", null, "8774188", null, "9000", null, "3087883", null, "10789", null, "2773322", null, "11130", null, "2315169", null, "3416", null, "1041447", null, "2748", null, "41.4", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.1", null, "0.1", null, "5.4", null, "0.1", null, "5.9", null, "0.1", null, "6.1", null, "0.1", null, "6.0", null, "0.1", null, "6.1", null, "0.1", null, "6.7", null, "0.1", null, "6.7", null, "0.1", null, "6.7", null, "0.1", null, "6.0", null, "0.1", null, "6.2", null, "0.1", null, "6.1", null, "0.1", null, "6.7", null, "0.1", null, "5.9", null, "0.1", null, "5.2", null, "0.1", null, "4.4", null, "0.1", null, "2.7", null, "0.1", null, "2.0", null, "0.1", null, "11.3", null, "0.1", null, "3.6", null, "0.1", null, "20.0", null, "0.1", null, "8.5", null, "0.1", null, "38.4", null, "0.1", null, "82.5", null, "0.1", null, "80.0", null, "0.1", null, "76.4", null, "0.1", null, "26.9", null, "0.1", null, "24.1", null, "0.1", null, "20.2", null, "0.1", null, "9.1", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11883617", null, "8625", null, "563088", null, "5058", null, "593048", null, "12792", null, "639982", null, "12899", null, "665239", null, "6093", null, "666516", null, "6542", null, "685446", null, "5331", null, "761558", null, "4652", null, "758081", null, "14610", null, "761340", null, "14845", null, "699507", null, "4947", null, "733207", null, "4835", null, "752116", null, "12820", null, "825305", null, "12726", null, "788480", null, "11210", null, "688550", null, "10823", null, "582272", null, "11472", null, "375475", null, "11647", null, "344407", null, "9714", null, "1233030", null, "5731", null, "398564", null, "4766", null, "2194682", null, "7872", null, "933191", null, "6295", null, "4298180", null, "7074", null, "9950332", null, "7957", null, "9688935", null, "4744", null, "9291991", null, "9884", null, "3604489", null, "12950", null, "3275194", null, "12425", null, "2779184", null, "3087", null, "1302154", null, "3294", null, "44.0", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.7", null, "0.1", null, "5.0", null, "0.1", null, "5.4", null, "0.1", null, "5.6", null, "0.1", null, "5.6", null, "0.1", null, "5.8", null, "0.1", null, "6.4", null, "0.1", null, "6.4", null, "0.1", null, "6.4", null, "0.1", null, "5.9", null, "0.1", null, "6.2", null, "0.1", null, "6.3", null, "0.1", null, "6.9", null, "0.1", null, "6.6", null, "0.1", null, "5.8", null, "0.1", null, "4.9", null, "0.1", null, "3.2", null, "0.1", null, "2.9", null, "0.1", null, "10.4", null, "0.1", null, "3.4", null, "0.1", null, "18.5", null, "0.1", null, "7.9", null, "0.1", null, "36.2", null, "0.1", null, "83.7", null, "0.1", null, "81.5", null, "0.1", null, "78.2", null, "0.1", null, "30.3", null, "0.1", null, "27.6", null, "0.1", null, "23.4", null, "0.1", null, "11.0", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12"], ["0400000US13", "Georgia", "11180878", null, "-555555555", "*****", "612543", null, "5147", null, "685711", null, "13984", null, "756146", null, "13644", null, "784334", null, "9568", null, "753379", null, "11413", null, "741035", null, "8763", null, "785173", null, "7320", null, "768432", null, "14195", null, "761545", null, "13771", null, "695097", null, "8532", null, "724731", null, "6888", null, "653752", null, "12324", null, "693397", null, "11606", null, "570466", null, "9029", null, "483421", null, "9383", null, "346482", null, "6872", null, "211246", null, "5242", null, "153988", null, "5733", null, "1441857", null, "7025", null, "476731", null, "4792", null, "2531131", null, "2975", null, "1060982", null, "9705", null, "4593898", null, "10644", null, "8972406", null, "8019", null, "8649747", null, "2975", null, "8190829", null, "11819", null, "2459000", null, "12176", null, "2177452", null, "10779", null, "1765603", null, "5455", null, "711716", null, "3863", null, "38.0", null, "0.2", null, "94.8", null, "0.3", null, "62.4", null, "0.2", null, "25.6", null, "0.1", null, "36.8", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.1", null, "6.1", null, "0.1", null, "6.8", null, "0.1", null, "7.0", null, "0.1", null, "6.7", null, "0.1", null, "6.6", null, "0.1", null, "7.0", null, "0.1", null, "6.9", null, "0.1", null, "6.8", null, "0.1", null, "6.2", null, "0.1", null, "6.5", null, "0.1", null, "5.8", null, "0.1", null, "6.2", null, "0.1", null, "5.1", null, "0.1", null, "4.3", null, "0.1", null, "3.1", null, "0.1", null, "1.9", null, "0.1", null, "1.4", null, "0.1", null, "12.9", null, "0.1", null, "4.3", null, "0.1", null, "22.6", null, "0.1", null, "9.5", null, "0.1", null, "41.1", null, "0.1", null, "80.2", null, "0.1", null, "77.4", null, "0.1", null, "73.3", null, "0.1", null, "22.0", null, "0.1", null, "19.5", null, "0.1", null, "15.8", null, "0.1", null, "6.4", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.7", null, "-888888888.0", "(X)", "5441586", null, "9788", null, "309291", null, "5264", null, "355452", null, "9206", null, "383057", null, "10401", null, "408905", null, "7980", null, "377995", null, "7718", null, "370271", null, "6394", null, "384222", null, "5240", null, "371111", null, "9246", null, "370420", null, "8655", null, "333561", null, "5569", null, "351421", null, "5151", null, "318045", null, "8149", null, "331669", null, "7815", null, "265469", null, "5458", null, "214778", null, "5549", null, "152236", null, "4702", null, "89465", null, "3925", null, "54218", null, "3223", null, "738509", null, "5925", null, "245552", null, "4999", null, "1293352", null, "8503", null, "541348", null, "6864", null, "2282924", null, "8772", null, "4315456", null, "7820", null, "4148234", null, "4554", null, "3910304", null, "8511", null, "1107835", null, "8201", null, "974254", null, "7185", null, "776166", null, "3609", null, "295919", null, "3237", null, "36.7", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.7", null, "0.1", null, "6.5", null, "0.2", null, "7.0", null, "0.2", null, "7.5", null, "0.1", null, "6.9", null, "0.1", null, "6.8", null, "0.1", null, "7.1", null, "0.1", null, "6.8", null, "0.2", null, "6.8", null, "0.2", null, "6.1", null, "0.1", null, "6.5", null, "0.1", null, "5.8", null, "0.1", null, "6.1", null, "0.1", null, "4.9", null, "0.1", null, "3.9", null, "0.1", null, "2.8", null, "0.1", null, "1.6", null, "0.1", null, "1.0", null, "0.1", null, "13.6", null, "0.1", null, "4.5", null, "0.1", null, "23.8", null, "0.1", null, "9.9", null, "0.1", null, "42.0", null, "0.2", null, "79.3", null, "0.1", null, "76.2", null, "0.1", null, "71.9", null, "0.2", null, "20.4", null, "0.2", null, "17.9", null, "0.1", null, "14.3", null, "0.1", null, "5.4", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5739292", null, "9788", null, "303252", null, "4737", null, "330259", null, "9808", null, "373089", null, "8996", null, "375429", null, "6887", null, "375384", null, "7079", null, "370764", null, "5156", null, "400951", null, "4955", null, "397321", null, "10247", null, "391125", null, "10294", null, "361536", null, "5524", null, "373310", null, "4566", null, "335707", null, "7859", null, "361728", null, "7922", null, "304997", null, "6531", null, "268643", null, "5995", null, "194246", null, "5138", null, "121781", null, "4160", null, "99770", null, "4421", null, "703348", null, "6317", null, "231179", null, "4261", null, "1237779", null, "8904", null, "519634", null, "5492", null, "2310974", null, "7412", null, "4656950", null, "6820", null, "4501513", null, "3965", null, "4280525", null, "8302", null, "1351165", null, "8218", null, "1203198", null, "7622", null, "989437", null, "3270", null, "415797", null, "3041", null, "39.3", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.3", null, "0.1", null, "5.8", null, "0.2", null, "6.5", null, "0.2", null, "6.5", null, "0.1", null, "6.5", null, "0.1", null, "6.5", null, "0.1", null, "7.0", null, "0.1", null, "6.9", null, "0.2", null, "6.8", null, "0.2", null, "6.3", null, "0.1", null, "6.5", null, "0.1", null, "5.8", null, "0.1", null, "6.3", null, "0.1", null, "5.3", null, "0.1", null, "4.7", null, "0.1", null, "3.4", null, "0.1", null, "2.1", null, "0.1", null, "1.7", null, "0.1", null, "12.3", null, "0.1", null, "4.0", null, "0.1", null, "21.6", null, "0.1", null, "9.1", null, "0.1", null, "40.3", null, "0.1", null, "81.1", null, "0.1", null, "78.4", null, "0.1", null, "74.6", null, "0.2", null, "23.5", null, "0.1", null, "21.0", null, "0.1", null, "17.2", null, "0.1", null, "7.2", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13"], ["0400000US15", "Hawaii", "1446146", null, "-555555555", "*****", "76057", null, "697", null, "86743", null, "3792", null, "81872", null, "3539", null, "79626", null, "2145", null, "84875", null, "2246", null, "89953", null, "2155", null, "95753", null, "1250", null, "97383", null, "4376", null, "99781", null, "4170", null, "84722", null, "1399", null, "84567", null, "1249", null, "83512", null, "3239", null, "89997", null, "3201", null, "90260", null, "3571", null, "77127", null, "3655", null, "67670", null, "3273", null, "37541", null, "2737", null, "38707", null, "3391", null, "168615", null, "1240", null, "48888", null, "1065", null, "293560", null, "272", null, "115613", null, "2167", null, "547371", null, "1919", null, "1184486", null, "1689", null, "1152586", null, "272", null, "1107788", null, "2392", null, "401302", null, "3185", null, "364400", null, "3347", null, "311305", null, "594", null, "143918", null, "775", null, "41.5", null, "0.3", null, "100.2", null, "0.5", null, "71.9", null, "0.1", null, "37.0", null, "0.1", null, "34.9", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.3", null, "0.1", null, "6.0", null, "0.3", null, "5.7", null, "0.2", null, "5.5", null, "0.1", null, "5.9", null, "0.2", null, "6.2", null, "0.1", null, "6.6", null, "0.1", null, "6.7", null, "0.3", null, "6.9", null, "0.3", null, "5.9", null, "0.1", null, "5.8", null, "0.1", null, "5.8", null, "0.2", null, "6.2", null, "0.2", null, "6.2", null, "0.2", null, "5.3", null, "0.3", null, "4.7", null, "0.2", null, "2.6", null, "0.2", null, "2.7", null, "0.2", null, "11.7", null, "0.1", null, "3.4", null, "0.1", null, "20.3", null, "0.1", null, "8.0", null, "0.1", null, "37.9", null, "0.1", null, "81.9", null, "0.1", null, "79.7", null, "0.1", null, "76.6", null, "0.2", null, "27.7", null, "0.2", null, "25.2", null, "0.2", null, "21.5", null, "0.1", null, "10.0", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "2.1", null, "-888888888.0", "(X)", "723923", null, "1829", null, "39617", null, "947", null, "45897", null, "2717", null, "41002", null, "2960", null, "41097", null, "1567", null, "46971", null, "1376", null, "46695", null, "1545", null, "49192", null, "1049", null, "50246", null, "3178", null, "48839", null, "3063", null, "43073", null, "1111", null, "42291", null, "824", null, "40479", null, "2019", null, "45093", null, "2018", null, "42885", null, "2355", null, "37847", null, "2392", null, "32755", null, "1971", null, "16018", null, "1544", null, "13926", null, "1720", null, "86899", null, "1239", null, "24961", null, "1009", null, "151477", null, "1798", null, "63107", null, "1552", null, "283040", null, "1457", null, "588644", null, "1463", null, "572446", null, "574", null, "548459", null, "2026", null, "188524", null, "2034", null, "168806", null, "2205", null, "143431", null, "452", null, "62699", null, "572", null, "40.1", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.1", null, "6.3", null, "0.4", null, "5.7", null, "0.4", null, "5.7", null, "0.2", null, "6.5", null, "0.2", null, "6.5", null, "0.2", null, "6.8", null, "0.1", null, "6.9", null, "0.4", null, "6.7", null, "0.4", null, "5.9", null, "0.2", null, "5.8", null, "0.1", null, "5.6", null, "0.3", null, "6.2", null, "0.3", null, "5.9", null, "0.3", null, "5.2", null, "0.3", null, "4.5", null, "0.3", null, "2.2", null, "0.2", null, "1.9", null, "0.2", null, "12.0", null, "0.2", null, "3.4", null, "0.1", null, "20.9", null, "0.2", null, "8.7", null, "0.2", null, "39.1", null, "0.2", null, "81.3", null, "0.2", null, "79.1", null, "0.2", null, "75.8", null, "0.3", null, "26.0", null, "0.3", null, "23.3", null, "0.3", null, "19.8", null, "0.1", null, "8.7", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "722223", null, "1829", null, "36440", null, "1097", null, "40846", null, "2758", null, "40870", null, "2492", null, "38529", null, "1549", null, "37904", null, "1399", null, "43258", null, "1257", null, "46561", null, "854", null, "47137", null, "2803", null, "50942", null, "2933", null, "41649", null, "824", null, "42276", null, "931", null, "43033", null, "2620", null, "44904", null, "2566", null, "47375", null, "2571", null, "39280", null, "2616", null, "34915", null, "2362", null, "21523", null, "1871", null, "24781", null, "2351", null, "81716", null, "1252", null, "23927", null, "1156", null, "142083", null, "1815", null, "52506", null, "1209", null, "264331", null, "1443", null, "595842", null, "1557", null, "580140", null, "466", null, "559329", null, "1544", null, "212778", null, "2534", null, "195594", null, "2474", null, "167874", null, "494", null, "81219", null, "554", null, "42.9", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.0", null, "0.1", null, "5.7", null, "0.4", null, "5.7", null, "0.3", null, "5.3", null, "0.2", null, "5.2", null, "0.2", null, "6.0", null, "0.2", null, "6.4", null, "0.1", null, "6.5", null, "0.4", null, "7.1", null, "0.4", null, "5.8", null, "0.1", null, "5.9", null, "0.1", null, "6.0", null, "0.4", null, "6.2", null, "0.4", null, "6.6", null, "0.4", null, "5.4", null, "0.4", null, "4.8", null, "0.3", null, "3.0", null, "0.3", null, "3.4", null, "0.3", null, "11.3", null, "0.2", null, "3.3", null, "0.2", null, "19.7", null, "0.2", null, "7.3", null, "0.2", null, "36.6", null, "0.2", null, "82.5", null, "0.2", null, "80.3", null, "0.2", null, "77.4", null, "0.3", null, "29.5", null, "0.4", null, "27.1", null, "0.3", null, "23.2", null, "0.1", null, "11.2", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15"], ["0400000US16", "Idaho", "2001619", null, "-555555555", "*****", "110595", null, "1544", null, "126464", null, "4475", null, "141082", null, "5011", null, "146348", null, "3338", null, "141723", null, "3943", null, "128260", null, "2451", null, "131061", null, "2505", null, "136116", null, "6206", null, "131234", null, "5366", null, "115846", null, "1895", null, "109769", null, "1575", null, "104035", null, "3792", null, "123535", null, "3800", null, "109538", null, "3783", null, "103308", null, "3788", null, "65605", null, "3056", null, "44336", null, "2503", null, "32764", null, "2085", null, "267546", null, "2358", null, "89106", null, "1505", null, "467247", null, "1809", null, "198965", null, "2983", null, "814742", null, "3253", null, "1593794", null, "2774", null, "1534372", null, "1809", null, "1449223", null, "4209", null, "479086", null, "4187", null, "429562", null, "3912", null, "355551", null, "1762", null, "142705", null, "1288", null, "37.8", null, "0.2", null, "101.3", null, "0.6", null, "69.8", null, "0.3", null, "30.2", null, "0.2", null, "39.6", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.1", null, "6.3", null, "0.2", null, "7.0", null, "0.3", null, "7.3", null, "0.2", null, "7.1", null, "0.2", null, "6.4", null, "0.1", null, "6.5", null, "0.1", null, "6.8", null, "0.3", null, "6.6", null, "0.3", null, "5.8", null, "0.1", null, "5.5", null, "0.1", null, "5.2", null, "0.2", null, "6.2", null, "0.2", null, "5.5", null, "0.2", null, "5.2", null, "0.2", null, "3.3", null, "0.2", null, "2.2", null, "0.1", null, "1.6", null, "0.1", null, "13.4", null, "0.1", null, "4.5", null, "0.1", null, "23.3", null, "0.1", null, "9.9", null, "0.1", null, "40.7", null, "0.2", null, "79.6", null, "0.1", null, "76.7", null, "0.1", null, "72.4", null, "0.2", null, "23.9", null, "0.2", null, "21.5", null, "0.2", null, "17.8", null, "0.1", null, "7.1", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.3", null, "-888888888.0", "(X)", "1007233", null, "2892", null, "57400", null, "1750", null, "64717", null, "3058", null, "72660", null, "3646", null, "73929", null, "2078", null, "71397", null, "2337", null, "68155", null, "1568", null, "66409", null, "1712", null, "68024", null, "3858", null, "68314", null, "3167", null, "58913", null, "1357", null, "54974", null, "1052", null, "50873", null, "2860", null, "62301", null, "3047", null, "51364", null, "2696", null, "52294", null, "2593", null, "30167", null, "2170", null, "20412", null, "1862", null, "14930", null, "1401", null, "137377", null, "1780", null, "45682", null, "1529", null, "240459", null, "2345", null, "99644", null, "2063", null, "416228", null, "2458", null, "797579", null, "2441", null, "766774", null, "1908", null, "723252", null, "2896", null, "231468", null, "3174", null, "206498", null, "2946", null, "169167", null, "1357", null, "65509", null, "877", null, "37.1", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.7", null, "0.2", null, "6.4", null, "0.3", null, "7.2", null, "0.4", null, "7.3", null, "0.2", null, "7.1", null, "0.2", null, "6.8", null, "0.2", null, "6.6", null, "0.2", null, "6.8", null, "0.4", null, "6.8", null, "0.3", null, "5.8", null, "0.1", null, "5.5", null, "0.1", null, "5.1", null, "0.3", null, "6.2", null, "0.3", null, "5.1", null, "0.3", null, "5.2", null, "0.3", null, "3.0", null, "0.2", null, "2.0", null, "0.2", null, "1.5", null, "0.1", null, "13.6", null, "0.2", null, "4.5", null, "0.1", null, "23.9", null, "0.2", null, "9.9", null, "0.2", null, "41.3", null, "0.3", null, "79.2", null, "0.2", null, "76.1", null, "0.2", null, "71.8", null, "0.3", null, "23.0", null, "0.3", null, "20.5", null, "0.3", null, "16.8", null, "0.1", null, "6.5", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "994386", null, "2892", null, "53195", null, "1776", null, "61747", null, "3507", null, "68422", null, "3609", null, "72419", null, "2595", null, "70326", null, "2781", null, "60105", null, "1745", null, "64652", null, "2011", null, "68092", null, "3673", null, "62920", null, "3291", null, "56933", null, "1257", null, "54795", null, "1142", null, "53162", null, "2511", null, "61234", null, "2638", null, "58174", null, "2625", null, "51014", null, "2462", null, "35438", null, "1830", null, "23924", null, "1746", null, "17834", null, "1597", null, "130169", null, "1665", null, "43424", null, "1267", null, "226788", null, "2368", null, "99321", null, "2079", null, "398514", null, "2519", null, "796215", null, "2489", null, "767598", null, "2006", null, "725971", null, "3539", null, "247618", null, "2960", null, "223064", null, "2911", null, "186384", null, "1446", null, "77196", null, "959", null, "38.4", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.3", null, "0.2", null, "6.2", null, "0.4", null, "6.9", null, "0.4", null, "7.3", null, "0.3", null, "7.1", null, "0.3", null, "6.0", null, "0.2", null, "6.5", null, "0.2", null, "6.8", null, "0.4", null, "6.3", null, "0.3", null, "5.7", null, "0.1", null, "5.5", null, "0.1", null, "5.3", null, "0.3", null, "6.2", null, "0.3", null, "5.9", null, "0.3", null, "5.1", null, "0.2", null, "3.6", null, "0.2", null, "2.4", null, "0.2", null, "1.8", null, "0.2", null, "13.1", null, "0.2", null, "4.4", null, "0.1", null, "22.8", null, "0.2", null, "10.0", null, "0.2", null, "40.1", null, "0.2", null, "80.1", null, "0.2", null, "77.2", null, "0.2", null, "73.0", null, "0.3", null, "24.9", null, "0.3", null, "22.4", null, "0.3", null, "18.7", null, "0.1", null, "7.8", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16"], ["0400000US17", "Illinois", "12710158", null, "-555555555", "*****", "655117", null, "3018", null, "748386", null, "12399", null, "780742", null, "12052", null, "835057", null, "4636", null, "841408", null, "5201", null, "846237", null, "4511", null, "890856", null, "4089", null, "860154", null, "12820", null, "844820", null, "13932", null, "781640", null, "4422", null, "782763", null, "3253", null, "747925", null, "12556", null, "820471", null, "12814", null, "737385", null, "10413", null, "586149", null, "10542", null, "432074", null, "7608", null, "269649", null, "6711", null, "249325", null, "7678", null, "1529128", null, "4437", null, "508415", null, "2745", null, "2692660", null, "2339", null, "1168050", null, "4325", null, "5118532", null, "4583", null, "10362614", null, "6889", null, "10017498", null, "2339", null, "9535841", null, "8288", null, "3095053", null, "12968", null, "2752171", null, "10285", null, "2274582", null, "2943", null, "951048", null, "2603", null, "39.4", null, "0.1", null, "97.7", null, "0.2", null, "64.2", null, "0.1", null, "29.4", null, "0.1", null, "34.8", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.1", null, "5.9", null, "0.1", null, "6.1", null, "0.1", null, "6.6", null, "0.1", null, "6.6", null, "0.1", null, "6.7", null, "0.1", null, "7.0", null, "0.1", null, "6.8", null, "0.1", null, "6.6", null, "0.1", null, "6.1", null, "0.1", null, "6.2", null, "0.1", null, "5.9", null, "0.1", null, "6.5", null, "0.1", null, "5.8", null, "0.1", null, "4.6", null, "0.1", null, "3.4", null, "0.1", null, "2.1", null, "0.1", null, "2.0", null, "0.1", null, "12.0", null, "0.1", null, "4.0", null, "0.1", null, "21.2", null, "0.1", null, "9.2", null, "0.1", null, "40.3", null, "0.1", null, "81.5", null, "0.1", null, "78.8", null, "0.1", null, "75.0", null, "0.1", null, "24.4", null, "0.1", null, "21.7", null, "0.1", null, "17.9", null, "0.1", null, "7.5", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.1", null, "-888888888.0", "(X)", "6280259", null, "5422", null, "333198", null, "3512", null, "390127", null, "9096", null, "395187", null, "9083", null, "428112", null, "3595", null, "430306", null, "3492", null, "421829", null, "3049", null, "447362", null, "2739", null, "432924", null, "8889", null, "426711", null, "9364", null, "391949", null, "2581", null, "391008", null, "2408", null, "372427", null, "8251", null, "399542", null, "8187", null, "352872", null, "6426", null, "273229", null, "6218", null, "188427", null, "4474", null, "115891", null, "4989", null, "89158", null, "4649", null, "785314", null, "3062", null, "259328", null, "2583", null, "1377840", null, "4681", null, "599090", null, "2741", null, "2587244", null, "4181", null, "5076402", null, "5533", null, "4902419", null, "3292", null, "4652243", null, "5788", null, "1419119", null, "8205", null, "1250310", null, "6528", null, "1019577", null, "1689", null, "393476", null, "1363", null, "38.4", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.3", null, "0.1", null, "6.2", null, "0.1", null, "6.3", null, "0.1", null, "6.8", null, "0.1", null, "6.9", null, "0.1", null, "6.7", null, "0.1", null, "7.1", null, "0.1", null, "6.9", null, "0.1", null, "6.8", null, "0.1", null, "6.2", null, "0.1", null, "6.2", null, "0.1", null, "5.9", null, "0.1", null, "6.4", null, "0.1", null, "5.6", null, "0.1", null, "4.4", null, "0.1", null, "3.0", null, "0.1", null, "1.8", null, "0.1", null, "1.4", null, "0.1", null, "12.5", null, "0.1", null, "4.1", null, "0.1", null, "21.9", null, "0.1", null, "9.5", null, "0.1", null, "41.2", null, "0.1", null, "80.8", null, "0.1", null, "78.1", null, "0.1", null, "74.1", null, "0.1", null, "22.6", null, "0.1", null, "19.9", null, "0.1", null, "16.2", null, "0.1", null, "6.3", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6429899", null, "5422", null, "321919", null, "3020", null, "358259", null, "8594", null, "385555", null, "8318", null, "406945", null, "3701", null, "411102", null, "4048", null, "424408", null, "3131", null, "443494", null, "2649", null, "427230", null, "9432", null, "418109", null, "10093", null, "389691", null, "2983", null, "391755", null, "2284", null, "375498", null, "7788", null, "420929", null, "8138", null, "384513", null, "6583", null, "312920", null, "6668", null, "243647", null, "5681", null, "153758", null, "5132", null, "160167", null, "5204", null, "743814", null, "3155", null, "249087", null, "2361", null, "1314820", null, "4517", null, "568960", null, "3201", null, "2531288", null, "3808", null, "5286212", null, "4308", null, "5115079", null, "2980", null, "4883598", null, "6783", null, "1675934", null, "8339", null, "1501861", null, "7435", null, "1255005", null, "2598", null, "557572", null, "2238", null, "40.4", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.0", null, "0.1", null, "5.6", null, "0.1", null, "6.0", null, "0.1", null, "6.3", null, "0.1", null, "6.4", null, "0.1", null, "6.6", null, "0.1", null, "6.9", null, "0.1", null, "6.6", null, "0.1", null, "6.5", null, "0.2", null, "6.1", null, "0.1", null, "6.1", null, "0.1", null, "5.8", null, "0.1", null, "6.5", null, "0.1", null, "6.0", null, "0.1", null, "4.9", null, "0.1", null, "3.8", null, "0.1", null, "2.4", null, "0.1", null, "2.5", null, "0.1", null, "11.6", null, "0.1", null, "3.9", null, "0.1", null, "20.4", null, "0.1", null, "8.8", null, "0.1", null, "39.4", null, "0.1", null, "82.2", null, "0.1", null, "79.6", null, "0.1", null, "76.0", null, "0.1", null, "26.1", null, "0.1", null, "23.4", null, "0.1", null, "19.5", null, "0.1", null, "8.7", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17"], ["0400000US18", "Indiana", "6924275", null, "-555555555", "*****", "403534", null, "3698", null, "429402", null, "9785", null, "456769", null, "10080", null, "480835", null, "5599", null, "468144", null, "5497", null, "454963", null, "5606", null, "474739", null, "5834", null, "449243", null, "10034", null, "439852", null, "10274", null, "406427", null, "4791", null, "409440", null, "3783", null, "394661", null, "9355", null, "437865", null, "9070", null, "395194", null, "7832", null, "326891", null, "6935", null, "233949", null, "5230", null, "138604", null, "4719", null, "123763", null, "5059", null, "886171", null, "4356", null, "289023", null, "3034", null, "1578728", null, "3229", null, "659956", null, "5589", null, "2767776", null, "5695", null, "5542042", null, "6037", null, "5345547", null, "3229", null, "5060242", null, "8872", null, "1656266", null, "10068", null, "1478584", null, "10299", null, "1218401", null, "4267", null, "496316", null, "2609", null, "38.3", null, "0.1", null, "98.3", null, "0.3", null, "67.8", null, "0.2", null, "29.5", null, "0.1", null, "38.3", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.8", null, "0.1", null, "6.2", null, "0.1", null, "6.6", null, "0.1", null, "6.9", null, "0.1", null, "6.8", null, "0.1", null, "6.6", null, "0.1", null, "6.9", null, "0.1", null, "6.5", null, "0.1", null, "6.4", null, "0.1", null, "5.9", null, "0.1", null, "5.9", null, "0.1", null, "5.7", null, "0.1", null, "6.3", null, "0.1", null, "5.7", null, "0.1", null, "4.7", null, "0.1", null, "3.4", null, "0.1", null, "2.0", null, "0.1", null, "1.8", null, "0.1", null, "12.8", null, "0.1", null, "4.2", null, "0.1", null, "22.8", null, "0.1", null, "9.5", null, "0.1", null, "40.0", null, "0.1", null, "80.0", null, "0.1", null, "77.2", null, "0.1", null, "73.1", null, "0.1", null, "23.9", null, "0.1", null, "21.4", null, "0.1", null, "17.6", null, "0.1", null, "7.2", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.0", null, "-888888888.0", "(X)", "3431764", null, "5808", null, "205142", null, "3039", null, "218405", null, "6848", null, "236356", null, "7164", null, "248932", null, "4215", null, "241354", null, "3552", null, "228913", null, "3788", null, "240399", null, "4046", null, "226005", null, "6579", null, "218733", null, "6543", null, "205121", null, "3211", null, "204042", null, "3038", null, "194529", null, "5541", null, "216384", null, "5233", null, "186571", null, "5592", null, "155582", null, "5109", null, "102647", null, "2887", null, "59460", null, "2634", null, "43189", null, "2570", null, "454761", null, "4133", null, "151581", null, "3145", null, "811484", null, "4809", null, "338705", null, "3237", null, "1404336", null, "4935", null, "2723453", null, "6138", null, "2620280", null, "4329", null, "2476706", null, "6703", null, "763833", null, "5175", null, "675474", null, "5560", null, "547449", null, "2570", null, "205296", null, "1393", null, "37.1", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.0", null, "0.1", null, "6.4", null, "0.2", null, "6.9", null, "0.2", null, "7.3", null, "0.1", null, "7.0", null, "0.1", null, "6.7", null, "0.1", null, "7.0", null, "0.1", null, "6.6", null, "0.2", null, "6.4", null, "0.2", null, "6.0", null, "0.1", null, "5.9", null, "0.1", null, "5.7", null, "0.2", null, "6.3", null, "0.2", null, "5.4", null, "0.2", null, "4.5", null, "0.1", null, "3.0", null, "0.1", null, "1.7", null, "0.1", null, "1.3", null, "0.1", null, "13.3", null, "0.1", null, "4.4", null, "0.1", null, "23.6", null, "0.1", null, "9.9", null, "0.1", null, "40.9", null, "0.1", null, "79.4", null, "0.1", null, "76.4", null, "0.1", null, "72.2", null, "0.2", null, "22.3", null, "0.1", null, "19.7", null, "0.2", null, "16.0", null, "0.1", null, "6.0", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "3492511", null, "5808", null, "198392", null, "3285", null, "210997", null, "6463", null, "220413", null, "6607", null, "231903", null, "4285", null, "226790", null, "3942", null, "226050", null, "3344", null, "234340", null, "3999", null, "223238", null, "6594", null, "221119", null, "6714", null, "201306", null, "2691", null, "205398", null, "2193", null, "200132", null, "6464", null, "221481", null, "6078", null, "208623", null, "4683", null, "171309", null, "4333", null, "131302", null, "4371", null, "79144", null, "3353", null, "80574", null, "3954", null, "431410", null, "3654", null, "137442", null, "2657", null, "767244", null, "4904", null, "321251", null, "4034", null, "1363440", null, "4874", null, "2818589", null, "5751", null, "2725267", null, "3945", null, "2583536", null, "7657", null, "892433", null, "7321", null, "803110", null, "6925", null, "670952", null, "2930", null, "291020", null, "2094", null, "39.4", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.7", null, "0.1", null, "6.0", null, "0.2", null, "6.3", null, "0.2", null, "6.6", null, "0.1", null, "6.5", null, "0.1", null, "6.5", null, "0.1", null, "6.7", null, "0.1", null, "6.4", null, "0.2", null, "6.3", null, "0.2", null, "5.8", null, "0.1", null, "5.9", null, "0.1", null, "5.7", null, "0.2", null, "6.3", null, "0.2", null, "6.0", null, "0.1", null, "4.9", null, "0.1", null, "3.8", null, "0.1", null, "2.3", null, "0.1", null, "2.3", null, "0.1", null, "12.4", null, "0.1", null, "3.9", null, "0.1", null, "22.0", null, "0.1", null, "9.2", null, "0.1", null, "39.0", null, "0.1", null, "80.7", null, "0.1", null, "78.0", null, "0.1", null, "74.0", null, "0.2", null, "25.6", null, "0.2", null, "23.0", null, "0.2", null, "19.2", null, "0.1", null, "8.3", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18"], ["0400000US19", "Iowa", "3241488", null, "-555555555", "*****", "186076", null, "2988", null, "196600", null, "5629", null, "213055", null, "5245", null, "226814", null, "4381", null, "226569", null, "4327", null, "204995", null, "3721", null, "205103", null, "3270", null, "203963", null, "6329", null, "208504", null, "5688", null, "187278", null, "3007", null, "180403", null, "2724", null, "176569", null, "5085", null, "212956", null, "4856", null, "188105", null, "4616", null, "166859", null, "4380", null, "110660", null, "3716", null, "72406", null, "3020", null, "74573", null, "3097", null, "409655", null, "3407", null, "131639", null, "1733", null, "727370", null, "2450", null, "321744", null, "3742", null, "1275948", null, "5212", null, "2601819", null, "3668", null, "2514118", null, "2450", null, "2373698", null, "6160", null, "825559", null, "5458", null, "743308", null, "5075", null, "612603", null, "2150", null, "257639", null, "1571", null, "39.0", null, "0.2", null, "100.2", null, "0.5", null, "70.5", null, "0.3", null, "32.2", null, "0.2", null, "38.3", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.7", null, "0.1", null, "6.1", null, "0.2", null, "6.6", null, "0.2", null, "7.0", null, "0.1", null, "7.0", null, "0.1", null, "6.3", null, "0.1", null, "6.3", null, "0.1", null, "6.3", null, "0.2", null, "6.4", null, "0.2", null, "5.8", null, "0.1", null, "5.6", null, "0.1", null, "5.4", null, "0.2", null, "6.6", null, "0.1", null, "5.8", null, "0.1", null, "5.1", null, "0.1", null, "3.4", null, "0.1", null, "2.2", null, "0.1", null, "2.3", null, "0.1", null, "12.6", null, "0.1", null, "4.1", null, "0.1", null, "22.4", null, "0.1", null, "9.9", null, "0.1", null, "39.4", null, "0.2", null, "80.3", null, "0.1", null, "77.6", null, "0.1", null, "73.2", null, "0.2", null, "25.5", null, "0.2", null, "22.9", null, "0.2", null, "18.9", null, "0.1", null, "7.9", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.0", null, "-888888888.0", "(X)", "1622686", null, "4228", null, "96024", null, "3098", null, "102647", null, "3951", null, "105608", null, "3666", null, "118828", null, "3280", null, "116428", null, "2687", null, "105218", null, "2322", null, "104146", null, "2245", null, "103638", null, "3919", null, "108928", null, "3906", null, "95531", null, "2201", null, "90602", null, "2059", null, "85165", null, "3590", null, "108413", null, "3425", null, "91934", null, "3032", null, "80982", null, "2999", null, "51542", null, "2130", null, "29701", null, "1933", null, "27351", null, "1797", null, "208255", null, "2665", null, "67930", null, "2042", null, "372209", null, "3889", null, "167326", null, "2569", null, "657186", null, "4301", null, "1297562", null, "4067", null, "1250477", null, "3021", null, "1176284", null, "4272", null, "389923", null, "3686", null, "346577", null, "3070", null, "281510", null, "1449", null, "108594", null, "897", null, "38.1", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.9", null, "0.2", null, "6.3", null, "0.2", null, "6.5", null, "0.2", null, "7.3", null, "0.2", null, "7.2", null, "0.2", null, "6.5", null, "0.1", null, "6.4", null, "0.1", null, "6.4", null, "0.2", null, "6.7", null, "0.2", null, "5.9", null, "0.1", null, "5.6", null, "0.1", null, "5.2", null, "0.2", null, "6.7", null, "0.2", null, "5.7", null, "0.2", null, "5.0", null, "0.2", null, "3.2", null, "0.1", null, "1.8", null, "0.1", null, "1.7", null, "0.1", null, "12.8", null, "0.2", null, "4.2", null, "0.1", null, "22.9", null, "0.2", null, "10.3", null, "0.2", null, "40.5", null, "0.2", null, "80.0", null, "0.2", null, "77.1", null, "0.2", null, "72.5", null, "0.3", null, "24.0", null, "0.2", null, "21.4", null, "0.2", null, "17.3", null, "0.1", null, "6.7", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "1618802", null, "4228", null, "90052", null, "2376", null, "93953", null, "3764", null, "107447", null, "3520", null, "107986", null, "3775", null, "110141", null, "3190", null, "99777", null, "2757", null, "100957", null, "1902", null, "100325", null, "4338", null, "99576", null, "3861", null, "91747", null, "2029", null, "89801", null, "1943", null, "91404", null, "3158", null, "104543", null, "3421", null, "96171", null, "2868", null, "85877", null, "2740", null, "59118", null, "2703", null, "42705", null, "2135", null, "47222", null, "2326", null, "201400", null, "2384", null, "63709", null, "2089", null, "355161", null, "3420", null, "154418", null, "2737", null, "618762", null, "4187", null, "1304257", null, "3864", null, "1263641", null, "2915", null, "1197414", null, "4823", null, "435636", null, "3758", null, "396731", null, "3737", null, "331093", null, "1543", null, "149045", null, "1111", null, "39.9", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.6", null, "0.1", null, "5.8", null, "0.2", null, "6.6", null, "0.2", null, "6.7", null, "0.2", null, "6.8", null, "0.2", null, "6.2", null, "0.2", null, "6.2", null, "0.1", null, "6.2", null, "0.3", null, "6.2", null, "0.2", null, "5.7", null, "0.1", null, "5.5", null, "0.1", null, "5.6", null, "0.2", null, "6.5", null, "0.2", null, "5.9", null, "0.2", null, "5.3", null, "0.2", null, "3.7", null, "0.2", null, "2.6", null, "0.1", null, "2.9", null, "0.1", null, "12.4", null, "0.1", null, "3.9", null, "0.1", null, "21.9", null, "0.2", null, "9.5", null, "0.2", null, "38.2", null, "0.2", null, "80.6", null, "0.2", null, "78.1", null, "0.2", null, "74.0", null, "0.3", null, "26.9", null, "0.2", null, "24.5", null, "0.2", null, "20.5", null, "0.1", null, "9.2", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "19"], ["0400000US20", "Kansas", "2970606", null, "-555555555", "*****", "171018", null, "1775", null, "180310", null, "6426", null, "208378", null, "6460", null, "213250", null, "4445", null, "211120", null, "4785", null, "195343", null, "3989", null, "191382", null, "3355", null, "197118", null, "5850", null, "195743", null, "6081", null, "167660", null, "2969", null, "161431", null, "2703", null, "156462", null, "5271", null, "187617", null, "5457", null, "168867", null, "4406", null, "144613", null, "4356", null, "102958", null, "3437", null, "59100", null, "3078", null, "58236", null, "3315", null, "388688", null, "2490", null, "126922", null, "2251", null, "686628", null, "2410", null, "297448", null, "3900", null, "1203956", null, "4665", null, "2365753", null, "3744", null, "2283978", null, "2410", null, "2153234", null, "6621", null, "721391", null, "5843", null, "653486", null, "5258", null, "533774", null, "2557", null, "220294", null, "2257", null, "38.0", null, "0.2", null, "100.3", null, "0.5", null, "69.7", null, "0.3", null, "30.5", null, "0.2", null, "39.2", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.8", null, "0.1", null, "6.1", null, "0.2", null, "7.0", null, "0.2", null, "7.2", null, "0.1", null, "7.1", null, "0.2", null, "6.6", null, "0.1", null, "6.4", null, "0.1", null, "6.6", null, "0.2", null, "6.6", null, "0.2", null, "5.6", null, "0.1", null, "5.4", null, "0.1", null, "5.3", null, "0.2", null, "6.3", null, "0.2", null, "5.7", null, "0.1", null, "4.9", null, "0.1", null, "3.5", null, "0.1", null, "2.0", null, "0.1", null, "2.0", null, "0.1", null, "13.1", null, "0.1", null, "4.3", null, "0.1", null, "23.1", null, "0.1", null, "10.0", null, "0.1", null, "40.5", null, "0.2", null, "79.6", null, "0.1", null, "76.9", null, "0.1", null, "72.5", null, "0.2", null, "24.3", null, "0.2", null, "22.0", null, "0.2", null, "18.0", null, "0.1", null, "7.4", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "0.9", null, "-888888888.0", "(X)", "1487233", null, "3961", null, "85163", null, "2051", null, "89992", null, "4154", null, "109523", null, "4448", null, "109172", null, "3240", null, "110315", null, "3202", null, "103104", null, "2884", null, "96322", null, "2210", null, "100009", null, "4024", null, "100621", null, "4009", null, "86456", null, "2186", null, "82688", null, "1873", null, "76445", null, "3503", null, "93763", null, "3343", null, "80831", null, "2640", null, "68613", null, "2875", null, "48779", null, "2156", null, "25277", null, "1832", null, "20160", null, "1907", null, "199515", null, "2411", null, "63685", null, "2188", null, "348363", null, "3657", null, "155802", null, "2648", null, "619543", null, "3833", null, "1179155", null, "3766", null, "1138870", null, "3217", null, "1070462", null, "4895", null, "337423", null, "3823", null, "302471", null, "3802", null, "243660", null, "1582", null, "94216", null, "1391", null, "37.1", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.7", null, "0.1", null, "6.1", null, "0.3", null, "7.4", null, "0.3", null, "7.3", null, "0.2", null, "7.4", null, "0.2", null, "6.9", null, "0.2", null, "6.5", null, "0.1", null, "6.7", null, "0.3", null, "6.8", null, "0.3", null, "5.8", null, "0.1", null, "5.6", null, "0.1", null, "5.1", null, "0.2", null, "6.3", null, "0.2", null, "5.4", null, "0.2", null, "4.6", null, "0.2", null, "3.3", null, "0.1", null, "1.7", null, "0.1", null, "1.4", null, "0.1", null, "13.4", null, "0.2", null, "4.3", null, "0.1", null, "23.4", null, "0.2", null, "10.5", null, "0.2", null, "41.7", null, "0.2", null, "79.3", null, "0.2", null, "76.6", null, "0.2", null, "72.0", null, "0.3", null, "22.7", null, "0.3", null, "20.3", null, "0.3", null, "16.4", null, "0.1", null, "6.3", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "1483373", null, "3961", null, "85855", null, "1985", null, "90318", null, "4185", null, "98855", null, "4308", null, "104078", null, "3427", null, "100805", null, "2960", null, "92239", null, "2490", null, "95060", null, "2457", null, "97109", null, "4289", null, "95122", null, "3981", null, "81204", null, "2222", null, "78743", null, "1778", null, "80017", null, "3187", null, "93854", null, "3427", null, "88036", null, "2873", null, "76000", null, "2696", null, "54179", null, "2364", null, "33823", null, "2212", null, "38076", null, "2310", null, "189173", null, "1993", null, "63237", null, "2117", null, "338265", null, "3403", null, "141646", null, "2550", null, "584413", null, "3567", null, "1186598", null, "3319", null, "1145108", null, "2198", null, "1082772", null, "3980", null, "383968", null, "3682", null, "351015", null, "3527", null, "290114", null, "2167", null, "126078", null, "1600", null, "39.0", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.8", null, "0.1", null, "6.1", null, "0.3", null, "6.7", null, "0.3", null, "7.0", null, "0.2", null, "6.8", null, "0.2", null, "6.2", null, "0.2", null, "6.4", null, "0.2", null, "6.5", null, "0.3", null, "6.4", null, "0.3", null, "5.5", null, "0.2", null, "5.3", null, "0.1", null, "5.4", null, "0.2", null, "6.3", null, "0.2", null, "5.9", null, "0.2", null, "5.1", null, "0.2", null, "3.7", null, "0.2", null, "2.3", null, "0.1", null, "2.6", null, "0.2", null, "12.8", null, "0.1", null, "4.3", null, "0.1", null, "22.8", null, "0.2", null, "9.5", null, "0.2", null, "39.4", null, "0.2", null, "80.0", null, "0.2", null, "77.2", null, "0.2", null, "73.0", null, "0.3", null, "25.9", null, "0.2", null, "23.7", null, "0.2", null, "19.6", null, "0.1", null, "8.5", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "20"], ["0400000US21", "Kentucky", "4588372", null, "-555555555", "*****", "261525", null, "3142", null, "270128", null, "8424", null, "300036", null, "8214", null, "309599", null, "4767", null, "300912", null, "5270", null, "293882", null, "3787", null, "305546", null, "3541", null, "296214", null, "8554", null, "296018", null, "7980", null, "274867", null, "3845", null, "279009", null, "2842", null, "276551", null, "7253", null, "298235", null, "7232", null, "273497", null, "5831", null, "220019", null, "5629", null, "163709", null, "4658", null, "92498", null, "4345", null, "76127", null, "3891", null, "570164", null, "3565", null, "188522", null, "2619", null, "1020211", null, "3177", null, "421989", null, "4232", null, "1802171", null, "5262", null, "3691655", null, "4535", null, "3568161", null, "3177", null, "3386869", null, "7465", null, "1124085", null, "7532", null, "1003687", null, "6275", null, "825850", null, "3062", null, "332334", null, "2057", null, "39.3", null, "0.2", null, "98.3", null, "0.4", null, "67.3", null, "0.2", null, "30.1", null, "0.1", null, "37.2", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.7", null, "0.1", null, "5.9", null, "0.2", null, "6.5", null, "0.2", null, "6.7", null, "0.1", null, "6.6", null, "0.1", null, "6.4", null, "0.1", null, "6.7", null, "0.1", null, "6.5", null, "0.2", null, "6.5", null, "0.2", null, "6.0", null, "0.1", null, "6.1", null, "0.1", null, "6.0", null, "0.2", null, "6.5", null, "0.2", null, "6.0", null, "0.1", null, "4.8", null, "0.1", null, "3.6", null, "0.1", null, "2.0", null, "0.1", null, "1.7", null, "0.1", null, "12.4", null, "0.1", null, "4.1", null, "0.1", null, "22.2", null, "0.1", null, "9.2", null, "0.1", null, "39.3", null, "0.1", null, "80.5", null, "0.1", null, "77.8", null, "0.1", null, "73.8", null, "0.2", null, "24.5", null, "0.2", null, "21.9", null, "0.1", null, "18.0", null, "0.1", null, "7.2", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.1", null, "-888888888.0", "(X)", "2274627", null, "4473", null, "132062", null, "2746", null, "139342", null, "5290", null, "155538", null, "5242", null, "158229", null, "4118", null, "154815", null, "3304", null, "151435", null, "2751", null, "155424", null, "2495", null, "150493", null, "6380", null, "147439", null, "5687", null, "137984", null, "2944", null, "140023", null, "2036", null, "135600", null, "4688", null, "143533", null, "4855", null, "130049", null, "4422", null, "101534", null, "4204", null, "77070", null, "2911", null, "37681", null, "2639", null, "26376", null, "2245", null, "294880", null, "3025", null, "95881", null, "2857", null, "522823", null, "3875", null, "217163", null, "2987", null, "917835", null, "4881", null, "1815087", null, "4667", null, "1751804", null, "3709", null, "1656244", null, "6187", null, "516243", null, "5002", null, "457937", null, "4678", null, "372710", null, "2053", null, "141127", null, "1402", null, "37.9", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.8", null, "0.1", null, "6.1", null, "0.2", null, "6.8", null, "0.2", null, "7.0", null, "0.2", null, "6.8", null, "0.1", null, "6.7", null, "0.1", null, "6.8", null, "0.1", null, "6.6", null, "0.3", null, "6.5", null, "0.3", null, "6.1", null, "0.1", null, "6.2", null, "0.1", null, "6.0", null, "0.2", null, "6.3", null, "0.2", null, "5.7", null, "0.2", null, "4.5", null, "0.2", null, "3.4", null, "0.1", null, "1.7", null, "0.1", null, "1.2", null, "0.1", null, "13.0", null, "0.1", null, "4.2", null, "0.1", null, "23.0", null, "0.1", null, "9.5", null, "0.1", null, "40.4", null, "0.2", null, "79.8", null, "0.2", null, "77.0", null, "0.1", null, "72.8", null, "0.2", null, "22.7", null, "0.2", null, "20.1", null, "0.2", null, "16.4", null, "0.1", null, "6.2", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "2313745", null, "4473", null, "129463", null, "2487", null, "130786", null, "5159", null, "144498", null, "5130", null, "151370", null, "3760", null, "146097", null, "3742", null, "142447", null, "2917", null, "150122", null, "2524", null, "145721", null, "5204", null, "148579", null, "5421", null, "136883", null, "2255", null, "138986", null, "1881", null, "140951", null, "4502", null, "154702", null, "4500", null, "143448", null, "3697", null, "118485", null, "3851", null, "86639", null, "2818", null, "54817", null, "2858", null, "49751", null, "2932", null, "275284", null, "2647", null, "92641", null, "2775", null, "497388", null, "3970", null, "204826", null, "3218", null, "884336", null, "4645", null, "1876568", null, "4393", null, "1816357", null, "3464", null, "1730625", null, "5191", null, "607842", null, "4872", null, "545750", null, "4226", null, "453140", null, "2132", null, "191207", null, "1444", null, "40.5", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.6", null, "0.1", null, "5.7", null, "0.2", null, "6.2", null, "0.2", null, "6.5", null, "0.2", null, "6.3", null, "0.2", null, "6.2", null, "0.1", null, "6.5", null, "0.1", null, "6.3", null, "0.2", null, "6.4", null, "0.2", null, "5.9", null, "0.1", null, "6.0", null, "0.1", null, "6.1", null, "0.2", null, "6.7", null, "0.2", null, "6.2", null, "0.2", null, "5.1", null, "0.2", null, "3.7", null, "0.1", null, "2.4", null, "0.1", null, "2.2", null, "0.1", null, "11.9", null, "0.1", null, "4.0", null, "0.1", null, "21.5", null, "0.1", null, "8.9", null, "0.1", null, "38.2", null, "0.2", null, "81.1", null, "0.2", null, "78.5", null, "0.1", null, "74.8", null, "0.2", null, "26.3", null, "0.2", null, "23.6", null, "0.2", null, "19.6", null, "0.1", null, "8.3", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "21"], ["0400000US22", "Louisiana", "4597740", null, "-555555555", "*****", "271498", null, "3655", null, "293400", null, "8704", null, "309524", null, "9235", null, "310430", null, "6660", null, "296434", null, "5816", null, "279202", null, "5242", null, "311808", null, "6235", null, "310392", null, "9828", null, "308217", null, "10126", null, "278409", null, "5479", null, "257029", null, "4615", null, "255271", null, "6638", null, "296262", null, "7222", null, "269672", null, "6467", null, "227173", null, "6445", null, "158976", null, "4759", null, "89904", null, "3722", null, "74139", null, "3615", null, "602924", null, "4206", null, "188115", null, "3618", null, "1062537", null, "2983", null, "418749", null, "6900", null, "1816483", null, "7413", null, "3657192", null, "4929", null, "3535203", null, "2983", null, "3356093", null, "7706", null, "1116126", null, "6854", null, "1001446", null, "6205", null, "819864", null, "3625", null, "323019", null, "3292", null, "38.7", null, "0.2", null, "95.2", null, "0.5", null, "69.3", null, "0.2", null, "30.2", null, "0.2", null, "39.1", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.9", null, "0.1", null, "6.4", null, "0.2", null, "6.7", null, "0.2", null, "6.8", null, "0.1", null, "6.4", null, "0.1", null, "6.1", null, "0.1", null, "6.8", null, "0.1", null, "6.8", null, "0.2", null, "6.7", null, "0.2", null, "6.1", null, "0.1", null, "5.6", null, "0.1", null, "5.6", null, "0.1", null, "6.4", null, "0.2", null, "5.9", null, "0.1", null, "4.9", null, "0.1", null, "3.5", null, "0.1", null, "2.0", null, "0.1", null, "1.6", null, "0.1", null, "13.1", null, "0.1", null, "4.1", null, "0.1", null, "23.1", null, "0.1", null, "9.1", null, "0.2", null, "39.5", null, "0.2", null, "79.5", null, "0.1", null, "76.9", null, "0.1", null, "73.0", null, "0.2", null, "24.3", null, "0.1", null, "21.8", null, "0.1", null, "17.8", null, "0.1", null, "7.0", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "2.1", null, "-888888888.0", "(X)", "2242572", null, "6283", null, "137324", null, "3986", null, "150976", null, "6863", null, "154751", null, "6896", null, "161318", null, "5255", null, "149377", null, "4955", null, "140159", null, "4326", null, "148481", null, "4382", null, "148925", null, "6104", null, "158937", null, "7103", null, "135459", null, "4049", null, "126970", null, "3433", null, "123000", null, "4300", null, "139767", null, "4608", null, "124504", null, "4207", null, "105732", null, "4089", null, "70544", null, "3428", null, "39265", null, "2312", null, "27083", null, "2258", null, "305727", null, "3538", null, "97752", null, "3129", null, "540803", null, "5740", null, "212943", null, "5495", null, "907197", null, "6044", null, "1760740", null, "4615", null, "1701769", null, "3127", null, "1610724", null, "5882", null, "506895", null, "4557", null, "452685", null, "4313", null, "367128", null, "2542", null, "136892", null, "2271", null, "37.9", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.1", null, "0.2", null, "6.7", null, "0.3", null, "6.9", null, "0.3", null, "7.2", null, "0.2", null, "6.7", null, "0.2", null, "6.2", null, "0.2", null, "6.6", null, "0.2", null, "6.6", null, "0.3", null, "7.1", null, "0.3", null, "6.0", null, "0.2", null, "5.7", null, "0.2", null, "5.5", null, "0.2", null, "6.2", null, "0.2", null, "5.6", null, "0.2", null, "4.7", null, "0.2", null, "3.1", null, "0.2", null, "1.8", null, "0.1", null, "1.2", null, "0.1", null, "13.6", null, "0.1", null, "4.4", null, "0.1", null, "24.1", null, "0.2", null, "9.5", null, "0.2", null, "40.5", null, "0.3", null, "78.5", null, "0.2", null, "75.9", null, "0.2", null, "71.8", null, "0.3", null, "22.6", null, "0.2", null, "20.2", null, "0.2", null, "16.4", null, "0.1", null, "6.1", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "2355168", null, "6283", null, "134174", null, "4037", null, "142424", null, "6776", null, "154773", null, "6579", null, "149112", null, "4343", null, "147057", null, "3881", null, "139043", null, "3063", null, "163327", null, "4166", null, "161467", null, "6713", null, "149280", null, "6888", null, "142950", null, "3785", null, "130059", null, "3628", null, "132271", null, "4450", null, "156495", null, "4517", null, "145168", null, "4682", null, "121441", null, "4384", null, "88432", null, "3027", null, "50639", null, "3165", null, "47056", null, "2700", null, "297197", null, "3970", null, "90363", null, "3574", null, "521734", null, "5715", null, "205806", null, "4047", null, "909286", null, "5379", null, "1896452", null, "3993", null, "1833434", null, "2377", null, "1745369", null, "5024", null, "609231", null, "4795", null, "548761", null, "4412", null, "452736", null, "2477", null, "186127", null, "1947", null, "39.6", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.7", null, "0.2", null, "6.0", null, "0.3", null, "6.6", null, "0.3", null, "6.3", null, "0.2", null, "6.2", null, "0.2", null, "5.9", null, "0.1", null, "6.9", null, "0.2", null, "6.9", null, "0.3", null, "6.3", null, "0.3", null, "6.1", null, "0.2", null, "5.5", null, "0.2", null, "5.6", null, "0.2", null, "6.6", null, "0.2", null, "6.2", null, "0.2", null, "5.2", null, "0.2", null, "3.8", null, "0.1", null, "2.2", null, "0.1", null, "2.0", null, "0.1", null, "12.6", null, "0.2", null, "3.8", null, "0.1", null, "22.2", null, "0.2", null, "8.7", null, "0.2", null, "38.6", null, "0.2", null, "80.5", null, "0.2", null, "77.8", null, "0.2", null, "74.1", null, "0.2", null, "25.9", null, "0.2", null, "23.3", null, "0.2", null, "19.2", null, "0.1", null, "7.9", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "22"], ["0400000US23", "Maine", "1405012", null, "-555555555", "*****", "58509", null, "1046", null, "72063", null, "3490", null, "68336", null, "3295", null, "80330", null, "2187", null, "75917", null, "2276", null, "80792", null, "2330", null, "91293", null, "2106", null, "87739", null, "4649", null, "89227", null, "4506", null, "77878", null, "1101", null, "88932", null, "1566", null, "91659", null, "4382", null, "112411", null, "4290", null, "101584", null, "4155", null, "92287", null, "4126", null, "65064", null, "3171", null, "39071", null, "2729", null, "31920", null, "2707", null, "140399", null, "1684", null, "45771", null, "1291", null, "244679", null, "977", null, "110476", null, "2133", null, "505298", null, "2417", null, "1190522", null, "2126", null, "1160333", null, "977", null, "1109354", null, "2989", null, "442337", null, "4385", null, "399102", null, "3839", null, "329926", null, "1351", null, "136055", null, "715", null, "44.9", null, "0.2", null, "97.2", null, "0.7", null, "69.2", null, "0.3", null, "39.7", null, "0.2", null, "29.5", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.2", null, "0.1", null, "5.1", null, "0.2", null, "4.9", null, "0.2", null, "5.7", null, "0.2", null, "5.4", null, "0.2", null, "5.8", null, "0.2", null, "6.5", null, "0.1", null, "6.2", null, "0.3", null, "6.4", null, "0.3", null, "5.5", null, "0.1", null, "6.3", null, "0.1", null, "6.5", null, "0.3", null, "8.0", null, "0.3", null, "7.2", null, "0.3", null, "6.6", null, "0.3", null, "4.6", null, "0.2", null, "2.8", null, "0.2", null, "2.3", null, "0.2", null, "10.0", null, "0.1", null, "3.3", null, "0.1", null, "17.4", null, "0.1", null, "7.9", null, "0.2", null, "36.0", null, "0.2", null, "84.7", null, "0.2", null, "82.6", null, "0.1", null, "79.0", null, "0.2", null, "31.5", null, "0.3", null, "28.4", null, "0.3", null, "23.5", null, "0.1", null, "9.7", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.2", null, "-888888888.0", "(X)", "692688", null, "2708", null, "30280", null, "881", null, "36610", null, "2426", null, "35417", null, "2293", null, "42330", null, "1776", null, "39747", null, "1454", null, "40350", null, "1454", null, "45474", null, "1205", null, "43767", null, "2568", null, "43674", null, "2624", null, "38917", null, "925", null, "44401", null, "1302", null, "44218", null, "2560", null, "54693", null, "2554", null, "48978", null, "2604", null, "43584", null, "2568", null, "30152", null, "1781", null, "17269", null, "1556", null, "12827", null, "1468", null, "72027", null, "995", null, "23956", null, "1391", null, "126263", null, "1892", null, "58121", null, "1453", null, "255342", null, "2195", null, "582341", null, "2586", null, "566425", null, "1715", null, "539107", null, "2232", null, "207503", null, "2716", null, "184701", null, "2074", null, "152810", null, "1115", null, "60248", null, "495", null, "43.8", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.4", null, "0.1", null, "5.3", null, "0.3", null, "5.1", null, "0.3", null, "6.1", null, "0.2", null, "5.7", null, "0.2", null, "5.8", null, "0.2", null, "6.6", null, "0.2", null, "6.3", null, "0.4", null, "6.3", null, "0.4", null, "5.6", null, "0.1", null, "6.4", null, "0.2", null, "6.4", null, "0.4", null, "7.9", null, "0.4", null, "7.1", null, "0.4", null, "6.3", null, "0.4", null, "4.4", null, "0.3", null, "2.5", null, "0.2", null, "1.9", null, "0.2", null, "10.4", null, "0.1", null, "3.5", null, "0.2", null, "18.2", null, "0.2", null, "8.4", null, "0.2", null, "36.9", null, "0.3", null, "84.1", null, "0.3", null, "81.8", null, "0.2", null, "77.8", null, "0.3", null, "30.0", null, "0.4", null, "26.7", null, "0.3", null, "22.1", null, "0.2", null, "8.7", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "712324", null, "2708", null, "28229", null, "1063", null, "35453", null, "2191", null, "32919", null, "2111", null, "38000", null, "1962", null, "36170", null, "1551", null, "40442", null, "1441", null, "45819", null, "1446", null, "43972", null, "2896", null, "45553", null, "2873", null, "38961", null, "785", null, "44531", null, "937", null, "47441", null, "2834", null, "57718", null, "2926", null, "52606", null, "2513", null, "48703", null, "2578", null, "34912", null, "2042", null, "21802", null, "1815", null, "19093", null, "1925", null, "68372", null, "1240", null, "21815", null, "1489", null, "118416", null, "1899", null, "52355", null, "1416", null, "249956", null, "2145", null, "608181", null, "2543", null, "593908", null, "1525", null, "570247", null, "2253", null, "234834", null, "2925", null, "214401", null, "2937", null, "177116", null, "955", null, "75807", null, "545", null, "46.1", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.0", null, "0.1", null, "5.0", null, "0.3", null, "4.6", null, "0.3", null, "5.3", null, "0.3", null, "5.1", null, "0.2", null, "5.7", null, "0.2", null, "6.4", null, "0.2", null, "6.2", null, "0.4", null, "6.4", null, "0.4", null, "5.5", null, "0.1", null, "6.3", null, "0.1", null, "6.7", null, "0.4", null, "8.1", null, "0.4", null, "7.4", null, "0.4", null, "6.8", null, "0.4", null, "4.9", null, "0.3", null, "3.1", null, "0.3", null, "2.7", null, "0.3", null, "9.6", null, "0.2", null, "3.1", null, "0.2", null, "16.6", null, "0.2", null, "7.3", null, "0.2", null, "35.1", null, "0.2", null, "85.4", null, "0.3", null, "83.4", null, "0.2", null, "80.1", null, "0.3", null, "33.0", null, "0.4", null, "30.1", null, "0.4", null, "24.9", null, "0.2", null, "10.6", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "23"], ["0400000US24", "Maryland", "6263220", null, "-555555555", "*****", "350973", null, "2514", null, "374228", null, "9160", null, "395317", null, "9372", null, "401855", null, "4241", null, "376761", null, "4434", null, "382738", null, "3447", null, "424852", null, "3138", null, "443637", null, "11999", null, "432858", null, "12575", null, "382502", null, "3388", null, "384466", null, "3276", null, "394649", null, "9241", null, "418632", null, "8979", null, "351727", null, "6179", null, "285727", null, "6173", null, "213371", null, "5742", null, "134331", null, "5202", null, "114596", null, "5806", null, "769545", null, "2352", null, "247825", null, "1920", null, "1368343", null, "1635", null, "530791", null, "3680", null, "2462701", null, "4749", null, "5059385", null, "5148", null, "4894877", null, "1635", null, "4669787", null, "5566", null, "1518384", null, "9714", null, "1352130", null, "9229", null, "1099752", null, "2690", null, "462298", null, "2473", null, "39.8", null, "0.2", null, "94.2", null, "0.2", null, "65.0", null, "0.1", null, "29.0", null, "0.1", null, "36.1", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.6", null, "0.1", null, "6.0", null, "0.1", null, "6.3", null, "0.1", null, "6.4", null, "0.1", null, "6.0", null, "0.1", null, "6.1", null, "0.1", null, "6.8", null, "0.1", null, "7.1", null, "0.2", null, "6.9", null, "0.2", null, "6.1", null, "0.1", null, "6.1", null, "0.1", null, "6.3", null, "0.1", null, "6.7", null, "0.1", null, "5.6", null, "0.1", null, "4.6", null, "0.1", null, "3.4", null, "0.1", null, "2.1", null, "0.1", null, "1.8", null, "0.1", null, "12.3", null, "0.1", null, "4.0", null, "0.1", null, "21.8", null, "0.1", null, "8.5", null, "0.1", null, "39.3", null, "0.1", null, "80.8", null, "0.1", null, "78.2", null, "0.1", null, "74.6", null, "0.1", null, "24.2", null, "0.2", null, "21.6", null, "0.1", null, "17.6", null, "0.1", null, "7.4", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.7", null, "-888888888.0", "(X)", "3038142", null, "3523", null, "177047", null, "2250", null, "189746", null, "6701", null, "200672", null, "6610", null, "208199", null, "3310", null, "189614", null, "2990", null, "189465", null, "2495", null, "207027", null, "2156", null, "220102", null, "8201", null, "211755", null, "8452", null, "188821", null, "2519", null, "185364", null, "2355", null, "186370", null, "5683", null, "202865", null, "5226", null, "159496", null, "4244", null, "132856", null, "4469", null, "91521", null, "3237", null, "56638", null, "3239", null, "40584", null, "3302", null, "390418", null, "2227", null, "128909", null, "1848", null, "696374", null, "2914", null, "268904", null, "2717", null, "1226162", null, "3634", null, "2427945", null, "4695", null, "2341768", null, "2179", null, "2225332", null, "4560", null, "683960", null, "5663", null, "603203", null, "5347", null, "481095", null, "1642", null, "188743", null, "1419", null, "38.5", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.8", null, "0.1", null, "6.2", null, "0.2", null, "6.6", null, "0.2", null, "6.9", null, "0.1", null, "6.2", null, "0.1", null, "6.2", null, "0.1", null, "6.8", null, "0.1", null, "7.2", null, "0.3", null, "7.0", null, "0.3", null, "6.2", null, "0.1", null, "6.1", null, "0.1", null, "6.1", null, "0.2", null, "6.7", null, "0.2", null, "5.2", null, "0.1", null, "4.4", null, "0.1", null, "3.0", null, "0.1", null, "1.9", null, "0.1", null, "1.3", null, "0.1", null, "12.9", null, "0.1", null, "4.2", null, "0.1", null, "22.9", null, "0.1", null, "8.9", null, "0.1", null, "40.4", null, "0.1", null, "79.9", null, "0.1", null, "77.1", null, "0.1", null, "73.2", null, "0.2", null, "22.5", null, "0.2", null, "19.9", null, "0.2", null, "15.8", null, "0.1", null, "6.2", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "3225078", null, "3523", null, "173926", null, "2087", null, "184482", null, "6407", null, "194645", null, "6679", null, "193656", null, "3311", null, "187147", null, "3071", null, "193273", null, "2001", null, "217825", null, "2703", null, "223535", null, "6489", null, "221103", null, "6843", null, "193681", null, "2204", null, "199102", null, "1885", null, "208279", null, "6279", null, "215767", null, "6152", null, "192231", null, "4624", null, "152871", null, "4453", null, "121850", null, "4817", null, "77693", null, "3885", null, "74012", null, "4318", null, "379127", null, "2337", null, "118916", null, "2162", null, "671969", null, "3264", null, "261887", null, "2140", null, "1236539", null, "3820", null, "2631440", null, "4484", null, "2553109", null, "2069", null, "2444455", null, "4235", null, "834424", null, "6752", null, "748927", null, "6560", null, "618657", null, "1843", null, "273555", null, "1983", null, "40.9", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.1", null, "5.7", null, "0.2", null, "6.0", null, "0.2", null, "6.0", null, "0.1", null, "5.8", null, "0.1", null, "6.0", null, "0.1", null, "6.8", null, "0.1", null, "6.9", null, "0.2", null, "6.9", null, "0.2", null, "6.0", null, "0.1", null, "6.2", null, "0.1", null, "6.5", null, "0.2", null, "6.7", null, "0.2", null, "6.0", null, "0.1", null, "4.7", null, "0.1", null, "3.8", null, "0.1", null, "2.4", null, "0.1", null, "2.3", null, "0.1", null, "11.8", null, "0.1", null, "3.7", null, "0.1", null, "20.8", null, "0.1", null, "8.1", null, "0.1", null, "38.3", null, "0.1", null, "81.6", null, "0.1", null, "79.2", null, "0.1", null, "75.8", null, "0.1", null, "25.9", null, "0.2", null, "23.2", null, "0.2", null, "19.2", null, "0.1", null, "8.5", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "24"], ["0400000US25", "Massachusetts", "7136171", null, "-555555555", "*****", "346996", null, "1671", null, "360104", null, "8110", null, "396840", null, "8238", null, "462859", null, "4423", null, "495030", null, "3779", null, "492596", null, "2656", null, "504160", null, "2209", null, "496754", null, "8506", null, "462408", null, "9078", null, "413472", null, "2651", null, "432547", null, "2626", null, "456096", null, "8215", null, "480367", null, "8311", null, "429466", null, "7766", null, "340833", null, "7389", null, "255643", null, "7026", null, "166535", null, "6566", null, "143465", null, "5645", null, "756944", null, "1912", null, "250825", null, "1529", null, "1354765", null, "606", null, "707064", null, "2951", null, "2913807", null, "3264", null, "5953821", null, "4706", null, "5781406", null, "606", null, "5457681", null, "7325", null, "1816309", null, "8246", null, "1627685", null, "7708", null, "1335942", null, "1533", null, "565643", null, "1853", null, "40.1", null, "0.2", null, "95.2", null, "0.1", null, "60.5", null, "0.1", null, "30.1", null, "0.1", null, "30.5", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.9", null, "0.1", null, "5.0", null, "0.1", null, "5.6", null, "0.1", null, "6.5", null, "0.1", null, "6.9", null, "0.1", null, "6.9", null, "0.1", null, "7.1", null, "0.1", null, "7.0", null, "0.1", null, "6.5", null, "0.1", null, "5.8", null, "0.1", null, "6.1", null, "0.1", null, "6.4", null, "0.1", null, "6.7", null, "0.1", null, "6.0", null, "0.1", null, "4.8", null, "0.1", null, "3.6", null, "0.1", null, "2.3", null, "0.1", null, "2.0", null, "0.1", null, "10.6", null, "0.1", null, "3.5", null, "0.1", null, "19.0", null, "0.1", null, "9.9", null, "0.1", null, "40.8", null, "0.1", null, "83.4", null, "0.1", null, "81.0", null, "0.1", null, "76.5", null, "0.1", null, "25.5", null, "0.1", null, "22.8", null, "0.1", null, "18.7", null, "0.1", null, "7.9", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.5", null, "-888888888.0", "(X)", "3481139", null, "2519", null, "177079", null, "1526", null, "184339", null, "6090", null, "200618", null, "6170", null, "228873", null, "2760", null, "246922", null, "2383", null, "245706", null, "2168", null, "253610", null, "1760", null, "250779", null, "6744", null, "227883", null, "6904", null, "203012", null, "1645", null, "212435", null, "1828", null, "222419", null, "5600", null, "230958", null, "5590", null, "204404", null, "4922", null, "158360", null, "4826", null, "114976", null, "4100", null, "67411", null, "3710", null, "51355", null, "3327", null, "384957", null, "1510", null, "127226", null, "1272", null, "689262", null, "2286", null, "348569", null, "2145", null, "1453773", null, "2299", null, "2878154", null, "3899", null, "2791877", null, "1282", null, "2635796", null, "4708", null, "827464", null, "5455", null, "742489", null, "5701", null, "596506", null, "1094", null, "233742", null, "1373", null, "39.1", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.1", null, "0.1", null, "5.3", null, "0.2", null, "5.8", null, "0.2", null, "6.6", null, "0.1", null, "7.1", null, "0.1", null, "7.1", null, "0.1", null, "7.3", null, "0.1", null, "7.2", null, "0.2", null, "6.5", null, "0.2", null, "5.8", null, "0.1", null, "6.1", null, "0.1", null, "6.4", null, "0.2", null, "6.6", null, "0.2", null, "5.9", null, "0.1", null, "4.5", null, "0.1", null, "3.3", null, "0.1", null, "1.9", null, "0.1", null, "1.5", null, "0.1", null, "11.1", null, "0.1", null, "3.7", null, "0.1", null, "19.8", null, "0.1", null, "10.0", null, "0.1", null, "41.8", null, "0.1", null, "82.7", null, "0.1", null, "80.2", null, "0.1", null, "75.7", null, "0.1", null, "23.8", null, "0.2", null, "21.3", null, "0.2", null, "17.1", null, "0.1", null, "6.7", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "3655032", null, "2519", null, "169917", null, "1318", null, "175765", null, "6030", null, "196222", null, "5824", null, "233986", null, "2958", null, "248108", null, "2782", null, "246890", null, "1648", null, "250550", null, "1546", null, "245975", null, "5250", null, "234525", null, "5713", null, "210460", null, "1797", null, "220112", null, "1657", null, "233677", null, "5524", null, "249409", null, "5613", null, "225062", null, "5485", null, "182473", null, "5272", null, "140667", null, "4848", null, "99124", null, "4733", null, "92110", null, "4277", null, "371987", null, "1767", null, "123599", null, "1619", null, "665503", null, "2258", null, "358495", null, "1885", null, "1460034", null, "2771", null, "3075667", null, "3620", null, "2989529", null, "1274", null, "2821885", null, "4913", null, "988845", null, "5661", null, "885196", null, "5608", null, "739436", null, "1149", null, "331901", null, "1216", null, "41.3", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.6", null, "0.1", null, "4.8", null, "0.2", null, "5.4", null, "0.2", null, "6.4", null, "0.1", null, "6.8", null, "0.1", null, "6.8", null, "0.1", null, "6.9", null, "0.1", null, "6.7", null, "0.1", null, "6.4", null, "0.2", null, "5.8", null, "0.1", null, "6.0", null, "0.1", null, "6.4", null, "0.2", null, "6.8", null, "0.2", null, "6.2", null, "0.1", null, "5.0", null, "0.1", null, "3.8", null, "0.1", null, "2.7", null, "0.1", null, "2.5", null, "0.1", null, "10.2", null, "0.1", null, "3.4", null, "0.1", null, "18.2", null, "0.1", null, "9.8", null, "0.1", null, "39.9", null, "0.1", null, "84.1", null, "0.1", null, "81.8", null, "0.1", null, "77.2", null, "0.2", null, "27.1", null, "0.1", null, "24.2", null, "0.2", null, "20.2", null, "0.1", null, "9.1", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "25"], ["0400000US26", "Michigan", "10140459", null, "-555555555", "*****", "524888", null, "2207", null, "573436", null, "9658", null, "614522", null, "9706", null, "652892", null, "6088", null, "672333", null, "4773", null, "651272", null, "4149", null, "693385", null, "3651", null, "642059", null, "10802", null, "613119", null, "9703", null, "576223", null, "4048", null, "614862", null, "3353", null, "631061", null, "10840", null, "692548", null, "10244", null, "638629", null, "9412", null, "542613", null, "9169", null, "368408", null, "6399", null, "233533", null, "5861", null, "204676", null, "4926", null, "1187958", null, "3236", null, "390909", null, "2841", null, "2103755", null, "2120", null, "934316", null, "4495", null, "3925060", null, "5269", null, "8302384", null, "5138", null, "8036704", null, "2120", null, "7641145", null, "8913", null, "2680407", null, "10754", null, "2405037", null, "8880", null, "1987859", null, "2771", null, "806617", null, "2164", null, "40.4", null, "0.2", null, "97.9", null, "0.2", null, "67.6", null, "0.1", null, "32.9", null, "0.1", null, "34.8", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.1", null, "5.7", null, "0.1", null, "6.1", null, "0.1", null, "6.4", null, "0.1", null, "6.6", null, "0.1", null, "6.4", null, "0.1", null, "6.8", null, "0.1", null, "6.3", null, "0.1", null, "6.0", null, "0.1", null, "5.7", null, "0.1", null, "6.1", null, "0.1", null, "6.2", null, "0.1", null, "6.8", null, "0.1", null, "6.3", null, "0.1", null, "5.4", null, "0.1", null, "3.6", null, "0.1", null, "2.3", null, "0.1", null, "2.0", null, "0.1", null, "11.7", null, "0.1", null, "3.9", null, "0.1", null, "20.7", null, "0.1", null, "9.2", null, "0.1", null, "38.7", null, "0.1", null, "81.9", null, "0.1", null, "79.3", null, "0.1", null, "75.4", null, "0.1", null, "26.4", null, "0.1", null, "23.7", null, "0.1", null, "19.6", null, "0.1", null, "8.0", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.1", null, "-888888888.0", "(X)", "5015542", null, "4173", null, "267785", null, "2168", null, "291483", null, "6565", null, "314990", null, "6672", null, "334102", null, "4154", null, "343862", null, "3242", null, "333788", null, "2600", null, "350338", null, "2373", null, "322335", null, "7456", null, "310051", null, "6914", null, "284751", null, "2503", null, "305719", null, "2177", null, "311172", null, "7105", null, "339268", null, "6387", null, "305317", null, "5265", null, "255233", null, "5216", null, "171986", null, "3693", null, "98018", null, "3516", null, "75344", null, "3198", null, "606473", null, "2611", null, "200490", null, "2502", null, "1074748", null, "3352", null, "477474", null, "2749", null, "1994476", null, "3955", null, "4077266", null, "4921", null, "3940794", null, "3502", null, "3739269", null, "6566", null, "1245166", null, "6657", null, "1107288", null, "5518", null, "905898", null, "1665", null, "345348", null, "1419", null, "39.2", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.3", null, "0.1", null, "5.8", null, "0.1", null, "6.3", null, "0.1", null, "6.7", null, "0.1", null, "6.9", null, "0.1", null, "6.7", null, "0.1", null, "7.0", null, "0.1", null, "6.4", null, "0.1", null, "6.2", null, "0.1", null, "5.7", null, "0.1", null, "6.1", null, "0.1", null, "6.2", null, "0.1", null, "6.8", null, "0.1", null, "6.1", null, "0.1", null, "5.1", null, "0.1", null, "3.4", null, "0.1", null, "2.0", null, "0.1", null, "1.5", null, "0.1", null, "12.1", null, "0.1", null, "4.0", null, "0.1", null, "21.4", null, "0.1", null, "9.5", null, "0.1", null, "39.8", null, "0.1", null, "81.3", null, "0.1", null, "78.6", null, "0.1", null, "74.6", null, "0.1", null, "24.8", null, "0.1", null, "22.1", null, "0.1", null, "18.1", null, "0.1", null, "6.9", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5124917", null, "4173", null, "257103", null, "2005", null, "281953", null, "6693", null, "299532", null, "6765", null, "318790", null, "3850", null, "328471", null, "3580", null, "317484", null, "2973", null, "343047", null, "2834", null, "319724", null, "7443", null, "303068", null, "7191", null, "291472", null, "2968", null, "309143", null, "2367", null, "319889", null, "6949", null, "353280", null, "7115", null, "333312", null, "6325", null, "287380", null, "6260", null, "196422", null, "4467", null, "135515", null, "4419", null, "129332", null, "3968", null, "581485", null, "2532", null, "190419", null, "2229", null, "1029007", null, "3041", null, "456842", null, "3293", null, "1930584", null, "4177", null, "4225118", null, "5436", null, "4095910", null, "3238", null, "3901876", null, "6512", null, "1435241", null, "7367", null, "1297749", null, "7221", null, "1081961", null, "2158", null, "461269", null, "1703", null, "41.6", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.0", null, "0.1", null, "5.5", null, "0.1", null, "5.8", null, "0.1", null, "6.2", null, "0.1", null, "6.4", null, "0.1", null, "6.2", null, "0.1", null, "6.7", null, "0.1", null, "6.2", null, "0.1", null, "5.9", null, "0.1", null, "5.7", null, "0.1", null, "6.0", null, "0.1", null, "6.2", null, "0.1", null, "6.9", null, "0.1", null, "6.5", null, "0.1", null, "5.6", null, "0.1", null, "3.8", null, "0.1", null, "2.6", null, "0.1", null, "2.5", null, "0.1", null, "11.3", null, "0.1", null, "3.7", null, "0.1", null, "20.1", null, "0.1", null, "8.9", null, "0.1", null, "37.7", null, "0.1", null, "82.4", null, "0.1", null, "79.9", null, "0.1", null, "76.1", null, "0.1", null, "28.0", null, "0.1", null, "25.3", null, "0.1", null, "21.1", null, "0.1", null, "9.0", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "26"], ["0400000US27", "Minnesota", "5793151", null, "-555555555", "*****", "318595", null, "2556", null, "356597", null, "7680", null, "380214", null, "7118", null, "387902", null, "3994", null, "367393", null, "4834", null, "361846", null, "3462", null, "387308", null, "2950", null, "402071", null, "7944", null, "394824", null, "8401", null, "339460", null, "3025", null, "327027", null, "3129", null, "326177", null, "6494", null, "387464", null, "6244", null, "332844", null, "6646", null, "285549", null, "6512", null, "194459", null, "5102", null, "124765", null, "4282", null, "118656", null, "4319", null, "736811", null, "2969", null, "235418", null, "2006", null, "1290824", null, "2531", null, "519877", null, "4739", null, "2301344", null, "4982", null, "4663287", null, "4034", null, "4502327", null, "2531", null, "4273685", null, "7115", null, "1443737", null, "6938", null, "1289428", null, "6946", null, "1056273", null, "2817", null, "437880", null, "1652", null, "39.2", null, "0.1", null, "100.1", null, "0.3", null, "68.1", null, "0.2", null, "30.7", null, "0.1", null, "37.5", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.1", null, "6.2", null, "0.1", null, "6.6", null, "0.1", null, "6.7", null, "0.1", null, "6.3", null, "0.1", null, "6.2", null, "0.1", null, "6.7", null, "0.1", null, "6.9", null, "0.1", null, "6.8", null, "0.1", null, "5.9", null, "0.1", null, "5.6", null, "0.1", null, "5.6", null, "0.1", null, "6.7", null, "0.1", null, "5.7", null, "0.1", null, "4.9", null, "0.1", null, "3.4", null, "0.1", null, "2.2", null, "0.1", null, "2.0", null, "0.1", null, "12.7", null, "0.1", null, "4.1", null, "0.1", null, "22.3", null, "0.1", null, "9.0", null, "0.1", null, "39.7", null, "0.1", null, "80.5", null, "0.1", null, "77.7", null, "0.1", null, "73.8", null, "0.1", null, "24.9", null, "0.1", null, "22.3", null, "0.1", null, "18.2", null, "0.1", null, "7.6", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "0.9", null, "-888888888.0", "(X)", "2897870", null, "3949", null, "161865", null, "2037", null, "179607", null, "5108", null, "198527", null, "5064", null, "197834", null, "2752", null, "187308", null, "3296", null, "183867", null, "2481", null, "195946", null, "2046", null, "205892", null, "5574", null, "200650", null, "5577", null, "173640", null, "2430", null, "166967", null, "1958", null, "167362", null, "4455", null, "189443", null, "4182", null, "160324", null, "4074", null, "139668", null, "3920", null, "90060", null, "2880", null, "53708", null, "2477", null, "45202", null, "2410", null, "378134", null, "2372", null, "120379", null, "1741", null, "660378", null, "3371", null, "264763", null, "2971", null, "1171497", null, "4108", null, "2319597", null, "4042", null, "2237492", null, "3075", null, "2120217", null, "5629", null, "678405", null, "4612", null, "601468", null, "4475", null, "488962", null, "1719", null, "188970", null, "1091", null, "38.5", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.6", null, "0.1", null, "6.2", null, "0.2", null, "6.9", null, "0.2", null, "6.8", null, "0.1", null, "6.5", null, "0.1", null, "6.3", null, "0.1", null, "6.8", null, "0.1", null, "7.1", null, "0.2", null, "6.9", null, "0.2", null, "6.0", null, "0.1", null, "5.8", null, "0.1", null, "5.8", null, "0.2", null, "6.5", null, "0.1", null, "5.5", null, "0.1", null, "4.8", null, "0.1", null, "3.1", null, "0.1", null, "1.9", null, "0.1", null, "1.6", null, "0.1", null, "13.0", null, "0.1", null, "4.2", null, "0.1", null, "22.8", null, "0.1", null, "9.1", null, "0.1", null, "40.4", null, "0.1", null, "80.0", null, "0.1", null, "77.2", null, "0.1", null, "73.2", null, "0.2", null, "23.4", null, "0.2", null, "20.8", null, "0.2", null, "16.9", null, "0.1", null, "6.5", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "2895281", null, "3949", null, "156730", null, "1966", null, "176990", null, "5599", null, "181687", null, "4900", null, "190068", null, "2813", null, "180085", null, "3166", null, "177979", null, "2726", null, "191362", null, "1910", null, "196179", null, "5350", null, "194174", null, "5418", null, "165820", null, "1752", null, "160060", null, "2209", null, "158815", null, "3802", null, "198021", null, "3878", null, "172520", null, "4424", null, "145881", null, "4005", null, "104399", null, "3664", null, "71057", null, "2991", null, "73454", null, "3059", null, "358677", null, "2345", null, "115039", null, "1609", null, "630446", null, "3130", null, "255114", null, "3111", null, "1129847", null, "4575", null, "2343690", null, "3592", null, "2264835", null, "2723", null, "2153468", null, "4493", null, "765332", null, "4441", null, "687960", null, "4704", null, "567311", null, "2126", null, "248910", null, "1318", null, "39.9", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.1", null, "6.1", null, "0.2", null, "6.3", null, "0.2", null, "6.6", null, "0.1", null, "6.2", null, "0.1", null, "6.1", null, "0.1", null, "6.6", null, "0.1", null, "6.8", null, "0.2", null, "6.7", null, "0.2", null, "5.7", null, "0.1", null, "5.5", null, "0.1", null, "5.5", null, "0.1", null, "6.8", null, "0.1", null, "6.0", null, "0.2", null, "5.0", null, "0.1", null, "3.6", null, "0.1", null, "2.5", null, "0.1", null, "2.5", null, "0.1", null, "12.4", null, "0.1", null, "4.0", null, "0.1", null, "21.8", null, "0.1", null, "8.8", null, "0.1", null, "39.0", null, "0.1", null, "80.9", null, "0.1", null, "78.2", null, "0.1", null, "74.4", null, "0.2", null, "26.4", null, "0.2", null, "23.8", null, "0.2", null, "19.6", null, "0.1", null, "8.6", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "27"], ["0400000US28", "Mississippi", "2943045", null, "-555555555", "*****", "163692", null, "3924", null, "174865", null, "6885", null, "200709", null, "6838", null, "222194", null, "7838", null, "197983", null, "5660", null, "177690", null, "5837", null, "181437", null, "4170", null, "175077", null, "8243", null, "198628", null, "8020", null, "179102", null, "5248", null, "180264", null, "5034", null, "163553", null, "5507", null, "196504", null, "5070", null, "172857", null, "5993", null, "144619", null, "5653", null, "104544", null, "4009", null, "61071", null, "3863", null, "48256", null, "3039", null, "375574", null, "5573", null, "132731", null, "4141", null, "671997", null, "2867", null, "287446", null, "7079", null, "1153009", null, "8126", null, "2361219", null, "4587", null, "2271048", null, "2867", null, "2145003", null, "6724", null, "727851", null, "5026", null, "648513", null, "5064", null, "531347", null, "2677", null, "213871", null, "2304", null, "39.3", null, "0.3", null, "93.4", null, "0.8", null, "69.2", null, "0.4", null, "30.5", null, "0.2", null, "38.6", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.6", null, "0.1", null, "5.9", null, "0.2", null, "6.8", null, "0.2", null, "7.5", null, "0.3", null, "6.7", null, "0.2", null, "6.0", null, "0.2", null, "6.2", null, "0.1", null, "5.9", null, "0.3", null, "6.7", null, "0.3", null, "6.1", null, "0.2", null, "6.1", null, "0.2", null, "5.6", null, "0.2", null, "6.7", null, "0.2", null, "5.9", null, "0.2", null, "4.9", null, "0.2", null, "3.6", null, "0.1", null, "2.1", null, "0.1", null, "1.6", null, "0.1", null, "12.8", null, "0.2", null, "4.5", null, "0.1", null, "22.8", null, "0.1", null, "9.8", null, "0.2", null, "39.2", null, "0.3", null, "80.2", null, "0.2", null, "77.2", null, "0.1", null, "72.9", null, "0.2", null, "24.7", null, "0.2", null, "22.0", null, "0.2", null, "18.1", null, "0.1", null, "7.3", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.3", null, "-888888888.0", "(X)", "1421300", null, "6098", null, "82043", null, "3780", null, "88749", null, "4460", null, "104087", null, "5433", null, "113023", null, "6199", null, "104300", null, "3712", null, "86356", null, "3530", null, "84944", null, "3354", null, "81389", null, "4595", null, "96553", null, "4955", null, "87550", null, "4031", null, "88118", null, "3573", null, "76933", null, "4274", null, "93675", null, "3917", null, "77569", null, "3592", null, "67204", null, "3726", null, "46752", null, "2558", null, "23842", null, "2169", null, "18213", null, "1732", null, "192836", null, "4638", null, "68383", null, "4517", null, "343262", null, "6043", null, "148940", null, "4016", null, "566565", null, "6531", null, "1124589", null, "4605", null, "1078038", null, "3317", null, "1013149", null, "4652", null, "327255", null, "3892", null, "289431", null, "3556", null, "233580", null, "1711", null, "88807", null, "1775", null, "38.0", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.8", null, "0.3", null, "6.2", null, "0.3", null, "7.3", null, "0.4", null, "8.0", null, "0.4", null, "7.3", null, "0.3", null, "6.1", null, "0.3", null, "6.0", null, "0.2", null, "5.7", null, "0.3", null, "6.8", null, "0.3", null, "6.2", null, "0.3", null, "6.2", null, "0.3", null, "5.4", null, "0.3", null, "6.6", null, "0.3", null, "5.5", null, "0.3", null, "4.7", null, "0.3", null, "3.3", null, "0.2", null, "1.7", null, "0.2", null, "1.3", null, "0.1", null, "13.6", null, "0.3", null, "4.8", null, "0.3", null, "24.2", null, "0.3", null, "10.5", null, "0.3", null, "39.9", null, "0.4", null, "79.1", null, "0.3", null, "75.8", null, "0.3", null, "71.3", null, "0.4", null, "23.0", null, "0.3", null, "20.4", null, "0.3", null, "16.4", null, "0.1", null, "6.2", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "1521745", null, "6098", null, "81649", null, "3229", null, "86116", null, "5226", null, "96622", null, "3807", null, "109171", null, "5520", null, "93683", null, "4090", null, "91334", null, "3860", null, "96493", null, "3305", null, "93688", null, "5746", null, "102075", null, "5641", null, "91552", null, "3791", null, "92146", null, "3128", null, "86620", null, "3950", null, "102829", null, "3562", null, "95288", null, "3901", null, "77415", null, "3776", null, "57792", null, "2683", null, "37229", null, "2717", null, "30043", null, "2536", null, "182738", null, "4492", null, "64348", null, "4285", null, "328735", null, "6051", null, "138506", null, "4446", null, "586444", null, "6646", null, "1236630", null, "4437", null, "1193010", null, "2790", null, "1131854", null, "4903", null, "400596", null, "3954", null, "359082", null, "4128", null, "297767", null, "1992", null, "125064", null, "1434", null, "40.6", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.2", null, "5.7", null, "0.3", null, "6.3", null, "0.2", null, "7.2", null, "0.4", null, "6.2", null, "0.3", null, "6.0", null, "0.3", null, "6.3", null, "0.2", null, "6.2", null, "0.4", null, "6.7", null, "0.4", null, "6.0", null, "0.3", null, "6.1", null, "0.2", null, "5.7", null, "0.3", null, "6.8", null, "0.2", null, "6.3", null, "0.3", null, "5.1", null, "0.2", null, "3.8", null, "0.2", null, "2.4", null, "0.2", null, "2.0", null, "0.2", null, "12.0", null, "0.3", null, "4.2", null, "0.3", null, "21.6", null, "0.3", null, "9.1", null, "0.3", null, "38.5", null, "0.4", null, "81.3", null, "0.3", null, "78.4", null, "0.3", null, "74.4", null, "0.4", null, "26.3", null, "0.3", null, "23.6", null, "0.3", null, "19.6", null, "0.2", null, "8.2", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "28"], ["0400000US29", "Missouri", "6245466", null, "-555555555", "*****", "343005", null, "3017", null, "370752", null, "8604", null, "401895", null, "9926", null, "407725", null, "5567", null, "418812", null, "6179", null, "399410", null, "4882", null, "418223", null, "4136", null, "416457", null, "8878", null, "401321", null, "8606", null, "360224", null, "3692", null, "359296", null, "3383", null, "364956", null, "8160", null, "414189", null, "7513", null, "368280", null, "6908", null, "316968", null, "7386", null, "225420", null, "5317", null, "140129", null, "4835", null, "118404", null, "4071", null, "772647", null, "3574", null, "251149", null, "2769", null, "1366801", null, "3325", null, "575388", null, "5885", null, "2461948", null, "5314", null, "5049196", null, "4777", null, "4878665", null, "3325", null, "4641965", null, "8008", null, "1583390", null, "7982", null, "1419804", null, "7435", null, "1169201", null, "3171", null, "483953", null, "2280", null, "39.4", null, "0.2", null, "97.3", null, "0.3", null, "68.4", null, "0.2", null, "31.5", null, "0.1", null, "36.8", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.1", null, "5.9", null, "0.1", null, "6.4", null, "0.2", null, "6.5", null, "0.1", null, "6.7", null, "0.1", null, "6.4", null, "0.1", null, "6.7", null, "0.1", null, "6.7", null, "0.1", null, "6.4", null, "0.1", null, "5.8", null, "0.1", null, "5.8", null, "0.1", null, "5.8", null, "0.1", null, "6.6", null, "0.1", null, "5.9", null, "0.1", null, "5.1", null, "0.1", null, "3.6", null, "0.1", null, "2.2", null, "0.1", null, "1.9", null, "0.1", null, "12.4", null, "0.1", null, "4.0", null, "0.1", null, "21.9", null, "0.1", null, "9.2", null, "0.1", null, "39.4", null, "0.1", null, "80.8", null, "0.1", null, "78.1", null, "0.1", null, "74.3", null, "0.1", null, "25.4", null, "0.1", null, "22.7", null, "0.1", null, "18.7", null, "0.1", null, "7.7", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.2", null, "-888888888.0", "(X)", "3080058", null, "4794", null, "177532", null, "2661", null, "185264", null, "6282", null, "213162", null, "6353", null, "205638", null, "4167", null, "215885", null, "4752", null, "201417", null, "3094", null, "208863", null, "2459", null, "210986", null, "6154", null, "197800", null, "5712", null, "179398", null, "2483", null, "179244", null, "2174", null, "179035", null, "5197", null, "202056", null, "4587", null, "175666", null, "4087", null, "144496", null, "4158", null, "102174", null, "3110", null, "58623", null, "2937", null, "42819", null, "2451", null, "398426", null, "2987", null, "126731", null, "2292", null, "702689", null, "4060", null, "294792", null, "3930", null, "1240589", null, "4067", null, "2463577", null, "4798", null, "2377369", null, "3873", null, "2257898", null, "6830", null, "725834", null, "4820", null, "647003", null, "4607", null, "523778", null, "1764", null, "203616", null, "1314", null, "38.2", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.8", null, "0.1", null, "6.0", null, "0.2", null, "6.9", null, "0.2", null, "6.7", null, "0.1", null, "7.0", null, "0.2", null, "6.5", null, "0.1", null, "6.8", null, "0.1", null, "6.9", null, "0.2", null, "6.4", null, "0.2", null, "5.8", null, "0.1", null, "5.8", null, "0.1", null, "5.8", null, "0.2", null, "6.6", null, "0.1", null, "5.7", null, "0.1", null, "4.7", null, "0.1", null, "3.3", null, "0.1", null, "1.9", null, "0.1", null, "1.4", null, "0.1", null, "12.9", null, "0.1", null, "4.1", null, "0.1", null, "22.8", null, "0.1", null, "9.6", null, "0.1", null, "40.3", null, "0.1", null, "80.0", null, "0.1", null, "77.2", null, "0.1", null, "73.3", null, "0.2", null, "23.6", null, "0.2", null, "21.0", null, "0.2", null, "17.0", null, "0.1", null, "6.6", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "3165408", null, "4794", null, "165473", null, "2680", null, "185488", null, "5168", null, "188733", null, "6309", null, "202087", null, "3720", null, "202927", null, "3169", null, "197993", null, "3475", null, "209360", null, "3103", null, "205471", null, "5980", null, "203521", null, "5898", null, "180826", null, "2432", null, "180052", null, "2461", null, "185921", null, "5105", null, "212133", null, "5056", null, "192614", null, "4880", null, "172472", null, "5298", null, "123246", null, "3908", null, "81506", null, "3428", null, "75585", null, "3208", null, "374221", null, "3031", null, "124418", null, "2594", null, "664112", null, "4081", null, "280596", null, "3200", null, "1221359", null, "4704", null, "2585619", null, "5290", null, "2501296", null, "3136", null, "2384067", null, "5193", null, "857556", null, "5509", null, "772801", null, "5025", null, "645423", null, "2419", null, "280337", null, "1580", null, "40.6", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.1", null, "5.9", null, "0.2", null, "6.0", null, "0.2", null, "6.4", null, "0.1", null, "6.4", null, "0.1", null, "6.3", null, "0.1", null, "6.6", null, "0.1", null, "6.5", null, "0.2", null, "6.4", null, "0.2", null, "5.7", null, "0.1", null, "5.7", null, "0.1", null, "5.9", null, "0.2", null, "6.7", null, "0.2", null, "6.1", null, "0.2", null, "5.4", null, "0.2", null, "3.9", null, "0.1", null, "2.6", null, "0.1", null, "2.4", null, "0.1", null, "11.8", null, "0.1", null, "3.9", null, "0.1", null, "21.0", null, "0.1", null, "8.9", null, "0.1", null, "38.6", null, "0.1", null, "81.7", null, "0.1", null, "79.0", null, "0.1", null, "75.3", null, "0.2", null, "27.1", null, "0.2", null, "24.4", null, "0.2", null, "20.4", null, "0.1", null, "8.9", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "29"], ["0400000US30", "Montana", "1137233", null, "-555555555", "*****", "53955", null, "1286", null, "64466", null, "3427", null, "68138", null, "3433", null, "73109", null, "2892", null, "73816", null, "3140", null, "69436", null, "2153", null, "72892", null, "1771", null, "71757", null, "3884", null, "79662", null, "3926", null, "67223", null, "1932", null, "62936", null, "1460", null, "62562", null, "3448", null, "75858", null, "3499", null, "74436", null, "3142", null, "70819", null, "2907", null, "46973", null, "2436", null, "27149", null, "1853", null, "22046", null, "2074", null, "132604", null, "1664", null, "43456", null, "1138", null, "230015", null, "1331", null, "103469", null, "2715", null, "440672", null, "2990", null, "936938", null, "2020", null, "907218", null, "1331", null, "862412", null, "3327", null, "317281", null, "4005", null, "289893", null, "3892", null, "241423", null, "1562", null, "96168", null, "1094", null, "41.3", null, "0.3", null, "102.4", null, "0.9", null, "70.8", null, "0.5", null, "36.3", null, "0.3", null, "34.5", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.7", null, "0.1", null, "5.7", null, "0.3", null, "6.0", null, "0.3", null, "6.4", null, "0.3", null, "6.5", null, "0.3", null, "6.1", null, "0.2", null, "6.4", null, "0.2", null, "6.3", null, "0.3", null, "7.0", null, "0.3", null, "5.9", null, "0.2", null, "5.5", null, "0.1", null, "5.5", null, "0.3", null, "6.7", null, "0.3", null, "6.5", null, "0.3", null, "6.2", null, "0.3", null, "4.1", null, "0.2", null, "2.4", null, "0.2", null, "1.9", null, "0.2", null, "11.7", null, "0.1", null, "3.8", null, "0.1", null, "20.2", null, "0.1", null, "9.1", null, "0.2", null, "38.7", null, "0.3", null, "82.4", null, "0.2", null, "79.8", null, "0.1", null, "75.8", null, "0.3", null, "27.9", null, "0.4", null, "25.5", null, "0.3", null, "21.2", null, "0.1", null, "8.5", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.8", null, "-888888888.0", "(X)", "575447", null, "2557", null, "27028", null, "1300", null, "32613", null, "2674", null, "34933", null, "2555", null, "37841", null, "1953", null, "39999", null, "2044", null, "37097", null, "1790", null, "37182", null, "1066", null, "38633", null, "2648", null, "40297", null, "2458", null, "34383", null, "1505", null, "31858", null, "863", null, "31084", null, "2357", null, "37167", null, "2413", null, "36623", null, "1904", null, "34021", null, "1909", null, "23710", null, "1524", null, "12106", null, "1167", null, "8872", null, "1302", null, "67546", null, "1180", null, "22445", null, "944", null, "117019", null, "1742", null, "55395", null, "1948", null, "231049", null, "1635", null, "473545", null, "2560", null, "458428", null, "2310", null, "435498", null, "3144", null, "152499", null, "2831", null, "138716", null, "2444", null, "115332", null, "1203", null, "44688", null, "560", null, "40.3", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.7", null, "0.2", null, "5.7", null, "0.5", null, "6.1", null, "0.4", null, "6.6", null, "0.3", null, "7.0", null, "0.4", null, "6.4", null, "0.3", null, "6.5", null, "0.2", null, "6.7", null, "0.5", null, "7.0", null, "0.4", null, "6.0", null, "0.3", null, "5.5", null, "0.1", null, "5.4", null, "0.4", null, "6.5", null, "0.4", null, "6.4", null, "0.3", null, "5.9", null, "0.3", null, "4.1", null, "0.3", null, "2.1", null, "0.2", null, "1.5", null, "0.2", null, "11.7", null, "0.2", null, "3.9", null, "0.2", null, "20.3", null, "0.3", null, "9.6", null, "0.3", null, "40.2", null, "0.3", null, "82.3", null, "0.3", null, "79.7", null, "0.3", null, "75.7", null, "0.4", null, "26.5", null, "0.5", null, "24.1", null, "0.4", null, "20.0", null, "0.2", null, "7.8", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "561786", null, "2557", null, "26927", null, "1237", null, "31853", null, "2128", null, "33205", null, "2097", null, "35268", null, "2296", null, "33817", null, "2189", null, "32339", null, "1050", null, "35710", null, "1362", null, "33124", null, "2337", null, "39365", null, "2502", null, "32840", null, "1204", null, "31078", null, "1233", null, "31478", null, "2173", null, "38691", null, "2276", null, "37813", null, "2258", null, "36798", null, "2069", null, "23263", null, "1503", null, "15043", null, "1375", null, "13174", null, "1352", null, "65058", null, "1406", null, "21011", null, "1322", null, "112996", null, "1832", null, "48074", null, "1453", null, "209623", null, "2814", null, "463393", null, "2418", null, "448790", null, "2193", null, "426914", null, "2828", null, "164782", null, "2708", null, "151177", null, "2721", null, "126091", null, "1417", null, "51480", null, "956", null, "42.3", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.8", null, "0.2", null, "5.7", null, "0.4", null, "5.9", null, "0.4", null, "6.3", null, "0.4", null, "6.0", null, "0.4", null, "5.8", null, "0.2", null, "6.4", null, "0.2", null, "5.9", null, "0.4", null, "7.0", null, "0.4", null, "5.8", null, "0.2", null, "5.5", null, "0.2", null, "5.6", null, "0.4", null, "6.9", null, "0.4", null, "6.7", null, "0.4", null, "6.6", null, "0.4", null, "4.1", null, "0.3", null, "2.7", null, "0.2", null, "2.3", null, "0.2", null, "11.6", null, "0.2", null, "3.7", null, "0.2", null, "20.1", null, "0.3", null, "8.6", null, "0.3", null, "37.3", null, "0.5", null, "82.5", null, "0.3", null, "79.9", null, "0.3", null, "76.0", null, "0.5", null, "29.3", null, "0.5", null, "26.9", null, "0.5", null, "22.4", null, "0.2", null, "9.2", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "30"], ["0400000US31", "Nebraska", "2005466", null, "-555555555", "*****", "121522", null, "1684", null, "133424", null, "4579", null, "136906", null, "4411", null, "143504", null, "3264", null, "143303", null, "3162", null, "128877", null, "2404", null, "132526", null, "3594", null, "128735", null, "4465", null, "136555", null, "5595", null, "117847", null, "2418", null, "104997", null, "2077", null, "108663", null, "4065", null, "120555", null, "4039", null, "106667", null, "3480", null, "97031", null, "3479", null, "65854", null, "2787", null, "41021", null, "2357", null, "37479", null, "2597", null, "270330", null, "2424", null, "87797", null, "1650", null, "479649", null, "1321", null, "199010", null, "2814", null, "813500", null, "3552", null, "1585014", null, "2357", null, "1525817", null, "1319", null, "1440453", null, "4029", null, "468607", null, "4440", null, "422224", null, "4060", null, "348052", null, "1612", null, "144354", null, "1387", null, "37.4", null, "0.2", null, "101.4", null, "0.6", null, "70.3", null, "0.3", null, "29.6", null, "0.2", null, "40.7", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.1", null, "0.1", null, "6.7", null, "0.2", null, "6.8", null, "0.2", null, "7.2", null, "0.2", null, "7.1", null, "0.2", null, "6.4", null, "0.1", null, "6.6", null, "0.2", null, "6.4", null, "0.2", null, "6.8", null, "0.3", null, "5.9", null, "0.1", null, "5.2", null, "0.1", null, "5.4", null, "0.2", null, "6.0", null, "0.2", null, "5.3", null, "0.2", null, "4.8", null, "0.2", null, "3.3", null, "0.1", null, "2.0", null, "0.1", null, "1.9", null, "0.1", null, "13.5", null, "0.1", null, "4.4", null, "0.1", null, "23.9", null, "0.1", null, "9.9", null, "0.1", null, "40.6", null, "0.2", null, "79.0", null, "0.1", null, "76.1", null, "0.1", null, "71.8", null, "0.2", null, "23.4", null, "0.2", null, "21.1", null, "0.2", null, "17.4", null, "0.1", null, "7.2", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.3", null, "-888888888.0", "(X)", "1009629", null, "2992", null, "63066", null, "1636", null, "68056", null, "2780", null, "70697", null, "2939", null, "75861", null, "2628", null, "72767", null, "2182", null, "65683", null, "1758", null, "68292", null, "2348", null, "66762", null, "3119", null, "68519", null, "3367", null, "59664", null, "1634", null, "54460", null, "1252", null, "53718", null, "2657", null, "61584", null, "2682", null, "53108", null, "2003", null, "44994", null, "1819", null, "29352", null, "1796", null, "17833", null, "1341", null, "15213", null, "1647", null, "138753", null, "1738", null, "45735", null, "1783", null, "247554", null, "2434", null, "102893", null, "2032", null, "417884", null, "2628", null, "793260", null, "2921", null, "762075", null, "1928", null, "716936", null, "3059", null, "222084", null, "2934", null, "199008", null, "2597", null, "160500", null, "1184", null, "62398", null, "782", null, "36.5", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.2", null, "0.2", null, "6.7", null, "0.3", null, "7.0", null, "0.3", null, "7.5", null, "0.3", null, "7.2", null, "0.2", null, "6.5", null, "0.2", null, "6.8", null, "0.2", null, "6.6", null, "0.3", null, "6.8", null, "0.3", null, "5.9", null, "0.2", null, "5.4", null, "0.1", null, "5.3", null, "0.3", null, "6.1", null, "0.3", null, "5.3", null, "0.2", null, "4.5", null, "0.2", null, "2.9", null, "0.2", null, "1.8", null, "0.1", null, "1.5", null, "0.2", null, "13.7", null, "0.2", null, "4.5", null, "0.2", null, "24.5", null, "0.2", null, "10.2", null, "0.2", null, "41.4", null, "0.2", null, "78.6", null, "0.2", null, "75.5", null, "0.2", null, "71.0", null, "0.3", null, "22.0", null, "0.3", null, "19.7", null, "0.3", null, "15.9", null, "0.1", null, "6.2", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "995837", null, "2992", null, "58456", null, "1843", null, "65368", null, "3655", null, "66209", null, "3271", null, "67643", null, "2634", null, "70536", null, "1882", null, "63194", null, "1507", null, "64234", null, "2272", null, "61973", null, "2747", null, "68036", null, "3342", null, "58183", null, "1707", null, "50537", null, "1492", null, "54945", null, "2528", null, "58971", null, "2601", null, "53559", null, "2519", null, "52037", null, "2614", null, "36502", null, "1850", null, "23188", null, "1762", null, "22266", null, "1736", null, "131577", null, "1731", null, "42062", null, "1760", null, "232095", null, "2546", null, "96117", null, "1761", null, "395616", null, "2807", null, "791754", null, "2610", null, "763742", null, "1655", null, "723517", null, "3289", null, "246523", null, "2996", null, "223216", null, "2749", null, "187552", null, "1409", null, "81956", null, "1065", null, "38.4", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.9", null, "0.2", null, "6.6", null, "0.4", null, "6.6", null, "0.3", null, "6.8", null, "0.3", null, "7.1", null, "0.2", null, "6.3", null, "0.2", null, "6.5", null, "0.2", null, "6.2", null, "0.3", null, "6.8", null, "0.3", null, "5.8", null, "0.2", null, "5.1", null, "0.1", null, "5.5", null, "0.3", null, "5.9", null, "0.3", null, "5.4", null, "0.3", null, "5.2", null, "0.3", null, "3.7", null, "0.2", null, "2.3", null, "0.2", null, "2.2", null, "0.2", null, "13.2", null, "0.2", null, "4.2", null, "0.2", null, "23.3", null, "0.2", null, "9.7", null, "0.2", null, "39.7", null, "0.3", null, "79.5", null, "0.2", null, "76.7", null, "0.2", null, "72.7", null, "0.3", null, "24.8", null, "0.3", null, "22.4", null, "0.3", null, "18.8", null, "0.1", null, "8.2", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "31"], ["0400000US32", "Nevada", "3267467", null, "-555555555", "*****", "169737", null, "1245", null, "184454", null, "7481", null, "207235", null, "7470", null, "198766", null, "2349", null, "189598", null, "2546", null, "222122", null, "2020", null, "248902", null, "2519", null, "238676", null, "7315", null, "224852", null, "7421", null, "201499", null, "2167", null, "203863", null, "2051", null, "194640", null, "6634", null, "207772", null, "6652", null, "177331", null, "5687", null, "160880", null, "5710", null, "119420", null, "4265", null, "67128", null, "3962", null, "50592", null, "3184", null, "391689", null, "2150", null, "126279", null, "1590", null, "687705", null, "842", null, "262085", null, "2500", null, "1322916", null, "3022", null, "2662492", null, "4004", null, "2579762", null, "842", null, "2468962", null, "4289", null, "783123", null, "6703", null, "701500", null, "5758", null, "575351", null, "1518", null, "237140", null, "1208", null, "39.5", null, "0.2", null, "101.7", null, "0.3", null, "63.0", null, "0.1", null, "28.7", null, "0.1", null, "34.3", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.1", null, "5.6", null, "0.2", null, "6.3", null, "0.2", null, "6.1", null, "0.1", null, "5.8", null, "0.1", null, "6.8", null, "0.1", null, "7.6", null, "0.1", null, "7.3", null, "0.2", null, "6.9", null, "0.2", null, "6.2", null, "0.1", null, "6.2", null, "0.1", null, "6.0", null, "0.2", null, "6.4", null, "0.2", null, "5.4", null, "0.2", null, "4.9", null, "0.2", null, "3.7", null, "0.1", null, "2.1", null, "0.1", null, "1.5", null, "0.1", null, "12.0", null, "0.1", null, "3.9", null, "0.1", null, "21.0", null, "0.1", null, "8.0", null, "0.1", null, "40.5", null, "0.1", null, "81.5", null, "0.1", null, "79.0", null, "0.1", null, "75.6", null, "0.1", null, "24.0", null, "0.2", null, "21.5", null, "0.2", null, "17.6", null, "0.1", null, "7.3", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.5", null, "-888888888.0", "(X)", "1647319", null, "2450", null, "87377", null, "1568", null, "91371", null, "4860", null, "109920", null, "4940", null, "103262", null, "1722", null, "97171", null, "1623", null, "114123", null, "1423", null, "125900", null, "1459", null, "123080", null, "5338", null, "116100", null, "4996", null, "101593", null, "1399", null, "102814", null, "1301", null, "99300", null, "4488", null, "103747", null, "4555", null, "86246", null, "3681", null, "76108", null, "3616", null, "57166", null, "2624", null, "30313", null, "2266", null, "21728", null, "1979", null, "201291", null, "1778", null, "65392", null, "1339", null, "354060", null, "2174", null, "135041", null, "1659", null, "679636", null, "2186", null, "1336848", null, "2848", null, "1293259", null, "947", null, "1234866", null, "3209", null, "375308", null, "4478", null, "335851", null, "4396", null, "271561", null, "1079", null, "109207", null, "791", null, "38.9", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.3", null, "0.1", null, "5.5", null, "0.3", null, "6.7", null, "0.3", null, "6.3", null, "0.1", null, "5.9", null, "0.1", null, "6.9", null, "0.1", null, "7.6", null, "0.1", null, "7.5", null, "0.3", null, "7.0", null, "0.3", null, "6.2", null, "0.1", null, "6.2", null, "0.1", null, "6.0", null, "0.3", null, "6.3", null, "0.3", null, "5.2", null, "0.2", null, "4.6", null, "0.2", null, "3.5", null, "0.2", null, "1.8", null, "0.1", null, "1.3", null, "0.1", null, "12.2", null, "0.1", null, "4.0", null, "0.1", null, "21.5", null, "0.1", null, "8.2", null, "0.1", null, "41.3", null, "0.1", null, "81.2", null, "0.2", null, "78.5", null, "0.1", null, "75.0", null, "0.2", null, "22.8", null, "0.3", null, "20.4", null, "0.3", null, "16.5", null, "0.1", null, "6.6", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "1620148", null, "2450", null, "82360", null, "1575", null, "93083", null, "6008", null, "97315", null, "5890", null, "95504", null, "1307", null, "92427", null, "1580", null, "107999", null, "1512", null, "123002", null, "1784", null, "115596", null, "5039", null, "108752", null, "4870", null, "99906", null, "1512", null, "101049", null, "1340", null, "95340", null, "4166", null, "104025", null, "3946", null, "91085", null, "3713", null, "84772", null, "3739", null, "62254", null, "2799", null, "36815", null, "2811", null, "28864", null, "2555", null, "190398", null, "1568", null, "60887", null, "943", null, "333645", null, "2016", null, "127044", null, "1595", null, "643280", null, "2354", null, "1325644", null, "3268", null, "1286503", null, "1158", null, "1234096", null, "3023", null, "407815", null, "4150", null, "365649", null, "3754", null, "303790", null, "1085", null, "127933", null, "705", null, "40.1", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.1", null, "0.1", null, "5.7", null, "0.4", null, "6.0", null, "0.4", null, "5.9", null, "0.1", null, "5.7", null, "0.1", null, "6.7", null, "0.1", null, "7.6", null, "0.1", null, "7.1", null, "0.3", null, "6.7", null, "0.3", null, "6.2", null, "0.1", null, "6.2", null, "0.1", null, "5.9", null, "0.3", null, "6.4", null, "0.2", null, "5.6", null, "0.2", null, "5.2", null, "0.2", null, "3.8", null, "0.2", null, "2.3", null, "0.2", null, "1.8", null, "0.2", null, "11.8", null, "0.1", null, "3.8", null, "0.1", null, "20.6", null, "0.1", null, "7.8", null, "0.1", null, "39.7", null, "0.1", null, "81.8", null, "0.2", null, "79.4", null, "0.1", null, "76.2", null, "0.2", null, "25.2", null, "0.3", null, "22.6", null, "0.2", null, "18.8", null, "0.1", null, "7.9", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "32"], ["0400000US33", "New Hampshire", "1409032", null, "-555555555", "*****", "61710", null, "1299", null, "64135", null, "3275", null, "75273", null, "3430", null, "86606", null, "2716", null, "83273", null, "2955", null, "81315", null, "1508", null, "96133", null, "2160", null, "91265", null, "4587", null, "88154", null, "4414", null, "80018", null, "2203", null, "86954", null, "1656", null, "97467", null, "4178", null, "113497", null, "4182", null, "105797", null, "3365", null, "75217", null, "3289", null, "58003", null, "3084", null, "35621", null, "2765", null, "28594", null, "2283", null, "139408", null, "1527", null, "47051", null, "1098", null, "248169", null, "1285", null, "122828", null, "1847", null, "526746", null, "2269", null, "1194290", null, "2052", null, "1160863", null, "1285", null, "1104197", null, "2707", null, "416729", null, "4488", null, "375026", null, "4864", null, "303232", null, "1419", null, "122218", null, "1239", null, "43.6", null, "0.2", null, "99.3", null, "0.6", null, "64.3", null, "0.4", null, "35.4", null, "0.2", null, "28.9", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.4", null, "0.1", null, "4.6", null, "0.2", null, "5.3", null, "0.2", null, "6.1", null, "0.2", null, "5.9", null, "0.2", null, "5.8", null, "0.1", null, "6.8", null, "0.2", null, "6.5", null, "0.3", null, "6.3", null, "0.3", null, "5.7", null, "0.2", null, "6.2", null, "0.1", null, "6.9", null, "0.3", null, "8.1", null, "0.3", null, "7.5", null, "0.2", null, "5.3", null, "0.2", null, "4.1", null, "0.2", null, "2.5", null, "0.2", null, "2.0", null, "0.2", null, "9.9", null, "0.1", null, "3.3", null, "0.1", null, "17.6", null, "0.1", null, "8.7", null, "0.1", null, "37.4", null, "0.2", null, "84.8", null, "0.1", null, "82.4", null, "0.1", null, "78.4", null, "0.2", null, "29.6", null, "0.3", null, "26.6", null, "0.3", null, "21.5", null, "0.1", null, "8.7", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.1", null, "-888888888.0", "(X)", "702191", null, "2024", null, "31069", null, "1109", null, "32898", null, "1963", null, "38516", null, "2258", null, "41086", null, "1738", null, "45604", null, "1849", null, "42260", null, "1097", null, "50019", null, "1874", null, "46918", null, "2782", null, "44379", null, "2694", null, "40338", null, "1596", null, "43556", null, "1219", null, "48373", null, "3027", null, "56353", null, "3124", null, "49736", null, "2500", null, "37857", null, "2409", null, "27042", null, "1703", null, "15129", null, "1672", null, "11058", null, "1327", null, "71414", null, "1362", null, "24187", null, "1129", null, "126670", null, "1772", null, "62503", null, "1342", null, "270266", null, "2068", null, "592985", null, "2028", null, "575521", null, "1565", null, "548586", null, "2365", null, "197175", null, "3149", null, "176343", null, "3165", null, "140822", null, "825", null, "53229", null, "555", null, "42.6", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.4", null, "0.2", null, "4.7", null, "0.3", null, "5.5", null, "0.3", null, "5.9", null, "0.2", null, "6.5", null, "0.3", null, "6.0", null, "0.2", null, "7.1", null, "0.3", null, "6.7", null, "0.4", null, "6.3", null, "0.4", null, "5.7", null, "0.2", null, "6.2", null, "0.2", null, "6.9", null, "0.4", null, "8.0", null, "0.4", null, "7.1", null, "0.4", null, "5.4", null, "0.3", null, "3.9", null, "0.2", null, "2.2", null, "0.2", null, "1.6", null, "0.2", null, "10.2", null, "0.2", null, "3.4", null, "0.2", null, "18.0", null, "0.2", null, "8.9", null, "0.2", null, "38.5", null, "0.2", null, "84.4", null, "0.3", null, "82.0", null, "0.2", null, "78.1", null, "0.3", null, "28.1", null, "0.4", null, "25.1", null, "0.4", null, "20.1", null, "0.1", null, "7.6", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "706841", null, "2024", null, "30641", null, "1039", null, "31237", null, "2517", null, "36757", null, "2479", null, "45520", null, "2220", null, "37669", null, "2123", null, "39055", null, "879", null, "46114", null, "1036", null, "44347", null, "2688", null, "43775", null, "2752", null, "39680", null, "1399", null, "43398", null, "986", null, "49094", null, "2685", null, "57144", null, "2739", null, "56061", null, "2548", null, "37360", null, "2290", null, "30961", null, "2078", null, "20492", null, "1957", null, "17536", null, "1904", null, "67994", null, "1116", null, "22864", null, "1128", null, "121499", null, "1682", null, "60325", null, "1502", null, "256480", null, "2314", null, "601305", null, "1696", null, "585342", null, "1464", null, "555611", null, "2164", null, "219554", null, "2855", null, "198683", null, "3058", null, "162410", null, "1031", null, "68989", null, "1013", null, "44.8", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.3", null, "0.1", null, "4.4", null, "0.4", null, "5.2", null, "0.3", null, "6.4", null, "0.3", null, "5.3", null, "0.3", null, "5.5", null, "0.1", null, "6.5", null, "0.1", null, "6.3", null, "0.4", null, "6.2", null, "0.4", null, "5.6", null, "0.2", null, "6.1", null, "0.1", null, "6.9", null, "0.4", null, "8.1", null, "0.4", null, "7.9", null, "0.4", null, "5.3", null, "0.3", null, "4.4", null, "0.3", null, "2.9", null, "0.3", null, "2.5", null, "0.3", null, "9.6", null, "0.2", null, "3.2", null, "0.2", null, "17.2", null, "0.2", null, "8.5", null, "0.2", null, "36.3", null, "0.3", null, "85.1", null, "0.2", null, "82.8", null, "0.2", null, "78.6", null, "0.3", null, "31.1", null, "0.4", null, "28.1", null, "0.5", null, "23.0", null, "0.2", null, "9.8", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "33"], ["0400000US34", "New Jersey", "9500851", null, "-555555555", "*****", "525751", null, "2111", null, "545799", null, "11106", null, "602670", null, "11342", null, "591822", null, "4977", null, "577739", null, "5048", null, "591257", null, "3537", null, "643723", null, "3169", null, "659856", null, "12891", null, "619578", null, "13136", null, "592549", null, "3039", null, "599510", null, "2828", null, "626140", null, "10210", null, "617792", null, "10060", null, "545682", null, "8670", null, "434423", null, "8755", null, "332722", null, "7793", null, "207649", null, "6299", null, "186189", null, "6135", null, "1148469", null, "2380", null, "369355", null, "1563", null, "2043575", null, "914", null, "800206", null, "3668", null, "3683975", null, "3450", null, "7710486", null, "5882", null, "7457276", null, "914", null, "7130147", null, "6763", null, "2324457", null, "10324", null, "2070493", null, "9201", null, "1706665", null, "1908", null, "726560", null, "2672", null, "40.1", null, "0.1", null, "97.0", null, "0.2", null, "65.2", null, "0.1", null, "29.7", null, "0.1", null, "35.5", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.1", null, "5.7", null, "0.1", null, "6.3", null, "0.1", null, "6.2", null, "0.1", null, "6.1", null, "0.1", null, "6.2", null, "0.1", null, "6.8", null, "0.1", null, "6.9", null, "0.1", null, "6.5", null, "0.1", null, "6.2", null, "0.1", null, "6.3", null, "0.1", null, "6.6", null, "0.1", null, "6.5", null, "0.1", null, "5.7", null, "0.1", null, "4.6", null, "0.1", null, "3.5", null, "0.1", null, "2.2", null, "0.1", null, "2.0", null, "0.1", null, "12.1", null, "0.1", null, "3.9", null, "0.1", null, "21.5", null, "0.1", null, "8.4", null, "0.1", null, "38.8", null, "0.1", null, "81.2", null, "0.1", null, "78.5", null, "0.1", null, "75.0", null, "0.1", null, "24.5", null, "0.1", null, "21.8", null, "0.1", null, "18.0", null, "0.1", null, "7.6", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.3", null, "-888888888.0", "(X)", "4677607", null, "3736", null, "269677", null, "3121", null, "275455", null, "7413", null, "313492", null, "7687", null, "300826", null, "3691", null, "298188", null, "2892", null, "296256", null, "2125", null, "321614", null, "2053", null, "332709", null, "8503", null, "312059", null, "8622", null, "295164", null, "2280", null, "297089", null, "2325", null, "304390", null, "6404", null, "302958", null, "6365", null, "256590", null, "5275", null, "202059", null, "5232", null, "145821", null, "4524", null, "86331", null, "3813", null, "66929", null, "3175", null, "588947", null, "2025", null, "188137", null, "1987", null, "1046761", null, "3555", null, "410877", null, "2021", null, "1861652", null, "3098", null, "3756103", null, "4368", null, "3630846", null, "1374", null, "3466868", null, "5102", null, "1060688", null, "6340", null, "936156", null, "6005", null, "757730", null, "1169", null, "299081", null, "1749", null, "38.9", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.8", null, "0.1", null, "5.9", null, "0.2", null, "6.7", null, "0.2", null, "6.4", null, "0.1", null, "6.4", null, "0.1", null, "6.3", null, "0.1", null, "6.9", null, "0.1", null, "7.1", null, "0.2", null, "6.7", null, "0.2", null, "6.3", null, "0.1", null, "6.4", null, "0.1", null, "6.5", null, "0.1", null, "6.5", null, "0.1", null, "5.5", null, "0.1", null, "4.3", null, "0.1", null, "3.1", null, "0.1", null, "1.8", null, "0.1", null, "1.4", null, "0.1", null, "12.6", null, "0.1", null, "4.0", null, "0.1", null, "22.4", null, "0.1", null, "8.8", null, "0.1", null, "39.8", null, "0.1", null, "80.3", null, "0.1", null, "77.6", null, "0.1", null, "74.1", null, "0.1", null, "22.7", null, "0.1", null, "20.0", null, "0.1", null, "16.2", null, "0.1", null, "6.4", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4823244", null, "3736", null, "256074", null, "2953", null, "270344", null, "7750", null, "289178", null, "7745", null, "290996", null, "4252", null, "279551", null, "4071", null, "295001", null, "2802", null, "322109", null, "2586", null, "327147", null, "7851", null, "307519", null, "7996", null, "297385", null, "1847", null, "302421", null, "1838", null, "321750", null, "6948", null, "314834", null, "6982", null, "289092", null, "6481", null, "232364", null, "6898", null, "186901", null, "5074", null, "121318", null, "5086", null, "119260", null, "4924", null, "559522", null, "1297", null, "181218", null, "2189", null, "996814", null, "3616", null, "389329", null, "2717", null, "1822323", null, "3151", null, "3954383", null, "4210", null, "3826430", null, "1031", null, "3663279", null, "5220", null, "1263769", null, "7112", null, "1134337", null, "6391", null, "948935", null, "1454", null, "427479", null, "1804", null, "41.4", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.3", null, "0.1", null, "5.6", null, "0.2", null, "6.0", null, "0.2", null, "6.0", null, "0.1", null, "5.8", null, "0.1", null, "6.1", null, "0.1", null, "6.7", null, "0.1", null, "6.8", null, "0.2", null, "6.4", null, "0.2", null, "6.2", null, "0.1", null, "6.3", null, "0.1", null, "6.7", null, "0.1", null, "6.5", null, "0.1", null, "6.0", null, "0.1", null, "4.8", null, "0.1", null, "3.9", null, "0.1", null, "2.5", null, "0.1", null, "2.5", null, "0.1", null, "11.6", null, "0.1", null, "3.8", null, "0.1", null, "20.7", null, "0.1", null, "8.1", null, "0.1", null, "37.8", null, "0.1", null, "82.0", null, "0.1", null, "79.3", null, "0.1", null, "76.0", null, "0.1", null, "26.2", null, "0.1", null, "23.5", null, "0.1", null, "19.7", null, "0.1", null, "8.9", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "34"], ["0400000US35", "New Mexico", "2130256", null, "-555555555", "*****", "103356", null, "2815", null, "112610", null, "5227", null, "140563", null, "5916", null, "142976", null, "3980", null, "145235", null, "4795", null, "132027", null, "3869", null, "142969", null, "4077", null, "149860", null, "7111", null, "137495", null, "6624", null, "123636", null, "4055", null, "115497", null, "2816", null, "117308", null, "4625", null, "137491", null, "4588", null, "124503", null, "4679", null, "122883", null, "4618", null, "86243", null, "3039", null, "54646", null, "3321", null, "40958", null, "2692", null, "253173", null, "3443", null, "87308", null, "2449", null, "443837", null, "2387", null, "200903", null, "4168", null, "850562", null, "5484", null, "1743934", null, "3277", null, "1686419", null, "2387", null, "1601813", null, "4959", null, "566724", null, "4853", null, "513355", null, "4684", null, "429233", null, "2123", null, "181847", null, "2274", null, "39.9", null, "0.3", null, "100.1", null, "0.6", null, "69.4", null, "0.4", null, "34.1", null, "0.2", null, "35.3", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.9", null, "0.1", null, "5.3", null, "0.2", null, "6.6", null, "0.3", null, "6.7", null, "0.2", null, "6.8", null, "0.2", null, "6.2", null, "0.2", null, "6.7", null, "0.2", null, "7.0", null, "0.3", null, "6.5", null, "0.3", null, "5.8", null, "0.2", null, "5.4", null, "0.1", null, "5.5", null, "0.2", null, "6.5", null, "0.2", null, "5.8", null, "0.2", null, "5.8", null, "0.2", null, "4.0", null, "0.1", null, "2.6", null, "0.2", null, "1.9", null, "0.1", null, "11.9", null, "0.2", null, "4.1", null, "0.1", null, "20.8", null, "0.1", null, "9.4", null, "0.2", null, "39.9", null, "0.3", null, "81.9", null, "0.2", null, "79.2", null, "0.1", null, "75.2", null, "0.2", null, "26.6", null, "0.2", null, "24.1", null, "0.2", null, "20.1", null, "0.1", null, "8.5", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.9", null, "-888888888.0", "(X)", "1065400", null, "3388", null, "55773", null, "2282", null, "59547", null, "3927", null, "70733", null, "3735", null, "73406", null, "3123", null, "75329", null, "3229", null, "68728", null, "2820", null, "74022", null, "2443", null, "79180", null, "4731", null, "70546", null, "4757", null, "60500", null, "2817", null, "57735", null, "2522", null, "54452", null, "3520", null, "68642", null, "3440", null, "57784", null, "2830", null, "58532", null, "2778", null, "38463", null, "2078", null, "26334", null, "2387", null, "15694", null, "1619", null, "130280", null, "2499", null, "44761", null, "2266", null, "230814", null, "3060", null, "103974", null, "2711", null, "441211", null, "4468", null, "864096", null, "3565", null, "834586", null, "3067", null, "790519", null, "3998", null, "265449", null, "3533", null, "239441", null, "3450", null, "196807", null, "1629", null, "80491", null, "1502", null, "38.4", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.2", null, "5.6", null, "0.4", null, "6.6", null, "0.3", null, "6.9", null, "0.3", null, "7.1", null, "0.3", null, "6.5", null, "0.3", null, "6.9", null, "0.2", null, "7.4", null, "0.4", null, "6.6", null, "0.4", null, "5.7", null, "0.3", null, "5.4", null, "0.2", null, "5.1", null, "0.3", null, "6.4", null, "0.3", null, "5.4", null, "0.3", null, "5.5", null, "0.3", null, "3.6", null, "0.2", null, "2.5", null, "0.2", null, "1.5", null, "0.2", null, "12.2", null, "0.2", null, "4.2", null, "0.2", null, "21.7", null, "0.3", null, "9.8", null, "0.3", null, "41.4", null, "0.4", null, "81.1", null, "0.2", null, "78.3", null, "0.3", null, "74.2", null, "0.4", null, "24.9", null, "0.3", null, "22.5", null, "0.3", null, "18.5", null, "0.2", null, "7.6", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "1064856", null, "3388", null, "47583", null, "2165", null, "53063", null, "3999", null, "69830", null, "4313", null, "69570", null, "2841", null, "69906", null, "3064", null, "63299", null, "2148", null, "68947", null, "2708", null, "70680", null, "4055", null, "66949", null, "4085", null, "63136", null, "2389", null, "57762", null, "1673", null, "62856", null, "2995", null, "68849", null, "3093", null, "66719", null, "3234", null, "64351", null, "3268", null, "47780", null, "2107", null, "28312", null, "2310", null, "25264", null, "2148", null, "122893", null, "2099", null, "42547", null, "1824", null, "213023", null, "2868", null, "96929", null, "2667", null, "409351", null, "3573", null, "879838", null, "3181", null, "851833", null, "2251", null, "811294", null, "3101", null, "301275", null, "3118", null, "273914", null, "2989", null, "232426", null, "1473", null, "101356", null, "1634", null, "41.4", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.5", null, "0.2", null, "5.0", null, "0.4", null, "6.6", null, "0.4", null, "6.5", null, "0.3", null, "6.6", null, "0.3", null, "5.9", null, "0.2", null, "6.5", null, "0.3", null, "6.6", null, "0.4", null, "6.3", null, "0.4", null, "5.9", null, "0.2", null, "5.4", null, "0.2", null, "5.9", null, "0.3", null, "6.5", null, "0.3", null, "6.3", null, "0.3", null, "6.0", null, "0.3", null, "4.5", null, "0.2", null, "2.7", null, "0.2", null, "2.4", null, "0.2", null, "11.5", null, "0.2", null, "4.0", null, "0.2", null, "20.0", null, "0.2", null, "9.1", null, "0.2", null, "38.4", null, "0.3", null, "82.6", null, "0.3", null, "80.0", null, "0.2", null, "76.2", null, "0.3", null, "28.3", null, "0.3", null, "25.7", null, "0.3", null, "21.8", null, "0.1", null, "9.5", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "35"], ["0400000US36", "New York", "19867248", null, "-555555555", "*****", "1039067", null, "2438", null, "1069087", null, "15078", null, "1162399", null, "15844", null, "1209141", null, "5964", null, "1269486", null, "5478", null, "1365498", null, "4133", null, "1434976", null, "4698", null, "1368588", null, "16256", null, "1250829", null, "16122", null, "1164557", null, "4168", null, "1200307", null, "3313", null, "1234166", null, "17840", null, "1341974", null, "17614", null, "1173791", null, "13943", null, "955918", null, "13946", null, "722453", null, "11461", null, "463445", null, "10391", null, "441566", null, "10016", null, "2231486", null, "3505", null, "701982", null, "2965", null, "3972535", null, "2471", null, "1776645", null, "4194", null, "7898518", null, "6086", null, "16370499", null, "7650", null, "15894713", null, "2471", null, "15146314", null, "9452", null, "5099147", null, "17582", null, "4547873", null, "16242", null, "3757173", null, "3108", null, "1627464", null, "2505", null, "40.1", null, "0.2", null, "95.5", null, "0.1", null, "63.7", null, "0.1", null, "31.0", null, "0.1", null, "32.7", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.1", null, "5.4", null, "0.1", null, "5.9", null, "0.1", null, "6.1", null, "0.1", null, "6.4", null, "0.1", null, "6.9", null, "0.1", null, "7.2", null, "0.1", null, "6.9", null, "0.1", null, "6.3", null, "0.1", null, "5.9", null, "0.1", null, "6.0", null, "0.1", null, "6.2", null, "0.1", null, "6.8", null, "0.1", null, "5.9", null, "0.1", null, "4.8", null, "0.1", null, "3.6", null, "0.1", null, "2.3", null, "0.1", null, "2.2", null, "0.1", null, "11.2", null, "0.1", null, "3.5", null, "0.1", null, "20.0", null, "0.1", null, "8.9", null, "0.1", null, "39.8", null, "0.1", null, "82.4", null, "0.1", null, "80.0", null, "0.1", null, "76.2", null, "0.1", null, "25.7", null, "0.1", null, "22.9", null, "0.1", null, "18.9", null, "0.1", null, "8.2", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.7", null, "-888888888.0", "(X)", "9704610", null, "5938", null, "528680", null, "3593", null, "546553", null, "10746", null, "596751", null, "11128", null, "613917", null, "4713", null, "636002", null, "4114", null, "671554", null, "3044", null, "719194", null, "3353", null, "688189", null, "10955", null, "622002", null, "11082", null, "575589", null, "2937", null, "589572", null, "2455", null, "593687", null, "10428", null, "656523", null, "10033", null, "563806", null, "9408", null, "436505", null, "9199", null, "312291", null, "6983", null, "191303", null, "6500", null, "162492", null, "5976", null, "1143304", null, "2733", null, "361339", null, "3409", null, "2033323", null, "5468", null, "888580", null, "3185", null, "3950858", null, "4731", null, "7915828", null, "7120", null, "7671287", null, "3877", null, "7296698", null, "7305", null, "2322920", null, "10244", null, "2048693", null, "9965", null, "1666397", null, "2099", null, "666086", null, "1803", null, "38.9", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.1", null, "5.6", null, "0.1", null, "6.1", null, "0.1", null, "6.3", null, "0.1", null, "6.6", null, "0.1", null, "6.9", null, "0.1", null, "7.4", null, "0.1", null, "7.1", null, "0.1", null, "6.4", null, "0.1", null, "5.9", null, "0.1", null, "6.1", null, "0.1", null, "6.1", null, "0.1", null, "6.8", null, "0.1", null, "5.8", null, "0.1", null, "4.5", null, "0.1", null, "3.2", null, "0.1", null, "2.0", null, "0.1", null, "1.7", null, "0.1", null, "11.8", null, "0.1", null, "3.7", null, "0.1", null, "21.0", null, "0.1", null, "9.2", null, "0.1", null, "40.7", null, "0.1", null, "81.6", null, "0.1", null, "79.0", null, "0.1", null, "75.2", null, "0.1", null, "23.9", null, "0.1", null, "21.1", null, "0.1", null, "17.2", null, "0.1", null, "6.9", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10162638", null, "5938", null, "510387", null, "3829", null, "522534", null, "9133", null, "565648", null, "9730", null, "595224", null, "4256", null, "633484", null, "3692", null, "693944", null, "2831", null, "715782", null, "2682", null, "680399", null, "11065", null, "628827", null, "10706", null, "588968", null, "2523", null, "610735", null, "2294", null, "640479", null, "11778", null, "685451", null, "11858", null, "609985", null, "10341", null, "519413", null, "10240", null, "410162", null, "8380", null, "272142", null, "7975", null, "279074", null, "7337", null, "1088182", null, "3059", null, "340643", null, "2495", null, "1939212", null, "5116", null, "888065", null, "3190", null, "3947660", null, "4371", null, "8454671", null, "6672", null, "8223426", null, "3152", null, "7849616", null, "7946", null, "2776227", null, "12146", null, "2499180", null, "10970", null, "2090776", null, "2206", null, "961378", null, "1596", null, "41.3", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.0", null, "0.1", null, "5.1", null, "0.1", null, "5.6", null, "0.1", null, "5.9", null, "0.1", null, "6.2", null, "0.1", null, "6.8", null, "0.1", null, "7.0", null, "0.1", null, "6.7", null, "0.1", null, "6.2", null, "0.1", null, "5.8", null, "0.1", null, "6.0", null, "0.1", null, "6.3", null, "0.1", null, "6.7", null, "0.1", null, "6.0", null, "0.1", null, "5.1", null, "0.1", null, "4.0", null, "0.1", null, "2.7", null, "0.1", null, "2.7", null, "0.1", null, "10.7", null, "0.1", null, "3.4", null, "0.1", null, "19.1", null, "0.1", null, "8.7", null, "0.1", null, "38.8", null, "0.1", null, "83.2", null, "0.1", null, "80.9", null, "0.1", null, "77.2", null, "0.1", null, "27.3", null, "0.1", null, "24.6", null, "0.1", null, "20.6", null, "0.1", null, "9.5", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "36"], ["0400000US37", "North Carolina", "11046024", null, "-555555555", "*****", "604897", null, "4976", null, "648697", null, "12409", null, "665306", null, "13093", null, "730298", null, "8999", null, "750306", null, "9379", null, "717739", null, "8131", null, "764029", null, "8586", null, "735094", null, "13164", null, "720070", null, "13284", null, "662917", null, "7241", null, "692498", null, "7349", null, "660551", null, "10723", null, "712932", null, "11650", null, "631278", null, "11327", null, "532540", null, "11565", null, "394209", null, "7609", null, "241415", null, "6101", null, "181248", null, "7083", null, "1314003", null, "7152", null, "430616", null, "4885", null, "2349516", null, "3279", null, "1049988", null, "9785", null, "4417536", null, "10302", null, "8982223", null, "7415", null, "8696508", null, "3279", null, "8244253", null, "10990", null, "2693622", null, "11669", null, "2405330", null, "11699", null, "1980690", null, "5072", null, "816872", null, "3758", null, "39.4", null, "0.2", null, "95.5", null, "0.3", null, "64.5", null, "0.1", null, "29.5", null, "0.1", null, "35.0", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.1", null, "5.9", null, "0.1", null, "6.0", null, "0.1", null, "6.6", null, "0.1", null, "6.8", null, "0.1", null, "6.5", null, "0.1", null, "6.9", null, "0.1", null, "6.7", null, "0.1", null, "6.5", null, "0.1", null, "6.0", null, "0.1", null, "6.3", null, "0.1", null, "6.0", null, "0.1", null, "6.5", null, "0.1", null, "5.7", null, "0.1", null, "4.8", null, "0.1", null, "3.6", null, "0.1", null, "2.2", null, "0.1", null, "1.6", null, "0.1", null, "11.9", null, "0.1", null, "3.9", null, "0.1", null, "21.3", null, "0.1", null, "9.5", null, "0.1", null, "40.0", null, "0.1", null, "81.3", null, "0.1", null, "78.7", null, "0.1", null, "74.6", null, "0.1", null, "24.4", null, "0.1", null, "21.8", null, "0.1", null, "17.9", null, "0.1", null, "7.4", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.5", null, "-888888888.0", "(X)", "5396017", null, "7954", null, "310056", null, "5853", null, "331171", null, "8581", null, "342161", null, "9194", null, "368725", null, "7439", null, "385841", null, "6710", null, "362995", null, "5913", null, "378715", null, "5661", null, "360908", null, "8640", null, "351222", null, "7969", null, "326024", null, "5239", null, "335450", null, "5385", null, "320852", null, "6620", null, "340931", null, "6662", null, "292905", null, "7169", null, "244778", null, "7246", null, "177507", null, "4547", null, "99396", null, "3915", null, "66380", null, "3377", null, "673332", null, "5310", null, "218582", null, "5110", null, "1201970", null, "7571", null, "535984", null, "6475", null, "2208406", null, "8341", null, "4339200", null, "7495", null, "4194047", null, "5361", null, "3960142", null, "9426", null, "1221897", null, "7229", null, "1086298", null, "6930", null, "880966", null, "3437", null, "343283", null, "2875", null, "38.1", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.7", null, "0.1", null, "6.1", null, "0.2", null, "6.3", null, "0.2", null, "6.8", null, "0.1", null, "7.2", null, "0.1", null, "6.7", null, "0.1", null, "7.0", null, "0.1", null, "6.7", null, "0.2", null, "6.5", null, "0.1", null, "6.0", null, "0.1", null, "6.2", null, "0.1", null, "5.9", null, "0.1", null, "6.3", null, "0.1", null, "5.4", null, "0.1", null, "4.5", null, "0.1", null, "3.3", null, "0.1", null, "1.8", null, "0.1", null, "1.2", null, "0.1", null, "12.5", null, "0.1", null, "4.1", null, "0.1", null, "22.3", null, "0.1", null, "9.9", null, "0.1", null, "40.9", null, "0.1", null, "80.4", null, "0.1", null, "77.7", null, "0.1", null, "73.4", null, "0.2", null, "22.6", null, "0.1", null, "20.1", null, "0.1", null, "16.3", null, "0.1", null, "6.4", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5650007", null, "7954", null, "294841", null, "5422", null, "317526", null, "8771", null, "323145", null, "9327", null, "361573", null, "7633", null, "364465", null, "6422", null, "354744", null, "5084", null, "385314", null, "5289", null, "374186", null, "8584", null, "368848", null, "9556", null, "336893", null, "4201", null, "357048", null, "4864", null, "339699", null, "7413", null, "372001", null, "7978", null, "338373", null, "6825", null, "287762", null, "6745", null, "216702", null, "5990", null, "142019", null, "5030", null, "114868", null, "5071", null, "640671", null, "5297", null, "212034", null, "5298", null, "1147546", null, "7919", null, "514004", null, "5871", null, "2209130", null, "7549", null, "4643023", null, "6036", null, "4502461", null, "4374", null, "4284111", null, "7320", null, "1471725", null, "8327", null, "1319032", null, "8681", null, "1099724", null, "3808", null, "473589", null, "3006", null, "40.7", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.1", null, "5.6", null, "0.2", null, "5.7", null, "0.2", null, "6.4", null, "0.1", null, "6.5", null, "0.1", null, "6.3", null, "0.1", null, "6.8", null, "0.1", null, "6.6", null, "0.2", null, "6.5", null, "0.2", null, "6.0", null, "0.1", null, "6.3", null, "0.1", null, "6.0", null, "0.1", null, "6.6", null, "0.1", null, "6.0", null, "0.1", null, "5.1", null, "0.1", null, "3.8", null, "0.1", null, "2.5", null, "0.1", null, "2.0", null, "0.1", null, "11.3", null, "0.1", null, "3.8", null, "0.1", null, "20.3", null, "0.1", null, "9.1", null, "0.1", null, "39.1", null, "0.1", null, "82.2", null, "0.1", null, "79.7", null, "0.1", null, "75.8", null, "0.2", null, "26.0", null, "0.1", null, "23.3", null, "0.2", null, "19.5", null, "0.1", null, "8.4", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "37"], ["0400000US38", "North Dakota", "796568", null, "-555555555", "*****", "43600", null, "1828", null, "49702", null, "2901", null, "55415", null, "3643", null, "55036", null, "3164", null, "61599", null, "3290", null, "57096", null, "2810", null, "57761", null, "3109", null, "58557", null, "4321", null, "51858", null, "3845", null, "41757", null, "2242", null, "37378", null, "1209", null, "38373", null, "2477", null, "48141", null, "2507", null, "43965", null, "2176", null, "36185", null, "2089", null, "24638", null, "1865", null, "17636", null, "1796", null, "17871", null, "1712", null, "105117", null, "2615", null, "29310", null, "1532", null, "178027", null, "2136", null, "87325", null, "3415", null, "341907", null, "3951", null, "637108", null, "2344", null, "618541", null, "2136", null, "581552", null, "3481", null, "188436", null, "2900", null, "169136", null, "2647", null, "140295", null, "1739", null, "60145", null, "1190", null, "36.7", null, "0.4", null, "105.4", null, "1.3", null, "66.6", null, "0.8", null, "29.3", null, "0.5", null, "37.2", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.2", null, "6.2", null, "0.4", null, "7.0", null, "0.5", null, "6.9", null, "0.4", null, "7.7", null, "0.4", null, "7.2", null, "0.4", null, "7.3", null, "0.4", null, "7.4", null, "0.5", null, "6.5", null, "0.5", null, "5.2", null, "0.3", null, "4.7", null, "0.2", null, "4.8", null, "0.3", null, "6.0", null, "0.3", null, "5.5", null, "0.3", null, "4.5", null, "0.3", null, "3.1", null, "0.2", null, "2.2", null, "0.2", null, "2.2", null, "0.2", null, "13.2", null, "0.3", null, "3.7", null, "0.2", null, "22.3", null, "0.3", null, "11.0", null, "0.4", null, "42.9", null, "0.5", null, "80.0", null, "0.3", null, "77.7", null, "0.3", null, "73.0", null, "0.4", null, "23.7", null, "0.4", null, "21.2", null, "0.3", null, "17.6", null, "0.2", null, "7.6", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.2", null, "-888888888.0", "(X)", "408714", null, "2484", null, "22074", null, "1508", null, "25974", null, "1978", null, "26588", null, "2209", null, "28753", null, "2432", null, "34691", null, "2490", null, "30079", null, "1982", null, "30924", null, "2013", null, "30657", null, "2977", null, "26269", null, "2593", null, "23830", null, "1968", null, "19045", null, "789", null, "19895", null, "1775", null, "24275", null, "1617", null, "22116", null, "1530", null, "17753", null, "1437", null, "12200", null, "1286", null, "7664", null, "1076", null, "5927", null, "931", null, "52562", null, "1832", null, "15388", null, "1273", null, "90024", null, "2109", null, "48056", null, "2491", null, "181373", null, "3003", null, "328484", null, "2395", null, "318690", null, "2389", null, "298258", null, "3055", null, "89935", null, "1814", null, "80892", null, "1881", null, "65660", null, "1199", null, "25791", null, "800", null, "35.9", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.4", null, "6.4", null, "0.5", null, "6.5", null, "0.5", null, "7.0", null, "0.6", null, "8.5", null, "0.6", null, "7.4", null, "0.5", null, "7.6", null, "0.5", null, "7.5", null, "0.7", null, "6.4", null, "0.6", null, "5.8", null, "0.5", null, "4.7", null, "0.2", null, "4.9", null, "0.4", null, "5.9", null, "0.4", null, "5.4", null, "0.4", null, "4.3", null, "0.3", null, "3.0", null, "0.3", null, "1.9", null, "0.3", null, "1.5", null, "0.2", null, "12.9", null, "0.4", null, "3.8", null, "0.3", null, "22.0", null, "0.5", null, "11.8", null, "0.6", null, "44.4", null, "0.7", null, "80.4", null, "0.5", null, "78.0", null, "0.5", null, "73.0", null, "0.6", null, "22.0", null, "0.4", null, "19.8", null, "0.5", null, "16.1", null, "0.3", null, "6.3", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "387854", null, "2484", null, "21526", null, "1350", null, "23728", null, "2143", null, "28827", null, "2513", null, "26283", null, "1785", null, "26908", null, "1809", null, "27017", null, "1820", null, "26837", null, "1792", null, "27900", null, "2508", null, "25589", null, "2191", null, "17927", null, "1094", null, "18333", null, "878", null, "18478", null, "1398", null, "23866", null, "1582", null, "21849", null, "1405", null, "18432", null, "1412", null, "12438", null, "1339", null, "9972", null, "1366", null, "11944", null, "1291", null, "52555", null, "1855", null, "13922", null, "1324", null, "88003", null, "2194", null, "39269", null, "1663", null, "160534", null, "2438", null, "308624", null, "2354", null, "299851", null, "2011", null, "283294", null, "2535", null, "98501", null, "2082", null, "88244", null, "1764", null, "74635", null, "1385", null, "34354", null, "848", null, "37.4", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.6", null, "0.3", null, "6.1", null, "0.5", null, "7.4", null, "0.6", null, "6.8", null, "0.5", null, "6.9", null, "0.5", null, "7.0", null, "0.5", null, "6.9", null, "0.5", null, "7.2", null, "0.7", null, "6.6", null, "0.6", null, "4.6", null, "0.3", null, "4.7", null, "0.2", null, "4.8", null, "0.4", null, "6.2", null, "0.4", null, "5.6", null, "0.4", null, "4.8", null, "0.4", null, "3.2", null, "0.3", null, "2.6", null, "0.4", null, "3.1", null, "0.3", null, "13.6", null, "0.5", null, "3.6", null, "0.3", null, "22.7", null, "0.5", null, "10.1", null, "0.4", null, "41.4", null, "0.6", null, "79.6", null, "0.5", null, "77.3", null, "0.5", null, "73.0", null, "0.7", null, "25.4", null, "0.5", null, "22.8", null, "0.5", null, "19.2", null, "0.4", null, "8.9", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "38"], ["0400000US39", "Ohio", "11883304", null, "-555555555", "*****", "652242", null, "3343", null, "720032", null, "13020", null, "726058", null, "12600", null, "776171", null, "5521", null, "755491", null, "6094", null, "756876", null, "5066", null, "805431", null, "5249", null, "781563", null, "11887", null, "746195", null, "12425", null, "681549", null, "4830", null, "709836", null, "3945", null, "692000", null, "10836", null, "808463", null, "11435", null, "727828", null, "9061", null, "608572", null, "9377", null, "432423", null, "9050", null, "265023", null, "7766", null, "237551", null, "7085", null, "1446090", null, "3952", null, "470234", null, "3072", null, "2568566", null, "2949", null, "1061428", null, "5370", null, "4621727", null, "6787", null, "9634674", null, "6860", null, "9314738", null, "2949", null, "8849535", null, "9223", null, "3079860", null, "11311", null, "2756913", null, "11833", null, "2271397", null, "3777", null, "934997", null, "3119", null, "39.8", null, "0.1", null, "97.5", null, "0.2", null, "68.7", null, "0.1", null, "32.2", null, "0.1", null, "36.5", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.1", null, "6.1", null, "0.1", null, "6.1", null, "0.1", null, "6.5", null, "0.1", null, "6.4", null, "0.1", null, "6.4", null, "0.1", null, "6.8", null, "0.1", null, "6.6", null, "0.1", null, "6.3", null, "0.1", null, "5.7", null, "0.1", null, "6.0", null, "0.1", null, "5.8", null, "0.1", null, "6.8", null, "0.1", null, "6.1", null, "0.1", null, "5.1", null, "0.1", null, "3.6", null, "0.1", null, "2.2", null, "0.1", null, "2.0", null, "0.1", null, "12.2", null, "0.1", null, "4.0", null, "0.1", null, "21.6", null, "0.1", null, "8.9", null, "0.1", null, "38.9", null, "0.1", null, "81.1", null, "0.1", null, "78.4", null, "0.1", null, "74.5", null, "0.1", null, "25.9", null, "0.1", null, "23.2", null, "0.1", null, "19.1", null, "0.1", null, "7.9", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "0.9", null, "-888888888.0", "(X)", "5867389", null, "6384", null, "336977", null, "3577", null, "369771", null, "8553", null, "372732", null, "7948", null, "392963", null, "4134", null, "386544", null, "4289", null, "385199", null, "3215", null, "405657", null, "3629", null, "396096", null, "8566", null, "370272", null, "8574", null, "341676", null, "3231", null, "352865", null, "2610", null, "348900", null, "7200", null, "385996", null, "7280", null, "349656", null, "5885", null, "281057", null, "5527", null, "194694", null, "4689", null, "110771", null, "4384", null, "85563", null, "4021", null, "742503", null, "3022", null, "240169", null, "3096", null, "1319649", null, "5021", null, "539338", null, "3755", null, "2336731", null, "5507", null, "4711286", null, "6125", null, "4547740", null, "4073", null, "4315361", null, "6825", null, "1407737", null, "7337", null, "1254472", null, "7055", null, "1021741", null, "2663", null, "391028", null, "2156", null, "38.6", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.7", null, "0.1", null, "6.3", null, "0.1", null, "6.4", null, "0.1", null, "6.7", null, "0.1", null, "6.6", null, "0.1", null, "6.6", null, "0.1", null, "6.9", null, "0.1", null, "6.8", null, "0.1", null, "6.3", null, "0.1", null, "5.8", null, "0.1", null, "6.0", null, "0.1", null, "5.9", null, "0.1", null, "6.6", null, "0.1", null, "6.0", null, "0.1", null, "4.8", null, "0.1", null, "3.3", null, "0.1", null, "1.9", null, "0.1", null, "1.5", null, "0.1", null, "12.7", null, "0.1", null, "4.1", null, "0.1", null, "22.5", null, "0.1", null, "9.2", null, "0.1", null, "39.8", null, "0.1", null, "80.3", null, "0.1", null, "77.5", null, "0.1", null, "73.5", null, "0.1", null, "24.0", null, "0.1", null, "21.4", null, "0.1", null, "17.4", null, "0.1", null, "6.7", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6015915", null, "6384", null, "315265", null, "3467", null, "350261", null, "8346", null, "353326", null, "8086", null, "383208", null, "4512", null, "368947", null, "4167", null, "371677", null, "3255", null, "399774", null, "3496", null, "385467", null, "7785", null, "375923", null, "8062", null, "339873", null, "3111", null, "356971", null, "2644", null, "343100", null, "7531", null, "422467", null, "7442", null, "378172", null, "6361", null, "327515", null, "7067", null, "237729", null, "6837", null, "154252", null, "6226", null, "151988", null, "5422", null, "703587", null, "3155", null, "230065", null, "2870", null, "1248917", null, "4900", null, "522090", null, "4050", null, "2284996", null, "5285", null, "4923388", null, "5821", null, "4766998", null, "3359", null, "4534174", null, "6397", null, "1672123", null, "7604", null, "1502441", null, "8471", null, "1249656", null, "2629", null, "543969", null, "1997", null, "41.1", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.1", null, "5.8", null, "0.1", null, "5.9", null, "0.1", null, "6.4", null, "0.1", null, "6.1", null, "0.1", null, "6.2", null, "0.1", null, "6.6", null, "0.1", null, "6.4", null, "0.1", null, "6.2", null, "0.1", null, "5.6", null, "0.1", null, "5.9", null, "0.1", null, "5.7", null, "0.1", null, "7.0", null, "0.1", null, "6.3", null, "0.1", null, "5.4", null, "0.1", null, "4.0", null, "0.1", null, "2.6", null, "0.1", null, "2.5", null, "0.1", null, "11.7", null, "0.1", null, "3.8", null, "0.1", null, "20.8", null, "0.1", null, "8.7", null, "0.1", null, "38.0", null, "0.1", null, "81.8", null, "0.1", null, "79.2", null, "0.1", null, "75.4", null, "0.1", null, "27.8", null, "0.1", null, "25.0", null, "0.1", null, "20.8", null, "0.1", null, "9.0", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "39"], ["0400000US40", "Oklahoma", "4095393", null, "-555555555", "*****", "241245", null, "1840", null, "266035", null, "5345", null, "280257", null, "5288", null, "293519", null, "3413", null, "287093", null, "4293", null, "267783", null, "2441", null, "274583", null, "2680", null, "281474", null, "6487", null, "273163", null, "6080", null, "238750", null, "3376", null, "230908", null, "2849", null, "217206", null, "4393", null, "251296", null, "4278", null, "229299", null, "4349", null, "178472", null, "4492", null, "130676", null, "3820", null, "84453", null, "3025", null, "69181", null, "3257", null, "546292", null, "2495", null, "175810", null, "1882", null, "963347", null, "1438", null, "404802", null, "3129", null, "1677615", null, "4297", null, "3248967", null, "3376", null, "3132046", null, "1438", null, "2955455", null, "5709", null, "943377", null, "4662", null, "843079", null, "4785", null, "692081", null, "2338", null, "284310", null, "1727", null, "37.4", null, "0.1", null, "99.3", null, "0.4", null, "67.8", null, "0.2", null, "28.4", null, "0.1", null, "39.5", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.9", null, "0.1", null, "6.5", null, "0.1", null, "6.8", null, "0.1", null, "7.2", null, "0.1", null, "7.0", null, "0.1", null, "6.5", null, "0.1", null, "6.7", null, "0.1", null, "6.9", null, "0.2", null, "6.7", null, "0.1", null, "5.8", null, "0.1", null, "5.6", null, "0.1", null, "5.3", null, "0.1", null, "6.1", null, "0.1", null, "5.6", null, "0.1", null, "4.4", null, "0.1", null, "3.2", null, "0.1", null, "2.1", null, "0.1", null, "1.7", null, "0.1", null, "13.3", null, "0.1", null, "4.3", null, "0.1", null, "23.5", null, "0.1", null, "9.9", null, "0.1", null, "41.0", null, "0.1", null, "79.3", null, "0.1", null, "76.5", null, "0.1", null, "72.2", null, "0.1", null, "23.0", null, "0.1", null, "20.6", null, "0.1", null, "16.9", null, "0.1", null, "6.9", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.1", null, "-888888888.0", "(X)", "2040182", null, "3702", null, "121707", null, "1894", null, "135598", null, "3714", null, "146560", null, "3806", null, "153359", null, "3168", null, "148553", null, "3128", null, "137211", null, "1816", null, "139046", null, "2194", null, "144601", null, "4491", null, "133847", null, "3845", null, "120592", null, "2455", null, "116166", null, "1625", null, "108818", null, "3058", null, "121749", null, "3130", null, "109048", null, "3137", null, "83029", null, "2988", null, "58825", null, "2403", null, "36151", null, "1846", null, "25322", null, "1880", null, "282158", null, "1857", null, "91847", null, "2330", null, "495712", null, "3031", null, "210065", null, "2442", null, "856617", null, "3800", null, "1606094", null, "3562", null, "1544470", null, "2264", null, "1453286", null, "3776", null, "434124", null, "3144", null, "383637", null, "3034", null, "312375", null, "1552", null, "120298", null, "1081", null, "36.2", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.0", null, "0.1", null, "6.6", null, "0.2", null, "7.2", null, "0.2", null, "7.5", null, "0.1", null, "7.3", null, "0.2", null, "6.7", null, "0.1", null, "6.8", null, "0.1", null, "7.1", null, "0.2", null, "6.6", null, "0.2", null, "5.9", null, "0.1", null, "5.7", null, "0.1", null, "5.3", null, "0.2", null, "6.0", null, "0.2", null, "5.3", null, "0.2", null, "4.1", null, "0.1", null, "2.9", null, "0.1", null, "1.8", null, "0.1", null, "1.2", null, "0.1", null, "13.8", null, "0.1", null, "4.5", null, "0.1", null, "24.3", null, "0.1", null, "10.3", null, "0.1", null, "42.0", null, "0.2", null, "78.7", null, "0.1", null, "75.7", null, "0.1", null, "71.2", null, "0.2", null, "21.3", null, "0.1", null, "18.8", null, "0.1", null, "15.3", null, "0.1", null, "5.9", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "2055211", null, "3702", null, "119538", null, "1976", null, "130437", null, "4212", null, "133697", null, "4383", null, "140160", null, "3167", null, "138540", null, "2634", null, "130572", null, "1619", null, "135537", null, "1815", null, "136873", null, "4543", null, "139316", null, "4558", null, "118158", null, "1983", null, "114742", null, "2172", null, "108388", null, "2919", null, "129547", null, "2878", null, "120251", null, "3023", null, "95443", null, "2988", null, "71851", null, "2159", null, "48302", null, "1984", null, "43859", null, "2206", null, "264134", null, "2049", null, "83963", null, "2063", null, "467635", null, "3176", null, "194737", null, "2226", null, "820998", null, "3377", null, "1642873", null, "2777", null, "1587576", null, "1795", null, "1502169", null, "3848", null, "509253", null, "3216", null, "459442", null, "3616", null, "379706", null, "1589", null, "164012", null, "1347", null, "38.6", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.8", null, "0.1", null, "6.3", null, "0.2", null, "6.5", null, "0.2", null, "6.8", null, "0.1", null, "6.7", null, "0.1", null, "6.4", null, "0.1", null, "6.6", null, "0.1", null, "6.7", null, "0.2", null, "6.8", null, "0.2", null, "5.7", null, "0.1", null, "5.6", null, "0.1", null, "5.3", null, "0.1", null, "6.3", null, "0.1", null, "5.9", null, "0.1", null, "4.6", null, "0.1", null, "3.5", null, "0.1", null, "2.4", null, "0.1", null, "2.1", null, "0.1", null, "12.9", null, "0.1", null, "4.1", null, "0.1", null, "22.8", null, "0.1", null, "9.5", null, "0.1", null, "39.9", null, "0.1", null, "79.9", null, "0.1", null, "77.2", null, "0.1", null, "73.1", null, "0.2", null, "24.8", null, "0.2", null, "22.4", null, "0.2", null, "18.5", null, "0.1", null, "8.0", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "40"], ["0400000US41", "Oregon", "4272371", null, "-555555555", "*****", "197191", null, "2283", null, "224138", null, "5992", null, "247898", null, "6062", null, "258469", null, "3471", null, "259722", null, "4169", null, "278217", null, "3682", null, "306803", null, "3797", null, "314955", null, "7999", null, "302483", null, "8439", null, "268436", null, "2675", null, "262238", null, "3355", null, "242084", null, "6771", null, "259520", null, "6597", null, "249734", null, "6531", null, "244691", null, "6377", null, "164991", null, "5376", null, "105397", null, "4843", null, "85404", null, "4227", null, "472036", null, "3294", null, "156022", null, "2355", null, "825249", null, "1734", null, "362169", null, "3607", null, "1720649", null, "4110", null, "3553832", null, "4344", null, "3447122", null, "1734", null, "3292781", null, "5590", null, "1109737", null, "6768", null, "1007985", null, "6133", null, "850217", null, "2517", null, "355792", null, "2346", null, "40.8", null, "0.2", null, "99.3", null, "0.3", null, "64.5", null, "0.2", null, "32.7", null, "0.1", null, "31.8", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.6", null, "0.1", null, "5.2", null, "0.1", null, "5.8", null, "0.1", null, "6.0", null, "0.1", null, "6.1", null, "0.1", null, "6.5", null, "0.1", null, "7.2", null, "0.1", null, "7.4", null, "0.2", null, "7.1", null, "0.2", null, "6.3", null, "0.1", null, "6.1", null, "0.1", null, "5.7", null, "0.2", null, "6.1", null, "0.2", null, "5.8", null, "0.2", null, "5.7", null, "0.1", null, "3.9", null, "0.1", null, "2.5", null, "0.1", null, "2.0", null, "0.1", null, "11.0", null, "0.1", null, "3.7", null, "0.1", null, "19.3", null, "0.1", null, "8.5", null, "0.1", null, "40.3", null, "0.1", null, "83.2", null, "0.1", null, "80.7", null, "0.1", null, "77.1", null, "0.1", null, "26.0", null, "0.2", null, "23.6", null, "0.1", null, "19.9", null, "0.1", null, "8.3", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.4", null, "-888888888.0", "(X)", "2128207", null, "3663", null, "99502", null, "2288", null, "116981", null, "4868", null, "128492", null, "4775", null, "136506", null, "3370", null, "131704", null, "2721", null, "141613", null, "2378", null, "155604", null, "2433", null, "162555", null, "5911", null, "151889", null, "5669", null, "134477", null, "1835", null, "133628", null, "2541", null, "120708", null, "4306", null, "126304", null, "4327", null, "116959", null, "3967", null, "115211", null, "3755", null, "74438", null, "3250", null, "47605", null, "2937", null, "34031", null, "2573", null, "245473", null, "2738", null, "82534", null, "2340", null, "427509", null, "3577", null, "185676", null, "2336", null, "879871", null, "3074", null, "1759333", null, "3973", null, "1700698", null, "2350", null, "1620892", null, "3947", null, "514548", null, "4303", null, "464457", null, "3912", null, "388244", null, "1694", null, "156074", null, "1488", null, "39.7", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.7", null, "0.1", null, "5.5", null, "0.2", null, "6.0", null, "0.2", null, "6.4", null, "0.2", null, "6.2", null, "0.1", null, "6.7", null, "0.1", null, "7.3", null, "0.1", null, "7.6", null, "0.3", null, "7.1", null, "0.3", null, "6.3", null, "0.1", null, "6.3", null, "0.1", null, "5.7", null, "0.2", null, "5.9", null, "0.2", null, "5.5", null, "0.2", null, "5.4", null, "0.2", null, "3.5", null, "0.2", null, "2.2", null, "0.1", null, "1.6", null, "0.1", null, "11.5", null, "0.1", null, "3.9", null, "0.1", null, "20.1", null, "0.1", null, "8.7", null, "0.1", null, "41.3", null, "0.1", null, "82.7", null, "0.2", null, "79.9", null, "0.1", null, "76.2", null, "0.2", null, "24.2", null, "0.2", null, "21.8", null, "0.2", null, "18.2", null, "0.1", null, "7.3", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "2144164", null, "3663", null, "97689", null, "2597", null, "107157", null, "4108", null, "119406", null, "4088", null, "121963", null, "3527", null, "128018", null, "3607", null, "136604", null, "2551", null, "151199", null, "2695", null, "152400", null, "5276", null, "150594", null, "5533", null, "133959", null, "1908", null, "128610", null, "2062", null, "121376", null, "4301", null, "133216", null, "4418", null, "132775", null, "4704", null, "129480", null, "4453", null, "90553", null, "4126", null, "57792", null, "3312", null, "51373", null, "3503", null, "226563", null, "2539", null, "73488", null, "2054", null, "397740", null, "3307", null, "176493", null, "2674", null, "840778", null, "3431", null, "1794499", null, "3177", null, "1746424", null, "1977", null, "1671889", null, "4148", null, "595189", null, "4681", null, "543528", null, "4237", null, "461973", null, "2048", null, "199718", null, "1594", null, "41.9", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.6", null, "0.1", null, "5.0", null, "0.2", null, "5.6", null, "0.2", null, "5.7", null, "0.2", null, "6.0", null, "0.2", null, "6.4", null, "0.1", null, "7.1", null, "0.1", null, "7.1", null, "0.2", null, "7.0", null, "0.3", null, "6.2", null, "0.1", null, "6.0", null, "0.1", null, "5.7", null, "0.2", null, "6.2", null, "0.2", null, "6.2", null, "0.2", null, "6.0", null, "0.2", null, "4.2", null, "0.2", null, "2.7", null, "0.2", null, "2.4", null, "0.2", null, "10.6", null, "0.1", null, "3.4", null, "0.1", null, "18.5", null, "0.1", null, "8.2", null, "0.1", null, "39.2", null, "0.2", null, "83.7", null, "0.2", null, "81.5", null, "0.1", null, "78.0", null, "0.2", null, "27.8", null, "0.2", null, "25.3", null, "0.2", null, "21.5", null, "0.1", null, "9.3", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "41"], ["0400000US42", "Pennsylvania", "13078751", null, "-555555555", "*****", "660513", null, "2532", null, "714860", null, "11942", null, "765894", null, "11787", null, "856231", null, "6012", null, "815898", null, "6013", null, "792347", null, "4059", null, "873082", null, "4719", null, "851745", null, "14065", null, "853717", null, "13465", null, "735396", null, "4945", null, "781516", null, "3860", null, "813719", null, "13040", null, "897859", null, "12373", null, "825524", null, "9352", null, "713894", null, "8862", null, "507142", null, "8500", null, "318715", null, "7145", null, "300699", null, "6590", null, "1480754", null, "3310", null, "483722", null, "2753", null, "2624989", null, "1640", null, "1188407", null, "5366", null, "5043020", null, "5730", null, "10785532", null, "6887", null, "10453762", null, "1640", null, "9911572", null, "7457", null, "3563833", null, "12781", null, "3214259", null, "11714", null, "2665974", null, "2378", null, "1126556", null, "3107", null, "41.2", null, "0.1", null, "97.3", null, "0.2", null, "67.9", null, "0.1", null, "34.2", null, "0.1", null, "33.7", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.1", null, "0.1", null, "5.5", null, "0.1", null, "5.9", null, "0.1", null, "6.5", null, "0.1", null, "6.2", null, "0.1", null, "6.1", null, "0.1", null, "6.7", null, "0.1", null, "6.5", null, "0.1", null, "6.5", null, "0.1", null, "5.6", null, "0.1", null, "6.0", null, "0.1", null, "6.2", null, "0.1", null, "6.9", null, "0.1", null, "6.3", null, "0.1", null, "5.5", null, "0.1", null, "3.9", null, "0.1", null, "2.4", null, "0.1", null, "2.3", null, "0.1", null, "11.3", null, "0.1", null, "3.7", null, "0.1", null, "20.1", null, "0.1", null, "9.1", null, "0.1", null, "38.6", null, "0.1", null, "82.5", null, "0.1", null, "79.9", null, "0.1", null, "75.8", null, "0.1", null, "27.2", null, "0.1", null, "24.6", null, "0.1", null, "20.4", null, "0.1", null, "8.6", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.0", null, "-888888888.0", "(X)", "6448942", null, "5384", null, "339222", null, "2858", null, "364580", null, "7564", null, "392660", null, "7679", null, "434323", null, "4409", null, "415198", null, "4258", null, "401069", null, "3456", null, "443374", null, "3615", null, "418784", null, "9196", null, "442380", null, "8757", null, "366698", null, "3573", null, "390651", null, "2607", null, "406340", null, "8489", null, "434092", null, "7886", null, "399202", null, "6672", null, "331453", null, "6669", null, "228084", null, "5150", null, "140270", null, "4684", null, "100562", null, "4344", null, "757240", null, "2449", null, "246841", null, "2595", null, "1343303", null, "4249", null, "602680", null, "4297", null, "2555128", null, "4974", null, "5274214", null, "6362", null, "5105639", null, "2997", null, "4831845", null, "6153", null, "1633663", null, "8186", null, "1468093", null, "7645", null, "1199571", null, "1719", null, "468916", null, "2206", null, "40.2", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.3", null, "0.1", null, "5.7", null, "0.1", null, "6.1", null, "0.1", null, "6.7", null, "0.1", null, "6.4", null, "0.1", null, "6.2", null, "0.1", null, "6.9", null, "0.1", null, "6.5", null, "0.1", null, "6.9", null, "0.1", null, "5.7", null, "0.1", null, "6.1", null, "0.1", null, "6.3", null, "0.1", null, "6.7", null, "0.1", null, "6.2", null, "0.1", null, "5.1", null, "0.1", null, "3.5", null, "0.1", null, "2.2", null, "0.1", null, "1.6", null, "0.1", null, "11.7", null, "0.1", null, "3.8", null, "0.1", null, "20.8", null, "0.1", null, "9.3", null, "0.1", null, "39.6", null, "0.1", null, "81.8", null, "0.1", null, "79.2", null, "0.1", null, "74.9", null, "0.1", null, "25.3", null, "0.1", null, "22.8", null, "0.1", null, "18.6", null, "0.1", null, "7.3", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6629809", null, "5384", null, "321291", null, "3126", null, "350280", null, "8554", null, "373234", null, "8174", null, "421908", null, "4876", null, "400700", null, "4134", null, "391278", null, "2753", null, "429708", null, "2813", null, "432961", null, "10166", null, "411337", null, "9950", null, "368698", null, "3285", null, "390865", null, "2868", null, "407379", null, "8315", null, "463767", null, "8141", null, "426322", null, "6525", null, "382441", null, "6172", null, "279058", null, "5918", null, "178445", null, "4551", null, "200137", null, "4600", null, "723514", null, "2814", null, "236881", null, "3004", null, "1281686", null, "4371", null, "585727", null, "2986", null, "2487892", null, "4583", null, "5511318", null, "5304", null, "5348123", null, "2602", null, "5079727", null, "6227", null, "1930170", null, "8397", null, "1746166", null, "7812", null, "1466403", null, "1860", null, "657640", null, "1997", null, "42.4", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.8", null, "0.1", null, "5.3", null, "0.1", null, "5.6", null, "0.1", null, "6.4", null, "0.1", null, "6.0", null, "0.1", null, "5.9", null, "0.1", null, "6.5", null, "0.1", null, "6.5", null, "0.2", null, "6.2", null, "0.1", null, "5.6", null, "0.1", null, "5.9", null, "0.1", null, "6.1", null, "0.1", null, "7.0", null, "0.1", null, "6.4", null, "0.1", null, "5.8", null, "0.1", null, "4.2", null, "0.1", null, "2.7", null, "0.1", null, "3.0", null, "0.1", null, "10.9", null, "0.1", null, "3.6", null, "0.1", null, "19.3", null, "0.1", null, "8.8", null, "0.1", null, "37.5", null, "0.1", null, "83.1", null, "0.1", null, "80.7", null, "0.1", null, "76.6", null, "0.1", null, "29.1", null, "0.1", null, "26.3", null, "0.1", null, "22.1", null, "0.1", null, "9.9", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "42"], ["0400000US44", "Rhode Island", "1112308", null, "-555555555", "*****", "51425", null, "1156", null, "53158", null, "3811", null, "60206", null, "3711", null, "74539", null, "2598", null, "75910", null, "2622", null, "71644", null, "1210", null, "79024", null, "1927", null, "74402", null, "5051", null, "74757", null, "5155", null, "61656", null, "1663", null, "65540", null, "2000", null, "73717", null, "4008", null, "76162", null, "4000", null, "68275", null, "3124", null, "59284", null, "3159", null, "39567", null, "2899", null, "28175", null, "2340", null, "24867", null, "2476", null, "113364", null, "1606", null, "38747", null, "1057", null, "203536", null, "1144", null, "111702", null, "1472", null, "450276", null, "2668", null, "935797", null, "2271", null, "908772", null, "1144", null, "855494", null, "3091", null, "296330", null, "4262", null, "270042", null, "3775", null, "220168", null, "1276", null, "92609", null, "1215", null, "41.0", null, "0.3", null, "96.9", null, "0.7", null, "61.5", null, "0.4", null, "32.0", null, "0.2", null, "29.6", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.6", null, "0.1", null, "4.8", null, "0.3", null, "5.4", null, "0.3", null, "6.7", null, "0.2", null, "6.8", null, "0.2", null, "6.4", null, "0.1", null, "7.1", null, "0.2", null, "6.7", null, "0.5", null, "6.7", null, "0.5", null, "5.5", null, "0.1", null, "5.9", null, "0.2", null, "6.6", null, "0.4", null, "6.8", null, "0.4", null, "6.1", null, "0.3", null, "5.3", null, "0.3", null, "3.6", null, "0.3", null, "2.5", null, "0.2", null, "2.2", null, "0.2", null, "10.2", null, "0.1", null, "3.5", null, "0.1", null, "18.3", null, "0.1", null, "10.0", null, "0.1", null, "40.5", null, "0.2", null, "84.1", null, "0.2", null, "81.7", null, "0.1", null, "76.9", null, "0.3", null, "26.6", null, "0.4", null, "24.3", null, "0.3", null, "19.8", null, "0.1", null, "8.3", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.1", null, "-888888888.0", "(X)", "547371", null, "2055", null, "26034", null, "1165", null, "24810", null, "2501", null, "33416", null, "2740", null, "37891", null, "1999", null, "38763", null, "1841", null, "36523", null, "966", null, "40500", null, "1829", null, "37394", null, "3458", null, "39164", null, "3557", null, "29637", null, "1222", null, "32073", null, "1750", null, "36317", null, "2273", null, "36448", null, "2273", null, "32497", null, "2308", null, "27805", null, "2315", null, "17440", null, "1619", null, "11058", null, "1176", null, "9601", null, "1207", null, "58226", null, "1077", null, "21095", null, "1394", null, "105355", null, "2081", null, "55559", null, "1102", null, "230235", null, "2351", null, "457842", null, "2102", null, "442016", null, "1738", null, "416484", null, "2666", null, "134849", null, "2383", null, "121924", null, "2361", null, "98401", null, "1098", null, "38099", null, "936", null, "39.7", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.8", null, "0.2", null, "4.5", null, "0.5", null, "6.1", null, "0.5", null, "6.9", null, "0.4", null, "7.1", null, "0.3", null, "6.7", null, "0.2", null, "7.4", null, "0.3", null, "6.8", null, "0.6", null, "7.2", null, "0.6", null, "5.4", null, "0.2", null, "5.9", null, "0.3", null, "6.6", null, "0.4", null, "6.7", null, "0.4", null, "5.9", null, "0.4", null, "5.1", null, "0.4", null, "3.2", null, "0.3", null, "2.0", null, "0.2", null, "1.8", null, "0.2", null, "10.6", null, "0.2", null, "3.9", null, "0.2", null, "19.2", null, "0.3", null, "10.2", null, "0.2", null, "42.1", null, "0.4", null, "83.6", null, "0.3", null, "80.8", null, "0.3", null, "76.1", null, "0.5", null, "24.6", null, "0.4", null, "22.3", null, "0.4", null, "18.0", null, "0.2", null, "7.0", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "564937", null, "2055", null, "25391", null, "1381", null, "28348", null, "2767", null, "26790", null, "2454", null, "36648", null, "2015", null, "37147", null, "1892", null, "35121", null, "846", null, "38524", null, "690", null, "37008", null, "3313", null, "35593", null, "3233", null, "32019", null, "1146", null, "33467", null, "754", null, "37400", null, "2705", null, "39714", null, "2585", null, "35778", null, "2274", null, "31479", null, "2160", null, "22127", null, "2075", null, "17117", null, "1999", null, "15266", null, "1903", null, "55138", null, "1427", null, "17652", null, "1007", null, "98181", null, "1893", null, "56143", null, "870", null, "220041", null, "1892", null, "477955", null, "1894", null, "466756", null, "1384", null, "439010", null, "2470", null, "161481", null, "2716", null, "148118", null, "2361", null, "121767", null, "959", null, "54510", null, "701", null, "42.5", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.5", null, "0.2", null, "5.0", null, "0.5", null, "4.7", null, "0.4", null, "6.5", null, "0.4", null, "6.6", null, "0.3", null, "6.2", null, "0.2", null, "6.8", null, "0.1", null, "6.6", null, "0.6", null, "6.3", null, "0.6", null, "5.7", null, "0.2", null, "5.9", null, "0.1", null, "6.6", null, "0.5", null, "7.0", null, "0.5", null, "6.3", null, "0.4", null, "5.6", null, "0.4", null, "3.9", null, "0.4", null, "3.0", null, "0.4", null, "2.7", null, "0.3", null, "9.8", null, "0.2", null, "3.1", null, "0.2", null, "17.4", null, "0.3", null, "9.9", null, "0.2", null, "38.9", null, "0.3", null, "84.6", null, "0.3", null, "82.6", null, "0.3", null, "77.7", null, "0.5", null, "28.6", null, "0.5", null, "26.2", null, "0.4", null, "21.6", null, "0.2", null, "9.6", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "44"], ["0400000US45", "South Carolina", "5478831", null, "-555555555", "*****", "293334", null, "3286", null, "306463", null, "8028", null, "335351", null, "7733", null, "370185", null, "6642", null, "347622", null, "7093", null, "328886", null, "5781", null, "359706", null, "5686", null, "348212", null, "11101", null, "354742", null, "11140", null, "315876", null, "6236", null, "334554", null, "4792", null, "318974", null, "7529", null, "382202", null, "7763", null, "343669", null, "8061", null, "298167", null, "7532", null, "221192", null, "5962", null, "123760", null, "4467", null, "95936", null, "4360", null, "641814", null, "4433", null, "214691", null, "3248", null, "1149839", null, "1586", null, "503116", null, "6176", null, "2109353", null, "7717", null, "4477096", null, "5323", null, "4328992", null, "1586", null, "4102832", null, "7841", null, "1464926", null, "7264", null, "1317696", null, "6524", null, "1082724", null, "3122", null, "440888", null, "2298", null, "40.7", null, "0.2", null, "95.1", null, "0.4", null, "68.8", null, "0.2", null, "33.4", null, "0.1", null, "35.4", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.1", null, "5.6", null, "0.1", null, "6.1", null, "0.1", null, "6.8", null, "0.1", null, "6.3", null, "0.1", null, "6.0", null, "0.1", null, "6.6", null, "0.1", null, "6.4", null, "0.2", null, "6.5", null, "0.2", null, "5.8", null, "0.1", null, "6.1", null, "0.1", null, "5.8", null, "0.1", null, "7.0", null, "0.1", null, "6.3", null, "0.1", null, "5.4", null, "0.1", null, "4.0", null, "0.1", null, "2.3", null, "0.1", null, "1.8", null, "0.1", null, "11.7", null, "0.1", null, "3.9", null, "0.1", null, "21.0", null, "0.1", null, "9.2", null, "0.1", null, "38.5", null, "0.1", null, "81.7", null, "0.1", null, "79.0", null, "0.1", null, "74.9", null, "0.1", null, "26.7", null, "0.1", null, "24.1", null, "0.1", null, "19.8", null, "0.1", null, "8.0", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.3", null, "-888888888.0", "(X)", "2671064", null, "6317", null, "153877", null, "4147", null, "157526", null, "5507", null, "171694", null, "5533", null, "191106", null, "6109", null, "180762", null, "5009", null, "163294", null, "4192", null, "176484", null, "4009", null, "174846", null, "6832", null, "170515", null, "6965", null, "151226", null, "3933", null, "161832", null, "3186", null, "153587", null, "5133", null, "179240", null, "4900", null, "162353", null, "4841", null, "131911", null, "4471", null, "102210", null, "3678", null, "54681", null, "2783", null, "33920", null, "2354", null, "329220", null, "2917", null, "112378", null, "3533", null, "595475", null, "5847", null, "259490", null, "4485", null, "1057007", null, "5239", null, "2155190", null, "4744", null, "2075589", null, "2398", null, "1958851", null, "5634", null, "664315", null, "5148", null, "593281", null, "4852", null, "485075", null, "2244", null, "190811", null, "1971", null, "38.9", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.8", null, "0.1", null, "5.9", null, "0.2", null, "6.4", null, "0.2", null, "7.2", null, "0.2", null, "6.8", null, "0.2", null, "6.1", null, "0.2", null, "6.6", null, "0.2", null, "6.5", null, "0.3", null, "6.4", null, "0.3", null, "5.7", null, "0.1", null, "6.1", null, "0.1", null, "5.8", null, "0.2", null, "6.7", null, "0.2", null, "6.1", null, "0.2", null, "4.9", null, "0.2", null, "3.8", null, "0.1", null, "2.0", null, "0.1", null, "1.3", null, "0.1", null, "12.3", null, "0.1", null, "4.2", null, "0.1", null, "22.3", null, "0.2", null, "9.7", null, "0.2", null, "39.6", null, "0.2", null, "80.7", null, "0.2", null, "77.7", null, "0.2", null, "73.3", null, "0.3", null, "24.9", null, "0.2", null, "22.2", null, "0.2", null, "18.2", null, "0.1", null, "7.1", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "2807767", null, "6317", null, "139457", null, "3867", null, "148937", null, "6651", null, "163657", null, "7100", null, "179079", null, "4632", null, "166860", null, "4239", null, "165592", null, "3442", null, "183222", null, "3592", null, "173366", null, "6731", null, "184227", null, "6818", null, "164650", null, "3717", null, "172722", null, "3319", null, "165387", null, "5387", null, "202962", null, "5686", null, "181316", null, "6002", null, "166256", null, "5574", null, "118982", null, "4597", null, "69079", null, "3660", null, "62016", null, "3624", null, "312594", null, "3880", null, "102313", null, "2985", null, "554364", null, "5718", null, "243626", null, "3514", null, "1052346", null, "5096", null, "2321906", null, "4303", null, "2253403", null, "2042", null, "2143981", null, "5221", null, "800611", null, "5694", null, "724415", null, "5413", null, "597649", null, "2009", null, "250077", null, "1565", null, "42.2", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.0", null, "0.1", null, "5.3", null, "0.2", null, "5.8", null, "0.3", null, "6.4", null, "0.2", null, "5.9", null, "0.2", null, "5.9", null, "0.1", null, "6.5", null, "0.1", null, "6.2", null, "0.2", null, "6.6", null, "0.2", null, "5.9", null, "0.1", null, "6.2", null, "0.1", null, "5.9", null, "0.2", null, "7.2", null, "0.2", null, "6.5", null, "0.2", null, "5.9", null, "0.2", null, "4.2", null, "0.2", null, "2.5", null, "0.1", null, "2.2", null, "0.1", null, "11.1", null, "0.1", null, "3.6", null, "0.1", null, "19.7", null, "0.2", null, "8.7", null, "0.1", null, "37.5", null, "0.2", null, "82.7", null, "0.2", null, "80.3", null, "0.2", null, "76.4", null, "0.2", null, "28.5", null, "0.2", null, "25.8", null, "0.2", null, "21.3", null, "0.1", null, "8.9", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "45"], ["0400000US46", "South Dakota", "924669", null, "-555555555", "*****", "53584", null, "1495", null, "60056", null, "3318", null, "63718", null, "3428", null, "65617", null, "2488", null, "58398", null, "2850", null, "60517", null, "2398", null, "56468", null, "2380", null, "61204", null, "3598", null, "58684", null, "4076", null, "51705", null, "1734", null, "48189", null, "1833", null, "48406", null, "3415", null, "62221", null, "3610", null, "56491", null, "2769", null, "50574", null, "2822", null, "29571", null, "2024", null, "19486", null, "1739", null, "19780", null, "1682", null, "123774", null, "2028", null, "40177", null, "1160", null, "217535", null, "2050", null, "83838", null, "2539", null, "360888", null, "3067", null, "733633", null, "2456", null, "707134", null, "2050", null, "670697", null, "3124", null, "238123", null, "3997", null, "214663", null, "3486", null, "175902", null, "1375", null, "68837", null, "1088", null, "38.7", null, "0.4", null, "105.6", null, "1.3", null, "74.1", null, "0.8", null, "33.1", null, "0.4", null, "40.9", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.8", null, "0.2", null, "6.5", null, "0.4", null, "6.9", null, "0.4", null, "7.1", null, "0.3", null, "6.3", null, "0.3", null, "6.5", null, "0.3", null, "6.1", null, "0.3", null, "6.6", null, "0.4", null, "6.3", null, "0.4", null, "5.6", null, "0.2", null, "5.2", null, "0.2", null, "5.2", null, "0.4", null, "6.7", null, "0.4", null, "6.1", null, "0.3", null, "5.5", null, "0.3", null, "3.2", null, "0.2", null, "2.1", null, "0.2", null, "2.1", null, "0.2", null, "13.4", null, "0.2", null, "4.3", null, "0.1", null, "23.5", null, "0.2", null, "9.1", null, "0.3", null, "39.0", null, "0.3", null, "79.3", null, "0.3", null, "76.5", null, "0.2", null, "72.5", null, "0.3", null, "25.8", null, "0.4", null, "23.2", null, "0.4", null, "19.0", null, "0.1", null, "7.4", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.2", null, "-888888888.0", "(X)", "474961", null, "2740", null, "29007", null, "1618", null, "30352", null, "2141", null, "34836", null, "2316", null, "33229", null, "2197", null, "31300", null, "2019", null, "31612", null, "1614", null, "30324", null, "2007", null, "32468", null, "2539", null, "30776", null, "2611", null, "28015", null, "1490", null, "24115", null, "1075", null, "24866", null, "2091", null, "30322", null, "1982", null, "28397", null, "1544", null, "25108", null, "1627", null, "14931", null, "1404", null, "7759", null, "1176", null, "7544", null, "1059", null, "65188", null, "2026", null, "19612", null, "1500", null, "113807", null, "2663", null, "44917", null, "2127", null, "189709", null, "2602", null, "374361", null, "2713", null, "361154", null, "2449", null, "341544", null, "2717", null, "114061", null, "2445", null, "102463", null, "2465", null, "83739", null, "1231", null, "30234", null, "708", null, "37.7", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.1", null, "0.3", null, "6.4", null, "0.5", null, "7.3", null, "0.5", null, "7.0", null, "0.5", null, "6.6", null, "0.4", null, "6.7", null, "0.3", null, "6.4", null, "0.4", null, "6.8", null, "0.5", null, "6.5", null, "0.6", null, "5.9", null, "0.3", null, "5.1", null, "0.2", null, "5.2", null, "0.4", null, "6.4", null, "0.4", null, "6.0", null, "0.3", null, "5.3", null, "0.3", null, "3.1", null, "0.3", null, "1.6", null, "0.2", null, "1.6", null, "0.2", null, "13.7", null, "0.4", null, "4.1", null, "0.3", null, "24.0", null, "0.5", null, "9.5", null, "0.5", null, "39.9", null, "0.5", null, "78.8", null, "0.5", null, "76.0", null, "0.5", null, "71.9", null, "0.6", null, "24.0", null, "0.5", null, "21.6", null, "0.5", null, "17.6", null, "0.3", null, "6.4", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "449708", null, "2740", null, "24577", null, "1540", null, "29704", null, "2520", null, "28882", null, "2590", null, "32388", null, "1850", null, "27098", null, "1835", null, "28905", null, "1665", null, "26144", null, "1206", null, "28736", null, "2087", null, "27908", null, "2153", null, "23690", null, "1244", null, "24074", null, "1425", null, "23540", null, "2113", null, "31899", null, "2322", null, "28094", null, "1856", null, "25466", null, "1957", null, "14640", null, "1318", null, "11727", null, "1245", null, "12236", null, "1211", null, "58586", null, "1480", null, "20565", null, "1477", null, "103728", null, "2183", null, "38921", null, "1535", null, "171179", null, "2906", null, "359272", null, "2198", null, "345980", null, "2100", null, "329153", null, "2448", null, "124062", null, "2446", null, "112200", null, "2133", null, "92163", null, "1026", null, "38603", null, "765", null, "39.7", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.3", null, "6.6", null, "0.6", null, "6.4", null, "0.6", null, "7.2", null, "0.4", null, "6.0", null, "0.4", null, "6.4", null, "0.4", null, "5.8", null, "0.3", null, "6.4", null, "0.5", null, "6.2", null, "0.5", null, "5.3", null, "0.3", null, "5.4", null, "0.3", null, "5.2", null, "0.5", null, "7.1", null, "0.5", null, "6.2", null, "0.4", null, "5.7", null, "0.4", null, "3.3", null, "0.3", null, "2.6", null, "0.3", null, "2.7", null, "0.3", null, "13.0", null, "0.3", null, "4.6", null, "0.3", null, "23.1", null, "0.4", null, "8.7", null, "0.3", null, "38.1", null, "0.6", null, "79.9", null, "0.5", null, "76.9", null, "0.4", null, "73.2", null, "0.5", null, "27.6", null, "0.5", null, "24.9", null, "0.5", null, "20.5", null, "0.2", null, "8.6", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "46"], ["0400000US47", "Tennessee", "7227750", null, "-555555555", "*****", "410205", null, "3709", null, "417746", null, "11659", null, "459575", null, "11507", null, "463487", null, "6774", null, "480179", null, "6665", null, "477658", null, "4289", null, "515031", null, "5280", null, "473830", null, "13235", null, "471301", null, "12236", null, "426149", null, "4492", null, "449921", null, "3828", null, "451089", null, "10697", null, "457600", null, "9777", null, "408329", null, "9549", null, "347224", null, "9157", null, "251905", null, "6101", null, "141563", null, "5128", null, "124958", null, "5117", null, "877321", null, "4964", null, "288873", null, "2985", null, "1576399", null, "3218", null, "654793", null, "5052", null, "2881486", null, "6545", null, "5850310", null, "6087", null, "5651351", null, "3218", null, "5381996", null, "9169", null, "1731579", null, "10556", null, "1545986", null, "9278", null, "1273979", null, "4145", null, "518426", null, "2637", null, "39.1", null, "0.2", null, "96.3", null, "0.4", null, "65.1", null, "0.2", null, "29.1", null, "0.1", null, "36.0", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.7", null, "0.1", null, "5.8", null, "0.2", null, "6.4", null, "0.2", null, "6.4", null, "0.1", null, "6.6", null, "0.1", null, "6.6", null, "0.1", null, "7.1", null, "0.1", null, "6.6", null, "0.2", null, "6.5", null, "0.2", null, "5.9", null, "0.1", null, "6.2", null, "0.1", null, "6.2", null, "0.1", null, "6.3", null, "0.1", null, "5.6", null, "0.1", null, "4.8", null, "0.1", null, "3.5", null, "0.1", null, "2.0", null, "0.1", null, "1.7", null, "0.1", null, "12.1", null, "0.1", null, "4.0", null, "0.1", null, "21.8", null, "0.1", null, "9.1", null, "0.1", null, "39.9", null, "0.1", null, "80.9", null, "0.1", null, "78.2", null, "0.1", null, "74.5", null, "0.1", null, "24.0", null, "0.1", null, "21.4", null, "0.1", null, "17.6", null, "0.1", null, "7.2", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.4", null, "-888888888.0", "(X)", "3544910", null, "6728", null, "207418", null, "3563", null, "214054", null, "6798", null, "238684", null, "7116", null, "239546", null, "6093", null, "246068", null, "4778", null, "238890", null, "3995", null, "255957", null, "3098", null, "230688", null, "6885", null, "231424", null, "6890", null, "210668", null, "3220", null, "221139", null, "2716", null, "220986", null, "7263", null, "219804", null, "6780", null, "192042", null, "5892", null, "157825", null, "5562", null, "115323", null, "4105", null, "61380", null, "2968", null, "43014", null, "3017", null, "452738", null, "4087", null, "149058", null, "4045", null, "809214", null, "6116", null, "336556", null, "4356", null, "1442573", null, "5210", null, "2837469", null, "6090", null, "2735696", null, "3760", null, "2598857", null, "6728", null, "789388", null, "7248", null, "695743", null, "6375", null, "569584", null, "2574", null, "219717", null, "1912", null, "37.8", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.9", null, "0.1", null, "6.0", null, "0.2", null, "6.7", null, "0.2", null, "6.8", null, "0.2", null, "6.9", null, "0.1", null, "6.7", null, "0.1", null, "7.2", null, "0.1", null, "6.5", null, "0.2", null, "6.5", null, "0.2", null, "5.9", null, "0.1", null, "6.2", null, "0.1", null, "6.2", null, "0.2", null, "6.2", null, "0.2", null, "5.4", null, "0.2", null, "4.5", null, "0.2", null, "3.3", null, "0.1", null, "1.7", null, "0.1", null, "1.2", null, "0.1", null, "12.8", null, "0.1", null, "4.2", null, "0.1", null, "22.8", null, "0.1", null, "9.5", null, "0.1", null, "40.7", null, "0.1", null, "80.0", null, "0.1", null, "77.2", null, "0.1", null, "73.3", null, "0.2", null, "22.3", null, "0.2", null, "19.6", null, "0.2", null, "16.1", null, "0.1", null, "6.2", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "3682840", null, "6728", null, "202787", null, "3702", null, "203692", null, "8875", null, "220891", null, "8592", null, "223941", null, "5772", null, "234111", null, "4505", null, "238768", null, "3129", null, "259074", null, "3936", null, "243142", null, "9266", null, "239877", null, "8353", null, "215481", null, "2758", null, "228782", null, "2145", null, "230103", null, "6415", null, "237796", null, "5912", null, "216287", null, "5632", null, "189399", null, "5781", null, "136582", null, "5021", null, "80183", null, "3956", null, "81944", null, "3839", null, "424583", null, "3482", null, "139815", null, "3795", null, "767185", null, "6633", null, "318237", null, "4008", null, "1438913", null, "6137", null, "3012841", null, "5613", null, "2915655", null, "3663", null, "2783139", null, "6081", null, "942191", null, "6528", null, "850243", null, "6457", null, "704395", null, "3185", null, "298709", null, "2166", null, "40.3", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.5", null, "0.1", null, "5.5", null, "0.2", null, "6.0", null, "0.2", null, "6.1", null, "0.2", null, "6.4", null, "0.1", null, "6.5", null, "0.1", null, "7.0", null, "0.1", null, "6.6", null, "0.3", null, "6.5", null, "0.2", null, "5.9", null, "0.1", null, "6.2", null, "0.1", null, "6.2", null, "0.2", null, "6.5", null, "0.2", null, "5.9", null, "0.2", null, "5.1", null, "0.2", null, "3.7", null, "0.1", null, "2.2", null, "0.1", null, "2.2", null, "0.1", null, "11.5", null, "0.1", null, "3.8", null, "0.1", null, "20.8", null, "0.1", null, "8.6", null, "0.1", null, "39.1", null, "0.1", null, "81.8", null, "0.2", null, "79.2", null, "0.1", null, "75.6", null, "0.2", null, "25.6", null, "0.2", null, "23.1", null, "0.2", null, "19.1", null, "0.1", null, "8.1", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "47"], ["0400000US48", "Texas", "31290831", null, "-555555555", "*****", "1951749", null, "6232", null, "2103565", null, "21264", null, "2215238", null, "20491", null, "2269275", null, "11520", null, "2174045", null, "12165", null, "2202143", null, "10849", null, "2312414", null, "10628", null, "2245452", null, "26068", null, "2246189", null, "25478", null, "1960477", null, "8988", null, "1873902", null, "9173", null, "1654232", null, "18895", null, "1716681", null, "18717", null, "1461555", null, "16610", null, "1169299", null, "15524", null, "832041", null, "12362", null, "501872", null, "12298", null, "400702", null, "10147", null, "4318803", null, "9488", null, "1386938", null, "6365", null, "7657490", null, "4836", null, "3056382", null, "11147", null, "13449518", null, "14382", null, "24569557", null, "12678", null, "23633341", null, "4836", null, "22328747", null, "18169", null, "6082150", null, "19023", null, "5385472", null, "15598", null, "4365469", null, "5612", null, "1734615", null, "5105", null, "35.9", null, "0.1", null, "99.5", null, "0.1", null, "62.4", null, "0.1", null, "22.7", null, "0.1", null, "39.7", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.2", null, "0.1", null, "6.7", null, "0.1", null, "7.1", null, "0.1", null, "7.3", null, "0.1", null, "6.9", null, "0.1", null, "7.0", null, "0.1", null, "7.4", null, "0.1", null, "7.2", null, "0.1", null, "7.2", null, "0.1", null, "6.3", null, "0.1", null, "6.0", null, "0.1", null, "5.3", null, "0.1", null, "5.5", null, "0.1", null, "4.7", null, "0.1", null, "3.7", null, "0.1", null, "2.7", null, "0.1", null, "1.6", null, "0.1", null, "1.3", null, "0.1", null, "13.8", null, "0.1", null, "4.4", null, "0.1", null, "24.5", null, "0.1", null, "9.8", null, "0.1", null, "43.0", null, "0.1", null, "78.5", null, "0.1", null, "75.5", null, "0.1", null, "71.4", null, "0.1", null, "19.4", null, "0.1", null, "17.2", null, "0.1", null, "14.0", null, "0.1", null, "5.5", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.3", null, "-888888888.0", "(X)", "15608512", null, "11362", null, "991727", null, "7104", null, "1072050", null, "16182", null, "1141156", null, "16425", null, "1167736", null, "9565", null, "1114446", null, "9390", null, "1120748", null, "7423", null, "1173641", null, "7375", null, "1142488", null, "16126", null, "1136190", null, "16697", null, "980273", null, "6298", null, "935829", null, "6196", null, "826363", null, "12618", null, "831356", null, "12905", null, "699293", null, "10885", null, "540236", null, "10419", null, "370127", null, "6237", null, "215048", null, "6347", null, "149805", null, "5099", null, "2213206", null, "7411", null, "707123", null, "6108", null, "3912056", null, "9831", null, "1575059", null, "8123", null, "6855249", null, "12881", null, "12170835", null, "10971", null, "11696456", null, "6855", null, "11020126", null, "14003", null, "2805865", null, "12945", null, "2461133", null, "11471", null, "1974509", null, "4135", null, "734980", null, "3307", null, "35.1", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.4", null, "0.1", null, "6.9", null, "0.1", null, "7.3", null, "0.1", null, "7.5", null, "0.1", null, "7.1", null, "0.1", null, "7.2", null, "0.1", null, "7.5", null, "0.1", null, "7.3", null, "0.1", null, "7.3", null, "0.1", null, "6.3", null, "0.1", null, "6.0", null, "0.1", null, "5.3", null, "0.1", null, "5.3", null, "0.1", null, "4.5", null, "0.1", null, "3.5", null, "0.1", null, "2.4", null, "0.1", null, "1.4", null, "0.1", null, "1.0", null, "0.1", null, "14.2", null, "0.1", null, "4.5", null, "0.1", null, "25.1", null, "0.1", null, "10.1", null, "0.1", null, "43.9", null, "0.1", null, "78.0", null, "0.1", null, "74.9", null, "0.1", null, "70.6", null, "0.1", null, "18.0", null, "0.1", null, "15.8", null, "0.1", null, "12.7", null, "0.1", null, "4.7", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15682319", null, "11362", null, "960022", null, "5962", null, "1031515", null, "17283", null, "1074082", null, "16721", null, "1101539", null, "8626", null, "1059599", null, "8069", null, "1081395", null, "6315", null, "1138773", null, "6248", null, "1102964", null, "16928", null, "1109999", null, "17428", null, "980204", null, "6322", null, "938073", null, "5886", null, "827869", null, "13106", null, "885325", null, "12656", null, "762262", null, "10803", null, "629063", null, "10168", null, "461914", null, "9569", null, "286824", null, "8977", null, "250897", null, "7827", null, "2105597", null, "6993", null, "679815", null, "6180", null, "3745434", null, "9521", null, "1481323", null, "6143", null, "6594269", null, "9652", null, "12398722", null, "10629", null, "11936885", null, "5497", null, "11308621", null, "13161", null, "3276285", null, "13384", null, "2924339", null, "11579", null, "2390960", null, "4479", null, "999635", null, "4271", null, "36.7", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.1", null, "0.1", null, "6.6", null, "0.1", null, "6.8", null, "0.1", null, "7.0", null, "0.1", null, "6.8", null, "0.1", null, "6.9", null, "0.1", null, "7.3", null, "0.1", null, "7.0", null, "0.1", null, "7.1", null, "0.1", null, "6.3", null, "0.1", null, "6.0", null, "0.1", null, "5.3", null, "0.1", null, "5.6", null, "0.1", null, "4.9", null, "0.1", null, "4.0", null, "0.1", null, "2.9", null, "0.1", null, "1.8", null, "0.1", null, "1.6", null, "0.1", null, "13.4", null, "0.1", null, "4.3", null, "0.1", null, "23.9", null, "0.1", null, "9.4", null, "0.1", null, "42.0", null, "0.1", null, "79.1", null, "0.1", null, "76.1", null, "0.1", null, "72.1", null, "0.1", null, "20.9", null, "0.1", null, "18.6", null, "0.1", null, "15.2", null, "0.1", null, "6.4", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "48"], ["0400000US49", "Utah", "3503613", null, "-555555555", "*****", "229016", null, "2064", null, "250150", null, "7537", null, "274337", null, "7109", null, "290563", null, "3162", null, "306343", null, "3700", null, "274392", null, "3282", null, "253942", null, "2462", null, "232599", null, "6438", null, "240628", null, "6044", null, "221343", null, "2948", null, "183912", null, "2649", null, "158374", null, "4663", null, "153092", null, "4696", null, "145297", null, "4027", null, "116269", null, "3834", null, "83481", null, "3528", null, "47538", null, "2983", null, "42337", null, "2896", null, "524487", null, "2226", null, "179250", null, "1740", null, "932753", null, "1298", null, "417656", null, "3552", null, "1598467", null, "3824", null, "2688278", null, "3691", null, "2570860", null, "1298", null, "2400994", null, "4685", null, "588014", null, "5184", null, "526387", null, "4946", null, "434922", null, "2066", null, "173356", null, "1666", null, "32.5", null, "0.1", null, "103.1", null, "0.3", null, "64.0", null, "0.2", null, "20.4", null, "0.1", null, "43.7", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.5", null, "0.1", null, "7.1", null, "0.2", null, "7.8", null, "0.2", null, "8.3", null, "0.1", null, "8.7", null, "0.1", null, "7.8", null, "0.1", null, "7.2", null, "0.1", null, "6.6", null, "0.2", null, "6.9", null, "0.2", null, "6.3", null, "0.1", null, "5.2", null, "0.1", null, "4.5", null, "0.1", null, "4.4", null, "0.1", null, "4.1", null, "0.1", null, "3.3", null, "0.1", null, "2.4", null, "0.1", null, "1.4", null, "0.1", null, "1.2", null, "0.1", null, "15.0", null, "0.1", null, "5.1", null, "0.1", null, "26.6", null, "0.1", null, "11.9", null, "0.1", null, "45.6", null, "0.1", null, "76.7", null, "0.1", null, "73.4", null, "0.1", null, "68.5", null, "0.1", null, "16.8", null, "0.1", null, "15.0", null, "0.1", null, "12.4", null, "0.1", null, "4.9", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.5", null, "-888888888.0", "(X)", "1778121", null, "2953", null, "115953", null, "1424", null, "126522", null, "6054", null, "145413", null, "5772", null, "149634", null, "2305", null, "157754", null, "2742", null, "141977", null, "2354", null, "130465", null, "1823", null, "114853", null, "4310", null, "127007", null, "4371", null, "113195", null, "2129", null, "93644", null, "1626", null, "79901", null, "3454", null, "75773", null, "3314", null, "70632", null, "2954", null, "55800", null, "2881", null, "39626", null, "2210", null, "21713", null, "2082", null, "18259", null, "1977", null, "271935", null, "1867", null, "93309", null, "1412", null, "481197", null, "2465", null, "214079", null, "2486", null, "821690", null, "2575", null, "1357856", null, "3055", null, "1296924", null, "2059", null, "1209565", null, "3700", null, "281803", null, "3553", null, "251220", null, "3346", null, "206030", null, "1577", null, "79598", null, "1278", null, "32.0", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.5", null, "0.1", null, "7.1", null, "0.3", null, "8.2", null, "0.3", null, "8.4", null, "0.1", null, "8.9", null, "0.2", null, "8.0", null, "0.1", null, "7.3", null, "0.1", null, "6.5", null, "0.2", null, "7.1", null, "0.2", null, "6.4", null, "0.1", null, "5.3", null, "0.1", null, "4.5", null, "0.2", null, "4.3", null, "0.2", null, "4.0", null, "0.2", null, "3.1", null, "0.2", null, "2.2", null, "0.1", null, "1.2", null, "0.1", null, "1.0", null, "0.1", null, "15.3", null, "0.1", null, "5.2", null, "0.1", null, "27.1", null, "0.1", null, "12.0", null, "0.1", null, "46.2", null, "0.1", null, "76.4", null, "0.2", null, "72.9", null, "0.1", null, "68.0", null, "0.2", null, "15.8", null, "0.2", null, "14.1", null, "0.2", null, "11.6", null, "0.1", null, "4.5", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "1725492", null, "2953", null, "113063", null, "1990", null, "123628", null, "4330", null, "128924", null, "4432", null, "140929", null, "1976", null, "148589", null, "2196", null, "132415", null, "1817", null, "123477", null, "1469", null, "117746", null, "4485", null, "113621", null, "4102", null, "108148", null, "1943", null, "90268", null, "1727", null, "78473", null, "2990", null, "77319", null, "3196", null, "74665", null, "2725", null, "60469", null, "2764", null, "43855", null, "2473", null, "25825", null, "1703", null, "24078", null, "1820", null, "252552", null, "1600", null, "85941", null, "1336", null, "451556", null, "2429", null, "203577", null, "1918", null, "776777", null, "2951", null, "1330422", null, "3097", null, "1273936", null, "1954", null, "1191429", null, "3471", null, "306211", null, "3440", null, "275167", null, "3175", null, "228892", null, "1452", null, "93758", null, "1039", null, "33.0", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.6", null, "0.1", null, "7.2", null, "0.3", null, "7.5", null, "0.3", null, "8.2", null, "0.1", null, "8.6", null, "0.1", null, "7.7", null, "0.1", null, "7.2", null, "0.1", null, "6.8", null, "0.3", null, "6.6", null, "0.2", null, "6.3", null, "0.1", null, "5.2", null, "0.1", null, "4.5", null, "0.2", null, "4.5", null, "0.2", null, "4.3", null, "0.2", null, "3.5", null, "0.2", null, "2.5", null, "0.1", null, "1.5", null, "0.1", null, "1.4", null, "0.1", null, "14.6", null, "0.1", null, "5.0", null, "0.1", null, "26.2", null, "0.1", null, "11.8", null, "0.1", null, "45.0", null, "0.2", null, "77.1", null, "0.2", null, "73.8", null, "0.1", null, "69.0", null, "0.2", null, "17.7", null, "0.2", null, "15.9", null, "0.2", null, "13.3", null, "0.1", null, "5.4", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "49"], ["0400000US50", "Vermont", "648493", null, "-555555555", "*****", "26820", null, "1086", null, "29754", null, "2159", null, "33752", null, "2268", null, "42352", null, "2222", null, "41468", null, "1999", null, "36062", null, "1358", null, "38704", null, "1025", null, "42900", null, "2775", null, "39675", null, "2998", null, "39114", null, "1362", null, "39521", null, "1174", null, "39327", null, "2238", null, "50559", null, "2297", null, "45485", null, "2277", null, "41985", null, "2390", null, "27940", null, "1849", null, "18146", null, "1535", null, "14929", null, "1274", null, "63506", null, "1066", null, "21702", null, "572", null, "112028", null, "941", null, "62118", null, "1935", null, "241161", null, "2096", null, "553496", null, "1328", null, "536465", null, "941", null, "506140", null, "2702", null, "199044", null, "2436", null, "182388", null, "2540", null, "148485", null, "1408", null, "61015", null, "1000", null, "43.9", null, "0.3", null, "97.5", null, "1.1", null, "67.1", null, "0.6", null, "38.3", null, "0.5", null, "28.9", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.1", null, "0.2", null, "4.6", null, "0.3", null, "5.2", null, "0.3", null, "6.5", null, "0.3", null, "6.4", null, "0.3", null, "5.6", null, "0.2", null, "6.0", null, "0.2", null, "6.6", null, "0.4", null, "6.1", null, "0.5", null, "6.0", null, "0.2", null, "6.1", null, "0.2", null, "6.1", null, "0.3", null, "7.8", null, "0.4", null, "7.0", null, "0.4", null, "6.5", null, "0.4", null, "4.3", null, "0.3", null, "2.8", null, "0.2", null, "2.3", null, "0.2", null, "9.8", null, "0.2", null, "3.3", null, "0.1", null, "17.3", null, "0.1", null, "9.6", null, "0.3", null, "37.2", null, "0.3", null, "85.4", null, "0.2", null, "82.7", null, "0.1", null, "78.0", null, "0.4", null, "30.7", null, "0.4", null, "28.1", null, "0.4", null, "22.9", null, "0.2", null, "9.4", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.0", null, "-888888888.0", "(X)", "320167", null, "1801", null, "13467", null, "715", null, "16647", null, "1443", null, "15786", null, "1432", null, "20307", null, "1561", null, "21405", null, "1251", null, "18570", null, "805", null, "19765", null, "554", null, "20756", null, "1856", null, "19976", null, "1999", null, "19575", null, "874", null, "20874", null, "1002", null, "20141", null, "1619", null, "24162", null, "1668", null, "21705", null, "1429", null, "20030", null, "1395", null, "12804", null, "1057", null, "8559", null, "874", null, "5638", null, "865", null, "32433", null, "669", null, "10411", null, "892", null, "56311", null, "1271", null, "31301", null, "1146", null, "120779", null, "1854", null, "272184", null, "1676", null, "263856", null, "1407", null, "249352", null, "1918", null, "92898", null, "1779", null, "85570", null, "1631", null, "68736", null, "704", null, "27001", null, "575", null, "43.1", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.2", null, "0.2", null, "5.2", null, "0.5", null, "4.9", null, "0.4", null, "6.3", null, "0.5", null, "6.7", null, "0.4", null, "5.8", null, "0.3", null, "6.2", null, "0.2", null, "6.5", null, "0.6", null, "6.2", null, "0.6", null, "6.1", null, "0.3", null, "6.5", null, "0.3", null, "6.3", null, "0.5", null, "7.5", null, "0.5", null, "6.8", null, "0.5", null, "6.3", null, "0.4", null, "4.0", null, "0.3", null, "2.7", null, "0.3", null, "1.8", null, "0.3", null, "10.1", null, "0.2", null, "3.3", null, "0.3", null, "17.6", null, "0.3", null, "9.8", null, "0.4", null, "37.7", null, "0.5", null, "85.0", null, "0.3", null, "82.4", null, "0.3", null, "77.9", null, "0.6", null, "29.0", null, "0.6", null, "26.7", null, "0.5", null, "21.5", null, "0.3", null, "8.4", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "328326", null, "1801", null, "13353", null, "875", null, "13107", null, "1391", null, "17966", null, "1611", null, "22045", null, "1771", null, "20063", null, "1587", null, "17492", null, "992", null, "18939", null, "738", null, "22144", null, "1666", null, "19699", null, "1679", null, "19539", null, "956", null, "18647", null, "670", null, "19186", null, "1465", null, "26397", null, "1509", null, "23780", null, "1263", null, "21955", null, "1477", null, "15136", null, "1272", null, "9587", null, "1128", null, "9291", null, "913", null, "31073", null, "758", null, "11291", null, "955", null, "55717", null, "1096", null, "30817", null, "1328", null, "120382", null, "1692", null, "281312", null, "1854", null, "272609", null, "1547", null, "256788", null, "2103", null, "106146", null, "1535", null, "96818", null, "1739", null, "79749", null, "1051", null, "34014", null, "586", null, "44.8", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.1", null, "0.3", null, "4.0", null, "0.4", null, "5.5", null, "0.5", null, "6.7", null, "0.5", null, "6.1", null, "0.5", null, "5.3", null, "0.3", null, "5.8", null, "0.2", null, "6.7", null, "0.5", null, "6.0", null, "0.5", null, "6.0", null, "0.3", null, "5.7", null, "0.2", null, "5.8", null, "0.4", null, "8.0", null, "0.5", null, "7.2", null, "0.4", null, "6.7", null, "0.5", null, "4.6", null, "0.4", null, "2.9", null, "0.3", null, "2.8", null, "0.3", null, "9.5", null, "0.2", null, "3.4", null, "0.3", null, "17.0", null, "0.3", null, "9.4", null, "0.4", null, "36.7", null, "0.4", null, "85.7", null, "0.3", null, "83.0", null, "0.3", null, "78.2", null, "0.5", null, "32.3", null, "0.5", null, "29.5", null, "0.5", null, "24.3", null, "0.3", null, "10.4", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "50"], ["0400000US51", "Virginia", "8811195", null, "-555555555", "*****", "471514", null, "4203", null, "514461", null, "10029", null, "546617", null, "10226", null, "585661", null, "7916", null, "580114", null, "8696", null, "559887", null, "5626", null, "600236", null, "5633", null, "620970", null, "14362", null, "610539", null, "12932", null, "542093", null, "5577", null, "535275", null, "5227", null, "522499", null, "10151", null, "570944", null, "10220", null, "493723", null, "8730", null, "408091", null, "8546", null, "308371", null, "7133", null, "185641", null, "5629", null, "154559", null, "4650", null, "1061078", null, "4795", null, "341438", null, "4608", null, "1874030", null, "3098", null, "824337", null, "7937", null, "3557407", null, "9088", null, "7173696", null, "5722", null, "6937165", null, "3098", null, "6577380", null, "8427", null, "2121329", null, "11316", null, "1891408", null, "10254", null, "1550385", null, "5272", null, "648571", null, "3776", null, "39.4", null, "0.2", null, "97.8", null, "0.4", null, "63.6", null, "0.2", null, "28.8", null, "0.1", null, "34.8", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.1", null, "5.8", null, "0.1", null, "6.2", null, "0.1", null, "6.6", null, "0.1", null, "6.6", null, "0.1", null, "6.4", null, "0.1", null, "6.8", null, "0.1", null, "7.0", null, "0.2", null, "6.9", null, "0.1", null, "6.2", null, "0.1", null, "6.1", null, "0.1", null, "5.9", null, "0.1", null, "6.5", null, "0.1", null, "5.6", null, "0.1", null, "4.6", null, "0.1", null, "3.5", null, "0.1", null, "2.1", null, "0.1", null, "1.8", null, "0.1", null, "12.0", null, "0.1", null, "3.9", null, "0.1", null, "21.3", null, "0.1", null, "9.4", null, "0.1", null, "40.4", null, "0.1", null, "81.4", null, "0.1", null, "78.7", null, "0.1", null, "74.6", null, "0.1", null, "24.1", null, "0.1", null, "21.5", null, "0.1", null, "17.6", null, "0.1", null, "7.4", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.2", null, "-888888888.0", "(X)", "4356641", null, "8135", null, "245420", null, "4091", null, "265809", null, "7615", null, "283971", null, "7901", null, "304061", null, "6985", null, "296844", null, "5719", null, "283075", null, "4260", null, "299427", null, "4092", null, "307242", null, "8466", null, "309014", null, "7995", null, "266877", null, "4414", null, "269318", null, "4086", null, "253231", null, "6076", null, "278043", null, "6161", null, "232100", null, "5484", null, "188131", null, "5528", null, "136820", null, "3917", null, "79840", null, "3206", null, "57418", null, "2775", null, "549780", null, "4141", null, "173870", null, "4483", null, "969070", null, "6912", null, "427035", null, "5907", null, "1799663", null, "6676", null, "3507654", null, "5679", null, "3387571", null, "4885", null, "3197826", null, "7209", null, "972352", null, "6233", null, "862636", null, "6739", null, "694309", null, "3290", null, "274078", null, "2440", null, "38.3", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.6", null, "0.1", null, "6.1", null, "0.2", null, "6.5", null, "0.2", null, "7.0", null, "0.2", null, "6.8", null, "0.1", null, "6.5", null, "0.1", null, "6.9", null, "0.1", null, "7.1", null, "0.2", null, "7.1", null, "0.2", null, "6.1", null, "0.1", null, "6.2", null, "0.1", null, "5.8", null, "0.1", null, "6.4", null, "0.1", null, "5.3", null, "0.1", null, "4.3", null, "0.1", null, "3.1", null, "0.1", null, "1.8", null, "0.1", null, "1.3", null, "0.1", null, "12.6", null, "0.1", null, "4.0", null, "0.1", null, "22.2", null, "0.1", null, "9.8", null, "0.1", null, "41.3", null, "0.1", null, "80.5", null, "0.1", null, "77.8", null, "0.1", null, "73.4", null, "0.2", null, "22.3", null, "0.1", null, "19.8", null, "0.2", null, "15.9", null, "0.1", null, "6.3", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4454554", null, "8135", null, "226094", null, "4407", null, "248652", null, "7083", null, "262646", null, "6939", null, "281600", null, "5656", null, "283270", null, "5545", null, "276812", null, "3394", null, "300809", null, "3320", null, "313728", null, "8369", null, "301525", null, "7396", null, "275216", null, "3429", null, "265957", null, "3328", null, "269268", null, "7418", null, "292901", null, "7065", null, "261623", null, "7173", null, "219960", null, "6836", null, "171551", null, "4643", null, "105801", null, "4146", null, "97141", null, "4039", null, "511298", null, "4948", null, "167568", null, "4201", null, "904960", null, "6909", null, "397302", null, "4230", null, "1757744", null, "7962", null, "3666042", null, "5416", null, "3549594", null, "3740", null, "3379554", null, "6862", null, "1148977", null, "8410", null, "1028772", null, "6917", null, "856076", null, "3635", null, "374493", null, "2695", null, "40.6", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.1", null, "0.1", null, "5.6", null, "0.2", null, "5.9", null, "0.2", null, "6.3", null, "0.1", null, "6.4", null, "0.1", null, "6.2", null, "0.1", null, "6.8", null, "0.1", null, "7.0", null, "0.2", null, "6.8", null, "0.2", null, "6.2", null, "0.1", null, "6.0", null, "0.1", null, "6.0", null, "0.2", null, "6.6", null, "0.2", null, "5.9", null, "0.2", null, "4.9", null, "0.2", null, "3.9", null, "0.1", null, "2.4", null, "0.1", null, "2.2", null, "0.1", null, "11.5", null, "0.1", null, "3.8", null, "0.1", null, "20.3", null, "0.1", null, "8.9", null, "0.1", null, "39.5", null, "0.2", null, "82.3", null, "0.1", null, "79.7", null, "0.1", null, "75.9", null, "0.2", null, "25.8", null, "0.2", null, "23.1", null, "0.2", null, "19.2", null, "0.1", null, "8.4", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "51"], ["0400000US53", "Washington", "7958180", null, "-555555555", "*****", "418515", null, "2446", null, "466661", null, "9785", null, "472576", null, "9666", null, "478651", null, "5029", null, "490317", null, "4566", null, "568122", null, "3962", null, "641691", null, "4086", null, "610704", null, "11035", null, "568763", null, "10589", null, "484161", null, "3812", null, "460807", null, "2556", null, "443051", null, "8227", null, "475653", null, "9044", null, "434151", null, "7148", null, "378115", null, "7425", null, "272780", null, "5852", null, "156421", null, "5217", null, "137041", null, "5727", null, "939237", null, "3599", null, "294297", null, "2836", null, "1652049", null, "1706", null, "674671", null, "4581", null, "3358248", null, "5111", null, "6505491", null, "5143", null, "6306131", null, "1706", null, "6027303", null, "6839", null, "1854161", null, "8651", null, "1666404", null, "8296", null, "1378508", null, "3135", null, "566242", null, "2876", null, "38.7", null, "0.2", null, "101.6", null, "0.3", null, "61.5", null, "0.1", null, "28.0", null, "0.1", null, "33.5", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.3", null, "0.1", null, "5.9", null, "0.1", null, "5.9", null, "0.1", null, "6.0", null, "0.1", null, "6.2", null, "0.1", null, "7.1", null, "0.1", null, "8.1", null, "0.1", null, "7.7", null, "0.1", null, "7.1", null, "0.1", null, "6.1", null, "0.1", null, "5.8", null, "0.1", null, "5.6", null, "0.1", null, "6.0", null, "0.1", null, "5.5", null, "0.1", null, "4.8", null, "0.1", null, "3.4", null, "0.1", null, "2.0", null, "0.1", null, "1.7", null, "0.1", null, "11.8", null, "0.1", null, "3.7", null, "0.1", null, "20.8", null, "0.1", null, "8.5", null, "0.1", null, "42.2", null, "0.1", null, "81.7", null, "0.1", null, "79.2", null, "0.1", null, "75.7", null, "0.1", null, "23.3", null, "0.1", null, "20.9", null, "0.1", null, "17.3", null, "0.1", null, "7.1", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "1.2", null, "-888888888.0", "(X)", "4009969", null, "5366", null, "217786", null, "2534", null, "237146", null, "7320", null, "243372", null, "7217", null, "250037", null, "4033", null, "255228", null, "3508", null, "293015", null, "2698", null, "332043", null, "3339", null, "317068", null, "7139", null, "292252", null, "7253", null, "247472", null, "2958", null, "232761", null, "2188", null, "224296", null, "5926", null, "232949", null, "6053", null, "207459", null, "5100", null, "178940", null, "5349", null, "123058", null, "4161", null, "69009", null, "3934", null, "56078", null, "3292", null, "480518", null, "2863", null, "153077", null, "2836", null, "851381", null, "4756", null, "352188", null, "3452", null, "1739643", null, "3674", null, "3261613", null, "4566", null, "3158588", null, "2617", null, "3012959", null, "5543", null, "867493", null, "6182", null, "777466", null, "5647", null, "634544", null, "1841", null, "248145", null, "1979", null, "37.8", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.4", null, "0.1", null, "5.9", null, "0.2", null, "6.1", null, "0.2", null, "6.2", null, "0.1", null, "6.4", null, "0.1", null, "7.3", null, "0.1", null, "8.3", null, "0.1", null, "7.9", null, "0.2", null, "7.3", null, "0.2", null, "6.2", null, "0.1", null, "5.8", null, "0.1", null, "5.6", null, "0.1", null, "5.8", null, "0.2", null, "5.2", null, "0.1", null, "4.5", null, "0.1", null, "3.1", null, "0.1", null, "1.7", null, "0.1", null, "1.4", null, "0.1", null, "12.0", null, "0.1", null, "3.8", null, "0.1", null, "21.2", null, "0.1", null, "8.8", null, "0.1", null, "43.4", null, "0.1", null, "81.3", null, "0.1", null, "78.8", null, "0.1", null, "75.1", null, "0.2", null, "21.6", null, "0.2", null, "19.4", null, "0.1", null, "15.8", null, "0.1", null, "6.2", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "3948211", null, "5366", null, "200729", null, "2984", null, "229515", null, "6776", null, "229204", null, "6937", null, "228614", null, "3507", null, "235089", null, "3054", null, "275107", null, "3014", null, "309648", null, "2156", null, "293636", null, "7016", null, "276511", null, "6918", null, "236689", null, "2620", null, "228046", null, "2086", null, "218755", null, "5889", null, "242704", null, "6540", null, "226692", null, "5246", null, "199175", null, "5020", null, "149722", null, "4300", null, "87412", null, "3679", null, "80963", null, "4088", null, "458719", null, "3208", null, "141220", null, "2541", null, "800668", null, "4774", null, "322483", null, "2761", null, "1618605", null, "4679", null, "3243878", null, "4912", null, "3147543", null, "2389", null, "3014344", null, "4808", null, "986668", null, "6146", null, "888938", null, "5578", null, "743964", null, "2512", null, "318097", null, "1924", null, "39.5", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.1", null, "0.1", null, "5.8", null, "0.2", null, "5.8", null, "0.2", null, "5.8", null, "0.1", null, "6.0", null, "0.1", null, "7.0", null, "0.1", null, "7.8", null, "0.1", null, "7.4", null, "0.2", null, "7.0", null, "0.2", null, "6.0", null, "0.1", null, "5.8", null, "0.1", null, "5.5", null, "0.2", null, "6.1", null, "0.2", null, "5.7", null, "0.1", null, "5.0", null, "0.1", null, "3.8", null, "0.1", null, "2.2", null, "0.1", null, "2.1", null, "0.1", null, "11.6", null, "0.1", null, "3.6", null, "0.1", null, "20.3", null, "0.1", null, "8.2", null, "0.1", null, "41.0", null, "0.1", null, "82.2", null, "0.1", null, "79.7", null, "0.1", null, "76.3", null, "0.1", null, "25.0", null, "0.1", null, "22.5", null, "0.1", null, "18.8", null, "0.1", null, "8.1", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "53"], ["0400000US54", "West Virginia", "1769979", null, "-555555555", "*****", "86422", null, "2206", null, "84907", null, "4005", null, "108174", null, "4276", null, "113272", null, "3280", null, "108515", null, "2536", null, "104282", null, "2822", null, "108842", null, "2204", null, "108688", null, "4553", null, "107268", null, "4720", null, "106102", null, "2319", null, "113262", null, "1883", null, "109445", null, "4448", null, "123949", null, "4248", null, "121712", null, "4251", null, "102972", null, "4095", null, "80772", null, "3150", null, "45103", null, "2559", null, "36292", null, "2657", null, "193081", null, "2378", null, "68075", null, "1648", null, "347578", null, "1909", null, "153712", null, "3025", null, "650867", null, "3444", null, "1469628", null, "2818", null, "1422401", null, "1909", null, "1357144", null, "4391", null, "510800", null, "4302", null, "463323", null, "4429", null, "386851", null, "2195", null, "162167", null, "1455", null, "42.9", null, "0.3", null, "99.2", null, "0.8", null, "70.9", null, "0.4", null, "37.4", null, "0.3", null, "33.6", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.9", null, "0.1", null, "4.8", null, "0.2", null, "6.1", null, "0.2", null, "6.4", null, "0.2", null, "6.1", null, "0.1", null, "5.9", null, "0.2", null, "6.1", null, "0.1", null, "6.1", null, "0.3", null, "6.1", null, "0.3", null, "6.0", null, "0.1", null, "6.4", null, "0.1", null, "6.2", null, "0.3", null, "7.0", null, "0.2", null, "6.9", null, "0.2", null, "5.8", null, "0.2", null, "4.6", null, "0.2", null, "2.5", null, "0.1", null, "2.1", null, "0.2", null, "10.9", null, "0.1", null, "3.8", null, "0.1", null, "19.6", null, "0.1", null, "8.7", null, "0.2", null, "36.8", null, "0.2", null, "83.0", null, "0.2", null, "80.4", null, "0.1", null, "76.7", null, "0.2", null, "28.9", null, "0.2", null, "26.2", null, "0.3", null, "21.9", null, "0.1", null, "9.2", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.0", null, "-888888888.0", "(X)", "0.9", null, "-888888888.0", "(X)", "881512", null, "3751", null, "42353", null, "2124", null, "42945", null, "2926", null, "57247", null, "3356", null, "59386", null, "2840", null, "55980", null, "2330", null, "55432", null, "2058", null, "56348", null, "1662", null, "54406", null, "3190", null, "55039", null, "3210", null, "51737", null, "1756", null, "57400", null, "1500", null, "54211", null, "3028", null, "61023", null, "2945", null, "58302", null, "2660", null, "49001", null, "2592", null, "37253", null, "1713", null, "20042", null, "1647", null, "13407", null, "1382", null, "100192", null, "2353", null, "35519", null, "1945", null, "178064", null, "3155", null, "79847", null, "2372", null, "336591", null, "2835", null, "728089", null, "3202", null, "703448", null, "2499", null, "668619", null, "3519", null, "239028", null, "2857", null, "214529", null, "2977", null, "178005", null, "1313", null, "70702", null, "669", null, "41.6", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.8", null, "0.2", null, "4.9", null, "0.3", null, "6.5", null, "0.4", null, "6.7", null, "0.3", null, "6.4", null, "0.3", null, "6.3", null, "0.2", null, "6.4", null, "0.2", null, "6.2", null, "0.4", null, "6.2", null, "0.4", null, "5.9", null, "0.2", null, "6.5", null, "0.2", null, "6.1", null, "0.3", null, "6.9", null, "0.3", null, "6.6", null, "0.3", null, "5.6", null, "0.3", null, "4.2", null, "0.2", null, "2.3", null, "0.2", null, "1.5", null, "0.2", null, "11.4", null, "0.3", null, "4.0", null, "0.2", null, "20.2", null, "0.3", null, "9.1", null, "0.3", null, "38.2", null, "0.3", null, "82.6", null, "0.2", null, "79.8", null, "0.3", null, "75.8", null, "0.4", null, "27.1", null, "0.3", null, "24.3", null, "0.4", null, "20.2", null, "0.2", null, "8.0", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "888467", null, "3751", null, "44069", null, "2046", null, "41962", null, "2807", null, "50927", null, "2587", null, "53886", null, "2585", null, "52535", null, "2061", null, "48850", null, "1716", null, "52494", null, "1315", null, "54282", null, "2900", null, "52229", null, "2971", null, "54365", null, "1652", null, "55862", null, "1108", null, "55234", null, "2992", null, "62926", null, "3076", null, "63410", null, "2919", null, "53971", null, "2720", null, "43519", null, "2313", null, "25061", null, "1776", null, "22885", null, "2064", null, "92889", null, "1640", null, "32556", null, "1597", null, "169514", null, "3212", null, "73865", null, "1786", null, "314276", null, "2679", null, "741539", null, "2844", null, "718953", null, "2218", null, "688525", null, "3222", null, "271772", null, "3329", null, "248794", null, "3244", null, "208846", null, "1589", null, "91465", null, "1245", null, "44.3", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.0", null, "0.2", null, "4.7", null, "0.3", null, "5.7", null, "0.3", null, "6.1", null, "0.3", null, "5.9", null, "0.2", null, "5.5", null, "0.2", null, "5.9", null, "0.1", null, "6.1", null, "0.3", null, "5.9", null, "0.3", null, "6.1", null, "0.2", null, "6.3", null, "0.1", null, "6.2", null, "0.3", null, "7.1", null, "0.3", null, "7.1", null, "0.3", null, "6.1", null, "0.3", null, "4.9", null, "0.3", null, "2.8", null, "0.2", null, "2.6", null, "0.2", null, "10.5", null, "0.2", null, "3.7", null, "0.2", null, "19.1", null, "0.3", null, "8.3", null, "0.2", null, "35.4", null, "0.3", null, "83.5", null, "0.3", null, "80.9", null, "0.3", null, "77.5", null, "0.4", null, "30.6", null, "0.4", null, "28.0", null, "0.4", null, "23.5", null, "0.2", null, "10.3", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "54"], ["0400000US55", "Wisconsin", "5960975", null, "-555555555", "*****", "303044", null, "1863", null, "336976", null, "7989", null, "360640", null, "7429", null, "386359", null, "4100", null, "401318", null, "4167", null, "374339", null, "3568", null, "383127", null, "3796", null, "383191", null, "6636", null, "378213", null, "6528", null, "347126", null, "3873", null, "346208", null, "3225", null, "359498", null, "7109", null, "429894", null, "6879", null, "379846", null, "5955", null, "319277", null, "5518", null, "215292", null, "4402", null, "135184", null, "3471", null, "121443", null, "4190", null, "697616", null, "3336", null, "232616", null, "2858", null, "1233276", null, "1679", null, "555061", null, "3671", null, "2306547", null, "5698", null, "4882973", null, "4042", null, "4727699", null, "1679", null, "4493850", null, "5830", null, "1600936", null, "6616", null, "1437368", null, "6415", null, "1171042", null, "2526", null, "471919", null, "1975", null, "40.7", null, "0.2", null, "100.2", null, "0.3", null, "67.6", null, "0.1", null, "32.9", null, "0.1", null, "34.7", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.1", null, "0.1", null, "5.7", null, "0.1", null, "6.1", null, "0.1", null, "6.5", null, "0.1", null, "6.7", null, "0.1", null, "6.3", null, "0.1", null, "6.4", null, "0.1", null, "6.4", null, "0.1", null, "6.3", null, "0.1", null, "5.8", null, "0.1", null, "5.8", null, "0.1", null, "6.0", null, "0.1", null, "7.2", null, "0.1", null, "6.4", null, "0.1", null, "5.4", null, "0.1", null, "3.6", null, "0.1", null, "2.3", null, "0.1", null, "2.0", null, "0.1", null, "11.7", null, "0.1", null, "3.9", null, "0.1", null, "20.7", null, "0.1", null, "9.3", null, "0.1", null, "38.7", null, "0.1", null, "81.9", null, "0.1", null, "79.3", null, "0.1", null, "75.4", null, "0.1", null, "26.9", null, "0.1", null, "24.1", null, "0.1", null, "19.6", null, "0.1", null, "7.9", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "0.9", null, "-888888888.0", "(X)", "2984118", null, "4251", null, "154111", null, "2140", null, "173215", null, "5625", null, "186403", null, "5259", null, "198932", null, "3394", null, "204534", null, "2960", null, "191296", null, "2658", null, "196216", null, "2556", null, "194367", null, "4624", null, "191637", null, "4922", null, "177140", null, "2427", null, "174756", null, "2015", null, "183307", null, "4630", null, "210229", null, "4572", null, "187538", null, "3968", null, "154157", null, "3707", null, "101558", null, "2487", null, "58225", null, "2298", null, "46497", null, "2573", null, "359618", null, "2801", null, "119714", null, "2086", null, "633443", null, "3216", null, "283752", null, "2352", null, "1176982", null, "3909", null, "2429923", null, "3939", null, "2350675", null, "2470", null, "2230857", null, "4947", null, "758204", null, "4460", null, "676539", null, "4115", null, "547975", null, "1538", null, "206280", null, "1457", null, "39.8", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.2", null, "0.1", null, "5.8", null, "0.2", null, "6.2", null, "0.2", null, "6.7", null, "0.1", null, "6.9", null, "0.1", null, "6.4", null, "0.1", null, "6.6", null, "0.1", null, "6.5", null, "0.2", null, "6.4", null, "0.2", null, "5.9", null, "0.1", null, "5.9", null, "0.1", null, "6.1", null, "0.2", null, "7.0", null, "0.2", null, "6.3", null, "0.1", null, "5.2", null, "0.1", null, "3.4", null, "0.1", null, "2.0", null, "0.1", null, "1.6", null, "0.1", null, "12.1", null, "0.1", null, "4.0", null, "0.1", null, "21.2", null, "0.1", null, "9.5", null, "0.1", null, "39.4", null, "0.1", null, "81.4", null, "0.1", null, "78.8", null, "0.1", null, "74.8", null, "0.2", null, "25.4", null, "0.2", null, "22.7", null, "0.1", null, "18.4", null, "0.1", null, "6.9", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "2976857", null, "4251", null, "148933", null, "2306", null, "163761", null, "4651", null, "174237", null, "4315", null, "187427", null, "3054", null, "196784", null, "2416", null, "183043", null, "2507", null, "186911", null, "2760", null, "188824", null, "4276", null, "186576", null, "4364", null, "169986", null, "2316", null, "171452", null, "2296", null, "176191", null, "4105", null, "219665", null, "4186", null, "192308", null, "3868", null, "165120", null, "4361", null, "113734", null, "3439", null, "76959", null, "2789", null, "74946", null, "2911", null, "337998", null, "2387", null, "112902", null, "2287", null, "599833", null, "3241", null, "271309", null, "2274", null, "1129565", null, "4320", null, "2453050", null, "3922", null, "2377024", null, "2672", null, "2262993", null, "4112", null, "842732", null, "4109", null, "760829", null, "4632", null, "623067", null, "2288", null, "265639", null, "1339", null, "41.5", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.0", null, "0.1", null, "5.5", null, "0.2", null, "5.9", null, "0.1", null, "6.3", null, "0.1", null, "6.6", null, "0.1", null, "6.1", null, "0.1", null, "6.3", null, "0.1", null, "6.3", null, "0.1", null, "6.3", null, "0.1", null, "5.7", null, "0.1", null, "5.8", null, "0.1", null, "5.9", null, "0.1", null, "7.4", null, "0.1", null, "6.5", null, "0.1", null, "5.5", null, "0.1", null, "3.8", null, "0.1", null, "2.6", null, "0.1", null, "2.5", null, "0.1", null, "11.4", null, "0.1", null, "3.8", null, "0.1", null, "20.1", null, "0.1", null, "9.1", null, "0.1", null, "37.9", null, "0.1", null, "82.4", null, "0.1", null, "79.9", null, "0.1", null, "76.0", null, "0.1", null, "28.3", null, "0.1", null, "25.6", null, "0.2", null, "20.9", null, "0.1", null, "8.9", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "55"], ["0400000US56", "Wyoming", "587618", null, "-555555555", "*****", "28344", null, "1168", null, "31498", null, "2282", null, "40087", null, "2337", null, "41098", null, "2065", null, "37247", null, "2390", null, "35539", null, "2170", null, "38272", null, "1465", null, "40235", null, "3034", null, "40926", null, "2959", null, "34791", null, "1822", null, "32242", null, "2063", null, "31081", null, "2416", null, "38885", null, "2507", null, "36575", null, "2326", null, "35370", null, "2353", null, "22202", null, "1848", null, "13424", null, "1589", null, "9802", null, "1496", null, "71585", null, "1646", null, "25057", null, "881", null, "124986", null, "1659", null, "53288", null, "2456", null, "233317", null, "2674", null, "480483", null, "2259", null, "462632", null, "1659", null, "439234", null, "3099", null, "156258", null, "2865", null, "141799", null, "2647", null, "117373", null, "1460", null, "45428", null, "1382", null, "40.2", null, "0.4", null, "105.2", null, "2.1", null, "70.2", null, "1.0", null, "34.0", null, "0.6", null, "36.2", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.8", null, "0.2", null, "5.4", null, "0.4", null, "6.8", null, "0.4", null, "7.0", null, "0.4", null, "6.3", null, "0.4", null, "6.0", null, "0.4", null, "6.5", null, "0.2", null, "6.8", null, "0.5", null, "7.0", null, "0.5", null, "5.9", null, "0.3", null, "5.5", null, "0.4", null, "5.3", null, "0.4", null, "6.6", null, "0.4", null, "6.2", null, "0.4", null, "6.0", null, "0.4", null, "3.8", null, "0.3", null, "2.3", null, "0.3", null, "1.7", null, "0.3", null, "12.2", null, "0.3", null, "4.3", null, "0.1", null, "21.3", null, "0.3", null, "9.1", null, "0.4", null, "39.7", null, "0.5", null, "81.8", null, "0.4", null, "78.7", null, "0.3", null, "74.7", null, "0.5", null, "26.6", null, "0.5", null, "24.1", null, "0.5", null, "20.0", null, "0.2", null, "7.7", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "1.1", null, "-888888888.0", "(X)", "301319", null, "2922", null, "15266", null, "1427", null, "15871", null, "1669", null, "20765", null, "1777", null, "23225", null, "1627", null, "21165", null, "1749", null, "16422", null, "1524", null, "19722", null, "1001", null, "21176", null, "2166", null, "21376", null, "1978", null, "17638", null, "1196", null, "17178", null, "1448", null, "14653", null, "1513", null, "19629", null, "1539", null, "17957", null, "1787", null, "18220", null, "1879", null, "10924", null, "1233", null, "5952", null, "978", null, "4180", null, "816", null, "36636", null, "1348", null, "14899", null, "1428", null, "66801", null, "2260", null, "29491", null, "1959", null, "123086", null, "2690", null, "244289", null, "2377", null, "234518", null, "1931", null, "222330", null, "2287", null, "76862", null, "1792", null, "69740", null, "1769", null, "57233", null, "885", null, "21056", null, "763", null, "39.5", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.1", null, "0.5", null, "5.3", null, "0.5", null, "6.9", null, "0.6", null, "7.7", null, "0.5", null, "7.0", null, "0.6", null, "5.5", null, "0.5", null, "6.5", null, "0.3", null, "7.0", null, "0.7", null, "7.1", null, "0.7", null, "5.9", null, "0.4", null, "5.7", null, "0.5", null, "4.9", null, "0.5", null, "6.5", null, "0.5", null, "6.0", null, "0.6", null, "6.0", null, "0.6", null, "3.6", null, "0.4", null, "2.0", null, "0.3", null, "1.4", null, "0.3", null, "12.2", null, "0.4", null, "4.9", null, "0.5", null, "22.2", null, "0.6", null, "9.8", null, "0.6", null, "40.8", null, "0.7", null, "81.1", null, "0.6", null, "77.8", null, "0.6", null, "73.8", null, "0.7", null, "25.5", null, "0.7", null, "23.1", null, "0.6", null, "19.0", null, "0.3", null, "7.0", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "286299", null, "2922", null, "13078", null, "1104", null, "15627", null, "1837", null, "19322", null, "1834", null, "17873", null, "2178", null, "16082", null, "1761", null, "19117", null, "1515", null, "18550", null, "1140", null, "19059", null, "1825", null, "19550", null, "1963", null, "17153", null, "1319", null, "15064", null, "1145", null, "16428", null, "1799", null, "19256", null, "1910", null, "18618", null, "1664", null, "17150", null, "1421", null, "11278", null, "1422", null, "7472", null, "1147", null, "5622", null, "1103", null, "34949", null, "1481", null, "10158", null, "1242", null, "58185", null, "2052", null, "23797", null, "1725", null, "110231", null, "2884", null, "236194", null, "2427", null, "228114", null, "2043", null, "216904", null, "2464", null, "79396", null, "2311", null, "72059", null, "1912", null, "60140", null, "1196", null, "24372", null, "978", null, "41.0", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "4.6", null, "0.4", null, "5.5", null, "0.6", null, "6.7", null, "0.6", null, "6.2", null, "0.7", null, "5.6", null, "0.6", null, "6.7", null, "0.5", null, "6.5", null, "0.4", null, "6.7", null, "0.7", null, "6.8", null, "0.7", null, "6.0", null, "0.5", null, "5.3", null, "0.4", null, "5.7", null, "0.6", null, "6.7", null, "0.6", null, "6.5", null, "0.6", null, "6.0", null, "0.5", null, "3.9", null, "0.5", null, "2.6", null, "0.4", null, "2.0", null, "0.4", null, "12.2", null, "0.5", null, "3.5", null, "0.4", null, "20.3", null, "0.6", null, "8.3", null, "0.6", null, "38.5", null, "0.8", null, "82.5", null, "0.6", null, "79.7", null, "0.6", null, "75.8", null, "0.9", null, "27.7", null, "0.8", null, "25.2", null, "0.6", null, "21.0", null, "0.4", null, "8.5", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "56"], ["0400000US72", "Puerto Rico", "3203295", null, "-555555555", "*****", "90280", null, "2428", null, "123329", null, "5468", null, "160119", null, "5688", null, "188887", null, "6169", null, "212615", null, "5985", null, "206423", null, "3763", null, "205615", null, "5758", null, "193377", null, "7685", null, "201848", null, "7708", null, "202007", null, "4740", null, "199691", null, "2496", null, "200217", null, "6809", null, "229373", null, "6850", null, "206861", null, "6296", null, "180608", null, "6321", null, "178813", null, "5225", null, "113321", null, "4221", null, "109911", null, "4411", null, "283448", null, "3551", null, "106998", null, "2886", null, "480726", null, "-555555555", "*****", "294504", null, "3822", null, "1208765", null, "5821", null, "2796511", null, "3432", null, "2722569", null, "-555555555", "*****", "2595224", null, "6901", null, "1018887", null, "6811", null, "924219", null, "5918", null, "789514", null, "379", null, "402045", null, "565", null, "45.4", null, "0.2", null, "89.9", null, "0.5", null, "65.7", null, "0.1", null, "40.8", null, "0.1", null, "24.9", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "2.8", null, "0.1", null, "3.9", null, "0.2", null, "5.0", null, "0.2", null, "5.9", null, "0.2", null, "6.6", null, "0.2", null, "6.4", null, "0.1", null, "6.4", null, "0.2", null, "6.0", null, "0.2", null, "6.3", null, "0.2", null, "6.3", null, "0.1", null, "6.2", null, "0.1", null, "6.3", null, "0.2", null, "7.2", null, "0.2", null, "6.5", null, "0.2", null, "5.6", null, "0.2", null, "5.6", null, "0.2", null, "3.5", null, "0.1", null, "3.4", null, "0.1", null, "8.8", null, "0.1", null, "3.3", null, "0.1", null, "15.0", null, "-555555555.0", "*****", "9.2", null, "0.1", null, "37.7", null, "0.2", null, "87.3", null, "0.1", null, "85.0", null, "-555555555.0", "*****", "81.0", null, "0.2", null, "31.8", null, "0.2", null, "28.9", null, "0.2", null, "24.6", null, "0.1", null, "12.6", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "0.1", null, "-888888888.0", "(X)", "2.1", null, "-888888888.0", "(X)", "1516882", null, "4276", null, "48205", null, "3112", null, "62986", null, "4209", null, "83132", null, "4344", null, "98598", null, "4035", null, "104261", null, "4209", null, "106775", null, "2626", null, "100236", null, "4051", null, "90722", null, "5351", null, "99241", null, "5410", null, "95074", null, "3604", null, "92690", null, "2115", null, "91941", null, "4164", null, "103880", null, "4163", null, "94356", null, "3654", null, "78631", null, "3681", null, "76490", null, "3330", null, "48374", null, "3359", null, "41290", null, "2673", null, "146118", null, "2797", null, "55370", null, "2978", null, "249693", null, "4274", null, "147489", null, "2687", null, "599833", null, "4760", null, "1304412", null, "2872", null, "1267189", null, "-555555555", "*****", "1200423", null, "4340", null, "443021", null, "4164", null, "399262", null, "4420", null, "339141", null, "378", null, "166154", null, "565", null, "43.4", null, "0.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "3.2", null, "0.2", null, "4.2", null, "0.3", null, "5.5", null, "0.3", null, "6.5", null, "0.3", null, "6.9", null, "0.3", null, "7.0", null, "0.2", null, "6.6", null, "0.3", null, "6.0", null, "0.4", null, "6.5", null, "0.4", null, "6.3", null, "0.2", null, "6.1", null, "0.1", null, "6.1", null, "0.3", null, "6.8", null, "0.3", null, "6.2", null, "0.2", null, "5.2", null, "0.2", null, "5.0", null, "0.2", null, "3.2", null, "0.2", null, "2.7", null, "0.2", null, "9.6", null, "0.2", null, "3.7", null, "0.2", null, "16.5", null, "0.2", null, "9.7", null, "0.2", null, "39.5", null, "0.3", null, "86.0", null, "0.2", null, "83.5", null, "0.2", null, "79.1", null, "0.4", null, "29.2", null, "0.3", null, "26.3", null, "0.3", null, "22.4", null, "0.1", null, "11.0", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "1686413", null, "4276", null, "42075", null, "2521", null, "60343", null, "3745", null, "76987", null, "3655", null, "90289", null, "4998", null, "108354", null, "4008", null, "99648", null, "2514", null, "105379", null, "3430", null, "102655", null, "5670", null, "102607", null, "5466", null, "106933", null, "2780", null, "107001", null, "905", null, "108276", null, "5039", null, "125493", null, "5040", null, "112505", null, "4567", null, "101977", null, "4566", null, "102323", null, "4227", null, "64947", null, "3956", null, "68621", null, "4178", null, "137330", null, "2832", null, "51628", null, "2717", null, "231033", null, "4276", null, "147015", null, "2514", null, "608932", null, "4171", null, "1492099", null, "2695", null, "1455380", null, "-555555555", "*****", "1394801", null, "4339", null, "575866", null, "5040", null, "524957", null, "4268", null, "450373", null, "-555555555", "*****", "235891", null, "-555555555", "*****", "47.6", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "2.5", null, "0.1", null, "3.6", null, "0.2", null, "4.6", null, "0.2", null, "5.4", null, "0.3", null, "6.4", null, "0.2", null, "5.9", null, "0.2", null, "6.2", null, "0.2", null, "6.1", null, "0.3", null, "6.1", null, "0.3", null, "6.3", null, "0.2", null, "6.3", null, "0.1", null, "6.4", null, "0.3", null, "7.4", null, "0.3", null, "6.7", null, "0.3", null, "6.0", null, "0.3", null, "6.1", null, "0.2", null, "3.9", null, "0.2", null, "4.1", null, "0.2", null, "8.1", null, "0.2", null, "3.1", null, "0.2", null, "13.7", null, "0.2", null, "8.7", null, "0.2", null, "36.1", null, "0.2", null, "88.5", null, "0.2", null, "86.3", null, "0.2", null, "82.7", null, "0.3", null, "34.1", null, "0.3", null, "31.1", null, "0.3", null, "26.7", null, "0.1", null, "14.0", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "72"]] \ No newline at end of file diff --git a/policyengine_us_data/storage/calibration/raw_inputs/acs_S2201_district_2024.json b/policyengine_us_data/storage/calibration/raw_inputs/acs_S2201_district_2024.json new file mode 100644 index 00000000..13185f8e --- /dev/null +++ b/policyengine_us_data/storage/calibration/raw_inputs/acs_S2201_district_2024.json @@ -0,0 +1 @@ +[["GEO_ID", "NAME", "S2201_C01_001E", "S2201_C01_001EA", "S2201_C01_001M", "S2201_C01_001MA", "S2201_C01_002E", "S2201_C01_002EA", "S2201_C01_002M", "S2201_C01_002MA", "S2201_C01_003E", "S2201_C01_003EA", "S2201_C01_003M", "S2201_C01_003MA", "S2201_C01_004E", "S2201_C01_004EA", "S2201_C01_004M", "S2201_C01_004MA", "S2201_C01_005E", "S2201_C01_005EA", "S2201_C01_005M", "S2201_C01_005MA", "S2201_C01_006E", "S2201_C01_006EA", "S2201_C01_006M", "S2201_C01_006MA", "S2201_C01_007E", "S2201_C01_007EA", "S2201_C01_007M", "S2201_C01_007MA", "S2201_C01_008E", "S2201_C01_008EA", "S2201_C01_008M", "S2201_C01_008MA", "S2201_C01_009E", "S2201_C01_009EA", "S2201_C01_009M", "S2201_C01_009MA", "S2201_C01_010E", "S2201_C01_010EA", "S2201_C01_010M", "S2201_C01_010MA", "S2201_C01_011E", "S2201_C01_011EA", "S2201_C01_011M", "S2201_C01_011MA", "S2201_C01_012E", "S2201_C01_012EA", "S2201_C01_012M", "S2201_C01_012MA", "S2201_C01_013E", "S2201_C01_013EA", "S2201_C01_013M", "S2201_C01_013MA", "S2201_C01_014E", "S2201_C01_014EA", "S2201_C01_014M", "S2201_C01_014MA", "S2201_C01_015E", "S2201_C01_015EA", "S2201_C01_015M", "S2201_C01_015MA", "S2201_C01_016E", "S2201_C01_016EA", "S2201_C01_016M", "S2201_C01_016MA", "S2201_C01_017E", "S2201_C01_017EA", "S2201_C01_017M", "S2201_C01_017MA", "S2201_C01_018E", "S2201_C01_018EA", "S2201_C01_018M", "S2201_C01_018MA", "S2201_C01_019E", "S2201_C01_019EA", "S2201_C01_019M", "S2201_C01_019MA", "S2201_C01_020E", "S2201_C01_020EA", "S2201_C01_020M", "S2201_C01_020MA", "S2201_C01_021E", "S2201_C01_021EA", "S2201_C01_021M", "S2201_C01_021MA", "S2201_C01_022E", "S2201_C01_022EA", "S2201_C01_022M", "S2201_C01_022MA", "S2201_C01_023E", "S2201_C01_023EA", "S2201_C01_023M", "S2201_C01_023MA", "S2201_C01_024E", "S2201_C01_024EA", "S2201_C01_024M", "S2201_C01_024MA", "S2201_C01_025E", "S2201_C01_025EA", "S2201_C01_025M", "S2201_C01_025MA", "S2201_C01_026E", "S2201_C01_026EA", "S2201_C01_026M", "S2201_C01_026MA", "S2201_C01_027E", "S2201_C01_027EA", "S2201_C01_027M", "S2201_C01_027MA", "S2201_C01_028E", "S2201_C01_028EA", "S2201_C01_028M", "S2201_C01_028MA", "S2201_C01_029E", "S2201_C01_029EA", "S2201_C01_029M", "S2201_C01_029MA", "S2201_C01_030E", "S2201_C01_030EA", "S2201_C01_030M", "S2201_C01_030MA", "S2201_C01_031E", "S2201_C01_031EA", "S2201_C01_031M", "S2201_C01_031MA", "S2201_C01_032E", "S2201_C01_032EA", "S2201_C01_032M", "S2201_C01_032MA", "S2201_C01_033E", "S2201_C01_033EA", "S2201_C01_033M", "S2201_C01_033MA", "S2201_C01_034E", "S2201_C01_034EA", "S2201_C01_034M", "S2201_C01_034MA", "S2201_C01_035E", "S2201_C01_035EA", "S2201_C01_035M", "S2201_C01_035MA", "S2201_C01_036E", "S2201_C01_036EA", "S2201_C01_036M", "S2201_C01_036MA", "S2201_C01_037E", "S2201_C01_037EA", "S2201_C01_037M", "S2201_C01_037MA", "S2201_C01_038E", "S2201_C01_038EA", "S2201_C01_038M", "S2201_C01_038MA", "S2201_C02_001E", "S2201_C02_001EA", "S2201_C02_001M", "S2201_C02_001MA", "S2201_C02_002E", "S2201_C02_002EA", "S2201_C02_002M", "S2201_C02_002MA", "S2201_C02_003E", "S2201_C02_003EA", "S2201_C02_003M", "S2201_C02_003MA", "S2201_C02_004E", "S2201_C02_004EA", "S2201_C02_004M", "S2201_C02_004MA", "S2201_C02_005E", "S2201_C02_005EA", "S2201_C02_005M", "S2201_C02_005MA", "S2201_C02_006E", "S2201_C02_006EA", "S2201_C02_006M", "S2201_C02_006MA", "S2201_C02_007E", "S2201_C02_007EA", "S2201_C02_007M", "S2201_C02_007MA", "S2201_C02_008E", "S2201_C02_008EA", "S2201_C02_008M", "S2201_C02_008MA", "S2201_C02_009E", "S2201_C02_009EA", "S2201_C02_009M", "S2201_C02_009MA", "S2201_C02_010E", "S2201_C02_010EA", "S2201_C02_010M", "S2201_C02_010MA", "S2201_C02_011E", "S2201_C02_011EA", "S2201_C02_011M", "S2201_C02_011MA", "S2201_C02_012E", "S2201_C02_012EA", "S2201_C02_012M", "S2201_C02_012MA", "S2201_C02_013E", "S2201_C02_013EA", "S2201_C02_013M", "S2201_C02_013MA", "S2201_C02_014E", "S2201_C02_014EA", "S2201_C02_014M", "S2201_C02_014MA", "S2201_C02_015E", "S2201_C02_015EA", "S2201_C02_015M", "S2201_C02_015MA", "S2201_C02_016E", "S2201_C02_016EA", "S2201_C02_016M", "S2201_C02_016MA", "S2201_C02_017E", "S2201_C02_017EA", "S2201_C02_017M", "S2201_C02_017MA", "S2201_C02_018E", "S2201_C02_018EA", "S2201_C02_018M", "S2201_C02_018MA", "S2201_C02_019E", "S2201_C02_019EA", "S2201_C02_019M", "S2201_C02_019MA", "S2201_C02_020E", "S2201_C02_020EA", "S2201_C02_020M", "S2201_C02_020MA", "S2201_C02_021E", "S2201_C02_021EA", "S2201_C02_021M", "S2201_C02_021MA", "S2201_C02_022E", "S2201_C02_022EA", "S2201_C02_022M", "S2201_C02_022MA", "S2201_C02_023E", "S2201_C02_023EA", "S2201_C02_023M", "S2201_C02_023MA", "S2201_C02_024E", "S2201_C02_024EA", "S2201_C02_024M", "S2201_C02_024MA", "S2201_C02_025E", "S2201_C02_025EA", "S2201_C02_025M", "S2201_C02_025MA", "S2201_C02_026E", "S2201_C02_026EA", "S2201_C02_026M", "S2201_C02_026MA", "S2201_C02_027E", "S2201_C02_027EA", "S2201_C02_027M", "S2201_C02_027MA", "S2201_C02_028E", "S2201_C02_028EA", "S2201_C02_028M", "S2201_C02_028MA", "S2201_C02_029E", "S2201_C02_029EA", "S2201_C02_029M", "S2201_C02_029MA", "S2201_C02_030E", "S2201_C02_030EA", "S2201_C02_030M", "S2201_C02_030MA", "S2201_C02_031E", "S2201_C02_031EA", "S2201_C02_031M", "S2201_C02_031MA", "S2201_C02_032E", "S2201_C02_032EA", "S2201_C02_032M", "S2201_C02_032MA", "S2201_C02_033E", "S2201_C02_033EA", "S2201_C02_033M", "S2201_C02_033MA", "S2201_C02_034E", "S2201_C02_034EA", "S2201_C02_034M", "S2201_C02_034MA", "S2201_C02_035E", "S2201_C02_035EA", "S2201_C02_035M", "S2201_C02_035MA", "S2201_C02_036E", "S2201_C02_036EA", "S2201_C02_036M", "S2201_C02_036MA", "S2201_C02_037E", "S2201_C02_037EA", "S2201_C02_037M", "S2201_C02_037MA", "S2201_C02_038E", "S2201_C02_038EA", "S2201_C02_038M", "S2201_C02_038MA", "S2201_C03_001E", "S2201_C03_001EA", "S2201_C03_001M", "S2201_C03_001MA", "S2201_C03_002E", "S2201_C03_002EA", "S2201_C03_002M", "S2201_C03_002MA", "S2201_C03_003E", "S2201_C03_003EA", "S2201_C03_003M", "S2201_C03_003MA", "S2201_C03_004E", "S2201_C03_004EA", "S2201_C03_004M", "S2201_C03_004MA", "S2201_C03_005E", "S2201_C03_005EA", "S2201_C03_005M", "S2201_C03_005MA", "S2201_C03_006E", "S2201_C03_006EA", "S2201_C03_006M", "S2201_C03_006MA", "S2201_C03_007E", "S2201_C03_007EA", "S2201_C03_007M", "S2201_C03_007MA", "S2201_C03_008E", "S2201_C03_008EA", "S2201_C03_008M", "S2201_C03_008MA", "S2201_C03_009E", "S2201_C03_009EA", "S2201_C03_009M", "S2201_C03_009MA", "S2201_C03_010E", "S2201_C03_010EA", "S2201_C03_010M", "S2201_C03_010MA", "S2201_C03_011E", "S2201_C03_011EA", "S2201_C03_011M", "S2201_C03_011MA", "S2201_C03_012E", "S2201_C03_012EA", "S2201_C03_012M", "S2201_C03_012MA", "S2201_C03_013E", "S2201_C03_013EA", "S2201_C03_013M", "S2201_C03_013MA", "S2201_C03_014E", "S2201_C03_014EA", "S2201_C03_014M", "S2201_C03_014MA", "S2201_C03_015E", "S2201_C03_015EA", "S2201_C03_015M", "S2201_C03_015MA", "S2201_C03_016E", "S2201_C03_016EA", "S2201_C03_016M", "S2201_C03_016MA", "S2201_C03_017E", "S2201_C03_017EA", "S2201_C03_017M", "S2201_C03_017MA", "S2201_C03_018E", "S2201_C03_018EA", "S2201_C03_018M", "S2201_C03_018MA", "S2201_C03_019E", "S2201_C03_019EA", "S2201_C03_019M", "S2201_C03_019MA", "S2201_C03_020E", "S2201_C03_020EA", "S2201_C03_020M", "S2201_C03_020MA", "S2201_C03_021E", "S2201_C03_021EA", "S2201_C03_021M", "S2201_C03_021MA", "S2201_C03_022E", "S2201_C03_022EA", "S2201_C03_022M", "S2201_C03_022MA", "S2201_C03_023E", "S2201_C03_023EA", "S2201_C03_023M", "S2201_C03_023MA", "S2201_C03_024E", "S2201_C03_024EA", "S2201_C03_024M", "S2201_C03_024MA", "S2201_C03_025E", "S2201_C03_025EA", "S2201_C03_025M", "S2201_C03_025MA", "S2201_C03_026E", "S2201_C03_026EA", "S2201_C03_026M", "S2201_C03_026MA", "S2201_C03_027E", "S2201_C03_027EA", "S2201_C03_027M", "S2201_C03_027MA", "S2201_C03_028E", "S2201_C03_028EA", "S2201_C03_028M", "S2201_C03_028MA", "S2201_C03_029E", "S2201_C03_029EA", "S2201_C03_029M", "S2201_C03_029MA", "S2201_C03_030E", "S2201_C03_030EA", "S2201_C03_030M", "S2201_C03_030MA", "S2201_C03_031E", "S2201_C03_031EA", "S2201_C03_031M", "S2201_C03_031MA", "S2201_C03_032E", "S2201_C03_032EA", "S2201_C03_032M", "S2201_C03_032MA", "S2201_C03_033E", "S2201_C03_033EA", "S2201_C03_033M", "S2201_C03_033MA", "S2201_C03_034E", "S2201_C03_034EA", "S2201_C03_034M", "S2201_C03_034MA", "S2201_C03_035E", "S2201_C03_035EA", "S2201_C03_035M", "S2201_C03_035MA", "S2201_C03_036E", "S2201_C03_036EA", "S2201_C03_036M", "S2201_C03_036MA", "S2201_C03_037E", "S2201_C03_037EA", "S2201_C03_037M", "S2201_C03_037MA", "S2201_C03_038E", "S2201_C03_038EA", "S2201_C03_038M", "S2201_C03_038MA", "S2201_C04_001E", "S2201_C04_001EA", "S2201_C04_001M", "S2201_C04_001MA", "S2201_C04_002E", "S2201_C04_002EA", "S2201_C04_002M", "S2201_C04_002MA", "S2201_C04_003E", "S2201_C04_003EA", "S2201_C04_003M", "S2201_C04_003MA", "S2201_C04_004E", "S2201_C04_004EA", "S2201_C04_004M", "S2201_C04_004MA", "S2201_C04_005E", "S2201_C04_005EA", "S2201_C04_005M", "S2201_C04_005MA", "S2201_C04_006E", "S2201_C04_006EA", "S2201_C04_006M", "S2201_C04_006MA", "S2201_C04_007E", "S2201_C04_007EA", "S2201_C04_007M", "S2201_C04_007MA", "S2201_C04_008E", "S2201_C04_008EA", "S2201_C04_008M", "S2201_C04_008MA", "S2201_C04_009E", "S2201_C04_009EA", "S2201_C04_009M", "S2201_C04_009MA", "S2201_C04_010E", "S2201_C04_010EA", "S2201_C04_010M", "S2201_C04_010MA", "S2201_C04_011E", "S2201_C04_011EA", "S2201_C04_011M", "S2201_C04_011MA", "S2201_C04_012E", "S2201_C04_012EA", "S2201_C04_012M", "S2201_C04_012MA", "S2201_C04_013E", "S2201_C04_013EA", "S2201_C04_013M", "S2201_C04_013MA", "S2201_C04_014E", "S2201_C04_014EA", "S2201_C04_014M", "S2201_C04_014MA", "S2201_C04_015E", "S2201_C04_015EA", "S2201_C04_015M", "S2201_C04_015MA", "S2201_C04_016E", "S2201_C04_016EA", "S2201_C04_016M", "S2201_C04_016MA", "S2201_C04_017E", "S2201_C04_017EA", "S2201_C04_017M", "S2201_C04_017MA", "S2201_C04_018E", "S2201_C04_018EA", "S2201_C04_018M", "S2201_C04_018MA", "S2201_C04_019E", "S2201_C04_019EA", "S2201_C04_019M", "S2201_C04_019MA", "S2201_C04_020E", "S2201_C04_020EA", "S2201_C04_020M", "S2201_C04_020MA", "S2201_C04_021E", "S2201_C04_021EA", "S2201_C04_021M", "S2201_C04_021MA", "S2201_C04_022E", "S2201_C04_022EA", "S2201_C04_022M", "S2201_C04_022MA", "S2201_C04_023E", "S2201_C04_023EA", "S2201_C04_023M", "S2201_C04_023MA", "S2201_C04_024E", "S2201_C04_024EA", "S2201_C04_024M", "S2201_C04_024MA", "S2201_C04_025E", "S2201_C04_025EA", "S2201_C04_025M", "S2201_C04_025MA", "S2201_C04_026E", "S2201_C04_026EA", "S2201_C04_026M", "S2201_C04_026MA", "S2201_C04_027E", "S2201_C04_027EA", "S2201_C04_027M", "S2201_C04_027MA", "S2201_C04_028E", "S2201_C04_028EA", "S2201_C04_028M", "S2201_C04_028MA", "S2201_C04_029E", "S2201_C04_029EA", "S2201_C04_029M", "S2201_C04_029MA", "S2201_C04_030E", "S2201_C04_030EA", "S2201_C04_030M", "S2201_C04_030MA", "S2201_C04_031E", "S2201_C04_031EA", "S2201_C04_031M", "S2201_C04_031MA", "S2201_C04_032E", "S2201_C04_032EA", "S2201_C04_032M", "S2201_C04_032MA", "S2201_C04_033E", "S2201_C04_033EA", "S2201_C04_033M", "S2201_C04_033MA", "S2201_C04_034E", "S2201_C04_034EA", "S2201_C04_034M", "S2201_C04_034MA", "S2201_C04_035E", "S2201_C04_035EA", "S2201_C04_035M", "S2201_C04_035MA", "S2201_C04_036E", "S2201_C04_036EA", "S2201_C04_036M", "S2201_C04_036MA", "S2201_C04_037E", "S2201_C04_037EA", "S2201_C04_037M", "S2201_C04_037MA", "S2201_C04_038E", "S2201_C04_038EA", "S2201_C04_038M", "S2201_C04_038MA", "S2201_C05_001E", "S2201_C05_001EA", "S2201_C05_001M", "S2201_C05_001MA", "S2201_C05_002E", "S2201_C05_002EA", "S2201_C05_002M", "S2201_C05_002MA", "S2201_C05_003E", "S2201_C05_003EA", "S2201_C05_003M", "S2201_C05_003MA", "S2201_C05_004E", "S2201_C05_004EA", "S2201_C05_004M", "S2201_C05_004MA", "S2201_C05_005E", "S2201_C05_005EA", "S2201_C05_005M", "S2201_C05_005MA", "S2201_C05_006E", "S2201_C05_006EA", "S2201_C05_006M", "S2201_C05_006MA", "S2201_C05_007E", "S2201_C05_007EA", "S2201_C05_007M", "S2201_C05_007MA", "S2201_C05_008E", "S2201_C05_008EA", "S2201_C05_008M", "S2201_C05_008MA", "S2201_C05_009E", "S2201_C05_009EA", "S2201_C05_009M", "S2201_C05_009MA", "S2201_C05_010E", "S2201_C05_010EA", "S2201_C05_010M", "S2201_C05_010MA", "S2201_C05_011E", "S2201_C05_011EA", "S2201_C05_011M", "S2201_C05_011MA", "S2201_C05_012E", "S2201_C05_012EA", "S2201_C05_012M", "S2201_C05_012MA", "S2201_C05_013E", "S2201_C05_013EA", "S2201_C05_013M", "S2201_C05_013MA", "S2201_C05_014E", "S2201_C05_014EA", "S2201_C05_014M", "S2201_C05_014MA", "S2201_C05_015E", "S2201_C05_015EA", "S2201_C05_015M", "S2201_C05_015MA", "S2201_C05_016E", "S2201_C05_016EA", "S2201_C05_016M", "S2201_C05_016MA", "S2201_C05_017E", "S2201_C05_017EA", "S2201_C05_017M", "S2201_C05_017MA", "S2201_C05_018E", "S2201_C05_018EA", "S2201_C05_018M", "S2201_C05_018MA", "S2201_C05_019E", "S2201_C05_019EA", "S2201_C05_019M", "S2201_C05_019MA", "S2201_C05_020E", "S2201_C05_020EA", "S2201_C05_020M", "S2201_C05_020MA", "S2201_C05_021E", "S2201_C05_021EA", "S2201_C05_021M", "S2201_C05_021MA", "S2201_C05_022E", "S2201_C05_022EA", "S2201_C05_022M", "S2201_C05_022MA", "S2201_C05_023E", "S2201_C05_023EA", "S2201_C05_023M", "S2201_C05_023MA", "S2201_C05_024E", "S2201_C05_024EA", "S2201_C05_024M", "S2201_C05_024MA", "S2201_C05_025E", "S2201_C05_025EA", "S2201_C05_025M", "S2201_C05_025MA", "S2201_C05_026E", "S2201_C05_026EA", "S2201_C05_026M", "S2201_C05_026MA", "S2201_C05_027E", "S2201_C05_027EA", "S2201_C05_027M", "S2201_C05_027MA", "S2201_C05_028E", "S2201_C05_028EA", "S2201_C05_028M", "S2201_C05_028MA", "S2201_C05_029E", "S2201_C05_029EA", "S2201_C05_029M", "S2201_C05_029MA", "S2201_C05_030E", "S2201_C05_030EA", "S2201_C05_030M", "S2201_C05_030MA", "S2201_C05_031E", "S2201_C05_031EA", "S2201_C05_031M", "S2201_C05_031MA", "S2201_C05_032E", "S2201_C05_032EA", "S2201_C05_032M", "S2201_C05_032MA", "S2201_C05_033E", "S2201_C05_033EA", "S2201_C05_033M", "S2201_C05_033MA", "S2201_C05_034E", "S2201_C05_034EA", "S2201_C05_034M", "S2201_C05_034MA", "S2201_C05_035E", "S2201_C05_035EA", "S2201_C05_035M", "S2201_C05_035MA", "S2201_C05_036E", "S2201_C05_036EA", "S2201_C05_036M", "S2201_C05_036MA", "S2201_C05_037E", "S2201_C05_037EA", "S2201_C05_037M", "S2201_C05_037MA", "S2201_C05_038E", "S2201_C05_038EA", "S2201_C05_038M", "S2201_C05_038MA", "S2201_C06_001E", "S2201_C06_001EA", "S2201_C06_001M", "S2201_C06_001MA", "S2201_C06_002E", "S2201_C06_002EA", "S2201_C06_002M", "S2201_C06_002MA", "S2201_C06_003E", "S2201_C06_003EA", "S2201_C06_003M", "S2201_C06_003MA", "S2201_C06_004E", "S2201_C06_004EA", "S2201_C06_004M", "S2201_C06_004MA", "S2201_C06_005E", "S2201_C06_005EA", "S2201_C06_005M", "S2201_C06_005MA", "S2201_C06_006E", "S2201_C06_006EA", "S2201_C06_006M", "S2201_C06_006MA", "S2201_C06_007E", "S2201_C06_007EA", "S2201_C06_007M", "S2201_C06_007MA", "S2201_C06_008E", "S2201_C06_008EA", "S2201_C06_008M", "S2201_C06_008MA", "S2201_C06_009E", "S2201_C06_009EA", "S2201_C06_009M", "S2201_C06_009MA", "S2201_C06_010E", "S2201_C06_010EA", "S2201_C06_010M", "S2201_C06_010MA", "S2201_C06_011E", "S2201_C06_011EA", "S2201_C06_011M", "S2201_C06_011MA", "S2201_C06_012E", "S2201_C06_012EA", "S2201_C06_012M", "S2201_C06_012MA", "S2201_C06_013E", "S2201_C06_013EA", "S2201_C06_013M", "S2201_C06_013MA", "S2201_C06_014E", "S2201_C06_014EA", "S2201_C06_014M", "S2201_C06_014MA", "S2201_C06_015E", "S2201_C06_015EA", "S2201_C06_015M", "S2201_C06_015MA", "S2201_C06_016E", "S2201_C06_016EA", "S2201_C06_016M", "S2201_C06_016MA", "S2201_C06_017E", "S2201_C06_017EA", "S2201_C06_017M", "S2201_C06_017MA", "S2201_C06_018E", "S2201_C06_018EA", "S2201_C06_018M", "S2201_C06_018MA", "S2201_C06_019E", "S2201_C06_019EA", "S2201_C06_019M", "S2201_C06_019MA", "S2201_C06_020E", "S2201_C06_020EA", "S2201_C06_020M", "S2201_C06_020MA", "S2201_C06_021E", "S2201_C06_021EA", "S2201_C06_021M", "S2201_C06_021MA", "S2201_C06_022E", "S2201_C06_022EA", "S2201_C06_022M", "S2201_C06_022MA", "S2201_C06_023E", "S2201_C06_023EA", "S2201_C06_023M", "S2201_C06_023MA", "S2201_C06_024E", "S2201_C06_024EA", "S2201_C06_024M", "S2201_C06_024MA", "S2201_C06_025E", "S2201_C06_025EA", "S2201_C06_025M", "S2201_C06_025MA", "S2201_C06_026E", "S2201_C06_026EA", "S2201_C06_026M", "S2201_C06_026MA", "S2201_C06_027E", "S2201_C06_027EA", "S2201_C06_027M", "S2201_C06_027MA", "S2201_C06_028E", "S2201_C06_028EA", "S2201_C06_028M", "S2201_C06_028MA", "S2201_C06_029E", "S2201_C06_029EA", "S2201_C06_029M", "S2201_C06_029MA", "S2201_C06_030E", "S2201_C06_030EA", "S2201_C06_030M", "S2201_C06_030MA", "S2201_C06_031E", "S2201_C06_031EA", "S2201_C06_031M", "S2201_C06_031MA", "S2201_C06_032E", "S2201_C06_032EA", "S2201_C06_032M", "S2201_C06_032MA", "S2201_C06_033E", "S2201_C06_033EA", "S2201_C06_033M", "S2201_C06_033MA", "S2201_C06_034E", "S2201_C06_034EA", "S2201_C06_034M", "S2201_C06_034MA", "S2201_C06_035E", "S2201_C06_035EA", "S2201_C06_035M", "S2201_C06_035MA", "S2201_C06_036E", "S2201_C06_036EA", "S2201_C06_036M", "S2201_C06_036MA", "S2201_C06_037E", "S2201_C06_037EA", "S2201_C06_037M", "S2201_C06_037MA", "S2201_C06_038E", "S2201_C06_038EA", "S2201_C06_038M", "S2201_C06_038MA", "state", "congressional district"], ["5001900US0101", "Congressional District 1 (119th Congress), Alabama", "300636", null, "5552", null, "142797", null, "3210", null, "157839", null, "5284", null, "154663", null, "6266", null, "48607", null, "3770", null, "11066", null, "1680", null, "37541", null, "3335", null, "97366", null, "5161", null, "89817", null, "5310", null, "60606", null, "4523", null, "28572", null, "3071", null, "4847", null, "1141", null, "23725", null, "2777", null, "639", null, "399", null, "210819", null, "5073", null, "94057", null, "4438", null, "20035", null, "2290", null, "6219", null, "1334", null, "13816", null, "1885", null, "96727", null, "5190", null, "43093", null, "3838", null, "257543", null, "5797", null, "98024", null, "4603", null, "202612", null, "5899", null, "231391", null, "4368", null, "45240", null, "2817", null, "1604", null, "492", null, "4337", null, "792", null, "-999999999", "N", "-999999999", "N", "3847", null, "1086", null, "14002", null, "1912", null, "13235", null, "1390", null, "227261", null, "4174", null, "71253", null, "2214", null, "203270", null, "6773", null, "39226", null, "2513", null, "69191", null, "4818", null, "94853", null, "5018", null, "-888888888", "(X)", "-888888888", "(X)", "47.5", null, "1.1", null, "52.5", null, "1.1", null, "51.4", null, "1.8", null, "16.2", null, "1.2", null, "3.7", null, "0.5", null, "12.5", null, "1.1", null, "32.4", null, "1.7", null, "29.9", null, "1.5", null, "20.2", null, "1.3", null, "9.5", null, "1.0", null, "1.6", null, "0.4", null, "7.9", null, "0.9", null, "0.2", null, "0.1", null, "70.1", null, "1.5", null, "31.3", null, "1.5", null, "6.7", null, "0.7", null, "2.1", null, "0.4", null, "4.6", null, "0.6", null, "32.2", null, "1.7", null, "14.3", null, "1.2", null, "85.7", null, "1.2", null, "32.6", null, "1.4", null, "67.4", null, "1.4", null, "77.0", null, "0.8", null, "15.0", null, "0.9", null, "0.5", null, "0.2", null, "1.4", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "1.3", null, "0.4", null, "4.7", null, "0.6", null, "4.4", null, "0.4", null, "75.6", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "19.3", null, "1.2", null, "34.0", null, "1.9", null, "46.7", null, "1.9", null, "34742", null, "3571", null, "12981", null, "1910", null, "21761", null, "2743", null, "8339", null, "1648", null, "15026", null, "2374", null, "1596", null, "602", null, "13430", null, "2297", null, "11377", null, "1721", null, "17777", null, "2635", null, "5909", null, "1485", null, "11588", null, "2025", null, "879", null, "425", null, "10709", null, "1964", null, "280", null, "270", null, "16965", null, "2092", null, "2430", null, "775", null, "3438", null, "880", null, "717", null, "363", null, "2721", null, "815", null, "11097", null, "1713", null, "19359", null, "2726", null, "15383", null, "2155", null, "16993", null, "2043", null, "17749", null, "2880", null, "19419", null, "2678", null, "12779", null, "2209", null, "72", null, "66", null, "201", null, "228", null, "-999999999", "N", "-999999999", "N", "563", null, "411", null, "1708", null, "684", null, "1502", null, "582", null, "18863", null, "2630", null, "21337", null, "1583", null, "23365", null, "2940", null, "6473", null, "1292", null, "10591", null, "2151", null, "6301", null, "1436", null, "11.6", null, "1.1", null, "37.4", null, "4.2", null, "62.6", null, "4.2", null, "24.0", null, "4.1", null, "43.3", null, "4.7", null, "4.6", null, "1.7", null, "38.7", null, "4.7", null, "32.7", null, "4.1", null, "51.2", null, "4.5", null, "17.0", null, "3.8", null, "33.4", null, "4.3", null, "2.5", null, "1.2", null, "30.8", null, "4.1", null, "0.8", null, "0.8", null, "48.8", null, "4.5", null, "7.0", null, "2.2", null, "9.9", null, "2.4", null, "2.1", null, "1.0", null, "7.8", null, "2.2", null, "31.9", null, "4.1", null, "55.7", null, "4.8", null, "44.3", null, "4.8", null, "48.9", null, "5.1", null, "51.1", null, "5.1", null, "55.9", null, "4.9", null, "36.8", null, "4.9", null, "0.2", null, "0.2", null, "0.6", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "1.6", null, "1.2", null, "4.9", null, "2.0", null, "4.3", null, "1.6", null, "54.3", null, "4.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "27.7", null, "5.1", null, "45.3", null, "6.2", null, "27.0", null, "5.3", null, "265894", null, "5700", null, "129816", null, "3605", null, "136078", null, "4975", null, "146324", null, "6464", null, "33581", null, "3247", null, "9470", null, "1638", null, "24111", null, "2912", null, "85989", null, "5059", null, "72040", null, "4743", null, "54697", null, "4133", null, "16984", null, "2377", null, "3968", null, "1066", null, "13016", null, "2226", null, "359", null, "282", null, "193854", null, "4845", null, "91627", null, "4504", null, "16597", null, "2231", null, "5502", null, "1305", null, "11095", null, "1824", null, "85630", null, "5048", null, "23734", null, "2589", null, "242160", null, "6127", null, "81031", null, "4246", null, "184863", null, "5909", null, "211972", null, "4608", null, "32461", null, "2706", null, "1532", null, "490", null, "4136", null, "799", null, "-999999999", "N", "-999999999", "N", "3284", null, "1021", null, "12294", null, "1803", null, "11733", null, "1531", null, "208398", null, "4350", null, "77050", null, "1895", null, "179905", null, "7044", null, "32753", null, "2334", null, "58600", null, "4815", null, "88552", null, "4869", null, "88.4", null, "1.1", null, "48.8", null, "1.2", null, "51.2", null, "1.2", null, "55.0", null, "2.0", null, "12.6", null, "1.2", null, "3.6", null, "0.6", null, "9.1", null, "1.1", null, "32.3", null, "1.9", null, "27.1", null, "1.5", null, "20.6", null, "1.4", null, "6.4", null, "0.9", null, "1.5", null, "0.4", null, "4.9", null, "0.8", null, "0.1", null, "0.1", null, "72.9", null, "1.5", null, "34.5", null, "1.6", null, "6.2", null, "0.8", null, "2.1", null, "0.5", null, "4.2", null, "0.7", null, "32.2", null, "1.9", null, "8.9", null, "1.0", null, "91.1", null, "1.0", null, "30.5", null, "1.5", null, "69.5", null, "1.5", null, "79.7", null, "1.0", null, "12.2", null, "1.0", null, "0.6", null, "0.2", null, "1.6", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "1.2", null, "0.4", null, "4.6", null, "0.7", null, "4.4", null, "0.5", null, "78.4", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.2", null, "1.3", null, "32.6", null, "2.1", null, "49.2", null, "2.0", null, "01", "01"], ["5001900US0102", "Congressional District 2 (119th Congress), Alabama", "285324", null, "4088", null, "127154", null, "3882", null, "158170", null, "4653", null, "101806", null, "4851", null, "69051", null, "5105", null, "12852", null, "2572", null, "56199", null, "4057", null, "114467", null, "5886", null, "75130", null, "5178", null, "33463", null, "2982", null, "40642", null, "4481", null, "5706", null, "1662", null, "34936", null, "3916", null, "1025", null, "840", null, "210194", null, "6129", null, "68343", null, "4058", null, "28409", null, "2972", null, "7146", null, "1631", null, "21263", null, "2325", null, "113442", null, "5919", null, "57723", null, "4530", null, "227601", null, "5456", null, "84516", null, "4549", null, "200808", null, "5617", null, "121574", null, "3958", null, "141972", null, "3924", null, "1736", null, "695", null, "5668", null, "984", null, "-999999999", "N", "-999999999", "N", "4182", null, "968", null, "10113", null, "1637", null, "8882", null, "1220", null, "119203", null, "3633", null, "54977", null, "2808", null, "170857", null, "5267", null, "35342", null, "2957", null, "64925", null, "4890", null, "70590", null, "4183", null, "-888888888", "(X)", "-888888888", "(X)", "44.6", null, "1.3", null, "55.4", null, "1.3", null, "35.7", null, "1.6", null, "24.2", null, "1.8", null, "4.5", null, "0.9", null, "19.7", null, "1.4", null, "40.1", null, "1.9", null, "26.3", null, "1.8", null, "11.7", null, "1.0", null, "14.2", null, "1.6", null, "2.0", null, "0.6", null, "12.2", null, "1.4", null, "0.4", null, "0.3", null, "73.7", null, "1.8", null, "24.0", null, "1.4", null, "10.0", null, "1.1", null, "2.5", null, "0.6", null, "7.5", null, "0.8", null, "39.8", null, "1.9", null, "20.2", null, "1.6", null, "79.8", null, "1.6", null, "29.6", null, "1.6", null, "70.4", null, "1.6", null, "42.6", null, "1.3", null, "49.8", null, "1.2", null, "0.6", null, "0.2", null, "2.0", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "1.5", null, "0.3", null, "3.5", null, "0.6", null, "3.1", null, "0.4", null, "41.8", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "20.7", null, "1.7", null, "38.0", null, "2.5", null, "41.3", null, "2.2", null, "55107", null, "4097", null, "20964", null, "2581", null, "34143", null, "3239", null, "8203", null, "1476", null, "27721", null, "3426", null, "3954", null, "1263", null, "23767", null, "3153", null, "19183", null, "2916", null, "24325", null, "3411", null, "4299", null, "1031", null, "19598", null, "3220", null, "1614", null, "929", null, "17984", null, "3100", null, "428", null, "543", null, "30782", null, "3450", null, "3904", null, "957", null, "8123", null, "1562", null, "2340", null, "876", null, "5783", null, "1291", null, "18755", null, "2918", null, "29203", null, "3300", null, "25904", null, "3209", null, "24902", null, "2712", null, "30205", null, "3321", null, "11417", null, "1696", null, "40203", null, "3507", null, "299", null, "242", null, "40", null, "22", null, "-999999999", "N", "-999999999", "N", "1385", null, "723", null, "1763", null, "690", null, "1739", null, "647", null, "11337", null, "1689", null, "22357", null, "2492", null, "35924", null, "3589", null, "9397", null, "1881", null, "18459", null, "2748", null, "8068", null, "1685", null, "19.3", null, "1.5", null, "38.0", null, "3.7", null, "62.0", null, "3.7", null, "14.9", null, "2.6", null, "50.3", null, "4.7", null, "7.2", null, "2.2", null, "43.1", null, "4.6", null, "34.8", null, "4.5", null, "44.1", null, "5.0", null, "7.8", null, "1.9", null, "35.6", null, "4.9", null, "2.9", null, "1.6", null, "32.6", null, "4.8", null, "0.8", null, "1.0", null, "55.9", null, "5.0", null, "7.1", null, "1.7", null, "14.7", null, "2.7", null, "4.2", null, "1.6", null, "10.5", null, "2.3", null, "34.0", null, "4.6", null, "53.0", null, "4.6", null, "47.0", null, "4.6", null, "45.2", null, "4.0", null, "54.8", null, "4.0", null, "20.7", null, "2.7", null, "73.0", null, "3.2", null, "0.5", null, "0.4", null, "0.1", null, "0.1", null, "-999999999.0", "N", "-999999999.0", "N", "2.5", null, "1.3", null, "3.2", null, "1.2", null, "3.2", null, "1.2", null, "20.6", null, "2.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "26.2", null, "4.8", null, "51.4", null, "5.0", null, "22.5", null, "4.2", null, "230217", null, "5682", null, "106190", null, "3699", null, "124027", null, "5429", null, "93603", null, "4537", null, "41330", null, "3973", null, "8898", null, "2123", null, "32432", null, "3218", null, "95284", null, "5414", null, "50805", null, "4142", null, "29164", null, "2870", null, "21044", null, "3259", null, "4092", null, "1466", null, "16952", null, "2731", null, "597", null, "645", null, "179412", null, "5821", null, "64439", null, "3978", null, "20286", null, "2501", null, "4806", null, "1292", null, "15480", null, "2039", null, "94687", null, "5310", null, "28520", null, "3587", null, "201697", null, "5838", null, "59614", null, "3823", null, "170603", null, "5956", null, "110157", null, "3933", null, "101769", null, "4734", null, "1437", null, "696", null, "5628", null, "982", null, "-999999999", "N", "-999999999", "N", "2797", null, "921", null, "8350", null, "1606", null, "7143", null, "1255", null, "107866", null, "3524", null, "64358", null, "3841", null, "134933", null, "5383", null, "25945", null, "2416", null, "46466", null, "3654", null, "62522", null, "4161", null, "80.7", null, "1.5", null, "46.1", null, "1.6", null, "53.9", null, "1.6", null, "40.7", null, "1.7", null, "18.0", null, "1.7", null, "3.9", null, "0.9", null, "14.1", null, "1.3", null, "41.4", null, "2.0", null, "22.1", null, "1.7", null, "12.7", null, "1.2", null, "9.1", null, "1.4", null, "1.8", null, "0.6", null, "7.4", null, "1.2", null, "0.3", null, "0.3", null, "77.9", null, "1.7", null, "28.0", null, "1.6", null, "8.8", null, "1.1", null, "2.1", null, "0.6", null, "6.7", null, "0.9", null, "41.1", null, "2.0", null, "12.4", null, "1.5", null, "87.6", null, "1.5", null, "25.9", null, "1.6", null, "74.1", null, "1.6", null, "47.8", null, "1.7", null, "44.2", null, "1.5", null, "0.6", null, "0.3", null, "2.4", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "1.2", null, "0.4", null, "3.6", null, "0.7", null, "3.1", null, "0.5", null, "46.9", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "19.2", null, "1.7", null, "34.4", null, "2.3", null, "46.3", null, "2.4", null, "01", "02"], ["5001900US0103", "Congressional District 3 (119th Congress), Alabama", "292466", null, "4733", null, "124823", null, "2957", null, "167643", null, "4569", null, "136006", null, "5076", null, "56316", null, "3633", null, "14128", null, "2270", null, "42188", null, "2818", null, "100144", null, "4524", null, "82251", null, "3620", null, "47352", null, "2939", null, "34481", null, "2895", null, "8326", null, "1804", null, "26155", null, "2430", null, "418", null, "354", null, "210215", null, "4719", null, "88654", null, "4167", null, "21835", null, "2727", null, "5802", null, "1387", null, "16033", null, "1979", null, "99726", null, "4526", null, "52355", null, "3559", null, "240111", null, "5427", null, "98659", null, "4871", null, "193807", null, "5588", null, "212341", null, "3993", null, "58763", null, "2222", null, "1808", null, "780", null, "4160", null, "1023", null, "-999999999", "N", "-999999999", "N", "4858", null, "1104", null, "10497", null, "1904", null, "8293", null, "1290", null, "211065", null, "3864", null, "62191", null, "1717", null, "192322", null, "5450", null, "37571", null, "2713", null, "65000", null, "3818", null, "89751", null, "4166", null, "-888888888", "(X)", "-888888888", "(X)", "42.7", null, "1.0", null, "57.3", null, "1.0", null, "46.5", null, "1.6", null, "19.3", null, "1.2", null, "4.8", null, "0.8", null, "14.4", null, "0.9", null, "34.2", null, "1.5", null, "28.1", null, "1.1", null, "16.2", null, "1.0", null, "11.8", null, "1.0", null, "2.8", null, "0.6", null, "8.9", null, "0.8", null, "0.1", null, "0.1", null, "71.9", null, "1.1", null, "30.3", null, "1.4", null, "7.5", null, "0.9", null, "2.0", null, "0.5", null, "5.5", null, "0.7", null, "34.1", null, "1.5", null, "17.9", null, "1.2", null, "82.1", null, "1.2", null, "33.7", null, "1.6", null, "66.3", null, "1.6", null, "72.6", null, "0.9", null, "20.1", null, "0.7", null, "0.6", null, "0.3", null, "1.4", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "1.7", null, "0.4", null, "3.6", null, "0.6", null, "2.8", null, "0.4", null, "72.2", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "19.5", null, "1.3", null, "33.8", null, "1.8", null, "46.7", null, "1.7", null, "36374", null, "2596", null, "14205", null, "1801", null, "22169", null, "2543", null, "6388", null, "1172", null, "18242", null, "2296", null, "1917", null, "762", null, "16325", null, "2170", null, "11744", null, "1789", null, "18325", null, "2274", null, "4115", null, "1065", null, "14140", null, "2174", null, "1521", null, "642", null, "12619", null, "2035", null, "70", null, "82", null, "18049", null, "1934", null, "2273", null, "599", null, "4102", null, "997", null, "396", null, "315", null, "3706", null, "960", null, "11674", null, "1785", null, "20104", null, "2463", null, "16270", null, "2104", null, "18458", null, "2406", null, "17916", null, "2133", null, "18754", null, "1987", null, "14363", null, "1985", null, "260", null, "388", null, "216", null, "279", null, "-999999999", "N", "-999999999", "N", "1183", null, "749", null, "1559", null, "647", null, "1671", null, "743", null, "18514", null, "1988", null, "22638", null, "2442", null, "24630", null, "2284", null, "8054", null, "1760", null, "11369", null, "1677", null, "5207", null, "1069", null, "12.4", null, "0.9", null, "39.1", null, "4.7", null, "60.9", null, "4.7", null, "17.6", null, "3.2", null, "50.2", null, "4.9", null, "5.3", null, "2.1", null, "44.9", null, "4.5", null, "32.3", null, "4.2", null, "50.4", null, "4.6", null, "11.3", null, "2.8", null, "38.9", null, "4.9", null, "4.2", null, "1.8", null, "34.7", null, "4.6", null, "0.2", null, "0.2", null, "49.6", null, "4.6", null, "6.2", null, "1.7", null, "11.3", null, "2.7", null, "1.1", null, "0.9", null, "10.2", null, "2.6", null, "32.1", null, "4.2", null, "55.3", null, "5.1", null, "44.7", null, "5.1", null, "50.7", null, "5.1", null, "49.3", null, "5.1", null, "51.6", null, "4.7", null, "39.5", null, "4.3", null, "0.7", null, "1.1", null, "0.6", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "3.3", null, "2.0", null, "4.3", null, "1.8", null, "4.6", null, "2.0", null, "50.9", null, "4.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "32.7", null, "6.0", null, "46.2", null, "5.3", null, "21.1", null, "4.3", null, "256092", null, "5034", null, "110618", null, "3106", null, "145474", null, "4862", null, "129618", null, "4941", null, "38074", null, "3396", null, "12211", null, "2007", null, "25863", null, "2484", null, "88400", null, "4441", null, "63926", null, "4051", null, "43237", null, "2889", null, "20341", null, "2854", null, "6805", null, "1636", null, "13536", null, "2103", null, "348", null, "345", null, "192166", null, "4791", null, "86381", null, "4173", null, "17733", null, "2473", null, "5406", null, "1291", null, "12327", null, "1936", null, "88052", null, "4446", null, "32251", null, "2933", null, "223841", null, "5165", null, "80201", null, "4434", null, "175891", null, "5299", null, "193587", null, "3809", null, "44400", null, "2306", null, "1548", null, "676", null, "3944", null, "990", null, "-999999999", "N", "-999999999", "N", "3675", null, "1010", null, "8938", null, "1825", null, "6622", null, "1246", null, "192551", null, "3669", null, "69056", null, "2659", null, "167692", null, "5554", null, "29517", null, "2248", null, "53631", null, "3853", null, "84544", null, "4214", null, "87.6", null, "0.9", null, "43.2", null, "1.2", null, "56.8", null, "1.2", null, "50.6", null, "1.8", null, "14.9", null, "1.2", null, "4.8", null, "0.8", null, "10.1", null, "0.9", null, "34.5", null, "1.6", null, "25.0", null, "1.4", null, "16.9", null, "1.1", null, "7.9", null, "1.1", null, "2.7", null, "0.6", null, "5.3", null, "0.8", null, "0.1", null, "0.1", null, "75.0", null, "1.4", null, "33.7", null, "1.6", null, "6.9", null, "0.9", null, "2.1", null, "0.5", null, "4.8", null, "0.7", null, "34.4", null, "1.6", null, "12.6", null, "1.1", null, "87.4", null, "1.1", null, "31.3", null, "1.6", null, "68.7", null, "1.6", null, "75.6", null, "0.9", null, "17.3", null, "0.8", null, "0.6", null, "0.3", null, "1.5", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "1.4", null, "0.4", null, "3.5", null, "0.7", null, "2.6", null, "0.5", null, "75.2", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.6", null, "1.2", null, "32.0", null, "2.0", null, "50.4", null, "1.9", null, "01", "03"], ["5001900US0104", "Congressional District 4 (119th Congress), Alabama", "289212", null, "4746", null, "131512", null, "3586", null, "157700", null, "4194", null, "148544", null, "5276", null, "48954", null, "3883", null, "14477", null, "2260", null, "34477", null, "3040", null, "91714", null, "4541", null, "87264", null, "4353", null, "55940", null, "3970", null, "30674", null, "3133", null, "8321", null, "1731", null, "22353", null, "2643", null, "650", null, "297", null, "201948", null, "5045", null, "92604", null, "3930", null, "18280", null, "2348", null, "6156", null, "1255", null, "12124", null, "1888", null, "91064", null, "4556", null, "46972", null, "3330", null, "242240", null, "5544", null, "105136", null, "4866", null, "184076", null, "6231", null, "245878", null, "4405", null, "19255", null, "1972", null, "912", null, "403", null, "1866", null, "577", null, "-999999999", "N", "-999999999", "N", "9098", null, "1762", null, "12166", null, "2002", null, "15781", null, "1484", null, "242923", null, "4332", null, "63203", null, "2303", null, "197498", null, "5750", null, "38674", null, "2837", null, "65831", null, "4273", null, "92993", null, "4021", null, "-888888888", "(X)", "-888888888", "(X)", "45.5", null, "1.1", null, "54.5", null, "1.1", null, "51.4", null, "1.6", null, "16.9", null, "1.3", null, "5.0", null, "0.8", null, "11.9", null, "1.0", null, "31.7", null, "1.5", null, "30.2", null, "1.4", null, "19.3", null, "1.3", null, "10.6", null, "1.1", null, "2.9", null, "0.6", null, "7.7", null, "0.9", null, "0.2", null, "0.1", null, "69.8", null, "1.4", null, "32.0", null, "1.2", null, "6.3", null, "0.8", null, "2.1", null, "0.4", null, "4.2", null, "0.6", null, "31.5", null, "1.5", null, "16.2", null, "1.2", null, "83.8", null, "1.2", null, "36.4", null, "1.7", null, "63.6", null, "1.7", null, "85.0", null, "0.7", null, "6.7", null, "0.7", null, "0.3", null, "0.1", null, "0.6", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "3.1", null, "0.6", null, "4.2", null, "0.7", null, "5.5", null, "0.5", null, "84.0", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "19.6", null, "1.3", null, "33.3", null, "1.7", null, "47.1", null, "1.8", null, "36500", null, "3411", null, "12922", null, "1778", null, "23578", null, "2753", null, "8219", null, "1369", null, "16215", null, "2536", null, "3742", null, "1109", null, "12473", null, "2249", null, "12066", null, "2232", null, "17377", null, "2586", null, "4997", null, "1123", null, "12176", null, "2357", null, "2129", null, "899", null, "10047", null, "2112", null, "204", null, "171", null, "19123", null, "2778", null, "3222", null, "1028", null, "4039", null, "1111", null, "1613", null, "621", null, "2426", null, "895", null, "11862", null, "2210", null, "20185", null, "2625", null, "16315", null, "1849", null, "19875", null, "2369", null, "16625", null, "2184", null, "27491", null, "2842", null, "4710", null, "1352", null, "77", null, "98", null, "0", null, "213", null, "-999999999", "N", "-999999999", "N", "1640", null, "893", null, "2582", null, "1107", null, "2213", null, "1016", null, "27329", null, "2838", null, "24324", null, "2338", null, "24434", null, "2791", null, "6425", null, "1326", null, "11387", null, "1995", null, "6622", null, "1346", null, "12.6", null, "1.2", null, "35.4", null, "4.0", null, "64.6", null, "4.0", null, "22.5", null, "3.7", null, "44.4", null, "5.2", null, "10.3", null, "2.8", null, "34.2", null, "5.1", null, "33.1", null, "5.0", null, "47.6", null, "5.7", null, "13.7", null, "3.1", null, "33.4", null, "5.3", null, "5.8", null, "2.4", null, "27.5", null, "5.0", null, "0.6", null, "0.5", null, "52.4", null, "5.7", null, "8.8", null, "2.8", null, "11.1", null, "2.9", null, "4.4", null, "1.7", null, "6.6", null, "2.4", null, "32.5", null, "5.0", null, "55.3", null, "4.0", null, "44.7", null, "4.0", null, "54.5", null, "4.2", null, "45.5", null, "4.2", null, "75.3", null, "4.3", null, "12.9", null, "3.4", null, "0.2", null, "0.3", null, "0.0", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "4.5", null, "2.4", null, "7.1", null, "2.9", null, "6.1", null, "2.7", null, "74.9", null, "4.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "26.3", null, "4.7", null, "46.6", null, "5.5", null, "27.1", null, "4.8", null, "252712", null, "5528", null, "118590", null, "3617", null, "134122", null, "4600", null, "140325", null, "5242", null, "32739", null, "3173", null, "10735", null, "1934", null, "22004", null, "2344", null, "79648", null, "4257", null, "69887", null, "4024", null, "50943", null, "3892", null, "18498", null, "2378", null, "6192", null, "1534", null, "12306", null, "1787", null, "446", null, "264", null, "182825", null, "4856", null, "89382", null, "3872", null, "14241", null, "1931", null, "4543", null, "1068", null, "9698", null, "1580", null, "79202", null, "4297", null, "26787", null, "2824", null, "225925", null, "5472", null, "85261", null, "4619", null, "167451", null, "6305", null, "218387", null, "4448", null, "14545", null, "2011", null, "835", null, "414", null, "1866", null, "577", null, "-999999999", "N", "-999999999", "N", "7458", null, "1759", null, "9584", null, "1672", null, "13568", null, "1792", null, "215594", null, "4305", null, "70827", null, "2677", null, "173064", null, "5246", null, "32249", null, "2395", null, "54444", null, "3958", null, "86371", null, "4191", null, "87.4", null, "1.2", null, "46.9", null, "1.2", null, "53.1", null, "1.2", null, "55.5", null, "1.8", null, "13.0", null, "1.2", null, "4.2", null, "0.8", null, "8.7", null, "0.9", null, "31.5", null, "1.5", null, "27.7", null, "1.4", null, "20.2", null, "1.4", null, "7.3", null, "0.9", null, "2.5", null, "0.6", null, "4.9", null, "0.7", null, "0.2", null, "0.1", null, "72.3", null, "1.4", null, "35.4", null, "1.5", null, "5.6", null, "0.8", null, "1.8", null, "0.4", null, "3.8", null, "0.6", null, "31.3", null, "1.5", null, "10.6", null, "1.1", null, "89.4", null, "1.1", null, "33.7", null, "1.8", null, "66.3", null, "1.8", null, "86.4", null, "1.0", null, "5.8", null, "0.8", null, "0.3", null, "0.2", null, "0.7", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "3.0", null, "0.7", null, "3.8", null, "0.7", null, "5.4", null, "0.7", null, "85.3", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.6", null, "1.4", null, "31.5", null, "1.9", null, "49.9", null, "2.0", null, "01", "04"], ["5001900US0105", "Congressional District 5 (119th Congress), Alabama", "307633", null, "3616", null, "127360", null, "3274", null, "180273", null, "4197", null, "148962", null, "4877", null, "46684", null, "3671", null, "13308", null, "2371", null, "33376", null, "2891", null, "111987", null, "4184", null, "81355", null, "4086", null, "53552", null, "3618", null, "27417", null, "3221", null, "7205", null, "1899", null, "20212", null, "2613", null, "386", null, "310", null, "226278", null, "4681", null, "95410", null, "3808", null, "19267", null, "2389", null, "6103", null, "1318", null, "13164", null, "2146", null, "111601", null, "4201", null, "39614", null, "3972", null, "268019", null, "5510", null, "88560", null, "5009", null, "219073", null, "5762", null, "220346", null, "3626", null, "54800", null, "3250", null, "1655", null, "717", null, "-999999999", "N", "-999999999", "N", "-999999999", "N", "-999999999", "N", "6435", null, "1464", null, "19237", null, "2439", null, "15853", null, "1573", null, "217116", null, "3628", null, "80140", null, "2907", null, "195646", null, "5198", null, "32805", null, "2839", null, "63745", null, "4501", null, "99096", null, "4588", null, "-888888888", "(X)", "-888888888", "(X)", "41.4", null, "1.0", null, "58.6", null, "1.0", null, "48.4", null, "1.4", null, "15.2", null, "1.2", null, "4.3", null, "0.8", null, "10.8", null, "0.9", null, "36.4", null, "1.4", null, "26.4", null, "1.3", null, "17.4", null, "1.2", null, "8.9", null, "1.0", null, "2.3", null, "0.6", null, "6.6", null, "0.8", null, "0.1", null, "0.1", null, "73.6", null, "1.3", null, "31.0", null, "1.1", null, "6.3", null, "0.8", null, "2.0", null, "0.4", null, "4.3", null, "0.7", null, "36.3", null, "1.4", null, "12.9", null, "1.3", null, "87.1", null, "1.3", null, "28.8", null, "1.6", null, "71.2", null, "1.6", null, "71.6", null, "1.0", null, "17.8", null, "1.0", null, "0.5", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "2.1", null, "0.5", null, "6.3", null, "0.8", null, "5.2", null, "0.5", null, "70.6", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.8", null, "1.4", null, "32.6", null, "2.0", null, "50.7", null, "2.1", null, "28867", null, "3466", null, "11333", null, "2057", null, "17534", null, "2794", null, "6059", null, "1349", null, "12191", null, "2114", null, "1784", null, "879", null, "10407", null, "2079", null, "10617", null, "2246", null, "12584", null, "2145", null, "3700", null, "1093", null, "8715", null, "1911", null, "680", null, "503", null, "8035", null, "2020", null, "169", null, "294", null, "16283", null, "2668", null, "2359", null, "799", null, "3476", null, "1175", null, "1104", null, "624", null, "2372", null, "1103", null, "10448", null, "2232", null, "15690", null, "2308", null, "13177", null, "2143", null, "15909", null, "2679", null, "12958", null, "2359", null, "17111", null, "2713", null, "8705", null, "1925", null, "428", null, "474", null, "-999999999", "N", "-999999999", "N", "-999999999", "N", "-999999999", "N", "469", null, "479", null, "1808", null, "657", null, "2527", null, "1214", null, "16647", null, "2687", null, "25424", null, "3601", null, "18250", null, "2513", null, "4168", null, "1177", null, "8845", null, "1574", null, "5237", null, "1486", null, "9.4", null, "1.1", null, "39.3", null, "5.8", null, "60.7", null, "5.8", null, "21.0", null, "4.0", null, "42.2", null, "6.1", null, "6.2", null, "2.9", null, "36.1", null, "6.4", null, "36.8", null, "5.8", null, "43.6", null, "5.8", null, "12.8", null, "3.4", null, "30.2", null, "5.9", null, "2.4", null, "1.7", null, "27.8", null, "6.4", null, "0.6", null, "1.0", null, "56.4", null, "5.8", null, "8.2", null, "2.7", null, "12.0", null, "3.9", null, "3.8", null, "2.1", null, "8.2", null, "3.8", null, "36.2", null, "5.8", null, "54.4", null, "4.9", null, "45.6", null, "4.9", null, "55.1", null, "6.4", null, "44.9", null, "6.4", null, "59.3", null, "5.5", null, "30.2", null, "5.7", null, "1.5", null, "1.6", null, "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "1.6", null, "1.6", null, "6.3", null, "2.4", null, "8.8", null, "3.9", null, "57.7", null, "5.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "22.8", null, "5.7", null, "48.5", null, "6.2", null, "28.7", null, "6.8", null, "278766", null, "4806", null, "116027", null, "3025", null, "162739", null, "4724", null, "142903", null, "4842", null, "34493", null, "3170", null, "11524", null, "2301", null, "22969", null, "2330", null, "101370", null, "4385", null, "68771", null, "3889", null, "49852", null, "3301", null, "18702", null, "2697", null, "6525", null, "1894", null, "12177", null, "1839", null, "217", null, "173", null, "209995", null, "5136", null, "93051", null, "3866", null, "15791", null, "1981", null, "4999", null, "1135", null, "10792", null, "1730", null, "101153", null, "4385", null, "23924", null, "3209", null, "254842", null, "5922", null, "72651", null, "4428", null, "206115", null, "6296", null, "203235", null, "4379", null, "46095", null, "3433", null, "1227", null, "535", null, "-999999999", "N", "-999999999", "N", "-999999999", "N", "-999999999", "N", "5966", null, "1427", null, "17429", null, "2407", null, "13326", null, "1813", null, "200469", null, "4325", null, "86067", null, "2343", null, "177396", null, "5295", null, "28637", null, "2431", null, "54900", null, "4099", null, "93859", null, "4426", null, "90.6", null, "1.1", null, "41.6", null, "1.1", null, "58.4", null, "1.1", null, "51.3", null, "1.4", null, "12.4", null, "1.1", null, "4.1", null, "0.8", null, "8.2", null, "0.8", null, "36.4", null, "1.5", null, "24.7", null, "1.3", null, "17.9", null, "1.1", null, "6.7", null, "1.0", null, "2.3", null, "0.7", null, "4.4", null, "0.7", null, "0.1", null, "0.1", null, "75.3", null, "1.3", null, "33.4", null, "1.2", null, "5.7", null, "0.7", null, "1.8", null, "0.4", null, "3.9", null, "0.6", null, "36.3", null, "1.5", null, "8.6", null, "1.2", null, "91.4", null, "1.2", null, "26.1", null, "1.6", null, "73.9", null, "1.6", null, "72.9", null, "1.1", null, "16.5", null, "1.2", null, "0.4", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "2.1", null, "0.5", null, "6.3", null, "0.8", null, "4.8", null, "0.6", null, "71.9", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.1", null, "1.3", null, "30.9", null, "2.0", null, "52.9", null, "2.0", null, "01", "05"], ["5001900US0106", "Congressional District 6 (119th Congress), Alabama", "284751", null, "4418", null, "114358", null, "4030", null, "170393", null, "5033", null, "154736", null, "5060", null, "42769", null, "3801", null, "12160", null, "1954", null, "30609", null, "3465", null, "87246", null, "4394", null, "92488", null, "4054", null, "65561", null, "3453", null, "26284", null, "3157", null, "6592", null, "1666", null, "19692", null, "2791", null, "643", null, "612", null, "192263", null, "5017", null, "89175", null, "4029", null, "16485", null, "2159", null, "5568", null, "1265", null, "10917", null, "1821", null, "86603", null, "4446", null, "28607", null, "3108", null, "256144", null, "5235", null, "80298", null, "4422", null, "204453", null, "5391", null, "210741", null, "4070", null, "52403", null, "3214", null, "853", null, "380", null, "4601", null, "1284", null, "-999999999", "N", "-999999999", "N", "2696", null, "818", null, "12916", null, "2590", null, "10971", null, "1648", null, "206967", null, "4065", null, "86712", null, "2830", null, "197505", null, "5157", null, "28890", null, "2809", null, "59559", null, "3939", null, "109056", null, "4575", null, "-888888888", "(X)", "-888888888", "(X)", "40.2", null, "1.4", null, "59.8", null, "1.4", null, "54.3", null, "1.6", null, "15.0", null, "1.3", null, "4.3", null, "0.7", null, "10.7", null, "1.2", null, "30.6", null, "1.5", null, "32.5", null, "1.4", null, "23.0", null, "1.2", null, "9.2", null, "1.1", null, "2.3", null, "0.6", null, "6.9", null, "1.0", null, "0.2", null, "0.2", null, "67.5", null, "1.4", null, "31.3", null, "1.3", null, "5.8", null, "0.8", null, "2.0", null, "0.4", null, "3.8", null, "0.6", null, "30.4", null, "1.5", null, "10.0", null, "1.1", null, "90.0", null, "1.1", null, "28.2", null, "1.5", null, "71.8", null, "1.5", null, "74.0", null, "1.2", null, "18.4", null, "1.1", null, "0.3", null, "0.1", null, "1.6", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "0.9", null, "0.3", null, "4.5", null, "0.9", null, "3.9", null, "0.6", null, "72.7", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.6", null, "1.4", null, "30.2", null, "1.8", null, "55.2", null, "1.9", null, "22024", null, "2855", null, "6774", null, "1464", null, "15250", null, "2510", null, "4205", null, "930", null, "11157", null, "2208", null, "2389", null, "923", null, "8768", null, "1823", null, "6662", null, "1264", null, "12136", null, "2085", null, "3186", null, "893", null, "8446", null, "1784", null, "1476", null, "824", null, "6970", null, "1508", null, "504", null, "602", null, "9888", null, "1860", null, "1019", null, "488", null, "2711", null, "1079", null, "913", null, "548", null, "1798", null, "821", null, "6158", null, "1289", null, "10365", null, "1597", null, "11659", null, "2198", null, "10382", null, "1812", null, "11642", null, "2100", null, "11428", null, "1730", null, "8596", null, "1851", null, "92", null, "108", null, "148", null, "218", null, "-999999999", "N", "-999999999", "N", "127", null, "174", null, "1555", null, "845", null, "1014", null, "648", null, "11016", null, "1660", null, "25981", null, "4110", null, "15362", null, "2396", null, "3635", null, "1040", null, "7083", null, "1394", null, "4644", null, "1341", null, "7.7", null, "1.0", null, "30.8", null, "5.9", null, "69.2", null, "5.9", null, "19.1", null, "4.2", null, "50.7", null, "5.7", null, "10.8", null, "3.7", null, "39.8", null, "5.5", null, "30.2", null, "4.9", null, "55.1", null, "6.2", null, "14.5", null, "4.0", null, "38.3", null, "5.6", null, "6.7", null, "3.5", null, "31.6", null, "5.2", null, "2.3", null, "2.8", null, "44.9", null, "6.2", null, "4.6", null, "2.2", null, "12.3", null, "4.3", null, "4.1", null, "2.4", null, "8.2", null, "3.4", null, "28.0", null, "5.1", null, "47.1", null, "5.7", null, "52.9", null, "5.7", null, "47.1", null, "6.0", null, "52.9", null, "6.0", null, "51.9", null, "5.9", null, "39.0", null, "6.0", null, "0.4", null, "0.5", null, "0.7", null, "1.0", null, "-999999999.0", "N", "-999999999.0", "N", "0.6", null, "0.8", null, "7.1", null, "3.7", null, "4.6", null, "2.8", null, "50.0", null, "5.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "23.7", null, "5.6", null, "46.1", null, "7.0", null, "30.2", null, "6.6", null, "262727", null, "5316", null, "107584", null, "3781", null, "155143", null, "5539", null, "150531", null, "5094", null, "31612", null, "3239", null, "9771", null, "1764", null, "21841", null, "2852", null, "80584", null, "4479", null, "80352", null, "4010", null, "62375", null, "3550", null, "17838", null, "2655", null, "5116", null, "1474", null, "12722", null, "2372", null, "139", null, "164", null, "182375", null, "5087", null, "88156", null, "3957", null, "13774", null, "1977", null, "4655", null, "1201", null, "9119", null, "1613", null, "80445", null, "4506", null, "18242", null, "2675", null, "244485", null, "5409", null, "69916", null, "4324", null, "192811", null, "5460", null, "199313", null, "4159", null, "43807", null, "3655", null, "761", null, "380", null, "4453", null, "1278", null, "-999999999", "N", "-999999999", "N", "2569", null, "838", null, "11361", null, "2381", null, "9957", null, "1580", null, "195951", null, "4253", null, "91783", null, "2941", null, "182143", null, "5372", null, "25255", null, "2495", null, "52476", null, "3611", null, "104412", null, "4687", null, "92.3", null, "1.0", null, "40.9", null, "1.4", null, "59.1", null, "1.4", null, "57.3", null, "1.6", null, "12.0", null, "1.2", null, "3.7", null, "0.7", null, "8.3", null, "1.1", null, "30.7", null, "1.6", null, "30.6", null, "1.4", null, "23.7", null, "1.2", null, "6.8", null, "1.0", null, "1.9", null, "0.6", null, "4.8", null, "0.9", null, "0.1", null, "0.1", null, "69.4", null, "1.4", null, "33.6", null, "1.4", null, "5.2", null, "0.7", null, "1.8", null, "0.5", null, "3.5", null, "0.6", null, "30.6", null, "1.6", null, "6.9", null, "1.0", null, "93.1", null, "1.0", null, "26.6", null, "1.5", null, "73.4", null, "1.5", null, "75.9", null, "1.3", null, "16.7", null, "1.3", null, "0.3", null, "0.1", null, "1.7", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "1.0", null, "0.3", null, "4.3", null, "0.9", null, "3.8", null, "0.6", null, "74.6", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.9", null, "1.3", null, "28.8", null, "1.7", null, "57.3", null, "2.0", null, "01", "06"], ["5001900US0107", "Congressional District 7 (119th Congress), Alabama", "299506", null, "5241", null, "126573", null, "3380", null, "172933", null, "5041", null, "100513", null, "4643", null, "70786", null, "4657", null, "14700", null, "1882", null, "56086", null, "4385", null, "128207", null, "5137", null, "74181", null, "4814", null, "33905", null, "3175", null, "40032", null, "3774", null, "5237", null, "1223", null, "34795", null, "3628", null, "244", null, "245", null, "225325", null, "5540", null, "66608", null, "3601", null, "30754", null, "3010", null, "9463", null, "1721", null, "21291", null, "2592", null, "127963", null, "5184", null, "59342", null, "4189", null, "240164", null, "5970", null, "95854", null, "4473", null, "203652", null, "5401", null, "117346", null, "4286", null, "158996", null, "4747", null, "695", null, "442", null, "3616", null, "864", null, "-999999999", "N", "-999999999", "N", "3925", null, "1161", null, "14621", null, "2485", null, "9737", null, "1312", null, "116130", null, "4080", null, "54635", null, "2161", null, "171299", null, "6207", null, "33250", null, "2590", null, "58535", null, "3823", null, "79514", null, "4380", null, "-888888888", "(X)", "-888888888", "(X)", "42.3", null, "1.1", null, "57.7", null, "1.1", null, "33.6", null, "1.4", null, "23.6", null, "1.5", null, "4.9", null, "0.6", null, "18.7", null, "1.4", null, "42.8", null, "1.7", null, "24.8", null, "1.5", null, "11.3", null, "1.0", null, "13.4", null, "1.2", null, "1.7", null, "0.4", null, "11.6", null, "1.1", null, "0.1", null, "0.1", null, "75.2", null, "1.5", null, "22.2", null, "1.1", null, "10.3", null, "1.0", null, "3.2", null, "0.6", null, "7.1", null, "0.9", null, "42.7", null, "1.7", null, "19.8", null, "1.4", null, "80.2", null, "1.4", null, "32.0", null, "1.4", null, "68.0", null, "1.4", null, "39.2", null, "1.1", null, "53.1", null, "1.3", null, "0.2", null, "0.1", null, "1.2", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "1.3", null, "0.4", null, "4.9", null, "0.8", null, "3.3", null, "0.4", null, "38.8", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "19.4", null, "1.3", null, "34.2", null, "1.9", null, "46.4", null, "1.9", null, "55161", null, "4139", null, "23498", null, "2440", null, "31663", null, "3980", null, "8633", null, "1849", null, "27127", null, "3863", null, "4259", null, "1509", null, "22868", null, "3474", null, "19401", null, "2458", null, "23894", null, "3543", null, "4962", null, "1402", null, "18868", null, "3549", null, "1502", null, "864", null, "17366", null, "3304", null, "64", null, "96", null, "31267", null, "2818", null, "3671", null, "960", null, "8259", null, "1973", null, "2757", null, "1556", null, "5502", null, "1248", null, "19337", null, "2447", null, "27936", null, "3083", null, "27225", null, "3330", null, "25441", null, "2412", null, "29720", null, "4130", null, "8287", null, "1413", null, "42639", null, "3732", null, "243", null, "301", null, "126", null, "216", null, "-999999999", "N", "-999999999", "N", "839", null, "686", null, "3027", null, "1005", null, "1467", null, "636", null, "8287", null, "1413", null, "23496", null, "3122", null, "35760", null, "4023", null, "9706", null, "1799", null, "14703", null, "2777", null, "11351", null, "2524", null, "18.4", null, "1.4", null, "42.6", null, "4.4", null, "57.4", null, "4.4", null, "15.7", null, "3.4", null, "49.2", null, "4.8", null, "7.7", null, "2.5", null, "41.5", null, "4.8", null, "35.2", null, "4.3", null, "43.3", null, "4.5", null, "9.0", null, "2.5", null, "34.2", null, "5.1", null, "2.7", null, "1.5", null, "31.5", null, "4.7", null, "0.1", null, "0.2", null, "56.7", null, "4.5", null, "6.7", null, "1.8", null, "15.0", null, "3.4", null, "5.0", null, "2.7", null, "10.0", null, "2.3", null, "35.1", null, "4.3", null, "50.6", null, "4.5", null, "49.4", null, "4.5", null, "46.1", null, "4.7", null, "53.9", null, "4.7", null, "15.0", null, "2.4", null, "77.3", null, "2.9", null, "0.4", null, "0.5", null, "0.2", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "1.5", null, "1.2", null, "5.5", null, "1.8", null, "2.7", null, "1.1", null, "15.0", null, "2.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "27.1", null, "4.9", null, "41.1", null, "5.5", null, "31.7", null, "6.0", null, "244345", null, "5954", null, "103075", null, "3660", null, "141270", null, "5008", null, "91880", null, "4317", null, "43659", null, "3733", null, "10441", null, "1685", null, "33218", null, "3594", null, "108806", null, "4701", null, "50287", null, "3643", null, "28943", null, "2949", null, "21164", null, "2702", null, "3735", null, "1114", null, "17429", null, "2481", null, "180", null, "227", null, "194058", null, "5734", null, "62937", null, "3589", null, "22495", null, "2646", null, "6706", null, "1313", null, "15789", null, "2402", null, "108626", null, "4746", null, "31406", null, "3505", null, "212939", null, "6393", null, "70413", null, "4315", null, "173932", null, "4897", null, "109059", null, "3949", null, "116357", null, "4928", null, "452", null, "306", null, "3490", null, "853", null, "-999999999", "N", "-999999999", "N", "3086", null, "864", null, "11594", null, "2325", null, "8270", null, "1278", null, "107843", null, "3742", null, "62255", null, "2126", null, "135539", null, "5180", null, "23544", null, "2060", null, "43832", null, "3187", null, "68163", null, "3890", null, "81.6", null, "1.4", null, "42.2", null, "1.3", null, "57.8", null, "1.3", null, "37.6", null, "1.5", null, "17.9", null, "1.4", null, "4.3", null, "0.7", null, "13.6", null, "1.4", null, "44.5", null, "1.6", null, "20.6", null, "1.4", null, "11.8", null, "1.2", null, "8.7", null, "1.0", null, "1.5", null, "0.5", null, "7.1", null, "1.0", null, "0.1", null, "0.1", null, "79.4", null, "1.4", null, "25.8", null, "1.3", null, "9.2", null, "1.1", null, "2.7", null, "0.5", null, "6.5", null, "1.0", null, "44.5", null, "1.6", null, "12.9", null, "1.4", null, "87.1", null, "1.4", null, "28.8", null, "1.5", null, "71.2", null, "1.5", null, "44.6", null, "1.3", null, "47.6", null, "1.5", null, "0.2", null, "0.1", null, "1.4", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "1.3", null, "0.4", null, "4.7", null, "0.9", null, "3.4", null, "0.5", null, "44.1", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.4", null, "1.5", null, "32.3", null, "1.9", null, "50.3", null, "2.0", null, "01", "07"], ["5001900US0200", "Congressional District (at Large) (119th Congress), Alaska", "274045", null, "3774", null, "105193", null, "3055", null, "168852", null, "3901", null, "135772", null, "4626", null, "41022", null, "2929", null, "14930", null, "2018", null, "26092", null, "2233", null, "97251", null, "4954", null, "86555", null, "4054", null, "57477", null, "2892", null, "27425", null, "2840", null, "9723", null, "1754", null, "17702", null, "2128", null, "1653", null, "871", null, "187490", null, "4756", null, "78295", null, "4131", null, "13597", null, "2002", null, "5207", null, "1006", null, "8390", null, "1606", null, "95598", null, "4911", null, "23781", null, "2259", null, "250264", null, "4075", null, "77105", null, "4008", null, "196940", null, "4619", null, "184780", null, "3647", null, "7615", null, "1584", null, "31807", null, "1908", null, "12611", null, "1504", null, "3295", null, "641", null, "5385", null, "1319", null, "28552", null, "2312", null, "16508", null, "1654", null, "180390", null, "3646", null, "95665", null, "3278", null, "176794", null, "4478", null, "23243", null, "1828", null, "55388", null, "3627", null, "98163", null, "3281", null, "-888888888", "(X)", "-888888888", "(X)", "38.4", null, "1.0", null, "61.6", null, "1.0", null, "49.5", null, "1.6", null, "15.0", null, "1.1", null, "5.4", null, "0.7", null, "9.5", null, "0.8", null, "35.5", null, "1.6", null, "31.6", null, "1.4", null, "21.0", null, "1.1", null, "10.0", null, "1.0", null, "3.5", null, "0.6", null, "6.5", null, "0.8", null, "0.6", null, "0.3", null, "68.4", null, "1.4", null, "28.6", null, "1.5", null, "5.0", null, "0.8", null, "1.9", null, "0.4", null, "3.1", null, "0.6", null, "34.9", null, "1.6", null, "8.7", null, "0.8", null, "91.3", null, "0.8", null, "28.1", null, "1.4", null, "71.9", null, "1.4", null, "67.4", null, "1.1", null, "2.8", null, "0.6", null, "11.6", null, "0.6", null, "4.6", null, "0.5", null, "1.2", null, "0.2", null, "2.0", null, "0.5", null, "10.4", null, "0.9", null, "6.0", null, "0.6", null, "65.8", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.1", null, "1.0", null, "31.3", null, "1.7", null, "55.5", null, "1.6", null, "28394", null, "2560", null, "11886", null, "1607", null, "16508", null, "2110", null, "6068", null, "1085", null, "10921", null, "1725", null, "3743", null, "942", null, "7178", null, "1305", null, "11405", null, "1871", null, "13040", null, "1839", null, "4463", null, "903", null, "8376", null, "1537", null, "3011", null, "856", null, "5365", null, "1227", null, "201", null, "154", null, "15354", null, "2042", null, "1605", null, "539", null, "2545", null, "692", null, "732", null, "286", null, "1813", null, "610", null, "11204", null, "1849", null, "10449", null, "1478", null, "17945", null, "2208", null, "14125", null, "1676", null, "14269", null, "2082", null, "9572", null, "1594", null, "1632", null, "978", null, "10343", null, "1178", null, "1591", null, "849", null, "1094", null, "662", null, "437", null, "374", null, "3725", null, "952", null, "1873", null, "767", null, "9329", null, "1540", null, "38310", null, "8624", null, "16989", null, "2076", null, "2916", null, "757", null, "7850", null, "1314", null, "6223", null, "1190", null, "10.4", null, "0.9", null, "41.9", null, "4.7", null, "58.1", null, "4.7", null, "21.4", null, "3.8", null, "38.5", null, "4.6", null, "13.2", null, "3.0", null, "25.3", null, "3.8", null, "40.2", null, "5.3", null, "45.9", null, "5.2", null, "15.7", null, "3.2", null, "29.5", null, "4.4", null, "10.6", null, "2.8", null, "18.9", null, "3.8", null, "0.7", null, "0.5", null, "54.1", null, "5.2", null, "5.7", null, "1.9", null, "9.0", null, "2.3", null, "2.6", null, "1.0", null, "6.4", null, "2.1", null, "39.5", null, "5.3", null, "36.8", null, "4.6", null, "63.2", null, "4.6", null, "49.7", null, "4.9", null, "50.3", null, "4.9", null, "33.7", null, "4.7", null, "5.7", null, "3.4", null, "36.4", null, "3.7", null, "5.6", null, "2.8", null, "3.9", null, "2.3", null, "1.5", null, "1.3", null, "13.1", null, "3.2", null, "6.6", null, "2.5", null, "32.9", null, "4.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.2", null, "3.8", null, "46.2", null, "5.3", null, "36.6", null, "5.7", null, "245651", null, "4195", null, "93307", null, "2794", null, "152344", null, "3992", null, "129704", null, "4544", null, "30101", null, "2720", null, "11187", null, "1870", null, "18914", null, "2140", null, "85846", null, "4689", null, "73515", null, "3541", null, "53014", null, "2859", null, "19049", null, "2445", null, "6712", null, "1559", null, "12337", null, "1907", null, "1452", null, "834", null, "172136", null, "4788", null, "76690", null, "4134", null, "11052", null, "1974", null, "4475", null, "1011", null, "6577", null, "1526", null, "84394", null, "4577", null, "13332", null, "1680", null, "232319", null, "4545", null, "62980", null, "3634", null, "182671", null, "4882", null, "175208", null, "3898", null, "5983", null, "1403", null, "21464", null, "1637", null, "11020", null, "1469", null, "2201", null, "908", null, "4948", null, "1285", null, "24827", null, "2303", null, "14635", null, "1473", null, "171061", null, "3890", null, "101535", null, "1840", null, "159805", null, "4284", null, "20327", null, "1767", null, "47538", null, "3464", null, "91940", null, "3206", null, "89.6", null, "0.9", null, "38.0", null, "1.1", null, "62.0", null, "1.1", null, "52.8", null, "1.8", null, "12.3", null, "1.1", null, "4.6", null, "0.8", null, "7.7", null, "0.9", null, "34.9", null, "1.7", null, "29.9", null, "1.4", null, "21.6", null, "1.2", null, "7.8", null, "1.0", null, "2.7", null, "0.6", null, "5.0", null, "0.8", null, "0.6", null, "0.3", null, "70.1", null, "1.4", null, "31.2", null, "1.6", null, "4.5", null, "0.8", null, "1.8", null, "0.4", null, "2.7", null, "0.6", null, "34.4", null, "1.6", null, "5.4", null, "0.7", null, "94.6", null, "0.7", null, "25.6", null, "1.4", null, "74.4", null, "1.4", null, "71.3", null, "1.1", null, "2.4", null, "0.6", null, "8.7", null, "0.6", null, "4.5", null, "0.6", null, "0.9", null, "0.4", null, "2.0", null, "0.5", null, "10.1", null, "0.9", null, "6.0", null, "0.6", null, "69.6", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.7", null, "1.1", null, "29.7", null, "1.8", null, "57.5", null, "1.6", null, "02", "00"], ["5001900US0401", "Congressional District 1 (119th Congress), Arizona", "371956", null, "9279", null, "164806", null, "6226", null, "207150", null, "8066", null, "167882", null, "5797", null, "48702", null, "4730", null, "17393", null, "3150", null, "31309", null, "3780", null, "155372", null, "8653", null, "76093", null, "5188", null, "51289", null, "4068", null, "23992", null, "2998", null, "7107", null, "1804", null, "16885", null, "2588", null, "812", null, "513", null, "295863", null, "9491", null, "116593", null, "5461", null, "24710", null, "3254", null, "10286", null, "2601", null, "14424", null, "2290", null, "154560", null, "8532", null, "27514", null, "3310", null, "344442", null, "9373", null, "77118", null, "4795", null, "294838", null, "9635", null, "288378", null, "8611", null, "12136", null, "2707", null, "4878", null, "1321", null, "14207", null, "2542", null, "-999999999", "N", "-999999999", "N", "12429", null, "2518", null, "39485", null, "3859", null, "52349", null, "4866", null, "275797", null, "8662", null, "102195", null, "1930", null, "216584", null, "7133", null, "36588", null, "2745", null, "63500", null, "4219", null, "116496", null, "6531", null, "-888888888", "(X)", "-888888888", "(X)", "44.3", null, "1.5", null, "55.7", null, "1.5", null, "45.1", null, "1.5", null, "13.1", null, "1.3", null, "4.7", null, "0.8", null, "8.4", null, "1.0", null, "41.8", null, "1.8", null, "20.5", null, "1.4", null, "13.8", null, "1.1", null, "6.5", null, "0.8", null, "1.9", null, "0.5", null, "4.5", null, "0.7", null, "0.2", null, "0.1", null, "79.5", null, "1.4", null, "31.3", null, "1.4", null, "6.6", null, "0.9", null, "2.8", null, "0.7", null, "3.9", null, "0.6", null, "41.6", null, "1.8", null, "7.4", null, "0.9", null, "92.6", null, "0.9", null, "20.7", null, "1.3", null, "79.3", null, "1.3", null, "77.5", null, "1.4", null, "3.3", null, "0.7", null, "1.3", null, "0.4", null, "3.8", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "3.3", null, "0.7", null, "10.6", null, "1.0", null, "14.1", null, "1.2", null, "74.1", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.9", null, "1.3", null, "29.3", null, "1.8", null, "53.8", null, "2.0", null, "18758", null, "3111", null, "6310", null, "1498", null, "12448", null, "2421", null, "4098", null, "1481", null, "7342", null, "2011", null, "1786", null, "1164", null, "5556", null, "1744", null, "7318", null, "1738", null, "7850", null, "1938", null, "2700", null, "1126", null, "5091", null, "1670", null, "948", null, "595", null, "4143", null, "1568", null, "59", null, "99", null, "10908", null, "2178", null, "1398", null, "990", null, "2251", null, "989", null, "838", null, "799", null, "1413", null, "631", null, "7259", null, "1743", null, "5497", null, "1540", null, "13261", null, "2789", null, "6905", null, "1596", null, "11853", null, "2392", null, "11023", null, "2190", null, "1956", null, "1216", null, "360", null, "309", null, "361", null, "296", null, "-999999999", "N", "-999999999", "N", "1466", null, "769", null, "3592", null, "1430", null, "5412", null, "1734", null, "10019", null, "2153", null, "45080", null, "9117", null, "11440", null, "2595", null, "1509", null, "712", null, "5343", null, "1463", null, "4588", null, "1737", null, "5.0", null, "0.8", null, "33.6", null, "6.1", null, "66.4", null, "6.1", null, "21.8", null, "6.5", null, "39.1", null, "8.3", null, "9.5", null, "5.9", null, "29.6", null, "8.1", null, "39.0", null, "7.8", null, "41.8", null, "7.2", null, "14.4", null, "5.4", null, "27.1", null, "7.7", null, "5.1", null, "3.1", null, "22.1", null, "7.4", null, "0.3", null, "0.5", null, "58.2", null, "7.2", null, "7.5", null, "5.0", null, "12.0", null, "4.8", null, "4.5", null, "4.1", null, "7.5", null, "3.3", null, "38.7", null, "7.8", null, "29.3", null, "7.5", null, "70.7", null, "7.5", null, "36.8", null, "6.4", null, "63.2", null, "6.4", null, "58.8", null, "8.0", null, "10.4", null, "6.3", null, "1.9", null, "1.7", null, "1.9", null, "1.6", null, "-999999999.0", "N", "-999999999.0", "N", "7.8", null, "3.9", null, "19.1", null, "6.3", null, "28.9", null, "7.5", null, "53.4", null, "8.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.2", null, "5.9", null, "46.7", null, "9.2", null, "40.1", null, "10.4", null, "353198", null, "9690", null, "158496", null, "5997", null, "194702", null, "8421", null, "163784", null, "5998", null, "41360", null, "4233", null, "15607", null, "2858", null, "25753", null, "3569", null, "148054", null, "8930", null, "68243", null, "5423", null, "48589", null, "4096", null, "18901", null, "2900", null, "6159", null, "1729", null, "12742", null, "2446", null, "753", null, "506", null, "284955", null, "9527", null, "115195", null, "5412", null, "22459", null, "3061", null, "9448", null, "2402", null, "13011", null, "2164", null, "147301", null, "8849", null, "22017", null, "2843", null, "331181", null, "9575", null, "70213", null, "4311", null, "282985", null, "9954", null, "277355", null, "8550", null, "10180", null, "2261", null, "4518", null, "1307", null, "13846", null, "2567", null, "-999999999", "N", "-999999999", "N", "10963", null, "2447", null, "35893", null, "3659", null, "46937", null, "4474", null, "265778", null, "8697", null, "106162", null, "5274", null, "205144", null, "7362", null, "35079", null, "2654", null, "58157", null, "4167", null, "111908", null, "6588", null, "95.0", null, "0.8", null, "44.9", null, "1.5", null, "55.1", null, "1.5", null, "46.4", null, "1.6", null, "11.7", null, "1.2", null, "4.4", null, "0.8", null, "7.3", null, "1.0", null, "41.9", null, "1.9", null, "19.3", null, "1.5", null, "13.8", null, "1.1", null, "5.4", null, "0.8", null, "1.7", null, "0.5", null, "3.6", null, "0.7", null, "0.2", null, "0.1", null, "80.7", null, "1.5", null, "32.6", null, "1.5", null, "6.4", null, "0.9", null, "2.7", null, "0.7", null, "3.7", null, "0.6", null, "41.7", null, "1.9", null, "6.2", null, "0.8", null, "93.8", null, "0.8", null, "19.9", null, "1.3", null, "80.1", null, "1.3", null, "78.5", null, "1.4", null, "2.9", null, "0.6", null, "1.3", null, "0.4", null, "3.9", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "3.1", null, "0.7", null, "10.2", null, "1.0", null, "13.3", null, "1.2", null, "75.2", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.1", null, "1.3", null, "28.3", null, "1.9", null, "54.6", null, "2.1", null, "04", "01"], ["5001900US0402", "Congressional District 2 (119th Congress), Arizona", "335517", null, "4568", null, "179831", null, "3857", null, "155686", null, "4464", null, "165395", null, "5204", null, "56097", null, "3912", null, "17533", null, "2139", null, "38564", null, "3099", null, "114025", null, "4774", null, "83025", null, "4628", null, "50280", null, "3961", null, "31576", null, "2963", null, "9035", null, "1643", null, "22541", null, "2529", null, "1169", null, "695", null, "252492", null, "4830", null, "115115", null, "4080", null, "24521", null, "2878", null, "8498", null, "1586", null, "16023", null, "2218", null, "112856", null, "4696", null, "51784", null, "4007", null, "283733", null, "5449", null, "117157", null, "5227", null, "218360", null, "5650", null, "225881", null, "3795", null, "5624", null, "1460", null, "52845", null, "2035", null, "4676", null, "1059", null, "-999999999", "N", "-999999999", "N", "13191", null, "2255", null, "33156", null, "3461", null, "44553", null, "3359", null, "214990", null, "4355", null, "70376", null, "2161", null, "221492", null, "6271", null, "58080", null, "3471", null, "69396", null, "5180", null, "94016", null, "4229", null, "-888888888", "(X)", "-888888888", "(X)", "53.6", null, "1.0", null, "46.4", null, "1.0", null, "49.3", null, "1.3", null, "16.7", null, "1.1", null, "5.2", null, "0.6", null, "11.5", null, "0.9", null, "34.0", null, "1.5", null, "24.7", null, "1.3", null, "15.0", null, "1.1", null, "9.4", null, "0.9", null, "2.7", null, "0.5", null, "6.7", null, "0.7", null, "0.3", null, "0.2", null, "75.3", null, "1.3", null, "34.3", null, "1.2", null, "7.3", null, "0.8", null, "2.5", null, "0.5", null, "4.8", null, "0.7", null, "33.6", null, "1.4", null, "15.4", null, "1.2", null, "84.6", null, "1.2", null, "34.9", null, "1.5", null, "65.1", null, "1.5", null, "67.3", null, "1.0", null, "1.7", null, "0.4", null, "15.8", null, "0.6", null, "1.4", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "3.9", null, "0.7", null, "9.9", null, "1.0", null, "13.3", null, "1.0", null, "64.1", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "26.2", null, "1.6", null, "31.3", null, "1.8", null, "42.4", null, "1.7", null, "45458", null, "3605", null, "22367", null, "2364", null, "23091", null, "2516", null, "12366", null, "2128", null, "18647", null, "2223", null, "4855", null, "1292", null, "13792", null, "1812", null, "14445", null, "2021", null, "18398", null, "2143", null, "5886", null, "1311", null, "12155", null, "1702", null, "2215", null, "878", null, "9940", null, "1477", null, "357", null, "368", null, "27060", null, "2804", null, "6480", null, "1609", null, "6492", null, "1425", null, "2640", null, "863", null, "3852", null, "966", null, "14088", null, "2025", null, "18192", null, "2345", null, "27266", null, "2975", null, "22403", null, "3046", null, "23055", null, "2271", null, "19460", null, "2346", null, "773", null, "653", null, "18251", null, "1692", null, "0", null, "237", null, "-999999999", "N", "-999999999", "N", "2481", null, "929", null, "4493", null, "1215", null, "5174", null, "1351", null, "18404", null, "2400", null, "30788", null, "6156", null, "31013", null, "3217", null, "8749", null, "1965", null, "11168", null, "1927", null, "11096", null, "1773", null, "13.5", null, "1.0", null, "49.2", null, "3.6", null, "50.8", null, "3.6", null, "27.2", null, "3.9", null, "41.0", null, "3.8", null, "10.7", null, "2.8", null, "30.3", null, "3.2", null, "31.8", null, "4.0", null, "40.5", null, "3.7", null, "12.9", null, "2.7", null, "26.7", null, "3.3", null, "4.9", null, "1.9", null, "21.9", null, "2.8", null, "0.8", null, "0.8", null, "59.5", null, "3.7", null, "14.3", null, "3.2", null, "14.3", null, "2.9", null, "5.8", null, "1.8", null, "8.5", null, "2.0", null, "31.0", null, "4.0", null, "40.0", null, "4.2", null, "60.0", null, "4.2", null, "49.3", null, "4.4", null, "50.7", null, "4.4", null, "42.8", null, "3.3", null, "1.7", null, "1.4", null, "40.1", null, "2.8", null, "0.0", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "5.5", null, "1.9", null, "9.9", null, "2.6", null, "11.4", null, "2.8", null, "40.5", null, "3.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "28.2", null, "5.4", null, "36.0", null, "4.6", null, "35.8", null, "5.1", null, "290059", null, "4596", null, "157464", null, "4137", null, "132595", null, "4037", null, "153029", null, "4773", null, "37450", null, "3256", null, "12678", null, "2049", null, "24772", null, "2494", null, "99580", null, "4462", null, "64627", null, "4291", null, "44394", null, "3518", null, "19421", null, "2529", null, "6820", null, "1524", null, "12601", null, "2058", null, "812", null, "628", null, "225432", null, "5333", null, "108635", null, "3885", null, "18029", null, "2545", null, "5858", null, "1391", null, "12171", null, "2042", null, "98768", null, "4418", null, "33592", null, "3370", null, "256467", null, "5210", null, "94754", null, "4322", null, "195305", null, "5769", null, "206421", null, "3993", null, "4851", null, "1256", null, "34594", null, "2217", null, "4676", null, "1059", null, "-999999999", "N", "-999999999", "N", "10710", null, "2099", null, "28663", null, "3068", null, "39379", null, "3410", null, "196586", null, "4516", null, "75330", null, "2396", null, "190479", null, "5460", null, "49331", null, "2683", null, "58228", null, "4574", null, "82920", null, "3767", null, "86.5", null, "1.0", null, "54.3", null, "1.2", null, "45.7", null, "1.2", null, "52.8", null, "1.5", null, "12.9", null, "1.1", null, "4.4", null, "0.7", null, "8.5", null, "0.8", null, "34.3", null, "1.5", null, "22.3", null, "1.4", null, "15.3", null, "1.2", null, "6.7", null, "0.9", null, "2.4", null, "0.5", null, "4.3", null, "0.7", null, "0.3", null, "0.2", null, "77.7", null, "1.4", null, "37.5", null, "1.2", null, "6.2", null, "0.9", null, "2.0", null, "0.5", null, "4.2", null, "0.7", null, "34.1", null, "1.5", null, "11.6", null, "1.1", null, "88.4", null, "1.1", null, "32.7", null, "1.5", null, "67.3", null, "1.5", null, "71.2", null, "1.1", null, "1.7", null, "0.4", null, "11.9", null, "0.7", null, "1.6", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "3.7", null, "0.7", null, "9.9", null, "1.1", null, "13.6", null, "1.1", null, "67.8", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "25.9", null, "1.5", null, "30.6", null, "1.9", null, "43.5", null, "1.8", null, "04", "02"], ["5001900US0403", "Congressional District 3 (119th Congress), Arizona", "279103", null, "7967", null, "86218", null, "4961", null, "192885", null, "7029", null, "98700", null, "5846", null, "79083", null, "4998", null, "24452", null, "2984", null, "54631", null, "4276", null, "101320", null, "6243", null, "97876", null, "5991", null, "49709", null, "4275", null, "47196", null, "4433", null, "12300", null, "2116", null, "34896", null, "3952", null, "971", null, "653", null, "181227", null, "7738", null, "48991", null, "4759", null, "31887", null, "3578", null, "12152", null, "2137", null, "19735", null, "3212", null, "100349", null, "6113", null, "43488", null, "4701", null, "235615", null, "7322", null, "77696", null, "5438", null, "201407", null, "7849", null, "94380", null, "5793", null, "32536", null, "3113", null, "7279", null, "1846", null, "10933", null, "2533", null, "-999999999", "N", "-999999999", "N", "41101", null, "3914", null, "92645", null, "5609", null, "150443", null, "5828", null, "72706", null, "5124", null, "70539", null, "2090", null, "177783", null, "5948", null, "16825", null, "2547", null, "55772", null, "4694", null, "105186", null, "5126", null, "-888888888", "(X)", "-888888888", "(X)", "30.9", null, "1.6", null, "69.1", null, "1.6", null, "35.4", null, "1.9", null, "28.3", null, "1.8", null, "8.8", null, "1.0", null, "19.6", null, "1.6", null, "36.3", null, "1.7", null, "35.1", null, "2.0", null, "17.8", null, "1.4", null, "16.9", null, "1.6", null, "4.4", null, "0.8", null, "12.5", null, "1.4", null, "0.3", null, "0.2", null, "64.9", null, "2.0", null, "17.6", null, "1.7", null, "11.4", null, "1.3", null, "4.4", null, "0.7", null, "7.1", null, "1.2", null, "36.0", null, "1.7", null, "15.6", null, "1.6", null, "84.4", null, "1.6", null, "27.8", null, "1.8", null, "72.2", null, "1.8", null, "33.8", null, "1.9", null, "11.7", null, "1.1", null, "2.6", null, "0.7", null, "3.9", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "14.7", null, "1.4", null, "33.2", null, "1.7", null, "53.9", null, "1.6", null, "26.0", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "9.5", null, "1.4", null, "31.4", null, "2.3", null, "59.2", null, "2.4", null, "52592", null, "4619", null, "17572", null, "2606", null, "35020", null, "3771", null, "12810", null, "1999", null, "25585", null, "3248", null, "4444", null, "1375", null, "21141", null, "2869", null, "14197", null, "2552", null, "29011", null, "3591", null, "8597", null, "1846", null, "19809", null, "3165", null, "3474", null, "1150", null, "16335", null, "2789", null, "605", null, "518", null, "23581", null, "3149", null, "4213", null, "1214", null, "5776", null, "1603", null, "970", null, "632", null, "4806", null, "1521", null, "13592", null, "2381", null, "19275", null, "3412", null, "33317", null, "3568", null, "23114", null, "2935", null, "29478", null, "3874", null, "12672", null, "2080", null, "10338", null, "2500", null, "1996", null, "800", null, "1712", null, "920", null, "-999999999", "N", "-999999999", "N", "7095", null, "1664", null, "18704", null, "3209", null, "31086", null, "3573", null, "7228", null, "1575", null, "40582", null, "6250", null, "38395", null, "3781", null, "6657", null, "1815", null, "16721", null, "2952", null, "15017", null, "2453", null, "18.8", null, "1.5", null, "33.4", null, "4.0", null, "66.6", null, "4.0", null, "24.4", null, "3.4", null, "48.6", null, "4.4", null, "8.4", null, "2.6", null, "40.2", null, "3.8", null, "27.0", null, "4.0", null, "55.2", null, "4.7", null, "16.3", null, "3.2", null, "37.7", null, "4.8", null, "6.6", null, "2.2", null, "31.1", null, "4.2", null, "1.2", null, "1.0", null, "44.8", null, "4.7", null, "8.0", null, "2.3", null, "11.0", null, "3.0", null, "1.8", null, "1.2", null, "9.1", null, "2.8", null, "25.8", null, "3.6", null, "36.7", null, "5.1", null, "63.3", null, "5.1", null, "43.9", null, "4.8", null, "56.1", null, "4.8", null, "24.1", null, "4.1", null, "19.7", null, "4.1", null, "3.8", null, "1.5", null, "3.3", null, "1.7", null, "-999999999.0", "N", "-999999999.0", "N", "13.5", null, "3.1", null, "35.6", null, "4.7", null, "59.1", null, "4.4", null, "13.7", null, "3.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.3", null, "4.1", null, "43.5", null, "6.1", null, "39.1", null, "5.9", null, "226511", null, "7061", null, "68646", null, "4071", null, "157865", null, "6528", null, "85890", null, "5117", null, "53498", null, "3679", null, "20008", null, "2698", null, "33490", null, "3228", null, "87123", null, "5730", null, "68865", null, "4606", null, "41112", null, "3801", null, "27387", null, "3031", null, "8826", null, "1949", null, "18561", null, "2433", null, "366", null, "418", null, "157646", null, "7089", null, "44778", null, "4420", null, "26111", null, "2828", null, "11182", null, "1977", null, "14929", null, "2615", null, "86757", null, "5693", null, "24213", null, "3120", null, "202298", null, "6988", null, "54582", null, "4933", null, "171929", null, "7276", null, "81708", null, "5382", null, "22198", null, "2867", null, "5283", null, "1618", null, "9221", null, "2451", null, "-999999999", "N", "-999999999", "N", "34006", null, "3379", null, "73941", null, "4783", null, "119357", null, "5323", null, "65478", null, "4875", null, "77364", null, "3914", null, "139388", null, "4855", null, "10168", null, "2013", null, "39051", null, "3786", null, "90169", null, "4862", null, "81.2", null, "1.5", null, "30.3", null, "1.6", null, "69.7", null, "1.6", null, "37.9", null, "2.0", null, "23.6", null, "1.7", null, "8.8", null, "1.2", null, "14.8", null, "1.5", null, "38.5", null, "1.8", null, "30.4", null, "2.0", null, "18.2", null, "1.6", null, "12.1", null, "1.4", null, "3.9", null, "0.9", null, "8.2", null, "1.1", null, "0.2", null, "0.2", null, "69.6", null, "2.0", null, "19.8", null, "1.9", null, "11.5", null, "1.2", null, "4.9", null, "0.8", null, "6.6", null, "1.2", null, "38.3", null, "1.8", null, "10.7", null, "1.3", null, "89.3", null, "1.3", null, "24.1", null, "2.1", null, "75.9", null, "2.1", null, "36.1", null, "2.0", null, "9.8", null, "1.2", null, "2.3", null, "0.7", null, "4.1", null, "1.1", null, "-999999999.0", "N", "-999999999.0", "N", "15.0", null, "1.4", null, "32.6", null, "1.8", null, "52.7", null, "1.7", null, "28.9", null, "1.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "7.3", null, "1.4", null, "28.0", null, "2.5", null, "64.7", null, "2.6", null, "04", "03"], ["5001900US0404", "Congressional District 4 (119th Congress), Arizona", "328388", null, "7680", null, "125539", null, "5375", null, "202849", null, "6544", null, "131386", null, "5956", null, "51763", null, "4746", null, "19888", null, "2751", null, "31875", null, "3673", null, "145239", null, "8114", null, "73718", null, "5170", null, "47784", null, "4049", null, "25663", null, "3512", null, "8906", null, "2213", null, "16757", null, "2813", null, "271", null, "320", null, "254670", null, "9141", null, "83602", null, "5097", null, "26100", null, "3246", null, "10982", null, "1850", null, "15118", null, "2648", null, "144968", null, "8124", null, "39729", null, "3785", null, "288659", null, "7067", null, "78721", null, "4165", null, "249667", null, "7227", null, "218095", null, "7920", null, "14486", null, "2650", null, "7688", null, "1866", null, "22215", null, "2975", null, "-999999999", "N", "-999999999", "N", "23002", null, "3043", null, "42682", null, "4154", null, "67184", null, "5862", null, "203347", null, "7723", null, "82539", null, "2851", null, "183149", null, "6356", null, "25844", null, "2562", null, "55395", null, "4717", null, "101910", null, "5765", null, "-888888888", "(X)", "-888888888", "(X)", "38.2", null, "1.4", null, "61.8", null, "1.4", null, "40.0", null, "1.9", null, "15.8", null, "1.4", null, "6.1", null, "0.8", null, "9.7", null, "1.1", null, "44.2", null, "1.9", null, "22.4", null, "1.6", null, "14.6", null, "1.3", null, "7.8", null, "1.1", null, "2.7", null, "0.7", null, "5.1", null, "0.8", null, "0.1", null, "0.1", null, "77.6", null, "1.6", null, "25.5", null, "1.5", null, "7.9", null, "1.0", null, "3.3", null, "0.6", null, "4.6", null, "0.8", null, "44.1", null, "1.9", null, "12.1", null, "1.1", null, "87.9", null, "1.1", null, "24.0", null, "1.2", null, "76.0", null, "1.2", null, "66.4", null, "2.1", null, "4.4", null, "0.8", null, "2.3", null, "0.6", null, "6.8", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "7.0", null, "0.9", null, "13.0", null, "1.2", null, "20.5", null, "1.6", null, "61.9", null, "2.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.1", null, "1.3", null, "30.2", null, "2.4", null, "55.6", null, "2.4", null, "24196", null, "3069", null, "9191", null, "1968", null, "15005", null, "2983", null, "6366", null, "1587", null, "10343", null, "2324", null, "1992", null, "987", null, "8351", null, "2206", null, "7487", null, "1853", null, "12116", null, "2944", null, "4024", null, "1304", null, "8092", null, "2349", null, "1105", null, "876", null, "6987", null, "2268", null, "0", null, "237", null, "12080", null, "2126", null, "2342", null, "1075", null, "2251", null, "746", null, "887", null, "515", null, "1364", null, "539", null, "7487", null, "1853", null, "7624", null, "1964", null, "16572", null, "2821", null, "10499", null, "1897", null, "13697", null, "2586", null, "12324", null, "2173", null, "3370", null, "1410", null, "693", null, "420", null, "1234", null, "987", null, "-999999999", "N", "-999999999", "N", "1852", null, "882", null, "4723", null, "1586", null, "7556", null, "1996", null, "10463", null, "1884", null, "47957", null, "6294", null, "16709", null, "2865", null, "2273", null, "949", null, "6749", null, "1987", null, "7687", null, "1979", null, "7.4", null, "0.9", null, "38.0", null, "7.7", null, "62.0", null, "7.7", null, "26.3", null, "5.7", null, "42.7", null, "7.3", null, "8.2", null, "4.1", null, "34.5", null, "7.2", null, "30.9", null, "7.1", null, "50.1", null, "8.4", null, "16.6", null, "4.6", null, "33.4", null, "7.7", null, "4.6", null, "3.6", null, "28.9", null, "7.6", null, "0.0", null, "1.0", null, "49.9", null, "8.4", null, "9.7", null, "4.5", null, "9.3", null, "3.3", null, "3.7", null, "2.1", null, "5.6", null, "2.4", null, "30.9", null, "7.1", null, "31.5", null, "7.3", null, "68.5", null, "7.3", null, "43.4", null, "6.7", null, "56.6", null, "6.7", null, "50.9", null, "7.2", null, "13.9", null, "5.4", null, "2.9", null, "1.7", null, "5.1", null, "3.9", null, "-999999999.0", "N", "-999999999.0", "N", "7.7", null, "3.4", null, "19.5", null, "6.2", null, "31.2", null, "6.9", null, "43.2", null, "6.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.6", null, "5.9", null, "40.4", null, "8.9", null, "46.0", null, "8.6", null, "304192", null, "7613", null, "116348", null, "5008", null, "187844", null, "6599", null, "125020", null, "5894", null, "41420", null, "3858", null, "17896", null, "2563", null, "23524", null, "3006", null, "137752", null, "7428", null, "61602", null, "4405", null, "43760", null, "3849", null, "17571", null, "2581", null, "7801", null, "2132", null, "9770", null, "2020", null, "271", null, "320", null, "242590", null, "8331", null, "81260", null, "4926", null, "23849", null, "3117", null, "10095", null, "1750", null, "13754", null, "2499", null, "137481", null, "7434", null, "32105", null, "3846", null, "272087", null, "7400", null, "68222", null, "3933", null, "235970", null, "7129", null, "205771", null, "7654", null, "11116", null, "2611", null, "6995", null, "1821", null, "20981", null, "2722", null, "-999999999", "N", "-999999999", "N", "21150", null, "2988", null, "37959", null, "3894", null, "59628", null, "5502", null, "192884", null, "7501", null, "86091", null, "2474", null, "166440", null, "6015", null, "23571", null, "2451", null, "48646", null, "4287", null, "94223", null, "5530", null, "92.6", null, "0.9", null, "38.2", null, "1.4", null, "61.8", null, "1.4", null, "41.1", null, "1.9", null, "13.6", null, "1.2", null, "5.9", null, "0.8", null, "7.7", null, "1.0", null, "45.3", null, "1.9", null, "20.3", null, "1.5", null, "14.4", null, "1.3", null, "5.8", null, "0.8", null, "2.6", null, "0.7", null, "3.2", null, "0.7", null, "0.1", null, "0.1", null, "79.7", null, "1.5", null, "26.7", null, "1.5", null, "7.8", null, "1.0", null, "3.3", null, "0.6", null, "4.5", null, "0.8", null, "45.2", null, "1.9", null, "10.6", null, "1.2", null, "89.4", null, "1.2", null, "22.4", null, "1.2", null, "77.6", null, "1.2", null, "67.6", null, "2.1", null, "3.7", null, "0.9", null, "2.3", null, "0.6", null, "6.9", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "7.0", null, "0.9", null, "12.5", null, "1.2", null, "19.6", null, "1.6", null, "63.4", null, "2.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.2", null, "1.4", null, "29.2", null, "2.4", null, "56.6", null, "2.5", null, "04", "04"], ["5001900US0405", "Congressional District 5 (119th Congress), Arizona", "316114", null, "6656", null, "129082", null, "5157", null, "187032", null, "5691", null, "188090", null, "6033", null, "47556", null, "4594", null, "17230", null, "2728", null, "30326", null, "3148", null, "80468", null, "4395", null, "112375", null, "4529", null, "85950", null, "4382", null, "26123", null, "3339", null, "9543", null, "2042", null, "16580", null, "2674", null, "302", null, "199", null, "203739", null, "7697", null, "102140", null, "5555", null, "21433", null, "2914", null, "7687", null, "2005", null, "13746", null, "1919", null, "80166", null, "4396", null, "21729", null, "2825", null, "294385", null, "6569", null, "80143", null, "5106", null, "235971", null, "7074", null, "234664", null, "6814", null, "10991", null, "2012", null, "3047", null, "793", null, "17518", null, "2476", null, "-999999999", "N", "-999999999", "N", "15287", null, "2263", null, "34570", null, "3830", null, "48815", null, "3837", null, "222020", null, "6663", null, "112116", null, "4235", null, "235646", null, "6164", null, "34581", null, "2484", null, "67520", null, "4470", null, "133545", null, "5889", null, "-888888888", "(X)", "-888888888", "(X)", "40.8", null, "1.4", null, "59.2", null, "1.4", null, "59.5", null, "1.6", null, "15.0", null, "1.4", null, "5.5", null, "0.8", null, "9.6", null, "1.0", null, "25.5", null, "1.3", null, "35.5", null, "1.6", null, "27.2", null, "1.5", null, "8.3", null, "1.1", null, "3.0", null, "0.6", null, "5.2", null, "0.9", null, "0.1", null, "0.1", null, "64.5", null, "1.6", null, "32.3", null, "1.5", null, "6.8", null, "0.9", null, "2.4", null, "0.6", null, "4.3", null, "0.6", null, "25.4", null, "1.3", null, "6.9", null, "0.9", null, "93.1", null, "0.9", null, "25.4", null, "1.5", null, "74.6", null, "1.5", null, "74.2", null, "1.4", null, "3.5", null, "0.6", null, "1.0", null, "0.3", null, "5.5", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "4.8", null, "0.7", null, "10.9", null, "1.2", null, "15.4", null, "1.2", null, "70.2", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.7", null, "1.0", null, "28.7", null, "1.7", null, "56.7", null, "2.0", null, "15534", null, "2526", null, "6377", null, "1155", null, "9157", null, "2361", null, "4951", null, "1534", null, "6951", null, "1850", null, "1778", null, "1127", null, "5173", null, "1519", null, "3632", null, "1125", null, "8399", null, "2014", null, "4110", null, "1492", null, "4247", null, "1582", null, "1337", null, "1023", null, "2910", null, "1292", null, "42", null, "70", null, "7135", null, "1569", null, "841", null, "402", null, "2704", null, "1011", null, "441", null, "356", null, "2263", null, "896", null, "3590", null, "1115", null, "3984", null, "1412", null, "11550", null, "2394", null, "6174", null, "1316", null, "9360", null, "2022", null, "9491", null, "1946", null, "1058", null, "687", null, "181", null, "246", null, "427", null, "390", null, "-999999999", "N", "-999999999", "N", "2874", null, "1140", null, "1503", null, "619", null, "4238", null, "1289", null, "8947", null, "1853", null, "52184", null, "12004", null, "11902", null, "2262", null, "1738", null, "713", null, "4695", null, "1518", null, "5469", null, "1519", null, "4.9", null, "0.8", null, "41.1", null, "8.0", null, "58.9", null, "8.0", null, "31.9", null, "8.7", null, "44.7", null, "8.4", null, "11.4", null, "6.7", null, "33.3", null, "7.9", null, "23.4", null, "6.6", null, "54.1", null, "8.3", null, "26.5", null, "8.6", null, "27.3", null, "8.4", null, "8.6", null, "6.2", null, "18.7", null, "7.4", null, "0.3", null, "0.4", null, "45.9", null, "8.3", null, "5.4", null, "2.6", null, "17.4", null, "6.1", null, "2.8", null, "2.2", null, "14.6", null, "5.5", null, "23.1", null, "6.5", null, "25.6", null, "8.5", null, "74.4", null, "8.5", null, "39.7", null, "6.9", null, "60.3", null, "6.9", null, "61.1", null, "7.6", null, "6.8", null, "4.2", null, "1.2", null, "1.6", null, "2.7", null, "2.5", null, "-999999999.0", "N", "-999999999.0", "N", "18.5", null, "6.4", null, "9.7", null, "3.9", null, "27.3", null, "6.9", null, "57.6", null, "7.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.6", null, "5.8", null, "39.4", null, "9.4", null, "46.0", null, "9.6", null, "300580", null, "6824", null, "122705", null, "5339", null, "177875", null, "5734", null, "183139", null, "5700", null, "40605", null, "3755", null, "15452", null, "2614", null, "25153", null, "2706", null, "76836", null, "4399", null, "103976", null, "4121", null, "81840", null, "4146", null, "21876", null, "2896", null, "8206", null, "1895", null, "13670", null, "2358", null, "260", null, "188", null, "196604", null, "7581", null, "101299", null, "5540", null, "18729", null, "2672", null, "7246", null, "1991", null, "11483", null, "1650", null, "76576", null, "4404", null, "17745", null, "2293", null, "282835", null, "6751", null, "73969", null, "5104", null, "226611", null, "7064", null, "225173", null, "7089", null, "9933", null, "1930", null, "2866", null, "760", null, "17091", null, "2434", null, "-999999999", "N", "-999999999", "N", "12413", null, "2010", null, "33067", null, "3808", null, "44577", null, "3527", null, "213073", null, "6825", null, "115523", null, "4125", null, "223744", null, "5894", null, "32843", null, "2507", null, "62825", null, "4338", null, "128076", null, "5552", null, "95.1", null, "0.8", null, "40.8", null, "1.5", null, "59.2", null, "1.5", null, "60.9", null, "1.5", null, "13.5", null, "1.2", null, "5.1", null, "0.8", null, "8.4", null, "0.9", null, "25.6", null, "1.3", null, "34.6", null, "1.5", null, "27.2", null, "1.5", null, "7.3", null, "1.0", null, "2.7", null, "0.6", null, "4.5", null, "0.8", null, "0.1", null, "0.1", null, "65.4", null, "1.5", null, "33.7", null, "1.5", null, "6.2", null, "0.9", null, "2.4", null, "0.7", null, "3.8", null, "0.5", null, "25.5", null, "1.3", null, "5.9", null, "0.7", null, "94.1", null, "0.7", null, "24.6", null, "1.6", null, "75.4", null, "1.6", null, "74.9", null, "1.5", null, "3.3", null, "0.6", null, "1.0", null, "0.3", null, "5.7", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "4.1", null, "0.7", null, "11.0", null, "1.3", null, "14.8", null, "1.2", null, "70.9", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.7", null, "1.1", null, "28.1", null, "1.8", null, "57.2", null, "2.0", null, "04", "05"], ["5001900US0406", "Congressional District 6 (119th Congress), Arizona", "359682", null, "5922", null, "190470", null, "4506", null, "169212", null, "5325", null, "172901", null, "5397", null, "48299", null, "4067", null, "18345", null, "2824", null, "29954", null, "3231", null, "138482", null, "5567", null, "82336", null, "4870", null, "57685", null, "3732", null, "24002", null, "3729", null, "10342", null, "2537", null, "13660", null, "2446", null, "649", null, "443", null, "277346", null, "6490", null, "115216", null, "4202", null, "24297", null, "2785", null, "8003", null, "1585", null, "16294", null, "2432", null, "137833", null, "5577", null, "36700", null, "3671", null, "322982", null, "6183", null, "106736", null, "4708", null, "252946", null, "6353", null, "269087", null, "5898", null, "13345", null, "2872", null, "4050", null, "1355", null, "10069", null, "1513", null, "-999999999", "N", "-999999999", "N", "13899", null, "2330", null, "48664", null, "4088", null, "70925", null, "4118", null, "249527", null, "5281", null, "80251", null, "2262", null, "221200", null, "5742", null, "54990", null, "3096", null, "63449", null, "4588", null, "102761", null, "5715", null, "-888888888", "(X)", "-888888888", "(X)", "53.0", null, "1.1", null, "47.0", null, "1.1", null, "48.1", null, "1.4", null, "13.4", null, "1.1", null, "5.1", null, "0.8", null, "8.3", null, "0.9", null, "38.5", null, "1.3", null, "22.9", null, "1.3", null, "16.0", null, "1.0", null, "6.7", null, "1.0", null, "2.9", null, "0.7", null, "3.8", null, "0.7", null, "0.2", null, "0.1", null, "77.1", null, "1.3", null, "32.0", null, "1.1", null, "6.8", null, "0.8", null, "2.2", null, "0.4", null, "4.5", null, "0.7", null, "38.3", null, "1.3", null, "10.2", null, "1.0", null, "89.8", null, "1.0", null, "29.7", null, "1.2", null, "70.3", null, "1.2", null, "74.8", null, "1.2", null, "3.7", null, "0.8", null, "1.1", null, "0.4", null, "2.8", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "3.9", null, "0.6", null, "13.5", null, "1.1", null, "19.7", null, "1.1", null, "69.4", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "24.9", null, "1.5", null, "28.7", null, "1.9", null, "46.5", null, "2.0", null, "29676", null, "3145", null, "15033", null, "2563", null, "14643", null, "2419", null, "8913", null, "2210", null, "9644", null, "2043", null, "1816", null, "759", null, "7828", null, "1913", null, "11119", null, "1688", null, "11615", null, "1846", null, "5954", null, "1767", null, "5579", null, "1409", null, "1366", null, "678", null, "4213", null, "1244", null, "82", null, "119", null, "18061", null, "2792", null, "2959", null, "1063", null, "4065", null, "1603", null, "450", null, "287", null, "3615", null, "1541", null, "11037", null, "1691", null, "9382", null, "1601", null, "20294", null, "2899", null, "15207", null, "2120", null, "14469", null, "2088", null, "17707", null, "2306", null, "3607", null, "1573", null, "932", null, "499", null, "338", null, "322", null, "-999999999", "N", "-999999999", "N", "1871", null, "860", null, "5221", null, "1499", null, "9475", null, "1969", null, "14958", null, "1811", null, "43438", null, "10390", null, "18557", null, "2687", null, "2208", null, "847", null, "7623", null, "1758", null, "8726", null, "2035", null, "8.3", null, "0.8", null, "50.7", null, "6.5", null, "49.3", null, "6.5", null, "30.0", null, "6.5", null, "32.5", null, "5.8", null, "6.1", null, "2.5", null, "26.4", null, "5.6", null, "37.5", null, "5.0", null, "39.1", null, "5.7", null, "20.1", null, "5.7", null, "18.8", null, "4.8", null, "4.6", null, "2.3", null, "14.2", null, "4.2", null, "0.3", null, "0.4", null, "60.9", null, "5.7", null, "10.0", null, "3.2", null, "13.7", null, "4.8", null, "1.5", null, "1.0", null, "12.2", null, "4.7", null, "37.2", null, "5.0", null, "31.6", null, "5.1", null, "68.4", null, "5.1", null, "51.2", null, "4.7", null, "48.8", null, "4.7", null, "59.7", null, "5.0", null, "12.2", null, "4.9", null, "3.1", null, "1.7", null, "1.1", null, "1.1", null, "-999999999.0", "N", "-999999999.0", "N", "6.3", null, "2.9", null, "17.6", null, "4.6", null, "31.9", null, "5.1", null, "50.4", null, "4.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.9", null, "4.3", null, "41.1", null, "7.7", null, "47.0", null, "8.4", null, "330006", null, "5773", null, "175437", null, "4307", null, "154569", null, "5535", null, "163988", null, "4933", null, "38655", null, "3479", null, "16529", null, "2630", null, "22126", null, "2486", null, "127363", null, "5350", null, "70721", null, "4395", null, "51731", null, "3159", null, "18423", null, "3286", null, "8976", null, "2185", null, "9447", null, "2059", null, "567", null, "410", null, "259285", null, "6164", null, "112257", null, "4118", null, "20232", null, "2247", null, "7553", null, "1588", null, "12679", null, "1923", null, "126796", null, "5383", null, "27318", null, "3304", null, "302688", null, "5700", null, "91529", null, "4665", null, "238477", null, "6480", null, "251380", null, "5574", null, "9738", null, "2185", null, "3118", null, "1294", null, "9731", null, "1458", null, "-999999999", "N", "-999999999", "N", "12028", null, "2221", null, "43443", null, "4099", null, "61450", null, "3958", null, "234569", null, "5048", null, "82633", null, "2463", null, "202643", null, "5429", null, "52782", null, "2912", null, "55826", null, "4036", null, "94035", null, "5374", null, "91.7", null, "0.8", null, "53.2", null, "1.2", null, "46.8", null, "1.2", null, "49.7", null, "1.4", null, "11.7", null, "1.0", null, "5.0", null, "0.8", null, "6.7", null, "0.8", null, "38.6", null, "1.4", null, "21.4", null, "1.3", null, "15.7", null, "0.9", null, "5.6", null, "1.0", null, "2.7", null, "0.7", null, "2.9", null, "0.6", null, "0.2", null, "0.1", null, "78.6", null, "1.3", null, "34.0", null, "1.2", null, "6.1", null, "0.7", null, "2.3", null, "0.5", null, "3.8", null, "0.6", null, "38.4", null, "1.4", null, "8.3", null, "1.0", null, "91.7", null, "1.0", null, "27.7", null, "1.4", null, "72.3", null, "1.4", null, "76.2", null, "1.3", null, "3.0", null, "0.7", null, "0.9", null, "0.4", null, "2.9", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "3.6", null, "0.7", null, "13.2", null, "1.2", null, "18.6", null, "1.1", null, "71.1", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "26.0", null, "1.5", null, "27.5", null, "1.9", null, "46.4", null, "2.0", null, "04", "06"], ["5001900US0407", "Congressional District 7 (119th Congress), Arizona", "303254", null, "7164", null, "124981", null, "4779", null, "178273", null, "7058", null, "121845", null, "5674", null, "75676", null, "5527", null, "21653", null, "3367", null, "54023", null, "4857", null, "105733", null, "7322", null, "90285", null, "5729", null, "48687", null, "4086", null, "41101", null, "4590", null, "10041", null, "2570", null, "31060", null, "4043", null, "497", null, "459", null, "212969", null, "7668", null, "73158", null, "4935", null, "34575", null, "3722", null, "11612", null, "2138", null, "22963", null, "3274", null, "105236", null, "7290", null, "55529", null, "5026", null, "247725", null, "6368", null, "88718", null, "4652", null, "214536", null, "7374", null, "131273", null, "5809", null, "10325", null, "2019", null, "10643", null, "2069", null, "7923", null, "2013", null, "-999999999", "N", "-999999999", "N", "47377", null, "4876", null, "95142", null, "5596", null, "165886", null, "5374", null, "104949", null, "4408", null, "60932", null, "2988", null, "197521", null, "6369", null, "30207", null, "3207", null, "73589", null, "5344", null, "93725", null, "5578", null, "-888888888", "(X)", "-888888888", "(X)", "41.2", null, "1.5", null, "58.8", null, "1.5", null, "40.2", null, "1.8", null, "25.0", null, "1.8", null, "7.1", null, "1.1", null, "17.8", null, "1.6", null, "34.9", null, "2.0", null, "29.8", null, "1.8", null, "16.1", null, "1.4", null, "13.6", null, "1.5", null, "3.3", null, "0.8", null, "10.2", null, "1.3", null, "0.2", null, "0.2", null, "70.2", null, "1.8", null, "24.1", null, "1.6", null, "11.4", null, "1.3", null, "3.8", null, "0.7", null, "7.6", null, "1.1", null, "34.7", null, "2.0", null, "18.3", null, "1.5", null, "81.7", null, "1.5", null, "29.3", null, "1.5", null, "70.7", null, "1.5", null, "43.3", null, "1.6", null, "3.4", null, "0.7", null, "3.5", null, "0.7", null, "2.6", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "15.6", null, "1.5", null, "31.4", null, "1.7", null, "54.7", null, "1.4", null, "34.6", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.3", null, "1.5", null, "37.3", null, "2.3", null, "47.5", null, "2.5", null, "54716", null, "4395", null, "24665", null, "3247", null, "30051", null, "3603", null, "13540", null, "2224", null, "25225", null, "3457", null, "6257", null, "2056", null, "18968", null, "2933", null, "15951", null, "2779", null, "24868", null, "2781", null, "7734", null, "1513", null, "16858", null, "2819", null, "3854", null, "1601", null, "13004", null, "2517", null, "276", null, "363", null, "29848", null, "3162", null, "5806", null, "1499", null, "8367", null, "1659", null, "2403", null, "1091", null, "5964", null, "1236", null, "15675", null, "2761", null, "23007", null, "3296", null, "31709", null, "3691", null, "24392", null, "2838", null, "30324", null, "3245", null, "18711", null, "2537", null, "2579", null, "984", null, "2614", null, "882", null, "815", null, "506", null, "-999999999", "N", "-999999999", "N", "9888", null, "2035", null, "19960", null, "3154", null, "36025", null, "3660", null, "12696", null, "2157", null, "36904", null, "3507", null, "38765", null, "3843", null, "6520", null, "1829", null, "18903", null, "2663", null, "13342", null, "2127", null, "18.0", null, "1.4", null, "45.1", null, "4.8", null, "54.9", null, "4.8", null, "24.7", null, "3.9", null, "46.1", null, "4.8", null, "11.4", null, "3.5", null, "34.7", null, "4.6", null, "29.2", null, "4.4", null, "45.4", null, "3.6", null, "14.1", null, "2.7", null, "30.8", null, "4.3", null, "7.0", null, "2.8", null, "23.8", null, "4.2", null, "0.5", null, "0.7", null, "54.6", null, "3.6", null, "10.6", null, "2.7", null, "15.3", null, "2.7", null, "4.4", null, "1.9", null, "10.9", null, "2.1", null, "28.6", null, "4.4", null, "42.0", null, "4.9", null, "58.0", null, "4.9", null, "44.6", null, "3.8", null, "55.4", null, "3.8", null, "34.2", null, "4.0", null, "4.7", null, "1.7", null, "4.8", null, "1.6", null, "1.5", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "18.1", null, "3.6", null, "36.5", null, "4.5", null, "65.8", null, "4.1", null, "23.2", null, "3.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.8", null, "4.2", null, "48.8", null, "5.2", null, "34.4", null, "4.5", null, "248538", null, "7822", null, "100316", null, "4087", null, "148222", null, "7024", null, "108305", null, "5850", null, "50451", null, "4672", null, "15396", null, "2408", null, "35055", null, "3899", null, "89782", null, "6850", null, "65417", null, "4786", null, "40953", null, "3784", null, "24243", null, "3406", null, "6187", null, "1820", null, "18056", null, "2889", null, "221", null, "321", null, "183121", null, "7934", null, "67352", null, "4993", null, "26208", null, "3389", null, "9209", null, "1866", null, "16999", null, "3002", null, "89561", null, "6774", null, "32522", null, "4093", null, "216016", null, "7102", null, "64326", null, "3918", null, "184212", null, "7870", null, "112562", null, "5667", null, "7746", null, "1868", null, "8029", null, "1810", null, "7108", null, "1963", null, "-999999999", "N", "-999999999", "N", "37489", null, "4463", null, "75182", null, "5474", null, "129861", null, "5805", null, "92253", null, "4655", null, "67743", null, "2712", null, "158756", null, "6502", null, "23687", null, "2725", null, "54686", null, "4661", null, "80383", null, "5693", null, "82.0", null, "1.4", null, "40.4", null, "1.6", null, "59.6", null, "1.6", null, "43.6", null, "2.1", null, "20.3", null, "1.9", null, "6.2", null, "0.9", null, "14.1", null, "1.6", null, "36.1", null, "2.2", null, "26.3", null, "1.9", null, "16.5", null, "1.5", null, "9.8", null, "1.3", null, "2.5", null, "0.7", null, "7.3", null, "1.2", null, "0.1", null, "0.1", null, "73.7", null, "1.9", null, "27.1", null, "1.8", null, "10.5", null, "1.4", null, "3.7", null, "0.8", null, "6.8", null, "1.2", null, "36.0", null, "2.2", null, "13.1", null, "1.5", null, "86.9", null, "1.5", null, "25.9", null, "1.6", null, "74.1", null, "1.6", null, "45.3", null, "1.8", null, "3.1", null, "0.7", null, "3.2", null, "0.7", null, "2.9", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "15.1", null, "1.7", null, "30.2", null, "2.0", null, "52.2", null, "1.7", null, "37.1", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.9", null, "1.6", null, "34.4", null, "2.6", null, "50.6", null, "2.9", null, "04", "07"], ["5001900US0408", "Congressional District 8 (119th Congress), Arizona", "327560", null, "7881", null, "164928", null, "6415", null, "162632", null, "5412", null, "157792", null, "5513", null, "54294", null, "4659", null, "17744", null, "2696", null, "36550", null, "4120", null, "115474", null, "6580", null, "78846", null, "4970", null, "52235", null, "4602", null, "25855", null, "3471", null, "7468", null, "1800", null, "18387", null, "3055", null, "756", null, "552", null, "248714", null, "8646", null, "105557", null, "5293", null, "28439", null, "2970", null, "10276", null, "2213", null, "18163", null, "2437", null, "114718", null, "6520", null, "32756", null, "3631", null, "294804", null, "7611", null, "96368", null, "5697", null, "231192", null, "7600", null, "243645", null, "7107", null, "10615", null, "2207", null, "2959", null, "1244", null, "16782", null, "2609", null, "-999999999", "N", "-999999999", "N", "13216", null, "2171", null, "39595", null, "4343", null, "54445", null, "4600", null, "229714", null, "6406", null, "85593", null, "2949", null, "212086", null, "6175", null, "41168", null, "3351", null, "61391", null, "5116", null, "109527", null, "4778", null, "-888888888", "(X)", "-888888888", "(X)", "50.4", null, "1.4", null, "49.6", null, "1.4", null, "48.2", null, "1.6", null, "16.6", null, "1.3", null, "5.4", null, "0.8", null, "11.2", null, "1.2", null, "35.3", null, "1.6", null, "24.1", null, "1.5", null, "15.9", null, "1.5", null, "7.9", null, "1.0", null, "2.3", null, "0.5", null, "5.6", null, "0.9", null, "0.2", null, "0.2", null, "75.9", null, "1.5", null, "32.2", null, "1.5", null, "8.7", null, "0.9", null, "3.1", null, "0.7", null, "5.5", null, "0.7", null, "35.0", null, "1.6", null, "10.0", null, "1.1", null, "90.0", null, "1.1", null, "29.4", null, "1.6", null, "70.6", null, "1.6", null, "74.4", null, "1.5", null, "3.2", null, "0.7", null, "0.9", null, "0.4", null, "5.1", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "4.0", null, "0.7", null, "12.1", null, "1.3", null, "16.6", null, "1.3", null, "70.1", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "19.4", null, "1.5", null, "28.9", null, "2.1", null, "51.6", null, "2.0", null, "23366", null, "3179", null, "10371", null, "1909", null, "12995", null, "2484", null, "6875", null, "1752", null, "10778", null, "2249", null, "2392", null, "926", null, "8386", null, "1924", null, "5713", null, "1357", null, "10656", null, "2072", null, "4024", null, "1305", null, "6632", null, "1811", null, "1320", null, "669", null, "5312", null, "1602", null, "0", null, "237", null, "12710", null, "2198", null, "2851", null, "1276", null, "4146", null, "1195", null, "1072", null, "584", null, "3074", null, "1143", null, "5713", null, "1357", null, "5959", null, "1647", null, "17407", null, "2742", null, "11898", null, "2385", null, "11468", null, "2088", null, "14070", null, "2217", null, "937", null, "447", null, "478", null, "484", null, "489", null, "386", null, "-999999999", "N", "-999999999", "N", "2254", null, "1000", null, "5138", null, "1941", null, "7840", null, "2294", null, "12406", null, "2172", null, "60382", null, "14357", null, "17653", null, "2937", null, "2318", null, "1044", null, "7063", null, "1701", null, "8272", null, "1937", null, "7.1", null, "1.0", null, "44.4", null, "6.5", null, "55.6", null, "6.5", null, "29.4", null, "6.3", null, "46.1", null, "6.3", null, "10.2", null, "3.6", null, "35.9", null, "6.0", null, "24.5", null, "5.5", null, "45.6", null, "6.1", null, "17.2", null, "5.5", null, "28.4", null, "5.9", null, "5.6", null, "2.7", null, "22.7", null, "5.5", null, "0.0", null, "1.0", null, "54.4", null, "6.1", null, "12.2", null, "4.9", null, "17.7", null, "4.6", null, "4.6", null, "2.4", null, "13.2", null, "4.7", null, "24.5", null, "5.5", null, "25.5", null, "6.1", null, "74.5", null, "6.1", null, "50.9", null, "6.7", null, "49.1", null, "6.7", null, "60.2", null, "7.2", null, "4.0", null, "1.9", null, "2.0", null, "2.1", null, "2.1", null, "1.7", null, "-999999999.0", "N", "-999999999.0", "N", "9.6", null, "3.8", null, "22.0", null, "7.2", null, "33.6", null, "7.6", null, "53.1", null, "7.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.1", null, "5.2", null, "40.0", null, "7.5", null, "46.9", null, "8.2", null, "304194", null, "8385", null, "154557", null, "6330", null, "149637", null, "5819", null, "150917", null, "5699", null, "43516", null, "4158", null, "15352", null, "2594", null, "28164", null, "3535", null, "109761", null, "6442", null, "68190", null, "4615", null, "48211", null, "4223", null, "19223", null, "2970", null, "6148", null, "1671", null, "13075", null, "2357", null, "756", null, "552", null, "236004", null, "8900", null, "102706", null, "5515", null, "24293", null, "2788", null, "9204", null, "2073", null, "15089", null, "2193", null, "109005", null, "6389", null, "26797", null, "3415", null, "277397", null, "8268", null, "84470", null, "5898", null, "219724", null, "7443", null, "229575", null, "7116", null, "9678", null, "2138", null, "2481", null, "1220", null, "16293", null, "2616", null, "-999999999", "N", "-999999999", "N", "10962", null, "2025", null, "34457", null, "3987", null, "46605", null, "4503", null, "217308", null, "6410", null, "87574", null, "3053", null, "194433", null, "6322", null, "38850", null, "3334", null, "54328", null, "4943", null, "101255", null, "4661", null, "92.9", null, "1.0", null, "50.8", null, "1.4", null, "49.2", null, "1.4", null, "49.6", null, "1.8", null, "14.3", null, "1.3", null, "5.0", null, "0.8", null, "9.3", null, "1.1", null, "36.1", null, "1.6", null, "22.4", null, "1.5", null, "15.8", null, "1.5", null, "6.3", null, "0.9", null, "2.0", null, "0.5", null, "4.3", null, "0.8", null, "0.2", null, "0.2", null, "77.6", null, "1.5", null, "33.8", null, "1.6", null, "8.0", null, "0.9", null, "3.0", null, "0.7", null, "5.0", null, "0.7", null, "35.8", null, "1.6", null, "8.8", null, "1.1", null, "91.2", null, "1.1", null, "27.8", null, "1.7", null, "72.2", null, "1.7", null, "75.5", null, "1.6", null, "3.2", null, "0.7", null, "0.8", null, "0.4", null, "5.4", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "3.6", null, "0.7", null, "11.3", null, "1.2", null, "15.3", null, "1.3", null, "71.4", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "20.0", null, "1.6", null, "27.9", null, "2.2", null, "52.1", null, "2.0", null, "04", "08"], ["5001900US0409", "Congressional District 9 (119th Congress), Arizona", "360901", null, "6384", null, "177108", null, "5517", null, "183793", null, "5886", null, "185441", null, "6270", null, "60077", null, "5010", null, "19465", null, "3614", null, "40612", null, "3490", null, "115383", null, "6812", null, "106186", null, "4810", null, "69799", null, "4447", null, "35822", null, "3933", null, "11841", null, "2914", null, "23981", null, "2532", null, "565", null, "478", null, "254715", null, "7785", null, "115642", null, "5855", null, "24255", null, "2883", null, "7624", null, "1843", null, "16631", null, "2582", null, "114818", null, "6761", null, "37299", null, "3374", null, "323602", null, "6799", null, "108446", null, "5141", null, "252455", null, "7159", null, "253340", null, "6093", null, "15290", null, "2524", null, "5981", null, "1184", null, "8460", null, "1669", null, "-999999999", "N", "-999999999", "N", "36150", null, "4057", null, "41401", null, "4206", null, "81715", null, "5181", null, "236353", null, "5897", null, "80463", null, "2437", null, "245518", null, "6472", null, "53582", null, "3386", null, "72229", null, "5347", null, "119707", null, "5493", null, "-888888888", "(X)", "-888888888", "(X)", "49.1", null, "1.3", null, "50.9", null, "1.3", null, "51.4", null, "1.8", null, "16.6", null, "1.3", null, "5.4", null, "1.0", null, "11.3", null, "0.9", null, "32.0", null, "1.7", null, "29.4", null, "1.4", null, "19.3", null, "1.4", null, "9.9", null, "1.0", null, "3.3", null, "0.8", null, "6.6", null, "0.7", null, "0.2", null, "0.1", null, "70.6", null, "1.4", null, "32.0", null, "1.5", null, "6.7", null, "0.8", null, "2.1", null, "0.5", null, "4.6", null, "0.7", null, "31.8", null, "1.7", null, "10.3", null, "0.9", null, "89.7", null, "0.9", null, "30.0", null, "1.4", null, "70.0", null, "1.4", null, "70.2", null, "1.5", null, "4.2", null, "0.7", null, "1.7", null, "0.3", null, "2.3", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "10.0", null, "1.1", null, "11.5", null, "1.1", null, "22.6", null, "1.3", null, "65.5", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "21.8", null, "1.3", null, "29.4", null, "1.9", null, "48.8", null, "2.0", null, "38586", null, "3410", null, "16706", null, "2133", null, "21880", null, "3340", null, "15454", null, "2420", null, "12164", null, "2149", null, "3393", null, "1165", null, "8771", null, "1999", null, "10968", null, "1914", null, "19420", null, "2898", null, "11211", null, "2111", null, "8149", null, "2022", null, "1864", null, "1081", null, "6285", null, "1751", null, "60", null, "104", null, "19166", null, "2318", null, "4243", null, "1146", null, "4015", null, "1084", null, "1529", null, "736", null, "2486", null, "890", null, "10908", null, "1900", null, "11352", null, "1997", null, "27234", null, "3146", null, "19647", null, "2758", null, "18939", null, "2845", null, "24696", null, "2910", null, "1592", null, "772", null, "664", null, "339", null, "637", null, "535", null, "-999999999", "N", "-999999999", "N", "5303", null, "1656", null, "5694", null, "1971", null, "12637", null, "2453", null, "21576", null, "2405", null, "51862", null, "5869", null, "27618", null, "2836", null, "4847", null, "1164", null, "10328", null, "2145", null, "12443", null, "2398", null, "10.7", null, "0.9", null, "43.3", null, "5.5", null, "56.7", null, "5.5", null, "40.1", null, "5.3", null, "31.5", null, "4.8", null, "8.8", null, "2.9", null, "22.7", null, "4.7", null, "28.4", null, "4.1", null, "50.3", null, "5.2", null, "29.1", null, "4.6", null, "21.1", null, "4.6", null, "4.8", null, "2.7", null, "16.3", null, "4.2", null, "0.2", null, "0.3", null, "49.7", null, "5.2", null, "11.0", null, "3.0", null, "10.4", null, "2.9", null, "4.0", null, "2.0", null, "6.4", null, "2.3", null, "28.3", null, "4.1", null, "29.4", null, "4.7", null, "70.6", null, "4.7", null, "50.9", null, "5.8", null, "49.1", null, "5.8", null, "64.0", null, "5.6", null, "4.1", null, "1.9", null, "1.7", null, "0.9", null, "1.7", null, "1.4", null, "-999999999.0", "N", "-999999999.0", "N", "13.7", null, "4.1", null, "14.8", null, "4.9", null, "32.8", null, "5.2", null, "55.9", null, "5.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.6", null, "4.2", null, "37.4", null, "6.9", null, "45.1", null, "6.8", null, "322315", null, "6885", null, "160402", null, "5600", null, "161913", null, "6614", null, "169987", null, "5914", null, "47913", null, "4524", null, "16072", null, "3265", null, "31841", null, "3331", null, "104415", null, "6277", null, "86766", null, "4954", null, "58588", null, "4164", null, "27673", null, "3642", null, "9977", null, "2648", null, "17696", null, "2578", null, "505", null, "440", null, "235549", null, "7351", null, "111399", null, "5787", null, "20240", null, "2587", null, "6095", null, "1731", null, "14145", null, "2327", null, "103910", null, "6228", null, "25947", null, "3256", null, "296368", null, "6932", null, "88799", null, "4775", null, "233516", null, "7087", null, "228644", null, "6300", null, "13698", null, "2378", null, "5317", null, "1126", null, "7823", null, "1547", null, "-999999999", "N", "-999999999", "N", "30847", null, "3876", null, "35707", null, "3915", null, "69078", null, "4920", null, "214777", null, "5985", null, "83531", null, "4173", null, "217900", null, "6762", null, "48735", null, "3096", null, "61901", null, "4982", null, "107264", null, "5213", null, "89.3", null, "0.9", null, "49.8", null, "1.6", null, "50.2", null, "1.6", null, "52.7", null, "1.9", null, "14.9", null, "1.3", null, "5.0", null, "1.0", null, "9.9", null, "0.9", null, "32.4", null, "1.7", null, "26.9", null, "1.5", null, "18.2", null, "1.4", null, "8.6", null, "1.1", null, "3.1", null, "0.8", null, "5.5", null, "0.8", null, "0.2", null, "0.1", null, "73.1", null, "1.5", null, "34.6", null, "1.7", null, "6.3", null, "0.8", null, "1.9", null, "0.5", null, "4.4", null, "0.7", null, "32.2", null, "1.7", null, "8.1", null, "1.0", null, "91.9", null, "1.0", null, "27.6", null, "1.4", null, "72.4", null, "1.4", null, "70.9", null, "1.5", null, "4.2", null, "0.7", null, "1.6", null, "0.4", null, "2.4", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "9.6", null, "1.2", null, "11.1", null, "1.1", null, "21.4", null, "1.3", null, "66.6", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "22.4", null, "1.4", null, "28.4", null, "1.9", null, "49.2", null, "2.0", null, "04", "09"], ["5001900US0501", "Congressional District 1 (119th Congress), Arkansas", "304167", null, "4410", null, "135742", null, "2917", null, "168425", null, "4194", null, "139159", null, "5188", null, "57723", null, "3455", null, "14756", null, "1729", null, "42967", null, "2905", null, "107285", null, "5130", null, "91812", null, "4014", null, "54370", null, "3201", null, "36875", null, "3038", null, "9226", null, "1285", null, "27649", null, "2578", null, "567", null, "370", null, "212355", null, "4789", null, "84789", null, "4138", null, "20848", null, "2283", null, "5530", null, "1287", null, "15318", null, "1848", null, "106718", null, "5152", null, "59865", null, "3770", null, "244302", null, "5364", null, "117311", null, "4536", null, "186856", null, "5135", null, "232660", null, "4002", null, "46257", null, "2119", null, "876", null, "451", null, "-999999999", "N", "-999999999", "N", "-999999999", "N", "-999999999", "N", "2491", null, "765", null, "20178", null, "1799", null, "10855", null, "1280", null, "229629", null, "3952", null, "52325", null, "1751", null, "196882", null, "5758", null, "38178", null, "3185", null, "71245", null, "4259", null, "87459", null, "4273", null, "-888888888", "(X)", "-888888888", "(X)", "44.6", null, "0.9", null, "55.4", null, "0.9", null, "45.8", null, "1.5", null, "19.0", null, "1.1", null, "4.9", null, "0.6", null, "14.1", null, "0.9", null, "35.3", null, "1.6", null, "30.2", null, "1.2", null, "17.9", null, "1.0", null, "12.1", null, "1.0", null, "3.0", null, "0.4", null, "9.1", null, "0.8", null, "0.2", null, "0.1", null, "69.8", null, "1.2", null, "27.9", null, "1.3", null, "6.9", null, "0.8", null, "1.8", null, "0.4", null, "5.0", null, "0.6", null, "35.1", null, "1.6", null, "19.7", null, "1.2", null, "80.3", null, "1.2", null, "38.6", null, "1.4", null, "61.4", null, "1.4", null, "76.5", null, "0.7", null, "15.2", null, "0.7", null, "0.3", null, "0.1", null, "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "0.8", null, "0.3", null, "6.6", null, "0.6", null, "3.6", null, "0.4", null, "75.5", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "19.4", null, "1.5", null, "36.2", null, "1.8", null, "44.4", null, "1.9", null, "39659", null, "3507", null, "16211", null, "1876", null, "23448", null, "3156", null, "7741", null, "1443", null, "14956", null, "2189", null, "2687", null, "826", null, "12269", null, "1975", null, "16962", null, "2440", null, "15939", null, "2034", null, "5051", null, "1127", null, "10570", null, "1806", null, "1767", null, "698", null, "8803", null, "1558", null, "318", null, "313", null, "23720", null, "2656", null, "2690", null, "834", null, "4386", null, "1230", null, "920", null, "503", null, "3466", null, "1218", null, "16644", null, "2422", null, "24441", null, "2715", null, "15218", null, "2223", null, "24026", null, "2904", null, "15633", null, "2409", null, "22447", null, "2419", null, "12702", null, "2011", null, "26", null, "38", null, "-999999999", "N", "-999999999", "N", "-999999999", "N", "-999999999", "N", "255", null, "234", null, "4168", null, "1361", null, "1862", null, "860", null, "22138", null, "2382", null, "17976", null, "2439", null, "22697", null, "2630", null, "6005", null, "1345", null, "12366", null, "2012", null, "4326", null, "1047", null, "13.0", null, "1.1", null, "40.9", null, "4.5", null, "59.1", null, "4.5", null, "19.5", null, "3.4", null, "37.7", null, "4.4", null, "6.8", null, "2.0", null, "30.9", null, "4.1", null, "42.8", null, "4.6", null, "40.2", null, "3.9", null, "12.7", null, "2.7", null, "26.7", null, "3.9", null, "4.5", null, "1.7", null, "22.2", null, "3.5", null, "0.8", null, "0.8", null, "59.8", null, "3.9", null, "6.8", null, "2.1", null, "11.1", null, "2.9", null, "2.3", null, "1.3", null, "8.7", null, "2.9", null, "42.0", null, "4.7", null, "61.6", null, "4.4", null, "38.4", null, "4.4", null, "60.6", null, "5.0", null, "39.4", null, "5.0", null, "56.6", null, "4.3", null, "32.0", null, "4.0", null, "0.1", null, "0.1", null, "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "0.6", null, "0.6", null, "10.5", null, "3.2", null, "4.7", null, "2.1", null, "55.8", null, "4.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "26.5", null, "5.3", null, "54.5", null, "5.7", null, "19.1", null, "4.1", null, "264508", null, "4830", null, "119531", null, "3093", null, "144977", null, "4374", null, "131418", null, "4833", null, "42767", null, "3250", null, "12069", null, "1667", null, "30698", null, "2568", null, "90323", null, "5049", null, "75873", null, "3750", null, "49319", null, "3042", null, "26305", null, "2833", null, "7459", null, "1285", null, "18846", null, "2407", null, "249", null, "214", null, "188635", null, "4885", null, "82099", null, "4033", null, "16462", null, "2121", null, "4610", null, "1118", null, "11852", null, "1682", null, "90074", null, "5025", null, "35424", null, "3296", null, "229084", null, "5691", null, "93285", null, "4014", null, "171223", null, "5323", null, "210213", null, "4354", null, "33555", null, "2588", null, "850", null, "456", null, "-999999999", "N", "-999999999", "N", "-999999999", "N", "-999999999", "N", "2236", null, "696", null, "16010", null, "1830", null, "8993", null, "1304", null, "207491", null, "4276", null, "59039", null, "2537", null, "174185", null, "5079", null, "32173", null, "2704", null, "58879", null, "3874", null, "83133", null, "4075", null, "87.0", null, "1.1", null, "45.2", null, "1.1", null, "54.8", null, "1.1", null, "49.7", null, "1.7", null, "16.2", null, "1.2", null, "4.6", null, "0.6", null, "11.6", null, "1.0", null, "34.1", null, "1.7", null, "28.7", null, "1.3", null, "18.6", null, "1.1", null, "9.9", null, "1.0", null, "2.8", null, "0.5", null, "7.1", null, "0.9", null, "0.1", null, "0.1", null, "71.3", null, "1.3", null, "31.0", null, "1.5", null, "6.2", null, "0.8", null, "1.7", null, "0.4", null, "4.5", null, "0.6", null, "34.1", null, "1.7", null, "13.4", null, "1.3", null, "86.6", null, "1.3", null, "35.3", null, "1.5", null, "64.7", null, "1.5", null, "79.5", null, "0.9", null, "12.7", null, "0.9", null, "0.3", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "0.8", null, "0.3", null, "6.1", null, "0.7", null, "3.4", null, "0.5", null, "78.4", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.5", null, "1.4", null, "33.8", null, "2.0", null, "47.7", null, "1.9", null, "05", "01"], ["5001900US0502", "Congressional District 2 (119th Congress), Arkansas", "328094", null, "4294", null, "134263", null, "3288", null, "193831", null, "4668", null, "145669", null, "6031", null, "54770", null, "4400", null, "13857", null, "2262", null, "40913", null, "4114", null, "127655", null, "6182", null, "90195", null, "4299", null, "54965", null, "4121", null, "34763", null, "3466", null, "7886", null, "1875", null, "26877", null, "3354", null, "467", null, "356", null, "237899", null, "5972", null, "90704", null, "4088", null, "20007", null, "2671", null, "5971", null, "1396", null, "14036", null, "2210", null, "127188", null, "6105", null, "48801", null, "4165", null, "279293", null, "4905", null, "101596", null, "6286", null, "226498", null, "6308", null, "229778", null, "3930", null, "69866", null, "3736", null, "-999999999", "N", "-999999999", "N", "5108", null, "1275", null, "-999999999", "N", "-999999999", "N", "6001", null, "1296", null, "16897", null, "2562", null, "15782", null, "1725", null, "225898", null, "3921", null, "67021", null, "2144", null, "200439", null, "5106", null, "36396", null, "2836", null, "63572", null, "4455", null, "100471", null, "5531", null, "-888888888", "(X)", "-888888888", "(X)", "40.9", null, "1.0", null, "59.1", null, "1.0", null, "44.4", null, "1.9", null, "16.7", null, "1.3", null, "4.2", null, "0.7", null, "12.5", null, "1.2", null, "38.9", null, "1.6", null, "27.5", null, "1.3", null, "16.8", null, "1.3", null, "10.6", null, "1.0", null, "2.4", null, "0.6", null, "8.2", null, "1.0", null, "0.1", null, "0.1", null, "72.5", null, "1.3", null, "27.6", null, "1.2", null, "6.1", null, "0.8", null, "1.8", null, "0.4", null, "4.3", null, "0.7", null, "38.8", null, "1.6", null, "14.9", null, "1.2", null, "85.1", null, "1.2", null, "31.0", null, "1.8", null, "69.0", null, "1.8", null, "70.0", null, "1.0", null, "21.3", null, "1.1", null, "-999999999.0", "N", "-999999999.0", "N", "1.6", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "1.8", null, "0.4", null, "5.2", null, "0.8", null, "4.8", null, "0.5", null, "68.9", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.2", null, "1.4", null, "31.7", null, "2.1", null, "50.1", null, "2.3", null, "21193", null, "3280", null, "8203", null, "1695", null, "12990", null, "2662", null, "4862", null, "1604", null, "7599", null, "1973", null, "1692", null, "884", null, "5907", null, "1751", null, "8732", null, "1797", null, "8202", null, "2154", null, "3322", null, "1332", null, "4880", null, "1611", null, "637", null, "549", null, "4243", null, "1500", null, "0", null, "213", null, "12991", null, "2195", null, "1540", null, "624", null, "2719", null, "1002", null, "1055", null, "750", null, "1664", null, "683", null, "8732", null, "1797", null, "10705", null, "2072", null, "10488", null, "2389", null, "12935", null, "2223", null, "8258", null, "2035", null, "12678", null, "2385", null, "6053", null, "1737", null, "-999999999", "N", "-999999999", "N", "239", null, "395", null, "-999999999", "N", "-999999999", "N", "240", null, "302", null, "1959", null, "1007", null, "673", null, "536", null, "12646", null, "2377", null, "20924", null, "5221", null, "12461", null, "2623", null, "3614", null, "1291", null, "4527", null, "1396", null, "4320", null, "1472", null, "6.5", null, "1.0", null, "38.7", null, "6.7", null, "61.3", null, "6.7", null, "22.9", null, "6.2", null, "35.9", null, "7.5", null, "8.0", null, "4.0", null, "27.9", null, "7.1", null, "41.2", null, "6.9", null, "38.7", null, "7.0", null, "15.7", null, "5.5", null, "23.0", null, "6.4", null, "3.0", null, "2.5", null, "20.0", null, "6.2", null, "0.0", null, "0.9", null, "61.3", null, "7.0", null, "7.3", null, "2.7", null, "12.8", null, "4.6", null, "5.0", null, "3.5", null, "7.9", null, "3.2", null, "41.2", null, "6.9", null, "50.5", null, "7.4", null, "49.5", null, "7.4", null, "61.0", null, "6.4", null, "39.0", null, "6.4", null, "59.8", null, "7.1", null, "28.6", null, "7.1", null, "-999999999.0", "N", "-999999999.0", "N", "1.1", null, "1.8", null, "-999999999.0", "N", "-999999999.0", "N", "1.1", null, "1.4", null, "9.2", null, "4.4", null, "3.2", null, "2.5", null, "59.7", null, "7.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "29.0", null, "8.1", null, "36.3", null, "9.0", null, "34.7", null, "9.0", null, "306901", null, "5386", null, "126060", null, "3225", null, "180841", null, "5408", null, "140807", null, "5748", null, "47171", null, "4395", null, "12165", null, "2037", null, "35006", null, "4103", null, "118923", null, "6403", null, "81993", null, "4368", null, "51643", null, "3900", null, "29883", null, "3238", null, "7249", null, "1720", null, "22634", null, "3149", null, "467", null, "356", null, "224908", null, "6317", null, "89164", null, "4114", null, "17288", null, "2451", null, "4916", null, "1091", null, "12372", null, "2112", null, "118456", null, "6320", null, "38096", null, "4121", null, "268805", null, "5360", null, "88661", null, "5594", null, "218240", null, "6669", null, "217100", null, "4707", null, "63813", null, "3869", null, "-999999999", "N", "-999999999", "N", "4869", null, "1178", null, "-999999999", "N", "-999999999", "N", "5761", null, "1324", null, "14938", null, "2235", null, "15109", null, "1770", null, "213252", null, "4690", null, "70011", null, "2381", null, "187978", null, "5271", null, "32782", null, "2518", null, "59045", null, "4458", null, "96151", null, "5624", null, "93.5", null, "1.0", null, "41.1", null, "1.1", null, "58.9", null, "1.1", null, "45.9", null, "2.0", null, "15.4", null, "1.4", null, "4.0", null, "0.7", null, "11.4", null, "1.3", null, "38.7", null, "1.8", null, "26.7", null, "1.4", null, "16.8", null, "1.3", null, "9.7", null, "1.0", null, "2.4", null, "0.6", null, "7.4", null, "1.0", null, "0.2", null, "0.1", null, "73.3", null, "1.4", null, "29.1", null, "1.4", null, "5.6", null, "0.8", null, "1.6", null, "0.4", null, "4.0", null, "0.7", null, "38.6", null, "1.7", null, "12.4", null, "1.3", null, "87.6", null, "1.3", null, "28.9", null, "1.8", null, "71.1", null, "1.8", null, "70.7", null, "1.1", null, "20.8", null, "1.2", null, "-999999999.0", "N", "-999999999.0", "N", "1.6", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "1.9", null, "0.4", null, "4.9", null, "0.7", null, "4.9", null, "0.6", null, "69.5", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.4", null, "1.3", null, "31.4", null, "2.3", null, "51.2", null, "2.4", null, "05", "02"], ["5001900US0503", "Congressional District 3 (119th Congress), Arkansas", "315551", null, "3666", null, "113287", null, "3238", null, "202264", null, "4372", null, "165283", null, "4859", null, "46889", null, "3974", null, "14997", null, "2376", null, "31892", null, "3146", null, "103379", null, "4595", null, "102206", null, "4751", null, "76186", null, "3775", null, "25096", null, "2949", null, "7872", null, "1668", null, "17224", null, "2357", null, "924", null, "560", null, "213345", null, "5114", null, "89097", null, "4144", null, "21793", null, "3161", null, "7125", null, "1509", null, "14668", null, "2808", null, "102455", null, "4538", null, "35787", null, "3007", null, "279764", null, "4473", null, "91301", null, "4113", null, "224250", null, "5173", null, "216249", null, "4328", null, "8237", null, "1347", null, "2585", null, "882", null, "11391", null, "1176", null, "1695", null, "483", null, "12626", null, "2037", null, "62768", null, "4876", null, "38812", null, "2398", null, "211987", null, "4364", null, "75345", null, "2682", null, "212172", null, "5200", null, "29646", null, "2566", null, "64598", null, "3878", null, "117928", null, "4665", null, "-888888888", "(X)", "-888888888", "(X)", "35.9", null, "1.0", null, "64.1", null, "1.0", null, "52.4", null, "1.5", null, "14.9", null, "1.2", null, "4.8", null, "0.7", null, "10.1", null, "1.0", null, "32.8", null, "1.4", null, "32.4", null, "1.4", null, "24.1", null, "1.2", null, "8.0", null, "0.9", null, "2.5", null, "0.5", null, "5.5", null, "0.7", null, "0.3", null, "0.2", null, "67.6", null, "1.4", null, "28.2", null, "1.3", null, "6.9", null, "1.0", null, "2.3", null, "0.5", null, "4.6", null, "0.9", null, "32.5", null, "1.4", null, "11.3", null, "0.9", null, "88.7", null, "0.9", null, "28.9", null, "1.3", null, "71.1", null, "1.3", null, "68.5", null, "1.3", null, "2.6", null, "0.4", null, "0.8", null, "0.3", null, "3.6", null, "0.4", null, "0.5", null, "0.2", null, "4.0", null, "0.6", null, "19.9", null, "1.5", null, "12.3", null, "0.7", null, "67.2", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.0", null, "1.2", null, "30.4", null, "1.7", null, "55.6", null, "1.5", null, "18140", null, "2307", null, "6758", null, "1578", null, "11382", null, "1914", null, "5048", null, "1239", null, "5087", null, "1258", null, "1169", null, "437", null, "3918", null, "1214", null, "8005", null, "1631", null, "7537", null, "1535", null, "3509", null, "1086", null, "3676", null, "1029", null, "879", null, "425", null, "2797", null, "1003", null, "352", null, "407", null, "10603", null, "1819", null, "1539", null, "738", null, "1411", null, "677", null, "290", null, "248", null, "1121", null, "650", null, "7653", null, "1553", null, "8841", null, "1697", null, "9299", null, "1860", null, "10979", null, "1748", null, "7161", null, "1678", null, "11561", null, "1834", null, "555", null, "551", null, "56", null, "69", null, "415", null, "388", null, "329", null, "322", null, "1401", null, "678", null, "3823", null, "1518", null, "2539", null, "917", null, "11274", null, "1791", null, "26691", null, "5869", null, "10135", null, "1615", null, "2770", null, "947", null, "4198", null, "932", null, "3167", null, "991", null, "5.7", null, "0.7", null, "37.3", null, "7.2", null, "62.7", null, "7.2", null, "27.8", null, "5.5", null, "28.0", null, "6.7", null, "6.4", null, "2.5", null, "21.6", null, "6.4", null, "44.1", null, "6.4", null, "41.5", null, "6.6", null, "19.3", null, "5.2", null, "20.3", null, "5.6", null, "4.8", null, "2.4", null, "15.4", null, "5.3", null, "1.9", null, "2.2", null, "58.5", null, "6.6", null, "8.5", null, "3.9", null, "7.8", null, "3.7", null, "1.6", null, "1.4", null, "6.2", null, "3.6", null, "42.2", null, "6.5", null, "48.7", null, "7.4", null, "51.3", null, "7.4", null, "60.5", null, "7.0", null, "39.5", null, "7.0", null, "63.7", null, "7.8", null, "3.1", null, "2.9", null, "0.3", null, "0.4", null, "2.3", null, "2.1", null, "1.8", null, "1.8", null, "7.7", null, "3.7", null, "21.1", null, "7.5", null, "14.0", null, "4.7", null, "62.1", null, "7.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "27.3", null, "7.8", null, "41.4", null, "8.1", null, "31.2", null, "7.8", null, "297411", null, "4478", null, "106529", null, "3188", null, "190882", null, "4585", null, "160235", null, "4866", null, "41802", null, "3899", null, "13828", null, "2327", null, "27974", null, "2927", null, "95374", null, "4487", null, "94669", null, "4677", null, "72677", null, "3755", null, "21420", null, "2949", null, "6993", null, "1621", null, "14427", null, "2321", null, "572", null, "357", null, "202742", null, "4947", null, "87558", null, "4057", null, "20382", null, "3140", null, "6835", null, "1485", null, "13547", null, "2706", null, "94802", null, "4432", null, "26946", null, "2864", null, "270465", null, "4548", null, "80322", null, "3950", null, "217089", null, "5637", null, "204688", null, "4414", null, "7682", null, "1385", null, "2529", null, "876", null, "10976", null, "1131", null, "1366", null, "490", null, "11225", null, "2032", null, "58945", null, "4582", null, "36273", null, "2409", null, "200713", null, "4380", null, "79150", null, "2480", null, "202037", null, "5356", null, "26876", null, "2422", null, "60400", null, "3916", null, "114761", null, "4653", null, "94.3", null, "0.7", null, "35.8", null, "1.0", null, "64.2", null, "1.0", null, "53.9", null, "1.5", null, "14.1", null, "1.3", null, "4.6", null, "0.8", null, "9.4", null, "1.0", null, "32.1", null, "1.4", null, "31.8", null, "1.4", null, "24.4", null, "1.2", null, "7.2", null, "1.0", null, "2.4", null, "0.5", null, "4.9", null, "0.8", null, "0.2", null, "0.1", null, "68.2", null, "1.4", null, "29.4", null, "1.3", null, "6.9", null, "1.0", null, "2.3", null, "0.5", null, "4.6", null, "0.9", null, "31.9", null, "1.4", null, "9.1", null, "0.9", null, "90.9", null, "0.9", null, "27.0", null, "1.3", null, "73.0", null, "1.3", null, "68.8", null, "1.3", null, "2.6", null, "0.5", null, "0.9", null, "0.3", null, "3.7", null, "0.4", null, "0.5", null, "0.2", null, "3.8", null, "0.7", null, "19.8", null, "1.5", null, "12.2", null, "0.8", null, "67.5", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.3", null, "1.2", null, "29.9", null, "1.8", null, "56.8", null, "1.6", null, "05", "03"], ["5001900US0504", "Congressional District 4 (119th Congress), Arkansas", "298942", null, "4458", null, "141698", null, "3135", null, "157244", null, "4325", null, "140037", null, "5804", null, "57392", null, "3979", null, "15507", null, "2204", null, "41885", null, "3399", null, "101513", null, "4590", null, "87083", null, "4130", null, "50551", null, "3350", null, "36145", null, "3048", null, "9030", null, "1925", null, "27115", null, "2779", null, "387", null, "250", null, "211859", null, "4097", null, "89486", null, "4318", null, "21247", null, "2479", null, "6477", null, "1175", null, "14770", null, "2120", null, "101126", null, "4578", null, "54604", null, "4021", null, "244338", null, "5843", null, "115956", null, "5252", null, "182986", null, "5995", null, "212819", null, "3521", null, "59432", null, "2912", null, "1503", null, "550", null, "-999999999", "N", "-999999999", "N", "-999999999", "N", "-999999999", "N", "6811", null, "1776", null, "16629", null, "2187", null, "17098", null, "1716", null, "208391", null, "3417", null, "54533", null, "1939", null, "197429", null, "5747", null, "44967", null, "3369", null, "66752", null, "4847", null, "85710", null, "4831", null, "-888888888", "(X)", "-888888888", "(X)", "47.4", null, "1.0", null, "52.6", null, "1.0", null, "46.8", null, "1.6", null, "19.2", null, "1.3", null, "5.2", null, "0.7", null, "14.0", null, "1.1", null, "34.0", null, "1.5", null, "29.1", null, "1.2", null, "16.9", null, "1.0", null, "12.1", null, "1.0", null, "3.0", null, "0.6", null, "9.1", null, "0.9", null, "0.1", null, "0.1", null, "70.9", null, "1.2", null, "29.9", null, "1.4", null, "7.1", null, "0.8", null, "2.2", null, "0.4", null, "4.9", null, "0.7", null, "33.8", null, "1.5", null, "18.3", null, "1.4", null, "81.7", null, "1.4", null, "38.8", null, "1.7", null, "61.2", null, "1.7", null, "71.2", null, "0.9", null, "19.9", null, "0.9", null, "0.5", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "2.3", null, "0.6", null, "5.6", null, "0.7", null, "5.7", null, "0.6", null, "69.7", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "22.8", null, "1.7", null, "33.8", null, "2.1", null, "43.4", null, "2.1", null, "32774", null, "2943", null, "12768", null, "2045", null, "20006", null, "2415", null, "7788", null, "1629", null, "14593", null, "1887", null, "2381", null, "913", null, "12212", null, "1890", null, "10393", null, "1723", null, "15670", null, "1694", null, "5352", null, "1406", null, "10256", null, "1542", null, "1388", null, "755", null, "8868", null, "1530", null, "62", null, "78", null, "17104", null, "2270", null, "2436", null, "749", null, "4337", null, "1092", null, "993", null, "474", null, "3344", null, "1030", null, "10331", null, "1718", null, "18412", null, "2086", null, "14362", null, "1925", null, "18827", null, "2383", null, "13947", null, "1905", null, "18841", null, "2090", null, "12038", null, "2212", null, "136", null, "184", null, "-999999999", "N", "-999999999", "N", "-999999999", "N", "-999999999", "N", "279", null, "231", null, "1468", null, "585", null, "823", null, "474", null, "18538", null, "2050", null, "21210", null, "2845", null, "22381", null, "2261", null, "7681", null, "1530", null, "9923", null, "1820", null, "4777", null, "1273", null, "11.0", null, "1.0", null, "39.0", null, "5.1", null, "61.0", null, "5.1", null, "23.8", null, "4.6", null, "44.5", null, "4.5", null, "7.3", null, "2.7", null, "37.3", null, "4.9", null, "31.7", null, "4.0", null, "47.8", null, "4.1", null, "16.3", null, "4.1", null, "31.3", null, "4.3", null, "4.2", null, "2.3", null, "27.1", null, "4.4", null, "0.2", null, "0.2", null, "52.2", null, "4.1", null, "7.4", null, "2.2", null, "13.2", null, "3.0", null, "3.0", null, "1.5", null, "10.2", null, "2.8", null, "31.5", null, "4.0", null, "56.2", null, "4.1", null, "43.8", null, "4.1", null, "57.4", null, "4.7", null, "42.6", null, "4.7", null, "57.5", null, "5.1", null, "36.7", null, "5.2", null, "0.4", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "0.9", null, "0.7", null, "4.5", null, "1.7", null, "2.5", null, "1.4", null, "56.6", null, "5.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "34.3", null, "6.0", null, "44.3", null, "6.7", null, "21.3", null, "5.4", null, "266168", null, "4845", null, "128930", null, "3264", null, "137238", null, "4555", null, "132249", null, "5426", null, "42799", null, "3965", null, "13126", null, "1850", null, "29673", null, "3309", null, "91120", null, "4532", null, "71413", null, "4085", null, "45199", null, "2974", null, "25889", null, "3054", null, "7642", null, "1628", null, "18247", null, "2758", null, "325", null, "239", null, "194755", null, "4256", null, "87050", null, "4146", null, "16910", null, "2297", null, "5484", null, "1227", null, "11426", null, "1860", null, "90795", null, "4514", null, "36192", null, "3150", null, "229976", null, "5919", null, "97129", null, "4486", null, "169039", null, "5755", null, "193978", null, "3865", null, "47394", null, "2690", null, "1367", null, "529", null, "-999999999", "N", "-999999999", "N", "-999999999", "N", "-999999999", "N", "6532", null, "1763", null, "15161", null, "2095", null, "16275", null, "1600", null, "189853", null, "3580", null, "59897", null, "2210", null, "175048", null, "5552", null, "37286", null, "2932", null, "56829", null, "4489", null, "80933", null, "4531", null, "89.0", null, "1.0", null, "48.4", null, "1.2", null, "51.6", null, "1.2", null, "49.7", null, "1.8", null, "16.1", null, "1.4", null, "4.9", null, "0.7", null, "11.1", null, "1.2", null, "34.2", null, "1.6", null, "26.8", null, "1.3", null, "17.0", null, "1.0", null, "9.7", null, "1.1", null, "2.9", null, "0.6", null, "6.9", null, "1.0", null, "0.1", null, "0.1", null, "73.2", null, "1.3", null, "32.7", null, "1.5", null, "6.4", null, "0.9", null, "2.1", null, "0.5", null, "4.3", null, "0.7", null, "34.1", null, "1.6", null, "13.6", null, "1.2", null, "86.4", null, "1.2", null, "36.5", null, "1.7", null, "63.5", null, "1.7", null, "72.9", null, "1.1", null, "17.8", null, "0.9", null, "0.5", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "2.5", null, "0.7", null, "5.7", null, "0.8", null, "6.1", null, "0.6", null, "71.3", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "21.3", null, "1.6", null, "32.5", null, "2.2", null, "46.2", null, "2.2", null, "05", "04"], ["5001900US0601", "Congressional District 1 (119th Congress), California", "293553", null, "4242", null, "135156", null, "3076", null, "158397", null, "3847", null, "136449", null, "5147", null, "49902", null, "4615", null, "16351", null, "2517", null, "33551", null, "3293", null, "107202", null, "5062", null, "88793", null, "3560", null, "57717", null, "3984", null, "29653", null, "3348", null, "9894", null, "2103", null, "19759", null, "2327", null, "1423", null, "896", null, "204760", null, "4285", null, "78732", null, "3904", null, "20249", null, "2731", null, "6457", null, "1318", null, "13792", null, "2286", null, "105779", null, "5028", null, "48864", null, "3739", null, "244689", null, "5232", null, "94401", null, "4377", null, "199152", null, "5112", null, "210265", null, "4046", null, "4227", null, "913", null, "5237", null, "1065", null, "13414", null, "1251", null, "1118", null, "668", null, "22490", null, "2133", null, "36802", null, "2946", null, "54018", null, "2832", null, "200391", null, "4137", null, "69829", null, "2502", null, "186351", null, "5220", null, "34647", null, "3075", null, "60204", null, "4549", null, "91500", null, "4633", null, "-888888888", "(X)", "-888888888", "(X)", "46.0", null, "0.9", null, "54.0", null, "0.9", null, "46.5", null, "1.7", null, "17.0", null, "1.5", null, "5.6", null, "0.8", null, "11.4", null, "1.1", null, "36.5", null, "1.6", null, "30.2", null, "1.1", null, "19.7", null, "1.4", null, "10.1", null, "1.1", null, "3.4", null, "0.7", null, "6.7", null, "0.8", null, "0.5", null, "0.3", null, "69.8", null, "1.1", null, "26.8", null, "1.3", null, "6.9", null, "0.9", null, "2.2", null, "0.4", null, "4.7", null, "0.8", null, "36.0", null, "1.6", null, "16.6", null, "1.3", null, "83.4", null, "1.3", null, "32.2", null, "1.4", null, "67.8", null, "1.4", null, "71.6", null, "1.0", null, "1.4", null, "0.3", null, "1.8", null, "0.4", null, "4.6", null, "0.4", null, "0.4", null, "0.2", null, "7.7", null, "0.7", null, "12.5", null, "1.0", null, "18.4", null, "0.9", null, "68.3", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.6", null, "1.5", null, "32.3", null, "2.1", null, "49.1", null, "2.4", null, "45536", null, "3324", null, "18064", null, "1858", null, "27472", null, "2711", null, "13623", null, "1954", null, "15174", null, "2208", null, "3397", null, "1006", null, "11777", null, "1860", null, "16739", null, "1942", null, "19445", null, "2258", null, "8354", null, "1508", null, "10431", null, "1889", null, "1998", null, "880", null, "8433", null, "1668", null, "660", null, "513", null, "26091", null, "2331", null, "5269", null, "1378", null, "4743", null, "1096", null, "1399", null, "622", null, "3344", null, "927", null, "16079", null, "1952", null, "19671", null, "2201", null, "25865", null, "2892", null, "23374", null, "2444", null, "22162", null, "2628", null, "27838", null, "2473", null, "2092", null, "836", null, "803", null, "348", null, "2281", null, "722", null, "99", null, "130", null, "3164", null, "891", null, "9259", null, "1710", null, "11010", null, "1910", null, "25824", null, "2350", null, "32024", null, "3929", null, "28797", null, "2903", null, "7520", null, "1621", null, "13185", null, "2282", null, "8092", null, "1545", null, "15.5", null, "1.1", null, "39.7", null, "3.4", null, "60.3", null, "3.4", null, "29.9", null, "3.6", null, "33.3", null, "3.9", null, "7.5", null, "2.1", null, "25.9", null, "3.5", null, "36.8", null, "3.8", null, "42.7", null, "3.5", null, "18.3", null, "3.1", null, "22.9", null, "3.5", null, "4.4", null, "1.9", null, "18.5", null, "3.2", null, "1.4", null, "1.1", null, "57.3", null, "3.5", null, "11.6", null, "2.9", null, "10.4", null, "2.3", null, "3.1", null, "1.3", null, "7.3", null, "2.1", null, "35.3", null, "3.8", null, "43.2", null, "4.2", null, "56.8", null, "4.2", null, "51.3", null, "4.2", null, "48.7", null, "4.2", null, "61.1", null, "3.8", null, "4.6", null, "1.8", null, "1.8", null, "0.8", null, "5.0", null, "1.6", null, "0.2", null, "0.3", null, "6.9", null, "1.9", null, "20.3", null, "3.1", null, "24.2", null, "3.4", null, "56.7", null, "3.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "26.1", null, "4.8", null, "45.8", null, "6.2", null, "28.1", null, "5.1", null, "248017", null, "4269", null, "117092", null, "3084", null, "130925", null, "4127", null, "122826", null, "5504", null, "34728", null, "3833", null, "12954", null, "2208", null, "21774", null, "2783", null, "90463", null, "4409", null, "69348", null, "3719", null, "49363", null, "3720", null, "19222", null, "2678", null, "7896", null, "1810", null, "11326", null, "1724", null, "763", null, "777", null, "178669", null, "4107", null, "73463", null, "3823", null, "15506", null, "2518", null, "5058", null, "1164", null, "10448", null, "2151", null, "89700", null, "4377", null, "29193", null, "3405", null, "218824", null, "5048", null, "71027", null, "3688", null, "176990", null, "4877", null, "182427", null, "4162", null, "2135", null, "683", null, "4434", null, "930", null, "11133", null, "1422", null, "1019", null, "652", null, "19326", null, "2103", null, "27543", null, "2928", null, "43008", null, "2610", null, "174567", null, "4174", null, "75877", null, "3311", null, "157554", null, "5409", null, "27127", null, "2429", null, "47019", null, "4122", null, "83408", null, "4749", null, "84.5", null, "1.1", null, "47.2", null, "1.2", null, "52.8", null, "1.2", null, "49.5", null, "2.0", null, "14.0", null, "1.5", null, "5.2", null, "0.9", null, "8.8", null, "1.1", null, "36.5", null, "1.7", null, "28.0", null, "1.3", null, "19.9", null, "1.4", null, "7.8", null, "1.1", null, "3.2", null, "0.7", null, "4.6", null, "0.7", null, "0.3", null, "0.3", null, "72.0", null, "1.3", null, "29.6", null, "1.4", null, "6.3", null, "1.0", null, "2.0", null, "0.5", null, "4.2", null, "0.9", null, "36.2", null, "1.7", null, "11.8", null, "1.4", null, "88.2", null, "1.4", null, "28.6", null, "1.4", null, "71.4", null, "1.4", null, "73.6", null, "1.1", null, "0.9", null, "0.3", null, "1.8", null, "0.4", null, "4.5", null, "0.6", null, "0.4", null, "0.3", null, "7.8", null, "0.9", null, "11.1", null, "1.1", null, "17.3", null, "1.0", null, "70.4", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.2", null, "1.5", null, "29.8", null, "2.3", null, "52.9", null, "2.4", null, "06", "01"], ["5001900US0602", "Congressional District 2 (119th Congress), California", "302495", null, "4430", null, "159620", null, "3602", null, "142875", null, "4220", null, "139408", null, "5349", null, "42823", null, "3491", null, "15656", null, "2363", null, "27167", null, "2796", null, "120264", null, "4888", null, "74008", null, "4118", null, "49763", null, "3606", null, "23986", null, "2894", null, "8093", null, "1954", null, "15893", null, "2207", null, "259", null, "277", null, "228487", null, "4985", null, "89645", null, "4406", null, "18837", null, "2500", null, "7563", null, "1480", null, "11274", null, "1816", null, "120005", null, "4904", null, "36727", null, "3742", null, "265768", null, "4977", null, "82851", null, "4359", null, "219644", null, "5493", null, "223142", null, "4897", null, "3531", null, "930", null, "5843", null, "1189", null, "12391", null, "1302", null, "-999999999", "N", "-999999999", "N", "23027", null, "2329", null, "34399", null, "3270", null, "47324", null, "2521", null, "216596", null, "4784", null, "97004", null, "4559", null, "182231", null, "5486", null, "31313", null, "2603", null, "56863", null, "4042", null, "94055", null, "4154", null, "-888888888", "(X)", "-888888888", "(X)", "52.8", null, "1.1", null, "47.2", null, "1.1", null, "46.1", null, "1.6", null, "14.2", null, "1.1", null, "5.2", null, "0.8", null, "9.0", null, "0.9", null, "39.8", null, "1.5", null, "24.5", null, "1.3", null, "16.5", null, "1.2", null, "7.9", null, "0.9", null, "2.7", null, "0.6", null, "5.3", null, "0.7", null, "0.1", null, "0.1", null, "75.5", null, "1.3", null, "29.6", null, "1.4", null, "6.2", null, "0.8", null, "2.5", null, "0.5", null, "3.7", null, "0.6", null, "39.7", null, "1.5", null, "12.1", null, "1.2", null, "87.9", null, "1.2", null, "27.4", null, "1.4", null, "72.6", null, "1.4", null, "73.8", null, "1.1", null, "1.2", null, "0.3", null, "1.9", null, "0.4", null, "4.1", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "7.6", null, "0.8", null, "11.4", null, "1.1", null, "15.6", null, "0.8", null, "71.6", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.2", null, "1.3", null, "31.2", null, "1.9", null, "51.6", null, "1.9", null, "38311", null, "3946", null, "17699", null, "2087", null, "20612", null, "2932", null, "6225", null, "1424", null, "11170", null, "2038", null, "2901", null, "1125", null, "8269", null, "1747", null, "20916", null, "2910", null, "11590", null, "2123", null, "4310", null, "1317", null, "7280", null, "1768", null, "1924", null, "970", null, "5356", null, "1463", null, "0", null, "225", null, "26721", null, "3015", null, "1915", null, "755", null, "3890", null, "1042", null, "977", null, "619", null, "2913", null, "923", null, "20916", null, "2910", null, "16305", null, "2578", null, "22006", null, "2669", null, "20054", null, "2698", null, "18257", null, "2746", null, "24669", null, "3174", null, "1549", null, "774", null, "1557", null, "547", null, "640", null, "452", null, "-999999999", "N", "-999999999", "N", "3658", null, "1424", null, "6238", null, "1356", null, "8202", null, "1948", null, "23903", null, "3125", null, "28544", null, "5340", null, "17395", null, "2381", null, "2427", null, "890", null, "9580", null, "1797", null, "5388", null, "1342", null, "12.7", null, "1.3", null, "46.2", null, "4.1", null, "53.8", null, "4.1", null, "16.2", null, "3.5", null, "29.2", null, "4.5", null, "7.6", null, "2.8", null, "21.6", null, "4.1", null, "54.6", null, "4.6", null, "30.3", null, "4.2", null, "11.3", null, "3.2", null, "19.0", null, "4.0", null, "5.0", null, "2.4", null, "14.0", null, "3.5", null, "0.0", null, "0.5", null, "69.7", null, "4.2", null, "5.0", null, "2.0", null, "10.2", null, "2.8", null, "2.6", null, "1.6", null, "7.6", null, "2.5", null, "54.6", null, "4.6", null, "42.6", null, "4.5", null, "57.4", null, "4.5", null, "52.3", null, "4.9", null, "47.7", null, "4.9", null, "64.4", null, "4.5", null, "4.0", null, "2.0", null, "4.1", null, "1.4", null, "1.7", null, "1.2", null, "-999999999.0", "N", "-999999999.0", "N", "9.5", null, "3.4", null, "16.3", null, "3.7", null, "21.4", null, "4.5", null, "62.4", null, "4.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.0", null, "4.5", null, "55.1", null, "6.7", null, "31.0", null, "7.1", null, "264184", null, "4967", null, "141921", null, "3688", null, "122263", null, "4536", null, "133183", null, "5479", null, "31653", null, "2948", null, "12755", null, "2095", null, "18898", null, "2434", null, "99348", null, "4589", null, "62418", null, "3637", null, "45453", null, "3446", null, "16706", null, "2274", null, "6169", null, "1681", null, "10537", null, "1662", null, "259", null, "277", null, "201766", null, "5036", null, "87730", null, "4395", null, "14947", null, "2156", null, "6586", null, "1320", null, "8361", null, "1568", null, "99089", null, "4594", null, "20422", null, "2656", null, "243762", null, "5432", null, "62797", null, "3963", null, "201387", null, "5058", null, "198473", null, "5160", null, "1982", null, "813", null, "4286", null, "1108", null, "11751", null, "1306", null, "-999999999", "N", "-999999999", "N", "19369", null, "2513", null, "28161", null, "3182", null, "39122", null, "2503", null, "192693", null, "5142", null, "109500", null, "4310", null, "164836", null, "5468", null, "28886", null, "2398", null, "47283", null, "3917", null, "88667", null, "4061", null, "87.3", null, "1.3", null, "53.7", null, "1.3", null, "46.3", null, "1.3", null, "50.4", null, "1.7", null, "12.0", null, "1.1", null, "4.8", null, "0.8", null, "7.2", null, "0.9", null, "37.6", null, "1.6", null, "23.6", null, "1.3", null, "17.2", null, "1.2", null, "6.3", null, "0.9", null, "2.3", null, "0.6", null, "4.0", null, "0.6", null, "0.1", null, "0.1", null, "76.4", null, "1.3", null, "33.2", null, "1.5", null, "5.7", null, "0.8", null, "2.5", null, "0.5", null, "3.2", null, "0.6", null, "37.5", null, "1.6", null, "7.7", null, "1.0", null, "92.3", null, "1.0", null, "23.8", null, "1.4", null, "76.2", null, "1.4", null, "75.1", null, "1.3", null, "0.8", null, "0.3", null, "1.6", null, "0.4", null, "4.4", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "7.3", null, "0.9", null, "10.7", null, "1.2", null, "14.8", null, "0.9", null, "72.9", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.5", null, "1.3", null, "28.7", null, "2.1", null, "53.8", null, "2.0", null, "06", "02"], ["5001900US0603", "Congressional District 3 (119th Congress), California", "312817", null, "4811", null, "152316", null, "3998", null, "160501", null, "4549", null, "173717", null, "5587", null, "39739", null, "3350", null, "13578", null, "2008", null, "26161", null, "2739", null, "99361", null, "5105", null, "92997", null, "3830", null, "70393", null, "3467", null, "21811", null, "2719", null, "6920", null, "1321", null, "14891", null, "2202", null, "793", null, "558", null, "219820", null, "5397", null, "103324", null, "4818", null, "17928", null, "2257", null, "6658", null, "1503", null, "11270", null, "1827", null, "98568", null, "5112", null, "26025", null, "2834", null, "286792", null, "5248", null, "83051", null, "4409", null, "229766", null, "5632", null, "237859", null, "4560", null, "4231", null, "1402", null, "2634", null, "704", null, "21121", null, "1605", null, "-999999999", "N", "-999999999", "N", "11725", null, "1952", null, "35001", null, "3491", null, "34902", null, "2791", null, "229888", null, "4590", null, "107122", null, "2989", null, "213456", null, "5195", null, "40366", null, "3135", null, "62587", null, "4466", null, "110503", null, "4909", null, "-888888888", "(X)", "-888888888", "(X)", "48.7", null, "1.1", null, "51.3", null, "1.1", null, "55.5", null, "1.6", null, "12.7", null, "1.1", null, "4.3", null, "0.6", null, "8.4", null, "0.9", null, "31.8", null, "1.5", null, "29.7", null, "1.2", null, "22.5", null, "1.0", null, "7.0", null, "0.9", null, "2.2", null, "0.4", null, "4.8", null, "0.7", null, "0.3", null, "0.2", null, "70.3", null, "1.2", null, "33.0", null, "1.5", null, "5.7", null, "0.7", null, "2.1", null, "0.5", null, "3.6", null, "0.6", null, "31.5", null, "1.5", null, "8.3", null, "0.9", null, "91.7", null, "0.9", null, "26.5", null, "1.4", null, "73.5", null, "1.4", null, "76.0", null, "1.1", null, "1.4", null, "0.5", null, "0.8", null, "0.2", null, "6.8", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "3.7", null, "0.6", null, "11.2", null, "1.1", null, "11.2", null, "0.9", null, "73.5", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.9", null, "1.3", null, "29.3", null, "2.0", null, "51.8", null, "2.0", null, "24580", null, "2489", null, "12188", null, "1969", null, "12392", null, "2150", null, "8145", null, "1428", null, "7126", null, "1453", null, "1296", null, "605", null, "5830", null, "1455", null, "9309", null, "1919", null, "9580", null, "1761", null, "5080", null, "1213", null, "4426", null, "1435", null, "646", null, "462", null, "3780", null, "1328", null, "74", null, "86", null, "15000", null, "2052", null, "3065", null, "729", null, "2700", null, "778", null, "650", null, "398", null, "2050", null, "698", null, "9235", null, "1915", null, "6980", null, "1507", null, "17600", null, "2410", null, "14028", null, "2208", null, "10552", null, "2013", null, "18245", null, "2232", null, "678", null, "739", null, "298", null, "321", null, "1470", null, "507", null, "-999999999", "N", "-999999999", "N", "1069", null, "545", null, "2820", null, "880", null, "2708", null, "872", null, "17085", null, "2268", null, "50503", null, "8504", null, "15271", null, "1953", null, "3217", null, "1007", null, "6423", null, "1278", null, "5631", null, "1111", null, "7.9", null, "0.8", null, "49.6", null, "6.6", null, "50.4", null, "6.6", null, "33.1", null, "5.1", null, "29.0", null, "5.4", null, "5.3", null, "2.3", null, "23.7", null, "5.7", null, "37.9", null, "6.2", null, "39.0", null, "5.8", null, "20.7", null, "4.6", null, "18.0", null, "5.3", null, "2.6", null, "1.8", null, "15.4", null, "5.1", null, "0.3", null, "0.4", null, "61.0", null, "5.8", null, "12.5", null, "2.8", null, "11.0", null, "3.3", null, "2.6", null, "1.6", null, "8.3", null, "3.0", null, "37.6", null, "6.1", null, "28.4", null, "5.8", null, "71.6", null, "5.8", null, "57.1", null, "6.9", null, "42.9", null, "6.9", null, "74.2", null, "4.4", null, "2.8", null, "3.0", null, "1.2", null, "1.3", null, "6.0", null, "2.1", null, "-999999999.0", "N", "-999999999.0", "N", "4.3", null, "2.2", null, "11.5", null, "3.4", null, "11.0", null, "3.6", null, "69.5", null, "4.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "21.1", null, "5.7", null, "42.1", null, "6.5", null, "36.9", null, "6.0", null, "288237", null, "5073", null, "140128", null, "3998", null, "148109", null, "5044", null, "165572", null, "5456", null, "32613", null, "3028", null, "12282", null, "2027", null, "20331", null, "2434", null, "90052", null, "5116", null, "83417", null, "3870", null, "65313", null, "3433", null, "17385", null, "2355", null, "6274", null, "1385", null, "11111", null, "1904", null, "719", null, "550", null, "204820", null, "5314", null, "100259", null, "4904", null, "15228", null, "2034", null, "6008", null, "1433", null, "9220", null, "1621", null, "89333", null, "5151", null, "19045", null, "2374", null, "269192", null, "5195", null, "69023", null, "3819", null, "219214", null, "5623", null, "219614", null, "4477", null, "3553", null, "1144", null, "2336", null, "666", null, "19651", null, "1665", null, "-999999999", "N", "-999999999", "N", "10656", null, "1878", null, "32181", null, "3410", null, "32194", null, "2831", null, "212803", null, "4658", null, "112235", null, "3742", null, "198185", null, "5141", null, "37149", null, "2941", null, "56164", null, "4257", null, "104872", null, "4894", null, "92.1", null, "0.8", null, "48.6", null, "1.3", null, "51.4", null, "1.3", null, "57.4", null, "1.7", null, "11.3", null, "1.1", null, "4.3", null, "0.7", null, "7.1", null, "0.8", null, "31.2", null, "1.6", null, "28.9", null, "1.3", null, "22.7", null, "1.1", null, "6.0", null, "0.8", null, "2.2", null, "0.5", null, "3.9", null, "0.7", null, "0.2", null, "0.2", null, "71.1", null, "1.3", null, "34.8", null, "1.7", null, "5.3", null, "0.7", null, "2.1", null, "0.5", null, "3.2", null, "0.6", null, "31.0", null, "1.6", null, "6.6", null, "0.8", null, "93.4", null, "0.8", null, "23.9", null, "1.3", null, "76.1", null, "1.3", null, "76.2", null, "1.1", null, "1.2", null, "0.4", null, "0.8", null, "0.2", null, "6.8", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "3.7", null, "0.7", null, "11.2", null, "1.1", null, "11.2", null, "1.0", null, "73.8", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.7", null, "1.4", null, "28.3", null, "2.1", null, "52.9", null, "2.1", null, "06", "03"], ["5001900US0604", "Congressional District 4 (119th Congress), California", "281688", null, "5925", null, "136068", null, "5041", null, "145620", null, "4363", null, "129858", null, "5289", null, "45220", null, "3490", null, "15039", null, "2277", null, "30181", null, "2653", null, "106610", null, "5934", null, "76940", null, "4152", null, "52283", null, "3470", null, "24003", null, "2727", null, "8828", null, "1977", null, "15175", null, "2017", null, "654", null, "427", null, "204748", null, "6598", null, "77575", null, "4430", null, "21217", null, "2602", null, "6211", null, "1537", null, "15006", null, "2002", null, "105956", null, "5850", null, "35438", null, "3245", null, "246250", null, "5934", null, "82403", null, "4579", null, "199285", null, "6283", null, "178293", null, "5639", null, "8250", null, "1520", null, "5864", null, "1661", null, "21490", null, "2626", null, "999", null, "542", null, "32749", null, "3281", null, "34043", null, "2933", null, "70440", null, "3488", null, "165712", null, "5163", null, "98067", null, "3980", null, "175078", null, "5874", null, "28127", null, "2535", null, "53053", null, "4493", null, "93898", null, "4738", null, "-888888888", "(X)", "-888888888", "(X)", "48.3", null, "1.3", null, "51.7", null, "1.3", null, "46.1", null, "1.7", null, "16.1", null, "1.2", null, "5.3", null, "0.8", null, "10.7", null, "0.9", null, "37.8", null, "1.8", null, "27.3", null, "1.5", null, "18.6", null, "1.2", null, "8.5", null, "1.0", null, "3.1", null, "0.7", null, "5.4", null, "0.7", null, "0.2", null, "0.2", null, "72.7", null, "1.5", null, "27.5", null, "1.4", null, "7.5", null, "0.9", null, "2.2", null, "0.6", null, "5.3", null, "0.7", null, "37.6", null, "1.8", null, "12.6", null, "1.1", null, "87.4", null, "1.1", null, "29.3", null, "1.6", null, "70.7", null, "1.6", null, "63.3", null, "1.3", null, "2.9", null, "0.5", null, "2.1", null, "0.6", null, "7.6", null, "0.9", null, "0.4", null, "0.2", null, "11.6", null, "1.2", null, "12.1", null, "1.0", null, "25.0", null, "1.2", null, "58.8", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.1", null, "1.4", null, "30.3", null, "2.3", null, "53.6", null, "2.1", null, "33643", null, "3712", null, "15640", null, "2545", null, "18003", null, "2464", null, "7364", null, "1689", null, "11257", null, "2065", null, "3009", null, "1033", null, "8248", null, "1712", null, "15022", null, "2562", null, "11123", null, "2206", null, "5037", null, "1357", null, "5809", null, "1692", null, "1680", null, "810", null, "4129", null, "1355", null, "277", null, "321", null, "22520", null, "3085", null, "2327", null, "948", null, "5448", null, "1373", null, "1329", null, "663", null, "4119", null, "1214", null, "14745", null, "2493", null, "13634", null, "2384", null, "20009", null, "2726", null, "17621", null, "2820", null, "16022", null, "2345", null, "17091", null, "2427", null, "1617", null, "807", null, "1411", null, "893", null, "2770", null, "958", null, "480", null, "468", null, "5217", null, "1596", null, "5057", null, "1189", null, "11751", null, "2260", null, "14944", null, "2393", null, "37552", null, "8072", null, "18621", null, "2609", null, "2890", null, "926", null, "8272", null, "1748", null, "7459", null, "1840", null, "11.9", null, "1.3", null, "46.5", null, "5.0", null, "53.5", null, "5.0", null, "21.9", null, "4.6", null, "33.5", null, "5.2", null, "8.9", null, "2.9", null, "24.5", null, "4.5", null, "44.7", null, "5.4", null, "33.1", null, "5.5", null, "15.0", null, "3.8", null, "17.3", null, "4.6", null, "5.0", null, "2.3", null, "12.3", null, "3.8", null, "0.8", null, "1.0", null, "66.9", null, "5.5", null, "6.9", null, "2.7", null, "16.2", null, "3.9", null, "4.0", null, "2.0", null, "12.2", null, "3.4", null, "43.8", null, "5.2", null, "40.5", null, "5.2", null, "59.5", null, "5.2", null, "52.4", null, "5.3", null, "47.6", null, "5.3", null, "50.8", null, "5.0", null, "4.8", null, "2.3", null, "4.2", null, "2.6", null, "8.2", null, "2.8", null, "1.4", null, "1.4", null, "15.5", null, "3.9", null, "15.0", null, "3.6", null, "34.9", null, "5.1", null, "44.4", null, "5.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.5", null, "5.0", null, "44.4", null, "7.2", null, "40.1", null, "7.3", null, "248045", null, "6944", null, "120428", null, "4868", null, "127617", null, "4958", null, "122494", null, "5051", null, "33963", null, "3165", null, "12030", null, "2192", null, "21933", null, "2355", null, "91588", null, "5499", null, "65817", null, "3754", null, "47246", null, "3377", null, "18194", null, "2394", null, "7148", null, "1791", null, "11046", null, "1689", null, "377", null, "289", null, "182228", null, "6701", null, "75248", null, "4436", null, "15769", null, "2330", null, "4882", null, "1438", null, "10887", null, "1744", null, "91211", null, "5472", null, "21804", null, "3046", null, "226241", null, "6798", null, "64782", null, "3910", null, "183263", null, "6635", null, "161202", null, "6042", null, "6633", null, "1386", null, "4453", null, "1425", null, "18720", null, "2525", null, "519", null, "384", null, "27532", null, "2957", null, "28986", null, "2774", null, "58689", null, "3586", null, "150768", null, "5667", null, "105146", null, "4220", null, "156457", null, "5668", null, "25237", null, "2389", null, "44781", null, "4154", null, "86439", null, "4566", null, "88.1", null, "1.3", null, "48.6", null, "1.4", null, "51.4", null, "1.4", null, "49.4", null, "1.8", null, "13.7", null, "1.2", null, "4.8", null, "0.9", null, "8.8", null, "0.9", null, "36.9", null, "1.8", null, "26.5", null, "1.4", null, "19.0", null, "1.4", null, "7.3", null, "0.9", null, "2.9", null, "0.7", null, "4.5", null, "0.7", null, "0.2", null, "0.1", null, "73.5", null, "1.4", null, "30.3", null, "1.6", null, "6.4", null, "0.9", null, "2.0", null, "0.6", null, "4.4", null, "0.7", null, "36.8", null, "1.8", null, "8.8", null, "1.2", null, "91.2", null, "1.2", null, "26.1", null, "1.5", null, "73.9", null, "1.5", null, "65.0", null, "1.5", null, "2.7", null, "0.6", null, "1.8", null, "0.6", null, "7.5", null, "1.0", null, "0.2", null, "0.2", null, "11.1", null, "1.2", null, "11.7", null, "1.1", null, "23.7", null, "1.3", null, "60.8", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.1", null, "1.4", null, "28.6", null, "2.4", null, "55.2", null, "2.3", null, "06", "04"], ["5001900US0605", "Congressional District 5 (119th Congress), California", "290621", null, "6572", null, "147844", null, "5161", null, "142777", null, "5302", null, "151494", null, "6606", null, "50733", null, "3813", null, "17235", null, "2624", null, "33498", null, "3391", null, "88394", null, "5122", null, "85377", null, "4904", null, "56479", null, "4279", null, "28633", null, "3776", null, "10231", null, "2496", null, "18402", null, "2857", null, "265", null, "208", null, "205244", null, "6699", null, "95015", null, "5673", null, "22100", null, "2358", null, "7004", null, "1583", null, "15096", null, "1799", null, "88129", null, "5108", null, "28445", null, "3018", null, "262176", null, "7324", null, "93348", null, "6032", null, "197273", null, "6978", null, "208459", null, "6139", null, "6400", null, "1457", null, "4092", null, "1103", null, "14785", null, "1750", null, "-999999999", "N", "-999999999", "N", "23653", null, "3034", null, "32208", null, "3108", null, "60750", null, "3968", null, "194202", null, "5943", null, "94859", null, "3955", null, "202227", null, "6079", null, "39325", null, "3579", null, "64748", null, "4684", null, "98154", null, "5149", null, "-888888888", "(X)", "-888888888", "(X)", "50.9", null, "1.4", null, "49.1", null, "1.4", null, "52.1", null, "1.9", null, "17.5", null, "1.3", null, "5.9", null, "0.9", null, "11.5", null, "1.2", null, "30.4", null, "1.6", null, "29.4", null, "1.6", null, "19.4", null, "1.4", null, "9.9", null, "1.3", null, "3.5", null, "0.9", null, "6.3", null, "1.0", null, "0.1", null, "0.1", null, "70.6", null, "1.6", null, "32.7", null, "1.8", null, "7.6", null, "0.8", null, "2.4", null, "0.5", null, "5.2", null, "0.6", null, "30.3", null, "1.5", null, "9.8", null, "1.1", null, "90.2", null, "1.1", null, "32.1", null, "1.9", null, "67.9", null, "1.9", null, "71.7", null, "1.4", null, "2.2", null, "0.5", null, "1.4", null, "0.4", null, "5.1", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "8.1", null, "1.0", null, "11.1", null, "1.0", null, "20.9", null, "1.3", null, "66.8", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "19.4", null, "1.7", null, "32.0", null, "2.1", null, "48.5", null, "2.1", null, "34109", null, "3195", null, "14887", null, "2058", null, "19222", null, "2529", null, "9575", null, "1835", null, "13770", null, "2381", null, "4719", null, "1373", null, "9051", null, "1889", null, "10764", null, "2032", null, "13851", null, "2348", null, "4986", null, "1240", null, "8791", null, "2348", null, "3054", null, "1272", null, "5737", null, "1790", null, "74", null, "140", null, "20258", null, "2609", null, "4589", null, "1110", null, "4979", null, "1278", null, "1665", null, "801", null, "3314", null, "980", null, "10690", null, "2051", null, "9663", null, "1818", null, "24446", null, "2800", null, "17540", null, "2693", null, "16569", null, "2106", null, "23074", null, "2693", null, "981", null, "537", null, "1130", null, "638", null, "1166", null, "546", null, "-999999999", "N", "-999999999", "N", "4043", null, "1173", null, "3668", null, "1080", null, "9362", null, "1897", null, "20676", null, "2679", null, "43013", null, "5595", null, "23345", null, "2703", null, "3863", null, "1210", null, "11145", null, "2140", null, "8337", null, "1753", null, "11.7", null, "1.0", null, "43.6", null, "4.8", null, "56.4", null, "4.8", null, "28.1", null, "5.1", null, "40.4", null, "5.6", null, "13.8", null, "3.6", null, "26.5", null, "5.0", null, "31.6", null, "5.0", null, "40.6", null, "5.5", null, "14.6", null, "3.4", null, "25.8", null, "6.3", null, "9.0", null, "3.5", null, "16.8", null, "5.1", null, "0.2", null, "0.4", null, "59.4", null, "5.5", null, "13.5", null, "3.3", null, "14.6", null, "3.4", null, "4.9", null, "2.3", null, "9.7", null, "2.6", null, "31.3", null, "5.0", null, "28.3", null, "4.7", null, "71.7", null, "4.7", null, "51.4", null, "5.3", null, "48.6", null, "5.3", null, "67.6", null, "4.5", null, "2.9", null, "1.6", null, "3.3", null, "1.9", null, "3.4", null, "1.6", null, "-999999999.0", "N", "-999999999.0", "N", "11.9", null, "3.1", null, "10.8", null, "3.0", null, "27.4", null, "4.8", null, "60.6", null, "5.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.5", null, "4.8", null, "47.7", null, "7.1", null, "35.7", null, "6.5", null, "256512", null, "6100", null, "132957", null, "5028", null, "123555", null, "4684", null, "141919", null, "6073", null, "36963", null, "3041", null, "12516", null, "2292", null, "24447", null, "2793", null, "77630", null, "4879", null, "71526", null, "4081", null, "51493", null, "3947", null, "19842", null, "2766", null, "7177", null, "1920", null, "12665", null, "2138", null, "191", null, "138", null, "184986", null, "6304", null, "90426", null, "5422", null, "17121", null, "2203", null, "5339", null, "1557", null, "11782", null, "1620", null, "77439", null, "4872", null, "18782", null, "2439", null, "237730", null, "6610", null, "75808", null, "5132", null, "180704", null, "6668", null, "185385", null, "6531", null, "5419", null, "1343", null, "2962", null, "887", null, "13619", null, "1748", null, "-999999999", "N", "-999999999", "N", "19610", null, "2695", null, "28540", null, "2955", null, "51388", null, "3762", null, "173526", null, "6334", null, "102605", null, "3119", null, "178882", null, "5538", null, "35462", null, "3342", null, "53603", null, "3730", null, "89817", null, "4794", null, "88.3", null, "1.0", null, "51.8", null, "1.5", null, "48.2", null, "1.5", null, "55.3", null, "1.9", null, "14.4", null, "1.2", null, "4.9", null, "0.9", null, "9.5", null, "1.1", null, "30.3", null, "1.7", null, "27.9", null, "1.5", null, "20.1", null, "1.5", null, "7.7", null, "1.1", null, "2.8", null, "0.7", null, "4.9", null, "0.9", null, "0.1", null, "0.1", null, "72.1", null, "1.5", null, "35.3", null, "1.9", null, "6.7", null, "0.9", null, "2.1", null, "0.6", null, "4.6", null, "0.6", null, "30.2", null, "1.7", null, "7.3", null, "1.0", null, "92.7", null, "1.0", null, "29.6", null, "1.9", null, "70.4", null, "1.9", null, "72.3", null, "1.6", null, "2.1", null, "0.5", null, "1.2", null, "0.3", null, "5.3", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "7.6", null, "1.1", null, "11.1", null, "1.2", null, "20.0", null, "1.5", null, "67.6", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "19.8", null, "1.8", null, "30.0", null, "1.9", null, "50.2", null, "2.1", null, "06", "05"], ["5001900US0606", "Congressional District 6 (119th Congress), California", "280967", null, "4743", null, "115695", null, "4276", null, "165272", null, "4553", null, "123634", null, "5151", null, "55352", null, "4609", null, "16861", null, "2440", null, "38491", null, "4042", null, "101981", null, "4842", null, "84374", null, "4957", null, "55564", null, "3700", null, "28196", null, "3380", null, "7457", null, "1717", null, "20739", null, "2909", null, "614", null, "406", null, "196593", null, "4952", null, "68070", null, "3685", null, "27156", null, "2730", null, "9404", null, "1763", null, "17752", null, "2430", null, "101367", null, "4853", null, "35473", null, "2748", null, "245494", null, "4582", null, "83643", null, "5006", null, "197324", null, "5487", null, "156461", null, "5285", null, "26817", null, "2722", null, "3164", null, "1085", null, "32720", null, "2789", null, "1476", null, "875", null, "24985", null, "3239", null, "35344", null, "3799", null, "53632", null, "3917", null, "146175", null, "5086", null, "87640", null, "3126", null, "178986", null, "5965", null, "23800", null, "2786", null, "61798", null, "4729", null, "93388", null, "5092", null, "-888888888", "(X)", "-888888888", "(X)", "41.2", null, "1.3", null, "58.8", null, "1.3", null, "44.0", null, "1.7", null, "19.7", null, "1.6", null, "6.0", null, "0.9", null, "13.7", null, "1.4", null, "36.3", null, "1.7", null, "30.0", null, "1.6", null, "19.8", null, "1.2", null, "10.0", null, "1.2", null, "2.7", null, "0.6", null, "7.4", null, "1.0", null, "0.2", null, "0.1", null, "70.0", null, "1.6", null, "24.2", null, "1.3", null, "9.7", null, "0.9", null, "3.3", null, "0.6", null, "6.3", null, "0.8", null, "36.1", null, "1.7", null, "12.6", null, "0.9", null, "87.4", null, "0.9", null, "29.8", null, "1.7", null, "70.2", null, "1.7", null, "55.7", null, "1.6", null, "9.5", null, "1.0", null, "1.1", null, "0.4", null, "11.6", null, "1.0", null, "0.5", null, "0.3", null, "8.9", null, "1.1", null, "12.6", null, "1.3", null, "19.1", null, "1.3", null, "52.0", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.3", null, "1.5", null, "34.5", null, "2.3", null, "52.2", null, "2.5", null, "41304", null, "4000", null, "18521", null, "2698", null, "22783", null, "2954", null, "12585", null, "1956", null, "15258", null, "2196", null, "3875", null, "1325", null, "11383", null, "1901", null, "13461", null, "2126", null, "15158", null, "2409", null, "7133", null, "1503", null, "8025", null, "1800", null, "1555", null, "927", null, "6470", null, "1630", null, "0", null, "225", null, "26146", null, "3015", null, "5452", null, "1259", null, "7233", null, "1373", null, "2320", null, "901", null, "4913", null, "1040", null, "13461", null, "2126", null, "14277", null, "2159", null, "27027", null, "3000", null, "20776", null, "3301", null, "20528", null, "2832", null, "22332", null, "2880", null, "5844", null, "1539", null, "213", null, "162", null, "4738", null, "973", null, "429", null, "422", null, "2830", null, "1162", null, "4918", null, "1294", null, "5954", null, "1413", null, "21088", null, "2820", null, "38535", null, "8931", null, "27843", null, "3161", null, "5624", null, "1542", null, "13586", null, "2272", null, "8633", null, "1567", null, "14.7", null, "1.4", null, "44.8", null, "4.8", null, "55.2", null, "4.8", null, "30.5", null, "3.7", null, "36.9", null, "4.1", null, "9.4", null, "3.1", null, "27.6", null, "3.8", null, "32.6", null, "4.1", null, "36.7", null, "4.4", null, "17.3", null, "3.3", null, "19.4", null, "3.8", null, "3.8", null, "2.2", null, "15.7", null, "3.5", null, "0.0", null, "0.5", null, "63.3", null, "4.4", null, "13.2", null, "2.7", null, "17.5", null, "3.1", null, "5.6", null, "2.1", null, "11.9", null, "2.5", null, "32.6", null, "4.1", null, "34.6", null, "3.9", null, "65.4", null, "3.9", null, "50.3", null, "5.6", null, "49.7", null, "5.6", null, "54.1", null, "4.3", null, "14.1", null, "3.4", null, "0.5", null, "0.4", null, "11.5", null, "2.0", null, "1.0", null, "1.0", null, "6.9", null, "2.7", null, "11.9", null, "3.2", null, "14.4", null, "3.3", null, "51.1", null, "4.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "20.2", null, "4.7", null, "48.8", null, "5.9", null, "31.0", null, "5.1", null, "239663", null, "5463", null, "97174", null, "4314", null, "142489", null, "4678", null, "111049", null, "4860", null, "40094", null, "4117", null, "12986", null, "1998", null, "27108", null, "3750", null, "88520", null, "4484", null, "69216", null, "4670", null, "48431", null, "3538", null, "20171", null, "3064", null, "5902", null, "1511", null, "14269", null, "2590", null, "614", null, "406", null, "170447", null, "4924", null, "62618", null, "3591", null, "19923", null, "2302", null, "7084", null, "1388", null, "12839", null, "2250", null, "87906", null, "4489", null, "21196", null, "2562", null, "218467", null, "4942", null, "62867", null, "4167", null, "176796", null, "5494", null, "134129", null, "5383", null, "20973", null, "2656", null, "2951", null, "1059", null, "27982", null, "2709", null, "1047", null, "782", null, "22155", null, "3020", null, "30426", null, "3426", null, "47678", null, "3849", null, "125087", null, "5273", null, "95641", null, "3371", null, "151143", null, "5723", null, "18176", null, "2339", null, "48212", null, "4195", null, "84755", null, "4807", null, "85.3", null, "1.4", null, "40.5", null, "1.5", null, "59.5", null, "1.5", null, "46.3", null, "1.8", null, "16.7", null, "1.6", null, "5.4", null, "0.8", null, "11.3", null, "1.5", null, "36.9", null, "1.8", null, "28.9", null, "1.7", null, "20.2", null, "1.3", null, "8.4", null, "1.2", null, "2.5", null, "0.6", null, "6.0", null, "1.1", null, "0.3", null, "0.2", null, "71.1", null, "1.7", null, "26.1", null, "1.5", null, "8.3", null, "0.9", null, "3.0", null, "0.6", null, "5.4", null, "0.9", null, "36.7", null, "1.8", null, "8.8", null, "1.0", null, "91.2", null, "1.0", null, "26.2", null, "1.6", null, "73.8", null, "1.6", null, "56.0", null, "1.7", null, "8.8", null, "1.1", null, "1.2", null, "0.4", null, "11.7", null, "1.1", null, "0.4", null, "0.3", null, "9.2", null, "1.2", null, "12.7", null, "1.4", null, "19.9", null, "1.6", null, "52.2", null, "1.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.0", null, "1.5", null, "31.9", null, "2.4", null, "56.1", null, "2.6", null, "06", "06"], ["5001900US0607", "Congressional District 7 (119th Congress), California", "268376", null, "5759", null, "113448", null, "3960", null, "154928", null, "5400", null, "120308", null, "5025", null, "54180", null, "3856", null, "16000", null, "2355", null, "38180", null, "3892", null, "93888", null, "5514", null, "80521", null, "4200", null, "53857", null, "3765", null, "25907", null, "3259", null, "5880", null, "1547", null, "20027", null, "2966", null, "757", null, "424", null, "187855", null, "5966", null, "66451", null, "3862", null, "28273", null, "2421", null, "10120", null, "1686", null, "18153", null, "2487", null, "93131", null, "5541", null, "31352", null, "3183", null, "237024", null, "5679", null, "78712", null, "3601", null, "189664", null, "6326", null, "109746", null, "4486", null, "29117", null, "2746", null, "3170", null, "971", null, "58234", null, "3213", null, "4048", null, "744", null, "32069", null, "3001", null, "31992", null, "3063", null, "61370", null, "3629", null, "102473", null, "4389", null, "96869", null, "4883", null, "174488", null, "4640", null, "22620", null, "2268", null, "52053", null, "4101", null, "99815", null, "3896", null, "-888888888", "(X)", "-888888888", "(X)", "42.3", null, "1.4", null, "57.7", null, "1.4", null, "44.8", null, "1.9", null, "20.2", null, "1.4", null, "6.0", null, "0.8", null, "14.2", null, "1.5", null, "35.0", null, "1.7", null, "30.0", null, "1.5", null, "20.1", null, "1.4", null, "9.7", null, "1.2", null, "2.2", null, "0.6", null, "7.5", null, "1.1", null, "0.3", null, "0.2", null, "70.0", null, "1.5", null, "24.8", null, "1.5", null, "10.5", null, "0.9", null, "3.8", null, "0.6", null, "6.8", null, "1.0", null, "34.7", null, "1.7", null, "11.7", null, "1.1", null, "88.3", null, "1.1", null, "29.3", null, "1.4", null, "70.7", null, "1.4", null, "40.9", null, "1.4", null, "10.8", null, "1.0", null, "1.2", null, "0.4", null, "21.7", null, "1.2", null, "1.5", null, "0.3", null, "11.9", null, "1.1", null, "11.9", null, "1.1", null, "22.9", null, "1.2", null, "38.2", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.0", null, "1.2", null, "29.8", null, "2.0", null, "57.2", null, "2.1", null, "39745", null, "3391", null, "18530", null, "2126", null, "21215", null, "2847", null, "12535", null, "2264", null, "14994", null, "2325", null, "3559", null, "1001", null, "11435", null, "2120", null, "12216", null, "1712", null, "16192", null, "2369", null, "8782", null, "1886", null, "7182", null, "1682", null, "1104", null, "719", null, "6078", null, "1596", null, "228", null, "246", null, "23553", null, "2341", null, "3753", null, "920", null, "7812", null, "1618", null, "2455", null, "860", null, "5357", null, "1439", null, "11988", null, "1709", null, "14675", null, "2007", null, "25070", null, "2996", null, "21322", null, "2353", null, "18423", null, "2553", null, "11259", null, "1855", null, "7001", null, "1752", null, "458", null, "269", null, "9977", null, "1578", null, "985", null, "670", null, "6018", null, "1538", null, "4047", null, "1046", null, "9070", null, "1717", null, "10544", null, "1795", null, "46639", null, "9197", null, "27529", null, "2850", null, "4985", null, "1452", null, "11101", null, "1970", null, "11443", null, "2141", null, "14.8", null, "1.3", null, "46.6", null, "4.6", null, "53.4", null, "4.6", null, "31.5", null, "4.8", null, "37.7", null, "5.0", null, "9.0", null, "2.4", null, "28.8", null, "4.8", null, "30.7", null, "3.6", null, "40.7", null, "4.2", null, "22.1", null, "4.1", null, "18.1", null, "3.9", null, "2.8", null, "1.8", null, "15.3", null, "3.8", null, "0.6", null, "0.6", null, "59.3", null, "4.2", null, "9.4", null, "2.3", null, "19.7", null, "3.8", null, "6.2", null, "2.2", null, "13.5", null, "3.4", null, "30.2", null, "3.7", null, "36.9", null, "4.5", null, "63.1", null, "4.5", null, "53.6", null, "4.5", null, "46.4", null, "4.5", null, "28.3", null, "4.1", null, "17.6", null, "3.9", null, "1.2", null, "0.7", null, "25.1", null, "3.8", null, "2.5", null, "1.7", null, "15.1", null, "3.5", null, "10.2", null, "2.6", null, "22.8", null, "3.8", null, "26.5", null, "4.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.1", null, "5.2", null, "40.3", null, "5.5", null, "41.6", null, "6.3", null, "228631", null, "6526", null, "94918", null, "4062", null, "133713", null, "5440", null, "107773", null, "4807", null, "39186", null, "3634", null, "12441", null, "2069", null, "26745", null, "3382", null, "81672", null, "5437", null, "64329", null, "3907", null, "45075", null, "3394", null, "18725", null, "2728", null, "4776", null, "1212", null, "13949", null, "2593", null, "529", null, "342", null, "164302", null, "6229", null, "62698", null, "3752", null, "20461", null, "2306", null, "7665", null, "1500", null, "12796", null, "2024", null, "81143", null, "5459", null, "16677", null, "2194", null, "211954", null, "6177", null, "57390", null, "3531", null, "171241", null, "6301", null, "98487", null, "4550", null, "22116", null, "2650", null, "2712", null, "904", null, "48257", null, "3387", null, "3063", null, "753", null, "26051", null, "2865", null, "27945", null, "2775", null, "52300", null, "3479", null, "91929", null, "4355", null, "105222", null, "3186", null, "146959", null, "5010", null, "17635", null, "1813", null, "40952", null, "3917", null, "88372", null, "3629", null, "85.2", null, "1.3", null, "41.5", null, "1.5", null, "58.5", null, "1.5", null, "47.1", null, "2.1", null, "17.1", null, "1.5", null, "5.4", null, "0.9", null, "11.7", null, "1.5", null, "35.7", null, "1.9", null, "28.1", null, "1.6", null, "19.7", null, "1.5", null, "8.2", null, "1.1", null, "2.1", null, "0.5", null, "6.1", null, "1.1", null, "0.2", null, "0.1", null, "71.9", null, "1.6", null, "27.4", null, "1.6", null, "8.9", null, "1.0", null, "3.4", null, "0.6", null, "5.6", null, "0.9", null, "35.5", null, "1.9", null, "7.3", null, "0.9", null, "92.7", null, "0.9", null, "25.1", null, "1.5", null, "74.9", null, "1.5", null, "43.1", null, "1.7", null, "9.7", null, "1.1", null, "1.2", null, "0.4", null, "21.1", null, "1.3", null, "1.3", null, "0.3", null, "11.4", null, "1.2", null, "12.2", null, "1.2", null, "22.9", null, "1.3", null, "40.2", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.0", null, "1.2", null, "27.9", null, "2.2", null, "60.1", null, "2.1", null, "06", "07"], ["5001900US0608", "Congressional District 8 (119th Congress), California", "263145", null, "4940", null, "118906", null, "4787", null, "144239", null, "4836", null, "118955", null, "4790", null, "63346", null, "4500", null, "16668", null, "2715", null, "46678", null, "4533", null, "80844", null, "5211", null, "79468", null, "4376", null, "48503", null, "3450", null, "29943", null, "3706", null, "8102", null, "1653", null, "21841", null, "3470", null, "1022", null, "694", null, "183677", null, "6581", null, "70452", null, "4584", null, "33403", null, "3340", null, "8566", null, "1923", null, "24837", null, "2986", null, "79822", null, "5257", null, "28477", null, "3512", null, "234668", null, "5211", null, "74699", null, "4292", null, "188446", null, "5686", null, "88055", null, "4222", null, "43136", null, "3254", null, "2840", null, "931", null, "48818", null, "3105", null, "2539", null, "1070", null, "42164", null, "3358", null, "35593", null, "3179", null, "73878", null, "3557", null, "80859", null, "3932", null, "95876", null, "4391", null, "182301", null, "4499", null, "23325", null, "2414", null, "62286", null, "4369", null, "96690", null, "4965", null, "-888888888", "(X)", "-888888888", "(X)", "45.2", null, "1.6", null, "54.8", null, "1.6", null, "45.2", null, "1.8", null, "24.1", null, "1.7", null, "6.3", null, "1.0", null, "17.7", null, "1.7", null, "30.7", null, "1.7", null, "30.2", null, "1.8", null, "18.4", null, "1.3", null, "11.4", null, "1.4", null, "3.1", null, "0.6", null, "8.3", null, "1.3", null, "0.4", null, "0.3", null, "69.8", null, "1.8", null, "26.8", null, "1.7", null, "12.7", null, "1.3", null, "3.3", null, "0.7", null, "9.4", null, "1.1", null, "30.3", null, "1.7", null, "10.8", null, "1.3", null, "89.2", null, "1.3", null, "28.4", null, "1.6", null, "71.6", null, "1.6", null, "33.5", null, "1.3", null, "16.4", null, "1.2", null, "1.1", null, "0.4", null, "18.6", null, "1.2", null, "1.0", null, "0.4", null, "16.0", null, "1.3", null, "13.5", null, "1.2", null, "28.1", null, "1.3", null, "30.7", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.8", null, "1.2", null, "34.2", null, "2.3", null, "53.0", null, "2.5", null, "41180", null, "3750", null, "18604", null, "2488", null, "22576", null, "3172", null, "12460", null, "1902", null, "16234", null, "2790", null, "3682", null, "1236", null, "12552", null, "2367", null, "12486", null, "2487", null, "16600", null, "2504", null, "8290", null, "1755", null, "8158", null, "2042", null, "2025", null, "846", null, "6133", null, "1801", null, "152", null, "241", null, "24580", null, "3175", null, "4170", null, "1255", null, "8076", null, "1754", null, "1657", null, "921", null, "6419", null, "1494", null, "12334", null, "2498", null, "12481", null, "2471", null, "28699", null, "2866", null, "17099", null, "2305", null, "24081", null, "3021", null, "8642", null, "1462", null, "8664", null, "2104", null, "698", null, "594", null, "6411", null, "1336", null, "311", null, "226", null, "11325", null, "2481", null, "5129", null, "1514", null, "15888", null, "2698", null, "7695", null, "1462", null, "48894", null, "11823", null, "28694", null, "3203", null, "4883", null, "1818", null, "11630", null, "1721", null, "12181", null, "2127", null, "15.6", null, "1.4", null, "45.2", null, "5.1", null, "54.8", null, "5.1", null, "30.3", null, "4.2", null, "39.4", null, "5.7", null, "8.9", null, "2.9", null, "30.5", null, "5.0", null, "30.3", null, "5.1", null, "40.3", null, "5.1", null, "20.1", null, "4.2", null, "19.8", null, "4.5", null, "4.9", null, "2.1", null, "14.9", null, "4.0", null, "0.4", null, "0.6", null, "59.7", null, "5.1", null, "10.1", null, "2.9", null, "19.6", null, "4.0", null, "4.0", null, "2.1", null, "15.6", null, "3.6", null, "30.0", null, "5.1", null, "30.3", null, "4.7", null, "69.7", null, "4.7", null, "41.5", null, "4.6", null, "58.5", null, "4.6", null, "21.0", null, "3.2", null, "21.0", null, "4.5", null, "1.7", null, "1.4", null, "15.6", null, "2.9", null, "0.8", null, "0.5", null, "27.5", null, "5.7", null, "12.5", null, "3.4", null, "38.6", null, "5.5", null, "18.7", null, "3.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.0", null, "5.6", null, "40.5", null, "5.6", null, "42.5", null, "5.4", null, "221965", null, "5696", null, "100302", null, "4795", null, "121663", null, "5397", null, "106495", null, "4873", null, "47112", null, "4062", null, "12986", null, "2485", null, "34126", null, "3634", null, "68358", null, "4404", null, "62868", null, "4656", null, "40213", null, "3348", null, "21785", null, "3370", null, "6077", null, "1535", null, "15708", null, "3059", null, "870", null, "663", null, "159097", null, "6151", null, "66282", null, "4526", null, "25327", null, "3124", null, "6909", null, "1774", null, "18418", null, "2547", null, "67488", null, "4432", null, "15996", null, "2636", null, "205969", null, "5559", null, "57600", null, "3917", null, "164365", null, "6159", null, "79413", null, "4096", null, "34472", null, "2987", null, "2142", null, "776", null, "42407", null, "2897", null, "2228", null, "1120", null, "30839", null, "3012", null, "30464", null, "3029", null, "57990", null, "3597", null, "73164", null, "3657", null, "106230", null, "3923", null, "153607", null, "4815", null, "18442", null, "2138", null, "50656", null, "4152", null, "84509", null, "4891", null, "84.4", null, "1.4", null, "45.2", null, "1.9", null, "54.8", null, "1.9", null, "48.0", null, "1.9", null, "21.2", null, "1.8", null, "5.9", null, "1.1", null, "15.4", null, "1.6", null, "30.8", null, "1.7", null, "28.3", null, "2.0", null, "18.1", null, "1.4", null, "9.8", null, "1.5", null, "2.7", null, "0.7", null, "7.1", null, "1.4", null, "0.4", null, "0.3", null, "71.7", null, "2.0", null, "29.9", null, "2.0", null, "11.4", null, "1.4", null, "3.1", null, "0.8", null, "8.3", null, "1.1", null, "30.4", null, "1.7", null, "7.2", null, "1.1", null, "92.8", null, "1.1", null, "26.0", null, "1.7", null, "74.0", null, "1.7", null, "35.8", null, "1.5", null, "15.5", null, "1.2", null, "1.0", null, "0.3", null, "19.1", null, "1.3", null, "1.0", null, "0.5", null, "13.9", null, "1.3", null, "13.7", null, "1.4", null, "26.1", null, "1.5", null, "33.0", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.0", null, "1.3", null, "33.0", null, "2.5", null, "55.0", null, "2.8", null, "06", "08"], ["5001900US0609", "Congressional District 9 (119th Congress), California", "246130", null, "2915", null, "106251", null, "3144", null, "139879", null, "3816", null, "125567", null, "4433", null, "59691", null, "3856", null, "20296", null, "2761", null, "39395", null, "2771", null, "60872", null, "3709", null, "96182", null, "3826", null, "60937", null, "3396", null, "34827", null, "3100", null, "10348", null, "2105", null, "24479", null, "2390", null, "418", null, "297", null, "149948", null, "4170", null, "64630", null, "3567", null, "24864", null, "2875", null, "9948", null, "2211", null, "14916", null, "1913", null, "60454", null, "3764", null, "30806", null, "3334", null, "215324", null, "4393", null, "75392", null, "3560", null, "170738", null, "4680", null, "99799", null, "3582", null, "17738", null, "1424", null, "4031", null, "1000", null, "41389", null, "1964", null, "1937", null, "740", null, "45739", null, "3202", null, "35497", null, "3041", null, "87348", null, "2557", null, "86768", null, "3131", null, "92036", null, "2796", null, "185258", null, "4176", null, "24606", null, "2791", null, "62779", null, "4081", null, "97873", null, "4725", null, "-888888888", "(X)", "-888888888", "(X)", "43.2", null, "1.3", null, "56.8", null, "1.3", null, "51.0", null, "1.7", null, "24.3", null, "1.5", null, "8.2", null, "1.1", null, "16.0", null, "1.1", null, "24.7", null, "1.5", null, "39.1", null, "1.5", null, "24.8", null, "1.3", null, "14.1", null, "1.3", null, "4.2", null, "0.9", null, "9.9", null, "1.0", null, "0.2", null, "0.1", null, "60.9", null, "1.5", null, "26.3", null, "1.4", null, "10.1", null, "1.2", null, "4.0", null, "0.9", null, "6.1", null, "0.8", null, "24.6", null, "1.5", null, "12.5", null, "1.4", null, "87.5", null, "1.4", null, "30.6", null, "1.5", null, "69.4", null, "1.5", null, "40.5", null, "1.4", null, "7.2", null, "0.6", null, "1.6", null, "0.4", null, "16.8", null, "0.8", null, "0.8", null, "0.3", null, "18.6", null, "1.3", null, "14.4", null, "1.2", null, "35.5", null, "1.0", null, "35.3", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.3", null, "1.4", null, "33.9", null, "2.1", null, "52.8", null, "2.3", null, "38296", null, "3346", null, "17305", null, "2429", null, "20991", null, "2519", null, "13264", null, "2098", null, "17589", null, "2232", null, "3822", null, "1251", null, "13767", null, "2090", null, "7443", null, "1601", null, "20667", null, "2271", null, "9304", null, "1747", null, "11297", null, "1854", null, "2453", null, "1233", null, "8844", null, "1656", null, "66", null, "111", null, "17629", null, "2408", null, "3960", null, "1111", null, "6292", null, "1504", null, "1369", null, "645", null, "4923", null, "1263", null, "7377", null, "1593", null, "13520", null, "2567", null, "24776", null, "3002", null, "16929", null, "2192", null, "21367", null, "2544", null, "10110", null, "2041", null, "4580", null, "1246", null, "783", null, "444", null, "5848", null, "1198", null, "450", null, "490", null, "10203", null, "1876", null, "6322", null, "1553", null, "17246", null, "1963", null, "8300", null, "1897", null, "47027", null, "6420", null, "30853", null, "2824", null, "6717", null, "1848", null, "11708", null, "1893", null, "12428", null, "1988", null, "15.6", null, "1.4", null, "45.2", null, "4.8", null, "54.8", null, "4.8", null, "34.6", null, "4.7", null, "45.9", null, "4.6", null, "10.0", null, "3.1", null, "35.9", null, "4.8", null, "19.4", null, "3.6", null, "54.0", null, "4.3", null, "24.3", null, "4.0", null, "29.5", null, "4.6", null, "6.4", null, "3.2", null, "23.1", null, "4.2", null, "0.2", null, "0.3", null, "46.0", null, "4.3", null, "10.3", null, "2.9", null, "16.4", null, "3.5", null, "3.6", null, "1.6", null, "12.9", null, "3.0", null, "19.3", null, "3.6", null, "35.3", null, "5.8", null, "64.7", null, "5.8", null, "44.2", null, "4.4", null, "55.8", null, "4.4", null, "26.4", null, "4.6", null, "12.0", null, "3.1", null, "2.0", null, "1.2", null, "15.3", null, "2.7", null, "1.2", null, "1.3", null, "26.6", null, "4.4", null, "16.5", null, "3.9", null, "45.0", null, "4.3", null, "21.7", null, "4.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "21.8", null, "5.5", null, "37.9", null, "4.9", null, "40.3", null, "5.6", null, "207834", null, "4321", null, "88946", null, "3154", null, "118888", null, "4302", null, "112303", null, "4623", null, "42102", null, "3680", null, "16474", null, "2591", null, "25628", null, "2713", null, "53429", null, "3751", null, "75515", null, "3873", null, "51633", null, "3523", null, "23530", null, "2830", null, "7895", null, "1740", null, "15635", null, "2157", null, "352", null, "300", null, "132319", null, "4214", null, "60670", null, "3431", null, "18572", null, "2514", null, "8579", null, "2014", null, "9993", null, "1810", null, "53077", null, "3766", null, "17286", null, "2431", null, "190548", null, "4739", null, "58463", null, "3174", null, "149371", null, "5192", null, "89689", null, "3856", null, "13158", null, "1662", null, "3248", null, "967", null, "35541", null, "2240", null, "1487", null, "753", null, "35536", null, "2926", null, "29175", null, "2968", null, "70102", null, "3293", null, "78468", null, "3435", null, "100343", null, "4193", null, "154405", null, "4686", null, "17889", null, "1996", null, "51071", null, "4175", null, "85445", null, "4254", null, "84.4", null, "1.4", null, "42.8", null, "1.4", null, "57.2", null, "1.4", null, "54.0", null, "2.1", null, "20.3", null, "1.7", null, "7.9", null, "1.2", null, "12.3", null, "1.2", null, "25.7", null, "1.7", null, "36.3", null, "1.6", null, "24.8", null, "1.6", null, "11.3", null, "1.3", null, "3.8", null, "0.8", null, "7.5", null, "1.0", null, "0.2", null, "0.1", null, "63.7", null, "1.6", null, "29.2", null, "1.6", null, "8.9", null, "1.2", null, "4.1", null, "1.0", null, "4.8", null, "0.9", null, "25.5", null, "1.7", null, "8.3", null, "1.2", null, "91.7", null, "1.2", null, "28.1", null, "1.6", null, "71.9", null, "1.6", null, "43.2", null, "1.8", null, "6.3", null, "0.8", null, "1.6", null, "0.5", null, "17.1", null, "1.0", null, "0.7", null, "0.4", null, "17.1", null, "1.4", null, "14.0", null, "1.4", null, "33.7", null, "1.4", null, "37.8", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.6", null, "1.2", null, "33.1", null, "2.4", null, "55.3", null, "2.4", null, "06", "09"], ["5001900US0610", "Congressional District 10 (119th Congress), California", "277840", null, "4839", null, "120841", null, "3882", null, "156999", null, "4638", null, "170676", null, "4388", null, "32526", null, "3059", null, "10440", null, "1819", null, "22086", null, "2191", null, "74638", null, "5263", null, "92613", null, "3717", null, "76545", null, "3583", null, "15724", null, "2357", null, "4190", null, "1324", null, "11534", null, "1825", null, "344", null, "371", null, "185227", null, "5816", null, "94131", null, "3807", null, "16802", null, "2637", null, "6250", null, "1463", null, "10552", null, "1962", null, "74294", null, "5271", null, "17498", null, "2687", null, "260342", null, "4778", null, "52501", null, "3618", null, "225339", null, "5214", null, "154507", null, "4654", null, "12480", null, "2498", null, "1277", null, "595", null, "59887", null, "3214", null, "-999999999", "N", "-999999999", "N", "16318", null, "2843", null, "33295", null, "3856", null, "43116", null, "3444", null, "146609", null, "4311", null, "151546", null, "5846", null, "203202", null, "4451", null, "29390", null, "2597", null, "62614", null, "3524", null, "111198", null, "3806", null, "-888888888", "(X)", "-888888888", "(X)", "43.5", null, "1.3", null, "56.5", null, "1.3", null, "61.4", null, "1.8", null, "11.7", null, "1.0", null, "3.8", null, "0.6", null, "7.9", null, "0.8", null, "26.9", null, "1.6", null, "33.3", null, "1.4", null, "27.6", null, "1.4", null, "5.7", null, "0.8", null, "1.5", null, "0.5", null, "4.2", null, "0.7", null, "0.1", null, "0.1", null, "66.7", null, "1.4", null, "33.9", null, "1.4", null, "6.0", null, "0.9", null, "2.2", null, "0.5", null, "3.8", null, "0.7", null, "26.7", null, "1.7", null, "6.3", null, "0.9", null, "93.7", null, "0.9", null, "18.9", null, "1.3", null, "81.1", null, "1.3", null, "55.6", null, "1.5", null, "4.5", null, "0.9", null, "0.5", null, "0.2", null, "21.6", null, "1.1", null, "-999999999.0", "N", "-999999999.0", "N", "5.9", null, "1.0", null, "12.0", null, "1.4", null, "15.5", null, "1.2", null, "52.8", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.5", null, "1.2", null, "30.8", null, "1.5", null, "54.7", null, "1.7", null, "14670", null, "2411", null, "7029", null, "1660", null, "7641", null, "1798", null, "5842", null, "1478", null, "5429", null, "1462", null, "1103", null, "647", null, "4326", null, "1261", null, "3399", null, "1230", null, "6449", null, "1575", null, "3608", null, "1242", null, "2841", null, "1009", null, "543", null, "446", null, "2298", null, "918", null, "0", null, "225", null, "8221", null, "1830", null, "2234", null, "974", null, "2588", null, "953", null, "560", null, "468", null, "2028", null, "827", null, "3399", null, "1230", null, "4442", null, "1456", null, "10228", null, "1905", null, "5296", null, "1382", null, "9374", null, "2014", null, "5753", null, "1521", null, "1104", null, "652", null, "190", null, "194", null, "3020", null, "1149", null, "-999999999", "N", "-999999999", "N", "1503", null, "849", null, "3100", null, "1145", null, "4863", null, "1366", null, "5011", null, "1359", null, "62538", null, "13746", null, "11271", null, "2085", null, "1723", null, "833", null, "3975", null, "1157", null, "5573", null, "1414", null, "5.3", null, "0.9", null, "47.9", null, "8.5", null, "52.1", null, "8.5", null, "39.8", null, "8.3", null, "37.0", null, "7.6", null, "7.5", null, "4.3", null, "29.5", null, "6.8", null, "23.2", null, "7.3", null, "44.0", null, "8.2", null, "24.6", null, "7.7", null, "19.4", null, "6.0", null, "3.7", null, "3.1", null, "15.7", null, "5.5", null, "0.0", null, "1.4", null, "56.0", null, "8.2", null, "15.2", null, "6.4", null, "17.6", null, "5.7", null, "3.8", null, "3.1", null, "13.8", null, "5.2", null, "23.2", null, "7.3", null, "30.3", null, "8.1", null, "69.7", null, "8.1", null, "36.1", null, "8.0", null, "63.9", null, "8.0", null, "39.2", null, "7.6", null, "7.5", null, "4.4", null, "1.3", null, "1.3", null, "20.6", null, "6.9", null, "-999999999.0", "N", "-999999999.0", "N", "10.2", null, "5.7", null, "21.1", null, "7.1", null, "33.1", null, "8.1", null, "34.2", null, "6.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.3", null, "6.6", null, "35.3", null, "8.3", null, "49.4", null, "9.1", null, "263170", null, "5316", null, "113812", null, "3774", null, "149358", null, "4628", null, "164834", null, "4430", null, "27097", null, "2864", null, "9337", null, "1832", null, "17760", null, "2038", null, "71239", null, "5077", null, "86164", null, "3382", null, "72937", null, "3430", null, "12883", null, "2274", null, "3647", null, "1221", null, "9236", null, "1740", null, "344", null, "371", null, "177006", null, "5703", null, "91897", null, "3868", null, "14214", null, "2440", null, "5690", null, "1492", null, "8524", null, "1732", null, "70895", null, "5081", null, "13056", null, "2376", null, "250114", null, "5239", null, "47205", null, "3467", null, "215965", null, "5422", null, "148754", null, "4886", null, "11376", null, "2353", null, "1087", null, "591", null, "56867", null, "3319", null, "-999999999", "N", "-999999999", "N", "14815", null, "2652", null, "30195", null, "3434", null, "38253", null, "3241", null, "141598", null, "4679", null, "157813", null, "7036", null, "191931", null, "4730", null, "27667", null, "2443", null, "58639", null, "3465", null, "105625", null, "3778", null, "94.7", null, "0.9", null, "43.2", null, "1.2", null, "56.8", null, "1.2", null, "62.6", null, "1.8", null, "10.3", null, "1.0", null, "3.5", null, "0.7", null, "6.7", null, "0.7", null, "27.1", null, "1.7", null, "32.7", null, "1.3", null, "27.7", null, "1.4", null, "4.9", null, "0.8", null, "1.4", null, "0.5", null, "3.5", null, "0.7", null, "0.1", null, "0.1", null, "67.3", null, "1.3", null, "34.9", null, "1.5", null, "5.4", null, "0.9", null, "2.2", null, "0.6", null, "3.2", null, "0.6", null, "26.9", null, "1.7", null, "5.0", null, "0.9", null, "95.0", null, "0.9", null, "17.9", null, "1.3", null, "82.1", null, "1.3", null, "56.5", null, "1.6", null, "4.3", null, "0.9", null, "0.4", null, "0.2", null, "21.6", null, "1.2", null, "-999999999.0", "N", "-999999999.0", "N", "5.6", null, "1.0", null, "11.5", null, "1.3", null, "14.5", null, "1.1", null, "53.8", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.4", null, "1.2", null, "30.6", null, "1.6", null, "55.0", null, "1.6", null, "06", "10"], ["5001900US0611", "Congressional District 11 (119th Congress), California", "340830", null, "5291", null, "115887", null, "3426", null, "224943", null, "4849", null, "106902", null, "5392", null, "33445", null, "3450", null, "11354", null, "2084", null, "22091", null, "2732", null, "200483", null, "6448", null, "52840", null, "3585", null, "39438", null, "3146", null, "12061", null, "2005", null, "2775", null, "786", null, "9286", null, "1842", null, "1341", null, "911", null, "287990", null, "5992", null, "67464", null, "4210", null, "21384", null, "2555", null, "8579", null, "1836", null, "12805", null, "2047", null, "199142", null, "6394", null, "43130", null, "3518", null, "297700", null, "6010", null, "69071", null, "4185", null, "271759", null, "6017", null, "159907", null, "3967", null, "15719", null, "1948", null, "1526", null, "655", null, "111609", null, "4138", null, "-999999999", "N", "-999999999", "N", "19737", null, "2691", null, "32087", null, "3488", null, "44908", null, "3356", null, "152278", null, "4002", null, "142524", null, "6089", null, "140347", null, "5591", null, "16676", null, "1774", null, "38788", null, "3586", null, "84883", null, "4906", null, "-888888888", "(X)", "-888888888", "(X)", "34.0", null, "0.9", null, "66.0", null, "0.9", null, "31.4", null, "1.5", null, "9.8", null, "1.0", null, "3.3", null, "0.6", null, "6.5", null, "0.8", null, "58.8", null, "1.6", null, "15.5", null, "1.0", null, "11.6", null, "0.9", null, "3.5", null, "0.6", null, "0.8", null, "0.2", null, "2.7", null, "0.5", null, "0.4", null, "0.3", null, "84.5", null, "1.0", null, "19.8", null, "1.2", null, "6.3", null, "0.8", null, "2.5", null, "0.5", null, "3.8", null, "0.6", null, "58.4", null, "1.5", null, "12.7", null, "1.0", null, "87.3", null, "1.0", null, "20.3", null, "1.2", null, "79.7", null, "1.2", null, "46.9", null, "1.1", null, "4.6", null, "0.6", null, "0.4", null, "0.2", null, "32.7", null, "1.1", null, "-999999999.0", "N", "-999999999.0", "N", "5.8", null, "0.8", null, "9.4", null, "1.0", null, "13.2", null, "1.0", null, "44.7", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.9", null, "1.3", null, "27.6", null, "2.2", null, "60.5", null, "2.3", null, "41251", null, "4071", null, "23067", null, "2638", null, "18184", null, "2726", null, "7042", null, "1548", null, "8078", null, "2076", null, "1942", null, "1153", null, "6136", null, "1537", null, "26131", null, "3360", null, "5280", null, "1333", null, "2065", null, "740", null, "2665", null, "1178", null, "553", null, "539", null, "2112", null, "984", null, "550", null, "655", null, "35971", null, "3641", null, "4977", null, "1234", null, "5413", null, "1532", null, "1389", null, "920", null, "4024", null, "1081", null, "25581", null, "3246", null, "20168", null, "2948", null, "21083", null, "2699", null, "21398", null, "2794", null, "19853", null, "2960", null, "10904", null, "1803", null, "3433", null, "1014", null, "122", null, "151", null, "17765", null, "2315", null, "-999999999", "N", "-999999999", "N", "4331", null, "1408", null, "4696", null, "1526", null, "6755", null, "1684", null, "10446", null, "1722", null, "21721", null, "3293", null, "15120", null, "2667", null, "4266", null, "1229", null, "5553", null, "1204", null, "5301", null, "1612", null, "12.1", null, "1.2", null, "55.9", null, "4.3", null, "44.1", null, "4.3", null, "17.1", null, "3.5", null, "19.6", null, "4.5", null, "4.7", null, "2.7", null, "14.9", null, "3.5", null, "63.3", null, "5.3", null, "12.8", null, "2.9", null, "5.0", null, "1.7", null, "6.5", null, "2.7", null, "1.3", null, "1.3", null, "5.1", null, "2.3", null, "1.3", null, "1.6", null, "87.2", null, "2.9", null, "12.1", null, "2.9", null, "13.1", null, "3.4", null, "3.4", null, "2.2", null, "9.8", null, "2.5", null, "62.0", null, "4.9", null, "48.9", null, "4.8", null, "51.1", null, "4.8", null, "51.9", null, "4.9", null, "48.1", null, "4.9", null, "26.4", null, "3.6", null, "8.3", null, "2.6", null, "0.3", null, "0.4", null, "43.1", null, "3.7", null, "-999999999.0", "N", "-999999999.0", "N", "10.5", null, "3.2", null, "11.4", null, "3.3", null, "16.4", null, "3.6", null, "25.3", null, "3.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "28.2", null, "6.4", null, "36.7", null, "6.7", null, "35.1", null, "7.3", null, "299579", null, "6388", null, "92820", null, "3767", null, "206759", null, "5140", null, "99860", null, "5248", null, "25367", null, "2854", null, "9412", null, "1862", null, "15955", null, "2246", null, "174352", null, "6788", null, "47560", null, "3777", null, "37373", null, "3099", null, "9396", null, "1776", null, "2222", null, "662", null, "7174", null, "1660", null, "791", null, "625", null, "252019", null, "6676", null, "62487", null, "4165", null, "15971", null, "2188", null, "7190", null, "1699", null, "8781", null, "1664", null, "173561", null, "6839", null, "22962", null, "2565", null, "276617", null, "6611", null, "47673", null, "3611", null, "251906", null, "6554", null, "149003", null, "3883", null, "12286", null, "1986", null, "1404", null, "676", null, "93844", null, "4379", null, "-999999999", "N", "-999999999", "N", "15406", null, "2491", null, "27391", null, "3504", null, "38153", null, "3707", null, "141832", null, "3729", null, "164135", null, "5434", null, "125227", null, "5817", null, "12410", null, "1393", null, "33235", null, "3469", null, "79582", null, "5051", null, "87.9", null, "1.2", null, "31.0", null, "1.0", null, "69.0", null, "1.0", null, "33.3", null, "1.6", null, "8.5", null, "1.0", null, "3.1", null, "0.6", null, "5.3", null, "0.7", null, "58.2", null, "1.8", null, "15.9", null, "1.2", null, "12.5", null, "1.0", null, "3.1", null, "0.6", null, "0.7", null, "0.2", null, "2.4", null, "0.6", null, "0.3", null, "0.2", null, "84.1", null, "1.2", null, "20.9", null, "1.3", null, "5.3", null, "0.7", null, "2.4", null, "0.6", null, "2.9", null, "0.5", null, "57.9", null, "1.8", null, "7.7", null, "0.9", null, "92.3", null, "0.9", null, "15.9", null, "1.2", null, "84.1", null, "1.2", null, "49.7", null, "1.3", null, "4.1", null, "0.7", null, "0.5", null, "0.2", null, "31.3", null, "1.2", null, "-999999999.0", "N", "-999999999.0", "N", "5.1", null, "0.8", null, "9.1", null, "1.1", null, "12.7", null, "1.1", null, "47.3", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "9.9", null, "1.2", null, "26.5", null, "2.4", null, "63.6", null, "2.5", null, "06", "11"], ["5001900US0612", "Congressional District 12 (119th Congress), California", "307448", null, "4856", null, "113659", null, "4061", null, "193789", null, "4167", null, "114804", null, "5023", null, "50261", null, "3977", null, "16870", null, "2202", null, "33391", null, "3357", null, "142383", null, "6564", null, "73188", null, "3672", null, "46988", null, "3039", null, "25285", null, "2947", null, "8212", null, "1700", null, "17073", null, "2521", null, "915", null, "482", null, "234260", null, "6331", null, "67816", null, "4247", null, "24976", null, "2746", null, "8658", null, "1426", null, "16318", null, "2535", null, "141468", null, "6516", null, "37754", null, "3325", null, "269694", null, "5284", null, "70197", null, "4178", null, "237251", null, "6153", null, "119842", null, "4630", null, "48804", null, "3457", null, "4393", null, "1383", null, "64979", null, "4056", null, "-999999999", "N", "-999999999", "N", "34733", null, "3195", null, "33702", null, "3704", null, "56959", null, "3361", null, "114277", null, "4561", null, "111408", null, "4318", null, "165065", null, "5060", null, "19303", null, "2229", null, "51920", null, "4241", null, "93842", null, "3896", null, "-888888888", "(X)", "-888888888", "(X)", "37.0", null, "1.1", null, "63.0", null, "1.1", null, "37.3", null, "1.6", null, "16.3", null, "1.3", null, "5.5", null, "0.7", null, "10.9", null, "1.1", null, "46.3", null, "1.8", null, "23.8", null, "1.3", null, "15.3", null, "1.0", null, "8.2", null, "1.0", null, "2.7", null, "0.6", null, "5.6", null, "0.8", null, "0.3", null, "0.2", null, "76.2", null, "1.3", null, "22.1", null, "1.4", null, "8.1", null, "0.9", null, "2.8", null, "0.5", null, "5.3", null, "0.8", null, "46.0", null, "1.8", null, "12.3", null, "1.1", null, "87.7", null, "1.1", null, "22.8", null, "1.4", null, "77.2", null, "1.4", null, "39.0", null, "1.3", null, "15.9", null, "1.1", null, "1.4", null, "0.5", null, "21.1", null, "1.3", null, "-999999999.0", "N", "-999999999.0", "N", "11.3", null, "1.0", null, "11.0", null, "1.2", null, "18.5", null, "1.1", null, "37.2", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.7", null, "1.3", null, "31.5", null, "2.1", null, "56.9", null, "2.3", null, "40962", null, "3795", null, "19763", null, "2558", null, "21199", null, "2627", null, "9596", null, "1716", null, "12202", null, "2104", null, "2677", null, "841", null, "9525", null, "1819", null, "19164", null, "2738", null, "12271", null, "2137", null, "5111", null, "1345", null, "6905", null, "1812", null, "1175", null, "643", null, "5730", null, "1608", null, "255", null, "291", null, "28691", null, "3202", null, "4485", null, "1150", null, "5297", null, "1227", null, "1502", null, "628", null, "3795", null, "1038", null, "18909", null, "2720", null, "16907", null, "2958", null, "24055", null, "2816", null, "18593", null, "2345", null, "22369", null, "2952", null, "7337", null, "1343", null, "10286", null, "1997", null, "563", null, "496", null, "11237", null, "1839", null, "-999999999", "N", "-999999999", "N", "6706", null, "1492", null, "4563", null, "1448", null, "9003", null, "1701", null, "6904", null, "1344", null, "28568", null, "5855", null, "21798", null, "2477", null, "4395", null, "1137", null, "9836", null, "1735", null, "7567", null, "1541", null, "13.3", null, "1.2", null, "48.2", null, "4.3", null, "51.8", null, "4.3", null, "23.4", null, "4.0", null, "29.8", null, "4.3", null, "6.5", null, "1.9", null, "23.3", null, "3.9", null, "46.8", null, "4.4", null, "30.0", null, "4.4", null, "12.5", null, "3.2", null, "16.9", null, "4.0", null, "2.9", null, "1.5", null, "14.0", null, "3.6", null, "0.6", null, "0.7", null, "70.0", null, "4.4", null, "10.9", null, "2.8", null, "12.9", null, "2.9", null, "3.7", null, "1.5", null, "9.3", null, "2.5", null, "46.2", null, "4.4", null, "41.3", null, "5.5", null, "58.7", null, "5.5", null, "45.4", null, "4.5", null, "54.6", null, "4.5", null, "17.9", null, "3.1", null, "25.1", null, "3.9", null, "1.4", null, "1.2", null, "27.4", null, "3.8", null, "-999999999.0", "N", "-999999999.0", "N", "16.4", null, "3.3", null, "11.1", null, "3.5", null, "22.0", null, "3.6", null, "16.9", null, "3.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "20.2", null, "4.5", null, "45.1", null, "6.1", null, "34.7", null, "6.1", null, "266486", null, "5364", null, "93896", null, "3837", null, "172590", null, "4640", null, "105208", null, "4745", null, "38059", null, "3479", null, "14193", null, "2137", null, "23866", null, "2724", null, "123219", null, "6044", null, "60917", null, "3579", null, "41877", null, "2873", null, "18380", null, "2438", null, "7037", null, "1566", null, "11343", null, "1968", null, "660", null, "369", null, "205569", null, "6024", null, "63331", null, "4098", null, "19679", null, "2511", null, "7156", null, "1473", null, "12523", null, "2176", null, "122559", null, "5985", null, "20847", null, "2424", null, "245639", null, "5655", null, "51604", null, "3743", null, "214882", null, "5819", null, "112505", null, "4725", null, "38518", null, "3289", null, "3830", null, "1269", null, "53742", null, "3912", null, "-999999999", "N", "-999999999", "N", "28027", null, "2961", null, "29139", null, "3503", null, "47956", null, "3365", null, "107373", null, "4630", null, "129481", null, "5015", null, "143267", null, "4921", null, "14908", null, "1815", null, "42084", null, "4067", null, "86275", null, "3902", null, "86.7", null, "1.2", null, "35.2", null, "1.2", null, "64.8", null, "1.2", null, "39.5", null, "1.8", null, "14.3", null, "1.3", null, "5.3", null, "0.8", null, "9.0", null, "1.0", null, "46.2", null, "1.8", null, "22.9", null, "1.4", null, "15.7", null, "1.1", null, "6.9", null, "0.9", null, "2.6", null, "0.6", null, "4.3", null, "0.7", null, "0.2", null, "0.1", null, "77.1", null, "1.4", null, "23.8", null, "1.5", null, "7.4", null, "0.9", null, "2.7", null, "0.5", null, "4.7", null, "0.8", null, "46.0", null, "1.8", null, "7.8", null, "0.9", null, "92.2", null, "0.9", null, "19.4", null, "1.4", null, "80.6", null, "1.4", null, "42.2", null, "1.6", null, "14.5", null, "1.2", null, "1.4", null, "0.5", null, "20.2", null, "1.4", null, "-999999999.0", "N", "-999999999.0", "N", "10.5", null, "1.1", null, "10.9", null, "1.3", null, "18.0", null, "1.2", null, "40.3", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.4", null, "1.2", null, "29.4", null, "2.3", null, "60.2", null, "2.6", null, "06", "12"], ["5001900US0613", "Congressional District 13 (119th Congress), California", "227578", null, "4331", null, "86306", null, "3279", null, "141272", null, "4423", null, "111011", null, "4890", null, "58692", null, "3799", null, "22393", null, "2846", null, "36299", null, "3043", null, "57875", null, "4429", null, "95564", null, "4987", null, "59025", null, "3905", null, "36345", null, "3155", null, "11906", null, "2083", null, "24439", null, "2533", null, "194", null, "205", null, "132014", null, "4747", null, "51986", null, "3575", null, "22347", null, "2796", null, "10487", null, "2167", null, "11860", null, "1944", null, "57681", null, "4391", null, "42373", null, "3544", null, "185205", null, "4536", null, "65048", null, "3444", null, "162530", null, "4649", null, "77091", null, "2977", null, "6443", null, "1267", null, "4438", null, "1313", null, "15688", null, "2080", null, "-999999999", "N", "-999999999", "N", "77831", null, "3963", null, "45457", null, "3425", null, "136537", null, "3826", null, "62804", null, "2762", null, "68434", null, "2901", null, "169703", null, "5708", null, "21533", null, "2230", null, "59118", null, "4235", null, "89052", null, "4627", null, "-888888888", "(X)", "-888888888", "(X)", "37.9", null, "1.4", null, "62.1", null, "1.4", null, "48.8", null, "1.9", null, "25.8", null, "1.6", null, "9.8", null, "1.2", null, "16.0", null, "1.3", null, "25.4", null, "1.9", null, "42.0", null, "1.9", null, "25.9", null, "1.6", null, "16.0", null, "1.3", null, "5.2", null, "0.9", null, "10.7", null, "1.1", null, "0.1", null, "0.1", null, "58.0", null, "1.9", null, "22.8", null, "1.5", null, "9.8", null, "1.2", null, "4.6", null, "0.9", null, "5.2", null, "0.9", null, "25.3", null, "1.9", null, "18.6", null, "1.5", null, "81.4", null, "1.5", null, "28.6", null, "1.4", null, "71.4", null, "1.4", null, "33.9", null, "1.2", null, "2.8", null, "0.6", null, "2.0", null, "0.6", null, "6.9", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "34.2", null, "1.6", null, "20.0", null, "1.5", null, "60.0", null, "1.3", null, "27.6", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.7", null, "1.3", null, "34.8", null, "2.1", null, "52.5", null, "2.0", null, "50194", null, "3465", null, "18859", null, "2091", null, "31335", null, "3211", null, "16897", null, "2358", null, "24175", null, "2186", null, "7509", null, "1552", null, "16666", null, "2110", null, "9122", null, "1977", null, "29631", null, "3078", null, "11600", null, "2094", null, "17986", null, "2160", null, "5208", null, "1435", null, "12778", null, "1862", null, "45", null, "78", null, "20563", null, "2808", null, "5297", null, "1156", null, "6189", null, "1546", null, "2301", null, "864", null, "3888", null, "1212", null, "9077", null, "1968", null, "19836", null, "2685", null, "30358", null, "2696", null, "21115", null, "2243", null, "29079", null, "3182", null, "13893", null, "2081", null, "2376", null, "762", null, "1419", null, "765", null, "2531", null, "884", null, "-999999999", "N", "-999999999", "N", "19276", null, "2359", null, "10699", null, "1823", null, "33748", null, "2896", null, "10039", null, "1575", null, "43733", null, "5051", null, "41072", null, "3329", null, "6537", null, "1570", null, "18314", null, "2686", null, "16221", null, "2133", null, "22.1", null, "1.5", null, "37.6", null, "3.9", null, "62.4", null, "3.9", null, "33.7", null, "3.9", null, "48.2", null, "3.2", null, "15.0", null, "3.1", null, "33.2", null, "3.3", null, "18.2", null, "3.7", null, "59.0", null, "4.7", null, "23.1", null, "3.7", null, "35.8", null, "3.9", null, "10.4", null, "2.9", null, "25.5", null, "3.2", null, "0.1", null, "0.2", null, "41.0", null, "4.7", null, "10.6", null, "2.2", null, "12.3", null, "2.9", null, "4.6", null, "1.7", null, "7.7", null, "2.3", null, "18.1", null, "3.7", null, "39.5", null, "4.2", null, "60.5", null, "4.2", null, "42.1", null, "4.1", null, "57.9", null, "4.1", null, "27.7", null, "3.7", null, "4.7", null, "1.5", null, "2.8", null, "1.5", null, "5.0", null, "1.7", null, "-999999999.0", "N", "-999999999.0", "N", "38.4", null, "3.9", null, "21.3", null, "3.3", null, "67.2", null, "3.3", null, "20.0", null, "2.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.9", null, "3.9", null, "44.6", null, "5.0", null, "39.5", null, "4.0", null, "177384", null, "4982", null, "67447", null, "3272", null, "109937", null, "4763", null, "94114", null, "4369", null, "34517", null, "3624", null, "14884", null, "2675", null, "19633", null, "2342", null, "48753", null, "4033", null, "65933", null, "4156", null, "47425", null, "3248", null, "18359", null, "2741", null, "6698", null, "1582", null, "11661", null, "2001", null, "149", null, "186", null, "111451", null, "4494", null, "46689", null, "3287", null, "16158", null, "2339", null, "8186", null, "2012", null, "7972", null, "1377", null, "48604", null, "3989", null, "22537", null, "3033", null, "154847", null, "4395", null, "43933", null, "3127", null, "133451", null, "5195", null, "63198", null, "2776", null, "4067", null, "1228", null, "3019", null, "1033", null, "13157", null, "1890", null, "-999999999", "N", "-999999999", "N", "58555", null, "3617", null, "34758", null, "3268", null, "102789", null, "4356", null, "52765", null, "2681", null, "74186", null, "3790", null, "128631", null, "5212", null, "14996", null, "1830", null, "40804", null, "3365", null, "72831", null, "4515", null, "77.9", null, "1.5", null, "38.0", null, "1.7", null, "62.0", null, "1.7", null, "53.1", null, "2.2", null, "19.5", null, "1.9", null, "8.4", null, "1.4", null, "11.1", null, "1.3", null, "27.5", null, "2.1", null, "37.2", null, "2.0", null, "26.7", null, "1.7", null, "10.3", null, "1.5", null, "3.8", null, "0.9", null, "6.6", null, "1.1", null, "0.1", null, "0.1", null, "62.8", null, "2.0", null, "26.3", null, "1.8", null, "9.1", null, "1.3", null, "4.6", null, "1.1", null, "4.5", null, "0.8", null, "27.4", null, "2.1", null, "12.7", null, "1.6", null, "87.3", null, "1.6", null, "24.8", null, "1.7", null, "75.2", null, "1.7", null, "35.6", null, "1.4", null, "2.3", null, "0.7", null, "1.7", null, "0.6", null, "7.4", null, "1.0", null, "-999999999.0", "N", "-999999999.0", "N", "33.0", null, "1.8", null, "19.6", null, "1.7", null, "57.9", null, "1.7", null, "29.7", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.7", null, "1.5", null, "31.7", null, "2.2", null, "56.6", null, "2.4", null, "06", "13"], ["5001900US0614", "Congressional District 14 (119th Congress), California", "248029", null, "4438", null, "107095", null, "4027", null, "140934", null, "4271", null, "144688", null, "4535", null, "39479", null, "3443", null, "12587", null, "2395", null, "26892", null, "2892", null, "63862", null, "4636", null, "84352", null, "3965", null, "66660", null, "3754", null, "17505", null, "2407", null, "5634", null, "1566", null, "11871", null, "1975", null, "187", null, "188", null, "163677", null, "5671", null, "78028", null, "3895", null, "21974", null, "2443", null, "6953", null, "1644", null, "15021", null, "1973", null, "63675", null, "4587", null, "18312", null, "2316", null, "229717", null, "4341", null, "53824", null, "3486", null, "194205", null, "5159", null, "79182", null, "3591", null, "14958", null, "2491", null, "1506", null, "603", null, "99288", null, "3965", null, "1781", null, "559", null, "25624", null, "2755", null, "25690", null, "2717", null, "47810", null, "2928", null, "74687", null, "3497", null, "137402", null, "5359", null, "184167", null, "4462", null, "18090", null, "1998", null, "51171", null, "4333", null, "114906", null, "4476", null, "-888888888", "(X)", "-888888888", "(X)", "43.2", null, "1.4", null, "56.8", null, "1.4", null, "58.3", null, "1.7", null, "15.9", null, "1.4", null, "5.1", null, "1.0", null, "10.8", null, "1.2", null, "25.7", null, "1.7", null, "34.0", null, "1.7", null, "26.9", null, "1.6", null, "7.1", null, "1.0", null, "2.3", null, "0.6", null, "4.8", null, "0.8", null, "0.1", null, "0.1", null, "66.0", null, "1.7", null, "31.5", null, "1.4", null, "8.9", null, "1.0", null, "2.8", null, "0.7", null, "6.1", null, "0.8", null, "25.7", null, "1.7", null, "7.4", null, "0.9", null, "92.6", null, "0.9", null, "21.7", null, "1.4", null, "78.3", null, "1.4", null, "31.9", null, "1.3", null, "6.0", null, "1.0", null, "0.6", null, "0.2", null, "40.0", null, "1.4", null, "0.7", null, "0.2", null, "10.3", null, "1.1", null, "10.4", null, "1.1", null, "19.3", null, "1.2", null, "30.1", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "9.8", null, "1.0", null, "27.8", null, "2.1", null, "62.4", null, "2.3", null, "22688", null, "2297", null, "10491", null, "1645", null, "12197", null, "2039", null, "7737", null, "1474", null, "7811", null, "1498", null, "1499", null, "703", null, "6312", null, "1438", null, "7140", null, "1644", null, "10055", null, "2064", null, "5338", null, "1372", null, "4717", null, "1389", null, "483", null, "378", null, "4234", null, "1387", null, "0", null, "225", null, "12633", null, "1783", null, "2399", null, "765", null, "3094", null, "989", null, "1016", null, "613", null, "2078", null, "699", null, "7140", null, "1644", null, "6810", null, "1563", null, "15878", null, "1864", null, "10044", null, "1634", null, "12644", null, "1982", null, "4489", null, "1281", null, "3371", null, "1251", null, "214", null, "184", null, "7512", null, "1257", null, "90", null, "135", null, "3265", null, "1052", null, "3747", null, "1048", null, "5912", null, "1302", null, "4149", null, "1297", null, "51516", null, "11366", null, "15548", null, "2162", null, "2141", null, "905", null, "7132", null, "1706", null, "6275", null, "1471", null, "9.1", null, "0.9", null, "46.2", null, "6.4", null, "53.8", null, "6.4", null, "34.1", null, "5.5", null, "34.4", null, "5.5", null, "6.6", null, "3.3", null, "27.8", null, "5.0", null, "31.5", null, "6.5", null, "44.3", null, "6.9", null, "23.5", null, "5.1", null, "20.8", null, "5.5", null, "2.1", null, "1.7", null, "18.7", null, "5.5", null, "0.0", null, "0.9", null, "55.7", null, "6.9", null, "10.6", null, "3.5", null, "13.6", null, "4.3", null, "4.5", null, "2.8", null, "9.2", null, "2.9", null, "31.5", null, "6.5", null, "30.0", null, "5.7", null, "70.0", null, "5.7", null, "44.3", null, "6.1", null, "55.7", null, "6.1", null, "19.8", null, "5.3", null, "14.9", null, "5.0", null, "0.9", null, "0.8", null, "33.1", null, "5.6", null, "0.4", null, "0.6", null, "14.4", null, "4.4", null, "16.5", null, "4.2", null, "26.1", null, "5.1", null, "18.3", null, "5.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.8", null, "5.4", null, "45.9", null, "8.8", null, "40.4", null, "8.1", null, "225341", null, "4971", null, "96604", null, "3967", null, "128737", null, "4267", null, "136951", null, "4680", null, "31668", null, "3368", null, "11088", null, "2372", null, "20580", null, "2431", null, "56722", null, "4396", null, "74297", null, "3784", null, "61322", null, "3725", null, "12788", null, "2139", null, "5151", null, "1552", null, "7637", null, "1517", null, "187", null, "188", null, "151044", null, "5513", null, "75629", null, "3933", null, "18880", null, "2362", null, "5937", null, "1556", null, "12943", null, "1911", null, "56535", null, "4358", null, "11502", null, "1787", null, "213839", null, "4767", null, "43780", null, "3351", null, "181561", null, "5621", null, "74693", null, "3177", null, "11587", null, "2273", null, "1292", null, "589", null, "91776", null, "4198", null, "1691", null, "535", null, "22359", null, "2769", null, "21943", null, "2771", null, "41898", null, "3060", null, "70538", null, "3073", null, "148399", null, "6157", null, "168619", null, "4786", null, "15949", null, "1732", null, "44039", null, "4049", null, "108631", null, "4374", null, "90.9", null, "0.9", null, "42.9", null, "1.5", null, "57.1", null, "1.5", null, "60.8", null, "1.8", null, "14.1", null, "1.5", null, "4.9", null, "1.1", null, "9.1", null, "1.1", null, "25.2", null, "1.8", null, "33.0", null, "1.7", null, "27.2", null, "1.7", null, "5.7", null, "0.9", null, "2.3", null, "0.7", null, "3.4", null, "0.7", null, "0.1", null, "0.1", null, "67.0", null, "1.7", null, "33.6", null, "1.6", null, "8.4", null, "1.0", null, "2.6", null, "0.7", null, "5.7", null, "0.8", null, "25.1", null, "1.7", null, "5.1", null, "0.8", null, "94.9", null, "0.8", null, "19.4", null, "1.5", null, "80.6", null, "1.5", null, "33.1", null, "1.3", null, "5.1", null, "1.0", null, "0.6", null, "0.3", null, "40.7", null, "1.6", null, "0.8", null, "0.2", null, "9.9", null, "1.3", null, "9.7", null, "1.2", null, "18.6", null, "1.4", null, "31.3", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "9.5", null, "1.0", null, "26.1", null, "2.1", null, "64.4", null, "2.3", null, "06", "14"], ["5001900US0615", "Congressional District 15 (119th Congress), California", "252945", null, "4366", null, "112870", null, "4103", null, "140075", null, "3707", null, "129799", null, "4094", null, "43345", null, "3232", null, "14071", null, "1905", null, "29274", null, "2515", null, "79801", null, "4418", null, "72621", null, "4047", null, "53786", null, "3656", null, "17921", null, "2214", null, "6090", null, "1371", null, "11831", null, "1816", null, "914", null, "662", null, "180324", null, "5001", null, "76013", null, "3611", null, "25424", null, "2589", null, "7981", null, "1390", null, "17443", null, "2226", null, "78887", null, "4282", null, "18101", null, "2176", null, "234844", null, "4378", null, "54535", null, "3019", null, "198410", null, "4433", null, "95295", null, "3154", null, "6262", null, "1074", null, "1596", null, "602", null, "94236", null, "3052", null, "2080", null, "817", null, "23299", null, "2430", null, "30177", null, "2690", null, "50533", null, "2562", null, "87984", null, "3002", null, "151494", null, "6688", null, "173144", null, "4411", null, "19145", null, "1999", null, "45991", null, "3186", null, "108008", null, "4429", null, "-888888888", "(X)", "-888888888", "(X)", "44.6", null, "1.3", null, "55.4", null, "1.3", null, "51.3", null, "1.7", null, "17.1", null, "1.2", null, "5.6", null, "0.7", null, "11.6", null, "0.9", null, "31.5", null, "1.6", null, "28.7", null, "1.5", null, "21.3", null, "1.4", null, "7.1", null, "0.9", null, "2.4", null, "0.5", null, "4.7", null, "0.7", null, "0.4", null, "0.3", null, "71.3", null, "1.5", null, "30.1", null, "1.5", null, "10.1", null, "1.0", null, "3.2", null, "0.5", null, "6.9", null, "0.9", null, "31.2", null, "1.5", null, "7.2", null, "0.8", null, "92.8", null, "0.8", null, "21.6", null, "1.1", null, "78.4", null, "1.1", null, "37.7", null, "1.1", null, "2.5", null, "0.4", null, "0.6", null, "0.2", null, "37.3", null, "1.1", null, "0.8", null, "0.3", null, "9.2", null, "0.9", null, "11.9", null, "1.0", null, "20.0", null, "0.9", null, "34.8", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.1", null, "1.1", null, "26.6", null, "1.7", null, "62.4", null, "2.0", null, "18470", null, "2592", null, "12122", null, "1822", null, "6348", null, "1524", null, "6106", null, "1387", null, "7629", null, "1282", null, "2023", null, "810", null, "5606", null, "1167", null, "4735", null, "1210", null, "7516", null, "1698", null, "3326", null, "1112", null, "4036", null, "1155", null, "1110", null, "679", null, "2926", null, "1024", null, "154", null, "237", null, "10954", null, "1984", null, "2780", null, "940", null, "3593", null, "1002", null, "913", null, "451", null, "2680", null, "788", null, "4581", null, "1153", null, "5496", null, "1552", null, "12974", null, "1852", null, "7976", null, "1664", null, "10494", null, "2149", null, "3738", null, "1054", null, "304", null, "271", null, "341", null, "351", null, "8004", null, "1462", null, "355", null, "492", null, "2855", null, "1061", null, "2873", null, "1030", null, "5696", null, "1508", null, "3200", null, "854", null, "60309", null, "22246", null, "13735", null, "2023", null, "2670", null, "892", null, "4631", null, "1297", null, "6434", null, "1320", null, "7.3", null, "1.0", null, "65.6", null, "5.9", null, "34.4", null, "5.9", null, "33.1", null, "5.2", null, "41.3", null, "5.7", null, "11.0", null, "4.1", null, "30.4", null, "6.1", null, "25.6", null, "5.0", null, "40.7", null, "7.1", null, "18.0", null, "5.1", null, "21.9", null, "5.8", null, "6.0", null, "3.6", null, "15.8", null, "5.5", null, "0.8", null, "1.3", null, "59.3", null, "7.1", null, "15.1", null, "4.6", null, "19.5", null, "5.2", null, "4.9", null, "2.4", null, "14.5", null, "4.2", null, "24.8", null, "4.8", null, "29.8", null, "6.2", null, "70.2", null, "6.2", null, "43.2", null, "7.5", null, "56.8", null, "7.5", null, "20.2", null, "5.0", null, "1.6", null, "1.4", null, "1.8", null, "1.9", null, "43.3", null, "6.6", null, "1.9", null, "2.6", null, "15.5", null, "5.0", null, "15.6", null, "5.2", null, "30.8", null, "6.3", null, "17.3", null, "4.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "19.4", null, "5.8", null, "33.7", null, "6.9", null, "46.8", null, "8.3", null, "234475", null, "4538", null, "100748", null, "3745", null, "133727", null, "4113", null, "123693", null, "4277", null, "35716", null, "3266", null, "12048", null, "1928", null, "23668", null, "2397", null, "75066", null, "4207", null, "65105", null, "3965", null, "50460", null, "3579", null, "13885", null, "2130", null, "4980", null, "1321", null, "8905", null, "1699", null, "760", null, "601", null, "169370", null, "4932", null, "73233", null, "3670", null, "21831", null, "2227", null, "7068", null, "1311", null, "14763", null, "1926", null, "74306", null, "4119", null, "12605", null, "1826", null, "221870", null, "4420", null, "46559", null, "2818", null, "187916", null, "4771", null, "91557", null, "3296", null, "5958", null, "1083", null, "1255", null, "478", null, "86232", null, "3076", null, "1725", null, "732", null, "20444", null, "2309", null, "27304", null, "2435", null, "44837", null, "2649", null, "84784", null, "3130", null, "159692", null, "7997", null, "159409", null, "4481", null, "16475", null, "1831", null, "41360", null, "3013", null, "101574", null, "4368", null, "92.7", null, "1.0", null, "43.0", null, "1.4", null, "57.0", null, "1.4", null, "52.8", null, "1.8", null, "15.2", null, "1.3", null, "5.1", null, "0.8", null, "10.1", null, "1.0", null, "32.0", null, "1.6", null, "27.8", null, "1.6", null, "21.5", null, "1.5", null, "5.9", null, "0.9", null, "2.1", null, "0.6", null, "3.8", null, "0.7", null, "0.3", null, "0.3", null, "72.2", null, "1.6", null, "31.2", null, "1.6", null, "9.3", null, "0.9", null, "3.0", null, "0.5", null, "6.3", null, "0.8", null, "31.7", null, "1.6", null, "5.4", null, "0.8", null, "94.6", null, "0.8", null, "19.9", null, "1.2", null, "80.1", null, "1.2", null, "39.0", null, "1.1", null, "2.5", null, "0.5", null, "0.5", null, "0.2", null, "36.8", null, "1.2", null, "0.7", null, "0.3", null, "8.7", null, "1.0", null, "11.6", null, "1.0", null, "19.1", null, "1.0", null, "36.2", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.3", null, "1.1", null, "25.9", null, "1.8", null, "63.7", null, "2.0", null, "06", "15"], ["5001900US0616", "Congressional District 16 (119th Congress), California", "273057", null, "5425", null, "114388", null, "4310", null, "158669", null, "5484", null, "150169", null, "5031", null, "37748", null, "3132", null, "12482", null, "2090", null, "25266", null, "2666", null, "85140", null, "4968", null, "84263", null, "4047", null, "65437", null, "3536", null, "18586", null, "2253", null, "6324", null, "1705", null, "12262", null, "1977", null, "240", null, "236", null, "188794", null, "5898", null, "84732", null, "4021", null, "19162", null, "2252", null, "6158", null, "1310", null, "13004", null, "1971", null, "84900", null, "4989", null, "18764", null, "2302", null, "254293", null, "5549", null, "55378", null, "4037", null, "217679", null, "6083", null, "136085", null, "4707", null, "4369", null, "1544", null, "1775", null, "732", null, "86799", null, "3893", null, "-999999999", "N", "-999999999", "N", "15684", null, "2079", null, "27993", null, "2954", null, "39505", null, "3285", null, "130779", null, "4436", null, "181659", null, "8262", null, "187917", null, "4429", null, "22415", null, "1927", null, "55869", null, "3930", null, "109633", null, "4459", null, "-888888888", "(X)", "-888888888", "(X)", "41.9", null, "1.5", null, "58.1", null, "1.5", null, "55.0", null, "1.8", null, "13.8", null, "1.1", null, "4.6", null, "0.8", null, "9.3", null, "1.0", null, "31.2", null, "1.5", null, "30.9", null, "1.5", null, "24.0", null, "1.3", null, "6.8", null, "0.8", null, "2.3", null, "0.6", null, "4.5", null, "0.7", null, "0.1", null, "0.1", null, "69.1", null, "1.5", null, "31.0", null, "1.5", null, "7.0", null, "0.8", null, "2.3", null, "0.5", null, "4.8", null, "0.7", null, "31.1", null, "1.5", null, "6.9", null, "0.8", null, "93.1", null, "0.8", null, "20.3", null, "1.5", null, "79.7", null, "1.5", null, "49.8", null, "1.5", null, "1.6", null, "0.6", null, "0.7", null, "0.3", null, "31.8", null, "1.2", null, "-999999999.0", "N", "-999999999.0", "N", "5.7", null, "0.8", null, "10.3", null, "1.1", null, "14.5", null, "1.2", null, "47.9", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.9", null, "1.0", null, "29.7", null, "1.9", null, "58.3", null, "2.0", null, "15623", null, "2091", null, "10214", null, "1640", null, "5409", null, "1463", null, "4844", null, "1240", null, "6049", null, "1176", null, "1579", null, "648", null, "4470", null, "1042", null, "4730", null, "1220", null, "5715", null, "1501", null, "2779", null, "991", null, "2936", null, "1095", null, "562", null, "418", null, "2374", null, "1104", null, "0", null, "225", null, "9908", null, "1529", null, "2065", null, "619", null, "3113", null, "884", null, "1017", null, "472", null, "2096", null, "778", null, "4730", null, "1220", null, "4718", null, "1145", null, "10905", null, "1912", null, "7659", null, "1587", null, "7964", null, "1711", null, "4579", null, "1023", null, "299", null, "375", null, "322", null, "385", null, "6392", null, "1483", null, "-999999999", "N", "-999999999", "N", "1994", null, "846", null, "2006", null, "885", null, "4284", null, "1285", null, "4055", null, "1008", null, "47429", null, "11855", null, "10893", null, "1739", null, "1933", null, "726", null, "4014", null, "1051", null, "4946", null, "1275", null, "5.7", null, "0.8", null, "65.4", null, "7.4", null, "34.6", null, "7.4", null, "31.0", null, "6.4", null, "38.7", null, "6.2", null, "10.1", null, "4.1", null, "28.6", null, "5.8", null, "30.3", null, "6.5", null, "36.6", null, "7.2", null, "17.8", null, "5.3", null, "18.8", null, "6.4", null, "3.6", null, "2.6", null, "15.2", null, "6.6", null, "0.0", null, "1.3", null, "63.4", null, "7.2", null, "13.2", null, "3.9", null, "19.9", null, "5.7", null, "6.5", null, "3.0", null, "13.4", null, "5.1", null, "30.3", null, "6.5", null, "30.2", null, "6.7", null, "69.8", null, "6.7", null, "49.0", null, "8.1", null, "51.0", null, "8.1", null, "29.3", null, "5.9", null, "1.9", null, "2.4", null, "2.1", null, "2.5", null, "40.9", null, "7.6", null, "-999999999.0", "N", "-999999999.0", "N", "12.8", null, "5.0", null, "12.8", null, "5.3", null, "27.4", null, "7.0", null, "26.0", null, "6.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.7", null, "6.3", null, "36.8", null, "8.0", null, "45.4", null, "8.7", null, "257434", null, "5626", null, "104174", null, "4160", null, "153260", null, "5607", null, "145325", null, "4914", null, "31699", null, "3201", null, "10903", null, "2041", null, "20796", null, "2520", null, "80410", null, "4979", null, "78548", null, "3943", null, "62658", null, "3484", null, "15650", null, "2392", null, "5762", null, "1680", null, "9888", null, "1796", null, "240", null, "236", null, "178886", null, "5918", null, "82667", null, "3938", null, "16049", null, "2191", null, "5141", null, "1317", null, "10908", null, "1784", null, "80170", null, "4996", null, "14046", null, "2009", null, "243388", null, "5932", null, "47719", null, "3553", null, "209715", null, "6081", null, "131506", null, "4908", null, "4070", null, "1462", null, "1453", null, "655", null, "80407", null, "3689", null, "-999999999", "N", "-999999999", "N", "13690", null, "1938", null, "25987", null, "2634", null, "35221", null, "3131", null, "126724", null, "4618", null, "192301", null, "11130", null, "177024", null, "4484", null, "20482", null, "1867", null, "51855", null, "3729", null, "104687", null, "4352", null, "94.3", null, "0.8", null, "40.5", null, "1.5", null, "59.5", null, "1.5", null, "56.5", null, "1.9", null, "12.3", null, "1.2", null, "4.2", null, "0.8", null, "8.1", null, "0.9", null, "31.2", null, "1.6", null, "30.5", null, "1.5", null, "24.3", null, "1.3", null, "6.1", null, "0.9", null, "2.2", null, "0.6", null, "3.8", null, "0.7", null, "0.1", null, "0.1", null, "69.5", null, "1.5", null, "32.1", null, "1.5", null, "6.2", null, "0.8", null, "2.0", null, "0.5", null, "4.2", null, "0.7", null, "31.1", null, "1.6", null, "5.5", null, "0.8", null, "94.5", null, "0.8", null, "18.5", null, "1.4", null, "81.5", null, "1.4", null, "51.1", null, "1.5", null, "1.6", null, "0.6", null, "0.6", null, "0.3", null, "31.2", null, "1.3", null, "-999999999.0", "N", "-999999999.0", "N", "5.3", null, "0.8", null, "10.1", null, "1.0", null, "13.7", null, "1.2", null, "49.2", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.6", null, "1.0", null, "29.3", null, "1.9", null, "59.1", null, "2.0", null, "06", "16"], ["5001900US0617", "Congressional District 17 (119th Congress), California", "283037", null, "5793", null, "95750", null, "4583", null, "187287", null, "5060", null, "156329", null, "4305", null, "34094", null, "3343", null, "12556", null, "2320", null, "21538", null, "2548", null, "92614", null, "6415", null, "84042", null, "4437", null, "68748", null, "4155", null, "15019", null, "2405", null, "4521", null, "1235", null, "10498", null, "1958", null, "275", null, "332", null, "198995", null, "7467", null, "87581", null, "4373", null, "19075", null, "2367", null, "8035", null, "1787", null, "11040", null, "1720", null, "92339", null, "6404", null, "19150", null, "2743", null, "263887", null, "5812", null, "44776", null, "3267", null, "238261", null, "5825", null, "69465", null, "3794", null, "7600", null, "2027", null, "2305", null, "1019", null, "161990", null, "5859", null, "-999999999", "N", "-999999999", "N", "20598", null, "2939", null, "19653", null, "2975", null, "37546", null, "3356", null, "64734", null, "3537", null, "181913", null, "7064", null, "190423", null, "4046", null, "18032", null, "2094", null, "51002", null, "4085", null, "121389", null, "4434", null, "-888888888", "(X)", "-888888888", "(X)", "33.8", null, "1.4", null, "66.2", null, "1.4", null, "55.2", null, "1.8", null, "12.0", null, "1.2", null, "4.4", null, "0.8", null, "7.6", null, "0.9", null, "32.7", null, "1.8", null, "29.7", null, "1.7", null, "24.3", null, "1.6", null, "5.3", null, "0.8", null, "1.6", null, "0.4", null, "3.7", null, "0.7", null, "0.1", null, "0.1", null, "70.3", null, "1.7", null, "30.9", null, "1.6", null, "6.7", null, "0.8", null, "2.8", null, "0.6", null, "3.9", null, "0.6", null, "32.6", null, "1.8", null, "6.8", null, "0.9", null, "93.2", null, "0.9", null, "15.8", null, "1.1", null, "84.2", null, "1.1", null, "24.5", null, "1.3", null, "2.7", null, "0.7", null, "0.8", null, "0.4", null, "57.2", null, "1.6", null, "-999999999.0", "N", "-999999999.0", "N", "7.3", null, "1.0", null, "6.9", null, "1.0", null, "13.3", null, "1.2", null, "22.9", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "9.5", null, "1.1", null, "26.8", null, "2.0", null, "63.7", null, "2.0", null, "16450", null, "2809", null, "10968", null, "2095", null, "5482", null, "1664", null, "5614", null, "1430", null, "5193", null, "1562", null, "1559", null, "899", null, "3634", null, "1309", null, "5643", null, "1820", null, "5200", null, "1492", null, "2498", null, "944", null, "2702", null, "1239", null, "573", null, "513", null, "2129", null, "1103", null, "0", null, "225", null, "11250", null, "2370", null, "3116", null, "855", null, "2491", null, "995", null, "986", null, "623", null, "1505", null, "652", null, "5643", null, "1820", null, "5920", null, "1931", null, "10530", null, "2103", null, "7569", null, "1670", null, "8881", null, "2001", null, "3336", null, "1048", null, "1494", null, "928", null, "102", null, "125", null, "8314", null, "1752", null, "-999999999", "N", "-999999999", "N", "1837", null, "1033", null, "1271", null, "619", null, "2695", null, "1073", null, "2929", null, "994", null, "39868", null, "16597", null, "10807", null, "1975", null, "2105", null, "754", null, "5091", null, "1515", null, "3611", null, "1087", null, "5.8", null, "1.0", null, "66.7", null, "7.6", null, "33.3", null, "7.6", null, "34.1", null, "8.7", null, "31.6", null, "7.4", null, "9.5", null, "5.0", null, "22.1", null, "7.0", null, "34.3", null, "8.1", null, "31.6", null, "7.7", null, "15.2", null, "5.7", null, "16.4", null, "6.7", null, "3.5", null, "3.1", null, "12.9", null, "6.2", null, "0.0", null, "1.3", null, "68.4", null, "7.7", null, "18.9", null, "5.3", null, "15.1", null, "5.4", null, "6.0", null, "3.5", null, "9.1", null, "3.9", null, "34.3", null, "8.1", null, "36.0", null, "9.0", null, "64.0", null, "9.0", null, "46.0", null, "7.2", null, "54.0", null, "7.2", null, "20.3", null, "5.2", null, "9.1", null, "5.2", null, "0.6", null, "0.8", null, "50.5", null, "7.4", null, "-999999999.0", "N", "-999999999.0", "N", "11.2", null, "5.8", null, "7.7", null, "3.7", null, "16.4", null, "6.1", null, "17.8", null, "5.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "19.5", null, "6.8", null, "47.1", null, "9.5", null, "33.4", null, "8.4", null, "266587", null, "5846", null, "84782", null, "4438", null, "181805", null, "5548", null, "150715", null, "4355", null, "28901", null, "2683", null, "10997", null, "2057", null, "17904", null, "2010", null, "86971", null, "5908", null, "78842", null, "3985", null, "66250", null, "3882", null, "12317", null, "1868", null, "3948", null, "1156", null, "8369", null, "1532", null, "275", null, "332", null, "187745", null, "7150", null, "84465", null, "4399", null, "16584", null, "2193", null, "7049", null, "1693", null, "9535", null, "1535", null, "86696", null, "5907", null, "13230", null, "2057", null, "253357", null, "5805", null, "37207", null, "2946", null, "229380", null, "5906", null, "66129", null, "3578", null, "6106", null, "1664", null, "2203", null, "1011", null, "153676", null, "5791", null, "-999999999", "N", "-999999999", "N", "18761", null, "2792", null, "18382", null, "2807", null, "34851", null, "3113", null, "61805", null, "3320", null, "192190", null, "7077", null, "179616", null, "4062", null, "15927", null, "2001", null, "45911", null, "3722", null, "117778", null, "4433", null, "94.2", null, "1.0", null, "31.8", null, "1.5", null, "68.2", null, "1.5", null, "56.5", null, "1.7", null, "10.8", null, "1.0", null, "4.1", null, "0.8", null, "6.7", null, "0.8", null, "32.6", null, "1.7", null, "29.6", null, "1.6", null, "24.9", null, "1.6", null, "4.6", null, "0.7", null, "1.5", null, "0.4", null, "3.1", null, "0.6", null, "0.1", null, "0.1", null, "70.4", null, "1.6", null, "31.7", null, "1.6", null, "6.2", null, "0.8", null, "2.6", null, "0.6", null, "3.6", null, "0.6", null, "32.5", null, "1.7", null, "5.0", null, "0.8", null, "95.0", null, "0.8", null, "14.0", null, "1.1", null, "86.0", null, "1.1", null, "24.8", null, "1.3", null, "2.3", null, "0.6", null, "0.8", null, "0.4", null, "57.6", null, "1.6", null, "-999999999.0", "N", "-999999999.0", "N", "7.0", null, "1.0", null, "6.9", null, "1.0", null, "13.1", null, "1.2", null, "23.2", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "8.9", null, "1.1", null, "25.6", null, "2.0", null, "65.6", null, "1.9", null, "06", "17"], ["5001900US0618", "Congressional District 18 (119th Congress), California", "222315", null, "5545", null, "86935", null, "4252", null, "135380", null, "5238", null, "107032", null, "3755", null, "58547", null, "3936", null, "21240", null, "2405", null, "37307", null, "3073", null, "56736", null, "3700", null, "80924", null, "4404", null, "49825", null, "3313", null, "30995", null, "3339", null, "8385", null, "1610", null, "22610", null, "2784", null, "104", null, "127", null, "141391", null, "4947", null, "57207", null, "3488", null, "27552", null, "3032", null, "12855", null, "1903", null, "14697", null, "2113", null, "56632", null, "3703", null, "28396", null, "3224", null, "193919", null, "5368", null, "54384", null, "3743", null, "167931", null, "6019", null, "85067", null, "4250", null, "5815", null, "1411", null, "3031", null, "736", null, "29373", null, "2592", null, "-999999999", "N", "-999999999", "N", "51085", null, "4102", null, "47407", null, "3468", null, "124401", null, "4065", null, "56224", null, "3048", null, "103010", null, "3657", null, "165579", null, "5019", null, "14871", null, "1809", null, "49207", null, "3163", null, "101501", null, "4551", null, "-888888888", "(X)", "-888888888", "(X)", "39.1", null, "1.7", null, "60.9", null, "1.7", null, "48.1", null, "1.6", null, "26.3", null, "1.5", null, "9.6", null, "1.0", null, "16.8", null, "1.2", null, "25.5", null, "1.5", null, "36.4", null, "1.7", null, "22.4", null, "1.5", null, "13.9", null, "1.4", null, "3.8", null, "0.7", null, "10.2", null, "1.2", null, "0.0", null, "0.1", null, "63.6", null, "1.7", null, "25.7", null, "1.6", null, "12.4", null, "1.3", null, "5.8", null, "0.8", null, "6.6", null, "0.9", null, "25.5", null, "1.5", null, "12.8", null, "1.4", null, "87.2", null, "1.4", null, "24.5", null, "1.7", null, "75.5", null, "1.7", null, "38.3", null, "1.8", null, "2.6", null, "0.6", null, "1.4", null, "0.3", null, "13.2", null, "1.1", null, "-999999999.0", "N", "-999999999.0", "N", "23.0", null, "1.7", null, "21.3", null, "1.5", null, "56.0", null, "1.5", null, "25.3", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "9.0", null, "1.0", null, "29.7", null, "1.8", null, "61.3", null, "2.0", null, "30533", null, "3165", null, "14437", null, "1781", null, "16096", null, "2631", null, "10210", null, "1564", null, "12705", null, "2257", null, "3716", null, "1009", null, "8989", null, "1872", null, "7618", null, "1710", null, "13391", null, "2261", null, "5997", null, "1425", null, "7394", null, "1750", null, "1293", null, "573", null, "6101", null, "1579", null, "0", null, "225", null, "17142", null, "1953", null, "4213", null, "937", null, "5311", null, "1274", null, "2423", null, "817", null, "2888", null, "915", null, "7618", null, "1710", null, "9512", null, "2011", null, "21021", null, "2447", null, "12335", null, "1471", null, "18198", null, "2679", null, "7269", null, "1474", null, "976", null, "824", null, "581", null, "378", null, "4659", null, "1082", null, "-999999999", "N", "-999999999", "N", "8386", null, "1771", null, "8662", null, "1889", null, "20849", null, "2414", null, "3455", null, "1020", null, "51954", null, "3773", null, "22915", null, "2863", null, "3137", null, "891", null, "9064", null, "1897", null, "10714", null, "1908", null, "13.7", null, "1.3", null, "47.3", null, "5.1", null, "52.7", null, "5.1", null, "33.4", null, "4.6", null, "41.6", null, "5.2", null, "12.2", null, "2.9", null, "29.4", null, "4.9", null, "25.0", null, "5.0", null, "43.9", null, "4.7", null, "19.6", null, "3.9", null, "24.2", null, "4.8", null, "4.2", null, "1.8", null, "20.0", null, "4.4", null, "0.0", null, "0.7", null, "56.1", null, "4.7", null, "13.8", null, "3.4", null, "17.4", null, "3.6", null, "7.9", null, "2.4", null, "9.5", null, "2.8", null, "25.0", null, "5.0", null, "31.2", null, "5.2", null, "68.8", null, "5.2", null, "40.4", null, "4.4", null, "59.6", null, "4.4", null, "23.8", null, "4.3", null, "3.2", null, "2.6", null, "1.9", null, "1.2", null, "15.3", null, "3.3", null, "-999999999.0", "N", "-999999999.0", "N", "27.5", null, "4.8", null, "28.4", null, "5.7", null, "68.3", null, "4.9", null, "11.3", null, "3.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.7", null, "3.9", null, "39.6", null, "6.1", null, "46.8", null, "5.8", null, "191782", null, "5364", null, "72498", null, "3776", null, "119284", null, "5200", null, "96822", null, "3926", null, "45842", null, "3537", null, "17524", null, "2301", null, "28318", null, "2500", null, "49118", null, "3485", null, "67533", null, "4435", null, "43828", null, "3449", null, "23601", null, "2856", null, "7092", null, "1473", null, "16509", null, "2189", null, "104", null, "127", null, "124249", null, "4848", null, "52994", null, "3432", null, "22241", null, "2780", null, "10432", null, "1735", null, "11809", null, "1890", null, "49014", null, "3490", null, "18884", null, "2608", null, "172898", null, "5397", null, "42049", null, "3410", null, "149733", null, "5712", null, "77798", null, "4096", null, "4839", null, "1221", null, "2450", null, "651", null, "24714", null, "2318", null, "-999999999", "N", "-999999999", "N", "42699", null, "3883", null, "38745", null, "3150", null, "103552", null, "4415", null, "52769", null, "2978", null, "111904", null, "3679", null, "142664", null, "5046", null, "11734", null, "1518", null, "40143", null, "2885", null, "90787", null, "4807", null, "86.3", null, "1.3", null, "37.8", null, "1.8", null, "62.2", null, "1.8", null, "50.5", null, "1.9", null, "23.9", null, "1.5", null, "9.1", null, "1.1", null, "14.8", null, "1.2", null, "25.6", null, "1.7", null, "35.2", null, "2.0", null, "22.9", null, "1.7", null, "12.3", null, "1.4", null, "3.7", null, "0.7", null, "8.6", null, "1.1", null, "0.1", null, "0.1", null, "64.8", null, "2.0", null, "27.6", null, "1.8", null, "11.6", null, "1.4", null, "5.4", null, "0.9", null, "6.2", null, "0.9", null, "25.6", null, "1.7", null, "9.8", null, "1.3", null, "90.2", null, "1.3", null, "21.9", null, "1.8", null, "78.1", null, "1.8", null, "40.6", null, "1.8", null, "2.5", null, "0.6", null, "1.3", null, "0.3", null, "12.9", null, "1.1", null, "-999999999.0", "N", "-999999999.0", "N", "22.3", null, "1.8", null, "20.2", null, "1.6", null, "54.0", null, "1.8", null, "27.5", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "8.2", null, "1.0", null, "28.1", null, "1.9", null, "63.6", null, "2.2", null, "06", "18"], ["5001900US0619", "Congressional District 19 (119th Congress), California", "270382", null, "4409", null, "137956", null, "4310", null, "132426", null, "4343", null, "141787", null, "4166", null, "42687", null, "3147", null, "12771", null, "2097", null, "29916", null, "2544", null, "85908", null, "3554", null, "73939", null, "3902", null, "53126", null, "3088", null, "20353", null, "2624", null, "6366", null, "1485", null, "13987", null, "2111", null, "460", null, "401", null, "196443", null, "4760", null, "88661", null, "3790", null, "22334", null, "2647", null, "6405", null, "1363", null, "15929", null, "2247", null, "85448", null, "3561", null, "25084", null, "2627", null, "245298", null, "4860", null, "70001", null, "4503", null, "200381", null, "5480", null, "160905", null, "3940", null, "5378", null, "1222", null, "1819", null, "825", null, "48516", null, "2504", null, "-999999999", "N", "-999999999", "N", "16794", null, "2339", null, "36311", null, "3146", null, "52830", null, "3426", null, "150514", null, "3903", null, "124559", null, "3913", null, "184474", null, "4378", null, "27669", null, "2391", null, "57398", null, "3710", null, "99407", null, "4948", null, "-888888888", "(X)", "-888888888", "(X)", "51.0", null, "1.4", null, "49.0", null, "1.4", null, "52.4", null, "1.2", null, "15.8", null, "1.2", null, "4.7", null, "0.8", null, "11.1", null, "1.0", null, "31.8", null, "1.2", null, "27.3", null, "1.4", null, "19.6", null, "1.1", null, "7.5", null, "1.0", null, "2.4", null, "0.5", null, "5.2", null, "0.8", null, "0.2", null, "0.1", null, "72.7", null, "1.4", null, "32.8", null, "1.3", null, "8.3", null, "1.0", null, "2.4", null, "0.5", null, "5.9", null, "0.8", null, "31.6", null, "1.2", null, "9.3", null, "1.0", null, "90.7", null, "1.0", null, "25.9", null, "1.6", null, "74.1", null, "1.6", null, "59.5", null, "1.3", null, "2.0", null, "0.4", null, "0.7", null, "0.3", null, "17.9", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "6.2", null, "0.8", null, "13.4", null, "1.1", null, "19.5", null, "1.2", null, "55.7", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.0", null, "1.3", null, "31.1", null, "2.0", null, "53.9", null, "2.0", null, "24709", null, "2802", null, "14669", null, "1961", null, "10040", null, "2165", null, "5621", null, "1278", null, "9259", null, "1892", null, "2920", null, "1256", null, "6339", null, "1370", null, "9829", null, "2152", null, "8858", null, "1767", null, "2902", null, "706", null, "5956", null, "1637", null, "1472", null, "920", null, "4484", null, "1245", null, "0", null, "225", null, "15851", null, "2327", null, "2719", null, "979", null, "3303", null, "954", null, "1448", null, "701", null, "1855", null, "664", null, "9829", null, "2152", null, "8245", null, "1788", null, "16464", null, "2023", null, "11962", null, "2030", null, "12747", null, "1990", null, "12667", null, "2151", null, "831", null, "583", null, "302", null, "249", null, "4740", null, "1130", null, "-999999999", "N", "-999999999", "N", "1725", null, "691", null, "4349", null, "1389", null, "6846", null, "1563", null, "11054", null, "1942", null, "38115", null, "9620", null, "14880", null, "1980", null, "2884", null, "951", null, "6380", null, "1289", null, "5616", null, "1336", null, "9.1", null, "1.0", null, "59.4", null, "6.4", null, "40.6", null, "6.4", null, "22.7", null, "5.5", null, "37.5", null, "6.2", null, "11.8", null, "4.7", null, "25.7", null, "5.0", null, "39.8", null, "6.4", null, "35.8", null, "6.0", null, "11.7", null, "3.0", null, "24.1", null, "5.7", null, "6.0", null, "3.5", null, "18.1", null, "4.7", null, "0.0", null, "0.8", null, "64.2", null, "6.0", null, "11.0", null, "4.1", null, "13.4", null, "3.8", null, "5.9", null, "2.8", null, "7.5", null, "2.7", null, "39.8", null, "6.4", null, "33.4", null, "5.3", null, "66.6", null, "5.3", null, "48.4", null, "5.8", null, "51.6", null, "5.8", null, "51.3", null, "6.4", null, "3.4", null, "2.4", null, "1.2", null, "1.0", null, "19.2", null, "4.5", null, "-999999999.0", "N", "-999999999.0", "N", "7.0", null, "2.7", null, "17.6", null, "4.9", null, "27.7", null, "5.5", null, "44.7", null, "5.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "19.4", null, "5.8", null, "42.9", null, "7.5", null, "37.7", null, "6.7", null, "245673", null, "5010", null, "123287", null, "4318", null, "122386", null, "4802", null, "136166", null, "4243", null, "33428", null, "3102", null, "9851", null, "1817", null, "23577", null, "2425", null, "76079", null, "3727", null, "65081", null, "3485", null, "50224", null, "3017", null, "14397", null, "2347", null, "4894", null, "1263", null, "9503", null, "1867", null, "460", null, "401", null, "180592", null, "5083", null, "85942", null, "3782", null, "19031", null, "2491", null, "4957", null, "1194", null, "14074", null, "2098", null, "75619", null, "3736", null, "16839", null, "2339", null, "228834", null, "5101", null, "58039", null, "4035", null, "187634", null, "5658", null, "148238", null, "4083", null, "4547", null, "1273", null, "1517", null, "819", null, "43776", null, "2536", null, "-999999999", "N", "-999999999", "N", "15069", null, "2428", null, "31962", null, "2941", null, "45984", null, "3548", null, "139460", null, "3976", null, "133124", null, "3447", null, "169594", null, "4446", null, "24785", null, "2130", null, "51018", null, "3775", null, "93791", null, "4860", null, "90.9", null, "1.0", null, "50.2", null, "1.6", null, "49.8", null, "1.6", null, "55.4", null, "1.4", null, "13.6", null, "1.2", null, "4.0", null, "0.7", null, "9.6", null, "1.0", null, "31.0", null, "1.3", null, "26.5", null, "1.3", null, "20.4", null, "1.2", null, "5.9", null, "1.0", null, "2.0", null, "0.5", null, "3.9", null, "0.8", null, "0.2", null, "0.2", null, "73.5", null, "1.3", null, "35.0", null, "1.4", null, "7.7", null, "1.0", null, "2.0", null, "0.5", null, "5.7", null, "0.8", null, "30.8", null, "1.3", null, "6.9", null, "0.9", null, "93.1", null, "0.9", null, "23.6", null, "1.6", null, "76.4", null, "1.6", null, "60.3", null, "1.4", null, "1.9", null, "0.5", null, "0.6", null, "0.3", null, "17.8", null, "1.0", null, "-999999999.0", "N", "-999999999.0", "N", "6.1", null, "1.0", null, "13.0", null, "1.2", null, "18.7", null, "1.3", null, "56.8", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.6", null, "1.3", null, "30.1", null, "2.1", null, "55.3", null, "2.2", null, "06", "19"], ["5001900US0620", "Congressional District 20 (119th Congress), California", "282656", null, "6598", null, "114144", null, "4232", null, "168512", null, "5937", null, "144868", null, "5393", null, "60267", null, "4212", null, "18679", null, "2610", null, "41588", null, "3625", null, "77521", null, "4937", null, "103199", null, "4250", null, "66734", null, "3899", null, "35316", null, "3327", null, "10157", null, "2244", null, "25159", null, "2834", null, "1149", null, "580", null, "179457", null, "6732", null, "78134", null, "3969", null, "24951", null, "2747", null, "8522", null, "1698", null, "16429", null, "2330", null, "76372", null, "5065", null, "35181", null, "2954", null, "247475", null, "6458", null, "85382", null, "5137", null, "197274", null, "6514", null, "165179", null, "5070", null, "7981", null, "1243", null, "3897", null, "954", null, "22941", null, "2493", null, "-999999999", "N", "-999999999", "N", "32473", null, "3358", null, "49713", null, "4453", null, "89695", null, "4778", null, "148034", null, "4857", null, "90892", null, "2897", null, "205135", null, "5917", null, "29869", null, "2530", null, "72384", null, "4568", null, "102882", null, "4928", null, "-888888888", "(X)", "-888888888", "(X)", "40.4", null, "1.3", null, "59.6", null, "1.3", null, "51.3", null, "1.7", null, "21.3", null, "1.4", null, "6.6", null, "0.9", null, "14.7", null, "1.2", null, "27.4", null, "1.5", null, "36.5", null, "1.5", null, "23.6", null, "1.4", null, "12.5", null, "1.2", null, "3.6", null, "0.8", null, "8.9", null, "1.0", null, "0.4", null, "0.2", null, "63.5", null, "1.5", null, "27.6", null, "1.2", null, "8.8", null, "0.9", null, "3.0", null, "0.6", null, "5.8", null, "0.8", null, "27.0", null, "1.6", null, "12.4", null, "1.0", null, "87.6", null, "1.0", null, "30.2", null, "1.7", null, "69.8", null, "1.7", null, "58.4", null, "1.5", null, "2.8", null, "0.4", null, "1.4", null, "0.3", null, "8.1", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "11.5", null, "1.1", null, "17.6", null, "1.5", null, "31.7", null, "1.4", null, "52.4", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.6", null, "1.2", null, "35.3", null, "2.0", null, "50.2", null, "2.0", null, "45297", null, "3198", null, "17732", null, "2474", null, "27565", null, "2807", null, "12158", null, "2172", null, "20357", null, "2467", null, "5344", null, "1451", null, "15013", null, "2343", null, "12782", null, "2124", null, "21917", null, "2327", null, "7801", null, "1622", null, "13632", null, "2085", null, "3368", null, "1205", null, "10264", null, "1882", null, "484", null, "409", null, "23380", null, "2688", null, "4357", null, "1322", null, "6725", null, "1314", null, "1976", null, "908", null, "4749", null, "1082", null, "12298", null, "2126", null, "15593", null, "2259", null, "29704", null, "2967", null, "21525", null, "2466", null, "23772", null, "2873", null, "22822", null, "2685", null, "2320", null, "944", null, "1156", null, "591", null, "3938", null, "1351", null, "-999999999", "N", "-999999999", "N", "5767", null, "1493", null, "9243", null, "1472", null, "16681", null, "1978", null, "18815", null, "2504", null, "47716", null, "6669", null, "32515", null, "2835", null, "6340", null, "1568", null, "14651", null, "2383", null, "11524", null, "2343", null, "16.0", null, "1.1", null, "39.1", null, "4.6", null, "60.9", null, "4.6", null, "26.8", null, "4.3", null, "44.9", null, "4.8", null, "11.8", null, "3.1", null, "33.1", null, "4.9", null, "28.2", null, "4.1", null, "48.4", null, "4.3", null, "17.2", null, "3.4", null, "30.1", null, "4.3", null, "7.4", null, "2.6", null, "22.7", null, "4.0", null, "1.1", null, "0.9", null, "51.6", null, "4.3", null, "9.6", null, "2.8", null, "14.8", null, "2.8", null, "4.4", null, "2.0", null, "10.5", null, "2.3", null, "27.1", null, "4.1", null, "34.4", null, "4.5", null, "65.6", null, "4.5", null, "47.5", null, "4.7", null, "52.5", null, "4.7", null, "50.4", null, "4.8", null, "5.1", null, "2.0", null, "2.6", null, "1.3", null, "8.7", null, "2.9", null, "-999999999.0", "N", "-999999999.0", "N", "12.7", null, "3.2", null, "20.4", null, "3.0", null, "36.8", null, "3.9", null, "41.5", null, "4.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "19.5", null, "4.5", null, "45.1", null, "6.4", null, "35.4", null, "6.3", null, "237359", null, "6834", null, "96412", null, "4097", null, "140947", null, "5462", null, "132710", null, "5336", null, "39910", null, "3546", null, "13335", null, "2346", null, "26575", null, "3026", null, "64739", null, "4681", null, "81282", null, "4293", null, "58933", null, "3788", null, "21684", null, "2880", null, "6789", null, "1802", null, "14895", null, "2330", null, "665", null, "422", null, "156077", null, "6368", null, "73777", null, "3737", null, "18226", null, "2392", null, "6546", null, "1458", null, "11680", null, "2126", null, "64074", null, "4685", null, "19588", null, "2329", null, "217771", null, "6402", null, "63857", null, "4766", null, "173502", null, "6267", null, "142357", null, "5071", null, "5661", null, "1165", null, "2741", null, "919", null, "19003", null, "2295", null, "-999999999", "N", "-999999999", "N", "26706", null, "2994", null, "40470", null, "4025", null, "73014", null, "4634", null, "129219", null, "4770", null, "99853", null, "3126", null, "172620", null, "6088", null, "23529", null, "2398", null, "57733", null, "4459", null, "91358", null, "4827", null, "84.0", null, "1.1", null, "40.6", null, "1.4", null, "59.4", null, "1.4", null, "55.9", null, "1.8", null, "16.8", null, "1.4", null, "5.6", null, "1.0", null, "11.2", null, "1.2", null, "27.3", null, "1.7", null, "34.2", null, "1.7", null, "24.8", null, "1.5", null, "9.1", null, "1.2", null, "2.9", null, "0.8", null, "6.3", null, "1.0", null, "0.3", null, "0.2", null, "65.8", null, "1.7", null, "31.1", null, "1.3", null, "7.7", null, "1.0", null, "2.8", null, "0.6", null, "4.9", null, "0.9", null, "27.0", null, "1.7", null, "8.3", null, "0.9", null, "91.7", null, "0.9", null, "26.9", null, "1.8", null, "73.1", null, "1.8", null, "60.0", null, "1.7", null, "2.4", null, "0.5", null, "1.2", null, "0.4", null, "8.0", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "11.3", null, "1.2", null, "17.1", null, "1.6", null, "30.8", null, "1.6", null, "54.4", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.6", null, "1.3", null, "33.4", null, "2.2", null, "52.9", null, "2.2", null, "06", "20"], ["5001900US0621", "Congressional District 21 (119th Congress), California", "233381", null, "4530", null, "88264", null, "3709", null, "145117", null, "4866", null, "102958", null, "4508", null, "71208", null, "3925", null, "22109", null, "2091", null, "49099", null, "3764", null, "59215", null, "4280", null, "100620", null, "4301", null, "55056", null, "3901", null, "44837", null, "3163", null, "12097", null, "1821", null, "32740", null, "3160", null, "727", null, "443", null, "132761", null, "5204", null, "47902", null, "3262", null, "26371", null, "3101", null, "10012", null, "1695", null, "16359", null, "2428", null, "58488", null, "4290", null, "50188", null, "3618", null, "183193", null, "4716", null, "81210", null, "3854", null, "152171", null, "5393", null, "76268", null, "4090", null, "11328", null, "1571", null, "4140", null, "1122", null, "18302", null, "1702", null, "-999999999", "N", "-999999999", "N", "59750", null, "4034", null, "63341", null, "4556", null, "142413", null, "4374", null, "55744", null, "3302", null, "66399", null, "2989", null, "174166", null, "4960", null, "20432", null, "2544", null, "59018", null, "4281", null, "94716", null, "4947", null, "-888888888", "(X)", "-888888888", "(X)", "37.8", null, "1.5", null, "62.2", null, "1.5", null, "44.1", null, "1.7", null, "30.5", null, "1.6", null, "9.5", null, "0.9", null, "21.0", null, "1.6", null, "25.4", null, "1.7", null, "43.1", null, "1.8", null, "23.6", null, "1.6", null, "19.2", null, "1.4", null, "5.2", null, "0.8", null, "14.0", null, "1.3", null, "0.3", null, "0.2", null, "56.9", null, "1.8", null, "20.5", null, "1.3", null, "11.3", null, "1.3", null, "4.3", null, "0.7", null, "7.0", null, "1.0", null, "25.1", null, "1.7", null, "21.5", null, "1.5", null, "78.5", null, "1.5", null, "34.8", null, "1.7", null, "65.2", null, "1.7", null, "32.7", null, "1.6", null, "4.9", null, "0.7", null, "1.8", null, "0.5", null, "7.8", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "25.6", null, "1.7", null, "27.1", null, "1.8", null, "61.0", null, "1.5", null, "23.9", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.7", null, "1.4", null, "33.9", null, "2.3", null, "54.4", null, "2.3", null, "70868", null, "4397", null, "25268", null, "3157", null, "45600", null, "3337", null, "21393", null, "2448", null, "35216", null, "3048", null, "9090", null, "1559", null, "26126", null, "2915", null, "14259", null, "2117", null, "40231", null, "3589", null, "14168", null, "1974", null, "25794", null, "2932", null, "5367", null, "1426", null, "20427", null, "2691", null, "269", null, "269", null, "30637", null, "3179", null, "7225", null, "1451", null, "9422", null, "1659", null, "3723", null, "1130", null, "5699", null, "1303", null, "13990", null, "2060", null, "29334", null, "2971", null, "41534", null, "3554", null, "31598", null, "3130", null, "39270", null, "3617", null, "18655", null, "2384", null, "4915", null, "1093", null, "922", null, "425", null, "6070", null, "1238", null, "-999999999", "N", "-999999999", "N", "19964", null, "2110", null, "20342", null, "2491", null, "46942", null, "3637", null, "10496", null, "1701", null, "40712", null, "3698", null, "56609", null, "3831", null, "8662", null, "1645", null, "24322", null, "2745", null, "23625", null, "2795", null, "30.4", null, "1.7", null, "35.7", null, "3.4", null, "64.3", null, "3.4", null, "30.2", null, "2.9", null, "49.7", null, "3.3", null, "12.8", null, "2.1", null, "36.9", null, "3.5", null, "20.1", null, "2.6", null, "56.8", null, "3.6", null, "20.0", null, "2.5", null, "36.4", null, "3.5", null, "7.6", null, "2.0", null, "28.8", null, "3.4", null, "0.4", null, "0.4", null, "43.2", null, "3.6", null, "10.2", null, "1.9", null, "13.3", null, "2.3", null, "5.3", null, "1.6", null, "8.0", null, "1.8", null, "19.7", null, "2.6", null, "41.4", null, "3.4", null, "58.6", null, "3.4", null, "44.6", null, "3.6", null, "55.4", null, "3.6", null, "26.3", null, "2.9", null, "6.9", null, "1.5", null, "1.3", null, "0.6", null, "8.6", null, "1.7", null, "-999999999.0", "N", "-999999999.0", "N", "28.2", null, "2.6", null, "28.7", null, "2.6", null, "66.2", null, "2.8", null, "14.8", null, "2.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.3", null, "2.6", null, "43.0", null, "4.3", null, "41.7", null, "3.8", null, "162513", null, "4966", null, "62996", null, "3205", null, "99517", null, "4875", null, "81565", null, "4451", null, "35992", null, "3419", null, "13019", null, "1940", null, "22973", null, "2727", null, "44956", null, "3796", null, "60389", null, "3794", null, "40888", null, "3383", null, "19043", null, "2332", null, "6730", null, "1522", null, "12313", null, "2129", null, "458", null, "350", null, "102124", null, "4990", null, "40677", null, "3288", null, "16949", null, "2580", null, "6289", null, "1307", null, "10660", null, "1997", null, "44498", null, "3820", null, "20854", null, "2811", null, "141659", null, "4427", null, "49612", null, "3115", null, "112901", null, "4901", null, "57613", null, "3812", null, "6413", null, "1210", null, "3218", null, "961", null, "12232", null, "1712", null, "-999999999", "N", "-999999999", "N", "39786", null, "3320", null, "42999", null, "3771", null, "95471", null, "4563", null, "45248", null, "3297", null, "81495", null, "4898", null, "117557", null, "4576", null, "11770", null, "1807", null, "34696", null, "3117", null, "71091", null, "4253", null, "69.6", null, "1.7", null, "38.8", null, "1.9", null, "61.2", null, "1.9", null, "50.2", null, "2.4", null, "22.1", null, "2.0", null, "8.0", null, "1.2", null, "14.1", null, "1.6", null, "27.7", null, "2.1", null, "37.2", null, "2.2", null, "25.2", null, "2.0", null, "11.7", null, "1.4", null, "4.1", null, "0.9", null, "7.6", null, "1.3", null, "0.3", null, "0.2", null, "62.8", null, "2.2", null, "25.0", null, "1.9", null, "10.4", null, "1.5", null, "3.9", null, "0.8", null, "6.6", null, "1.2", null, "27.4", null, "2.1", null, "12.8", null, "1.6", null, "87.2", null, "1.6", null, "30.5", null, "1.8", null, "69.5", null, "1.8", null, "35.5", null, "2.0", null, "3.9", null, "0.8", null, "2.0", null, "0.6", null, "7.5", null, "1.0", null, "-999999999.0", "N", "-999999999.0", "N", "24.5", null, "1.9", null, "26.5", null, "2.1", null, "58.7", null, "2.0", null, "27.8", null, "1.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.0", null, "1.5", null, "29.5", null, "2.5", null, "60.5", null, "2.5", null, "06", "21"], ["5001900US0622", "Congressional District 22 (119th Congress), California", "222854", null, "5594", null, "79352", null, "3702", null, "143502", null, "4753", null, "103758", null, "4914", null, "71406", null, "4261", null, "24520", null, "3184", null, "46886", null, "3102", null, "47690", null, "3681", null, "102440", null, "4307", null, "55865", null, "3779", null, "46298", null, "3400", null, "13969", null, "2594", null, "32329", null, "2545", null, "277", null, "171", null, "120414", null, "5170", null, "47893", null, "3884", null, "25108", null, "2731", null, "10551", null, "1773", null, "14557", null, "2177", null, "47413", null, "3690", null, "47757", null, "3572", null, "175097", null, "5954", null, "72293", null, "4083", null, "150561", null, "5734", null, "81385", null, "4429", null, "8617", null, "1260", null, "3788", null, "939", null, "8709", null, "1287", null, "-999999999", "N", "-999999999", "N", "53571", null, "3503", null, "66185", null, "4123", null, "154343", null, "4495", null, "44810", null, "2923", null, "60072", null, "2463", null, "175164", null, "5358", null, "22541", null, "2348", null, "67730", null, "4347", null, "84893", null, "4151", null, "-888888888", "(X)", "-888888888", "(X)", "35.6", null, "1.4", null, "64.4", null, "1.4", null, "46.6", null, "1.9", null, "32.0", null, "1.8", null, "11.0", null, "1.4", null, "21.0", null, "1.4", null, "21.4", null, "1.5", null, "46.0", null, "1.7", null, "25.1", null, "1.6", null, "20.8", null, "1.5", null, "6.3", null, "1.1", null, "14.5", null, "1.2", null, "0.1", null, "0.1", null, "54.0", null, "1.7", null, "21.5", null, "1.6", null, "11.3", null, "1.2", null, "4.7", null, "0.8", null, "6.5", null, "1.0", null, "21.3", null, "1.5", null, "21.4", null, "1.6", null, "78.6", null, "1.6", null, "32.4", null, "1.7", null, "67.6", null, "1.7", null, "36.5", null, "1.7", null, "3.9", null, "0.6", null, "1.7", null, "0.4", null, "3.9", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "24.0", null, "1.5", null, "29.7", null, "1.6", null, "69.3", null, "1.3", null, "20.1", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.9", null, "1.3", null, "38.7", null, "2.1", null, "48.5", null, "2.0", null, "60978", null, "4039", null, "20723", null, "2232", null, "40255", null, "3583", null, "22125", null, "2437", null, "28981", null, "3039", null, "7056", null, "1592", null, "21925", null, "2387", null, "9872", null, "1545", null, "39156", null, "3400", null, "16935", null, "2205", null, "22051", null, "2626", null, "4693", null, "1332", null, "17358", null, "2070", null, "170", null, "138", null, "21822", null, "2170", null, "5190", null, "1213", null, "6930", null, "1147", null, "2363", null, "723", null, "4567", null, "1019", null, "9702", null, "1554", null, "25444", null, "2968", null, "35534", null, "3043", null, "27839", null, "2714", null, "33139", null, "3158", null, "19713", null, "2239", null, "2943", null, "831", null, "1192", null, "520", null, "1297", null, "588", null, "-999999999", "N", "-999999999", "N", "18177", null, "2304", null, "17521", null, "2273", null, "44325", null, "3123", null, "10265", null, "1593", null, "38836", null, "4048", null, "51106", null, "3695", null, "7728", null, "1523", null, "23807", null, "2622", null, "19571", null, "2532", null, "27.4", null, "1.8", null, "34.0", null, "3.3", null, "66.0", null, "3.3", null, "36.3", null, "3.1", null, "47.5", null, "3.9", null, "11.6", null, "2.5", null, "36.0", null, "3.1", null, "16.2", null, "2.3", null, "64.2", null, "3.0", null, "27.8", null, "3.0", null, "36.2", null, "3.3", null, "7.7", null, "2.1", null, "28.5", null, "2.7", null, "0.3", null, "0.2", null, "35.8", null, "3.0", null, "8.5", null, "1.9", null, "11.4", null, "1.9", null, "3.9", null, "1.2", null, "7.5", null, "1.7", null, "15.9", null, "2.3", null, "41.7", null, "3.7", null, "58.3", null, "3.7", null, "45.7", null, "3.5", null, "54.3", null, "3.5", null, "32.3", null, "2.9", null, "4.8", null, "1.3", null, "2.0", null, "0.9", null, "2.1", null, "1.0", null, "-999999999.0", "N", "-999999999.0", "N", "29.8", null, "3.3", null, "28.7", null, "3.2", null, "72.7", null, "2.5", null, "16.8", null, "2.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.1", null, "3.0", null, "46.6", null, "3.8", null, "38.3", null, "3.9", null, "161876", null, "6246", null, "58629", null, "3407", null, "103247", null, "5202", null, "81633", null, "4609", null, "42425", null, "3628", null, "17464", null, "2749", null, "24961", null, "2474", null, "37818", null, "3474", null, "63284", null, "3754", null, "38930", null, "3141", null, "24247", null, "2507", null, "9276", null, "2109", null, "14971", null, "1727", null, "107", null, "107", null, "98592", null, "5010", null, "42703", null, "3625", null, "18178", null, "2420", null, "8188", null, "1645", null, "9990", null, "1896", null, "37711", null, "3463", null, "22313", null, "2568", null, "139563", null, "6077", null, "44454", null, "3721", null, "117422", null, "5475", null, "61672", null, "4329", null, "5674", null, "1260", null, "2596", null, "809", null, "7412", null, "1239", null, "-999999999", "N", "-999999999", "N", "35394", null, "3200", null, "48664", null, "3590", null, "110018", null, "4968", null, "34545", null, "3063", null, "67874", null, "3047", null, "124058", null, "5509", null, "14813", null, "1842", null, "43923", null, "3690", null, "65322", null, "3998", null, "72.6", null, "1.8", null, "36.2", null, "1.8", null, "63.8", null, "1.8", null, "50.4", null, "2.3", null, "26.2", null, "1.9", null, "10.8", null, "1.6", null, "15.4", null, "1.4", null, "23.4", null, "1.9", null, "39.1", null, "1.9", null, "24.0", null, "1.8", null, "15.0", null, "1.4", null, "5.7", null, "1.2", null, "9.2", null, "1.1", null, "0.1", null, "0.1", null, "60.9", null, "1.9", null, "26.4", null, "2.0", null, "11.2", null, "1.4", null, "5.1", null, "1.0", null, "6.2", null, "1.1", null, "23.3", null, "1.9", null, "13.8", null, "1.5", null, "86.2", null, "1.5", null, "27.5", null, "2.0", null, "72.5", null, "2.0", null, "38.1", null, "2.2", null, "3.5", null, "0.7", null, "1.6", null, "0.5", null, "4.6", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "21.9", null, "1.8", null, "30.1", null, "2.0", null, "68.0", null, "1.9", null, "21.3", null, "1.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.9", null, "1.4", null, "35.4", null, "2.4", null, "52.7", null, "2.4", null, "06", "22"], ["5001900US0623", "Congressional District 23 (119th Congress), California", "257585", null, "5255", null, "115742", null, "5252", null, "141843", null, "5276", null, "119109", null, "4761", null, "58750", null, "4002", null, "19661", null, "2271", null, "39089", null, "3804", null, "79726", null, "4612", null, "86365", null, "3937", null, "52378", null, "3602", null, "32761", null, "3073", null, "10885", null, "1748", null, "21876", null, "2868", null, "1226", null, "799", null, "171220", null, "5983", null, "66731", null, "4253", null, "25989", null, "3064", null, "8776", null, "1588", null, "17213", null, "2392", null, "78500", null, "4543", null, "37140", null, "3463", null, "220445", null, "5942", null, "91799", null, "4706", null, "165786", null, "5798", null, "127499", null, "4749", null, "23293", null, "3076", null, "3466", null, "1058", null, "10698", null, "1853", null, "-999999999", "N", "-999999999", "N", "41710", null, "3545", null, "50604", null, "3884", null, "97512", null, "4693", null, "113738", null, "4210", null, "77137", null, "3204", null, "177859", null, "4943", null, "29092", null, "2939", null, "64171", null, "4067", null, "84596", null, "3762", null, "-888888888", "(X)", "-888888888", "(X)", "44.9", null, "1.8", null, "55.1", null, "1.8", null, "46.2", null, "1.8", null, "22.8", null, "1.5", null, "7.6", null, "0.9", null, "15.2", null, "1.4", null, "31.0", null, "1.6", null, "33.5", null, "1.6", null, "20.3", null, "1.4", null, "12.7", null, "1.2", null, "4.2", null, "0.7", null, "8.5", null, "1.1", null, "0.5", null, "0.3", null, "66.5", null, "1.6", null, "25.9", null, "1.5", null, "10.1", null, "1.2", null, "3.4", null, "0.6", null, "6.7", null, "0.9", null, "30.5", null, "1.5", null, "14.4", null, "1.3", null, "85.6", null, "1.3", null, "35.6", null, "1.7", null, "64.4", null, "1.7", null, "49.5", null, "1.6", null, "9.0", null, "1.2", null, "1.3", null, "0.4", null, "4.2", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "16.2", null, "1.4", null, "19.6", null, "1.4", null, "37.9", null, "1.7", null, "44.2", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.4", null, "1.5", null, "36.1", null, "2.1", null, "47.6", null, "2.0", null, "52799", null, "3791", null, "23409", null, "2647", null, "29390", null, "3542", null, "16485", null, "2451", null, "22334", null, "3047", null, "4429", null, "1301", null, "17905", null, "2594", null, "13980", null, "1864", null, "26064", null, "3415", null, "10594", null, "1828", null, "14783", null, "2641", null, "2651", null, "1015", null, "12132", null, "2351", null, "687", null, "686", null, "26735", null, "2433", null, "5891", null, "1701", null, "7551", null, "1535", null, "1778", null, "885", null, "5773", null, "1269", null, "13293", null, "1804", null, "17632", null, "2251", null, "35167", null, "3845", null, "26989", null, "2528", null, "25810", null, "3013", null, "20109", null, "2475", null, "6345", null, "1326", null, "1037", null, "749", null, "1730", null, "835", null, "-999999999", "N", "-999999999", "N", "10974", null, "2065", null, "12604", null, "2310", null, "24180", null, "2972", null, "16971", null, "2161", null, "47159", null, "6296", null, "38819", null, "3989", null, "6162", null, "1413", null, "18813", null, "2978", null, "13844", null, "2554", null, "20.5", null, "1.5", null, "44.3", null, "4.6", null, "55.7", null, "4.6", null, "31.2", null, "4.0", null, "42.3", null, "4.1", null, "8.4", null, "2.3", null, "33.9", null, "3.7", null, "26.5", null, "3.8", null, "49.4", null, "4.4", null, "20.1", null, "3.1", null, "28.0", null, "3.9", null, "5.0", null, "1.9", null, "23.0", null, "3.6", null, "1.3", null, "1.3", null, "50.6", null, "4.4", null, "11.2", null, "3.1", null, "14.3", null, "2.8", null, "3.4", null, "1.6", null, "10.9", null, "2.4", null, "25.2", null, "3.6", null, "33.4", null, "4.3", null, "66.6", null, "4.3", null, "51.1", null, "3.9", null, "48.9", null, "3.9", null, "38.1", null, "4.3", null, "12.0", null, "2.5", null, "2.0", null, "1.4", null, "3.3", null, "1.6", null, "-999999999.0", "N", "-999999999.0", "N", "20.8", null, "3.4", null, "23.9", null, "3.7", null, "45.8", null, "3.9", null, "32.1", null, "4.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.9", null, "3.7", null, "48.5", null, "5.4", null, "35.7", null, "5.1", null, "204786", null, "6248", null, "92333", null, "4421", null, "112453", null, "5698", null, "102624", null, "5016", null, "36416", null, "3570", null, "15232", null, "2183", null, "21184", null, "2850", null, "65746", null, "4771", null, "60301", null, "4037", null, "41784", null, "3630", null, "17978", null, "2499", null, "8234", null, "1590", null, "9744", null, "1961", null, "539", null, "456", null, "144485", null, "5950", null, "60840", null, "3943", null, "18438", null, "2593", null, "6998", null, "1494", null, "11440", null, "2034", null, "65207", null, "4642", null, "19508", null, "2588", null, "185278", null, "6900", null, "64810", null, "4421", null, "139976", null, "6133", null, "107390", null, "4627", null, "16948", null, "2844", null, "2429", null, "779", null, "8968", null, "1655", null, "-999999999", "N", "-999999999", "N", "30736", null, "3586", null, "38000", null, "3618", null, "73332", null, "4695", null, "96767", null, "4282", null, "82877", null, "4289", null, "139040", null, "6035", null, "22930", null, "2810", null, "45358", null, "3717", null, "70752", null, "4124", null, "79.5", null, "1.5", null, "45.1", null, "1.9", null, "54.9", null, "1.9", null, "50.1", null, "2.0", null, "17.8", null, "1.6", null, "7.4", null, "1.0", null, "10.3", null, "1.4", null, "32.1", null, "2.1", null, "29.4", null, "1.8", null, "20.4", null, "1.7", null, "8.8", null, "1.2", null, "4.0", null, "0.8", null, "4.8", null, "0.9", null, "0.3", null, "0.2", null, "70.6", null, "1.8", null, "29.7", null, "1.7", null, "9.0", null, "1.2", null, "3.4", null, "0.7", null, "5.6", null, "1.0", null, "31.8", null, "2.1", null, "9.5", null, "1.3", null, "90.5", null, "1.3", null, "31.6", null, "2.0", null, "68.4", null, "2.0", null, "52.4", null, "1.9", null, "8.3", null, "1.3", null, "1.2", null, "0.4", null, "4.4", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "15.0", null, "1.6", null, "18.6", null, "1.6", null, "35.8", null, "1.9", null, "47.3", null, "1.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.5", null, "1.8", null, "32.6", null, "2.2", null, "50.9", null, "2.2", null, "06", "23"], ["5001900US0624", "Congressional District 24 (119th Congress), California", "273492", null, "3996", null, "128833", null, "4807", null, "144659", null, "5124", null, "128118", null, "4425", null, "43382", null, "3433", null, "13806", null, "1959", null, "29576", null, "2906", null, "101992", null, "4621", null, "74419", null, "3943", null, "47953", null, "2954", null, "25732", null, "2902", null, "7411", null, "1619", null, "18321", null, "2515", null, "734", null, "588", null, "199073", null, "5481", null, "80165", null, "3999", null, "17650", null, "1998", null, "6395", null, "1252", null, "11255", null, "1617", null, "101258", null, "4565", null, "35584", null, "3196", null, "237908", null, "4245", null, "70737", null, "4105", null, "202755", null, "4703", null, "172560", null, "4803", null, "5202", null, "1268", null, "4993", null, "1448", null, "12528", null, "1354", null, "-999999999", "N", "-999999999", "N", "26781", null, "2992", null, "51272", null, "3245", null, "81399", null, "3587", null, "159144", null, "4310", null, "98127", null, "3901", null, "171500", null, "4499", null, "30133", null, "2538", null, "50893", null, "3583", null, "90474", null, "3758", null, "-888888888", "(X)", "-888888888", "(X)", "47.1", null, "1.7", null, "52.9", null, "1.7", null, "46.8", null, "1.6", null, "15.9", null, "1.2", null, "5.0", null, "0.7", null, "10.8", null, "1.1", null, "37.3", null, "1.5", null, "27.2", null, "1.5", null, "17.5", null, "1.1", null, "9.4", null, "1.1", null, "2.7", null, "0.6", null, "6.7", null, "0.9", null, "0.3", null, "0.2", null, "72.8", null, "1.5", null, "29.3", null, "1.4", null, "6.5", null, "0.7", null, "2.3", null, "0.5", null, "4.1", null, "0.6", null, "37.0", null, "1.5", null, "13.0", null, "1.1", null, "87.0", null, "1.1", null, "25.9", null, "1.4", null, "74.1", null, "1.4", null, "63.1", null, "1.4", null, "1.9", null, "0.5", null, "1.8", null, "0.5", null, "4.6", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "9.8", null, "1.1", null, "18.7", null, "1.2", null, "29.8", null, "1.2", null, "58.2", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.6", null, "1.4", null, "29.7", null, "1.9", null, "52.8", null, "1.9", null, "34819", null, "3630", null, "12558", null, "1850", null, "22261", null, "2864", null, "8649", null, "1831", null, "13412", null, "2010", null, "2650", null, "859", null, "10762", null, "1998", null, "12758", null, "2278", null, "14354", null, "2132", null, "4948", null, "1269", null, "9127", null, "1656", null, "1771", null, "826", null, "7356", null, "1601", null, "279", null, "340", null, "20465", null, "3002", null, "3701", null, "1266", null, "4285", null, "1273", null, "879", null, "383", null, "3406", null, "1185", null, "12479", null, "2248", null, "12363", null, "2214", null, "22456", null, "2678", null, "15226", null, "2283", null, "19593", null, "2694", null, "16077", null, "2594", null, "1271", null, "668", null, "1639", null, "878", null, "1417", null, "624", null, "-999999999", "N", "-999999999", "N", "4538", null, "1365", null, "9877", null, "1806", null, "17321", null, "2355", null, "13105", null, "2218", null, "40218", null, "5815", null, "22061", null, "2777", null, "3676", null, "1294", null, "9640", null, "1957", null, "8745", null, "1495", null, "12.7", null, "1.3", null, "36.1", null, "4.2", null, "63.9", null, "4.2", null, "24.8", null, "4.5", null, "38.5", null, "4.5", null, "7.6", null, "2.5", null, "30.9", null, "4.6", null, "36.6", null, "5.0", null, "41.2", null, "5.2", null, "14.2", null, "3.5", null, "26.2", null, "4.2", null, "5.1", null, "2.4", null, "21.1", null, "4.1", null, "0.8", null, "1.0", null, "58.8", null, "5.2", null, "10.6", null, "3.3", null, "12.3", null, "3.4", null, "2.5", null, "1.1", null, "9.8", null, "3.2", null, "35.8", null, "5.0", null, "35.5", null, "4.7", null, "64.5", null, "4.7", null, "43.7", null, "4.9", null, "56.3", null, "4.9", null, "46.2", null, "5.3", null, "3.7", null, "1.9", null, "4.7", null, "2.5", null, "4.1", null, "1.7", null, "-999999999.0", "N", "-999999999.0", "N", "13.0", null, "3.5", null, "28.4", null, "5.0", null, "49.7", null, "5.0", null, "37.6", null, "4.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.7", null, "5.2", null, "43.7", null, "6.3", null, "39.6", null, "6.1", null, "238673", null, "4647", null, "116275", null, "4534", null, "122398", null, "5017", null, "119469", null, "4047", null, "29970", null, "3046", null, "11156", null, "1790", null, "18814", null, "2350", null, "89234", null, "4173", null, "60065", null, "3543", null, "43005", null, "2742", null, "16605", null, "2500", null, "5640", null, "1378", null, "10965", null, "2004", null, "455", null, "464", null, "178608", null, "5396", null, "76464", null, "3752", null, "13365", null, "1843", null, "5516", null, "1237", null, "7849", null, "1339", null, "88779", null, "4224", null, "23221", null, "2946", null, "215452", null, "4826", null, "55511", null, "3595", null, "183162", null, "5002", null, "156483", null, "4779", null, "3931", null, "1108", null, "3354", null, "1079", null, "11111", null, "1292", null, "-999999999", "N", "-999999999", "N", "22243", null, "2854", null, "41395", null, "2869", null, "64078", null, "3710", null, "146039", null, "4514", null, "107012", null, "4627", null, "149439", null, "4429", null, "26457", null, "2320", null, "41253", null, "3038", null, "81729", null, "3623", null, "87.3", null, "1.3", null, "48.7", null, "1.7", null, "51.3", null, "1.7", null, "50.1", null, "1.6", null, "12.6", null, "1.2", null, "4.7", null, "0.7", null, "7.9", null, "1.0", null, "37.4", null, "1.5", null, "25.2", null, "1.5", null, "18.0", null, "1.2", null, "7.0", null, "1.0", null, "2.4", null, "0.6", null, "4.6", null, "0.8", null, "0.2", null, "0.2", null, "74.8", null, "1.5", null, "32.0", null, "1.4", null, "5.6", null, "0.7", null, "2.3", null, "0.5", null, "3.3", null, "0.5", null, "37.2", null, "1.5", null, "9.7", null, "1.2", null, "90.3", null, "1.2", null, "23.3", null, "1.4", null, "76.7", null, "1.4", null, "65.6", null, "1.4", null, "1.6", null, "0.5", null, "1.4", null, "0.5", null, "4.7", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "9.3", null, "1.2", null, "17.3", null, "1.2", null, "26.8", null, "1.4", null, "61.2", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.7", null, "1.4", null, "27.6", null, "1.9", null, "54.7", null, "2.0", null, "06", "24"], ["5001900US0625", "Congressional District 25 (119th Congress), California", "249019", null, "4912", null, "119974", null, "4694", null, "129045", null, "4590", null, "119868", null, "5030", null, "59786", null, "3976", null, "18108", null, "2487", null, "41678", null, "3446", null, "69365", null, "4967", null, "89880", null, "4237", null, "53704", null, "4111", null, "35718", null, "3360", null, "9609", null, "2004", null, "26109", null, "2938", null, "458", null, "386", null, "159139", null, "5983", null, "66164", null, "3919", null, "24068", null, "3124", null, "8499", null, "1946", null, "15569", null, "2062", null, "68907", null, "4982", null, "37148", null, "3641", null, "211871", null, "5699", null, "78802", null, "4754", null, "170217", null, "5996", null, "93603", null, "5162", null, "12777", null, "2299", null, "5208", null, "1271", null, "7864", null, "1632", null, "-999999999", "N", "-999999999", "N", "53450", null, "3801", null, "74942", null, "4151", null, "140379", null, "4641", null, "79433", null, "4593", null, "69516", null, "3119", null, "179654", null, "4453", null, "29289", null, "2747", null, "60084", null, "5178", null, "90281", null, "4622", null, "-888888888", "(X)", "-888888888", "(X)", "48.2", null, "1.6", null, "51.8", null, "1.6", null, "48.1", null, "2.0", null, "24.0", null, "1.6", null, "7.3", null, "1.0", null, "16.7", null, "1.4", null, "27.9", null, "1.7", null, "36.1", null, "1.7", null, "21.6", null, "1.7", null, "14.3", null, "1.3", null, "3.9", null, "0.8", null, "10.5", null, "1.2", null, "0.2", null, "0.2", null, "63.9", null, "1.7", null, "26.6", null, "1.5", null, "9.7", null, "1.3", null, "3.4", null, "0.8", null, "6.3", null, "0.8", null, "27.7", null, "1.7", null, "14.9", null, "1.5", null, "85.1", null, "1.5", null, "31.6", null, "1.9", null, "68.4", null, "1.9", null, "37.6", null, "1.9", null, "5.1", null, "0.9", null, "2.1", null, "0.5", null, "3.2", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "21.5", null, "1.5", null, "30.1", null, "1.7", null, "56.4", null, "1.8", null, "31.9", null, "1.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.3", null, "1.4", null, "33.4", null, "2.6", null, "50.3", null, "2.6", null, "48760", null, "4048", null, "23011", null, "2640", null, "25749", null, "3007", null, "18485", null, "2595", null, "18204", null, "2296", null, "4582", null, "1295", null, "13622", null, "1709", null, "12071", null, "2089", null, "25212", null, "2898", null, "12031", null, "2181", null, "12980", null, "2019", null, "3029", null, "1091", null, "9951", null, "1685", null, "201", null, "180", null, "23548", null, "3171", null, "6454", null, "1564", null, "5224", null, "1097", null, "1553", null, "665", null, "3671", null, "830", null, "11870", null, "2079", null, "16514", null, "2549", null, "32246", null, "3463", null, "23645", null, "2943", null, "25115", null, "3041", null, "15857", null, "2516", null, "2051", null, "895", null, "895", null, "420", null, "655", null, "429", null, "-999999999", "N", "-999999999", "N", "12776", null, "1974", null, "16457", null, "2174", null, "32136", null, "3158", null, "12194", null, "2236", null, "39867", null, "6195", null, "36689", null, "3201", null, "6658", null, "1405", null, "16375", null, "2507", null, "13656", null, "2119", null, "19.6", null, "1.6", null, "47.2", null, "4.0", null, "52.8", null, "4.0", null, "37.9", null, "4.4", null, "37.3", null, "3.9", null, "9.4", null, "2.5", null, "27.9", null, "3.1", null, "24.8", null, "3.4", null, "51.7", null, "4.7", null, "24.7", null, "4.2", null, "26.6", null, "3.7", null, "6.2", null, "2.2", null, "20.4", null, "3.1", null, "0.4", null, "0.4", null, "48.3", null, "4.7", null, "13.2", null, "2.9", null, "10.7", null, "2.2", null, "3.2", null, "1.3", null, "7.5", null, "1.7", null, "24.3", null, "3.5", null, "33.9", null, "4.5", null, "66.1", null, "4.5", null, "48.5", null, "4.5", null, "51.5", null, "4.5", null, "32.5", null, "3.9", null, "4.2", null, "1.8", null, "1.8", null, "0.8", null, "1.3", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "26.2", null, "3.5", null, "33.8", null, "4.0", null, "65.9", null, "4.4", null, "25.0", null, "3.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.1", null, "3.6", null, "44.6", null, "5.5", null, "37.2", null, "4.6", null, "200259", null, "5664", null, "96963", null, "4559", null, "103296", null, "4442", null, "101383", null, "4974", null, "41582", null, "3605", null, "13526", null, "2129", null, "28056", null, "3235", null, "57294", null, "4698", null, "64668", null, "4430", null, "41673", null, "4179", null, "22738", null, "2971", null, "6580", null, "1601", null, "16158", null, "2778", null, "257", null, "338", null, "135591", null, "6101", null, "59710", null, "3631", null, "18844", null, "2891", null, "6946", null, "1779", null, "11898", null, "2052", null, "57037", null, "4715", null, "20634", null, "2327", null, "179625", null, "5820", null, "55157", null, "4054", null, "145102", null, "5383", null, "77746", null, "4235", null, "10726", null, "2141", null, "4313", null, "1199", null, "7209", null, "1519", null, "-999999999", "N", "-999999999", "N", "40674", null, "3745", null, "58485", null, "3994", null, "108243", null, "5104", null, "67239", null, "3889", null, "78148", null, "4339", null, "142965", null, "4941", null, "22631", null, "2434", null, "43709", null, "4427", null, "76625", null, "4150", null, "80.4", null, "1.6", null, "48.4", null, "1.7", null, "51.6", null, "1.7", null, "50.6", null, "2.3", null, "20.8", null, "1.7", null, "6.8", null, "1.0", null, "14.0", null, "1.6", null, "28.6", null, "2.0", null, "32.3", null, "2.1", null, "20.8", null, "2.1", null, "11.4", null, "1.4", null, "3.3", null, "0.8", null, "8.1", null, "1.3", null, "0.1", null, "0.2", null, "67.7", null, "2.1", null, "29.8", null, "1.7", null, "9.4", null, "1.4", null, "3.5", null, "0.9", null, "5.9", null, "1.0", null, "28.5", null, "2.0", null, "10.3", null, "1.2", null, "89.7", null, "1.2", null, "27.5", null, "1.8", null, "72.5", null, "1.8", null, "38.8", null, "2.0", null, "5.4", null, "1.0", null, "2.2", null, "0.6", null, "3.6", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "20.3", null, "1.7", null, "29.2", null, "1.8", null, "54.1", null, "2.0", null, "33.6", null, "1.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.8", null, "1.5", null, "30.6", null, "2.7", null, "53.6", null, "2.8", null, "06", "25"], ["5001900US0626", "Congressional District 26 (119th Congress), California", "249449", null, "4319", null, "119928", null, "4041", null, "129521", null, "4373", null, "141213", null, "4507", null, "47152", null, "3597", null, "15842", null, "1897", null, "31310", null, "3382", null, "61084", null, "3492", null, "82929", null, "3717", null, "58222", null, "3186", null, "24281", null, "3067", null, "7652", null, "1614", null, "16629", null, "2776", null, "426", null, "366", null, "166520", null, "4700", null, "82991", null, "4040", null, "22871", null, "2567", null, "8190", null, "1423", null, "14681", null, "2343", null, "60658", null, "3521", null, "22202", null, "2709", null, "227247", null, "4538", null, "63783", null, "3476", null, "185666", null, "5674", null, "141932", null, "3869", null, "4322", null, "1042", null, "3983", null, "1067", null, "20039", null, "1820", null, "-999999999", "N", "-999999999", "N", "30991", null, "2363", null, "48115", null, "3912", null, "85111", null, "2847", null, "131086", null, "3416", null, "120711", null, "4123", null, "188365", null, "4727", null, "23423", null, "2240", null, "52433", null, "4302", null, "112509", null, "4085", null, "-888888888", "(X)", "-888888888", "(X)", "48.1", null, "1.4", null, "51.9", null, "1.4", null, "56.6", null, "1.6", null, "18.9", null, "1.4", null, "6.4", null, "0.8", null, "12.6", null, "1.3", null, "24.5", null, "1.3", null, "33.2", null, "1.4", null, "23.3", null, "1.3", null, "9.7", null, "1.2", null, "3.1", null, "0.6", null, "6.7", null, "1.1", null, "0.2", null, "0.1", null, "66.8", null, "1.4", null, "33.3", null, "1.5", null, "9.2", null, "1.0", null, "3.3", null, "0.6", null, "5.9", null, "0.9", null, "24.3", null, "1.4", null, "8.9", null, "1.1", null, "91.1", null, "1.1", null, "25.6", null, "1.5", null, "74.4", null, "1.5", null, "56.9", null, "1.2", null, "1.7", null, "0.4", null, "1.6", null, "0.4", null, "8.0", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "12.4", null, "0.9", null, "19.3", null, "1.5", null, "34.1", null, "1.0", null, "52.6", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.4", null, "1.1", null, "27.8", null, "2.0", null, "59.7", null, "2.0", null, "21589", null, "2399", null, "10237", null, "1596", null, "11352", null, "1960", null, "7635", null, "1357", null, "9484", null, "1731", null, "2766", null, "809", null, "6718", null, "1489", null, "4470", null, "1218", null, "10969", null, "1764", null, "4448", null, "1069", null, "6478", null, "1570", null, "1612", null, "705", null, "4866", null, "1378", null, "43", null, "71", null, "10620", null, "1674", null, "3187", null, "751", null, "3006", null, "772", null, "1154", null, "458", null, "1852", null, "633", null, "4427", null, "1217", null, "5049", null, "1114", null, "16540", null, "2135", null, "8968", null, "1538", null, "12621", null, "2121", null, "7833", null, "1623", null, "407", null, "308", null, "631", null, "436", null, "779", null, "493", null, "-999999999", "N", "-999999999", "N", "4843", null, "1122", null, "7096", null, "1436", null, "13268", null, "1775", null, "6925", null, "1523", null, "66415", null, "6874", null, "17119", null, "2182", null, "1855", null, "735", null, "6293", null, "1475", null, "8971", null, "1386", null, "8.7", null, "0.9", null, "47.4", null, "6.1", null, "52.6", null, "6.1", null, "35.4", null, "5.3", null, "43.9", null, "6.0", null, "12.8", null, "3.6", null, "31.1", null, "5.5", null, "20.7", null, "5.1", null, "50.8", null, "5.7", null, "20.6", null, "4.6", null, "30.0", null, "6.1", null, "7.5", null, "3.2", null, "22.5", null, "5.6", null, "0.2", null, "0.3", null, "49.2", null, "5.7", null, "14.8", null, "3.1", null, "13.9", null, "3.3", null, "5.3", null, "2.2", null, "8.6", null, "2.7", null, "20.5", null, "5.1", null, "23.4", null, "4.6", null, "76.6", null, "4.6", null, "41.5", null, "6.3", null, "58.5", null, "6.3", null, "36.3", null, "6.0", null, "1.9", null, "1.4", null, "2.9", null, "2.1", null, "3.6", null, "2.2", null, "-999999999.0", "N", "-999999999.0", "N", "22.4", null, "4.7", null, "32.9", null, "5.8", null, "61.5", null, "5.9", null, "32.1", null, "5.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.8", null, "3.9", null, "36.8", null, "6.4", null, "52.4", null, "6.7", null, "227860", null, "4266", null, "109691", null, "3880", null, "118169", null, "4083", null, "133578", null, "4672", null, "37668", null, "3350", null, "13076", null, "1770", null, "24592", null, "2986", null, "56614", null, "3320", null, "71960", null, "3571", null, "53774", null, "3125", null, "17803", null, "2633", null, "6040", null, "1505", null, "11763", null, "2297", null, "383", null, "358", null, "155900", null, "4497", null, "79804", null, "4051", null, "19865", null, "2448", null, "7036", null, "1432", null, "12829", null, "2250", null, "56231", null, "3370", null, "17153", null, "2422", null, "210707", null, "4606", null, "54815", null, "3424", null, "173045", null, "5310", null, "134099", null, "3841", null, "3915", null, "950", null, "3352", null, "978", null, "19260", null, "1809", null, "-999999999", "N", "-999999999", "N", "26148", null, "2314", null, "41019", null, "3719", null, "71843", null, "3082", null, "124161", null, "3458", null, "124546", null, "3906", null, "171246", null, "4767", null, "21568", null, "2212", null, "46140", null, "4047", null, "103538", null, "4207", null, "91.3", null, "0.9", null, "48.1", null, "1.5", null, "51.9", null, "1.5", null, "58.6", null, "1.8", null, "16.5", null, "1.4", null, "5.7", null, "0.8", null, "10.8", null, "1.3", null, "24.8", null, "1.4", null, "31.6", null, "1.5", null, "23.6", null, "1.4", null, "7.8", null, "1.1", null, "2.7", null, "0.7", null, "5.2", null, "1.0", null, "0.2", null, "0.2", null, "68.4", null, "1.5", null, "35.0", null, "1.6", null, "8.7", null, "1.1", null, "3.1", null, "0.6", null, "5.6", null, "1.0", null, "24.7", null, "1.4", null, "7.5", null, "1.1", null, "92.5", null, "1.1", null, "24.1", null, "1.5", null, "75.9", null, "1.5", null, "58.9", null, "1.3", null, "1.7", null, "0.4", null, "1.5", null, "0.4", null, "8.5", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "11.5", null, "1.0", null, "18.0", null, "1.5", null, "31.5", null, "1.2", null, "54.5", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.6", null, "1.3", null, "26.9", null, "2.1", null, "60.5", null, "2.1", null, "06", "26"], ["5001900US0627", "Congressional District 27 (119th Congress), California", "233490", null, "6024", null, "105318", null, "5186", null, "128172", null, "5351", null, "129845", null, "4775", null, "48828", null, "4230", null, "15047", null, "2186", null, "33781", null, "3360", null, "54817", null, "3987", null, "90483", null, "4079", null, "61359", null, "3695", null, "28597", null, "2906", null, "8959", null, "1784", null, "19638", null, "2408", null, "527", null, "353", null, "143007", null, "6531", null, "68486", null, "4363", null, "20231", null, "2891", null, "6088", null, "1534", null, "14143", null, "2294", null, "54290", null, "3929", null, "26064", null, "3190", null, "207426", null, "6349", null, "68632", null, "4629", null, "164858", null, "6490", null, "102297", null, "4772", null, "23992", null, "3327", null, "2908", null, "1041", null, "25918", null, "2686", null, "-999999999", "N", "-999999999", "N", "35876", null, "3957", null, "41900", null, "3525", null, "80732", null, "4611", null, "90898", null, "3978", null, "103643", null, "3100", null, "178673", null, "5050", null, "20306", null, "2711", null, "54412", null, "4393", null, "103955", null, "4735", null, "-888888888", "(X)", "-888888888", "(X)", "45.1", null, "1.9", null, "54.9", null, "1.9", null, "55.6", null, "1.9", null, "20.9", null, "1.7", null, "6.4", null, "0.9", null, "14.5", null, "1.4", null, "23.5", null, "1.5", null, "38.8", null, "1.8", null, "26.3", null, "1.7", null, "12.2", null, "1.2", null, "3.8", null, "0.8", null, "8.4", null, "1.0", null, "0.2", null, "0.2", null, "61.2", null, "1.8", null, "29.3", null, "1.6", null, "8.7", null, "1.2", null, "2.6", null, "0.6", null, "6.1", null, "1.0", null, "23.3", null, "1.4", null, "11.2", null, "1.4", null, "88.8", null, "1.4", null, "29.4", null, "1.9", null, "70.6", null, "1.9", null, "43.8", null, "1.8", null, "10.3", null, "1.4", null, "1.2", null, "0.4", null, "11.1", null, "1.1", null, "-999999999.0", "N", "-999999999.0", "N", "15.4", null, "1.6", null, "17.9", null, "1.5", null, "34.6", null, "1.9", null, "38.9", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.4", null, "1.5", null, "30.5", null, "2.2", null, "58.2", null, "2.4", null, "38148", null, "3743", null, "17385", null, "2500", null, "20763", null, "2784", null, "14617", null, "2089", null, "17117", null, "2602", null, "4046", null, "1325", null, "13071", null, "2312", null, "6414", null, "1634", null, "20275", null, "2673", null, "9103", null, "1723", null, "11014", null, "2027", null, "2656", null, "1022", null, "8358", null, "1759", null, "158", null, "242", null, "17873", null, "2288", null, "5514", null, "1411", null, "6103", null, "1433", null, "1390", null, "708", null, "4713", null, "1380", null, "6256", null, "1638", null, "11502", null, "2213", null, "26646", null, "3147", null, "21278", null, "2774", null, "16870", null, "2527", null, "10226", null, "1536", null, "7240", null, "1857", null, "535", null, "395", null, "2119", null, "789", null, "-999999999", "N", "-999999999", "N", "9839", null, "1968", null, "7965", null, "1866", null, "17840", null, "2462", null, "7904", null, "1428", null, "55007", null, "6413", null, "31734", null, "3295", null, "5187", null, "1341", null, "10902", null, "2021", null, "15645", null, "2316", null, "16.3", null, "1.5", null, "45.6", null, "4.9", null, "54.4", null, "4.9", null, "38.3", null, "4.2", null, "44.9", null, "5.2", null, "10.6", null, "3.3", null, "34.3", null, "5.0", null, "16.8", null, "3.8", null, "53.1", null, "4.3", null, "23.9", null, "3.8", null, "28.9", null, "4.1", null, "7.0", null, "2.6", null, "21.9", null, "3.8", null, "0.4", null, "0.6", null, "46.9", null, "4.3", null, "14.5", null, "3.5", null, "16.0", null, "3.7", null, "3.6", null, "1.8", null, "12.4", null, "3.6", null, "16.4", null, "3.8", null, "30.2", null, "4.9", null, "69.8", null, "4.9", null, "55.8", null, "4.9", null, "44.2", null, "4.9", null, "26.8", null, "3.6", null, "19.0", null, "4.0", null, "1.4", null, "1.0", null, "5.6", null, "2.1", null, "-999999999.0", "N", "-999999999.0", "N", "25.8", null, "4.7", null, "20.9", null, "4.3", null, "46.8", null, "5.0", null, "20.7", null, "3.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.3", null, "3.7", null, "34.4", null, "5.2", null, "49.3", null, "5.7", null, "195342", null, "5421", null, "87933", null, "4665", null, "107409", null, "5089", null, "115228", null, "4934", null, "31711", null, "3690", null, "11001", null, "1864", null, "20710", null, "2706", null, "48403", null, "3918", null, "70208", null, "4073", null, "52256", null, "3619", null, "17583", null, "2774", null, "6303", null, "1596", null, "11280", null, "2065", null, "369", null, "249", null, "125134", null, "6211", null, "62972", null, "4341", null, "14128", null, "2175", null, "4698", null, "1230", null, "9430", null, "1554", null, "48034", null, "3882", null, "14562", null, "2114", null, "180780", null, "5748", null, "47354", null, "4005", null, "147988", null, "6080", null, "92071", null, "4752", null, "16752", null, "2847", null, "2373", null, "951", null, "23799", null, "2525", null, "-999999999", "N", "-999999999", "N", "26037", null, "3407", null, "33935", null, "3049", null, "62892", null, "4016", null, "82994", null, "3827", null, "113081", null, "5655", null, "146939", null, "5008", null, "15119", null, "2335", null, "43510", null, "3838", null, "88310", null, "4546", null, "83.7", null, "1.5", null, "45.0", null, "2.1", null, "55.0", null, "2.1", null, "59.0", null, "2.2", null, "16.2", null, "1.8", null, "5.6", null, "0.9", null, "10.6", null, "1.3", null, "24.8", null, "1.8", null, "35.9", null, "2.2", null, "26.8", null, "2.0", null, "9.0", null, "1.4", null, "3.2", null, "0.8", null, "5.8", null, "1.0", null, "0.2", null, "0.1", null, "64.1", null, "2.2", null, "32.2", null, "1.9", null, "7.2", null, "1.1", null, "2.4", null, "0.6", null, "4.8", null, "0.8", null, "24.6", null, "1.8", null, "7.5", null, "1.1", null, "92.5", null, "1.1", null, "24.2", null, "2.0", null, "75.8", null, "2.0", null, "47.1", null, "2.1", null, "8.6", null, "1.4", null, "1.2", null, "0.5", null, "12.2", null, "1.2", null, "-999999999.0", "N", "-999999999.0", "N", "13.3", null, "1.7", null, "17.4", null, "1.6", null, "32.2", null, "2.0", null, "42.5", null, "1.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.3", null, "1.6", null, "29.6", null, "2.3", null, "60.1", null, "2.5", null, "06", "27"], ["5001900US0628", "Congressional District 28 (119th Congress), California", "269918", null, "5770", null, "129915", null, "4619", null, "140003", null, "5856", null, "135635", null, "4302", null, "53679", null, "3475", null, "18689", null, "2494", null, "34990", null, "3043", null, "80604", null, "4271", null, "75321", null, "4256", null, "53018", null, "3448", null, "22090", null, "2679", null, "7360", null, "1640", null, "14730", null, "2346", null, "213", null, "273", null, "194597", null, "5952", null, "82617", null, "3977", null, "31589", null, "2634", null, "11329", null, "1997", null, "20260", null, "2305", null, "80391", null, "4261", null, "25150", null, "2529", null, "244768", null, "5864", null, "57899", null, "3290", null, "212019", null, "5926", null, "92685", null, "4384", null, "10809", null, "2302", null, "2162", null, "741", null, "102875", null, "4509", null, "-999999999", "N", "-999999999", "N", "29124", null, "3215", null, "31061", null, "3142", null, "63150", null, "4173", null, "84150", null, "4018", null, "111299", null, "5234", null, "189314", null, "4655", null, "23471", null, "2264", null, "55723", null, "3528", null, "110120", null, "4236", null, "-888888888", "(X)", "-888888888", "(X)", "48.1", null, "1.6", null, "51.9", null, "1.6", null, "50.3", null, "1.5", null, "19.9", null, "1.2", null, "6.9", null, "0.9", null, "13.0", null, "1.1", null, "29.9", null, "1.3", null, "27.9", null, "1.5", null, "19.6", null, "1.3", null, "8.2", null, "1.0", null, "2.7", null, "0.6", null, "5.5", null, "0.9", null, "0.1", null, "0.1", null, "72.1", null, "1.5", null, "30.6", null, "1.4", null, "11.7", null, "1.0", null, "4.2", null, "0.7", null, "7.5", null, "0.9", null, "29.8", null, "1.3", null, "9.3", null, "0.9", null, "90.7", null, "0.9", null, "21.5", null, "1.2", null, "78.5", null, "1.2", null, "34.3", null, "1.5", null, "4.0", null, "0.8", null, "0.8", null, "0.3", null, "38.1", null, "1.6", null, "-999999999.0", "N", "-999999999.0", "N", "10.8", null, "1.2", null, "11.5", null, "1.1", null, "23.4", null, "1.4", null, "31.2", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.4", null, "1.2", null, "29.4", null, "1.6", null, "58.2", null, "1.9", null, "29253", null, "2890", null, "18531", null, "2181", null, "10722", null, "1807", null, "9303", null, "1868", null, "12352", null, "1778", null, "4785", null, "982", null, "7567", null, "1631", null, "7598", null, "1412", null, "8545", null, "1612", null, "2843", null, "888", null, "5702", null, "1310", null, "2214", null, "819", null, "3488", null, "1137", null, "0", null, "225", null, "20708", null, "2424", null, "6460", null, "1568", null, "6650", null, "1277", null, "2571", null, "819", null, "4079", null, "1062", null, "7598", null, "1412", null, "9367", null, "1894", null, "19886", null, "2211", null, "12465", null, "2079", null, "16788", null, "2464", null, "6464", null, "1574", null, "1772", null, "784", null, "291", null, "230", null, "12020", null, "1817", null, "-999999999", "N", "-999999999", "N", "5004", null, "1572", null, "3632", null, "1183", null, "8247", null, "1960", null, "5377", null, "1383", null, "47342", null, "10793", null, "21655", null, "2544", null, "4477", null, "1286", null, "8225", null, "1586", null, "8953", null, "1756", null, "10.8", null, "1.1", null, "63.3", null, "4.7", null, "36.7", null, "4.7", null, "31.8", null, "5.1", null, "42.2", null, "4.9", null, "16.4", null, "3.2", null, "25.9", null, "5.0", null, "26.0", null, "4.3", null, "29.2", null, "4.6", null, "9.7", null, "2.8", null, "19.5", null, "4.1", null, "7.6", null, "2.7", null, "11.9", null, "3.8", null, "0.0", null, "0.7", null, "70.8", null, "4.6", null, "22.1", null, "4.7", null, "22.7", null, "4.0", null, "8.8", null, "2.9", null, "13.9", null, "3.2", null, "26.0", null, "4.3", null, "32.0", null, "5.1", null, "68.0", null, "5.1", null, "42.6", null, "5.9", null, "57.4", null, "5.9", null, "22.1", null, "4.7", null, "6.1", null, "2.6", null, "1.0", null, "0.8", null, "41.1", null, "5.8", null, "-999999999.0", "N", "-999999999.0", "N", "17.1", null, "4.8", null, "12.4", null, "3.9", null, "28.2", null, "5.6", null, "18.4", null, "4.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "20.7", null, "5.7", null, "38.0", null, "5.5", null, "41.3", null, "6.3", null, "240665", null, "6241", null, "111384", null, "4019", null, "129281", null, "5805", null, "126332", null, "4176", null, "41327", null, "3353", null, "13904", null, "2315", null, "27423", null, "2829", null, "73006", null, "4095", null, "66776", null, "3967", null, "50175", null, "3341", null, "16388", null, "2284", null, "5146", null, "1402", null, "11242", null, "1964", null, "213", null, "273", null, "173889", null, "5957", null, "76157", null, "3693", null, "24939", null, "2512", null, "8758", null, "1796", null, "16181", null, "2096", null, "72793", null, "4112", null, "15783", null, "1886", null, "224882", null, "6194", null, "45434", null, "2990", null, "195231", null, "5651", null, "86221", null, "4343", null, "9037", null, "2124", null, "1871", null, "693", null, "90855", null, "4285", null, "-999999999", "N", "-999999999", "N", "24120", null, "2885", null, "27429", null, "2868", null, "54903", null, "4065", null, "78773", null, "4051", null, "122684", null, "4561", null, "167659", null, "4936", null, "18994", null, "1946", null, "47498", null, "3561", null, "101167", null, "4227", null, "89.2", null, "1.1", null, "46.3", null, "1.6", null, "53.7", null, "1.6", null, "52.5", null, "1.6", null, "17.2", null, "1.2", null, "5.8", null, "0.9", null, "11.4", null, "1.1", null, "30.3", null, "1.4", null, "27.7", null, "1.5", null, "20.8", null, "1.3", null, "6.8", null, "0.9", null, "2.1", null, "0.6", null, "4.7", null, "0.8", null, "0.1", null, "0.1", null, "72.3", null, "1.5", null, "31.6", null, "1.5", null, "10.4", null, "1.0", null, "3.6", null, "0.7", null, "6.7", null, "0.8", null, "30.2", null, "1.4", null, "6.6", null, "0.8", null, "93.4", null, "0.8", null, "18.9", null, "1.1", null, "81.1", null, "1.1", null, "35.8", null, "1.6", null, "3.8", null, "0.9", null, "0.8", null, "0.3", null, "37.8", null, "1.6", null, "-999999999.0", "N", "-999999999.0", "N", "10.0", null, "1.1", null, "11.4", null, "1.1", null, "22.8", null, "1.5", null, "32.7", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.3", null, "1.1", null, "28.3", null, "1.8", null, "60.3", null, "2.1", null, "06", "28"], ["5001900US0629", "Congressional District 29 (119th Congress), California", "240534", null, "6719", null, "93541", null, "4149", null, "146993", null, "6482", null, "105057", null, "4405", null, "59162", null, "3418", null, "18686", null, "2278", null, "40476", null, "2992", null, "76315", null, "4581", null, "75088", null, "3997", null, "46643", null, "3261", null, "28377", null, "2342", null, "7824", null, "1488", null, "20553", null, "2037", null, "68", null, "81", null, "165446", null, "6186", null, "58414", null, "3794", null, "30785", null, "2966", null, "10862", null, "1907", null, "19923", null, "2506", null, "76247", null, "4590", null, "36971", null, "3781", null, "203563", null, "5832", null, "66660", null, "3513", null, "173874", null, "6259", null, "78863", null, "3767", null, "14184", null, "2463", null, "3155", null, "724", null, "21779", null, "2053", null, "-999999999", "N", "-999999999", "N", "58531", null, "3605", null, "63778", null, "3574", null, "129385", null, "5022", null, "67700", null, "3762", null, "76888", null, "2937", null, "164219", null, "5579", null, "14440", null, "1973", null, "48839", null, "3209", null, "100940", null, "4528", null, "-888888888", "(X)", "-888888888", "(X)", "38.9", null, "1.7", null, "61.1", null, "1.7", null, "43.7", null, "1.5", null, "24.6", null, "1.2", null, "7.8", null, "0.9", null, "16.8", null, "1.1", null, "31.7", null, "1.6", null, "31.2", null, "1.5", null, "19.4", null, "1.3", null, "11.8", null, "1.0", null, "3.3", null, "0.6", null, "8.5", null, "0.8", null, "0.0", null, "0.1", null, "68.8", null, "1.5", null, "24.3", null, "1.5", null, "12.8", null, "1.1", null, "4.5", null, "0.8", null, "8.3", null, "1.0", null, "31.7", null, "1.6", null, "15.4", null, "1.4", null, "84.6", null, "1.4", null, "27.7", null, "1.4", null, "72.3", null, "1.4", null, "32.8", null, "1.1", null, "5.9", null, "1.0", null, "1.3", null, "0.3", null, "9.1", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "24.3", null, "1.3", null, "26.5", null, "1.5", null, "53.8", null, "1.7", null, "28.1", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "8.8", null, "1.1", null, "29.7", null, "1.7", null, "61.5", null, "1.8", null, "48575", null, "3977", null, "23490", null, "2646", null, "25085", null, "3059", null, "17700", null, "2126", null, "18217", null, "2403", null, "4113", null, "1033", null, "14104", null, "2052", null, "12658", null, "2055", null, "21449", null, "2530", null, "10373", null, "1673", null, "11076", null, "1774", null, "2074", null, "868", null, "9002", null, "1554", null, "0", null, "225", null, "27126", null, "2711", null, "7327", null, "1302", null, "7141", null, "1386", null, "2039", null, "668", null, "5102", null, "1221", null, "12658", null, "2055", null, "17871", null, "2690", null, "30704", null, "2758", null, "22029", null, "2398", null, "26546", null, "2780", null, "15066", null, "1881", null, "3058", null, "1040", null, "823", null, "434", null, "3208", null, "848", null, "-999999999", "N", "-999999999", "N", "13902", null, "2005", null, "12477", null, "1735", null, "28605", null, "2931", null, "12794", null, "1904", null, "40007", null, "3773", null, "35917", null, "3262", null, "5004", null, "1227", null, "13884", null, "1938", null, "17029", null, "2081", null, "20.2", null, "1.6", null, "48.4", null, "4.2", null, "51.6", null, "4.2", null, "36.4", null, "3.3", null, "37.5", null, "4.1", null, "8.5", null, "2.1", null, "29.0", null, "3.6", null, "26.1", null, "3.5", null, "44.2", null, "3.5", null, "21.4", null, "2.8", null, "22.8", null, "3.2", null, "4.3", null, "1.7", null, "18.5", null, "3.0", null, "0.0", null, "0.4", null, "55.8", null, "3.5", null, "15.1", null, "2.6", null, "14.7", null, "2.7", null, "4.2", null, "1.4", null, "10.5", null, "2.3", null, "26.1", null, "3.5", null, "36.8", null, "4.0", null, "63.2", null, "4.0", null, "45.4", null, "3.4", null, "54.6", null, "3.4", null, "31.0", null, "3.3", null, "6.3", null, "2.0", null, "1.7", null, "0.9", null, "6.6", null, "1.7", null, "-999999999.0", "N", "-999999999.0", "N", "28.6", null, "3.2", null, "25.7", null, "3.0", null, "58.9", null, "3.8", null, "26.3", null, "3.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.9", null, "3.2", null, "38.7", null, "3.8", null, "47.4", null, "4.1", null, "191959", null, "6505", null, "70051", null, "3589", null, "121908", null, "6074", null, "87357", null, "4535", null, "40945", null, "3189", null, "14573", null, "2075", null, "26372", null, "2645", null, "63657", null, "4509", null, "53639", null, "4135", null, "36270", null, "3372", null, "17301", null, "1966", null, "5750", null, "1101", null, "11551", null, "1817", null, "68", null, "81", null, "138320", null, "5813", null, "51087", null, "3613", null, "23644", null, "2558", null, "8823", null, "1666", null, "14821", null, "2192", null, "63589", null, "4517", null, "19100", null, "2455", null, "172859", null, "6131", null, "44631", null, "3119", null, "147328", null, "5937", null, "63797", null, "3533", null, "11126", null, "2452", null, "2332", null, "585", null, "18571", null, "1933", null, "-999999999", "N", "-999999999", "N", "44629", null, "3576", null, "51301", null, "3563", null, "100780", null, "5173", null, "54906", null, "3131", null, "85884", null, "3175", null, "128302", null, "5670", null, "9436", null, "1476", null, "34955", null, "3247", null, "83911", null, "4698", null, "79.8", null, "1.6", null, "36.5", null, "1.8", null, "63.5", null, "1.8", null, "45.5", null, "1.8", null, "21.3", null, "1.5", null, "7.6", null, "1.1", null, "13.7", null, "1.3", null, "33.2", null, "2.0", null, "27.9", null, "1.9", null, "18.9", null, "1.6", null, "9.0", null, "1.0", null, "3.0", null, "0.6", null, "6.0", null, "0.9", null, "0.0", null, "0.1", null, "72.1", null, "1.9", null, "26.6", null, "1.8", null, "12.3", null, "1.2", null, "4.6", null, "0.8", null, "7.7", null, "1.1", null, "33.1", null, "2.0", null, "10.0", null, "1.2", null, "90.0", null, "1.2", null, "23.3", null, "1.5", null, "76.7", null, "1.5", null, "33.2", null, "1.5", null, "5.8", null, "1.3", null, "1.2", null, "0.3", null, "9.7", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "23.2", null, "1.6", null, "26.7", null, "1.8", null, "52.5", null, "1.9", null, "28.6", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "7.4", null, "1.2", null, "27.2", null, "2.1", null, "65.4", null, "2.1", null, "06", "29"], ["5001900US0630", "Congressional District 30 (119th Congress), California", "347702", null, "7760", null, "121403", null, "6400", null, "226299", null, "7823", null, "113206", null, "4684", null, "45044", null, "4056", null, "15506", null, "2541", null, "29538", null, "3327", null, "189452", null, "6793", null, "58760", null, "3751", null, "43364", null, "3313", null, "15332", null, "2431", null, "5147", null, "1247", null, "10185", null, "2075", null, "64", null, "108", null, "288942", null, "8416", null, "69842", null, "3978", null, "29712", null, "3419", null, "10359", null, "2116", null, "19353", null, "2534", null, "189388", null, "6823", null, "44606", null, "4264", null, "303096", null, "8564", null, "78377", null, "4381", null, "269325", null, "7789", null, "212128", null, "6233", null, "14489", null, "2496", null, "2336", null, "879", null, "42893", null, "3820", null, "-999999999", "N", "-999999999", "N", "32152", null, "3254", null, "43418", null, "3214", null, "67534", null, "3909", null, "204420", null, "6503", null, "89846", null, "3668", null, "158250", null, "5416", null, "16376", null, "2361", null, "46689", null, "3591", null, "95185", null, "4933", null, "-888888888", "(X)", "-888888888", "(X)", "34.9", null, "1.7", null, "65.1", null, "1.7", null, "32.6", null, "1.3", null, "13.0", null, "1.1", null, "4.5", null, "0.7", null, "8.5", null, "0.9", null, "54.5", null, "1.4", null, "16.9", null, "1.1", null, "12.5", null, "1.0", null, "4.4", null, "0.7", null, "1.5", null, "0.4", null, "2.9", null, "0.6", null, "0.0", null, "0.1", null, "83.1", null, "1.1", null, "20.1", null, "1.0", null, "8.5", null, "0.9", null, "3.0", null, "0.6", null, "5.6", null, "0.7", null, "54.5", null, "1.4", null, "12.8", null, "1.2", null, "87.2", null, "1.2", null, "22.5", null, "1.2", null, "77.5", null, "1.2", null, "61.0", null, "1.5", null, "4.2", null, "0.7", null, "0.7", null, "0.3", null, "12.3", null, "1.0", null, "-999999999.0", "N", "-999999999.0", "N", "9.2", null, "0.9", null, "12.5", null, "0.8", null, "19.4", null, "1.1", null, "58.8", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.3", null, "1.4", null, "29.5", null, "2.1", null, "60.1", null, "2.3", null, "51708", null, "4623", null, "27722", null, "3249", null, "23986", null, "2975", null, "14276", null, "2187", null, "12542", null, "2053", null, "3266", null, "1031", null, "9276", null, "1702", null, "24890", null, "3194", null, "10058", null, "1873", null, "5341", null, "1201", null, "4717", null, "1450", null, "824", null, "587", null, "3893", null, "1234", null, "0", null, "225", null, "41650", null, "4035", null, "8935", null, "1740", null, "7825", null, "1519", null, "2442", null, "878", null, "5383", null, "1276", null, "24890", null, "3194", null, "18242", null, "2912", null, "33466", null, "3529", null, "26143", null, "3522", null, "25565", null, "2923", null, "32490", null, "3746", null, "1842", null, "789", null, "337", null, "296", null, "5556", null, "1553", null, "-999999999", "N", "-999999999", "N", "5530", null, "1472", null, "5906", null, "1428", null, "9995", null, "2003", null, "31627", null, "3776", null, "36090", null, "3543", null, "26818", null, "2915", null, "5679", null, "1530", null, "10594", null, "1864", null, "10545", null, "1861", null, "14.9", null, "1.3", null, "53.6", null, "4.0", null, "46.4", null, "4.0", null, "27.6", null, "3.8", null, "24.3", null, "3.4", null, "6.3", null, "1.9", null, "17.9", null, "3.0", null, "48.1", null, "3.9", null, "19.5", null, "3.1", null, "10.3", null, "2.2", null, "9.1", null, "2.7", null, "1.6", null, "1.1", null, "7.5", null, "2.3", null, "0.0", null, "0.4", null, "80.5", null, "3.1", null, "17.3", null, "3.2", null, "15.1", null, "2.8", null, "4.7", null, "1.7", null, "10.4", null, "2.3", null, "48.1", null, "3.9", null, "35.3", null, "4.3", null, "64.7", null, "4.3", null, "50.6", null, "4.4", null, "49.4", null, "4.4", null, "62.8", null, "4.3", null, "3.6", null, "1.5", null, "0.7", null, "0.6", null, "10.7", null, "2.7", null, "-999999999.0", "N", "-999999999.0", "N", "10.7", null, "2.7", null, "11.4", null, "2.7", null, "19.3", null, "3.7", null, "61.2", null, "4.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "21.2", null, "5.0", null, "39.5", null, "5.8", null, "39.3", null, "5.6", null, "295994", null, "7911", null, "93681", null, "5514", null, "202313", null, "7996", null, "98930", null, "4659", null, "32502", null, "3436", null, "12240", null, "2407", null, "20262", null, "2773", null, "164562", null, "6794", null, "48702", null, "3582", null, "38023", null, "3163", null, "10615", null, "1840", null, "4323", null, "1321", null, "6292", null, "1462", null, "64", null, "108", null, "247292", null, "8183", null, "60907", null, "3731", null, "21887", null, "3023", null, "7917", null, "1828", null, "13970", null, "2302", null, "164498", null, "6815", null, "26364", null, "3187", null, "269630", null, "8338", null, "52234", null, "3542", null, "243760", null, "7555", null, "179638", null, "6356", null, "12647", null, "2404", null, "1999", null, "821", null, "37337", null, "3424", null, "-999999999", "N", "-999999999", "N", "26622", null, "2945", null, "37512", null, "3042", null, "57539", null, "3826", null, "172793", null, "6592", null, "99915", null, "3954", null, "131432", null, "5226", null, "10697", null, "1674", null, "36095", null, "3285", null, "84640", null, "5065", null, "85.1", null, "1.3", null, "31.6", null, "1.8", null, "68.4", null, "1.8", null, "33.4", null, "1.5", null, "11.0", null, "1.1", null, "4.1", null, "0.8", null, "6.8", null, "0.9", null, "55.6", null, "1.5", null, "16.5", null, "1.2", null, "12.8", null, "1.1", null, "3.6", null, "0.6", null, "1.5", null, "0.4", null, "2.1", null, "0.5", null, "0.0", null, "0.1", null, "83.5", null, "1.2", null, "20.6", null, "1.1", null, "7.4", null, "1.0", null, "2.7", null, "0.6", null, "4.7", null, "0.8", null, "55.6", null, "1.5", null, "8.9", null, "1.1", null, "91.1", null, "1.1", null, "17.6", null, "1.1", null, "82.4", null, "1.1", null, "60.7", null, "1.8", null, "4.3", null, "0.8", null, "0.7", null, "0.3", null, "12.6", null, "1.1", null, "-999999999.0", "N", "-999999999.0", "N", "9.0", null, "1.0", null, "12.7", null, "0.9", null, "19.4", null, "1.2", null, "58.4", null, "1.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "8.1", null, "1.3", null, "27.5", null, "2.3", null, "64.4", null, "2.5", null, "06", "30"], ["5001900US0631", "Congressional District 31 (119th Congress), California", "227112", null, "5074", null, "116605", null, "4907", null, "110507", null, "4584", null, "113788", null, "4719", null, "62644", null, "3952", null, "22131", null, "2510", null, "40513", null, "3473", null, "50680", null, "3704", null, "77018", null, "3809", null, "46388", null, "3386", null, "30353", null, "3296", null, "10605", null, "2006", null, "19748", null, "2709", null, "277", null, "298", null, "150094", null, "5942", null, "67400", null, "4260", null, "32291", null, "2746", null, "11526", null, "1461", null, "20765", null, "2323", null, "50403", null, "3733", null, "28046", null, "2960", null, "199066", null, "4812", null, "69170", null, "4001", null, "157942", null, "5540", null, "55848", null, "3504", null, "7630", null, "1613", null, "4986", null, "1099", null, "52463", null, "2867", null, "959", null, "500", null, "56376", null, "3893", null, "48850", null, "4550", null, "119648", null, "4593", null, "41372", null, "3002", null, "90291", null, "3126", null, "176432", null, "3997", null, "21804", null, "2300", null, "53407", null, "4055", null, "101221", null, "4135", null, "-888888888", "(X)", "-888888888", "(X)", "51.3", null, "1.8", null, "48.7", null, "1.8", null, "50.1", null, "2.0", null, "27.6", null, "1.7", null, "9.7", null, "1.1", null, "17.8", null, "1.5", null, "22.3", null, "1.4", null, "33.9", null, "1.7", null, "20.4", null, "1.6", null, "13.4", null, "1.4", null, "4.7", null, "0.9", null, "8.7", null, "1.2", null, "0.1", null, "0.1", null, "66.1", null, "1.7", null, "29.7", null, "1.7", null, "14.2", null, "1.2", null, "5.1", null, "0.7", null, "9.1", null, "1.0", null, "22.2", null, "1.4", null, "12.3", null, "1.2", null, "87.7", null, "1.2", null, "30.5", null, "1.7", null, "69.5", null, "1.7", null, "24.6", null, "1.4", null, "3.4", null, "0.7", null, "2.2", null, "0.5", null, "23.1", null, "1.2", null, "0.4", null, "0.2", null, "24.8", null, "1.6", null, "21.5", null, "2.0", null, "52.7", null, "1.8", null, "18.2", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.4", null, "1.2", null, "30.3", null, "2.1", null, "57.4", null, "2.2", null, "37747", null, "2972", null, "19708", null, "1985", null, "18039", null, "2639", null, "11285", null, "1833", null, "18890", null, "2610", null, "4354", null, "1367", null, "14536", null, "2373", null, "7572", null, "1386", null, "17993", null, "2434", null, "6557", null, "1443", null, "11269", null, "2260", null, "2733", null, "1193", null, "8536", null, "2015", null, "167", null, "274", null, "19754", null, "2232", null, "4728", null, "1149", null, "7621", null, "1427", null, "1621", null, "607", null, "6000", null, "1302", null, "7405", null, "1431", null, "11546", null, "1561", null, "26201", null, "2314", null, "17185", null, "2147", null, "20562", null, "2541", null, "6392", null, "1298", null, "2627", null, "1107", null, "949", null, "522", null, "8313", null, "1314", null, "269", null, "275", null, "9398", null, "1755", null, "9799", null, "2092", null, "21127", null, "2620", null, "4008", null, "925", null, "60835", null, "4981", null, "30175", null, "2748", null, "4115", null, "1145", null, "12109", null, "2461", null, "13951", null, "1909", null, "16.6", null, "1.3", null, "52.2", null, "4.8", null, "47.8", null, "4.8", null, "29.9", null, "4.8", null, "50.0", null, "4.9", null, "11.5", null, "3.5", null, "38.5", null, "4.9", null, "20.1", null, "3.4", null, "47.7", null, "4.8", null, "17.4", null, "3.9", null, "29.9", null, "4.9", null, "7.2", null, "3.0", null, "22.6", null, "4.6", null, "0.4", null, "0.7", null, "52.3", null, "4.8", null, "12.5", null, "2.9", null, "20.2", null, "3.6", null, "4.3", null, "1.6", null, "15.9", null, "3.3", null, "19.6", null, "3.6", null, "30.6", null, "3.2", null, "69.4", null, "3.2", null, "45.5", null, "4.8", null, "54.5", null, "4.8", null, "16.9", null, "3.2", null, "7.0", null, "2.9", null, "2.5", null, "1.4", null, "22.0", null, "3.6", null, "0.7", null, "0.7", null, "24.9", null, "4.4", null, "26.0", null, "4.5", null, "56.0", null, "4.7", null, "10.6", null, "2.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.6", null, "3.6", null, "40.1", null, "6.4", null, "46.2", null, "6.1", null, "189365", null, "5265", null, "96897", null, "4619", null, "92468", null, "4689", null, "102503", null, "4694", null, "43754", null, "3096", null, "17777", null, "2170", null, "25977", null, "2486", null, "43108", null, "3376", null, "59025", null, "4105", null, "39831", null, "3251", null, "19084", null, "2708", null, "7872", null, "1770", null, "11212", null, "1957", null, "110", null, "127", null, "130340", null, "5053", null, "62672", null, "3916", null, "24670", null, "2374", null, "9905", null, "1454", null, "14765", null, "1931", null, "42998", null, "3368", null, "16500", null, "2475", null, "172865", null, "4973", null, "51985", null, "3282", null, "137380", null, "5637", null, "49456", null, "3643", null, "5003", null, "1297", null, "4037", null, "1070", null, "44150", null, "2837", null, "690", null, "354", null, "46978", null, "3455", null, "39051", null, "3772", null, "98521", null, "4685", null, "37364", null, "3054", null, "96356", null, "6029", null, "146257", null, "4503", null, "17689", null, "2077", null, "41298", null, "3331", null, "87270", null, "3672", null, "83.4", null, "1.3", null, "51.2", null, "2.0", null, "48.8", null, "2.0", null, "54.1", null, "2.0", null, "23.1", null, "1.6", null, "9.4", null, "1.1", null, "13.7", null, "1.3", null, "22.8", null, "1.5", null, "31.2", null, "1.9", null, "21.0", null, "1.6", null, "10.1", null, "1.4", null, "4.2", null, "0.9", null, "5.9", null, "1.0", null, "0.1", null, "0.1", null, "68.8", null, "1.9", null, "33.1", null, "1.9", null, "13.0", null, "1.3", null, "5.2", null, "0.8", null, "7.8", null, "1.0", null, "22.7", null, "1.5", null, "8.7", null, "1.2", null, "91.3", null, "1.2", null, "27.5", null, "1.8", null, "72.5", null, "1.8", null, "26.1", null, "1.7", null, "2.6", null, "0.7", null, "2.1", null, "0.6", null, "23.3", null, "1.4", null, "0.4", null, "0.2", null, "24.8", null, "1.7", null, "20.6", null, "1.9", null, "52.0", null, "2.0", null, "19.7", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.1", null, "1.3", null, "28.2", null, "2.0", null, "59.7", null, "2.3", null, "06", "31"], ["5001900US0632", "Congressional District 32 (119th Congress), California", "303517", null, "6473", null, "123139", null, "4902", null, "180378", null, "6563", null, "139715", null, "6226", null, "46977", null, "4097", null, "15697", null, "2119", null, "31280", null, "3396", null, "116825", null, "5314", null, "74988", null, "4684", null, "53676", null, "4091", null, "20327", null, "3295", null, "6152", null, "1443", null, "14175", null, "2776", null, "985", null, "615", null, "228529", null, "6347", null, "86039", null, "5081", null, "26650", null, "2621", null, "9545", null, "1749", null, "17105", null, "2202", null, "115840", null, "5365", null, "30227", null, "3590", null, "273290", null, "6073", null, "59637", null, "3463", null, "243880", null, "6954", null, "178989", null, "5891", null, "15899", null, "2640", null, "1870", null, "655", null, "37857", null, "3503", null, "-999999999", "N", "-999999999", "N", "35033", null, "3083", null, "33560", null, "3557", null, "62400", null, "4128", null, "170380", null, "5486", null, "108176", null, "4006", null, "186692", null, "6620", null, "21339", null, "2751", null, "59700", null, "4530", null, "105653", null, "5019", null, "-888888888", "(X)", "-888888888", "(X)", "40.6", null, "1.5", null, "59.4", null, "1.5", null, "46.0", null, "1.8", null, "15.5", null, "1.3", null, "5.2", null, "0.7", null, "10.3", null, "1.1", null, "38.5", null, "1.6", null, "24.7", null, "1.4", null, "17.7", null, "1.3", null, "6.7", null, "1.1", null, "2.0", null, "0.5", null, "4.7", null, "0.9", null, "0.3", null, "0.2", null, "75.3", null, "1.4", null, "28.3", null, "1.5", null, "8.8", null, "0.8", null, "3.1", null, "0.6", null, "5.6", null, "0.7", null, "38.2", null, "1.6", null, "10.0", null, "1.1", null, "90.0", null, "1.1", null, "19.6", null, "1.2", null, "80.4", null, "1.2", null, "59.0", null, "1.5", null, "5.2", null, "0.9", null, "0.6", null, "0.2", null, "12.5", null, "1.1", null, "-999999999.0", "N", "-999999999.0", "N", "11.5", null, "1.0", null, "11.1", null, "1.1", null, "20.6", null, "1.3", null, "56.1", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.4", null, "1.4", null, "32.0", null, "2.0", null, "56.6", null, "2.1", null, "28554", null, "3057", null, "12676", null, "1815", null, "15878", null, "2567", null, "9689", null, "1757", null, "9029", null, "1883", null, "1927", null, "714", null, "7102", null, "1654", null, "9836", null, "1662", null, "9986", null, "2189", null, "5017", null, "1436", null, "4572", null, "1402", null, "655", null, "401", null, "3917", null, "1396", null, "397", null, "409", null, "18568", null, "2346", null, "4672", null, "1058", null, "4457", null, "1296", null, "1272", null, "653", null, "3185", null, "1075", null, "9439", null, "1689", null, "6877", null, "1438", null, "21677", null, "2616", null, "10922", null, "1813", null, "17632", null, "2643", null, "13950", null, "2127", null, "1809", null, "886", null, "339", null, "243", null, "3876", null, "1116", null, "-999999999", "N", "-999999999", "N", "4739", null, "1407", null, "3841", null, "1165", null, "8561", null, "1867", null, "13141", null, "2119", null, "56582", null, "7828", null, "18718", null, "2532", null, "2668", null, "941", null, "7904", null, "1699", null, "8146", null, "1780", null, "9.4", null, "1.0", null, "44.4", null, "5.5", null, "55.6", null, "5.5", null, "33.9", null, "5.1", null, "31.6", null, "5.3", null, "6.7", null, "2.5", null, "24.9", null, "4.7", null, "34.4", null, "4.8", null, "35.0", null, "5.9", null, "17.6", null, "4.1", null, "16.0", null, "4.5", null, "2.3", null, "1.5", null, "13.7", null, "4.5", null, "1.4", null, "1.4", null, "65.0", null, "5.9", null, "16.4", null, "4.0", null, "15.6", null, "4.0", null, "4.5", null, "2.2", null, "11.2", null, "3.5", null, "33.1", null, "4.9", null, "24.1", null, "4.3", null, "75.9", null, "4.3", null, "38.3", null, "5.5", null, "61.7", null, "5.5", null, "48.9", null, "6.0", null, "6.3", null, "3.0", null, "1.2", null, "0.9", null, "13.6", null, "3.4", null, "-999999999.0", "N", "-999999999.0", "N", "16.6", null, "4.7", null, "13.5", null, "3.6", null, "30.0", null, "5.5", null, "46.0", null, "5.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.3", null, "4.9", null, "42.2", null, "7.1", null, "43.5", null, "6.9", null, "274963", null, "7033", null, "110463", null, "4872", null, "164500", null, "6148", null, "130026", null, "5994", null, "37948", null, "3736", null, "13770", null, "1971", null, "24178", null, "3159", null, "106989", null, "5182", null, "65002", null, "4237", null, "48659", null, "3871", null, "15755", null, "2683", null, "5497", null, "1335", null, "10258", null, "2125", null, "588", null, "457", null, "209961", null, "6412", null, "81367", null, "4840", null, "22193", null, "2595", null, "8273", null, "1620", null, "13920", null, "2123", null, "106401", null, "5226", null, "23350", null, "3200", null, "251613", null, "6723", null, "48715", null, "3489", null, "226248", null, "7127", null, "165039", null, "5762", null, "14090", null, "2501", null, "1531", null, "584", null, "33981", null, "3357", null, "-999999999", "N", "-999999999", "N", "30294", null, "3122", null, "29719", null, "3583", null, "53839", null, "4123", null, "157239", null, "5417", null, "115373", null, "5643", null, "167974", null, "6579", null, "18671", null, "2610", null, "51796", null, "3929", null, "97507", null, "5081", null, "90.6", null, "1.0", null, "40.2", null, "1.5", null, "59.8", null, "1.5", null, "47.3", null, "1.8", null, "13.8", null, "1.3", null, "5.0", null, "0.7", null, "8.8", null, "1.1", null, "38.9", null, "1.7", null, "23.6", null, "1.4", null, "17.7", null, "1.3", null, "5.7", null, "1.0", null, "2.0", null, "0.5", null, "3.7", null, "0.8", null, "0.2", null, "0.2", null, "76.4", null, "1.4", null, "29.6", null, "1.6", null, "8.1", null, "0.9", null, "3.0", null, "0.6", null, "5.1", null, "0.7", null, "38.7", null, "1.7", null, "8.5", null, "1.1", null, "91.5", null, "1.1", null, "17.7", null, "1.2", null, "82.3", null, "1.2", null, "60.0", null, "1.6", null, "5.1", null, "0.9", null, "0.6", null, "0.2", null, "12.4", null, "1.2", null, "-999999999.0", "N", "-999999999.0", "N", "11.0", null, "1.1", null, "10.8", null, "1.3", null, "19.6", null, "1.3", null, "57.2", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.1", null, "1.5", null, "30.8", null, "2.0", null, "58.0", null, "2.1", null, "06", "32"], ["5001900US0633", "Congressional District 33 (119th Congress), California", "225588", null, "5444", null, "84937", null, "4353", null, "140651", null, "5566", null, "111561", null, "5395", null, "66379", null, "4731", null, "23691", null, "3258", null, "42688", null, "3709", null, "47648", null, "3995", null, "98702", null, "5072", null, "57043", null, "4187", null, "41386", null, "4035", null, "14102", null, "2760", null, "27284", null, "2995", null, "273", null, "228", null, "126886", null, "5808", null, "54518", null, "4027", null, "24993", null, "2844", null, "9589", null, "1872", null, "15404", null, "2281", null, "47375", null, "3945", null, "31754", null, "3249", null, "193834", null, "5344", null, "68636", null, "4447", null, "156952", null, "6183", null, "66097", null, "3936", null, "24245", null, "2694", null, "3639", null, "1122", null, "16278", null, "1766", null, "1506", null, "675", null, "70598", null, "3977", null, "43225", null, "3696", null, "128090", null, "4301", null, "48167", null, "3219", null, "90288", null, "5089", null, "177940", null, "5333", null, "16744", null, "2531", null, "56550", null, "4456", null, "104646", null, "4831", null, "-888888888", "(X)", "-888888888", "(X)", "37.7", null, "1.8", null, "62.3", null, "1.8", null, "49.5", null, "2.2", null, "29.4", null, "1.9", null, "10.5", null, "1.4", null, "18.9", null, "1.5", null, "21.1", null, "1.6", null, "43.8", null, "2.1", null, "25.3", null, "1.8", null, "18.3", null, "1.7", null, "6.3", null, "1.2", null, "12.1", null, "1.3", null, "0.1", null, "0.1", null, "56.2", null, "2.1", null, "24.2", null, "1.7", null, "11.1", null, "1.2", null, "4.3", null, "0.8", null, "6.8", null, "1.0", null, "21.0", null, "1.6", null, "14.1", null, "1.4", null, "85.9", null, "1.4", null, "30.4", null, "1.9", null, "69.6", null, "1.9", null, "29.3", null, "1.5", null, "10.7", null, "1.2", null, "1.6", null, "0.5", null, "7.2", null, "0.8", null, "0.7", null, "0.3", null, "31.3", null, "1.7", null, "19.2", null, "1.6", null, "56.8", null, "1.5", null, "21.4", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "9.4", null, "1.4", null, "31.8", null, "2.2", null, "58.8", null, "2.2", null, "40216", null, "3592", null, "17280", null, "2737", null, "22936", null, "3109", null, "13570", null, "2161", null, "19088", null, "2708", null, "5236", null, "1597", null, "13852", null, "2266", null, "7558", null, "1514", null, "23769", null, "3082", null, "9580", null, "1798", null, "13999", null, "2275", null, "3800", null, "1380", null, "10199", null, "1919", null, "190", null, "210", null, "16447", null, "2078", null, "3990", null, "1162", null, "5089", null, "1194", null, "1436", null, "643", null, "3653", null, "1115", null, "7368", null, "1525", null, "14372", null, "2338", null, "25844", null, "2983", null, "19112", null, "2806", null, "21104", null, "2446", null, "8033", null, "1384", null, "7545", null, "1752", null, "824", null, "653", null, "1361", null, "575", null, "830", null, "720", null, "13949", null, "2377", null, "7674", null, "1615", null, "24202", null, "2800", null, "4625", null, "1035", null, "49440", null, "5144", null, "32658", null, "3419", null, "6226", null, "1599", null, "10902", null, "1888", null, "15530", null, "2325", null, "17.8", null, "1.5", null, "43.0", null, "5.7", null, "57.0", null, "5.7", null, "33.7", null, "4.6", null, "47.5", null, "4.6", null, "13.0", null, "3.8", null, "34.4", null, "4.2", null, "18.8", null, "3.6", null, "59.1", null, "4.6", null, "23.8", null, "3.7", null, "34.8", null, "4.3", null, "9.4", null, "3.3", null, "25.4", null, "4.0", null, "0.5", null, "0.5", null, "40.9", null, "4.6", null, "9.9", null, "3.0", null, "12.7", null, "2.7", null, "3.6", null, "1.6", null, "9.1", null, "2.5", null, "18.3", null, "3.6", null, "35.7", null, "4.8", null, "64.3", null, "4.8", null, "47.5", null, "4.8", null, "52.5", null, "4.8", null, "20.0", null, "3.7", null, "18.8", null, "3.8", null, "2.0", null, "1.6", null, "3.4", null, "1.4", null, "2.1", null, "1.7", null, "34.7", null, "4.5", null, "19.1", null, "3.6", null, "60.2", null, "4.0", null, "11.5", null, "2.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "19.1", null, "4.6", null, "33.4", null, "4.7", null, "47.6", null, "4.7", null, "185372", null, "5639", null, "67657", null, "3727", null, "117715", null, "5534", null, "97991", null, "5236", null, "47291", null, "4139", null, "18455", null, "2665", null, "28836", null, "3239", null, "40090", null, "3681", null, "74933", null, "4588", null, "47463", null, "3780", null, "27387", null, "3533", null, "10302", null, "2225", null, "17085", null, "2597", null, "83", null, "95", null, "110439", null, "5819", null, "50528", null, "3898", null, "19904", null, "2635", null, "8153", null, "1765", null, "11751", null, "1929", null, "40007", null, "3675", null, "17382", null, "2449", null, "167990", null, "5725", null, "49524", null, "3527", null, "135848", null, "5869", null, "58064", null, "3900", null, "16700", null, "2119", null, "2815", null, "887", null, "14917", null, "1635", null, "676", null, "522", null, "56649", null, "3545", null, "35551", null, "3248", null, "103888", null, "4529", null, "43542", null, "3338", null, "100665", null, "3509", null, "145282", null, "5616", null, "10518", null, "1710", null, "45648", null, "4255", null, "89116", null, "4647", null, "82.2", null, "1.5", null, "36.5", null, "1.9", null, "63.5", null, "1.9", null, "52.9", null, "2.3", null, "25.5", null, "2.1", null, "10.0", null, "1.4", null, "15.6", null, "1.7", null, "21.6", null, "1.9", null, "40.4", null, "2.3", null, "25.6", null, "2.0", null, "14.8", null, "1.9", null, "5.6", null, "1.2", null, "9.2", null, "1.4", null, "0.0", null, "0.1", null, "59.6", null, "2.3", null, "27.3", null, "1.8", null, "10.7", null, "1.4", null, "4.4", null, "0.9", null, "6.3", null, "1.0", null, "21.6", null, "1.9", null, "9.4", null, "1.3", null, "90.6", null, "1.3", null, "26.7", null, "1.9", null, "73.3", null, "1.9", null, "31.3", null, "1.8", null, "9.0", null, "1.2", null, "1.5", null, "0.5", null, "8.0", null, "0.8", null, "0.4", null, "0.3", null, "30.6", null, "1.7", null, "19.2", null, "1.7", null, "56.0", null, "1.9", null, "23.5", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "7.2", null, "1.2", null, "31.4", null, "2.5", null, "61.3", null, "2.5", null, "06", "33"], ["5001900US0634", "Congressional District 34 (119th Congress), California", "280397", null, "7169", null, "100890", null, "4935", null, "179507", null, "5748", null, "86994", null, "4504", null, "70565", null, "4137", null, "23097", null, "2647", null, "47468", null, "3490", null, "122838", null, "5980", null, "71235", null, "3953", null, "36169", null, "3168", null, "34693", null, "3133", null, "10388", null, "1735", null, "24305", null, "2548", null, "373", null, "230", null, "209162", null, "7188", null, "50825", null, "3663", null, "35872", null, "2738", null, "12709", null, "1754", null, "23163", null, "2406", null, "122465", null, "5962", null, "59253", null, "4093", null, "221144", null, "6571", null, "72730", null, "4514", null, "207667", null, "6396", null, "56449", null, "3706", null, "20056", null, "3380", null, "5173", null, "1222", null, "58404", null, "3644", null, "-999999999", "N", "-999999999", "N", "89597", null, "4792", null, "50344", null, "4159", null, "150016", null, "6050", null, "43420", null, "3657", null, "63879", null, "2360", null, "157559", null, "5875", null, "16214", null, "2352", null, "50644", null, "3830", null, "90701", null, "4842", null, "-888888888", "(X)", "-888888888", "(X)", "36.0", null, "1.4", null, "64.0", null, "1.4", null, "31.0", null, "1.5", null, "25.2", null, "1.3", null, "8.2", null, "0.9", null, "16.9", null, "1.2", null, "43.8", null, "1.7", null, "25.4", null, "1.4", null, "12.9", null, "1.1", null, "12.4", null, "1.1", null, "3.7", null, "0.6", null, "8.7", null, "0.9", null, "0.1", null, "0.1", null, "74.6", null, "1.4", null, "18.1", null, "1.2", null, "12.8", null, "0.9", null, "4.5", null, "0.6", null, "8.3", null, "0.8", null, "43.7", null, "1.7", null, "21.1", null, "1.3", null, "78.9", null, "1.3", null, "25.9", null, "1.4", null, "74.1", null, "1.4", null, "20.1", null, "1.3", null, "7.2", null, "1.2", null, "1.8", null, "0.4", null, "20.8", null, "1.2", null, "-999999999.0", "N", "-999999999.0", "N", "32.0", null, "1.6", null, "18.0", null, "1.3", null, "53.5", null, "1.5", null, "15.5", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.3", null, "1.4", null, "32.1", null, "2.2", null, "57.6", null, "2.4", null, "67756", null, "4430", null, "34033", null, "3257", null, "33723", null, "3010", null, "16901", null, "2185", null, "23392", null, "2828", null, "4954", null, "1164", null, "18438", null, "2366", null, "27463", null, "3114", null, "22205", null, "2483", null, "9239", null, "1669", null, "12838", null, "2057", null, "2881", null, "1000", null, "9957", null, "1642", null, "128", null, "128", null, "45551", null, "3942", null, "7662", null, "1415", null, "10554", null, "1825", null, "2073", null, "621", null, "8481", null, "1738", null, "27335", null, "3123", null, "29497", null, "2986", null, "38259", null, "3194", null, "29491", null, "2925", null, "38265", null, "3662", null, "8263", null, "1279", null, "7363", null, "2224", null, "1117", null, "608", null, "14023", null, "1957", null, "-999999999", "N", "-999999999", "N", "24066", null, "2586", null, "12872", null, "1811", null, "40133", null, "3271", null, "5046", null, "1238", null, "29483", null, "4327", null, "40293", null, "3488", null, "7440", null, "1535", null, "15572", null, "2160", null, "17281", null, "2167", null, "24.2", null, "1.5", null, "50.2", null, "3.3", null, "49.8", null, "3.3", null, "24.9", null, "2.8", null, "34.5", null, "3.6", null, "7.3", null, "1.6", null, "27.2", null, "3.1", null, "40.5", null, "3.6", null, "32.8", null, "3.3", null, "13.6", null, "2.4", null, "18.9", null, "2.9", null, "4.3", null, "1.4", null, "14.7", null, "2.4", null, "0.2", null, "0.2", null, "67.2", null, "3.3", null, "11.3", null, "1.9", null, "15.6", null, "2.5", null, "3.1", null, "0.9", null, "12.5", null, "2.4", null, "40.3", null, "3.6", null, "43.5", null, "3.2", null, "56.5", null, "3.2", null, "43.5", null, "3.6", null, "56.5", null, "3.6", null, "12.2", null, "1.9", null, "10.9", null, "3.1", null, "1.6", null, "0.9", null, "20.7", null, "2.6", null, "-999999999.0", "N", "-999999999.0", "N", "35.5", null, "3.4", null, "19.0", null, "2.3", null, "59.2", null, "3.3", null, "7.4", null, "1.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.5", null, "3.4", null, "38.6", null, "4.0", null, "42.9", null, "4.2", null, "212641", null, "6866", null, "66857", null, "4504", null, "145784", null, "5303", null, "70093", null, "3783", null, "47173", null, "3925", null, "18143", null, "2452", null, "29030", null, "3068", null, "95375", null, "5581", null, "49030", null, "3540", null, "26930", null, "2694", null, "21855", null, "2704", null, "7507", null, "1516", null, "14348", null, "2263", null, "245", null, "171", null, "163611", null, "6586", null, "43163", null, "3032", null, "25318", null, "2571", null, "10636", null, "1721", null, "14682", null, "1819", null, "95130", null, "5548", null, "29756", null, "3310", null, "182885", null, "6215", null, "43239", null, "4018", null, "169402", null, "6209", null, "48186", null, "3620", null, "12693", null, "2316", null, "4056", null, "1065", null, "44381", null, "3472", null, "-999999999", "N", "-999999999", "N", "65531", null, "4518", null, "37472", null, "3505", null, "109883", null, "5741", null, "38374", null, "3458", null, "75203", null, "2915", null, "117266", null, "5407", null, "8774", null, "1505", null, "35072", null, "3279", null, "73420", null, "4632", null, "75.8", null, "1.5", null, "31.4", null, "1.7", null, "68.6", null, "1.7", null, "33.0", null, "1.6", null, "22.2", null, "1.7", null, "8.5", null, "1.1", null, "13.7", null, "1.4", null, "44.9", null, "2.0", null, "23.1", null, "1.6", null, "12.7", null, "1.2", null, "10.3", null, "1.3", null, "3.5", null, "0.7", null, "6.7", null, "1.1", null, "0.1", null, "0.1", null, "76.9", null, "1.6", null, "20.3", null, "1.4", null, "11.9", null, "1.1", null, "5.0", null, "0.8", null, "6.9", null, "0.8", null, "44.7", null, "2.0", null, "14.0", null, "1.4", null, "86.0", null, "1.4", null, "20.3", null, "1.7", null, "79.7", null, "1.7", null, "22.7", null, "1.6", null, "6.0", null, "1.1", null, "1.9", null, "0.5", null, "20.9", null, "1.5", null, "-999999999.0", "N", "-999999999.0", "N", "30.8", null, "1.8", null, "17.6", null, "1.5", null, "51.7", null, "1.9", null, "18.0", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "7.5", null, "1.2", null, "29.9", null, "2.5", null, "62.6", null, "2.7", null, "06", "34"], ["5001900US0635", "Congressional District 35 (119th Congress), California", "226325", null, "5432", null, "92868", null, "4641", null, "133457", null, "6263", null, "119734", null, "5165", null, "57044", null, "4432", null, "20470", null, "2782", null, "36574", null, "3541", null, "49547", null, "4296", null, "87452", null, "4807", null, "57161", null, "4106", null, "29734", null, "3594", null, "10350", null, "2231", null, "19384", null, "2882", null, "557", null, "421", null, "138873", null, "6806", null, "62573", null, "4442", null, "27310", null, "2994", null, "10120", null, "1861", null, "17190", null, "2510", null, "48990", null, "4361", null, "26337", null, "3015", null, "199988", null, "4920", null, "60034", null, "3846", null, "166291", null, "6192", null, "57146", null, "3883", null, "16528", null, "2635", null, "5144", null, "1435", null, "33812", null, "2526", null, "571", null, "375", null, "69059", null, "4182", null, "44065", null, "3896", null, "127356", null, "4664", null, "42101", null, "3826", null, "94230", null, "3119", null, "176778", null, "5149", null, "15853", null, "1974", null, "52384", null, "4507", null, "108541", null, "4312", null, "-888888888", "(X)", "-888888888", "(X)", "41.0", null, "2.1", null, "59.0", null, "2.1", null, "52.9", null, "2.2", null, "25.2", null, "1.8", null, "9.0", null, "1.2", null, "16.2", null, "1.5", null, "21.9", null, "1.7", null, "38.6", null, "2.2", null, "25.3", null, "1.9", null, "13.1", null, "1.6", null, "4.6", null, "1.0", null, "8.6", null, "1.3", null, "0.2", null, "0.2", null, "61.4", null, "2.2", null, "27.6", null, "1.8", null, "12.1", null, "1.3", null, "4.5", null, "0.8", null, "7.6", null, "1.1", null, "21.6", null, "1.7", null, "11.6", null, "1.2", null, "88.4", null, "1.2", null, "26.5", null, "1.7", null, "73.5", null, "1.7", null, "25.2", null, "1.6", null, "7.3", null, "1.1", null, "2.3", null, "0.6", null, "14.9", null, "1.0", null, "0.3", null, "0.2", null, "30.5", null, "1.8", null, "19.5", null, "1.6", null, "56.3", null, "2.0", null, "18.6", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "9.0", null, "1.1", null, "29.6", null, "2.2", null, "61.4", null, "2.2", null, "33110", null, "3244", null, "16975", null, "2500", null, "16135", null, "2263", null, "12545", null, "2176", null, "14894", null, "2559", null, "4397", null, "1484", null, "10497", null, "2099", null, "5671", null, "1496", null, "17009", null, "2563", null, "7855", null, "1696", null, "8997", null, "1919", null, "2744", null, "1158", null, "6253", null, "1687", null, "157", null, "201", null, "16101", null, "2386", null, "4690", null, "1196", null, "5897", null, "1640", null, "1653", null, "705", null, "4244", null, "1387", null, "5514", null, "1511", null, "10306", null, "1704", null, "22804", null, "2879", null, "14021", null, "2086", null, "19089", null, "2737", null, "6663", null, "1482", null, "2919", null, "1053", null, "1087", null, "876", null, "3077", null, "907", null, "138", null, "157", null, "13427", null, "2018", null, "5799", null, "1400", null, "22966", null, "2711", null, "3697", null, "945", null, "49607", null, "6342", null, "27439", null, "3133", null, "4438", null, "1278", null, "10094", null, "1965", null, "12907", null, "1967", null, "14.6", null, "1.4", null, "51.3", null, "5.3", null, "48.7", null, "5.3", null, "37.9", null, "5.7", null, "45.0", null, "5.9", null, "13.3", null, "4.2", null, "31.7", null, "5.3", null, "17.1", null, "4.3", null, "51.4", null, "5.6", null, "23.7", null, "4.5", null, "27.2", null, "5.0", null, "8.3", null, "3.4", null, "18.9", null, "4.7", null, "0.5", null, "0.6", null, "48.6", null, "5.6", null, "14.2", null, "3.6", null, "17.8", null, "4.5", null, "5.0", null, "2.1", null, "12.8", null, "3.9", null, "16.7", null, "4.3", null, "31.1", null, "4.6", null, "68.9", null, "4.6", null, "42.3", null, "5.4", null, "57.7", null, "5.4", null, "20.1", null, "4.0", null, "8.8", null, "3.1", null, "3.3", null, "2.6", null, "9.3", null, "2.5", null, "0.4", null, "0.5", null, "40.6", null, "5.2", null, "17.5", null, "3.5", null, "69.4", null, "4.6", null, "11.2", null, "2.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.2", null, "4.2", null, "36.8", null, "5.8", null, "47.0", null, "4.9", null, "193215", null, "5271", null, "75893", null, "4182", null, "117322", null, "5642", null, "107189", null, "4798", null, "42150", null, "3480", null, "16073", null, "2398", null, "26077", null, "2715", null, "43876", null, "4033", null, "70443", null, "4498", null, "49306", null, "3953", null, "20737", null, "3030", null, "7606", null, "1764", null, "13131", null, "2372", null, "400", null, "379", null, "122772", null, "6287", null, "57883", null, "4081", null, "21413", null, "2652", null, "8467", null, "1743", null, "12946", null, "1943", null, "43476", null, "4072", null, "16031", null, "2199", null, "177184", null, "4844", null, "46013", null, "3473", null, "147202", null, "5586", null, "50483", null, "3741", null, "13609", null, "2587", null, "4057", null, "1179", null, "30735", null, "2468", null, "433", null, "342", null, "55632", null, "3980", null, "38266", null, "3824", null, "104390", null, "4845", null, "38404", null, "3691", null, "101229", null, "2679", null, "149339", null, "4727", null, "11415", null, "1564", null, "42290", null, "3891", null, "95634", null, "4223", null, "85.4", null, "1.4", null, "39.3", null, "2.1", null, "60.7", null, "2.1", null, "55.5", null, "2.2", null, "21.8", null, "1.7", null, "8.3", null, "1.2", null, "13.5", null, "1.4", null, "22.7", null, "1.9", null, "36.5", null, "2.4", null, "25.5", null, "2.1", null, "10.7", null, "1.6", null, "3.9", null, "0.9", null, "6.8", null, "1.2", null, "0.2", null, "0.2", null, "63.5", null, "2.4", null, "30.0", null, "1.9", null, "11.1", null, "1.3", null, "4.4", null, "0.9", null, "6.7", null, "1.0", null, "22.5", null, "1.9", null, "8.3", null, "1.1", null, "91.7", null, "1.1", null, "23.8", null, "1.8", null, "76.2", null, "1.8", null, "26.1", null, "1.8", null, "7.0", null, "1.3", null, "2.1", null, "0.6", null, "15.9", null, "1.2", null, "0.2", null, "0.2", null, "28.8", null, "2.0", null, "19.8", null, "1.8", null, "54.0", null, "2.4", null, "19.9", null, "1.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "7.6", null, "1.0", null, "28.3", null, "2.3", null, "64.0", null, "2.4", null, "06", "35"], ["5001900US0636", "Congressional District 36 (119th Congress), California", "327800", null, "7753", null, "126089", null, "5888", null, "201711", null, "7116", null, "132139", null, "5309", null, "34632", null, "3233", null, "12691", null, "2158", null, "21941", null, "2585", null, "161029", null, "8309", null, "66490", null, "4480", null, "51106", null, "3836", null, "14781", null, "2503", null, "5938", null, "1743", null, "8843", null, "1906", null, "603", null, "605", null, "261310", null, "7884", null, "81033", null, "4570", null, "19851", null, "2516", null, "6753", null, "1643", null, "13098", null, "2083", null, "160426", null, "8336", null, "35233", null, "4425", null, "292567", null, "7197", null, "50067", null, "3602", null, "277733", null, "7190", null, "204395", null, "7555", null, "13333", null, "3333", null, "-999999999", "N", "-999999999", "N", "56374", null, "4022", null, "-999999999", "N", "-999999999", "N", "16404", null, "2599", null, "34718", null, "3535", null, "44340", null, "3764", null, "195818", null, "7561", null, "131181", null, "3646", null, "166771", null, "5290", null, "26455", null, "2647", null, "48606", null, "3877", null, "91710", null, "4875", null, "-888888888", "(X)", "-888888888", "(X)", "38.5", null, "1.6", null, "61.5", null, "1.6", null, "40.3", null, "1.7", null, "10.6", null, "1.0", null, "3.9", null, "0.6", null, "6.7", null, "0.8", null, "49.1", null, "1.8", null, "20.3", null, "1.3", null, "15.6", null, "1.2", null, "4.5", null, "0.8", null, "1.8", null, "0.5", null, "2.7", null, "0.6", null, "0.2", null, "0.2", null, "79.7", null, "1.3", null, "24.7", null, "1.5", null, "6.1", null, "0.8", null, "2.1", null, "0.5", null, "4.0", null, "0.7", null, "48.9", null, "1.8", null, "10.7", null, "1.3", null, "89.3", null, "1.3", null, "15.3", null, "1.0", null, "84.7", null, "1.0", null, "62.4", null, "1.9", null, "4.1", null, "1.0", null, "-999999999.0", "N", "-999999999.0", "N", "17.2", null, "1.2", null, "-999999999.0", "N", "-999999999.0", "N", "5.0", null, "0.8", null, "10.6", null, "1.0", null, "13.5", null, "1.1", null, "59.7", null, "1.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.9", null, "1.5", null, "29.1", null, "2.2", null, "55.0", null, "2.4", null, "16576", null, "2400", null, "7626", null, "1434", null, "8950", null, "1954", null, "3297", null, "1141", null, "4948", null, "1386", null, "1277", null, "655", null, "3671", null, "1303", null, "8331", null, "1530", null, "4763", null, "1640", null, "2119", null, "862", null, "2618", null, "1091", null, "603", null, "465", null, "2015", null, "1086", null, "26", null, "43", null, "11813", null, "1834", null, "1178", null, "784", null, "2330", null, "845", null, "674", null, "374", null, "1656", null, "782", null, "8305", null, "1532", null, "6251", null, "1507", null, "10325", null, "2179", null, "6409", null, "1543", null, "10167", null, "1981", null, "7018", null, "1518", null, "1888", null, "1059", null, "-999999999", "N", "-999999999", "N", "3035", null, "1059", null, "-999999999", "N", "-999999999", "N", "1665", null, "856", null, "2970", null, "1018", null, "4317", null, "1399", null, "6527", null, "1555", null, "27900", null, "9124", null, "8245", null, "1907", null, "2460", null, "1129", null, "2750", null, "843", null, "3035", null, "1313", null, "5.1", null, "0.7", null, "46.0", null, "7.2", null, "54.0", null, "7.2", null, "19.9", null, "6.1", null, "29.9", null, "6.4", null, "7.7", null, "3.8", null, "22.1", null, "6.6", null, "50.3", null, "7.6", null, "28.7", null, "7.9", null, "12.8", null, "4.7", null, "15.8", null, "5.5", null, "3.6", null, "2.7", null, "12.2", null, "5.9", null, "0.2", null, "0.3", null, "71.3", null, "7.9", null, "7.1", null, "4.7", null, "14.1", null, "4.9", null, "4.1", null, "2.2", null, "10.0", null, "4.6", null, "50.1", null, "7.6", null, "37.7", null, "8.2", null, "62.3", null, "8.2", null, "38.7", null, "7.7", null, "61.3", null, "7.7", null, "42.3", null, "7.2", null, "11.4", null, "5.6", null, "-999999999.0", "N", "-999999999.0", "N", "18.3", null, "6.6", null, "-999999999.0", "N", "-999999999.0", "N", "10.0", null, "5.0", null, "17.9", null, "5.3", null, "26.0", null, "7.4", null, "39.4", null, "7.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "29.8", null, "11.7", null, "33.4", null, "9.4", null, "36.8", null, "12.2", null, "311224", null, "7208", null, "118463", null, "5699", null, "192761", null, "7061", null, "128842", null, "5142", null, "29684", null, "3230", null, "11414", null, "2067", null, "18270", null, "2362", null, "152698", null, "8176", null, "61727", null, "4328", null, "48987", null, "3834", null, "12163", null, "2338", null, "5335", null, "1703", null, "6828", null, "1554", null, "577", null, "603", null, "249497", null, "7625", null, "79855", null, "4562", null, "17521", null, "2382", null, "6079", null, "1564", null, "11442", null, "1861", null, "152121", null, "8192", null, "28982", null, "4108", null, "282242", null, "7123", null, "43658", null, "3477", null, "267566", null, "6876", null, "197377", null, "7154", null, "11445", null, "3077", null, "-999999999", "N", "-999999999", "N", "53339", null, "3774", null, "-999999999", "N", "-999999999", "N", "14739", null, "2742", null, "31748", null, "3332", null, "40023", null, "3599", null, "189291", null, "7100", null, "138397", null, "6784", null, "158526", null, "5243", null, "23995", null, "2354", null, "45856", null, "3760", null, "88675", null, "4854", null, "94.9", null, "0.7", null, "38.1", null, "1.7", null, "61.9", null, "1.7", null, "41.4", null, "1.8", null, "9.5", null, "1.0", null, "3.7", null, "0.7", null, "5.9", null, "0.8", null, "49.1", null, "1.9", null, "19.8", null, "1.4", null, "15.7", null, "1.2", null, "3.9", null, "0.7", null, "1.7", null, "0.5", null, "2.2", null, "0.5", null, "0.2", null, "0.2", null, "80.2", null, "1.4", null, "25.7", null, "1.6", null, "5.6", null, "0.8", null, "2.0", null, "0.5", null, "3.7", null, "0.6", null, "48.9", null, "1.9", null, "9.3", null, "1.3", null, "90.7", null, "1.3", null, "14.0", null, "1.1", null, "86.0", null, "1.1", null, "63.4", null, "1.9", null, "3.7", null, "1.0", null, "-999999999.0", "N", "-999999999.0", "N", "17.1", null, "1.2", null, "-999999999.0", "N", "-999999999.0", "N", "4.7", null, "0.9", null, "10.2", null, "1.0", null, "12.9", null, "1.1", null, "60.8", null, "1.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.1", null, "1.4", null, "28.9", null, "2.1", null, "55.9", null, "2.4", null, "06", "36"], ["5001900US0637", "Congressional District 37 (119th Congress), California", "261194", null, "7200", null, "99753", null, "5093", null, "161441", null, "5784", null, "84593", null, "4298", null, "67215", null, "4092", null, "20792", null, "2283", null, "46423", null, "3928", null, "109386", null, "5585", null, "78468", null, "3467", null, "38806", null, "2838", null, "39188", null, "3201", null, "11091", null, "1667", null, "28097", null, "3096", null, "474", null, "410", null, "182726", null, "6763", null, "45787", null, "3538", null, "28027", null, "2850", null, "9701", null, "1622", null, "18326", null, "2433", null, "108912", null, "5586", null, "58311", null, "4077", null, "202883", null, "6743", null, "72139", null, "4271", null, "189055", null, "6428", null, "53943", null, "4505", null, "68608", null, "4882", null, "3897", null, "1133", null, "24300", null, "2583", null, "-999999999", "N", "-999999999", "N", "68192", null, "3173", null, "41881", null, "3484", null, "109755", null, "4368", null, "46041", null, "3944", null, "69595", null, "2830", null, "151808", null, "5109", null, "14882", null, "1846", null, "50940", null, "3778", null, "85986", null, "4263", null, "-888888888", "(X)", "-888888888", "(X)", "38.2", null, "1.6", null, "61.8", null, "1.6", null, "32.4", null, "1.5", null, "25.7", null, "1.5", null, "8.0", null, "0.8", null, "17.8", null, "1.5", null, "41.9", null, "1.5", null, "30.0", null, "1.3", null, "14.9", null, "1.1", null, "15.0", null, "1.2", null, "4.2", null, "0.6", null, "10.8", null, "1.2", null, "0.2", null, "0.2", null, "70.0", null, "1.3", null, "17.5", null, "1.3", null, "10.7", null, "1.1", null, "3.7", null, "0.6", null, "7.0", null, "0.9", null, "41.7", null, "1.5", null, "22.3", null, "1.4", null, "77.7", null, "1.4", null, "27.6", null, "1.4", null, "72.4", null, "1.4", null, "20.7", null, "1.5", null, "26.3", null, "1.5", null, "1.5", null, "0.4", null, "9.3", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "26.1", null, "1.2", null, "16.0", null, "1.4", null, "42.0", null, "1.7", null, "17.6", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "9.8", null, "1.2", null, "33.6", null, "2.1", null, "56.6", null, "2.1", null, "57179", null, "4033", null, "24119", null, "2484", null, "33060", null, "3390", null, "11775", null, "1818", null, "23260", null, "2414", null, "5763", null, "1118", null, "17497", null, "2347", null, "22144", null, "2799", null, "24749", null, "2663", null, "8030", null, "1442", null, "16719", null, "2355", null, "3628", null, "977", null, "13091", null, "2322", null, "0", null, "225", null, "32430", null, "3095", null, "3745", null, "958", null, "6541", null, "1307", null, "2135", null, "702", null, "4406", null, "1082", null, "22144", null, "2799", null, "27046", null, "2748", null, "30133", null, "3228", null, "25377", null, "2419", null, "31802", null, "3354", null, "4743", null, "1296", null, "20175", null, "2595", null, "899", null, "475", null, "3405", null, "1047", null, "-999999999", "N", "-999999999", "N", "20020", null, "2121", null, "7937", null, "1778", null, "27717", null, "2531", null, "3673", null, "1177", null, "28815", null, "3249", null, "35035", null, "3020", null, "5575", null, "1139", null, "16788", null, "2257", null, "12672", null, "1855", null, "21.9", null, "1.4", null, "42.2", null, "3.7", null, "57.8", null, "3.7", null, "20.6", null, "2.9", null, "40.7", null, "3.4", null, "10.1", null, "1.9", null, "30.6", null, "3.5", null, "38.7", null, "3.7", null, "43.3", null, "3.6", null, "14.0", null, "2.5", null, "29.2", null, "3.4", null, "6.3", null, "1.7", null, "22.9", null, "3.5", null, "0.0", null, "0.4", null, "56.7", null, "3.6", null, "6.5", null, "1.6", null, "11.4", null, "2.3", null, "3.7", null, "1.2", null, "7.7", null, "1.9", null, "38.7", null, "3.7", null, "47.3", null, "3.8", null, "52.7", null, "3.8", null, "44.4", null, "3.6", null, "55.6", null, "3.6", null, "8.3", null, "2.2", null, "35.3", null, "3.4", null, "1.6", null, "0.8", null, "6.0", null, "1.8", null, "-999999999.0", "N", "-999999999.0", "N", "35.0", null, "3.3", null, "13.9", null, "2.9", null, "48.5", null, "3.6", null, "6.4", null, "2.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.9", null, "3.0", null, "47.9", null, "4.5", null, "36.2", null, "4.5", null, "204015", null, "6887", null, "75634", null, "4444", null, "128381", null, "5909", null, "72818", null, "4431", null, "43955", null, "3372", null, "15029", null, "2257", null, "28926", null, "3143", null, "87242", null, "5027", null, "53719", null, "3475", null, "30776", null, "2812", null, "22469", null, "2604", null, "7463", null, "1636", null, "15006", null, "2187", null, "474", null, "410", null, "150296", null, "5951", null, "42042", null, "3435", null, "21486", null, "2442", null, "7566", null, "1385", null, "13920", null, "2132", null, "86768", null, "5009", null, "31265", null, "3294", null, "172750", null, "6113", null, "46762", null, "3559", null, "157253", null, "6184", null, "49200", null, "4025", null, "48433", null, "4284", null, "2998", null, "1025", null, "20895", null, "2300", null, "-999999999", "N", "-999999999", "N", "48172", null, "3081", null, "33944", null, "3206", null, "82038", null, "4315", null, "42368", null, "3494", null, "83149", null, "3250", null, "116773", null, "5169", null, "9307", null, "1633", null, "34152", null, "3183", null, "73314", null, "3985", null, "78.1", null, "1.4", null, "37.1", null, "1.9", null, "62.9", null, "1.9", null, "35.7", null, "1.8", null, "21.5", null, "1.6", null, "7.4", null, "1.1", null, "14.2", null, "1.5", null, "42.8", null, "1.8", null, "26.3", null, "1.5", null, "15.1", null, "1.3", null, "11.0", null, "1.2", null, "3.7", null, "0.8", null, "7.4", null, "1.0", null, "0.2", null, "0.2", null, "73.7", null, "1.5", null, "20.6", null, "1.5", null, "10.5", null, "1.2", null, "3.7", null, "0.7", null, "6.8", null, "1.1", null, "42.5", null, "1.8", null, "15.3", null, "1.4", null, "84.7", null, "1.4", null, "22.9", null, "1.6", null, "77.1", null, "1.6", null, "24.1", null, "1.7", null, "23.7", null, "1.7", null, "1.5", null, "0.5", null, "10.2", null, "1.1", null, "-999999999.0", "N", "-999999999.0", "N", "23.6", null, "1.6", null, "16.6", null, "1.5", null, "40.2", null, "1.9", null, "20.8", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "8.0", null, "1.3", null, "29.2", null, "2.3", null, "62.8", null, "2.4", null, "06", "37"], ["5001900US0638", "Congressional District 38 (119th Congress), California", "226427", null, "5202", null, "114760", null, "4701", null, "111667", null, "4607", null, "122278", null, "4483", null, "54710", null, "3900", null, "18780", null, "2720", null, "35930", null, "2960", null, "49439", null, "3980", null, "75876", null, "3690", null, "51775", null, "3166", null, "23302", null, "2757", null, "7830", null, "1911", null, "15472", null, "2133", null, "799", null, "578", null, "150551", null, "5759", null, "70503", null, "4285", null, "31408", null, "3226", null, "10950", null, "2297", null, "20458", null, "2309", null, "48640", null, "3894", null, "25304", null, "2882", null, "201123", null, "5521", null, "57109", null, "4305", null, "169318", null, "5616", null, "54000", null, "3338", null, "6484", null, "1462", null, "4523", null, "1305", null, "56479", null, "3537", null, "-999999999", "N", "-999999999", "N", "64001", null, "4091", null, "40687", null, "2755", null, "123721", null, "4557", null, "35217", null, "2557", null, "101415", null, "3653", null, "176988", null, "4274", null, "21146", null, "2417", null, "53299", null, "3892", null, "102543", null, "4155", null, "-888888888", "(X)", "-888888888", "(X)", "50.7", null, "1.7", null, "49.3", null, "1.7", null, "54.0", null, "1.9", null, "24.2", null, "1.7", null, "8.3", null, "1.2", null, "15.9", null, "1.3", null, "21.8", null, "1.5", null, "33.5", null, "1.7", null, "22.9", null, "1.4", null, "10.3", null, "1.2", null, "3.5", null, "0.8", null, "6.8", null, "1.0", null, "0.4", null, "0.3", null, "66.5", null, "1.7", null, "31.1", null, "1.8", null, "13.9", null, "1.4", null, "4.8", null, "1.0", null, "9.0", null, "1.0", null, "21.5", null, "1.5", null, "11.2", null, "1.3", null, "88.8", null, "1.3", null, "25.2", null, "1.8", null, "74.8", null, "1.8", null, "23.8", null, "1.4", null, "2.9", null, "0.6", null, "2.0", null, "0.6", null, "24.9", null, "1.5", null, "-999999999.0", "N", "-999999999.0", "N", "28.3", null, "1.6", null, "18.0", null, "1.2", null, "54.6", null, "1.6", null, "15.6", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.9", null, "1.3", null, "30.1", null, "2.0", null, "57.9", null, "2.0", null, "27875", null, "2915", null, "17215", null, "2146", null, "10660", null, "1874", null, "10471", null, "1679", null, "11994", null, "2024", null, "3966", null, "1158", null, "8028", null, "1493", null, "5410", null, "1287", null, "12194", null, "2044", null, "5831", null, "1375", null, "6006", null, "1497", null, "1790", null, "850", null, "4216", null, "1184", null, "357", null, "353", null, "15681", null, "2295", null, "4640", null, "1102", null, "5988", null, "1467", null, "2176", null, "1036", null, "3812", null, "945", null, "5053", null, "1206", null, "8811", null, "1799", null, "19064", null, "2580", null, "12585", null, "1960", null, "15290", null, "2124", null, "5782", null, "1401", null, "547", null, "465", null, "548", null, "348", null, "5449", null, "1228", null, "-999999999", "N", "-999999999", "N", "10120", null, "1862", null, "5376", null, "1464", null, "17956", null, "2461", null, "3540", null, "1055", null, "56175", null, "15864", null, "22465", null, "2671", null, "3918", null, "1068", null, "8825", null, "1849", null, "9722", null, "1616", null, "12.3", null, "1.2", null, "61.8", null, "5.0", null, "38.2", null, "5.0", null, "37.6", null, "4.7", null, "43.0", null, "5.5", null, "14.2", null, "3.7", null, "28.8", null, "4.6", null, "19.4", null, "4.2", null, "43.7", null, "5.8", null, "20.9", null, "4.5", null, "21.5", null, "4.8", null, "6.4", null, "2.8", null, "15.1", null, "4.1", null, "1.3", null, "1.3", null, "56.3", null, "5.8", null, "16.6", null, "3.6", null, "21.5", null, "4.7", null, "7.8", null, "3.6", null, "13.7", null, "3.0", null, "18.1", null, "3.9", null, "31.6", null, "5.7", null, "68.4", null, "5.7", null, "45.1", null, "5.2", null, "54.9", null, "5.2", null, "20.7", null, "4.7", null, "2.0", null, "1.7", null, "2.0", null, "1.2", null, "19.5", null, "4.2", null, "-999999999.0", "N", "-999999999.0", "N", "36.3", null, "5.2", null, "19.3", null, "4.8", null, "64.4", null, "4.9", null, "12.7", null, "3.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.4", null, "4.2", null, "39.3", null, "6.2", null, "43.3", null, "6.0", null, "198552", null, "5147", null, "97545", null, "4387", null, "101007", null, "4787", null, "111807", null, "4087", null, "42716", null, "3569", null, "14814", null, "2494", null, "27902", null, "2812", null, "44029", null, "3686", null, "63682", null, "3308", null, "45944", null, "2758", null, "17296", null, "2326", null, "6040", null, "1632", null, "11256", null, "2005", null, "442", null, "463", null, "134870", null, "5622", null, "65863", null, "4060", null, "25420", null, "2992", null, "8774", null, "1942", null, "16646", null, "2168", null, "43587", null, "3608", null, "16493", null, "2274", null, "182059", null, "5244", null, "44524", null, "3816", null, "154028", null, "5409", null, "48218", null, "2985", null, "5937", null, "1412", null, "3975", null, "1269", null, "51030", null, "3308", null, "-999999999", "N", "-999999999", "N", "53881", null, "3729", null, "35311", null, "2576", null, "105765", null, "4515", null, "31677", null, "2370", null, "107465", null, "4333", null, "154523", null, "4281", null, "17228", null, "2112", null, "44474", null, "3305", null, "92821", null, "3902", null, "87.7", null, "1.2", null, "49.1", null, "1.9", null, "50.9", null, "1.9", null, "56.3", null, "1.9", null, "21.5", null, "1.7", null, "7.5", null, "1.2", null, "14.1", null, "1.4", null, "22.2", null, "1.6", null, "32.1", null, "1.7", null, "23.1", null, "1.4", null, "8.7", null, "1.2", null, "3.0", null, "0.8", null, "5.7", null, "1.0", null, "0.2", null, "0.2", null, "67.9", null, "1.7", null, "33.2", null, "1.9", null, "12.8", null, "1.4", null, "4.4", null, "1.0", null, "8.4", null, "1.0", null, "22.0", null, "1.6", null, "8.3", null, "1.1", null, "91.7", null, "1.1", null, "22.4", null, "1.8", null, "77.6", null, "1.8", null, "24.3", null, "1.4", null, "3.0", null, "0.7", null, "2.0", null, "0.6", null, "25.7", null, "1.6", null, "-999999999.0", "N", "-999999999.0", "N", "27.1", null, "1.7", null, "17.8", null, "1.3", null, "53.3", null, "1.8", null, "16.0", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.1", null, "1.3", null, "28.8", null, "2.0", null, "60.1", null, "1.9", null, "06", "38"], ["5001900US0639", "Congressional District 39 (119th Congress), California", "220925", null, "5576", null, "87616", null, "4586", null, "133309", null, "6183", null, "108927", null, "4823", null, "60638", null, "4217", null, "20562", null, "2826", null, "40076", null, "4113", null, "51360", null, "4472", null, "89566", null, "4405", null, "54628", null, "3521", null, "33259", null, "3709", null, "10673", null, "2112", null, "22586", null, "3066", null, "1679", null, "953", null, "131359", null, "5553", null, "54299", null, "3731", null, "27379", null, "3109", null, "9889", null, "2075", null, "17490", null, "2434", null, "49681", null, "4407", null, "24917", null, "2553", null, "196008", null, "5338", null, "69124", null, "4049", null, "151801", null, "6782", null, "67654", null, "4684", null, "21045", null, "2790", null, "4791", null, "1148", null, "14718", null, "2141", null, "-999999999", "N", "-999999999", "N", "67262", null, "3731", null, "44957", null, "3748", null, "124967", null, "4335", null, "52846", null, "4403", null, "91174", null, "1878", null, "169565", null, "4526", null, "15663", null, "2214", null, "50279", null, "4393", null, "103623", null, "4768", null, "-888888888", "(X)", "-888888888", "(X)", "39.7", null, "2.0", null, "60.3", null, "2.0", null, "49.3", null, "2.1", null, "27.4", null, "1.8", null, "9.3", null, "1.3", null, "18.1", null, "1.8", null, "23.2", null, "1.7", null, "40.5", null, "1.8", null, "24.7", null, "1.6", null, "15.1", null, "1.6", null, "4.8", null, "0.9", null, "10.2", null, "1.3", null, "0.8", null, "0.4", null, "59.5", null, "1.8", null, "24.6", null, "1.6", null, "12.4", null, "1.4", null, "4.5", null, "0.9", null, "7.9", null, "1.1", null, "22.5", null, "1.7", null, "11.3", null, "1.1", null, "88.7", null, "1.1", null, "31.3", null, "2.0", null, "68.7", null, "2.0", null, "30.6", null, "1.9", null, "9.5", null, "1.2", null, "2.2", null, "0.5", null, "6.7", null, "1.0", null, "-999999999.0", "N", "-999999999.0", "N", "30.4", null, "1.6", null, "20.3", null, "1.6", null, "56.6", null, "1.6", null, "23.9", null, "1.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "9.2", null, "1.3", null, "29.7", null, "2.4", null, "61.1", null, "2.4", null, "34531", null, "3361", null, "15731", null, "2053", null, "18800", null, "2927", null, "11932", null, "1959", null, "16304", null, "2413", null, "4017", null, "1320", null, "12287", null, "2177", null, "6295", null, "1649", null, "18653", null, "2805", null, "7895", null, "1684", null, "10491", null, "2069", null, "2961", null, "1268", null, "7530", null, "1756", null, "267", null, "326", null, "15878", null, "2087", null, "4037", null, "1218", null, "5813", null, "1305", null, "1056", null, "484", null, "4757", null, "1255", null, "6028", null, "1639", null, "8759", null, "1680", null, "25772", null, "2919", null, "17705", null, "2417", null, "16826", null, "2440", null, "8981", null, "1935", null, "4141", null, "1148", null, "1140", null, "607", null, "2182", null, "859", null, "-999999999", "N", "-999999999", "N", "9603", null, "1631", null, "8399", null, "1601", null, "19564", null, "2509", null, "6975", null, "1663", null, "62483", null, "8061", null, "28236", null, "3165", null, "4269", null, "1358", null, "9082", null, "1855", null, "14885", null, "2263", null, "15.6", null, "1.6", null, "45.6", null, "5.3", null, "54.4", null, "5.3", null, "34.6", null, "4.8", null, "47.2", null, "4.9", null, "11.6", null, "3.6", null, "35.6", null, "5.1", null, "18.2", null, "4.5", null, "54.0", null, "5.2", null, "22.9", null, "4.3", null, "30.4", null, "4.5", null, "8.6", null, "3.5", null, "21.8", null, "4.2", null, "0.8", null, "0.9", null, "46.0", null, "5.2", null, "11.7", null, "3.5", null, "16.8", null, "3.7", null, "3.1", null, "1.4", null, "13.8", null, "3.6", null, "17.5", null, "4.4", null, "25.4", null, "4.2", null, "74.6", null, "4.2", null, "51.3", null, "5.1", null, "48.7", null, "5.1", null, "26.0", null, "4.9", null, "12.0", null, "3.0", null, "3.3", null, "1.8", null, "6.3", null, "2.5", null, "-999999999.0", "N", "-999999999.0", "N", "27.8", null, "3.9", null, "24.3", null, "4.1", null, "56.7", null, "4.6", null, "20.2", null, "4.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.1", null, "4.5", null, "32.2", null, "5.6", null, "52.7", null, "5.3", null, "186394", null, "6419", null, "71885", null, "4938", null, "114509", null, "6304", null, "96995", null, "4830", null, "44334", null, "3643", null, "16545", null, "2480", null, "27789", null, "3370", null, "45065", null, "4120", null, "70913", null, "3986", null, "46733", null, "3394", null, "22768", null, "2857", null, "7712", null, "1986", null, "15056", null, "2386", null, "1412", null, "835", null, "115481", null, "5492", null, "50262", null, "3661", null, "21566", null, "2923", null, "8833", null, "1955", null, "12733", null, "2277", null, "43653", null, "4124", null, "16158", null, "1983", null, "170236", null, "6133", null, "51419", null, "4194", null, "134975", null, "6507", null, "58673", null, "4407", null, "16904", null, "2676", null, "3651", null, "1061", null, "12536", null, "2024", null, "-999999999", "N", "-999999999", "N", "57659", null, "3756", null, "36558", null, "3327", null, "105403", null, "4452", null, "45871", null, "4142", null, "95512", null, "5043", null, "141329", null, "5023", null, "11394", null, "1852", null, "41197", null, "3861", null, "88738", null, "4644", null, "84.4", null, "1.6", null, "38.6", null, "2.4", null, "61.4", null, "2.4", null, "52.0", null, "2.3", null, "23.8", null, "1.8", null, "8.9", null, "1.3", null, "14.9", null, "1.7", null, "24.2", null, "1.8", null, "38.0", null, "1.8", null, "25.1", null, "1.7", null, "12.2", null, "1.5", null, "4.1", null, "1.1", null, "8.1", null, "1.2", null, "0.8", null, "0.4", null, "62.0", null, "1.8", null, "27.0", null, "1.9", null, "11.6", null, "1.5", null, "4.7", null, "1.0", null, "6.8", null, "1.2", null, "23.4", null, "1.8", null, "8.7", null, "1.0", null, "91.3", null, "1.0", null, "27.6", null, "2.2", null, "72.4", null, "2.2", null, "31.5", null, "2.0", null, "9.1", null, "1.4", null, "2.0", null, "0.6", null, "6.7", null, "1.1", null, "-999999999.0", "N", "-999999999.0", "N", "30.9", null, "1.8", null, "19.6", null, "1.6", null, "56.5", null, "1.8", null, "24.6", null, "1.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "8.1", null, "1.3", null, "29.1", null, "2.4", null, "62.8", null, "2.6", null, "06", "39"], ["5001900US0640", "Congressional District 40 (119th Congress), California", "267662", null, "5434", null, "132823", null, "5262", null, "134839", null, "5509", null, "156312", null, "4822", null, "40837", null, "3302", null, "14332", null, "2270", null, "26505", null, "2507", null, "70513", null, "5111", null, "79341", null, "4282", null, "62429", null, "3921", null, "16592", null, "2256", null, "5698", null, "1439", null, "10894", null, "1631", null, "320", null, "303", null, "188321", null, "6831", null, "93883", null, "4711", null, "24245", null, "2939", null, "8634", null, "1925", null, "15611", null, "2062", null, "70193", null, "5121", null, "19727", null, "2809", null, "247935", null, "5632", null, "61934", null, "4576", null, "205728", null, "6128", null, "154620", null, "5784", null, "4915", null, "1406", null, "1880", null, "763", null, "51768", null, "4009", null, "-999999999", "N", "-999999999", "N", "21323", null, "3073", null, "33004", null, "3099", null, "54849", null, "3877", null, "144336", null, "5279", null, "134956", null, "3975", null, "197149", null, "4842", null, "25694", null, "2714", null, "53323", null, "4628", null, "118132", null, "4942", null, "-888888888", "(X)", "-888888888", "(X)", "49.6", null, "1.7", null, "50.4", null, "1.7", null, "58.4", null, "1.8", null, "15.3", null, "1.2", null, "5.4", null, "0.8", null, "9.9", null, "0.9", null, "26.3", null, "1.7", null, "29.6", null, "1.7", null, "23.3", null, "1.5", null, "6.2", null, "0.8", null, "2.1", null, "0.5", null, "4.1", null, "0.6", null, "0.1", null, "0.1", null, "70.4", null, "1.7", null, "35.1", null, "1.6", null, "9.1", null, "1.1", null, "3.2", null, "0.7", null, "5.8", null, "0.8", null, "26.2", null, "1.7", null, "7.4", null, "1.0", null, "92.6", null, "1.0", null, "23.1", null, "1.7", null, "76.9", null, "1.7", null, "57.8", null, "1.6", null, "1.8", null, "0.5", null, "0.7", null, "0.3", null, "19.3", null, "1.5", null, "-999999999.0", "N", "-999999999.0", "N", "8.0", null, "1.2", null, "12.3", null, "1.1", null, "20.5", null, "1.4", null, "53.9", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.0", null, "1.4", null, "27.0", null, "2.1", null, "59.9", null, "2.2", null, "17571", null, "2313", null, "9135", null, "1643", null, "8436", null, "1725", null, "7856", null, "1621", null, "6380", null, "1447", null, "1752", null, "892", null, "4628", null, "1141", null, "3335", null, "991", null, "7335", null, "1659", null, "4403", null, "1301", null, "2889", null, "1062", null, "863", null, "632", null, "2026", null, "828", null, "43", null, "74", null, "10236", null, "2064", null, "3453", null, "1182", null, "3491", null, "1099", null, "889", null, "609", null, "2602", null, "974", null, "3292", null, "989", null, "4136", null, "1306", null, "13435", null, "2081", null, "9206", null, "1816", null, "8365", null, "1722", null, "6836", null, "1434", null, "671", null, "524", null, "248", null, "385", null, "3630", null, "1205", null, "-999999999", "N", "-999999999", "N", "3436", null, "1236", null, "2750", null, "1120", null, "5898", null, "1476", null, "6492", null, "1434", null, "81719", null, "19418", null, "14236", null, "2025", null, "1391", null, "748", null, "4159", null, "1268", null, "8686", null, "1538", null, "6.6", null, "0.9", null, "52.0", null, "7.0", null, "48.0", null, "7.0", null, "44.7", null, "7.0", null, "36.3", null, "7.0", null, "10.0", null, "4.6", null, "26.3", null, "6.3", null, "19.0", null, "4.9", null, "41.7", null, "8.2", null, "25.1", null, "6.9", null, "16.4", null, "5.7", null, "4.9", null, "3.5", null, "11.5", null, "4.6", null, "0.2", null, "0.4", null, "58.3", null, "8.2", null, "19.7", null, "6.0", null, "19.9", null, "5.8", null, "5.1", null, "3.3", null, "14.8", null, "5.5", null, "18.7", null, "4.9", null, "23.5", null, "6.8", null, "76.5", null, "6.8", null, "52.4", null, "7.6", null, "47.6", null, "7.6", null, "38.9", null, "6.8", null, "3.8", null, "2.9", null, "1.4", null, "2.2", null, "20.7", null, "6.4", null, "-999999999.0", "N", "-999999999.0", "N", "19.6", null, "6.2", null, "15.7", null, "6.2", null, "33.6", null, "7.3", null, "36.9", null, "6.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "9.8", null, "4.9", null, "29.2", null, "7.5", null, "61.0", null, "8.0", null, "250091", null, "5762", null, "123688", null, "5184", null, "126403", null, "5293", null, "148456", null, "4686", null, "34457", null, "2908", null, "12580", null, "1920", null, "21877", null, "2401", null, "67178", null, "5131", null, "72006", null, "3963", null, "58026", null, "3596", null, "13703", null, "1988", null, "4835", null, "1248", null, "8868", null, "1586", null, "277", null, "290", null, "178085", null, "6757", null, "90430", null, "4444", null, "20754", null, "2687", null, "7745", null, "1704", null, "13009", null, "1872", null, "66901", null, "5136", null, "15591", null, "2367", null, "234500", null, "5949", null, "52728", null, "4234", null, "197363", null, "6020", null, "147784", null, "5822", null, "4244", null, "1371", null, "1632", null, "682", null, "48138", null, "3846", null, "-999999999", "N", "-999999999", "N", "17887", null, "2777", null, "30254", null, "2953", null, "48951", null, "3680", null, "137844", null, "5329", null, "138595", null, "3152", null, "182913", null, "4993", null, "24303", null, "2664", null, "49164", null, "4317", null, "109446", null, "4747", null, "93.4", null, "0.9", null, "49.5", null, "1.7", null, "50.5", null, "1.7", null, "59.4", null, "1.7", null, "13.8", null, "1.1", null, "5.0", null, "0.8", null, "8.7", null, "0.9", null, "26.9", null, "1.8", null, "28.8", null, "1.7", null, "23.2", null, "1.5", null, "5.5", null, "0.8", null, "1.9", null, "0.5", null, "3.5", null, "0.6", null, "0.1", null, "0.1", null, "71.2", null, "1.7", null, "36.2", null, "1.6", null, "8.3", null, "1.1", null, "3.1", null, "0.7", null, "5.2", null, "0.7", null, "26.8", null, "1.8", null, "6.2", null, "0.9", null, "93.8", null, "0.9", null, "21.1", null, "1.6", null, "78.9", null, "1.6", null, "59.1", null, "1.7", null, "1.7", null, "0.5", null, "0.7", null, "0.3", null, "19.2", null, "1.5", null, "-999999999.0", "N", "-999999999.0", "N", "7.2", null, "1.1", null, "12.1", null, "1.2", null, "19.6", null, "1.4", null, "55.1", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.3", null, "1.5", null, "26.9", null, "2.1", null, "59.8", null, "2.1", null, "06", "40"], ["5001900US0641", "Congressional District 41 (119th Congress), California", "279737", null, "5470", null, "143677", null, "5162", null, "136060", null, "4852", null, "158077", null, "5134", null, "43927", null, "3480", null, "15442", null, "2220", null, "28485", null, "2828", null, "77733", null, "4705", null, "90051", null, "4885", null, "65935", null, "4777", null, "23537", null, "2804", null, "8858", null, "1904", null, "14679", null, "2096", null, "579", null, "446", null, "189686", null, "6815", null, "92142", null, "4891", null, "20390", null, "2796", null, "6584", null, "1610", null, "13806", null, "2129", null, "77154", null, "4692", null, "23755", null, "2551", null, "255982", null, "5666", null, "83849", null, "5342", null, "195888", null, "5295", null, "155807", null, "5630", null, "16414", null, "2249", null, "2999", null, "1194", null, "21120", null, "2304", null, "-999999999", "N", "-999999999", "N", "36720", null, "3890", null, "46043", null, "3824", null, "87956", null, "4063", null, "143617", null, "5182", null, "101842", null, "2819", null, "202004", null, "4637", null, "33961", null, "2541", null, "64004", null, "4868", null, "104039", null, "5327", null, "-888888888", "(X)", "-888888888", "(X)", "51.4", null, "1.5", null, "48.6", null, "1.5", null, "56.5", null, "1.7", null, "15.7", null, "1.2", null, "5.5", null, "0.8", null, "10.2", null, "1.0", null, "27.8", null, "1.4", null, "32.2", null, "1.8", null, "23.6", null, "1.7", null, "8.4", null, "1.0", null, "3.2", null, "0.7", null, "5.2", null, "0.7", null, "0.2", null, "0.2", null, "67.8", null, "1.8", null, "32.9", null, "1.6", null, "7.3", null, "1.0", null, "2.4", null, "0.6", null, "4.9", null, "0.8", null, "27.6", null, "1.4", null, "8.5", null, "0.9", null, "91.5", null, "0.9", null, "30.0", null, "1.7", null, "70.0", null, "1.7", null, "55.7", null, "1.6", null, "5.9", null, "0.8", null, "1.1", null, "0.4", null, "7.5", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "13.1", null, "1.4", null, "16.5", null, "1.3", null, "31.4", null, "1.4", null, "51.3", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.8", null, "1.3", null, "31.7", null, "2.2", null, "51.5", null, "2.3", null, "26080", null, "3238", null, "13726", null, "2214", null, "12354", null, "2406", null, "11079", null, "2384", null, "8241", null, "1748", null, "2043", null, "818", null, "6198", null, "1451", null, "6760", null, "1476", null, "11995", null, "2021", null, "6617", null, "1608", null, "5078", null, "1469", null, "1566", null, "740", null, "3512", null, "1242", null, "300", null, "342", null, "14085", null, "2268", null, "4462", null, "1453", null, "3163", null, "1041", null, "477", null, "335", null, "2686", null, "1007", null, "6460", null, "1428", null, "5640", null, "1364", null, "20440", null, "2943", null, "14044", null, "2171", null, "12036", null, "2042", null, "12331", null, "2005", null, "2022", null, "1092", null, "498", null, "443", null, "1459", null, "508", null, "-999999999", "N", "-999999999", "N", "4582", null, "1236", null, "4996", null, "1685", null, "10605", null, "2070", null, "11179", null, "1964", null, "59179", null, "12978", null, "19320", null, "2845", null, "2669", null, "968", null, "8162", null, "1633", null, "8489", null, "1963", null, "9.3", null, "1.2", null, "52.6", null, "6.4", null, "47.4", null, "6.4", null, "42.5", null, "6.4", null, "31.6", null, "6.1", null, "7.8", null, "3.1", null, "23.8", null, "5.2", null, "25.9", null, "5.0", null, "46.0", null, "5.4", null, "25.4", null, "4.9", null, "19.5", null, "5.4", null, "6.0", null, "2.8", null, "13.5", null, "4.7", null, "1.2", null, "1.3", null, "54.0", null, "5.4", null, "17.1", null, "4.8", null, "12.1", null, "3.9", null, "1.8", null, "1.3", null, "10.3", null, "3.7", null, "24.8", null, "4.8", null, "21.6", null, "4.7", null, "78.4", null, "4.7", null, "53.8", null, "5.2", null, "46.2", null, "5.2", null, "47.3", null, "6.4", null, "7.8", null, "3.9", null, "1.9", null, "1.7", null, "5.6", null, "1.8", null, "-999999999.0", "N", "-999999999.0", "N", "17.6", null, "4.4", null, "19.2", null, "5.6", null, "40.7", null, "5.5", null, "42.9", null, "6.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.8", null, "4.9", null, "42.2", null, "5.9", null, "43.9", null, "7.0", null, "253657", null, "6105", null, "129951", null, "5260", null, "123706", null, "4907", null, "146998", null, "5248", null, "35686", null, "3425", null, "13399", null, "2296", null, "22287", null, "2690", null, "70973", null, "4602", null, "78056", null, "5157", null, "59318", null, "4774", null, "18459", null, "2840", null, "7292", null, "1859", null, "11167", null, "2050", null, "279", null, "295", null, "175601", null, "6607", null, "87680", null, "4659", null, "17227", null, "2722", null, "6107", null, "1620", null, "11120", null, "2053", null, "70694", null, "4592", null, "18115", null, "2470", null, "235542", null, "6029", null, "69805", null, "5102", null, "183852", null, "5298", null, "143476", null, "5749", null, "14392", null, "2150", null, "2501", null, "1016", null, "19661", null, "2223", null, "-999999999", "N", "-999999999", "N", "32138", null, "3575", null, "41047", null, "3677", null, "77351", null, "4145", null, "132438", null, "5549", null, "105567", null, "4998", null, "182684", null, "5146", null, "31292", null, "2561", null, "55842", null, "4736", null, "95550", null, "4971", null, "90.7", null, "1.2", null, "51.2", null, "1.6", null, "48.8", null, "1.6", null, "58.0", null, "1.8", null, "14.1", null, "1.3", null, "5.3", null, "0.9", null, "8.8", null, "1.0", null, "28.0", null, "1.5", null, "30.8", null, "1.9", null, "23.4", null, "1.9", null, "7.3", null, "1.1", null, "2.9", null, "0.7", null, "4.4", null, "0.8", null, "0.1", null, "0.1", null, "69.2", null, "1.9", null, "34.6", null, "1.7", null, "6.8", null, "1.1", null, "2.4", null, "0.6", null, "4.4", null, "0.8", null, "27.9", null, "1.5", null, "7.1", null, "0.9", null, "92.9", null, "0.9", null, "27.5", null, "1.7", null, "72.5", null, "1.7", null, "56.6", null, "1.7", null, "5.7", null, "0.8", null, "1.0", null, "0.4", null, "7.8", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "12.7", null, "1.4", null, "16.2", null, "1.4", null, "30.5", null, "1.5", null, "52.2", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.1", null, "1.4", null, "30.6", null, "2.3", null, "52.3", null, "2.4", null, "06", "41"], ["5001900US0642", "Congressional District 42 (119th Congress), California", "248572", null, "6285", null, "92694", null, "4316", null, "155878", null, "6115", null, "96337", null, "4069", null, "68396", null, "3903", null, "22429", null, "2785", null, "45967", null, "3813", null, "83839", null, "5792", null, "78807", null, "4450", null, "41960", null, "3377", null, "36381", null, "3680", null, "11028", null, "1953", null, "25353", null, "3281", null, "466", null, "400", null, "169765", null, "7493", null, "54377", null, "3576", null, "32015", null, "2605", null, "11401", null, "1843", null, "20614", null, "2282", null, "83373", null, "5799", null, "36600", null, "3585", null, "211972", null, "5845", null, "57496", null, "3920", null, "191076", null, "6520", null, "85785", null, "3929", null, "16413", null, "2872", null, "4064", null, "1068", null, "21356", null, "2513", null, "573", null, "418", null, "56874", null, "3756", null, "63507", null, "4038", null, "145051", null, "5441", null, "59610", null, "3525", null, "81927", null, "3369", null, "164733", null, "5216", null, "16327", null, "2005", null, "54433", null, "3848", null, "93973", null, "4305", null, "-888888888", "(X)", "-888888888", "(X)", "37.3", null, "1.6", null, "62.7", null, "1.6", null, "38.8", null, "1.5", null, "27.5", null, "1.5", null, "9.0", null, "1.2", null, "18.5", null, "1.4", null, "33.7", null, "1.9", null, "31.7", null, "1.9", null, "16.9", null, "1.4", null, "14.6", null, "1.5", null, "4.4", null, "0.8", null, "10.2", null, "1.3", null, "0.2", null, "0.2", null, "68.3", null, "1.9", null, "21.9", null, "1.3", null, "12.9", null, "1.0", null, "4.6", null, "0.8", null, "8.3", null, "0.9", null, "33.5", null, "1.9", null, "14.7", null, "1.3", null, "85.3", null, "1.3", null, "23.1", null, "1.5", null, "76.9", null, "1.5", null, "34.5", null, "1.4", null, "6.6", null, "1.1", null, "1.6", null, "0.4", null, "8.6", null, "1.0", null, "0.2", null, "0.2", null, "22.9", null, "1.4", null, "25.5", null, "1.4", null, "58.4", null, "1.7", null, "24.0", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "9.9", null, "1.2", null, "33.0", null, "1.9", null, "57.0", null, "2.1", null, "39917", null, "3207", null, "16773", null, "2352", null, "23144", null, "2580", null, "10727", null, "1727", null, "16906", null, "2069", null, "4011", null, "1235", null, "12895", null, "1763", null, "12284", null, "1779", null, "17409", null, "2079", null, "6328", null, "1467", null, "11029", null, "1614", null, "1965", null, "862", null, "9064", null, "1463", null, "52", null, "84", null, "22508", null, "2531", null, "4399", null, "1043", null, "5877", null, "1222", null, "2046", null, "863", null, "3831", null, "1014", null, "12232", null, "1783", null, "15262", null, "2128", null, "24655", null, "2596", null, "17698", null, "2530", null, "22219", null, "2113", null, "7868", null, "1570", null, "2651", null, "1048", null, "662", null, "407", null, "3802", null, "1219", null, "361", null, "365", null, "11312", null, "1844", null, "13261", null, "2052", null, "27840", null, "3009", null, "4173", null, "1323", null, "42094", null, "5535", null, "27633", null, "2675", null, "4229", null, "1065", null, "11097", null, "1811", null, "12307", null, "2085", null, "16.1", null, "1.2", null, "42.0", null, "4.7", null, "58.0", null, "4.7", null, "26.9", null, "3.6", null, "42.4", null, "4.1", null, "10.0", null, "2.9", null, "32.3", null, "4.0", null, "30.8", null, "3.7", null, "43.6", null, "4.1", null, "15.9", null, "3.3", null, "27.6", null, "3.8", null, "4.9", null, "2.1", null, "22.7", null, "3.6", null, "0.1", null, "0.2", null, "56.4", null, "4.1", null, "11.0", null, "2.5", null, "14.7", null, "2.7", null, "5.1", null, "2.0", null, "9.6", null, "2.4", null, "30.6", null, "3.7", null, "38.2", null, "4.3", null, "61.8", null, "4.3", null, "44.3", null, "4.4", null, "55.7", null, "4.4", null, "19.7", null, "3.9", null, "6.6", null, "2.5", null, "1.7", null, "1.0", null, "9.5", null, "3.0", null, "0.9", null, "0.9", null, "28.3", null, "4.0", null, "33.2", null, "4.0", null, "69.7", null, "5.0", null, "10.5", null, "3.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.3", null, "3.5", null, "40.2", null, "5.3", null, "44.5", null, "6.1", null, "208655", null, "5758", null, "75921", null, "4107", null, "132734", null, "5339", null, "85610", null, "3850", null, "51490", null, "3917", null, "18418", null, "2603", null, "33072", null, "3396", null, "71555", null, "5291", null, "61398", null, "4376", null, "35632", null, "3347", null, "25352", null, "3338", null, "9063", null, "1800", null, "16289", null, "2771", null, "414", null, "397", null, "147257", null, "6872", null, "49978", null, "3580", null, "26138", null, "2543", null, "9355", null, "1753", null, "16783", null, "2061", null, "71141", null, "5270", null, "21338", null, "2756", null, "187317", null, "5596", null, "39798", null, "3588", null, "168857", null, "6218", null, "77917", null, "3841", null, "13762", null, "2569", null, "3402", null, "953", null, "17554", null, "2074", null, "212", null, "195", null, "45562", null, "4009", null, "50246", null, "3626", null, "117211", null, "5377", null, "55437", null, "3493", null, "90202", null, "3102", null, "137100", null, "5122", null, "12098", null, "1513", null, "43336", null, "3880", null, "81666", null, "4237", null, "83.9", null, "1.2", null, "36.4", null, "1.8", null, "63.6", null, "1.8", null, "41.0", null, "1.7", null, "24.7", null, "1.8", null, "8.8", null, "1.3", null, "15.9", null, "1.5", null, "34.3", null, "2.1", null, "29.4", null, "2.2", null, "17.1", null, "1.7", null, "12.2", null, "1.6", null, "4.3", null, "0.9", null, "7.8", null, "1.3", null, "0.2", null, "0.2", null, "70.6", null, "2.2", null, "24.0", null, "1.5", null, "12.5", null, "1.2", null, "4.5", null, "0.9", null, "8.0", null, "0.9", null, "34.1", null, "2.1", null, "10.2", null, "1.3", null, "89.8", null, "1.3", null, "19.1", null, "1.7", null, "80.9", null, "1.7", null, "37.3", null, "1.6", null, "6.6", null, "1.2", null, "1.6", null, "0.5", null, "8.4", null, "1.0", null, "0.1", null, "0.1", null, "21.8", null, "1.8", null, "24.1", null, "1.5", null, "56.2", null, "1.9", null, "26.6", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "8.8", null, "1.1", null, "31.6", null, "2.3", null, "59.6", null, "2.5", null, "06", "42"], ["5001900US0643", "Congressional District 43 (119th Congress), California", "235874", null, "6651", null, "98619", null, "4919", null, "137255", null, "5911", null, "92935", null, "4331", null, "72329", null, "5038", null, "21057", null, "3103", null, "51272", null, "4222", null, "70610", null, "5892", null, "82584", null, "4145", null, "44537", null, "3017", null, "37176", null, "3758", null, "11439", null, "2528", null, "25737", null, "3167", null, "871", null, "536", null, "153290", null, "7679", null, "48398", null, "3790", null, "35153", null, "3329", null, "9618", null, "1908", null, "25535", null, "2810", null, "69739", null, "5930", null, "40008", null, "3625", null, "195866", null, "6791", null, "76843", null, "4920", null, "159031", null, "6176", null, "31024", null, "2464", null, "67424", null, "5389", null, "3282", null, "925", null, "25879", null, "2802", null, "-999999999", "N", "-999999999", "N", "66553", null, "3710", null, "40930", null, "3473", null, "114797", null, "4558", null, "21687", null, "2334", null, "75336", null, "3222", null, "165264", null, "4583", null, "16826", null, "2025", null, "56663", null, "4394", null, "91775", null, "4448", null, "-888888888", "(X)", "-888888888", "(X)", "41.8", null, "1.8", null, "58.2", null, "1.8", null, "39.4", null, "1.9", null, "30.7", null, "2.1", null, "8.9", null, "1.3", null, "21.7", null, "1.8", null, "29.9", null, "2.0", null, "35.0", null, "2.0", null, "18.9", null, "1.4", null, "15.8", null, "1.6", null, "4.8", null, "1.1", null, "10.9", null, "1.3", null, "0.4", null, "0.2", null, "65.0", null, "2.0", null, "20.5", null, "1.5", null, "14.9", null, "1.4", null, "4.1", null, "0.8", null, "10.8", null, "1.2", null, "29.6", null, "2.0", null, "17.0", null, "1.5", null, "83.0", null, "1.5", null, "32.6", null, "1.9", null, "67.4", null, "1.9", null, "13.2", null, "1.0", null, "28.6", null, "1.9", null, "1.4", null, "0.4", null, "11.0", null, "1.1", null, "-999999999.0", "N", "-999999999.0", "N", "28.2", null, "1.6", null, "17.4", null, "1.5", null, "48.7", null, "2.1", null, "9.2", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.2", null, "1.2", null, "34.3", null, "2.4", null, "55.5", null, "2.4", null, "50861", null, "4490", null, "20834", null, "2801", null, "30027", null, "3661", null, "14220", null, "2006", null, "23649", null, "2996", null, "5569", null, "1358", null, "18080", null, "2508", null, "12992", null, "2184", null, "23802", null, "3161", null, "8160", null, "1605", null, "15297", null, "2528", null, "3511", null, "1243", null, "11786", null, "1959", null, "345", null, "227", null, "27059", null, "3595", null, "6060", null, "1272", null, "8352", null, "1863", null, "2058", null, "925", null, "6294", null, "1596", null, "12647", null, "2180", null, "18083", null, "2830", null, "32778", null, "3529", null, "23682", null, "2998", null, "27179", null, "3209", null, "4024", null, "1030", null, "19883", null, "2708", null, "773", null, "473", null, "2287", null, "756", null, "-999999999", "N", "-999999999", "N", "14706", null, "2270", null, "8929", null, "2249", null, "25248", null, "3350", null, "1686", null, "718", null, "41885", null, "4414", null, "37869", null, "3747", null, "5496", null, "1165", null, "17855", null, "2829", null, "14518", null, "2239", null, "21.6", null, "1.9", null, "41.0", null, "4.5", null, "59.0", null, "4.5", null, "28.0", null, "3.4", null, "46.5", null, "4.0", null, "10.9", null, "2.3", null, "35.5", null, "3.9", null, "25.5", null, "3.6", null, "46.8", null, "5.0", null, "16.0", null, "2.9", null, "30.1", null, "4.2", null, "6.9", null, "2.3", null, "23.2", null, "3.5", null, "0.7", null, "0.5", null, "53.2", null, "5.0", null, "11.9", null, "2.3", null, "16.4", null, "3.3", null, "4.0", null, "1.8", null, "12.4", null, "2.8", null, "24.9", null, "3.5", null, "35.6", null, "4.3", null, "64.4", null, "4.3", null, "46.6", null, "4.2", null, "53.4", null, "4.2", null, "7.9", null, "2.0", null, "39.1", null, "4.4", null, "1.5", null, "1.0", null, "4.5", null, "1.5", null, "-999999999.0", "N", "-999999999.0", "N", "28.9", null, "3.6", null, "17.6", null, "3.7", null, "49.6", null, "4.1", null, "3.3", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.5", null, "3.2", null, "47.1", null, "5.0", null, "38.3", null, "4.6", null, "185013", null, "7127", null, "77785", null, "4451", null, "107228", null, "6040", null, "78715", null, "4362", null, "48680", null, "4606", null, "15488", null, "2710", null, "33192", null, "3688", null, "57618", null, "5327", null, "58782", null, "4001", null, "36377", null, "3172", null, "21879", null, "2977", null, "7928", null, "2064", null, "13951", null, "2268", null, "526", null, "472", null, "126231", null, "6972", null, "42338", null, "3591", null, "26801", null, "3121", null, "7560", null, "1711", null, "19241", null, "2644", null, "57092", null, "5389", null, "21925", null, "2644", null, "163088", null, "6917", null, "53161", null, "4063", null, "131852", null, "6417", null, "27000", null, "2345", null, "47541", null, "4619", null, "2509", null, "793", null, "23592", null, "2717", null, "-999999999", "N", "-999999999", "N", "51847", null, "3670", null, "32001", null, "3407", null, "89549", null, "5050", null, "20001", null, "2273", null, "85076", null, "4399", null, "127395", null, "5223", null, "11330", null, "1658", null, "38808", null, "3988", null, "77257", null, "4390", null, "78.4", null, "1.9", null, "42.0", null, "2.1", null, "58.0", null, "2.1", null, "42.5", null, "2.3", null, "26.3", null, "2.3", null, "8.4", null, "1.4", null, "17.9", null, "1.9", null, "31.1", null, "2.2", null, "31.8", null, "2.1", null, "19.7", null, "1.8", null, "11.8", null, "1.5", null, "4.3", null, "1.1", null, "7.5", null, "1.2", null, "0.3", null, "0.3", null, "68.2", null, "2.1", null, "22.9", null, "1.8", null, "14.5", null, "1.6", null, "4.1", null, "0.9", null, "10.4", null, "1.4", null, "30.9", null, "2.3", null, "11.9", null, "1.4", null, "88.1", null, "1.4", null, "28.7", null, "2.0", null, "71.3", null, "2.0", null, "14.6", null, "1.2", null, "25.7", null, "2.1", null, "1.4", null, "0.4", null, "12.8", null, "1.3", null, "-999999999.0", "N", "-999999999.0", "N", "28.0", null, "1.9", null, "17.3", null, "1.7", null, "48.4", null, "2.5", null, "10.8", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "8.9", null, "1.3", null, "30.5", null, "2.7", null, "60.6", null, "2.8", null, "06", "43"], ["5001900US0644", "Congressional District 44 (119th Congress), California", "236866", null, "6157", null, "110284", null, "5103", null, "126582", null, "5091", null, "110423", null, "5321", null, "62121", null, "4148", null, "17712", null, "2301", null, "44409", null, "3678", null, "64322", null, "4847", null, "78957", null, "4294", null, "46528", null, "3424", null, "31825", null, "3494", null, "8321", null, "1853", null, "23504", null, "2851", null, "604", null, "419", null, "157909", null, "6439", null, "63895", null, "4307", null, "30296", null, "3128", null, "9391", null, "1615", null, "20905", null, "2737", null, "63718", null, "4876", null, "31976", null, "2933", null, "204890", null, "5777", null, "68020", null, "4404", null, "168846", null, "5648", null, "66685", null, "4950", null, "32992", null, "3492", null, "6042", null, "1552", null, "29673", null, "2789", null, "1470", null, "629", null, "62686", null, "4166", null, "37318", null, "3148", null, "123811", null, "4228", null, "42732", null, "3616", null, "90834", null, "2839", null, "172544", null, "5583", null, "18036", null, "2502", null, "50975", null, "3885", null, "103533", null, "4836", null, "-888888888", "(X)", "-888888888", "(X)", "46.6", null, "1.7", null, "53.4", null, "1.7", null, "46.6", null, "2.0", null, "26.2", null, "1.6", null, "7.5", null, "1.0", null, "18.7", null, "1.5", null, "27.2", null, "1.8", null, "33.3", null, "1.8", null, "19.6", null, "1.4", null, "13.4", null, "1.5", null, "3.5", null, "0.8", null, "9.9", null, "1.2", null, "0.3", null, "0.2", null, "66.7", null, "1.8", null, "27.0", null, "1.7", null, "12.8", null, "1.3", null, "4.0", null, "0.7", null, "8.8", null, "1.1", null, "26.9", null, "1.8", null, "13.5", null, "1.2", null, "86.5", null, "1.2", null, "28.7", null, "1.6", null, "71.3", null, "1.6", null, "28.2", null, "1.9", null, "13.9", null, "1.4", null, "2.6", null, "0.7", null, "12.5", null, "1.1", null, "0.6", null, "0.3", null, "26.5", null, "1.7", null, "15.8", null, "1.4", null, "52.3", null, "1.6", null, "18.0", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.5", null, "1.4", null, "29.5", null, "2.0", null, "60.0", null, "2.3", null, "42991", null, "3534", null, "22113", null, "2360", null, "20878", null, "2737", null, "11708", null, "1708", null, "19853", null, "2393", null, "4272", null, "1180", null, "15581", null, "2197", null, "11430", null, "1978", null, "18951", null, "2267", null, "6771", null, "1226", null, "12025", null, "2081", null, "2070", null, "846", null, "9955", null, "1915", null, "155", null, "199", null, "24040", null, "2685", null, "4937", null, "1227", null, "7828", null, "1536", null, "2202", null, "858", null, "5626", null, "1294", null, "11275", null, "1970", null, "15440", null, "1969", null, "27551", null, "2935", null, "18528", null, "2666", null, "24463", null, "3006", null, "9565", null, "1939", null, "6997", null, "1735", null, "1307", null, "700", null, "4920", null, "1283", null, "447", null, "362", null, "11535", null, "1798", null, "8220", null, "1612", null, "24529", null, "2826", null, "4599", null, "1324", null, "42532", null, "3683", null, "31561", null, "2755", null, "5081", null, "1295", null, "12339", null, "2074", null, "14141", null, "1979", null, "18.1", null, "1.4", null, "51.4", null, "4.3", null, "48.6", null, "4.3", null, "27.2", null, "3.5", null, "46.2", null, "4.4", null, "9.9", null, "2.6", null, "36.2", null, "4.5", null, "26.6", null, "3.6", null, "44.1", null, "4.0", null, "15.7", null, "2.7", null, "28.0", null, "4.2", null, "4.8", null, "1.9", null, "23.2", null, "4.1", null, "0.4", null, "0.5", null, "55.9", null, "4.0", null, "11.5", null, "2.8", null, "18.2", null, "3.5", null, "5.1", null, "2.0", null, "13.1", null, "3.0", null, "26.2", null, "3.6", null, "35.9", null, "3.8", null, "64.1", null, "3.8", null, "43.1", null, "5.1", null, "56.9", null, "5.1", null, "22.2", null, "4.4", null, "16.3", null, "3.6", null, "3.0", null, "1.6", null, "11.4", null, "2.9", null, "1.0", null, "0.9", null, "26.8", null, "3.3", null, "19.1", null, "3.3", null, "57.1", null, "4.8", null, "10.7", null, "3.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.1", null, "4.0", null, "39.1", null, "5.2", null, "44.8", null, "5.2", null, "193875", null, "5947", null, "88171", null, "4668", null, "105704", null, "4950", null, "98715", null, "5083", null, "42268", null, "3178", null, "13440", null, "1712", null, "28828", null, "2778", null, "52892", null, "4049", null, "60006", null, "3745", null, "39757", null, "3003", null, "19800", null, "2546", null, "6251", null, "1497", null, "13549", null, "2094", null, "449", null, "364", null, "133869", null, "5750", null, "58958", null, "4128", null, "22468", null, "2578", null, "7189", null, "1483", null, "15279", null, "2256", null, "52443", null, "4112", null, "16536", null, "2247", null, "177339", null, "5756", null, "49492", null, "3749", null, "144383", null, "5288", null, "57120", null, "4203", null, "25995", null, "3086", null, "4735", null, "1311", null, "24753", null, "2375", null, "1023", null, "553", null, "51151", null, "4207", null, "29098", null, "2722", null, "99282", null, "4716", null, "38133", null, "3189", null, "99952", null, "4327", null, "140983", null, "5539", null, "12955", null, "1966", null, "38636", null, "3022", null, "89392", null, "4581", null, "81.9", null, "1.4", null, "45.5", null, "1.9", null, "54.5", null, "1.9", null, "50.9", null, "2.2", null, "21.8", null, "1.5", null, "6.9", null, "0.9", null, "14.9", null, "1.3", null, "27.3", null, "1.9", null, "31.0", null, "1.8", null, "20.5", null, "1.5", null, "10.2", null, "1.3", null, "3.2", null, "0.8", null, "7.0", null, "1.1", null, "0.2", null, "0.2", null, "69.0", null, "1.8", null, "30.4", null, "1.9", null, "11.6", null, "1.3", null, "3.7", null, "0.8", null, "7.9", null, "1.1", null, "27.0", null, "1.9", null, "8.5", null, "1.1", null, "91.5", null, "1.1", null, "25.5", null, "1.7", null, "74.5", null, "1.7", null, "29.5", null, "1.9", null, "13.4", null, "1.5", null, "2.4", null, "0.7", null, "12.8", null, "1.2", null, "0.5", null, "0.3", null, "26.4", null, "2.0", null, "15.0", null, "1.4", null, "51.2", null, "1.9", null, "19.7", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "9.2", null, "1.3", null, "27.4", null, "1.8", null, "63.4", null, "2.2", null, "06", "44"], ["5001900US0645", "Congressional District 45 (119th Congress), California", "239227", null, "5358", null, "121766", null, "5262", null, "117461", null, "5191", null, "130428", null, "4861", null, "50550", null, "4315", null, "17085", null, "2563", null, "33465", null, "2955", null, "58249", null, "4181", null, "78324", null, "3779", null, "55186", null, "3684", null, "22374", null, "2669", null, "5678", null, "1324", null, "16696", null, "2610", null, "764", null, "477", null, "160903", null, "6281", null, "75242", null, "4298", null, "28176", null, "3251", null, "11407", null, "2299", null, "16769", null, "2054", null, "57485", null, "4196", null, "25815", null, "3232", null, "213412", null, "5199", null, "65798", null, "3709", null, "173429", null, "5482", null, "80454", null, "4632", null, "5566", null, "1592", null, "2379", null, "952", null, "94083", null, "3720", null, "-999999999", "N", "-999999999", "N", "24391", null, "2632", null, "31658", null, "3030", null, "60135", null, "3581", null, "71731", null, "4202", null, "105531", null, "3350", null, "180978", null, "4624", null, "22906", null, "2438", null, "52499", null, "3741", null, "105573", null, "4249", null, "-888888888", "(X)", "-888888888", "(X)", "50.9", null, "1.9", null, "49.1", null, "1.9", null, "54.5", null, "1.8", null, "21.1", null, "1.8", null, "7.1", null, "1.1", null, "14.0", null, "1.2", null, "24.3", null, "1.5", null, "32.7", null, "1.7", null, "23.1", null, "1.6", null, "9.4", null, "1.1", null, "2.4", null, "0.6", null, "7.0", null, "1.1", null, "0.3", null, "0.2", null, "67.3", null, "1.7", null, "31.5", null, "1.6", null, "11.8", null, "1.3", null, "4.8", null, "1.0", null, "7.0", null, "0.8", null, "24.0", null, "1.5", null, "10.8", null, "1.3", null, "89.2", null, "1.3", null, "27.5", null, "1.5", null, "72.5", null, "1.5", null, "33.6", null, "1.6", null, "2.3", null, "0.7", null, "1.0", null, "0.4", null, "39.3", null, "1.4", null, "-999999999.0", "N", "-999999999.0", "N", "10.2", null, "1.1", null, "13.2", null, "1.2", null, "25.1", null, "1.4", null, "30.0", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.7", null, "1.3", null, "29.0", null, "1.9", null, "58.3", null, "1.9", null, "27307", null, "2865", null, "16057", null, "2105", null, "11250", null, "2088", null, "11196", null, "1450", null, "9572", null, "1874", null, "2175", null, "746", null, "7397", null, "1651", null, "6539", null, "1463", null, "10750", null, "1878", null, "5519", null, "1173", null, "5085", null, "1445", null, "927", null, "360", null, "4158", null, "1395", null, "146", null, "143", null, "16557", null, "2291", null, "5677", null, "1081", null, "4487", null, "1207", null, "1248", null, "586", null, "3239", null, "1021", null, "6393", null, "1446", null, "8921", null, "1754", null, "18386", null, "2175", null, "14882", null, "2014", null, "12425", null, "1774", null, "5731", null, "1477", null, "749", null, "680", null, "412", null, "322", null, "14499", null, "2034", null, "-999999999", "N", "-999999999", "N", "2650", null, "887", null, "3214", null, "900", null, "6346", null, "1501", null, "4980", null, "1378", null, "52158", null, "5654", null, "20768", null, "2404", null, "4041", null, "1190", null, "6404", null, "1575", null, "10323", null, "1561", null, "11.4", null, "1.2", null, "58.8", null, "5.7", null, "41.2", null, "5.7", null, "41.0", null, "4.4", null, "35.1", null, "5.3", null, "8.0", null, "2.7", null, "27.1", null, "4.8", null, "23.9", null, "4.5", null, "39.4", null, "5.4", null, "20.2", null, "4.1", null, "18.6", null, "4.6", null, "3.4", null, "1.3", null, "15.2", null, "4.5", null, "0.5", null, "0.5", null, "60.6", null, "5.4", null, "20.8", null, "3.6", null, "16.4", null, "4.0", null, "4.6", null, "2.1", null, "11.9", null, "3.5", null, "23.4", null, "4.5", null, "32.7", null, "4.9", null, "67.3", null, "4.9", null, "54.5", null, "4.6", null, "45.5", null, "4.6", null, "21.0", null, "4.7", null, "2.7", null, "2.4", null, "1.5", null, "1.2", null, "53.1", null, "5.4", null, "-999999999.0", "N", "-999999999.0", "N", "9.7", null, "3.2", null, "11.8", null, "3.2", null, "23.2", null, "4.8", null, "18.2", null, "4.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "19.5", null, "5.4", null, "30.8", null, "5.7", null, "49.7", null, "6.2", null, "211920", null, "5716", null, "105709", null, "5299", null, "106211", null, "5473", null, "119232", null, "5101", null, "40978", null, "3663", null, "14910", null, "2366", null, "26068", null, "2552", null, "51710", null, "3822", null, "67574", null, "3848", null, "49667", null, "3805", null, "17289", null, "2182", null, "4751", null, "1281", null, "12538", null, "2197", null, "618", null, "474", null, "144346", null, "5985", null, "69565", null, "4225", null, "23689", null, "2871", null, "10159", null, "2135", null, "13530", null, "1849", null, "51092", null, "3840", null, "16894", null, "2481", null, "195026", null, "5483", null, "50916", null, "3314", null, "161004", null, "5738", null, "74723", null, "4370", null, "4817", null, "1555", null, "1967", null, "935", null, "79584", null, "3742", null, "-999999999", "N", "-999999999", "N", "21741", null, "2583", null, "28444", null, "2978", null, "53789", null, "3645", null, "66751", null, "3964", null, "112149", null, "3546", null, "160210", null, "4575", null, "18865", null, "2090", null, "46095", null, "3538", null, "95250", null, "4613", null, "88.6", null, "1.2", null, "49.9", null, "2.2", null, "50.1", null, "2.2", null, "56.3", null, "2.0", null, "19.3", null, "1.7", null, "7.0", null, "1.1", null, "12.3", null, "1.2", null, "24.4", null, "1.5", null, "31.9", null, "1.8", null, "23.4", null, "1.8", null, "8.2", null, "1.0", null, "2.2", null, "0.6", null, "5.9", null, "1.0", null, "0.3", null, "0.2", null, "68.1", null, "1.8", null, "32.8", null, "1.8", null, "11.2", null, "1.4", null, "4.8", null, "1.0", null, "6.4", null, "0.9", null, "24.1", null, "1.5", null, "8.0", null, "1.1", null, "92.0", null, "1.1", null, "24.0", null, "1.5", null, "76.0", null, "1.5", null, "35.3", null, "1.7", null, "2.3", null, "0.7", null, "0.9", null, "0.4", null, "37.6", null, "1.5", null, "-999999999.0", "N", "-999999999.0", "N", "10.3", null, "1.2", null, "13.4", null, "1.4", null, "25.4", null, "1.6", null, "31.5", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.8", null, "1.3", null, "28.8", null, "2.1", null, "59.5", null, "2.2", null, "06", "45"], ["5001900US0646", "Congressional District 46 (119th Congress), California", "225509", null, "4641", null, "90448", null, "4374", null, "135061", null, "5152", null, "109028", null, "4751", null, "60375", null, "4791", null, "23914", null, "3480", null, "36461", null, "3667", null, "56106", null, "4554", null, "85287", null, "4169", null, "51241", null, "3743", null, "33276", null, "3353", null, "12325", null, "2335", null, "20951", null, "3045", null, "770", null, "536", null, "140222", null, "6331", null, "57787", null, "4606", null, "27099", null, "3498", null, "11589", null, "2258", null, "15510", null, "2612", null, "55336", null, "4672", null, "28324", null, "3271", null, "197185", null, "4657", null, "55512", null, "3884", null, "169997", null, "5305", null, "62457", null, "3761", null, "5890", null, "1494", null, "3369", null, "894", null, "41428", null, "3286", null, "-999999999", "N", "-999999999", "N", "56434", null, "3915", null, "55565", null, "4051", null, "124018", null, "4504", null, "47939", null, "3460", null, "90685", null, "3834", null, "169403", null, "4300", null, "14647", null, "1988", null, "47884", null, "4145", null, "106872", null, "4244", null, "-888888888", "(X)", "-888888888", "(X)", "40.1", null, "1.8", null, "59.9", null, "1.8", null, "48.3", null, "2.2", null, "26.8", null, "2.0", null, "10.6", null, "1.5", null, "16.2", null, "1.5", null, "24.9", null, "1.8", null, "37.8", null, "2.0", null, "22.7", null, "1.8", null, "14.8", null, "1.5", null, "5.5", null, "1.0", null, "9.3", null, "1.3", null, "0.3", null, "0.2", null, "62.2", null, "2.0", null, "25.6", null, "2.0", null, "12.0", null, "1.5", null, "5.1", null, "1.0", null, "6.9", null, "1.1", null, "24.5", null, "1.8", null, "12.6", null, "1.4", null, "87.4", null, "1.4", null, "24.6", null, "1.7", null, "75.4", null, "1.7", null, "27.7", null, "1.6", null, "2.6", null, "0.7", null, "1.5", null, "0.4", null, "18.4", null, "1.4", null, "-999999999.0", "N", "-999999999.0", "N", "25.0", null, "1.7", null, "24.6", null, "1.7", null, "55.0", null, "1.8", null, "21.3", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "8.6", null, "1.2", null, "28.3", null, "2.2", null, "63.1", null, "2.1", null, "36396", null, "3927", null, "19205", null, "2839", null, "17191", null, "3092", null, "12817", null, "2064", null, "17653", null, "2827", null, "5596", null, "1571", null, "12057", null, "2331", null, "5926", null, "1305", null, "19309", null, "2968", null, "8122", null, "1724", null, "11187", null, "2330", null, "3106", null, "1335", null, "8081", null, "1891", null, "0", null, "225", null, "17087", null, "2342", null, "4695", null, "1324", null, "6466", null, "1219", null, "2490", null, "870", null, "3976", null, "1094", null, "5926", null, "1305", null, "11509", null, "2496", null, "24887", null, "3068", null, "14971", null, "2249", null, "21425", null, "3118", null, "6725", null, "1618", null, "1038", null, "634", null, "773", null, "402", null, "8655", null, "1545", null, "-999999999", "N", "-999999999", "N", "9058", null, "2272", null, "10147", null, "2100", null, "21707", null, "3557", null, "4089", null, "1027", null, "50329", null, "9182", null, "30470", null, "3560", null, "3774", null, "973", null, "11700", null, "2180", null, "14996", null, "2582", null, "16.1", null, "1.7", null, "52.8", null, "6.2", null, "47.2", null, "6.2", null, "35.2", null, "4.7", null, "48.5", null, "5.1", null, "15.4", null, "4.0", null, "33.1", null, "4.9", null, "16.3", null, "3.2", null, "53.1", null, "4.9", null, "22.3", null, "4.1", null, "30.7", null, "4.9", null, "8.5", null, "3.5", null, "22.2", null, "4.2", null, "0.0", null, "0.6", null, "46.9", null, "4.9", null, "12.9", null, "3.5", null, "17.8", null, "2.9", null, "6.8", null, "2.3", null, "10.9", null, "2.8", null, "16.3", null, "3.2", null, "31.6", null, "5.4", null, "68.4", null, "5.4", null, "41.1", null, "5.0", null, "58.9", null, "5.0", null, "18.5", null, "3.6", null, "2.9", null, "1.7", null, "2.1", null, "1.1", null, "23.8", null, "4.2", null, "-999999999.0", "N", "-999999999.0", "N", "24.9", null, "5.3", null, "27.9", null, "4.8", null, "59.6", null, "5.9", null, "11.2", null, "2.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.4", null, "2.9", null, "38.4", null, "5.4", null, "49.2", null, "6.2", null, "189113", null, "5074", null, "71243", null, "3973", null, "117870", null, "5214", null, "96211", null, "4946", null, "42722", null, "3896", null, "18318", null, "3043", null, "24404", null, "2931", null, "50180", null, "4614", null, "65978", null, "4038", null, "43119", null, "3347", null, "22089", null, "2710", null, "9219", null, "1974", null, "12870", null, "2274", null, "770", null, "536", null, "123135", null, "5913", null, "53092", null, "4523", null, "20633", null, "3115", null, "9099", null, "2048", null, "11534", null, "2323", null, "49410", null, "4722", null, "16815", null, "2621", null, "172298", null, "4760", null, "40541", null, "3245", null, "148572", null, "5442", null, "55732", null, "3515", null, "4852", null, "1340", null, "2596", null, "849", null, "32773", null, "3144", null, "-999999999", "N", "-999999999", "N", "47376", null, "3596", null, "45418", null, "3859", null, "102311", null, "4620", null, "43850", null, "3268", null, "98736", null, "4982", null, "138933", null, "4957", null, "10873", null, "1794", null, "36184", null, "3832", null, "91876", null, "4686", null, "83.9", null, "1.7", null, "37.7", null, "2.0", null, "62.3", null, "2.0", null, "50.9", null, "2.3", null, "22.6", null, "2.0", null, "9.7", null, "1.6", null, "12.9", null, "1.5", null, "26.5", null, "2.2", null, "34.9", null, "2.2", null, "22.8", null, "1.8", null, "11.7", null, "1.4", null, "4.9", null, "1.1", null, "6.8", null, "1.2", null, "0.4", null, "0.3", null, "65.1", null, "2.2", null, "28.1", null, "2.2", null, "10.9", null, "1.7", null, "4.8", null, "1.1", null, "6.1", null, "1.2", null, "26.1", null, "2.2", null, "8.9", null, "1.3", null, "91.1", null, "1.3", null, "21.4", null, "1.7", null, "78.6", null, "1.7", null, "29.5", null, "1.8", null, "2.6", null, "0.7", null, "1.4", null, "0.4", null, "17.3", null, "1.6", null, "-999999999.0", "N", "-999999999.0", "N", "25.1", null, "1.8", null, "24.0", null, "1.9", null, "54.1", null, "2.0", null, "23.2", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "7.8", null, "1.3", null, "26.0", null, "2.6", null, "66.1", null, "2.5", null, "06", "46"], ["5001900US0647", "Congressional District 47 (119th Congress), California", "295761", null, "5443", null, "116966", null, "4655", null, "178795", null, "4758", null, "141822", null, "5423", null, "40560", null, "3956", null, "13832", null, "2620", null, "26728", null, "3225", null, "113379", null, "6888", null, "79748", null, "4537", null, "60266", null, "3582", null, "19153", null, "3164", null, "5641", null, "1653", null, "13512", null, "2818", null, "329", null, "367", null, "216013", null, "8273", null, "81556", null, "4944", null, "21407", null, "2875", null, "8191", null, "2250", null, "13216", null, "1809", null, "113050", null, "6887", null, "25979", null, "2889", null, "269782", null, "5666", null, "54953", null, "4158", null, "240808", null, "4941", null, "172211", null, "6366", null, "5007", null, "1648", null, "1369", null, "687", null, "74446", null, "4023", null, "-999999999", "N", "-999999999", "N", "10136", null, "2088", null, "31496", null, "3834", null, "36809", null, "4000", null, "164301", null, "6258", null, "127773", null, "7435", null, "182382", null, "4400", null, "21213", null, "2665", null, "59902", null, "4332", null, "101267", null, "5067", null, "-888888888", "(X)", "-888888888", "(X)", "39.5", null, "1.3", null, "60.5", null, "1.3", null, "48.0", null, "2.1", null, "13.7", null, "1.3", null, "4.7", null, "0.9", null, "9.0", null, "1.1", null, "38.3", null, "1.8", null, "27.0", null, "1.8", null, "20.4", null, "1.4", null, "6.5", null, "1.1", null, "1.9", null, "0.6", null, "4.6", null, "1.0", null, "0.1", null, "0.1", null, "73.0", null, "1.8", null, "27.6", null, "1.7", null, "7.2", null, "0.9", null, "2.8", null, "0.7", null, "4.5", null, "0.6", null, "38.2", null, "1.8", null, "8.8", null, "1.0", null, "91.2", null, "1.0", null, "18.6", null, "1.3", null, "81.4", null, "1.3", null, "58.2", null, "1.7", null, "1.7", null, "0.6", null, "0.5", null, "0.2", null, "25.2", null, "1.3", null, "-999999999.0", "N", "-999999999.0", "N", "3.4", null, "0.7", null, "10.6", null, "1.3", null, "12.4", null, "1.3", null, "55.6", null, "1.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.6", null, "1.4", null, "32.8", null, "2.4", null, "55.5", null, "2.3", null, "19608", null, "2766", null, "7215", null, "1603", null, "12393", null, "2177", null, "4319", null, "1250", null, "6027", null, "1695", null, "2483", null, "1115", null, "3544", null, "1213", null, "9262", null, "2378", null, "6571", null, "1893", null, "2722", null, "1102", null, "3652", null, "1416", null, "1181", null, "695", null, "2471", null, "1126", null, "197", null, "321", null, "13037", null, "2631", null, "1597", null, "724", null, "2375", null, "1048", null, "1302", null, "877", null, "1073", null, "451", null, "9065", null, "2349", null, "6016", null, "1784", null, "13592", null, "2681", null, "7835", null, "2085", null, "11773", null, "2160", null, "12242", null, "2176", null, "933", null, "763", null, "77", null, "91", null, "2652", null, "1028", null, "-999999999", "N", "-999999999", "N", "822", null, "546", null, "2829", null, "1162", null, "3329", null, "1098", null, "11962", null, "2191", null, "45569", null, "8701", null, "10346", null, "2122", null, "1045", null, "546", null, "5388", null, "1710", null, "3913", null, "1310", null, "6.6", null, "0.9", null, "36.8", null, "6.5", null, "63.2", null, "6.5", null, "22.0", null, "6.1", null, "30.7", null, "7.7", null, "12.7", null, "5.3", null, "18.1", null, "5.9", null, "47.2", null, "9.2", null, "33.5", null, "8.8", null, "13.9", null, "5.5", null, "18.6", null, "6.7", null, "6.0", null, "3.4", null, "12.6", null, "5.5", null, "1.0", null, "1.6", null, "66.5", null, "8.8", null, "8.1", null, "3.6", null, "12.1", null, "5.2", null, "6.6", null, "4.4", null, "5.5", null, "2.3", null, "46.2", null, "9.2", null, "30.7", null, "8.6", null, "69.3", null, "8.6", null, "40.0", null, "8.3", null, "60.0", null, "8.3", null, "62.4", null, "7.8", null, "4.8", null, "3.8", null, "0.4", null, "0.5", null, "13.5", null, "4.9", null, "-999999999.0", "N", "-999999999.0", "N", "4.2", null, "2.8", null, "14.4", null, "5.1", null, "17.0", null, "4.9", null, "61.0", null, "7.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.1", null, "5.3", null, "52.1", null, "10.4", null, "37.8", null, "10.8", null, "276153", null, "5301", null, "109751", null, "4372", null, "166402", null, "4873", null, "137503", null, "5493", null, "34533", null, "3516", null, "11349", null, "2309", null, "23184", null, "2929", null, "104117", null, "6380", null, "73177", null, "4404", null, "57544", null, "3617", null, "15501", null, "2876", null, "4460", null, "1546", null, "11041", null, "2550", null, "132", null, "165", null, "202976", null, "7548", null, "79959", null, "4881", null, "19032", null, "2565", null, "6889", null, "1964", null, "12143", null, "1753", null, "103985", null, "6404", null, "19963", null, "2505", null, "256190", null, "5084", null, "47118", null, "3867", null, "229035", null, "4838", null, "159969", null, "6238", null, "4074", null, "1334", null, "1292", null, "670", null, "71794", null, "3832", null, "-999999999", "N", "-999999999", "N", "9314", null, "2070", null, "28667", null, "3735", null, "33480", null, "4034", null, "152339", null, "6132", null, "136256", null, "5047", null, "172036", null, "4377", null, "20168", null, "2462", null, "54514", null, "4288", null, "97354", null, "5287", null, "93.4", null, "0.9", null, "39.7", null, "1.4", null, "60.3", null, "1.4", null, "49.8", null, "2.2", null, "12.5", null, "1.3", null, "4.1", null, "0.8", null, "8.4", null, "1.1", null, "37.7", null, "1.8", null, "26.5", null, "1.8", null, "20.8", null, "1.4", null, "5.6", null, "1.1", null, "1.6", null, "0.6", null, "4.0", null, "0.9", null, "0.0", null, "0.1", null, "73.5", null, "1.8", null, "29.0", null, "1.8", null, "6.9", null, "0.9", null, "2.5", null, "0.7", null, "4.4", null, "0.6", null, "37.7", null, "1.9", null, "7.2", null, "0.9", null, "92.8", null, "0.9", null, "17.1", null, "1.3", null, "82.9", null, "1.3", null, "57.9", null, "1.8", null, "1.5", null, "0.5", null, "0.5", null, "0.2", null, "26.0", null, "1.4", null, "-999999999.0", "N", "-999999999.0", "N", "3.4", null, "0.7", null, "10.4", null, "1.3", null, "12.1", null, "1.4", null, "55.2", null, "1.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.7", null, "1.4", null, "31.7", null, "2.5", null, "56.6", null, "2.5", null, "06", "47"], ["5001900US0648", "Congressional District 48 (119th Congress), California", "256293", null, "5902", null, "117200", null, "5873", null, "139093", null, "5703", null, "148358", null, "4588", null, "46412", null, "3416", null, "15431", null, "2298", null, "30981", null, "2972", null, "61523", null, "4975", null, "91032", null, "5427", null, "65225", null, "4523", null, "25508", null, "3206", null, "8546", null, "1845", null, "16962", null, "2750", null, "299", null, "292", null, "165261", null, "8386", null, "83133", null, "5110", null, "20904", null, "2462", null, "6885", null, "1464", null, "14019", null, "2149", null, "61224", null, "5013", null, "19716", null, "2722", null, "236577", null, "5949", null, "69699", null, "4209", null, "186594", null, "5619", null, "161416", null, "5631", null, "7742", null, "1844", null, "4548", null, "1286", null, "20591", null, "2278", null, "-999999999", "N", "-999999999", "N", "22480", null, "2766", null, "38755", null, "3905", null, "62139", null, "4120", null, "149238", null, "5199", null, "114972", null, "3526", null, "194770", null, "4512", null, "27700", null, "2665", null, "57306", null, "3984", null, "109764", null, "4695", null, "-888888888", "(X)", "-888888888", "(X)", "45.7", null, "1.9", null, "54.3", null, "1.9", null, "57.9", null, "1.7", null, "18.1", null, "1.3", null, "6.0", null, "0.9", null, "12.1", null, "1.2", null, "24.0", null, "1.6", null, "35.5", null, "2.3", null, "25.4", null, "1.9", null, "10.0", null, "1.3", null, "3.3", null, "0.7", null, "6.6", null, "1.1", null, "0.1", null, "0.1", null, "64.5", null, "2.3", null, "32.4", null, "1.8", null, "8.2", null, "0.9", null, "2.7", null, "0.6", null, "5.5", null, "0.8", null, "23.9", null, "1.6", null, "7.7", null, "1.0", null, "92.3", null, "1.0", null, "27.2", null, "1.5", null, "72.8", null, "1.5", null, "63.0", null, "1.6", null, "3.0", null, "0.7", null, "1.8", null, "0.5", null, "8.0", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "8.8", null, "1.1", null, "15.1", null, "1.5", null, "24.2", null, "1.6", null, "58.2", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.2", null, "1.3", null, "29.4", null, "1.9", null, "56.4", null, "2.2", null, "25617", null, "2660", null, "12030", null, "1801", null, "13587", null, "2239", null, "9765", null, "1583", null, "11433", null, "2052", null, "2911", null, "1200", null, "8522", null, "1793", null, "4419", null, "1150", null, "13307", null, "2113", null, "6241", null, "1476", null, "6964", null, "1620", null, "1924", null, "986", null, "5040", null, "1411", null, "102", null, "125", null, "12310", null, "1848", null, "3524", null, "992", null, "4469", null, "1132", null, "987", null, "516", null, "3482", null, "1006", null, "4317", null, "1136", null, "5968", null, "1549", null, "19649", null, "2534", null, "11233", null, "1653", null, "14384", null, "2162", null, "12400", null, "2262", null, "1969", null, "867", null, "645", null, "584", null, "2546", null, "1078", null, "-999999999", "N", "-999999999", "N", "3835", null, "1300", null, "4222", null, "1456", null, "9361", null, "1922", null, "11039", null, "2041", null, "65667", null, "11806", null, "21198", null, "2622", null, "2876", null, "876", null, "9045", null, "1763", null, "9277", null, "1966", null, "10.0", null, "1.1", null, "47.0", null, "6.0", null, "53.0", null, "6.0", null, "38.1", null, "5.4", null, "44.6", null, "5.4", null, "11.4", null, "4.5", null, "33.3", null, "5.4", null, "17.3", null, "4.4", null, "51.9", null, "5.7", null, "24.4", null, "5.5", null, "27.2", null, "5.0", null, "7.5", null, "3.7", null, "19.7", null, "4.8", null, "0.4", null, "0.5", null, "48.1", null, "5.7", null, "13.8", null, "3.7", null, "17.4", null, "3.9", null, "3.9", null, "2.0", null, "13.6", null, "3.5", null, "16.9", null, "4.3", null, "23.3", null, "5.6", null, "76.7", null, "5.6", null, "43.8", null, "5.3", null, "56.2", null, "5.3", null, "48.4", null, "7.3", null, "7.7", null, "3.4", null, "2.5", null, "2.3", null, "9.9", null, "4.0", null, "-999999999.0", "N", "-999999999.0", "N", "15.0", null, "4.8", null, "16.5", null, "5.2", null, "36.5", null, "6.0", null, "43.1", null, "6.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.6", null, "4.0", null, "42.7", null, "6.6", null, "43.8", null, "7.0", null, "230676", null, "6714", null, "105170", null, "5752", null, "125506", null, "6040", null, "138593", null, "5062", null, "34979", null, "3042", null, "12520", null, "2120", null, "22459", null, "2477", null, "57104", null, "4811", null, "77725", null, "5098", null, "58984", null, "4474", null, "18544", null, "2838", null, "6622", null, "1569", null, "11922", null, "2308", null, "197", null, "219", null, "152951", null, "8088", null, "79609", null, "5145", null, "16435", null, "2354", null, "5898", null, "1411", null, "10537", null, "1968", null, "56907", null, "4833", null, "13748", null, "2094", null, "216928", null, "6492", null, "58466", null, "4253", null, "172210", null, "5609", null, "149016", null, "5386", null, "5773", null, "1662", null, "3903", null, "1246", null, "18045", null, "2154", null, "-999999999", "N", "-999999999", "N", "18645", null, "2278", null, "34533", null, "3661", null, "52778", null, "3959", null, "138199", null, "4996", null, "120940", null, "4219", null, "173572", null, "5167", null, "24824", null, "2529", null, "48261", null, "3724", null, "100487", null, "4917", null, "90.0", null, "1.1", null, "45.6", null, "2.1", null, "54.4", null, "2.1", null, "60.1", null, "1.9", null, "15.2", null, "1.3", null, "5.4", null, "0.9", null, "9.7", null, "1.1", null, "24.8", null, "1.7", null, "33.7", null, "2.3", null, "25.6", null, "2.0", null, "8.0", null, "1.2", null, "2.9", null, "0.7", null, "5.2", null, "1.0", null, "0.1", null, "0.1", null, "66.3", null, "2.3", null, "34.5", null, "1.9", null, "7.1", null, "1.0", null, "2.6", null, "0.6", null, "4.6", null, "0.8", null, "24.7", null, "1.7", null, "6.0", null, "0.9", null, "94.0", null, "0.9", null, "25.3", null, "1.6", null, "74.7", null, "1.6", null, "64.6", null, "1.8", null, "2.5", null, "0.7", null, "1.7", null, "0.5", null, "7.8", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "8.1", null, "1.0", null, "15.0", null, "1.4", null, "22.9", null, "1.6", null, "59.9", null, "1.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.3", null, "1.4", null, "27.8", null, "2.0", null, "57.9", null, "2.3", null, "06", "48"], ["5001900US0649", "Congressional District 49 (119th Congress), California", "278963", null, "5335", null, "127845", null, "6270", null, "151118", null, "5178", null, "156547", null, "5166", null, "37387", null, "3486", null, "11850", null, "2351", null, "25537", null, "2720", null, "85029", null, "4503", null, "78582", null, "4053", null, "58747", null, "4163", null, "18834", null, "2820", null, "6098", null, "1535", null, "12736", null, "2498", null, "1001", null, "655", null, "200381", null, "7472", null, "97800", null, "5468", null, "18553", null, "2807", null, "5752", null, "1825", null, "12801", null, "2303", null, "84028", null, "4588", null, "20107", null, "2656", null, "258856", null, "5235", null, "59136", null, "4209", null, "219827", null, "5916", null, "195327", null, "5482", null, "5922", null, "1649", null, "-999999999", "N", "-999999999", "N", "17384", null, "2375", null, "1060", null, "840", null, "17645", null, "2459", null, "39902", null, "3138", null, "55484", null, "4146", null, "185973", null, "5715", null, "121511", null, "3691", null, "193934", null, "4317", null, "25582", null, "2393", null, "53864", null, "3821", null, "114488", null, "4512", null, "-888888888", "(X)", "-888888888", "(X)", "45.8", null, "1.8", null, "54.2", null, "1.8", null, "56.1", null, "1.6", null, "13.4", null, "1.3", null, "4.2", null, "0.8", null, "9.2", null, "1.0", null, "30.5", null, "1.3", null, "28.2", null, "1.7", null, "21.1", null, "1.6", null, "6.8", null, "1.0", null, "2.2", null, "0.6", null, "4.6", null, "0.9", null, "0.4", null, "0.2", null, "71.8", null, "1.7", null, "35.1", null, "1.6", null, "6.7", null, "1.0", null, "2.1", null, "0.7", null, "4.6", null, "0.8", null, "30.1", null, "1.3", null, "7.2", null, "0.9", null, "92.8", null, "0.9", null, "21.2", null, "1.5", null, "78.8", null, "1.5", null, "70.0", null, "1.5", null, "2.1", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "6.2", null, "0.8", null, "0.4", null, "0.3", null, "6.3", null, "0.9", null, "14.3", null, "1.1", null, "19.9", null, "1.4", null, "66.7", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.2", null, "1.2", null, "27.8", null, "1.9", null, "59.0", null, "1.9", null, "14746", null, "2040", null, "7099", null, "1333", null, "7647", null, "1652", null, "4586", null, "1387", null, "4964", null, "1540", null, "759", null, "574", null, "4205", null, "1323", null, "5196", null, "1182", null, "5770", null, "1627", null, "2548", null, "901", null, "2827", null, "1128", null, "497", null, "535", null, "2330", null, "881", null, "395", null, "479", null, "8976", null, "1555", null, "2038", null, "923", null, "2137", null, "903", null, "262", null, "244", null, "1875", null, "869", null, "4801", null, "1074", null, "4229", null, "1248", null, "10517", null, "1948", null, "6191", null, "1237", null, "8555", null, "2020", null, "7272", null, "1453", null, "861", null, "441", null, "-999999999", "N", "-999999999", "N", "1078", null, "648", null, "311", null, "274", null, "1383", null, "576", null, "3779", null, "1241", null, "4923", null, "1351", null, "6525", null, "1415", null, "49582", null, "9737", null, "9550", null, "1920", null, "908", null, "427", null, "3278", null, "1137", null, "5364", null, "1838", null, "5.3", null, "0.8", null, "48.1", null, "7.4", null, "51.9", null, "7.4", null, "31.1", null, "8.4", null, "33.7", null, "8.5", null, "5.1", null, "3.8", null, "28.5", null, "7.2", null, "35.2", null, "7.7", null, "39.1", null, "8.5", null, "17.3", null, "5.7", null, "19.2", null, "6.6", null, "3.4", null, "3.6", null, "15.8", null, "5.0", null, "2.7", null, "3.2", null, "60.9", null, "8.5", null, "13.8", null, "5.9", null, "14.5", null, "5.8", null, "1.8", null, "1.7", null, "12.7", null, "5.6", null, "32.6", null, "7.3", null, "28.7", null, "7.9", null, "71.3", null, "7.9", null, "42.0", null, "8.6", null, "58.0", null, "8.6", null, "49.3", null, "8.2", null, "5.8", null, "3.0", null, "-999999999.0", "N", "-999999999.0", "N", "7.3", null, "4.3", null, "2.1", null, "1.9", null, "9.4", null, "3.7", null, "25.6", null, "7.1", null, "33.4", null, "7.5", null, "44.2", null, "8.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "9.5", null, "4.7", null, "34.3", null, "11.3", null, "56.2", null, "12.9", null, "264217", null, "5978", null, "120746", null, "6080", null, "143471", null, "5436", null, "151961", null, "5214", null, "32423", null, "3392", null, "11091", null, "2275", null, "21332", null, "2595", null, "79833", null, "4458", null, "72812", null, "4026", null, "56199", null, "4099", null, "16007", null, "2814", null, "5601", null, "1464", null, "10406", null, "2503", null, "606", null, "439", null, "191405", null, "7607", null, "95762", null, "5488", null, "16416", null, "2664", null, "5490", null, "1821", null, "10926", null, "2097", null, "79227", null, "4438", null, "15878", null, "2315", null, "248339", null, "5736", null, "52945", null, "4073", null, "211272", null, "6573", null, "188055", null, "5810", null, "5061", null, "1678", null, "-999999999", "N", "-999999999", "N", "16306", null, "2202", null, "749", null, "647", null, "16262", null, "2305", null, "36123", null, "3266", null, "50561", null, "4292", null, "179448", null, "6012", null, "126431", null, "5702", null, "184384", null, "4775", null, "24674", null, "2326", null, "50586", null, "3740", null, "109124", null, "4886", null, "94.7", null, "0.8", null, "45.7", null, "1.9", null, "54.3", null, "1.9", null, "57.5", null, "1.6", null, "12.3", null, "1.3", null, "4.2", null, "0.9", null, "8.1", null, "1.0", null, "30.2", null, "1.4", null, "27.6", null, "1.7", null, "21.3", null, "1.7", null, "6.1", null, "1.1", null, "2.1", null, "0.6", null, "3.9", null, "0.9", null, "0.2", null, "0.2", null, "72.4", null, "1.7", null, "36.2", null, "1.7", null, "6.2", null, "1.0", null, "2.1", null, "0.7", null, "4.1", null, "0.8", null, "30.0", null, "1.4", null, "6.0", null, "0.8", null, "94.0", null, "0.8", null, "20.0", null, "1.5", null, "80.0", null, "1.5", null, "71.2", null, "1.5", null, "1.9", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "6.2", null, "0.8", null, "0.3", null, "0.2", null, "6.2", null, "0.9", null, "13.7", null, "1.2", null, "19.1", null, "1.5", null, "67.9", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.4", null, "1.2", null, "27.4", null, "2.0", null, "59.2", null, "2.0", null, "06", "49"], ["5001900US0650", "Congressional District 50 (119th Congress), California", "314516", null, "6946", null, "113497", null, "4692", null, "201019", null, "6208", null, "136202", null, "5953", null, "34525", null, "2794", null, "10272", null, "1751", null, "24253", null, "2401", null, "143789", null, "5898", null, "72592", null, "4080", null, "55150", null, "3473", null, "16154", null, "2114", null, "3989", null, "1096", null, "12165", null, "1962", null, "1288", null, "928", null, "241924", null, "6496", null, "81052", null, "4945", null, "18371", null, "2581", null, "6283", null, "1547", null, "12088", null, "2072", null, "142501", null, "5874", null, "31327", null, "2874", null, "283189", null, "7397", null, "60867", null, "4371", null, "253649", null, "7243", null, "202081", null, "6126", null, "10137", null, "1854", null, "2165", null, "775", null, "43644", null, "3541", null, "-999999999", "N", "-999999999", "N", "18369", null, "2802", null, "36692", null, "3370", null, "52613", null, "4246", null, "190615", null, "5983", null, "121243", null, "3727", null, "170727", null, "6415", null, "25059", null, "2502", null, "48779", null, "4266", null, "96889", null, "4729", null, "-888888888", "(X)", "-888888888", "(X)", "36.1", null, "1.3", null, "63.9", null, "1.3", null, "43.3", null, "1.6", null, "11.0", null, "0.8", null, "3.3", null, "0.5", null, "7.7", null, "0.7", null, "45.7", null, "1.6", null, "23.1", null, "1.2", null, "17.5", null, "1.1", null, "5.1", null, "0.6", null, "1.3", null, "0.3", null, "3.9", null, "0.6", null, "0.4", null, "0.3", null, "76.9", null, "1.2", null, "25.8", null, "1.4", null, "5.8", null, "0.8", null, "2.0", null, "0.5", null, "3.8", null, "0.7", null, "45.3", null, "1.6", null, "10.0", null, "0.9", null, "90.0", null, "0.9", null, "19.4", null, "1.4", null, "80.6", null, "1.4", null, "64.3", null, "1.5", null, "3.2", null, "0.6", null, "0.7", null, "0.2", null, "13.9", null, "1.1", null, "-999999999.0", "N", "-999999999.0", "N", "5.8", null, "0.9", null, "11.7", null, "1.0", null, "16.7", null, "1.2", null, "60.6", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.7", null, "1.3", null, "28.6", null, "2.2", null, "56.8", null, "1.9", null, "23602", null, "3236", null, "10876", null, "1652", null, "12726", null, "2601", null, "4308", null, "1326", null, "5817", null, "1424", null, "1279", null, "607", null, "4538", null, "1209", null, "13477", null, "2134", null, "5519", null, "1483", null, "2372", null, "975", null, "3086", null, "958", null, "498", null, "369", null, "2588", null, "917", null, "61", null, "104", null, "18083", null, "2633", null, "1936", null, "948", null, "2731", null, "975", null, "781", null, "489", null, "1950", null, "786", null, "13416", null, "2152", null, "8713", null, "1977", null, "14889", null, "2227", null, "9792", null, "2076", null, "13810", null, "2270", null, "11479", null, "2024", null, "2760", null, "1100", null, "404", null, "311", null, "1667", null, "597", null, "-999999999", "N", "-999999999", "N", "3481", null, "1431", null, "3811", null, "1314", null, "8163", null, "2016", null, "10171", null, "1924", null, "35984", null, "6311", null, "10125", null, "2046", null, "1552", null, "821", null, "4011", null, "1348", null, "4562", null, "1150", null, "7.5", null, "1.0", null, "46.1", null, "6.0", null, "53.9", null, "6.0", null, "18.3", null, "4.7", null, "24.6", null, "4.9", null, "5.4", null, "2.5", null, "19.2", null, "4.2", null, "57.1", null, "5.7", null, "23.4", null, "5.1", null, "10.0", null, "3.8", null, "13.1", null, "3.5", null, "2.1", null, "1.6", null, "11.0", null, "3.4", null, "0.3", null, "0.4", null, "76.6", null, "5.1", null, "8.2", null, "3.8", null, "11.6", null, "3.8", null, "3.3", null, "2.0", null, "8.3", null, "3.2", null, "56.8", null, "5.7", null, "36.9", null, "5.8", null, "63.1", null, "5.8", null, "41.5", null, "6.3", null, "58.5", null, "6.3", null, "48.6", null, "6.8", null, "11.7", null, "4.3", null, "1.7", null, "1.3", null, "7.1", null, "2.4", null, "-999999999.0", "N", "-999999999.0", "N", "14.7", null, "5.5", null, "16.1", null, "4.9", null, "34.6", null, "6.2", null, "43.1", null, "6.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.3", null, "7.2", null, "39.6", null, "9.6", null, "45.1", null, "9.4", null, "290914", null, "7131", null, "102621", null, "4605", null, "188293", null, "6273", null, "131894", null, "5645", null, "28708", null, "2750", null, "8993", null, "1746", null, "19715", null, "2207", null, "130312", null, "5669", null, "67073", null, "4016", null, "52778", null, "3321", null, "13068", null, "1977", null, "3491", null, "1038", null, "9577", null, "1726", null, "1227", null, "932", null, "223841", null, "6667", null, "79116", null, "4763", null, "15640", null, "2431", null, "5502", null, "1474", null, "10138", null, "1847", null, "129085", null, "5559", null, "22614", null, "2681", null, "268300", null, "7287", null, "51075", null, "4317", null, "239839", null, "7061", null, "190602", null, "5840", null, "7377", null, "1750", null, "1761", null, "653", null, "41977", null, "3570", null, "-999999999", "N", "-999999999", "N", "14888", null, "2504", null, "32881", null, "3148", null, "44450", null, "3995", null, "180444", null, "5677", null, "128367", null, "5709", null, "160602", null, "6178", null, "23507", null, "2532", null, "44768", null, "3974", null, "92327", null, "4614", null, "92.5", null, "1.0", null, "35.3", null, "1.4", null, "64.7", null, "1.4", null, "45.3", null, "1.7", null, "9.9", null, "0.9", null, "3.1", null, "0.6", null, "6.8", null, "0.7", null, "44.8", null, "1.6", null, "23.1", null, "1.3", null, "18.1", null, "1.1", null, "4.5", null, "0.7", null, "1.2", null, "0.3", null, "3.3", null, "0.6", null, "0.4", null, "0.3", null, "76.9", null, "1.3", null, "27.2", null, "1.5", null, "5.4", null, "0.8", null, "1.9", null, "0.5", null, "3.5", null, "0.6", null, "44.4", null, "1.6", null, "7.8", null, "0.9", null, "92.2", null, "0.9", null, "17.6", null, "1.4", null, "82.4", null, "1.4", null, "65.5", null, "1.6", null, "2.5", null, "0.6", null, "0.6", null, "0.2", null, "14.4", null, "1.1", null, "-999999999.0", "N", "-999999999.0", "N", "5.1", null, "0.8", null, "11.3", null, "1.0", null, "15.3", null, "1.2", null, "62.0", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.6", null, "1.4", null, "27.9", null, "2.3", null, "57.5", null, "2.0", null, "06", "50"], ["5001900US0651", "Congressional District 51 (119th Congress), California", "281178", null, "7391", null, "105363", null, "5421", null, "175815", null, "5839", null, "132853", null, "5722", null, "46270", null, "4600", null, "17030", null, "2746", null, "29240", null, "3481", null, "102055", null, "5406", null, "79148", null, "4433", null, "57083", null, "3837", null, "21670", null, "3513", null, "7283", null, "2166", null, "14387", null, "2482", null, "395", null, "376", null, "202030", null, "7911", null, "75770", null, "4984", null, "24600", null, "3324", null, "9747", null, "1987", null, "14853", null, "2544", null, "101660", null, "5435", null, "25950", null, "3175", null, "255228", null, "7842", null, "68353", null, "3999", null, "212825", null, "7440", null, "155715", null, "6403", null, "16458", null, "2678", null, "2110", null, "834", null, "43853", null, "3725", null, "-999999999", "N", "-999999999", "N", "19498", null, "2625", null, "42052", null, "4404", null, "57641", null, "4551", null, "145681", null, "5911", null, "113978", null, "3793", null, "179123", null, "5479", null, "21458", null, "2020", null, "56531", null, "4145", null, "101134", null, "4650", null, "-888888888", "(X)", "-888888888", "(X)", "37.5", null, "1.5", null, "62.5", null, "1.5", null, "47.2", null, "1.7", null, "16.5", null, "1.6", null, "6.1", null, "1.0", null, "10.4", null, "1.2", null, "36.3", null, "1.5", null, "28.1", null, "1.6", null, "20.3", null, "1.4", null, "7.7", null, "1.3", null, "2.6", null, "0.8", null, "5.1", null, "0.9", null, "0.1", null, "0.1", null, "71.9", null, "1.6", null, "26.9", null, "1.6", null, "8.7", null, "1.2", null, "3.5", null, "0.7", null, "5.3", null, "0.9", null, "36.2", null, "1.5", null, "9.2", null, "1.1", null, "90.8", null, "1.1", null, "24.3", null, "1.4", null, "75.7", null, "1.4", null, "55.4", null, "1.8", null, "5.9", null, "1.0", null, "0.8", null, "0.3", null, "15.6", null, "1.3", null, "-999999999.0", "N", "-999999999.0", "N", "6.9", null, "0.9", null, "15.0", null, "1.5", null, "20.5", null, "1.5", null, "51.8", null, "1.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.0", null, "1.1", null, "31.6", null, "2.0", null, "56.5", null, "2.0", null, "32646", null, "3494", null, "14711", null, "2120", null, "17935", null, "2773", null, "11096", null, "2006", null, "11176", null, "2388", null, "2465", null, "877", null, "8711", null, "2210", null, "10374", null, "1833", null, "12953", null, "2229", null, "6336", null, "1609", null, "6431", null, "1850", null, "498", null, "369", null, "5933", null, "1832", null, "186", null, "311", null, "19693", null, "2397", null, "4760", null, "1166", null, "4745", null, "1189", null, "1967", null, "791", null, "2778", null, "924", null, "10188", null, "1761", null, "10341", null, "2180", null, "22305", null, "2731", null, "16786", null, "2698", null, "15860", null, "2159", null, "14689", null, "2260", null, "3854", null, "1440", null, "509", null, "547", null, "5293", null, "1358", null, "-999999999", "N", "-999999999", "N", "3090", null, "1050", null, "5136", null, "1690", null, "7043", null, "1727", null, "13854", null, "2245", null, "48912", null, "10013", null, "22272", null, "2988", null, "3902", null, "1163", null, "10780", null, "2339", null, "7590", null, "1435", null, "11.6", null, "1.3", null, "45.1", null, "5.2", null, "54.9", null, "5.2", null, "34.0", null, "5.2", null, "34.2", null, "5.9", null, "7.6", null, "2.6", null, "26.7", null, "5.8", null, "31.8", null, "4.8", null, "39.7", null, "4.7", null, "19.4", null, "4.4", null, "19.7", null, "5.1", null, "1.5", null, "1.1", null, "18.2", null, "5.1", null, "0.6", null, "0.9", null, "60.3", null, "4.7", null, "14.6", null, "3.4", null, "14.5", null, "3.2", null, "6.0", null, "2.4", null, "8.5", null, "2.6", null, "31.2", null, "4.6", null, "31.7", null, "5.3", null, "68.3", null, "5.3", null, "51.4", null, "5.3", null, "48.6", null, "5.3", null, "45.0", null, "5.5", null, "11.8", null, "4.0", null, "1.6", null, "1.7", null, "16.2", null, "3.8", null, "-999999999.0", "N", "-999999999.0", "N", "9.5", null, "3.2", null, "15.7", null, "4.9", null, "21.6", null, "4.8", null, "42.4", null, "5.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.5", null, "4.9", null, "48.4", null, "6.6", null, "34.1", null, "5.8", null, "248532", null, "8205", null, "90652", null, "5093", null, "157880", null, "6014", null, "121757", null, "5538", null, "35094", null, "4324", null, "14565", null, "2640", null, "20529", null, "3008", null, "91681", null, "5441", null, "66195", null, "4452", null, "50747", null, "3454", null, "15239", null, "3223", null, "6785", null, "2137", null, "8454", null, "1908", null, "209", null, "208", null, "182337", null, "8230", null, "71010", null, "4870", null, "19855", null, "3213", null, "7780", null, "1796", null, "12075", null, "2412", null, "91472", null, "5455", null, "15609", null, "2397", null, "232923", null, "8047", null, "51567", null, "3754", null, "196965", null, "7428", null, "141026", null, "6310", null, "12604", null, "2352", null, "1601", null, "593", null, "38560", null, "3483", null, "-999999999", "N", "-999999999", "N", "16408", null, "2592", null, "36916", null, "3680", null, "50598", null, "4590", null, "131827", null, "5787", null, "123511", null, "2598", null, "156851", null, "6002", null, "17556", null, "1915", null, "45751", null, "3810", null, "93544", null, "4681", null, "88.4", null, "1.3", null, "36.5", null, "1.5", null, "63.5", null, "1.5", null, "49.0", null, "1.8", null, "14.1", null, "1.7", null, "5.9", null, "1.1", null, "8.3", null, "1.2", null, "36.9", null, "1.6", null, "26.6", null, "1.8", null, "20.4", null, "1.4", null, "6.1", null, "1.3", null, "2.7", null, "0.9", null, "3.4", null, "0.8", null, "0.1", null, "0.1", null, "73.4", null, "1.8", null, "28.6", null, "1.7", null, "8.0", null, "1.3", null, "3.1", null, "0.7", null, "4.9", null, "0.9", null, "36.8", null, "1.6", null, "6.3", null, "0.9", null, "93.7", null, "0.9", null, "20.7", null, "1.4", null, "79.3", null, "1.4", null, "56.7", null, "2.0", null, "5.1", null, "0.9", null, "0.6", null, "0.2", null, "15.5", null, "1.3", null, "-999999999.0", "N", "-999999999.0", "N", "6.6", null, "1.0", null, "14.9", null, "1.4", null, "20.4", null, "1.6", null, "53.0", null, "1.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.2", null, "1.2", null, "29.2", null, "2.0", null, "59.6", null, "2.0", null, "06", "51"], ["5001900US0652", "Congressional District 52 (119th Congress), California", "234862", null, "6112", null, "99748", null, "4888", null, "135114", null, "5581", null, "113955", null, "4282", null, "63578", null, "3744", null, "19221", null, "2846", null, "44357", null, "3748", null, "57329", null, "4965", null, "88527", null, "5078", null, "55161", null, "4239", null, "32681", null, "3204", null, "8910", null, "1830", null, "23771", null, "2733", null, "685", null, "463", null, "146335", null, "6896", null, "58794", null, "3863", null, "30897", null, "3107", null, "10311", null, "2371", null, "20586", null, "2815", null, "56644", null, "4855", null, "30498", null, "3317", null, "204364", null, "6214", null, "76563", null, "4891", null, "158299", null, "6497", null, "58850", null, "4119", null, "20520", null, "2526", null, "3582", null, "1027", null, "33230", null, "2659", null, "-999999999", "N", "-999999999", "N", "42194", null, "3651", null, "75615", null, "4909", null, "129493", null, "5303", null, "44494", null, "3858", null, "85163", null, "3077", null, "177533", null, "4684", null, "17565", null, "2103", null, "56456", null, "4619", null, "103512", null, "5593", null, "-888888888", "(X)", "-888888888", "(X)", "42.5", null, "1.8", null, "57.5", null, "1.8", null, "48.5", null, "1.8", null, "27.1", null, "1.5", null, "8.2", null, "1.3", null, "18.9", null, "1.5", null, "24.4", null, "1.8", null, "37.7", null, "2.1", null, "23.5", null, "1.8", null, "13.9", null, "1.3", null, "3.8", null, "0.8", null, "10.1", null, "1.1", null, "0.3", null, "0.2", null, "62.3", null, "2.1", null, "25.0", null, "1.6", null, "13.2", null, "1.3", null, "4.4", null, "1.0", null, "8.8", null, "1.1", null, "24.1", null, "1.7", null, "13.0", null, "1.4", null, "87.0", null, "1.4", null, "32.6", null, "2.0", null, "67.4", null, "2.0", null, "25.1", null, "1.7", null, "8.7", null, "1.0", null, "1.5", null, "0.4", null, "14.1", null, "1.1", null, "-999999999.0", "N", "-999999999.0", "N", "18.0", null, "1.4", null, "32.2", null, "1.9", null, "55.1", null, "1.8", null, "18.9", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "9.9", null, "1.2", null, "31.8", null, "2.6", null, "58.3", null, "2.6", null, "44942", null, "3962", null, "23922", null, "2939", null, "21020", null, "2838", null, "15706", null, "1791", null, "19090", null, "2678", null, "4281", null, "1619", null, "14809", null, "2231", null, "10146", null, "2195", null, "22430", null, "2565", null, "9561", null, "1712", null, "12542", null, "2273", null, "2181", null, "849", null, "10361", null, "1954", null, "327", null, "340", null, "22512", null, "3101", null, "6145", null, "1057", null, "6548", null, "1626", null, "2100", null, "1347", null, "4448", null, "1143", null, "9819", null, "2201", null, "13245", null, "2397", null, "31697", null, "3391", null, "22561", null, "2773", null, "22381", null, "2526", null, "9288", null, "2101", null, "4499", null, "1329", null, "901", null, "519", null, "5492", null, "1547", null, "-999999999", "N", "-999999999", "N", "8251", null, "1694", null, "16402", null, "2439", null, "26919", null, "2629", null, "6283", null, "1890", null, "51499", null, "5185", null, "34796", null, "2868", null, "5527", null, "1338", null, "13931", null, "2292", null, "15338", null, "1993", null, "19.1", null, "1.6", null, "53.2", null, "4.7", null, "46.8", null, "4.7", null, "34.9", null, "4.1", null, "42.5", null, "4.4", null, "9.5", null, "3.5", null, "33.0", null, "4.0", null, "22.6", null, "3.8", null, "49.9", null, "4.6", null, "21.3", null, "4.0", null, "27.9", null, "4.1", null, "4.9", null, "1.8", null, "23.1", null, "3.6", null, "0.7", null, "0.8", null, "50.1", null, "4.6", null, "13.7", null, "2.2", null, "14.6", null, "3.5", null, "4.7", null, "3.0", null, "9.9", null, "2.6", null, "21.8", null, "3.8", null, "29.5", null, "4.5", null, "70.5", null, "4.5", null, "50.2", null, "4.0", null, "49.8", null, "4.0", null, "20.7", null, "4.1", null, "10.0", null, "2.9", null, "2.0", null, "1.2", null, "12.2", null, "3.2", null, "-999999999.0", "N", "-999999999.0", "N", "18.4", null, "3.5", null, "36.5", null, "4.5", null, "59.9", null, "4.5", null, "14.0", null, "3.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.9", null, "3.5", null, "40.0", null, "5.4", null, "44.1", null, "5.0", null, "189920", null, "5785", null, "75826", null, "4283", null, "114094", null, "5747", null, "98249", null, "4069", null, "44488", null, "3465", null, "14940", null, "2304", null, "29548", null, "3362", null, "47183", null, "4296", null, "66097", null, "4506", null, "45600", null, "3792", null, "20139", null, "2874", null, "6729", null, "1734", null, "13410", null, "2372", null, "358", null, "319", null, "123823", null, "6070", null, "52649", null, "3576", null, "24349", null, "2634", null, "8211", null, "1630", null, "16138", null, "2472", null, "46825", null, "4263", null, "17253", null, "2435", null, "172667", null, "5558", null, "54002", null, "4142", null, "135918", null, "5994", null, "49562", null, "3621", null, "16021", null, "2325", null, "2681", null, "925", null, "27738", null, "2530", null, "-999999999", "N", "-999999999", "N", "33943", null, "3375", null, "59213", null, "4616", null, "102574", null, "5499", null, "38211", null, "3304", null, "91859", null, "3137", null, "142737", null, "4569", null, "12038", null, "1736", null, "42525", null, "4090", null, "88174", null, "5249", null, "80.9", null, "1.6", null, "39.9", null, "2.1", null, "60.1", null, "2.1", null, "51.7", null, "2.0", null, "23.4", null, "1.7", null, "7.9", null, "1.3", null, "15.6", null, "1.6", null, "24.8", null, "1.9", null, "34.8", null, "2.3", null, "24.0", null, "2.0", null, "10.6", null, "1.5", null, "3.5", null, "0.9", null, "7.1", null, "1.2", null, "0.2", null, "0.2", null, "65.2", null, "2.3", null, "27.7", null, "1.8", null, "12.8", null, "1.3", null, "4.3", null, "0.9", null, "8.5", null, "1.2", null, "24.7", null, "1.9", null, "9.1", null, "1.2", null, "90.9", null, "1.2", null, "28.4", null, "2.1", null, "71.6", null, "2.1", null, "26.1", null, "1.9", null, "8.4", null, "1.2", null, "1.4", null, "0.5", null, "14.6", null, "1.3", null, "-999999999.0", "N", "-999999999.0", "N", "17.9", null, "1.6", null, "31.2", null, "2.1", null, "54.0", null, "2.0", null, "20.1", null, "1.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "8.4", null, "1.2", null, "29.8", null, "2.8", null, "61.8", null, "2.9", null, "06", "52"], ["5001900US0801", "Congressional District 1 (119th Congress), Colorado", "353181", null, "4132", null, "95070", null, "3067", null, "258111", null, "4767", null, "118533", null, "6247", null, "39671", null, "4174", null, "11960", null, "2425", null, "27711", null, "3441", null, "194977", null, "6075", null, "69052", null, "4744", null, "47052", null, "4423", null, "21909", null, "3433", null, "5709", null, "1859", null, "16200", null, "2849", null, "91", null, "144", null, "284129", null, "5857", null, "71481", null, "4865", null, "17762", null, "2673", null, "6251", null, "1767", null, "11511", null, "2043", null, "194886", null, "6075", null, "38256", null, "4163", null, "314925", null, "5553", null, "72603", null, "4120", null, "280578", null, "6051", null, "232630", null, "3949", null, "30611", null, "2083", null, "2907", null, "976", null, "15249", null, "1565", null, "-999999999", "N", "-999999999", "N", "19812", null, "2847", null, "51067", null, "4085", null, "73011", null, "3646", null, "218757", null, "3858", null, "93102", null, "3992", null, "158204", null, "5801", null, "17666", null, "2549", null, "42825", null, "3950", null, "97713", null, "5461", null, "-888888888", "(X)", "-888888888", "(X)", "26.9", null, "0.9", null, "73.1", null, "0.9", null, "33.6", null, "1.7", null, "11.2", null, "1.2", null, "3.4", null, "0.7", null, "7.8", null, "1.0", null, "55.2", null, "1.6", null, "19.6", null, "1.3", null, "13.3", null, "1.2", null, "6.2", null, "1.0", null, "1.6", null, "0.5", null, "4.6", null, "0.8", null, "0.0", null, "0.1", null, "80.4", null, "1.3", null, "20.2", null, "1.3", null, "5.0", null, "0.8", null, "1.8", null, "0.5", null, "3.3", null, "0.6", null, "55.2", null, "1.6", null, "10.8", null, "1.2", null, "89.2", null, "1.2", null, "20.6", null, "1.2", null, "79.4", null, "1.2", null, "65.9", null, "1.0", null, "8.7", null, "0.6", null, "0.8", null, "0.3", null, "4.3", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "5.6", null, "0.8", null, "14.5", null, "1.1", null, "20.7", null, "0.9", null, "61.9", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.2", null, "1.5", null, "27.1", null, "2.5", null, "61.8", null, "2.4", null, "33672", null, "3488", null, "11275", null, "2315", null, "22397", null, "2923", null, "5458", null, "1822", null, "12188", null, "2306", null, "3588", null, "1463", null, "8600", null, "2067", null, "16026", null, "2223", null, "11940", null, "2068", null, "3238", null, "1373", null, "8611", null, "1959", null, "1348", null, "858", null, "7263", null, "1981", null, "91", null, "144", null, "21732", null, "2828", null, "2220", null, "1100", null, "3577", null, "1299", null, "2240", null, "1218", null, "1337", null, "589", null, "15935", null, "2227", null, "14512", null, "2288", null, "19160", null, "2922", null, "16186", null, "2921", null, "17486", null, "2321", null, "14068", null, "2297", null, "6530", null, "1724", null, "632", null, "464", null, "1710", null, "726", null, "-999999999", "N", "-999999999", "N", "3165", null, "1130", null, "7567", null, "1884", null, "11373", null, "2064", null, "12167", null, "2065", null, "30728", null, "5264", null, "17646", null, "2443", null, "2733", null, "1240", null, "8288", null, "1970", null, "6625", null, "1838", null, "9.5", null, "1.0", null, "33.5", null, "5.7", null, "66.5", null, "5.7", null, "16.2", null, "5.3", null, "36.2", null, "5.4", null, "10.7", null, "4.1", null, "25.5", null, "5.6", null, "47.6", null, "4.6", null, "35.5", null, "4.9", null, "9.6", null, "4.1", null, "25.6", null, "5.1", null, "4.0", null, "2.5", null, "21.6", null, "5.4", null, "0.3", null, "0.4", null, "64.5", null, "4.9", null, "6.6", null, "3.2", null, "10.6", null, "3.6", null, "6.7", null, "3.4", null, "4.0", null, "1.8", null, "47.3", null, "4.6", null, "43.1", null, "5.7", null, "56.9", null, "5.7", null, "48.1", null, "5.9", null, "51.9", null, "5.9", null, "41.8", null, "5.2", null, "19.4", null, "4.5", null, "1.9", null, "1.4", null, "5.1", null, "2.2", null, "-999999999.0", "N", "-999999999.0", "N", "9.4", null, "3.3", null, "22.5", null, "5.2", null, "33.8", null, "5.2", null, "36.1", null, "4.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.5", null, "6.7", null, "47.0", null, "9.4", null, "37.5", null, "8.6", null, "319509", null, "5521", null, "83795", null, "3043", null, "235714", null, "4995", null, "113075", null, "6004", null, "27483", null, "3479", null, "8372", null, "1818", null, "19111", null, "3010", null, "178951", null, "6398", null, "57112", null, "4353", null, "43814", null, "4205", null, "13298", null, "2675", null, "4361", null, "1512", null, "8937", null, "2194", null, "0", null, "224", null, "262397", null, "6303", null, "69261", null, "4770", null, "14185", null, "2175", null, "4011", null, "1178", null, "10174", null, "1958", null, "178951", null, "6398", null, "23744", null, "3587", null, "295765", null, "5494", null, "56417", null, "3921", null, "263092", null, "5397", null, "218562", null, "4131", null, "24081", null, "2381", null, "2275", null, "890", null, "13539", null, "1547", null, "-999999999", "N", "-999999999", "N", "16647", null, "2940", null, "43500", null, "3719", null, "61638", null, "4148", null, "206590", null, "3774", null, "100995", null, "3217", null, "140558", null, "5612", null, "14933", null, "1990", null, "34537", null, "3814", null, "91088", null, "5308", null, "90.5", null, "1.0", null, "26.2", null, "0.9", null, "73.8", null, "0.9", null, "35.4", null, "1.8", null, "8.6", null, "1.1", null, "2.6", null, "0.6", null, "6.0", null, "0.9", null, "56.0", null, "1.7", null, "17.9", null, "1.3", null, "13.7", null, "1.3", null, "4.2", null, "0.8", null, "1.4", null, "0.5", null, "2.8", null, "0.7", null, "0.0", null, "0.1", null, "82.1", null, "1.3", null, "21.7", null, "1.5", null, "4.4", null, "0.7", null, "1.3", null, "0.4", null, "3.2", null, "0.6", null, "56.0", null, "1.7", null, "7.4", null, "1.1", null, "92.6", null, "1.1", null, "17.7", null, "1.1", null, "82.3", null, "1.1", null, "68.4", null, "1.1", null, "7.5", null, "0.7", null, "0.7", null, "0.3", null, "4.2", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "5.2", null, "0.9", null, "13.6", null, "1.1", null, "19.3", null, "1.2", null, "64.7", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.6", null, "1.4", null, "24.6", null, "2.6", null, "64.8", null, "2.6", null, "08", "01"], ["5001900US0802", "Congressional District 2 (119th Congress), Colorado", "319779", null, "4872", null, "115242", null, "3389", null, "204537", null, "5187", null, "146376", null, "5133", null, "34353", null, "3710", null, "12128", null, "2424", null, "22225", null, "2582", null, "139050", null, "5074", null, "74901", null, "4184", null, "54742", null, "3872", null, "19451", null, "2718", null, "6581", null, "1904", null, "12870", null, "2316", null, "708", null, "610", null, "244878", null, "5716", null, "91634", null, "4405", null, "14902", null, "2453", null, "5547", null, "1437", null, "9355", null, "1849", null, "138342", null, "5003", null, "37081", null, "3958", null, "282698", null, "5753", null, "62025", null, "4155", null, "257754", null, "5760", null, "268793", null, "5199", null, "2906", null, "1028", null, "1448", null, "885", null, "8544", null, "1111", null, "-999999999", "N", "-999999999", "N", "5927", null, "1583", null, "32161", null, "3246", null, "33725", null, "2897", null, "261897", null, "4921", null, "100659", null, "3656", null, "180729", null, "5765", null, "27275", null, "2479", null, "50418", null, "3901", null, "103036", null, "4802", null, "-888888888", "(X)", "-888888888", "(X)", "36.0", null, "1.1", null, "64.0", null, "1.1", null, "45.8", null, "1.4", null, "10.7", null, "1.1", null, "3.8", null, "0.7", null, "7.0", null, "0.8", null, "43.5", null, "1.5", null, "23.4", null, "1.3", null, "17.1", null, "1.2", null, "6.1", null, "0.8", null, "2.1", null, "0.6", null, "4.0", null, "0.7", null, "0.2", null, "0.2", null, "76.6", null, "1.3", null, "28.7", null, "1.3", null, "4.7", null, "0.8", null, "1.7", null, "0.4", null, "2.9", null, "0.6", null, "43.3", null, "1.5", null, "11.6", null, "1.2", null, "88.4", null, "1.2", null, "19.4", null, "1.3", null, "80.6", null, "1.3", null, "84.1", null, "1.1", null, "0.9", null, "0.3", null, "0.5", null, "0.3", null, "2.7", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "1.9", null, "0.5", null, "10.1", null, "1.0", null, "10.5", null, "0.9", null, "81.9", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.1", null, "1.4", null, "27.9", null, "1.9", null, "57.0", null, "1.9", null, "18790", null, "2535", null, "6287", null, "1349", null, "12503", null, "2286", null, "4664", null, "1498", null, "5657", null, "1868", null, "1724", null, "1289", null, "3933", null, "1183", null, "8469", null, "1469", null, "7144", null, "2032", null, "2591", null, "1275", null, "4489", null, "1733", null, "1210", null, "1239", null, "3279", null, "1073", null, "64", null, "104", null, "11646", null, "1717", null, "2073", null, "839", null, "1168", null, "602", null, "514", null, "377", null, "654", null, "453", null, "8405", null, "1457", null, "7397", null, "1919", null, "11393", null, "2312", null, "8040", null, "1481", null, "10750", null, "1970", null, "13014", null, "2079", null, "1092", null, "838", null, "338", null, "345", null, "239", null, "207", null, "-999999999", "N", "-999999999", "N", "883", null, "564", null, "3224", null, "1415", null, "4229", null, "1267", null, "11970", null, "1927", null, "32417", null, "5594", null, "10321", null, "2280", null, "1820", null, "868", null, "4258", null, "1490", null, "4243", null, "1582", null, "5.9", null, "0.8", null, "33.5", null, "6.6", null, "66.5", null, "6.6", null, "24.8", null, "7.0", null, "30.1", null, "8.2", null, "9.2", null, "6.4", null, "20.9", null, "5.7", null, "45.1", null, "7.4", null, "38.0", null, "7.9", null, "13.8", null, "6.3", null, "23.9", null, "7.9", null, "6.4", null, "6.3", null, "17.5", null, "5.3", null, "0.3", null, "0.6", null, "62.0", null, "7.9", null, "11.0", null, "4.3", null, "6.2", null, "3.2", null, "2.7", null, "2.0", null, "3.5", null, "2.4", null, "44.7", null, "7.4", null, "39.4", null, "9.0", null, "60.6", null, "9.0", null, "42.8", null, "6.2", null, "57.2", null, "6.2", null, "69.3", null, "7.4", null, "5.8", null, "4.4", null, "1.8", null, "1.9", null, "1.3", null, "1.1", null, "-999999999.0", "N", "-999999999.0", "N", "4.7", null, "3.1", null, "17.2", null, "6.6", null, "22.5", null, "5.3", null, "63.7", null, "7.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.6", null, "8.2", null, "41.3", null, "10.7", null, "41.1", null, "11.8", null, "300989", null, "5145", null, "108955", null, "3322", null, "192034", null, "5342", null, "141712", null, "4920", null, "28696", null, "3199", null, "10404", null, "1942", null, "18292", null, "2367", null, "130581", null, "5352", null, "67757", null, "3951", null, "52151", null, "3613", null, "14962", null, "2114", null, "5371", null, "1361", null, "9591", null, "2040", null, "644", null, "605", null, "233232", null, "5856", null, "89561", null, "4497", null, "13734", null, "2258", null, "5033", null, "1290", null, "8701", null, "1745", null, "129937", null, "5338", null, "29684", null, "3764", null, "271305", null, "5703", null, "53985", null, "4054", null, "247004", null, "5459", null, "255779", null, "5377", null, "1814", null, "868", null, "1110", null, "742", null, "8305", null, "1115", null, "-999999999", "N", "-999999999", "N", "5044", null, "1330", null, "28937", null, "3173", null, "29496", null, "2965", null, "249927", null, "4988", null, "105816", null, "4339", null, "170408", null, "5357", null, "25455", null, "2461", null, "46160", null, "3616", null, "98793", null, "4499", null, "94.1", null, "0.8", null, "36.2", null, "1.1", null, "63.8", null, "1.1", null, "47.1", null, "1.5", null, "9.5", null, "1.0", null, "3.5", null, "0.6", null, "6.1", null, "0.8", null, "43.4", null, "1.6", null, "22.5", null, "1.3", null, "17.3", null, "1.2", null, "5.0", null, "0.7", null, "1.8", null, "0.4", null, "3.2", null, "0.7", null, "0.2", null, "0.2", null, "77.5", null, "1.3", null, "29.8", null, "1.4", null, "4.6", null, "0.7", null, "1.7", null, "0.4", null, "2.9", null, "0.6", null, "43.2", null, "1.6", null, "9.9", null, "1.2", null, "90.1", null, "1.2", null, "17.9", null, "1.3", null, "82.1", null, "1.3", null, "85.0", null, "1.1", null, "0.6", null, "0.3", null, "0.4", null, "0.2", null, "2.8", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "1.7", null, "0.4", null, "9.6", null, "1.0", null, "9.8", null, "0.9", null, "83.0", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.9", null, "1.4", null, "27.1", null, "1.9", null, "58.0", null, "1.9", null, "08", "02"], ["5001900US0803", "Congressional District 3 (119th Congress), Colorado", "326720", null, "3890", null, "153644", null, "3862", null, "173076", null, "4346", null, "161487", null, "5391", null, "42881", null, "3958", null, "13445", null, "2356", null, "29436", null, "3699", null, "122352", null, "6027", null, "76102", null, "4777", null, "50673", null, "3847", null, "24725", null, "3260", null, "6535", null, "1577", null, "18190", null, "3148", null, "704", null, "634", null, "250618", null, "6047", null, "110814", null, "5238", null, "18156", null, "2383", null, "6910", null, "1777", null, "11246", null, "1872", null, "121648", null, "6048", null, "45944", null, "4473", null, "280776", null, "4972", null, "98218", null, "4543", null, "228502", null, "4847", null, "257934", null, "5154", null, "2559", null, "857", null, "5512", null, "1276", null, "-999999999", "N", "-999999999", "N", "-999999999", "N", "-999999999", "N", "18736", null, "2396", null, "39321", null, "3397", null, "70318", null, "2794", null, "232031", null, "3863", null, "71165", null, "2482", null, "204368", null, "4921", null, "41580", null, "3227", null, "55877", null, "3331", null, "106911", null, "5000", null, "-888888888", "(X)", "-888888888", "(X)", "47.0", null, "1.1", null, "53.0", null, "1.1", null, "49.4", null, "1.8", null, "13.1", null, "1.2", null, "4.1", null, "0.7", null, "9.0", null, "1.1", null, "37.4", null, "1.6", null, "23.3", null, "1.5", null, "15.5", null, "1.2", null, "7.6", null, "1.0", null, "2.0", null, "0.5", null, "5.6", null, "1.0", null, "0.2", null, "0.2", null, "76.7", null, "1.5", null, "33.9", null, "1.7", null, "5.6", null, "0.7", null, "2.1", null, "0.5", null, "3.4", null, "0.6", null, "37.2", null, "1.6", null, "14.1", null, "1.3", null, "85.9", null, "1.3", null, "30.1", null, "1.3", null, "69.9", null, "1.3", null, "78.9", null, "1.2", null, "0.8", null, "0.3", null, "1.7", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "5.7", null, "0.7", null, "12.0", null, "1.0", null, "21.5", null, "0.8", null, "71.0", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "20.3", null, "1.5", null, "27.3", null, "1.5", null, "52.3", null, "2.0", null, "43401", null, "3982", null, "18647", null, "2521", null, "24754", null, "2874", null, "10311", null, "2010", null, "12739", null, "1849", null, "3294", null, "986", null, "9445", null, "1512", null, "20351", null, "3063", null, "13942", null, "2171", null, "6077", null, "1383", null, "7865", null, "1648", null, "1714", null, "720", null, "6151", null, "1396", null, "0", null, "224", null, "29459", null, "3582", null, "4234", null, "1454", null, "4874", null, "1161", null, "1580", null, "662", null, "3294", null, "877", null, "20351", null, "3063", null, "17879", null, "2613", null, "25522", null, "2944", null, "19645", null, "2598", null, "23756", null, "2908", null, "29759", null, "3682", null, "1025", null, "507", null, "1159", null, "550", null, "-999999999", "N", "-999999999", "N", "-999999999", "N", "-999999999", "N", "3498", null, "1155", null, "7917", null, "1225", null, "15560", null, "1923", null, "22858", null, "3276", null, "26246", null, "4210", null, "23050", null, "2737", null, "4349", null, "1296", null, "10613", null, "1894", null, "8088", null, "1780", null, "13.3", null, "1.2", null, "43.0", null, "4.2", null, "57.0", null, "4.2", null, "23.8", null, "4.3", null, "29.4", null, "3.7", null, "7.6", null, "2.2", null, "21.8", null, "3.1", null, "46.9", null, "5.0", null, "32.1", null, "4.5", null, "14.0", null, "3.0", null, "18.1", null, "3.7", null, "3.9", null, "1.6", null, "14.2", null, "3.1", null, "0.0", null, "0.5", null, "67.9", null, "4.5", null, "9.8", null, "3.3", null, "11.2", null, "2.5", null, "3.6", null, "1.5", null, "7.6", null, "1.9", null, "46.9", null, "5.0", null, "41.2", null, "4.5", null, "58.8", null, "4.5", null, "45.3", null, "4.4", null, "54.7", null, "4.4", null, "68.6", null, "4.1", null, "2.4", null, "1.1", null, "2.7", null, "1.3", null, "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "8.1", null, "2.6", null, "18.2", null, "2.9", null, "35.9", null, "3.9", null, "52.7", null, "4.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.9", null, "5.1", null, "46.0", null, "6.6", null, "35.1", null, "6.5", null, "283319", null, "5142", null, "134997", null, "3639", null, "148322", null, "4783", null, "151176", null, "5433", null, "30142", null, "3606", null, "10151", null, "2027", null, "19991", null, "3296", null, "102001", null, "4965", null, "62160", null, "4548", null, "44596", null, "3817", null, "16860", null, "2847", null, "4821", null, "1439", null, "12039", null, "2643", null, "704", null, "634", null, "221159", null, "6226", null, "106580", null, "5170", null, "13282", null, "2184", null, "5330", null, "1490", null, "7952", null, "1815", null, "101297", null, "4945", null, "28065", null, "3399", null, "255254", null, "5428", null, "78573", null, "3738", null, "204746", null, "5645", null, "228175", null, "5484", null, "1534", null, "798", null, "4353", null, "1278", null, "-999999999", "N", "-999999999", "N", "-999999999", "N", "-999999999", "N", "15238", null, "2345", null, "31404", null, "3103", null, "54758", null, "3188", null, "209173", null, "4534", null, "78956", null, "3119", null, "181318", null, "5266", null, "37231", null, "2951", null, "45264", null, "3048", null, "98823", null, "4980", null, "86.7", null, "1.2", null, "47.6", null, "1.2", null, "52.4", null, "1.2", null, "53.4", null, "1.9", null, "10.6", null, "1.2", null, "3.6", null, "0.7", null, "7.1", null, "1.1", null, "36.0", null, "1.6", null, "21.9", null, "1.6", null, "15.7", null, "1.4", null, "6.0", null, "1.0", null, "1.7", null, "0.5", null, "4.2", null, "0.9", null, "0.2", null, "0.2", null, "78.1", null, "1.6", null, "37.6", null, "1.8", null, "4.7", null, "0.7", null, "1.9", null, "0.5", null, "2.8", null, "0.6", null, "35.8", null, "1.6", null, "9.9", null, "1.2", null, "90.1", null, "1.2", null, "27.7", null, "1.3", null, "72.3", null, "1.3", null, "80.5", null, "1.4", null, "0.5", null, "0.3", null, "1.5", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "5.4", null, "0.8", null, "11.1", null, "1.1", null, "19.3", null, "1.0", null, "73.8", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "20.5", null, "1.6", null, "25.0", null, "1.5", null, "54.5", null, "2.0", null, "08", "03"], ["5001900US0804", "Congressional District 4 (119th Congress), Colorado", "298424", null, "4473", null, "116886", null, "3777", null, "181538", null, "4115", null, "181574", null, "4724", null, "35045", null, "2931", null, "12009", null, "1921", null, "23036", null, "2484", null, "81805", null, "4620", null, "95576", null, "4154", null, "74784", null, "3708", null, "20668", null, "2555", null, "6701", null, "1616", null, "13967", null, "2105", null, "124", null, "147", null, "202848", null, "5557", null, "106790", null, "4015", null, "14377", null, "1902", null, "5308", null, "1113", null, "9069", null, "1759", null, "81681", null, "4604", null, "23667", null, "2140", null, "274757", null, "4682", null, "64262", null, "3005", null, "234162", null, "5042", null, "244157", null, "4765", null, "4336", null, "1090", null, "2535", null, "800", null, "10756", null, "1048", null, "-999999999", "N", "-999999999", "N", "10330", null, "2083", null, "26208", null, "2835", null, "36498", null, "2559", null, "232775", null, "4518", null, "120070", null, "3279", null, "216619", null, "4446", null, "27805", null, "2403", null, "53459", null, "3308", null, "135355", null, "4804", null, "-888888888", "(X)", "-888888888", "(X)", "39.2", null, "1.1", null, "60.8", null, "1.1", null, "60.8", null, "1.5", null, "11.7", null, "1.0", null, "4.0", null, "0.6", null, "7.7", null, "0.8", null, "27.4", null, "1.4", null, "32.0", null, "1.4", null, "25.1", null, "1.3", null, "6.9", null, "0.9", null, "2.2", null, "0.5", null, "4.7", null, "0.7", null, "0.0", null, "0.1", null, "68.0", null, "1.4", null, "35.8", null, "1.3", null, "4.8", null, "0.6", null, "1.8", null, "0.4", null, "3.0", null, "0.6", null, "27.4", null, "1.4", null, "7.9", null, "0.7", null, "92.1", null, "0.7", null, "21.5", null, "1.0", null, "78.5", null, "1.0", null, "81.8", null, "1.2", null, "1.5", null, "0.4", null, "0.8", null, "0.3", null, "3.6", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "3.5", null, "0.7", null, "8.8", null, "0.9", null, "12.2", null, "0.8", null, "78.0", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.8", null, "1.1", null, "24.7", null, "1.5", null, "62.5", null, "1.7", null, "19715", null, "1748", null, "8343", null, "1454", null, "11372", null, "1890", null, "5290", null, "961", null, "7386", null, "1785", null, "1601", null, "947", null, "5785", null, "1404", null, "7039", null, "1339", null, "8525", null, "1745", null, "2836", null, "807", null, "5669", null, "1649", null, "1185", null, "899", null, "4484", null, "1267", null, "20", null, "34", null, "11190", null, "1639", null, "2454", null, "870", null, "1717", null, "824", null, "416", null, "339", null, "1301", null, "714", null, "7019", null, "1327", null, "8069", null, "1399", null, "11646", null, "1855", null, "7668", null, "1272", null, "12047", null, "1645", null, "15084", null, "1806", null, "468", null, "325", null, "318", null, "342", null, "734", null, "576", null, "-999999999", "N", "-999999999", "N", "1107", null, "551", null, "2004", null, "821", null, "4004", null, "1030", null, "13346", null, "1857", null, "29659", null, "4393", null, "12676", null, "1658", null, "3449", null, "1154", null, "4885", null, "1386", null, "4342", null, "1000", null, "6.6", null, "0.6", null, "42.3", null, "7.2", null, "57.7", null, "7.2", null, "26.8", null, "5.0", null, "37.5", null, "7.8", null, "8.1", null, "4.6", null, "29.3", null, "6.4", null, "35.7", null, "6.1", null, "43.2", null, "7.5", null, "14.4", null, "4.0", null, "28.8", null, "7.5", null, "6.0", null, "4.4", null, "22.7", null, "6.0", null, "0.1", null, "0.2", null, "56.8", null, "7.5", null, "12.4", null, "4.5", null, "8.7", null, "4.1", null, "2.1", null, "1.7", null, "6.6", null, "3.6", null, "35.6", null, "6.0", null, "40.9", null, "6.8", null, "59.1", null, "6.8", null, "38.9", null, "5.9", null, "61.1", null, "5.9", null, "76.5", null, "5.6", null, "2.4", null, "1.7", null, "1.6", null, "1.7", null, "3.7", null, "2.9", null, "-999999999.0", "N", "-999999999.0", "N", "5.6", null, "2.8", null, "10.2", null, "4.1", null, "20.3", null, "5.2", null, "67.7", null, "6.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "27.2", null, "8.3", null, "38.5", null, "8.2", null, "34.3", null, "8.3", null, "278709", null, "4488", null, "108543", null, "3279", null, "170166", null, "3895", null, "176284", null, "4533", null, "27659", null, "2608", null, "10408", null, "1702", null, "17251", null, "2121", null, "74766", null, "4459", null, "87051", null, "3991", null, "71948", null, "3766", null, "14999", null, "1992", null, "5516", null, "1355", null, "9483", null, "1598", null, "104", null, "141", null, "191658", null, "5243", null, "104336", null, "3916", null, "12660", null, "1757", null, "4892", null, "1070", null, "7768", null, "1580", null, "74662", null, "4458", null, "15598", null, "1797", null, "263111", null, "4516", null, "56594", null, "2841", null, "222115", null, "5014", null, "229073", null, "4820", null, "3868", null, "1070", null, "2217", null, "753", null, "10022", null, "947", null, "-999999999", "N", "-999999999", "N", "9223", null, "2066", null, "24204", null, "2870", null, "32494", null, "2579", null, "219429", null, "4549", null, "126355", null, "4103", null, "203943", null, "4477", null, "24356", null, "2265", null, "48574", null, "3172", null, "131013", null, "4688", null, "93.4", null, "0.6", null, "38.9", null, "1.0", null, "61.1", null, "1.0", null, "63.3", null, "1.6", null, "9.9", null, "0.9", null, "3.7", null, "0.6", null, "6.2", null, "0.8", null, "26.8", null, "1.4", null, "31.2", null, "1.4", null, "25.8", null, "1.4", null, "5.4", null, "0.7", null, "2.0", null, "0.5", null, "3.4", null, "0.6", null, "0.0", null, "0.1", null, "68.8", null, "1.4", null, "37.4", null, "1.4", null, "4.5", null, "0.6", null, "1.8", null, "0.4", null, "2.8", null, "0.6", null, "26.8", null, "1.4", null, "5.6", null, "0.6", null, "94.4", null, "0.6", null, "20.3", null, "1.0", null, "79.7", null, "1.0", null, "82.2", null, "1.3", null, "1.4", null, "0.4", null, "0.8", null, "0.3", null, "3.6", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "3.3", null, "0.7", null, "8.7", null, "1.0", null, "11.7", null, "0.9", null, "78.7", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.9", null, "1.1", null, "23.8", null, "1.5", null, "64.2", null, "1.7", null, "08", "04"], ["5001900US0805", "Congressional District 5 (119th Congress), Colorado", "301463", null, "2489", null, "106569", null, "2640", null, "194894", null, "3214", null, "156904", null, "5408", null, "43243", null, "4116", null, "12689", null, "2391", null, "30554", null, "3459", null, "101316", null, "4778", null, "97194", null, "4038", null, "71410", null, "4219", null, "24675", null, "3202", null, "5559", null, "1688", null, "19116", null, "2747", null, "1109", null, "708", null, "204269", null, "4051", null, "85494", null, "3701", null, "18568", null, "2397", null, "7130", null, "1548", null, "11438", null, "2025", null, "100207", null, "4780", null, "27433", null, "2827", null, "274030", null, "3224", null, "79576", null, "4930", null, "221887", null, "5245", null, "223891", null, "4084", null, "17570", null, "2146", null, "3232", null, "1182", null, "7786", null, "1355", null, "-999999999", "N", "-999999999", "N", "13179", null, "1832", null, "35259", null, "3558", null, "47637", null, "2429", null, "210609", null, "3940", null, "91125", null, "2774", null, "200147", null, "4756", null, "26561", null, "2044", null, "61951", null, "4808", null, "111635", null, "4442", null, "-888888888", "(X)", "-888888888", "(X)", "35.4", null, "0.9", null, "64.6", null, "0.9", null, "52.0", null, "1.8", null, "14.3", null, "1.3", null, "4.2", null, "0.8", null, "10.1", null, "1.1", null, "33.6", null, "1.5", null, "32.2", null, "1.3", null, "23.7", null, "1.4", null, "8.2", null, "1.0", null, "1.8", null, "0.6", null, "6.3", null, "0.9", null, "0.4", null, "0.2", null, "67.8", null, "1.3", null, "28.4", null, "1.3", null, "6.2", null, "0.8", null, "2.4", null, "0.5", null, "3.8", null, "0.7", null, "33.2", null, "1.5", null, "9.1", null, "0.9", null, "90.9", null, "0.9", null, "26.4", null, "1.6", null, "73.6", null, "1.6", null, "74.3", null, "1.2", null, "5.8", null, "0.7", null, "1.1", null, "0.4", null, "2.6", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "4.4", null, "0.6", null, "11.7", null, "1.2", null, "15.8", null, "0.8", null, "69.9", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.3", null, "1.0", null, "31.0", null, "2.1", null, "55.8", null, "2.0", null, "31835", null, "3157", null, "11454", null, "2222", null, "20381", null, "2806", null, "9663", null, "2079", null, "10938", null, "2302", null, "2393", null, "1181", null, "8545", null, "1858", null, "11234", null, "2067", null, "16214", null, "2617", null, "7338", null, "1986", null, "8328", null, "1985", null, "1509", null, "875", null, "6819", null, "1736", null, "548", null, "478", null, "15621", null, "2364", null, "2325", null, "868", null, "2610", null, "918", null, "884", null, "524", null, "1726", null, "765", null, "10686", null, "2034", null, "9912", null, "2011", null, "21923", null, "2805", null, "14060", null, "2126", null, "17775", null, "2776", null, "18449", null, "2806", null, "3246", null, "1087", null, "356", null, "286", null, "508", null, "396", null, "-999999999", "N", "-999999999", "N", "2259", null, "919", null, "6989", null, "1625", null, "8111", null, "1576", null, "17029", null, "2633", null, "50687", null, "6497", null, "20601", null, "2950", null, "2388", null, "949", null, "7942", null, "1758", null, "10271", null, "2128", null, "10.6", null, "1.0", null, "36.0", null, "6.1", null, "64.0", null, "6.1", null, "30.4", null, "5.4", null, "34.4", null, "6.5", null, "7.5", null, "3.5", null, "26.8", null, "5.7", null, "35.3", null, "6.0", null, "50.9", null, "6.1", null, "23.1", null, "5.4", null, "26.2", null, "5.8", null, "4.7", null, "2.7", null, "21.4", null, "5.4", null, "1.7", null, "1.5", null, "49.1", null, "6.1", null, "7.3", null, "2.7", null, "8.2", null, "2.7", null, "2.8", null, "1.6", null, "5.4", null, "2.4", null, "33.6", null, "5.8", null, "31.1", null, "5.5", null, "68.9", null, "5.5", null, "44.2", null, "5.9", null, "55.8", null, "5.9", null, "58.0", null, "5.3", null, "10.2", null, "3.3", null, "1.1", null, "0.9", null, "1.6", null, "1.3", null, "-999999999.0", "N", "-999999999.0", "N", "7.1", null, "2.9", null, "22.0", null, "4.9", null, "25.5", null, "4.6", null, "53.5", null, "5.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.6", null, "4.3", null, "38.6", null, "6.8", null, "49.9", null, "7.0", null, "269628", null, "3391", null, "95115", null, "3097", null, "174513", null, "3416", null, "147241", null, "5326", null, "32305", null, "3682", null, "10296", null, "1967", null, "22009", null, "3054", null, "90082", null, "4571", null, "80980", null, "4023", null, "64072", null, "3916", null, "16347", null, "2725", null, "4050", null, "1377", null, "12297", null, "2378", null, "561", null, "475", null, "188648", null, "4243", null, "83169", null, "3734", null, "15958", null, "2264", null, "6246", null, "1479", null, "9712", null, "1925", null, "89521", null, "4569", null, "17521", null, "2575", null, "252107", null, "3799", null, "65516", null, "4351", null, "204112", null, "5067", null, "205442", null, "4334", null, "14324", null, "1993", null, "2876", null, "1144", null, "7278", null, "1453", null, "-999999999", "N", "-999999999", "N", "10920", null, "1693", null, "28270", null, "3200", null, "39526", null, "2863", null, "193580", null, "4145", null, "96880", null, "3652", null, "179546", null, "4913", null, "24173", null, "1767", null, "54009", null, "4366", null, "101364", null, "4479", null, "89.4", null, "1.0", null, "35.3", null, "1.0", null, "64.7", null, "1.0", null, "54.6", null, "1.9", null, "12.0", null, "1.4", null, "3.8", null, "0.7", null, "8.2", null, "1.1", null, "33.4", null, "1.6", null, "30.0", null, "1.4", null, "23.8", null, "1.4", null, "6.1", null, "1.0", null, "1.5", null, "0.5", null, "4.6", null, "0.9", null, "0.2", null, "0.2", null, "70.0", null, "1.4", null, "30.8", null, "1.4", null, "5.9", null, "0.8", null, "2.3", null, "0.6", null, "3.6", null, "0.7", null, "33.2", null, "1.6", null, "6.5", null, "0.9", null, "93.5", null, "0.9", null, "24.3", null, "1.6", null, "75.7", null, "1.6", null, "76.2", null, "1.4", null, "5.3", null, "0.7", null, "1.1", null, "0.4", null, "2.7", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "4.1", null, "0.6", null, "10.5", null, "1.2", null, "14.7", null, "1.0", null, "71.8", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.5", null, "1.0", null, "30.1", null, "2.2", null, "56.5", null, "2.0", null, "08", "05"], ["5001900US0806", "Congressional District 6 (119th Congress), Colorado", "290428", null, "3494", null, "108022", null, "3234", null, "182406", null, "3578", null, "138325", null, "5526", null, "48258", null, "4284", null, "15604", null, "1943", null, "32654", null, "3565", null, "103845", null, "4581", null, "84641", null, "3901", null, "57563", null, "3801", null, "25598", null, "2964", null, "7213", null, "1583", null, "18385", null, "2582", null, "1480", null, "1112", null, "205787", null, "4715", null, "80762", null, "4260", null, "22660", null, "3231", null, "8391", null, "1869", null, "14269", null, "2594", null, "102365", null, "4510", null, "21934", null, "3145", null, "268494", null, "4523", null, "64577", null, "3873", null, "225851", null, "4316", null, "188692", null, "4205", null, "29959", null, "2571", null, "2839", null, "911", null, "17734", null, "1786", null, "-999999999", "N", "-999999999", "N", "15958", null, "2424", null, "34894", null, "3378", null, "52130", null, "3046", null, "176852", null, "4200", null, "103252", null, "3138", null, "186583", null, "4989", null, "20413", null, "1996", null, "49589", null, "3759", null, "116581", null, "4426", null, "-888888888", "(X)", "-888888888", "(X)", "37.2", null, "1.0", null, "62.8", null, "1.0", null, "47.6", null, "1.8", null, "16.6", null, "1.5", null, "5.4", null, "0.7", null, "11.2", null, "1.2", null, "35.8", null, "1.5", null, "29.1", null, "1.3", null, "19.8", null, "1.3", null, "8.8", null, "1.0", null, "2.5", null, "0.5", null, "6.3", null, "0.9", null, "0.5", null, "0.4", null, "70.9", null, "1.3", null, "27.8", null, "1.4", null, "7.8", null, "1.1", null, "2.9", null, "0.6", null, "4.9", null, "0.9", null, "35.2", null, "1.5", null, "7.6", null, "1.1", null, "92.4", null, "1.1", null, "22.2", null, "1.3", null, "77.8", null, "1.3", null, "65.0", null, "1.3", null, "10.3", null, "0.9", null, "1.0", null, "0.3", null, "6.1", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "5.5", null, "0.8", null, "12.0", null, "1.2", null, "17.9", null, "1.0", null, "60.9", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.9", null, "1.0", null, "26.6", null, "1.8", null, "62.5", null, "2.0", null, "25578", null, "3518", null, "8017", null, "1349", null, "17561", null, "3253", null, "7611", null, "1940", null, "8546", null, "1943", null, "2072", null, "845", null, "6474", null, "1609", null, "9421", null, "2049", null, "12092", null, "2712", null, "5058", null, "1486", null, "6029", null, "1823", null, "1560", null, "761", null, "4469", null, "1518", null, "1005", null, "985", null, "13486", null, "2088", null, "2553", null, "1182", null, "2517", null, "938", null, "512", null, "396", null, "2005", null, "820", null, "8416", null, "1866", null, "7770", null, "2066", null, "17808", null, "2806", null, "10115", null, "2071", null, "15463", null, "2986", null, "10664", null, "1709", null, "6144", null, "2054", null, "87", null, "72", null, "1691", null, "803", null, "-999999999", "N", "-999999999", "N", "3243", null, "1545", null, "3749", null, "1183", null, "7634", null, "1886", null, "9379", null, "1576", null, "56354", null, "5923", null, "16157", null, "2653", null, "1787", null, "853", null, "4985", null, "1423", null, "9385", null, "1994", null, "8.8", null, "1.2", null, "31.3", null, "5.4", null, "68.7", null, "5.4", null, "29.8", null, "6.5", null, "33.4", null, "6.1", null, "8.1", null, "3.1", null, "25.3", null, "5.3", null, "36.8", null, "6.0", null, "47.3", null, "6.7", null, "19.8", null, "5.0", null, "23.6", null, "5.7", null, "6.1", null, "2.7", null, "17.5", null, "5.1", null, "3.9", null, "3.8", null, "52.7", null, "6.7", null, "10.0", null, "4.6", null, "9.8", null, "3.9", null, "2.0", null, "1.6", null, "7.8", null, "3.3", null, "32.9", null, "6.1", null, "30.4", null, "6.6", null, "69.6", null, "6.6", null, "39.5", null, "7.0", null, "60.5", null, "7.0", null, "41.7", null, "5.9", null, "24.0", null, "6.5", null, "0.3", null, "0.3", null, "6.6", null, "3.0", null, "-999999999.0", "N", "-999999999.0", "N", "12.7", null, "5.6", null, "14.7", null, "4.5", null, "29.8", null, "6.1", null, "36.7", null, "5.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.1", null, "5.0", null, "30.9", null, "7.1", null, "58.1", null, "8.1", null, "264850", null, "4446", null, "100005", null, "3397", null, "164845", null, "4615", null, "130714", null, "5440", null, "39712", null, "3967", null, "13532", null, "1919", null, "26180", null, "3489", null, "94424", null, "4773", null, "72549", null, "3622", null, "52505", null, "3566", null, "19569", null, "2548", null, "5653", null, "1381", null, "13916", null, "2434", null, "475", null, "417", null, "192301", null, "4803", null, "78209", null, "4045", null, "20143", null, "3105", null, "7879", null, "1810", null, "12264", null, "2586", null, "93949", null, "4779", null, "14164", null, "2191", null, "250686", null, "5004", null, "54462", null, "3611", null, "210388", null, "4812", null, "178028", null, "4173", null, "23815", null, "2356", null, "2752", null, "915", null, "16043", null, "1833", null, "-999999999", "N", "-999999999", "N", "12715", null, "2150", null, "31145", null, "3313", null, "44496", null, "3040", null, "167473", null, "4205", null, "108890", null, "4733", null, "170426", null, "5095", null, "18626", null, "1807", null, "44604", null, "3430", null, "107196", null, "4857", null, "91.2", null, "1.2", null, "37.8", null, "1.2", null, "62.2", null, "1.2", null, "49.4", null, "2.0", null, "15.0", null, "1.5", null, "5.1", null, "0.7", null, "9.9", null, "1.3", null, "35.7", null, "1.7", null, "27.4", null, "1.3", null, "19.8", null, "1.3", null, "7.4", null, "1.0", null, "2.1", null, "0.5", null, "5.3", null, "0.9", null, "0.2", null, "0.2", null, "72.6", null, "1.3", null, "29.5", null, "1.5", null, "7.6", null, "1.2", null, "3.0", null, "0.7", null, "4.6", null, "1.0", null, "35.5", null, "1.7", null, "5.3", null, "0.8", null, "94.7", null, "0.8", null, "20.6", null, "1.3", null, "79.4", null, "1.3", null, "67.2", null, "1.4", null, "9.0", null, "0.9", null, "1.0", null, "0.3", null, "6.1", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "4.8", null, "0.8", null, "11.8", null, "1.2", null, "16.8", null, "1.1", null, "63.2", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.9", null, "1.1", null, "26.2", null, "1.8", null, "62.9", null, "2.1", null, "08", "06"], ["5001900US0807", "Congressional District 7 (119th Congress), Colorado", "313524", null, "4229", null, "128360", null, "3074", null, "185164", null, "4052", null, "154648", null, "4819", null, "37981", null, "3260", null, "13155", null, "1929", null, "24826", null, "2828", null, "120895", null, "5181", null, "79060", null, "3910", null, "57276", null, "3469", null, "20690", null, "2398", null, "7197", null, "1417", null, "13493", null, "2130", null, "1094", null, "549", null, "234464", null, "4389", null, "97372", null, "3844", null, "17291", null, "1815", null, "5958", null, "1230", null, "11333", null, "1475", null, "119801", null, "5050", null, "23871", null, "2780", null, "289653", null, "4380", null, "69856", null, "3883", null, "243668", null, "4510", null, "258559", null, "4290", null, "3285", null, "698", null, "3451", null, "1235", null, "8021", null, "1032", null, "-999999999", "N", "-999999999", "N", "8118", null, "1673", null, "31787", null, "2869", null, "39398", null, "2473", null, "248563", null, "4013", null, "104378", null, "3378", null, "192629", null, "5202", null, "29509", null, "2582", null, "46629", null, "3314", null, "116491", null, "4828", null, "-888888888", "(X)", "-888888888", "(X)", "40.9", null, "0.9", null, "59.1", null, "0.9", null, "49.3", null, "1.5", null, "12.1", null, "1.0", null, "4.2", null, "0.6", null, "7.9", null, "0.9", null, "38.6", null, "1.5", null, "25.2", null, "1.1", null, "18.3", null, "1.1", null, "6.6", null, "0.8", null, "2.3", null, "0.4", null, "4.3", null, "0.7", null, "0.3", null, "0.2", null, "74.8", null, "1.1", null, "31.1", null, "1.3", null, "5.5", null, "0.6", null, "1.9", null, "0.4", null, "3.6", null, "0.5", null, "38.2", null, "1.5", null, "7.6", null, "0.9", null, "92.4", null, "0.9", null, "22.3", null, "1.2", null, "77.7", null, "1.2", null, "82.5", null, "1.0", null, "1.0", null, "0.2", null, "1.1", null, "0.4", null, "2.6", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "2.6", null, "0.5", null, "10.1", null, "0.9", null, "12.6", null, "0.7", null, "79.3", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.3", null, "1.2", null, "24.2", null, "1.6", null, "60.5", null, "1.9", null, "20501", null, "2656", null, "9223", null, "1684", null, "11278", null, "1966", null, "4610", null, "1428", null, "6828", null, "1525", null, "1461", null, "793", null, "5367", null, "1310", null, "9063", null, "1701", null, "7508", null, "1718", null, "2917", null, "1164", null, "4591", null, "1272", null, "1071", null, "743", null, "3520", null, "1043", null, "0", null, "224", null, "12993", null, "2040", null, "1693", null, "772", null, "2237", null, "775", null, "390", null, "251", null, "1847", null, "709", null, "9063", null, "1701", null, "6582", null, "1419", null, "13919", null, "2256", null, "10594", null, "1938", null, "9907", null, "1986", null, "15901", null, "2286", null, "430", null, "302", null, "606", null, "525", null, "398", null, "285", null, "-999999999", "N", "-999999999", "N", "431", null, "393", null, "2735", null, "942", null, "4626", null, "1410", null, "13954", null, "2202", null, "34445", null, "9273", null, "11438", null, "2030", null, "2266", null, "648", null, "5032", null, "1354", null, "4140", null, "1089", null, "6.5", null, "0.8", null, "45.0", null, "6.1", null, "55.0", null, "6.1", null, "22.5", null, "6.2", null, "33.3", null, "6.0", null, "7.1", null, "3.8", null, "26.2", null, "5.3", null, "44.2", null, "6.4", null, "36.6", null, "6.5", null, "14.2", null, "5.2", null, "22.4", null, "5.5", null, "5.2", null, "3.6", null, "17.2", null, "4.6", null, "0.0", null, "1.0", null, "63.4", null, "6.5", null, "8.3", null, "3.7", null, "10.9", null, "3.5", null, "1.9", null, "1.2", null, "9.0", null, "3.2", null, "44.2", null, "6.4", null, "32.1", null, "5.9", null, "67.9", null, "5.9", null, "51.7", null, "7.1", null, "48.3", null, "7.1", null, "77.6", null, "5.7", null, "2.1", null, "1.5", null, "3.0", null, "2.5", null, "1.9", null, "1.4", null, "-999999999.0", "N", "-999999999.0", "N", "2.1", null, "1.9", null, "13.3", null, "4.2", null, "22.6", null, "6.0", null, "68.1", null, "6.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "19.8", null, "5.1", null, "44.0", null, "8.0", null, "36.2", null, "7.2", null, "293023", null, "4300", null, "119137", null, "3217", null, "173886", null, "3874", null, "150038", null, "4779", null, "31153", null, "2812", null, "11694", null, "1929", null, "19459", null, "2483", null, "111832", null, "4691", null, "71552", null, "3531", null, "54359", null, "3468", null, "16099", null, "2085", null, "6126", null, "1383", null, "9973", null, "1868", null, "1094", null, "549", null, "221471", null, "4156", null, "95679", null, "3861", null, "15054", null, "1706", null, "5568", null, "1247", null, "9486", null, "1335", null, "110738", null, "4558", null, "17289", null, "2503", null, "275734", null, "4396", null, "59262", null, "3479", null, "233761", null, "4607", null, "242658", null, "4607", null, "2855", null, "676", null, "2845", null, "1050", null, "7623", null, "1003", null, "-999999999", "N", "-999999999", "N", "7687", null, "1595", null, "29052", null, "2869", null, "34772", null, "2317", null, "234609", null, "4388", null, "109207", null, "3022", null, "181191", null, "5006", null, "27243", null, "2536", null, "41597", null, "2951", null, "112351", null, "4773", null, "93.5", null, "0.8", null, "40.7", null, "1.0", null, "59.3", null, "1.0", null, "51.2", null, "1.4", null, "10.6", null, "1.0", null, "4.0", null, "0.6", null, "6.6", null, "0.9", null, "38.2", null, "1.5", null, "24.4", null, "1.1", null, "18.6", null, "1.1", null, "5.5", null, "0.7", null, "2.1", null, "0.5", null, "3.4", null, "0.6", null, "0.4", null, "0.2", null, "75.6", null, "1.1", null, "32.7", null, "1.3", null, "5.1", null, "0.6", null, "1.9", null, "0.4", null, "3.2", null, "0.5", null, "37.8", null, "1.4", null, "5.9", null, "0.8", null, "94.1", null, "0.8", null, "20.2", null, "1.1", null, "79.8", null, "1.1", null, "82.8", null, "1.1", null, "1.0", null, "0.2", null, "1.0", null, "0.4", null, "2.6", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "2.6", null, "0.5", null, "9.9", null, "0.9", null, "11.9", null, "0.8", null, "80.1", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.0", null, "1.3", null, "23.0", null, "1.5", null, "62.0", null, "2.0", null, "08", "07"], ["5001900US0808", "Congressional District 8 (119th Congress), Colorado", "276373", null, "4220", null, "97949", null, "3594", null, "178424", null, "4611", null, "139027", null, "5402", null, "50015", null, "4268", null, "19505", null, "2749", null, "30510", null, "3645", null, "87331", null, "4652", null, "91154", null, "4166", null, "61723", null, "3960", null, "28998", null, "3308", null, "10776", null, "1987", null, "18222", null, "2788", null, "433", null, "297", null, "185219", null, "5420", null, "77304", null, "4666", null, "21017", null, "3017", null, "8729", null, "1935", null, "12288", null, "2266", null, "86898", null, "4661", null, "25241", null, "3289", null, "251132", null, "4971", null, "75995", null, "5114", null, "200378", null, "6087", null, "190132", null, "5493", null, "6392", null, "1808", null, "4982", null, "1546", null, "7306", null, "1185", null, "-999999999", "N", "-999999999", "N", "24823", null, "3394", null, "41926", null, "3570", null, "89499", null, "3409", null, "162574", null, "4194", null, "100033", null, "3700", null, "189042", null, "4902", null, "18662", null, "2191", null, "53903", null, "4520", null, "116477", null, "5441", null, "-888888888", "(X)", "-888888888", "(X)", "35.4", null, "1.2", null, "64.6", null, "1.2", null, "50.3", null, "1.9", null, "18.1", null, "1.5", null, "7.1", null, "1.0", null, "11.0", null, "1.3", null, "31.6", null, "1.6", null, "33.0", null, "1.5", null, "22.3", null, "1.5", null, "10.5", null, "1.2", null, "3.9", null, "0.7", null, "6.6", null, "1.0", null, "0.2", null, "0.1", null, "67.0", null, "1.5", null, "28.0", null, "1.6", null, "7.6", null, "1.1", null, "3.2", null, "0.7", null, "4.4", null, "0.8", null, "31.4", null, "1.6", null, "9.1", null, "1.2", null, "90.9", null, "1.2", null, "27.5", null, "1.8", null, "72.5", null, "1.8", null, "68.8", null, "1.7", null, "2.3", null, "0.7", null, "1.8", null, "0.6", null, "2.6", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "9.0", null, "1.2", null, "15.2", null, "1.3", null, "32.4", null, "1.2", null, "58.8", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "9.9", null, "1.1", null, "28.5", null, "2.3", null, "61.6", null, "2.4", null, "28408", null, "3369", null, "9187", null, "1717", null, "19221", null, "2909", null, "7731", null, "1947", null, "12214", null, "2459", null, "3600", null, "1557", null, "8614", null, "1882", null, "8463", null, "1907", null, "13979", null, "2403", null, "6010", null, "1844", null, "7807", null, "1974", null, "2018", null, "1086", null, "5789", null, "1593", null, "162", null, "212", null, "14429", null, "2542", null, "1721", null, "671", null, "4407", null, "1464", null, "1582", null, "1070", null, "2825", null, "1040", null, "8301", null, "1872", null, "8930", null, "2207", null, "19478", null, "2855", null, "14046", null, "2552", null, "14362", null, "2680", null, "15195", null, "2635", null, "1421", null, "1173", null, "781", null, "579", null, "964", null, "626", null, "-999999999", "N", "-999999999", "N", "4229", null, "1313", null, "5606", null, "1689", null, "14335", null, "2406", null, "9968", null, "2058", null, "55735", null, "15122", null, "19945", null, "2896", null, "2235", null, "986", null, "8125", null, "2151", null, "9585", null, "2125", null, "10.3", null, "1.2", null, "32.3", null, "5.3", null, "67.7", null, "5.3", null, "27.2", null, "6.5", null, "43.0", null, "6.4", null, "12.7", null, "5.0", null, "30.3", null, "5.8", null, "29.8", null, "5.8", null, "49.2", null, "6.4", null, "21.2", null, "6.4", null, "27.5", null, "5.9", null, "7.1", null, "3.6", null, "20.4", null, "5.2", null, "0.6", null, "0.8", null, "50.8", null, "6.4", null, "6.1", null, "2.2", null, "15.5", null, "4.7", null, "5.6", null, "3.7", null, "9.9", null, "3.5", null, "29.2", null, "5.7", null, "31.4", null, "6.5", null, "68.6", null, "6.5", null, "49.4", null, "7.1", null, "50.6", null, "7.1", null, "53.5", null, "7.3", null, "5.0", null, "4.0", null, "2.7", null, "2.1", null, "3.4", null, "2.2", null, "-999999999.0", "N", "-999999999.0", "N", "14.9", null, "4.6", null, "19.7", null, "5.1", null, "50.5", null, "6.4", null, "35.1", null, "6.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.2", null, "4.5", null, "40.7", null, "8.8", null, "48.1", null, "9.0", null, "247965", null, "5075", null, "88762", null, "3689", null, "159203", null, "4552", null, "131296", null, "4912", null, "37801", null, "3613", null, "15905", null, "2411", null, "21896", null, "2914", null, "78868", null, "4507", null, "77175", null, "3973", null, "55713", null, "3914", null, "21191", null, "2603", null, "8758", null, "1720", null, "12433", null, "2217", null, "271", null, "200", null, "170790", null, "5749", null, "75583", null, "4705", null, "16610", null, "2784", null, "7147", null, "1754", null, "9463", null, "1950", null, "78597", null, "4499", null, "16311", null, "2554", null, "231654", null, "5049", null, "61949", null, "4198", null, "186016", null, "6384", null, "174937", null, "5768", null, "4971", null, "1376", null, "4201", null, "1420", null, "6342", null, "1181", null, "-999999999", "N", "-999999999", "N", "20594", null, "3220", null, "36320", null, "3332", null, "75164", null, "4005", null, "152606", null, "4714", null, "104665", null, "3708", null, "169097", null, "4488", null, "16427", null, "2027", null, "45778", null, "3899", null, "106892", null, "5286", null, "89.7", null, "1.2", null, "35.8", null, "1.3", null, "64.2", null, "1.3", null, "52.9", null, "1.8", null, "15.2", null, "1.5", null, "6.4", null, "1.0", null, "8.8", null, "1.2", null, "31.8", null, "1.5", null, "31.1", null, "1.6", null, "22.5", null, "1.6", null, "8.5", null, "1.0", null, "3.5", null, "0.7", null, "5.0", null, "0.9", null, "0.1", null, "0.1", null, "68.9", null, "1.6", null, "30.5", null, "1.8", null, "6.7", null, "1.1", null, "2.9", null, "0.7", null, "3.8", null, "0.8", null, "31.7", null, "1.5", null, "6.6", null, "1.0", null, "93.4", null, "1.0", null, "25.0", null, "1.7", null, "75.0", null, "1.7", null, "70.5", null, "1.7", null, "2.0", null, "0.6", null, "1.7", null, "0.6", null, "2.6", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "8.3", null, "1.3", null, "14.6", null, "1.3", null, "30.3", null, "1.5", null, "61.5", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "9.7", null, "1.2", null, "27.1", null, "2.3", null, "63.2", null, "2.4", null, "08", "08"], ["5001900US0901", "Congressional District 1 (119th Congress), Connecticut", "299523", null, "5194", null, "133331", null, "4849", null, "166192", null, "5628", null, "126777", null, "4762", null, "58247", null, "3951", null, "17050", null, "2537", null, "41197", null, "3258", null, "114499", null, "6198", null, "84126", null, "4282", null, "51282", null, "3442", null, "32427", null, "2668", null, "8379", null, "1959", null, "24048", null, "2599", null, "417", null, "367", null, "215397", null, "6717", null, "75495", null, "4300", null, "25820", null, "3160", null, "8671", null, "1872", null, "17149", null, "2329", null, "114082", null, "6206", null, "38413", null, "3669", null, "261110", null, "6173", null, "75407", null, "4536", null, "224116", null, "5834", null, "189803", null, "5150", null, "46094", null, "2962", null, "-999999999", "N", "-999999999", "N", "14391", null, "1639", null, "-999999999", "N", "-999999999", "N", "19468", null, "2731", null, "28816", null, "2985", null, "47828", null, "3357", null, "180115", null, "5108", null, "85466", null, "4286", null, "185024", null, "5319", null, "25890", null, "2294", null, "49378", null, "3490", null, "109756", null, "5072", null, "-888888888", "(X)", "-888888888", "(X)", "44.5", null, "1.5", null, "55.5", null, "1.5", null, "42.3", null, "1.6", null, "19.4", null, "1.3", null, "5.7", null, "0.8", null, "13.8", null, "1.1", null, "38.2", null, "1.8", null, "28.1", null, "1.5", null, "17.1", null, "1.2", null, "10.8", null, "0.9", null, "2.8", null, "0.6", null, "8.0", null, "0.9", null, "0.1", null, "0.1", null, "71.9", null, "1.5", null, "25.2", null, "1.4", null, "8.6", null, "1.0", null, "2.9", null, "0.6", null, "5.7", null, "0.8", null, "38.1", null, "1.8", null, "12.8", null, "1.2", null, "87.2", null, "1.2", null, "25.2", null, "1.5", null, "74.8", null, "1.5", null, "63.4", null, "1.4", null, "15.4", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "4.8", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "6.5", null, "0.9", null, "9.6", null, "1.0", null, "16.0", null, "1.1", null, "60.1", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.0", null, "1.3", null, "26.7", null, "1.7", null, "59.3", null, "2.0", null, "45754", null, "4342", null, "20704", null, "2614", null, "25050", null, "2946", null, "9914", null, "2274", null, "18313", null, "2567", null, "3988", null, "1355", null, "14325", null, "2138", null, "17527", null, "2344", null, "19288", null, "3032", null, "6462", null, "1716", null, "12496", null, "2193", null, "2651", null, "1220", null, "9845", null, "1951", null, "330", null, "352", null, "26466", null, "3188", null, "3452", null, "1353", null, "5817", null, "1378", null, "1337", null, "727", null, "4480", null, "1235", null, "17197", null, "2316", null, "21861", null, "2911", null, "23893", null, "3249", null, "20872", null, "2758", null, "24882", null, "3333", null, "16317", null, "2436", null, "10511", null, "2222", null, "-999999999", "N", "-999999999", "N", "1809", null, "891", null, "-999999999", "N", "-999999999", "N", "8066", null, "2065", null, "8936", null, "1719", null, "18668", null, "2594", null, "12447", null, "2200", null, "24533", null, "3161", null, "28227", null, "3845", null, "5226", null, "1504", null, "12575", null, "2255", null, "10426", null, "2460", null, "15.3", null, "1.4", null, "45.3", null, "3.8", null, "54.7", null, "3.8", null, "21.7", null, "3.8", null, "40.0", null, "4.3", null, "8.7", null, "2.8", null, "31.3", null, "4.1", null, "38.3", null, "4.7", null, "42.2", null, "4.9", null, "14.1", null, "3.3", null, "27.3", null, "4.1", null, "5.8", null, "2.5", null, "21.5", null, "4.0", null, "0.7", null, "0.8", null, "57.8", null, "4.9", null, "7.5", null, "2.7", null, "12.7", null, "2.8", null, "2.9", null, "1.6", null, "9.8", null, "2.6", null, "37.6", null, "4.7", null, "47.8", null, "4.8", null, "52.2", null, "4.8", null, "45.6", null, "4.6", null, "54.4", null, "4.6", null, "35.7", null, "4.8", null, "23.0", null, "4.2", null, "-999999999.0", "N", "-999999999.0", "N", "4.0", null, "1.8", null, "-999999999.0", "N", "-999999999.0", "N", "17.6", null, "4.0", null, "19.5", null, "3.4", null, "40.8", null, "4.6", null, "27.2", null, "4.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.5", null, "4.6", null, "44.5", null, "6.3", null, "36.9", null, "6.6", null, "253769", null, "6047", null, "112627", null, "4605", null, "141142", null, "5870", null, "116863", null, "5008", null, "39934", null, "3540", null, "13062", null, "2342", null, "26872", null, "2840", null, "96972", null, "5907", null, "64838", null, "3997", null, "44820", null, "3389", null, "19931", null, "2363", null, "5728", null, "1479", null, "14203", null, "2046", null, "87", null, "102", null, "188931", null, "6556", null, "72043", null, "4273", null, "20003", null, "2848", null, "7334", null, "1829", null, "12669", null, "2131", null, "96885", null, "5912", null, "16552", null, "2639", null, "237217", null, "6394", null, "54535", null, "3918", null, "199234", null, "6195", null, "173486", null, "5270", null, "35583", null, "3057", null, "-999999999", "N", "-999999999", "N", "12582", null, "1778", null, "-999999999", "N", "-999999999", "N", "11402", null, "2100", null, "19880", null, "2739", null, "29160", null, "2882", null, "167668", null, "5347", null, "98310", null, "3419", null, "156797", null, "5507", null, "20664", null, "1992", null, "36803", null, "3064", null, "99330", null, "4985", null, "84.7", null, "1.4", null, "44.4", null, "1.7", null, "55.6", null, "1.7", null, "46.1", null, "1.9", null, "15.7", null, "1.4", null, "5.1", null, "0.9", null, "10.6", null, "1.1", null, "38.2", null, "2.0", null, "25.6", null, "1.6", null, "17.7", null, "1.4", null, "7.9", null, "0.9", null, "2.3", null, "0.6", null, "5.6", null, "0.8", null, "0.0", null, "0.1", null, "74.4", null, "1.6", null, "28.4", null, "1.6", null, "7.9", null, "1.1", null, "2.9", null, "0.7", null, "5.0", null, "0.8", null, "38.2", null, "2.0", null, "6.5", null, "1.0", null, "93.5", null, "1.0", null, "21.5", null, "1.5", null, "78.5", null, "1.5", null, "68.4", null, "1.5", null, "14.0", null, "1.1", null, "-999999999.0", "N", "-999999999.0", "N", "5.0", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "4.5", null, "0.8", null, "7.8", null, "1.0", null, "11.5", null, "1.1", null, "66.1", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.2", null, "1.3", null, "23.5", null, "1.8", null, "63.3", null, "2.0", null, "09", "01"], ["5001900US0902", "Congressional District 2 (119th Congress), Connecticut", "296990", null, "3944", null, "143093", null, "4089", null, "153897", null, "3626", null, "142794", null, "4168", null, "47434", null, "3798", null, "13119", null, "1995", null, "34315", null, "3066", null, "106762", null, "5109", null, "78626", null, "3843", null, "53008", null, "3103", null, "24661", null, "2916", null, "6845", null, "1471", null, "17816", null, "2370", null, "957", null, "568", null, "218364", null, "5300", null, "89786", null, "3594", null, "22773", null, "2690", null, "6274", null, "1293", null, "16499", null, "2402", null, "105805", null, "5061", null, "26326", null, "3013", null, "270664", null, "4565", null, "74533", null, "4272", null, "222457", null, "4743", null, "248577", null, "4735", null, "8208", null, "1983", null, "1264", null, "548", null, "9829", null, "1450", null, "-999999999", "N", "-999999999", "N", "7463", null, "1436", null, "21557", null, "2711", null, "22667", null, "2202", null, "244317", null, "4683", null, "98155", null, "2681", null, "190228", null, "4606", null, "30146", null, "2313", null, "54276", null, "3624", null, "105806", null, "4256", null, "-888888888", "(X)", "-888888888", "(X)", "48.2", null, "1.1", null, "51.8", null, "1.1", null, "48.1", null, "1.5", null, "16.0", null, "1.3", null, "4.4", null, "0.7", null, "11.6", null, "1.0", null, "35.9", null, "1.5", null, "26.5", null, "1.3", null, "17.8", null, "1.1", null, "8.3", null, "1.0", null, "2.3", null, "0.5", null, "6.0", null, "0.8", null, "0.3", null, "0.2", null, "73.5", null, "1.3", null, "30.2", null, "1.2", null, "7.7", null, "0.9", null, "2.1", null, "0.4", null, "5.6", null, "0.8", null, "35.6", null, "1.5", null, "8.9", null, "1.0", null, "91.1", null, "1.0", null, "25.1", null, "1.4", null, "74.9", null, "1.4", null, "83.7", null, "1.1", null, "2.8", null, "0.7", null, "0.4", null, "0.2", null, "3.3", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "2.5", null, "0.5", null, "7.3", null, "0.9", null, "7.6", null, "0.7", null, "82.3", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.8", null, "1.1", null, "28.5", null, "1.7", null, "55.6", null, "1.9", null, "27546", null, "2766", null, "13545", null, "1692", null, "14001", null, "2241", null, "4388", null, "1011", null, "11746", null, "2215", null, "2476", null, "1014", null, "9270", null, "1858", null, "11412", null, "1870", null, "10031", null, "1976", null, "2242", null, "811", null, "7651", null, "1895", null, "1682", null, "772", null, "5969", null, "1614", null, "138", null, "163", null, "17515", null, "2261", null, "2146", null, "622", null, "4095", null, "1061", null, "794", null, "503", null, "3301", null, "885", null, "11274", null, "1863", null, "9412", null, "2032", null, "18134", null, "2264", null, "14236", null, "2066", null, "13310", null, "2134", null, "20555", null, "2125", null, "1671", null, "922", null, "50", null, "65", null, "463", null, "324", null, "-999999999", "N", "-999999999", "N", "1527", null, "732", null, "3280", null, "1275", null, "4537", null, "1179", null, "19641", null, "2060", null, "32980", null, "5133", null, "16134", null, "2253", null, "3398", null, "1032", null, "7958", null, "1666", null, "4778", null, "1062", null, "9.3", null, "0.9", null, "49.2", null, "5.2", null, "50.8", null, "5.2", null, "15.9", null, "3.8", null, "42.6", null, "6.0", null, "9.0", null, "3.5", null, "33.7", null, "5.4", null, "41.4", null, "5.5", null, "36.4", null, "5.8", null, "8.1", null, "3.1", null, "27.8", null, "5.6", null, "6.1", null, "2.7", null, "21.7", null, "4.9", null, "0.5", null, "0.6", null, "63.6", null, "5.8", null, "7.8", null, "2.1", null, "14.9", null, "3.7", null, "2.9", null, "1.8", null, "12.0", null, "3.2", null, "40.9", null, "5.5", null, "34.2", null, "6.0", null, "65.8", null, "6.0", null, "51.7", null, "5.8", null, "48.3", null, "5.8", null, "74.6", null, "4.8", null, "6.1", null, "3.2", null, "0.2", null, "0.2", null, "1.7", null, "1.1", null, "-999999999.0", "N", "-999999999.0", "N", "5.5", null, "2.6", null, "11.9", null, "4.3", null, "16.5", null, "3.7", null, "71.3", null, "4.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "21.1", null, "5.2", null, "49.3", null, "7.0", null, "29.6", null, "6.3", null, "269444", null, "4481", null, "129548", null, "3957", null, "139896", null, "3731", null, "138406", null, "4189", null, "35688", null, "3082", null, "10643", null, "1770", null, "25045", null, "2652", null, "95350", null, "4479", null, "68595", null, "3521", null, "50766", null, "3064", null, "17010", null, "2200", null, "5163", null, "1234", null, "11847", null, "1936", null, "819", null, "527", null, "200849", null, "5127", null, "87640", null, "3602", null, "18678", null, "2613", null, "5480", null, "1218", null, "13198", null, "2379", null, "94531", null, "4435", null, "16914", null, "2334", null, "252530", null, "4632", null, "60297", null, "3584", null, "209147", null, "5163", null, "228022", null, "4698", null, "6537", null, "1673", null, "1214", null, "545", null, "9366", null, "1474", null, "-999999999", "N", "-999999999", "N", "5936", null, "1414", null, "18277", null, "2684", null, "18130", null, "2194", null, "224676", null, "4642", null, "103847", null, "2494", null, "174094", null, "4457", null, "26748", null, "2113", null, "46318", null, "2846", null, "101028", null, "4042", null, "90.7", null, "0.9", null, "48.1", null, "1.2", null, "51.9", null, "1.2", null, "51.4", null, "1.5", null, "13.2", null, "1.1", null, "3.9", null, "0.7", null, "9.3", null, "1.0", null, "35.4", null, "1.5", null, "25.5", null, "1.3", null, "18.8", null, "1.2", null, "6.3", null, "0.8", null, "1.9", null, "0.5", null, "4.4", null, "0.7", null, "0.3", null, "0.2", null, "74.5", null, "1.3", null, "32.5", null, "1.2", null, "6.9", null, "1.0", null, "2.0", null, "0.5", null, "4.9", null, "0.9", null, "35.1", null, "1.4", null, "6.3", null, "0.9", null, "93.7", null, "0.9", null, "22.4", null, "1.3", null, "77.6", null, "1.3", null, "84.6", null, "1.2", null, "2.4", null, "0.6", null, "0.5", null, "0.2", null, "3.5", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "2.2", null, "0.5", null, "6.8", null, "1.0", null, "6.7", null, "0.8", null, "83.4", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.4", null, "1.1", null, "26.6", null, "1.5", null, "58.0", null, "1.7", null, "09", "02"], ["5001900US0903", "Congressional District 3 (119th Congress), Connecticut", "298933", null, "4988", null, "131896", null, "4791", null, "167037", null, "5261", null, "121816", null, "5328", null, "59825", null, "4707", null, "17364", null, "2563", null, "42461", null, "3695", null, "117292", null, "4670", null, "73495", null, "4541", null, "45948", null, "4202", null, "27020", null, "3231", null, "6859", null, "1510", null, "20161", null, "2979", null, "527", null, "499", null, "225438", null, "6258", null, "75868", null, "3921", null, "32805", null, "3787", null, "10505", null, "2012", null, "22300", null, "2875", null, "116765", null, "4708", null, "33574", null, "3899", null, "265359", null, "5977", null, "72661", null, "4540", null, "226272", null, "5700", null, "200819", null, "4829", null, "38374", null, "3117", null, "965", null, "502", null, "11526", null, "1541", null, "-999999999", "N", "-999999999", "N", "21899", null, "2882", null, "25299", null, "3403", null, "45528", null, "2950", null, "194381", null, "4656", null, "91435", null, "3194", null, "181641", null, "4839", null, "24573", null, "2682", null, "50324", null, "3649", null, "106744", null, "5029", null, "-888888888", "(X)", "-888888888", "(X)", "44.1", null, "1.5", null, "55.9", null, "1.5", null, "40.8", null, "1.8", null, "20.0", null, "1.5", null, "5.8", null, "0.8", null, "14.2", null, "1.2", null, "39.2", null, "1.4", null, "24.6", null, "1.5", null, "15.4", null, "1.4", null, "9.0", null, "1.1", null, "2.3", null, "0.5", null, "6.7", null, "1.0", null, "0.2", null, "0.2", null, "75.4", null, "1.5", null, "25.4", null, "1.3", null, "11.0", null, "1.2", null, "3.5", null, "0.7", null, "7.5", null, "0.9", null, "39.1", null, "1.4", null, "11.2", null, "1.3", null, "88.8", null, "1.3", null, "24.3", null, "1.5", null, "75.7", null, "1.5", null, "67.2", null, "1.4", null, "12.8", null, "1.0", null, "0.3", null, "0.2", null, "3.9", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "7.3", null, "0.9", null, "8.5", null, "1.1", null, "15.2", null, "0.9", null, "65.0", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.5", null, "1.5", null, "27.7", null, "1.9", null, "58.8", null, "2.1", null, "37352", null, "4497", null, "17937", null, "2564", null, "19415", null, "3563", null, "7747", null, "1794", null, "14335", null, "2795", null, "2321", null, "950", null, "12014", null, "2565", null, "15270", null, "2810", null, "13411", null, "2782", null, "4258", null, "1301", null, "8878", null, "2265", null, "1338", null, "803", null, "7540", null, "2056", null, "275", null, "445", null, "23941", null, "3553", null, "3489", null, "1292", null, "5457", null, "1493", null, "983", null, "515", null, "4474", null, "1447", null, "14995", null, "2815", null, "14735", null, "2813", null, "22617", null, "3601", null, "17753", null, "3168", null, "19599", null, "3341", null, "16703", null, "2631", null, "10001", null, "2031", null, "288", null, "228", null, "698", null, "551", null, "-999999999", "N", "-999999999", "N", "4810", null, "1516", null, "4852", null, "1451", null, "9238", null, "1727", null, "15819", null, "2723", null, "26978", null, "11017", null, "22082", null, "3326", null, "5556", null, "1543", null, "10558", null, "2455", null, "5968", null, "1567", null, "12.5", null, "1.5", null, "48.0", null, "5.7", null, "52.0", null, "5.7", null, "20.7", null, "4.3", null, "38.4", null, "5.7", null, "6.2", null, "2.5", null, "32.2", null, "5.4", null, "40.9", null, "5.6", null, "35.9", null, "5.9", null, "11.4", null, "3.4", null, "23.8", null, "5.0", null, "3.6", null, "2.1", null, "20.2", null, "4.7", null, "0.7", null, "1.2", null, "64.1", null, "5.9", null, "9.3", null, "3.3", null, "14.6", null, "3.8", null, "2.6", null, "1.4", null, "12.0", null, "3.7", null, "40.1", null, "5.6", null, "39.4", null, "6.0", null, "60.6", null, "6.0", null, "47.5", null, "6.3", null, "52.5", null, "6.3", null, "44.7", null, "5.0", null, "26.8", null, "4.2", null, "0.8", null, "0.6", null, "1.9", null, "1.4", null, "-999999999.0", "N", "-999999999.0", "N", "12.9", null, "3.9", null, "13.0", null, "3.5", null, "24.7", null, "4.4", null, "42.4", null, "5.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "25.2", null, "6.0", null, "47.8", null, "7.1", null, "27.0", null, "6.7", null, "261581", null, "6076", null, "113959", null, "4508", null, "147622", null, "5510", null, "114069", null, "5217", null, "45490", null, "4472", null, "15043", null, "2421", null, "30447", null, "3590", null, "102022", null, "4639", null, "60084", null, "4374", null, "41690", null, "3983", null, "18142", null, "2828", null, "5521", null, "1378", null, "12621", null, "2617", null, "252", null, "239", null, "201497", null, "6268", null, "72379", null, "3809", null, "27348", null, "3515", null, "9522", null, "1928", null, "17826", null, "2637", null, "101770", null, "4632", null, "18839", null, "2758", null, "242742", null, "6058", null, "54908", null, "3616", null, "206673", null, "5908", null, "184116", null, "5442", null, "28373", null, "2783", null, "677", null, "472", null, "10828", null, "1504", null, "-999999999", "N", "-999999999", "N", "17089", null, "2697", null, "20447", null, "2958", null, "36290", null, "2912", null, "178562", null, "5355", null, "100859", null, "2196", null, "159559", null, "5430", null, "19017", null, "2235", null, "39766", null, "3088", null, "100776", null, "4891", null, "87.5", null, "1.5", null, "43.6", null, "1.5", null, "56.4", null, "1.5", null, "43.6", null, "1.8", null, "17.4", null, "1.6", null, "5.8", null, "0.9", null, "11.6", null, "1.3", null, "39.0", null, "1.5", null, "23.0", null, "1.6", null, "15.9", null, "1.5", null, "6.9", null, "1.1", null, "2.1", null, "0.5", null, "4.8", null, "1.0", null, "0.1", null, "0.1", null, "77.0", null, "1.6", null, "27.7", null, "1.3", null, "10.5", null, "1.3", null, "3.6", null, "0.7", null, "6.8", null, "1.0", null, "38.9", null, "1.5", null, "7.2", null, "1.0", null, "92.8", null, "1.0", null, "21.0", null, "1.3", null, "79.0", null, "1.3", null, "70.4", null, "1.5", null, "10.8", null, "1.0", null, "0.3", null, "0.2", null, "4.1", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "6.5", null, "1.0", null, "7.8", null, "1.1", null, "13.9", null, "1.1", null, "68.3", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.9", null, "1.3", null, "24.9", null, "1.8", null, "63.2", null, "2.1", null, "09", "03"], ["5001900US0904", "Congressional District 4 (119th Congress), Connecticut", "269308", null, "3188", null, "118627", null, "3984", null, "150681", null, "3822", null, "135157", null, "4282", null, "46429", null, "3498", null, "12760", null, "1917", null, "33669", null, "3161", null, "87722", null, "4524", null, "84500", null, "3903", null, "57803", null, "3088", null, "25444", null, "3118", null, "6363", null, "1597", null, "19081", null, "2615", null, "1253", null, "794", null, "184808", null, "4798", null, "77354", null, "3630", null, "20985", null, "2712", null, "6397", null, "1494", null, "14588", null, "2254", null, "86469", null, "4653", null, "26683", null, "3027", null, "242625", null, "4217", null, "55119", null, "3257", null, "214189", null, "4586", null, "166991", null, "3763", null, "30170", null, "3200", null, "2071", null, "853", null, "16055", null, "1773", null, "-999999999", "N", "-999999999", "N", "24890", null, "2980", null, "29131", null, "2821", null, "53299", null, "2946", null, "161161", null, "3617", null, "122642", null, "4100", null, "181586", null, "4389", null, "20556", null, "2348", null, "56849", null, "4346", null, "104181", null, "4278", null, "-888888888", "(X)", "-888888888", "(X)", "44.0", null, "1.3", null, "56.0", null, "1.3", null, "50.2", null, "1.6", null, "17.2", null, "1.3", null, "4.7", null, "0.7", null, "12.5", null, "1.2", null, "32.6", null, "1.6", null, "31.4", null, "1.5", null, "21.5", null, "1.2", null, "9.4", null, "1.1", null, "2.4", null, "0.6", null, "7.1", null, "1.0", null, "0.5", null, "0.3", null, "68.6", null, "1.5", null, "28.7", null, "1.3", null, "7.8", null, "1.0", null, "2.4", null, "0.6", null, "5.4", null, "0.8", null, "32.1", null, "1.6", null, "9.9", null, "1.1", null, "90.1", null, "1.1", null, "20.5", null, "1.2", null, "79.5", null, "1.2", null, "62.0", null, "1.4", null, "11.2", null, "1.1", null, "0.8", null, "0.3", null, "6.0", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "9.2", null, "1.1", null, "10.8", null, "1.0", null, "19.8", null, "1.1", null, "59.8", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.3", null, "1.3", null, "31.3", null, "2.1", null, "57.4", null, "2.1", null, "25296", null, "2834", null, "12549", null, "2120", null, "12747", null, "2038", null, "3760", null, "1112", null, "12218", null, "2139", null, "2117", null, "930", null, "10101", null, "1898", null, "9318", null, "1812", null, "9303", null, "1734", null, "1796", null, "745", null, "7507", null, "1722", null, "892", null, "530", null, "6615", null, "1608", null, "0", null, "225", null, "15993", null, "2247", null, "1964", null, "833", null, "4711", null, "1322", null, "1225", null, "765", null, "3486", null, "998", null, "9318", null, "1812", null, "10766", null, "2148", null, "14530", null, "2247", null, "12290", null, "1866", null, "13006", null, "2051", null, "6397", null, "1282", null, "8022", null, "1801", null, "374", null, "409", null, "920", null, "504", null, "-999999999", "N", "-999999999", "N", "3784", null, "1152", null, "5799", null, "1350", null, "10114", null, "1723", null, "5638", null, "1154", null, "27366", null, "12100", null, "15978", null, "2262", null, "2732", null, "995", null, "7162", null, "1822", null, "6084", null, "1270", null, "9.4", null, "1.1", null, "49.6", null, "6.0", null, "50.4", null, "6.0", null, "14.9", null, "4.4", null, "48.3", null, "5.9", null, "8.4", null, "3.5", null, "39.9", null, "5.7", null, "36.8", null, "5.7", null, "36.8", null, "5.4", null, "7.1", null, "3.0", null, "29.7", null, "5.5", null, "3.5", null, "2.1", null, "26.2", null, "5.2", null, "0.0", null, "0.8", null, "63.2", null, "5.4", null, "7.8", null, "3.2", null, "18.6", null, "4.8", null, "4.8", null, "2.9", null, "13.8", null, "3.8", null, "36.8", null, "5.7", null, "42.6", null, "6.6", null, "57.4", null, "6.6", null, "48.6", null, "5.3", null, "51.4", null, "5.3", null, "25.3", null, "4.5", null, "31.7", null, "5.4", null, "1.5", null, "1.6", null, "3.6", null, "2.0", null, "-999999999.0", "N", "-999999999.0", "N", "15.0", null, "4.3", null, "22.9", null, "5.0", null, "40.0", null, "5.5", null, "22.3", null, "4.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.1", null, "5.6", null, "44.8", null, "8.4", null, "38.1", null, "7.3", null, "244012", null, "4209", null, "106078", null, "3844", null, "137934", null, "4435", null, "131397", null, "4124", null, "34211", null, "2849", null, "10643", null, "1713", null, "23568", null, "2701", null, "78404", null, "4408", null, "75197", null, "3857", null, "56007", null, "3111", null, "17937", null, "2437", null, "5471", null, "1547", null, "12466", null, "2031", null, "1253", null, "794", null, "168815", null, "5109", null, "75390", null, "3435", null, "16274", null, "2224", null, "5172", null, "1242", null, "11102", null, "1905", null, "77151", null, "4489", null, "15917", null, "2439", null, "228095", null, "4507", null, "42829", null, "3029", null, "201183", null, "5095", null, "160594", null, "3978", null, "22148", null, "2926", null, "1697", null, "754", null, "15135", null, "1733", null, "-999999999", "N", "-999999999", "N", "21106", null, "2979", null, "23332", null, "2536", null, "43185", null, "2937", null, "155523", null, "3795", null, "135541", null, "6594", null, "165608", null, "4414", null, "17824", null, "1997", null, "49687", null, "4015", null, "98097", null, "4173", null, "90.6", null, "1.1", null, "43.5", null, "1.5", null, "56.5", null, "1.5", null, "53.8", null, "1.6", null, "14.0", null, "1.1", null, "4.4", null, "0.7", null, "9.7", null, "1.1", null, "32.1", null, "1.6", null, "30.8", null, "1.6", null, "23.0", null, "1.3", null, "7.4", null, "1.0", null, "2.2", null, "0.6", null, "5.1", null, "0.8", null, "0.5", null, "0.3", null, "69.2", null, "1.6", null, "30.9", null, "1.4", null, "6.7", null, "0.9", null, "2.1", null, "0.5", null, "4.5", null, "0.8", null, "31.6", null, "1.6", null, "6.5", null, "1.0", null, "93.5", null, "1.0", null, "17.6", null, "1.3", null, "82.4", null, "1.3", null, "65.8", null, "1.6", null, "9.1", null, "1.1", null, "0.7", null, "0.3", null, "6.2", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "8.6", null, "1.2", null, "9.6", null, "1.0", null, "17.7", null, "1.1", null, "63.7", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.8", null, "1.2", null, "30.0", null, "2.2", null, "59.2", null, "2.1", null, "09", "04"], ["5001900US0905", "Congressional District 5 (119th Congress), Connecticut", "290481", null, "5992", null, "139741", null, "5675", null, "150740", null, "5289", null, "136635", null, "5426", null, "49154", null, "4698", null, "15447", null, "2998", null, "33707", null, "3651", null, "104692", null, "6753", null, "81498", null, "4374", null, "51571", null, "3578", null, "29298", null, "3651", null, "8311", null, "2166", null, "20987", null, "2745", null, "629", null, "496", null, "208983", null, "6941", null, "85064", null, "4557", null, "19856", null, "2934", null, "7136", null, "1952", null, "12720", null, "2328", null, "104063", null, "6679", null, "34536", null, "4077", null, "255945", null, "6432", null, "78924", null, "4307", null, "211557", null, "6173", null, "205517", null, "6297", null, "24715", null, "3525", null, "426", null, "262", null, "10301", null, "1643", null, "-999999999", "N", "-999999999", "N", "19250", null, "3078", null, "30138", null, "3646", null, "50185", null, "4056", null, "193399", null, "5743", null, "92097", null, "2974", null, "185789", null, "6034", null, "26481", null, "2327", null, "53366", null, "4747", null, "105942", null, "4871", null, "-888888888", "(X)", "-888888888", "(X)", "48.1", null, "1.6", null, "51.9", null, "1.6", null, "47.0", null, "1.9", null, "16.9", null, "1.6", null, "5.3", null, "1.0", null, "11.6", null, "1.2", null, "36.0", null, "2.0", null, "28.1", null, "1.5", null, "17.8", null, "1.3", null, "10.1", null, "1.2", null, "2.9", null, "0.7", null, "7.2", null, "0.9", null, "0.2", null, "0.2", null, "71.9", null, "1.5", null, "29.3", null, "1.5", null, "6.8", null, "1.0", null, "2.5", null, "0.7", null, "4.4", null, "0.8", null, "35.8", null, "2.0", null, "11.9", null, "1.4", null, "88.1", null, "1.4", null, "27.2", null, "1.4", null, "72.8", null, "1.4", null, "70.8", null, "1.6", null, "8.5", null, "1.2", null, "0.1", null, "0.1", null, "3.5", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "6.6", null, "1.0", null, "10.4", null, "1.3", null, "17.3", null, "1.3", null, "66.6", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.3", null, "1.2", null, "28.7", null, "2.1", null, "57.0", null, "2.3", null, "37485", null, "4449", null, "16825", null, "3035", null, "20660", null, "3374", null, "7353", null, "1627", null, "14723", null, "3042", null, "2765", null, "1227", null, "11958", null, "2667", null, "15409", null, "2928", null, "14465", null, "2643", null, "3409", null, "1166", null, "11056", null, "2569", null, "1630", null, "1022", null, "9426", null, "2391", null, "0", null, "225", null, "23020", null, "3722", null, "3944", null, "1240", null, "3667", null, "1197", null, "1135", null, "685", null, "2532", null, "963", null, "15409", null, "2928", null, "17428", null, "2874", null, "20057", null, "2986", null, "21287", null, "3433", null, "16198", null, "2837", null, "19653", null, "3296", null, "5366", null, "1712", null, "119", null, "145", null, "353", null, "300", null, "-999999999", "N", "-999999999", "N", "5898", null, "1753", null, "5962", null, "1438", null, "15707", null, "3210", null, "15111", null, "2579", null, "22852", null, "3795", null, "22076", null, "3185", null, "4838", null, "1464", null, "9888", null, "2208", null, "7350", null, "1638", null, "12.9", null, "1.5", null, "44.9", null, "6.1", null, "55.1", null, "6.1", null, "19.6", null, "4.3", null, "39.3", null, "6.3", null, "7.4", null, "3.1", null, "31.9", null, "6.0", null, "41.1", null, "5.6", null, "38.6", null, "5.9", null, "9.1", null, "3.2", null, "29.5", null, "5.9", null, "4.3", null, "2.7", null, "25.1", null, "5.7", null, "0.0", null, "0.6", null, "61.4", null, "5.9", null, "10.5", null, "3.2", null, "9.8", null, "2.8", null, "3.0", null, "1.7", null, "6.8", null, "2.4", null, "41.1", null, "5.6", null, "46.5", null, "5.1", null, "53.5", null, "5.1", null, "56.8", null, "5.8", null, "43.2", null, "5.8", null, "52.4", null, "5.8", null, "14.3", null, "4.5", null, "0.3", null, "0.4", null, "0.9", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "15.7", null, "4.1", null, "15.9", null, "3.4", null, "41.9", null, "6.1", null, "40.3", null, "5.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "21.9", null, "5.9", null, "44.8", null, "6.8", null, "33.3", null, "6.5", null, "252996", null, "6165", null, "122916", null, "5094", null, "130080", null, "5380", null, "129282", null, "5241", null, "34431", null, "3477", null, "12682", null, "2519", null, "21749", null, "2680", null, "89283", null, "5976", null, "67033", null, "4212", null, "48162", null, "3516", null, "18242", null, "2668", null, "6681", null, "1740", null, "11561", null, "1983", null, "629", null, "496", null, "185963", null, "6839", null, "81120", null, "4555", null, "16189", null, "2619", null, "6001", null, "1808", null, "10188", null, "2100", null, "88654", null, "5903", null, "17108", null, "2830", null, "235888", null, "6394", null, "57637", null, "4418", null, "195359", null, "5907", null, "185864", null, "6095", null, "19349", null, "3265", null, "307", null, "218", null, "9948", null, "1598", null, "-999999999", "N", "-999999999", "N", "13352", null, "2563", null, "24176", null, "3415", null, "34478", null, "3414", null, "178288", null, "5693", null, "101834", null, "3226", null, "163713", null, "5811", null, "21643", null, "1857", null, "43478", null, "4126", null, "98592", null, "4946", null, "87.1", null, "1.5", null, "48.6", null, "1.7", null, "51.4", null, "1.7", null, "51.1", null, "1.9", null, "13.6", null, "1.3", null, "5.0", null, "1.0", null, "8.6", null, "1.0", null, "35.3", null, "2.0", null, "26.5", null, "1.7", null, "19.0", null, "1.4", null, "7.2", null, "1.0", null, "2.6", null, "0.7", null, "4.6", null, "0.8", null, "0.2", null, "0.2", null, "73.5", null, "1.7", null, "32.1", null, "1.6", null, "6.4", null, "1.0", null, "2.4", null, "0.7", null, "4.0", null, "0.8", null, "35.0", null, "2.0", null, "6.8", null, "1.1", null, "93.2", null, "1.1", null, "22.8", null, "1.6", null, "77.2", null, "1.6", null, "73.5", null, "1.7", null, "7.6", null, "1.3", null, "0.1", null, "0.1", null, "3.9", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "5.3", null, "1.0", null, "9.6", null, "1.3", null, "13.6", null, "1.3", null, "70.5", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.2", null, "1.1", null, "26.6", null, "2.2", null, "60.2", null, "2.3", null, "09", "05"], ["5001900US1000", "Congressional District (at Large) (119th Congress), Delaware", "412304", null, "3893", null, "205711", null, "3019", null, "206593", null, "4543", null, "196270", null, "6120", null, "75129", null, "4795", null, "17611", null, "2836", null, "57518", null, "4002", null, "140905", null, "5975", null, "112262", null, "5257", null, "67554", null, "4526", null, "43496", null, "4181", null, "9540", null, "2200", null, "33956", null, "3541", null, "1212", null, "737", null, "300042", null, "5581", null, "128716", null, "4618", null, "31633", null, "3039", null, "8071", null, "1604", null, "23562", null, "2600", null, "139693", null, "5943", null, "41375", null, "4060", null, "370929", null, "4929", null, "114241", null, "5623", null, "298063", null, "5844", null, "270628", null, "4069", null, "80924", null, "3635", null, "1439", null, "615", null, "17391", null, "1327", null, "-999999999", "N", "-999999999", "N", "14740", null, "2309", null, "26850", null, "2646", null, "31952", null, "2028", null, "265916", null, "3915", null, "87534", null, "2747", null, "271399", null, "6557", null, "48931", null, "3094", null, "75842", null, "4607", null, "146626", null, "5871", null, "-888888888", "(X)", "-888888888", "(X)", "49.9", null, "0.8", null, "50.1", null, "0.8", null, "47.6", null, "1.4", null, "18.2", null, "1.1", null, "4.3", null, "0.7", null, "14.0", null, "1.0", null, "34.2", null, "1.4", null, "27.2", null, "1.2", null, "16.4", null, "1.1", null, "10.5", null, "1.0", null, "2.3", null, "0.5", null, "8.2", null, "0.9", null, "0.3", null, "0.2", null, "72.8", null, "1.2", null, "31.2", null, "1.1", null, "7.7", null, "0.7", null, "2.0", null, "0.4", null, "5.7", null, "0.6", null, "33.9", null, "1.4", null, "10.0", null, "1.0", null, "90.0", null, "1.0", null, "27.7", null, "1.3", null, "72.3", null, "1.3", null, "65.6", null, "0.8", null, "19.6", null, "0.9", null, "0.3", null, "0.1", null, "4.2", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "3.6", null, "0.6", null, "6.5", null, "0.6", null, "7.7", null, "0.5", null, "64.5", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.0", null, "1.0", null, "27.9", null, "1.6", null, "54.0", null, "1.7", null, "41214", null, "4056", null, "18164", null, "2382", null, "23050", null, "3551", null, "8019", null, "1676", null, "18656", null, "2981", null, "2715", null, "1054", null, "15941", null, "2853", null, "14539", null, "2274", null, "18655", null, "3090", null, "5388", null, "1559", null, "13213", null, "2561", null, "1570", null, "774", null, "11643", null, "2408", null, "54", null, "94", null, "22559", null, "2724", null, "2631", null, "919", null, "5443", null, "1410", null, "1145", null, "685", null, "4298", null, "1317", null, "14485", null, "2279", null, "16004", null, "2927", null, "25210", null, "3277", null, "19906", null, "2930", null, "21308", null, "2977", null, "19324", null, "2365", null, "14592", null, "2508", null, "177", null, "210", null, "1138", null, "546", null, "-999999999", "N", "-999999999", "N", "2044", null, "850", null, "3939", null, "1483", null, "3901", null, "1197", null, "19124", null, "2359", null, "31543", null, "3648", null, "26675", null, "3308", null, "4106", null, "1321", null, "12416", null, "2133", null, "10153", null, "2295", null, "10.0", null, "1.0", null, "44.1", null, "5.2", null, "55.9", null, "5.2", null, "19.5", null, "3.7", null, "45.3", null, "5.3", null, "6.6", null, "2.6", null, "38.7", null, "5.0", null, "35.3", null, "4.5", null, "45.3", null, "5.2", null, "13.1", null, "3.4", null, "32.1", null, "4.9", null, "3.8", null, "1.9", null, "28.3", null, "4.7", null, "0.1", null, "0.2", null, "54.7", null, "5.2", null, "6.4", null, "2.3", null, "13.2", null, "3.3", null, "2.8", null, "1.7", null, "10.4", null, "3.0", null, "35.1", null, "4.5", null, "38.8", null, "5.7", null, "61.2", null, "5.7", null, "48.3", null, "5.2", null, "51.7", null, "5.2", null, "46.9", null, "4.6", null, "35.4", null, "4.8", null, "0.4", null, "0.5", null, "2.8", null, "1.3", null, "-999999999.0", "N", "-999999999.0", "N", "5.0", null, "1.9", null, "9.6", null, "3.5", null, "9.5", null, "2.6", null, "46.4", null, "4.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.4", null, "4.6", null, "46.5", null, "6.4", null, "38.1", null, "6.6", null, "371090", null, "5547", null, "187547", null, "3431", null, "183543", null, "5270", null, "188251", null, "5609", null, "56473", null, "4012", null, "14896", null, "2593", null, "41577", null, "3219", null, "126366", null, "6072", null, "93607", null, "4608", null, "62166", null, "3922", null, "30283", null, "3402", null, "7970", null, "1995", null, "22313", null, "2749", null, "1158", null, "708", null, "277483", null, "5657", null, "126085", null, "4574", null, "26190", null, "2631", null, "6926", null, "1428", null, "19264", null, "2252", null, "125208", null, "6019", null, "25371", null, "3216", null, "345719", null, "5732", null, "94335", null, "5334", null, "276755", null, "6460", null, "251304", null, "4278", null, "66332", null, "3924", null, "1262", null, "570", null, "16253", null, "1358", null, "-999999999", "N", "-999999999", "N", "12696", null, "2266", null, "22911", null, "2671", null, "28051", null, "2070", null, "246792", null, "4165", null, "92493", null, "2908", null, "244724", null, "5904", null, "44825", null, "2677", null, "63426", null, "3992", null, "136473", null, "5490", null, "90.0", null, "1.0", null, "50.5", null, "0.9", null, "49.5", null, "0.9", null, "50.7", null, "1.5", null, "15.2", null, "1.0", null, "4.0", null, "0.7", null, "11.2", null, "0.8", null, "34.1", null, "1.5", null, "25.2", null, "1.1", null, "16.8", null, "1.0", null, "8.2", null, "0.9", null, "2.1", null, "0.5", null, "6.0", null, "0.7", null, "0.3", null, "0.2", null, "74.8", null, "1.1", null, "34.0", null, "1.3", null, "7.1", null, "0.7", null, "1.9", null, "0.4", null, "5.2", null, "0.6", null, "33.7", null, "1.4", null, "6.8", null, "0.8", null, "93.2", null, "0.8", null, "25.4", null, "1.4", null, "74.6", null, "1.4", null, "67.7", null, "0.9", null, "17.9", null, "1.0", null, "0.3", null, "0.2", null, "4.4", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "3.4", null, "0.6", null, "6.2", null, "0.7", null, "7.6", null, "0.5", null, "66.5", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.3", null, "1.0", null, "25.9", null, "1.5", null, "55.8", null, "1.7", null, "10", "00"], ["5001900US1198", "Delegate District (at Large) (119th Congress), District of Columbia", "329687", null, "4510", null, "91294", null, "3087", null, "238393", null, "4761", null, "82541", null, "4360", null, "54700", null, "4940", null, "12050", null, "2497", null, "42650", null, "4292", null, "192446", null, "6660", null, "65036", null, "4589", null, "32720", null, "3064", null, "32316", null, "3862", null, "4876", null, "1527", null, "27440", null, "3780", null, "0", null, "247", null, "264651", null, "6071", null, "49821", null, "3313", null, "22384", null, "2914", null, "7174", null, "2055", null, "15210", null, "2438", null, "192446", null, "6660", null, "49443", null, "4336", null, "280244", null, "5718", null, "69787", null, "5332", null, "259900", null, "6283", null, "138012", null, "3136", null, "130193", null, "3829", null, "1548", null, "697", null, "18865", null, "1314", null, "-999999999", "N", "-999999999", "N", "11252", null, "2272", null, "29777", null, "3382", null, "32707", null, "2413", null, "133377", null, "2764", null, "109707", null, "4149", null, "137241", null, "5706", null, "17723", null, "3117", null, "42994", null, "4415", null, "76524", null, "4502", null, "-888888888", "(X)", "-888888888", "(X)", "27.7", null, "0.9", null, "72.3", null, "0.9", null, "25.0", null, "1.3", null, "16.6", null, "1.5", null, "3.7", null, "0.8", null, "12.9", null, "1.3", null, "58.4", null, "1.7", null, "19.7", null, "1.4", null, "9.9", null, "0.9", null, "9.8", null, "1.2", null, "1.5", null, "0.5", null, "8.3", null, "1.1", null, "0.0", null, "0.1", null, "80.3", null, "1.4", null, "15.1", null, "1.0", null, "6.8", null, "0.9", null, "2.2", null, "0.6", null, "4.6", null, "0.7", null, "58.4", null, "1.7", null, "15.0", null, "1.3", null, "85.0", null, "1.3", null, "21.2", null, "1.6", null, "78.8", null, "1.6", null, "41.9", null, "0.9", null, "39.5", null, "1.1", null, "0.5", null, "0.2", null, "5.7", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "3.4", null, "0.7", null, "9.0", null, "1.0", null, "9.9", null, "0.7", null, "40.5", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.9", null, "2.1", null, "31.3", null, "2.9", null, "55.8", null, "2.8", null, "52355", null, "5190", null, "19686", null, "3048", null, "32669", null, "4068", null, "4736", null, "1827", null, "23067", null, "3802", null, "3987", null, "1733", null, "19080", null, "3196", null, "24552", null, "3813", null, "18217", null, "3101", null, "2634", null, "1276", null, "15583", null, "2967", null, "1349", null, "874", null, "14234", null, "2926", null, "0", null, "247", null, "34138", null, "4234", null, "2102", null, "1029", null, "7484", null, "2308", null, "2638", null, "1583", null, "4846", null, "1728", null, "24552", null, "3813", null, "27113", null, "4046", null, "25242", null, "4043", null, "24735", null, "3858", null, "27620", null, "3766", null, "2405", null, "839", null, "43818", null, "4691", null, "469", null, "494", null, "823", null, "684", null, "-999999999", "N", "-999999999", "N", "1857", null, "944", null, "2943", null, "1217", null, "2648", null, "1425", null, "2225", null, "823", null, "22227", null, "2734", null, "27803", null, "4059", null, "8962", null, "2723", null, "13279", null, "2991", null, "5562", null, "2086", null, "15.9", null, "1.6", null, "37.6", null, "4.6", null, "62.4", null, "4.6", null, "9.0", null, "3.5", null, "44.1", null, "5.4", null, "7.6", null, "3.1", null, "36.4", null, "5.1", null, "46.9", null, "5.7", null, "34.8", null, "4.8", null, "5.0", null, "2.5", null, "29.8", null, "4.6", null, "2.6", null, "1.7", null, "27.2", null, "4.7", null, "0.0", null, "0.5", null, "65.2", null, "4.8", null, "4.0", null, "2.0", null, "14.3", null, "4.1", null, "5.0", null, "2.8", null, "9.3", null, "3.4", null, "46.9", null, "5.7", null, "51.8", null, "6.0", null, "48.2", null, "6.0", null, "47.2", null, "5.3", null, "52.8", null, "5.3", null, "4.6", null, "1.6", null, "83.7", null, "3.3", null, "0.9", null, "0.9", null, "1.6", null, "1.3", null, "-999999999.0", "N", "-999999999.0", "N", "3.5", null, "1.8", null, "5.6", null, "2.3", null, "5.1", null, "2.7", null, "4.2", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "32.2", null, "8.1", null, "47.8", null, "9.1", null, "20.0", null, "7.0", null, "277332", null, "6700", null, "71608", null, "3375", null, "205724", null, "5926", null, "77805", null, "3880", null, "31633", null, "3491", null, "8063", null, "1838", null, "23570", null, "3348", null, "167894", null, "6532", null, "46819", null, "3920", null, "30086", null, "2671", null, "16733", null, "2967", null, "3527", null, "1206", null, "13206", null, "2957", null, "0", null, "247", null, "230513", null, "6878", null, "47719", null, "3297", null, "14900", null, "2301", null, "4536", null, "1386", null, "10364", null, "1868", null, "167894", null, "6532", null, "22330", null, "2946", null, "255002", null, "6362", null, "45052", null, "4352", null, "232280", null, "6338", null, "135607", null, "2998", null, "86375", null, "5214", null, "1079", null, "612", null, "18042", null, "1354", null, "-999999999", "N", "-999999999", "N", "9395", null, "2222", null, "26834", null, "3193", null, "30059", null, "2923", null, "131152", null, "2789", null, "127799", null, "5926", null, "109438", null, "5167", null, "8761", null, "1542", null, "29715", null, "3889", null, "70962", null, "3989", null, "84.1", null, "1.6", null, "25.8", null, "1.1", null, "74.2", null, "1.1", null, "28.1", null, "1.4", null, "11.4", null, "1.2", null, "2.9", null, "0.7", null, "8.5", null, "1.2", null, "60.5", null, "1.7", null, "16.9", null, "1.4", null, "10.8", null, "1.0", null, "6.0", null, "1.0", null, "1.3", null, "0.4", null, "4.8", null, "1.0", null, "0.0", null, "0.1", null, "83.1", null, "1.4", null, "17.2", null, "1.2", null, "5.4", null, "0.8", null, "1.6", null, "0.5", null, "3.7", null, "0.7", null, "60.5", null, "1.7", null, "8.1", null, "1.0", null, "91.9", null, "1.0", null, "16.2", null, "1.5", null, "83.8", null, "1.5", null, "48.9", null, "1.3", null, "31.1", null, "1.4", null, "0.4", null, "0.2", null, "6.5", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "3.4", null, "0.8", null, "9.7", null, "1.1", null, "10.8", null, "1.0", null, "47.3", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "8.0", null, "1.3", null, "27.2", null, "3.0", null, "64.8", null, "3.0", null, "11", "98"], ["5001900US1201", "Congressional District 1 (119th Congress), Florida", "314587", null, "4588", null, "136056", null, "3356", null, "178531", null, "4470", null, "150514", null, "5359", null, "58313", null, "4282", null, "17533", null, "2899", null, "40780", null, "3563", null, "105760", null, "5670", null, "89643", null, "4034", null, "57618", null, "3353", null, "30933", null, "2769", null, "7991", null, "2165", null, "22942", null, "2826", null, "1092", null, "626", null, "224944", null, "5223", null, "92896", null, "4273", null, "27380", null, "3007", null, "9542", null, "2106", null, "17838", null, "2473", null, "104668", null, "5767", null, "37053", null, "3616", null, "277534", null, "5395", null, "95656", null, "4928", null, "218931", null, "6438", null, "242531", null, "4641", null, "35752", null, "2429", null, "811", null, "358", null, "6730", null, "1286", null, "-999999999", "N", "-999999999", "N", "5640", null, "1299", null, "22971", null, "2861", null, "21034", null, "1745", null, "235428", null, "4129", null, "77014", null, "2381", null, "208827", null, "5843", null, "35214", null, "2766", null, "67272", null, "4619", null, "106341", null, "4983", null, "-888888888", "(X)", "-888888888", "(X)", "43.2", null, "1.0", null, "56.8", null, "1.0", null, "47.8", null, "1.6", null, "18.5", null, "1.3", null, "5.6", null, "0.9", null, "13.0", null, "1.2", null, "33.6", null, "1.7", null, "28.5", null, "1.2", null, "18.3", null, "1.0", null, "9.8", null, "0.9", null, "2.5", null, "0.7", null, "7.3", null, "0.9", null, "0.3", null, "0.2", null, "71.5", null, "1.2", null, "29.5", null, "1.3", null, "8.7", null, "1.0", null, "3.0", null, "0.7", null, "5.7", null, "0.8", null, "33.3", null, "1.7", null, "11.8", null, "1.1", null, "88.2", null, "1.1", null, "30.4", null, "1.6", null, "69.6", null, "1.6", null, "77.1", null, "0.9", null, "11.4", null, "0.7", null, "0.3", null, "0.1", null, "2.1", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "1.8", null, "0.4", null, "7.3", null, "0.9", null, "6.7", null, "0.5", null, "74.8", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.9", null, "1.2", null, "32.2", null, "2.1", null, "50.9", null, "1.9", null, "32959", null, "3803", null, "12575", null, "1960", null, "20384", null, "3050", null, "8286", null, "1808", null, "15175", null, "2588", null, "2060", null, "819", null, "13115", null, "2687", null, "9498", null, "1976", null, "18095", null, "2560", null, "5828", null, "1416", null, "11922", null, "2188", null, "1615", null, "857", null, "10307", null, "2270", null, "345", null, "397", null, "14864", null, "2483", null, "2458", null, "1041", null, "3253", null, "1062", null, "445", null, "284", null, "2808", null, "1096", null, "9153", null, "1917", null, "12697", null, "2573", null, "20262", null, "2852", null, "19005", null, "2839", null, "13954", null, "2493", null, "18876", null, "3169", null, "9497", null, "1936", null, "127", null, "112", null, "979", null, "550", null, "-999999999", "N", "-999999999", "N", "763", null, "564", null, "2717", null, "1215", null, "1779", null, "755", null, "18193", null, "3101", null, "40583", null, "6169", null, "23461", null, "3225", null, "4476", null, "1476", null, "11001", null, "2154", null, "7984", null, "1665", null, "10.5", null, "1.2", null, "38.2", null, "4.8", null, "61.8", null, "4.8", null, "25.1", null, "4.7", null, "46.0", null, "5.6", null, "6.3", null, "2.5", null, "39.8", null, "6.2", null, "28.8", null, "5.1", null, "54.9", null, "5.1", null, "17.7", null, "4.0", null, "36.2", null, "5.2", null, "4.9", null, "2.6", null, "31.3", null, "5.6", null, "1.0", null, "1.2", null, "45.1", null, "5.1", null, "7.5", null, "3.0", null, "9.9", null, "2.9", null, "1.4", null, "0.9", null, "8.5", null, "3.1", null, "27.8", null, "4.9", null, "38.5", null, "6.0", null, "61.5", null, "6.0", null, "57.7", null, "5.7", null, "42.3", null, "5.7", null, "57.3", null, "6.6", null, "28.8", null, "5.2", null, "0.4", null, "0.3", null, "3.0", null, "1.7", null, "-999999999.0", "N", "-999999999.0", "N", "2.3", null, "1.7", null, "8.2", null, "3.5", null, "5.4", null, "2.2", null, "55.2", null, "6.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "19.1", null, "5.3", null, "46.9", null, "6.1", null, "34.0", null, "6.2", null, "281628", null, "5019", null, "123481", null, "3526", null, "158147", null, "4548", null, "142228", null, "5216", null, "43138", null, "3808", null, "15473", null, "2794", null, "27665", null, "2657", null, "96262", null, "5436", null, "71548", null, "3631", null, "51790", null, "3238", null, "19011", null, "2464", null, "6376", null, "1936", null, "12635", null, "2322", null, "747", null, "439", null, "210080", null, "5282", null, "90438", null, "4239", null, "24127", null, "3062", null, "9097", null, "2066", null, "15030", null, "2271", null, "95515", null, "5438", null, "24356", null, "2642", null, "257272", null, "5595", null, "76651", null, "4312", null, "204977", null, "6507", null, "223655", null, "5324", null, "26255", null, "2727", null, "684", null, "341", null, "5751", null, "1257", null, "-999999999", "N", "-999999999", "N", "4877", null, "1198", null, "20254", null, "2491", null, "19255", null, "1856", null, "217235", null, "4853", null, "82236", null, "2795", null, "185366", null, "5721", null, "30738", null, "2195", null, "56271", null, "4408", null, "98357", null, "5063", null, "89.5", null, "1.2", null, "43.8", null, "1.1", null, "56.2", null, "1.1", null, "50.5", null, "1.7", null, "15.3", null, "1.3", null, "5.5", null, "1.0", null, "9.8", null, "1.0", null, "34.2", null, "1.8", null, "25.4", null, "1.2", null, "18.4", null, "1.1", null, "6.8", null, "0.9", null, "2.3", null, "0.7", null, "4.5", null, "0.8", null, "0.3", null, "0.2", null, "74.6", null, "1.2", null, "32.1", null, "1.4", null, "8.6", null, "1.1", null, "3.2", null, "0.7", null, "5.3", null, "0.8", null, "33.9", null, "1.8", null, "8.6", null, "0.9", null, "91.4", null, "0.9", null, "27.2", null, "1.6", null, "72.8", null, "1.6", null, "79.4", null, "1.1", null, "9.3", null, "0.9", null, "0.2", null, "0.1", null, "2.0", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "1.7", null, "0.4", null, "7.2", null, "0.9", null, "6.8", null, "0.6", null, "77.1", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.6", null, "1.1", null, "30.4", null, "2.2", null, "53.1", null, "2.0", null, "12", "01"], ["5001900US1202", "Congressional District 2 (119th Congress), Florida", "331008", null, "4585", null, "138988", null, "3227", null, "192020", null, "4212", null, "138159", null, "5208", null, "58075", null, "4027", null, "14680", null, "2376", null, "43395", null, "3397", null, "134774", null, "5152", null, "83301", null, "4608", null, "50077", null, "3695", null, "32478", null, "3750", null, "6106", null, "1530", null, "26372", null, "3423", null, "746", null, "564", null, "247707", null, "5705", null, "88082", null, "3942", null, "25597", null, "2669", null, "8574", null, "2024", null, "17023", null, "2281", null, "134028", null, "5168", null, "55398", null, "4660", null, "275610", null, "6012", null, "99165", null, "5237", null, "231843", null, "5789", null, "225722", null, "4393", null, "68511", null, "3432", null, "1533", null, "727", null, "7547", null, "1136", null, "-999999999", "N", "-999999999", "N", "5193", null, "1176", null, "22502", null, "3148", null, "20650", null, "2061", null, "219756", null, "4520", null, "66684", null, "2594", null, "196234", null, "5855", null, "37308", null, "3137", null, "59288", null, "4323", null, "99638", null, "4533", null, "-888888888", "(X)", "-888888888", "(X)", "42.0", null, "0.9", null, "58.0", null, "0.9", null, "41.7", null, "1.4", null, "17.5", null, "1.2", null, "4.4", null, "0.7", null, "13.1", null, "1.0", null, "40.7", null, "1.5", null, "25.2", null, "1.4", null, "15.1", null, "1.1", null, "9.8", null, "1.1", null, "1.8", null, "0.5", null, "8.0", null, "1.0", null, "0.2", null, "0.2", null, "74.8", null, "1.4", null, "26.6", null, "1.1", null, "7.7", null, "0.8", null, "2.6", null, "0.6", null, "5.1", null, "0.7", null, "40.5", null, "1.5", null, "16.7", null, "1.4", null, "83.3", null, "1.4", null, "30.0", null, "1.5", null, "70.0", null, "1.5", null, "68.2", null, "1.0", null, "20.7", null, "1.0", null, "0.5", null, "0.2", null, "2.3", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "1.6", null, "0.4", null, "6.8", null, "0.9", null, "6.2", null, "0.6", null, "66.4", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "19.0", null, "1.5", null, "30.2", null, "2.0", null, "50.8", null, "1.8", null, "45359", null, "3982", null, "15569", null, "1856", null, "29790", null, "3603", null, "9802", null, "1931", null, "19712", null, "2878", null, "3845", null, "1329", null, "15867", null, "2584", null, "15845", null, "2524", null, "20696", null, "3197", null, "6864", null, "1644", null, "13832", null, "2695", null, "1972", null, "857", null, "11860", null, "2533", null, "0", null, "247", null, "24663", null, "3095", null, "2938", null, "1141", null, "5880", null, "1611", null, "1873", null, "1086", null, "4007", null, "1247", null, "15845", null, "2524", null, "22177", null, "3128", null, "23182", null, "3162", null, "22996", null, "3075", null, "22363", null, "2735", null, "21880", null, "3017", null, "18640", null, "2631", null, "93", null, "139", null, "509", null, "512", null, "-999999999", "N", "-999999999", "N", "1300", null, "754", null, "2937", null, "990", null, "3740", null, "1069", null, "20825", null, "2904", null, "27522", null, "5419", null, "29514", null, "3519", null, "7818", null, "2082", null, "11298", null, "2106", null, "10398", null, "2064", null, "13.7", null, "1.2", null, "34.3", null, "3.9", null, "65.7", null, "3.9", null, "21.6", null, "3.8", null, "43.5", null, "4.8", null, "8.5", null, "2.7", null, "35.0", null, "4.9", null, "34.9", null, "4.9", null, "45.6", null, "5.4", null, "15.1", null, "3.3", null, "30.5", null, "5.1", null, "4.3", null, "1.7", null, "26.1", null, "5.1", null, "0.0", null, "0.6", null, "54.4", null, "5.4", null, "6.5", null, "2.5", null, "13.0", null, "3.4", null, "4.1", null, "2.4", null, "8.8", null, "2.7", null, "34.9", null, "4.9", null, "48.9", null, "5.4", null, "51.1", null, "5.4", null, "50.7", null, "4.7", null, "49.3", null, "4.7", null, "48.2", null, "4.7", null, "41.1", null, "4.7", null, "0.2", null, "0.3", null, "1.1", null, "1.1", null, "-999999999.0", "N", "-999999999.0", "N", "2.9", null, "1.7", null, "6.5", null, "2.1", null, "8.2", null, "2.3", null, "45.9", null, "4.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "26.5", null, "5.9", null, "38.3", null, "6.4", null, "35.2", null, "5.4", null, "285649", null, "5919", null, "123419", null, "3146", null, "162230", null, "5121", null, "128357", null, "5169", null, "38363", null, "3162", null, "10835", null, "1864", null, "27528", null, "2556", null, "118929", null, "5353", null, "62605", null, "4064", null, "43213", null, "3759", null, "18646", null, "2437", null, "4134", null, "1218", null, "14512", null, "1968", null, "746", null, "564", null, "223044", null, "5848", null, "85144", null, "3640", null, "19717", null, "2150", null, "6701", null, "1504", null, "13016", null, "1789", null, "118183", null, "5369", null, "33221", null, "3437", null, "252428", null, "6361", null, "76169", null, "4103", null, "209480", null, "6365", null, "203842", null, "5167", null, "49871", null, "3263", null, "1440", null, "728", null, "7038", null, "1160", null, "-999999999", "N", "-999999999", "N", "3893", null, "1061", null, "19565", null, "2943", null, "16910", null, "2009", null, "198931", null, "5259", null, "74044", null, "3252", null, "166720", null, "5631", null, "29490", null, "2310", null, "47990", null, "3783", null, "89240", null, "4496", null, "86.3", null, "1.2", null, "43.2", null, "1.0", null, "56.8", null, "1.0", null, "44.9", null, "1.6", null, "13.4", null, "1.1", null, "3.8", null, "0.6", null, "9.6", null, "0.9", null, "41.6", null, "1.6", null, "21.9", null, "1.3", null, "15.1", null, "1.2", null, "6.5", null, "0.9", null, "1.4", null, "0.4", null, "5.1", null, "0.7", null, "0.3", null, "0.2", null, "78.1", null, "1.3", null, "29.8", null, "1.3", null, "6.9", null, "0.7", null, "2.3", null, "0.5", null, "4.6", null, "0.6", null, "41.4", null, "1.6", null, "11.6", null, "1.2", null, "88.4", null, "1.2", null, "26.7", null, "1.4", null, "73.3", null, "1.4", null, "71.4", null, "1.2", null, "17.5", null, "1.0", null, "0.5", null, "0.3", null, "2.5", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "1.4", null, "0.4", null, "6.8", null, "1.0", null, "5.9", null, "0.7", null, "69.6", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.7", null, "1.3", null, "28.8", null, "2.0", null, "53.5", null, "1.9", null, "12", "02"], ["5001900US1203", "Congressional District 3 (119th Congress), Florida", "339179", null, "5026", null, "164535", null, "4586", null, "174644", null, "5311", null, "149247", null, "5902", null, "57778", null, "4666", null, "14487", null, "2468", null, "43291", null, "4220", null, "132154", null, "6000", null, "81942", null, "5089", null, "49561", null, "3898", null, "31923", null, "4069", null, "7226", null, "2130", null, "24697", null, "3575", null, "458", null, "398", null, "257237", null, "5701", null, "99686", null, "4972", null, "25855", null, "2784", null, "7261", null, "1478", null, "18594", null, "2589", null, "131696", null, "6012", null, "65279", null, "5157", null, "273900", null, "6440", null, "109566", null, "6336", null, "229613", null, "7319", null, "246485", null, "4283", null, "38668", null, "3476", null, "-999999999", "N", "-999999999", "N", "10462", null, "1571", null, "-999999999", "N", "-999999999", "N", "7309", null, "1677", null, "35182", null, "3885", null, "37088", null, "2933", null, "235511", null, "3919", null, "63348", null, "2608", null, "207025", null, "6970", null, "44665", null, "3325", null, "67605", null, "4718", null, "94755", null, "5651", null, "-888888888", "(X)", "-888888888", "(X)", "48.5", null, "1.3", null, "51.5", null, "1.3", null, "44.0", null, "1.6", null, "17.0", null, "1.3", null, "4.3", null, "0.7", null, "12.8", null, "1.2", null, "39.0", null, "1.7", null, "24.2", null, "1.4", null, "14.6", null, "1.1", null, "9.4", null, "1.2", null, "2.1", null, "0.6", null, "7.3", null, "1.0", null, "0.1", null, "0.1", null, "75.8", null, "1.4", null, "29.4", null, "1.4", null, "7.6", null, "0.8", null, "2.1", null, "0.4", null, "5.5", null, "0.8", null, "38.8", null, "1.7", null, "19.2", null, "1.5", null, "80.8", null, "1.5", null, "32.3", null, "1.8", null, "67.7", null, "1.8", null, "72.7", null, "1.0", null, "11.4", null, "1.0", null, "-999999999.0", "N", "-999999999.0", "N", "3.1", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "2.2", null, "0.5", null, "10.4", null, "1.1", null, "10.9", null, "0.8", null, "69.4", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "21.6", null, "1.5", null, "32.7", null, "2.1", null, "45.8", null, "2.2", null, "44313", null, "4698", null, "18686", null, "2722", null, "25627", null, "3537", null, "9181", null, "2019", null, "19410", null, "3813", null, "3289", null, "1259", null, "16121", null, "3424", null, "15722", null, "3003", null, "18963", null, "3722", null, "5293", null, "1665", null, "13661", null, "3379", null, "2061", null, "1201", null, "11600", null, "2959", null, "9", null, "19", null, "25350", null, "3894", null, "3888", null, "1264", null, "5749", null, "1872", null, "1228", null, "605", null, "4521", null, "1817", null, "15713", null, "3001", null, "21558", null, "3846", null, "22755", null, "3302", null, "23580", null, "3349", null, "20733", null, "3204", null, "22392", null, "2899", null, "12471", null, "2098", null, "-999999999", "N", "-999999999", "N", "425", null, "400", null, "-999999999", "N", "-999999999", "N", "1437", null, "869", null, "7588", null, "2437", null, "5587", null, "1992", null, "21932", null, "2847", null, "27199", null, "3734", null, "28591", null, "4048", null, "5906", null, "1674", null, "15016", null, "3316", null, "7669", null, "1961", null, "13.1", null, "1.3", null, "42.2", null, "4.7", null, "57.8", null, "4.7", null, "20.7", null, "4.6", null, "43.8", null, "6.4", null, "7.4", null, "2.7", null, "36.4", null, "6.2", null, "35.5", null, "5.8", null, "42.8", null, "6.8", null, "11.9", null, "3.9", null, "30.8", null, "6.3", null, "4.7", null, "2.6", null, "26.2", null, "5.7", null, "0.0", null, "0.1", null, "57.2", null, "6.8", null, "8.8", null, "2.8", null, "13.0", null, "4.0", null, "2.8", null, "1.4", null, "10.2", null, "3.9", null, "35.5", null, "5.8", null, "48.6", null, "6.2", null, "51.4", null, "6.2", null, "53.2", null, "5.2", null, "46.8", null, "5.2", null, "50.5", null, "4.7", null, "28.1", null, "4.2", null, "-999999999.0", "N", "-999999999.0", "N", "1.0", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "3.2", null, "1.9", null, "17.1", null, "4.8", null, "12.6", null, "4.0", null, "49.5", null, "4.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "20.7", null, "5.6", null, "52.5", null, "7.5", null, "26.8", null, "6.4", null, "294866", null, "5834", null, "145849", null, "4599", null, "149017", null, "5733", null, "140066", null, "5829", null, "38368", null, "3321", null, "11198", null, "1988", null, "27170", null, "3222", null, "116432", null, "5783", null, "62979", null, "4421", null, "44268", null, "3796", null, "18262", null, "2827", null, "5165", null, "1673", null, "13097", null, "2626", null, "449", null, "406", null, "231887", null, "5742", null, "95798", null, "4903", null, "20106", null, "2340", null, "6033", null, "1322", null, "14073", null, "2104", null, "115983", null, "5733", null, "43721", null, "4064", null, "251145", null, "6233", null, "85986", null, "5979", null, "208880", null, "7235", null, "224093", null, "4557", null, "26197", null, "3128", null, "-999999999", "N", "-999999999", "N", "10037", null, "1632", null, "-999999999", "N", "-999999999", "N", "5872", null, "1365", null, "27594", null, "3470", null, "31501", null, "2839", null, "213579", null, "4418", null, "68463", null, "2719", null, "178434", null, "6627", null, "38759", null, "2987", null, "52589", null, "4070", null, "87086", null, "5702", null, "86.9", null, "1.3", null, "49.5", null, "1.5", null, "50.5", null, "1.5", null, "47.5", null, "1.7", null, "13.0", null, "1.1", null, "3.8", null, "0.7", null, "9.2", null, "1.1", null, "39.5", null, "1.8", null, "21.4", null, "1.4", null, "15.0", null, "1.2", null, "6.2", null, "0.9", null, "1.8", null, "0.6", null, "4.4", null, "0.9", null, "0.2", null, "0.1", null, "78.6", null, "1.4", null, "32.5", null, "1.5", null, "6.8", null, "0.8", null, "2.0", null, "0.4", null, "4.8", null, "0.7", null, "39.3", null, "1.8", null, "14.8", null, "1.3", null, "85.2", null, "1.3", null, "29.2", null, "2.0", null, "70.8", null, "2.0", null, "76.0", null, "1.2", null, "8.9", null, "1.0", null, "-999999999.0", "N", "-999999999.0", "N", "3.4", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "2.0", null, "0.5", null, "9.4", null, "1.1", null, "10.7", null, "0.9", null, "72.4", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "21.7", null, "1.7", null, "29.5", null, "2.0", null, "48.8", null, "2.3", null, "12", "03"], ["5001900US1204", "Congressional District 4 (119th Congress), Florida", "329537", null, "6751", null, "143561", null, "3666", null, "185976", null, "5773", null, "149692", null, "5238", null, "74114", null, "6069", null, "19918", null, "3789", null, "54196", null, "4951", null, "105731", null, "6844", null, "98293", null, "5452", null, "52958", null, "4150", null, "44278", null, "4599", null, "9356", null, "2450", null, "34922", null, "4185", null, "1057", null, "948", null, "231244", null, "7597", null, "96734", null, "4821", null, "29836", null, "3910", null, "10562", null, "2715", null, "19274", null, "2857", null, "104674", null, "6858", null, "46184", null, "5203", null, "283353", null, "6884", null, "103736", null, "5333", null, "225801", null, "7500", null, "181429", null, "4811", null, "100314", null, "4816", null, "-999999999", "N", "-999999999", "N", "9041", null, "1437", null, "-999999999", "N", "-999999999", "N", "9669", null, "2210", null, "26818", null, "3485", null, "29994", null, "3740", null, "175083", null, "4434", null, "76209", null, "3254", null, "223806", null, "7078", null, "36579", null, "3017", null, "76022", null, "6034", null, "111205", null, "5908", null, "-888888888", "(X)", "-888888888", "(X)", "43.6", null, "1.0", null, "56.4", null, "1.0", null, "45.4", null, "1.6", null, "22.5", null, "1.7", null, "6.0", null, "1.1", null, "16.4", null, "1.5", null, "32.1", null, "1.9", null, "29.8", null, "1.6", null, "16.1", null, "1.3", null, "13.4", null, "1.3", null, "2.8", null, "0.7", null, "10.6", null, "1.2", null, "0.3", null, "0.3", null, "70.2", null, "1.6", null, "29.4", null, "1.4", null, "9.1", null, "1.2", null, "3.2", null, "0.8", null, "5.8", null, "0.9", null, "31.8", null, "1.9", null, "14.0", null, "1.5", null, "86.0", null, "1.5", null, "31.5", null, "1.6", null, "68.5", null, "1.6", null, "55.1", null, "1.3", null, "30.4", null, "1.2", null, "-999999999.0", "N", "-999999999.0", "N", "2.7", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "2.9", null, "0.7", null, "8.1", null, "1.0", null, "9.1", null, "1.1", null, "53.1", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.3", null, "1.3", null, "34.0", null, "2.4", null, "49.7", null, "2.3", null, "45250", null, "4984", null, "18597", null, "2803", null, "26653", null, "4098", null, "10850", null, "2135", null, "22707", null, "3862", null, "4280", null, "1708", null, "18427", null, "3373", null, "11693", null, "1956", null, "23699", null, "3724", null, "7382", null, "1848", null, "16289", null, "3211", null, "2777", null, "1399", null, "13512", null, "3014", null, "28", null, "46", null, "21551", null, "2820", null, "3468", null, "933", null, "6418", null, "2038", null, "1503", null, "1082", null, "4915", null, "1496", null, "11665", null, "1956", null, "19023", null, "3128", null, "26227", null, "3804", null, "23032", null, "2971", null, "22218", null, "3886", null, "13925", null, "2334", null, "23253", null, "3365", null, "-999999999", "N", "-999999999", "N", "1154", null, "666", null, "-999999999", "N", "-999999999", "N", "2722", null, "1539", null, "3639", null, "1563", null, "5102", null, "1989", null, "13121", null, "2410", null, "31808", null, "3459", null, "33557", null, "4628", null, "6707", null, "1562", null, "16828", null, "3743", null, "10022", null, "2305", null, "13.7", null, "1.5", null, "41.1", null, "5.2", null, "58.9", null, "5.2", null, "24.0", null, "4.1", null, "50.2", null, "5.1", null, "9.5", null, "3.4", null, "40.7", null, "5.5", null, "25.8", null, "4.2", null, "52.4", null, "4.7", null, "16.3", null, "3.6", null, "36.0", null, "5.2", null, "6.1", null, "2.9", null, "29.9", null, "5.5", null, "0.1", null, "0.1", null, "47.6", null, "4.7", null, "7.7", null, "2.1", null, "14.2", null, "4.0", null, "3.3", null, "2.3", null, "10.9", null, "3.0", null, "25.8", null, "4.2", null, "42.0", null, "5.3", null, "58.0", null, "5.3", null, "50.9", null, "5.3", null, "49.1", null, "5.3", null, "30.8", null, "4.6", null, "51.4", null, "4.7", null, "-999999999.0", "N", "-999999999.0", "N", "2.6", null, "1.5", null, "-999999999.0", "N", "-999999999.0", "N", "6.0", null, "3.2", null, "8.0", null, "3.3", null, "11.3", null, "4.0", null, "29.0", null, "4.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "20.0", null, "4.6", null, "50.1", null, "6.4", null, "29.9", null, "6.3", null, "284287", null, "7283", null, "124964", null, "4091", null, "159323", null, "6102", null, "138842", null, "5495", null, "51407", null, "5454", null, "15638", null, "3273", null, "35769", null, "4239", null, "94038", null, "6339", null, "74594", null, "4711", null, "45576", null, "3979", null, "27989", null, "3808", null, "6579", null, "1912", null, "21410", null, "3287", null, "1029", null, "947", null, "209693", null, "7358", null, "93266", null, "4815", null, "23418", null, "3102", null, "9059", null, "2375", null, "14359", null, "2356", null, "93009", null, "6356", null, "27161", null, "4166", null, "257126", null, "7344", null, "80704", null, "5173", null, "203583", null, "7194", null, "167504", null, "4498", null, "77061", null, "5001", null, "-999999999", "N", "-999999999", "N", "7887", null, "1399", null, "-999999999", "N", "-999999999", "N", "6947", null, "1719", null, "23179", null, "3074", null, "24892", null, "3101", null, "161962", null, "4238", null, "81897", null, "3586", null, "190249", null, "6333", null, "29872", null, "2445", null, "59194", null, "5521", null, "101183", null, "5519", null, "86.3", null, "1.5", null, "44.0", null, "1.3", null, "56.0", null, "1.3", null, "48.8", null, "2.0", null, "18.1", null, "1.8", null, "5.5", null, "1.1", null, "12.6", null, "1.4", null, "33.1", null, "1.9", null, "26.2", null, "1.6", null, "16.0", null, "1.4", null, "9.8", null, "1.3", null, "2.3", null, "0.7", null, "7.5", null, "1.1", null, "0.4", null, "0.3", null, "73.8", null, "1.6", null, "32.8", null, "1.6", null, "8.2", null, "1.1", null, "3.2", null, "0.8", null, "5.1", null, "0.8", null, "32.7", null, "1.9", null, "9.6", null, "1.4", null, "90.4", null, "1.4", null, "28.4", null, "1.7", null, "71.6", null, "1.7", null, "58.9", null, "1.4", null, "27.1", null, "1.3", null, "-999999999.0", "N", "-999999999.0", "N", "2.8", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "2.4", null, "0.6", null, "8.2", null, "1.0", null, "8.8", null, "1.0", null, "57.0", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.7", null, "1.3", null, "31.1", null, "2.6", null, "53.2", null, "2.4", null, "12", "04"], ["5001900US1205", "Congressional District 5 (119th Congress), Florida", "350548", null, "6918", null, "136162", null, "5265", null, "214386", null, "6840", null, "174958", null, "6183", null, "53325", null, "4826", null, "15649", null, "2468", null, "37676", null, "3802", null, "122265", null, "7437", null, "102490", null, "5321", null, "71906", null, "4148", null, "29910", null, "4149", null, "8723", null, "2165", null, "21187", null, "3350", null, "674", null, "564", null, "248058", null, "7055", null, "103052", null, "4941", null, "23415", null, "3309", null, "6926", null, "1588", null, "16489", null, "2636", null, "121591", null, "7365", null, "28168", null, "3880", null, "322380", null, "6792", null, "74705", null, "5249", null, "275843", null, "7629", null, "246723", null, "6188", null, "41548", null, "4613", null, "-999999999", "N", "-999999999", "N", "18557", null, "2105", null, "-999999999", "N", "-999999999", "N", "7904", null, "2244", null, "34875", null, "3308", null, "39963", null, "3219", null, "237547", null, "5939", null, "90333", null, "3269", null, "228283", null, "6835", null, "31167", null, "2538", null, "70763", null, "5111", null, "126353", null, "6625", null, "-888888888", "(X)", "-888888888", "(X)", "38.8", null, "1.4", null, "61.2", null, "1.4", null, "49.9", null, "1.7", null, "15.2", null, "1.4", null, "4.5", null, "0.7", null, "10.7", null, "1.1", null, "34.9", null, "1.8", null, "29.2", null, "1.4", null, "20.5", null, "1.1", null, "8.5", null, "1.2", null, "2.5", null, "0.6", null, "6.0", null, "0.9", null, "0.2", null, "0.2", null, "70.8", null, "1.4", null, "29.4", null, "1.5", null, "6.7", null, "0.9", null, "2.0", null, "0.5", null, "4.7", null, "0.7", null, "34.7", null, "1.8", null, "8.0", null, "1.1", null, "92.0", null, "1.1", null, "21.3", null, "1.5", null, "78.7", null, "1.5", null, "70.4", null, "1.4", null, "11.9", null, "1.3", null, "-999999999.0", "N", "-999999999.0", "N", "5.3", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "2.3", null, "0.6", null, "9.9", null, "0.9", null, "11.4", null, "0.9", null, "67.8", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.7", null, "1.0", null, "31.0", null, "2.2", null, "55.3", null, "2.2", null, "21114", null, "3205", null, "9792", null, "2277", null, "11322", null, "2414", null, "5887", null, "1805", null, "9830", null, "2361", null, "2638", null, "1150", null, "7192", null, "2038", null, "5397", null, "1679", null, "10521", null, "2723", null, "3287", null, "1475", null, "7234", null, "2265", null, "1685", null, "1218", null, "5549", null, "1952", null, "0", null, "247", null, "10593", null, "2227", null, "2600", null, "1147", null, "2596", null, "1206", null, "953", null, "535", null, "1643", null, "934", null, "5397", null, "1679", null, "6076", null, "1757", null, "15038", null, "2636", null, "7909", null, "1816", null, "13205", null, "2826", null, "9688", null, "1868", null, "6155", null, "1880", null, "-999999999", "N", "-999999999", "N", "351", null, "274", null, "-999999999", "N", "-999999999", "N", "1120", null, "621", null, "3311", null, "1732", null, "4370", null, "1876", null, "9116", null, "1859", null, "37902", null, "11031", null, "15717", null, "2979", null, "1724", null, "771", null, "7856", null, "2175", null, "6137", null, "1864", null, "6.0", null, "0.9", null, "46.4", null, "8.1", null, "53.6", null, "8.1", null, "27.9", null, "7.3", null, "46.6", null, "8.2", null, "12.5", null, "5.1", null, "34.1", null, "7.9", null, "25.6", null, "7.3", null, "49.8", null, "9.0", null, "15.6", null, "6.4", null, "34.3", null, "8.6", null, "8.0", null, "5.6", null, "26.3", null, "7.9", null, "0.0", null, "1.2", null, "50.2", null, "9.0", null, "12.3", null, "5.2", null, "12.3", null, "5.7", null, "4.5", null, "2.5", null, "7.8", null, "4.4", null, "25.6", null, "7.3", null, "28.8", null, "6.9", null, "71.2", null, "6.9", null, "37.5", null, "7.7", null, "62.5", null, "7.7", null, "45.9", null, "8.2", null, "29.2", null, "7.3", null, "-999999999.0", "N", "-999999999.0", "N", "1.7", null, "1.3", null, "-999999999.0", "N", "-999999999.0", "N", "5.3", null, "2.9", null, "15.7", null, "7.4", null, "20.7", null, "7.8", null, "43.2", null, "8.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.0", null, "4.5", null, "50.0", null, "9.4", null, "39.0", null, "9.8", null, "329434", null, "7314", null, "126370", null, "4990", null, "203064", null, "7164", null, "169071", null, "6121", null, "43495", null, "4188", null, "13011", null, "2337", null, "30484", null, "3228", null, "116868", null, "7363", null, "91969", null, "4575", null, "68619", null, "3760", null, "22676", null, "3317", null, "7038", null, "1806", null, "15638", null, "2816", null, "674", null, "564", null, "237465", null, "7256", null, "100452", null, "5064", null, "20819", null, "3109", null, "5973", null, "1564", null, "14846", null, "2410", null, "116194", null, "7301", null, "22092", null, "3617", null, "307342", null, "7075", null, "66796", null, "4724", null, "262638", null, "7903", null, "237035", null, "6393", null, "35393", null, "4951", null, "-999999999", "N", "-999999999", "N", "18206", null, "2121", null, "-999999999", "N", "-999999999", "N", "6784", null, "2268", null, "31564", null, "3432", null, "35593", null, "3381", null, "228431", null, "6035", null, "95528", null, "4531", null, "212566", null, "6461", null, "29443", null, "2389", null, "62907", null, "4869", null, "120216", null, "6398", null, "94.0", null, "0.9", null, "38.4", null, "1.4", null, "61.6", null, "1.4", null, "51.3", null, "1.8", null, "13.2", null, "1.3", null, "3.9", null, "0.7", null, "9.3", null, "1.0", null, "35.5", null, "1.9", null, "27.9", null, "1.3", null, "20.8", null, "1.1", null, "6.9", null, "1.0", null, "2.1", null, "0.6", null, "4.7", null, "0.8", null, "0.2", null, "0.2", null, "72.1", null, "1.3", null, "30.5", null, "1.5", null, "6.3", null, "0.9", null, "1.8", null, "0.5", null, "4.5", null, "0.7", null, "35.3", null, "1.8", null, "6.7", null, "1.1", null, "93.3", null, "1.1", null, "20.3", null, "1.4", null, "79.7", null, "1.4", null, "72.0", null, "1.5", null, "10.7", null, "1.4", null, "-999999999.0", "N", "-999999999.0", "N", "5.5", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "2.1", null, "0.7", null, "9.6", null, "1.0", null, "10.8", null, "1.0", null, "69.3", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.9", null, "1.0", null, "29.6", null, "2.3", null, "56.6", null, "2.2", null, "12", "05"], ["5001900US1206", "Congressional District 6 (119th Congress), Florida", "356680", null, "7536", null, "207622", null, "7432", null, "149058", null, "6514", null, "162402", null, "6117", null, "58916", null, "4927", null, "16547", null, "2598", null, "42369", null, "4675", null, "135362", null, "7409", null, "72653", null, "4816", null, "43371", null, "3494", null, "28002", null, "3790", null, "8925", null, "1937", null, "19077", null, "3149", null, "1280", null, "841", null, "284027", null, "7872", null, "119031", null, "5631", null, "30914", null, "3718", null, "7622", null, "1604", null, "23292", null, "3558", null, "134082", null, "7418", null, "45459", null, "4221", null, "311221", null, "8023", null, "116427", null, "6590", null, "240253", null, "8347", null, "276982", null, "7592", null, "32538", null, "3352", null, "-999999999", "N", "-999999999", "N", "4488", null, "1143", null, "290", null, "108", null, "13592", null, "2913", null, "28238", null, "3441", null, "38912", null, "4316", null, "268507", null, "7184", null, "65999", null, "2440", null, "221318", null, "5708", null, "59701", null, "3533", null, "69362", null, "5047", null, "92255", null, "4780", null, "-888888888", "(X)", "-888888888", "(X)", "58.2", null, "1.6", null, "41.8", null, "1.6", null, "45.5", null, "1.8", null, "16.5", null, "1.3", null, "4.6", null, "0.7", null, "11.9", null, "1.3", null, "38.0", null, "1.6", null, "20.4", null, "1.3", null, "12.2", null, "0.9", null, "7.9", null, "1.1", null, "2.5", null, "0.5", null, "5.3", null, "0.9", null, "0.4", null, "0.2", null, "79.6", null, "1.3", null, "33.4", null, "1.7", null, "8.7", null, "1.0", null, "2.1", null, "0.5", null, "6.5", null, "1.0", null, "37.6", null, "1.6", null, "12.7", null, "1.2", null, "87.3", null, "1.2", null, "32.6", null, "1.8", null, "67.4", null, "1.8", null, "77.7", null, "1.3", null, "9.1", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "1.3", null, "0.3", null, "0.1", null, "0.1", null, "3.8", null, "0.8", null, "7.9", null, "0.9", null, "10.9", null, "1.1", null, "75.3", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "27.0", null, "1.5", null, "31.3", null, "2.0", null, "41.7", null, "1.9", null, "41109", null, "3761", null, "19198", null, "2851", null, "21911", null, "2962", null, "8917", null, "1867", null, "15946", null, "2331", null, "3982", null, "1125", null, "11964", null, "2217", null, "16246", null, "2723", null, "15680", null, "2729", null, "4591", null, "1469", null, "10517", null, "2079", null, "2682", null, "1102", null, "7835", null, "1877", null, "572", null, "597", null, "25429", null, "3186", null, "4326", null, "1059", null, "5429", null, "1500", null, "1300", null, "590", null, "4129", null, "1369", null, "15674", null, "2501", null, "16109", null, "2122", null, "25000", null, "3162", null, "18694", null, "2649", null, "22415", null, "2982", null, "26444", null, "3239", null, "8269", null, "2081", null, "-999999999", "N", "-999999999", "N", "159", null, "152", null, "103", null, "112", null, "2227", null, "1183", null, "3852", null, "1361", null, "7303", null, "1965", null, "24193", null, "3042", null, "34133", null, "3304", null, "24863", null, "3174", null, "6288", null, "1474", null, "12048", null, "2105", null, "6527", null, "1823", null, "11.5", null, "1.0", null, "46.7", null, "5.4", null, "53.3", null, "5.4", null, "21.7", null, "4.1", null, "38.8", null, "4.5", null, "9.7", null, "2.8", null, "29.1", null, "4.4", null, "39.5", null, "5.4", null, "38.1", null, "5.5", null, "11.2", null, "3.3", null, "25.6", null, "4.7", null, "6.5", null, "2.7", null, "19.1", null, "4.2", null, "1.4", null, "1.4", null, "61.9", null, "5.5", null, "10.5", null, "2.5", null, "13.2", null, "3.3", null, "3.2", null, "1.4", null, "10.0", null, "3.1", null, "38.1", null, "5.1", null, "39.2", null, "4.5", null, "60.8", null, "4.5", null, "45.5", null, "5.1", null, "54.5", null, "5.1", null, "64.3", null, "4.9", null, "20.1", null, "4.2", null, "-999999999.0", "N", "-999999999.0", "N", "0.4", null, "0.4", null, "0.3", null, "0.3", null, "5.4", null, "2.9", null, "9.4", null, "3.4", null, "17.8", null, "4.7", null, "58.9", null, "5.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "25.3", null, "5.4", null, "48.5", null, "6.1", null, "26.3", null, "6.0", null, "315571", null, "7510", null, "188424", null, "6659", null, "127147", null, "5980", null, "153485", null, "6182", null, "42970", null, "4314", null, "12565", null, "2296", null, "30405", null, "3959", null, "119116", null, "6982", null, "56973", null, "4414", null, "38780", null, "3611", null, "17485", null, "3206", null, "6243", null, "1684", null, "11242", null, "2621", null, "708", null, "564", null, "258598", null, "7783", null, "114705", null, "5504", null, "25485", null, "3418", null, "6322", null, "1507", null, "19163", null, "3149", null, "118408", null, "6920", null, "29350", null, "3456", null, "286221", null, "7367", null, "97733", null, "5506", null, "217838", null, "7992", null, "250538", null, "7770", null, "24269", null, "2591", null, "-999999999", "N", "-999999999", "N", "4329", null, "1116", null, "187", null, "117", null, "11365", null, "2519", null, "24386", null, "3451", null, "31609", null, "3996", null, "244314", null, "7379", null, "71404", null, "2336", null, "196455", null, "5847", null, "53413", null, "3450", null, "57314", null, "5166", null, "85728", null, "4713", null, "88.5", null, "1.0", null, "59.7", null, "1.6", null, "40.3", null, "1.6", null, "48.6", null, "1.9", null, "13.6", null, "1.3", null, "4.0", null, "0.7", null, "9.6", null, "1.2", null, "37.7", null, "1.7", null, "18.1", null, "1.4", null, "12.3", null, "1.1", null, "5.5", null, "1.0", null, "2.0", null, "0.5", null, "3.6", null, "0.8", null, "0.2", null, "0.2", null, "81.9", null, "1.4", null, "36.3", null, "1.8", null, "8.1", null, "1.1", null, "2.0", null, "0.5", null, "6.1", null, "1.0", null, "37.5", null, "1.7", null, "9.3", null, "1.1", null, "90.7", null, "1.1", null, "31.0", null, "1.7", null, "69.0", null, "1.7", null, "79.4", null, "1.5", null, "7.7", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "1.4", null, "0.4", null, "0.1", null, "0.1", null, "3.6", null, "0.8", null, "7.7", null, "1.1", null, "10.0", null, "1.2", null, "77.4", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "27.2", null, "1.7", null, "29.2", null, "2.2", null, "43.6", null, "2.3", null, "12", "06"], ["5001900US1207", "Congressional District 7 (119th Congress), Florida", "319680", null, "5284", null, "145601", null, "4388", null, "174079", null, "4189", null, "153942", null, "6255", null, "58809", null, "4586", null, "18698", null, "2787", null, "40111", null, "4040", null, "106929", null, "6319", null, "90018", null, "5055", null, "59686", null, "4015", null, "29831", null, "3267", null, "10012", null, "2316", null, "19819", null, "2747", null, "501", null, "350", null, "229662", null, "6312", null, "94256", null, "5067", null, "28978", null, "3312", null, "8686", null, "1685", null, "20292", null, "2896", null, "106428", null, "6312", null, "27950", null, "3336", null, "291730", null, "5775", null, "90678", null, "5401", null, "229002", null, "5819", null, "216480", null, "5243", null, "29568", null, "2861", null, "-999999999", "N", "-999999999", "N", "12920", null, "1228", null, "-999999999", "N", "-999999999", "N", "17766", null, "2701", null, "42104", null, "3250", null, "63400", null, "3356", null, "203302", null, "4694", null, "82897", null, "2823", null, "212751", null, "6028", null, "34671", null, "2956", null, "69772", null, "4766", null, "108308", null, "5253", null, "-888888888", "(X)", "-888888888", "(X)", "45.5", null, "1.1", null, "54.5", null, "1.1", null, "48.2", null, "1.8", null, "18.4", null, "1.5", null, "5.8", null, "0.9", null, "12.5", null, "1.3", null, "33.4", null, "1.8", null, "28.2", null, "1.5", null, "18.7", null, "1.2", null, "9.3", null, "1.0", null, "3.1", null, "0.7", null, "6.2", null, "0.9", null, "0.2", null, "0.1", null, "71.8", null, "1.5", null, "29.5", null, "1.5", null, "9.1", null, "1.1", null, "2.7", null, "0.5", null, "6.3", null, "0.9", null, "33.3", null, "1.8", null, "8.7", null, "1.0", null, "91.3", null, "1.0", null, "28.4", null, "1.6", null, "71.6", null, "1.6", null, "67.7", null, "1.1", null, "9.2", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "4.0", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "5.6", null, "0.8", null, "13.2", null, "1.0", null, "19.8", null, "1.0", null, "63.6", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.3", null, "1.3", null, "32.8", null, "2.0", null, "50.9", null, "2.0", null, "27332", null, "3638", null, "11738", null, "2150", null, "15594", null, "2452", null, "8457", null, "1696", null, "12556", null, "2438", null, "4281", null, "1497", null, "8275", null, "2023", null, "6319", null, "1561", null, "13280", null, "2591", null, "5823", null, "1402", null, "7308", null, "2189", null, "2536", null, "1383", null, "4772", null, "1613", null, "149", null, "232", null, "14052", null, "2330", null, "2634", null, "912", null, "5248", null, "1352", null, "1745", null, "766", null, "3503", null, "1157", null, "6170", null, "1516", null, "6838", null, "1772", null, "20494", null, "2995", null, "14914", null, "2584", null, "12418", null, "2117", null, "15296", null, "2526", null, "4356", null, "1523", null, "-999999999", "N", "-999999999", "N", "264", null, "316", null, "-999999999", "N", "-999999999", "N", "2717", null, "947", null, "4476", null, "1299", null, "8662", null, "1700", null, "13678", null, "2485", null, "51231", null, "8095", null, "21013", null, "3140", null, "2703", null, "987", null, "9137", null, "1873", null, "9173", null, "2005", null, "8.5", null, "1.1", null, "42.9", null, "5.2", null, "57.1", null, "5.2", null, "30.9", null, "4.9", null, "45.9", null, "6.1", null, "15.7", null, "4.9", null, "30.3", null, "6.2", null, "23.1", null, "4.9", null, "48.6", null, "6.2", null, "21.3", null, "4.5", null, "26.7", null, "6.5", null, "9.3", null, "4.8", null, "17.5", null, "5.1", null, "0.5", null, "0.9", null, "51.4", null, "6.2", null, "9.6", null, "3.1", null, "19.2", null, "4.7", null, "6.4", null, "2.7", null, "12.8", null, "4.1", null, "22.6", null, "4.7", null, "25.0", null, "5.3", null, "75.0", null, "5.3", null, "54.6", null, "5.5", null, "45.4", null, "5.5", null, "56.0", null, "5.6", null, "15.9", null, "5.1", null, "-999999999.0", "N", "-999999999.0", "N", "1.0", null, "1.1", null, "-999999999.0", "N", "-999999999.0", "N", "9.9", null, "3.4", null, "16.4", null, "4.2", null, "31.7", null, "5.3", null, "50.0", null, "5.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.9", null, "4.4", null, "43.5", null, "6.6", null, "43.7", null, "6.5", null, "292348", null, "4918", null, "133863", null, "4377", null, "158485", null, "4063", null, "145485", null, "6299", null, "46253", null, "4272", null, "14417", null, "2341", null, "31836", null, "3626", null, "100610", null, "6207", null, "76738", null, "5128", null, "53863", null, "4112", null, "22523", null, "2989", null, "7476", null, "1976", null, "15047", null, "2504", null, "352", null, "267", null, "215610", null, "5736", null, "91622", null, "5068", null, "23730", null, "2949", null, "6941", null, "1480", null, "16789", null, "2633", null, "100258", null, "6208", null, "21112", null, "2961", null, "271236", null, "5487", null, "75764", null, "5193", null, "216584", null, "5304", null, "201184", null, "4813", null, "25212", null, "2886", null, "-999999999", "N", "-999999999", "N", "12656", null, "1272", null, "-999999999", "N", "-999999999", "N", "15049", null, "2555", null, "37628", null, "3255", null, "54738", null, "3512", null, "189624", null, "4360", null, "86558", null, "2836", null, "191738", null, "6379", null, "31968", null, "2777", null, "60635", null, "4762", null, "99135", null, "5314", null, "91.5", null, "1.1", null, "45.8", null, "1.2", null, "54.2", null, "1.2", null, "49.8", null, "1.9", null, "15.8", null, "1.5", null, "4.9", null, "0.8", null, "10.9", null, "1.3", null, "34.4", null, "2.0", null, "26.2", null, "1.7", null, "18.4", null, "1.3", null, "7.7", null, "1.0", null, "2.6", null, "0.7", null, "5.1", null, "0.9", null, "0.1", null, "0.1", null, "73.8", null, "1.7", null, "31.3", null, "1.7", null, "8.1", null, "1.0", null, "2.4", null, "0.5", null, "5.7", null, "0.9", null, "34.3", null, "2.0", null, "7.2", null, "1.0", null, "92.8", null, "1.0", null, "25.9", null, "1.6", null, "74.1", null, "1.6", null, "68.8", null, "1.2", null, "8.6", null, "1.0", null, "-999999999.0", "N", "-999999999.0", "N", "4.3", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "5.1", null, "0.9", null, "12.9", null, "1.1", null, "18.7", null, "1.1", null, "64.9", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.7", null, "1.4", null, "31.6", null, "2.2", null, "51.7", null, "2.1", null, "12", "07"], ["5001900US1208", "Congressional District 8 (119th Congress), Florida", "344124", null, "4864", null, "195792", null, "3591", null, "148332", null, "4360", null, "168615", null, "5448", null, "49678", null, "4182", null, "13379", null, "1979", null, "36299", null, "3719", null, "125831", null, "4795", null, "71990", null, "3764", null, "48018", null, "3490", null, "22987", null, "2778", null, "6472", null, "1322", null, "16515", null, "2470", null, "985", null, "708", null, "272134", null, "5074", null, "120597", null, "3936", null, "26691", null, "3096", null, "6907", null, "1556", null, "19784", null, "2797", null, "124846", null, "4704", null, "33865", null, "3393", null, "310259", null, "5531", null, "101462", null, "4290", null, "242662", null, "5624", null, "272533", null, "4984", null, "28287", null, "2367", null, "-999999999", "N", "-999999999", "N", "6276", null, "1078", null, "-999999999", "N", "-999999999", "N", "7851", null, "1639", null, "28495", null, "2778", null, "35618", null, "2303", null, "261498", null, "4644", null, "78386", null, "1989", null, "218293", null, "5789", null, "55230", null, "2767", null, "67322", null, "3782", null, "95741", null, "4553", null, "-888888888", "(X)", "-888888888", "(X)", "56.9", null, "0.9", null, "43.1", null, "0.9", null, "49.0", null, "1.5", null, "14.4", null, "1.1", null, "3.9", null, "0.6", null, "10.5", null, "1.0", null, "36.6", null, "1.3", null, "20.9", null, "1.0", null, "14.0", null, "1.0", null, "6.7", null, "0.8", null, "1.9", null, "0.4", null, "4.8", null, "0.7", null, "0.3", null, "0.2", null, "79.1", null, "1.0", null, "35.0", null, "1.1", null, "7.8", null, "0.9", null, "2.0", null, "0.4", null, "5.7", null, "0.8", null, "36.3", null, "1.3", null, "9.8", null, "1.0", null, "90.2", null, "1.0", null, "29.5", null, "1.2", null, "70.5", null, "1.2", null, "79.2", null, "1.0", null, "8.2", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "1.8", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "2.3", null, "0.5", null, "8.3", null, "0.8", null, "10.4", null, "0.6", null, "76.0", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "25.3", null, "1.2", null, "30.8", null, "1.6", null, "43.9", null, "1.5", null, "27013", null, "3449", null, "12771", null, "2091", null, "14242", null, "2471", null, "8133", null, "1883", null, "9377", null, "1885", null, "1320", null, "736", null, "8057", null, "1775", null, "9503", null, "1637", null, "9895", null, "2366", null, "4336", null, "1592", null, "5559", null, "1716", null, "884", null, "662", null, "4675", null, "1460", null, "0", null, "247", null, "17118", null, "2461", null, "3797", null, "1196", null, "3818", null, "1183", null, "436", null, "345", null, "3382", null, "1137", null, "9503", null, "1637", null, "9274", null, "1979", null, "17739", null, "2567", null, "13231", null, "2213", null, "13782", null, "2547", null, "15821", null, "2386", null, "6184", null, "1621", null, "-999999999", "N", "-999999999", "N", "266", null, "379", null, "-999999999", "N", "-999999999", "N", "935", null, "649", null, "3676", null, "981", null, "4399", null, "1474", null, "14652", null, "2231", null, "31876", null, "3758", null, "17510", null, "2891", null, "4789", null, "1459", null, "7272", null, "1850", null, "5449", null, "1580", null, "7.8", null, "1.0", null, "47.3", null, "5.5", null, "52.7", null, "5.5", null, "30.1", null, "5.3", null, "34.7", null, "5.1", null, "4.9", null, "2.7", null, "29.8", null, "5.0", null, "35.2", null, "5.2", null, "36.6", null, "6.5", null, "16.1", null, "5.5", null, "20.6", null, "5.3", null, "3.3", null, "2.4", null, "17.3", null, "4.5", null, "0.0", null, "0.9", null, "63.4", null, "6.5", null, "14.1", null, "3.9", null, "14.1", null, "4.3", null, "1.6", null, "1.3", null, "12.5", null, "4.1", null, "35.2", null, "5.2", null, "34.3", null, "5.4", null, "65.7", null, "5.4", null, "49.0", null, "6.1", null, "51.0", null, "6.1", null, "58.6", null, "5.4", null, "22.9", null, "5.0", null, "-999999999.0", "N", "-999999999.0", "N", "1.0", null, "1.4", null, "-999999999.0", "N", "-999999999.0", "N", "3.5", null, "2.3", null, "13.6", null, "3.2", null, "16.3", null, "4.6", null, "54.2", null, "6.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "27.4", null, "6.6", null, "41.5", null, "8.5", null, "31.1", null, "7.6", null, "317111", null, "5287", null, "183021", null, "3624", null, "134090", null, "4475", null, "160482", null, "5567", null, "40301", null, "3973", null, "12059", null, "1973", null, "28242", null, "3303", null, "116328", null, "5126", null, "62095", null, "3480", null, "43682", null, "3340", null, "17428", null, "2587", null, "5588", null, "1290", null, "11840", null, "2127", null, "985", null, "708", null, "255016", null, "5094", null, "116800", null, "3959", null, "22873", null, "3090", null, "6471", null, "1541", null, "16402", null, "2712", null, "115343", null, "4983", null, "24591", null, "3161", null, "292520", null, "5640", null, "88231", null, "3905", null, "228880", null, "5733", null, "256712", null, "5231", null, "22103", null, "2355", null, "-999999999", "N", "-999999999", "N", "6010", null, "1074", null, "-999999999", "N", "-999999999", "N", "6916", null, "1607", null, "24819", null, "2716", null, "31219", null, "2175", null, "246846", null, "5062", null, "82293", null, "2699", null, "200783", null, "5561", null, "50441", null, "2599", null, "60050", null, "3713", null, "90292", null, "4653", null, "92.2", null, "1.0", null, "57.7", null, "1.0", null, "42.3", null, "1.0", null, "50.6", null, "1.7", null, "12.7", null, "1.2", null, "3.8", null, "0.6", null, "8.9", null, "1.0", null, "36.7", null, "1.5", null, "19.6", null, "1.0", null, "13.8", null, "1.0", null, "5.5", null, "0.8", null, "1.8", null, "0.4", null, "3.7", null, "0.7", null, "0.3", null, "0.2", null, "80.4", null, "1.0", null, "36.8", null, "1.2", null, "7.2", null, "1.0", null, "2.0", null, "0.5", null, "5.2", null, "0.8", null, "36.4", null, "1.4", null, "7.8", null, "1.0", null, "92.2", null, "1.0", null, "27.8", null, "1.2", null, "72.2", null, "1.2", null, "81.0", null, "1.1", null, "7.0", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "1.9", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "2.2", null, "0.5", null, "7.8", null, "0.8", null, "9.8", null, "0.6", null, "77.8", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "25.1", null, "1.3", null, "29.9", null, "1.7", null, "45.0", null, "1.6", null, "12", "08"], ["5001900US1209", "Congressional District 9 (119th Congress), Florida", "324660", null, "8059", null, "120086", null, "5866", null, "204574", null, "7696", null, "174130", null, "9092", null, "67789", null, "6568", null, "16301", null, "3671", null, "51488", null, "5964", null, "82741", null, "6990", null, "122328", null, "7194", null, "80839", null, "5876", null, "40766", null, "5408", null, "8677", null, "2618", null, "32089", null, "4818", null, "723", null, "684", null, "202332", null, "7926", null, "93291", null, "6299", null, "27023", null, "4568", null, "7624", null, "2672", null, "19399", null, "4072", null, "82018", null, "6890", null, "39988", null, "4433", null, "284672", null, "9011", null, "96564", null, "6337", null, "228096", null, "9154", null, "133252", null, "6233", null, "36772", null, "3761", null, "1744", null, "926", null, "12519", null, "1728", null, "-999999999", "N", "-999999999", "N", "57984", null, "4256", null, "82117", null, "6960", null, "160079", null, "7022", null, "105311", null, "4889", null, "81134", null, "3106", null, "241919", null, "9010", null, "27077", null, "3874", null, "68171", null, "6234", null, "146671", null, "8567", null, "-888888888", "(X)", "-888888888", "(X)", "37.0", null, "1.6", null, "63.0", null, "1.6", null, "53.6", null, "2.5", null, "20.9", null, "1.9", null, "5.0", null, "1.1", null, "15.9", null, "1.7", null, "25.5", null, "2.1", null, "37.7", null, "2.0", null, "24.9", null, "1.7", null, "12.6", null, "1.6", null, "2.7", null, "0.8", null, "9.9", null, "1.4", null, "0.2", null, "0.2", null, "62.3", null, "2.0", null, "28.7", null, "1.8", null, "8.3", null, "1.4", null, "2.3", null, "0.8", null, "6.0", null, "1.3", null, "25.3", null, "2.0", null, "12.3", null, "1.4", null, "87.7", null, "1.4", null, "29.7", null, "1.9", null, "70.3", null, "1.9", null, "41.0", null, "1.8", null, "11.3", null, "1.1", null, "0.5", null, "0.3", null, "3.9", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "17.9", null, "1.3", null, "25.3", null, "1.9", null, "49.3", null, "1.5", null, "32.4", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.2", null, "1.6", null, "28.2", null, "2.5", null, "60.6", null, "2.3", null, "39314", null, "4497", null, "16557", null, "2426", null, "22757", null, "4329", null, "13571", null, "2871", null, "18706", null, "3260", null, "2767", null, "1127", null, "15939", null, "3088", null, "7037", null, "2204", null, "22112", null, "3743", null, "8049", null, "2426", null, "14063", null, "2909", null, "2076", null, "1028", null, "11987", null, "2660", null, "0", null, "247", null, "17202", null, "2658", null, "5522", null, "1736", null, "4643", null, "1769", null, "691", null, "435", null, "3952", null, "1716", null, "7037", null, "2204", null, "13540", null, "3193", null, "25774", null, "3680", null, "20734", null, "3402", null, "18580", null, "2874", null, "11854", null, "2213", null, "7085", null, "2208", null, "476", null, "584", null, "618", null, "536", null, "-999999999", "N", "-999999999", "N", "8595", null, "2435", null, "10686", null, "2900", null, "24079", null, "3761", null, "6993", null, "1879", null, "47044", null, "9991", null, "32277", null, "4119", null, "6056", null, "2160", null, "12847", null, "2711", null, "13374", null, "3000", null, "12.1", null, "1.4", null, "42.1", null, "6.4", null, "57.9", null, "6.4", null, "34.5", null, "6.1", null, "47.6", null, "6.6", null, "7.0", null, "2.8", null, "40.5", null, "6.5", null, "17.9", null, "5.2", null, "56.2", null, "5.8", null, "20.5", null, "5.4", null, "35.8", null, "5.9", null, "5.3", null, "2.6", null, "30.5", null, "5.5", null, "0.0", null, "0.6", null, "43.8", null, "5.8", null, "14.0", null, "4.4", null, "11.8", null, "4.5", null, "1.8", null, "1.1", null, "10.1", null, "4.3", null, "17.9", null, "5.2", null, "34.4", null, "6.7", null, "65.6", null, "6.7", null, "52.7", null, "5.5", null, "47.3", null, "5.5", null, "30.2", null, "5.4", null, "18.0", null, "5.1", null, "1.2", null, "1.5", null, "1.6", null, "1.4", null, "-999999999.0", "N", "-999999999.0", "N", "21.9", null, "5.7", null, "27.2", null, "6.2", null, "61.2", null, "6.5", null, "17.8", null, "4.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.8", null, "6.1", null, "39.8", null, "7.2", null, "41.4", null, "7.7", null, "285346", null, "9219", null, "103529", null, "5854", null, "181817", null, "8557", null, "160559", null, "9215", null, "49083", null, "5701", null, "13534", null, "3738", null, "35549", null, "5111", null, "75704", null, "6443", null, "100216", null, "7132", null, "72790", null, "5907", null, "26703", null, "4551", null, "6601", null, "2622", null, "20102", null, "4048", null, "723", null, "684", null, "185130", null, "7901", null, "87769", null, "6238", null, "22380", null, "4015", null, "6933", null, "2642", null, "15447", null, "3551", null, "74981", null, "6335", null, "26448", null, "3984", null, "258898", null, "8848", null, "75830", null, "5854", null, "209516", null, "9530", null, "121398", null, "6073", null, "29687", null, "3663", null, "1268", null, "730", null, "11901", null, "1681", null, "-999999999", "N", "-999999999", "N", "49389", null, "3723", null, "71431", null, "6614", null, "136000", null, "7320", null, "98318", null, "5034", null, "85029", null, "2295", null, "209642", null, "9179", null, "21021", null, "3011", null, "55324", null, "6048", null, "133297", null, "7929", null, "87.9", null, "1.4", null, "36.3", null, "1.9", null, "63.7", null, "1.9", null, "56.3", null, "2.7", null, "17.2", null, "1.9", null, "4.7", null, "1.3", null, "12.5", null, "1.7", null, "26.5", null, "2.1", null, "35.1", null, "2.1", null, "25.5", null, "1.8", null, "9.4", null, "1.5", null, "2.3", null, "0.9", null, "7.0", null, "1.3", null, "0.3", null, "0.2", null, "64.9", null, "2.1", null, "30.8", null, "2.1", null, "7.8", null, "1.4", null, "2.4", null, "0.9", null, "5.4", null, "1.2", null, "26.3", null, "2.1", null, "9.3", null, "1.3", null, "90.7", null, "1.3", null, "26.6", null, "2.0", null, "73.4", null, "2.0", null, "42.5", null, "1.9", null, "10.4", null, "1.3", null, "0.4", null, "0.3", null, "4.2", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "17.3", null, "1.2", null, "25.0", null, "1.9", null, "47.7", null, "1.7", null, "34.5", null, "1.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.0", null, "1.4", null, "26.4", null, "2.6", null, "63.6", null, "2.5", null, "12", "09"], ["5001900US1210", "Congressional District 10 (119th Congress), Florida", "303263", null, "7204", null, "105369", null, "5071", null, "197894", null, "6674", null, "120700", null, "6283", null, "64535", null, "5732", null, "19877", null, "3444", null, "44658", null, "4481", null, "118028", null, "5974", null, "86676", null, "6682", null, "50572", null, "5302", null, "34499", null, "4664", null, "8143", null, "2425", null, "26356", null, "4093", null, "1605", null, "1121", null, "216587", null, "7005", null, "70128", null, "4855", null, "30036", null, "3315", null, "11734", null, "2394", null, "18302", null, "2676", null, "116423", null, "5990", null, "44405", null, "5206", null, "258858", null, "7422", null, "67168", null, "5445", null, "236095", null, "7731", null, "132919", null, "5481", null, "71900", null, "4324", null, "-999999999", "N", "-999999999", "N", "13589", null, "1923", null, "-999999999", "N", "-999999999", "N", "30602", null, "4453", null, "52968", null, "5084", null, "92375", null, "5731", null, "116219", null, "4588", null, "72256", null, "3141", null, "185235", null, "7685", null, "23541", null, "3930", null, "53237", null, "5035", null, "108457", null, "6707", null, "-888888888", "(X)", "-888888888", "(X)", "34.7", null, "1.5", null, "65.3", null, "1.5", null, "39.8", null, "1.9", null, "21.3", null, "1.7", null, "6.6", null, "1.1", null, "14.7", null, "1.4", null, "38.9", null, "1.9", null, "28.6", null, "2.0", null, "16.7", null, "1.7", null, "11.4", null, "1.5", null, "2.7", null, "0.8", null, "8.7", null, "1.3", null, "0.5", null, "0.4", null, "71.4", null, "2.0", null, "23.1", null, "1.5", null, "9.9", null, "1.1", null, "3.9", null, "0.8", null, "6.0", null, "0.9", null, "38.4", null, "1.9", null, "14.6", null, "1.6", null, "85.4", null, "1.6", null, "22.1", null, "1.7", null, "77.9", null, "1.7", null, "43.8", null, "1.7", null, "23.7", null, "1.4", null, "-999999999.0", "N", "-999999999.0", "N", "4.5", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "10.1", null, "1.4", null, "17.5", null, "1.5", null, "30.5", null, "1.6", null, "38.3", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.7", null, "2.1", null, "28.7", null, "2.3", null, "58.6", null, "2.7", null, "39432", null, "4433", null, "17251", null, "2571", null, "22181", null, "3644", null, "10853", null, "2659", null, "17083", null, "2904", null, "4349", null, "1346", null, "12734", null, "2621", null, "11496", null, "2376", null, "19035", null, "3962", null, "7230", null, "2519", null, "11805", null, "2790", null, "2216", null, "1100", null, "9589", null, "2712", null, "0", null, "247", null, "20397", null, "2861", null, "3623", null, "1095", null, "5278", null, "1331", null, "2133", null, "930", null, "3145", null, "1068", null, "11496", null, "2376", null, "13936", null, "2674", null, "25496", null, "3746", null, "14526", null, "2672", null, "24906", null, "4270", null, "9996", null, "1901", null, "16077", null, "3117", null, "-999999999", "N", "-999999999", "N", "556", null, "547", null, "-999999999", "N", "-999999999", "N", "4654", null, "1723", null, "8116", null, "2368", null, "15010", null, "2550", null, "7599", null, "1666", null, "36606", null, "9277", null, "27936", null, "4082", null, "6357", null, "2193", null, "8919", null, "1887", null, "12660", null, "2433", null, "13.0", null, "1.4", null, "43.7", null, "5.5", null, "56.3", null, "5.5", null, "27.5", null, "5.3", null, "43.3", null, "5.9", null, "11.0", null, "3.1", null, "32.3", null, "6.0", null, "29.2", null, "5.6", null, "48.3", null, "6.8", null, "18.3", null, "5.5", null, "29.9", null, "5.8", null, "5.6", null, "2.6", null, "24.3", null, "6.2", null, "0.0", null, "0.6", null, "51.7", null, "6.8", null, "9.2", null, "2.8", null, "13.4", null, "3.6", null, "5.4", null, "2.4", null, "8.0", null, "2.9", null, "29.2", null, "5.6", null, "35.3", null, "5.7", null, "64.7", null, "5.7", null, "36.8", null, "6.6", null, "63.2", null, "6.6", null, "25.3", null, "4.1", null, "40.8", null, "5.7", null, "-999999999.0", "N", "-999999999.0", "N", "1.4", null, "1.4", null, "-999999999.0", "N", "-999999999.0", "N", "11.8", null, "4.4", null, "20.6", null, "5.5", null, "38.1", null, "5.9", null, "19.3", null, "3.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "22.8", null, "6.6", null, "31.9", null, "5.6", null, "45.3", null, "6.3", null, "263831", null, "7851", null, "88118", null, "4831", null, "175713", null, "6400", null, "109847", null, "6195", null, "47452", null, "5504", null, "15528", null, "3177", null, "31924", null, "4158", null, "106532", null, "5763", null, "67641", null, "6183", null, "43342", null, "4944", null, "22694", null, "4106", null, "5927", null, "2178", null, "16767", null, "3479", null, "1605", null, "1121", null, "196190", null, "6534", null, "66505", null, "4571", null, "24758", null, "3182", null, "9601", null, "2226", null, "15157", null, "2492", null, "104927", null, "5706", null, "30469", null, "4585", null, "233362", null, "7329", null, "52642", null, "4701", null, "211189", null, "7438", null, "122923", null, "5076", null, "55823", null, "4713", null, "-999999999", "N", "-999999999", "N", "13033", null, "2022", null, "-999999999", "N", "-999999999", "N", "25948", null, "4069", null, "44852", null, "4729", null, "77365", null, "5678", null, "108620", null, "4332", null, "79688", null, "4224", null, "157299", null, "8141", null, "17184", null, "3316", null, "44318", null, "4811", null, "95797", null, "6361", null, "87.0", null, "1.4", null, "33.4", null, "1.5", null, "66.6", null, "1.5", null, "41.6", null, "2.0", null, "18.0", null, "1.9", null, "5.9", null, "1.2", null, "12.1", null, "1.4", null, "40.4", null, "2.1", null, "25.6", null, "2.0", null, "16.4", null, "1.8", null, "8.6", null, "1.5", null, "2.2", null, "0.8", null, "6.4", null, "1.2", null, "0.6", null, "0.4", null, "74.4", null, "2.0", null, "25.2", null, "1.6", null, "9.4", null, "1.2", null, "3.6", null, "0.8", null, "5.7", null, "1.0", null, "39.8", null, "2.1", null, "11.5", null, "1.6", null, "88.5", null, "1.6", null, "20.0", null, "1.6", null, "80.0", null, "1.6", null, "46.6", null, "2.0", null, "21.2", null, "1.6", null, "-999999999.0", "N", "-999999999.0", "N", "4.9", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "9.8", null, "1.5", null, "17.0", null, "1.6", null, "29.3", null, "1.8", null, "41.2", null, "1.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.9", null, "2.0", null, "28.2", null, "2.5", null, "60.9", null, "3.0", null, "12", "10"], ["5001900US1211", "Congressional District 11 (119th Congress), Florida", "348887", null, "8295", null, "183759", null, "5057", null, "165128", null, "7461", null, "197984", null, "7403", null, "45258", null, "4892", null, "13582", null, "2885", null, "31676", null, "3973", null, "105645", null, "5837", null, "87687", null, "6083", null, "63430", null, "5540", null, "23329", null, "3548", null, "5246", null, "1538", null, "18083", null, "3231", null, "928", null, "939", null, "261200", null, "7698", null, "134554", null, "5811", null, "21929", null, "2993", null, "8336", null, "2387", null, "13593", null, "1771", null, "104717", null, "5790", null, "30350", null, "4514", null, "318537", null, "8607", null, "87856", null, "4932", null, "261031", null, "8360", null, "232265", null, "6006", null, "38716", null, "3894", null, "-999999999", "N", "-999999999", "N", "12599", null, "2222", null, "-999999999", "N", "-999999999", "N", "14417", null, "2827", null, "50322", null, "5029", null, "57068", null, "4153", null, "224464", null, "5511", null, "87147", null, "2513", null, "243242", null, "7406", null, "63701", null, "4158", null, "70367", null, "5416", null, "109174", null, "6147", null, "-888888888", "(X)", "-888888888", "(X)", "52.7", null, "1.4", null, "47.3", null, "1.4", null, "56.7", null, "1.8", null, "13.0", null, "1.4", null, "3.9", null, "0.8", null, "9.1", null, "1.1", null, "30.3", null, "1.5", null, "25.1", null, "1.6", null, "18.2", null, "1.5", null, "6.7", null, "1.0", null, "1.5", null, "0.4", null, "5.2", null, "0.9", null, "0.3", null, "0.3", null, "74.9", null, "1.6", null, "38.6", null, "1.6", null, "6.3", null, "0.8", null, "2.4", null, "0.7", null, "3.9", null, "0.5", null, "30.0", null, "1.5", null, "8.7", null, "1.3", null, "91.3", null, "1.3", null, "25.2", null, "1.4", null, "74.8", null, "1.4", null, "66.6", null, "1.3", null, "11.1", null, "1.0", null, "-999999999.0", "N", "-999999999.0", "N", "3.6", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "4.1", null, "0.8", null, "14.4", null, "1.4", null, "16.4", null, "1.1", null, "64.3", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "26.2", null, "1.7", null, "28.9", null, "2.0", null, "44.9", null, "1.9", null, "27587", null, "3187", null, "13288", null, "2184", null, "14299", null, "2486", null, "8668", null, "2296", null, "10877", null, "2441", null, "1137", null, "709", null, "9740", null, "2529", null, "8042", null, "1991", null, "12377", null, "2934", null, "4692", null, "1709", null, "7685", null, "2477", null, "368", null, "354", null, "7317", null, "2481", null, "0", null, "247", null, "15210", null, "2497", null, "3976", null, "1401", null, "3192", null, "1173", null, "769", null, "645", null, "2423", null, "974", null, "8042", null, "1991", null, "8975", null, "2474", null, "18612", null, "2909", null, "13757", null, "2973", null, "13830", null, "2614", null, "12234", null, "1959", null, "7906", null, "1879", null, "-999999999", "N", "-999999999", "N", "748", null, "570", null, "-999999999", "N", "-999999999", "N", "1150", null, "625", null, "5549", null, "2452", null, "4799", null, "1568", null, "11033", null, "1750", null, "41542", null, "5028", null, "19545", null, "3284", null, "5038", null, "2257", null, "8823", null, "2149", null, "5684", null, "1683", null, "7.9", null, "0.9", null, "48.2", null, "6.2", null, "51.8", null, "6.2", null, "31.4", null, "7.3", null, "39.4", null, "7.1", null, "4.1", null, "2.6", null, "35.3", null, "7.6", null, "29.2", null, "7.2", null, "44.9", null, "8.3", null, "17.0", null, "5.9", null, "27.9", null, "7.7", null, "1.3", null, "1.3", null, "26.5", null, "7.7", null, "0.0", null, "0.9", null, "55.1", null, "8.3", null, "14.4", null, "4.6", null, "11.6", null, "4.4", null, "2.8", null, "2.3", null, "8.8", null, "3.7", null, "29.2", null, "7.2", null, "32.5", null, "7.9", null, "67.5", null, "7.9", null, "49.9", null, "8.4", null, "50.1", null, "8.4", null, "44.3", null, "6.7", null, "28.7", null, "6.4", null, "-999999999.0", "N", "-999999999.0", "N", "2.7", null, "2.1", null, "-999999999.0", "N", "-999999999.0", "N", "4.2", null, "2.2", null, "20.1", null, "7.9", null, "17.4", null, "4.8", null, "40.0", null, "6.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "25.8", null, "10.2", null, "45.1", null, "9.7", null, "29.1", null, "6.8", null, "321300", null, "8125", null, "170471", null, "4983", null, "150829", null, "7021", null, "189316", null, "6928", null, "34381", null, "4165", null, "12445", null, "2713", null, "21936", null, "3090", null, "97603", null, "5629", null, "75310", null, "6019", null, "58738", null, "5131", null, "15644", null, "2797", null, "4878", null, "1502", null, "10766", null, "2271", null, "928", null, "939", null, "245990", null, "7187", null, "130578", null, "5541", null, "18737", null, "3030", null, "7567", null, "2253", null, "11170", null, "1903", null, "96675", null, "5576", null, "21375", null, "3357", null, "299925", null, "8352", null, "74099", null, "4537", null, "247201", null, "8258", null, "220031", null, "5701", null, "30810", null, "3563", null, "-999999999", "N", "-999999999", "N", "11851", null, "2256", null, "-999999999", "N", "-999999999", "N", "13267", null, "2849", null, "44773", null, "4632", null, "52269", null, "4195", null, "213431", null, "5339", null, "91992", null, "2073", null, "223697", null, "7237", null, "58663", null, "3903", null, "61544", null, "4866", null, "103490", null, "5869", null, "92.1", null, "0.9", null, "53.1", null, "1.4", null, "46.9", null, "1.4", null, "58.9", null, "1.7", null, "10.7", null, "1.3", null, "3.9", null, "0.8", null, "6.8", null, "1.0", null, "30.4", null, "1.5", null, "23.4", null, "1.6", null, "18.3", null, "1.5", null, "4.9", null, "0.8", null, "1.5", null, "0.5", null, "3.4", null, "0.7", null, "0.3", null, "0.3", null, "76.6", null, "1.6", null, "40.6", null, "1.6", null, "5.8", null, "0.9", null, "2.4", null, "0.7", null, "3.5", null, "0.6", null, "30.1", null, "1.5", null, "6.7", null, "1.0", null, "93.3", null, "1.0", null, "23.1", null, "1.4", null, "76.9", null, "1.4", null, "68.5", null, "1.5", null, "9.6", null, "1.0", null, "-999999999.0", "N", "-999999999.0", "N", "3.7", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "4.1", null, "0.9", null, "13.9", null, "1.4", null, "16.3", null, "1.2", null, "66.4", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "26.2", null, "1.7", null, "27.5", null, "2.0", null, "46.3", null, "1.9", null, "12", "11"], ["5001900US1212", "Congressional District 12 (119th Congress), Florida", "340700", null, "5867", null, "190601", null, "4144", null, "150099", null, "5364", null, "164487", null, "6241", null, "57121", null, "4734", null, "17165", null, "2675", null, "39956", null, "4116", null, "119092", null, "5702", null, "83187", null, "5057", null, "53674", null, "4083", null, "28868", null, "3161", null, "9162", null, "2141", null, "19706", null, "2897", null, "645", null, "497", null, "257513", null, "4873", null, "110813", null, "5039", null, "28253", null, "3584", null, "8003", null, "1570", null, "20250", null, "3068", null, "118447", null, "5719", null, "44095", null, "4204", null, "296605", null, "6415", null, "117610", null, "5873", null, "223090", null, "6993", null, "279612", null, "5711", null, "13997", null, "1927", null, "-999999999", "N", "-999999999", "N", "6223", null, "1178", null, "-999999999", "N", "-999999999", "N", "9907", null, "2070", null, "29599", null, "3116", null, "41251", null, "2998", null, "268894", null, "5397", null, "68503", null, "2337", null, "221608", null, "6546", null, "54492", null, "3772", null, "67830", null, "4341", null, "99286", null, "6142", null, "-888888888", "(X)", "-888888888", "(X)", "55.9", null, "1.1", null, "44.1", null, "1.1", null, "48.3", null, "1.7", null, "16.8", null, "1.3", null, "5.0", null, "0.8", null, "11.7", null, "1.2", null, "35.0", null, "1.6", null, "24.4", null, "1.3", null, "15.8", null, "1.1", null, "8.5", null, "0.9", null, "2.7", null, "0.6", null, "5.8", null, "0.8", null, "0.2", null, "0.1", null, "75.6", null, "1.3", null, "32.5", null, "1.5", null, "8.3", null, "1.1", null, "2.3", null, "0.5", null, "5.9", null, "0.9", null, "34.8", null, "1.6", null, "12.9", null, "1.2", null, "87.1", null, "1.2", null, "34.5", null, "1.7", null, "65.5", null, "1.7", null, "82.1", null, "1.0", null, "4.1", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "1.8", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "2.9", null, "0.6", null, "8.7", null, "0.9", null, "12.1", null, "0.8", null, "78.9", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "24.6", null, "1.6", null, "30.6", null, "1.9", null, "44.8", null, "2.2", null, "35031", null, "3693", null, "19753", null, "2576", null, "15278", null, "2701", null, "8760", null, "1607", null, "12791", null, "2374", null, "3954", null, "1235", null, "8837", null, "1919", null, "13480", null, "1854", null, "12756", null, "2276", null, "4180", null, "1110", null, "8480", null, "1917", null, "2175", null, "1057", null, "6305", null, "1691", null, "96", null, "166", null, "22275", null, "2550", null, "4580", null, "1089", null, "4311", null, "1265", null, "1779", null, "930", null, "2532", null, "797", null, "13384", null, "1833", null, "14362", null, "2216", null, "20669", null, "3118", null, "17901", null, "2348", null, "17130", null, "2837", null, "27654", null, "3081", null, "1904", null, "816", null, "-999999999", "N", "-999999999", "N", "255", null, "210", null, "-999999999", "N", "-999999999", "N", "1747", null, "780", null, "3349", null, "1048", null, "5726", null, "1156", null, "25848", null, "3095", null, "34915", null, "3890", null, "21551", null, "3025", null, "4955", null, "1084", null, "10221", null, "2001", null, "6375", null, "1454", null, "10.3", null, "1.1", null, "56.4", null, "5.5", null, "43.6", null, "5.5", null, "25.0", null, "3.7", null, "36.5", null, "4.9", null, "11.3", null, "3.2", null, "25.2", null, "4.4", null, "38.5", null, "4.4", null, "36.4", null, "4.5", null, "11.9", null, "2.8", null, "24.2", null, "4.5", null, "6.2", null, "3.0", null, "18.0", null, "4.1", null, "0.3", null, "0.5", null, "63.6", null, "4.5", null, "13.1", null, "2.8", null, "12.3", null, "3.3", null, "5.1", null, "2.5", null, "7.2", null, "2.2", null, "38.2", null, "4.4", null, "41.0", null, "5.4", null, "59.0", null, "5.4", null, "51.1", null, "5.3", null, "48.9", null, "5.3", null, "78.9", null, "3.7", null, "5.4", null, "2.3", null, "-999999999.0", "N", "-999999999.0", "N", "0.7", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "5.0", null, "2.1", null, "9.6", null, "2.7", null, "16.3", null, "3.1", null, "73.8", null, "3.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "23.0", null, "5.0", null, "47.4", null, "5.0", null, "29.6", null, "5.1", null, "305669", null, "6272", null, "170848", null, "4166", null, "134821", null, "5608", null, "155727", null, "6238", null, "44330", null, "4353", null, "13211", null, "2496", null, "31119", null, "3628", null, "105612", null, "5267", null, "70431", null, "4776", null, "49494", null, "4061", null, "20388", null, "2561", null, "6987", null, "1934", null, "13401", null, "2266", null, "549", null, "465", null, "235238", null, "5211", null, "106233", null, "4996", null, "23942", null, "3274", null, "6224", null, "1301", null, "17718", null, "2886", null, "105063", null, "5299", null, "29733", null, "3337", null, "275936", null, "6974", null, "99709", null, "5534", null, "205960", null, "6882", null, "251958", null, "6209", null, "12093", null, "1891", null, "-999999999", "N", "-999999999", "N", "5968", null, "1198", null, "-999999999", "N", "-999999999", "N", "8160", null, "1917", null, "26250", null, "2858", null, "35525", null, "3061", null, "243046", null, "5975", null, "72853", null, "2966", null, "200057", null, "6642", null, "49537", null, "3369", null, "57609", null, "3995", null, "92911", null, "6058", null, "89.7", null, "1.1", null, "55.9", null, "1.3", null, "44.1", null, "1.3", null, "50.9", null, "1.8", null, "14.5", null, "1.4", null, "4.3", null, "0.8", null, "10.2", null, "1.2", null, "34.6", null, "1.6", null, "23.0", null, "1.3", null, "16.2", null, "1.2", null, "6.7", null, "0.8", null, "2.3", null, "0.6", null, "4.4", null, "0.7", null, "0.2", null, "0.2", null, "77.0", null, "1.3", null, "34.8", null, "1.6", null, "7.8", null, "1.1", null, "2.0", null, "0.4", null, "5.8", null, "0.9", null, "34.4", null, "1.6", null, "9.7", null, "1.1", null, "90.3", null, "1.1", null, "32.6", null, "1.7", null, "67.4", null, "1.7", null, "82.4", null, "1.1", null, "4.0", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "2.0", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "2.7", null, "0.6", null, "8.6", null, "0.9", null, "11.6", null, "0.9", null, "79.5", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "24.8", null, "1.7", null, "28.8", null, "1.8", null, "46.4", null, "2.2", null, "12", "12"], ["5001900US1213", "Congressional District 13 (119th Congress), Florida", "339842", null, "5608", null, "193983", null, "4632", null, "145859", null, "5317", null, "145535", null, "5297", null, "44796", null, "3588", null, "12057", null, "2466", null, "32739", null, "2923", null, "149511", null, "5817", null, "55521", null, "3492", null, "36037", null, "3178", null, "19123", null, "2548", null, "4736", null, "1747", null, "14387", null, "2024", null, "361", null, "243", null, "284321", null, "6134", null, "109498", null, "4525", null, "25673", null, "2846", null, "7321", null, "1666", null, "18352", null, "2310", null, "149150", null, "5844", null, "32629", null, "3015", null, "307213", null, "6497", null, "96783", null, "4659", null, "243059", null, "6350", null, "274307", null, "5046", null, "18706", null, "2391", null, "482", null, "285", null, "8619", null, "1283", null, "-999999999", "N", "-999999999", "N", "7407", null, "1577", null, "30088", null, "3037", null, "32178", null, "1982", null, "266387", null, "4916", null, "75904", null, "1985", null, "190331", null, "5345", null, "44035", null, "3136", null, "55762", null, "4255", null, "90534", null, "4819", null, "-888888888", "(X)", "-888888888", "(X)", "57.1", null, "1.2", null, "42.9", null, "1.2", null, "42.8", null, "1.5", null, "13.2", null, "1.0", null, "3.5", null, "0.7", null, "9.6", null, "0.9", null, "44.0", null, "1.4", null, "16.3", null, "1.0", null, "10.6", null, "0.9", null, "5.6", null, "0.8", null, "1.4", null, "0.5", null, "4.2", null, "0.6", null, "0.1", null, "0.1", null, "83.7", null, "1.0", null, "32.2", null, "1.3", null, "7.6", null, "0.8", null, "2.2", null, "0.5", null, "5.4", null, "0.7", null, "43.9", null, "1.4", null, "9.6", null, "0.9", null, "90.4", null, "0.9", null, "28.5", null, "1.3", null, "71.5", null, "1.3", null, "80.7", null, "1.0", null, "5.5", null, "0.7", null, "0.1", null, "0.1", null, "2.5", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "2.2", null, "0.5", null, "8.9", null, "0.9", null, "9.5", null, "0.6", null, "78.4", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "23.1", null, "1.5", null, "29.3", null, "2.1", null, "47.6", null, "2.2", null, "24103", null, "2732", null, "13849", null, "1905", null, "10254", null, "2063", null, "5251", null, "1240", null, "8656", null, "1772", null, "1772", null, "719", null, "6884", null, "1621", null, "10196", null, "1897", null, "7633", null, "1709", null, "2605", null, "930", null, "4975", null, "1465", null, "790", null, "486", null, "4185", null, "1374", null, "53", null, "89", null, "16470", null, "2283", null, "2646", null, "886", null, "3681", null, "1139", null, "982", null, "518", null, "2699", null, "943", null, "10143", null, "1894", null, "8931", null, "1735", null, "15172", null, "1939", null, "12702", null, "1784", null, "11401", null, "2150", null, "13813", null, "2028", null, "4642", null, "1593", null, "105", null, "107", null, "950", null, "447", null, "-999999999", "N", "-999999999", "N", "1291", null, "704", null, "3302", null, "943", null, "3884", null, "1087", null, "13011", null, "1970", null, "30373", null, "5894", null, "13907", null, "2168", null, "3929", null, "1402", null, "4370", null, "1116", null, "5608", null, "1196", null, "7.1", null, "0.8", null, "57.5", null, "6.2", null, "42.5", null, "6.2", null, "21.8", null, "4.7", null, "35.9", null, "6.0", null, "7.4", null, "3.0", null, "28.6", null, "5.6", null, "42.3", null, "6.2", null, "31.7", null, "5.9", null, "10.8", null, "3.9", null, "20.6", null, "5.2", null, "3.3", null, "2.0", null, "17.4", null, "5.0", null, "0.2", null, "0.4", null, "68.3", null, "5.9", null, "11.0", null, "3.3", null, "15.3", null, "4.7", null, "4.1", null, "2.2", null, "11.2", null, "3.9", null, "42.1", null, "6.2", null, "37.1", null, "5.2", null, "62.9", null, "5.2", null, "52.7", null, "6.0", null, "47.3", null, "6.0", null, "57.3", null, "5.3", null, "19.3", null, "5.5", null, "0.4", null, "0.4", null, "3.9", null, "1.9", null, "-999999999.0", "N", "-999999999.0", "N", "5.4", null, "2.9", null, "13.7", null, "4.1", null, "16.1", null, "4.6", null, "54.0", null, "5.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "28.3", null, "7.4", null, "31.4", null, "7.0", null, "40.3", null, "7.9", null, "315739", null, "6363", null, "180134", null, "5073", null, "135605", null, "5434", null, "140284", null, "5312", null, "36140", null, "3135", null, "10285", null, "2259", null, "25855", null, "2620", null, "139315", null, "6068", null, "47888", null, "3210", null, "33432", null, "3098", null, "14148", null, "2239", null, "3946", null, "1617", null, "10202", null, "1580", null, "308", null, "233", null, "267851", null, "6613", null, "106852", null, "4444", null, "21992", null, "2493", null, "6339", null, "1525", null, "15653", null, "2119", null, "139007", null, "6101", null, "23698", null, "2807", null, "292041", null, "6861", null, "84081", null, "4336", null, "231658", null, "6450", null, "260494", null, "5669", null, "14064", null, "2059", null, "377", null, "264", null, "7669", null, "1299", null, "-999999999", "N", "-999999999", "N", "6116", null, "1346", null, "26786", null, "2919", null, "28294", null, "2147", null, "253376", null, "5432", null, "79673", null, "3227", null, "176424", null, "5265", null, "40106", null, "2851", null, "51392", null, "4038", null, "84926", null, "4737", null, "92.9", null, "0.8", null, "57.1", null, "1.3", null, "42.9", null, "1.3", null, "44.4", null, "1.6", null, "11.4", null, "1.0", null, "3.3", null, "0.7", null, "8.2", null, "0.8", null, "44.1", null, "1.5", null, "15.2", null, "1.0", null, "10.6", null, "1.0", null, "4.5", null, "0.7", null, "1.2", null, "0.5", null, "3.2", null, "0.5", null, "0.1", null, "0.1", null, "84.8", null, "1.0", null, "33.8", null, "1.4", null, "7.0", null, "0.8", null, "2.0", null, "0.5", null, "5.0", null, "0.6", null, "44.0", null, "1.5", null, "7.5", null, "0.9", null, "92.5", null, "0.9", null, "26.6", null, "1.3", null, "73.4", null, "1.3", null, "82.5", null, "1.0", null, "4.5", null, "0.6", null, "0.1", null, "0.1", null, "2.4", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "1.9", null, "0.4", null, "8.5", null, "0.9", null, "9.0", null, "0.6", null, "80.2", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "22.7", null, "1.5", null, "29.1", null, "2.1", null, "48.1", null, "2.2", null, "12", "13"], ["5001900US1214", "Congressional District 14 (119th Congress), Florida", "350529", null, "7396", null, "126635", null, "4563", null, "223894", null, "7714", null, "133147", null, "5440", null, "54811", null, "4347", null, "15684", null, "2597", null, "39127", null, "3714", null, "162571", null, "7171", null, "85175", null, "5886", null, "53278", null, "4894", null, "31295", null, "3494", null, "6714", null, "1835", null, "24581", null, "3110", null, "602", null, "470", null, "265354", null, "8349", null, "79869", null, "4811", null, "23516", null, "2994", null, "8970", null, "2016", null, "14546", null, "2307", null, "161969", null, "7158", null, "44748", null, "4118", null, "305781", null, "7777", null, "79783", null, "5060", null, "270746", null, "7869", null, "193431", null, "6526", null, "57288", null, "4583", null, "-999999999", "N", "-999999999", "N", "12890", null, "1921", null, "-999999999", "N", "-999999999", "N", "20770", null, "3072", null, "65154", null, "5518", null, "87069", null, "5409", null, "179851", null, "6103", null, "81076", null, "3075", null, "187958", null, "5789", null, "26453", null, "2861", null, "58511", null, "5002", null, "102994", null, "5194", null, "-888888888", "(X)", "-888888888", "(X)", "36.1", null, "1.3", null, "63.9", null, "1.3", null, "38.0", null, "1.5", null, "15.6", null, "1.2", null, "4.5", null, "0.7", null, "11.2", null, "1.1", null, "46.4", null, "1.5", null, "24.3", null, "1.6", null, "15.2", null, "1.4", null, "8.9", null, "1.0", null, "1.9", null, "0.5", null, "7.0", null, "0.9", null, "0.2", null, "0.1", null, "75.7", null, "1.6", null, "22.8", null, "1.4", null, "6.7", null, "0.9", null, "2.6", null, "0.6", null, "4.1", null, "0.7", null, "46.2", null, "1.5", null, "12.8", null, "1.2", null, "87.2", null, "1.2", null, "22.8", null, "1.4", null, "77.2", null, "1.4", null, "55.2", null, "1.8", null, "16.3", null, "1.2", null, "-999999999.0", "N", "-999999999.0", "N", "3.7", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "5.9", null, "0.9", null, "18.6", null, "1.5", null, "24.8", null, "1.4", null, "51.3", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.1", null, "1.5", null, "31.1", null, "2.2", null, "54.8", null, "2.4", null, "47873", null, "4494", null, "24991", null, "2854", null, "22882", null, "3015", null, "12773", null, "2175", null, "17718", null, "2565", null, "3963", null, "1263", null, "13755", null, "2267", null, "17382", null, "2703", null, "18801", null, "3392", null, "6076", null, "1897", null, "12633", null, "2453", null, "2642", null, "1055", null, "9991", null, "2141", null, "92", null, "155", null, "29072", null, "3377", null, "6697", null, "1622", null, "5085", null, "1266", null, "1321", null, "750", null, "3764", null, "1058", null, "17290", null, "2698", null, "19466", null, "2748", null, "28407", null, "3523", null, "23350", null, "2692", null, "24523", null, "3648", null, "11282", null, "1812", null, "15682", null, "2151", null, "-999999999", "N", "-999999999", "N", "1141", null, "722", null, "-999999999", "N", "-999999999", "N", "4674", null, "1584", null, "15094", null, "3181", null, "21332", null, "3409", null, "9346", null, "1737", null, "31548", null, "2814", null, "30491", null, "3685", null, "6343", null, "1623", null, "14077", null, "2905", null, "10071", null, "2152", null, "13.7", null, "1.3", null, "52.2", null, "4.0", null, "47.8", null, "4.0", null, "26.7", null, "3.6", null, "37.0", null, "4.2", null, "8.3", null, "2.4", null, "28.7", null, "4.2", null, "36.3", null, "4.6", null, "39.3", null, "5.4", null, "12.7", null, "3.5", null, "26.4", null, "4.4", null, "5.5", null, "2.1", null, "20.9", null, "4.1", null, "0.2", null, "0.3", null, "60.7", null, "5.4", null, "14.0", null, "3.4", null, "10.6", null, "2.5", null, "2.8", null, "1.5", null, "7.9", null, "2.2", null, "36.1", null, "4.6", null, "40.7", null, "4.5", null, "59.3", null, "4.5", null, "48.8", null, "4.8", null, "51.2", null, "4.8", null, "23.6", null, "3.7", null, "32.8", null, "4.0", null, "-999999999.0", "N", "-999999999.0", "N", "2.4", null, "1.5", null, "-999999999.0", "N", "-999999999.0", "N", "9.8", null, "3.0", null, "31.5", null, "5.2", null, "44.6", null, "4.6", null, "19.5", null, "3.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "20.8", null, "5.3", null, "46.2", null, "6.4", null, "33.0", null, "6.1", null, "302656", null, "7939", null, "101644", null, "4707", null, "201012", null, "7284", null, "120374", null, "5230", null, "37093", null, "3987", null, "11721", null, "2237", null, "25372", null, "3427", null, "145189", null, "7099", null, "66374", null, "4615", null, "47202", null, "4160", null, "18662", null, "3015", null, "4072", null, "1453", null, "14590", null, "2775", null, "510", null, "442", null, "236282", null, "8256", null, "73172", null, "4724", null, "18431", null, "2753", null, "7649", null, "1863", null, "10782", null, "1989", null, "144679", null, "7097", null, "25282", null, "3329", null, "277374", null, "7627", null, "56433", null, "4450", null, "246223", null, "8523", null, "182149", null, "6536", null, "41606", null, "4414", null, "-999999999", "N", "-999999999", "N", "11749", null, "1742", null, "-999999999", "N", "-999999999", "N", "16096", null, "2760", null, "50060", null, "4594", null, "65737", null, "5093", null, "170505", null, "6119", null, "90232", null, "4465", null, "157467", null, "6030", null, "20110", null, "2585", null, "44434", null, "4279", null, "92923", null, "4936", null, "86.3", null, "1.3", null, "33.6", null, "1.4", null, "66.4", null, "1.4", null, "39.8", null, "1.6", null, "12.3", null, "1.3", null, "3.9", null, "0.7", null, "8.4", null, "1.1", null, "48.0", null, "1.7", null, "21.9", null, "1.5", null, "15.6", null, "1.4", null, "6.2", null, "1.0", null, "1.3", null, "0.5", null, "4.8", null, "0.9", null, "0.2", null, "0.1", null, "78.1", null, "1.5", null, "24.2", null, "1.5", null, "6.1", null, "0.9", null, "2.5", null, "0.6", null, "3.6", null, "0.7", null, "47.8", null, "1.8", null, "8.4", null, "1.1", null, "91.6", null, "1.1", null, "18.6", null, "1.5", null, "81.4", null, "1.5", null, "60.2", null, "1.9", null, "13.7", null, "1.3", null, "-999999999.0", "N", "-999999999.0", "N", "3.9", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "5.3", null, "0.9", null, "16.5", null, "1.4", null, "21.7", null, "1.6", null, "56.3", null, "1.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.8", null, "1.6", null, "28.2", null, "2.3", null, "59.0", null, "2.6", null, "12", "14"], ["5001900US1215", "Congressional District 15 (119th Congress), Florida", "315803", null, "9029", null, "133908", null, "6099", null, "181895", null, "7853", null, "147003", null, "7044", null, "57757", null, "4911", null, "15761", null, "2686", null, "41996", null, "4206", null, "111043", null, "5684", null, "92066", null, "5387", null, "60199", null, "5061", null, "30872", null, "3441", null, "6760", null, "1626", null, "24112", null, "3164", null, "995", null, "632", null, "223737", null, "8670", null, "86804", null, "5283", null, "26885", null, "3469", null, "9001", null, "2031", null, "17884", null, "2698", null, "110048", null, "5736", null, "37798", null, "3710", null, "278005", null, "9100", null, "86451", null, "5416", null, "229352", null, "8167", null, "183890", null, "6566", null, "45333", null, "4245", null, "1132", null, "476", null, "16563", null, "2856", null, "-999999999", "N", "-999999999", "N", "20801", null, "3278", null, "48084", null, "4564", null, "72822", null, "5110", null, "171562", null, "6188", null, "72384", null, "2953", null, "204760", null, "7438", null, "31155", null, "3159", null, "63538", null, "4827", null, "110067", null, "7096", null, "-888888888", "(X)", "-888888888", "(X)", "42.4", null, "1.7", null, "57.6", null, "1.7", null, "46.5", null, "1.8", null, "18.3", null, "1.5", null, "5.0", null, "0.8", null, "13.3", null, "1.3", null, "35.2", null, "1.5", null, "29.2", null, "1.6", null, "19.1", null, "1.5", null, "9.8", null, "1.1", null, "2.1", null, "0.5", null, "7.6", null, "1.0", null, "0.3", null, "0.2", null, "70.8", null, "1.6", null, "27.5", null, "1.4", null, "8.5", null, "1.0", null, "2.9", null, "0.6", null, "5.7", null, "0.8", null, "34.8", null, "1.5", null, "12.0", null, "1.2", null, "88.0", null, "1.2", null, "27.4", null, "1.5", null, "72.6", null, "1.5", null, "58.2", null, "1.6", null, "14.4", null, "1.3", null, "0.4", null, "0.1", null, "5.2", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "6.6", null, "1.0", null, "15.2", null, "1.3", null, "23.1", null, "1.4", null, "54.3", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.2", null, "1.5", null, "31.0", null, "2.3", null, "53.8", null, "2.3", null, "36368", null, "3792", null, "17521", null, "2734", null, "18847", null, "2785", null, "9905", null, "1908", null, "14789", null, "2858", null, "2453", null, "1143", null, "12336", null, "2621", null, "11674", null, "2304", null, "16502", null, "2997", null, "6089", null, "1600", null, "9614", null, "2389", null, "1374", null, "816", null, "8240", null, "2232", null, "799", null, "647", null, "19866", null, "2953", null, "3816", null, "1155", null, "5175", null, "1416", null, "1079", null, "684", null, "4096", null, "1270", null, "10875", null, "2316", null, "13492", null, "2405", null, "22876", null, "3259", null, "15844", null, "2723", null, "20524", null, "3257", null, "15111", null, "2175", null, "7308", null, "1779", null, "326", null, "254", null, "990", null, "513", null, "-999999999", "N", "-999999999", "N", "4785", null, "1700", null, "7848", null, "1773", null, "14553", null, "2685", null, "12729", null, "2043", null, "35654", null, "5058", null, "24694", null, "3312", null, "5226", null, "1683", null, "10450", null, "2167", null, "9018", null, "1969", null, "11.5", null, "1.2", null, "48.2", null, "5.5", null, "51.8", null, "5.5", null, "27.2", null, "4.5", null, "40.7", null, "6.4", null, "6.7", null, "3.0", null, "33.9", null, "6.1", null, "32.1", null, "5.5", null, "45.4", null, "6.3", null, "16.7", null, "3.9", null, "26.4", null, "5.6", null, "3.8", null, "2.2", null, "22.7", null, "5.4", null, "2.2", null, "1.8", null, "54.6", null, "6.3", null, "10.5", null, "3.1", null, "14.2", null, "3.7", null, "3.0", null, "1.8", null, "11.3", null, "3.4", null, "29.9", null, "5.4", null, "37.1", null, "5.7", null, "62.9", null, "5.7", null, "43.6", null, "6.3", null, "56.4", null, "6.3", null, "41.6", null, "5.0", null, "20.1", null, "4.3", null, "0.9", null, "0.7", null, "2.7", null, "1.4", null, "-999999999.0", "N", "-999999999.0", "N", "13.2", null, "4.1", null, "21.6", null, "4.3", null, "40.0", null, "5.4", null, "35.0", null, "4.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "21.2", null, "5.9", null, "42.3", null, "7.2", null, "36.5", null, "6.2", null, "279435", null, "8803", null, "116387", null, "5780", null, "163048", null, "7380", null, "137098", null, "7040", null, "42968", null, "4288", null, "13308", null, "2417", null, "29660", null, "3383", null, "99369", null, "5490", null, "75564", null, "5255", null, "54110", null, "4715", null, "21258", null, "2780", null, "5386", null, "1386", null, "15872", null, "2416", null, "196", null, "171", null, "203871", null, "8293", null, "82988", null, "5084", null, "21710", null, "3277", null, "7922", null, "1914", null, "13788", null, "2421", null, "99173", null, "5503", null, "24306", null, "3204", null, "255129", null, "8267", null, "70607", null, "4611", null, "208828", null, "8044", null, "168779", null, "6491", null, "38025", null, "3995", null, "806", null, "380", null, "15573", null, "2768", null, "-999999999", "N", "-999999999", "N", "16016", null, "2785", null, "40236", null, "4231", null, "58269", null, "4273", null, "158833", null, "6250", null, "78072", null, "3222", null, "180066", null, "7453", null, "25929", null, "2905", null, "53088", null, "4314", null, "101049", null, "6830", null, "88.5", null, "1.2", null, "41.7", null, "1.7", null, "58.3", null, "1.7", null, "49.1", null, "1.9", null, "15.4", null, "1.5", null, "4.8", null, "0.8", null, "10.6", null, "1.2", null, "35.6", null, "1.7", null, "27.0", null, "1.7", null, "19.4", null, "1.6", null, "7.6", null, "1.0", null, "1.9", null, "0.5", null, "5.7", null, "0.9", null, "0.1", null, "0.1", null, "73.0", null, "1.7", null, "29.7", null, "1.5", null, "7.8", null, "1.1", null, "2.8", null, "0.7", null, "4.9", null, "0.9", null, "35.5", null, "1.7", null, "8.7", null, "1.1", null, "91.3", null, "1.1", null, "25.3", null, "1.5", null, "74.7", null, "1.5", null, "60.4", null, "1.7", null, "13.6", null, "1.4", null, "0.3", null, "0.1", null, "5.6", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "5.7", null, "1.0", null, "14.4", null, "1.4", null, "20.9", null, "1.4", null, "56.8", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.4", null, "1.5", null, "29.5", null, "2.4", null, "56.1", null, "2.4", null, "12", "15"], ["5001900US1216", "Congressional District 16 (119th Congress), Florida", "347111", null, "7458", null, "175183", null, "5279", null, "171928", null, "6443", null, "185039", null, "6844", null, "49660", null, "4656", null, "13701", null, "2210", null, "35959", null, "4170", null, "112412", null, "5712", null, "91995", null, "5772", null, "63964", null, "5221", null, "27009", null, "3928", null, "7030", null, "1639", null, "19979", null, "3633", null, "1022", null, "743", null, "255116", null, "7738", null, "121075", null, "5415", null, "22651", null, "3283", null, "6671", null, "1540", null, "15980", null, "2692", null, "111390", null, "5703", null, "34518", null, "3971", null, "312593", null, "7786", null, "97858", null, "7117", null, "249253", null, "7856", null, "238984", null, "6280", null, "38930", null, "4058", null, "-999999999", "N", "-999999999", "N", "9145", null, "1587", null, "-999999999", "N", "-999999999", "N", "17697", null, "2747", null, "41493", null, "3951", null, "60239", null, "4309", null, "227470", null, "5715", null, "88995", null, "3554", null, "234699", null, "7381", null, "49383", null, "3658", null, "69379", null, "5647", null, "115937", null, "7138", null, "-888888888", "(X)", "-888888888", "(X)", "50.5", null, "1.3", null, "49.5", null, "1.3", null, "53.3", null, "1.8", null, "14.3", null, "1.2", null, "3.9", null, "0.6", null, "10.4", null, "1.1", null, "32.4", null, "1.5", null, "26.5", null, "1.6", null, "18.4", null, "1.5", null, "7.8", null, "1.1", null, "2.0", null, "0.5", null, "5.8", null, "1.0", null, "0.3", null, "0.2", null, "73.5", null, "1.6", null, "34.9", null, "1.4", null, "6.5", null, "0.9", null, "1.9", null, "0.4", null, "4.6", null, "0.8", null, "32.1", null, "1.5", null, "9.9", null, "1.1", null, "90.1", null, "1.1", null, "28.2", null, "1.9", null, "71.8", null, "1.9", null, "68.8", null, "1.5", null, "11.2", null, "1.1", null, "-999999999.0", "N", "-999999999.0", "N", "2.6", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "5.1", null, "0.8", null, "12.0", null, "1.1", null, "17.4", null, "1.1", null, "65.5", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "21.0", null, "1.5", null, "29.6", null, "2.3", null, "49.4", null, "2.4", null, "25575", null, "3462", null, "11659", null, "2229", null, "13916", null, "3126", null, "10064", null, "2214", null, "9786", null, "2405", null, "2511", null, "1192", null, "7275", null, "1918", null, "5725", null, "1692", null, "14294", null, "3218", null, "7804", null, "2057", null, "6490", null, "2231", null, "2046", null, "1075", null, "4444", null, "1759", null, "0", null, "247", null, "11281", null, "2082", null, "2260", null, "1157", null, "3296", null, "1038", null, "465", null, "392", null, "2831", null, "1092", null, "5725", null, "1692", null, "6404", null, "1521", null, "19171", null, "3032", null, "13305", null, "2689", null, "12270", null, "2286", null, "10437", null, "1808", null, "4813", null, "1675", null, "-999999999", "N", "-999999999", "N", "287", null, "330", null, "-999999999", "N", "-999999999", "N", "3447", null, "1317", null, "6569", null, "2070", null, "9995", null, "2433", null, "9496", null, "1757", null, "53143", null, "3841", null, "19850", null, "3316", null, "1418", null, "624", null, "9135", null, "2542", null, "9297", null, "2260", null, "7.4", null, "0.9", null, "45.6", null, "8.0", null, "54.4", null, "8.0", null, "39.4", null, "6.6", null, "38.3", null, "7.6", null, "9.8", null, "4.5", null, "28.4", null, "6.2", null, "22.4", null, "6.3", null, "55.9", null, "7.9", null, "30.5", null, "6.2", null, "25.4", null, "7.3", null, "8.0", null, "4.0", null, "17.4", null, "6.1", null, "0.0", null, "1.0", null, "44.1", null, "7.9", null, "8.8", null, "4.6", null, "12.9", null, "4.2", null, "1.8", null, "1.6", null, "11.1", null, "4.2", null, "22.4", null, "6.3", null, "25.0", null, "5.2", null, "75.0", null, "5.2", null, "52.0", null, "7.0", null, "48.0", null, "7.0", null, "40.8", null, "6.8", null, "18.8", null, "5.9", null, "-999999999.0", "N", "-999999999.0", "N", "1.1", null, "1.3", null, "-999999999.0", "N", "-999999999.0", "N", "13.5", null, "4.9", null, "25.7", null, "6.2", null, "39.1", null, "6.9", null, "37.1", null, "6.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "7.1", null, "3.2", null, "46.0", null, "8.8", null, "46.8", null, "9.3", null, "321536", null, "6902", null, "163524", null, "5181", null, "158012", null, "6426", null, "174975", null, "6302", null, "39874", null, "4242", null, "11190", null, "1767", null, "28684", null, "3960", null, "106687", null, "5778", null, "77701", null, "5619", null, "56160", null, "4803", null, "20519", null, "3750", null, "4984", null, "1239", null, "15535", null, "3527", null, "1022", null, "743", null, "243835", null, "7396", null, "118815", null, "5261", null, "19355", null, "3212", null, "6206", null, "1482", null, "13149", null, "2535", null, "105665", null, "5768", null, "28114", null, "3601", null, "293422", null, "7258", null, "84553", null, "6224", null, "236983", null, "7818", null, "228547", null, "6196", null, "34117", null, "4061", null, "-999999999", "N", "-999999999", "N", "8858", null, "1574", null, "-999999999", "N", "-999999999", "N", "14250", null, "2564", null, "34924", null, "3726", null, "50244", null, "4390", null, "217974", null, "5706", null, "93149", null, "4696", null, "214849", null, "7069", null, "47965", null, "3614", null, "60244", null, "5128", null, "106640", null, "6623", null, "92.6", null, "0.9", null, "50.9", null, "1.5", null, "49.1", null, "1.5", null, "54.4", null, "1.8", null, "12.4", null, "1.2", null, "3.5", null, "0.5", null, "8.9", null, "1.2", null, "33.2", null, "1.7", null, "24.2", null, "1.7", null, "17.5", null, "1.5", null, "6.4", null, "1.1", null, "1.6", null, "0.4", null, "4.8", null, "1.1", null, "0.3", null, "0.2", null, "75.8", null, "1.7", null, "37.0", null, "1.5", null, "6.0", null, "1.0", null, "1.9", null, "0.5", null, "4.1", null, "0.8", null, "32.9", null, "1.6", null, "8.7", null, "1.1", null, "91.3", null, "1.1", null, "26.3", null, "1.9", null, "73.7", null, "1.9", null, "71.1", null, "1.5", null, "10.6", null, "1.2", null, "-999999999.0", "N", "-999999999.0", "N", "2.8", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "4.4", null, "0.8", null, "10.9", null, "1.1", null, "15.6", null, "1.2", null, "67.8", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "22.3", null, "1.5", null, "28.0", null, "2.3", null, "49.6", null, "2.4", null, "12", "16"], ["5001900US1217", "Congressional District 17 (119th Congress), Florida", "382341", null, "7013", null, "244116", null, "4682", null, "138225", null, "5779", null, "200499", null, "6344", null, "42609", null, "3882", null, "12711", null, "2203", null, "29898", null, "2945", null, "139233", null, "5019", null, "67492", null, "4427", null, "48385", null, "3404", null, "18746", null, "2960", null, "5295", null, "1193", null, "13451", null, "2402", null, "361", null, "284", null, "314849", null, "5931", null, "152114", null, "5518", null, "23863", null, "3086", null, "7416", null, "1922", null, "16447", null, "2210", null, "138872", null, "4981", null, "38862", null, "3710", null, "343479", null, "7460", null, "106331", null, "5422", null, "276010", null, "7369", null, "313627", null, "5922", null, "13522", null, "2379", null, "956", null, "425", null, "5939", null, "921", null, "-999999999", "N", "-999999999", "N", "8245", null, "1798", null, "39904", null, "3630", null, "44150", null, "3659", null, "305775", null, "5723", null, "79214", null, "3356", null, "243108", null, "6895", null, "75025", null, "4125", null, "66268", null, "4013", null, "101815", null, "4906", null, "-888888888", "(X)", "-888888888", "(X)", "63.8", null, "1.1", null, "36.2", null, "1.1", null, "52.4", null, "1.3", null, "11.1", null, "1.0", null, "3.3", null, "0.6", null, "7.8", null, "0.7", null, "36.4", null, "1.2", null, "17.7", null, "1.0", null, "12.7", null, "0.8", null, "4.9", null, "0.7", null, "1.4", null, "0.3", null, "3.5", null, "0.6", null, "0.1", null, "0.1", null, "82.3", null, "1.0", null, "39.8", null, "1.2", null, "6.2", null, "0.8", null, "1.9", null, "0.5", null, "4.3", null, "0.6", null, "36.3", null, "1.2", null, "10.2", null, "1.0", null, "89.8", null, "1.0", null, "27.8", null, "1.3", null, "72.2", null, "1.3", null, "82.0", null, "0.9", null, "3.5", null, "0.6", null, "0.3", null, "0.1", null, "1.6", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "2.2", null, "0.5", null, "10.4", null, "0.9", null, "11.5", null, "0.9", null, "80.0", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "30.9", null, "1.3", null, "27.3", null, "1.6", null, "41.9", null, "1.6", null, "25035", null, "3098", null, "14457", null, "2359", null, "10578", null, "2035", null, "8876", null, "1813", null, "8523", null, "1851", null, "2553", null, "1178", null, "5970", null, "1528", null, "7636", null, "1519", null, "11836", null, "2246", null, "5872", null, "1400", null, "5964", null, "1668", null, "1755", null, "976", null, "4209", null, "1378", null, "0", null, "247", null, "13199", null, "2146", null, "3004", null, "1032", null, "2559", null, "1082", null, "798", null, "747", null, "1761", null, "689", null, "7636", null, "1519", null, "8551", null, "1938", null, "16484", null, "2604", null, "11055", null, "1983", null, "13980", null, "2221", null, "14813", null, "2515", null, "2023", null, "1056", null, "140", null, "169", null, "205", null, "257", null, "-999999999", "N", "-999999999", "N", "1879", null, "858", null, "5975", null, "1412", null, "7532", null, "1919", null, "13702", null, "2373", null, "40615", null, "8278", null, "17399", null, "2640", null, "3558", null, "1164", null, "7366", null, "1806", null, "6475", null, "1482", null, "6.5", null, "0.8", null, "57.7", null, "6.2", null, "42.3", null, "6.2", null, "35.5", null, "6.0", null, "34.0", null, "5.5", null, "10.2", null, "4.5", null, "23.8", null, "5.0", null, "30.5", null, "5.1", null, "47.3", null, "6.2", null, "23.5", null, "4.9", null, "23.8", null, "5.5", null, "7.0", null, "3.8", null, "16.8", null, "4.7", null, "0.0", null, "1.0", null, "52.7", null, "6.2", null, "12.0", null, "3.8", null, "10.2", null, "4.2", null, "3.2", null, "2.9", null, "7.0", null, "2.7", null, "30.5", null, "5.1", null, "34.2", null, "6.5", null, "65.8", null, "6.5", null, "44.2", null, "5.6", null, "55.8", null, "5.6", null, "59.2", null, "6.3", null, "8.1", null, "4.0", null, "0.6", null, "0.7", null, "0.8", null, "1.0", null, "-999999999.0", "N", "-999999999.0", "N", "7.5", null, "3.3", null, "23.9", null, "5.2", null, "30.1", null, "6.6", null, "54.7", null, "6.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "20.4", null, "6.2", null, "42.3", null, "7.7", null, "37.2", null, "6.7", null, "357306", null, "6912", null, "229659", null, "5035", null, "127647", null, "5811", null, "191623", null, "6426", null, "34086", null, "3353", null, "10158", null, "1973", null, "23928", null, "2525", null, "131597", null, "5129", null, "55656", null, "3923", null, "42513", null, "3265", null, "12782", null, "2175", null, "3540", null, "894", null, "9242", null, "1885", null, "361", null, "284", null, "301650", null, "6030", null, "149110", null, "5673", null, "21304", null, "2789", null, "6618", null, "1813", null, "14686", null, "1978", null, "131236", null, "5098", null, "30311", null, "2883", null, "326995", null, "7161", null, "95276", null, "5087", null, "262030", null, "7180", null, "298814", null, "6587", null, "11499", null, "2110", null, "816", null, "424", null, "5734", null, "934", null, "-999999999", "N", "-999999999", "N", "6366", null, "1626", null, "33929", null, "3111", null, "36618", null, "3072", null, "292073", null, "6332", null, "82477", null, "2646", null, "225709", null, "6673", null, "71467", null, "3998", null, "58902", null, "3593", null, "95340", null, "4973", null, "93.5", null, "0.8", null, "64.3", null, "1.2", null, "35.7", null, "1.2", null, "53.6", null, "1.4", null, "9.5", null, "0.9", null, "2.8", null, "0.6", null, "6.7", null, "0.7", null, "36.8", null, "1.3", null, "15.6", null, "1.0", null, "11.9", null, "0.8", null, "3.6", null, "0.6", null, "1.0", null, "0.2", null, "2.6", null, "0.5", null, "0.1", null, "0.1", null, "84.4", null, "1.0", null, "41.7", null, "1.4", null, "6.0", null, "0.8", null, "1.9", null, "0.5", null, "4.1", null, "0.6", null, "36.7", null, "1.3", null, "8.5", null, "0.8", null, "91.5", null, "0.8", null, "26.7", null, "1.4", null, "73.3", null, "1.4", null, "83.6", null, "0.9", null, "3.2", null, "0.6", null, "0.2", null, "0.1", null, "1.6", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "1.8", null, "0.5", null, "9.5", null, "0.9", null, "10.2", null, "0.8", null, "81.7", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "31.7", null, "1.4", null, "26.1", null, "1.6", null, "42.2", null, "1.7", null, "12", "17"], ["5001900US1218", "Congressional District 18 (119th Congress), Florida", "326651", null, "6978", null, "163872", null, "5123", null, "162779", null, "6004", null, "159065", null, "5480", null, "62534", null, "4900", null, "19739", null, "2861", null, "42795", null, "4085", null, "105052", null, "6122", null, "94371", null, "5829", null, "61184", null, "4743", null, "31818", null, "3855", null, "10467", null, "2363", null, "21351", null, "2965", null, "1369", null, "877", null, "232280", null, "6892", null, "97881", null, "4190", null, "30716", null, "3696", null, "9272", null, "1812", null, "21444", null, "3306", null, "103683", null, "6086", null, "49613", null, "4239", null, "277038", null, "7512", null, "103172", null, "5707", null, "223479", null, "7694", null, "202265", null, "4993", null, "44525", null, "3688", null, "4055", null, "1487", null, "3984", null, "850", null, "-999999999", "N", "-999999999", "N", "33135", null, "3870", null, "38364", null, "3322", null, "80478", null, "4279", null, "189478", null, "4743", null, "64757", null, "2323", null, "221599", null, "6563", null, "50604", null, "3493", null, "68417", null, "5415", null, "102578", null, "5210", null, "-888888888", "(X)", "-888888888", "(X)", "50.2", null, "1.3", null, "49.8", null, "1.3", null, "48.7", null, "1.6", null, "19.1", null, "1.4", null, "6.0", null, "0.9", null, "13.1", null, "1.2", null, "32.2", null, "1.6", null, "28.9", null, "1.6", null, "18.7", null, "1.4", null, "9.7", null, "1.1", null, "3.2", null, "0.7", null, "6.5", null, "0.9", null, "0.4", null, "0.3", null, "71.1", null, "1.6", null, "30.0", null, "1.4", null, "9.4", null, "1.1", null, "2.8", null, "0.6", null, "6.6", null, "1.0", null, "31.7", null, "1.6", null, "15.2", null, "1.3", null, "84.8", null, "1.3", null, "31.6", null, "1.7", null, "68.4", null, "1.7", null, "61.9", null, "1.2", null, "13.6", null, "1.1", null, "1.2", null, "0.5", null, "1.2", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "10.1", null, "1.1", null, "11.7", null, "1.0", null, "24.6", null, "1.1", null, "58.0", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "22.8", null, "1.5", null, "30.9", null, "2.2", null, "46.3", null, "1.9", null, "49676", null, "4426", null, "22476", null, "2941", null, "27200", null, "3471", null, "14347", null, "2625", null, "19948", null, "2857", null, "5337", null, "1897", null, "14611", null, "2394", null, "15381", null, "2583", null, "23903", null, "3372", null, "9863", null, "2175", null, "13915", null, "2561", null, "4035", null, "1802", null, "9880", null, "2028", null, "125", null, "92", null, "25773", null, "3045", null, "4484", null, "1363", null, "6033", null, "1772", null, "1302", null, "732", null, "4731", null, "1663", null, "15256", null, "2578", null, "21824", null, "2585", null, "27852", null, "3606", null, "21458", null, "2755", null, "28218", null, "3744", null, "21812", null, "2631", null, "10521", null, "2649", null, "963", null, "679", null, "310", null, "262", null, "-999999999", "N", "-999999999", "N", "7519", null, "1937", null, "8551", null, "2201", null, "18317", null, "2756", null, "18481", null, "2297", null, "33720", null, "3535", null, "34295", null, "3866", null, "7899", null, "1686", null, "13821", null, "2516", null, "12575", null, "2440", null, "15.2", null, "1.3", null, "45.2", null, "4.7", null, "54.8", null, "4.7", null, "28.9", null, "4.3", null, "40.2", null, "4.9", null, "10.7", null, "3.7", null, "29.4", null, "4.4", null, "31.0", null, "4.5", null, "48.1", null, "4.7", null, "19.9", null, "3.5", null, "28.0", null, "4.7", null, "8.1", null, "3.5", null, "19.9", null, "3.9", null, "0.3", null, "0.2", null, "51.9", null, "4.7", null, "9.0", null, "2.8", null, "12.1", null, "3.4", null, "2.6", null, "1.5", null, "9.5", null, "3.2", null, "30.7", null, "4.5", null, "43.9", null, "4.3", null, "56.1", null, "4.3", null, "43.2", null, "4.7", null, "56.8", null, "4.7", null, "43.9", null, "4.4", null, "21.2", null, "4.8", null, "1.9", null, "1.4", null, "0.6", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "15.1", null, "3.6", null, "17.2", null, "4.1", null, "36.9", null, "4.4", null, "37.2", null, "3.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "23.0", null, "4.3", null, "40.3", null, "6.3", null, "36.7", null, "5.2", null, "276975", null, "7194", null, "141396", null, "5063", null, "135579", null, "6022", null, "144718", null, "5215", null, "42586", null, "4615", null, "14402", null, "2646", null, "28184", null, "3746", null, "89671", null, "5562", null, "70468", null, "5254", null, "51321", null, "4298", null, "17903", null, "3050", null, "6432", null, "1891", null, "11471", null, "2340", null, "1244", null, "869", null, "206507", null, "6724", null, "93397", null, "4098", null, "24683", null, "3335", null, "7970", null, "1699", null, "16713", null, "2748", null, "88427", null, "5521", null, "27789", null, "3514", null, "249186", null, "7213", null, "81714", null, "5413", null, "195261", null, "7317", null, "180453", null, "5114", null, "34004", null, "3850", null, "3092", null, "1318", null, "3674", null, "889", null, "-999999999", "N", "-999999999", "N", "25616", null, "3930", null, "29813", null, "3341", null, "62161", null, "4921", null, "170997", null, "5015", null, "70049", null, "3220", null, "187304", null, "6676", null, "42705", null, "3250", null, "54596", null, "5223", null, "90003", null, "5236", null, "84.8", null, "1.3", null, "51.1", null, "1.5", null, "48.9", null, "1.5", null, "52.2", null, "1.7", null, "15.4", null, "1.5", null, "5.2", null, "0.9", null, "10.2", null, "1.3", null, "32.4", null, "1.8", null, "25.4", null, "1.7", null, "18.5", null, "1.5", null, "6.5", null, "1.0", null, "2.3", null, "0.7", null, "4.1", null, "0.8", null, "0.4", null, "0.3", null, "74.6", null, "1.7", null, "33.7", null, "1.5", null, "8.9", null, "1.2", null, "2.9", null, "0.6", null, "6.0", null, "1.0", null, "31.9", null, "1.8", null, "10.0", null, "1.2", null, "90.0", null, "1.2", null, "29.5", null, "1.8", null, "70.5", null, "1.8", null, "65.2", null, "1.4", null, "12.3", null, "1.3", null, "1.1", null, "0.5", null, "1.3", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "9.2", null, "1.3", null, "10.8", null, "1.2", null, "22.4", null, "1.5", null, "61.7", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "22.8", null, "1.6", null, "29.1", null, "2.5", null, "48.1", null, "2.3", null, "12", "18"], ["5001900US1219", "Congressional District 19 (119th Congress), Florida", "349567", null, "5911", null, "214109", null, "4212", null, "135458", null, "5639", null, "183319", null, "6355", null, "40039", null, "3758", null, "12669", null, "2449", null, "27370", null, "3248", null, "126209", null, "5594", null, "58734", null, "3983", null, "38881", null, "3601", null, "19130", null, "3085", null, "6517", null, "1991", null, "12613", null, "2481", null, "723", null, "606", null, "290833", null, "5371", null, "144438", null, "5234", null, "20909", null, "2687", null, "6152", null, "1683", null, "14757", null, "2177", null, "125486", null, "5529", null, "35554", null, "3590", null, "314013", null, "6128", null, "90149", null, "5155", null, "259418", null, "6349", null, "274689", null, "5998", null, "15415", null, "2377", null, "-999999999", "N", "-999999999", "N", "5140", null, "913", null, "-999999999", "N", "-999999999", "N", "9187", null, "2028", null, "43825", null, "3383", null, "52998", null, "2934", null, "266010", null, "5520", null, "88378", null, "3615", null, "223358", null, "6216", null, "70032", null, "3053", null, "60103", null, "4643", null, "93223", null, "5318", null, "-888888888", "(X)", "-888888888", "(X)", "61.2", null, "1.2", null, "38.8", null, "1.2", null, "52.4", null, "1.6", null, "11.5", null, "1.1", null, "3.6", null, "0.7", null, "7.8", null, "0.9", null, "36.1", null, "1.5", null, "16.8", null, "1.0", null, "11.1", null, "1.0", null, "5.5", null, "0.9", null, "1.9", null, "0.6", null, "3.6", null, "0.7", null, "0.2", null, "0.2", null, "83.2", null, "1.0", null, "41.3", null, "1.4", null, "6.0", null, "0.8", null, "1.8", null, "0.5", null, "4.2", null, "0.6", null, "35.9", null, "1.4", null, "10.2", null, "1.0", null, "89.8", null, "1.0", null, "25.8", null, "1.4", null, "74.2", null, "1.4", null, "78.6", null, "1.1", null, "4.4", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "1.5", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "2.6", null, "0.6", null, "12.5", null, "0.9", null, "15.2", null, "0.8", null, "76.1", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "31.4", null, "1.3", null, "26.9", null, "1.9", null, "41.7", null, "2.0", null, "18067", null, "2494", null, "8595", null, "1540", null, "9472", null, "1863", null, "6311", null, "1665", null, "7490", null, "1874", null, "1617", null, "996", null, "5873", null, "1611", null, "4266", null, "1233", null, "10067", null, "2156", null, "4319", null, "1532", null, "5207", null, "1679", null, "1101", null, "846", null, "4106", null, "1476", null, "541", null, "616", null, "8000", null, "1467", null, "1992", null, "719", null, "2283", null, "824", null, "516", null, "478", null, "1767", null, "669", null, "3725", null, "1120", null, "5229", null, "1358", null, "12838", null, "2110", null, "7714", null, "1618", null, "10353", null, "2171", null, "6646", null, "1343", null, "3540", null, "1181", null, "-999999999", "N", "-999999999", "N", "217", null, "255", null, "-999999999", "N", "-999999999", "N", "1419", null, "805", null, "6245", null, "1572", null, "7293", null, "1526", null, "5767", null, "1223", null, "42698", null, "10334", null, "13801", null, "2367", null, "3064", null, "1048", null, "4795", null, "1326", null, "5942", null, "1761", null, "5.2", null, "0.7", null, "47.6", null, "6.4", null, "52.4", null, "6.4", null, "34.9", null, "7.8", null, "41.5", null, "8.1", null, "9.0", null, "5.3", null, "32.5", null, "7.4", null, "23.6", null, "6.5", null, "55.7", null, "7.2", null, "23.9", null, "7.3", null, "28.8", null, "7.8", null, "6.1", null, "4.6", null, "22.7", null, "7.1", null, "3.0", null, "3.4", null, "44.3", null, "7.2", null, "11.0", null, "4.1", null, "12.6", null, "4.4", null, "2.9", null, "2.6", null, "9.8", null, "3.7", null, "20.6", null, "5.8", null, "28.9", null, "6.4", null, "71.1", null, "6.4", null, "42.7", null, "7.8", null, "57.3", null, "7.8", null, "36.8", null, "6.5", null, "19.6", null, "5.9", null, "-999999999.0", "N", "-999999999.0", "N", "1.2", null, "1.4", null, "-999999999.0", "N", "-999999999.0", "N", "7.9", null, "4.4", null, "34.6", null, "6.2", null, "40.4", null, "6.2", null, "31.9", null, "6.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "22.2", null, "7.4", null, "34.7", null, "7.8", null, "43.1", null, "9.1", null, "331500", null, "5649", null, "205514", null, "3827", null, "125986", null, "5659", null, "177008", null, "6249", null, "32549", null, "3285", null, "11052", null, "2031", null, "21497", null, "3023", null, "121943", null, "5251", null, "48667", null, "3855", null, "34562", null, "3375", null, "13923", null, "2588", null, "5416", null, "1603", null, "8507", null, "2214", null, "182", null, "222", null, "282833", null, "5118", null, "142446", null, "5098", null, "18626", null, "2546", null, "5636", null, "1544", null, "12990", null, "2125", null, "121761", null, "5227", null, "30325", null, "3267", null, "301175", null, "5930", null, "82435", null, "4722", null, "249065", null, "6012", null, "268043", null, "5826", null, "11875", null, "2313", null, "-999999999", "N", "-999999999", "N", "4923", null, "926", null, "-999999999", "N", "-999999999", "N", "7768", null, "2021", null, "37580", null, "3480", null, "45705", null, "3413", null, "260243", null, "5435", null, "91151", null, "2314", null, "209557", null, "6061", null, "66968", null, "2833", null, "55308", null, "4159", null, "87281", null, "5045", null, "94.8", null, "0.7", null, "62.0", null, "1.3", null, "38.0", null, "1.3", null, "53.4", null, "1.6", null, "9.8", null, "1.0", null, "3.3", null, "0.6", null, "6.5", null, "0.9", null, "36.8", null, "1.5", null, "14.7", null, "1.1", null, "10.4", null, "1.0", null, "4.2", null, "0.8", null, "1.6", null, "0.5", null, "2.6", null, "0.7", null, "0.1", null, "0.1", null, "85.3", null, "1.1", null, "43.0", null, "1.5", null, "5.6", null, "0.8", null, "1.7", null, "0.5", null, "3.9", null, "0.6", null, "36.7", null, "1.5", null, "9.1", null, "1.0", null, "90.9", null, "1.0", null, "24.9", null, "1.3", null, "75.1", null, "1.3", null, "80.9", null, "1.2", null, "3.6", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "1.5", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "2.3", null, "0.6", null, "11.3", null, "1.0", null, "13.8", null, "1.0", null, "78.5", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "32.0", null, "1.2", null, "26.4", null, "1.8", null, "41.7", null, "1.9", null, "12", "19"], ["5001900US1220", "Congressional District 20 (119th Congress), Florida", "287297", null, "8418", null, "129263", null, "6203", null, "158034", null, "7263", null, "109545", null, "6261", null, "75948", null, "4951", null, "21567", null, "3387", null, "54381", null, "4137", null, "101804", null, "7659", null, "81526", null, "5707", null, "43566", null, "4432", null, "37612", null, "3822", null, "9870", null, "2484", null, "27742", null, "3547", null, "348", null, "295", null, "205771", null, "8683", null, "65979", null, "5286", null, "38336", null, "3471", null, "11697", null, "2407", null, "26639", null, "2988", null, "101456", null, "7715", null, "45089", null, "3873", null, "242208", null, "8203", null, "76001", null, "5032", null, "211296", null, "8786", null, "80320", null, "5341", null, "130282", null, "5941", null, "542", null, "303", null, "8008", null, "1792", null, "-999999999", "N", "-999999999", "N", "18435", null, "2704", null, "49710", null, "4674", null, "69033", null, "4513", null, "67855", null, "4573", null, "70263", null, "3446", null, "185493", null, "7029", null, "18477", null, "2402", null, "64412", null, "5888", null, "102604", null, "6115", null, "-888888888", "(X)", "-888888888", "(X)", "45.0", null, "1.8", null, "55.0", null, "1.8", null, "38.1", null, "1.9", null, "26.4", null, "1.8", null, "7.5", null, "1.1", null, "18.9", null, "1.6", null, "35.4", null, "2.2", null, "28.4", null, "1.9", null, "15.2", null, "1.4", null, "13.1", null, "1.4", null, "3.4", null, "0.9", null, "9.7", null, "1.3", null, "0.1", null, "0.1", null, "71.6", null, "1.9", null, "23.0", null, "1.8", null, "13.3", null, "1.2", null, "4.1", null, "0.8", null, "9.3", null, "1.1", null, "35.3", null, "2.2", null, "15.7", null, "1.3", null, "84.3", null, "1.3", null, "26.5", null, "1.8", null, "73.5", null, "1.8", null, "28.0", null, "1.6", null, "45.3", null, "1.7", null, "0.2", null, "0.1", null, "2.8", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "6.4", null, "0.9", null, "17.3", null, "1.5", null, "24.0", null, "1.4", null, "23.6", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.0", null, "1.3", null, "34.7", null, "2.8", null, "55.3", null, "2.6", null, "48952", null, "4171", null, "25837", null, "3232", null, "23115", null, "3430", null, "11175", null, "2103", null, "22854", null, "2954", null, "6428", null, "1752", null, "16426", null, "2536", null, "14923", null, "2800", null, "19415", null, "2775", null, "6081", null, "1659", null, "13164", null, "2176", null, "2936", null, "1070", null, "10228", null, "2026", null, "170", null, "199", null, "29537", null, "3601", null, "5094", null, "1275", null, "9690", null, "2150", null, "3492", null, "1473", null, "6198", null, "1454", null, "14753", null, "2792", null, "19131", null, "2415", null, "29821", null, "3280", null, "22284", null, "2903", null, "26668", null, "3319", null, "5495", null, "1484", null, "31575", null, "3728", null, "124", null, "163", null, "707", null, "469", null, "-999999999", "N", "-999999999", "N", "2455", null, "1287", null, "8596", null, "1825", null, "11083", null, "2056", null, "3839", null, "1273", null, "38109", null, "4382", null, "34029", null, "3255", null, "4268", null, "1153", null, "18281", null, "2979", null, "11480", null, "2072", null, "17.0", null, "1.4", null, "52.8", null, "5.3", null, "47.2", null, "5.3", null, "22.8", null, "4.2", null, "46.7", null, "4.7", null, "13.1", null, "3.5", null, "33.6", null, "4.3", null, "30.5", null, "4.6", null, "39.7", null, "4.8", null, "12.4", null, "3.2", null, "26.9", null, "4.0", null, "6.0", null, "2.3", null, "20.9", null, "3.7", null, "0.3", null, "0.4", null, "60.3", null, "4.8", null, "10.4", null, "2.7", null, "19.8", null, "4.0", null, "7.1", null, "2.9", null, "12.7", null, "2.8", null, "30.1", null, "4.6", null, "39.1", null, "3.9", null, "60.9", null, "3.9", null, "45.5", null, "4.7", null, "54.5", null, "4.7", null, "11.2", null, "3.0", null, "64.5", null, "4.6", null, "0.3", null, "0.3", null, "1.4", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "5.0", null, "2.6", null, "17.6", null, "3.5", null, "22.6", null, "3.9", null, "7.8", null, "2.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.5", null, "3.7", null, "53.7", null, "5.8", null, "33.7", null, "5.3", null, "238345", null, "8413", null, "103426", null, "5681", null, "134919", null, "7335", null, "98370", null, "6121", null, "53094", null, "4251", null, "15139", null, "3117", null, "37955", null, "3397", null, "86881", null, "7146", null, "62111", null, "4982", null, "37485", null, "4099", null, "24448", null, "3198", null, "6934", null, "2049", null, "17514", null, "2833", null, "178", null, "211", null, "176234", null, "8450", null, "60885", null, "5362", null, "28646", null, "2911", null, "8205", null, "2072", null, "20441", null, "2569", null, "86703", null, "7183", null, "25958", null, "3481", null, "212387", null, "8437", null, "53717", null, "4647", null, "184628", null, "9061", null, "74825", null, "5498", null, "98707", null, "5693", null, "418", null, "251", null, "7301", null, "1693", null, "-999999999", "N", "-999999999", "N", "15980", null, "2425", null, "41114", null, "4478", null, "57950", null, "4103", null, "64016", null, "4791", null, "76397", null, "3882", null, "151464", null, "6798", null, "14209", null, "2232", null, "46131", null, "4530", null, "91124", null, "5973", null, "83.0", null, "1.4", null, "43.4", null, "2.1", null, "56.6", null, "2.1", null, "41.3", null, "2.2", null, "22.3", null, "1.8", null, "6.4", null, "1.2", null, "15.9", null, "1.6", null, "36.5", null, "2.4", null, "26.1", null, "2.0", null, "15.7", null, "1.6", null, "10.3", null, "1.4", null, "2.9", null, "0.8", null, "7.3", null, "1.2", null, "0.1", null, "0.1", null, "73.9", null, "2.0", null, "25.5", null, "2.1", null, "12.0", null, "1.2", null, "3.4", null, "0.8", null, "8.6", null, "1.1", null, "36.4", null, "2.4", null, "10.9", null, "1.4", null, "89.1", null, "1.4", null, "22.5", null, "2.0", null, "77.5", null, "2.0", null, "31.4", null, "2.0", null, "41.4", null, "1.9", null, "0.2", null, "0.1", null, "3.1", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "6.7", null, "1.0", null, "17.2", null, "1.7", null, "24.3", null, "1.5", null, "26.9", null, "1.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "9.4", null, "1.3", null, "30.5", null, "2.9", null, "60.2", null, "2.8", null, "12", "20"], ["5001900US1221", "Congressional District 21 (119th Congress), Florida", "350950", null, "6179", null, "202581", null, "5546", null, "148369", null, "5829", null, "173399", null, "6666", null, "55391", null, "5386", null, "17798", null, "3329", null, "37593", null, "4220", null, "122160", null, "6847", null, "84409", null, "5615", null, "53460", null, "4531", null, "29889", null, "4155", null, "8726", null, "2385", null, "21163", null, "3260", null, "1060", null, "887", null, "266541", null, "6981", null, "119939", null, "5627", null, "25502", null, "3772", null, "9072", null, "2250", null, "16430", null, "2884", null, "121100", null, "6868", null, "37350", null, "3774", null, "313600", null, "6880", null, "93429", null, "4942", null, "257521", null, "6732", null, "250691", null, "5762", null, "42239", null, "3216", null, "1859", null, "951", null, "6582", null, "1323", null, "-999999999", "N", "-999999999", "N", "11075", null, "2387", null, "38346", null, "4361", null, "52050", null, "3650", null, "238938", null, "5444", null, "86626", null, "4540", null, "228790", null, "7630", null, "52921", null, "3708", null, "69940", null, "4637", null, "105929", null, "5514", null, "-888888888", "(X)", "-888888888", "(X)", "57.7", null, "1.4", null, "42.3", null, "1.4", null, "49.4", null, "1.8", null, "15.8", null, "1.5", null, "5.1", null, "0.9", null, "10.7", null, "1.2", null, "34.8", null, "1.8", null, "24.1", null, "1.5", null, "15.2", null, "1.3", null, "8.5", null, "1.2", null, "2.5", null, "0.7", null, "6.0", null, "0.9", null, "0.3", null, "0.3", null, "75.9", null, "1.5", null, "34.2", null, "1.5", null, "7.3", null, "1.1", null, "2.6", null, "0.6", null, "4.7", null, "0.8", null, "34.5", null, "1.8", null, "10.6", null, "1.1", null, "89.4", null, "1.1", null, "26.6", null, "1.4", null, "73.4", null, "1.4", null, "71.4", null, "1.2", null, "12.0", null, "0.9", null, "0.5", null, "0.3", null, "1.9", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "3.2", null, "0.7", null, "10.9", null, "1.2", null, "14.8", null, "1.0", null, "68.1", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "23.1", null, "1.4", null, "30.6", null, "1.9", null, "46.3", null, "1.7", null, "28540", null, "4179", null, "14005", null, "2753", null, "14535", null, "2837", null, "8803", null, "2061", null, "12028", null, "2936", null, "2445", null, "1092", null, "9583", null, "2318", null, "7709", null, "1906", null, "14893", null, "3087", null, "6116", null, "1760", null, "8153", null, "2139", null, "865", null, "472", null, "7288", null, "2063", null, "624", null, "722", null, "13647", null, "2456", null, "2687", null, "1115", null, "3875", null, "1438", null, "1580", null, "1074", null, "2295", null, "813", null, "7085", null, "1771", null, "9322", null, "2339", null, "19218", null, "3062", null, "11805", null, "2516", null, "16735", null, "3107", null, "14453", null, "2801", null, "5541", null, "1464", null, "130", null, "161", null, "640", null, "594", null, "-999999999", "N", "-999999999", "N", "2485", null, "1185", null, "5291", null, "2036", null, "9770", null, "2695", null, "12100", null, "2409", null, "35911", null, "4246", null, "20831", null, "3736", null, "3528", null, "1172", null, "10103", null, "2242", null, "7200", null, "2032", null, "8.1", null, "1.2", null, "49.1", null, "6.5", null, "50.9", null, "6.5", null, "30.8", null, "6.2", null, "42.1", null, "6.9", null, "8.6", null, "3.5", null, "33.6", null, "5.5", null, "27.0", null, "6.1", null, "52.2", null, "6.5", null, "21.4", null, "5.5", null, "28.6", null, "5.5", null, "3.0", null, "1.7", null, "25.5", null, "5.3", null, "2.2", null, "2.5", null, "47.8", null, "6.5", null, "9.4", null, "3.8", null, "13.6", null, "4.4", null, "5.5", null, "3.5", null, "8.0", null, "2.7", null, "24.8", null, "5.9", null, "32.7", null, "6.0", null, "67.3", null, "6.0", null, "41.4", null, "6.6", null, "58.6", null, "6.6", null, "50.6", null, "7.5", null, "19.4", null, "4.5", null, "0.5", null, "0.6", null, "2.2", null, "2.0", null, "-999999999.0", "N", "-999999999.0", "N", "8.7", null, "3.9", null, "18.5", null, "6.2", null, "34.2", null, "7.0", null, "42.4", null, "7.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.9", null, "5.0", null, "48.5", null, "7.0", null, "34.6", null, "6.8", null, "322410", null, "6913", null, "188576", null, "5344", null, "133834", null, "5809", null, "164596", null, "6647", null, "43363", null, "5000", null, "15353", null, "3353", null, "28010", null, "3682", null, "114451", null, "6695", null, "69516", null, "5466", null, "47344", null, "4361", null, "21736", null, "3810", null, "7861", null, "2317", null, "13875", null, "2857", null, "436", null, "518", null, "252894", null, "6584", null, "117252", null, "5423", null, "21627", null, "3431", null, "7492", null, "2038", null, "14135", null, "2673", null, "114015", null, "6642", null, "28028", null, "3790", null, "294382", null, "7379", null, "81624", null, "4258", null, "240786", null, "7120", null, "236238", null, "5984", null, "36698", null, "3626", null, "1729", null, "938", null, "5942", null, "1297", null, "-999999999", "N", "-999999999", "N", "8590", null, "2163", null, "33055", null, "4089", null, "42280", null, "3441", null, "226838", null, "5693", null, "91544", null, "2730", null, "207959", null, "7751", null, "49393", null, "3382", null, "59837", null, "4507", null, "98729", null, "5569", null, "91.9", null, "1.2", null, "58.5", null, "1.4", null, "41.5", null, "1.4", null, "51.1", null, "1.9", null, "13.4", null, "1.5", null, "4.8", null, "1.0", null, "8.7", null, "1.1", null, "35.5", null, "1.9", null, "21.6", null, "1.5", null, "14.7", null, "1.3", null, "6.7", null, "1.2", null, "2.4", null, "0.7", null, "4.3", null, "0.9", null, "0.1", null, "0.2", null, "78.4", null, "1.5", null, "36.4", null, "1.7", null, "6.7", null, "1.0", null, "2.3", null, "0.6", null, "4.4", null, "0.8", null, "35.4", null, "1.9", null, "8.7", null, "1.2", null, "91.3", null, "1.2", null, "25.3", null, "1.3", null, "74.7", null, "1.3", null, "73.3", null, "1.5", null, "11.4", null, "1.1", null, "0.5", null, "0.3", null, "1.8", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "2.7", null, "0.7", null, "10.3", null, "1.2", null, "13.1", null, "1.0", null, "70.4", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "23.8", null, "1.4", null, "28.8", null, "2.0", null, "47.5", null, "1.8", null, "12", "21"], ["5001900US1222", "Congressional District 22 (119th Congress), Florida", "316587", null, "6541", null, "174265", null, "5149", null, "142322", null, "5458", null, "142059", null, "5949", null, "58078", null, "4908", null, "19706", null, "2639", null, "38372", null, "4123", null, "116450", null, "5525", null, "75908", null, "4429", null, "45167", null, "3859", null, "29809", null, "3510", null, "10103", null, "1908", null, "19706", null, "3195", null, "932", null, "633", null, "240679", null, "6686", null, "96892", null, "4739", null, "28269", null, "3092", null, "9603", null, "1810", null, "18666", null, "2257", null, "115518", null, "5458", null, "32407", null, "3621", null, "284180", null, "6712", null, "78722", null, "4393", null, "237865", null, "7709", null, "193033", null, "5690", null, "41432", null, "3912", null, "904", null, "606", null, "7077", null, "1381", null, "-999999999", "N", "-999999999", "N", "34410", null, "3641", null, "39530", null, "3099", null, "74072", null, "4214", null, "184432", null, "5514", null, "83106", null, "3044", null, "200137", null, "6023", null, "40678", null, "3449", null, "58560", null, "4372", null, "100899", null, "5773", null, "-888888888", "(X)", "-888888888", "(X)", "55.0", null, "1.3", null, "45.0", null, "1.3", null, "44.9", null, "1.7", null, "18.3", null, "1.5", null, "6.2", null, "0.8", null, "12.1", null, "1.3", null, "36.8", null, "1.5", null, "24.0", null, "1.3", null, "14.3", null, "1.2", null, "9.4", null, "1.1", null, "3.2", null, "0.6", null, "6.2", null, "1.0", null, "0.3", null, "0.2", null, "76.0", null, "1.3", null, "30.6", null, "1.4", null, "8.9", null, "1.0", null, "3.0", null, "0.6", null, "5.9", null, "0.7", null, "36.5", null, "1.5", null, "10.2", null, "1.1", null, "89.8", null, "1.1", null, "24.9", null, "1.5", null, "75.1", null, "1.5", null, "61.0", null, "1.5", null, "13.1", null, "1.1", null, "0.3", null, "0.2", null, "2.2", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "10.9", null, "1.1", null, "12.5", null, "1.0", null, "23.4", null, "1.3", null, "58.3", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "20.3", null, "1.6", null, "29.3", null, "2.0", null, "50.4", null, "2.4", null, "29526", null, "3663", null, "16326", null, "2507", null, "13200", null, "2405", null, "7798", null, "1818", null, "12660", null, "2293", null, "3325", null, "1289", null, "9335", null, "2122", null, "9068", null, "1894", null, "13184", null, "2527", null, "3940", null, "1207", null, "9036", null, "1916", null, "2177", null, "1073", null, "6859", null, "1868", null, "208", null, "274", null, "16342", null, "2422", null, "3858", null, "1164", null, "3624", null, "1190", null, "1148", null, "671", null, "2476", null, "954", null, "8860", null, "1866", null, "9021", null, "1966", null, "20505", null, "3142", null, "13101", null, "2257", null, "16425", null, "2741", null, "7948", null, "1869", null, "6580", null, "1695", null, "478", null, "538", null, "577", null, "515", null, "-999999999", "N", "-999999999", "N", "7459", null, "1859", null, "6484", null, "1668", null, "14817", null, "2469", null, "6547", null, "1547", null, "39454", null, "7459", null, "20458", null, "2988", null, "4428", null, "1576", null, "8268", null, "1954", null, "7762", null, "1944", null, "9.3", null, "1.2", null, "55.3", null, "5.6", null, "44.7", null, "5.6", null, "26.4", null, "4.9", null, "42.9", null, "6.0", null, "11.3", null, "4.3", null, "31.6", null, "5.9", null, "30.7", null, "5.2", null, "44.7", null, "5.7", null, "13.3", null, "3.5", null, "30.6", null, "5.1", null, "7.4", null, "3.6", null, "23.2", null, "5.4", null, "0.7", null, "0.9", null, "55.3", null, "5.7", null, "13.1", null, "3.7", null, "12.3", null, "3.9", null, "3.9", null, "2.3", null, "8.4", null, "3.1", null, "30.0", null, "5.2", null, "30.6", null, "5.8", null, "69.4", null, "5.8", null, "44.4", null, "5.7", null, "55.6", null, "5.7", null, "26.9", null, "5.1", null, "22.3", null, "5.2", null, "1.6", null, "1.8", null, "2.0", null, "1.7", null, "-999999999.0", "N", "-999999999.0", "N", "25.3", null, "5.7", null, "22.0", null, "5.0", null, "50.2", null, "5.5", null, "22.2", null, "4.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "21.6", null, "6.9", null, "40.4", null, "7.7", null, "37.9", null, "7.9", null, "287061", null, "7221", null, "157939", null, "5562", null, "129122", null, "5591", null, "134261", null, "5744", null, "45418", null, "4860", null, "16381", null, "2401", null, "29037", null, "3630", null, "107382", null, "5359", null, "62724", null, "4083", null, "41227", null, "3504", null, "20773", null, "3485", null, "7926", null, "1699", null, "12847", null, "2714", null, "724", null, "585", null, "224337", null, "7055", null, "93034", null, "4697", null, "24645", null, "2927", null, "8455", null, "1764", null, "16190", null, "2093", null, "106658", null, "5281", null, "23386", null, "2813", null, "263675", null, "7366", null, "65621", null, "4148", null, "221440", null, "7680", null, "185085", null, "5877", null, "34852", null, "3768", null, "426", null, "287", null, "6500", null, "1301", null, "-999999999", "N", "-999999999", "N", "26951", null, "3321", null, "33046", null, "3015", null, "59255", null, "4046", null, "177885", null, "5704", null, "88396", null, "3177", null, "179679", null, "6159", null, "36250", null, "2963", null, "50292", null, "4086", null, "93137", null, "5377", null, "90.7", null, "1.2", null, "55.0", null, "1.5", null, "45.0", null, "1.5", null, "46.8", null, "1.7", null, "15.8", null, "1.6", null, "5.7", null, "0.8", null, "10.1", null, "1.2", null, "37.4", null, "1.6", null, "21.9", null, "1.3", null, "14.4", null, "1.2", null, "7.2", null, "1.2", null, "2.8", null, "0.6", null, "4.5", null, "0.9", null, "0.3", null, "0.2", null, "78.1", null, "1.3", null, "32.4", null, "1.5", null, "8.6", null, "1.0", null, "2.9", null, "0.6", null, "5.6", null, "0.7", null, "37.2", null, "1.5", null, "8.1", null, "1.0", null, "91.9", null, "1.0", null, "22.9", null, "1.5", null, "77.1", null, "1.5", null, "64.5", null, "1.5", null, "12.1", null, "1.2", null, "0.1", null, "0.1", null, "2.3", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "9.4", null, "1.1", null, "11.5", null, "1.0", null, "20.6", null, "1.3", null, "62.0", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "20.2", null, "1.5", null, "28.0", null, "2.1", null, "51.8", null, "2.3", null, "12", "22"], ["5001900US1223", "Congressional District 23 (119th Congress), Florida", "329253", null, "7560", null, "170845", null, "5715", null, "158408", null, "6563", null, "146300", null, "6032", null, "50690", null, "4496", null, "16333", null, "2702", null, "34357", null, "3896", null, "132263", null, "7029", null, "70688", null, "4974", null, "46846", null, "4469", null, "23269", null, "3918", null, "6726", null, "2271", null, "16543", null, "3267", null, "573", null, "469", null, "258565", null, "8023", null, "99454", null, "5380", null, "27421", null, "2822", null, "9607", null, "1730", null, "17814", null, "2388", null, "131690", null, "7050", null, "38731", null, "4044", null, "290522", null, "7469", null, "75253", null, "5158", null, "254000", null, "7389", null, "207046", null, "7682", null, "38418", null, "4166", null, "1266", null, "809", null, "11557", null, "1834", null, "-999999999", "N", "-999999999", "N", "15824", null, "2963", null, "55030", null, "4219", null, "67250", null, "5337", null, "193178", null, "7022", null, "90649", null, "4955", null, "196990", null, "6790", null, "33422", null, "3357", null, "60119", null, "4970", null, "103449", null, "5764", null, "-888888888", "(X)", "-888888888", "(X)", "51.9", null, "1.5", null, "48.1", null, "1.5", null, "44.4", null, "1.7", null, "15.4", null, "1.3", null, "5.0", null, "0.8", null, "10.4", null, "1.2", null, "40.2", null, "1.8", null, "21.5", null, "1.5", null, "14.2", null, "1.4", null, "7.1", null, "1.2", null, "2.0", null, "0.7", null, "5.0", null, "1.0", null, "0.2", null, "0.1", null, "78.5", null, "1.5", null, "30.2", null, "1.5", null, "8.3", null, "0.9", null, "2.9", null, "0.5", null, "5.4", null, "0.7", null, "40.0", null, "1.8", null, "11.8", null, "1.2", null, "88.2", null, "1.2", null, "22.9", null, "1.5", null, "77.1", null, "1.5", null, "62.9", null, "1.8", null, "11.7", null, "1.3", null, "0.4", null, "0.2", null, "3.5", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "4.8", null, "0.9", null, "16.7", null, "1.2", null, "20.4", null, "1.5", null, "58.7", null, "1.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.0", null, "1.6", null, "30.5", null, "2.3", null, "52.5", null, "2.2", null, "22575", null, "2893", null, "13671", null, "2120", null, "8904", null, "1847", null, "5096", null, "1514", null, "8234", null, "1909", null, "1382", null, "629", null, "6852", null, "1792", null, "9245", null, "1783", null, "8068", null, "2150", null, "3310", null, "1312", null, "4551", null, "1646", null, "911", null, "636", null, "3640", null, "1477", null, "207", null, "335", null, "14507", null, "2297", null, "1786", null, "891", null, "3683", null, "1144", null, "471", null, "355", null, "3212", null, "1021", null, "9038", null, "1777", null, "8749", null, "1878", null, "13826", null, "2568", null, "9194", null, "1978", null, "13381", null, "2588", null, "8177", null, "1669", null, "5633", null, "1626", null, "309", null, "369", null, "646", null, "519", null, "-999999999", "N", "-999999999", "N", "1889", null, "891", null, "5921", null, "1718", null, "7341", null, "1548", null, "7193", null, "1706", null, "34945", null, "8994", null, "13330", null, "2536", null, "1891", null, "1110", null, "6087", null, "1563", null, "5352", null, "1641", null, "6.9", null, "0.9", null, "60.6", null, "6.0", null, "39.4", null, "6.0", null, "22.6", null, "5.5", null, "36.5", null, "6.9", null, "6.1", null, "2.8", null, "30.4", null, "6.7", null, "41.0", null, "7.1", null, "35.7", null, "7.7", null, "14.7", null, "5.4", null, "20.2", null, "6.6", null, "4.0", null, "2.8", null, "16.1", null, "5.9", null, "0.9", null, "1.5", null, "64.3", null, "7.7", null, "7.9", null, "3.7", null, "16.3", null, "4.8", null, "2.1", null, "1.6", null, "14.2", null, "4.3", null, "40.0", null, "7.2", null, "38.8", null, "7.4", null, "61.2", null, "7.4", null, "40.7", null, "7.6", null, "59.3", null, "7.6", null, "36.2", null, "6.6", null, "25.0", null, "6.3", null, "1.4", null, "1.6", null, "2.9", null, "2.3", null, "-999999999.0", "N", "-999999999.0", "N", "8.4", null, "3.7", null, "26.2", null, "6.9", null, "32.5", null, "6.4", null, "31.9", null, "6.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.2", null, "7.9", null, "45.7", null, "9.3", null, "40.2", null, "8.5", null, "306678", null, "7512", null, "157174", null, "5927", null, "149504", null, "6639", null, "141204", null, "6227", null, "42456", null, "4255", null, "14951", null, "2679", null, "27505", null, "3551", null, "123018", null, "7129", null, "62620", null, "4714", null, "43536", null, "4368", null, "18718", null, "3591", null, "5815", null, "2177", null, "12903", null, "2864", null, "366", null, "274", null, "244058", null, "7949", null, "97668", null, "5357", null, "23738", null, "2578", null, "9136", null, "1696", null, "14602", null, "2204", null, "122652", null, "7102", null, "29982", null, "3600", null, "276696", null, "7848", null, "66059", null, "5139", null, "240619", null, "7528", null, "198869", null, "7416", null, "32785", null, "3865", null, "957", null, "752", null, "10911", null, "1796", null, "-999999999", "N", "-999999999", "N", "13935", null, "2654", null, "49109", null, "4130", null, "59909", null, "5236", null, "185985", null, "6760", null, "95904", null, "4724", null, "183660", null, "6801", null, "31531", null, "3024", null, "54032", null, "5069", null, "98097", null, "5906", null, "93.1", null, "0.9", null, "51.3", null, "1.6", null, "48.7", null, "1.6", null, "46.0", null, "1.8", null, "13.8", null, "1.4", null, "4.9", null, "0.9", null, "9.0", null, "1.2", null, "40.1", null, "1.9", null, "20.4", null, "1.5", null, "14.2", null, "1.4", null, "6.1", null, "1.1", null, "1.9", null, "0.7", null, "4.2", null, "0.9", null, "0.1", null, "0.1", null, "79.6", null, "1.5", null, "31.8", null, "1.5", null, "7.7", null, "0.9", null, "3.0", null, "0.5", null, "4.8", null, "0.7", null, "40.0", null, "1.9", null, "9.8", null, "1.2", null, "90.2", null, "1.2", null, "21.5", null, "1.6", null, "78.5", null, "1.6", null, "64.8", null, "1.8", null, "10.7", null, "1.2", null, "0.3", null, "0.2", null, "3.6", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "4.5", null, "0.9", null, "16.0", null, "1.3", null, "19.5", null, "1.6", null, "60.6", null, "1.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.2", null, "1.7", null, "29.4", null, "2.5", null, "53.4", null, "2.3", null, "12", "23"], ["5001900US1224", "Congressional District 24 (119th Congress), Florida", "298251", null, "8316", null, "129765", null, "5353", null, "168486", null, "7016", null, "108698", null, "5867", null, "78229", null, "5630", null, "22403", null, "3500", null, "55826", null, "4320", null, "111324", null, "6592", null, "81733", null, "5762", null, "43112", null, "4588", null, "38063", null, "4057", null, "9131", null, "2219", null, "28932", null, "3570", null, "558", null, "412", null, "216518", null, "8904", null, "65586", null, "4603", null, "40166", null, "4269", null, "13272", null, "2481", null, "26894", null, "3136", null, "110766", null, "6578", null, "48615", null, "4773", null, "249636", null, "7837", null, "69543", null, "5628", null, "228708", null, "7435", null, "84858", null, "5013", null, "103036", null, "5812", null, "-999999999", "N", "-999999999", "N", "5634", null, "1410", null, "-999999999", "N", "-999999999", "N", "23690", null, "3154", null, "80271", null, "5803", null, "124600", null, "6175", null, "59534", null, "4139", null, "72293", null, "4178", null, "186927", null, "6648", null, "20453", null, "2632", null, "58987", null, "5374", null, "107487", null, "5832", null, "-888888888", "(X)", "-888888888", "(X)", "43.5", null, "1.5", null, "56.5", null, "1.5", null, "36.4", null, "1.8", null, "26.2", null, "1.8", null, "7.5", null, "1.1", null, "18.7", null, "1.4", null, "37.3", null, "1.8", null, "27.4", null, "1.9", null, "14.5", null, "1.5", null, "12.8", null, "1.4", null, "3.1", null, "0.7", null, "9.7", null, "1.2", null, "0.2", null, "0.1", null, "72.6", null, "1.9", null, "22.0", null, "1.5", null, "13.5", null, "1.3", null, "4.4", null, "0.8", null, "9.0", null, "1.0", null, "37.1", null, "1.8", null, "16.3", null, "1.5", null, "83.7", null, "1.5", null, "23.3", null, "1.7", null, "76.7", null, "1.7", null, "28.5", null, "1.7", null, "34.5", null, "1.6", null, "-999999999.0", "N", "-999999999.0", "N", "1.9", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "7.9", null, "1.0", null, "26.9", null, "1.7", null, "41.8", null, "1.7", null, "20.0", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.9", null, "1.4", null, "31.6", null, "2.5", null, "57.5", null, "2.5", null, "64119", null, "4980", null, "39054", null, "3825", null, "25065", null, "3394", null, "17748", null, "2550", null, "26694", null, "3401", null, "5599", null, "1501", null, "21095", null, "2875", null, "19677", null, "3392", null, "24669", null, "2901", null, "9048", null, "1841", null, "15345", null, "2758", null, "2693", null, "1139", null, "12652", null, "2583", null, "276", null, "308", null, "39450", null, "4140", null, "8700", null, "1776", null, "11349", null, "2268", null, "2906", null, "1018", null, "8443", null, "1803", null, "19401", null, "3350", null, "25656", null, "3324", null, "38463", null, "3865", null, "27350", null, "3576", null, "36769", null, "4154", null, "9909", null, "2058", null, "28617", null, "3703", null, "-999999999", "N", "-999999999", "N", "773", null, "554", null, "-999999999", "N", "-999999999", "N", "5213", null, "1433", null, "19444", null, "2886", null, "31781", null, "3545", null, "2512", null, "1033", null, "35252", null, "4333", null, "44442", null, "3830", null, "8764", null, "2168", null, "16113", null, "2536", null, "19565", null, "2620", null, "21.5", null, "1.6", null, "60.9", null, "4.1", null, "39.1", null, "4.1", null, "27.7", null, "4.2", null, "41.6", null, "3.7", null, "8.7", null, "2.2", null, "32.9", null, "3.4", null, "30.7", null, "4.2", null, "38.5", null, "3.8", null, "14.1", null, "3.0", null, "23.9", null, "3.7", null, "4.2", null, "1.8", null, "19.7", null, "3.6", null, "0.4", null, "0.5", null, "61.5", null, "3.8", null, "13.6", null, "2.9", null, "17.7", null, "3.2", null, "4.5", null, "1.5", null, "13.2", null, "2.6", null, "30.3", null, "4.1", null, "40.0", null, "4.0", null, "60.0", null, "4.0", null, "42.7", null, "4.6", null, "57.3", null, "4.6", null, "15.5", null, "3.0", null, "44.6", null, "4.3", null, "-999999999.0", "N", "-999999999.0", "N", "1.2", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "8.1", null, "2.3", null, "30.3", null, "3.9", null, "49.6", null, "4.3", null, "3.9", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "19.7", null, "4.6", null, "36.3", null, "4.3", null, "44.0", null, "5.1", null, "234132", null, "7994", null, "90711", null, "5265", null, "143421", null, "7076", null, "90950", null, "5326", null, "51535", null, "4482", null, "16804", null, "2898", null, "34731", null, "3314", null, "91647", null, "5728", null, "57064", null, "4683", null, "34064", null, "4026", null, "22718", null, "2884", null, "6438", null, "1613", null, "16280", null, "2283", null, "282", null, "266", null, "177068", null, "8298", null, "56886", null, "4317", null, "28817", null, "3832", null, "10366", null, "2217", null, "18451", null, "2805", null, "91365", null, "5763", null, "22959", null, "2957", null, "211173", null, "8041", null, "42193", null, "4150", null, "191939", null, "7084", null, "74949", null, "4920", null, "74419", null, "5289", null, "-999999999", "N", "-999999999", "N", "4861", null, "1352", null, "-999999999", "N", "-999999999", "N", "18477", null, "2974", null, "60827", null, "4898", null, "92819", null, "5668", null, "57022", null, "4187", null, "83404", null, "3373", null, "142485", null, "6265", null, "11689", null, "1997", null, "42874", null, "4663", null, "87922", null, "5873", null, "78.5", null, "1.6", null, "38.7", null, "2.0", null, "61.3", null, "2.0", null, "38.8", null, "2.0", null, "22.0", null, "1.8", null, "7.2", null, "1.2", null, "14.8", null, "1.3", null, "39.1", null, "1.9", null, "24.4", null, "2.0", null, "14.5", null, "1.7", null, "9.7", null, "1.3", null, "2.7", null, "0.7", null, "7.0", null, "1.0", null, "0.1", null, "0.1", null, "75.6", null, "2.0", null, "24.3", null, "1.7", null, "12.3", null, "1.5", null, "4.4", null, "0.9", null, "7.9", null, "1.1", null, "39.0", null, "1.9", null, "9.8", null, "1.3", null, "90.2", null, "1.3", null, "18.0", null, "1.6", null, "82.0", null, "1.6", null, "32.0", null, "2.0", null, "31.8", null, "1.9", null, "-999999999.0", "N", "-999999999.0", "N", "2.1", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "7.9", null, "1.2", null, "26.0", null, "1.8", null, "39.6", null, "2.0", null, "24.4", null, "1.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "8.2", null, "1.4", null, "30.1", null, "3.0", null, "61.7", null, "2.9", null, "12", "24"], ["5001900US1225", "Congressional District 25 (119th Congress), Florida", "287493", null, "5478", null, "128153", null, "4818", null, "159340", null, "5711", null, "140750", null, "5426", null, "53893", null, "4380", null, "15824", null, "2317", null, "38069", null, "3864", null, "92850", null, "5427", null, "86227", null, "4284", null, "58532", null, "4269", null, "26813", null, "3720", null, "7553", null, "1657", null, "19260", null, "3307", null, "882", null, "570", null, "201266", null, "6696", null, "82218", null, "4678", null, "27080", null, "2955", null, "8271", null, "1444", null, "18809", null, "2439", null, "91968", null, "5371", null, "31191", null, "3589", null, "256302", null, "5949", null, "66579", null, "4944", null, "220914", null, "7114", null, "127592", null, "5738", null, "40146", null, "3470", null, "-999999999", "N", "-999999999", "N", "13965", null, "1566", null, "-999999999", "N", "-999999999", "N", "17328", null, "2499", null, "87054", null, "4774", null, "122030", null, "4775", null, "100719", null, "4396", null, "87097", null, "3658", null, "194643", null, "4220", null, "22550", null, "2584", null, "58459", null, "4171", null, "113634", null, "5044", null, "-888888888", "(X)", "-888888888", "(X)", "44.6", null, "1.6", null, "55.4", null, "1.6", null, "49.0", null, "1.9", null, "18.7", null, "1.6", null, "5.5", null, "0.8", null, "13.2", null, "1.4", null, "32.3", null, "1.5", null, "30.0", null, "1.6", null, "20.4", null, "1.5", null, "9.3", null, "1.3", null, "2.6", null, "0.6", null, "6.7", null, "1.2", null, "0.3", null, "0.2", null, "70.0", null, "1.6", null, "28.6", null, "1.6", null, "9.4", null, "1.0", null, "2.9", null, "0.5", null, "6.5", null, "0.8", null, "32.0", null, "1.5", null, "10.8", null, "1.2", null, "89.2", null, "1.2", null, "23.2", null, "1.7", null, "76.8", null, "1.7", null, "44.4", null, "1.7", null, "14.0", null, "1.2", null, "-999999999.0", "N", "-999999999.0", "N", "4.9", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "6.0", null, "0.9", null, "30.3", null, "1.6", null, "42.4", null, "1.4", null, "35.0", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.6", null, "1.3", null, "30.0", null, "2.0", null, "58.4", null, "2.3", null, "29919", null, "3545", null, "15985", null, "2318", null, "13934", null, "2858", null, "10297", null, "2203", null, "12097", null, "2832", null, "2361", null, "994", null, "9736", null, "2381", null, "7525", null, "1736", null, "11945", null, "2687", null, "4680", null, "1445", null, "7170", null, "2271", null, "940", null, "657", null, "6230", null, "2115", null, "95", null, "114", null, "17974", null, "2751", null, "5617", null, "1821", null, "4927", null, "1505", null, "1421", null, "816", null, "3506", null, "1184", null, "7430", null, "1725", null, "8414", null, "1629", null, "21505", null, "3024", null, "13267", null, "2338", null, "16652", null, "2701", null, "8474", null, "1794", null, "5946", null, "1742", null, "-999999999", "N", "-999999999", "N", "981", null, "490", null, "-999999999", "N", "-999999999", "N", "2507", null, "864", null, "12011", null, "2483", null, "16563", null, "2607", null, "5864", null, "1583", null, "50685", null, "4434", null, "22394", null, "3268", null, "4055", null, "1430", null, "7536", null, "1746", null, "10803", null, "2173", null, "10.4", null, "1.3", null, "53.4", null, "6.5", null, "46.6", null, "6.5", null, "34.4", null, "6.7", null, "40.4", null, "7.2", null, "7.9", null, "3.1", null, "32.5", null, "6.3", null, "25.2", null, "5.4", null, "39.9", null, "7.0", null, "15.6", null, "4.8", null, "24.0", null, "6.3", null, "3.1", null, "2.1", null, "20.8", null, "6.0", null, "0.3", null, "0.4", null, "60.1", null, "7.0", null, "18.8", null, "5.8", null, "16.5", null, "4.8", null, "4.7", null, "2.6", null, "11.7", null, "3.9", null, "24.8", null, "5.3", null, "28.1", null, "4.7", null, "71.9", null, "4.7", null, "44.3", null, "5.9", null, "55.7", null, "5.9", null, "28.3", null, "5.2", null, "19.9", null, "5.1", null, "-999999999.0", "N", "-999999999.0", "N", "3.3", null, "1.7", null, "-999999999.0", "N", "-999999999.0", "N", "8.4", null, "3.0", null, "40.1", null, "6.2", null, "55.4", null, "6.3", null, "19.6", null, "4.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.1", null, "5.7", null, "33.7", null, "6.2", null, "48.2", null, "6.7", null, "257574", null, "6755", null, "112168", null, "4448", null, "145406", null, "5448", null, "130453", null, "5347", null, "41796", null, "3905", null, "13463", null, "2192", null, "28333", null, "3212", null, "85325", null, "5394", null, "74282", null, "4476", null, "53852", null, "4143", null, "19643", null, "2914", null, "6613", null, "1587", null, "13030", null, "2436", null, "787", null, "553", null, "183292", null, "6921", null, "76601", null, "4291", null, "22153", null, "2958", null, "6850", null, "1361", null, "15303", null, "2370", null, "84538", null, "5354", null, "22777", null, "3114", null, "234797", null, "6855", null, "53312", null, "4741", null, "204262", null, "7420", null, "119118", null, "5348", null, "34200", null, "3619", null, "-999999999", "N", "-999999999", "N", "12984", null, "1654", null, "-999999999", "N", "-999999999", "N", "14821", null, "2442", null, "75043", null, "5232", null, "105467", null, "5247", null, "94855", null, "4280", null, "92600", null, "5970", null, "172249", null, "5558", null, "18495", null, "2199", null, "50923", null, "4220", null, "102831", null, "4902", null, "89.6", null, "1.3", null, "43.5", null, "1.4", null, "56.5", null, "1.4", null, "50.6", null, "1.9", null, "16.2", null, "1.5", null, "5.2", null, "0.8", null, "11.0", null, "1.2", null, "33.1", null, "1.7", null, "28.8", null, "1.7", null, "20.9", null, "1.6", null, "7.6", null, "1.1", null, "2.6", null, "0.6", null, "5.1", null, "1.0", null, "0.3", null, "0.2", null, "71.2", null, "1.7", null, "29.7", null, "1.6", null, "8.6", null, "1.1", null, "2.7", null, "0.5", null, "5.9", null, "0.9", null, "32.8", null, "1.7", null, "8.8", null, "1.2", null, "91.2", null, "1.2", null, "20.7", null, "1.8", null, "79.3", null, "1.8", null, "46.2", null, "1.8", null, "13.3", null, "1.4", null, "-999999999.0", "N", "-999999999.0", "N", "5.0", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "5.8", null, "0.9", null, "29.1", null, "1.8", null, "40.9", null, "1.6", null, "36.8", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.7", null, "1.3", null, "29.6", null, "2.1", null, "59.7", null, "2.3", null, "12", "25"], ["5001900US1226", "Congressional District 26 (119th Congress), Florida", "295675", null, "6904", null, "151927", null, "5977", null, "143748", null, "7179", null, "147296", null, "5192", null, "73034", null, "4671", null, "24304", null, "2951", null, "48730", null, "3961", null, "75345", null, "4403", null, "87455", null, "4518", null, "54843", null, "3702", null, "32347", null, "2915", null, "10603", null, "2064", null, "21744", null, "2601", null, "265", null, "267", null, "208220", null, "7132", null, "92453", null, "4856", null, "40687", null, "3737", null, "13701", null, "2237", null, "26986", null, "3171", null, "75080", null, "4456", null, "45752", null, "3776", null, "249923", null, "6581", null, "72351", null, "4692", null, "223324", null, "7756", null, "91738", null, "4747", null, "13748", null, "2124", null, "2568", null, "941", null, "3893", null, "930", null, "-999999999", "N", "-999999999", "N", "31030", null, "3392", null, "152698", null, "5149", null, "206010", null, "5202", null, "68100", null, "3968", null, "75619", null, "2915", null, "220330", null, "5479", null, "32979", null, "2725", null, "69337", null, "3963", null, "118014", null, "5356", null, "-888888888", "(X)", "-888888888", "(X)", "51.4", null, "1.9", null, "48.6", null, "1.9", null, "49.8", null, "1.6", null, "24.7", null, "1.5", null, "8.2", null, "1.0", null, "16.5", null, "1.3", null, "25.5", null, "1.2", null, "29.6", null, "1.5", null, "18.5", null, "1.3", null, "10.9", null, "1.0", null, "3.6", null, "0.7", null, "7.4", null, "0.9", null, "0.1", null, "0.1", null, "70.4", null, "1.5", null, "31.3", null, "1.5", null, "13.8", null, "1.2", null, "4.6", null, "0.7", null, "9.1", null, "1.0", null, "25.4", null, "1.2", null, "15.5", null, "1.2", null, "84.5", null, "1.2", null, "24.5", null, "1.6", null, "75.5", null, "1.6", null, "31.0", null, "1.3", null, "4.6", null, "0.7", null, "0.9", null, "0.3", null, "1.3", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "10.5", null, "1.2", null, "51.6", null, "1.3", null, "69.7", null, "1.3", null, "23.0", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.0", null, "1.2", null, "31.5", null, "1.7", null, "53.6", null, "2.0", null, "64347", null, "4199", null, "43388", null, "3887", null, "20959", null, "2718", null, "25237", null, "2859", null, "23110", null, "2928", null, "7635", null, "1810", null, "15475", null, "2059", null, "16000", null, "2397", null, "22465", null, "2599", null, "12539", null, "2135", null, "9926", null, "2021", null, "2537", null, "1078", null, "7389", null, "1604", null, "0", null, "247", null, "41882", null, "3537", null, "12698", null, "2174", null, "13184", null, "2222", null, "5098", null, "1421", null, "8086", null, "1425", null, "16000", null, "2397", null, "21837", null, "2583", null, "42510", null, "3448", null, "28852", null, "3221", null, "35495", null, "3323", null, "7729", null, "1796", null, "2760", null, "1008", null, "557", null, "449", null, "0", null, "247", null, "-999999999", "N", "-999999999", "N", "9415", null, "1950", null, "43886", null, "3202", null, "59330", null, "3756", null, "2095", null, "937", null, "43641", null, "4416", null, "48347", null, "3444", null, "8430", null, "2044", null, "17704", null, "2563", null, "22213", null, "2274", null, "21.8", null, "1.4", null, "67.4", null, "3.8", null, "32.6", null, "3.8", null, "39.2", null, "4.2", null, "35.9", null, "3.6", null, "11.9", null, "2.6", null, "24.0", null, "2.8", null, "24.9", null, "3.1", null, "34.9", null, "3.4", null, "19.5", null, "3.3", null, "15.4", null, "2.8", null, "3.9", null, "1.6", null, "11.5", null, "2.3", null, "0.0", null, "0.4", null, "65.1", null, "3.4", null, "19.7", null, "3.3", null, "20.5", null, "3.2", null, "7.9", null, "2.1", null, "12.6", null, "2.2", null, "24.9", null, "3.1", null, "33.9", null, "3.3", null, "66.1", null, "3.3", null, "44.8", null, "3.9", null, "55.2", null, "3.9", null, "12.0", null, "2.6", null, "4.3", null, "1.5", null, "0.9", null, "0.7", null, "0.0", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "14.6", null, "2.8", null, "68.2", null, "3.5", null, "92.2", null, "2.2", null, "3.3", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.4", null, "3.8", null, "36.6", null, "4.2", null, "45.9", null, "4.6", null, "231328", null, "6966", null, "108539", null, "5159", null, "122789", null, "6883", null, "122059", null, "5379", null, "49924", null, "4370", null, "16669", null, "2614", null, "33255", null, "3577", null, "59345", null, "3719", null, "64990", null, "4199", null, "42304", null, "3376", null, "22421", null, "2544", null, "8066", null, "1836", null, "14355", null, "2281", null, "265", null, "267", null, "166338", null, "6327", null, "79755", null, "4579", null, "27503", null, "2994", null, "8603", null, "1777", null, "18900", null, "2544", null, "59080", null, "3766", null, "23915", null, "2662", null, "207413", null, "6748", null, "43499", null, "2993", null, "187829", null, "7608", null, "84009", null, "4497", null, "10988", null, "2054", null, "2011", null, "798", null, "3893", null, "930", null, "-999999999", "N", "-999999999", "N", "21615", null, "2581", null, "108812", null, "5061", null, "146680", null, "5490", null, "66005", null, "3919", null, "86187", null, "3310", null, "171983", null, "6205", null, "24549", null, "2203", null, "51633", null, "3610", null, "95801", null, "5658", null, "78.2", null, "1.4", null, "46.9", null, "2.1", null, "53.1", null, "2.1", null, "52.8", null, "1.8", null, "21.6", null, "1.7", null, "7.2", null, "1.1", null, "14.4", null, "1.5", null, "25.7", null, "1.4", null, "28.1", null, "1.6", null, "18.3", null, "1.4", null, "9.7", null, "1.1", null, "3.5", null, "0.8", null, "6.2", null, "1.0", null, "0.1", null, "0.1", null, "71.9", null, "1.6", null, "34.5", null, "1.7", null, "11.9", null, "1.2", null, "3.7", null, "0.8", null, "8.2", null, "1.1", null, "25.5", null, "1.4", null, "10.3", null, "1.1", null, "89.7", null, "1.1", null, "18.8", null, "1.4", null, "81.2", null, "1.4", null, "36.3", null, "1.6", null, "4.7", null, "0.9", null, "0.9", null, "0.3", null, "1.7", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "9.3", null, "1.1", null, "47.0", null, "1.7", null, "63.4", null, "1.6", null, "28.5", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.3", null, "1.2", null, "30.0", null, "2.0", null, "55.7", null, "2.2", null, "12", "26"], ["5001900US1227", "Congressional District 27 (119th Congress), Florida", "305844", null, "6860", null, "135765", null, "4879", null, "170079", null, "6068", null, "132514", null, "4846", null, "62460", null, "4713", null, "17997", null, "2935", null, "44463", null, "3229", null, "110870", null, "5069", null, "75674", null, "3817", null, "49053", null, "3447", null, "26045", null, "3482", null, "7176", null, "1909", null, "18869", null, "2644", null, "576", null, "383", null, "230170", null, "7137", null, "83461", null, "4131", null, "36415", null, "3494", null, "10821", null, "2084", null, "25594", null, "2741", null, "110294", null, "5029", null, "44895", null, "4317", null, "260949", null, "7392", null, "58642", null, "3832", null, "247202", null, "6478", null, "95045", null, "4943", null, "12849", null, "2422", null, "717", null, "398", null, "7177", null, "1389", null, "-999999999", "N", "-999999999", "N", "22846", null, "2483", null, "167109", null, "6696", null, "220744", null, "5722", null, "57206", null, "3625", null, "82215", null, "2675", null, "194974", null, "5662", null, "20963", null, "2491", null, "61427", null, "3684", null, "112584", null, "4581", null, "-888888888", "(X)", "-888888888", "(X)", "44.4", null, "1.4", null, "55.6", null, "1.4", null, "43.3", null, "1.5", null, "20.4", null, "1.4", null, "5.9", null, "0.9", null, "14.5", null, "1.0", null, "36.3", null, "1.4", null, "24.7", null, "1.3", null, "16.0", null, "1.2", null, "8.5", null, "1.1", null, "2.3", null, "0.6", null, "6.2", null, "0.8", null, "0.2", null, "0.1", null, "75.3", null, "1.3", null, "27.3", null, "1.2", null, "11.9", null, "1.1", null, "3.5", null, "0.7", null, "8.4", null, "0.9", null, "36.1", null, "1.3", null, "14.7", null, "1.4", null, "85.3", null, "1.4", null, "19.2", null, "1.2", null, "80.8", null, "1.2", null, "31.1", null, "1.5", null, "4.2", null, "0.8", null, "0.2", null, "0.1", null, "2.3", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "7.5", null, "0.8", null, "54.6", null, "1.7", null, "72.2", null, "1.3", null, "18.7", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.8", null, "1.2", null, "31.5", null, "1.7", null, "57.7", null, "1.7", null, "51656", null, "4246", null, "35799", null, "3492", null, "15857", null, "2716", null, "18848", null, "3106", null, "18055", null, "2615", null, "4677", null, "1404", null, "13378", null, "2224", null, "14753", null, "2506", null, "14592", null, "2397", null, "7190", null, "1644", null, "7342", null, "1682", null, "1910", null, "950", null, "5432", null, "1298", null, "60", null, "102", null, "37064", null, "3804", null, "11658", null, "2445", null, "10713", null, "2009", null, "2767", null, "1011", null, "7946", null, "1713", null, "14693", null, "2511", null, "19123", null, "2905", null, "32533", null, "3323", null, "19474", null, "2665", null, "32182", null, "3574", null, "9227", null, "2132", null, "2343", null, "1117", null, "84", null, "101", null, "154", null, "194", null, "-999999999", "N", "-999999999", "N", "4229", null, "1092", null, "35619", null, "3637", null, "48412", null, "3963", null, "1036", null, "487", null, "34614", null, "4593", null, "36903", null, "3915", null, "6730", null, "1556", null, "15777", null, "2251", null, "14396", null, "2430", null, "16.9", null, "1.3", null, "69.3", null, "4.4", null, "30.7", null, "4.4", null, "36.5", null, "4.9", null, "35.0", null, "4.3", null, "9.1", null, "2.6", null, "25.9", null, "3.9", null, "28.6", null, "4.4", null, "28.2", null, "4.1", null, "13.9", null, "3.1", null, "14.2", null, "3.0", null, "3.7", null, "1.8", null, "10.5", null, "2.4", null, "0.1", null, "0.2", null, "71.8", null, "4.1", null, "22.6", null, "4.0", null, "20.7", null, "3.6", null, "5.4", null, "1.9", null, "15.4", null, "3.1", null, "28.4", null, "4.4", null, "37.0", null, "4.4", null, "63.0", null, "4.4", null, "37.7", null, "4.3", null, "62.3", null, "4.3", null, "17.9", null, "3.8", null, "4.5", null, "2.1", null, "0.2", null, "0.2", null, "0.3", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "8.2", null, "2.1", null, "69.0", null, "4.0", null, "93.7", null, "2.0", null, "2.0", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.2", null, "3.5", null, "42.8", null, "4.8", null, "39.0", null, "4.9", null, "254188", null, "6584", null, "99966", null, "4351", null, "154222", null, "6086", null, "113666", null, "4441", null, "44405", null, "4117", null, "13320", null, "2305", null, "31085", null, "3039", null, "96117", null, "4656", null, "61082", null, "3791", null, "41863", null, "3341", null, "18703", null, "2895", null, "5266", null, "1582", null, "13437", null, "2313", null, "516", null, "363", null, "193106", null, "6780", null, "71803", null, "4037", null, "25702", null, "2973", null, "8054", null, "1805", null, "17648", null, "2330", null, "95601", null, "4623", null, "25772", null, "2946", null, "228416", null, "7255", null, "39168", null, "3037", null, "215020", null, "6379", null, "85818", null, "4431", null, "10506", null, "2177", null, "633", null, "387", null, "7023", null, "1370", null, "-999999999", "N", "-999999999", "N", "18617", null, "2262", null, "131490", null, "6367", null, "172332", null, "6056", null, "56170", null, "3512", null, "96362", null, "4707", null, "158071", null, "5527", null, "14233", null, "1999", null, "45650", null, "3719", null, "98188", null, "4532", null, "83.1", null, "1.3", null, "39.3", null, "1.6", null, "60.7", null, "1.6", null, "44.7", null, "1.4", null, "17.5", null, "1.5", null, "5.2", null, "0.9", null, "12.2", null, "1.1", null, "37.8", null, "1.5", null, "24.0", null, "1.5", null, "16.5", null, "1.3", null, "7.4", null, "1.1", null, "2.1", null, "0.6", null, "5.3", null, "0.9", null, "0.2", null, "0.1", null, "76.0", null, "1.5", null, "28.2", null, "1.3", null, "10.1", null, "1.1", null, "3.2", null, "0.7", null, "6.9", null, "0.9", null, "37.6", null, "1.5", null, "10.1", null, "1.2", null, "89.9", null, "1.2", null, "15.4", null, "1.1", null, "84.6", null, "1.1", null, "33.8", null, "1.6", null, "4.1", null, "0.8", null, "0.2", null, "0.2", null, "2.8", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "7.3", null, "0.9", null, "51.7", null, "1.9", null, "67.8", null, "1.6", null, "22.1", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "9.0", null, "1.2", null, "28.9", null, "2.1", null, "62.1", null, "2.0", null, "12", "27"], ["5001900US1228", "Congressional District 28 (119th Congress), Florida", "255628", null, "5933", null, "118660", null, "4776", null, "136968", null, "4399", null, "129208", null, "5442", null, "70814", null, "4844", null, "21510", null, "3027", null, "49304", null, "4031", null, "55606", null, "4005", null, "88704", null, "4847", null, "53435", null, "4245", null, "34850", null, "3707", null, "8114", null, "1615", null, "26736", null, "3630", null, "419", null, "332", null, "166924", null, "6183", null, "75773", null, "4240", null, "35964", null, "3826", null, "13396", null, "2500", null, "22568", null, "2699", null, "55187", null, "4020", null, "32448", null, "3185", null, "223180", null, "6525", null, "56628", null, "3982", null, "199000", null, "5858", null, "71759", null, "4060", null, "19144", null, "3128", null, "-999999999", "N", "-999999999", "N", "4751", null, "1292", null, "-999999999", "N", "-999999999", "N", "17624", null, "2281", null, "141941", null, "5380", null, "191199", null, "5852", null, "37741", null, "3119", null, "83629", null, "4119", null, "200022", null, "5681", null, "21739", null, "2778", null, "65388", null, "4769", null, "112895", null, "4803", null, "-888888888", "(X)", "-888888888", "(X)", "46.4", null, "1.4", null, "53.6", null, "1.4", null, "50.5", null, "1.8", null, "27.7", null, "1.8", null, "8.4", null, "1.2", null, "19.3", null, "1.6", null, "21.8", null, "1.4", null, "34.7", null, "1.8", null, "20.9", null, "1.6", null, "13.6", null, "1.4", null, "3.2", null, "0.6", null, "10.5", null, "1.4", null, "0.2", null, "0.1", null, "65.3", null, "1.8", null, "29.6", null, "1.5", null, "14.1", null, "1.5", null, "5.2", null, "1.0", null, "8.8", null, "1.1", null, "21.6", null, "1.4", null, "12.7", null, "1.3", null, "87.3", null, "1.3", null, "22.2", null, "1.5", null, "77.8", null, "1.5", null, "28.1", null, "1.4", null, "7.5", null, "1.2", null, "-999999999.0", "N", "-999999999.0", "N", "1.9", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "6.9", null, "0.9", null, "55.5", null, "1.7", null, "74.8", null, "1.7", null, "14.8", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.9", null, "1.4", null, "32.7", null, "2.0", null, "56.4", null, "2.1", null, "47679", null, "3911", null, "30595", null, "2887", null, "17084", null, "2440", null, "18563", null, "2545", null, "20739", null, "2528", null, "4863", null, "1399", null, "15876", null, "2121", null, "8377", null, "1705", null, "20924", null, "2797", null, "9734", null, "1950", null, "11110", null, "1826", null, "1492", null, "675", null, "9618", null, "1800", null, "80", null, "143", null, "26755", null, "3085", null, "8829", null, "1674", null, "9629", null, "1882", null, "3371", null, "1178", null, "6258", null, "1383", null, "8297", null, "1693", null, "14167", null, "2275", null, "33512", null, "3090", null, "20078", null, "2673", null, "27601", null, "2946", null, "6952", null, "1420", null, "5270", null, "1562", null, "-999999999", "N", "-999999999", "N", "288", null, "281", null, "-999999999", "N", "-999999999", "N", "4613", null, "1137", null, "30556", null, "3353", null, "40964", null, "3081", null, "1352", null, "601", null, "49831", null, "6688", null, "39302", null, "3546", null, "5473", null, "1302", null, "15915", null, "2607", null, "17914", null, "2144", null, "18.7", null, "1.5", null, "64.2", null, "3.8", null, "35.8", null, "3.8", null, "38.9", null, "4.4", null, "43.5", null, "3.8", null, "10.2", null, "2.7", null, "33.3", null, "3.7", null, "17.6", null, "3.2", null, "43.9", null, "4.6", null, "20.4", null, "3.8", null, "23.3", null, "3.3", null, "3.1", null, "1.4", null, "20.2", null, "3.4", null, "0.2", null, "0.3", null, "56.1", null, "4.6", null, "18.5", null, "3.2", null, "20.2", null, "3.6", null, "7.1", null, "2.3", null, "13.1", null, "2.8", null, "17.4", null, "3.2", null, "29.7", null, "3.8", null, "70.3", null, "3.8", null, "42.1", null, "4.2", null, "57.9", null, "4.2", null, "14.6", null, "2.9", null, "11.1", null, "2.8", null, "-999999999.0", "N", "-999999999.0", "N", "0.6", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "9.7", null, "2.5", null, "64.1", null, "4.5", null, "85.9", null, "3.1", null, "2.8", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.9", null, "3.1", null, "40.5", null, "4.5", null, "45.6", null, "4.7", null, "207949", null, "6533", null, "88065", null, "4822", null, "119884", null, "4299", null, "110645", null, "5192", null, "50075", null, "3895", null, "16647", null, "2728", null, "33428", null, "3287", null, "47229", null, "3550", null, "67780", null, "4525", null, "43701", null, "4145", null, "23740", null, "2850", null, "6622", null, "1556", null, "17118", null, "2681", null, "339", null, "307", null, "140169", null, "6246", null, "66944", null, "3892", null, "26335", null, "3267", null, "10025", null, "2196", null, "16310", null, "2527", null, "46890", null, "3591", null, "18281", null, "2472", null, "189668", null, "6424", null, "36550", null, "3646", null, "171399", null, "5748", null, "64807", null, "3810", null, "13874", null, "3058", null, "-999999999", "N", "-999999999", "N", "4463", null, "1293", null, "-999999999", "N", "-999999999", "N", "13011", null, "2033", null, "111385", null, "5192", null, "150235", null, "6139", null, "36389", null, "3001", null, "90642", null, "2900", null, "160720", null, "5732", null, "16266", null, "2218", null, "49473", null, "4064", null, "94981", null, "4208", null, "81.3", null, "1.5", null, "42.3", null, "1.6", null, "57.7", null, "1.6", null, "53.2", null, "1.8", null, "24.1", null, "1.8", null, "8.0", null, "1.3", null, "16.1", null, "1.6", null, "22.7", null, "1.5", null, "32.6", null, "2.0", null, "21.0", null, "1.9", null, "11.4", null, "1.4", null, "3.2", null, "0.7", null, "8.2", null, "1.3", null, "0.2", null, "0.1", null, "67.4", null, "2.0", null, "32.2", null, "1.6", null, "12.7", null, "1.5", null, "4.8", null, "1.0", null, "7.8", null, "1.2", null, "22.5", null, "1.5", null, "8.8", null, "1.2", null, "91.2", null, "1.2", null, "17.6", null, "1.6", null, "82.4", null, "1.6", null, "31.2", null, "1.6", null, "6.7", null, "1.4", null, "-999999999.0", "N", "-999999999.0", "N", "2.1", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "6.3", null, "1.0", null, "53.6", null, "1.9", null, "72.2", null, "2.0", null, "17.5", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.1", null, "1.3", null, "30.8", null, "2.1", null, "59.1", null, "2.0", null, "12", "28"], ["5001900US1301", "Congressional District 1 (119th Congress), Georgia", "311621", null, "4091", null, "125127", null, "3355", null, "186494", null, "4555", null, "145609", null, "5746", null, "59611", null, "4620", null, "17907", null, "3155", null, "41704", null, "3940", null, "106401", null, "5368", null, "97163", null, "4638", null, "59215", null, "4002", null, "37089", null, "4098", null, "9890", null, "2589", null, "27199", null, "3455", null, "859", null, "598", null, "214458", null, "5806", null, "86394", null, "4461", null, "22522", null, "2552", null, "8017", null, "1916", null, "14505", null, "1846", null, "105542", null, "5321", null, "43085", null, "3529", null, "268536", null, "4844", null, "96125", null, "4482", null, "215496", null, "5677", null, "193922", null, "3886", null, "81185", null, "3525", null, "1578", null, "806", null, "4911", null, "1006", null, "-999999999", "N", "-999999999", "N", "7047", null, "1537", null, "22293", null, "2693", null, "20412", null, "1765", null, "190294", null, "3750", null, "72484", null, "3491", null, "205220", null, "5490", null, "33330", null, "3000", null, "67964", null, "4804", null, "103926", null, "4969", null, "-888888888", "(X)", "-888888888", "(X)", "40.2", null, "1.1", null, "59.8", null, "1.1", null, "46.7", null, "1.7", null, "19.1", null, "1.5", null, "5.7", null, "1.0", null, "13.4", null, "1.3", null, "34.1", null, "1.6", null, "31.2", null, "1.5", null, "19.0", null, "1.2", null, "11.9", null, "1.3", null, "3.2", null, "0.8", null, "8.7", null, "1.1", null, "0.3", null, "0.2", null, "68.8", null, "1.5", null, "27.7", null, "1.4", null, "7.2", null, "0.8", null, "2.6", null, "0.6", null, "4.7", null, "0.6", null, "33.9", null, "1.6", null, "13.8", null, "1.1", null, "86.2", null, "1.1", null, "30.8", null, "1.4", null, "69.2", null, "1.4", null, "62.2", null, "1.0", null, "26.1", null, "1.0", null, "0.5", null, "0.3", null, "1.6", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "2.3", null, "0.5", null, "7.2", null, "0.9", null, "6.6", null, "0.5", null, "61.1", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.2", null, "1.4", null, "33.1", null, "2.1", null, "50.6", null, "2.1", null, "37474", null, "3326", null, "16466", null, "2279", null, "21008", null, "2765", null, "7825", null, "1782", null, "17888", null, "2363", null, "2930", null, "1249", null, "14958", null, "2431", null, "11761", null, "1776", null, "18411", null, "2648", null, "4894", null, "1721", null, "13246", null, "2140", null, "1930", null, "1041", null, "11316", null, "2213", null, "271", null, "345", null, "19063", null, "2419", null, "2931", null, "845", null, "4642", null, "1156", null, "1000", null, "574", null, "3642", null, "1059", null, "11490", null, "1780", null, "17475", null, "2496", null, "19999", null, "2440", null, "19428", null, "2462", null, "18046", null, "2950", null, "14938", null, "2027", null, "17722", null, "2387", null, "461", null, "516", null, "132", null, "181", null, "-999999999", "N", "-999999999", "N", "545", null, "314", null, "3089", null, "1201", null, "2456", null, "1106", null, "14566", null, "1996", null, "28305", null, "5660", null, "25713", null, "2979", null, "5429", null, "1549", null, "13460", null, "2327", null, "6824", null, "1725", null, "12.0", null, "1.1", null, "43.9", null, "5.1", null, "56.1", null, "5.1", null, "20.9", null, "4.1", null, "47.7", null, "4.6", null, "7.8", null, "3.4", null, "39.9", null, "4.8", null, "31.4", null, "4.3", null, "49.1", null, "5.1", null, "13.1", null, "4.2", null, "35.3", null, "4.8", null, "5.2", null, "2.9", null, "30.2", null, "4.8", null, "0.7", null, "0.9", null, "50.9", null, "5.1", null, "7.8", null, "2.2", null, "12.4", null, "2.8", null, "2.7", null, "1.5", null, "9.7", null, "2.6", null, "30.7", null, "4.2", null, "46.6", null, "4.9", null, "53.4", null, "4.9", null, "51.8", null, "5.8", null, "48.2", null, "5.8", null, "39.9", null, "4.2", null, "47.3", null, "4.8", null, "1.2", null, "1.4", null, "0.4", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "1.5", null, "0.8", null, "8.2", null, "3.2", null, "6.6", null, "2.8", null, "38.9", null, "4.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "21.1", null, "5.6", null, "52.3", null, "6.4", null, "26.5", null, "6.2", null, "274147", null, "5230", null, "108661", null, "3312", null, "165486", null, "4768", null, "137784", null, "5963", null, "41723", null, "4064", null, "14977", null, "2704", null, "26746", null, "3405", null, "94640", null, "5353", null, "78752", null, "4238", null, "54321", null, "3941", null, "23843", null, "3428", null, "7960", null, "2304", null, "15883", null, "2745", null, "588", null, "495", null, "195395", null, "6307", null, "83463", null, "4503", null, "17880", null, "2476", null, "7017", null, "1740", null, "10863", null, "1804", null, "94052", null, "5373", null, "25610", null, "2836", null, "248537", null, "5231", null, "76697", null, "3827", null, "197450", null, "6009", null, "178984", null, "4119", null, "63463", null, "3630", null, "1117", null, "625", null, "4779", null, "1017", null, "-999999999", "N", "-999999999", "N", "6502", null, "1484", null, "19204", null, "2483", null, "17956", null, "1677", null, "175728", null, "4095", null, "79488", null, "3363", null, "179507", null, "5509", null, "27901", null, "2506", null, "54504", null, "4251", null, "97102", null, "4814", null, "88.0", null, "1.1", null, "39.6", null, "1.1", null, "60.4", null, "1.1", null, "50.3", null, "2.0", null, "15.2", null, "1.5", null, "5.5", null, "1.0", null, "9.8", null, "1.2", null, "34.5", null, "1.7", null, "28.7", null, "1.6", null, "19.8", null, "1.4", null, "8.7", null, "1.3", null, "2.9", null, "0.9", null, "5.8", null, "1.0", null, "0.2", null, "0.2", null, "71.3", null, "1.6", null, "30.4", null, "1.5", null, "6.5", null, "0.9", null, "2.6", null, "0.6", null, "4.0", null, "0.7", null, "34.3", null, "1.7", null, "9.3", null, "1.0", null, "90.7", null, "1.0", null, "28.0", null, "1.4", null, "72.0", null, "1.4", null, "65.3", null, "1.1", null, "23.1", null, "1.2", null, "0.4", null, "0.2", null, "1.7", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "2.4", null, "0.5", null, "7.0", null, "0.9", null, "6.5", null, "0.6", null, "64.1", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.5", null, "1.4", null, "30.4", null, "2.0", null, "54.1", null, "2.1", null, "13", "01"], ["5001900US1302", "Congressional District 2 (119th Congress), Georgia", "299983", null, "5086", null, "130463", null, "3735", null, "169520", null, "5166", null, "105737", null, "5040", null, "75817", null, "4977", null, "13513", null, "2058", null, "62304", null, "4778", null, "118429", null, "5183", null, "84007", null, "4136", null, "40146", null, "3703", null, "43683", null, "3857", null, "6258", null, "1545", null, "37425", null, "3592", null, "178", null, "234", null, "215976", null, "5751", null, "65591", null, "3929", null, "32134", null, "3577", null, "7255", null, "1373", null, "24879", null, "3133", null, "118251", null, "5167", null, "65826", null, "3977", null, "234157", null, "5108", null, "98177", null, "4188", null, "201806", null, "5672", null, "126400", null, "3813", null, "147473", null, "4583", null, "989", null, "521", null, "4941", null, "1133", null, "-999999999", "N", "-999999999", "N", "6636", null, "1288", null, "13544", null, "2147", null, "14027", null, "1597", null, "124075", null, "3862", null, "51802", null, "1556", null, "181554", null, "5184", null, "34739", null, "2771", null, "67312", null, "4515", null, "79503", null, "4125", null, "-888888888", "(X)", "-888888888", "(X)", "43.5", null, "1.2", null, "56.5", null, "1.2", null, "35.2", null, "1.7", null, "25.3", null, "1.6", null, "4.5", null, "0.7", null, "20.8", null, "1.5", null, "39.5", null, "1.5", null, "28.0", null, "1.3", null, "13.4", null, "1.3", null, "14.6", null, "1.2", null, "2.1", null, "0.5", null, "12.5", null, "1.2", null, "0.1", null, "0.1", null, "72.0", null, "1.3", null, "21.9", null, "1.3", null, "10.7", null, "1.2", null, "2.4", null, "0.5", null, "8.3", null, "1.0", null, "39.4", null, "1.5", null, "21.9", null, "1.2", null, "78.1", null, "1.2", null, "32.7", null, "1.4", null, "67.3", null, "1.4", null, "42.1", null, "1.1", null, "49.2", null, "1.2", null, "0.3", null, "0.2", null, "1.6", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "2.2", null, "0.4", null, "4.5", null, "0.7", null, "4.7", null, "0.5", null, "41.4", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "19.1", null, "1.4", null, "37.1", null, "2.2", null, "43.8", null, "2.0", null, "62291", null, "3600", null, "28155", null, "2337", null, "34136", null, "3065", null, "11707", null, "1901", null, "29068", null, "2999", null, "3589", null, "1254", null, "25479", null, "2956", null, "21516", null, "2225", null, "25919", null, "2650", null, "5954", null, "1438", null, "19822", null, "2623", null, "1948", null, "997", null, "17874", null, "2562", null, "143", null, "227", null, "36372", null, "2900", null, "5753", null, "1351", null, "9246", null, "1707", null, "1641", null, "692", null, "7605", null, "1545", null, "21373", null, "2181", null, "29721", null, "2558", null, "32570", null, "2964", null, "26966", null, "2880", null, "35325", null, "3175", null, "13476", null, "1685", null, "44857", null, "3535", null, "96", null, "121", null, "82", null, "115", null, "-999999999", "N", "-999999999", "N", "938", null, "488", null, "2842", null, "685", null, "2075", null, "849", null, "13243", null, "1691", null, "24407", null, "2995", null, "40775", null, "3003", null, "10709", null, "1905", null, "19868", null, "2528", null, "10198", null, "1687", null, "20.8", null, "1.1", null, "45.2", null, "3.2", null, "54.8", null, "3.2", null, "18.8", null, "3.0", null, "46.7", null, "3.7", null, "5.8", null, "2.0", null, "40.9", null, "3.8", null, "34.5", null, "3.0", null, "41.6", null, "3.4", null, "9.6", null, "2.4", null, "31.8", null, "3.4", null, "3.1", null, "1.6", null, "28.7", null, "3.4", null, "0.2", null, "0.4", null, "58.4", null, "3.4", null, "9.2", null, "2.1", null, "14.8", null, "2.7", null, "2.6", null, "1.1", null, "12.2", null, "2.4", null, "34.3", null, "2.9", null, "47.7", null, "3.3", null, "52.3", null, "3.3", null, "43.3", null, "3.9", null, "56.7", null, "3.9", null, "21.6", null, "2.6", null, "72.0", null, "3.0", null, "0.2", null, "0.2", null, "0.1", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "1.5", null, "0.8", null, "4.6", null, "1.1", null, "3.3", null, "1.4", null, "21.3", null, "2.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "26.3", null, "4.1", null, "48.7", null, "4.8", null, "25.0", null, "4.0", null, "237692", null, "5124", null, "102308", null, "3965", null, "135384", null, "4718", null, "94030", null, "4624", null, "46749", null, "4371", null, "9924", null, "1629", null, "36825", null, "4040", null, "96913", null, "5016", null, "58088", null, "3950", null, "34192", null, "3435", null, "23861", null, "3260", null, "4310", null, "1221", null, "19551", null, "2926", null, "35", null, "51", null, "179604", null, "5705", null, "59838", null, "3632", null, "22888", null, "2897", null, "5614", null, "1137", null, "17274", null, "2596", null, "96878", null, "5005", null, "36105", null, "3590", null, "201587", null, "5659", null, "71211", null, "4036", null, "166481", null, "5036", null, "112924", null, "3911", null, "102616", null, "4533", null, "893", null, "516", null, "4859", null, "1110", null, "-999999999", "N", "-999999999", "N", "5698", null, "1244", null, "10702", null, "2054", null, "11952", null, "1447", null, "110832", null, "3962", null, "61072", null, "1720", null, "140779", null, "5093", null, "24030", null, "2413", null, "47444", null, "4003", null, "69305", null, "3755", null, "79.2", null, "1.1", null, "43.0", null, "1.5", null, "57.0", null, "1.5", null, "39.6", null, "2.0", null, "19.7", null, "1.7", null, "4.2", null, "0.7", null, "15.5", null, "1.6", null, "40.8", null, "1.8", null, "24.4", null, "1.6", null, "14.4", null, "1.5", null, "10.0", null, "1.3", null, "1.8", null, "0.5", null, "8.2", null, "1.2", null, "0.0", null, "0.1", null, "75.6", null, "1.6", null, "25.2", null, "1.5", null, "9.6", null, "1.2", null, "2.4", null, "0.5", null, "7.3", null, "1.1", null, "40.8", null, "1.8", null, "15.2", null, "1.5", null, "84.8", null, "1.5", null, "30.0", null, "1.5", null, "70.0", null, "1.5", null, "47.5", null, "1.5", null, "43.2", null, "1.5", null, "0.4", null, "0.2", null, "2.0", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "2.4", null, "0.5", null, "4.5", null, "0.9", null, "5.0", null, "0.6", null, "46.6", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.1", null, "1.5", null, "33.7", null, "2.5", null, "49.2", null, "2.3", null, "13", "02"], ["5001900US1303", "Congressional District 3 (119th Congress), Georgia", "295992", null, "4519", null, "128663", null, "3626", null, "167329", null, "4337", null, "160180", null, "4550", null, "53233", null, "4810", null, "14492", null, "2303", null, "38741", null, "3985", null, "82579", null, "4799", null, "93710", null, "4520", null, "64487", null, "4156", null, "29157", null, "3646", null, "7883", null, "1876", null, "21274", null, "2983", null, "66", null, "118", null, "202282", null, "4841", null, "95693", null, "3747", null, "24076", null, "3085", null, "6609", null, "1580", null, "17467", null, "2474", null, "82513", null, "4810", null, "31461", null, "3544", null, "264531", null, "5009", null, "85293", null, "4134", null, "210699", null, "4866", null, "200238", null, "3777", null, "65930", null, "3511", null, "785", null, "467", null, "6405", null, "1329", null, "-999999999", "N", "-999999999", "N", "7096", null, "1791", null, "15329", null, "2093", null, "17719", null, "1920", null, "196138", null, "3545", null, "83442", null, "3930", null, "213413", null, "5035", null, "33493", null, "2756", null, "66839", null, "4773", null, "113081", null, "4599", null, "-888888888", "(X)", "-888888888", "(X)", "43.5", null, "1.1", null, "56.5", null, "1.1", null, "54.1", null, "1.6", null, "18.0", null, "1.6", null, "4.9", null, "0.8", null, "13.1", null, "1.3", null, "27.9", null, "1.5", null, "31.7", null, "1.4", null, "21.8", null, "1.4", null, "9.9", null, "1.2", null, "2.7", null, "0.6", null, "7.2", null, "1.0", null, "0.0", null, "0.1", null, "68.3", null, "1.4", null, "32.3", null, "1.3", null, "8.1", null, "1.0", null, "2.2", null, "0.5", null, "5.9", null, "0.8", null, "27.9", null, "1.5", null, "10.6", null, "1.2", null, "89.4", null, "1.2", null, "28.8", null, "1.3", null, "71.2", null, "1.3", null, "67.6", null, "1.0", null, "22.3", null, "1.1", null, "0.3", null, "0.2", null, "2.2", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "2.4", null, "0.6", null, "5.2", null, "0.7", null, "6.0", null, "0.6", null, "66.3", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.7", null, "1.2", null, "31.3", null, "2.0", null, "53.0", null, "2.1", null, "26860", null, "3302", null, "12408", null, "1955", null, "14452", null, "2537", null, "7294", null, "1489", null, "12900", null, "2510", null, "3119", null, "1058", null, "9781", null, "2175", null, "6666", null, "1344", null, "10913", null, "2084", null, "3336", null, "1077", null, "7577", null, "1982", null, "2012", null, "817", null, "5565", null, "1799", null, "0", null, "232", null, "15947", null, "2502", null, "3958", null, "1169", null, "5323", null, "1530", null, "1107", null, "588", null, "4216", null, "1218", null, "6666", null, "1344", null, "11135", null, "2005", null, "15725", null, "2622", null, "14080", null, "2223", null, "12780", null, "2170", null, "13697", null, "1947", null, "11029", null, "2414", null, "183", null, "221", null, "104", null, "152", null, "-999999999", "N", "-999999999", "N", "444", null, "409", null, "1403", null, "639", null, "1329", null, "632", null, "13419", null, "1895", null, "33885", null, "5359", null, "20194", null, "2891", null, "4988", null, "1227", null, "10139", null, "2032", null, "5067", null, "1184", null, "9.1", null, "1.1", null, "46.2", null, "5.7", null, "53.8", null, "5.7", null, "27.2", null, "4.8", null, "48.0", null, "6.3", null, "11.6", null, "3.6", null, "36.4", null, "6.1", null, "24.8", null, "4.4", null, "40.6", null, "5.9", null, "12.4", null, "3.8", null, "28.2", null, "6.3", null, "7.5", null, "2.9", null, "20.7", null, "6.0", null, "0.0", null, "0.8", null, "59.4", null, "5.9", null, "14.7", null, "4.0", null, "19.8", null, "4.8", null, "4.1", null, "2.1", null, "15.7", null, "3.9", null, "24.8", null, "4.4", null, "41.5", null, "5.9", null, "58.5", null, "5.9", null, "52.4", null, "5.4", null, "47.6", null, "5.4", null, "51.0", null, "5.8", null, "41.1", null, "6.3", null, "0.7", null, "0.8", null, "0.4", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "1.7", null, "1.5", null, "5.2", null, "2.3", null, "4.9", null, "2.2", null, "50.0", null, "5.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "24.7", null, "5.0", null, "50.2", null, "6.8", null, "25.1", null, "4.9", null, "269132", null, "5022", null, "116255", null, "3700", null, "152877", null, "4632", null, "152886", null, "4488", null, "40333", null, "4461", null, "11373", null, "2142", null, "28960", null, "3748", null, "75913", null, "4693", null, "82797", null, "4383", null, "61151", null, "4158", null, "21580", null, "3355", null, "5871", null, "1710", null, "15709", null, "2802", null, "66", null, "118", null, "186335", null, "4853", null, "91735", null, "3488", null, "18753", null, "2708", null, "5502", null, "1419", null, "13251", null, "2254", null, "75847", null, "4707", null, "20326", null, "2874", null, "248806", null, "5341", null, "71213", null, "3703", null, "197919", null, "4903", null, "186541", null, "3840", null, "54901", null, "3545", null, "602", null, "406", null, "6301", null, "1315", null, "-999999999", "N", "-999999999", "N", "6652", null, "1699", null, "13926", null, "2119", null, "16390", null, "1892", null, "182719", null, "3628", null, "89855", null, "2636", null, "193219", null, "4799", null, "28505", null, "2290", null, "56700", null, "4409", null, "108014", null, "4616", null, "90.9", null, "1.1", null, "43.2", null, "1.2", null, "56.8", null, "1.2", null, "56.8", null, "1.8", null, "15.0", null, "1.6", null, "4.2", null, "0.8", null, "10.8", null, "1.3", null, "28.2", null, "1.5", null, "30.8", null, "1.4", null, "22.7", null, "1.5", null, "8.0", null, "1.2", null, "2.2", null, "0.6", null, "5.8", null, "1.0", null, "0.0", null, "0.1", null, "69.2", null, "1.4", null, "34.1", null, "1.4", null, "7.0", null, "1.0", null, "2.0", null, "0.5", null, "4.9", null, "0.8", null, "28.2", null, "1.6", null, "7.6", null, "1.1", null, "92.4", null, "1.1", null, "26.5", null, "1.3", null, "73.5", null, "1.3", null, "69.3", null, "1.2", null, "20.4", null, "1.1", null, "0.2", null, "0.2", null, "2.3", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "2.5", null, "0.6", null, "5.2", null, "0.8", null, "6.1", null, "0.7", null, "67.9", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.8", null, "1.1", null, "29.3", null, "2.1", null, "55.9", null, "2.1", null, "13", "03"], ["5001900US1304", "Congressional District 4 (119th Congress), Georgia", "290919", null, "4590", null, "112337", null, "4044", null, "178582", null, "4639", null, "108103", null, "6642", null, "67138", null, "5662", null, "18685", null, "2800", null, "48453", null, "5016", null, "115678", null, "5320", null, "79481", null, "5141", null, "44115", null, "4464", null, "34901", null, "4818", null, "7319", null, "1817", null, "27582", null, "4409", null, "465", null, "359", null, "211438", null, "5939", null, "63988", null, "4596", null, "32237", null, "3199", null, "11366", null, "1968", null, "20871", null, "2798", null, "115213", null, "5360", null, "35767", null, "3389", null, "255152", null, "4980", null, "61655", null, "4069", null, "229264", null, "5379", null, "73382", null, "3703", null, "142106", null, "4353", null, "-999999999", "N", "-999999999", "N", "27088", null, "2114", null, "-999999999", "N", "-999999999", "N", "23983", null, "2779", null, "22809", null, "2490", null, "43720", null, "3271", null, "69726", null, "3958", null, "71524", null, "2140", null, "175241", null, "6564", null, "19720", null, "2519", null, "58188", null, "5543", null, "97333", null, "6234", null, "-888888888", "(X)", "-888888888", "(X)", "38.6", null, "1.3", null, "61.4", null, "1.3", null, "37.2", null, "2.0", null, "23.1", null, "2.0", null, "6.4", null, "1.0", null, "16.7", null, "1.7", null, "39.8", null, "1.9", null, "27.3", null, "1.7", null, "15.2", null, "1.5", null, "12.0", null, "1.7", null, "2.5", null, "0.6", null, "9.5", null, "1.5", null, "0.2", null, "0.1", null, "72.7", null, "1.7", null, "22.0", null, "1.4", null, "11.1", null, "1.1", null, "3.9", null, "0.7", null, "7.2", null, "1.0", null, "39.6", null, "1.9", null, "12.3", null, "1.1", null, "87.7", null, "1.1", null, "21.2", null, "1.4", null, "78.8", null, "1.4", null, "25.2", null, "1.2", null, "48.8", null, "1.4", null, "-999999999.0", "N", "-999999999.0", "N", "9.3", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "8.2", null, "0.9", null, "7.8", null, "0.8", null, "15.0", null, "1.1", null, "24.0", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.3", null, "1.4", null, "33.2", null, "2.8", null, "55.5", null, "3.0", null, "30195", null, "3601", null, "16214", null, "2367", null, "13981", null, "2708", null, "6913", null, "1802", null, "14646", null, "2805", null, "3198", null, "1325", null, "11448", null, "2197", null, "8636", null, "2004", null, "13559", null, "2657", null, "5032", null, "1611", null, "8527", null, "2265", null, "1632", null, "1101", null, "6895", null, "1870", null, "0", null, "232", null, "16636", null, "2624", null, "1881", null, "826", null, "6119", null, "1677", null, "1566", null, "761", null, "4553", null, "1402", null, "8636", null, "2004", null, "9183", null, "2130", null, "21012", null, "3032", null, "13638", null, "2542", null, "16557", null, "2694", null, "3160", null, "1172", null, "19653", null, "3141", null, "-999999999", "N", "-999999999", "N", "3147", null, "1140", null, "-999999999", "N", "-999999999", "N", "2093", null, "962", null, "2113", null, "998", null, "4180", null, "1405", null, "2681", null, "1098", null, "40897", null, "4097", null, "21559", null, "3226", null, "3327", null, "1338", null, "9016", null, "2098", null, "9216", null, "1949", null, "10.4", null, "1.2", null, "53.7", null, "6.0", null, "46.3", null, "6.0", null, "22.9", null, "5.1", null, "48.5", null, "7.2", null, "10.6", null, "4.1", null, "37.9", null, "5.8", null, "28.6", null, "5.9", null, "44.9", null, "6.5", null, "16.7", null, "4.6", null, "28.2", null, "6.7", null, "5.4", null, "3.6", null, "22.8", null, "5.6", null, "0.0", null, "0.7", null, "55.1", null, "6.5", null, "6.2", null, "2.8", null, "20.3", null, "5.0", null, "5.2", null, "2.4", null, "15.1", null, "4.4", null, "28.6", null, "5.9", null, "30.4", null, "5.9", null, "69.6", null, "5.9", null, "45.2", null, "6.3", null, "54.8", null, "6.3", null, "10.5", null, "3.8", null, "65.1", null, "6.1", null, "-999999999.0", "N", "-999999999.0", "N", "10.4", null, "3.7", null, "-999999999.0", "N", "-999999999.0", "N", "6.9", null, "3.0", null, "7.0", null, "3.3", null, "13.8", null, "4.2", null, "8.9", null, "3.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.4", null, "5.6", null, "41.8", null, "7.5", null, "42.7", null, "6.7", null, "260724", null, "5433", null, "96123", null, "3875", null, "164601", null, "5258", null, "101190", null, "6219", null, "52492", null, "4810", null, "15487", null, "2251", null, "37005", null, "4601", null, "107042", null, "5254", null, "65922", null, "4536", null, "39083", null, "3843", null, "26374", null, "3874", null, "5687", null, "1370", null, "20687", null, "3710", null, "465", null, "359", null, "194802", null, "5735", null, "62107", null, "4633", null, "26118", null, "2946", null, "9800", null, "1942", null, "16318", null, "2371", null, "106577", null, "5266", null, "26584", null, "2784", null, "234140", null, "5432", null, "48017", null, "3777", null, "212707", null, "6019", null, "70222", null, "3485", null, "122453", null, "4576", null, "-999999999", "N", "-999999999", "N", "23941", null, "2215", null, "-999999999", "N", "-999999999", "N", "21890", null, "2899", null, "20696", null, "2112", null, "39540", null, "3454", null, "67045", null, "3807", null, "75755", null, "3032", null, "153682", null, "6571", null, "16393", null, "2096", null, "49172", null, "4657", null, "88117", null, "6011", null, "89.6", null, "1.2", null, "36.9", null, "1.4", null, "63.1", null, "1.4", null, "38.8", null, "2.0", null, "20.1", null, "1.8", null, "5.9", null, "0.9", null, "14.2", null, "1.8", null, "41.1", null, "2.0", null, "25.3", null, "1.6", null, "15.0", null, "1.4", null, "10.1", null, "1.5", null, "2.2", null, "0.5", null, "7.9", null, "1.4", null, "0.2", null, "0.1", null, "74.7", null, "1.6", null, "23.8", null, "1.5", null, "10.0", null, "1.2", null, "3.8", null, "0.8", null, "6.3", null, "0.9", null, "40.9", null, "2.0", null, "10.2", null, "1.0", null, "89.8", null, "1.0", null, "18.4", null, "1.4", null, "81.6", null, "1.4", null, "26.9", null, "1.2", null, "47.0", null, "1.4", null, "-999999999.0", "N", "-999999999.0", "N", "9.2", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "8.4", null, "1.1", null, "7.9", null, "0.8", null, "15.2", null, "1.3", null, "25.7", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.7", null, "1.3", null, "32.0", null, "2.6", null, "57.3", null, "3.0", null, "13", "04"], ["5001900US1305", "Congressional District 5 (119th Congress), Georgia", "333916", null, "7267", null, "97317", null, "4589", null, "236599", null, "7157", null, "94522", null, "5278", null, "60855", null, "5739", null, "12243", null, "3044", null, "48612", null, "4860", null, "178539", null, "7795", null, "72732", null, "5032", null, "36564", null, "3318", null, "35356", null, "4423", null, "7032", null, "2337", null, "28324", null, "3907", null, "812", null, "591", null, "261184", null, "7813", null, "57958", null, "4228", null, "25499", null, "3516", null, "5211", null, "1447", null, "20288", null, "3323", null, "177727", null, "7822", null, "52243", null, "5140", null, "281673", null, "7529", null, "66741", null, "4898", null, "267175", null, "8538", null, "120465", null, "4788", null, "160617", null, "7046", null, "-999999999", "N", "-999999999", "N", "18932", null, "2003", null, "-999999999", "N", "-999999999", "N", "9551", null, "1966", null, "22356", null, "2811", null, "23922", null, "2655", null, "115410", null, "5087", null, "80567", null, "2694", null, "155377", null, "6692", null, "15391", null, "2251", null, "53884", null, "4766", null, "86102", null, "5263", null, "-888888888", "(X)", "-888888888", "(X)", "29.1", null, "1.3", null, "70.9", null, "1.3", null, "28.3", null, "1.6", null, "18.2", null, "1.7", null, "3.7", null, "0.9", null, "14.6", null, "1.4", null, "53.5", null, "1.9", null, "21.8", null, "1.5", null, "11.0", null, "1.0", null, "10.6", null, "1.3", null, "2.1", null, "0.7", null, "8.5", null, "1.2", null, "0.2", null, "0.2", null, "78.2", null, "1.5", null, "17.4", null, "1.3", null, "7.6", null, "1.0", null, "1.6", null, "0.4", null, "6.1", null, "1.0", null, "53.2", null, "1.9", null, "15.6", null, "1.5", null, "84.4", null, "1.5", null, "20.0", null, "1.5", null, "80.0", null, "1.5", null, "36.1", null, "1.3", null, "48.1", null, "1.7", null, "-999999999.0", "N", "-999999999.0", "N", "5.7", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "2.9", null, "0.6", null, "6.7", null, "0.8", null, "7.2", null, "0.8", null, "34.6", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "9.9", null, "1.4", null, "34.7", null, "2.6", null, "55.4", null, "2.6", null, "40630", null, "4714", null, "20398", null, "2793", null, "20232", null, "3386", null, "4022", null, "1196", null, "16754", null, "3160", null, "2776", null, "1260", null, "13978", null, "3047", null, "19854", null, "3149", null, "15202", null, "2870", null, "2177", null, "938", null, "12654", null, "2560", null, "1885", null, "1171", null, "10769", null, "2482", null, "371", null, "493", null, "25428", null, "3618", null, "1845", null, "751", null, "4100", null, "1322", null, "891", null, "469", null, "3209", null, "1354", null, "19483", null, "3133", null, "18864", null, "2822", null, "21766", null, "3482", null, "16261", null, "2784", null, "24369", null, "3604", null, "2882", null, "1082", null, "34570", null, "4323", null, "-999999999", "N", "-999999999", "N", "438", null, "474", null, "-999999999", "N", "-999999999", "N", "317", null, "297", null, "2423", null, "1117", null, "2009", null, "941", null, "2441", null, "956", null, "22619", null, "5482", null, "20776", null, "3407", null, "3743", null, "1491", null, "11702", null, "2556", null, "5331", null, "1844", null, "12.2", null, "1.4", null, "50.2", null, "5.0", null, "49.8", null, "5.0", null, "9.9", null, "2.7", null, "41.2", null, "6.0", null, "6.8", null, "3.1", null, "34.4", null, "5.9", null, "48.9", null, "5.6", null, "37.4", null, "5.4", null, "5.4", null, "2.2", null, "31.1", null, "5.3", null, "4.6", null, "2.9", null, "26.5", null, "5.2", null, "0.9", null, "1.2", null, "62.6", null, "5.4", null, "4.5", null, "1.8", null, "10.1", null, "2.9", null, "2.2", null, "1.2", null, "7.9", null, "3.0", null, "48.0", null, "5.7", null, "46.4", null, "5.1", null, "53.6", null, "5.1", null, "40.0", null, "5.2", null, "60.0", null, "5.2", null, "7.1", null, "2.5", null, "85.1", null, "3.5", null, "-999999999.0", "N", "-999999999.0", "N", "1.1", null, "1.2", null, "-999999999.0", "N", "-999999999.0", "N", "0.8", null, "0.7", null, "6.0", null, "2.7", null, "4.9", null, "2.2", null, "6.0", null, "2.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.0", null, "6.6", null, "56.3", null, "9.0", null, "25.7", null, "7.6", null, "293286", null, "8066", null, "76919", null, "4335", null, "216367", null, "7194", null, "90500", null, "5032", null, "44101", null, "4524", null, "9467", null, "2626", null, "34634", null, "3767", null, "158685", null, "7837", null, "57530", null, "4287", null, "34387", null, "3209", null, "22702", null, "3434", null, "5147", null, "1894", null, "17555", null, "2771", null, "441", null, "344", null, "235756", null, "8176", null, "56113", null, "4108", null, "21399", null, "3186", null, "4320", null, "1382", null, "17079", null, "3141", null, "158244", null, "7871", null, "33379", null, "4433", null, "259907", null, "7894", null, "50480", null, "4342", null, "242806", null, "8780", null, "117583", null, "4832", null, "126047", null, "6803", null, "-999999999", "N", "-999999999", "N", "18494", null, "2128", null, "-999999999", "N", "-999999999", "N", "9234", null, "1995", null, "19933", null, "2722", null, "21913", null, "2472", null, "112969", null, "5097", null, "90784", null, "2734", null, "134601", null, "5588", null, "11648", null, "1930", null, "42182", null, "4389", null, "80771", null, "4870", null, "87.8", null, "1.4", null, "26.2", null, "1.3", null, "73.8", null, "1.3", null, "30.9", null, "1.8", null, "15.0", null, "1.5", null, "3.2", null, "0.9", null, "11.8", null, "1.2", null, "54.1", null, "1.8", null, "19.6", null, "1.4", null, "11.7", null, "1.1", null, "7.7", null, "1.2", null, "1.8", null, "0.6", null, "6.0", null, "0.9", null, "0.2", null, "0.1", null, "80.4", null, "1.4", null, "19.1", null, "1.5", null, "7.3", null, "1.1", null, "1.5", null, "0.5", null, "5.8", null, "1.0", null, "54.0", null, "1.9", null, "11.4", null, "1.4", null, "88.6", null, "1.4", null, "17.2", null, "1.5", null, "82.8", null, "1.5", null, "40.1", null, "1.4", null, "43.0", null, "1.8", null, "-999999999.0", "N", "-999999999.0", "N", "6.3", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "3.1", null, "0.7", null, "6.8", null, "0.9", null, "7.5", null, "0.9", null, "38.5", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "8.7", null, "1.4", null, "31.3", null, "2.9", null, "60.0", null, "2.8", null, "13", "05"], ["5001900US1306", "Congressional District 6 (119th Congress), Georgia", "325131", null, "6671", null, "110177", null, "4673", null, "214954", null, "6562", null, "126126", null, "6074", null, "61753", null, "4870", null, "16998", null, "2622", null, "44755", null, "4310", null, "137252", null, "6838", null, "88842", null, "5387", null, "50391", null, "4509", null, "37698", null, "4397", null, "10003", null, "2384", null, "27695", null, "3649", null, "753", null, "687", null, "236289", null, "7160", null, "75735", null, "4236", null, "24055", null, "3235", null, "6995", null, "1627", null, "17060", null, "2578", null, "136499", null, "6763", null, "32670", null, "3558", null, "292461", null, "7198", null, "66695", null, "5021", null, "258436", null, "6513", null, "108910", null, "4877", null, "162776", null, "5563", null, "-999999999", "N", "-999999999", "N", "11948", null, "2064", null, "-999999999", "N", "-999999999", "N", "17340", null, "2170", null, "23202", null, "3289", null, "32155", null, "2989", null, "105197", null, "4943", null, "90929", null, "3174", null, "187879", null, "6560", null, "19953", null, "2131", null, "63815", null, "5179", null, "104111", null, "6069", null, "-888888888", "(X)", "-888888888", "(X)", "33.9", null, "1.3", null, "66.1", null, "1.3", null, "38.8", null, "1.8", null, "19.0", null, "1.5", null, "5.2", null, "0.8", null, "13.8", null, "1.3", null, "42.2", null, "1.8", null, "27.3", null, "1.6", null, "15.5", null, "1.4", null, "11.6", null, "1.3", null, "3.1", null, "0.7", null, "8.5", null, "1.1", null, "0.2", null, "0.2", null, "72.7", null, "1.6", null, "23.3", null, "1.3", null, "7.4", null, "1.0", null, "2.2", null, "0.5", null, "5.2", null, "0.8", null, "42.0", null, "1.8", null, "10.0", null, "1.1", null, "90.0", null, "1.1", null, "20.5", null, "1.4", null, "79.5", null, "1.4", null, "33.5", null, "1.5", null, "50.1", null, "1.3", null, "-999999999.0", "N", "-999999999.0", "N", "3.7", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "5.3", null, "0.7", null, "7.1", null, "1.0", null, "9.9", null, "0.9", null, "32.4", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.6", null, "1.1", null, "34.0", null, "2.5", null, "55.4", null, "2.6", null, "24824", null, "3146", null, "9950", null, "1954", null, "14874", null, "2679", null, "4136", null, "1118", null, "12166", null, "2387", null, "2525", null, "1087", null, "9641", null, "2271", null, "8522", null, "1816", null, "11226", null, "2556", null, "2277", null, "962", null, "8949", null, "2230", null, "1593", null, "992", null, "7356", null, "2093", null, "0", null, "232", null, "13598", null, "2271", null, "1859", null, "661", null, "3217", null, "1188", null, "932", null, "657", null, "2285", null, "947", null, "8522", null, "1816", null, "10439", null, "1963", null, "14385", null, "2710", null, "11554", null, "2187", null, "13270", null, "2342", null, "4160", null, "1291", null, "17112", null, "2694", null, "-999999999", "N", "-999999999", "N", "333", null, "378", null, "-999999999", "N", "-999999999", "N", "1814", null, "947", null, "1405", null, "652", null, "2976", null, "1423", null, "3588", null, "1151", null, "32477", null, "13002", null, "16302", null, "2713", null, "2708", null, "864", null, "8701", null, "1864", null, "4893", null, "1692", null, "7.6", null, "0.9", null, "40.1", null, "6.7", null, "59.9", null, "6.7", null, "16.7", null, "4.0", null, "49.0", null, "6.7", null, "10.2", null, "4.3", null, "38.8", null, "7.0", null, "34.3", null, "6.3", null, "45.2", null, "7.6", null, "9.2", null, "3.6", null, "36.0", null, "7.0", null, "6.4", null, "3.9", null, "29.6", null, "6.9", null, "0.0", null, "0.9", null, "54.8", null, "7.6", null, "7.5", null, "2.6", null, "13.0", null, "4.7", null, "3.8", null, "2.7", null, "9.2", null, "3.7", null, "34.3", null, "6.3", null, "42.1", null, "6.9", null, "57.9", null, "6.9", null, "46.5", null, "6.6", null, "53.5", null, "6.6", null, "16.8", null, "4.5", null, "68.9", null, "6.3", null, "-999999999.0", "N", "-999999999.0", "N", "1.3", null, "1.5", null, "-999999999.0", "N", "-999999999.0", "N", "7.3", null, "3.8", null, "5.7", null, "2.7", null, "12.0", null, "5.4", null, "14.5", null, "4.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.6", null, "5.0", null, "53.4", null, "8.1", null, "30.0", null, "8.2", null, "300307", null, "6669", null, "100227", null, "4302", null, "200080", null, "6773", null, "121990", null, "5940", null, "49587", null, "4260", null, "14473", null, "2310", null, "35114", null, "3739", null, "128730", null, "6367", null, "77616", null, "4878", null, "48114", null, "4331", null, "28749", null, "3923", null, "8410", null, "2073", null, "20339", null, "3308", null, "753", null, "687", null, "222691", null, "6828", null, "73876", null, "4177", null, "20838", null, "2897", null, "6063", null, "1508", null, "14775", null, "2360", null, "127977", null, "6302", null, "22231", null, "3134", null, "278076", null, "7361", null, "55141", null, "4687", null, "245166", null, "6297", null, "104750", null, "4897", null, "145664", null, "6180", null, "-999999999", "N", "-999999999", "N", "11615", null, "1962", null, "-999999999", "N", "-999999999", "N", "15526", null, "2052", null, "21797", null, "3221", null, "29179", null, "2848", null, "101609", null, "4961", null, "95944", null, "3995", null, "171577", null, "5908", null, "17245", null, "1935", null, "55114", null, "4862", null, "99218", null, "5940", null, "92.4", null, "0.9", null, "33.4", null, "1.4", null, "66.6", null, "1.4", null, "40.6", null, "1.9", null, "16.5", null, "1.4", null, "4.8", null, "0.8", null, "11.7", null, "1.2", null, "42.9", null, "1.7", null, "25.8", null, "1.5", null, "16.0", null, "1.4", null, "9.6", null, "1.3", null, "2.8", null, "0.7", null, "6.8", null, "1.1", null, "0.3", null, "0.2", null, "74.2", null, "1.5", null, "24.6", null, "1.4", null, "6.9", null, "0.9", null, "2.0", null, "0.5", null, "4.9", null, "0.8", null, "42.6", null, "1.7", null, "7.4", null, "1.1", null, "92.6", null, "1.1", null, "18.4", null, "1.4", null, "81.6", null, "1.4", null, "34.9", null, "1.7", null, "48.5", null, "1.6", null, "-999999999.0", "N", "-999999999.0", "N", "3.9", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "5.2", null, "0.7", null, "7.3", null, "1.0", null, "9.7", null, "0.9", null, "33.8", null, "1.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.1", null, "1.1", null, "32.1", null, "2.6", null, "57.8", null, "2.8", null, "13", "06"], ["5001900US1307", "Congressional District 7 (119th Congress), Georgia", "295436", null, "5612", null, "109947", null, "3589", null, "185489", null, "4839", null, "186786", null, "4713", null, "38675", null, "3660", null, "11664", null, "2126", null, "27011", null, "3186", null, "69975", null, "4463", null, "111013", null, "4071", null, "87742", null, "3755", null, "22406", null, "2990", null, "5911", null, "1539", null, "16495", null, "2493", null, "865", null, "574", null, "184423", null, "6367", null, "99044", null, "4408", null, "16269", null, "2507", null, "5753", null, "1330", null, "10516", null, "2239", null, "69110", null, "4442", null, "16379", null, "2210", null, "279057", null, "5877", null, "53182", null, "3746", null, "242254", null, "5686", null, "198694", null, "5344", null, "25639", null, "2753", null, "848", null, "430", null, "42931", null, "1727", null, "-999999999", "N", "-999999999", "N", "5233", null, "1466", null, "22010", null, "2680", null, "22248", null, "2722", null, "192741", null, "5395", null, "135546", null, "5771", null, "225461", null, "4618", null, "26636", null, "2343", null, "64754", null, "4035", null, "134071", null, "5758", null, "-888888888", "(X)", "-888888888", "(X)", "37.2", null, "1.0", null, "62.8", null, "1.0", null, "63.2", null, "1.5", null, "13.1", null, "1.2", null, "3.9", null, "0.7", null, "9.1", null, "1.1", null, "23.7", null, "1.3", null, "37.6", null, "1.4", null, "29.7", null, "1.3", null, "7.6", null, "1.0", null, "2.0", null, "0.5", null, "5.6", null, "0.8", null, "0.3", null, "0.2", null, "62.4", null, "1.4", null, "33.5", null, "1.4", null, "5.5", null, "0.8", null, "1.9", null, "0.4", null, "3.6", null, "0.7", null, "23.4", null, "1.3", null, "5.5", null, "0.7", null, "94.5", null, "0.7", null, "18.0", null, "1.2", null, "82.0", null, "1.2", null, "67.3", null, "1.1", null, "8.7", null, "0.9", null, "0.3", null, "0.1", null, "14.5", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "1.8", null, "0.5", null, "7.5", null, "0.9", null, "7.5", null, "0.9", null, "65.2", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.8", null, "1.0", null, "28.7", null, "1.9", null, "59.5", null, "1.9", null, "10094", null, "1877", null, "5139", null, "1265", null, "4955", null, "1591", null, "3513", null, "1097", null, "4082", null, "1397", null, "1456", null, "751", null, "2626", null, "1142", null, "2499", null, "923", null, "5518", null, "1676", null, "2444", null, "1005", null, "2924", null, "1385", null, "846", null, "670", null, "2078", null, "1178", null, "150", null, "236", null, "4576", null, "1112", null, "1069", null, "421", null, "1158", null, "524", null, "610", null, "441", null, "548", null, "346", null, "2349", null, "905", null, "2343", null, "890", null, "7751", null, "1664", null, "4850", null, "1354", null, "5244", null, "1297", null, "5990", null, "1306", null, "1110", null, "483", null, "31", null, "41", null, "515", null, "283", null, "-999999999", "N", "-999999999", "N", "925", null, "965", null, "1523", null, "841", null, "2244", null, "1362", null, "5277", null, "1137", null, "66799", null, "18705", null, "7595", null, "1802", null, "1149", null, "518", null, "2427", null, "1041", null, "4019", null, "1290", null, "3.4", null, "0.6", null, "50.9", null, "10.8", null, "49.1", null, "10.8", null, "34.8", null, "8.8", null, "40.4", null, "10.5", null, "14.4", null, "7.1", null, "26.0", null, "9.3", null, "24.8", null, "9.0", null, "54.7", null, "10.3", null, "24.2", null, "8.6", null, "29.0", null, "11.4", null, "8.4", null, "6.5", null, "20.6", null, "10.0", null, "1.5", null, "2.4", null, "45.3", null, "10.3", null, "10.6", null, "4.1", null, "11.5", null, "5.1", null, "6.0", null, "4.3", null, "5.4", null, "3.5", null, "23.3", null, "8.8", null, "23.2", null, "7.8", null, "76.8", null, "7.8", null, "48.0", null, "9.4", null, "52.0", null, "9.4", null, "59.3", null, "10.2", null, "11.0", null, "4.7", null, "0.3", null, "0.4", null, "5.1", null, "2.8", null, "-999999999.0", "N", "-999999999.0", "N", "9.2", null, "8.7", null, "15.1", null, "7.7", null, "22.2", null, "11.0", null, "52.3", null, "10.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.1", null, "6.8", null, "32.0", null, "11.5", null, "52.9", null, "9.7", null, "285342", null, "6046", null, "104808", null, "3635", null, "180534", null, "5105", null, "183273", null, "4760", null, "34593", null, "3449", null, "10208", null, "1977", null, "24385", null, "3028", null, "67476", null, "4352", null, "105495", null, "4059", null, "85298", null, "3815", null, "19482", null, "2841", null, "5065", null, "1415", null, "14417", null, "2303", null, "715", null, "533", null, "179847", null, "6351", null, "97975", null, "4424", null, "15111", null, "2462", null, "5143", null, "1256", null, "9968", null, "2145", null, "66761", null, "4302", null, "14036", null, "2067", null, "271306", null, "6097", null, "48332", null, "3632", null, "237010", null, "5777", null, "192704", null, "5599", null, "24529", null, "2757", null, "817", null, "428", null, "42416", null, "1727", null, "-999999999", "N", "-999999999", "N", "4308", null, "1230", null, "20487", null, "2695", null, "20004", null, "2519", null, "187464", null, "5523", null, "138916", null, "4935", null, "217866", null, "4740", null, "25487", null, "2360", null, "62327", null, "3905", null, "130052", null, "5726", null, "96.6", null, "0.6", null, "36.7", null, "1.1", null, "63.3", null, "1.1", null, "64.2", null, "1.5", null, "12.1", null, "1.2", null, "3.6", null, "0.7", null, "8.5", null, "1.0", null, "23.6", null, "1.3", null, "37.0", null, "1.4", null, "29.9", null, "1.4", null, "6.8", null, "1.0", null, "1.8", null, "0.5", null, "5.1", null, "0.8", null, "0.3", null, "0.2", null, "63.0", null, "1.4", null, "34.3", null, "1.4", null, "5.3", null, "0.8", null, "1.8", null, "0.4", null, "3.5", null, "0.7", null, "23.4", null, "1.3", null, "4.9", null, "0.7", null, "95.1", null, "0.7", null, "16.9", null, "1.2", null, "83.1", null, "1.2", null, "67.5", null, "1.2", null, "8.6", null, "0.9", null, "0.3", null, "0.2", null, "14.9", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "1.5", null, "0.4", null, "7.2", null, "0.9", null, "7.0", null, "0.9", null, "65.7", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.7", null, "1.0", null, "28.6", null, "1.9", null, "59.7", null, "1.9", null, "13", "07"], ["5001900US1308", "Congressional District 8 (119th Congress), Georgia", "295522", null, "4583", null, "128514", null, "3425", null, "167008", null, "4772", null, "139018", null, "5392", null, "56791", null, "4340", null, "15487", null, "2442", null, "41304", null, "3367", null, "99713", null, "5562", null, "91408", null, "5033", null, "55027", null, "3792", null, "35408", null, "3749", null, "8115", null, "1998", null, "27293", null, "3001", null, "973", null, "633", null, "204114", null, "5717", null, "83991", null, "3638", null, "21383", null, "2545", null, "7372", null, "1543", null, "14011", null, "1815", null, "98740", null, "5544", null, "54839", null, "3754", null, "240683", null, "5092", null, "92549", null, "4069", null, "202973", null, "5339", null, "181232", null, "3945", null, "87854", null, "4595", null, "-999999999", "N", "-999999999", "N", "3954", null, "1205", null, "-999999999", "N", "-999999999", "N", "9198", null, "2317", null, "12057", null, "1940", null, "17603", null, "1481", null, "176564", null, "3986", null, "61302", null, "2196", null, "195809", null, "6000", null, "31770", null, "2976", null, "71324", null, "4137", null, "92715", null, "4421", null, "-888888888", "(X)", "-888888888", "(X)", "43.5", null, "1.1", null, "56.5", null, "1.1", null, "47.0", null, "1.8", null, "19.2", null, "1.4", null, "5.2", null, "0.8", null, "14.0", null, "1.1", null, "33.7", null, "1.8", null, "30.9", null, "1.6", null, "18.6", null, "1.3", null, "12.0", null, "1.2", null, "2.7", null, "0.7", null, "9.2", null, "1.0", null, "0.3", null, "0.2", null, "69.1", null, "1.6", null, "28.4", null, "1.2", null, "7.2", null, "0.8", null, "2.5", null, "0.5", null, "4.7", null, "0.6", null, "33.4", null, "1.8", null, "18.6", null, "1.2", null, "81.4", null, "1.2", null, "31.3", null, "1.3", null, "68.7", null, "1.3", null, "61.3", null, "1.2", null, "29.7", null, "1.4", null, "-999999999.0", "N", "-999999999.0", "N", "1.3", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "3.1", null, "0.8", null, "4.1", null, "0.7", null, "6.0", null, "0.5", null, "59.7", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.2", null, "1.4", null, "36.4", null, "1.8", null, "47.3", null, "1.8", null, "46847", null, "3755", null, "20626", null, "2295", null, "26221", null, "3256", null, "9535", null, "1609", null, "19357", null, "2775", null, "4165", null, "1399", null, "15192", null, "2285", null, "17955", null, "2634", null, "20851", null, "3006", null, "5583", null, "1373", null, "14921", null, "2562", null, "2805", null, "1209", null, "12116", null, "2019", null, "347", null, "346", null, "25996", null, "2821", null, "3952", null, "996", null, "4436", null, "1034", null, "1360", null, "642", null, "3076", null, "925", null, "17608", null, "2599", null, "23471", null, "2470", null, "23376", null, "2739", null, "19763", null, "2022", null, "27084", null, "3268", null, "20886", null, "2147", null, "22842", null, "2796", null, "-999999999", "N", "-999999999", "N", "354", null, "455", null, "-999999999", "N", "-999999999", "N", "1439", null, "557", null, "1326", null, "606", null, "3077", null, "803", null, "19817", null, "2029", null, "26134", null, "1915", null, "28892", null, "3176", null, "5783", null, "1247", null, "14780", null, "2519", null, "8329", null, "1582", null, "15.9", null, "1.3", null, "44.0", null, "4.3", null, "56.0", null, "4.3", null, "20.4", null, "3.4", null, "41.3", null, "4.4", null, "8.9", null, "2.8", null, "32.4", null, "3.9", null, "38.3", null, "4.7", null, "44.5", null, "4.8", null, "11.9", null, "2.9", null, "31.9", null, "4.3", null, "6.0", null, "2.5", null, "25.9", null, "3.5", null, "0.7", null, "0.7", null, "55.5", null, "4.8", null, "8.4", null, "2.1", null, "9.5", null, "2.2", null, "2.9", null, "1.4", null, "6.6", null, "1.9", null, "37.6", null, "4.8", null, "50.1", null, "3.9", null, "49.9", null, "3.9", null, "42.2", null, "4.0", null, "57.8", null, "4.0", null, "44.6", null, "3.6", null, "48.8", null, "3.6", null, "-999999999.0", "N", "-999999999.0", "N", "0.8", null, "1.0", null, "-999999999.0", "N", "-999999999.0", "N", "3.1", null, "1.2", null, "2.8", null, "1.3", null, "6.6", null, "1.7", null, "42.3", null, "3.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "20.0", null, "3.9", null, "51.2", null, "5.8", null, "28.8", null, "4.9", null, "248675", null, "5800", null, "107888", null, "3455", null, "140787", null, "5169", null, "129483", null, "5024", null, "37434", null, "3778", null, "11322", null, "1768", null, "26112", null, "3396", null, "81758", null, "5259", null, "70557", null, "4342", null, "49444", null, "3381", null, "20487", null, "3098", null, "5310", null, "1379", null, "15177", null, "2871", null, "626", null, "489", null, "178118", null, "5975", null, "80039", null, "3541", null, "16947", null, "2369", null, "6012", null, "1321", null, "10935", null, "1754", null, "81132", null, "5212", null, "31368", null, "3029", null, "217307", null, "5470", null, "72786", null, "3976", null, "175889", null, "6145", null, "160346", null, "4207", null, "65012", null, "4882", null, "-999999999", "N", "-999999999", "N", "3600", null, "1130", null, "-999999999", "N", "-999999999", "N", "7759", null, "2253", null, "10731", null, "1872", null, "14526", null, "1507", null, "156747", null, "4301", null, "70326", null, "3461", null, "166917", null, "5752", null, "25987", null, "2703", null, "56544", null, "3970", null, "84386", null, "4284", null, "84.1", null, "1.3", null, "43.4", null, "1.3", null, "56.6", null, "1.3", null, "52.1", null, "1.9", null, "15.1", null, "1.4", null, "4.6", null, "0.7", null, "10.5", null, "1.3", null, "32.9", null, "1.9", null, "28.4", null, "1.6", null, "19.9", null, "1.3", null, "8.2", null, "1.2", null, "2.1", null, "0.6", null, "6.1", null, "1.1", null, "0.3", null, "0.2", null, "71.6", null, "1.6", null, "32.2", null, "1.4", null, "6.8", null, "0.9", null, "2.4", null, "0.5", null, "4.4", null, "0.7", null, "32.6", null, "1.9", null, "12.6", null, "1.1", null, "87.4", null, "1.1", null, "29.3", null, "1.6", null, "70.7", null, "1.6", null, "64.5", null, "1.6", null, "26.1", null, "1.7", null, "-999999999.0", "N", "-999999999.0", "N", "1.4", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "3.1", null, "0.9", null, "4.3", null, "0.7", null, "5.8", null, "0.6", null, "63.0", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.6", null, "1.5", null, "33.9", null, "2.1", null, "50.6", null, "2.0", null, "13", "08"], ["5001900US1309", "Congressional District 9 (119th Congress), Georgia", "296950", null, "5749", null, "133364", null, "3948", null, "163586", null, "6136", null, "169205", null, "4936", null, "50002", null, "3624", null, "15255", null, "2542", null, "34747", null, "2885", null, "77743", null, "4505", null, "101786", null, "4757", null, "73654", null, "4165", null, "27816", null, "2641", null, "6002", null, "1696", null, "21814", null, "2521", null, "316", null, "248", null, "195164", null, "5580", null, "95551", null, "3623", null, "22186", null, "2839", null, "9253", null, "1891", null, "12933", null, "1801", null, "77427", null, "4501", null, "31892", null, "3190", null, "265058", null, "5643", null, "82659", null, "3810", null, "214291", null, "6707", null, "200315", null, "4276", null, "34147", null, "3273", null, "1553", null, "677", null, "18650", null, "2019", null, "-999999999", "N", "-999999999", "N", "12371", null, "2285", null, "29637", null, "2873", null, "37457", null, "2585", null, "194562", null, "4254", null, "84963", null, "2714", null, "219207", null, "4772", null, "31090", null, "2131", null, "66105", null, "4242", null, "122012", null, "4760", null, "-888888888", "(X)", "-888888888", "(X)", "44.9", null, "1.4", null, "55.1", null, "1.4", null, "57.0", null, "1.6", null, "16.8", null, "1.2", null, "5.1", null, "0.9", null, "11.7", null, "0.9", null, "26.2", null, "1.3", null, "34.3", null, "1.4", null, "24.8", null, "1.3", null, "9.4", null, "0.9", null, "2.0", null, "0.6", null, "7.3", null, "0.8", null, "0.1", null, "0.1", null, "65.7", null, "1.4", null, "32.2", null, "1.3", null, "7.5", null, "1.0", null, "3.1", null, "0.6", null, "4.4", null, "0.6", null, "26.1", null, "1.3", null, "10.7", null, "1.0", null, "89.3", null, "1.0", null, "27.8", null, "1.4", null, "72.2", null, "1.4", null, "67.5", null, "1.3", null, "11.5", null, "1.0", null, "0.5", null, "0.2", null, "6.3", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "4.2", null, "0.8", null, "10.0", null, "0.9", null, "12.6", null, "0.8", null, "65.5", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.2", null, "0.9", null, "30.2", null, "1.8", null, "55.7", null, "1.8", null, "24588", null, "2927", null, "11449", null, "1906", null, "13139", null, "2078", null, "7006", null, "1388", null, "11079", null, "2032", null, "2053", null, "879", null, "9026", null, "1850", null, "6503", null, "1543", null, "12274", null, "1970", null, "4825", null, "1152", null, "7449", null, "1748", null, "1018", null, "659", null, "6431", null, "1668", null, "0", null, "232", null, "12314", null, "1965", null, "2181", null, "809", null, "3630", null, "1094", null, "1035", null, "634", null, "2595", null, "849", null, "6503", null, "1543", null, "9681", null, "1997", null, "14907", null, "2095", null, "12536", null, "2068", null, "12052", null, "2071", null, "14897", null, "2239", null, "3947", null, "1433", null, "147", null, "202", null, "1141", null, "498", null, "-999999999", "N", "-999999999", "N", "1584", null, "743", null, "2872", null, "988", null, "4020", null, "1133", null, "13987", null, "2167", null, "40114", null, "10635", null, "18085", null, "2406", null, "3376", null, "1034", null, "7276", null, "1623", null, "7433", null, "1629", null, "8.3", null, "1.0", null, "46.6", null, "5.5", null, "53.4", null, "5.5", null, "28.5", null, "5.5", null, "45.1", null, "5.4", null, "8.3", null, "3.5", null, "36.7", null, "5.4", null, "26.4", null, "5.2", null, "49.9", null, "5.4", null, "19.6", null, "4.8", null, "30.3", null, "5.3", null, "4.1", null, "2.6", null, "26.2", null, "5.3", null, "0.0", null, "0.9", null, "50.1", null, "5.4", null, "8.9", null, "3.2", null, "14.8", null, "4.2", null, "4.2", null, "2.5", null, "10.6", null, "3.3", null, "26.4", null, "5.2", null, "39.4", null, "6.0", null, "60.6", null, "6.0", null, "51.0", null, "6.0", null, "49.0", null, "6.0", null, "60.6", null, "6.7", null, "16.1", null, "5.0", null, "0.6", null, "0.8", null, "4.6", null, "2.2", null, "-999999999.0", "N", "-999999999.0", "N", "6.4", null, "2.8", null, "11.7", null, "3.8", null, "16.3", null, "4.3", null, "56.9", null, "6.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.7", null, "5.1", null, "40.2", null, "7.4", null, "41.1", null, "7.1", null, "272362", null, "6135", null, "121915", null, "4445", null, "150447", null, "6067", null, "162199", null, "5010", null, "38923", null, "3430", null, "13202", null, "2350", null, "25721", null, "2608", null, "71240", null, "4428", null, "89512", null, "4482", null, "68829", null, "4085", null, "20367", null, "2442", null, "4984", null, "1512", null, "15383", null, "2326", null, "316", null, "248", null, "182850", null, "5764", null, "93370", null, "3705", null, "18556", null, "2570", null, "8218", null, "1764", null, "10338", null, "1498", null, "70924", null, "4411", null, "22211", null, "2702", null, "250151", null, "5924", null, "70123", null, "3443", null, "202239", null, "6898", null, "185418", null, "4624", null, "30200", null, "3248", null, "1406", null, "629", null, "17509", null, "2021", null, "-999999999", "N", "-999999999", "N", "10787", null, "2234", null, "26765", null, "2641", null, "33437", null, "2671", null, "180575", null, "4861", null, "88962", null, "3029", null, "201122", null, "4856", null, "27714", null, "1932", null, "58829", null, "4185", null, "114579", null, "4627", null, "91.7", null, "1.0", null, "44.8", null, "1.6", null, "55.2", null, "1.6", null, "59.6", null, "1.7", null, "14.3", null, "1.2", null, "4.8", null, "0.9", null, "9.4", null, "0.9", null, "26.2", null, "1.3", null, "32.9", null, "1.5", null, "25.3", null, "1.4", null, "7.5", null, "0.9", null, "1.8", null, "0.6", null, "5.6", null, "0.8", null, "0.1", null, "0.1", null, "67.1", null, "1.5", null, "34.3", null, "1.3", null, "6.8", null, "0.9", null, "3.0", null, "0.7", null, "3.8", null, "0.5", null, "26.0", null, "1.3", null, "8.2", null, "1.0", null, "91.8", null, "1.0", null, "25.7", null, "1.4", null, "74.3", null, "1.4", null, "68.1", null, "1.4", null, "11.1", null, "1.1", null, "0.5", null, "0.2", null, "6.4", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "4.0", null, "0.8", null, "9.8", null, "1.0", null, "12.3", null, "0.9", null, "66.3", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.8", null, "0.9", null, "29.3", null, "1.9", null, "57.0", null, "1.9", null, "13", "09"], ["5001900US1310", "Congressional District 10 (119th Congress), Georgia", "309140", null, "4830", null, "127721", null, "3562", null, "181419", null, "5001", null, "155624", null, "5259", null, "60414", null, "4522", null, "13166", null, "2139", null, "47248", null, "3966", null, "93102", null, "4921", null, "98072", null, "4511", null, "63896", null, "4017", null, "33638", null, "3450", null, "5094", null, "1403", null, "28544", null, "3251", null, "538", null, "517", null, "211068", null, "4653", null, "91728", null, "4110", null, "26776", null, "2740", null, "8072", null, "1597", null, "18704", null, "2361", null, "92564", null, "4937", null, "37563", null, "3596", null, "271577", null, "5351", null, "82440", null, "4545", null, "226700", null, "5814", null, "199782", null, "3882", null, "73609", null, "3819", null, "-999999999", "N", "-999999999", "N", "6080", null, "955", null, "-999999999", "N", "-999999999", "N", "7750", null, "1445", null, "21346", null, "2846", null, "23005", null, "2078", null, "194845", null, "3810", null, "79167", null, "3284", null, "216038", null, "6163", null, "30175", null, "2577", null, "69283", null, "4706", null, "116580", null, "6158", null, "-888888888", "(X)", "-888888888", "(X)", "41.3", null, "1.1", null, "58.7", null, "1.1", null, "50.3", null, "1.5", null, "19.5", null, "1.4", null, "4.3", null, "0.7", null, "15.3", null, "1.2", null, "30.1", null, "1.6", null, "31.7", null, "1.3", null, "20.7", null, "1.2", null, "10.9", null, "1.1", null, "1.6", null, "0.5", null, "9.2", null, "1.0", null, "0.2", null, "0.2", null, "68.3", null, "1.3", null, "29.7", null, "1.3", null, "8.7", null, "0.9", null, "2.6", null, "0.5", null, "6.1", null, "0.7", null, "29.9", null, "1.6", null, "12.2", null, "1.1", null, "87.8", null, "1.1", null, "26.7", null, "1.4", null, "73.3", null, "1.4", null, "64.6", null, "1.1", null, "23.8", null, "1.1", null, "-999999999.0", "N", "-999999999.0", "N", "2.0", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "2.5", null, "0.5", null, "6.9", null, "0.9", null, "7.4", null, "0.7", null, "63.0", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.0", null, "1.2", null, "32.1", null, "2.0", null, "54.0", null, "2.2", null, "31837", null, "3536", null, "12243", null, "1891", null, "19594", null, "3477", null, "10015", null, "2016", null, "13309", null, "2735", null, "1625", null, "642", null, "11684", null, "2628", null, "8513", null, "1936", null, "16392", null, "3033", null, "6501", null, "1977", null, "9557", null, "2454", null, "1114", null, "524", null, "8443", null, "2403", null, "334", null, "497", null, "15445", null, "2236", null, "3514", null, "974", null, "3752", null, "1148", null, "511", null, "359", null, "3241", null, "1081", null, "8179", null, "1892", null, "9983", null, "1778", null, "21854", null, "3121", null, "13646", null, "2229", null, "18191", null, "2791", null, "13231", null, "2129", null, "15032", null, "2609", null, "-999999999", "N", "-999999999", "N", "412", null, "468", null, "-999999999", "N", "-999999999", "N", "739", null, "488", null, "2399", null, "1108", null, "2063", null, "895", null, "12229", null, "2041", null, "40142", null, "4211", null, "23324", null, "3296", null, "4200", null, "1051", null, "10425", null, "2562", null, "8699", null, "1623", null, "10.3", null, "1.1", null, "38.5", null, "6.2", null, "61.5", null, "6.2", null, "31.5", null, "5.5", null, "41.8", null, "6.5", null, "5.1", null, "2.0", null, "36.7", null, "6.3", null, "26.7", null, "5.6", null, "51.5", null, "6.2", null, "20.4", null, "5.6", null, "30.0", null, "6.2", null, "3.5", null, "1.7", null, "26.5", null, "6.2", null, "1.0", null, "1.6", null, "48.5", null, "6.2", null, "11.0", null, "3.1", null, "11.8", null, "3.5", null, "1.6", null, "1.1", null, "10.2", null, "3.3", null, "25.7", null, "5.5", null, "31.4", null, "5.0", null, "68.6", null, "5.0", null, "42.9", null, "5.6", null, "57.1", null, "5.6", null, "41.6", null, "5.8", null, "47.2", null, "5.7", null, "-999999999.0", "N", "-999999999.0", "N", "1.3", null, "1.5", null, "-999999999.0", "N", "-999999999.0", "N", "2.3", null, "1.5", null, "7.5", null, "3.4", null, "6.5", null, "2.6", null, "38.4", null, "5.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.0", null, "4.4", null, "44.7", null, "6.7", null, "37.3", null, "6.3", null, "277303", null, "5372", null, "115478", null, "3764", null, "161825", null, "5023", null, "145609", null, "5304", null, "47105", null, "4070", null, "11541", null, "1992", null, "35564", null, "3676", null, "84589", null, "4724", null, "81680", null, "4163", null, "57395", null, "3659", null, "24081", null, "3008", null, "3980", null, "1288", null, "20101", null, "2953", null, "204", null, "140", null, "195623", null, "4735", null, "88214", null, "4083", null, "23024", null, "2684", null, "7561", null, "1529", null, "15463", null, "2185", null, "84385", null, "4729", null, "27580", null, "3252", null, "249723", null, "5739", null, "68794", null, "4353", null, "208509", null, "6455", null, "186551", null, "4379", null, "58577", null, "3831", null, "-999999999", "N", "-999999999", "N", "5668", null, "998", null, "-999999999", "N", "-999999999", "N", "7011", null, "1396", null, "18947", null, "2416", null, "20942", null, "2131", null, "182616", null, "4354", null, "83465", null, "2655", null, "192714", null, "5982", null, "25975", null, "2452", null, "58858", null, "4024", null, "107881", null, "5771", null, "89.7", null, "1.1", null, "41.6", null, "1.2", null, "58.4", null, "1.2", null, "52.5", null, "1.7", null, "17.0", null, "1.4", null, "4.2", null, "0.7", null, "12.8", null, "1.3", null, "30.5", null, "1.6", null, "29.5", null, "1.3", null, "20.7", null, "1.2", null, "8.7", null, "1.1", null, "1.4", null, "0.5", null, "7.2", null, "1.0", null, "0.1", null, "0.1", null, "70.5", null, "1.3", null, "31.8", null, "1.5", null, "8.3", null, "0.9", null, "2.7", null, "0.6", null, "5.6", null, "0.8", null, "30.4", null, "1.6", null, "9.9", null, "1.2", null, "90.1", null, "1.2", null, "24.8", null, "1.6", null, "75.2", null, "1.6", null, "67.3", null, "1.2", null, "21.1", null, "1.2", null, "-999999999.0", "N", "-999999999.0", "N", "2.0", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "2.5", null, "0.5", null, "6.8", null, "0.9", null, "7.6", null, "0.8", null, "65.9", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.5", null, "1.3", null, "30.5", null, "1.9", null, "56.0", null, "2.2", null, "13", "10"], ["5001900US1311", "Congressional District 11 (119th Congress), Georgia", "306055", null, "4748", null, "124874", null, "4077", null, "181181", null, "5242", null, "169062", null, "5130", null, "46059", null, "3632", null, "16711", null, "2624", null, "29348", null, "3062", null, "90934", null, "4738", null, "93229", null, "4249", null, "69019", null, "4303", null, "23805", null, "2856", null, "7065", null, "1718", null, "16740", null, "2770", null, "405", null, "279", null, "212826", null, "5459", null, "100043", null, "4028", null, "22254", null, "2405", null, "9646", null, "1872", null, "12608", null, "1607", null, "90529", null, "4715", null, "29813", null, "3471", null, "276242", null, "5675", null, "70597", null, "4254", null, "235458", null, "5714", null, "221273", null, "4229", null, "34982", null, "3073", null, "-999999999", "N", "-999999999", "N", "11670", null, "1424", null, "-999999999", "N", "-999999999", "N", "15974", null, "2461", null, "21097", null, "2599", null, "33971", null, "2886", null, "215344", null, "4245", null, "98527", null, "3556", null, "215121", null, "4779", null, "29035", null, "2188", null, "58740", null, "3960", null, "127346", null, "5604", null, "-888888888", "(X)", "-888888888", "(X)", "40.8", null, "1.3", null, "59.2", null, "1.3", null, "55.2", null, "1.6", null, "15.0", null, "1.2", null, "5.5", null, "0.9", null, "9.6", null, "1.0", null, "29.7", null, "1.4", null, "30.5", null, "1.3", null, "22.6", null, "1.4", null, "7.8", null, "0.9", null, "2.3", null, "0.6", null, "5.5", null, "0.9", null, "0.1", null, "0.1", null, "69.5", null, "1.3", null, "32.7", null, "1.3", null, "7.3", null, "0.8", null, "3.2", null, "0.6", null, "4.1", null, "0.5", null, "29.6", null, "1.4", null, "9.7", null, "1.1", null, "90.3", null, "1.1", null, "23.1", null, "1.4", null, "76.9", null, "1.4", null, "72.3", null, "1.1", null, "11.4", null, "1.0", null, "-999999999.0", "N", "-999999999.0", "N", "3.8", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "5.2", null, "0.8", null, "6.9", null, "0.8", null, "11.1", null, "0.9", null, "70.4", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.5", null, "1.0", null, "27.3", null, "1.9", null, "59.2", null, "1.9", null, "14589", null, "2251", null, "6278", null, "1354", null, "8311", null, "1794", null, "3900", null, "1119", null, "6318", null, "1532", null, "1785", null, "868", null, "4533", null, "1446", null, "4371", null, "1374", null, "6611", null, "1456", null, "2200", null, "873", null, "4228", null, "1404", null, "722", null, "554", null, "3506", null, "1325", null, "183", null, "171", null, "7978", null, "1795", null, "1700", null, "734", null, "2090", null, "832", null, "1063", null, "627", null, "1027", null, "496", null, "4188", null, "1372", null, "4951", null, "1475", null, "9638", null, "1970", null, "7013", null, "1611", null, "7576", null, "1815", null, "8200", null, "1501", null, "4826", null, "1710", null, "-999999999", "N", "-999999999", "N", "280", null, "267", null, "-999999999", "N", "-999999999", "N", "291", null, "263", null, "992", null, "602", null, "1624", null, "732", null, "7644", null, "1447", null, "38895", null, "12420", null, "10218", null, "1725", null, "934", null, "405", null, "5067", null, "1441", null, "4217", null, "1248", null, "4.8", null, "0.7", null, "43.0", null, "7.5", null, "57.0", null, "7.5", null, "26.7", null, "7.1", null, "43.3", null, "8.5", null, "12.2", null, "6.0", null, "31.1", null, "8.4", null, "30.0", null, "7.4", null, "45.3", null, "8.1", null, "15.1", null, "6.0", null, "29.0", null, "8.3", null, "4.9", null, "3.8", null, "24.0", null, "7.9", null, "1.3", null, "1.2", null, "54.7", null, "8.1", null, "11.7", null, "4.6", null, "14.3", null, "5.6", null, "7.3", null, "4.3", null, "7.0", null, "3.4", null, "28.7", null, "7.4", null, "33.9", null, "8.7", null, "66.1", null, "8.7", null, "48.1", null, "8.9", null, "51.9", null, "8.9", null, "56.2", null, "8.6", null, "33.1", null, "8.9", null, "-999999999.0", "N", "-999999999.0", "N", "1.9", null, "1.9", null, "-999999999.0", "N", "-999999999.0", "N", "2.0", null, "1.8", null, "6.8", null, "4.1", null, "11.1", null, "5.1", null, "52.4", null, "7.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "9.1", null, "3.8", null, "49.6", null, "10.9", null, "41.3", null, "10.4", null, "291466", null, "5120", null, "118596", null, "4222", null, "172870", null, "5344", null, "165162", null, "5013", null, "39741", null, "3323", null, "14926", null, "2363", null, "24815", null, "2659", null, "86563", null, "4573", null, "86618", null, "4190", null, "66819", null, "4149", null, "19577", null, "2698", null, "6343", null, "1664", null, "13234", null, "2432", null, "222", null, "223", null, "204848", null, "5567", null, "98343", null, "4093", null, "20164", null, "2212", null, "8583", null, "1635", null, "11581", null, "1575", null, "86341", null, "4535", null, "24862", null, "3037", null, "266604", null, "5672", null, "63584", null, "3822", null, "227882", null, "5720", null, "213073", null, "4248", null, "30156", null, "3009", null, "-999999999", "N", "-999999999", "N", "11390", null, "1415", null, "-999999999", "N", "-999999999", "N", "15683", null, "2415", null, "20105", null, "2579", null, "32347", null, "2806", null, "207700", null, "4317", null, "101680", null, "2504", null, "204903", null, "4955", null, "28101", null, "2228", null, "53673", null, "3434", null, "123129", null, "5445", null, "95.2", null, "0.7", null, "40.7", null, "1.4", null, "59.3", null, "1.4", null, "56.7", null, "1.6", null, "13.6", null, "1.1", null, "5.1", null, "0.8", null, "8.5", null, "0.9", null, "29.7", null, "1.4", null, "29.7", null, "1.4", null, "22.9", null, "1.4", null, "6.7", null, "0.9", null, "2.2", null, "0.6", null, "4.5", null, "0.8", null, "0.1", null, "0.1", null, "70.3", null, "1.4", null, "33.7", null, "1.3", null, "6.9", null, "0.7", null, "2.9", null, "0.6", null, "4.0", null, "0.5", null, "29.6", null, "1.4", null, "8.5", null, "1.0", null, "91.5", null, "1.0", null, "21.8", null, "1.3", null, "78.2", null, "1.3", null, "73.1", null, "1.2", null, "10.3", null, "1.0", null, "-999999999.0", "N", "-999999999.0", "N", "3.9", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "5.4", null, "0.8", null, "6.9", null, "0.8", null, "11.1", null, "0.9", null, "71.3", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.7", null, "1.1", null, "26.2", null, "1.8", null, "60.1", null, "1.8", null, "13", "11"], ["5001900US1312", "Congressional District 12 (119th Congress), Georgia", "299324", null, "4079", null, "123274", null, "3615", null, "176050", null, "4064", null, "126310", null, "4966", null, "73963", null, "4460", null, "17371", null, "2596", null, "56592", null, "4304", null, "99051", null, "5143", null, "94805", null, "4869", null, "47825", null, "3373", null, "46172", null, "4029", null, "8283", null, "2019", null, "37889", null, "3455", null, "808", null, "528", null, "204519", null, "5264", null, "78485", null, "3794", null, "27791", null, "3245", null, "9088", null, "1881", null, "18703", null, "2565", null, "98243", null, "5163", null, "51988", null, "4266", null, "247336", null, "4794", null, "100569", null, "5018", null, "198755", null, "5099", null, "161079", null, "3629", null, "107820", null, "3660", null, "1671", null, "685", null, "5728", null, "1053", null, "-999999999", "N", "-999999999", "N", "6963", null, "1525", null, "16063", null, "2335", null, "15251", null, "1549", null, "158117", null, "3403", null, "62739", null, "2674", null, "200273", null, "5642", null, "34723", null, "2994", null, "73016", null, "5164", null, "92534", null, "5064", null, "-888888888", "(X)", "-888888888", "(X)", "41.2", null, "1.1", null, "58.8", null, "1.1", null, "42.2", null, "1.6", null, "24.7", null, "1.4", null, "5.8", null, "0.9", null, "18.9", null, "1.4", null, "33.1", null, "1.7", null, "31.7", null, "1.5", null, "16.0", null, "1.1", null, "15.4", null, "1.3", null, "2.8", null, "0.7", null, "12.7", null, "1.1", null, "0.3", null, "0.2", null, "68.3", null, "1.5", null, "26.2", null, "1.3", null, "9.3", null, "1.1", null, "3.0", null, "0.6", null, "6.2", null, "0.8", null, "32.8", null, "1.7", null, "17.4", null, "1.4", null, "82.6", null, "1.4", null, "33.6", null, "1.6", null, "66.4", null, "1.6", null, "53.8", null, "1.0", null, "36.0", null, "1.1", null, "0.6", null, "0.2", null, "1.9", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "2.3", null, "0.5", null, "5.4", null, "0.8", null, "5.1", null, "0.5", null, "52.8", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.3", null, "1.4", null, "36.5", null, "2.3", null, "46.2", null, "2.4", null, "48638", null, "4664", null, "19962", null, "2964", null, "28676", null, "3496", null, "9171", null, "1931", null, "27084", null, "3365", null, "3776", null, "1238", null, "23308", null, "3125", null, "12383", null, "1918", null, "26590", null, "3637", null, "5260", null, "1594", null, "20991", null, "3216", null, "2739", null, "1081", null, "18252", null, "3034", null, "339", null, "311", null, "22048", null, "2684", null, "3911", null, "1028", null, "6093", null, "1491", null, "1037", null, "592", null, "5056", null, "1266", null, "12044", null, "1912", null, "23768", null, "3520", null, "24870", null, "3143", null, "26783", null, "3455", null, "21855", null, "2893", null, "16400", null, "2370", null, "29631", null, "3221", null, "399", null, "407", null, "616", null, "525", null, "-999999999", "N", "-999999999", "N", "565", null, "471", null, "1027", null, "640", null, "986", null, "589", null, "16193", null, "2381", null, "28499", null, "4909", null, "36255", null, "3905", null, "8220", null, "1868", null, "16989", null, "2856", null, "11046", null, "2215", null, "16.2", null, "1.5", null, "41.0", null, "4.6", null, "59.0", null, "4.6", null, "18.9", null, "3.3", null, "55.7", null, "4.7", null, "7.8", null, "2.4", null, "47.9", null, "4.8", null, "25.5", null, "3.3", null, "54.7", null, "4.4", null, "10.8", null, "2.9", null, "43.2", null, "5.1", null, "5.6", null, "2.2", null, "37.5", null, "5.0", null, "0.7", null, "0.6", null, "45.3", null, "4.4", null, "8.0", null, "2.1", null, "12.5", null, "3.0", null, "2.1", null, "1.2", null, "10.4", null, "2.6", null, "24.8", null, "3.3", null, "48.9", null, "5.0", null, "51.1", null, "5.0", null, "55.1", null, "4.4", null, "44.9", null, "4.4", null, "33.7", null, "3.6", null, "60.9", null, "3.5", null, "0.8", null, "0.8", null, "1.3", null, "1.1", null, "-999999999.0", "N", "-999999999.0", "N", "1.2", null, "0.9", null, "2.1", null, "1.3", null, "2.0", null, "1.2", null, "33.3", null, "3.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "22.7", null, "5.0", null, "46.9", null, "6.0", null, "30.5", null, "4.6", null, "250686", null, "5168", null, "103312", null, "3930", null, "147374", null, "4195", null, "117139", null, "5265", null, "46879", null, "3859", null, "13595", null, "2445", null, "33284", null, "3733", null, "86668", null, "4791", null, "68215", null, "4219", null, "42565", null, "3540", null, "25181", null, "2941", null, "5544", null, "1712", null, "19637", null, "2662", null, "469", null, "426", null, "182471", null, "5125", null, "74574", null, "3652", null, "21698", null, "2981", null, "8051", null, "1915", null, "13647", null, "2377", null, "86199", null, "4776", null, "28220", null, "3502", null, "222466", null, "5310", null, "73786", null, "4399", null, "176900", null, "5510", null, "144679", null, "3863", null, "78189", null, "4312", null, "1272", null, "571", null, "5112", null, "1047", null, "-999999999", "N", "-999999999", "N", "6398", null, "1439", null, "15036", null, "2233", null, "14265", null, "1617", null, "141924", null, "3574", null, "71071", null, "2459", null, "164018", null, "5439", null, "26503", null, "2665", null, "56027", null, "4366", null, "81488", null, "4984", null, "83.8", null, "1.5", null, "41.2", null, "1.3", null, "58.8", null, "1.3", null, "46.7", null, "1.9", null, "18.7", null, "1.5", null, "5.4", null, "1.0", null, "13.3", null, "1.4", null, "34.6", null, "1.7", null, "27.2", null, "1.5", null, "17.0", null, "1.3", null, "10.0", null, "1.2", null, "2.2", null, "0.7", null, "7.8", null, "1.0", null, "0.2", null, "0.2", null, "72.8", null, "1.5", null, "29.7", null, "1.5", null, "8.7", null, "1.2", null, "3.2", null, "0.8", null, "5.4", null, "0.9", null, "34.4", null, "1.8", null, "11.3", null, "1.3", null, "88.7", null, "1.3", null, "29.4", null, "1.6", null, "70.6", null, "1.6", null, "57.7", null, "1.4", null, "31.2", null, "1.4", null, "0.5", null, "0.2", null, "2.0", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "2.6", null, "0.6", null, "6.0", null, "0.9", null, "5.7", null, "0.6", null, "56.6", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.2", null, "1.5", null, "34.2", null, "2.5", null, "49.7", null, "2.5", null, "13", "12"], ["5001900US1313", "Congressional District 13 (119th Congress), Georgia", "275032", null, "7094", null, "111571", null, "3935", null, "163461", null, "6743", null, "131635", null, "5770", null, "69111", null, "5696", null, "18090", null, "2747", null, "51021", null, "4718", null, "74286", null, "5712", null, "97435", null, "5678", null, "57806", null, "4271", null, "39191", null, "4659", null, "9303", null, "2256", null, "29888", null, "3856", null, "438", null, "499", null, "177597", null, "6542", null, "73829", null, "3791", null, "29920", null, "3668", null, "8787", null, "1536", null, "21133", null, "3147", null, "73848", null, "5815", null, "29143", null, "3252", null, "245889", null, "7186", null, "73714", null, "5312", null, "201318", null, "7615", null, "71444", null, "3615", null, "147120", null, "6407", null, "1209", null, "719", null, "16471", null, "2185", null, "-999999999", "N", "-999999999", "N", "18828", null, "2465", null, "19786", null, "2298", null, "33565", null, "2956", null, "67545", null, "3260", null, "84937", null, "3307", null, "200746", null, "7063", null, "23579", null, "2708", null, "63013", null, "4834", null, "114154", null, "5453", null, "-888888888", "(X)", "-888888888", "(X)", "40.6", null, "1.4", null, "59.4", null, "1.4", null, "47.9", null, "2.0", null, "25.1", null, "1.8", null, "6.6", null, "1.0", null, "18.6", null, "1.5", null, "27.0", null, "1.9", null, "35.4", null, "1.8", null, "21.0", null, "1.5", null, "14.2", null, "1.6", null, "3.4", null, "0.8", null, "10.9", null, "1.3", null, "0.2", null, "0.2", null, "64.6", null, "1.8", null, "26.8", null, "1.4", null, "10.9", null, "1.3", null, "3.2", null, "0.6", null, "7.7", null, "1.1", null, "26.9", null, "1.9", null, "10.6", null, "1.2", null, "89.4", null, "1.2", null, "26.8", null, "1.9", null, "73.2", null, "1.9", null, "26.0", null, "1.3", null, "53.5", null, "1.6", null, "0.4", null, "0.3", null, "6.0", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "6.8", null, "0.9", null, "7.2", null, "0.8", null, "12.2", null, "1.0", null, "24.6", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.7", null, "1.3", null, "31.4", null, "2.0", null, "56.9", null, "2.0", null, "30078", null, "3611", null, "13391", null, "2237", null, "16687", null, "2902", null, "10060", null, "1953", null, "13298", null, "2442", null, "3541", null, "1239", null, "9757", null, "1911", null, "6720", null, "1868", null, "15057", null, "2748", null, "6138", null, "1652", null, "8919", null, "2202", null, "2416", null, "992", null, "6503", null, "1676", null, "0", null, "232", null, "15021", null, "2579", null, "3922", null, "955", null, "4379", null, "1446", null, "1125", null, "723", null, "3254", null, "1137", null, "6720", null, "1868", null, "9564", null, "2101", null, "20514", null, "2919", null, "13309", null, "2364", null, "16769", null, "2808", null, "5198", null, "1271", null, "16730", null, "2916", null, "274", null, "279", null, "2190", null, "839", null, "-999999999", "N", "-999999999", "N", "2757", null, "1134", null, "2845", null, "1008", null, "5516", null, "1710", null, "5198", null, "1271", null, "54137", null, "6219", null, "23358", null, "3369", null, "4772", null, "1654", null, "7199", null, "1651", null, "11387", null, "2239", null, "10.9", null, "1.3", null, "44.5", null, "6.1", null, "55.5", null, "6.1", null, "33.4", null, "5.0", null, "44.2", null, "6.0", null, "11.8", null, "3.6", null, "32.4", null, "5.4", null, "22.3", null, "5.8", null, "50.1", null, "6.6", null, "20.4", null, "4.7", null, "29.7", null, "6.5", null, "8.0", null, "3.0", null, "21.6", null, "5.3", null, "0.0", null, "0.7", null, "49.9", null, "6.6", null, "13.0", null, "3.0", null, "14.6", null, "4.4", null, "3.7", null, "2.4", null, "10.8", null, "3.5", null, "22.3", null, "5.8", null, "31.8", null, "5.7", null, "68.2", null, "5.7", null, "44.2", null, "6.1", null, "55.8", null, "6.1", null, "17.3", null, "4.1", null, "55.6", null, "5.8", null, "0.9", null, "0.9", null, "7.3", null, "2.8", null, "-999999999.0", "N", "-999999999.0", "N", "9.2", null, "3.4", null, "9.5", null, "3.3", null, "18.3", null, "5.2", null, "17.3", null, "4.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "20.4", null, "6.0", null, "30.8", null, "6.2", null, "48.7", null, "6.8", null, "244954", null, "7457", null, "98180", null, "3958", null, "146774", null, "6394", null, "121575", null, "5361", null, "55813", null, "5549", null, "14549", null, "2641", null, "41264", null, "4472", null, "67566", null, "5325", null, "82378", null, "5413", null, "51668", null, "4271", null, "30272", null, "4336", null, "6887", null, "2238", null, "23385", null, "3407", null, "438", null, "499", null, "162576", null, "6220", null, "69907", null, "3581", null, "25541", null, "3188", null, "7662", null, "1585", null, "17879", null, "2729", null, "67128", null, "5419", null, "19579", null, "2811", null, "225375", null, "7554", null, "60405", null, "4886", null, "184549", null, "7697", null, "66246", null, "3413", null, "130390", null, "7009", null, "935", null, "631", null, "14281", null, "2204", null, "-999999999", "N", "-999999999", "N", "16071", null, "2340", null, "16941", null, "2177", null, "28049", null, "2792", null, "62347", null, "3111", null, "88691", null, "2217", null, "177388", null, "6710", null, "18807", null, "2289", null, "55814", null, "4620", null, "102767", null, "5092", null, "89.1", null, "1.3", null, "40.1", null, "1.4", null, "59.9", null, "1.4", null, "49.6", null, "2.3", null, "22.8", null, "1.9", null, "5.9", null, "1.0", null, "16.8", null, "1.6", null, "27.6", null, "1.9", null, "33.6", null, "1.8", null, "21.1", null, "1.7", null, "12.4", null, "1.6", null, "2.8", null, "0.9", null, "9.5", null, "1.3", null, "0.2", null, "0.2", null, "66.4", null, "1.8", null, "28.5", null, "1.6", null, "10.4", null, "1.2", null, "3.1", null, "0.6", null, "7.3", null, "1.1", null, "27.4", null, "1.9", null, "8.0", null, "1.1", null, "92.0", null, "1.1", null, "24.7", null, "1.9", null, "75.3", null, "1.9", null, "27.0", null, "1.5", null, "53.2", null, "1.9", null, "0.4", null, "0.3", null, "5.8", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "6.6", null, "0.9", null, "6.9", null, "0.9", null, "11.5", null, "1.1", null, "25.5", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.6", null, "1.2", null, "31.5", null, "2.2", null, "57.9", null, "2.1", null, "13", "13"], ["5001900US1314", "Congressional District 14 (119th Congress), Georgia", "285711", null, "4450", null, "121751", null, "3398", null, "163960", null, "4099", null, "153090", null, "5130", null, "49414", null, "4400", null, "14938", null, "2576", null, "34476", null, "3667", null, "83207", null, "4999", null, "93518", null, "4655", null, "65108", null, "4114", null, "27441", null, "3386", null, "5888", null, "1584", null, "21553", null, "3020", null, "969", null, "534", null, "192193", null, "5799", null, "87982", null, "4491", null, "21973", null, "2737", null, "9050", null, "1908", null, "12923", null, "2225", null, "82238", null, "4953", null, "32457", null, "3326", null, "253254", null, "5358", null, "82464", null, "4654", null, "203247", null, "5645", null, "213041", null, "4532", null, "32963", null, "2658", null, "1804", null, "882", null, "5858", null, "1273", null, "-999999999", "N", "-999999999", "N", "15483", null, "1800", null, "16519", null, "2305", null, "25702", null, "1843", null, "210651", null, "4420", null, "78969", null, "2284", null, "202504", null, "5311", null, "29744", null, "2761", null, "58297", null, "3970", null, "114463", null, "5000", null, "-888888888", "(X)", "-888888888", "(X)", "42.6", null, "1.0", null, "57.4", null, "1.0", null, "53.6", null, "1.8", null, "17.3", null, "1.5", null, "5.2", null, "0.9", null, "12.1", null, "1.3", null, "29.1", null, "1.6", null, "32.7", null, "1.6", null, "22.8", null, "1.5", null, "9.6", null, "1.2", null, "2.1", null, "0.5", null, "7.5", null, "1.1", null, "0.3", null, "0.2", null, "67.3", null, "1.6", null, "30.8", null, "1.5", null, "7.7", null, "0.9", null, "3.2", null, "0.7", null, "4.5", null, "0.8", null, "28.8", null, "1.6", null, "11.4", null, "1.2", null, "88.6", null, "1.2", null, "28.9", null, "1.6", null, "71.1", null, "1.6", null, "74.6", null, "1.1", null, "11.5", null, "0.9", null, "0.6", null, "0.3", null, "2.1", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "5.4", null, "0.6", null, "5.8", null, "0.8", null, "9.0", null, "0.6", null, "73.7", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.7", null, "1.3", null, "28.8", null, "1.9", null, "56.5", null, "1.8", null, "27395", null, "2789", null, "11559", null, "1829", null, "15836", null, "2363", null, "8525", null, "1652", null, "10299", null, "2013", null, "1821", null, "776", null, "8478", null, "1788", null, "8571", null, "1493", null, "14302", null, "2178", null, "6430", null, "1501", null, "7404", null, "1688", null, "1341", null, "626", null, "6063", null, "1498", null, "468", null, "409", null, "13093", null, "1893", null, "2095", null, "814", null, "2895", null, "963", null, "480", null, "334", null, "2415", null, "900", null, "8103", null, "1359", null, "10091", null, "1539", null, "17304", null, "2364", null, "14573", null, "1958", null, "12822", null, "2227", null, "18599", null, "2447", null, "5349", null, "1214", null, "446", null, "500", null, "321", null, "280", null, "-999999999", "N", "-999999999", "N", "1027", null, "489", null, "1653", null, "674", null, "1784", null, "701", null, "18464", null, "2413", null, "34279", null, "4639", null, "18824", null, "2443", null, "4046", null, "1220", null, "7846", null, "1720", null, "6932", null, "1554", null, "9.6", null, "1.0", null, "42.2", null, "5.7", null, "57.8", null, "5.7", null, "31.1", null, "5.3", null, "37.6", null, "5.8", null, "6.6", null, "2.7", null, "30.9", null, "5.4", null, "31.3", null, "4.8", null, "52.2", null, "5.4", null, "23.5", null, "4.9", null, "27.0", null, "5.2", null, "4.9", null, "2.2", null, "22.1", null, "4.8", null, "1.7", null, "1.5", null, "47.8", null, "5.4", null, "7.6", null, "2.9", null, "10.6", null, "3.3", null, "1.8", null, "1.2", null, "8.8", null, "3.1", null, "29.6", null, "4.3", null, "36.8", null, "4.8", null, "63.2", null, "4.8", null, "53.2", null, "5.8", null, "46.8", null, "5.8", null, "67.9", null, "4.8", null, "19.5", null, "4.2", null, "1.6", null, "1.8", null, "1.2", null, "1.0", null, "-999999999.0", "N", "-999999999.0", "N", "3.7", null, "1.8", null, "6.0", null, "2.3", null, "6.5", null, "2.4", null, "67.4", null, "4.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "21.5", null, "5.9", null, "41.7", null, "6.9", null, "36.8", null, "7.1", null, "258316", null, "4874", null, "110192", null, "3654", null, "148124", null, "4283", null, "144565", null, "4840", null, "39115", null, "4244", null, "13117", null, "2353", null, "25998", null, "3509", null, "74636", null, "4940", null, "79216", null, "4350", null, "58678", null, "3982", null, "20037", null, "3081", null, "4547", null, "1400", null, "15490", null, "2719", null, "501", null, "309", null, "179100", null, "5895", null, "85887", null, "4371", null, "19078", null, "2595", null, "8570", null, "1889", null, "10508", null, "2019", null, "74135", null, "4909", null, "22366", null, "2937", null, "235950", null, "5289", null, "67891", null, "4601", null, "190425", null, "5942", null, "194442", null, "5192", null, "27614", null, "2427", null, "1358", null, "739", null, "5537", null, "1241", null, "-999999999", "N", "-999999999", "N", "14456", null, "1908", null, "14866", null, "2231", null, "23918", null, "1929", null, "192187", null, "5060", null, "84161", null, "3726", null, "183680", null, "5223", null, "25698", null, "2254", null, "50451", null, "4148", null, "107531", null, "4708", null, "90.4", null, "1.0", null, "42.7", null, "1.2", null, "57.3", null, "1.2", null, "56.0", null, "1.9", null, "15.1", null, "1.6", null, "5.1", null, "0.9", null, "10.1", null, "1.3", null, "28.9", null, "1.7", null, "30.7", null, "1.7", null, "22.7", null, "1.6", null, "7.8", null, "1.2", null, "1.8", null, "0.5", null, "6.0", null, "1.0", null, "0.2", null, "0.1", null, "69.3", null, "1.7", null, "33.2", null, "1.6", null, "7.4", null, "1.0", null, "3.3", null, "0.7", null, "4.1", null, "0.8", null, "28.7", null, "1.7", null, "8.7", null, "1.1", null, "91.3", null, "1.1", null, "26.3", null, "1.7", null, "73.7", null, "1.7", null, "75.3", null, "1.2", null, "10.7", null, "0.9", null, "0.5", null, "0.3", null, "2.1", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "5.6", null, "0.7", null, "5.8", null, "0.9", null, "9.3", null, "0.7", null, "74.4", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.0", null, "1.2", null, "27.5", null, "2.0", null, "58.5", null, "2.0", null, "13", "14"], ["5001900US1501", "Congressional District 1 (119th Congress), Hawaii", "255695", null, "4724", null, "126051", null, "3532", null, "129644", null, "3829", null, "122953", null, "4617", null, "43893", null, "2817", null, "12232", null, "1643", null, "31661", null, "2430", null, "88849", null, "3871", null, "72152", null, "3758", null, "49899", null, "3144", null, "21734", null, "2218", null, "5852", null, "1275", null, "15882", null, "1923", null, "519", null, "444", null, "183543", null, "4180", null, "73054", null, "3474", null, "22159", null, "1896", null, "6380", null, "869", null, "15779", null, "1709", null, "88330", null, "3795", null, "23114", null, "2349", null, "232581", null, "4770", null, "63751", null, "3401", null, "191944", null, "4659", null, "53889", null, "2278", null, "6270", null, "1188", null, "-999999999", "N", "-999999999", "N", "129346", null, "4009", null, "14255", null, "1674", null, "2877", null, "785", null, "48766", null, "3839", null, "17547", null, "1821", null, "51377", null, "2188", null, "102713", null, "2831", null, "166846", null, "5118", null, "21716", null, "1873", null, "46516", null, "3068", null, "98614", null, "4059", null, "-888888888", "(X)", "-888888888", "(X)", "49.3", null, "1.1", null, "50.7", null, "1.1", null, "48.1", null, "1.5", null, "17.2", null, "1.0", null, "4.8", null, "0.6", null, "12.4", null, "0.9", null, "34.7", null, "1.5", null, "28.2", null, "1.3", null, "19.5", null, "1.2", null, "8.5", null, "0.8", null, "2.3", null, "0.5", null, "6.2", null, "0.7", null, "0.2", null, "0.2", null, "71.8", null, "1.3", null, "28.6", null, "1.2", null, "8.7", null, "0.8", null, "2.5", null, "0.3", null, "6.2", null, "0.7", null, "34.5", null, "1.4", null, "9.0", null, "0.9", null, "91.0", null, "0.9", null, "24.9", null, "1.2", null, "75.1", null, "1.2", null, "21.1", null, "0.8", null, "2.5", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "50.6", null, "1.4", null, "5.6", null, "0.7", null, "1.1", null, "0.3", null, "19.1", null, "1.4", null, "6.9", null, "0.7", null, "20.1", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.0", null, "1.0", null, "27.9", null, "1.6", null, "59.1", null, "1.8", null, "22694", null, "2173", null, "12487", null, "1703", null, "10207", null, "1615", null, "7320", null, "1420", null, "8563", null, "1505", null, "1605", null, "537", null, "6958", null, "1396", null, "6811", null, "1094", null, "10697", null, "1833", null, "4264", null, "1159", null, "6400", null, "1402", null, "1231", null, "496", null, "5169", null, "1298", null, "33", null, "56", null, "11997", null, "1531", null, "3056", null, "833", null, "2163", null, "671", null, "374", null, "233", null, "1789", null, "606", null, "6778", null, "1086", null, "8525", null, "1536", null, "14169", null, "1940", null, "10243", null, "1505", null, "12451", null, "1755", null, "2952", null, "788", null, "805", null, "581", null, "-999999999", "N", "-999999999", "N", "9130", null, "1514", null, "3519", null, "970", null, "63", null, "80", null, "6225", null, "1619", null, "1238", null, "450", null, "2769", null, "770", null, "41074", null, "12769", null, "15883", null, "2032", null, "2143", null, "717", null, "6667", null, "1290", null, "7073", null, "1419", null, "8.9", null, "0.9", null, "55.0", null, "5.5", null, "45.0", null, "5.5", null, "32.3", null, "5.0", null, "37.7", null, "5.4", null, "7.1", null, "2.3", null, "30.7", null, "5.2", null, "30.0", null, "4.6", null, "47.1", null, "5.8", null, "18.8", null, "4.5", null, "28.2", null, "5.4", null, "5.4", null, "2.1", null, "22.8", null, "5.1", null, "0.1", null, "0.2", null, "52.9", null, "5.8", null, "13.5", null, "3.4", null, "9.5", null, "2.9", null, "1.6", null, "1.0", null, "7.9", null, "2.6", null, "29.9", null, "4.6", null, "37.6", null, "5.9", null, "62.4", null, "5.9", null, "45.1", null, "5.4", null, "54.9", null, "5.4", null, "13.0", null, "3.5", null, "3.5", null, "2.6", null, "-999999999.0", "N", "-999999999.0", "N", "40.2", null, "6.0", null, "15.5", null, "3.9", null, "0.3", null, "0.4", null, "27.4", null, "6.2", null, "5.5", null, "2.0", null, "12.2", null, "3.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.5", null, "4.1", null, "42.0", null, "6.3", null, "44.5", null, "7.0", null, "233001", null, "5374", null, "113564", null, "3850", null, "119437", null, "3728", null, "115633", null, "4747", null, "35330", null, "2543", null, "10627", null, "1559", null, "24703", null, "2132", null, "82038", null, "3988", null, "61455", null, "3878", null, "45635", null, "3232", null, "15334", null, "1765", null, "4621", null, "1151", null, "10713", null, "1391", null, "486", null, "441", null, "171546", null, "4587", null, "69998", null, "3592", null, "19996", null, "1804", null, "6006", null, "849", null, "13990", null, "1682", null, "81552", null, "3896", null, "14589", null, "1550", null, "218412", null, "5297", null, "53508", null, "3302", null, "179493", null, "4815", null, "50937", null, "2395", null, "5465", null, "1022", null, "-999999999", "N", "-999999999", "N", "120216", null, "4228", null, "10736", null, "1706", null, "2814", null, "774", null, "42541", null, "3417", null, "16309", null, "1864", null, "48608", null, "2308", null, "108327", null, "4786", null, "150963", null, "5132", null, "19573", null, "1788", null, "39849", null, "2853", null, "91541", null, "4307", null, "91.1", null, "0.9", null, "48.7", null, "1.1", null, "51.3", null, "1.1", null, "49.6", null, "1.6", null, "15.2", null, "1.0", null, "4.6", null, "0.7", null, "10.6", null, "0.9", null, "35.2", null, "1.5", null, "26.4", null, "1.4", null, "19.6", null, "1.3", null, "6.6", null, "0.7", null, "2.0", null, "0.5", null, "4.6", null, "0.6", null, "0.2", null, "0.2", null, "73.6", null, "1.4", null, "30.0", null, "1.4", null, "8.6", null, "0.8", null, "2.6", null, "0.4", null, "6.0", null, "0.7", null, "35.0", null, "1.5", null, "6.3", null, "0.7", null, "93.7", null, "0.7", null, "23.0", null, "1.3", null, "77.0", null, "1.3", null, "21.9", null, "1.0", null, "2.3", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "51.6", null, "1.5", null, "4.6", null, "0.7", null, "1.2", null, "0.3", null, "18.3", null, "1.3", null, "7.0", null, "0.8", null, "20.9", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.0", null, "1.1", null, "26.4", null, "1.7", null, "60.6", null, "1.9", null, "15", "01"], ["5001900US1502", "Congressional District 2 (119th Congress), Hawaii", "237456", null, "4055", null, "128590", null, "3376", null, "108866", null, "3494", null, "118742", null, "4310", null, "46121", null, "3500", null, "15043", null, "1870", null, "31078", null, "2938", null, "72593", null, "3996", null, "73858", null, "3898", null, "45411", null, "2939", null, "27928", null, "2927", null, "9164", null, "1790", null, "18764", null, "2285", null, "519", null, "308", null, "163598", null, "4133", null, "73331", null, "3866", null, "18193", null, "2085", null, "5879", null, "1240", null, "12314", null, "1596", null, "72074", null, "3984", null, "28396", null, "2576", null, "209060", null, "4665", null, "74016", null, "3549", null, "163440", null, "4382", null, "91294", null, "2647", null, "3322", null, "920", null, "1434", null, "651", null, "58507", null, "3011", null, "23715", null, "2375", null, "3897", null, "1130", null, "55287", null, "3868", null, "20469", null, "1809", null, "88384", null, "2680", null, "97135", null, "4232", null, "164863", null, "5315", null, "26885", null, "2171", null, "51908", null, "3683", null, "86070", null, "4484", null, "-888888888", "(X)", "-888888888", "(X)", "54.2", null, "1.2", null, "45.8", null, "1.2", null, "50.0", null, "1.5", null, "19.4", null, "1.4", null, "6.3", null, "0.8", null, "13.1", null, "1.2", null, "30.6", null, "1.7", null, "31.1", null, "1.5", null, "19.1", null, "1.2", null, "11.8", null, "1.2", null, "3.9", null, "0.7", null, "7.9", null, "0.9", null, "0.2", null, "0.1", null, "68.9", null, "1.5", null, "30.9", null, "1.5", null, "7.7", null, "0.9", null, "2.5", null, "0.5", null, "5.2", null, "0.7", null, "30.4", null, "1.7", null, "12.0", null, "1.1", null, "88.0", null, "1.1", null, "31.2", null, "1.4", null, "68.8", null, "1.4", null, "38.4", null, "1.1", null, "1.4", null, "0.4", null, "0.6", null, "0.3", null, "24.6", null, "1.2", null, "10.0", null, "1.0", null, "1.6", null, "0.5", null, "23.3", null, "1.5", null, "8.6", null, "0.7", null, "37.2", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.3", null, "1.2", null, "31.5", null, "2.0", null, "52.2", null, "2.1", null, "33996", null, "3052", null, "16052", null, "1847", null, "17944", null, "2347", null, "10425", null, "1982", null, "14275", null, "2217", null, "3232", null, "1136", null, "11043", null, "1969", null, "9296", null, "1658", null, "17770", null, "2297", null, "7610", null, "1609", null, "9960", null, "1962", null, "2592", null, "1121", null, "7368", null, "1602", null, "200", null, "210", null, "16226", null, "2003", null, "2815", null, "842", null, "4315", null, "1028", null, "640", null, "413", null, "3675", null, "929", null, "9096", null, "1604", null, "13042", null, "2087", null, "20954", null, "2323", null, "17964", null, "2125", null, "16032", null, "2367", null, "8610", null, "1565", null, "212", null, "207", null, "646", null, "542", null, "5211", null, "1243", null, "7137", null, "1512", null, "194", null, "189", null, "11986", null, "1829", null, "3959", null, "943", null, "8088", null, "1540", null, "43818", null, "5776", null, "24700", null, "2869", null, "4917", null, "1180", null, "8197", null, "1691", null, "11586", null, "2096", null, "14.3", null, "1.2", null, "47.2", null, "4.3", null, "52.8", null, "4.3", null, "30.7", null, "5.0", null, "42.0", null, "5.0", null, "9.5", null, "3.3", null, "32.5", null, "4.7", null, "27.3", null, "4.6", null, "52.3", null, "4.5", null, "22.4", null, "4.1", null, "29.3", null, "5.0", null, "7.6", null, "3.3", null, "21.7", null, "4.1", null, "0.6", null, "0.6", null, "47.7", null, "4.5", null, "8.3", null, "2.4", null, "12.7", null, "2.7", null, "1.9", null, "1.2", null, "10.8", null, "2.5", null, "26.8", null, "4.3", null, "38.4", null, "4.7", null, "61.6", null, "4.7", null, "52.8", null, "4.9", null, "47.2", null, "4.9", null, "25.3", null, "4.1", null, "0.6", null, "0.6", null, "1.9", null, "1.6", null, "15.3", null, "3.4", null, "21.0", null, "3.7", null, "0.6", null, "0.5", null, "35.3", null, "4.5", null, "11.6", null, "2.6", null, "23.8", null, "4.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "19.9", null, "4.2", null, "33.2", null, "6.0", null, "46.9", null, "6.0", null, "203460", null, "4146", null, "112538", null, "3297", null, "90922", null, "3390", null, "108317", null, "4278", null, "31846", null, "3049", null, "11811", null, "1820", null, "20035", null, "2462", null, "63297", null, "3762", null, "56088", null, "3735", null, "37801", null, "2694", null, "17968", null, "2387", null, "6572", null, "1479", null, "11396", null, "1913", null, "319", null, "200", null, "147372", null, "4063", null, "70516", null, "3904", null, "13878", null, "1887", null, "5239", null, "1221", null, "8639", null, "1285", null, "62978", null, "3790", null, "15354", null, "1824", null, "188106", null, "4902", null, "56052", null, "3078", null, "147408", null, "4413", null, "82684", null, "2840", null, "3110", null, "902", null, "788", null, "413", null, "53296", null, "3015", null, "16578", null, "2320", null, "3703", null, "1120", null, "43301", null, "3456", null, "16510", null, "1876", null, "80296", null, "2805", null, "104658", null, "3844", null, "140163", null, "5143", null, "21968", null, "1846", null, "43711", null, "3318", null, "74484", null, "4008", null, "85.7", null, "1.2", null, "55.3", null, "1.3", null, "44.7", null, "1.3", null, "53.2", null, "1.7", null, "15.7", null, "1.4", null, "5.8", null, "0.9", null, "9.8", null, "1.2", null, "31.1", null, "1.9", null, "27.6", null, "1.6", null, "18.6", null, "1.3", null, "8.8", null, "1.1", null, "3.2", null, "0.7", null, "5.6", null, "0.9", null, "0.2", null, "0.1", null, "72.4", null, "1.6", null, "34.7", null, "1.7", null, "6.8", null, "0.9", null, "2.6", null, "0.6", null, "4.2", null, "0.6", null, "31.0", null, "1.9", null, "7.5", null, "0.9", null, "92.5", null, "0.9", null, "27.5", null, "1.5", null, "72.5", null, "1.5", null, "40.6", null, "1.3", null, "1.5", null, "0.4", null, "0.4", null, "0.2", null, "26.2", null, "1.5", null, "8.1", null, "1.1", null, "1.8", null, "0.5", null, "21.3", null, "1.6", null, "8.1", null, "0.9", null, "39.5", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.7", null, "1.2", null, "31.2", null, "2.0", null, "53.1", null, "2.2", null, "15", "02"], ["5001900US1601", "Congressional District 1 (119th Congress), Idaho", "388532", null, "4358", null, "171598", null, "3418", null, "216934", null, "4154", null, "219663", null, "5329", null, "54550", null, "3080", null, "17630", null, "2007", null, "36920", null, "2617", null, "114319", null, "4670", null, "123381", null, "4148", null, "88521", null, "3876", null, "33673", null, "2785", null, "9766", null, "1411", null, "23907", null, "2502", null, "1187", null, "474", null, "265151", null, "5122", null, "131142", null, "4203", null, "20877", null, "2038", null, "7864", null, "1418", null, "13013", null, "1685", null, "113132", null, "4671", null, "38699", null, "2853", null, "349833", null, "4629", null, "117923", null, "4924", null, "270609", null, "5551", null, "332876", null, "4589", null, "1587", null, "630", null, "3411", null, "777", null, "4938", null, "929", null, "491", null, "308", null, "10811", null, "2077", null, "34418", null, "3054", null, "35983", null, "2403", null, "325007", null, "4436", null, "82979", null, "2083", null, "274213", null, "5244", null, "51612", null, "2313", null, "79219", null, "4079", null, "143382", null, "4579", null, "-888888888", "(X)", "-888888888", "(X)", "44.2", null, "0.8", null, "55.8", null, "0.8", null, "56.5", null, "1.2", null, "14.0", null, "0.8", null, "4.5", null, "0.5", null, "9.5", null, "0.7", null, "29.4", null, "1.1", null, "31.8", null, "1.0", null, "22.8", null, "1.0", null, "8.7", null, "0.7", null, "2.5", null, "0.4", null, "6.2", null, "0.6", null, "0.3", null, "0.1", null, "68.2", null, "1.0", null, "33.8", null, "1.0", null, "5.4", null, "0.5", null, "2.0", null, "0.4", null, "3.3", null, "0.4", null, "29.1", null, "1.1", null, "10.0", null, "0.7", null, "90.0", null, "0.7", null, "30.4", null, "1.2", null, "69.6", null, "1.2", null, "85.7", null, "0.7", null, "0.4", null, "0.2", null, "0.9", null, "0.2", null, "1.3", null, "0.2", null, "0.1", null, "0.1", null, "2.8", null, "0.5", null, "8.9", null, "0.8", null, "9.3", null, "0.6", null, "83.6", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.8", null, "0.8", null, "28.9", null, "1.3", null, "52.3", null, "1.3", null, "26063", null, "2885", null, "10578", null, "1540", null, "15485", null, "2353", null, "7924", null, "1534", null, "8798", null, "1302", null, "1312", null, "382", null, "7486", null, "1293", null, "9341", null, "1708", null, "12250", null, "1938", null, "5915", null, "1360", null, "5846", null, "1319", null, "813", null, "441", null, "5033", null, "1234", null, "489", null, "327", null, "13813", null, "2059", null, "2009", null, "632", null, "2952", null, "821", null, "499", null, "265", null, "2453", null, "756", null, "8852", null, "1741", null, "9898", null, "1566", null, "16165", null, "2433", null, "14410", null, "1733", null, "11653", null, "1936", null, "20564", null, "2365", null, "98", null, "126", null, "302", null, "215", null, "642", null, "453", null, "66", null, "80", null, "471", null, "348", null, "3920", null, "1178", null, "4095", null, "1142", null, "19267", null, "2189", null, "43892", null, "7337", null, "16722", null, "2162", null, "2379", null, "664", null, "6861", null, "1360", null, "7482", null, "1752", null, "6.7", null, "0.7", null, "40.6", null, "5.0", null, "59.4", null, "5.0", null, "30.4", null, "4.4", null, "33.8", null, "4.4", null, "5.0", null, "1.6", null, "28.7", null, "4.2", null, "35.8", null, "4.9", null, "47.0", null, "5.3", null, "22.7", null, "4.0", null, "22.4", null, "4.9", null, "3.1", null, "1.7", null, "19.3", null, "4.5", null, "1.9", null, "1.3", null, "53.0", null, "5.3", null, "7.7", null, "2.5", null, "11.3", null, "3.0", null, "1.9", null, "1.0", null, "9.4", null, "2.7", null, "34.0", null, "5.1", null, "38.0", null, "5.2", null, "62.0", null, "5.2", null, "55.3", null, "4.5", null, "44.7", null, "4.5", null, "78.9", null, "4.2", null, "0.4", null, "0.5", null, "1.2", null, "0.8", null, "2.5", null, "1.8", null, "0.3", null, "0.3", null, "1.8", null, "1.3", null, "15.0", null, "3.9", null, "15.7", null, "3.8", null, "73.9", null, "4.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.2", null, "4.4", null, "41.0", null, "6.6", null, "44.7", null, "7.2", null, "362469", null, "4984", null, "161020", null, "3155", null, "201449", null, "4723", null, "211739", null, "5272", null, "45752", null, "3002", null, "16318", null, "2059", null, "29434", null, "2399", null, "104978", null, "4444", null, "111131", null, "4100", null, "82606", null, "3861", null, "27827", null, "2600", null, "8953", null, "1511", null, "18874", null, "2228", null, "698", null, "324", null, "251338", null, "5130", null, "129133", null, "4194", null, "17925", null, "1910", null, "7365", null, "1399", null, "10560", null, "1567", null, "104280", null, "4439", null, "28801", null, "2298", null, "333668", null, "5046", null, "103513", null, "5080", null, "258956", null, "5716", null, "312312", null, "5057", null, "1489", null, "597", null, "3109", null, "737", null, "4296", null, "816", null, "425", null, "301", null, "10340", null, "1970", null, "30498", null, "2724", null, "31888", null, "2468", null, "305740", null, "5015", null, "86149", null, "2425", null, "257491", null, "5406", null, "49233", null, "2218", null, "72358", null, "4223", null, "135900", null, "4655", null, "93.3", null, "0.7", null, "44.4", null, "0.8", null, "55.6", null, "0.8", null, "58.4", null, "1.2", null, "12.6", null, "0.8", null, "4.5", null, "0.6", null, "8.1", null, "0.6", null, "29.0", null, "1.1", null, "30.7", null, "1.0", null, "22.8", null, "1.0", null, "7.7", null, "0.7", null, "2.5", null, "0.4", null, "5.2", null, "0.6", null, "0.2", null, "0.1", null, "69.3", null, "1.0", null, "35.6", null, "1.1", null, "4.9", null, "0.5", null, "2.0", null, "0.4", null, "2.9", null, "0.4", null, "28.8", null, "1.1", null, "7.9", null, "0.6", null, "92.1", null, "0.6", null, "28.6", null, "1.3", null, "71.4", null, "1.3", null, "86.2", null, "0.8", null, "0.4", null, "0.2", null, "0.9", null, "0.2", null, "1.2", null, "0.2", null, "0.1", null, "0.1", null, "2.9", null, "0.5", null, "8.4", null, "0.8", null, "8.8", null, "0.7", null, "84.3", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "19.1", null, "0.9", null, "28.1", null, "1.5", null, "52.8", null, "1.4", null, "16", "01"], ["5001900US1602", "Congressional District 2 (119th Congress), Idaho", "362649", null, "4494", null, "141336", null, "3262", null, "221313", null, "4379", null, "190369", null, "5600", null, "47868", null, "3134", null, "15101", null, "2058", null, "32767", null, "2865", null, "124412", null, "4858", null, "114636", null, "4268", null, "83247", null, "4048", null, "30665", null, "2782", null, "10214", null, "1874", null, "20451", null, "2401", null, "724", null, "506", null, "248013", null, "5012", null, "107122", null, "4353", null, "17203", null, "2076", null, "4887", null, "1014", null, "12316", null, "1879", null, "123688", null, "4856", null, "43306", null, "3634", null, "319343", null, "4952", null, "106149", null, "5182", null, "256500", null, "5343", null, "306954", null, "4255", null, "2249", null, "683", null, "3632", null, "785", null, "6709", null, "1155", null, "-999999999", "N", "-999999999", "N", "15392", null, "2386", null, "27382", null, "2822", null, "40497", null, "2992", null, "297808", null, "4169", null, "79009", null, "2389", null, "238237", null, "5554", null, "32958", null, "1893", null, "69340", null, "4335", null, "135939", null, "4974", null, "-888888888", "(X)", "-888888888", "(X)", "39.0", null, "0.8", null, "61.0", null, "0.8", null, "52.5", null, "1.3", null, "13.2", null, "0.9", null, "4.2", null, "0.6", null, "9.0", null, "0.8", null, "34.3", null, "1.3", null, "31.6", null, "1.1", null, "23.0", null, "1.0", null, "8.5", null, "0.8", null, "2.8", null, "0.5", null, "5.6", null, "0.7", null, "0.2", null, "0.1", null, "68.4", null, "1.1", null, "29.5", null, "1.1", null, "4.7", null, "0.6", null, "1.3", null, "0.3", null, "3.4", null, "0.5", null, "34.1", null, "1.3", null, "11.9", null, "1.0", null, "88.1", null, "1.0", null, "29.3", null, "1.3", null, "70.7", null, "1.3", null, "84.6", null, "0.9", null, "0.6", null, "0.2", null, "1.0", null, "0.2", null, "1.8", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "4.2", null, "0.6", null, "7.6", null, "0.8", null, "11.2", null, "0.8", null, "82.1", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.8", null, "0.8", null, "29.1", null, "1.6", null, "57.1", null, "1.6", null, "27774", null, "3004", null, "9536", null, "1786", null, "18238", null, "2228", null, "8509", null, "1655", null, "8193", null, "1487", null, "1639", null, "620", null, "6554", null, "1320", null, "11072", null, "1979", null, "12642", null, "2186", null, "6046", null, "1471", null, "6350", null, "1343", null, "978", null, "471", null, "5372", null, "1202", null, "246", null, "320", null, "15132", null, "2303", null, "2463", null, "854", null, "1843", null, "662", null, "661", null, "448", null, "1182", null, "512", null, "10826", null, "1991", null, "12023", null, "2179", null, "15751", null, "2062", null, "15377", null, "2403", null, "12397", null, "1883", null, "22235", null, "2693", null, "369", null, "301", null, "682", null, "512", null, "213", null, "283", null, "-999999999", "N", "-999999999", "N", "1248", null, "733", null, "3027", null, "1045", null, "4009", null, "1293", null, "20878", null, "2620", null, "29833", null, "4965", null, "16702", null, "2404", null, "2139", null, "623", null, "6502", null, "1283", null, "8061", null, "1821", null, "7.7", null, "0.8", null, "34.3", null, "4.8", null, "65.7", null, "4.8", null, "30.6", null, "4.8", null, "29.5", null, "4.5", null, "5.9", null, "2.2", null, "23.6", null, "4.0", null, "39.9", null, "5.7", null, "45.5", null, "6.1", null, "21.8", null, "4.7", null, "22.9", null, "4.1", null, "3.5", null, "1.7", null, "19.3", null, "3.8", null, "0.9", null, "1.1", null, "54.5", null, "6.1", null, "8.9", null, "2.9", null, "6.6", null, "2.4", null, "2.4", null, "1.6", null, "4.3", null, "1.8", null, "39.0", null, "5.9", null, "43.3", null, "5.5", null, "56.7", null, "5.5", null, "55.4", null, "5.5", null, "44.6", null, "5.5", null, "80.1", null, "4.8", null, "1.3", null, "1.1", null, "2.5", null, "1.8", null, "0.8", null, "1.0", null, "-999999999.0", "N", "-999999999.0", "N", "4.5", null, "2.7", null, "10.9", null, "3.4", null, "14.4", null, "4.5", null, "75.2", null, "4.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.8", null, "3.6", null, "38.9", null, "6.7", null, "48.3", null, "6.5", null, "334875", null, "5145", null, "131800", null, "2912", null, "203075", null, "4734", null, "181860", null, "5507", null, "39675", null, "2976", null, "13462", null, "1983", null, "26213", null, "2638", null, "113340", null, "4654", null, "101994", null, "3952", null, "77201", null, "3883", null, "24315", null, "2477", null, "9236", null, "1837", null, "15079", null, "2048", null, "478", null, "372", null, "232881", null, "5054", null, "104659", null, "4320", null, "15360", null, "1963", null, "4226", null, "854", null, "11134", null, "1841", null, "112862", null, "4642", null, "31283", null, "3144", null, "303592", null, "5505", null, "90772", null, "4382", null, "244103", null, "5043", null, "284719", null, "4744", null, "1880", null, "646", null, "2950", null, "732", null, "6496", null, "1163", null, "-999999999", "N", "-999999999", "N", "14144", null, "2199", null, "24355", null, "2596", null, "36488", null, "2871", null, "276930", null, "4394", null, "82868", null, "2417", null, "221535", null, "5720", null, "30819", null, "1868", null, "62838", null, "4182", null, "127878", null, "4764", null, "92.3", null, "0.8", null, "39.4", null, "0.8", null, "60.6", null, "0.8", null, "54.3", null, "1.3", null, "11.8", null, "0.9", null, "4.0", null, "0.6", null, "7.8", null, "0.8", null, "33.8", null, "1.3", null, "30.5", null, "1.1", null, "23.1", null, "1.1", null, "7.3", null, "0.7", null, "2.8", null, "0.5", null, "4.5", null, "0.6", null, "0.1", null, "0.1", null, "69.5", null, "1.1", null, "31.3", null, "1.2", null, "4.6", null, "0.6", null, "1.3", null, "0.3", null, "3.3", null, "0.5", null, "33.7", null, "1.3", null, "9.3", null, "0.9", null, "90.7", null, "0.9", null, "27.1", null, "1.2", null, "72.9", null, "1.2", null, "85.0", null, "0.9", null, "0.6", null, "0.2", null, "0.9", null, "0.2", null, "1.9", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "4.2", null, "0.6", null, "7.3", null, "0.8", null, "10.9", null, "0.8", null, "82.7", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.9", null, "0.8", null, "28.4", null, "1.7", null, "57.7", null, "1.6", null, "16", "02"], ["5001900US1701", "Congressional District 1 (119th Congress), Illinois", "291798", null, "6419", null, "135870", null, "4907", null, "155928", null, "6927", null, "104010", null, "5184", null, "71050", null, "5132", null, "18418", null, "2833", null, "52632", null, "4206", null, "116738", null, "5789", null, "79902", null, "4933", null, "42827", null, "3051", null, "36620", null, "4058", null, "7300", null, "1920", null, "29320", null, "3531", null, "455", null, "347", null, "211896", null, "6222", null, "61183", null, "4130", null, "34430", null, "3677", null, "11118", null, "2256", null, "23312", null, "2934", null, "116283", null, "5754", null, "53099", null, "4557", null, "238699", null, "6578", null, "83222", null, "4530", null, "208576", null, "7096", null, "110394", null, "4718", null, "146351", null, "5501", null, "958", null, "365", null, "7145", null, "1548", null, "-999999999", "N", "-999999999", "N", "10234", null, "2240", null, "16469", null, "2438", null, "21300", null, "2678", null, "106179", null, "4657", null, "69490", null, "4076", null, "175060", null, "6325", null, "25831", null, "2627", null, "56088", null, "4316", null, "93141", null, "4996", null, "-888888888", "(X)", "-888888888", "(X)", "46.6", null, "1.7", null, "53.4", null, "1.7", null, "35.6", null, "1.6", null, "24.3", null, "1.7", null, "6.3", null, "0.9", null, "18.0", null, "1.4", null, "40.0", null, "1.8", null, "27.4", null, "1.5", null, "14.7", null, "0.9", null, "12.5", null, "1.4", null, "2.5", null, "0.6", null, "10.0", null, "1.2", null, "0.2", null, "0.1", null, "72.6", null, "1.5", null, "21.0", null, "1.4", null, "11.8", null, "1.2", null, "3.8", null, "0.8", null, "8.0", null, "1.0", null, "39.9", null, "1.7", null, "18.2", null, "1.5", null, "81.8", null, "1.5", null, "28.5", null, "1.6", null, "71.5", null, "1.6", null, "37.8", null, "1.5", null, "50.2", null, "1.4", null, "0.3", null, "0.1", null, "2.4", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "3.5", null, "0.7", null, "5.6", null, "0.8", null, "7.3", null, "0.9", null, "36.4", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.8", null, "1.4", null, "32.0", null, "2.1", null, "53.2", null, "2.2", null, "62123", null, "4806", null, "29546", null, "3082", null, "32577", null, "3945", null, "7387", null, "1711", null, "26530", null, "3171", null, "4443", null, "1314", null, "22087", null, "2702", null, "28206", null, "3048", null, "21082", null, "3474", null, "5198", null, "1637", null, "15833", null, "2833", null, "1836", null, "1008", null, "13997", null, "2523", null, "51", null, "86", null, "41041", null, "3727", null, "2189", null, "600", null, "10697", null, "2004", null, "2607", null, "992", null, "8090", null, "1858", null, "28155", null, "3043", null, "27470", null, "3377", null, "34653", null, "3994", null, "26658", null, "3005", null, "35465", null, "3820", null, "7330", null, "1687", null, "49082", null, "4217", null, "342", null, "238", null, "179", null, "179", null, "-999999999", "N", "-999999999", "N", "2514", null, "1157", null, "2676", null, "1056", null, "4409", null, "1252", null, "6088", null, "1458", null, "25405", null, "2419", null, "33917", null, "3811", null, "6125", null, "1664", null, "15744", null, "2552", null, "12048", null, "2319", null, "21.3", null, "1.6", null, "47.6", null, "4.1", null, "52.4", null, "4.1", null, "11.9", null, "2.5", null, "42.7", null, "3.6", null, "7.2", null, "2.0", null, "35.6", null, "3.1", null, "45.4", null, "3.9", null, "33.9", null, "4.4", null, "8.4", null, "2.4", null, "25.5", null, "3.9", null, "3.0", null, "1.6", null, "22.5", null, "3.6", null, "0.1", null, "0.1", null, "66.1", null, "4.4", null, "3.5", null, "1.0", null, "17.2", null, "3.0", null, "4.2", null, "1.6", null, "13.0", null, "2.8", null, "45.3", null, "3.9", null, "44.2", null, "4.5", null, "55.8", null, "4.5", null, "42.9", null, "3.9", null, "57.1", null, "3.9", null, "11.8", null, "2.5", null, "79.0", null, "3.1", null, "0.6", null, "0.4", null, "0.3", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "4.0", null, "1.8", null, "4.3", null, "1.7", null, "7.1", null, "2.0", null, "9.8", null, "2.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.1", null, "4.1", null, "46.4", null, "5.8", null, "35.5", null, "5.7", null, "229675", null, "6730", null, "106324", null, "4433", null, "123351", null, "6538", null, "96623", null, "5186", null, "44520", null, "4710", null, "13975", null, "2670", null, "30545", null, "3714", null, "88532", null, "5713", null, "58820", null, "3895", null, "37629", null, "2725", null, "20787", null, "3295", null, "5464", null, "1761", null, "15323", null, "2566", null, "404", null, "338", null, "170855", null, "6070", null, "58994", null, "4261", null, "23733", null, "3038", null, "8511", null, "2019", null, "15222", null, "2468", null, "88128", null, "5646", null, "25629", null, "3352", null, "204046", null, "6224", null, "56564", null, "3463", null, "173111", null, "6319", null, "103064", null, "4241", null, "97269", null, "5580", null, "616", null, "330", null, "6966", null, "1550", null, "-999999999", "N", "-999999999", "N", "7720", null, "2000", null, "13793", null, "2293", null, "16891", null, "2587", null, "100091", null, "4269", null, "84119", null, "3223", null, "141143", null, "6126", null, "19706", null, "2350", null, "40344", null, "3673", null, "81093", null, "4914", null, "78.7", null, "1.6", null, "46.3", null, "1.9", null, "53.7", null, "1.9", null, "42.1", null, "2.1", null, "19.4", null, "1.9", null, "6.1", null, "1.1", null, "13.3", null, "1.6", null, "38.5", null, "2.1", null, "25.6", null, "1.5", null, "16.4", null, "1.1", null, "9.1", null, "1.4", null, "2.4", null, "0.8", null, "6.7", null, "1.1", null, "0.2", null, "0.1", null, "74.4", null, "1.5", null, "25.7", null, "1.8", null, "10.3", null, "1.3", null, "3.7", null, "0.9", null, "6.6", null, "1.1", null, "38.4", null, "2.1", null, "11.2", null, "1.4", null, "88.8", null, "1.4", null, "24.6", null, "1.4", null, "75.4", null, "1.4", null, "44.9", null, "1.8", null, "42.4", null, "1.8", null, "0.3", null, "0.1", null, "3.0", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "3.4", null, "0.8", null, "6.0", null, "1.0", null, "7.4", null, "1.1", null, "43.6", null, "1.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.0", null, "1.6", null, "28.6", null, "2.3", null, "57.5", null, "2.4", null, "17", "01"], ["5001900US1702", "Congressional District 2 (119th Congress), Illinois", "298435", null, "6421", null, "136194", null, "5655", null, "162241", null, "5962", null, "105161", null, "3936", null, "73334", null, "4189", null, "16587", null, "2804", null, "56747", null, "4260", null, "119940", null, "6247", null, "80398", null, "4667", null, "37516", null, "3229", null, "42176", null, "4036", null, "8491", null, "1820", null, "33685", null, "3944", null, "706", null, "521", null, "218037", null, "7175", null, "67645", null, "3720", null, "31158", null, "3147", null, "8096", null, "2031", null, "23062", null, "2695", null, "119234", null, "6233", null, "52107", null, "4750", null, "246328", null, "6925", null, "87185", null, "4484", null, "211250", null, "6788", null, "117947", null, "3896", null, "140286", null, "5797", null, "1767", null, "684", null, "3595", null, "832", null, "-999999999", "N", "-999999999", "N", "17914", null, "2558", null, "16873", null, "2820", null, "34113", null, "3414", null, "113607", null, "3899", null, "63599", null, "2967", null, "178495", null, "4547", null, "26562", null, "2235", null, "66497", null, "4304", null, "85436", null, "4647", null, "-888888888", "(X)", "-888888888", "(X)", "45.6", null, "1.6", null, "54.4", null, "1.6", null, "35.2", null, "1.6", null, "24.6", null, "1.2", null, "5.6", null, "0.9", null, "19.0", null, "1.3", null, "40.2", null, "1.6", null, "26.9", null, "1.6", null, "12.6", null, "1.2", null, "14.1", null, "1.3", null, "2.8", null, "0.6", null, "11.3", null, "1.3", null, "0.2", null, "0.2", null, "73.1", null, "1.6", null, "22.7", null, "1.3", null, "10.4", null, "1.0", null, "2.7", null, "0.7", null, "7.7", null, "0.9", null, "40.0", null, "1.6", null, "17.5", null, "1.5", null, "82.5", null, "1.5", null, "29.2", null, "1.5", null, "70.8", null, "1.5", null, "39.5", null, "1.3", null, "47.0", null, "1.4", null, "0.6", null, "0.2", null, "1.2", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "6.0", null, "0.9", null, "5.7", null, "0.9", null, "11.4", null, "1.1", null, "38.1", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.9", null, "1.2", null, "37.3", null, "2.2", null, "47.9", null, "2.3", null, "62742", null, "4825", null, "23024", null, "3239", null, "39718", null, "3988", null, "11996", null, "2328", null, "27273", null, "3605", null, "3754", null, "1199", null, "23519", null, "3314", null, "23473", null, "2991", null, "26846", null, "3625", null, "7504", null, "2051", null, "19318", null, "3129", null, "2087", null, "930", null, "17231", null, "3007", null, "24", null, "43", null, "35896", null, "3585", null, "4492", null, "1218", null, "7955", null, "1577", null, "1667", null, "622", null, "6288", null, "1573", null, "23449", null, "2989", null, "27585", null, "3436", null, "35157", null, "4078", null, "26614", null, "3409", null, "36128", null, "4102", null, "15939", null, "1955", null, "38945", null, "3654", null, "458", null, "494", null, "258", null, "213", null, "-999999999", "N", "-999999999", "N", "3932", null, "1300", null, "3210", null, "1014", null, "7573", null, "1943", null, "14512", null, "1885", null, "28071", null, "2908", null, "39269", null, "4320", null, "5489", null, "1350", null, "21845", null, "3184", null, "11935", null, "2317", null, "21.0", null, "1.6", null, "36.7", null, "4.2", null, "63.3", null, "4.2", null, "19.1", null, "3.4", null, "43.5", null, "4.3", null, "6.0", null, "1.8", null, "37.5", null, "4.1", null, "37.4", null, "4.3", null, "42.8", null, "4.3", null, "12.0", null, "3.0", null, "30.8", null, "4.3", null, "3.3", null, "1.4", null, "27.5", null, "4.3", null, "0.0", null, "0.1", null, "57.2", null, "4.3", null, "7.2", null, "2.0", null, "12.7", null, "2.2", null, "2.7", null, "1.0", null, "10.0", null, "2.2", null, "37.4", null, "4.3", null, "44.0", null, "4.6", null, "56.0", null, "4.6", null, "42.4", null, "4.5", null, "57.6", null, "4.5", null, "25.4", null, "2.6", null, "62.1", null, "3.5", null, "0.7", null, "0.8", null, "0.4", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "6.3", null, "2.0", null, "5.1", null, "1.5", null, "12.1", null, "2.8", null, "23.1", null, "2.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.0", null, "3.1", null, "55.6", null, "5.4", null, "30.4", null, "4.9", null, "235693", null, "7239", null, "113170", null, "5016", null, "122523", null, "6374", null, "93165", null, "3928", null, "46061", null, "3868", null, "12833", null, "2428", null, "33228", null, "3669", null, "96467", null, "5805", null, "53552", null, "4177", null, "30012", null, "2901", null, "22858", null, "3176", null, "6404", null, "1642", null, "16454", null, "2789", null, "682", null, "521", null, "182141", null, "7014", null, "63153", null, "3500", null, "23203", null, "3072", null, "6429", null, "1867", null, "16774", null, "2642", null, "95785", null, "5765", null, "24522", null, "2903", null, "211171", null, "7160", null, "60571", null, "3948", null, "175122", null, "6784", null, "102008", null, "3892", null, "101341", null, "5856", null, "1309", null, "607", null, "3337", null, "831", null, "-999999999", "N", "-999999999", "N", "13982", null, "2476", null, "13663", null, "2566", null, "26540", null, "3018", null, "99095", null, "3790", null, "73875", null, "2750", null, "139226", null, "4672", null, "21073", null, "2266", null, "44652", null, "3576", null, "73501", null, "4184", null, "79.0", null, "1.6", null, "48.0", null, "1.9", null, "52.0", null, "1.9", null, "39.5", null, "1.9", null, "19.5", null, "1.4", null, "5.4", null, "1.0", null, "14.1", null, "1.4", null, "40.9", null, "1.7", null, "22.7", null, "1.7", null, "12.7", null, "1.3", null, "9.7", null, "1.2", null, "2.7", null, "0.7", null, "7.0", null, "1.1", null, "0.3", null, "0.2", null, "77.3", null, "1.7", null, "26.8", null, "1.5", null, "9.8", null, "1.3", null, "2.7", null, "0.8", null, "7.1", null, "1.1", null, "40.6", null, "1.7", null, "10.4", null, "1.2", null, "89.6", null, "1.2", null, "25.7", null, "1.6", null, "74.3", null, "1.6", null, "43.3", null, "1.5", null, "43.0", null, "1.7", null, "0.6", null, "0.3", null, "1.4", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "5.9", null, "1.0", null, "5.8", null, "1.1", null, "11.3", null, "1.2", null, "42.0", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.1", null, "1.6", null, "32.1", null, "2.3", null, "52.8", null, "2.4", null, "17", "02"], ["5001900US1703", "Congressional District 3 (119th Congress), Illinois", "270654", null, "6304", null, "102825", null, "4583", null, "167829", null, "5525", null, "122039", null, "5298", null, "51071", null, "4035", null, "16005", null, "2494", null, "35066", null, "3338", null, "97544", null, "5135", null, "77596", null, "5522", null, "51150", null, "4557", null, "25709", null, "3566", null, "7138", null, "1894", null, "18571", null, "2879", null, "737", null, "645", null, "193058", null, "6487", null, "70889", null, "3768", null, "25362", null, "2658", null, "8867", null, "1785", null, "16495", null, "2358", null, "96807", null, "5158", null, "32641", null, "3923", null, "238013", null, "6492", null, "60149", null, "3999", null, "210505", null, "7182", null, "143830", null, "4848", null, "18490", null, "3388", null, "4632", null, "1175", null, "15832", null, "1918", null, "-999999999", "N", "-999999999", "N", "49899", null, "4190", null, "37874", null, "3991", null, "98202", null, "5208", null, "131815", null, "4916", null, "87098", null, "3516", null, "173110", null, "5703", null, "19421", null, "2672", null, "48102", null, "3673", null, "105587", null, "4762", null, "-888888888", "(X)", "-888888888", "(X)", "38.0", null, "1.4", null, "62.0", null, "1.4", null, "45.1", null, "1.8", null, "18.9", null, "1.4", null, "5.9", null, "0.9", null, "13.0", null, "1.2", null, "36.0", null, "1.6", null, "28.7", null, "1.9", null, "18.9", null, "1.6", null, "9.5", null, "1.3", null, "2.6", null, "0.7", null, "6.9", null, "1.0", null, "0.3", null, "0.2", null, "71.3", null, "1.9", null, "26.2", null, "1.4", null, "9.4", null, "1.0", null, "3.3", null, "0.7", null, "6.1", null, "0.8", null, "35.8", null, "1.6", null, "12.1", null, "1.4", null, "87.9", null, "1.4", null, "22.2", null, "1.5", null, "77.8", null, "1.5", null, "53.1", null, "1.5", null, "6.8", null, "1.3", null, "1.7", null, "0.4", null, "5.8", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "18.4", null, "1.5", null, "14.0", null, "1.4", null, "36.3", null, "1.7", null, "48.7", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.2", null, "1.5", null, "27.8", null, "1.9", null, "61.0", null, "2.1", null, "35859", null, "3505", null, "16253", null, "2397", null, "19606", null, "3026", null, "8915", null, "1744", null, "15782", null, "2701", null, "3753", null, "1086", null, "12029", null, "2392", null, "11162", null, "2093", null, "14853", null, "2099", null, "5041", null, "1298", null, "9746", null, "1986", null, "2154", null, "956", null, "7592", null, "2000", null, "66", null, "108", null, "21006", null, "2665", null, "3874", null, "1079", null, "6036", null, "1540", null, "1599", null, "789", null, "4437", null, "1291", null, "11096", null, "2078", null, "13140", null, "2453", null, "22719", null, "2959", null, "14687", null, "2191", null, "21172", null, "2866", null, "12081", null, "1818", null, "5114", null, "1895", null, "552", null, "418", null, "1751", null, "712", null, "-999999999", "N", "-999999999", "N", "9301", null, "1744", null, "7060", null, "1716", null, "19880", null, "2438", null, "8774", null, "1490", null, "35792", null, "7126", null, "24697", null, "2938", null, "4339", null, "1436", null, "11371", null, "2088", null, "8987", null, "1913", null, "13.2", null, "1.3", null, "45.3", null, "5.8", null, "54.7", null, "5.8", null, "24.9", null, "4.6", null, "44.0", null, "5.9", null, "10.5", null, "2.9", null, "33.5", null, "5.5", null, "31.1", null, "4.9", null, "41.4", null, "4.4", null, "14.1", null, "3.5", null, "27.2", null, "4.7", null, "6.0", null, "2.7", null, "21.2", null, "5.0", null, "0.2", null, "0.3", null, "58.6", null, "4.4", null, "10.8", null, "2.9", null, "16.8", null, "3.8", null, "4.5", null, "2.1", null, "12.4", null, "3.4", null, "30.9", null, "4.8", null, "36.6", null, "5.7", null, "63.4", null, "5.7", null, "41.0", null, "5.0", null, "59.0", null, "5.0", null, "33.7", null, "4.1", null, "14.3", null, "4.9", null, "1.5", null, "1.2", null, "4.9", null, "2.0", null, "-999999999.0", "N", "-999999999.0", "N", "25.9", null, "4.4", null, "19.7", null, "4.0", null, "55.4", null, "4.8", null, "24.5", null, "3.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.6", null, "5.3", null, "46.0", null, "6.7", null, "36.4", null, "6.6", null, "234795", null, "6628", null, "86572", null, "4250", null, "148223", null, "5850", null, "113124", null, "5368", null, "35289", null, "3372", null, "12252", null, "2252", null, "23037", null, "2502", null, "86382", null, "4763", null, "62743", null, "5365", null, "46109", null, "4549", null, "15963", null, "2769", null, "4984", null, "1526", null, "10979", null, "2099", null, "671", null, "628", null, "172052", null, "6170", null, "67015", null, "3643", null, "19326", null, "2213", null, "7268", null, "1652", null, "12058", null, "1821", null, "85711", null, "4845", null, "19501", null, "2928", null, "215294", null, "6812", null, "45462", null, "3903", null, "189333", null, "7376", null, "131749", null, "4605", null, "13376", null, "2968", null, "4080", null, "1066", null, "14081", null, "1779", null, "-999999999", "N", "-999999999", "N", "40598", null, "3857", null, "30814", null, "3969", null, "78322", null, "5085", null, "123041", null, "4625", null, "97282", null, "5146", null, "148413", null, "5573", null, "15082", null, "2443", null, "36731", null, "3159", null, "96600", null, "4827", null, "86.8", null, "1.3", null, "36.9", null, "1.6", null, "63.1", null, "1.6", null, "48.2", null, "1.9", null, "15.0", null, "1.4", null, "5.2", null, "0.9", null, "9.8", null, "1.1", null, "36.8", null, "1.7", null, "26.7", null, "2.0", null, "19.6", null, "1.8", null, "6.8", null, "1.1", null, "2.1", null, "0.6", null, "4.7", null, "0.9", null, "0.3", null, "0.3", null, "73.3", null, "2.0", null, "28.5", null, "1.5", null, "8.2", null, "0.9", null, "3.1", null, "0.7", null, "5.1", null, "0.8", null, "36.5", null, "1.7", null, "8.3", null, "1.2", null, "91.7", null, "1.2", null, "19.4", null, "1.7", null, "80.6", null, "1.7", null, "56.1", null, "1.7", null, "5.7", null, "1.2", null, "1.7", null, "0.5", null, "6.0", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "17.3", null, "1.6", null, "13.1", null, "1.6", null, "33.4", null, "1.8", null, "52.4", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.2", null, "1.6", null, "24.7", null, "2.0", null, "65.1", null, "2.2", null, "17", "03"], ["5001900US1704", "Congressional District 4 (119th Congress), Illinois", "234571", null, "6961", null, "101297", null, "4663", null, "133274", null, "5843", null, "110807", null, "4560", null, "58441", null, "4271", null, "20599", null, "2723", null, "37842", null, "4177", null, "65323", null, "4738", null, "79263", null, "4729", null, "48986", null, "3705", null, "29961", null, "3392", null, "9012", null, "2130", null, "20949", null, "3172", null, "316", null, "321", null, "155308", null, "6423", null, "61821", null, "4246", null, "28480", null, "3041", null, "11587", null, "2200", null, "16893", null, "2587", null, "65007", null, "4688", null, "33553", null, "3759", null, "201018", null, "6966", null, "63481", null, "4485", null, "171090", null, "7104", null, "90207", null, "6296", null, "13897", null, "2636", null, "6073", null, "1617", null, "12218", null, "1959", null, "-999999999", "N", "-999999999", "N", "72349", null, "4745", null, "39775", null, "3688", null, "131630", null, "4472", null, "73717", null, "5143", null, "80103", null, "4258", null, "169248", null, "6214", null, "17782", null, "2608", null, "51459", null, "4262", null, "100007", null, "5470", null, "-888888888", "(X)", "-888888888", "(X)", "43.2", null, "1.7", null, "56.8", null, "1.7", null, "47.2", null, "1.8", null, "24.9", null, "1.5", null, "8.8", null, "1.1", null, "16.1", null, "1.6", null, "27.8", null, "1.8", null, "33.8", null, "1.8", null, "20.9", null, "1.6", null, "12.8", null, "1.3", null, "3.8", null, "0.9", null, "8.9", null, "1.3", null, "0.1", null, "0.1", null, "66.2", null, "1.8", null, "26.4", null, "1.7", null, "12.1", null, "1.2", null, "4.9", null, "0.9", null, "7.2", null, "1.1", null, "27.7", null, "1.7", null, "14.3", null, "1.5", null, "85.7", null, "1.5", null, "27.1", null, "1.8", null, "72.9", null, "1.8", null, "38.5", null, "2.1", null, "5.9", null, "1.1", null, "2.6", null, "0.7", null, "5.2", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "30.8", null, "2.0", null, "17.0", null, "1.5", null, "56.1", null, "1.8", null, "31.4", null, "1.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.5", null, "1.5", null, "30.4", null, "2.2", null, "59.1", null, "2.6", null, "41994", null, "4233", null, "17950", null, "2591", null, "24044", null, "3667", null, "14261", null, "2642", null, "19110", null, "3484", null, "5708", null, "1731", null, "13402", null, "2860", null, "8623", null, "2030", null, "24945", null, "3333", null, "11161", null, "2308", null, "13664", null, "2777", null, "3363", null, "1328", null, "10301", null, "2518", null, "120", null, "206", null, "17049", null, "2476", null, "3100", null, "1010", null, "5446", null, "1423", null, "2345", null, "1123", null, "3101", null, "988", null, "8503", null, "2015", null, "14395", null, "2621", null, "27599", null, "3253", null, "19076", null, "2796", null, "22918", null, "3339", null, "8990", null, "2048", null, "5010", null, "1971", null, "1408", null, "853", null, "2976", null, "1289", null, "-999999999", "N", "-999999999", "N", "16654", null, "2841", null, "6956", null, "1528", null, "28400", null, "3007", null, "5138", null, "1296", null, "42991", null, "5110", null, "33371", null, "3832", null, "3779", null, "1260", null, "14721", null, "2923", null, "14871", null, "2435", null, "17.9", null, "1.7", null, "42.7", null, "5.4", null, "57.3", null, "5.4", null, "34.0", null, "5.8", null, "45.5", null, "6.4", null, "13.6", null, "3.9", null, "31.9", null, "5.4", null, "20.5", null, "4.4", null, "59.4", null, "4.7", null, "26.6", null, "5.1", null, "32.5", null, "5.1", null, "8.0", null, "3.1", null, "24.5", null, "4.8", null, "0.3", null, "0.5", null, "40.6", null, "4.7", null, "7.4", null, "2.4", null, "13.0", null, "3.2", null, "5.6", null, "2.6", null, "7.4", null, "2.3", null, "20.2", null, "4.3", null, "34.3", null, "4.8", null, "65.7", null, "4.8", null, "45.4", null, "5.3", null, "54.6", null, "5.3", null, "21.4", null, "4.6", null, "11.9", null, "4.3", null, "3.4", null, "2.0", null, "7.1", null, "2.9", null, "-999999999.0", "N", "-999999999.0", "N", "39.7", null, "6.0", null, "16.6", null, "3.5", null, "67.6", null, "4.8", null, "12.2", null, "2.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.3", null, "3.5", null, "44.1", null, "6.3", null, "44.6", null, "6.4", null, "192577", null, "6953", null, "83347", null, "4502", null, "109230", null, "5738", null, "96546", null, "4590", null, "39331", null, "3944", null, "14891", null, "2260", null, "24440", null, "3329", null, "56700", null, "4402", null, "54318", null, "4229", null, "37825", null, "3427", null, "16297", null, "2829", null, "5649", null, "1571", null, "10648", null, "2405", null, "196", null, "256", null, "138259", null, "6202", null, "58721", null, "4283", null, "23034", null, "2880", null, "9242", null, "1927", null, "13792", null, "2323", null, "56504", null, "4355", null, "19158", null, "2937", null, "173419", null, "6746", null, "44405", null, "3631", null, "148172", null, "6907", null, "81217", null, "5234", null, "8887", null, "1867", null, "4665", null, "1320", null, "9242", null, "1775", null, "-999999999", "N", "-999999999", "N", "55695", null, "4446", null, "32819", null, "3517", null, "103230", null, "4863", null, "68579", null, "4728", null, "87325", null, "3948", null, "135877", null, "5759", null, "14003", null, "2102", null, "36738", null, "3476", null, "85136", null, "5053", null, "82.1", null, "1.7", null, "43.3", null, "1.9", null, "56.7", null, "1.9", null, "50.1", null, "2.1", null, "20.4", null, "1.8", null, "7.7", null, "1.1", null, "12.7", null, "1.6", null, "29.4", null, "1.9", null, "28.2", null, "1.9", null, "19.6", null, "1.7", null, "8.5", null, "1.4", null, "2.9", null, "0.8", null, "5.5", null, "1.2", null, "0.1", null, "0.1", null, "71.8", null, "1.9", null, "30.5", null, "2.1", null, "12.0", null, "1.4", null, "4.8", null, "1.0", null, "7.2", null, "1.2", null, "29.3", null, "1.9", null, "9.9", null, "1.5", null, "90.1", null, "1.5", null, "23.1", null, "1.8", null, "76.9", null, "1.8", null, "42.2", null, "2.1", null, "4.6", null, "1.0", null, "2.4", null, "0.7", null, "4.8", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "28.9", null, "2.2", null, "17.0", null, "1.7", null, "53.6", null, "2.0", null, "35.6", null, "1.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.3", null, "1.5", null, "27.0", null, "2.3", null, "62.7", null, "2.5", null, "17", "04"], ["5001900US1705", "Congressional District 5 (119th Congress), Illinois", "353361", null, "7211", null, "117259", null, "4916", null, "236102", null, "6762", null, "144748", null, "5538", null, "30735", null, "3515", null, "9980", null, "1988", null, "20755", null, "2719", null, "177878", null, "6940", null, "74400", null, "4561", null, "61391", null, "3918", null, "12715", null, "2242", null, "4627", null, "1305", null, "8088", null, "1712", null, "294", null, "313", null, "278961", null, "7783", null, "83357", null, "4724", null, "18020", null, "2606", null, "5353", null, "1515", null, "12667", null, "2193", null, "177584", null, "6981", null, "28066", null, "3157", null, "325295", null, "7682", null, "54307", null, "3878", null, "299054", null, "7470", null, "268415", null, "6701", null, "7720", null, "1995", null, "2076", null, "1004", null, "33534", null, "3275", null, "-999999999", "N", "-999999999", "N", "13211", null, "2616", null, "28217", null, "3526", null, "37805", null, "4108", null, "259444", null, "6765", null, "111545", null, "3305", null, "175483", null, "5918", null, "17702", null, "2526", null, "43325", null, "3845", null, "114456", null, "4861", null, "-888888888", "(X)", "-888888888", "(X)", "33.2", null, "1.3", null, "66.8", null, "1.3", null, "41.0", null, "1.5", null, "8.7", null, "1.0", null, "2.8", null, "0.5", null, "5.9", null, "0.8", null, "50.3", null, "1.5", null, "21.1", null, "1.3", null, "17.4", null, "1.2", null, "3.6", null, "0.6", null, "1.3", null, "0.4", null, "2.3", null, "0.5", null, "0.1", null, "0.1", null, "78.9", null, "1.3", null, "23.6", null, "1.3", null, "5.1", null, "0.7", null, "1.5", null, "0.4", null, "3.6", null, "0.6", null, "50.3", null, "1.5", null, "7.9", null, "0.9", null, "92.1", null, "0.9", null, "15.4", null, "1.1", null, "84.6", null, "1.1", null, "76.0", null, "1.3", null, "2.2", null, "0.6", null, "0.6", null, "0.3", null, "9.5", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "3.7", null, "0.7", null, "8.0", null, "0.9", null, "10.7", null, "1.2", null, "73.4", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.1", null, "1.4", null, "24.7", null, "1.9", null, "65.2", null, "2.2", null, "19628", null, "2473", null, "9726", null, "1855", null, "9902", null, "2138", null, "5729", null, "1668", null, "4939", null, "1399", null, "1877", null, "789", null, "3062", null, "1062", null, "8960", null, "1957", null, "7385", null, "1932", null, "4409", null, "1555", null, "2802", null, "1190", null, "1006", null, "654", null, "1796", null, "930", null, "174", null, "286", null, "12243", null, "2011", null, "1320", null, "567", null, "2137", null, "717", null, "871", null, "484", null, "1266", null, "494", null, "8786", null, "1952", null, "6770", null, "1749", null, "12858", null, "2376", null, "8368", null, "1609", null, "11260", null, "2223", null, "11675", null, "1956", null, "1735", null, "1339", null, "515", null, "670", null, "1714", null, "782", null, "-999999999", "N", "-999999999", "N", "1879", null, "939", null, "2110", null, "1028", null, "4144", null, "1424", null, "10999", null, "1804", null, "35597", null, "12715", null, "10668", null, "2037", null, "1115", null, "405", null, "4611", null, "1478", null, "4942", null, "1537", null, "5.6", null, "0.7", null, "49.6", null, "8.0", null, "50.4", null, "8.0", null, "29.2", null, "7.3", null, "25.2", null, "6.8", null, "9.6", null, "3.8", null, "15.6", null, "5.4", null, "45.6", null, "8.1", null, "37.6", null, "8.0", null, "22.5", null, "7.0", null, "14.3", null, "5.7", null, "5.1", null, "3.2", null, "9.2", null, "4.6", null, "0.9", null, "1.4", null, "62.4", null, "8.0", null, "6.7", null, "2.9", null, "10.9", null, "3.8", null, "4.4", null, "2.4", null, "6.4", null, "2.7", null, "44.8", null, "8.3", null, "34.5", null, "8.2", null, "65.5", null, "8.2", null, "42.6", null, "7.4", null, "57.4", null, "7.4", null, "59.5", null, "8.1", null, "8.8", null, "6.7", null, "2.6", null, "3.3", null, "8.7", null, "3.9", null, "-999999999.0", "N", "-999999999.0", "N", "9.6", null, "4.6", null, "10.7", null, "4.8", null, "21.1", null, "6.4", null, "56.0", null, "7.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.5", null, "4.1", null, "43.2", null, "10.7", null, "46.3", null, "10.5", null, "333733", null, "7278", null, "107533", null, "4845", null, "226200", null, "7006", null, "139019", null, "5697", null, "25796", null, "3333", null, "8103", null, "1824", null, "17693", null, "2599", null, "168918", null, "6843", null, "67015", null, "4129", null, "56982", null, "3719", null, "9913", null, "1837", null, "3621", null, "1060", null, "6292", null, "1479", null, "120", null, "139", null, "266718", null, "7664", null, "82037", null, "4615", null, "15883", null, "2597", null, "4482", null, "1468", null, "11401", null, "2179", null, "168798", null, "6870", null, "21296", null, "2782", null, "312437", null, "7696", null, "45939", null, "3631", null, "287794", null, "7686", null, "256740", null, "6786", null, "5985", null, "1707", null, "1561", null, "703", null, "31820", null, "3233", null, "-999999999", "N", "-999999999", "N", "11332", null, "2408", null, "26107", null, "3514", null, "33661", null, "3841", null, "248445", null, "6961", null, "117115", null, "4790", null, "164815", null, "6096", null, "16587", null, "2455", null, "38714", null, "3613", null, "109514", null, "4865", null, "94.4", null, "0.7", null, "32.2", null, "1.3", null, "67.8", null, "1.3", null, "41.7", null, "1.6", null, "7.7", null, "1.0", null, "2.4", null, "0.5", null, "5.3", null, "0.8", null, "50.6", null, "1.6", null, "20.1", null, "1.2", null, "17.1", null, "1.1", null, "3.0", null, "0.5", null, "1.1", null, "0.3", null, "1.9", null, "0.4", null, "0.0", null, "0.1", null, "79.9", null, "1.2", null, "24.6", null, "1.3", null, "4.8", null, "0.8", null, "1.3", null, "0.4", null, "3.4", null, "0.6", null, "50.6", null, "1.6", null, "6.4", null, "0.8", null, "93.6", null, "0.8", null, "13.8", null, "1.1", null, "86.2", null, "1.1", null, "76.9", null, "1.3", null, "1.8", null, "0.5", null, "0.5", null, "0.2", null, "9.5", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "3.4", null, "0.7", null, "7.8", null, "1.0", null, "10.1", null, "1.1", null, "74.4", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.1", null, "1.4", null, "23.5", null, "1.9", null, "66.4", null, "2.2", null, "17", "05"], ["5001900US1706", "Congressional District 6 (119th Congress), Illinois", "300456", null, "6579", null, "140875", null, "4875", null, "159581", null, "5641", null, "152219", null, "5227", null, "42456", null, "4082", null, "11831", null, "2113", null, "30625", null, "3161", null, "105781", null, "6434", null, "83602", null, "4584", null, "62651", null, "4050", null, "20683", null, "2813", null, "5324", null, "1396", null, "15359", null, "2404", null, "268", null, "230", null, "216854", null, "7301", null, "89568", null, "4875", null, "21773", null, "2819", null, "6507", null, "1509", null, "15266", null, "2263", null, "105513", null, "6438", null, "29565", null, "3184", null, "270891", null, "7342", null, "63857", null, "4153", null, "236599", null, "6402", null, "229980", null, "6337", null, "16411", null, "3083", null, "763", null, "490", null, "17465", null, "2371", null, "-999999999", "N", "-999999999", "N", "13713", null, "2796", null, "22124", null, "2673", null, "37045", null, "3862", null, "221787", null, "6365", null, "96658", null, "3039", null, "194675", null, "5797", null, "28412", null, "2835", null, "54581", null, "4574", null, "111682", null, "4992", null, "-888888888", "(X)", "-888888888", "(X)", "46.9", null, "1.4", null, "53.1", null, "1.4", null, "50.7", null, "1.8", null, "14.1", null, "1.3", null, "3.9", null, "0.7", null, "10.2", null, "1.0", null, "35.2", null, "1.8", null, "27.8", null, "1.5", null, "20.9", null, "1.4", null, "6.9", null, "0.9", null, "1.8", null, "0.5", null, "5.1", null, "0.8", null, "0.1", null, "0.1", null, "72.2", null, "1.5", null, "29.8", null, "1.6", null, "7.2", null, "0.9", null, "2.2", null, "0.5", null, "5.1", null, "0.7", null, "35.1", null, "1.8", null, "9.8", null, "1.1", null, "90.2", null, "1.1", null, "21.3", null, "1.3", null, "78.7", null, "1.3", null, "76.5", null, "1.5", null, "5.5", null, "1.0", null, "0.3", null, "0.2", null, "5.8", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "4.6", null, "0.9", null, "7.4", null, "0.9", null, "12.3", null, "1.2", null, "73.8", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.6", null, "1.4", null, "28.0", null, "2.1", null, "57.4", null, "2.1", null, "25439", null, "2921", null, "10825", null, "1781", null, "14614", null, "2723", null, "8837", null, "1729", null, "6943", null, "1613", null, "1317", null, "691", null, "5626", null, "1483", null, "9659", null, "1775", null, "10566", null, "2089", null, "6056", null, "1578", null, "4449", null, "1339", null, "437", null, "301", null, "4012", null, "1344", null, "61", null, "104", null, "14873", null, "2043", null, "2781", null, "770", null, "2494", null, "812", null, "880", null, "516", null, "1614", null, "572", null, "9598", null, "1775", null, "9333", null, "1798", null, "16106", null, "2378", null, "10572", null, "1755", null, "14867", null, "2486", null, "17334", null, "2714", null, "2417", null, "1080", null, "165", null, "163", null, "1277", null, "638", null, "-999999999", "N", "-999999999", "N", "1461", null, "813", null, "2785", null, "1127", null, "3770", null, "1229", null, "16789", null, "2736", null, "30344", null, "7899", null, "15780", null, "2414", null, "2500", null, "881", null, "6207", null, "1552", null, "7073", null, "1788", null, "8.5", null, "1.0", null, "42.6", null, "6.7", null, "57.4", null, "6.7", null, "34.7", null, "5.4", null, "27.3", null, "5.3", null, "5.2", null, "2.6", null, "22.1", null, "5.2", null, "38.0", null, "5.8", null, "41.5", null, "5.8", null, "23.8", null, "5.0", null, "17.5", null, "4.9", null, "1.7", null, "1.2", null, "15.8", null, "4.9", null, "0.2", null, "0.4", null, "58.5", null, "5.8", null, "10.9", null, "3.2", null, "9.8", null, "2.9", null, "3.5", null, "1.9", null, "6.3", null, "2.1", null, "37.7", null, "5.8", null, "36.7", null, "5.7", null, "63.3", null, "5.7", null, "41.6", null, "5.9", null, "58.4", null, "5.9", null, "68.1", null, "6.8", null, "9.5", null, "4.1", null, "0.6", null, "0.6", null, "5.0", null, "2.6", null, "-999999999.0", "N", "-999999999.0", "N", "5.7", null, "3.1", null, "10.9", null, "4.2", null, "14.8", null, "4.6", null, "66.0", null, "6.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.8", null, "5.7", null, "39.3", null, "8.0", null, "44.8", null, "7.8", null, "275017", null, "6709", null, "130050", null, "4602", null, "144967", null, "5574", null, "143382", null, "5204", null, "35513", null, "3866", null, "10514", null, "2117", null, "24999", null, "2838", null, "96122", null, "6053", null, "73036", null, "4599", null, "56595", null, "3816", null, "16234", null, "2532", null, "4887", null, "1374", null, "11347", null, "2087", null, "207", null, "200", null, "201981", null, "7157", null, "86787", null, "4659", null, "19279", null, "2891", null, "5627", null, "1456", null, "13652", null, "2225", null, "95915", null, "6061", null, "20232", null, "2817", null, "254785", null, "7077", null, "53285", null, "3685", null, "221732", null, "6762", null, "212646", null, "5970", null, "13994", null, "2779", null, "598", null, "431", null, "16188", null, "2294", null, "-999999999", "N", "-999999999", "N", "12252", null, "2699", null, "19339", null, "2424", null, "33275", null, "3745", null, "204998", null, "5889", null, "101024", null, "1976", null, "178895", null, "6160", null, "25912", null, "2794", null, "48374", null, "4303", null, "104609", null, "4892", null, "91.5", null, "1.0", null, "47.3", null, "1.4", null, "52.7", null, "1.4", null, "52.1", null, "1.8", null, "12.9", null, "1.3", null, "3.8", null, "0.7", null, "9.1", null, "1.0", null, "35.0", null, "1.9", null, "26.6", null, "1.6", null, "20.6", null, "1.4", null, "5.9", null, "0.9", null, "1.8", null, "0.5", null, "4.1", null, "0.8", null, "0.1", null, "0.1", null, "73.4", null, "1.6", null, "31.6", null, "1.6", null, "7.0", null, "1.0", null, "2.0", null, "0.5", null, "5.0", null, "0.8", null, "34.9", null, "1.9", null, "7.4", null, "1.0", null, "92.6", null, "1.0", null, "19.4", null, "1.3", null, "80.6", null, "1.3", null, "77.3", null, "1.5", null, "5.1", null, "1.0", null, "0.2", null, "0.2", null, "5.9", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "4.5", null, "1.0", null, "7.0", null, "0.8", null, "12.1", null, "1.3", null, "74.5", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.5", null, "1.5", null, "27.0", null, "2.0", null, "58.5", null, "2.1", null, "17", "06"], ["5001900US1707", "Congressional District 7 (119th Congress), Illinois", "340542", null, "9132", null, "104671", null, "6633", null, "235871", null, "9805", null, "95428", null, "6453", null, "61950", null, "5195", null, "12113", null, "2112", null, "49837", null, "4851", null, "183164", null, "9469", null, "71917", null, "5357", null, "33714", null, "3777", null, "37359", null, "4183", null, "6620", null, "1699", null, "30739", null, "3836", null, "844", null, "686", null, "268625", null, "9409", null, "61714", null, "5316", null, "24591", null, "2833", null, "5493", null, "1232", null, "19098", null, "2630", null, "182320", null, "9413", null, "55910", null, "4835", null, "284632", null, "9130", null, "73705", null, "6156", null, "266837", null, "10092", null, "130540", null, "7717", null, "120053", null, "5757", null, "1713", null, "721", null, "40781", null, "4779", null, "-999999999", "N", "-999999999", "N", "24808", null, "3771", null, "22647", null, "3209", null, "49564", null, "5401", null, "121801", null, "7562", null, "90223", null, "4341", null, "157378", null, "6671", null, "16632", null, "2095", null, "52350", null, "4837", null, "88396", null, "5794", null, "-888888888", "(X)", "-888888888", "(X)", "30.7", null, "1.9", null, "69.3", null, "1.9", null, "28.0", null, "1.9", null, "18.2", null, "1.5", null, "3.6", null, "0.6", null, "14.6", null, "1.5", null, "53.8", null, "2.0", null, "21.1", null, "1.5", null, "9.9", null, "1.1", null, "11.0", null, "1.2", null, "1.9", null, "0.5", null, "9.0", null, "1.1", null, "0.2", null, "0.2", null, "78.9", null, "1.5", null, "18.1", null, "1.6", null, "7.2", null, "0.9", null, "1.6", null, "0.4", null, "5.6", null, "0.8", null, "53.5", null, "1.9", null, "16.4", null, "1.4", null, "83.6", null, "1.4", null, "21.6", null, "1.8", null, "78.4", null, "1.8", null, "38.3", null, "1.9", null, "35.3", null, "1.5", null, "0.5", null, "0.2", null, "12.0", null, "1.3", null, "-999999999.0", "N", "-999999999.0", "N", "7.3", null, "1.1", null, "6.7", null, "0.9", null, "14.6", null, "1.6", null, "35.8", null, "1.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.6", null, "1.3", null, "33.3", null, "2.7", null, "56.2", null, "2.7", null, "61916", null, "5311", null, "29986", null, "3430", null, "31930", null, "3901", null, "8770", null, "2014", null, "24560", null, "3155", null, "4106", null, "1422", null, "20454", null, "2972", null, "28586", null, "3927", null, "23082", null, "3282", null, "5492", null, "1569", null, "17199", null, "2804", null, "2568", null, "1147", null, "14631", null, "2588", null, "391", null, "529", null, "38834", null, "4379", null, "3278", null, "1101", null, "7361", null, "1524", null, "1538", null, "637", null, "5823", null, "1504", null, "28195", null, "3829", null, "29938", null, "3518", null, "31978", null, "3868", null, "27775", null, "3487", null, "34141", null, "4108", null, "5373", null, "1375", null, "44324", null, "4172", null, "313", null, "248", null, "3226", null, "1236", null, "-999999999", "N", "-999999999", "N", "5128", null, "1577", null, "3552", null, "1345", null, "9328", null, "2160", null, "3787", null, "1155", null, "23549", null, "3488", null, "33330", null, "3708", null, "6129", null, "1512", null, "14205", null, "2262", null, "12996", null, "2250", null, "18.2", null, "1.6", null, "48.4", null, "4.1", null, "51.6", null, "4.1", null, "14.2", null, "2.9", null, "39.7", null, "4.5", null, "6.6", null, "2.3", null, "33.0", null, "4.3", null, "46.2", null, "4.4", null, "37.3", null, "4.4", null, "8.9", null, "2.3", null, "27.8", null, "4.1", null, "4.1", null, "1.8", null, "23.6", null, "3.8", null, "0.6", null, "0.8", null, "62.7", null, "4.4", null, "5.3", null, "1.7", null, "11.9", null, "2.4", null, "2.5", null, "1.0", null, "9.4", null, "2.4", null, "45.5", null, "4.4", null, "48.4", null, "4.1", null, "51.6", null, "4.1", null, "44.9", null, "4.4", null, "55.1", null, "4.4", null, "8.7", null, "2.0", null, "71.6", null, "4.4", null, "0.5", null, "0.4", null, "5.2", null, "1.8", null, "-999999999.0", "N", "-999999999.0", "N", "8.3", null, "2.5", null, "5.7", null, "1.9", null, "15.1", null, "3.2", null, "6.1", null, "1.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.4", null, "4.1", null, "42.6", null, "5.0", null, "39.0", null, "4.9", null, "278626", null, "10349", null, "74685", null, "6258", null, "203941", null, "9918", null, "86658", null, "6166", null, "37390", null, "4691", null, "8007", null, "1966", null, "29383", null, "4043", null, "154578", null, "9281", null, "48835", null, "4419", null, "28222", null, "3236", null, "20160", null, "3355", null, "4052", null, "1573", null, "16108", null, "2904", null, "453", null, "439", null, "229791", null, "9925", null, "58436", null, "5344", null, "17230", null, "2573", null, "3955", null, "1018", null, "13275", null, "2405", null, "154125", null, "9235", null, "25972", null, "4140", null, "252654", null, "9997", null, "45930", null, "5116", null, "232696", null, "10500", null, "125167", null, "7732", null, "75729", null, "5744", null, "1400", null, "669", null, "37555", null, "4811", null, "-999999999", "N", "-999999999", "N", "19680", null, "3419", null, "19095", null, "2997", null, "40236", null, "5137", null, "118014", null, "7642", null, "101460", null, "2087", null, "124048", null, "6482", null, "10503", null, "1806", null, "38145", null, "4508", null, "75400", null, "5509", null, "81.8", null, "1.6", null, "26.8", null, "2.1", null, "73.2", null, "2.1", null, "31.1", null, "2.2", null, "13.4", null, "1.6", null, "2.9", null, "0.7", null, "10.5", null, "1.4", null, "55.5", null, "2.1", null, "17.5", null, "1.5", null, "10.1", null, "1.2", null, "7.2", null, "1.2", null, "1.5", null, "0.6", null, "5.8", null, "1.0", null, "0.2", null, "0.2", null, "82.5", null, "1.5", null, "21.0", null, "1.9", null, "6.2", null, "0.9", null, "1.4", null, "0.4", null, "4.8", null, "0.8", null, "55.3", null, "2.1", null, "9.3", null, "1.4", null, "90.7", null, "1.4", null, "16.5", null, "1.8", null, "83.5", null, "1.8", null, "44.9", null, "2.4", null, "27.2", null, "1.7", null, "0.5", null, "0.2", null, "13.5", null, "1.6", null, "-999999999.0", "N", "-999999999.0", "N", "7.1", null, "1.2", null, "6.9", null, "1.0", null, "14.4", null, "1.8", null, "42.4", null, "2.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "8.5", null, "1.4", null, "30.8", null, "3.2", null, "60.8", null, "3.2", null, "17", "07"], ["5001900US1708", "Congressional District 8 (119th Congress), Illinois", "284554", null, "5092", null, "122050", null, "5053", null, "162504", null, "4644", null, "152644", null, "5384", null, "44813", null, "3769", null, "16115", null, "2644", null, "28698", null, "3279", null, "87097", null, "5831", null, "84198", null, "4192", null, "62959", null, "3428", null, "20988", null, "2783", null, "6790", null, "1931", null, "14198", null, "2394", null, "251", null, "224", null, "200356", null, "6625", null, "89685", null, "5086", null, "23825", null, "2723", null, "9325", null, "1820", null, "14500", null, "2180", null, "86846", null, "5810", null, "21611", null, "2651", null, "262943", null, "4925", null, "63514", null, "4235", null, "221040", null, "5529", null, "178823", null, "5929", null, "12989", null, "2280", null, "2906", null, "1017", null, "34545", null, "2655", null, "-999999999", "N", "-999999999", "N", "21325", null, "2829", null, "33829", null, "3768", null, "57117", null, "3470", null, "171586", null, "5454", null, "96230", null, "4468", null, "197457", null, "5558", null, "21187", null, "2160", null, "53437", null, "3711", null, "122833", null, "4728", null, "-888888888", "(X)", "-888888888", "(X)", "42.9", null, "1.5", null, "57.1", null, "1.5", null, "53.6", null, "1.9", null, "15.7", null, "1.3", null, "5.7", null, "0.9", null, "10.1", null, "1.1", null, "30.6", null, "1.8", null, "29.6", null, "1.6", null, "22.1", null, "1.3", null, "7.4", null, "1.0", null, "2.4", null, "0.7", null, "5.0", null, "0.8", null, "0.1", null, "0.1", null, "70.4", null, "1.6", null, "31.5", null, "1.6", null, "8.4", null, "0.9", null, "3.3", null, "0.6", null, "5.1", null, "0.8", null, "30.5", null, "1.8", null, "7.6", null, "0.9", null, "92.4", null, "0.9", null, "22.3", null, "1.4", null, "77.7", null, "1.4", null, "62.8", null, "1.6", null, "4.6", null, "0.8", null, "1.0", null, "0.4", null, "12.1", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "7.5", null, "1.0", null, "11.9", null, "1.3", null, "20.1", null, "1.2", null, "60.3", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.7", null, "1.0", null, "27.1", null, "1.7", null, "62.2", null, "1.9", null, "24674", null, "2621", null, "11006", null, "1655", null, "13668", null, "2313", null, "10401", null, "1654", null, "8320", null, "1696", null, "1895", null, "961", null, "6425", null, "1535", null, "5953", null, "1415", null, "12597", null, "2354", null, "7202", null, "1643", null, "5395", null, "1458", null, "1415", null, "946", null, "3980", null, "1268", null, "0", null, "208", null, "12077", null, "2065", null, "3199", null, "937", null, "2925", null, "1010", null, "480", null, "278", null, "2445", null, "975", null, "5953", null, "1415", null, "5616", null, "1202", null, "19058", null, "2252", null, "9973", null, "1717", null, "14701", null, "2144", null, "11247", null, "2129", null, "2478", null, "1103", null, "474", null, "455", null, "3745", null, "1004", null, "-999999999", "N", "-999999999", "N", "2856", null, "1000", null, "3874", null, "1224", null, "7879", null, "1434", null, "10207", null, "2092", null, "53934", null, "11470", null, "18721", null, "2516", null, "1247", null, "721", null, "7420", null, "1630", null, "10054", null, "1789", null, "8.7", null, "0.9", null, "44.6", null, "6.0", null, "55.4", null, "6.0", null, "42.2", null, "5.2", null, "33.7", null, "5.3", null, "7.7", null, "3.7", null, "26.0", null, "5.3", null, "24.1", null, "5.4", null, "51.1", null, "7.3", null, "29.2", null, "5.9", null, "21.9", null, "5.1", null, "5.7", null, "3.7", null, "16.1", null, "4.7", null, "0.0", null, "0.7", null, "48.9", null, "7.3", null, "13.0", null, "3.7", null, "11.9", null, "3.9", null, "1.9", null, "1.1", null, "9.9", null, "3.8", null, "24.1", null, "5.4", null, "22.8", null, "4.2", null, "77.2", null, "4.2", null, "40.4", null, "5.7", null, "59.6", null, "5.7", null, "45.6", null, "6.2", null, "10.0", null, "4.5", null, "1.9", null, "1.8", null, "15.2", null, "4.0", null, "-999999999.0", "N", "-999999999.0", "N", "11.6", null, "4.3", null, "15.7", null, "4.3", null, "31.9", null, "5.0", null, "41.4", null, "6.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.7", null, "3.8", null, "39.6", null, "6.3", null, "53.7", null, "7.2", null, "259880", null, "5245", null, "111044", null, "4734", null, "148836", null, "4796", null, "142243", null, "5627", null, "36493", null, "3465", null, "14220", null, "2485", null, "22273", null, "2869", null, "81144", null, "5697", null, "71601", null, "4293", null, "55757", null, "3441", null, "15593", null, "2579", null, "5375", null, "1645", null, "10218", null, "2165", null, "251", null, "224", null, "188279", null, "6521", null, "86486", null, "5146", null, "20900", null, "2276", null, "8845", null, "1790", null, "12055", null, "1714", null, "80893", null, "5681", null, "15995", null, "2509", null, "243885", null, "5012", null, "53541", null, "4048", null, "206339", null, "5525", null, "167576", null, "5450", null, "10511", null, "2284", null, "2432", null, "1015", null, "30800", null, "2375", null, "-999999999", "N", "-999999999", "N", "18469", null, "2725", null, "29955", null, "3585", null, "49238", null, "3937", null, "161379", null, "5147", null, "99919", null, "3204", null, "178736", null, "6275", null, "19940", null, "2221", null, "46017", null, "3447", null, "112779", null, "5043", null, "91.3", null, "0.9", null, "42.7", null, "1.5", null, "57.3", null, "1.5", null, "54.7", null, "1.9", null, "14.0", null, "1.3", null, "5.5", null, "0.9", null, "8.6", null, "1.1", null, "31.2", null, "2.1", null, "27.6", null, "1.7", null, "21.5", null, "1.4", null, "6.0", null, "1.0", null, "2.1", null, "0.6", null, "3.9", null, "0.8", null, "0.1", null, "0.1", null, "72.4", null, "1.7", null, "33.3", null, "1.7", null, "8.0", null, "0.9", null, "3.4", null, "0.7", null, "4.6", null, "0.7", null, "31.1", null, "2.1", null, "6.2", null, "0.9", null, "93.8", null, "0.9", null, "20.6", null, "1.5", null, "79.4", null, "1.5", null, "64.5", null, "1.6", null, "4.0", null, "0.9", null, "0.9", null, "0.4", null, "11.9", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "7.1", null, "1.1", null, "11.5", null, "1.3", null, "18.9", null, "1.4", null, "62.1", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.2", null, "1.1", null, "25.7", null, "1.7", null, "63.1", null, "2.0", null, "17", "08"], ["5001900US1709", "Congressional District 9 (119th Congress), Illinois", "314195", null, "7426", null, "128710", null, "4807", null, "185485", null, "6444", null, "137598", null, "4949", null, "38049", null, "3629", null, "10240", null, "2190", null, "27809", null, "3060", null, "138548", null, "7288", null, "75176", null, "4075", null, "54353", null, "3300", null, "20635", null, "3150", null, "6035", null, "1685", null, "14600", null, "2508", null, "188", null, "185", null, "239019", null, "7906", null, "83245", null, "4508", null, "17414", null, "2565", null, "4205", null, "1304", null, "13209", null, "2267", null, "138360", null, "7270", null, "37448", null, "4893", null, "276747", null, "7772", null, "69722", null, "4790", null, "244473", null, "7141", null, "201703", null, "7133", null, "28974", null, "3612", null, "966", null, "468", null, "42849", null, "3662", null, "-999999999", "N", "-999999999", "N", "17632", null, "3264", null, "22026", null, "2822", null, "36873", null, "4166", null, "195071", null, "7125", null, "90111", null, "4272", null, "175647", null, "5302", null, "24011", null, "2302", null, "48598", null, "4290", null, "103038", null, "5035", null, "-888888888", "(X)", "-888888888", "(X)", "41.0", null, "1.3", null, "59.0", null, "1.3", null, "43.8", null, "1.6", null, "12.1", null, "1.1", null, "3.3", null, "0.7", null, "8.9", null, "1.0", null, "44.1", null, "1.7", null, "23.9", null, "1.3", null, "17.3", null, "1.0", null, "6.6", null, "1.0", null, "1.9", null, "0.5", null, "4.6", null, "0.8", null, "0.1", null, "0.1", null, "76.1", null, "1.3", null, "26.5", null, "1.5", null, "5.5", null, "0.8", null, "1.3", null, "0.4", null, "4.2", null, "0.7", null, "44.0", null, "1.7", null, "11.9", null, "1.5", null, "88.1", null, "1.5", null, "22.2", null, "1.4", null, "77.8", null, "1.4", null, "64.2", null, "1.7", null, "9.2", null, "1.1", null, "0.3", null, "0.2", null, "13.6", null, "1.2", null, "-999999999.0", "N", "-999999999.0", "N", "5.6", null, "1.0", null, "7.0", null, "0.9", null, "11.7", null, "1.3", null, "62.1", null, "1.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.7", null, "1.3", null, "27.7", null, "2.2", null, "58.7", null, "2.4", null, "32471", null, "3851", null, "13973", null, "2262", null, "18498", null, "3132", null, "7319", null, "1655", null, "9309", null, "2173", null, "1996", null, "1007", null, "7313", null, "1925", null, "15843", null, "2555", null, "10876", null, "2162", null, "4633", null, "1479", null, "6180", null, "1812", null, "485", null, "450", null, "5695", null, "1752", null, "63", null, "106", null, "21595", null, "2942", null, "2686", null, "888", null, "3129", null, "1002", null, "1511", null, "784", null, "1618", null, "656", null, "15780", null, "2560", null, "16724", null, "3059", null, "15747", null, "2364", null, "14535", null, "2558", null, "17936", null, "3068", null, "11715", null, "2053", null, "7401", null, "2096", null, "75", null, "105", null, "5227", null, "1484", null, "-999999999", "N", "-999999999", "N", "4080", null, "1695", null, "3928", null, "1602", null, "7040", null, "1773", null, "11088", null, "1965", null, "23633", null, "4840", null, "16628", null, "2797", null, "2201", null, "1126", null, "9320", null, "2503", null, "5107", null, "1427", null, "10.3", null, "1.2", null, "43.0", null, "5.8", null, "57.0", null, "5.8", null, "22.5", null, "4.8", null, "28.7", null, "5.0", null, "6.1", null, "2.9", null, "22.5", null, "5.0", null, "48.8", null, "5.8", null, "33.5", null, "5.1", null, "14.3", null, "4.4", null, "19.0", null, "4.8", null, "1.5", null, "1.4", null, "17.5", null, "4.7", null, "0.2", null, "0.3", null, "66.5", null, "5.1", null, "8.3", null, "2.7", null, "9.6", null, "2.7", null, "4.7", null, "2.3", null, "5.0", null, "1.9", null, "48.6", null, "5.8", null, "51.5", null, "5.9", null, "48.5", null, "5.9", null, "44.8", null, "6.4", null, "55.2", null, "6.4", null, "36.1", null, "5.6", null, "22.8", null, "5.4", null, "0.2", null, "0.3", null, "16.1", null, "4.1", null, "-999999999.0", "N", "-999999999.0", "N", "12.6", null, "4.9", null, "12.1", null, "4.9", null, "21.7", null, "4.8", null, "34.1", null, "5.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.2", null, "6.5", null, "56.1", null, "9.2", null, "30.7", null, "8.7", null, "281724", null, "7074", null, "114737", null, "4981", null, "166987", null, "5835", null, "130279", null, "4930", null, "28740", null, "2940", null, "8244", null, "1843", null, "20496", null, "2513", null, "122705", null, "6789", null, "64300", null, "3746", null, "49720", null, "3100", null, "14455", null, "2504", null, "5550", null, "1583", null, "8905", null, "1932", null, "125", null, "150", null, "217424", null, "7703", null, "80559", null, "4521", null, "14285", null, "2416", null, "2694", null, "917", null, "11591", null, "2134", null, "122580", null, "6785", null, "20724", null, "3216", null, "261000", null, "7528", null, "55187", null, "4036", null, "226537", null, "6789", null, "189988", null, "6911", null, "21573", null, "3024", null, "891", null, "474", null, "37622", null, "3607", null, "-999999999", "N", "-999999999", "N", "13552", null, "2595", null, "18098", null, "2462", null, "29833", null, "3673", null, "183983", null, "7055", null, "99362", null, "4494", null, "159019", null, "5430", null, "21810", null, "2184", null, "39278", null, "3682", null, "97931", null, "5049", null, "89.7", null, "1.2", null, "40.7", null, "1.4", null, "59.3", null, "1.4", null, "46.2", null, "1.6", null, "10.2", null, "1.1", null, "2.9", null, "0.7", null, "7.3", null, "0.9", null, "43.6", null, "1.8", null, "22.8", null, "1.4", null, "17.6", null, "1.1", null, "5.1", null, "0.9", null, "2.0", null, "0.6", null, "3.2", null, "0.7", null, "0.0", null, "0.1", null, "77.2", null, "1.4", null, "28.6", null, "1.5", null, "5.1", null, "0.8", null, "1.0", null, "0.3", null, "4.1", null, "0.7", null, "43.5", null, "1.8", null, "7.4", null, "1.1", null, "92.6", null, "1.1", null, "19.6", null, "1.3", null, "80.4", null, "1.3", null, "67.4", null, "1.7", null, "7.7", null, "1.0", null, "0.3", null, "0.2", null, "13.4", null, "1.2", null, "-999999999.0", "N", "-999999999.0", "N", "4.8", null, "0.9", null, "6.4", null, "0.9", null, "10.6", null, "1.3", null, "65.3", null, "1.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.7", null, "1.4", null, "24.7", null, "2.1", null, "61.6", null, "2.4", null, "17", "09"], ["5001900US1710", "Congressional District 10 (119th Congress), Illinois", "276290", null, "3432", null, "124488", null, "4055", null, "151802", null, "4140", null, "151336", null, "4506", null, "42878", null, "3328", null, "14332", null, "1938", null, "28546", null, "3125", null, "82076", null, "4701", null, "84309", null, "3683", null, "61223", null, "2973", null, "22552", null, "2651", null, "7080", null, "1668", null, "15472", null, "2519", null, "534", null, "789", null, "191981", null, "4914", null, "90113", null, "4802", null, "20326", null, "2499", null, "7252", null, "1465", null, "13074", null, "1988", null, "81542", null, "4482", null, "24787", null, "2828", null, "251503", null, "3956", null, "62394", null, "4412", null, "213896", null, "5050", null, "186868", null, "4500", null, "21302", null, "1850", null, "1710", null, "759", null, "22001", null, "1984", null, "-999999999", "N", "-999999999", "N", "22472", null, "2208", null, "21937", null, "2396", null, "52485", null, "2615", null, "174081", null, "4406", null, "103955", null, "2745", null, "194214", null, "4673", null, "26203", null, "2476", null, "56070", null, "4097", null, "111941", null, "4231", null, "-888888888", "(X)", "-888888888", "(X)", "45.1", null, "1.3", null, "54.9", null, "1.3", null, "54.8", null, "1.5", null, "15.5", null, "1.2", null, "5.2", null, "0.7", null, "10.3", null, "1.1", null, "29.7", null, "1.6", null, "30.5", null, "1.4", null, "22.2", null, "1.1", null, "8.2", null, "1.0", null, "2.6", null, "0.6", null, "5.6", null, "0.9", null, "0.2", null, "0.3", null, "69.5", null, "1.4", null, "32.6", null, "1.6", null, "7.4", null, "0.9", null, "2.6", null, "0.5", null, "4.7", null, "0.7", null, "29.5", null, "1.5", null, "9.0", null, "1.0", null, "91.0", null, "1.0", null, "22.6", null, "1.6", null, "77.4", null, "1.6", null, "67.6", null, "1.3", null, "7.7", null, "0.7", null, "0.6", null, "0.3", null, "8.0", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "8.1", null, "0.8", null, "7.9", null, "0.9", null, "19.0", null, "0.9", null, "63.0", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.5", null, "1.3", null, "28.9", null, "1.9", null, "57.6", null, "1.9", null, "28355", null, "2817", null, "11107", null, "2006", null, "17248", null, "2384", null, "7788", null, "1789", null, "12070", null, "2109", null, "3614", null, "1251", null, "8456", null, "1873", null, "8497", null, "2180", null, "13145", null, "2152", null, "4596", null, "1173", null, "8543", null, "1872", null, "2579", null, "1149", null, "5964", null, "1647", null, "6", null, "10", null, "15210", null, "2655", null, "3192", null, "1281", null, "3527", null, "1110", null, "1035", null, "638", null, "2492", null, "947", null, "8491", null, "2180", null, "10758", null, "1927", null, "17597", null, "2149", null, "11832", null, "2229", null, "16523", null, "2594", null, "12459", null, "2117", null, "7201", null, "1592", null, "110", null, "137", null, "919", null, "450", null, "-999999999", "N", "-999999999", "N", "4581", null, "1096", null, "3085", null, "1119", null, "9267", null, "1797", null, "9822", null, "1986", null, "35475", null, "4398", null, "19858", null, "2466", null, "3684", null, "1479", null, "9012", null, "1942", null, "7162", null, "1551", null, "10.3", null, "1.1", null, "39.2", null, "5.9", null, "60.8", null, "5.9", null, "27.5", null, "5.6", null, "42.6", null, "7.0", null, "12.7", null, "4.2", null, "29.8", null, "6.6", null, "30.0", null, "6.6", null, "46.4", null, "6.8", null, "16.2", null, "3.9", null, "30.1", null, "6.3", null, "9.1", null, "3.8", null, "21.0", null, "6.0", null, "0.0", null, "0.1", null, "53.6", null, "6.8", null, "11.3", null, "4.3", null, "12.4", null, "3.8", null, "3.7", null, "2.3", null, "8.8", null, "3.2", null, "29.9", null, "6.6", null, "37.9", null, "5.2", null, "62.1", null, "5.2", null, "41.7", null, "6.9", null, "58.3", null, "6.9", null, "43.9", null, "5.5", null, "25.4", null, "5.2", null, "0.4", null, "0.5", null, "3.2", null, "1.6", null, "-999999999.0", "N", "-999999999.0", "N", "16.2", null, "4.0", null, "10.9", null, "3.6", null, "32.7", null, "5.2", null, "34.6", null, "5.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.6", null, "6.9", null, "45.4", null, "8.2", null, "36.1", null, "6.8", null, "247935", null, "4899", null, "113381", null, "4202", null, "134554", null, "4208", null, "143548", null, "4638", null, "30808", null, "2884", null, "10718", null, "1710", null, "20090", null, "2646", null, "73579", null, "5027", null, "71164", null, "3789", null, "56627", null, "2846", null, "14009", null, "2280", null, "4501", null, "1145", null, "9508", null, "1951", null, "528", null, "790", null, "176771", null, "5467", null, "86921", null, "4764", null, "16799", null, "2332", null, "6217", null, "1385", null, "10582", null, "1895", null, "73051", null, "4811", null, "14029", null, "2230", null, "233906", null, "4610", null, "50562", null, "3694", null, "197373", null, "5196", null, "174409", null, "4867", null, "14101", null, "1989", null, "1600", null, "730", null, "21082", null, "1917", null, "-999999999", "N", "-999999999", "N", "17891", null, "2462", null, "18852", null, "2365", null, "43218", null, "3210", null, "164259", null, "4716", null, "111728", null, "3964", null, "174356", null, "5192", null, "22519", null, "2379", null, "47058", null, "3569", null, "104779", null, "4083", null, "89.7", null, "1.1", null, "45.7", null, "1.4", null, "54.3", null, "1.4", null, "57.9", null, "1.8", null, "12.4", null, "1.1", null, "4.3", null, "0.7", null, "8.1", null, "1.0", null, "29.7", null, "1.8", null, "28.7", null, "1.5", null, "22.8", null, "1.2", null, "5.7", null, "0.9", null, "1.8", null, "0.5", null, "3.8", null, "0.8", null, "0.2", null, "0.3", null, "71.3", null, "1.5", null, "35.1", null, "1.8", null, "6.8", null, "0.9", null, "2.5", null, "0.6", null, "4.3", null, "0.8", null, "29.5", null, "1.7", null, "5.7", null, "0.9", null, "94.3", null, "0.9", null, "20.4", null, "1.4", null, "79.6", null, "1.4", null, "70.3", null, "1.4", null, "5.7", null, "0.8", null, "0.6", null, "0.3", null, "8.5", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "7.2", null, "1.0", null, "7.6", null, "0.9", null, "17.4", null, "1.2", null, "66.3", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.9", null, "1.3", null, "27.0", null, "1.8", null, "60.1", null, "1.9", null, "17", "10"], ["5001900US1711", "Congressional District 11 (119th Congress), Illinois", "288108", null, "4967", null, "117484", null, "3858", null, "170624", null, "4741", null, "160173", null, "4281", null, "42218", null, "3490", null, "12719", null, "2065", null, "29499", null, "3022", null, "85717", null, "4951", null, "91075", null, "4073", null, "67659", null, "3897", null, "22675", null, "2685", null, "6898", null, "1533", null, "15777", null, "2483", null, "741", null, "473", null, "197033", null, "5960", null, "92514", null, "3745", null, "19543", null, "2554", null, "5821", null, "1385", null, "13722", null, "2092", null, "84976", null, "4894", null, "24009", null, "2684", null, "264099", null, "5211", null, "66602", null, "3544", null, "221506", null, "5813", null, "204530", null, "5173", null, "18101", null, "2382", null, "2074", null, "839", null, "23699", null, "2111", null, "-999999999", "N", "-999999999", "N", "13504", null, "2138", null, "26200", null, "2623", null, "41698", null, "3334", null, "197211", null, "4944", null, "108620", null, "2865", null, "202391", null, "4137", null, "25854", null, "2534", null, "50358", null, "3933", null, "126179", null, "4245", null, "-888888888", "(X)", "-888888888", "(X)", "40.8", null, "1.2", null, "59.2", null, "1.2", null, "55.6", null, "1.5", null, "14.7", null, "1.2", null, "4.4", null, "0.7", null, "10.2", null, "1.0", null, "29.8", null, "1.4", null, "31.6", null, "1.4", null, "23.5", null, "1.4", null, "7.9", null, "0.9", null, "2.4", null, "0.5", null, "5.5", null, "0.9", null, "0.3", null, "0.2", null, "68.4", null, "1.4", null, "32.1", null, "1.3", null, "6.8", null, "0.9", null, "2.0", null, "0.5", null, "4.8", null, "0.7", null, "29.5", null, "1.4", null, "8.3", null, "0.9", null, "91.7", null, "0.9", null, "23.1", null, "1.3", null, "76.9", null, "1.3", null, "71.0", null, "1.5", null, "6.3", null, "0.8", null, "0.7", null, "0.3", null, "8.2", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "4.7", null, "0.7", null, "9.1", null, "0.9", null, "14.5", null, "1.1", null, "68.5", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.8", null, "1.2", null, "24.9", null, "1.9", null, "62.3", null, "1.9", null, "23785", null, "2834", null, "10292", null, "1684", null, "13493", null, "2294", null, "6727", null, "1615", null, "7960", null, "1515", null, "1751", null, "746", null, "6209", null, "1448", null, "9098", null, "1854", null, "9734", null, "1737", null, "3774", null, "1148", null, "5885", null, "1368", null, "1057", null, "659", null, "4828", null, "1349", null, "75", null, "121", null, "14051", null, "2167", null, "2953", null, "955", null, "2075", null, "815", null, "694", null, "462", null, "1381", null, "698", null, "9023", null, "1842", null, "8920", null, "1799", null, "14865", null, "2375", null, "10101", null, "1845", null, "13684", null, "2400", null, "13238", null, "2101", null, "3585", null, "1339", null, "85", null, "118", null, "1463", null, "613", null, "-999999999", "N", "-999999999", "N", "1684", null, "727", null, "3730", null, "1211", null, "6452", null, "1742", null, "11845", null, "2001", null, "38004", null, "4472", null, "14687", null, "2085", null, "2392", null, "822", null, "5601", null, "1308", null, "6694", null, "1775", null, "8.3", null, "1.0", null, "43.3", null, "5.9", null, "56.7", null, "5.9", null, "28.3", null, "5.8", null, "33.5", null, "5.8", null, "7.4", null, "3.2", null, "26.1", null, "5.4", null, "38.3", null, "5.9", null, "40.9", null, "5.6", null, "15.9", null, "4.2", null, "24.7", null, "5.4", null, "4.4", null, "2.8", null, "20.3", null, "5.3", null, "0.3", null, "0.5", null, "59.1", null, "5.6", null, "12.4", null, "3.9", null, "8.7", null, "3.3", null, "2.9", null, "2.0", null, "5.8", null, "2.8", null, "37.9", null, "5.8", null, "37.5", null, "6.4", null, "62.5", null, "6.4", null, "42.5", null, "6.6", null, "57.5", null, "6.6", null, "55.7", null, "6.2", null, "15.1", null, "5.2", null, "0.4", null, "0.5", null, "6.2", null, "2.5", null, "-999999999.0", "N", "-999999999.0", "N", "7.1", null, "3.0", null, "15.7", null, "4.6", null, "27.1", null, "6.4", null, "49.8", null, "6.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.3", null, "5.5", null, "38.1", null, "8.4", null, "45.6", null, "8.4", null, "264323", null, "5287", null, "107192", null, "3844", null, "157131", null, "5138", null, "153446", null, "4114", null, "34258", null, "3316", null, "10968", null, "1989", null, "23290", null, "2617", null, "76619", null, "4625", null, "81341", null, "4065", null, "63885", null, "3891", null, "16790", null, "2486", null, "5841", null, "1387", null, "10949", null, "2128", null, "666", null, "434", null, "182982", null, "5837", null, "89561", null, "3511", null, "17468", null, "2476", null, "5127", null, "1324", null, "12341", null, "1989", null, "75953", null, "4583", null, "15089", null, "2233", null, "249234", null, "5144", null, "56501", null, "3698", null, "207822", null, "5790", null, "191292", null, "4675", null, "14516", null, "2351", null, "1989", null, "812", null, "22236", null, "2178", null, "-999999999", "N", "-999999999", "N", "11820", null, "1983", null, "22470", null, "2502", null, "35246", null, "3257", null, "185366", null, "4408", null, "114187", null, "2985", null, "187704", null, "4237", null, "23462", null, "2395", null, "44757", null, "3814", null, "119485", null, "3876", null, "91.7", null, "1.0", null, "40.6", null, "1.4", null, "59.4", null, "1.4", null, "58.1", null, "1.6", null, "13.0", null, "1.2", null, "4.1", null, "0.8", null, "8.8", null, "1.0", null, "29.0", null, "1.4", null, "30.8", null, "1.5", null, "24.2", null, "1.5", null, "6.4", null, "0.9", null, "2.2", null, "0.5", null, "4.1", null, "0.8", null, "0.3", null, "0.2", null, "69.2", null, "1.5", null, "33.9", null, "1.3", null, "6.6", null, "0.9", null, "1.9", null, "0.5", null, "4.7", null, "0.7", null, "28.7", null, "1.4", null, "5.7", null, "0.8", null, "94.3", null, "0.8", null, "21.4", null, "1.4", null, "78.6", null, "1.4", null, "72.4", null, "1.5", null, "5.5", null, "0.8", null, "0.8", null, "0.3", null, "8.4", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "4.5", null, "0.7", null, "8.5", null, "0.9", null, "13.3", null, "1.1", null, "70.1", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.5", null, "1.2", null, "23.8", null, "1.9", null, "63.7", null, "2.0", null, "17", "11"], ["5001900US1712", "Congressional District 12 (119th Congress), Illinois", "307671", null, "4503", null, "138278", null, "3167", null, "169393", null, "4662", null, "151179", null, "4308", null, "45684", null, "3246", null, "16117", null, "1814", null, "29567", null, "2773", null, "110808", null, "4273", null, "88421", null, "3386", null, "57014", null, "3142", null, "30002", null, "2089", null, "10895", null, "1429", null, "19107", null, "2076", null, "1405", null, "565", null, "219250", null, "4137", null, "94165", null, "3257", null, "15682", null, "2177", null, "5222", null, "1161", null, "10460", null, "1727", null, "109403", null, "4262", null, "40007", null, "3284", null, "267664", null, "5020", null, "99297", null, "3495", null, "208374", null, "4148", null, "278592", null, "3536", null, "11497", null, "1679", null, "975", null, "467", null, "2434", null, "631", null, "-999999999", "N", "-999999999", "N", "2581", null, "761", null, "11566", null, "1487", null, "5309", null, "941", null, "276868", null, "3472", null, "70903", null, "1318", null, "196863", null, "4571", null, "34914", null, "1901", null, "61434", null, "2986", null, "100515", null, "3288", null, "-888888888", "(X)", "-888888888", "(X)", "44.9", null, "1.0", null, "55.1", null, "1.0", null, "49.1", null, "1.3", null, "14.8", null, "1.0", null, "5.2", null, "0.6", null, "9.6", null, "0.9", null, "36.0", null, "1.2", null, "28.7", null, "1.0", null, "18.5", null, "1.0", null, "9.8", null, "0.7", null, "3.5", null, "0.5", null, "6.2", null, "0.6", null, "0.5", null, "0.2", null, "71.3", null, "1.0", null, "30.6", null, "1.0", null, "5.1", null, "0.7", null, "1.7", null, "0.4", null, "3.4", null, "0.6", null, "35.6", null, "1.2", null, "13.0", null, "1.0", null, "87.0", null, "1.0", null, "32.3", null, "1.0", null, "67.7", null, "1.0", null, "90.5", null, "0.7", null, "3.7", null, "0.5", null, "0.3", null, "0.2", null, "0.8", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "0.8", null, "0.2", null, "3.8", null, "0.5", null, "1.7", null, "0.3", null, "90.0", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.7", null, "1.0", null, "31.2", null, "1.2", null, "51.1", null, "1.1", null, "46134", null, "3018", null, "15637", null, "1830", null, "30497", null, "2541", null, "10271", null, "1343", null, "17497", null, "2012", null, "4434", null, "973", null, "13063", null, "1809", null, "18366", null, "1971", null, "21029", null, "1850", null, "6534", null, "1230", null, "13533", null, "1707", null, "3175", null, "761", null, "10358", null, "1677", null, "962", null, "511", null, "25105", null, "2267", null, "3737", null, "709", null, "3964", null, "949", null, "1259", null, "490", null, "2705", null, "894", null, "17404", null, "1898", null, "20843", null, "2184", null, "25291", null, "2508", null, "23391", null, "2102", null, "22743", null, "2187", null, "39292", null, "2558", null, "3068", null, "900", null, "397", null, "387", null, "532", null, "410", null, "-999999999", "N", "-999999999", "N", "477", null, "325", null, "2368", null, "835", null, "1245", null, "429", null, "38906", null, "2568", null, "27773", null, "2743", null, "27768", null, "2130", null, "5198", null, "1041", null, "13998", null, "1457", null, "8572", null, "1411", null, "15.0", null, "1.0", null, "33.9", null, "3.3", null, "66.1", null, "3.3", null, "22.3", null, "2.9", null, "37.9", null, "3.3", null, "9.6", null, "2.0", null, "28.3", null, "3.2", null, "39.8", null, "3.0", null, "45.6", null, "3.0", null, "14.2", null, "2.7", null, "29.3", null, "3.0", null, "6.9", null, "1.7", null, "22.5", null, "3.1", null, "2.1", null, "1.1", null, "54.4", null, "3.0", null, "8.1", null, "1.5", null, "8.6", null, "1.9", null, "2.7", null, "1.0", null, "5.9", null, "1.9", null, "37.7", null, "3.0", null, "45.2", null, "3.9", null, "54.8", null, "3.9", null, "50.7", null, "3.3", null, "49.3", null, "3.3", null, "85.2", null, "2.5", null, "6.7", null, "1.8", null, "0.9", null, "0.8", null, "1.2", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "1.0", null, "0.7", null, "5.1", null, "1.7", null, "2.7", null, "0.9", null, "84.3", null, "2.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.7", null, "3.5", null, "50.4", null, "4.1", null, "30.9", null, "4.2", null, "261537", null, "4805", null, "122641", null, "3062", null, "138896", null, "4697", null, "140908", null, "4166", null, "28187", null, "2537", null, "11683", null, "1510", null, "16504", null, "2023", null, "92442", null, "4460", null, "67392", null, "3354", null, "50480", null, "2962", null, "16469", null, "1901", null, "7720", null, "1312", null, "8749", null, "1403", null, "443", null, "259", null, "194145", null, "4194", null, "90428", null, "3266", null, "11718", null, "1818", null, "3963", null, "938", null, "7755", null, "1372", null, "91999", null, "4381", null, "19164", null, "2196", null, "242373", null, "4753", null, "75906", null, "2996", null, "185631", null, "4371", null, "239300", null, "3966", null, "8429", null, "1339", null, "578", null, "312", null, "1902", null, "610", null, "-999999999", "N", "-999999999", "N", "2104", null, "727", null, "9198", null, "1236", null, "4064", null, "868", null, "237962", null, "3852", null, "78650", null, "2230", null, "169095", null, "4531", null, "29716", null, "1693", null, "47436", null, "2674", null, "91943", null, "3334", null, "85.0", null, "1.0", null, "46.9", null, "1.2", null, "53.1", null, "1.2", null, "53.9", null, "1.4", null, "10.8", null, "1.0", null, "4.5", null, "0.6", null, "6.3", null, "0.8", null, "35.3", null, "1.5", null, "25.8", null, "1.1", null, "19.3", null, "1.0", null, "6.3", null, "0.7", null, "3.0", null, "0.5", null, "3.3", null, "0.5", null, "0.2", null, "0.1", null, "74.2", null, "1.1", null, "34.6", null, "1.2", null, "4.5", null, "0.7", null, "1.5", null, "0.4", null, "3.0", null, "0.5", null, "35.2", null, "1.4", null, "7.3", null, "0.8", null, "92.7", null, "0.8", null, "29.0", null, "1.0", null, "71.0", null, "1.0", null, "91.5", null, "0.7", null, "3.2", null, "0.5", null, "0.2", null, "0.1", null, "0.7", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "0.8", null, "0.3", null, "3.5", null, "0.4", null, "1.6", null, "0.3", null, "91.0", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.6", null, "1.0", null, "28.1", null, "1.3", null, "54.4", null, "1.2", null, "17", "12"], ["5001900US1713", "Congressional District 13 (119th Congress), Illinois", "323058", null, "4731", null, "126078", null, "4272", null, "196980", null, "3922", null, "115900", null, "4651", null, "56231", null, "3683", null, "16135", null, "2217", null, "40096", null, "3428", null, "150927", null, "5572", null, "73516", null, "4038", null, "38605", null, "2754", null, "34103", null, "3174", null, "8760", null, "1631", null, "25343", null, "2720", null, "808", null, "416", null, "249542", null, "5435", null, "77295", null, "3646", null, "22128", null, "2614", null, "7375", null, "1401", null, "14753", null, "2181", null, "150119", null, "5616", null, "53145", null, "4076", null, "269913", null, "5447", null, "84818", null, "4906", null, "238240", null, "5363", null, "219756", null, "4449", null, "61383", null, "3499", null, "1228", null, "685", null, "16345", null, "1564", null, "-999999999", "N", "-999999999", "N", "4993", null, "1089", null, "19306", null, "2516", null, "14165", null, "1495", null, "216502", null, "4369", null, "64968", null, "2373", null, "172131", null, "5520", null, "27544", null, "2517", null, "57405", null, "3628", null, "87182", null, "4267", null, "-888888888", "(X)", "-888888888", "(X)", "39.0", null, "1.1", null, "61.0", null, "1.1", null, "35.9", null, "1.4", null, "17.4", null, "1.1", null, "5.0", null, "0.7", null, "12.4", null, "1.0", null, "46.7", null, "1.6", null, "22.8", null, "1.2", null, "11.9", null, "0.8", null, "10.6", null, "1.0", null, "2.7", null, "0.5", null, "7.8", null, "0.8", null, "0.3", null, "0.1", null, "77.2", null, "1.2", null, "23.9", null, "1.1", null, "6.8", null, "0.8", null, "2.3", null, "0.4", null, "4.6", null, "0.7", null, "46.5", null, "1.6", null, "16.5", null, "1.2", null, "83.5", null, "1.2", null, "26.3", null, "1.4", null, "73.7", null, "1.4", null, "68.0", null, "0.9", null, "19.0", null, "1.0", null, "0.4", null, "0.2", null, "5.1", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "1.5", null, "0.3", null, "6.0", null, "0.8", null, "4.4", null, "0.5", null, "67.0", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.0", null, "1.3", null, "33.3", null, "1.9", null, "50.6", null, "1.9", null, "53170", null, "4136", null, "17250", null, "2411", null, "35920", null, "3402", null, "7230", null, "1557", null, "20421", null, "3035", null, "4409", null, "1273", null, "16012", null, "2751", null, "25519", null, "2607", null, "18985", null, "3050", null, "3889", null, "1054", null, "14833", null, "2782", null, "2709", null, "1080", null, "12124", null, "2554", null, "263", null, "216", null, "34185", null, "3200", null, "3341", null, "1115", null, "5588", null, "1369", null, "1700", null, "748", null, "3888", null, "1193", null, "25256", null, "2674", null, "23001", null, "3016", null, "30169", null, "3288", null, "25480", null, "2948", null, "27690", null, "3296", null, "26666", null, "2940", null, "20829", null, "2610", null, "546", null, "492", null, "677", null, "446", null, "-999999999", "N", "-999999999", "N", "547", null, "379", null, "3905", null, "1154", null, "1508", null, "708", null, "26323", null, "2953", null, "27310", null, "2973", null, "27651", null, "3394", null, "5070", null, "1269", null, "14606", null, "2436", null, "7975", null, "1795", null, "16.5", null, "1.2", null, "32.4", null, "3.8", null, "67.6", null, "3.8", null, "13.6", null, "2.8", null, "38.4", null, "4.2", null, "8.3", null, "2.2", null, "30.1", null, "4.3", null, "48.0", null, "4.1", null, "35.7", null, "4.5", null, "7.3", null, "1.9", null, "27.9", null, "4.3", null, "5.1", null, "1.9", null, "22.8", null, "4.1", null, "0.5", null, "0.4", null, "64.3", null, "4.5", null, "6.3", null, "2.1", null, "10.5", null, "2.4", null, "3.2", null, "1.4", null, "7.3", null, "2.2", null, "47.5", null, "4.2", null, "43.3", null, "4.5", null, "56.7", null, "4.5", null, "47.9", null, "4.4", null, "52.1", null, "4.4", null, "50.2", null, "3.7", null, "39.2", null, "3.9", null, "1.0", null, "0.9", null, "1.3", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "1.0", null, "0.7", null, "7.3", null, "2.1", null, "2.8", null, "1.3", null, "49.5", null, "3.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.3", null, "4.1", null, "52.8", null, "5.8", null, "28.8", null, "5.5", null, "269888", null, "5101", null, "108828", null, "4089", null, "161060", null, "3955", null, "108670", null, "4437", null, "35810", null, "3157", null, "11726", null, "1852", null, "24084", null, "2730", null, "125408", null, "5208", null, "54531", null, "3408", null, "34716", null, "2760", null, "19270", null, "2721", null, "6051", null, "1384", null, "13219", null, "2247", null, "545", null, "356", null, "215357", null, "5314", null, "73954", null, "3480", null, "16540", null, "2024", null, "5675", null, "1138", null, "10865", null, "1669", null, "124863", null, "5296", null, "30144", null, "2660", null, "239744", null, "5608", null, "59338", null, "3891", null, "210550", null, "5590", null, "193090", null, "4264", null, "40554", null, "3086", null, "682", null, "516", null, "15668", null, "1506", null, "-999999999", "N", "-999999999", "N", "4446", null, "1016", null, "15401", null, "2337", null, "12657", null, "1319", null, "190179", null, "4246", null, "74662", null, "2819", null, "144480", null, "5162", null, "22474", null, "2182", null, "42799", null, "3546", null, "79207", null, "3859", null, "83.5", null, "1.2", null, "40.3", null, "1.2", null, "59.7", null, "1.2", null, "40.3", null, "1.5", null, "13.3", null, "1.1", null, "4.3", null, "0.7", null, "8.9", null, "1.0", null, "46.5", null, "1.7", null, "20.2", null, "1.2", null, "12.9", null, "1.0", null, "7.1", null, "1.0", null, "2.2", null, "0.5", null, "4.9", null, "0.8", null, "0.2", null, "0.1", null, "79.8", null, "1.2", null, "27.4", null, "1.2", null, "6.1", null, "0.7", null, "2.1", null, "0.4", null, "4.0", null, "0.6", null, "46.3", null, "1.7", null, "11.2", null, "1.0", null, "88.8", null, "1.0", null, "22.0", null, "1.4", null, "78.0", null, "1.4", null, "71.5", null, "1.0", null, "15.0", null, "1.0", null, "0.3", null, "0.2", null, "5.8", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "1.6", null, "0.4", null, "5.7", null, "0.9", null, "4.7", null, "0.5", null, "70.5", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.6", null, "1.4", null, "29.6", null, "2.1", null, "54.8", null, "2.2", null, "17", "13"], ["5001900US1714", "Congressional District 14 (119th Congress), Illinois", "277835", null, "3928", null, "108126", null, "3554", null, "169709", null, "3801", null, "145427", null, "3846", null, "49164", null, "3574", null, "16526", null, "2493", null, "32638", null, "3138", null, "83244", null, "4643", null, "95305", null, "3367", null, "65755", null, "2701", null, "29233", null, "3037", null, "9221", null, "2045", null, "20012", null, "2356", null, "317", null, "238", null, "182530", null, "4842", null, "79672", null, "3638", null, "19931", null, "2099", null, "7305", null, "1449", null, "12626", null, "1787", null, "82927", null, "4623", null, "26785", null, "2743", null, "251050", null, "4331", null, "66323", null, "3702", null, "211512", null, "4998", null, "188047", null, "4742", null, "22832", null, "2171", null, "2758", null, "765", null, "14701", null, "1638", null, "-999999999", "N", "-999999999", "N", "17466", null, "2461", null, "31949", null, "2866", null, "51498", null, "2520", null, "179268", null, "4843", null, "98492", null, "4624", null, "194591", null, "4334", null, "22447", null, "2331", null, "50337", null, "3849", null, "121807", null, "4325", null, "-888888888", "(X)", "-888888888", "(X)", "38.9", null, "1.1", null, "61.1", null, "1.1", null, "52.3", null, "1.3", null, "17.7", null, "1.3", null, "5.9", null, "0.9", null, "11.7", null, "1.1", null, "30.0", null, "1.5", null, "34.3", null, "1.2", null, "23.7", null, "1.0", null, "10.5", null, "1.1", null, "3.3", null, "0.7", null, "7.2", null, "0.8", null, "0.1", null, "0.1", null, "65.7", null, "1.2", null, "28.7", null, "1.2", null, "7.2", null, "0.8", null, "2.6", null, "0.5", null, "4.5", null, "0.6", null, "29.8", null, "1.5", null, "9.6", null, "1.0", null, "90.4", null, "1.0", null, "23.9", null, "1.3", null, "76.1", null, "1.3", null, "67.7", null, "1.3", null, "8.2", null, "0.8", null, "1.0", null, "0.3", null, "5.3", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "6.3", null, "0.9", null, "11.5", null, "1.0", null, "18.5", null, "0.9", null, "64.5", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.5", null, "1.2", null, "25.9", null, "1.8", null, "62.6", null, "1.9", null, "31521", null, "3171", null, "10975", null, "1685", null, "20546", null, "2629", null, "6771", null, "1588", null, "14930", null, "2169", null, "3566", null, "1228", null, "11364", null, "1789", null, "9820", null, "1691", null, "15469", null, "2287", null, "4108", null, "1229", null, "11302", null, "1985", null, "2212", null, "1027", null, "9090", null, "1722", null, "59", null, "103", null, "16052", null, "2207", null, "2663", null, "910", null, "3628", null, "958", null, "1354", null, "719", null, "2274", null, "644", null, "9761", null, "1684", null, "11063", null, "1846", null, "20458", null, "2797", null, "13638", null, "2056", null, "17883", null, "2353", null, "14465", null, "1699", null, "5982", null, "1562", null, "617", null, "573", null, "898", null, "539", null, "-999999999", "N", "-999999999", "N", "3670", null, "886", null, "5889", null, "1657", null, "8675", null, "1732", null, "13586", null, "1530", null, "40370", null, "7603", null, "21701", null, "2655", null, "3336", null, "857", null, "9098", null, "1704", null, "9267", null, "2047", null, "11.3", null, "1.1", null, "34.8", null, "4.5", null, "65.2", null, "4.5", null, "21.5", null, "4.3", null, "47.4", null, "5.2", null, "11.3", null, "3.7", null, "36.1", null, "4.7", null, "31.2", null, "4.5", null, "49.1", null, "5.0", null, "13.0", null, "3.5", null, "35.9", null, "5.3", null, "7.0", null, "3.2", null, "28.8", null, "4.7", null, "0.2", null, "0.3", null, "50.9", null, "5.0", null, "8.4", null, "2.8", null, "11.5", null, "2.8", null, "4.3", null, "2.2", null, "7.2", null, "2.0", null, "31.0", null, "4.5", null, "35.1", null, "5.2", null, "64.9", null, "5.2", null, "43.3", null, "4.9", null, "56.7", null, "4.9", null, "45.9", null, "5.3", null, "19.0", null, "4.4", null, "2.0", null, "1.8", null, "2.8", null, "1.7", null, "-999999999.0", "N", "-999999999.0", "N", "11.6", null, "2.7", null, "18.7", null, "4.3", null, "27.5", null, "4.0", null, "43.1", null, "4.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.4", null, "3.8", null, "41.9", null, "6.6", null, "42.7", null, "6.9", null, "246314", null, "4622", null, "97151", null, "3262", null, "149163", null, "4359", null, "138656", null, "4050", null, "34234", null, "3257", null, "12960", null, "2158", null, "21274", null, "2955", null, "73424", null, "4361", null, "79836", null, "3499", null, "61647", null, "2763", null, "17931", null, "2524", null, "7009", null, "1769", null, "10922", null, "2034", null, "258", null, "212", null, "166478", null, "4608", null, "77009", null, "3580", null, "16303", null, "2102", null, "5951", null, "1302", null, "10352", null, "1727", null, "73166", null, "4341", null, "15722", null, "2231", null, "230592", null, "4456", null, "52685", null, "3396", null, "193629", null, "5132", null, "173582", null, "4458", null, "16850", null, "1959", null, "2141", null, "689", null, "13803", null, "1598", null, "-999999999", "N", "-999999999", "N", "13796", null, "2279", null, "26060", null, "2806", null, "42823", null, "2855", null, "165682", null, "4477", null, "105475", null, "3095", null, "172890", null, "4651", null, "19111", null, "2239", null, "41239", null, "3426", null, "112540", null, "4361", null, "88.7", null, "1.1", null, "39.4", null, "1.2", null, "60.6", null, "1.2", null, "56.3", null, "1.5", null, "13.9", null, "1.3", null, "5.3", null, "0.9", null, "8.6", null, "1.2", null, "29.8", null, "1.6", null, "32.4", null, "1.3", null, "25.0", null, "1.1", null, "7.3", null, "1.0", null, "2.8", null, "0.7", null, "4.4", null, "0.8", null, "0.1", null, "0.1", null, "67.6", null, "1.3", null, "31.3", null, "1.4", null, "6.6", null, "0.9", null, "2.4", null, "0.5", null, "4.2", null, "0.7", null, "29.7", null, "1.6", null, "6.4", null, "0.9", null, "93.6", null, "0.9", null, "21.4", null, "1.4", null, "78.6", null, "1.4", null, "70.5", null, "1.5", null, "6.8", null, "0.8", null, "0.9", null, "0.3", null, "5.6", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "5.6", null, "0.9", null, "10.6", null, "1.1", null, "17.4", null, "1.1", null, "67.3", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.1", null, "1.2", null, "23.9", null, "1.9", null, "65.1", null, "1.9", null, "17", "14"], ["5001900US1715", "Congressional District 15 (119th Congress), Illinois", "310265", null, "4584", null, "147941", null, "3593", null, "162324", null, "4175", null, "155220", null, "5216", null, "38461", null, "3043", null, "11184", null, "1480", null, "27277", null, "2638", null, "116584", null, "4894", null, "79343", null, "2953", null, "54129", null, "2971", null, "24330", null, "2683", null, "6431", null, "1057", null, "17899", null, "2320", null, "884", null, "611", null, "230922", null, "4695", null, "101091", null, "4190", null, "14131", null, "1783", null, "4753", null, "999", null, "9378", null, "1475", null, "115700", null, "4751", null, "33910", null, "3080", null, "276355", null, "4833", null, "90469", null, "4018", null, "219796", null, "4709", null, "290151", null, "4495", null, "4823", null, "1301", null, "862", null, "462", null, "2052", null, "754", null, "-999999999", "N", "-999999999", "N", "1597", null, "518", null, "10593", null, "1622", null, "6752", null, "1141", null, "287364", null, "4520", null, "74855", null, "2258", null, "193681", null, "5107", null, "40149", null, "2680", null, "54304", null, "3047", null, "99228", null, "3761", null, "-888888888", "(X)", "-888888888", "(X)", "47.7", null, "1.0", null, "52.3", null, "1.0", null, "50.0", null, "1.6", null, "12.4", null, "1.0", null, "3.6", null, "0.5", null, "8.8", null, "0.8", null, "37.6", null, "1.4", null, "25.6", null, "0.9", null, "17.4", null, "1.0", null, "7.8", null, "0.9", null, "2.1", null, "0.3", null, "5.8", null, "0.7", null, "0.3", null, "0.2", null, "74.4", null, "0.9", null, "32.6", null, "1.3", null, "4.6", null, "0.6", null, "1.5", null, "0.3", null, "3.0", null, "0.5", null, "37.3", null, "1.4", null, "10.9", null, "1.0", null, "89.1", null, "1.0", null, "29.2", null, "1.2", null, "70.8", null, "1.2", null, "93.5", null, "0.7", null, "1.6", null, "0.4", null, "0.3", null, "0.1", null, "0.7", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "0.5", null, "0.2", null, "3.4", null, "0.5", null, "2.2", null, "0.4", null, "92.6", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "20.7", null, "1.2", null, "28.0", null, "1.4", null, "51.2", null, "1.5", null, "39375", null, "2966", null, "13562", null, "1545", null, "25813", null, "2829", null, "10507", null, "1464", null, "12364", null, "1665", null, "1761", null, "518", null, "10603", null, "1538", null, "16504", null, "2153", null, "15943", null, "1907", null, "6889", null, "1268", null, "8869", null, "1509", null, "900", null, "335", null, "7969", null, "1395", null, "185", null, "196", null, "23432", null, "2305", null, "3618", null, "850", null, "3495", null, "717", null, "861", null, "415", null, "2634", null, "661", null, "16319", null, "2121", null, "17449", null, "2261", null, "21926", null, "2202", null, "18685", null, "2030", null, "20690", null, "1904", null, "35754", null, "2719", null, "686", null, "385", null, "220", null, "223", null, "155", null, "169", null, "-999999999", "N", "-999999999", "N", "131", null, "154", null, "2429", null, "799", null, "1433", null, "771", null, "35334", null, "2694", null, "30032", null, "4106", null, "22871", null, "2183", null, "3988", null, "870", null, "10790", null, "1592", null, "8093", null, "1394", null, "12.7", null, "0.9", null, "34.4", null, "3.9", null, "65.6", null, "3.9", null, "26.7", null, "3.5", null, "31.4", null, "3.5", null, "4.5", null, "1.3", null, "26.9", null, "3.3", null, "41.9", null, "4.1", null, "40.5", null, "3.8", null, "17.5", null, "3.1", null, "22.5", null, "3.3", null, "2.3", null, "0.8", null, "20.2", null, "3.0", null, "0.5", null, "0.5", null, "59.5", null, "3.8", null, "9.2", null, "2.1", null, "8.9", null, "1.8", null, "2.2", null, "1.0", null, "6.7", null, "1.7", null, "41.4", null, "4.0", null, "44.3", null, "4.3", null, "55.7", null, "4.3", null, "47.5", null, "3.3", null, "52.5", null, "3.3", null, "90.8", null, "2.3", null, "1.7", null, "1.0", null, "0.6", null, "0.6", null, "0.4", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "0.3", null, "0.4", null, "6.2", null, "1.9", null, "3.6", null, "1.9", null, "89.7", null, "2.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.4", null, "3.5", null, "47.2", null, "5.3", null, "35.4", null, "5.0", null, "270890", null, "4949", null, "134379", null, "3326", null, "136511", null, "4486", null, "144713", null, "5170", null, "26097", null, "2642", null, "9423", null, "1396", null, "16674", null, "2181", null, "100080", null, "4452", null, "63400", null, "2838", null, "47240", null, "2953", null, "15461", null, "2107", null, "5531", null, "1003", null, "9930", null, "1767", null, "699", null, "571", null, "207490", null, "4599", null, "97473", null, "4196", null, "10636", null, "1694", null, "3892", null, "916", null, "6744", null, "1337", null, "99381", null, "4306", null, "16461", null, "2013", null, "254429", null, "4996", null, "71784", null, "4068", null, "199106", null, "4339", null, "254397", null, "4968", null, "4137", null, "1295", null, "642", null, "447", null, "1897", null, "719", null, "-999999999", "N", "-999999999", "N", "1466", null, "513", null, "8164", null, "1363", null, "5319", null, "983", null, "252030", null, "4979", null, "82247", null, "2061", null, "170810", null, "4716", null, "36161", null, "2437", null, "43514", null, "2598", null, "91135", null, "3756", null, "87.3", null, "0.9", null, "49.6", null, "1.1", null, "50.4", null, "1.1", null, "53.4", null, "1.7", null, "9.6", null, "1.0", null, "3.5", null, "0.5", null, "6.2", null, "0.8", null, "36.9", null, "1.4", null, "23.4", null, "1.0", null, "17.4", null, "1.0", null, "5.7", null, "0.8", null, "2.0", null, "0.4", null, "3.7", null, "0.7", null, "0.3", null, "0.2", null, "76.6", null, "1.0", null, "36.0", null, "1.5", null, "3.9", null, "0.6", null, "1.4", null, "0.3", null, "2.5", null, "0.5", null, "36.7", null, "1.4", null, "6.1", null, "0.7", null, "93.9", null, "0.7", null, "26.5", null, "1.3", null, "73.5", null, "1.3", null, "93.9", null, "0.7", null, "1.5", null, "0.5", null, "0.2", null, "0.2", null, "0.7", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "0.5", null, "0.2", null, "3.0", null, "0.5", null, "2.0", null, "0.4", null, "93.0", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "21.2", null, "1.2", null, "25.5", null, "1.5", null, "53.4", null, "1.5", null, "17", "15"], ["5001900US1716", "Congressional District 16 (119th Congress), Illinois", "311298", null, "4336", null, "141160", null, "3298", null, "170138", null, "4094", null, "164143", null, "4601", null, "41536", null, "3403", null, "14514", null, "1892", null, "27022", null, "2833", null, "105619", null, "4699", null, "88362", null, "3991", null, "62678", null, "3334", null, "24918", null, "2794", null, "8209", null, "1477", null, "16709", null, "2308", null, "766", null, "394", null, "222936", null, "5179", null, "101465", null, "4131", null, "16618", null, "2091", null, "6305", null, "1149", null, "10313", null, "1787", null, "104853", null, "4707", null, "24452", null, "2465", null, "286846", null, "4234", null, "76924", null, "3835", null, "234374", null, "4363", null, "276473", null, "4167", null, "5460", null, "1392", null, "573", null, "300", null, "6308", null, "991", null, "-999999999", "N", "-999999999", "N", "4663", null, "1344", null, "17719", null, "2107", null, "16322", null, "2336", null, "272122", null, "4293", null, "85435", null, "2511", null, "205679", null, "4887", null, "37554", null, "2423", null, "58874", null, "3436", null, "109251", null, "3508", null, "-888888888", "(X)", "-888888888", "(X)", "45.3", null, "1.0", null, "54.7", null, "1.0", null, "52.7", null, "1.4", null, "13.3", null, "1.1", null, "4.7", null, "0.6", null, "8.7", null, "0.9", null, "33.9", null, "1.4", null, "28.4", null, "1.3", null, "20.1", null, "1.1", null, "8.0", null, "0.9", null, "2.6", null, "0.5", null, "5.4", null, "0.7", null, "0.2", null, "0.1", null, "71.6", null, "1.3", null, "32.6", null, "1.3", null, "5.3", null, "0.7", null, "2.0", null, "0.4", null, "3.3", null, "0.6", null, "33.7", null, "1.4", null, "7.9", null, "0.8", null, "92.1", null, "0.8", null, "24.7", null, "1.1", null, "75.3", null, "1.1", null, "88.8", null, "0.9", null, "1.8", null, "0.4", null, "0.2", null, "0.1", null, "2.0", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "1.5", null, "0.4", null, "5.7", null, "0.7", null, "5.2", null, "0.7", null, "87.4", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.3", null, "1.0", null, "28.6", null, "1.5", null, "53.1", null, "1.3", null, "31051", null, "2473", null, "10804", null, "1254", null, "20247", null, "2212", null, "8041", null, "1571", null, "12239", null, "1985", null, "3510", null, "986", null, "8729", null, "1684", null, "10771", null, "1634", null, "14513", null, "2316", null, "5162", null, "1402", null, "8869", null, "1878", null, "2422", null, "760", null, "6447", null, "1557", null, "482", null, "357", null, "16538", null, "1788", null, "2879", null, "816", null, "3370", null, "1000", null, "1088", null, "594", null, "2282", null, "895", null, "10289", null, "1556", null, "9320", null, "1577", null, "21731", null, "2137", null, "15020", null, "1850", null, "16031", null, "1900", null, "24436", null, "2086", null, "1292", null, "684", null, "262", null, "229", null, "356", null, "242", null, "-999999999", "N", "-999999999", "N", "1269", null, "793", null, "3436", null, "1058", null, "4822", null, "1114", null, "23290", null, "1956", null, "38777", null, "4378", null, "20280", null, "2182", null, "3432", null, "852", null, "9318", null, "1948", null, "7530", null, "1414", null, "10.0", null, "0.7", null, "34.8", null, "3.7", null, "65.2", null, "3.7", null, "25.9", null, "4.9", null, "39.4", null, "5.1", null, "11.3", null, "3.0", null, "28.1", null, "4.7", null, "34.7", null, "4.6", null, "46.7", null, "5.4", null, "16.6", null, "4.4", null, "28.6", null, "5.0", null, "7.8", null, "2.4", null, "20.8", null, "4.2", null, "1.6", null, "1.1", null, "53.3", null, "5.4", null, "9.3", null, "2.7", null, "10.9", null, "3.3", null, "3.5", null, "1.9", null, "7.3", null, "3.0", null, "33.1", null, "4.6", null, "30.0", null, "4.4", null, "70.0", null, "4.4", null, "48.4", null, "4.6", null, "51.6", null, "4.6", null, "78.7", null, "3.7", null, "4.2", null, "2.1", null, "0.8", null, "0.7", null, "1.1", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "4.1", null, "2.5", null, "11.1", null, "3.3", null, "15.5", null, "3.1", null, "75.0", null, "4.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.9", null, "4.0", null, "45.9", null, "7.3", null, "37.1", null, "6.5", null, "280247", null, "4026", null, "130356", null, "3373", null, "149891", null, "3663", null, "156102", null, "4568", null, "29297", null, "2764", null, "11004", null, "1653", null, "18293", null, "2260", null, "94848", null, "4581", null, "73849", null, "3514", null, "57516", null, "3094", null, "16049", null, "2146", null, "5787", null, "1307", null, "10262", null, "1720", null, "284", null, "195", null, "206398", null, "4767", null, "98586", null, "4101", null, "13248", null, "1825", null, "5217", null, "973", null, "8031", null, "1456", null, "94564", null, "4558", null, "15132", null, "1942", null, "265115", null, "4365", null, "61904", null, "3178", null, "218343", null, "4166", null, "252037", null, "3876", null, "4168", null, "1187", null, "311", null, "238", null, "5952", null, "1030", null, "-999999999", "N", "-999999999", "N", "3394", null, "975", null, "14283", null, "2090", null, "11500", null, "2108", null, "248832", null, "4115", null, "90928", null, "1993", null, "185399", null, "4630", null, "34122", null, "2278", null, "49556", null, "2818", null, "101721", null, "3702", null, "90.0", null, "0.7", null, "46.5", null, "1.0", null, "53.5", null, "1.0", null, "55.7", null, "1.5", null, "10.5", null, "1.0", null, "3.9", null, "0.6", null, "6.5", null, "0.8", null, "33.8", null, "1.5", null, "26.4", null, "1.2", null, "20.5", null, "1.1", null, "5.7", null, "0.8", null, "2.1", null, "0.5", null, "3.7", null, "0.6", null, "0.1", null, "0.1", null, "73.6", null, "1.2", null, "35.2", null, "1.4", null, "4.7", null, "0.6", null, "1.9", null, "0.3", null, "2.9", null, "0.5", null, "33.7", null, "1.5", null, "5.4", null, "0.7", null, "94.6", null, "0.7", null, "22.1", null, "1.1", null, "77.9", null, "1.1", null, "89.9", null, "0.9", null, "1.5", null, "0.4", null, "0.1", null, "0.1", null, "2.1", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "1.2", null, "0.3", null, "5.1", null, "0.7", null, "4.1", null, "0.8", null, "88.8", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.4", null, "1.1", null, "26.7", null, "1.5", null, "54.9", null, "1.4", null, "17", "16"], ["5001900US1717", "Congressional District 17 (119th Congress), Illinois", "322357", null, "4054", null, "134479", null, "3233", null, "187878", null, "4401", null, "119273", null, "4649", null, "63964", null, "4324", null, "17505", null, "2170", null, "46459", null, "3829", null, "139120", null, "4956", null, "84155", null, "4101", null, "44298", null, "3023", null, "38148", null, "3423", null, "8415", null, "1511", null, "29733", null, "3109", null, "1709", null, "755", null, "238202", null, "5502", null, "74975", null, "3905", null, "25816", null, "3050", null, "9090", null, "1871", null, "16726", null, "2275", null, "137411", null, "5006", null, "53773", null, "4024", null, "268584", null, "5034", null, "90878", null, "3844", null, "231479", null, "4714", null, "243329", null, "4691", null, "36597", null, "2470", null, "1583", null, "665", null, "6626", null, "1306", null, "-999999999", "N", "-999999999", "N", "13694", null, "1603", null, "20292", null, "2120", null, "29267", null, "1608", null, "236889", null, "4421", null, "60530", null, "1808", null, "183237", null, "4753", null, "31372", null, "2823", null, "61533", null, "3570", null, "90332", null, "3946", null, "-888888888", "(X)", "-888888888", "(X)", "41.7", null, "1.0", null, "58.3", null, "1.0", null, "37.0", null, "1.4", null, "19.8", null, "1.3", null, "5.4", null, "0.7", null, "14.4", null, "1.2", null, "43.2", null, "1.4", null, "26.1", null, "1.3", null, "13.7", null, "0.9", null, "11.8", null, "1.1", null, "2.6", null, "0.5", null, "9.2", null, "1.0", null, "0.5", null, "0.2", null, "73.9", null, "1.3", null, "23.3", null, "1.2", null, "8.0", null, "0.9", null, "2.8", null, "0.6", null, "5.2", null, "0.7", null, "42.6", null, "1.4", null, "16.7", null, "1.2", null, "83.3", null, "1.2", null, "28.2", null, "1.1", null, "71.8", null, "1.1", null, "75.5", null, "1.1", null, "11.4", null, "0.7", null, "0.5", null, "0.2", null, "2.1", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "4.2", null, "0.5", null, "6.3", null, "0.7", null, "9.1", null, "0.5", null, "73.5", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.1", null, "1.5", null, "33.6", null, "1.6", null, "49.3", null, "1.8", null, "62732", null, "4019", null, "23157", null, "2402", null, "39575", null, "3469", null, "11427", null, "2174", null, "25581", null, "2567", null, "5201", null, "1393", null, "20380", null, "2361", null, "25724", null, "2815", null, "26297", null, "2813", null, "7774", null, "1897", null, "17336", null, "2277", null, "2288", null, "739", null, "15048", null, "2232", null, "1187", null, "660", null, "36435", null, "3528", null, "3653", null, "930", null, "8245", null, "1915", null, "2913", null, "1148", null, "5332", null, "1421", null, "24537", null, "2674", null, "28692", null, "2872", null, "34040", null, "2928", null, "28534", null, "2642", null, "34198", null, "3161", null, "36365", null, "3240", null, "16914", null, "2040", null, "106", null, "126", null, "579", null, "508", null, "-999999999", "N", "-999999999", "N", "3059", null, "1058", null, "5697", null, "1107", null, "6251", null, "1247", null, "34908", null, "3042", null, "25117", null, "3867", null, "37008", null, "2827", null, "6574", null, "1462", null, "19210", null, "2428", null, "11224", null, "1857", null, "19.5", null, "1.2", null, "36.9", null, "3.3", null, "63.1", null, "3.3", null, "18.2", null, "3.4", null, "40.8", null, "3.4", null, "8.3", null, "2.2", null, "32.5", null, "3.1", null, "41.0", null, "3.2", null, "41.9", null, "3.9", null, "12.4", null, "3.0", null, "27.6", null, "3.3", null, "3.6", null, "1.2", null, "24.0", null, "3.2", null, "1.9", null, "1.0", null, "58.1", null, "3.9", null, "5.8", null, "1.4", null, "13.1", null, "3.0", null, "4.6", null, "1.8", null, "8.5", null, "2.2", null, "39.1", null, "3.2", null, "45.7", null, "3.4", null, "54.3", null, "3.4", null, "45.5", null, "3.3", null, "54.5", null, "3.3", null, "58.0", null, "3.1", null, "27.0", null, "2.7", null, "0.2", null, "0.2", null, "0.9", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "4.9", null, "1.7", null, "9.1", null, "1.9", null, "10.0", null, "1.9", null, "55.6", null, "2.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.8", null, "3.8", null, "51.9", null, "5.0", null, "30.3", null, "4.6", null, "259625", null, "4833", null, "111322", null, "3434", null, "148303", null, "4411", null, "107846", null, "4404", null, "38383", null, "3683", null, "12304", null, "1726", null, "26079", null, "3201", null, "113396", null, "4720", null, "57858", null, "3732", null, "36524", null, "2742", null, "20812", null, "2734", null, "6127", null, "1347", null, "14685", null, "2323", null, "522", null, "407", null, "201767", null, "5149", null, "71322", null, "3715", null, "17571", null, "2237", null, "6177", null, "1374", null, "11394", null, "1751", null, "112874", null, "4765", null, "25081", null, "2896", null, "234544", null, "5114", null, "62344", null, "3905", null, "197281", null, "4984", null, "206964", null, "5160", null, "19683", null, "2318", null, "1477", null, "648", null, "6047", null, "1279", null, "-999999999", "N", "-999999999", "N", "10635", null, "1655", null, "14595", null, "1902", null, "23016", null, "1950", null, "201981", null, "4986", null, "69457", null, "2606", null, "146229", null, "4387", null, "24798", null, "2222", null, "42323", null, "2694", null, "79108", null, "3578", null, "80.5", null, "1.2", null, "42.9", null, "1.2", null, "57.1", null, "1.2", null, "41.5", null, "1.6", null, "14.8", null, "1.4", null, "4.7", null, "0.7", null, "10.0", null, "1.2", null, "43.7", null, "1.5", null, "22.3", null, "1.4", null, "14.1", null, "1.0", null, "8.0", null, "1.0", null, "2.4", null, "0.5", null, "5.7", null, "0.9", null, "0.2", null, "0.2", null, "77.7", null, "1.4", null, "27.5", null, "1.4", null, "6.8", null, "0.9", null, "2.4", null, "0.5", null, "4.4", null, "0.7", null, "43.5", null, "1.5", null, "9.7", null, "1.1", null, "90.3", null, "1.1", null, "24.0", null, "1.4", null, "76.0", null, "1.4", null, "79.7", null, "1.1", null, "7.6", null, "0.9", null, "0.6", null, "0.3", null, "2.3", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "4.1", null, "0.6", null, "5.6", null, "0.7", null, "8.9", null, "0.8", null, "77.8", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.0", null, "1.5", null, "28.9", null, "1.6", null, "54.1", null, "1.8", null, "17", "17"], ["5001900US1801", "Congressional District 1 (119th Congress), Indiana", "299126", null, "2586", null, "134155", null, "2912", null, "164971", null, "3195", null, "136658", null, "4361", null, "59194", null, "3914", null, "18091", null, "2542", null, "41103", null, "3016", null, "103274", null, "4672", null, "89519", null, "4144", null, "53743", null, "3225", null, "35200", null, "3384", null, "11412", null, "2174", null, "23788", null, "2643", null, "576", null, "370", null, "209607", null, "3914", null, "82915", null, "3682", null, "23994", null, "2705", null, "6679", null, "1377", null, "17315", null, "2283", null, "102698", null, "4721", null, "37363", null, "3358", null, "261763", null, "3996", null, "79646", null, "4442", null, "219480", null, "3976", null, "199577", null, "3867", null, "54326", null, "2165", null, "-999999999", "N", "-999999999", "N", "4089", null, "857", null, "-999999999", "N", "-999999999", "N", "15399", null, "1841", null, "23907", null, "2617", null, "43215", null, "1934", null, "189939", null, "3575", null, "75199", null, "1932", null, "195852", null, "4943", null, "33585", null, "2515", null, "61483", null, "3793", null, "100784", null, "4030", null, "-888888888", "(X)", "-888888888", "(X)", "44.8", null, "0.9", null, "55.2", null, "0.9", null, "45.7", null, "1.4", null, "19.8", null, "1.3", null, "6.0", null, "0.8", null, "13.7", null, "1.0", null, "34.5", null, "1.5", null, "29.9", null, "1.3", null, "18.0", null, "1.1", null, "11.8", null, "1.1", null, "3.8", null, "0.7", null, "8.0", null, "0.9", null, "0.2", null, "0.1", null, "70.1", null, "1.3", null, "27.7", null, "1.3", null, "8.0", null, "0.9", null, "2.2", null, "0.5", null, "5.8", null, "0.8", null, "34.3", null, "1.6", null, "12.5", null, "1.1", null, "87.5", null, "1.1", null, "26.6", null, "1.4", null, "73.4", null, "1.4", null, "66.7", null, "1.0", null, "18.2", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "1.4", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "5.1", null, "0.6", null, "8.0", null, "0.9", null, "14.4", null, "0.7", null, "63.5", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.1", null, "1.3", null, "31.4", null, "1.8", null, "51.5", null, "1.4", null, "27989", null, "2544", null, "9009", null, "1445", null, "18980", null, "2329", null, "6109", null, "1516", null, "13630", null, "1828", null, "1535", null, "740", null, "12095", null, "1660", null, "8250", null, "1243", null, "16185", null, "2084", null, "5018", null, "1405", null, "10952", null, "1803", null, "1091", null, "682", null, "9861", null, "1648", null, "215", null, "218", null, "11804", null, "1469", null, "1091", null, "473", null, "2678", null, "771", null, "444", null, "283", null, "2234", null, "698", null, "8035", null, "1275", null, "12296", null, "1913", null, "15693", null, "2118", null, "11120", null, "1701", null, "16869", null, "2112", null, "11582", null, "1807", null, "12539", null, "1938", null, "-999999999", "N", "-999999999", "N", "215", null, "184", null, "-999999999", "N", "-999999999", "N", "1410", null, "633", null, "2243", null, "829", null, "4333", null, "1075", null, "10054", null, "1711", null, "33276", null, "3680", null, "19739", null, "2142", null, "4827", null, "1327", null, "8271", null, "1510", null, "6641", null, "1513", null, "9.4", null, "0.8", null, "32.2", null, "4.7", null, "67.8", null, "4.7", null, "21.8", null, "5.1", null, "48.7", null, "4.4", null, "5.5", null, "2.6", null, "43.2", null, "4.1", null, "29.5", null, "3.7", null, "57.8", null, "4.4", null, "17.9", null, "4.8", null, "39.1", null, "4.8", null, "3.9", null, "2.4", null, "35.2", null, "4.4", null, "0.8", null, "0.8", null, "42.2", null, "4.4", null, "3.9", null, "1.7", null, "9.6", null, "2.8", null, "1.6", null, "1.0", null, "8.0", null, "2.5", null, "28.7", null, "4.0", null, "43.9", null, "5.6", null, "56.1", null, "5.6", null, "39.7", null, "5.0", null, "60.3", null, "5.0", null, "41.4", null, "5.2", null, "44.8", null, "5.3", null, "-999999999.0", "N", "-999999999.0", "N", "0.8", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "5.0", null, "2.3", null, "8.0", null, "2.9", null, "15.5", null, "3.8", null, "35.9", null, "5.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "24.5", null, "6.2", null, "41.9", null, "6.8", null, "33.6", null, "6.2", null, "271137", null, "3371", null, "125146", null, "2954", null, "145991", null, "3759", null, "130549", null, "4429", null, "45564", null, "3885", null, "16556", null, "2446", null, "29008", null, "2814", null, "95024", null, "4684", null, "73334", null, "3901", null, "48725", null, "3380", null, "24248", null, "3093", null, "10321", null, "2181", null, "13927", null, "2168", null, "361", null, "296", null, "197803", null, "4102", null, "81824", null, "3601", null, "21316", null, "2596", null, "6235", null, "1350", null, "15081", null, "2176", null, "94663", null, "4705", null, "25067", null, "2664", null, "246070", null, "4045", null, "68526", null, "4070", null, "202611", null, "4505", null, "187995", null, "4081", null, "41787", null, "2902", null, "-999999999", "N", "-999999999", "N", "3874", null, "897", null, "-999999999", "N", "-999999999", "N", "13989", null, "1906", null, "21664", null, "2656", null, "38882", null, "1995", null, "179885", null, "3863", null, "79816", null, "2036", null, "176113", null, "4840", null, "28758", null, "2477", null, "53212", null, "3821", null, "94143", null, "3978", null, "90.6", null, "0.8", null, "46.2", null, "1.1", null, "53.8", null, "1.1", null, "48.1", null, "1.7", null, "16.8", null, "1.4", null, "6.1", null, "0.9", null, "10.7", null, "1.0", null, "35.0", null, "1.6", null, "27.0", null, "1.4", null, "18.0", null, "1.2", null, "8.9", null, "1.1", null, "3.8", null, "0.8", null, "5.1", null, "0.8", null, "0.1", null, "0.1", null, "73.0", null, "1.4", null, "30.2", null, "1.4", null, "7.9", null, "0.9", null, "2.3", null, "0.5", null, "5.6", null, "0.8", null, "34.9", null, "1.7", null, "9.2", null, "1.0", null, "90.8", null, "1.0", null, "25.3", null, "1.4", null, "74.7", null, "1.4", null, "69.3", null, "1.3", null, "15.4", null, "1.0", null, "-999999999.0", "N", "-999999999.0", "N", "1.4", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "5.2", null, "0.7", null, "8.0", null, "1.0", null, "14.3", null, "0.7", null, "66.3", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.3", null, "1.4", null, "30.2", null, "2.0", null, "53.5", null, "1.7", null, "18", "01"], ["5001900US1802", "Congressional District 2 (119th Congress), Indiana", "287987", null, "3815", null, "123795", null, "2772", null, "164192", null, "3667", null, "140948", null, "4229", null, "45537", null, "3741", null, "15814", null, "2462", null, "29723", null, "2605", null, "101502", null, "4451", null, "83289", null, "4087", null, "53197", null, "3210", null, "29187", null, "3106", null, "9803", null, "1983", null, "19384", null, "2445", null, "905", null, "590", null, "204698", null, "4885", null, "87751", null, "3891", null, "16350", null, "2441", null, "6011", null, "1391", null, "10339", null, "1606", null, "100597", null, "4506", null, "35560", null, "2815", null, "252427", null, "4478", null, "82295", null, "3441", null, "205692", null, "4680", null, "233911", null, "3733", null, "18294", null, "1892", null, "-999999999", "N", "-999999999", "N", "4801", null, "777", null, "-999999999", "N", "-999999999", "N", "14967", null, "2103", null, "14806", null, "2108", null, "26104", null, "2223", null, "228362", null, "3489", null, "66934", null, "1675", null, "186485", null, "4867", null, "31018", null, "2334", null, "60387", null, "4208", null, "95080", null, "4084", null, "-888888888", "(X)", "-888888888", "(X)", "43.0", null, "0.9", null, "57.0", null, "0.9", null, "48.9", null, "1.4", null, "15.8", null, "1.3", null, "5.5", null, "0.8", null, "10.3", null, "0.9", null, "35.2", null, "1.5", null, "28.9", null, "1.4", null, "18.5", null, "1.2", null, "10.1", null, "1.0", null, "3.4", null, "0.7", null, "6.7", null, "0.8", null, "0.3", null, "0.2", null, "71.1", null, "1.4", null, "30.5", null, "1.3", null, "5.7", null, "0.9", null, "2.1", null, "0.5", null, "3.6", null, "0.6", null, "34.9", null, "1.5", null, "12.3", null, "1.0", null, "87.7", null, "1.0", null, "28.6", null, "1.2", null, "71.4", null, "1.2", null, "81.2", null, "1.0", null, "6.4", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "1.7", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "5.2", null, "0.7", null, "5.1", null, "0.7", null, "9.1", null, "0.7", null, "79.3", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.6", null, "1.1", null, "32.4", null, "2.0", null, "51.0", null, "2.0", null, "25416", null, "2574", null, "7736", null, "1408", null, "17680", null, "2373", null, "6911", null, "1489", null, "10673", null, "1829", null, "2562", null, "923", null, "8111", null, "1523", null, "7832", null, "1540", null, "13986", null, "2284", null, "4643", null, "1161", null, "9004", null, "1860", null, "1957", null, "945", null, "7047", null, "1546", null, "339", null, "429", null, "11430", null, "1606", null, "2268", null, "988", null, "1669", null, "553", null, "605", null, "318", null, "1064", null, "454", null, "7493", null, "1477", null, "12741", null, "2034", null, "12675", null, "1889", null, "11285", null, "1772", null, "14131", null, "2228", null, "14494", null, "2085", null, "6586", null, "1611", null, "-999999999", "N", "-999999999", "N", "333", null, "305", null, "-999999999", "N", "-999999999", "N", "2507", null, "1084", null, "1375", null, "529", null, "2716", null, "1087", null, "14273", null, "2059", null, "30513", null, "3132", null, "17584", null, "2299", null, "4359", null, "1212", null, "8136", null, "1755", null, "5089", null, "1397", null, "8.8", null, "0.9", null, "30.4", null, "5.1", null, "69.6", null, "5.1", null, "27.2", null, "5.4", null, "42.0", null, "5.3", null, "10.1", null, "3.3", null, "31.9", null, "5.1", null, "30.8", null, "5.4", null, "55.0", null, "5.8", null, "18.3", null, "4.4", null, "35.4", null, "5.4", null, "7.7", null, "3.4", null, "27.7", null, "5.1", null, "1.3", null, "1.7", null, "45.0", null, "5.8", null, "8.9", null, "3.8", null, "6.6", null, "2.4", null, "2.4", null, "1.3", null, "4.2", null, "1.9", null, "29.5", null, "5.4", null, "50.1", null, "5.8", null, "49.9", null, "5.8", null, "44.4", null, "6.0", null, "55.6", null, "6.0", null, "57.0", null, "6.8", null, "25.9", null, "5.8", null, "-999999999.0", "N", "-999999999.0", "N", "1.3", null, "1.2", null, "-999999999.0", "N", "-999999999.0", "N", "9.9", null, "3.8", null, "5.4", null, "2.0", null, "10.7", null, "3.9", null, "56.2", null, "6.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "24.8", null, "6.2", null, "46.3", null, "8.1", null, "28.9", null, "6.9", null, "262571", null, "3727", null, "116059", null, "2938", null, "146512", null, "3881", null, "134037", null, "4384", null, "34864", null, "3206", null, "13252", null, "2221", null, "21612", null, "2075", null, "93670", null, "4371", null, "69303", null, "3958", null, "48554", null, "3338", null, "20183", null, "2572", null, "7846", null, "1746", null, "12337", null, "1845", null, "566", null, "330", null, "193268", null, "4833", null, "85483", null, "3853", null, "14681", null, "2245", null, "5406", null, "1276", null, "9275", null, "1447", null, "93104", null, "4413", null, "22819", null, "1968", null, "239752", null, "4110", null, "71010", null, "3027", null, "191561", null, "4181", null, "219417", null, "3884", null, "11708", null, "1667", null, "-999999999", "N", "-999999999", "N", "4468", null, "814", null, "-999999999", "N", "-999999999", "N", "12460", null, "2055", null, "13431", null, "2067", null, "23388", null, "2274", null, "214089", null, "3679", null, "71029", null, "1560", null, "168901", null, "4663", null, "26659", null, "2123", null, "52251", null, "3634", null, "89991", null, "3875", null, "91.2", null, "0.9", null, "44.2", null, "1.1", null, "55.8", null, "1.1", null, "51.0", null, "1.6", null, "13.3", null, "1.2", null, "5.0", null, "0.8", null, "8.2", null, "0.8", null, "35.7", null, "1.6", null, "26.4", null, "1.5", null, "18.5", null, "1.3", null, "7.7", null, "1.0", null, "3.0", null, "0.7", null, "4.7", null, "0.7", null, "0.2", null, "0.1", null, "73.6", null, "1.5", null, "32.6", null, "1.4", null, "5.6", null, "0.9", null, "2.1", null, "0.5", null, "3.5", null, "0.5", null, "35.5", null, "1.6", null, "8.7", null, "0.8", null, "91.3", null, "0.8", null, "27.0", null, "1.1", null, "73.0", null, "1.1", null, "83.6", null, "1.1", null, "4.5", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "1.7", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "4.7", null, "0.8", null, "5.1", null, "0.8", null, "8.9", null, "0.8", null, "81.5", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.8", null, "1.1", null, "30.9", null, "1.9", null, "53.3", null, "2.0", null, "18", "02"], ["5001900US1803", "Congressional District 3 (119th Congress), Indiana", "306617", null, "3325", null, "125731", null, "2686", null, "180886", null, "3124", null, "150076", null, "4780", null, "51185", null, "3988", null, "14749", null, "2082", null, "36436", null, "3256", null, "105356", null, "3877", null, "95000", null, "3862", null, "60493", null, "3482", null, "33977", null, "3339", null, "9464", null, "1982", null, "24513", null, "2635", null, "530", null, "339", null, "211617", null, "3992", null, "89583", null, "3598", null, "17208", null, "2357", null, "5285", null, "1210", null, "11923", null, "1901", null, "104826", null, "3835", null, "32414", null, "2940", null, "274203", null, "4152", null, "89175", null, "4429", null, "217442", null, "4792", null, "259110", null, "3503", null, "18060", null, "1817", null, "2069", null, "615", null, "6856", null, "871", null, "-999999999", "N", "-999999999", "N", "5351", null, "1275", null, "14585", null, "1559", null, "16193", null, "1480", null, "255003", null, "3450", null, "71542", null, "1253", null, "201261", null, "4393", null, "28650", null, "2188", null, "64288", null, "3300", null, "108323", null, "3897", null, "-888888888", "(X)", "-888888888", "(X)", "41.0", null, "0.8", null, "59.0", null, "0.8", null, "48.9", null, "1.5", null, "16.7", null, "1.3", null, "4.8", null, "0.7", null, "11.9", null, "1.0", null, "34.4", null, "1.2", null, "31.0", null, "1.2", null, "19.7", null, "1.1", null, "11.1", null, "1.1", null, "3.1", null, "0.6", null, "8.0", null, "0.8", null, "0.2", null, "0.1", null, "69.0", null, "1.2", null, "29.2", null, "1.2", null, "5.6", null, "0.8", null, "1.7", null, "0.4", null, "3.9", null, "0.6", null, "34.2", null, "1.2", null, "10.6", null, "1.0", null, "89.4", null, "1.0", null, "29.1", null, "1.4", null, "70.9", null, "1.4", null, "84.5", null, "0.7", null, "5.9", null, "0.6", null, "0.7", null, "0.2", null, "2.2", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "1.7", null, "0.4", null, "4.8", null, "0.5", null, "5.3", null, "0.5", null, "83.2", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.2", null, "1.1", null, "31.9", null, "1.4", null, "53.8", null, "1.6", null, "23057", null, "2385", null, "7455", null, "1339", null, "15602", null, "2154", null, "4963", null, "1134", null, "9960", null, "1710", null, "2004", null, "977", null, "7956", null, "1607", null, "8134", null, "1563", null, "11728", null, "1798", null, "3470", null, "969", null, "8231", null, "1626", null, "1301", null, "881", null, "6930", null, "1436", null, "27", null, "37", null, "11329", null, "1746", null, "1493", null, "611", null, "1729", null, "656", null, "703", null, "363", null, "1026", null, "531", null, "8107", null, "1558", null, "10464", null, "1591", null, "12593", null, "2027", null, "12864", null, "2040", null, "10193", null, "1515", null, "15111", null, "1655", null, "3443", null, "1262", null, "346", null, "342", null, "1222", null, "699", null, "-999999999", "N", "-999999999", "N", "619", null, "383", null, "2316", null, "953", null, "1744", null, "771", null, "14772", null, "1663", null, "33020", null, "5226", null, "14923", null, "1838", null, "2423", null, "798", null, "8896", null, "1593", null, "3604", null, "1060", null, "7.5", null, "0.8", null, "32.3", null, "5.3", null, "67.7", null, "5.3", null, "21.5", null, "4.6", null, "43.2", null, "6.1", null, "8.7", null, "4.0", null, "34.5", null, "6.5", null, "35.3", null, "5.3", null, "50.9", null, "5.7", null, "15.0", null, "4.0", null, "35.7", null, "5.9", null, "5.6", null, "3.6", null, "30.1", null, "5.8", null, "0.1", null, "0.2", null, "49.1", null, "5.7", null, "6.5", null, "2.7", null, "7.5", null, "2.9", null, "3.0", null, "1.6", null, "4.4", null, "2.3", null, "35.2", null, "5.3", null, "45.4", null, "5.9", null, "54.6", null, "5.9", null, "55.8", null, "5.7", null, "44.2", null, "5.7", null, "65.5", null, "6.3", null, "14.9", null, "5.1", null, "1.5", null, "1.4", null, "5.3", null, "2.9", null, "-999999999.0", "N", "-999999999.0", "N", "2.7", null, "1.6", null, "10.0", null, "3.9", null, "7.6", null, "3.1", null, "64.1", null, "6.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.2", null, "5.1", null, "59.6", null, "7.4", null, "24.2", null, "6.5", null, "283560", null, "4193", null, "118276", null, "2815", null, "165284", null, "3862", null, "145113", null, "4605", null, "41225", null, "3629", null, "12745", null, "1927", null, "28480", null, "2931", null, "97222", null, "3642", null, "83272", null, "3871", null, "57023", null, "3459", null, "25746", null, "2992", null, "8163", null, "1782", null, "17583", null, "2488", null, "503", null, "333", null, "200288", null, "4173", null, "88090", null, "3501", null, "15479", null, "2394", null, "4582", null, "1149", null, "10897", null, "1920", null, "96719", null, "3598", null, "21950", null, "2363", null, "261610", null, "4442", null, "76311", null, "4410", null, "207249", null, "5022", null, "243999", null, "3680", null, "14617", null, "1722", null, "1723", null, "562", null, "5634", null, "1050", null, "-999999999", "N", "-999999999", "N", "4732", null, "1220", null, "12269", null, "1464", null, "14449", null, "1621", null, "240231", null, "3581", null, "75045", null, "1712", null, "186338", null, "4294", null, "26227", null, "2009", null, "55392", null, "3114", null, "104719", null, "3870", null, "92.5", null, "0.8", null, "41.7", null, "0.9", null, "58.3", null, "0.9", null, "51.2", null, "1.5", null, "14.5", null, "1.2", null, "4.5", null, "0.7", null, "10.0", null, "1.0", null, "34.3", null, "1.2", null, "29.4", null, "1.2", null, "20.1", null, "1.2", null, "9.1", null, "1.0", null, "2.9", null, "0.6", null, "6.2", null, "0.9", null, "0.2", null, "0.1", null, "70.6", null, "1.2", null, "31.1", null, "1.2", null, "5.5", null, "0.8", null, "1.6", null, "0.4", null, "3.8", null, "0.7", null, "34.1", null, "1.2", null, "7.7", null, "0.8", null, "92.3", null, "0.8", null, "26.9", null, "1.5", null, "73.1", null, "1.5", null, "86.0", null, "0.7", null, "5.2", null, "0.6", null, "0.6", null, "0.2", null, "2.0", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "1.7", null, "0.4", null, "4.3", null, "0.5", null, "5.1", null, "0.6", null, "84.7", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.1", null, "1.1", null, "29.7", null, "1.4", null, "56.2", null, "1.6", null, "18", "03"], ["5001900US1804", "Congressional District 4 (119th Congress), Indiana", "312635", null, "3137", null, "122070", null, "2788", null, "190565", null, "3934", null, "158511", null, "5231", null, "47841", null, "3517", null, "17602", null, "2266", null, "30239", null, "3100", null, "106283", null, "4075", null, "98550", null, "3755", null, "66231", null, "3681", null, "31982", null, "2652", null, "11407", null, "1774", null, "20575", null, "2367", null, "337", null, "247", null, "214085", null, "4182", null, "92280", null, "4127", null, "15859", null, "2455", null, "6195", null, "1394", null, "9664", null, "2017", null, "105946", null, "4029", null, "36617", null, "3197", null, "276018", null, "4096", null, "80685", null, "3785", null, "231950", null, "4337", null, "263344", null, "3768", null, "13391", null, "1547", null, "-999999999", "N", "-999999999", "N", "9686", null, "1148", null, "-999999999", "N", "-999999999", "N", "6187", null, "1555", null, "19018", null, "1981", null, "20739", null, "1324", null, "259658", null, "3482", null, "78399", null, "2442", null, "206352", null, "4755", null, "29693", null, "2023", null, "60578", null, "3727", null, "116081", null, "5101", null, "-888888888", "(X)", "-888888888", "(X)", "39.0", null, "0.9", null, "61.0", null, "0.9", null, "50.7", null, "1.5", null, "15.3", null, "1.1", null, "5.6", null, "0.7", null, "9.7", null, "1.0", null, "34.0", null, "1.3", null, "31.5", null, "1.2", null, "21.2", null, "1.1", null, "10.2", null, "0.8", null, "3.6", null, "0.6", null, "6.6", null, "0.8", null, "0.1", null, "0.1", null, "68.5", null, "1.2", null, "29.5", null, "1.3", null, "5.1", null, "0.8", null, "2.0", null, "0.4", null, "3.1", null, "0.6", null, "33.9", null, "1.3", null, "11.7", null, "1.0", null, "88.3", null, "1.0", null, "25.8", null, "1.2", null, "74.2", null, "1.2", null, "84.2", null, "0.8", null, "4.3", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "3.1", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "2.0", null, "0.5", null, "6.1", null, "0.6", null, "6.6", null, "0.4", null, "83.1", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.4", null, "1.0", null, "29.4", null, "1.7", null, "56.3", null, "1.8", null, "21647", null, "2355", null, "7735", null, "1164", null, "13912", null, "2224", null, "5816", null, "1435", null, "10497", null, "1599", null, "3110", null, "862", null, "7387", null, "1517", null, "5334", null, "1109", null, "12569", null, "2157", null, "3805", null, "1355", null, "8749", null, "1641", null, "2495", null, "817", null, "6254", null, "1593", null, "15", null, "30", null, "9078", null, "1467", null, "2011", null, "765", null, "1748", null, "636", null, "615", null, "397", null, "1133", null, "536", null, "5319", null, "1104", null, "11059", null, "1919", null, "10588", null, "1647", null, "11948", null, "1810", null, "9699", null, "1701", null, "15255", null, "1633", null, "2946", null, "1288", null, "-999999999", "N", "-999999999", "N", "203", null, "282", null, "-999999999", "N", "-999999999", "N", "441", null, "376", null, "2724", null, "1100", null, "2169", null, "967", null, "15151", null, "1618", null, "35325", null, "8531", null, "16313", null, "2250", null, "3446", null, "937", null, "7624", null, "1724", null, "5243", null, "1386", null, "6.9", null, "0.8", null, "35.7", null, "5.4", null, "64.3", null, "5.4", null, "26.9", null, "5.4", null, "48.5", null, "5.3", null, "14.4", null, "3.8", null, "34.1", null, "5.8", null, "24.6", null, "4.9", null, "58.1", null, "6.2", null, "17.6", null, "5.6", null, "40.4", null, "5.9", null, "11.5", null, "3.7", null, "28.9", null, "6.3", null, "0.1", null, "0.1", null, "41.9", null, "6.2", null, "9.3", null, "3.4", null, "8.1", null, "3.0", null, "2.8", null, "1.8", null, "5.2", null, "2.6", null, "24.6", null, "4.9", null, "51.1", null, "6.3", null, "48.9", null, "6.3", null, "55.2", null, "6.1", null, "44.8", null, "6.1", null, "70.5", null, "6.1", null, "13.6", null, "5.4", null, "-999999999.0", "N", "-999999999.0", "N", "0.9", null, "1.3", null, "-999999999.0", "N", "-999999999.0", "N", "2.0", null, "1.7", null, "12.6", null, "4.6", null, "10.0", null, "4.1", null, "70.0", null, "5.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "21.1", null, "5.4", null, "46.7", null, "8.3", null, "32.1", null, "7.0", null, "290988", null, "3826", null, "114335", null, "2802", null, "176653", null, "4281", null, "152695", null, "5331", null, "37344", null, "3283", null, "14492", null, "2166", null, "22852", null, "3015", null, "100949", null, "3999", null, "85981", null, "3915", null, "62426", null, "3586", null, "23233", null, "2384", null, "8912", null, "1638", null, "14321", null, "2098", null, "322", null, "243", null, "205007", null, "4260", null, "90269", null, "4153", null, "14111", null, "2350", null, "5580", null, "1378", null, "8531", null, "2037", null, "100627", null, "3956", null, "25558", null, "2591", null, "265430", null, "4218", null, "68737", null, "3339", null, "222251", null, "4473", null, "248089", null, "3984", null, "10445", null, "1562", null, "-999999999", "N", "-999999999", "N", "9483", null, "1206", null, "-999999999", "N", "-999999999", "N", "5746", null, "1480", null, "16294", null, "1997", null, "18570", null, "1569", null, "244507", null, "3719", null, "81322", null, "1454", null, "190039", null, "5006", null, "26247", null, "1746", null, "52954", null, "3543", null, "110838", null, "4828", null, "93.1", null, "0.8", null, "39.3", null, "1.0", null, "60.7", null, "1.0", null, "52.5", null, "1.6", null, "12.8", null, "1.1", null, "5.0", null, "0.7", null, "7.9", null, "1.0", null, "34.7", null, "1.4", null, "29.5", null, "1.2", null, "21.5", null, "1.1", null, "8.0", null, "0.8", null, "3.1", null, "0.6", null, "4.9", null, "0.7", null, "0.1", null, "0.1", null, "70.5", null, "1.2", null, "31.0", null, "1.3", null, "4.8", null, "0.8", null, "1.9", null, "0.5", null, "2.9", null, "0.7", null, "34.6", null, "1.4", null, "8.8", null, "0.9", null, "91.2", null, "0.9", null, "23.6", null, "1.1", null, "76.4", null, "1.1", null, "85.3", null, "0.9", null, "3.6", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "3.3", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "2.0", null, "0.5", null, "5.6", null, "0.7", null, "6.4", null, "0.5", null, "84.0", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.8", null, "1.0", null, "27.9", null, "1.7", null, "58.3", null, "1.8", null, "18", "04"], ["5001900US1805", "Congressional District 5 (119th Congress), Indiana", "315552", null, "3538", null, "129082", null, "3113", null, "186470", null, "4437", null, "154746", null, "4590", null, "46931", null, "4091", null, "16497", null, "2647", null, "30434", null, "2802", null, "113875", null, "4188", null, "93837", null, "3949", null, "65447", null, "3591", null, "28105", null, "2879", null, "8419", null, "1845", null, "19686", null, "2097", null, "285", null, "256", null, "221715", null, "4477", null, "89299", null, "3413", null, "18826", null, "2770", null, "8078", null, "2083", null, "10748", null, "1828", null, "113590", null, "4178", null, "34636", null, "3289", null, "280916", null, "4397", null, "90027", null, "4139", null, "225525", null, "4475", null, "265212", null, "3676", null, "18091", null, "2069", null, "363", null, "222", null, "11171", null, "1030", null, "-999999999", "N", "-999999999", "N", "5111", null, "1555", null, "15604", null, "2333", null, "10641", null, "1629", null, "263194", null, "3629", null, "80542", null, "2375", null, "201677", null, "5092", null, "30903", null, "2506", null, "57891", null, "3522", null, "112883", null, "4239", null, "-888888888", "(X)", "-888888888", "(X)", "40.9", null, "1.0", null, "59.1", null, "1.0", null, "49.0", null, "1.4", null, "14.9", null, "1.2", null, "5.2", null, "0.8", null, "9.6", null, "0.9", null, "36.1", null, "1.3", null, "29.7", null, "1.2", null, "20.7", null, "1.2", null, "8.9", null, "0.9", null, "2.7", null, "0.6", null, "6.2", null, "0.6", null, "0.1", null, "0.1", null, "70.3", null, "1.2", null, "28.3", null, "1.0", null, "6.0", null, "0.9", null, "2.6", null, "0.7", null, "3.4", null, "0.6", null, "36.0", null, "1.3", null, "11.0", null, "1.0", null, "89.0", null, "1.0", null, "28.5", null, "1.2", null, "71.5", null, "1.2", null, "84.0", null, "0.9", null, "5.7", null, "0.6", null, "0.1", null, "0.1", null, "3.5", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "1.6", null, "0.5", null, "4.9", null, "0.7", null, "3.4", null, "0.5", null, "83.4", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.3", null, "1.1", null, "28.7", null, "1.6", null, "56.0", null, "1.7", null, "24863", null, "2687", null, "9998", null, "1743", null, "14865", null, "1997", null, "5067", null, "1337", null, "10306", null, "1615", null, "2555", null, "785", null, "7751", null, "1440", null, "9490", null, "1617", null, "10805", null, "1801", null, "3086", null, "1069", null, "7582", null, "1518", null, "1783", null, "754", null, "5799", null, "1366", null, "137", null, "166", null, "14058", null, "2077", null, "1981", null, "956", null, "2724", null, "872", null, "772", null, "491", null, "1952", null, "736", null, "9353", null, "1587", null, "12745", null, "1991", null, "12118", null, "1885", null, "16136", null, "2330", null, "8727", null, "1557", null, "18438", null, "2158", null, "3225", null, "1040", null, "90", null, "83", null, "510", null, "487", null, "-999999999", "N", "-999999999", "N", "401", null, "301", null, "2199", null, "872", null, "570", null, "343", null, "18438", null, "2158", null, "25519", null, "3683", null, "15373", null, "2232", null, "3935", null, "1159", null, "7153", null, "1645", null, "4285", null, "1040", null, "7.9", null, "0.8", null, "40.2", null, "5.2", null, "59.8", null, "5.2", null, "20.4", null, "4.6", null, "41.5", null, "5.0", null, "10.3", null, "3.0", null, "31.2", null, "4.9", null, "38.2", null, "5.4", null, "43.5", null, "5.6", null, "12.4", null, "4.2", null, "30.5", null, "5.0", null, "7.2", null, "2.9", null, "23.3", null, "4.9", null, "0.6", null, "0.7", null, "56.5", null, "5.6", null, "8.0", null, "3.5", null, "11.0", null, "3.5", null, "3.1", null, "2.0", null, "7.9", null, "2.9", null, "37.6", null, "5.3", null, "51.3", null, "5.6", null, "48.7", null, "5.6", null, "64.9", null, "5.5", null, "35.1", null, "5.5", null, "74.2", null, "4.4", null, "13.0", null, "3.6", null, "0.4", null, "0.3", null, "2.1", null, "2.0", null, "-999999999.0", "N", "-999999999.0", "N", "1.6", null, "1.2", null, "8.8", null, "3.3", null, "2.3", null, "1.4", null, "74.2", null, "4.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "25.6", null, "6.8", null, "46.5", null, "7.5", null, "27.9", null, "6.0", null, "290689", null, "3975", null, "119084", null, "3093", null, "171605", null, "4359", null, "149679", null, "4615", null, "36625", null, "3621", null, "13942", null, "2601", null, "22683", null, "2318", null, "104385", null, "4061", null, "83032", null, "3890", null, "62361", null, "3612", null, "20523", null, "2592", null, "6636", null, "1813", null, "13887", null, "1854", null, "148", null, "183", null, "207657", null, "4639", null, "87318", null, "3343", null, "16102", null, "2378", null, "7306", null, "1990", null, "8796", null, "1512", null, "104237", null, "4090", null, "21891", null, "2826", null, "268798", null, "4488", null, "73891", null, "3679", null, "216798", null, "4786", null, "246774", null, "4081", null, "14866", null, "1992", null, "273", null, "209", null, "10661", null, "1094", null, "-999999999", "N", "-999999999", "N", "4710", null, "1563", null, "13405", null, "2033", null, "10071", null, "1549", null, "244756", null, "4024", null, "86784", null, "2291", null, "186304", null, "4765", null, "26968", null, "2136", null, "50738", null, "3448", null, "108598", null, "4411", null, "92.1", null, "0.8", null, "41.0", null, "1.1", null, "59.0", null, "1.1", null, "51.5", null, "1.4", null, "12.6", null, "1.2", null, "4.8", null, "0.9", null, "7.8", null, "0.8", null, "35.9", null, "1.3", null, "28.6", null, "1.3", null, "21.5", null, "1.2", null, "7.1", null, "0.9", null, "2.3", null, "0.6", null, "4.8", null, "0.6", null, "0.1", null, "0.1", null, "71.4", null, "1.3", null, "30.0", null, "1.1", null, "5.5", null, "0.8", null, "2.5", null, "0.7", null, "3.0", null, "0.5", null, "35.9", null, "1.3", null, "7.5", null, "1.0", null, "92.5", null, "1.0", null, "25.4", null, "1.2", null, "74.6", null, "1.2", null, "84.9", null, "1.1", null, "5.1", null, "0.7", null, "0.1", null, "0.1", null, "3.7", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "1.6", null, "0.5", null, "4.6", null, "0.7", null, "3.5", null, "0.5", null, "84.2", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.5", null, "1.0", null, "27.2", null, "1.7", null, "58.3", null, "1.9", null, "18", "05"], ["5001900US1806", "Congressional District 6 (119th Congress), Indiana", "303861", null, "4392", null, "123891", null, "3707", null, "179970", null, "4144", null, "144768", null, "4937", null, "55118", null, "3786", null, "17568", null, "2235", null, "37550", null, "3700", null, "103975", null, "5030", null, "91339", null, "4556", null, "58008", null, "4190", null, "32478", null, "3538", null, "9646", null, "1919", null, "22832", null, "3229", null, "853", null, "476", null, "212522", null, "6531", null, "86760", null, "4070", null, "22640", null, "2575", null, "7922", null, "1422", null, "14718", null, "2297", null, "103122", null, "5140", null, "33986", null, "2965", null, "269875", null, "5229", null, "94058", null, "4605", null, "209803", null, "6561", null, "255243", null, "5822", null, "12806", null, "2502", null, "-999999999", "N", "-999999999", "N", "14311", null, "1831", null, "-999999999", "N", "-999999999", "N", "7297", null, "1845", null, "13353", null, "2714", null, "14612", null, "2427", null, "252927", null, "5791", null, "77374", null, "2076", null, "199886", null, "4603", null, "27661", null, "2400", null, "63391", null, "4375", null, "108834", null, "4362", null, "-888888888", "(X)", "-888888888", "(X)", "40.8", null, "1.1", null, "59.2", null, "1.1", null, "47.6", null, "1.5", null, "18.1", null, "1.3", null, "5.8", null, "0.7", null, "12.4", null, "1.2", null, "34.2", null, "1.5", null, "30.1", null, "1.6", null, "19.1", null, "1.4", null, "10.7", null, "1.2", null, "3.2", null, "0.6", null, "7.5", null, "1.1", null, "0.3", null, "0.2", null, "69.9", null, "1.6", null, "28.6", null, "1.2", null, "7.5", null, "0.8", null, "2.6", null, "0.5", null, "4.8", null, "0.8", null, "33.9", null, "1.5", null, "11.2", null, "1.0", null, "88.8", null, "1.0", null, "31.0", null, "1.6", null, "69.0", null, "1.6", null, "84.0", null, "1.4", null, "4.2", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "4.7", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "2.4", null, "0.6", null, "4.4", null, "0.9", null, "4.8", null, "0.8", null, "83.2", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.8", null, "1.1", null, "31.7", null, "2.0", null, "54.4", null, "2.0", null, "26579", null, "3365", null, "8882", null, "1531", null, "17697", null, "2899", null, "6125", null, "1808", null, "13779", null, "2539", null, "2443", null, "913", null, "11336", null, "2522", null, "6675", null, "1462", null, "13194", null, "2657", null, "3588", null, "1250", null, "9333", null, "2233", null, "1422", null, "708", null, "7911", null, "2181", null, "273", null, "236", null, "13385", null, "2244", null, "2537", null, "1232", null, "4446", null, "1205", null, "1021", null, "569", null, "3425", null, "1110", null, "6402", null, "1421", null, "12620", null, "2595", null, "13959", null, "2058", null, "13893", null, "2397", null, "12686", null, "2682", null, "17000", null, "2183", null, "4689", null, "2039", null, "-999999999", "N", "-999999999", "N", "1585", null, "911", null, "-999999999", "N", "-999999999", "N", "1551", null, "979", null, "1585", null, "826", null, "1669", null, "1179", null, "17000", null, "2183", null, "32353", null, "5254", null, "19904", null, "3188", null, "3195", null, "1092", null, "10817", null, "2701", null, "5892", null, "1584", null, "8.7", null, "1.1", null, "33.4", null, "5.1", null, "66.6", null, "5.1", null, "23.0", null, "5.5", null, "51.8", null, "6.9", null, "9.2", null, "3.4", null, "42.7", null, "7.4", null, "25.1", null, "5.4", null, "49.6", null, "6.7", null, "13.5", null, "4.2", null, "35.1", null, "6.7", null, "5.4", null, "2.6", null, "29.8", null, "6.9", null, "1.0", null, "0.9", null, "50.4", null, "6.7", null, "9.5", null, "4.3", null, "16.7", null, "4.3", null, "3.8", null, "2.2", null, "12.9", null, "3.9", null, "24.1", null, "5.3", null, "47.5", null, "6.3", null, "52.5", null, "6.3", null, "52.3", null, "7.2", null, "47.7", null, "7.2", null, "64.0", null, "7.1", null, "17.6", null, "6.7", null, "-999999999.0", "N", "-999999999.0", "N", "6.0", null, "3.3", null, "-999999999.0", "N", "-999999999.0", "N", "5.8", null, "3.6", null, "6.0", null, "2.9", null, "6.3", null, "4.4", null, "64.0", null, "7.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.1", null, "5.5", null, "54.3", null, "8.1", null, "29.6", null, "7.3", null, "277282", null, "5573", null, "115009", null, "3483", null, "162273", null, "4887", null, "138643", null, "5028", null, "41339", null, "3281", null, "15125", null, "2226", null, "26214", null, "2924", null, "97300", null, "4971", null, "78145", null, "4234", null, "54420", null, "4074", null, "23145", null, "2999", null, "8224", null, "1853", null, "14921", null, "2438", null, "580", null, "410", null, "199137", null, "6611", null, "84223", null, "4145", null, "18194", null, "2316", null, "6901", null, "1403", null, "11293", null, "2129", null, "96720", null, "5047", null, "21366", null, "2275", null, "255916", null, "5808", null, "80165", null, "3869", null, "197117", null, "6540", null, "238243", null, "5882", null, "8117", null, "1668", null, "-999999999", "N", "-999999999", "N", "12726", null, "1952", null, "-999999999", "N", "-999999999", "N", "5746", null, "1524", null, "11768", null, "2482", null, "12943", null, "2230", null, "235927", null, "5807", null, "80910", null, "1306", null, "179982", null, "4710", null, "24466", null, "2121", null, "52574", null, "3958", null, "102942", null, "4110", null, "91.3", null, "1.1", null, "41.5", null, "1.1", null, "58.5", null, "1.1", null, "50.0", null, "1.6", null, "14.9", null, "1.2", null, "5.5", null, "0.8", null, "9.5", null, "1.0", null, "35.1", null, "1.5", null, "28.2", null, "1.6", null, "19.6", null, "1.5", null, "8.3", null, "1.1", null, "3.0", null, "0.7", null, "5.4", null, "0.9", null, "0.2", null, "0.1", null, "71.8", null, "1.6", null, "30.4", null, "1.3", null, "6.6", null, "0.8", null, "2.5", null, "0.5", null, "4.1", null, "0.8", null, "34.9", null, "1.5", null, "7.7", null, "0.8", null, "92.3", null, "0.8", null, "28.9", null, "1.5", null, "71.1", null, "1.5", null, "85.9", null, "1.3", null, "2.9", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "4.6", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "2.1", null, "0.5", null, "4.2", null, "0.9", null, "4.7", null, "0.8", null, "85.1", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.6", null, "1.1", null, "29.2", null, "2.0", null, "57.2", null, "1.8", null, "18", "06"], ["5001900US1807", "Congressional District 7 (119th Congress), Indiana", "321262", null, "5150", null, "108818", null, "3729", null, "212444", null, "5168", null, "108435", null, "5381", null, "68038", null, "5295", null, "15906", null, "2549", null, "52132", null, "4740", null, "144789", null, "6628", null, "86437", null, "4332", null, "43603", null, "3696", null, "41773", null, "3884", null, "6883", null, "1844", null, "34890", null, "3723", null, "1061", null, "720", null, "234825", null, "6109", null, "64832", null, "4317", null, "26265", null, "4141", null, "9023", null, "2068", null, "17242", null, "3202", null, "143728", null, "6600", null, "50136", null, "4883", null, "271126", null, "6685", null, "91837", null, "5399", null, "229425", null, "6504", null, "169609", null, "5369", null, "101282", null, "4231", null, "1901", null, "933", null, "8693", null, "1613", null, "-999999999", "N", "-999999999", "N", "15762", null, "2708", null, "23759", null, "4031", null, "32061", null, "2394", null, "163155", null, "5084", null, "64843", null, "2292", null, "176473", null, "6124", null, "18744", null, "2913", null, "57078", null, "5015", null, "100651", null, "6099", null, "-888888888", "(X)", "-888888888", "(X)", "33.9", null, "1.1", null, "66.1", null, "1.1", null, "33.8", null, "1.6", null, "21.2", null, "1.6", null, "5.0", null, "0.8", null, "16.2", null, "1.5", null, "45.1", null, "1.8", null, "26.9", null, "1.3", null, "13.6", null, "1.1", null, "13.0", null, "1.2", null, "2.1", null, "0.6", null, "10.9", null, "1.2", null, "0.3", null, "0.2", null, "73.1", null, "1.3", null, "20.2", null, "1.3", null, "8.2", null, "1.3", null, "2.8", null, "0.6", null, "5.4", null, "1.0", null, "44.7", null, "1.8", null, "15.6", null, "1.5", null, "84.4", null, "1.5", null, "28.6", null, "1.6", null, "71.4", null, "1.6", null, "52.8", null, "1.4", null, "31.5", null, "1.2", null, "0.6", null, "0.3", null, "2.7", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "4.9", null, "0.8", null, "7.4", null, "1.3", null, "10.0", null, "0.8", null, "50.8", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.6", null, "1.6", null, "32.3", null, "2.7", null, "57.0", null, "2.7", null, "37316", null, "4900", null, "13152", null, "2466", null, "24164", null, "3935", null, "7365", null, "1713", null, "17349", null, "3172", null, "2861", null, "1132", null, "14488", null, "3203", null, "12602", null, "2509", null, "17487", null, "3241", null, "4673", null, "1590", null, "12593", null, "2695", null, "1769", null, "1033", null, "10824", null, "2771", null, "221", null, "274", null, "19829", null, "3029", null, "2692", null, "930", null, "4756", null, "1655", null, "1092", null, "517", null, "3664", null, "1575", null, "12381", null, "2506", null, "20072", null, "3635", null, "17244", null, "3056", null, "19111", null, "2818", null, "18205", null, "3749", null, "10708", null, "2205", null, "18420", null, "3263", null, "196", null, "157", null, "807", null, "434", null, "-999999999", "N", "-999999999", "N", "2014", null, "1064", null, "5171", null, "2087", null, "4268", null, "1387", null, "9878", null, "2156", null, "24638", null, "6359", null, "24714", null, "4039", null, "4392", null, "1462", null, "13518", null, "3270", null, "6804", null, "1897", null, "11.6", null, "1.5", null, "35.2", null, "5.3", null, "64.8", null, "5.3", null, "19.7", null, "3.8", null, "46.5", null, "5.2", null, "7.7", null, "3.2", null, "38.8", null, "5.6", null, "33.8", null, "5.6", null, "46.9", null, "5.3", null, "12.5", null, "3.8", null, "33.7", null, "5.2", null, "4.7", null, "2.9", null, "29.0", null, "5.5", null, "0.6", null, "0.7", null, "53.1", null, "5.3", null, "7.2", null, "2.4", null, "12.7", null, "4.1", null, "2.9", null, "1.4", null, "9.8", null, "3.9", null, "33.2", null, "5.6", null, "53.8", null, "6.2", null, "46.2", null, "6.2", null, "51.2", null, "6.0", null, "48.8", null, "6.0", null, "28.7", null, "5.1", null, "49.4", null, "6.2", null, "0.5", null, "0.4", null, "2.2", null, "1.1", null, "-999999999.0", "N", "-999999999.0", "N", "5.4", null, "2.7", null, "13.9", null, "5.0", null, "11.4", null, "3.5", null, "26.5", null, "5.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.8", null, "5.7", null, "54.7", null, "8.1", null, "27.5", null, "6.8", null, "283946", null, "6531", null, "95666", null, "3617", null, "188280", null, "6323", null, "101070", null, "5508", null, "50689", null, "4954", null, "13045", null, "2257", null, "37644", null, "4037", null, "132187", null, "6555", null, "68950", null, "4434", null, "38930", null, "3469", null, "29180", null, "3642", null, "5114", null, "1372", null, "24066", null, "3555", null, "840", null, "657", null, "214996", null, "6678", null, "62140", null, "4257", null, "21509", null, "3433", null, "7931", null, "1899", null, "13578", null, "2428", null, "131347", null, "6574", null, "30064", null, "3890", null, "253882", null, "6913", null, "72726", null, "5206", null, "211220", null, "7337", null, "158901", null, "5266", null, "82862", null, "4737", null, "1705", null, "896", null, "7886", null, "1678", null, "-999999999", "N", "-999999999", "N", "13748", null, "2552", null, "18588", null, "3188", null, "27793", null, "2824", null, "153277", null, "4954", null, "70376", null, "1896", null, "151759", null, "6553", null, "14352", null, "2307", null, "43560", null, "4221", null, "93847", null, "5983", null, "88.4", null, "1.5", null, "33.7", null, "1.3", null, "66.3", null, "1.3", null, "35.6", null, "1.8", null, "17.9", null, "1.7", null, "4.6", null, "0.8", null, "13.3", null, "1.4", null, "46.6", null, "2.0", null, "24.3", null, "1.5", null, "13.7", null, "1.2", null, "10.3", null, "1.2", null, "1.8", null, "0.5", null, "8.5", null, "1.2", null, "0.3", null, "0.2", null, "75.7", null, "1.5", null, "21.9", null, "1.4", null, "7.6", null, "1.2", null, "2.8", null, "0.7", null, "4.8", null, "0.9", null, "46.3", null, "2.0", null, "10.6", null, "1.3", null, "89.4", null, "1.3", null, "25.6", null, "1.8", null, "74.4", null, "1.8", null, "56.0", null, "1.7", null, "29.2", null, "1.4", null, "0.6", null, "0.3", null, "2.8", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "4.8", null, "0.9", null, "6.5", null, "1.1", null, "9.8", null, "1.0", null, "54.0", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "9.5", null, "1.5", null, "28.7", null, "2.6", null, "61.8", null, "2.7", null, "18", "07"], ["5001900US1808", "Congressional District 8 (119th Congress), Indiana", "314006", null, "3691", null, "137395", null, "2177", null, "176611", null, "3809", null, "150804", null, "4237", null, "50430", null, "3597", null, "15019", null, "1922", null, "35411", null, "2967", null, "112772", null, "4188", null, "90293", null, "4277", null, "55762", null, "3773", null, "33832", null, "3275", null, "9892", null, "1718", null, "23940", null, "2636", null, "699", null, "383", null, "223713", null, "4575", null, "95042", null, "3053", null, "16598", null, "2130", null, "5127", null, "1060", null, "11471", null, "1766", null, "112073", null, "4179", null, "41537", null, "3002", null, "272469", null, "3852", null, "105032", null, "4097", null, "208974", null, "4775", null, "285359", null, "3580", null, "8667", null, "1385", null, "-999999999", "N", "-999999999", "N", "1981", null, "507", null, "105", null, "29", null, "4182", null, "1181", null, "12501", null, "1718", null, "7384", null, "927", null, "284240", null, "3651", null, "65297", null, "1789", null, "201234", null, "4785", null, "33052", null, "2133", null, "66354", null, "3668", null, "101828", null, "4232", null, "-888888888", "(X)", "-888888888", "(X)", "43.8", null, "0.8", null, "56.2", null, "0.8", null, "48.0", null, "1.3", null, "16.1", null, "1.1", null, "4.8", null, "0.6", null, "11.3", null, "0.9", null, "35.9", null, "1.3", null, "28.8", null, "1.3", null, "17.8", null, "1.2", null, "10.8", null, "1.0", null, "3.2", null, "0.5", null, "7.6", null, "0.8", null, "0.2", null, "0.1", null, "71.2", null, "1.3", null, "30.3", null, "0.9", null, "5.3", null, "0.7", null, "1.6", null, "0.3", null, "3.7", null, "0.6", null, "35.7", null, "1.3", null, "13.2", null, "0.9", null, "86.8", null, "0.9", null, "33.4", null, "1.3", null, "66.6", null, "1.3", null, "90.9", null, "0.7", null, "2.8", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "0.6", null, "0.2", null, "0.0", null, "0.1", null, "1.3", null, "0.4", null, "4.0", null, "0.5", null, "2.4", null, "0.3", null, "90.5", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.4", null, "1.0", null, "33.0", null, "1.6", null, "50.6", null, "1.6", null, "30543", null, "2847", null, "10747", null, "1490", null, "19796", null, "2556", null, "5451", null, "888", null, "12712", null, "2077", null, "2445", null, "826", null, "10267", null, "1993", null, "12380", null, "1709", null, "13367", null, "2075", null, "3300", null, "810", null, "9611", null, "1898", null, "1812", null, "623", null, "7799", null, "1905", null, "456", null, "358", null, "17176", null, "1883", null, "2151", null, "539", null, "3101", null, "990", null, "633", null, "451", null, "2468", null, "801", null, "11924", null, "1650", null, "15708", null, "2392", null, "14835", null, "2034", null, "17557", null, "2177", null, "12986", null, "1993", null, "25280", null, "2785", null, "2846", null, "1015", null, "-999999999", "N", "-999999999", "N", "16", null, "26", null, "105", null, "29", null, "234", null, "189", null, "2062", null, "680", null, "484", null, "306", null, "25155", null, "2758", null, "22490", null, "4251", null, "18163", null, "2195", null, "3689", null, "815", null, "10265", null, "1779", null, "4209", null, "922", null, "9.7", null, "0.9", null, "35.2", null, "4.5", null, "64.8", null, "4.5", null, "17.8", null, "3.0", null, "41.6", null, "4.8", null, "8.0", null, "2.7", null, "33.6", null, "4.9", null, "40.5", null, "4.3", null, "43.8", null, "4.6", null, "10.8", null, "2.5", null, "31.5", null, "4.8", null, "5.9", null, "2.1", null, "25.5", null, "5.2", null, "1.5", null, "1.2", null, "56.2", null, "4.6", null, "7.0", null, "1.9", null, "10.2", null, "3.1", null, "2.1", null, "1.5", null, "8.1", null, "2.5", null, "39.0", null, "4.2", null, "51.4", null, "5.6", null, "48.6", null, "5.6", null, "57.5", null, "5.0", null, "42.5", null, "5.0", null, "82.8", null, "3.9", null, "9.3", null, "3.2", null, "-999999999.0", "N", "-999999999.0", "N", "0.1", null, "0.1", null, "0.3", null, "0.1", null, "0.8", null, "0.6", null, "6.8", null, "2.2", null, "1.6", null, "1.0", null, "82.4", null, "3.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "20.3", null, "4.3", null, "56.5", null, "5.5", null, "23.2", null, "4.6", null, "283463", null, "4360", null, "126648", null, "2879", null, "156815", null, "4412", null, "145353", null, "4084", null, "37718", null, "3355", null, "12574", null, "1685", null, "25144", null, "2767", null, "100392", null, "4032", null, "76926", null, "4517", null, "52462", null, "3683", null, "24221", null, "2907", null, "8080", null, "1556", null, "16141", null, "2275", null, "243", null, "188", null, "206537", null, "4622", null, "92891", null, "2977", null, "13497", null, "1858", null, "4494", null, "916", null, "9003", null, "1617", null, "100149", null, "4023", null, "25829", null, "2432", null, "257634", null, "4121", null, "87475", null, "3904", null, "195988", null, "4494", null, "260079", null, "4072", null, "5821", null, "1250", null, "-999999999", "N", "-999999999", "N", "1965", null, "507", null, "0", null, "211", null, "3948", null, "1155", null, "10439", null, "1765", null, "6900", null, "879", null, "259085", null, "4131", null, "70768", null, "1580", null, "183071", null, "4835", null, "29363", null, "2119", null, "56089", null, "3563", null, "97619", null, "4231", null, "90.3", null, "0.9", null, "44.7", null, "1.0", null, "55.3", null, "1.0", null, "51.3", null, "1.3", null, "13.3", null, "1.1", null, "4.4", null, "0.6", null, "8.9", null, "0.9", null, "35.4", null, "1.3", null, "27.1", null, "1.4", null, "18.5", null, "1.2", null, "8.5", null, "1.0", null, "2.9", null, "0.5", null, "5.7", null, "0.8", null, "0.1", null, "0.1", null, "72.9", null, "1.4", null, "32.8", null, "1.0", null, "4.8", null, "0.7", null, "1.6", null, "0.3", null, "3.2", null, "0.6", null, "35.3", null, "1.3", null, "9.1", null, "0.8", null, "90.9", null, "0.8", null, "30.9", null, "1.3", null, "69.1", null, "1.3", null, "91.8", null, "0.7", null, "2.1", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "0.7", null, "0.2", null, "0.0", null, "0.1", null, "1.4", null, "0.4", null, "3.7", null, "0.6", null, "2.4", null, "0.3", null, "91.4", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.0", null, "1.2", null, "30.6", null, "1.7", null, "53.3", null, "1.7", null, "18", "08"], ["5001900US1809", "Congressional District 9 (119th Congress), Indiana", "314591", null, "4053", null, "134444", null, "3320", null, "180147", null, "4719", null, "148615", null, "5710", null, "48914", null, "3970", null, "16891", null, "2402", null, "32023", null, "3436", null, "117062", null, "5495", null, "80580", null, "4286", null, "51918", null, "3455", null, "27767", null, "3283", null, "9005", null, "1811", null, "18762", null, "2801", null, "895", null, "570", null, "234011", null, "5099", null, "96697", null, "4995", null, "21147", null, "2360", null, "7886", null, "1676", null, "13261", null, "2142", null, "116167", null, "5460", null, "42258", null, "3437", null, "272333", null, "4796", null, "93443", null, "5036", null, "221148", null, "5599", null, "285706", null, "3892", null, "6029", null, "1316", null, "-999999999", "N", "-999999999", "N", "-999999999", "N", "-999999999", "N", "-999999999", "N", "-999999999", "N", "-999999999", "N", "-999999999", "N", "14197", null, "2035", null, "11399", null, "1661", null, "282816", null, "3729", null, "70510", null, "2792", null, "197529", null, "5397", null, "31866", null, "2791", null, "59024", null, "3524", null, "106639", null, "5120", null, "-888888888", "(X)", "-888888888", "(X)", "42.7", null, "1.1", null, "57.3", null, "1.1", null, "47.2", null, "1.8", null, "15.5", null, "1.3", null, "5.4", null, "0.8", null, "10.2", null, "1.1", null, "37.2", null, "1.6", null, "25.6", null, "1.3", null, "16.5", null, "1.1", null, "8.8", null, "1.0", null, "2.9", null, "0.6", null, "6.0", null, "0.9", null, "0.3", null, "0.2", null, "74.4", null, "1.3", null, "30.7", null, "1.6", null, "6.7", null, "0.8", null, "2.5", null, "0.5", null, "4.2", null, "0.7", null, "36.9", null, "1.6", null, "13.4", null, "1.1", null, "86.6", null, "1.1", null, "29.7", null, "1.5", null, "70.3", null, "1.5", null, "90.8", null, "0.8", null, "1.9", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "4.5", null, "0.6", null, "3.6", null, "0.5", null, "89.9", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.1", null, "1.4", null, "29.9", null, "1.6", null, "54.0", null, "1.9", null, "21534", null, "2641", null, "6591", null, "1257", null, "14943", null, "2298", null, "4639", null, "1250", null, "9252", null, "2016", null, "1608", null, "801", null, "7644", null, "1725", null, "7643", null, "1374", null, "10568", null, "2097", null, "2861", null, "989", null, "7634", null, "1959", null, "1224", null, "840", null, "6410", null, "1598", null, "73", null, "129", null, "10966", null, "1670", null, "1778", null, "859", null, "1618", null, "679", null, "384", null, "235", null, "1234", null, "621", null, "7570", null, "1386", null, "11355", null, "2092", null, "10179", null, "1872", null, "13206", null, "2063", null, "8328", null, "1674", null, "19268", null, "2672", null, "693", null, "475", null, "-999999999", "N", "-999999999", "N", "-999999999", "N", "-999999999", "N", "-999999999", "N", "-999999999", "N", "-999999999", "N", "-999999999", "N", "1486", null, "667", null, "218", null, "292", null, "19204", null, "2658", null, "28240", null, "6437", null, "13891", null, "2407", null, "4795", null, "1758", null, "5515", null, "1214", null, "3581", null, "1114", null, "6.8", null, "0.8", null, "30.6", null, "5.3", null, "69.4", null, "5.3", null, "21.5", null, "5.3", null, "43.0", null, "6.4", null, "7.5", null, "3.6", null, "35.5", null, "5.5", null, "35.5", null, "6.0", null, "49.1", null, "6.4", null, "13.3", null, "4.6", null, "35.5", null, "6.8", null, "5.7", null, "3.8", null, "29.8", null, "5.4", null, "0.3", null, "0.6", null, "50.9", null, "6.4", null, "8.3", null, "3.8", null, "7.5", null, "3.1", null, "1.8", null, "1.1", null, "5.7", null, "2.8", null, "35.2", null, "6.2", null, "52.7", null, "6.9", null, "47.3", null, "6.9", null, "61.3", null, "6.2", null, "38.7", null, "6.2", null, "89.5", null, "4.0", null, "3.2", null, "2.2", null, "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "6.9", null, "3.3", null, "1.0", null, "1.4", null, "89.2", null, "4.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "34.5", null, "9.1", null, "39.7", null, "8.2", null, "25.8", null, "7.6", null, "293057", null, "4459", null, "127853", null, "3367", null, "165204", null, "4700", null, "143976", null, "5789", null, "39662", null, "3333", null, "15283", null, "2362", null, "24379", null, "3032", null, "109419", null, "5368", null, "70012", null, "4368", null, "49057", null, "3308", null, "20133", null, "2601", null, "7781", null, "1671", null, "12352", null, "2315", null, "822", null, "528", null, "223045", null, "5011", null, "94919", null, "5071", null, "19529", null, "2231", null, "7502", null, "1658", null, "12027", null, "1977", null, "108597", null, "5327", null, "30903", null, "2962", null, "262154", null, "4917", null, "80237", null, "4724", null, "212820", null, "5435", null, "266438", null, "4260", null, "5336", null, "1355", null, "-999999999", "N", "-999999999", "N", "-999999999", "N", "-999999999", "N", "-999999999", "N", "-999999999", "N", "-999999999", "N", "-999999999", "N", "12711", null, "2121", null, "11181", null, "1656", null, "263612", null, "4046", null, "74252", null, "3257", null, "183638", null, "5968", null, "27071", null, "2291", null, "53509", null, "3506", null, "103058", null, "5111", null, "93.2", null, "0.8", null, "43.6", null, "1.1", null, "56.4", null, "1.1", null, "49.1", null, "1.7", null, "13.5", null, "1.1", null, "5.2", null, "0.8", null, "8.3", null, "1.0", null, "37.3", null, "1.8", null, "23.9", null, "1.4", null, "16.7", null, "1.1", null, "6.9", null, "0.9", null, "2.7", null, "0.6", null, "4.2", null, "0.8", null, "0.3", null, "0.2", null, "76.1", null, "1.4", null, "32.4", null, "1.7", null, "6.7", null, "0.8", null, "2.6", null, "0.6", null, "4.1", null, "0.7", null, "37.1", null, "1.8", null, "10.5", null, "1.0", null, "89.5", null, "1.0", null, "27.4", null, "1.5", null, "72.6", null, "1.5", null, "90.9", null, "0.9", null, "1.8", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "4.3", null, "0.7", null, "3.8", null, "0.6", null, "90.0", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.7", null, "1.2", null, "29.1", null, "1.6", null, "56.1", null, "2.0", null, "18", "09"], ["5001900US1901", "Congressional District 1 (119th Congress), Iowa", "334322", null, "3339", null, "137596", null, "2692", null, "196726", null, "3846", null, "159585", null, "4614", null, "48393", null, "3697", null, "16325", null, "1857", null, "32068", null, "3096", null, "126344", null, "4485", null, "92788", null, "4084", null, "59390", null, "3271", null, "33004", null, "3163", null, "11107", null, "1728", null, "21897", null, "2715", null, "394", null, "353", null, "241534", null, "4510", null, "100195", null, "3682", null, "15389", null, "1843", null, "5218", null, "1120", null, "10171", null, "1594", null, "125950", null, "4507", null, "43863", null, "2575", null, "290459", null, "4003", null, "86433", null, "3821", null, "247889", null, "4806", null, "294585", null, "3477", null, "12146", null, "1742", null, "649", null, "396", null, "6904", null, "932", null, "-999999999", "N", "-999999999", "N", "4424", null, "1068", null, "15542", null, "2272", null, "15718", null, "1499", null, "288912", null, "3223", null, "72200", null, "2747", null, "207978", null, "4998", null, "34327", null, "2093", null, "59950", null, "3697", null, "113701", null, "4622", null, "-888888888", "(X)", "-888888888", "(X)", "41.2", null, "0.8", null, "58.8", null, "0.8", null, "47.7", null, "1.3", null, "14.5", null, "1.1", null, "4.9", null, "0.6", null, "9.6", null, "0.9", null, "37.8", null, "1.3", null, "27.8", null, "1.2", null, "17.8", null, "1.0", null, "9.9", null, "0.9", null, "3.3", null, "0.5", null, "6.5", null, "0.8", null, "0.1", null, "0.1", null, "72.2", null, "1.2", null, "30.0", null, "1.0", null, "4.6", null, "0.6", null, "1.6", null, "0.3", null, "3.0", null, "0.5", null, "37.7", null, "1.3", null, "13.1", null, "0.8", null, "86.9", null, "0.8", null, "25.9", null, "1.1", null, "74.1", null, "1.1", null, "88.1", null, "0.6", null, "3.6", null, "0.5", null, "0.2", null, "0.1", null, "2.1", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "1.3", null, "0.3", null, "4.6", null, "0.7", null, "4.7", null, "0.4", null, "86.4", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.5", null, "1.0", null, "28.8", null, "1.7", null, "54.7", null, "1.7", null, "29502", null, "2779", null, "8656", null, "1269", null, "20846", null, "2526", null, "5627", null, "1350", null, "13380", null, "2343", null, "2730", null, "747", null, "10650", null, "2217", null, "10495", null, "1438", null, "15661", null, "2382", null, "4360", null, "1249", null, "11018", null, "2195", null, "2410", null, "761", null, "8608", null, "2016", null, "283", null, "320", null, "13841", null, "1654", null, "1267", null, "494", null, "2362", null, "835", null, "320", null, "185", null, "2042", null, "813", null, "10212", null, "1428", null, "15465", null, "2055", null, "14037", null, "2080", null, "14894", null, "2308", null, "14608", null, "1863", null, "21120", null, "2010", null, "3880", null, "1367", null, "204", null, "269", null, "150", null, "158", null, "-999999999", "N", "-999999999", "N", "803", null, "633", null, "3273", null, "1204", null, "2719", null, "1010", null, "20574", null, "2032", null, "23081", null, "3509", null, "19007", null, "2565", null, "4953", null, "1347", null, "8391", null, "1799", null, "5663", null, "1275", null, "8.8", null, "0.8", null, "29.3", null, "4.1", null, "70.7", null, "4.1", null, "19.1", null, "4.3", null, "45.4", null, "5.6", null, "9.3", null, "2.6", null, "36.1", null, "5.7", null, "35.6", null, "4.7", null, "53.1", null, "5.0", null, "14.8", null, "4.1", null, "37.3", null, "5.6", null, "8.2", null, "2.6", null, "29.2", null, "5.4", null, "1.0", null, "1.1", null, "46.9", null, "5.0", null, "4.3", null, "1.7", null, "8.0", null, "2.8", null, "1.1", null, "0.7", null, "6.9", null, "2.7", null, "34.6", null, "4.6", null, "52.4", null, "5.2", null, "47.6", null, "5.2", null, "50.5", null, "5.3", null, "49.5", null, "5.3", null, "71.6", null, "4.9", null, "13.2", null, "4.2", null, "0.7", null, "0.9", null, "0.5", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "2.7", null, "2.1", null, "11.1", null, "3.7", null, "9.2", null, "3.2", null, "69.7", null, "4.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "26.1", null, "5.8", null, "44.1", null, "7.0", null, "29.8", null, "6.5", null, "304820", null, "4251", null, "128940", null, "2771", null, "175880", null, "4036", null, "153958", null, "4639", null, "35013", null, "2807", null, "13595", null, "1809", null, "21418", null, "2277", null, "115849", null, "4259", null, "77127", null, "3315", null, "55030", null, "3152", null, "21986", null, "2252", null, "8697", null, "1569", null, "13289", null, "1988", null, "111", null, "113", null, "227693", null, "4563", null, "98928", null, "3695", null, "13027", null, "1600", null, "4898", null, "1124", null, "8129", null, "1349", null, "115738", null, "4282", null, "28398", null, "2447", null, "276422", null, "4352", null, "71539", null, "3243", null, "233281", null, "4870", null, "273465", null, "4040", null, "8266", null, "1574", null, "445", null, "299", null, "6754", null, "925", null, "-999999999", "N", "-999999999", "N", "3621", null, "988", null, "12269", null, "1712", null, "12999", null, "1519", null, "268338", null, "3833", null, "79326", null, "2537", null, "188971", null, "4851", null, "29374", null, "1981", null, "51559", null, "3057", null, "108038", null, "4462", null, "91.2", null, "0.8", null, "42.3", null, "0.9", null, "57.7", null, "0.9", null, "50.5", null, "1.3", null, "11.5", null, "0.9", null, "4.5", null, "0.6", null, "7.0", null, "0.7", null, "38.0", null, "1.3", null, "25.3", null, "1.0", null, "18.1", null, "1.0", null, "7.2", null, "0.7", null, "2.9", null, "0.5", null, "4.4", null, "0.7", null, "0.0", null, "0.1", null, "74.7", null, "1.0", null, "32.5", null, "1.0", null, "4.3", null, "0.5", null, "1.6", null, "0.4", null, "2.7", null, "0.4", null, "38.0", null, "1.3", null, "9.3", null, "0.8", null, "90.7", null, "0.8", null, "23.5", null, "1.1", null, "76.5", null, "1.1", null, "89.7", null, "0.6", null, "2.7", null, "0.5", null, "0.1", null, "0.1", null, "2.2", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "1.2", null, "0.3", null, "4.0", null, "0.6", null, "4.3", null, "0.5", null, "88.0", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.5", null, "1.0", null, "27.3", null, "1.6", null, "57.2", null, "1.6", null, "19", "01"], ["5001900US1902", "Congressional District 2 (119th Congress), Iowa", "338770", null, "3305", null, "145842", null, "2548", null, "192928", null, "3262", null, "164394", null, "4353", null, "44913", null, "3464", null, "14091", null, "1846", null, "30822", null, "2733", null, "129463", null, "4444", null, "90868", null, "3489", null, "60523", null, "2914", null, "29680", null, "2736", null, "8605", null, "1503", null, "21075", null, "2330", null, "665", null, "499", null, "247902", null, "3703", null, "103871", null, "3371", null, "15233", null, "1779", null, "5486", null, "1140", null, "9747", null, "1346", null, "128798", null, "4447", null, "36120", null, "2924", null, "302650", null, "3927", null, "81718", null, "3375", null, "257052", null, "4137", null, "301048", null, "3302", null, "12325", null, "1414", null, "1046", null, "427", null, "4633", null, "876", null, "-999999999", "N", "-999999999", "N", "3356", null, "842", null, "16094", null, "1980", null, "11964", null, "1031", null, "298319", null, "3223", null, "75299", null, "1789", null, "209307", null, "4431", null, "31453", null, "1886", null, "59848", null, "3589", null, "118006", null, "3900", null, "-888888888", "(X)", "-888888888", "(X)", "43.1", null, "0.7", null, "56.9", null, "0.7", null, "48.5", null, "1.2", null, "13.3", null, "1.0", null, "4.2", null, "0.5", null, "9.1", null, "0.8", null, "38.2", null, "1.2", null, "26.8", null, "1.0", null, "17.9", null, "0.8", null, "8.8", null, "0.8", null, "2.5", null, "0.4", null, "6.2", null, "0.7", null, "0.2", null, "0.1", null, "73.2", null, "1.0", null, "30.7", null, "1.0", null, "4.5", null, "0.5", null, "1.6", null, "0.3", null, "2.9", null, "0.4", null, "38.0", null, "1.2", null, "10.7", null, "0.8", null, "89.3", null, "0.8", null, "24.1", null, "1.0", null, "75.9", null, "1.0", null, "88.9", null, "0.5", null, "3.6", null, "0.4", null, "0.3", null, "0.1", null, "1.4", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "1.0", null, "0.2", null, "4.8", null, "0.6", null, "3.5", null, "0.3", null, "88.1", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.0", null, "0.9", null, "28.6", null, "1.6", null, "56.4", null, "1.3", null, "25709", null, "2507", null, "8200", null, "1187", null, "17509", null, "2251", null, "4692", null, "1082", null, "9849", null, "1676", null, "938", null, "403", null, "8911", null, "1568", null, "11168", null, "1792", null, "11356", null, "1693", null, "3411", null, "968", null, "7846", null, "1539", null, "561", null, "302", null, "7285", null, "1462", null, "99", null, "94", null, "14353", null, "1979", null, "1281", null, "456", null, "2003", null, "615", null, "377", null, "223", null, "1626", null, "607", null, "11069", null, "1799", null, "12769", null, "1928", null, "12940", null, "1771", null, "12094", null, "1911", null, "13615", null, "1998", null, "18640", null, "2055", null, "3413", null, "1146", null, "73", null, "60", null, "571", null, "345", null, "-999999999", "N", "-999999999", "N", "109", null, "121", null, "2903", null, "999", null, "1276", null, "537", null, "18362", null, "2057", null, "26078", null, "2266", null, "14541", null, "1879", null, "1934", null, "551", null, "8316", null, "1505", null, "4291", null, "1038", null, "7.6", null, "0.7", null, "31.9", null, "4.3", null, "68.1", null, "4.3", null, "18.3", null, "3.9", null, "38.3", null, "5.6", null, "3.6", null, "1.6", null, "34.7", null, "5.2", null, "43.4", null, "5.2", null, "44.2", null, "5.2", null, "13.3", null, "3.6", null, "30.5", null, "5.3", null, "2.2", null, "1.2", null, "28.3", null, "5.1", null, "0.4", null, "0.4", null, "55.8", null, "5.2", null, "5.0", null, "1.7", null, "7.8", null, "2.3", null, "1.5", null, "0.9", null, "6.3", null, "2.3", null, "43.1", null, "5.3", null, "49.7", null, "5.3", null, "50.3", null, "5.3", null, "47.0", null, "5.8", null, "53.0", null, "5.8", null, "72.5", null, "4.2", null, "13.3", null, "4.3", null, "0.3", null, "0.2", null, "2.2", null, "1.3", null, "-999999999.0", "N", "-999999999.0", "N", "0.4", null, "0.5", null, "11.3", null, "3.7", null, "5.0", null, "2.1", null, "71.4", null, "4.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.3", null, "4.0", null, "57.2", null, "6.4", null, "29.5", null, "5.9", null, "313061", null, "3825", null, "137642", null, "2364", null, "175419", null, "3473", null, "159702", null, "4340", null, "35064", null, "2891", null, "13153", null, "1734", null, "21911", null, "2208", null, "118295", null, "4407", null, "79512", null, "3167", null, "57112", null, "2792", null, "21834", null, "2241", null, "8044", null, "1433", null, "13790", null, "1853", null, "566", null, "490", null, "233549", null, "3755", null, "102590", null, "3370", null, "13230", null, "1759", null, "5109", null, "1083", null, "8121", null, "1273", null, "117729", null, "4390", null, "23351", null, "2234", null, "289710", null, "4142", null, "69624", null, "3061", null, "243437", null, "3821", null, "282408", null, "3586", null, "8912", null, "1371", null, "973", null, "427", null, "4062", null, "823", null, "-999999999", "N", "-999999999", "N", "3247", null, "833", null, "13191", null, "1844", null, "10688", null, "978", null, "279957", null, "3539", null, "79281", null, "1808", null, "194766", null, "4200", null, "29519", null, "1855", null, "51532", null, "3072", null, "113715", null, "3942", null, "92.4", null, "0.7", null, "44.0", null, "0.7", null, "56.0", null, "0.7", null, "51.0", null, "1.3", null, "11.2", null, "0.9", null, "4.2", null, "0.6", null, "7.0", null, "0.7", null, "37.8", null, "1.2", null, "25.4", null, "0.9", null, "18.2", null, "0.9", null, "7.0", null, "0.7", null, "2.6", null, "0.5", null, "4.4", null, "0.6", null, "0.2", null, "0.2", null, "74.6", null, "0.9", null, "32.8", null, "1.1", null, "4.2", null, "0.6", null, "1.6", null, "0.3", null, "2.6", null, "0.4", null, "37.6", null, "1.3", null, "7.5", null, "0.7", null, "92.5", null, "0.7", null, "22.2", null, "0.9", null, "77.8", null, "0.9", null, "90.2", null, "0.5", null, "2.8", null, "0.4", null, "0.3", null, "0.1", null, "1.3", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "1.0", null, "0.3", null, "4.2", null, "0.6", null, "3.4", null, "0.3", null, "89.4", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.2", null, "0.9", null, "26.5", null, "1.5", null, "58.4", null, "1.4", null, "19", "02"], ["5001900US1903", "Congressional District 3 (119th Congress), Iowa", "344493", null, "4021", null, "128105", null, "2384", null, "216388", null, "4199", null, "160194", null, "5539", null, "51432", null, "3889", null, "15593", null, "2328", null, "35839", null, "3213", null, "132867", null, "5193", null, "107516", null, "4098", null, "71388", null, "3736", null, "35196", null, "3418", null, "8996", null, "1869", null, "26200", null, "2910", null, "932", null, "489", null, "236977", null, "4671", null, "88806", null, "3683", null, "16236", null, "2019", null, "6597", null, "1455", null, "9639", null, "1584", null, "131935", null, "5192", null, "33040", null, "2665", null, "311453", null, "4399", null, "82583", null, "4807", null, "261910", null, "5486", null, "291165", null, "3988", null, "17681", null, "1929", null, "777", null, "553", null, "11741", null, "1309", null, "-999999999", "N", "-999999999", "N", "6903", null, "1514", null, "16015", null, "1913", null, "22075", null, "1927", null, "284266", null, "3798", null, "80284", null, "2498", null, "211626", null, "5895", null, "29342", null, "2050", null, "59595", null, "4824", null, "122689", null, "5392", null, "-888888888", "(X)", "-888888888", "(X)", "37.2", null, "0.7", null, "62.8", null, "0.7", null, "46.5", null, "1.5", null, "14.9", null, "1.1", null, "4.5", null, "0.7", null, "10.4", null, "0.9", null, "38.6", null, "1.5", null, "31.2", null, "1.1", null, "20.7", null, "1.1", null, "10.2", null, "1.0", null, "2.6", null, "0.5", null, "7.6", null, "0.8", null, "0.3", null, "0.1", null, "68.8", null, "1.1", null, "25.8", null, "1.0", null, "4.7", null, "0.6", null, "1.9", null, "0.4", null, "2.8", null, "0.5", null, "38.3", null, "1.5", null, "9.6", null, "0.8", null, "90.4", null, "0.8", null, "24.0", null, "1.4", null, "76.0", null, "1.4", null, "84.5", null, "0.7", null, "5.1", null, "0.5", null, "0.2", null, "0.2", null, "3.4", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "2.0", null, "0.4", null, "4.6", null, "0.5", null, "6.4", null, "0.5", null, "82.5", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.9", null, "1.0", null, "28.2", null, "2.1", null, "58.0", null, "1.9", null, "28902", null, "2561", null, "9124", null, "1381", null, "19778", null, "2254", null, "7626", null, "1760", null, "12215", null, "2068", null, "2480", null, "948", null, "9735", null, "1916", null, "9061", null, "1387", null, "15850", null, "1960", null, "5125", null, "1369", null, "10706", null, "1913", null, "1846", null, "797", null, "8860", null, "1787", null, "19", null, "26", null, "13052", null, "1689", null, "2501", null, "902", null, "1509", null, "691", null, "634", null, "492", null, "875", null, "523", null, "9042", null, "1387", null, "12398", null, "2051", null, "16504", null, "2298", null, "12654", null, "1606", null, "16248", null, "2222", null, "18762", null, "2186", null, "5388", null, "1666", null, "109", null, "117", null, "1549", null, "589", null, "-999999999", "N", "-999999999", "N", "1147", null, "704", null, "1947", null, "748", null, "2267", null, "889", null, "18193", null, "2089", null, "31108", null, "6123", null, "19841", null, "2589", null, "3020", null, "1129", null, "10424", null, "1936", null, "6397", null, "1466", null, "8.4", null, "0.7", null, "31.6", null, "4.2", null, "68.4", null, "4.2", null, "26.4", null, "5.3", null, "42.3", null, "5.7", null, "8.6", null, "3.2", null, "33.7", null, "5.5", null, "31.4", null, "4.9", null, "54.8", null, "4.5", null, "17.7", null, "4.4", null, "37.0", null, "5.7", null, "6.4", null, "2.8", null, "30.7", null, "5.3", null, "0.1", null, "0.1", null, "45.2", null, "4.5", null, "8.7", null, "2.8", null, "5.2", null, "2.2", null, "2.2", null, "1.7", null, "3.0", null, "1.8", null, "31.3", null, "4.9", null, "42.9", null, "6.1", null, "57.1", null, "6.1", null, "43.8", null, "4.9", null, "56.2", null, "4.9", null, "64.9", null, "5.3", null, "18.6", null, "5.2", null, "0.4", null, "0.4", null, "5.4", null, "2.1", null, "-999999999.0", "N", "-999999999.0", "N", "4.0", null, "2.4", null, "6.7", null, "2.6", null, "7.8", null, "3.0", null, "62.9", null, "5.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.2", null, "5.0", null, "52.5", null, "7.0", null, "32.2", null, "6.6", null, "315591", null, "4252", null, "118981", null, "2356", null, "196610", null, "3658", null, "152568", null, "5264", null, "39217", null, "3525", null, "13113", null, "2165", null, "26104", null, "2825", null, "123806", null, "5007", null, "91666", null, "3907", null, "66263", null, "3256", null, "24490", null, "2989", null, "7150", null, "1730", null, "17340", null, "2425", null, "913", null, "488", null, "223925", null, "4830", null, "86305", null, "3615", null, "14727", null, "1977", null, "5963", null, "1355", null, "8764", null, "1470", null, "122893", null, "4982", null, "20642", null, "2246", null, "294949", null, "4427", null, "69929", null, "4260", null, "245662", null, "5188", null, "272403", null, "4366", null, "12293", null, "1987", null, "668", null, "562", null, "10192", null, "1380", null, "-999999999", "N", "-999999999", "N", "5756", null, "1255", null, "14068", null, "1741", null, "19808", null, "1716", null, "266073", null, "4184", null, "84100", null, "2771", null, "191785", null, "5734", null, "26322", null, "1686", null, "49171", null, "4290", null, "116292", null, "5107", null, "91.6", null, "0.7", null, "37.7", null, "0.7", null, "62.3", null, "0.7", null, "48.3", null, "1.5", null, "12.4", null, "1.1", null, "4.2", null, "0.7", null, "8.3", null, "0.9", null, "39.2", null, "1.5", null, "29.0", null, "1.2", null, "21.0", null, "1.0", null, "7.8", null, "0.9", null, "2.3", null, "0.5", null, "5.5", null, "0.8", null, "0.3", null, "0.2", null, "71.0", null, "1.2", null, "27.3", null, "1.0", null, "4.7", null, "0.6", null, "1.9", null, "0.4", null, "2.8", null, "0.5", null, "38.9", null, "1.5", null, "6.5", null, "0.7", null, "93.5", null, "0.7", null, "22.2", null, "1.3", null, "77.8", null, "1.3", null, "86.3", null, "0.7", null, "3.9", null, "0.6", null, "0.2", null, "0.2", null, "3.2", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "1.8", null, "0.4", null, "4.5", null, "0.5", null, "6.3", null, "0.5", null, "84.3", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.7", null, "0.9", null, "25.6", null, "2.1", null, "60.6", null, "1.8", null, "19", "03"], ["5001900US1904", "Congressional District 4 (119th Congress), Iowa", "325837", null, "3667", null, "138654", null, "2531", null, "187183", null, "3739", null, "158499", null, "4334", null, "45462", null, "3121", null, "15589", null, "1849", null, "29873", null, "2508", null, "121876", null, "4230", null, "87916", null, "3095", null, "56659", null, "3004", null, "30267", null, "2634", null, "9282", null, "1579", null, "20985", null, "2144", null, "990", null, "441", null, "237921", null, "3785", null, "101840", null, "3363", null, "15195", null, "1765", null, "6307", null, "1134", null, "8888", null, "1323", null, "120886", null, "4191", null, "39204", null, "2794", null, "286633", null, "4010", null, "83803", null, "2920", null, "242034", null, "4162", null, "282968", null, "3630", null, "4039", null, "842", null, "1775", null, "651", null, "6293", null, "1008", null, "473", null, "265", null, "9966", null, "1516", null, "20323", null, "2317", null, "25133", null, "1621", null, "278578", null, "3454", null, "73295", null, "1649", null, "203961", null, "4206", null, "29622", null, "2078", null, "58714", null, "3311", null, "115625", null, "3650", null, "-888888888", "(X)", "-888888888", "(X)", "42.6", null, "0.8", null, "57.4", null, "0.8", null, "48.6", null, "1.3", null, "14.0", null, "0.9", null, "4.8", null, "0.6", null, "9.2", null, "0.8", null, "37.4", null, "1.2", null, "27.0", null, "0.9", null, "17.4", null, "0.9", null, "9.3", null, "0.8", null, "2.8", null, "0.5", null, "6.4", null, "0.7", null, "0.3", null, "0.1", null, "73.0", null, "0.9", null, "31.3", null, "1.1", null, "4.7", null, "0.5", null, "1.9", null, "0.4", null, "2.7", null, "0.4", null, "37.1", null, "1.2", null, "12.0", null, "0.8", null, "88.0", null, "0.8", null, "25.7", null, "0.9", null, "74.3", null, "0.9", null, "86.8", null, "0.7", null, "1.2", null, "0.3", null, "0.5", null, "0.2", null, "1.9", null, "0.3", null, "0.1", null, "0.1", null, "3.1", null, "0.5", null, "6.2", null, "0.7", null, "7.7", null, "0.5", null, "85.5", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.5", null, "1.0", null, "28.8", null, "1.4", null, "56.7", null, "1.5", null, "25835", null, "2518", null, "9076", null, "1214", null, "16759", null, "2091", null, "5644", null, "1187", null, "10066", null, "1706", null, "1649", null, "632", null, "8417", null, "1559", null, "10125", null, "1499", null, "11661", null, "1694", null, "3368", null, "888", null, "8276", null, "1501", null, "1192", null, "588", null, "7084", null, "1370", null, "17", null, "34", null, "14174", null, "1607", null, "2276", null, "765", null, "1790", null, "551", null, "457", null, "286", null, "1333", null, "425", null, "10108", null, "1500", null, "10507", null, "1591", null, "15328", null, "1834", null, "12767", null, "1560", null, "13068", null, "1858", null, "20337", null, "2110", null, "924", null, "453", null, "349", null, "335", null, "258", null, "281", null, "246", null, "246", null, "1571", null, "687", null, "2150", null, "707", null, "4223", null, "1082", null, "18651", null, "1934", null, "33252", null, "8170", null, "15710", null, "2045", null, "1920", null, "526", null, "8600", null, "1509", null, "5190", null, "1155", null, "7.9", null, "0.8", null, "35.1", null, "4.0", null, "64.9", null, "4.0", null, "21.8", null, "4.3", null, "39.0", null, "4.9", null, "6.4", null, "2.4", null, "32.6", null, "4.7", null, "39.2", null, "4.7", null, "45.1", null, "4.2", null, "13.0", null, "3.2", null, "32.0", null, "4.4", null, "4.6", null, "2.3", null, "27.4", null, "4.1", null, "0.1", null, "0.1", null, "54.9", null, "4.2", null, "8.8", null, "2.9", null, "6.9", null, "2.0", null, "1.8", null, "1.1", null, "5.2", null, "1.6", null, "39.1", null, "4.7", null, "40.7", null, "4.5", null, "59.3", null, "4.5", null, "49.4", null, "4.5", null, "50.6", null, "4.5", null, "78.7", null, "4.4", null, "3.6", null, "1.7", null, "1.4", null, "1.3", null, "1.0", null, "1.1", null, "1.0", null, "1.0", null, "6.1", null, "2.6", null, "8.3", null, "2.5", null, "16.3", null, "3.7", null, "72.2", null, "4.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.2", null, "3.5", null, "54.7", null, "6.0", null, "33.0", null, "5.6", null, "300002", null, "4035", null, "129578", null, "2513", null, "170424", null, "4069", null, "152855", null, "4100", null, "35396", null, "2641", null, "13940", null, "1673", null, "21456", null, "2109", null, "111751", null, "3817", null, "76255", null, "3369", null, "53291", null, "2943", null, "21991", null, "2328", null, "8090", null, "1447", null, "13901", null, "1810", null, "973", null, "440", null, "223747", null, "3557", null, "99564", null, "3150", null, "13405", null, "1663", null, "5850", null, "1070", null, "7555", null, "1262", null, "110778", null, "3791", null, "28697", null, "2686", null, "271305", null, "4320", null, "71036", null, "2858", null, "228966", null, "4480", null, "262631", null, "3854", null, "3115", null, "747", null, "1426", null, "577", null, "6035", null, "1069", null, "227", null, "154", null, "8395", null, "1380", null, "18173", null, "2274", null, "20910", null, "1786", null, "259927", null, "3742", null, "76945", null, "1827", null, "188251", null, "4334", null, "27702", null, "2023", null, "50114", null, "3220", null, "110435", null, "3718", null, "92.1", null, "0.8", null, "43.2", null, "0.9", null, "56.8", null, "0.9", null, "51.0", null, "1.2", null, "11.8", null, "0.9", null, "4.6", null, "0.6", null, "7.2", null, "0.7", null, "37.3", null, "1.2", null, "25.4", null, "1.0", null, "17.8", null, "0.9", null, "7.3", null, "0.8", null, "2.7", null, "0.5", null, "4.6", null, "0.6", null, "0.3", null, "0.1", null, "74.6", null, "1.0", null, "33.2", null, "1.1", null, "4.5", null, "0.5", null, "1.9", null, "0.4", null, "2.5", null, "0.4", null, "36.9", null, "1.2", null, "9.6", null, "0.9", null, "90.4", null, "0.9", null, "23.7", null, "0.9", null, "76.3", null, "0.9", null, "87.5", null, "0.7", null, "1.0", null, "0.2", null, "0.5", null, "0.2", null, "2.0", null, "0.4", null, "0.1", null, "0.1", null, "2.8", null, "0.5", null, "6.1", null, "0.7", null, "7.0", null, "0.6", null, "86.6", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.7", null, "1.0", null, "26.6", null, "1.5", null, "58.7", null, "1.6", null, "19", "04"], ["5001900US2001", "Congressional District 1 (119th Congress), Kansas", "299987", null, "3461", null, "121094", null, "2852", null, "178893", null, "4084", null, "144733", null, "4867", null, "37167", null, "2929", null, "12983", null, "1720", null, "24184", null, "2513", null, "118087", null, "4603", null, "81300", null, "2958", null, "58622", null, "3011", null, "21489", null, "2259", null, "6706", null, "1338", null, "14783", null, "1916", null, "1189", null, "688", null, "218687", null, "4107", null, "86111", null, "4031", null, "15678", null, "1890", null, "6277", null, "1212", null, "9401", null, "1570", null, "116898", null, "4708", null, "40487", null, "3111", null, "259500", null, "3823", null, "82208", null, "4073", null, "217779", null, "5124", null, "244856", null, "3618", null, "6093", null, "1424", null, "2831", null, "859", null, "5860", null, "1188", null, "-999999999", "N", "-999999999", "N", "10496", null, "1842", null, "29851", null, "2696", null, "38210", null, "1765", null, "234536", null, "3366", null, "67677", null, "2211", null, "181900", null, "4349", null, "24851", null, "1869", null, "51158", null, "3449", null, "105891", null, "4335", null, "-888888888", "(X)", "-888888888", "(X)", "40.4", null, "1.0", null, "59.6", null, "1.0", null, "48.2", null, "1.6", null, "12.4", null, "1.0", null, "4.3", null, "0.6", null, "8.1", null, "0.8", null, "39.4", null, "1.4", null, "27.1", null, "1.0", null, "19.5", null, "1.0", null, "7.2", null, "0.8", null, "2.2", null, "0.5", null, "4.9", null, "0.6", null, "0.4", null, "0.2", null, "72.9", null, "1.0", null, "28.7", null, "1.3", null, "5.2", null, "0.6", null, "2.1", null, "0.4", null, "3.1", null, "0.5", null, "39.0", null, "1.4", null, "13.5", null, "1.0", null, "86.5", null, "1.0", null, "27.4", null, "1.4", null, "72.6", null, "1.4", null, "81.6", null, "1.0", null, "2.0", null, "0.5", null, "0.9", null, "0.3", null, "2.0", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "3.5", null, "0.6", null, "10.0", null, "0.9", null, "12.7", null, "0.6", null, "78.2", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.7", null, "1.0", null, "28.1", null, "1.8", null, "58.2", null, "1.9", null, "17306", null, "2107", null, "7424", null, "1450", null, "9882", null, "1598", null, "3528", null, "1089", null, "6075", null, "1220", null, "1870", null, "760", null, "4205", null, "913", null, "7703", null, "1380", null, "7127", null, "1462", null, "2496", null, "942", null, "4425", null, "993", null, "1272", null, "669", null, "3153", null, "779", null, "206", null, "229", null, "10179", null, "1538", null, "1032", null, "580", null, "1650", null, "558", null, "598", null, "296", null, "1052", null, "457", null, "7497", null, "1379", null, "8790", null, "1535", null, "8516", null, "1489", null, "10368", null, "1649", null, "6938", null, "1446", null, "12024", null, "1689", null, "1245", null, "657", null, "48", null, "78", null, "128", null, "148", null, "-999999999", "N", "-999999999", "N", "715", null, "499", null, "3146", null, "980", null, "3605", null, "1068", null, "11235", null, "1622", null, "24081", null, "5466", null, "9603", null, "1636", null, "1388", null, "544", null, "5168", null, "1215", null, "3047", null, "894", null, "5.8", null, "0.7", null, "42.9", null, "6.4", null, "57.1", null, "6.4", null, "20.4", null, "5.5", null, "35.1", null, "6.0", null, "10.8", null, "4.2", null, "24.3", null, "4.7", null, "44.5", null, "6.2", null, "41.2", null, "6.3", null, "14.4", null, "4.9", null, "25.6", null, "4.9", null, "7.4", null, "3.8", null, "18.2", null, "4.0", null, "1.2", null, "1.3", null, "58.8", null, "6.3", null, "6.0", null, "3.3", null, "9.5", null, "3.2", null, "3.5", null, "1.7", null, "6.1", null, "2.6", null, "43.3", null, "6.5", null, "50.8", null, "6.3", null, "49.2", null, "6.3", null, "59.9", null, "6.5", null, "40.1", null, "6.5", null, "69.5", null, "5.7", null, "7.2", null, "3.5", null, "0.3", null, "0.5", null, "0.7", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "4.1", null, "2.9", null, "18.2", null, "5.2", null, "20.8", null, "5.4", null, "64.9", null, "6.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.5", null, "4.9", null, "53.8", null, "8.4", null, "31.7", null, "8.1", null, "282681", null, "4125", null, "113670", null, "2823", null, "169011", null, "4185", null, "141205", null, "4823", null, "31092", null, "2723", null, "11113", null, "1537", null, "19979", null, "2429", null, "110384", null, "4639", null, "74173", null, "3020", null, "56126", null, "2976", null, "17064", null, "2259", null, "5434", null, "1176", null, "11630", null, "1933", null, "983", null, "637", null, "208508", null, "4168", null, "85079", null, "4061", null, "14028", null, "1837", null, "5679", null, "1185", null, "8349", null, "1491", null, "109401", null, "4731", null, "31697", null, "2932", null, "250984", null, "4127", null, "71840", null, "3692", null, "210841", null, "5164", null, "232832", null, "3979", null, "4848", null, "1364", null, "2783", null, "855", null, "5732", null, "1151", null, "-999999999", "N", "-999999999", "N", "9781", null, "1755", null, "26705", null, "2605", null, "34605", null, "1873", null, "223301", null, "3818", null, "70434", null, "1673", null, "172297", null, "4425", null, "23463", null, "1846", null, "45990", null, "3203", null, "102844", null, "4208", null, "94.2", null, "0.7", null, "40.2", null, "1.0", null, "59.8", null, "1.0", null, "50.0", null, "1.6", null, "11.0", null, "1.0", null, "3.9", null, "0.5", null, "7.1", null, "0.9", null, "39.0", null, "1.4", null, "26.2", null, "1.0", null, "19.9", null, "1.0", null, "6.0", null, "0.8", null, "1.9", null, "0.4", null, "4.1", null, "0.7", null, "0.3", null, "0.2", null, "73.8", null, "1.0", null, "30.1", null, "1.4", null, "5.0", null, "0.7", null, "2.0", null, "0.4", null, "3.0", null, "0.5", null, "38.7", null, "1.5", null, "11.2", null, "1.0", null, "88.8", null, "1.0", null, "25.4", null, "1.3", null, "74.6", null, "1.3", null, "82.4", null, "1.0", null, "1.7", null, "0.5", null, "1.0", null, "0.3", null, "2.0", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "3.5", null, "0.6", null, "9.4", null, "0.9", null, "12.2", null, "0.6", null, "79.0", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.6", null, "1.0", null, "26.7", null, "1.7", null, "59.7", null, "1.8", null, "20", "01"], ["5001900US2002", "Congressional District 2 (119th Congress), Kansas", "302594", null, "3291", null, "127620", null, "2932", null, "174974", null, "3676", null, "140084", null, "4164", null, "50820", null, "3379", null, "16139", null, "1994", null, "34681", null, "2844", null, "111690", null, "4018", null, "87606", null, "3452", null, "53681", null, "3274", null, "33036", null, "2909", null, "9073", null, "1651", null, "23963", null, "2504", null, "889", null, "646", null, "214988", null, "3979", null, "86403", null, "3132", null, "17784", null, "2040", null, "7066", null, "1315", null, "10718", null, "1547", null, "110801", null, "4025", null, "39434", null, "3130", null, "263160", null, "4423", null, "93909", null, "4827", null, "208685", null, "5602", null, "231357", null, "3428", null, "23519", null, "2165", null, "2558", null, "693", null, "4526", null, "862", null, "-999999999", "N", "-999999999", "N", "11034", null, "1729", null, "28845", null, "2797", null, "31870", null, "1788", null, "224560", null, "3238", null, "68050", null, "2895", null, "190904", null, "4263", null, "28213", null, "1782", null, "59367", null, "3955", null, "103324", null, "4362", null, "-888888888", "(X)", "-888888888", "(X)", "42.2", null, "0.9", null, "57.8", null, "0.9", null, "46.3", null, "1.3", null, "16.8", null, "1.1", null, "5.3", null, "0.7", null, "11.5", null, "0.9", null, "36.9", null, "1.3", null, "29.0", null, "1.1", null, "17.7", null, "1.0", null, "10.9", null, "1.0", null, "3.0", null, "0.5", null, "7.9", null, "0.8", null, "0.3", null, "0.2", null, "71.0", null, "1.1", null, "28.6", null, "1.0", null, "5.9", null, "0.7", null, "2.3", null, "0.4", null, "3.5", null, "0.5", null, "36.6", null, "1.3", null, "13.0", null, "1.0", null, "87.0", null, "1.0", null, "31.0", null, "1.6", null, "69.0", null, "1.6", null, "76.5", null, "1.0", null, "7.8", null, "0.7", null, "0.8", null, "0.2", null, "1.5", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "3.6", null, "0.6", null, "9.5", null, "0.9", null, "10.5", null, "0.6", null, "74.2", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.8", null, "0.9", null, "31.1", null, "1.9", null, "54.1", null, "1.9", null, "24997", null, "2409", null, "8253", null, "1198", null, "16744", null, "2064", null, "5140", null, "1066", null, "10862", null, "1666", null, "2317", null, "754", null, "8545", null, "1738", null, "8995", null, "1523", null, "11814", null, "1671", null, "3385", null, "1007", null, "8239", null, "1461", null, "1491", null, "704", null, "6748", null, "1504", null, "190", null, "286", null, "13183", null, "1712", null, "1755", null, "570", null, "2623", null, "826", null, "826", null, "361", null, "1797", null, "749", null, "8805", null, "1503", null, "13046", null, "2103", null, "11951", null, "1528", null, "14724", null, "1890", null, "10273", null, "1575", null, "16187", null, "1869", null, "2953", null, "1022", null, "176", null, "154", null, "424", null, "427", null, "-999999999", "N", "-999999999", "N", "832", null, "578", null, "4425", null, "1096", null, "3195", null, "1040", null, "15389", null, "1799", null, "24588", null, "5606", null, "16002", null, "1929", null, "2633", null, "929", null, "8303", null, "1531", null, "5066", null, "1242", null, "8.3", null, "0.8", null, "33.0", null, "4.2", null, "67.0", null, "4.2", null, "20.6", null, "4.0", null, "43.5", null, "5.1", null, "9.3", null, "3.3", null, "34.2", null, "5.3", null, "36.0", null, "4.9", null, "47.3", null, "4.8", null, "13.5", null, "3.7", null, "33.0", null, "5.0", null, "6.0", null, "3.0", null, "27.0", null, "5.0", null, "0.8", null, "1.1", null, "52.7", null, "4.8", null, "7.0", null, "2.4", null, "10.5", null, "3.1", null, "3.3", null, "1.5", null, "7.2", null, "2.8", null, "35.2", null, "4.7", null, "52.2", null, "5.5", null, "47.8", null, "5.5", null, "58.9", null, "4.9", null, "41.1", null, "4.9", null, "64.8", null, "5.2", null, "11.8", null, "3.9", null, "0.7", null, "0.6", null, "1.7", null, "1.7", null, "-999999999.0", "N", "-999999999.0", "N", "3.3", null, "2.3", null, "17.7", null, "3.9", null, "12.8", null, "3.7", null, "61.6", null, "5.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.5", null, "5.2", null, "51.9", null, "7.8", null, "31.7", null, "6.9", null, "277597", null, "4291", null, "119367", null, "3190", null, "158230", null, "4041", null, "134944", null, "4135", null, "39958", null, "2995", null, "13822", null, "1769", null, "26136", null, "2514", null, "102695", null, "4307", null, "75792", null, "3405", null, "50296", null, "3173", null, "24797", null, "2758", null, "7582", null, "1404", null, "17215", null, "2335", null, "699", null, "501", null, "201805", null, "4564", null, "84648", null, "3197", null, "15161", null, "1787", null, "6240", null, "1263", null, "8921", null, "1340", null, "101996", null, "4299", null, "26388", null, "2253", null, "251209", null, "4591", null, "79185", null, "4293", null, "198412", null, "5745", null, "215170", null, "3675", null, "20566", null, "2195", null, "2382", null, "702", null, "4102", null, "857", null, "-999999999", "N", "-999999999", "N", "10202", null, "1696", null, "24420", null, "2800", null, "28675", null, "1858", null, "209171", null, "3506", null, "71700", null, "2110", null, "174902", null, "4451", null, "25580", null, "1584", null, "51064", null, "3625", null, "98258", null, "4331", null, "91.7", null, "0.8", null, "43.0", null, "1.0", null, "57.0", null, "1.0", null, "48.6", null, "1.3", null, "14.4", null, "1.1", null, "5.0", null, "0.6", null, "9.4", null, "0.9", null, "37.0", null, "1.4", null, "27.3", null, "1.2", null, "18.1", null, "1.1", null, "8.9", null, "1.0", null, "2.7", null, "0.5", null, "6.2", null, "0.8", null, "0.3", null, "0.2", null, "72.7", null, "1.2", null, "30.5", null, "1.1", null, "5.5", null, "0.6", null, "2.2", null, "0.5", null, "3.2", null, "0.5", null, "36.7", null, "1.4", null, "9.5", null, "0.8", null, "90.5", null, "0.8", null, "28.5", null, "1.6", null, "71.5", null, "1.6", null, "77.5", null, "1.1", null, "7.4", null, "0.8", null, "0.9", null, "0.2", null, "1.5", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "3.7", null, "0.6", null, "8.8", null, "1.0", null, "10.3", null, "0.6", null, "75.4", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.6", null, "0.9", null, "29.2", null, "1.9", null, "56.2", null, "1.9", null, "20", "02"], ["5001900US2003", "Congressional District 3 (119th Congress), Kansas", "303973", null, "3252", null, "118078", null, "2702", null, "185895", null, "3467", null, "162078", null, "4742", null, "38087", null, "3058", null, "14158", null, "1769", null, "23929", null, "2771", null, "103808", null, "4167", null, "93198", null, "3666", null, "70713", null, "3755", null, "21901", null, "2426", null, "7857", null, "1479", null, "14044", null, "2197", null, "584", null, "403", null, "210775", null, "3789", null, "91365", null, "4005", null, "16186", null, "2034", null, "6301", null, "1275", null, "9885", null, "1567", null, "103224", null, "4185", null, "20085", null, "2874", null, "283888", null, "3495", null, "61136", null, "3925", null, "242837", null, "5005", null, "249314", null, "3563", null, "13904", null, "1749", null, "1213", null, "508", null, "12880", null, "1218", null, "-999999999", "N", "-999999999", "N", "6309", null, "1177", null, "20312", null, "2272", null, "24618", null, "2088", null, "242769", null, "3433", null, "101317", null, "2451", null, "200165", null, "4670", null, "24118", null, "1795", null, "53031", null, "3875", null, "123016", null, "4423", null, "-888888888", "(X)", "-888888888", "(X)", "38.8", null, "0.8", null, "61.2", null, "0.8", null, "53.3", null, "1.4", null, "12.5", null, "1.0", null, "4.7", null, "0.6", null, "7.9", null, "0.9", null, "34.2", null, "1.3", null, "30.7", null, "1.1", null, "23.3", null, "1.2", null, "7.2", null, "0.8", null, "2.6", null, "0.5", null, "4.6", null, "0.7", null, "0.2", null, "0.1", null, "69.3", null, "1.1", null, "30.1", null, "1.3", null, "5.3", null, "0.7", null, "2.1", null, "0.4", null, "3.3", null, "0.5", null, "34.0", null, "1.3", null, "6.6", null, "0.9", null, "93.4", null, "0.9", null, "20.1", null, "1.3", null, "79.9", null, "1.3", null, "82.0", null, "1.0", null, "4.6", null, "0.6", null, "0.4", null, "0.2", null, "4.2", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "2.1", null, "0.4", null, "6.7", null, "0.7", null, "8.1", null, "0.7", null, "79.9", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.0", null, "0.8", null, "26.5", null, "1.8", null, "61.5", null, "1.8", null, "8889", null, "1612", null, "3495", null, "1027", null, "5394", null, "1558", null, "1613", null, "598", null, "4458", null, "1456", null, "768", null, "492", null, "3690", null, "1327", null, "2818", null, "945", null, "4632", null, "1512", null, "1264", null, "564", null, "3368", null, "1353", null, "652", null, "474", null, "2716", null, "1258", null, "0", null, "189", null, "4257", null, "1145", null, "349", null, "268", null, "1090", null, "617", null, "116", null, "136", null, "974", null, "592", null, "2818", null, "945", null, "3946", null, "1291", null, "4943", null, "990", null, "4385", null, "1211", null, "4504", null, "1276", null, "5521", null, "1367", null, "1959", null, "987", null, "435", null, "451", null, "352", null, "352", null, "-999999999", "N", "-999999999", "N", "0", null, "189", null, "622", null, "370", null, "1151", null, "657", null, "5189", null, "1361", null, "37438", null, "13561", null, "6071", null, "1644", null, "496", null, "363", null, "3405", null, "1373", null, "2170", null, "802", null, "2.9", null, "0.5", null, "39.3", null, "11.3", null, "60.7", null, "11.3", null, "18.1", null, "5.9", null, "50.2", null, "11.6", null, "8.6", null, "5.3", null, "41.5", null, "11.2", null, "31.7", null, "10.9", null, "52.1", null, "12.1", null, "14.2", null, "5.9", null, "37.9", null, "12.1", null, "7.3", null, "5.2", null, "30.6", null, "11.7", null, "0.0", null, "1.6", null, "47.9", null, "12.1", null, "3.9", null, "3.0", null, "12.3", null, "6.6", null, "1.3", null, "1.5", null, "11.0", null, "6.5", null, "31.7", null, "10.9", null, "44.4", null, "9.4", null, "55.6", null, "9.4", null, "49.3", null, "10.7", null, "50.7", null, "10.7", null, "62.1", null, "11.5", null, "22.0", null, "9.9", null, "4.9", null, "5.2", null, "4.0", null, "3.8", null, "-999999999.0", "N", "-999999999.0", "N", "0.0", null, "1.6", null, "7.0", null, "4.4", null, "12.9", null, "7.7", null, "58.4", null, "11.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "8.2", null, "5.6", null, "56.1", null, "13.1", null, "35.7", null, "12.4", null, "295084", null, "3339", null, "114583", null, "2575", null, "180501", null, "3465", null, "160465", null, "4741", null, "33629", null, "2876", null, "13390", null, "1771", null, "20239", null, "2634", null, "100990", null, "4205", null, "88566", null, "3575", null, "69449", null, "3699", null, "18533", null, "2068", null, "7205", null, "1479", null, "11328", null, "2010", null, "584", null, "403", null, "206518", null, "3900", null, "91016", null, "3986", null, "15096", null, "2040", null, "6185", null, "1259", null, "8911", null, "1568", null, "100406", null, "4223", null, "16139", null, "2337", null, "278945", null, "3371", null, "56751", null, "3699", null, "238333", null, "5247", null, "243793", null, "3460", null, "11945", null, "1798", null, "778", null, "481", null, "12528", null, "1268", null, "-999999999", "N", "-999999999", "N", "6309", null, "1177", null, "19690", null, "2256", null, "23467", null, "2140", null, "237580", null, "3395", null, "104331", null, "3902", null, "194094", null, "4484", null, "23622", null, "1766", null, "49626", null, "3571", null, "120846", null, "4470", null, "97.1", null, "0.5", null, "38.8", null, "0.8", null, "61.2", null, "0.8", null, "54.4", null, "1.5", null, "11.4", null, "1.0", null, "4.5", null, "0.6", null, "6.9", null, "0.9", null, "34.2", null, "1.4", null, "30.0", null, "1.1", null, "23.5", null, "1.2", null, "6.3", null, "0.7", null, "2.4", null, "0.5", null, "3.8", null, "0.7", null, "0.2", null, "0.1", null, "70.0", null, "1.1", null, "30.8", null, "1.4", null, "5.1", null, "0.7", null, "2.1", null, "0.4", null, "3.0", null, "0.5", null, "34.0", null, "1.4", null, "5.5", null, "0.8", null, "94.5", null, "0.8", null, "19.2", null, "1.3", null, "80.8", null, "1.3", null, "82.6", null, "1.0", null, "4.0", null, "0.6", null, "0.3", null, "0.2", null, "4.2", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "2.1", null, "0.4", null, "6.7", null, "0.7", null, "8.0", null, "0.7", null, "80.5", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.2", null, "0.8", null, "25.6", null, "1.8", null, "62.3", null, "1.8", null, "20", "03"], ["5001900US2004", "Congressional District 4 (119th Congress), Kansas", "297820", null, "3352", null, "123511", null, "2694", null, "174309", null, "3593", null, "144061", null, "5447", null, "41794", null, "3161", null, "12444", null, "1784", null, "29350", null, "2895", null, "111965", null, "5342", null, "85588", null, "3732", null, "58842", null, "3084", null, "26110", null, "2361", null, "7188", null, "1341", null, "18922", null, "2483", null, "636", null, "400", null, "212232", null, "4452", null, "85219", null, "4270", null, "15684", null, "1945", null, "5256", null, "1078", null, "10428", null, "1589", null, "111329", null, "5440", null, "36090", null, "3383", null, "261730", null, "4432", null, "85275", null, "4706", null, "212545", null, "5662", null, "230719", null, "3248", null, "19085", null, "1863", null, "2394", null, "861", null, "8891", null, "1118", null, "-999999999", "N", "-999999999", "N", "8780", null, "1458", null, "27792", null, "2613", null, "30949", null, "1709", null, "224308", null, "3212", null, "70671", null, "1491", null, "185855", null, "5617", null, "28247", null, "2080", null, "53300", null, "4302", null, "104308", null, "4621", null, "-888888888", "(X)", "-888888888", "(X)", "41.5", null, "0.9", null, "58.5", null, "0.9", null, "48.4", null, "1.7", null, "14.0", null, "1.1", null, "4.2", null, "0.6", null, "9.9", null, "1.0", null, "37.6", null, "1.7", null, "28.7", null, "1.2", null, "19.8", null, "1.0", null, "8.8", null, "0.8", null, "2.4", null, "0.5", null, "6.4", null, "0.8", null, "0.2", null, "0.1", null, "71.3", null, "1.2", null, "28.6", null, "1.4", null, "5.3", null, "0.6", null, "1.8", null, "0.4", null, "3.5", null, "0.5", null, "37.4", null, "1.8", null, "12.1", null, "1.1", null, "87.9", null, "1.1", null, "28.6", null, "1.6", null, "71.4", null, "1.6", null, "77.5", null, "0.9", null, "6.4", null, "0.6", null, "0.8", null, "0.3", null, "3.0", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "2.9", null, "0.5", null, "9.3", null, "0.9", null, "10.4", null, "0.6", null, "75.3", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.2", null, "1.1", null, "28.7", null, "2.1", null, "56.1", null, "1.7", null, "19874", null, "2305", null, "7309", null, "1243", null, "12565", null, "1930", null, "4462", null, "1093", null, "6911", null, "1519", null, "1601", null, "767", null, "5310", null, "1496", null, "8501", null, "1623", null, "9452", null, "1725", null, "3577", null, "1003", null, "5616", null, "1400", null, "1303", null, "759", null, "4313", null, "1408", null, "259", null, "321", null, "10422", null, "1728", null, "885", null, "528", null, "1295", null, "509", null, "298", null, "188", null, "997", null, "465", null, "8242", null, "1565", null, "10159", null, "1809", null, "9715", null, "1680", null, "9744", null, "1642", null, "10130", null, "1591", null, "10855", null, "1561", null, "5393", null, "1507", null, "252", null, "196", null, "179", null, "168", null, "-999999999", "N", "-999999999", "N", "777", null, "489", null, "2418", null, "767", null, "2785", null, "968", null, "9927", null, "1525", null, "20795", null, "8282", null, "11373", null, "1958", null, "2118", null, "886", null, "4927", null, "1318", null, "4328", null, "1238", null, "6.7", null, "0.8", null, "36.8", null, "5.3", null, "63.2", null, "5.3", null, "22.5", null, "4.9", null, "34.8", null, "6.2", null, "8.1", null, "3.9", null, "26.7", null, "6.4", null, "42.8", null, "6.8", null, "47.6", null, "6.5", null, "18.0", null, "4.7", null, "28.3", null, "6.0", null, "6.6", null, "3.9", null, "21.7", null, "6.2", null, "1.3", null, "1.6", null, "52.4", null, "6.5", null, "4.5", null, "2.5", null, "6.5", null, "2.4", null, "1.5", null, "0.9", null, "5.0", null, "2.3", null, "41.5", null, "6.6", null, "51.1", null, "6.6", null, "48.9", null, "6.6", null, "49.0", null, "5.7", null, "51.0", null, "5.7", null, "54.6", null, "6.5", null, "27.1", null, "6.4", null, "1.3", null, "1.0", null, "0.9", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "3.9", null, "2.4", null, "12.2", null, "3.6", null, "14.0", null, "4.5", null, "49.9", null, "6.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.6", null, "6.9", null, "43.3", null, "8.3", null, "38.1", null, "9.4", null, "277946", null, "3970", null, "116202", null, "2632", null, "161744", null, "4020", null, "139599", null, "5267", null, "34883", null, "2831", null, "10843", null, "1694", null, "24040", null, "2542", null, "103464", null, "5078", null, "76136", null, "3503", null, "55265", null, "2871", null, "20494", null, "2253", null, "5885", null, "1234", null, "14609", null, "2239", null, "377", null, "240", null, "201810", null, "4716", null, "84334", null, "4300", null, "14389", null, "1942", null, "4958", null, "1110", null, "9431", null, "1572", null, "103087", null, "5131", null, "25931", null, "2989", null, "252015", null, "4861", null, "75531", null, "4612", null, "202415", null, "5331", null, "219864", null, "3677", null, "13692", null, "1982", null, "2142", null, "843", null, "8712", null, "1127", null, "-999999999", "N", "-999999999", "N", "8003", null, "1415", null, "25374", null, "2598", null, "28164", null, "1815", null, "214381", null, "3599", null, "72720", null, "2418", null, "174482", null, "5181", null, "26129", null, "1905", null, "48373", null, "3988", null, "99980", null, "4428", null, "93.3", null, "0.8", null, "41.8", null, "0.9", null, "58.2", null, "0.9", null, "50.2", null, "1.8", null, "12.6", null, "1.0", null, "3.9", null, "0.6", null, "8.6", null, "0.9", null, "37.2", null, "1.7", null, "27.4", null, "1.2", null, "19.9", null, "1.0", null, "7.4", null, "0.8", null, "2.1", null, "0.4", null, "5.3", null, "0.8", null, "0.1", null, "0.1", null, "72.6", null, "1.2", null, "30.3", null, "1.5", null, "5.2", null, "0.7", null, "1.8", null, "0.4", null, "3.4", null, "0.6", null, "37.1", null, "1.7", null, "9.3", null, "1.1", null, "90.7", null, "1.1", null, "27.2", null, "1.6", null, "72.8", null, "1.6", null, "79.1", null, "1.0", null, "4.9", null, "0.7", null, "0.8", null, "0.3", null, "3.1", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "2.9", null, "0.5", null, "9.1", null, "0.9", null, "10.1", null, "0.6", null, "77.1", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.0", null, "1.1", null, "27.7", null, "2.1", null, "57.3", null, "1.7", null, "20", "04"], ["5001900US2101", "Congressional District 1 (119th Congress), Kentucky", "310782", null, "3968", null, "136513", null, "2944", null, "174269", null, "3985", null, "151362", null, "5153", null, "52008", null, "3778", null, "17602", null, "2326", null, "34406", null, "3001", null, "107412", null, "5009", null, "93239", null, "3900", null, "58941", null, "3479", null, "33323", null, "3144", null, "11291", null, "1999", null, "22032", null, "2531", null, "975", null, "526", null, "217543", null, "4632", null, "92421", null, "4111", null, "18685", null, "2230", null, "6311", null, "1438", null, "12374", null, "1713", null, "106437", null, "4958", null, "51654", null, "3606", null, "259128", null, "4938", null, "111663", null, "4046", null, "199119", null, "4543", null, "272286", null, "3661", null, "19464", null, "1826", null, "520", null, "257", null, "2202", null, "760", null, "-999999999", "N", "-999999999", "N", "2895", null, "898", null, "13263", null, "1858", null, "9531", null, "1283", null, "269168", null, "3532", null, "57974", null, "2473", null, "203370", null, "5434", null, "38459", null, "2431", null, "69262", null, "3971", null, "95649", null, "4144", null, "-888888888", "(X)", "-888888888", "(X)", "43.9", null, "0.9", null, "56.1", null, "0.9", null, "48.7", null, "1.5", null, "16.7", null, "1.2", null, "5.7", null, "0.7", null, "11.1", null, "1.0", null, "34.6", null, "1.5", null, "30.0", null, "1.2", null, "19.0", null, "1.1", null, "10.7", null, "1.0", null, "3.6", null, "0.6", null, "7.1", null, "0.8", null, "0.3", null, "0.2", null, "70.0", null, "1.2", null, "29.7", null, "1.2", null, "6.0", null, "0.7", null, "2.0", null, "0.5", null, "4.0", null, "0.5", null, "34.2", null, "1.5", null, "16.6", null, "1.1", null, "83.4", null, "1.1", null, "35.9", null, "1.2", null, "64.1", null, "1.2", null, "87.6", null, "0.7", null, "6.3", null, "0.6", null, "0.2", null, "0.1", null, "0.7", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "0.9", null, "0.3", null, "4.3", null, "0.6", null, "3.1", null, "0.4", null, "86.6", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.9", null, "1.1", null, "34.1", null, "1.7", null, "47.0", null, "1.7", null, "41110", null, "3608", null, "15113", null, "1834", null, "25997", null, "2873", null, "9458", null, "1211", null, "16029", null, "2428", null, "4284", null, "1376", null, "11745", null, "2026", null, "15623", null, "1979", null, "17959", null, "2398", null, "6103", null, "1114", null, "11368", null, "2184", null, "2832", null, "1256", null, "8536", null, "1681", null, "488", null, "364", null, "23151", null, "2617", null, "3355", null, "775", null, "4661", null, "1251", null, "1452", null, "684", null, "3209", null, "986", null, "15135", null, "1882", null, "20723", null, "2252", null, "20387", null, "2452", null, "22753", null, "2435", null, "18357", null, "2710", null, "33063", null, "2735", null, "4779", null, "1462", null, "61", null, "84", null, "302", null, "314", null, "-999999999", "N", "-999999999", "N", "356", null, "273", null, "2549", null, "878", null, "1253", null, "565", null, "32721", null, "2762", null, "22998", null, "3605", null, "25487", null, "2874", null, "5705", null, "980", null, "11925", null, "1813", null, "7857", null, "1534", null, "13.2", null, "1.1", null, "36.8", null, "3.5", null, "63.2", null, "3.5", null, "23.0", null, "2.6", null, "39.0", null, "4.1", null, "10.4", null, "3.1", null, "28.6", null, "3.9", null, "38.0", null, "3.8", null, "43.7", null, "4.2", null, "14.8", null, "2.5", null, "27.7", null, "4.5", null, "6.9", null, "2.9", null, "20.8", null, "3.7", null, "1.2", null, "0.9", null, "56.3", null, "4.2", null, "8.2", null, "1.8", null, "11.3", null, "2.6", null, "3.5", null, "1.6", null, "7.8", null, "2.1", null, "36.8", null, "3.8", null, "50.4", null, "3.7", null, "49.6", null, "3.7", null, "55.3", null, "4.5", null, "44.7", null, "4.5", null, "80.4", null, "3.7", null, "11.6", null, "3.0", null, "0.1", null, "0.2", null, "0.7", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "0.9", null, "0.6", null, "6.2", null, "2.1", null, "3.0", null, "1.3", null, "79.6", null, "3.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "22.4", null, "3.1", null, "46.8", null, "4.6", null, "30.8", null, "4.8", null, "269672", null, "4394", null, "121400", null, "3037", null, "148272", null, "4299", null, "141904", null, "5032", null, "35979", null, "3148", null, "13318", null, "2028", null, "22661", null, "2523", null, "91789", null, "4494", null, "75280", null, "3589", null, "52838", null, "3273", null, "21955", null, "2477", null, "8459", null, "1629", null, "13496", null, "2012", null, "487", null, "382", null, "194392", null, "4909", null, "89066", null, "4080", null, "14024", null, "1934", null, "4859", null, "1336", null, "9165", null, "1454", null, "91302", null, "4489", null, "30931", null, "2815", null, "238741", null, "5033", null, "88910", null, "3700", null, "180762", null, "4762", null, "239223", null, "3676", null, "14685", null, "1828", null, "459", null, "260", null, "1900", null, "762", null, "-999999999", "N", "-999999999", "N", "2539", null, "885", null, "10714", null, "1793", null, "8278", null, "1256", null, "236447", null, "3522", null, "63145", null, "2108", null, "177883", null, "5186", null, "32754", null, "2466", null, "57337", null, "3578", null, "87792", null, "4097", null, "86.8", null, "1.1", null, "45.0", null, "1.1", null, "55.0", null, "1.1", null, "52.6", null, "1.6", null, "13.3", null, "1.2", null, "4.9", null, "0.8", null, "8.4", null, "0.9", null, "34.0", null, "1.6", null, "27.9", null, "1.3", null, "19.6", null, "1.2", null, "8.1", null, "0.9", null, "3.1", null, "0.6", null, "5.0", null, "0.7", null, "0.2", null, "0.1", null, "72.1", null, "1.3", null, "33.0", null, "1.4", null, "5.2", null, "0.7", null, "1.8", null, "0.5", null, "3.4", null, "0.5", null, "33.9", null, "1.6", null, "11.5", null, "1.0", null, "88.5", null, "1.0", null, "33.0", null, "1.3", null, "67.0", null, "1.3", null, "88.7", null, "0.8", null, "5.4", null, "0.7", null, "0.2", null, "0.1", null, "0.7", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "0.9", null, "0.3", null, "4.0", null, "0.7", null, "3.1", null, "0.4", null, "87.7", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.4", null, "1.2", null, "32.2", null, "1.8", null, "49.4", null, "1.8", null, "21", "01"], ["5001900US2102", "Congressional District 2 (119th Congress), Kentucky", "310636", null, "3965", null, "131797", null, "3131", null, "178839", null, "3889", null, "157910", null, "4386", null, "52543", null, "3370", null, "16981", null, "1992", null, "35562", null, "3270", null, "100183", null, "4053", null, "96447", null, "4519", null, "62582", null, "3885", null, "32944", null, "3121", null, "10189", null, "1698", null, "22755", null, "2926", null, "921", null, "766", null, "214189", null, "4998", null, "95328", null, "4023", null, "19599", null, "2062", null, "6792", null, "1333", null, "12807", null, "1602", null, "99262", null, "3922", null, "44493", null, "3969", null, "266143", null, "4906", null, "111155", null, "4923", null, "199481", null, "5959", null, "267476", null, "4009", null, "14507", null, "1483", null, "766", null, "459", null, "5773", null, "1103", null, "-999999999", "N", "-999999999", "N", "3302", null, "1174", null, "18789", null, "2524", null, "12273", null, "1648", null, "264525", null, "3984", null, "68629", null, "1896", null, "210453", null, "4872", null, "39980", null, "3148", null, "62980", null, "3892", null, "107493", null, "5001", null, "-888888888", "(X)", "-888888888", "(X)", "42.4", null, "0.9", null, "57.6", null, "0.9", null, "50.8", null, "1.2", null, "16.9", null, "1.1", null, "5.5", null, "0.6", null, "11.4", null, "1.0", null, "32.3", null, "1.3", null, "31.0", null, "1.4", null, "20.1", null, "1.2", null, "10.6", null, "1.0", null, "3.3", null, "0.6", null, "7.3", null, "0.9", null, "0.3", null, "0.2", null, "69.0", null, "1.4", null, "30.7", null, "1.2", null, "6.3", null, "0.7", null, "2.2", null, "0.4", null, "4.1", null, "0.5", null, "32.0", null, "1.2", null, "14.3", null, "1.2", null, "85.7", null, "1.2", null, "35.8", null, "1.6", null, "64.2", null, "1.6", null, "86.1", null, "0.8", null, "4.7", null, "0.5", null, "0.2", null, "0.1", null, "1.9", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "1.1", null, "0.4", null, "6.0", null, "0.8", null, "4.0", null, "0.5", null, "85.2", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "19.0", null, "1.4", null, "29.9", null, "1.8", null, "51.1", null, "2.0", null, "37866", null, "3459", null, "12952", null, "1785", null, "24914", null, "3002", null, "10235", null, "1435", null, "15643", null, "2289", null, "4944", null, "1515", null, "10699", null, "1983", null, "11988", null, "1622", null, "19505", null, "2797", null, "6433", null, "1218", null, "12778", null, "2258", null, "3701", null, "1327", null, "9077", null, "2017", null, "294", null, "285", null, "18361", null, "2187", null, "3802", null, "1088", null, "2865", null, "846", null, "1243", null, "734", null, "1622", null, "474", null, "11694", null, "1582", null, "19560", null, "2806", null, "18306", null, "2020", null, "21365", null, "2272", null, "16501", null, "2440", null, "28433", null, "3240", null, "3575", null, "1025", null, "457", null, "364", null, "1393", null, "860", null, "-999999999", "N", "-999999999", "N", "699", null, "493", null, "3309", null, "983", null, "1339", null, "605", null, "28184", null, "3219", null, "26121", null, "5924", null, "25878", null, "3018", null, "6649", null, "1602", null, "10616", null, "1885", null, "8613", null, "1555", null, "12.2", null, "1.1", null, "34.2", null, "4.2", null, "65.8", null, "4.2", null, "27.0", null, "3.0", null, "41.3", null, "4.0", null, "13.1", null, "3.9", null, "28.3", null, "4.1", null, "31.7", null, "3.9", null, "51.5", null, "4.8", null, "17.0", null, "2.8", null, "33.7", null, "4.5", null, "9.8", null, "3.4", null, "24.0", null, "4.4", null, "0.8", null, "0.7", null, "48.5", null, "4.8", null, "10.0", null, "2.8", null, "7.6", null, "2.2", null, "3.3", null, "1.9", null, "4.3", null, "1.2", null, "30.9", null, "3.8", null, "51.7", null, "4.5", null, "48.3", null, "4.5", null, "56.4", null, "4.3", null, "43.6", null, "4.3", null, "75.1", null, "4.2", null, "9.4", null, "2.7", null, "1.2", null, "1.0", null, "3.7", null, "2.2", null, "-999999999.0", "N", "-999999999.0", "N", "1.8", null, "1.3", null, "8.7", null, "2.5", null, "3.5", null, "1.6", null, "74.4", null, "4.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "25.7", null, "5.1", null, "41.0", null, "5.3", null, "33.3", null, "5.3", null, "272770", null, "4479", null, "118845", null, "3275", null, "153925", null, "4722", null, "147675", null, "4488", null, "36900", null, "3479", null, "12037", null, "1882", null, "24863", null, "2829", null, "88195", null, "4139", null, "76942", null, "4105", null, "56149", null, "3681", null, "20166", null, "2915", null, "6488", null, "1448", null, "13678", null, "2466", null, "627", null, "712", null, "195828", null, "5404", null, "91526", null, "4108", null, "16734", null, "2121", null, "5549", null, "1244", null, "11185", null, "1628", null, "87568", null, "4070", null, "24933", null, "3068", null, "247837", null, "5152", null, "89790", null, "4287", null, "182980", null, "5905", null, "239043", null, "4300", null, "10932", null, "1665", null, "309", null, "275", null, "4380", null, "1358", null, "-999999999", "N", "-999999999", "N", "2603", null, "951", null, "15480", null, "2460", null, "10934", null, "1760", null, "236341", null, "4182", null, "74762", null, "2054", null, "184575", null, "4747", null, "33331", null, "2630", null, "52364", null, "3778", null, "98880", null, "4976", null, "87.8", null, "1.1", null, "43.6", null, "1.2", null, "56.4", null, "1.2", null, "54.1", null, "1.5", null, "13.5", null, "1.2", null, "4.4", null, "0.7", null, "9.1", null, "1.0", null, "32.3", null, "1.4", null, "28.2", null, "1.5", null, "20.6", null, "1.3", null, "7.4", null, "1.1", null, "2.4", null, "0.5", null, "5.0", null, "0.9", null, "0.2", null, "0.3", null, "71.8", null, "1.5", null, "33.6", null, "1.4", null, "6.1", null, "0.8", null, "2.0", null, "0.5", null, "4.1", null, "0.6", null, "32.1", null, "1.4", null, "9.1", null, "1.1", null, "90.9", null, "1.1", null, "32.9", null, "1.6", null, "67.1", null, "1.6", null, "87.6", null, "1.1", null, "4.0", null, "0.6", null, "0.1", null, "0.1", null, "1.6", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "1.0", null, "0.3", null, "5.7", null, "0.9", null, "4.0", null, "0.6", null, "86.6", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.1", null, "1.4", null, "28.4", null, "1.9", null, "53.6", null, "2.1", null, "21", "02"], ["5001900US2103", "Congressional District 3 (119th Congress), Kentucky", "322194", null, "3442", null, "132222", null, "3126", null, "189972", null, "4392", null, "112354", null, "4448", null, "65283", null, "3996", null, "19642", null, "2598", null, "45641", null, "3320", null, "144557", null, "4562", null, "80505", null, "4393", null, "42107", null, "3162", null, "37897", null, "3714", null, "9855", null, "1966", null, "28042", null, "3007", null, "501", null, "427", null, "241689", null, "4641", null, "70247", null, "3645", null, "27386", null, "3031", null, "9787", null, "1890", null, "17599", null, "2381", null, "144056", null, "4453", null, "48632", null, "4576", null, "273562", null, "5218", null, "90534", null, "4575", null, "231660", null, "5408", null, "213443", null, "3419", null, "63474", null, "3033", null, "-999999999", "N", "-999999999", "N", "8285", null, "1096", null, "-999999999", "N", "-999999999", "N", "7612", null, "1804", null, "27902", null, "3415", null, "23270", null, "1750", null, "210435", null, "3448", null, "68989", null, "3234", null, "177637", null, "4508", null, "25467", null, "2520", null, "60290", null, "4564", null, "91880", null, "3990", null, "-888888888", "(X)", "-888888888", "(X)", "41.0", null, "1.0", null, "59.0", null, "1.0", null, "34.9", null, "1.4", null, "20.3", null, "1.2", null, "6.1", null, "0.8", null, "14.2", null, "1.0", null, "44.9", null, "1.3", null, "25.0", null, "1.3", null, "13.1", null, "1.0", null, "11.8", null, "1.1", null, "3.1", null, "0.6", null, "8.7", null, "0.9", null, "0.2", null, "0.1", null, "75.0", null, "1.3", null, "21.8", null, "1.2", null, "8.5", null, "0.9", null, "3.0", null, "0.6", null, "5.5", null, "0.7", null, "44.7", null, "1.3", null, "15.1", null, "1.4", null, "84.9", null, "1.4", null, "28.1", null, "1.4", null, "71.9", null, "1.4", null, "66.2", null, "1.0", null, "19.7", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "2.6", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "2.4", null, "0.6", null, "8.7", null, "1.0", null, "7.2", null, "0.5", null, "65.3", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.3", null, "1.4", null, "33.9", null, "2.3", null, "51.7", null, "2.1", null, "38579", null, "3583", null, "14505", null, "2326", null, "24074", null, "2797", null, "6859", null, "1501", null, "15991", null, "2220", null, "2064", null, "800", null, "13927", null, "2125", null, "15729", null, "2623", null, "17603", null, "2367", null, "4537", null, "1203", null, "12992", null, "2085", null, "1104", null, "645", null, "11888", null, "1985", null, "74", null, "122", null, "20976", null, "2891", null, "2322", null, "840", null, "2999", null, "888", null, "960", null, "474", null, "2039", null, "778", null, "15655", null, "2613", null, "19969", null, "3069", null, "18610", null, "2186", null, "18787", null, "2433", null, "19792", null, "3019", null, "14929", null, "2216", null, "14852", null, "2310", null, "-999999999", "N", "-999999999", "N", "485", null, "273", null, "-999999999", "N", "-999999999", "N", "1187", null, "549", null, "6967", null, "1936", null, "5224", null, "1401", null, "14301", null, "2136", null, "21743", null, "3009", null, "22850", null, "2465", null, "5058", null, "1384", null, "10803", null, "1962", null, "6989", null, "1611", null, "12.0", null, "1.1", null, "37.6", null, "4.8", null, "62.4", null, "4.8", null, "17.8", null, "3.6", null, "41.5", null, "5.0", null, "5.4", null, "2.0", null, "36.1", null, "4.9", null, "40.8", null, "4.8", null, "45.6", null, "5.0", null, "11.8", null, "2.9", null, "33.7", null, "4.8", null, "2.9", null, "1.6", null, "30.8", null, "4.7", null, "0.2", null, "0.3", null, "54.4", null, "5.0", null, "6.0", null, "2.2", null, "7.8", null, "2.3", null, "2.5", null, "1.3", null, "5.3", null, "2.0", null, "40.6", null, "4.8", null, "51.8", null, "5.1", null, "48.2", null, "5.1", null, "48.7", null, "5.4", null, "51.3", null, "5.4", null, "38.7", null, "4.8", null, "38.5", null, "4.6", null, "-999999999.0", "N", "-999999999.0", "N", "1.3", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "3.1", null, "1.4", null, "18.1", null, "4.6", null, "13.5", null, "3.3", null, "37.1", null, "4.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "22.1", null, "6.0", null, "47.3", null, "6.5", null, "30.6", null, "6.1", null, "283615", null, "4394", null, "117717", null, "3057", null, "165898", null, "4740", null, "105495", null, "4381", null, "49292", null, "3855", null, "17578", null, "2496", null, "31714", null, "3064", null, "128828", null, "4512", null, "62902", null, "4189", null, "37570", null, "2900", null, "24905", null, "3211", null, "8751", null, "1856", null, "16154", null, "2520", null, "427", null, "406", null, "220713", null, "5377", null, "67925", null, "3633", null, "24387", null, "2987", null, "8827", null, "1844", null, "15560", null, "2295", null, "128401", null, "4427", null, "28663", null, "3140", null, "254952", null, "5212", null, "71747", null, "4018", null, "211868", null, "5293", null, "198514", null, "3750", null, "48622", null, "3429", null, "-999999999", "N", "-999999999", "N", "7800", null, "1055", null, "-999999999", "N", "-999999999", "N", "6425", null, "1747", null, "20935", null, "2513", null, "18046", null, "1859", null, "196134", null, "3804", null, "74247", null, "3308", null, "154787", null, "4482", null, "20409", null, "2006", null, "49487", null, "4224", null, "84891", null, "3830", null, "88.0", null, "1.1", null, "41.5", null, "1.1", null, "58.5", null, "1.1", null, "37.2", null, "1.6", null, "17.4", null, "1.3", null, "6.2", null, "0.9", null, "11.2", null, "1.0", null, "45.4", null, "1.4", null, "22.2", null, "1.4", null, "13.2", null, "1.0", null, "8.8", null, "1.1", null, "3.1", null, "0.7", null, "5.7", null, "0.9", null, "0.2", null, "0.1", null, "77.8", null, "1.4", null, "23.9", null, "1.3", null, "8.6", null, "1.0", null, "3.1", null, "0.6", null, "5.5", null, "0.8", null, "45.3", null, "1.4", null, "10.1", null, "1.1", null, "89.9", null, "1.1", null, "25.3", null, "1.4", null, "74.7", null, "1.4", null, "70.0", null, "1.2", null, "17.1", null, "1.1", null, "-999999999.0", "N", "-999999999.0", "N", "2.8", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "2.3", null, "0.6", null, "7.4", null, "0.9", null, "6.4", null, "0.6", null, "69.2", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.2", null, "1.3", null, "32.0", null, "2.4", null, "54.8", null, "2.1", null, "21", "03"], ["5001900US2104", "Congressional District 4 (119th Congress), Kentucky", "299868", null, "3052", null, "125229", null, "3368", null, "174639", null, "3891", null, "154837", null, "4445", null, "50857", null, "3770", null, "16651", null, "2325", null, "34206", null, "3205", null, "94174", null, "4406", null, "96669", null, "4582", null, "63829", null, "3540", null, "31787", null, "3406", null, "10377", null, "1947", null, "21410", null, "2852", null, "1053", null, "739", null, "203199", null, "5036", null, "91008", null, "3692", null, "19070", null, "2345", null, "6274", null, "1189", null, "12796", null, "2127", null, "93121", null, "4532", null, "36531", null, "3215", null, "263337", null, "4391", null, "89439", null, "4016", null, "210429", null, "4741", null, "273501", null, "3874", null, "4720", null, "963", null, "-999999999", "N", "-999999999", "N", "3702", null, "1077", null, "-999999999", "N", "-999999999", "N", "2730", null, "935", null, "14790", null, "1642", null, "9543", null, "1098", null, "271055", null, "3754", null, "81874", null, "2515", null, "205694", null, "4514", null, "31734", null, "2025", null, "62575", null, "3740", null, "111385", null, "4075", null, "-888888888", "(X)", "-888888888", "(X)", "41.8", null, "1.1", null, "58.2", null, "1.1", null, "51.6", null, "1.4", null, "17.0", null, "1.3", null, "5.6", null, "0.8", null, "11.4", null, "1.1", null, "31.4", null, "1.4", null, "32.2", null, "1.5", null, "21.3", null, "1.1", null, "10.6", null, "1.1", null, "3.5", null, "0.6", null, "7.1", null, "1.0", null, "0.4", null, "0.2", null, "67.8", null, "1.5", null, "30.3", null, "1.2", null, "6.4", null, "0.8", null, "2.1", null, "0.4", null, "4.3", null, "0.7", null, "31.1", null, "1.4", null, "12.2", null, "1.1", null, "87.8", null, "1.1", null, "29.8", null, "1.3", null, "70.2", null, "1.3", null, "91.2", null, "0.7", null, "1.6", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "1.2", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "0.9", null, "0.3", null, "4.9", null, "0.5", null, "3.2", null, "0.4", null, "90.4", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.4", null, "0.9", null, "30.4", null, "1.7", null, "54.2", null, "1.6", null, "27526", null, "3396", null, "9091", null, "1679", null, "18435", null, "2548", null, "5997", null, "1273", null, "13467", null, "2242", null, "3793", null, "1186", null, "9674", null, "1809", null, "8062", null, "1751", null, "15996", null, "2681", null, "4365", null, "1193", null, "11091", null, "2108", null, "3117", null, "1134", null, "7974", null, "1720", null, "540", null, "545", null, "11530", null, "1829", null, "1632", null, "599", null, "2376", null, "699", null, "676", null, "433", null, "1700", null, "584", null, "7522", null, "1591", null, "14151", null, "2572", null, "13375", null, "2158", null, "15163", null, "2581", null, "12363", null, "2146", null, "23263", null, "3084", null, "818", null, "501", null, "-999999999", "N", "-999999999", "N", "138", null, "159", null, "-999999999", "N", "-999999999", "N", "176", null, "260", null, "3131", null, "1115", null, "1449", null, "908", null, "23257", null, "3081", null, "24619", null, "5261", null, "19464", null, "2685", null, "5198", null, "1483", null, "8713", null, "1795", null, "5553", null, "1485", null, "9.2", null, "1.1", null, "33.0", null, "4.5", null, "67.0", null, "4.5", null, "21.8", null, "4.3", null, "48.9", null, "5.1", null, "13.8", null, "3.9", null, "35.1", null, "4.9", null, "29.3", null, "5.0", null, "58.1", null, "5.4", null, "15.9", null, "4.1", null, "40.3", null, "5.3", null, "11.3", null, "3.8", null, "29.0", null, "4.8", null, "2.0", null, "1.9", null, "41.9", null, "5.4", null, "5.9", null, "2.2", null, "8.6", null, "2.5", null, "2.5", null, "1.5", null, "6.2", null, "2.2", null, "27.3", null, "5.0", null, "51.4", null, "6.0", null, "48.6", null, "6.0", null, "55.1", null, "6.0", null, "44.9", null, "6.0", null, "84.5", null, "4.1", null, "3.0", null, "1.8", null, "-999999999.0", "N", "-999999999.0", "N", "0.5", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "0.6", null, "0.9", null, "11.4", null, "3.9", null, "5.3", null, "3.2", null, "84.5", null, "4.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "26.7", null, "6.6", null, "44.8", null, "6.9", null, "28.5", null, "6.8", null, "272342", null, "4707", null, "116138", null, "3615", null, "156204", null, "4726", null, "148840", null, "4633", null, "37390", null, "3070", null, "12858", null, "1974", null, "24532", null, "2598", null, "86112", null, "4260", null, "80673", null, "4194", null, "59464", null, "3483", null, "20696", null, "2531", null, "7260", null, "1525", null, "13436", null, "1976", null, "513", null, "576", null, "191669", null, "5148", null, "89376", null, "3639", null, "16694", null, "2212", null, "5598", null, "1092", null, "11096", null, "2092", null, "85599", null, "4335", null, "22380", null, "2289", null, "249962", null, "4739", null, "74276", null, "3814", null, "198066", null, "4957", null, "250238", null, "5126", null, "3902", null, "967", null, "-999999999", "N", "-999999999", "N", "3564", null, "1096", null, "-999999999", "N", "-999999999", "N", "2554", null, "919", null, "11659", null, "1481", null, "8094", null, "1334", null, "247798", null, "4927", null, "88150", null, "3573", null, "186230", null, "4757", null, "26536", null, "1763", null, "53862", null, "3414", null, "105832", null, "4056", null, "90.8", null, "1.1", null, "42.6", null, "1.2", null, "57.4", null, "1.2", null, "54.7", null, "1.5", null, "13.7", null, "1.1", null, "4.7", null, "0.7", null, "9.0", null, "1.0", null, "31.6", null, "1.4", null, "29.6", null, "1.4", null, "21.8", null, "1.2", null, "7.6", null, "0.9", null, "2.7", null, "0.6", null, "4.9", null, "0.7", null, "0.2", null, "0.2", null, "70.4", null, "1.4", null, "32.8", null, "1.3", null, "6.1", null, "0.8", null, "2.1", null, "0.4", null, "4.1", null, "0.8", null, "31.4", null, "1.4", null, "8.2", null, "0.8", null, "91.8", null, "0.8", null, "27.3", null, "1.3", null, "72.7", null, "1.3", null, "91.9", null, "0.8", null, "1.4", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "1.3", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "0.9", null, "0.3", null, "4.3", null, "0.5", null, "3.0", null, "0.5", null, "91.0", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.2", null, "0.8", null, "28.9", null, "1.7", null, "56.8", null, "1.6", null, "21", "04"], ["5001900US2105", "Congressional District 5 (119th Congress), Kentucky", "303705", null, "4269", null, "139894", null, "3373", null, "163811", null, "3778", null, "147539", null, "4852", null, "52288", null, "3545", null, "17438", null, "2229", null, "34850", null, "3185", null, "103878", null, "5220", null, "92748", null, "3995", null, "61575", null, "3261", null, "30136", null, "2893", null, "7969", null, "1618", null, "22167", null, "2686", null, "1037", null, "528", null, "210957", null, "5241", null, "85964", null, "4470", null, "22152", null, "2446", null, "9469", null, "1659", null, "12683", null, "1998", null, "102841", null, "5256", null, "79808", null, "4643", null, "223897", null, "5868", null, "140903", null, "4342", null, "162802", null, "5137", null, "289356", null, "4272", null, "1788", null, "660", null, "-999999999", "N", "-999999999", "N", "-999999999", "N", "-999999999", "N", "-999999999", "N", "-999999999", "N", "-999999999", "N", "-999999999", "N", "10307", null, "1688", null, "3211", null, "852", null, "288272", null, "4228", null, "46664", null, "1658", null, "199827", null, "5012", null, "54839", null, "3173", null, "65536", null, "3702", null, "79452", null, "3799", null, "-888888888", "(X)", "-888888888", "(X)", "46.1", null, "0.9", null, "53.9", null, "0.9", null, "48.6", null, "1.6", null, "17.2", null, "1.2", null, "5.7", null, "0.7", null, "11.5", null, "1.1", null, "34.2", null, "1.6", null, "30.5", null, "1.3", null, "20.3", null, "1.1", null, "9.9", null, "0.9", null, "2.6", null, "0.5", null, "7.3", null, "0.9", null, "0.3", null, "0.2", null, "69.5", null, "1.3", null, "28.3", null, "1.4", null, "7.3", null, "0.8", null, "3.1", null, "0.5", null, "4.2", null, "0.7", null, "33.9", null, "1.6", null, "26.3", null, "1.5", null, "73.7", null, "1.5", null, "46.4", null, "1.4", null, "53.6", null, "1.4", null, "95.3", null, "0.6", null, "0.6", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "3.4", null, "0.6", null, "1.1", null, "0.3", null, "94.9", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "27.4", null, "1.4", null, "32.8", null, "1.6", null, "39.8", null, "1.7", null, "71926", null, "3893", null, "29064", null, "2501", null, "42862", null, "2605", null, "22093", null, "2487", null, "22127", null, "2428", null, "5948", null, "1135", null, "16179", null, "2148", null, "27706", null, "2710", null, "27830", null, "2721", null, "12402", null, "1826", null, "15332", null, "2072", null, "3447", null, "888", null, "11885", null, "2015", null, "96", null, "136", null, "44096", null, "3573", null, "9691", null, "1869", null, "6795", null, "1348", null, "2501", null, "754", null, "4294", null, "1161", null, "27610", null, "2706", null, "45275", null, "3495", null, "26651", null, "2437", null, "44184", null, "2791", null, "27742", null, "2860", null, "67128", null, "3730", null, "494", null, "274", null, "-999999999", "N", "-999999999", "N", "-999999999", "N", "-999999999", "N", "-999999999", "N", "-999999999", "N", "-999999999", "N", "-999999999", "N", "4103", null, "1041", null, "1087", null, "677", null, "66402", null, "3684", null, "16621", null, "1194", null, "44220", null, "3534", null, "18308", null, "2316", null, "16477", null, "2334", null, "9435", null, "1752", null, "23.7", null, "1.3", null, "40.4", null, "2.3", null, "59.6", null, "2.3", null, "30.7", null, "3.0", null, "30.8", null, "2.8", null, "8.3", null, "1.5", null, "22.5", null, "2.7", null, "38.5", null, "3.3", null, "38.7", null, "3.4", null, "17.2", null, "2.4", null, "21.3", null, "2.7", null, "4.8", null, "1.2", null, "16.5", null, "2.7", null, "0.1", null, "0.2", null, "61.3", null, "3.4", null, "13.5", null, "2.4", null, "9.4", null, "1.7", null, "3.5", null, "1.0", null, "6.0", null, "1.6", null, "38.4", null, "3.3", null, "62.9", null, "3.0", null, "37.1", null, "3.0", null, "61.4", null, "2.9", null, "38.6", null, "2.9", null, "93.3", null, "1.4", null, "0.7", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "5.7", null, "1.4", null, "1.5", null, "0.9", null, "92.3", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "41.4", null, "4.0", null, "37.3", null, "4.3", null, "21.3", null, "3.6", null, "231779", null, "5222", null, "110830", null, "3567", null, "120949", null, "3920", null, "125446", null, "4717", null, "30161", null, "2907", null, "11490", null, "1984", null, "18671", null, "2221", null, "76172", null, "4384", null, "64918", null, "3213", null, "49173", null, "2920", null, "14804", null, "1968", null, "4522", null, "1277", null, "10282", null, "1557", null, "941", null, "506", null, "166861", null, "5389", null, "76273", null, "4155", null, "15357", null, "2231", null, "6968", null, "1635", null, "8389", null, "1487", null, "75231", null, "4494", null, "34533", null, "2784", null, "197246", null, "5565", null, "96719", null, "4268", null, "135060", null, "4548", null, "222228", null, "4973", null, "1294", null, "565", null, "-999999999", "N", "-999999999", "N", "-999999999", "N", "-999999999", "N", "-999999999", "N", "-999999999", "N", "-999999999", "N", "-999999999", "N", "6204", null, "1563", null, "2124", null, "658", null, "221870", null, "5025", null, "58614", null, "2569", null, "155607", null, "4994", null, "36531", null, "2852", null, "49059", null, "3236", null, "70017", null, "3602", null, "76.3", null, "1.3", null, "47.8", null, "1.2", null, "52.2", null, "1.2", null, "54.1", null, "1.7", null, "13.0", null, "1.2", null, "5.0", null, "0.8", null, "8.1", null, "1.0", null, "32.9", null, "1.7", null, "28.0", null, "1.4", null, "21.2", null, "1.3", null, "6.4", null, "0.8", null, "2.0", null, "0.5", null, "4.4", null, "0.7", null, "0.4", null, "0.2", null, "72.0", null, "1.4", null, "32.9", null, "1.6", null, "6.6", null, "1.0", null, "3.0", null, "0.7", null, "3.6", null, "0.7", null, "32.5", null, "1.7", null, "14.9", null, "1.2", null, "85.1", null, "1.2", null, "41.7", null, "1.5", null, "58.3", null, "1.5", null, "95.9", null, "0.7", null, "0.6", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "2.7", null, "0.7", null, "0.9", null, "0.3", null, "95.7", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "23.5", null, "1.6", null, "31.5", null, "1.9", null, "45.0", null, "1.9", null, "21", "05"], ["5001900US2106", "Congressional District 6 (119th Congress), Kentucky", "318271", null, "4093", null, "120948", null, "3301", null, "197323", null, "4609", null, "142642", null, "4542", null, "50346", null, "3568", null, "15555", null, "2102", null, "34791", null, "2979", null, "125283", null, "4522", null, "87405", null, "3734", null, "58101", null, "3116", null, "28230", null, "2659", null, "8629", null, "1597", null, "19601", null, "2382", null, "1074", null, "580", null, "230866", null, "5283", null, "84541", null, "3752", null, "22116", null, "2561", null, "6926", null, "1582", null, "15190", null, "2012", null, "124209", null, "4458", null, "44886", null, "3321", null, "273385", null, "4345", null, "94757", null, "4460", null, "223514", null, "5330", null, "260512", null, "3829", null, "23905", null, "1940", null, "1432", null, "832", null, "7986", null, "1010", null, "-999999999", "N", "-999999999", "N", "4129", null, "1031", null, "20307", null, "2530", null, "15260", null, "1424", null, "257453", null, "3791", null, "68419", null, "2958", null, "192988", null, "4487", null, "30348", null, "2347", null, "58144", null, "4095", null, "104496", null, "4773", null, "-888888888", "(X)", "-888888888", "(X)", "38.0", null, "1.0", null, "62.0", null, "1.0", null, "44.8", null, "1.3", null, "15.8", null, "1.1", null, "4.9", null, "0.7", null, "10.9", null, "0.9", null, "39.4", null, "1.3", null, "27.5", null, "1.2", null, "18.3", null, "1.0", null, "8.9", null, "0.9", null, "2.7", null, "0.5", null, "6.2", null, "0.8", null, "0.3", null, "0.2", null, "72.5", null, "1.2", null, "26.6", null, "1.1", null, "6.9", null, "0.8", null, "2.2", null, "0.5", null, "4.8", null, "0.6", null, "39.0", null, "1.3", null, "14.1", null, "1.0", null, "85.9", null, "1.0", null, "29.8", null, "1.4", null, "70.2", null, "1.4", null, "81.9", null, "0.7", null, "7.5", null, "0.6", null, "0.4", null, "0.3", null, "2.5", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "1.3", null, "0.3", null, "6.4", null, "0.8", null, "4.8", null, "0.4", null, "80.9", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.7", null, "1.2", null, "30.1", null, "2.0", null, "54.1", null, "2.1", null, "32760", null, "3479", null, "12862", null, "2171", null, "19898", null, "2608", null, "7670", null, "1332", null, "13820", null, "2003", null, "2776", null, "1056", null, "11044", null, "1702", null, "11270", null, "2342", null, "15476", null, "1984", null, "5150", null, "1125", null, "9950", null, "1751", null, "2257", null, "997", null, "7693", null, "1478", null, "376", null, "335", null, "17284", null, "2788", null, "2520", null, "936", null, "3870", null, "1119", null, "519", null, "354", null, "3351", null, "1085", null, "10894", null, "2332", null, "14845", null, "2084", null, "17915", null, "2686", null, "17372", null, "2509", null, "15388", null, "2247", null, "23061", null, "2561", null, "4844", null, "1358", null, "244", null, "315", null, "368", null, "309", null, "-999999999", "N", "-999999999", "N", "366", null, "304", null, "3877", null, "1198", null, "1510", null, "599", null, "22995", null, "2576", null, "29476", null, "5113", null, "21490", null, "2410", null, "5108", null, "1246", null, "10400", null, "1835", null, "5982", null, "1264", null, "10.3", null, "1.1", null, "39.3", null, "5.0", null, "60.7", null, "5.0", null, "23.4", null, "3.8", null, "42.2", null, "4.9", null, "8.5", null, "3.1", null, "33.7", null, "4.3", null, "34.4", null, "5.2", null, "47.2", null, "5.1", null, "15.7", null, "3.3", null, "30.4", null, "4.9", null, "6.9", null, "3.0", null, "23.5", null, "4.3", null, "1.1", null, "1.0", null, "52.8", null, "5.1", null, "7.7", null, "2.8", null, "11.8", null, "3.1", null, "1.6", null, "1.1", null, "10.2", null, "3.0", null, "33.3", null, "5.3", null, "45.3", null, "5.0", null, "54.7", null, "5.0", null, "53.0", null, "4.9", null, "47.0", null, "4.9", null, "70.4", null, "4.7", null, "14.8", null, "3.6", null, "0.7", null, "1.0", null, "1.1", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "1.1", null, "0.9", null, "11.8", null, "3.4", null, "4.6", null, "1.8", null, "70.2", null, "4.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "23.8", null, "5.2", null, "48.4", null, "6.8", null, "27.8", null, "4.9", null, "285511", null, "5012", null, "108086", null, "3265", null, "177425", null, "5081", null, "134972", null, "4496", null, "36526", null, "2973", null, "12779", null, "2017", null, "23747", null, "2416", null, "114013", null, "4709", null, "71929", null, "3422", null, "52951", null, "2977", null, "18280", null, "2162", null, "6372", null, "1356", null, "11908", null, "1803", null, "698", null, "499", null, "213582", null, "5428", null, "82021", null, "3667", null, "18246", null, "2141", null, "6407", null, "1560", null, "11839", null, "1691", null, "113315", null, "4609", null, "30041", null, "3117", null, "255470", null, "4723", null, "77385", null, "4033", null, "208126", null, "5302", null, "237451", null, "4447", null, "19061", null, "2105", null, "1188", null, "748", null, "7618", null, "1055", null, "-999999999", "N", "-999999999", "N", "3763", null, "1044", null, "16430", null, "2466", null, "13750", null, "1509", null, "234458", null, "4250", null, "74482", null, "2651", null, "171498", null, "4527", null, "25240", null, "1927", null, "47744", null, "3755", null, "98514", null, "4650", null, "89.7", null, "1.1", null, "37.9", null, "1.1", null, "62.1", null, "1.1", null, "47.3", null, "1.4", null, "12.8", null, "1.1", null, "4.5", null, "0.7", null, "8.3", null, "0.8", null, "39.9", null, "1.4", null, "25.2", null, "1.2", null, "18.5", null, "1.0", null, "6.4", null, "0.8", null, "2.2", null, "0.5", null, "4.2", null, "0.6", null, "0.2", null, "0.2", null, "74.8", null, "1.2", null, "28.7", null, "1.2", null, "6.4", null, "0.7", null, "2.2", null, "0.5", null, "4.1", null, "0.6", null, "39.7", null, "1.3", null, "10.5", null, "1.0", null, "89.5", null, "1.0", null, "27.1", null, "1.3", null, "72.9", null, "1.3", null, "83.2", null, "0.9", null, "6.7", null, "0.7", null, "0.4", null, "0.3", null, "2.7", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "1.3", null, "0.4", null, "5.8", null, "0.9", null, "4.8", null, "0.5", null, "82.1", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.7", null, "1.1", null, "27.8", null, "2.0", null, "57.4", null, "2.1", null, "21", "06"], ["5001900US2201", "Congressional District 1 (119th Congress), Louisiana", "320691", null, "6125", null, "140263", null, "4272", null, "180428", null, "4877", null, "149738", null, "5205", null, "55447", null, "4043", null, "17552", null, "2512", null, "37895", null, "3359", null, "115506", null, "5204", null, "97169", null, "4667", null, "60645", null, "3622", null, "35622", null, "3589", null, "10649", null, "2200", null, "24973", null, "2912", null, "902", null, "706", null, "223522", null, "6764", null, "89093", null, "4394", null, "19825", null, "2633", null, "6903", null, "1532", null, "12922", null, "1985", null, "114604", null, "5319", null, "39366", null, "3741", null, "281325", null, "6308", null, "91019", null, "4918", null, "229672", null, "7139", null, "234882", null, "5436", null, "39109", null, "3928", null, "2598", null, "863", null, "7424", null, "1362", null, "-999999999", "N", "-999999999", "N", "7251", null, "1704", null, "29427", null, "3023", null, "30226", null, "2423", null, "231114", null, "5160", null, "79823", null, "3886", null, "205185", null, "5558", null, "27490", null, "2138", null, "72687", null, "4357", null, "105008", null, "4691", null, "-888888888", "(X)", "-888888888", "(X)", "43.7", null, "1.1", null, "56.3", null, "1.1", null, "46.7", null, "1.4", null, "17.3", null, "1.2", null, "5.5", null, "0.8", null, "11.8", null, "1.0", null, "36.0", null, "1.4", null, "30.3", null, "1.4", null, "18.9", null, "1.1", null, "11.1", null, "1.1", null, "3.3", null, "0.7", null, "7.8", null, "0.9", null, "0.3", null, "0.2", null, "69.7", null, "1.4", null, "27.8", null, "1.3", null, "6.2", null, "0.8", null, "2.2", null, "0.5", null, "4.0", null, "0.6", null, "35.7", null, "1.4", null, "12.3", null, "1.1", null, "87.7", null, "1.1", null, "28.4", null, "1.5", null, "71.6", null, "1.5", null, "73.2", null, "1.2", null, "12.2", null, "1.1", null, "0.8", null, "0.3", null, "2.3", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "2.3", null, "0.5", null, "9.2", null, "0.9", null, "9.4", null, "0.7", null, "72.1", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.4", null, "1.0", null, "35.4", null, "1.9", null, "51.2", null, "1.8", null, "31333", null, "3764", null, "12566", null, "2217", null, "18767", null, "2825", null, "6336", null, "1833", null, "14601", null, "2530", null, "4081", null, "1223", null, "10520", null, "2209", null, "10396", null, "2124", null, "16193", null, "2838", null, "5077", null, "1720", null, "11116", null, "2255", null, "3112", null, "1077", null, "8004", null, "1998", null, "0", null, "224", null, "15140", null, "2564", null, "1259", null, "551", null, "3485", null, "1198", null, "969", null, "652", null, "2516", null, "881", null, "10396", null, "2124", null, "13948", null, "2274", null, "17385", null, "2922", null, "15667", null, "2666", null, "15666", null, "2414", null, "15900", null, "2262", null, "8491", null, "2250", null, "111", null, "98", null, "430", null, "286", null, "-999999999", "N", "-999999999", "N", "1045", null, "832", null, "5356", null, "1674", null, "5132", null, "1633", null, "15302", null, "2168", null, "30417", null, "6527", null, "20937", null, "3092", null, "2940", null, "804", null, "11513", null, "2248", null, "6484", null, "1983", null, "9.8", null, "1.2", null, "40.1", null, "5.3", null, "59.9", null, "5.3", null, "20.2", null, "5.2", null, "46.6", null, "6.1", null, "13.0", null, "3.6", null, "33.6", null, "5.9", null, "33.2", null, "5.6", null, "51.7", null, "6.1", null, "16.2", null, "4.8", null, "35.5", null, "6.0", null, "9.9", null, "3.4", null, "25.5", null, "5.5", null, "0.0", null, "0.7", null, "48.3", null, "6.1", null, "4.0", null, "1.8", null, "11.1", null, "3.5", null, "3.1", null, "2.0", null, "8.0", null, "2.7", null, "33.2", null, "5.6", null, "44.5", null, "5.7", null, "55.5", null, "5.7", null, "50.0", null, "5.5", null, "50.0", null, "5.5", null, "50.7", null, "6.0", null, "27.1", null, "5.6", null, "0.4", null, "0.3", null, "1.4", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "3.3", null, "2.6", null, "17.1", null, "4.9", null, "16.4", null, "4.5", null, "48.8", null, "6.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.0", null, "3.9", null, "55.0", null, "7.8", null, "31.0", null, "7.3", null, "289358", null, "7134", null, "127697", null, "4404", null, "161661", null, "5437", null, "143402", null, "5189", null, "40846", null, "3502", null, "13471", null, "2168", null, "27375", null, "2800", null, "105110", null, "5371", null, "80976", null, "4805", null, "55568", null, "3424", null, "24506", null, "3061", null, "7537", null, "1872", null, "16969", null, "2443", null, "902", null, "706", null, "208382", null, "7184", null, "87834", null, "4455", null, "16340", null, "2356", null, "5934", null, "1425", null, "10406", null, "1774", null, "104208", null, "5481", null, "25418", null, "2888", null, "263940", null, "6866", null, "75352", null, "4717", null, "214006", null, "7517", null, "218982", null, "5801", null, "30618", null, "3687", null, "2487", null, "847", null, "6994", null, "1346", null, "-999999999", "N", "-999999999", "N", "6206", null, "1599", null, "24071", null, "2830", null, "25094", null, "2327", null, "215812", null, "5586", null, "87398", null, "3673", null, "184248", null, "6053", null, "24550", null, "2048", null, "61174", null, "4037", null, "98524", null, "4818", null, "90.2", null, "1.2", null, "44.1", null, "1.2", null, "55.9", null, "1.2", null, "49.6", null, "1.5", null, "14.1", null, "1.2", null, "4.7", null, "0.8", null, "9.5", null, "0.9", null, "36.3", null, "1.5", null, "28.0", null, "1.6", null, "19.2", null, "1.1", null, "8.5", null, "1.0", null, "2.6", null, "0.7", null, "5.9", null, "0.8", null, "0.3", null, "0.2", null, "72.0", null, "1.6", null, "30.4", null, "1.4", null, "5.6", null, "0.8", null, "2.1", null, "0.5", null, "3.6", null, "0.6", null, "36.0", null, "1.6", null, "8.8", null, "1.0", null, "91.2", null, "1.0", null, "26.0", null, "1.6", null, "74.0", null, "1.6", null, "75.7", null, "1.3", null, "10.6", null, "1.2", null, "0.9", null, "0.3", null, "2.4", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "2.1", null, "0.6", null, "8.3", null, "1.0", null, "8.7", null, "0.7", null, "74.6", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.3", null, "1.0", null, "33.2", null, "1.9", null, "53.5", null, "1.9", null, "22", "01"], ["5001900US2202", "Congressional District 2 (119th Congress), Louisiana", "304686", null, "5381", null, "129371", null, "4043", null, "175315", null, "5397", null, "105108", null, "4685", null, "73322", null, "4228", null, "18464", null, "2288", null, "54858", null, "4175", null, "126256", null, "5868", null, "77816", null, "4479", null, "35957", null, "2670", null, "41413", null, "3790", null, "8713", null, "1602", null, "32700", null, "3658", null, "446", null, "396", null, "226870", null, "5893", null, "69151", null, "4016", null, "31909", null, "2851", null, "9751", null, "1759", null, "22158", null, "2560", null, "125810", null, "5872", null, "58057", null, "4712", null, "246629", null, "6511", null, "90842", null, "4732", null, "213844", null, "5575", null, "114316", null, "3819", null, "149653", null, "4024", null, "2182", null, "841", null, "8064", null, "1260", null, "-999999999", "N", "-999999999", "N", "8915", null, "2064", null, "21516", null, "2527", null, "28407", null, "2355", null, "109008", null, "3530", null, "58115", null, "1973", null, "178430", null, "5840", null, "32756", null, "2677", null, "63251", null, "4877", null, "82423", null, "4670", null, "-888888888", "(X)", "-888888888", "(X)", "42.5", null, "1.3", null, "57.5", null, "1.3", null, "34.5", null, "1.4", null, "24.1", null, "1.3", null, "6.1", null, "0.7", null, "18.0", null, "1.3", null, "41.4", null, "1.7", null, "25.5", null, "1.4", null, "11.8", null, "0.8", null, "13.6", null, "1.2", null, "2.9", null, "0.5", null, "10.7", null, "1.2", null, "0.1", null, "0.1", null, "74.5", null, "1.4", null, "22.7", null, "1.3", null, "10.5", null, "0.9", null, "3.2", null, "0.6", null, "7.3", null, "0.8", null, "41.3", null, "1.7", null, "19.1", null, "1.5", null, "80.9", null, "1.5", null, "29.8", null, "1.4", null, "70.2", null, "1.4", null, "37.5", null, "1.1", null, "49.1", null, "1.1", null, "0.7", null, "0.3", null, "2.6", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "2.9", null, "0.7", null, "7.1", null, "0.8", null, "9.3", null, "0.7", null, "35.8", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.4", null, "1.5", null, "35.4", null, "2.3", null, "46.2", null, "2.2", null, "54674", null, "4003", null, "21729", null, "2443", null, "32945", null, "3528", null, "8826", null, "1761", null, "27083", null, "3076", null, "5102", null, "1613", null, "21981", null, "2620", null, "18765", null, "2285", null, "23231", null, "2993", null, "3864", null, "1240", null, "19288", null, "2933", null, "2733", null, "1187", null, "16555", null, "2662", null, "79", null, "143", null, "31443", null, "2810", null, "4962", null, "1282", null, "7795", null, "1485", null, "2369", null, "1045", null, "5426", null, "1226", null, "18686", null, "2250", null, "25512", null, "3175", null, "29162", null, "3116", null, "25146", null, "2788", null, "29528", null, "3548", null, "9485", null, "1528", null, "39443", null, "3925", null, "43", null, "63", null, "629", null, "538", null, "-999999999", "N", "-999999999", "N", "791", null, "541", null, "4283", null, "1443", null, "3288", null, "1044", null, "8917", null, "1460", null, "25143", null, "3850", null, "35909", null, "3320", null, "9781", null, "1998", null, "16983", null, "2741", null, "9145", null, "2058", null, "17.9", null, "1.3", null, "39.7", null, "4.0", null, "60.3", null, "4.0", null, "16.1", null, "3.2", null, "49.5", null, "3.8", null, "9.3", null, "2.7", null, "40.2", null, "3.8", null, "34.3", null, "3.5", null, "42.5", null, "3.9", null, "7.1", null, "2.3", null, "35.3", null, "4.1", null, "5.0", null, "2.1", null, "30.3", null, "4.0", null, "0.1", null, "0.3", null, "57.5", null, "3.9", null, "9.1", null, "2.3", null, "14.3", null, "2.7", null, "4.3", null, "1.8", null, "9.9", null, "2.3", null, "34.2", null, "3.4", null, "46.7", null, "4.4", null, "53.3", null, "4.4", null, "46.0", null, "4.5", null, "54.0", null, "4.5", null, "17.3", null, "3.0", null, "72.1", null, "3.8", null, "0.1", null, "0.1", null, "1.2", null, "1.0", null, "-999999999.0", "N", "-999999999.0", "N", "1.4", null, "1.0", null, "7.8", null, "2.5", null, "6.0", null, "1.8", null, "16.3", null, "2.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "27.2", null, "5.0", null, "47.3", null, "5.6", null, "25.5", null, "5.6", null, "250012", null, "5788", null, "107642", null, "3728", null, "142370", null, "5721", null, "96282", null, "4354", null, "46239", null, "3658", null, "13362", null, "1584", null, "32877", null, "3553", null, "107491", null, "5729", null, "54585", null, "3468", null, "32093", null, "2599", null, "22125", null, "2755", null, "5980", null, "1083", null, "16145", null, "2538", null, "367", null, "362", null, "195427", null, "6329", null, "64189", null, "3817", null, "24114", null, "2739", null, "7382", null, "1434", null, "16732", null, "2377", null, "107124", null, "5740", null, "32545", null, "3164", null, "217467", null, "6305", null, "65696", null, "3866", null, "184316", null, "5291", null, "104831", null, "4086", null, "110210", null, "5082", null, "2139", null, "837", null, "7435", null, "1209", null, "-999999999", "N", "-999999999", "N", "8124", null, "1933", null, "17233", null, "2219", null, "25119", null, "2393", null, "100091", null, "3781", null, "66765", null, "3482", null, "142521", null, "5400", null, "22975", null, "1984", null, "46268", null, "3791", null, "73278", null, "4468", null, "82.1", null, "1.3", null, "43.1", null, "1.5", null, "56.9", null, "1.5", null, "38.5", null, "1.7", null, "18.5", null, "1.4", null, "5.3", null, "0.6", null, "13.2", null, "1.4", null, "43.0", null, "1.9", null, "21.8", null, "1.4", null, "12.8", null, "1.1", null, "8.8", null, "1.1", null, "2.4", null, "0.4", null, "6.5", null, "1.0", null, "0.1", null, "0.1", null, "78.2", null, "1.4", null, "25.7", null, "1.5", null, "9.6", null, "1.0", null, "3.0", null, "0.6", null, "6.7", null, "0.9", null, "42.8", null, "1.9", null, "13.0", null, "1.3", null, "87.0", null, "1.3", null, "26.3", null, "1.4", null, "73.7", null, "1.4", null, "41.9", null, "1.5", null, "44.1", null, "1.6", null, "0.9", null, "0.3", null, "3.0", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "3.2", null, "0.8", null, "6.9", null, "0.9", null, "10.0", null, "0.9", null, "40.0", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.1", null, "1.3", null, "32.5", null, "2.3", null, "51.4", null, "2.4", null, "22", "02"], ["5001900US2203", "Congressional District 3 (119th Congress), Louisiana", "310348", null, "4390", null, "129945", null, "2982", null, "180403", null, "4466", null, "142229", null, "5629", null, "56915", null, "4880", null, "15411", null, "2150", null, "41504", null, "3983", null, "111204", null, "5348", null, "95103", null, "4705", null, "59213", null, "4122", null, "35532", null, "4049", null, "7944", null, "1581", null, "27588", null, "3552", null, "358", null, "404", null, "215245", null, "5371", null, "83016", null, "3698", null, "21383", null, "2514", null, "7467", null, "1710", null, "13916", null, "1796", null, "110846", null, "5393", null, "57308", null, "4079", null, "253040", null, "5122", null, "98219", null, "4426", null, "212129", null, "5677", null, "215508", null, "4689", null, "64444", null, "3333", null, "3352", null, "774", null, "4671", null, "889", null, "-999999999", "N", "-999999999", "N", "4454", null, "957", null, "17726", null, "2627", null, "17560", null, "1798", null, "211614", null, "4407", null, "59769", null, "2956", null, "199144", null, "5677", null, "33719", null, "3343", null, "69052", null, "4927", null, "96373", null, "4814", null, "-888888888", "(X)", "-888888888", "(X)", "41.9", null, "1.0", null, "58.1", null, "1.0", null, "45.8", null, "1.7", null, "18.3", null, "1.5", null, "5.0", null, "0.7", null, "13.4", null, "1.3", null, "35.8", null, "1.6", null, "30.6", null, "1.4", null, "19.1", null, "1.3", null, "11.4", null, "1.3", null, "2.6", null, "0.5", null, "8.9", null, "1.2", null, "0.1", null, "0.1", null, "69.4", null, "1.4", null, "26.7", null, "1.2", null, "6.9", null, "0.8", null, "2.4", null, "0.5", null, "4.5", null, "0.6", null, "35.7", null, "1.6", null, "18.5", null, "1.3", null, "81.5", null, "1.3", null, "31.6", null, "1.4", null, "68.4", null, "1.4", null, "69.4", null, "1.2", null, "20.8", null, "1.1", null, "1.1", null, "0.2", null, "1.5", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "1.4", null, "0.3", null, "5.7", null, "0.8", null, "5.7", null, "0.6", null, "68.2", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.9", null, "1.6", null, "34.7", null, "2.1", null, "48.4", null, "2.2", null, "49953", null, "4119", null, "18316", null, "2046", null, "31637", null, "3603", null, "9814", null, "1956", null, "22162", null, "2504", null, "4670", null, "1458", null, "17492", null, "2312", null, "17977", null, "2603", null, "23154", null, "2978", null, "7149", null, "1779", null, "15988", null, "2348", null, "2883", null, "958", null, "13105", null, "2352", null, "17", null, "31", null, "26799", null, "3042", null, "2665", null, "849", null, "6174", null, "1523", null, "1787", null, "1117", null, "4387", null, "918", null, "17960", null, "2605", null, "25743", null, "2711", null, "24210", null, "3009", null, "25571", null, "3191", null, "24382", null, "3370", null, "22610", null, "2886", null, "21729", null, "2848", null, "636", null, "304", null, "108", null, "109", null, "-999999999", "N", "-999999999", "N", "853", null, "590", null, "4017", null, "1437", null, "2134", null, "822", null, "22393", null, "2889", null, "25042", null, "2067", null, "31976", null, "3258", null, "7768", null, "1851", null, "14883", null, "2227", null, "9325", null, "1946", null, "16.1", null, "1.3", null, "36.7", null, "3.7", null, "63.3", null, "3.7", null, "19.6", null, "3.3", null, "44.4", null, "4.1", null, "9.3", null, "2.8", null, "35.0", null, "4.0", null, "36.0", null, "4.1", null, "46.4", null, "4.4", null, "14.3", null, "3.2", null, "32.0", null, "4.0", null, "5.8", null, "1.9", null, "26.2", null, "4.2", null, "0.0", null, "0.1", null, "53.6", null, "4.4", null, "5.3", null, "1.6", null, "12.4", null, "3.0", null, "3.6", null, "2.2", null, "8.8", null, "1.9", null, "36.0", null, "4.1", null, "51.5", null, "4.0", null, "48.5", null, "4.0", null, "51.2", null, "5.1", null, "48.8", null, "5.1", null, "45.3", null, "4.2", null, "43.5", null, "4.5", null, "1.3", null, "0.6", null, "0.2", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "1.7", null, "1.2", null, "8.0", null, "2.8", null, "4.3", null, "1.7", null, "44.8", null, "4.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "24.3", null, "5.4", null, "46.5", null, "4.9", null, "29.2", null, "5.2", null, "260395", null, "5673", null, "111629", null, "2946", null, "148766", null, "5489", null, "132415", null, "5632", null, "34753", null, "3950", null, "10741", null, "1799", null, "24012", null, "3226", null, "93227", null, "5272", null, "71949", null, "4677", null, "52064", null, "3892", null, "19544", null, "3268", null, "5061", null, "1288", null, "14483", null, "2786", null, "341", null, "400", null, "188446", null, "5397", null, "80351", null, "3715", null, "15209", null, "2190", null, "5680", null, "1258", null, "9529", null, "1676", null, "92886", null, "5337", null, "31565", null, "3303", null, "228830", null, "5768", null, "72648", null, "3899", null, "187747", null, "5837", null, "192898", null, "4949", null, "42715", null, "3632", null, "2716", null, "711", null, "4563", null, "904", null, "-999999999", "N", "-999999999", "N", "3601", null, "901", null, "13709", null, "2086", null, "15426", null, "1561", null, "189221", null, "4776", null, "68749", null, "4216", null, "167168", null, "5811", null, "25951", null, "2734", null, "54169", null, "4708", null, "87048", null, "4524", null, "83.9", null, "1.3", null, "42.9", null, "1.2", null, "57.1", null, "1.2", null, "50.9", null, "1.9", null, "13.3", null, "1.5", null, "4.1", null, "0.7", null, "9.2", null, "1.2", null, "35.8", null, "1.8", null, "27.6", null, "1.6", null, "20.0", null, "1.4", null, "7.5", null, "1.2", null, "1.9", null, "0.5", null, "5.6", null, "1.1", null, "0.1", null, "0.2", null, "72.4", null, "1.6", null, "30.9", null, "1.4", null, "5.8", null, "0.8", null, "2.2", null, "0.5", null, "3.7", null, "0.6", null, "35.7", null, "1.9", null, "12.1", null, "1.2", null, "87.9", null, "1.2", null, "27.9", null, "1.4", null, "72.1", null, "1.4", null, "74.1", null, "1.3", null, "16.4", null, "1.3", null, "1.0", null, "0.3", null, "1.8", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "1.4", null, "0.4", null, "5.3", null, "0.8", null, "5.9", null, "0.6", null, "72.7", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.5", null, "1.5", null, "32.4", null, "2.4", null, "52.1", null, "2.4", null, "22", "03"], ["5001900US2204", "Congressional District 4 (119th Congress), Louisiana", "308897", null, "5192", null, "130834", null, "2916", null, "178063", null, "4759", null, "143907", null, "5663", null, "57553", null, "4837", null, "14991", null, "2640", null, "42562", null, "4113", null, "107437", null, "5642", null, "95054", null, "5096", null, "57925", null, "3730", null, "36521", null, "3973", null, "9354", null, "2240", null, "27167", null, "3467", null, "608", null, "384", null, "213843", null, "5788", null, "85982", null, "4166", null, "21032", null, "2695", null, "5637", null, "1428", null, "15395", null, "2306", null, "106829", null, "5655", null, "58674", null, "3796", null, "250223", null, "5722", null, "100883", null, "4608", null, "208014", null, "5825", null, "218457", null, "4708", null, "66001", null, "3452", null, "1893", null, "530", null, "2926", null, "914", null, "-999999999", "N", "-999999999", "N", "3231", null, "1199", null, "16295", null, "2381", null, "13030", null, "1536", null, "214786", null, "4684", null, "60858", null, "2340", null, "201460", null, "6538", null, "37739", null, "2884", null, "71977", null, "4745", null, "91744", null, "5080", null, "-888888888", "(X)", "-888888888", "(X)", "42.4", null, "0.9", null, "57.6", null, "0.9", null, "46.6", null, "1.6", null, "18.6", null, "1.5", null, "4.9", null, "0.8", null, "13.8", null, "1.3", null, "34.8", null, "1.8", null, "30.8", null, "1.5", null, "18.8", null, "1.1", null, "11.8", null, "1.3", null, "3.0", null, "0.7", null, "8.8", null, "1.1", null, "0.2", null, "0.1", null, "69.2", null, "1.5", null, "27.8", null, "1.3", null, "6.8", null, "0.9", null, "1.8", null, "0.5", null, "5.0", null, "0.7", null, "34.6", null, "1.8", null, "19.0", null, "1.2", null, "81.0", null, "1.2", null, "32.7", null, "1.4", null, "67.3", null, "1.4", null, "70.7", null, "1.1", null, "21.4", null, "1.1", null, "0.6", null, "0.2", null, "0.9", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "1.0", null, "0.4", null, "5.3", null, "0.7", null, "4.2", null, "0.5", null, "69.5", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.7", null, "1.4", null, "35.7", null, "2.0", null, "45.5", null, "2.0", null, "56372", null, "3949", null, "20331", null, "2508", null, "36041", null, "3334", null, "13081", null, "1901", null, "23039", null, "2717", null, "3994", null, "1179", null, "19045", null, "2668", null, "20252", null, "2988", null, "27005", null, "2868", null, "8474", null, "1625", null, "18342", null, "2635", null, "3420", null, "1129", null, "14922", null, "2508", null, "189", null, "156", null, "29367", null, "3787", null, "4607", null, "1327", null, "4697", null, "1318", null, "574", null, "342", null, "4123", null, "1301", null, "20063", null, "3000", null, "30581", null, "3340", null, "25791", null, "2528", null, "24741", null, "2941", null, "31631", null, "3382", null, "26928", null, "2752", null, "25643", null, "2751", null, "293", null, "153", null, "291", null, "268", null, "-999999999", "N", "-999999999", "N", "260", null, "239", null, "2957", null, "1062", null, "1214", null, "524", null, "26651", null, "2724", null, "22812", null, "2021", null, "36120", null, "3022", null, "7907", null, "1692", null, "18209", null, "2634", null, "10004", null, "1737", null, "18.2", null, "1.3", null, "36.1", null, "3.8", null, "63.9", null, "3.8", null, "23.2", null, "3.3", null, "40.9", null, "4.2", null, "7.1", null, "2.1", null, "33.8", null, "4.2", null, "35.9", null, "4.2", null, "47.9", null, "4.8", null, "15.0", null, "3.0", null, "32.5", null, "4.4", null, "6.1", null, "2.0", null, "26.5", null, "4.2", null, "0.3", null, "0.3", null, "52.1", null, "4.8", null, "8.2", null, "2.2", null, "8.3", null, "2.3", null, "1.0", null, "0.6", null, "7.3", null, "2.2", null, "35.6", null, "4.2", null, "54.2", null, "3.8", null, "45.8", null, "3.8", null, "43.9", null, "4.4", null, "56.1", null, "4.4", null, "47.8", null, "3.7", null, "45.5", null, "3.6", null, "0.5", null, "0.3", null, "0.5", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "0.5", null, "0.4", null, "5.2", null, "1.9", null, "2.2", null, "0.9", null, "47.3", null, "3.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "21.9", null, "4.1", null, "50.4", null, "5.7", null, "27.7", null, "4.7", null, "252525", null, "6278", null, "110503", null, "3478", null, "142022", null, "5059", null, "130826", null, "5965", null, "34514", null, "4112", null, "10997", null, "2251", null, "23517", null, "3417", null, "87185", null, "4962", null, "68049", null, "4518", null, "49451", null, "3654", null, "18179", null, "3080", null, "5934", null, "1848", null, "12245", null, "2544", null, "419", null, "355", null, "184476", null, "5880", null, "81375", null, "4176", null, "16335", null, "2608", null, "5063", null, "1360", null, "11272", null, "2218", null, "86766", null, "4973", null, "28093", null, "2766", null, "224432", null, "6070", null, "76142", null, "4381", null, "176383", null, "5654", null, "191529", null, "4939", null, "40358", null, "3711", null, "1600", null, "524", null, "2635", null, "869", null, "-999999999", "N", "-999999999", "N", "2971", null, "1141", null, "13338", null, "2093", null, "11816", null, "1521", null, "188135", null, "4939", null, "70859", null, "2460", null, "165340", null, "6488", null, "29832", null, "2598", null, "53768", null, "3959", null, "81740", null, "4975", null, "81.8", null, "1.3", null, "43.8", null, "1.1", null, "56.2", null, "1.1", null, "51.8", null, "2.0", null, "13.7", null, "1.6", null, "4.4", null, "0.9", null, "9.3", null, "1.3", null, "34.5", null, "1.8", null, "26.9", null, "1.6", null, "19.6", null, "1.3", null, "7.2", null, "1.2", null, "2.3", null, "0.7", null, "4.8", null, "1.0", null, "0.2", null, "0.1", null, "73.1", null, "1.6", null, "32.2", null, "1.5", null, "6.5", null, "1.0", null, "2.0", null, "0.5", null, "4.5", null, "0.9", null, "34.4", null, "1.9", null, "11.1", null, "1.0", null, "88.9", null, "1.0", null, "30.2", null, "1.5", null, "69.8", null, "1.5", null, "75.8", null, "1.4", null, "16.0", null, "1.3", null, "0.6", null, "0.2", null, "1.0", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "1.2", null, "0.5", null, "5.3", null, "0.8", null, "4.7", null, "0.6", null, "74.5", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.0", null, "1.5", null, "32.5", null, "2.0", null, "49.4", null, "2.2", null, "22", "04"], ["5001900US2205", "Congressional District 5 (119th Congress), Louisiana", "300596", null, "5781", null, "125748", null, "3824", null, "174848", null, "5259", null, "127042", null, "5377", null, "61733", null, "4279", null, "17308", null, "2783", null, "44425", null, "3001", null, "111821", null, "5649", null, "89620", null, "5042", null, "49100", null, "4368", null, "39230", null, "3590", null, "8980", null, "2004", null, "30250", null, "2911", null, "1290", null, "766", null, "210976", null, "6183", null, "77942", null, "4377", null, "22503", null, "3069", null, "8328", null, "2091", null, "14175", null, "1911", null, "110531", null, "5613", null, "56547", null, "4178", null, "244049", null, "5485", null, "102923", null, "5389", null, "197673", null, "7046", null, "198475", null, "5146", null, "79417", null, "3863", null, "466", null, "265", null, "3731", null, "1378", null, "-999999999", "N", "-999999999", "N", "3874", null, "1070", null, "14633", null, "1983", null, "13829", null, "2116", null, "194601", null, "4998", null, "59583", null, "2483", null, "188775", null, "5960", null, "36070", null, "3066", null, "68692", null, "4802", null, "84013", null, "4872", null, "-888888888", "(X)", "-888888888", "(X)", "41.8", null, "1.1", null, "58.2", null, "1.1", null, "42.3", null, "1.6", null, "20.5", null, "1.4", null, "5.8", null, "0.9", null, "14.8", null, "1.0", null, "37.2", null, "1.7", null, "29.8", null, "1.6", null, "16.3", null, "1.4", null, "13.1", null, "1.2", null, "3.0", null, "0.7", null, "10.1", null, "0.9", null, "0.4", null, "0.3", null, "70.2", null, "1.6", null, "25.9", null, "1.4", null, "7.5", null, "1.0", null, "2.8", null, "0.7", null, "4.7", null, "0.6", null, "36.8", null, "1.6", null, "18.8", null, "1.3", null, "81.2", null, "1.3", null, "34.2", null, "1.8", null, "65.8", null, "1.8", null, "66.0", null, "1.2", null, "26.4", null, "1.2", null, "0.2", null, "0.1", null, "1.2", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "1.3", null, "0.4", null, "4.9", null, "0.7", null, "4.6", null, "0.7", null, "64.7", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "19.1", null, "1.5", null, "36.4", null, "2.4", null, "44.5", null, "2.1", null, "49075", null, "3919", null, "17670", null, "2310", null, "31405", null, "3754", null, "8114", null, "1684", null, "22087", null, "3059", null, "3668", null, "1223", null, "18419", null, "2839", null, "18874", null, "2974", null, "20953", null, "3173", null, "4374", null, "1442", null, "16130", null, "2853", null, "1784", null, "971", null, "14346", null, "2707", null, "449", null, "348", null, "28122", null, "3399", null, "3740", null, "1085", null, "5957", null, "1271", null, "1884", null, "779", null, "4073", null, "978", null, "18425", null, "3006", null, "24919", null, "2890", null, "24156", null, "2811", null, "23858", null, "2783", null, "25217", null, "3638", null, "18843", null, "2579", null, "26309", null, "3061", null, "66", null, "85", null, "180", null, "183", null, "-999999999", "N", "-999999999", "N", "919", null, "703", null, "2758", null, "830", null, "2918", null, "1188", null, "17787", null, "2513", null, "25213", null, "2638", null, "30201", null, "3392", null, "8444", null, "1821", null, "14185", null, "2324", null, "7572", null, "1577", null, "16.3", null, "1.2", null, "36.0", null, "4.5", null, "64.0", null, "4.5", null, "16.5", null, "3.5", null, "45.0", null, "4.7", null, "7.5", null, "2.4", null, "37.5", null, "4.6", null, "38.5", null, "5.1", null, "42.7", null, "5.3", null, "8.9", null, "3.0", null, "32.9", null, "4.7", null, "3.6", null, "1.9", null, "29.2", null, "4.6", null, "0.9", null, "0.7", null, "57.3", null, "5.3", null, "7.6", null, "2.2", null, "12.1", null, "2.5", null, "3.8", null, "1.6", null, "8.3", null, "1.9", null, "37.5", null, "5.1", null, "50.8", null, "4.2", null, "49.2", null, "4.2", null, "48.6", null, "5.2", null, "51.4", null, "5.2", null, "38.4", null, "4.2", null, "53.6", null, "4.3", null, "0.1", null, "0.2", null, "0.4", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "1.9", null, "1.4", null, "5.6", null, "1.7", null, "5.9", null, "2.4", null, "36.2", null, "4.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "28.0", null, "4.9", null, "47.0", null, "5.5", null, "25.1", null, "4.8", null, "251521", null, "5674", null, "108078", null, "3964", null, "143443", null, "4866", null, "118928", null, "5169", null, "39646", null, "4109", null, "13640", null, "2542", null, "26006", null, "3250", null, "92947", null, "5346", null, "68667", null, "4521", null, "44726", null, "3826", null, "23100", null, "3053", null, "7196", null, "1700", null, "15904", null, "2646", null, "841", null, "664", null, "182854", null, "6230", null, "74202", null, "4304", null, "16546", null, "2845", null, "6444", null, "1906", null, "10102", null, "1779", null, "92106", null, "5322", null, "31628", null, "3227", null, "219893", null, "5156", null, "79065", null, "4799", null, "172456", null, "5932", null, "179632", null, "4720", null, "53108", null, "4039", null, "400", null, "241", null, "3551", null, "1354", null, "-999999999", "N", "-999999999", "N", "2955", null, "854", null, "11875", null, "1805", null, "10911", null, "1781", null, "176814", null, "4609", null, "69920", null, "4084", null, "158574", null, "5665", null, "27626", null, "2588", null, "54507", null, "4490", null, "76441", null, "4596", null, "83.7", null, "1.2", null, "43.0", null, "1.3", null, "57.0", null, "1.3", null, "47.3", null, "1.9", null, "15.8", null, "1.6", null, "5.4", null, "1.0", null, "10.3", null, "1.3", null, "37.0", null, "1.9", null, "27.3", null, "1.7", null, "17.8", null, "1.5", null, "9.2", null, "1.2", null, "2.9", null, "0.7", null, "6.3", null, "1.0", null, "0.3", null, "0.3", null, "72.7", null, "1.7", null, "29.5", null, "1.6", null, "6.6", null, "1.1", null, "2.6", null, "0.8", null, "4.0", null, "0.7", null, "36.6", null, "1.8", null, "12.6", null, "1.2", null, "87.4", null, "1.2", null, "31.4", null, "1.8", null, "68.6", null, "1.8", null, "71.4", null, "1.5", null, "21.1", null, "1.4", null, "0.2", null, "0.1", null, "1.4", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "1.2", null, "0.3", null, "4.7", null, "0.7", null, "4.3", null, "0.7", null, "70.3", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.4", null, "1.5", null, "34.4", null, "2.6", null, "48.2", null, "2.3", null, "22", "05"], ["5001900US2206", "Congressional District 6 (119th Congress), Louisiana", "303747", null, "6584", null, "122379", null, "3945", null, "181368", null, "5957", null, "101582", null, "4511", null, "79728", null, "4786", null, "18505", null, "2819", null, "61223", null, "4802", null, "122437", null, "6329", null, "87665", null, "5609", null, "38567", null, "3385", null, "48982", null, "4243", null, "10619", null, "2268", null, "38363", null, "4096", null, "116", null, "144", null, "216082", null, "6418", null, "63015", null, "3714", null, "30746", null, "3319", null, "7886", null, "1725", null, "22860", null, "2955", null, "122321", null, "6348", null, "78011", null, "5700", null, "225736", null, "7814", null, "98859", null, "5172", null, "204888", null, "7114", null, "116365", null, "3667", null, "162447", null, "5443", null, "720", null, "308", null, "3774", null, "819", null, "-999999999", "N", "-999999999", "N", "6527", null, "1427", null, "13898", null, "2130", null, "11895", null, "1693", null, "114560", null, "3578", null, "50642", null, "2030", null, "181310", null, "6600", null, "34926", null, "3253", null, "68823", null, "4939", null, "77561", null, "4964", null, "-888888888", "(X)", "-888888888", "(X)", "40.3", null, "1.2", null, "59.7", null, "1.2", null, "33.4", null, "1.3", null, "26.2", null, "1.5", null, "6.1", null, "0.9", null, "20.2", null, "1.5", null, "40.3", null, "1.8", null, "28.9", null, "1.7", null, "12.7", null, "1.1", null, "16.1", null, "1.3", null, "3.5", null, "0.7", null, "12.6", null, "1.3", null, "0.0", null, "0.1", null, "71.1", null, "1.7", null, "20.7", null, "1.2", null, "10.1", null, "1.1", null, "2.6", null, "0.6", null, "7.5", null, "1.0", null, "40.3", null, "1.8", null, "25.7", null, "1.9", null, "74.3", null, "1.9", null, "32.5", null, "1.6", null, "67.5", null, "1.6", null, "38.3", null, "1.0", null, "53.5", null, "1.3", null, "0.2", null, "0.1", null, "1.2", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "2.1", null, "0.5", null, "4.6", null, "0.7", null, "3.9", null, "0.5", null, "37.7", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "19.3", null, "1.7", null, "38.0", null, "2.4", null, "42.8", null, "2.1", null, "68263", null, "4476", null, "26105", null, "2443", null, "42158", null, "4249", null, "10288", null, "1950", null, "35218", null, "3595", null, "5305", null, "1475", null, "29913", null, "3456", null, "22757", null, "2767", null, "30933", null, "3740", null, "5480", null, "1678", null, "25414", null, "3347", null, "3043", null, "1222", null, "22371", null, "3187", null, "39", null, "73", null, "37330", null, "3191", null, "4808", null, "1253", null, "9804", null, "1747", null, "2262", null, "871", null, "7542", null, "1552", null, "22718", null, "2759", null, "37383", null, "3806", null, "30880", null, "3288", null, "33205", null, "3119", null, "35058", null, "3381", null, "15062", null, "1987", null, "48342", null, "3675", null, "152", null, "154", null, "247", null, "294", null, "-999999999", "N", "-999999999", "N", "913", null, "619", null, "3547", null, "1245", null, "1620", null, "795", null, "14989", null, "1982", null, "21255", null, "1405", null, "45506", null, "3846", null, "11418", null, "1991", null, "24023", null, "3258", null, "10065", null, "2054", null, "22.5", null, "1.4", null, "38.2", null, "3.6", null, "61.8", null, "3.6", null, "15.1", null, "2.8", null, "51.6", null, "3.8", null, "7.8", null, "2.1", null, "43.8", null, "3.9", null, "33.3", null, "3.5", null, "45.3", null, "4.0", null, "8.0", null, "2.4", null, "37.2", null, "3.8", null, "4.5", null, "1.7", null, "32.8", null, "3.8", null, "0.1", null, "0.1", null, "54.7", null, "4.0", null, "7.0", null, "1.9", null, "14.4", null, "2.5", null, "3.3", null, "1.3", null, "11.0", null, "2.2", null, "33.3", null, "3.5", null, "54.8", null, "4.0", null, "45.2", null, "4.0", null, "48.6", null, "3.4", null, "51.4", null, "3.4", null, "22.1", null, "2.6", null, "70.8", null, "3.1", null, "0.2", null, "0.2", null, "0.4", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "1.3", null, "0.9", null, "5.2", null, "1.8", null, "2.4", null, "1.1", null, "22.0", null, "2.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "25.1", null, "3.9", null, "52.8", null, "5.2", null, "22.1", null, "4.3", null, "235484", null, "7082", null, "96274", null, "3999", null, "139210", null, "6079", null, "91294", null, "4628", null, "44510", null, "4303", null, "13200", null, "2552", null, "31310", null, "3725", null, "99680", null, "6039", null, "56732", null, "4710", null, "33087", null, "3551", null, "23568", null, "3178", null, "7576", null, "2114", null, "15992", null, "2742", null, "77", null, "124", null, "178752", null, "6440", null, "58207", null, "3632", null, "20942", null, "2971", null, "5624", null, "1506", null, "15318", null, "2607", null, "99603", null, "6063", null, "40628", null, "3966", null, "194856", null, "7486", null, "65654", null, "4025", null, "169830", null, "7009", null, "101303", null, "3519", null, "114105", null, "5899", null, "568", null, "262", null, "3527", null, "880", null, "-999999999", "N", "-999999999", "N", "5614", null, "1393", null, "10351", null, "1943", null, "10275", null, "1740", null, "99571", null, "3472", null, "60551", null, "2755", null, "135804", null, "6247", null, "23508", null, "2820", null, "44800", null, "4404", null, "67496", null, "4481", null, "77.5", null, "1.4", null, "40.9", null, "1.5", null, "59.1", null, "1.5", null, "38.8", null, "1.8", null, "18.9", null, "1.7", null, "5.6", null, "1.1", null, "13.3", null, "1.5", null, "42.3", null, "2.1", null, "24.1", null, "1.8", null, "14.1", null, "1.5", null, "10.0", null, "1.3", null, "3.2", null, "0.9", null, "6.8", null, "1.1", null, "0.0", null, "0.1", null, "75.9", null, "1.8", null, "24.7", null, "1.5", null, "8.9", null, "1.3", null, "2.4", null, "0.6", null, "6.5", null, "1.1", null, "42.3", null, "2.2", null, "17.3", null, "1.7", null, "82.7", null, "1.7", null, "27.9", null, "1.7", null, "72.1", null, "1.7", null, "43.0", null, "1.5", null, "48.5", null, "1.6", null, "0.2", null, "0.1", null, "1.5", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "2.4", null, "0.6", null, "4.4", null, "0.8", null, "4.4", null, "0.7", null, "42.3", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.3", null, "2.0", null, "33.0", null, "2.7", null, "49.7", null, "2.5", null, "22", "06"], ["5001900US2301", "Congressional District 1 (119th Congress), Maine", "309332", null, "4443", null, "148179", null, "3353", null, "161153", null, "4359", null, "150652", null, "5747", null, "37742", null, "3450", null, "13826", null, "2112", null, "23916", null, "2883", null, "120938", null, "4679", null, "70892", null, "3908", null, "49028", null, "3781", null, "21260", null, "2722", null, "7895", null, "1744", null, "13365", null, "2196", null, "604", null, "454", null, "238440", null, "4569", null, "101624", null, "4371", null, "16482", null, "2156", null, "5931", null, "1473", null, "10551", null, "1629", null, "120334", null, "4676", null, "28873", null, "3140", null, "280459", null, "5080", null, "84236", null, "4403", null, "225096", null, "5483", null, "282268", null, "4564", null, "4604", null, "1172", null, "-999999999", "N", "-999999999", "N", "-999999999", "N", "-999999999", "N", "-999999999", "N", "-999999999", "N", "1793", null, "836", null, "16701", null, "2239", null, "5556", null, "933", null, "281049", null, "4623", null, "90131", null, "2885", null, "188394", null, "5598", null, "31564", null, "2638", null, "51845", null, "3653", null, "104985", null, "4821", null, "-888888888", "(X)", "-888888888", "(X)", "47.9", null, "1.0", null, "52.1", null, "1.0", null, "48.7", null, "1.6", null, "12.2", null, "1.1", null, "4.5", null, "0.7", null, "7.7", null, "0.9", null, "39.1", null, "1.5", null, "22.9", null, "1.2", null, "15.8", null, "1.1", null, "6.9", null, "0.9", null, "2.6", null, "0.6", null, "4.3", null, "0.7", null, "0.2", null, "0.1", null, "77.1", null, "1.2", null, "32.9", null, "1.3", null, "5.3", null, "0.7", null, "1.9", null, "0.5", null, "3.4", null, "0.5", null, "38.9", null, "1.5", null, "9.3", null, "1.0", null, "90.7", null, "1.0", null, "27.2", null, "1.4", null, "72.8", null, "1.4", null, "91.3", null, "0.8", null, "1.5", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "0.6", null, "0.3", null, "5.4", null, "0.7", null, "1.8", null, "0.3", null, "90.9", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.8", null, "1.3", null, "27.5", null, "1.7", null, "55.7", null, "2.0", null, "25926", null, "3156", null, "11885", null, "1751", null, "14041", null, "2369", null, "5042", null, "1279", null, "7925", null, "1691", null, "2551", null, "838", null, "5374", null, "1431", null, "12959", null, "2208", null, "8954", null, "1761", null, "3384", null, "963", null, "5283", null, "1353", null, "1739", null, "764", null, "3544", null, "1137", null, "287", null, "388", null, "16972", null, "2447", null, "1658", null, "744", null, "2642", null, "908", null, "812", null, "445", null, "1830", null, "767", null, "12672", null, "2156", null, "11319", null, "1852", null, "14607", null, "2355", null, "14542", null, "2234", null, "11384", null, "2179", null, "22412", null, "3045", null, "1368", null, "924", null, "-999999999", "N", "-999999999", "N", "-999999999", "N", "-999999999", "N", "-999999999", "N", "-999999999", "N", "220", null, "276", null, "1841", null, "768", null, "812", null, "469", null, "22256", null, "3014", null, "25069", null, "3849", null, "12967", null, "2203", null, "3065", null, "965", null, "6131", null, "1780", null, "3771", null, "889", null, "8.4", null, "1.0", null, "45.8", null, "5.2", null, "54.2", null, "5.2", null, "19.4", null, "4.3", null, "30.6", null, "5.5", null, "9.8", null, "3.1", null, "20.7", null, "4.9", null, "50.0", null, "6.0", null, "34.5", null, "5.3", null, "13.1", null, "3.3", null, "20.4", null, "4.8", null, "6.7", null, "2.9", null, "13.7", null, "4.2", null, "1.1", null, "1.5", null, "65.5", null, "5.3", null, "6.4", null, "2.8", null, "10.2", null, "3.2", null, "3.1", null, "1.7", null, "7.1", null, "2.8", null, "48.9", null, "6.1", null, "43.7", null, "5.3", null, "56.3", null, "5.3", null, "56.1", null, "6.0", null, "43.9", null, "6.0", null, "86.4", null, "4.5", null, "5.3", null, "3.5", null, "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "0.8", null, "1.1", null, "7.1", null, "2.9", null, "3.1", null, "1.8", null, "85.8", null, "4.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "23.6", null, "6.8", null, "47.3", null, "9.1", null, "29.1", null, "6.2", null, "283406", null, "4898", null, "136294", null, "3236", null, "147112", null, "4675", null, "145610", null, "5872", null, "29817", null, "3085", null, "11275", null, "1927", null, "18542", null, "2681", null, "107979", null, "4263", null, "61938", null, "3654", null, "45644", null, "3566", null, "15977", null, "2391", null, "6156", null, "1448", null, "9821", null, "1972", null, "317", null, "226", null, "221468", null, "4746", null, "99966", null, "4503", null, "13840", null, "1991", null, "5119", null, "1354", null, "8721", null, "1553", null, "107662", null, "4255", null, "17554", null, "2346", null, "265852", null, "5428", null, "69694", null, "3944", null, "213712", null, "5410", null, "259856", null, "4973", null, "3236", null, "1080", null, "-999999999", "N", "-999999999", "N", "-999999999", "N", "-999999999", "N", "-999999999", "N", "-999999999", "N", "1573", null, "813", null, "14860", null, "2078", null, "4744", null, "974", null, "258793", null, "5033", null, "95016", null, "2206", null, "175427", null, "5954", null, "28499", null, "2457", null, "45714", null, "3156", null, "101214", null, "4924", null, "91.6", null, "1.0", null, "48.1", null, "1.1", null, "51.9", null, "1.1", null, "51.4", null, "1.6", null, "10.5", null, "1.1", null, "4.0", null, "0.7", null, "6.5", null, "0.9", null, "38.1", null, "1.5", null, "21.9", null, "1.2", null, "16.1", null, "1.2", null, "5.6", null, "0.8", null, "2.2", null, "0.5", null, "3.5", null, "0.7", null, "0.1", null, "0.1", null, "78.1", null, "1.2", null, "35.3", null, "1.4", null, "4.9", null, "0.7", null, "1.8", null, "0.5", null, "3.1", null, "0.5", null, "38.0", null, "1.5", null, "6.2", null, "0.8", null, "93.8", null, "0.8", null, "24.6", null, "1.3", null, "75.4", null, "1.3", null, "91.7", null, "0.8", null, "1.1", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "0.6", null, "0.3", null, "5.2", null, "0.7", null, "1.7", null, "0.3", null, "91.3", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.2", null, "1.3", null, "26.1", null, "1.6", null, "57.7", null, "2.0", null, "23", "01"], ["5001900US2302", "Congressional District 2 (119th Congress), Maine", "305903", null, "4086", null, "151438", null, "3000", null, "154465", null, "4671", null, "142615", null, "4046", null, "39325", null, "2827", null, "11816", null, "1663", null, "27509", null, "2284", null, "123963", null, "3978", null, "68108", null, "3531", null, "43954", null, "3043", null, "22276", null, "2403", null, "5933", null, "1270", null, "16343", null, "2089", null, "1878", null, "916", null, "237795", null, "4051", null, "98661", null, "3385", null, "17049", null, "2229", null, "5883", null, "1010", null, "11166", null, "1734", null, "122085", null, "3979", null, "42639", null, "3168", null, "263264", null, "4813", null, "103980", null, "3900", null, "201923", null, "5247", null, "284961", null, "3818", null, "3491", null, "856", null, "2535", null, "558", null, "2209", null, "783", null, "-999999999", "N", "-999999999", "N", "1166", null, "414", null, "11465", null, "1658", null, "4577", null, "807", null, "283175", null, "3838", null, "67291", null, "1768", null, "181940", null, "4214", null, "34999", null, "2036", null, "55206", null, "3571", null, "91735", null, "3520", null, "-888888888", "(X)", "-888888888", "(X)", "49.5", null, "1.1", null, "50.5", null, "1.1", null, "46.6", null, "1.2", null, "12.9", null, "0.9", null, "3.9", null, "0.5", null, "9.0", null, "0.8", null, "40.5", null, "1.2", null, "22.3", null, "1.1", null, "14.4", null, "1.0", null, "7.3", null, "0.8", null, "1.9", null, "0.4", null, "5.3", null, "0.7", null, "0.6", null, "0.3", null, "77.7", null, "1.1", null, "32.3", null, "1.1", null, "5.6", null, "0.7", null, "1.9", null, "0.3", null, "3.7", null, "0.6", null, "39.9", null, "1.2", null, "13.9", null, "1.0", null, "86.1", null, "1.0", null, "34.0", null, "1.3", null, "66.0", null, "1.3", null, "93.2", null, "0.6", null, "1.1", null, "0.3", null, "0.8", null, "0.2", null, "0.7", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "0.4", null, "0.1", null, "3.7", null, "0.5", null, "1.5", null, "0.3", null, "92.6", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "19.2", null, "1.1", null, "30.3", null, "1.8", null, "50.4", null, "1.5", null, "52422", null, "3195", null, "25267", null, "2265", null, "27155", null, "2502", null, "10579", null, "1516", null, "14181", null, "2011", null, "2900", null, "981", null, "11281", null, "1742", null, "27662", null, "2717", null, "16191", null, "1962", null, "5413", null, "1002", null, "9846", null, "1627", null, "1553", null, "618", null, "8293", null, "1434", null, "932", null, "579", null, "36231", null, "2666", null, "5166", null, "1122", null, "4335", null, "1156", null, "1347", null, "643", null, "2988", null, "917", null, "26730", null, "2634", null, "23692", null, "2546", null, "28730", null, "2646", null, "28525", null, "2186", null, "23897", null, "2789", null, "46870", null, "3115", null, "1693", null, "622", null, "875", null, "250", null, "344", null, "435", null, "-999999999", "N", "-999999999", "N", "38", null, "53", null, "2602", null, "716", null, "603", null, "366", null, "46504", null, "3084", null, "23145", null, "1844", null, "24760", null, "2436", null, "7347", null, "1336", null, "10899", null, "1937", null, "6514", null, "1060", null, "17.1", null, "1.1", null, "48.2", null, "3.4", null, "51.8", null, "3.4", null, "20.2", null, "2.8", null, "27.1", null, "3.3", null, "5.5", null, "1.8", null, "21.5", null, "3.0", null, "52.8", null, "3.9", null, "30.9", null, "3.1", null, "10.3", null, "1.9", null, "18.8", null, "2.7", null, "3.0", null, "1.2", null, "15.8", null, "2.4", null, "1.8", null, "1.1", null, "69.1", null, "3.1", null, "9.9", null, "2.1", null, "8.3", null, "2.2", null, "2.6", null, "1.2", null, "5.7", null, "1.8", null, "51.0", null, "3.8", null, "45.2", null, "3.9", null, "54.8", null, "3.9", null, "54.4", null, "3.8", null, "45.6", null, "3.8", null, "89.4", null, "1.9", null, "3.2", null, "1.2", null, "1.7", null, "0.5", null, "0.7", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "0.1", null, "0.1", null, "5.0", null, "1.4", null, "1.2", null, "0.7", null, "88.7", null, "1.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "29.7", null, "4.7", null, "44.0", null, "5.7", null, "26.3", null, "4.0", null, "253481", null, "5063", null, "126171", null, "2974", null, "127310", null, "4353", null, "132036", null, "3734", null, "25144", null, "2241", null, "8916", null, "1345", null, "16228", null, "1691", null, "96301", null, "4101", null, "51917", null, "3191", null, "38541", null, "2901", null, "12430", null, "1611", null, "4380", null, "1051", null, "8050", null, "1307", null, "946", null, "655", null, "201564", null, "4824", null, "93495", null, "3168", null, "12714", null, "1856", null, "4536", null, "892", null, "8178", null, "1481", null, "95355", null, "4107", null, "18947", null, "1817", null, "234534", null, "5045", null, "75455", null, "3605", null, "178026", null, "5135", null, "238091", null, "4852", null, "1798", null, "677", null, "1660", null, "499", null, "1865", null, "533", null, "-999999999", "N", "-999999999", "N", "1128", null, "413", null, "8863", null, "1559", null, "3974", null, "801", null, "236671", null, "4809", null, "74642", null, "1970", null, "157180", null, "3988", null, "27652", null, "1545", null, "44307", null, "2960", null, "85221", null, "3539", null, "82.9", null, "1.1", null, "49.8", null, "1.1", null, "50.2", null, "1.1", null, "52.1", null, "1.3", null, "9.9", null, "0.9", null, "3.5", null, "0.5", null, "6.4", null, "0.7", null, "38.0", null, "1.3", null, "20.5", null, "1.2", null, "15.2", null, "1.1", null, "4.9", null, "0.6", null, "1.7", null, "0.4", null, "3.2", null, "0.5", null, "0.4", null, "0.3", null, "79.5", null, "1.2", null, "36.9", null, "1.2", null, "5.0", null, "0.7", null, "1.8", null, "0.3", null, "3.2", null, "0.6", null, "37.6", null, "1.3", null, "7.5", null, "0.7", null, "92.5", null, "0.7", null, "29.8", null, "1.3", null, "70.2", null, "1.3", null, "93.9", null, "0.7", null, "0.7", null, "0.3", null, "0.7", null, "0.2", null, "0.7", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "0.4", null, "0.2", null, "3.5", null, "0.6", null, "1.6", null, "0.3", null, "93.4", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.6", null, "1.0", null, "28.2", null, "1.7", null, "54.2", null, "1.6", null, "23", "02"], ["5001900US2401", "Congressional District 1 (119th Congress), Maryland", "317517", null, "3465", null, "149898", null, "3275", null, "167619", null, "3959", null, "160420", null, "6168", null, "48394", null, "4300", null, "14002", null, "2036", null, "34392", null, "3653", null, "108703", null, "5571", null, "85886", null, "4202", null, "59953", null, "3495", null, "25587", null, "3308", null, "7038", null, "1549", null, "18549", null, "2884", null, "346", null, "189", null, "231631", null, "4454", null, "100467", null, "4038", null, "22807", null, "2916", null, "6964", null, "1433", null, "15843", null, "2261", null, "108357", null, "5573", null, "29988", null, "3214", null, "287529", null, "4762", null, "82346", null, "4152", null, "235171", null, "4606", null, "237416", null, "4195", null, "42054", null, "3200", null, "1230", null, "688", null, "9356", null, "1892", null, "-999999999", "N", "-999999999", "N", "5518", null, "1424", null, "21714", null, "3518", null, "15940", null, "2172", null, "233836", null, "4116", null, "95306", null, "3237", null, "208814", null, "6590", null, "31996", null, "3041", null, "57677", null, "3789", null, "119141", null, "5636", null, "-888888888", "(X)", "-888888888", "(X)", "47.2", null, "1.0", null, "52.8", null, "1.0", null, "50.5", null, "1.7", null, "15.2", null, "1.3", null, "4.4", null, "0.6", null, "10.8", null, "1.1", null, "34.2", null, "1.8", null, "27.0", null, "1.3", null, "18.9", null, "1.0", null, "8.1", null, "1.0", null, "2.2", null, "0.5", null, "5.8", null, "0.9", null, "0.1", null, "0.1", null, "73.0", null, "1.3", null, "31.6", null, "1.2", null, "7.2", null, "0.9", null, "2.2", null, "0.5", null, "5.0", null, "0.7", null, "34.1", null, "1.8", null, "9.4", null, "1.0", null, "90.6", null, "1.0", null, "25.9", null, "1.3", null, "74.1", null, "1.3", null, "74.8", null, "1.1", null, "13.2", null, "1.0", null, "0.4", null, "0.2", null, "2.9", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "1.7", null, "0.4", null, "6.8", null, "1.1", null, "5.0", null, "0.7", null, "73.6", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.3", null, "1.4", null, "27.6", null, "1.7", null, "57.1", null, "1.8", null, "32483", null, "3350", null, "13207", null, "1625", null, "19276", null, "2954", null, "6902", null, "1604", null, "15377", null, "2352", null, "3151", null, "1215", null, "12226", null, "2167", null, "10204", null, "1885", null, "15546", null, "2698", null, "4058", null, "1225", null, "11330", null, "2334", null, "1949", null, "1026", null, "9381", null, "2134", null, "158", null, "117", null, "16937", null, "2147", null, "2844", null, "896", null, "4047", null, "1187", null, "1202", null, "720", null, "2845", null, "952", null, "10046", null, "1896", null, "12847", null, "2152", null, "19636", null, "2851", null, "14994", null, "1943", null, "17489", null, "2781", null, "14532", null, "2007", null, "13328", null, "2468", null, "448", null, "525", null, "698", null, "674", null, "-999999999", "N", "-999999999", "N", "1365", null, "799", null, "1977", null, "1014", null, "1491", null, "902", null, "14309", null, "2053", null, "27056", null, "8126", null, "22279", null, "2726", null, "4378", null, "1487", null, "10022", null, "2044", null, "7879", null, "1730", null, "10.2", null, "1.0", null, "40.7", null, "4.8", null, "59.3", null, "4.8", null, "21.2", null, "4.1", null, "47.3", null, "5.9", null, "9.7", null, "3.8", null, "37.6", null, "5.5", null, "31.4", null, "4.7", null, "47.9", null, "5.5", null, "12.5", null, "3.3", null, "34.9", null, "5.6", null, "6.0", null, "3.1", null, "28.9", null, "5.4", null, "0.5", null, "0.4", null, "52.1", null, "5.5", null, "8.8", null, "2.6", null, "12.5", null, "3.9", null, "3.7", null, "2.3", null, "8.8", null, "3.1", null, "30.9", null, "4.7", null, "39.5", null, "5.6", null, "60.5", null, "5.6", null, "46.2", null, "5.2", null, "53.8", null, "5.2", null, "44.7", null, "5.3", null, "41.0", null, "5.7", null, "1.4", null, "1.6", null, "2.1", null, "2.0", null, "-999999999.0", "N", "-999999999.0", "N", "4.2", null, "2.4", null, "6.1", null, "3.0", null, "4.6", null, "2.7", null, "44.1", null, "5.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "19.7", null, "6.1", null, "45.0", null, "7.4", null, "35.4", null, "6.7", null, "285034", null, "4251", null, "136691", null, "3047", null, "148343", null, "4190", null, "153518", null, "6038", null, "33017", null, "3817", null, "10851", null, "1999", null, "22166", null, "3157", null, "98499", null, "5144", null, "70340", null, "4160", null, "55895", null, "3411", null, "14257", null, "2716", null, "5089", null, "1445", null, "9168", null, "2233", null, "188", null, "145", null, "214694", null, "4617", null, "97623", null, "4079", null, "18760", null, "2672", null, "5762", null, "1264", null, "12998", null, "2170", null, "98311", null, "5154", null, "17141", null, "2447", null, "267893", null, "4818", null, "67352", null, "3927", null, "217682", null, "4951", null, "222884", null, "4247", null, "28726", null, "2699", null, "782", null, "586", null, "8658", null, "1834", null, "-999999999", "N", "-999999999", "N", "4153", null, "1226", null, "19737", null, "3362", null, "14449", null, "2156", null, "219527", null, "4243", null, "101948", null, "2910", null, "186535", null, "6165", null, "27618", null, "2634", null, "47655", null, "3534", null, "111262", null, "5461", null, "89.8", null, "1.0", null, "48.0", null, "1.0", null, "52.0", null, "1.0", null, "53.9", null, "1.9", null, "11.6", null, "1.3", null, "3.8", null, "0.7", null, "7.8", null, "1.1", null, "34.6", null, "1.8", null, "24.7", null, "1.4", null, "19.6", null, "1.1", null, "5.0", null, "1.0", null, "1.8", null, "0.5", null, "3.2", null, "0.8", null, "0.1", null, "0.1", null, "75.3", null, "1.4", null, "34.2", null, "1.3", null, "6.6", null, "0.9", null, "2.0", null, "0.4", null, "4.6", null, "0.8", null, "34.5", null, "1.8", null, "6.0", null, "0.9", null, "94.0", null, "0.9", null, "23.6", null, "1.3", null, "76.4", null, "1.3", null, "78.2", null, "1.2", null, "10.1", null, "0.9", null, "0.3", null, "0.2", null, "3.0", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "1.5", null, "0.4", null, "6.9", null, "1.2", null, "5.1", null, "0.7", null, "77.0", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.8", null, "1.4", null, "25.5", null, "1.8", null, "59.6", null, "1.9", null, "24", "01"], ["5001900US2402", "Congressional District 2 (119th Congress), Maryland", "307462", null, "4354", null, "144147", null, "3702", null, "163315", null, "4605", null, "142157", null, "5190", null, "54801", null, "4524", null, "16288", null, "2850", null, "38513", null, "3503", null, "110504", null, "5311", null, "92084", null, "4851", null, "59643", null, "3834", null, "32028", null, "3655", null, "8521", null, "2483", null, "23507", null, "2871", null, "413", null, "333", null, "215378", null, "4924", null, "82514", null, "4254", null, "22773", null, "3145", null, "7767", null, "1543", null, "15006", null, "2612", null, "110091", null, "5308", null, "29534", null, "3583", null, "277928", null, "4857", null, "79424", null, "4667", null, "228038", null, "5088", null, "196373", null, "4095", null, "75257", null, "3421", null, "-999999999", "N", "-999999999", "N", "14832", null, "1922", null, "-999999999", "N", "-999999999", "N", "6355", null, "1894", null, "14287", null, "2345", null, "14164", null, "2396", null, "192794", null, "3835", null, "94537", null, "4200", null, "196958", null, "5735", null, "24897", null, "2312", null, "60511", null, "4011", null, "111550", null, "4808", null, "-888888888", "(X)", "-888888888", "(X)", "46.9", null, "1.2", null, "53.1", null, "1.2", null, "46.2", null, "1.5", null, "17.8", null, "1.5", null, "5.3", null, "0.9", null, "12.5", null, "1.1", null, "35.9", null, "1.6", null, "29.9", null, "1.4", null, "19.4", null, "1.2", null, "10.4", null, "1.2", null, "2.8", null, "0.8", null, "7.6", null, "0.9", null, "0.1", null, "0.1", null, "70.1", null, "1.4", null, "26.8", null, "1.4", null, "7.4", null, "1.0", null, "2.5", null, "0.5", null, "4.9", null, "0.9", null, "35.8", null, "1.6", null, "9.6", null, "1.1", null, "90.4", null, "1.1", null, "25.8", null, "1.4", null, "74.2", null, "1.4", null, "63.9", null, "1.1", null, "24.5", null, "1.1", null, "-999999999.0", "N", "-999999999.0", "N", "4.8", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "2.1", null, "0.6", null, "4.6", null, "0.8", null, "4.6", null, "0.8", null, "62.7", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.6", null, "1.1", null, "30.7", null, "1.7", null, "56.6", null, "1.9", null, "26940", null, "3620", null, "11675", null, "2032", null, "15265", null, "3071", null, "5868", null, "1717", null, "13192", null, "2583", null, "3297", null, "1840", null, "9895", null, "2100", null, "7880", null, "1622", null, "13772", null, "2763", null, "3273", null, "1380", null, "10499", null, "2369", null, "2444", null, "1809", null, "8055", null, "1971", null, "0", null, "228", null, "13168", null, "2500", null, "2595", null, "1032", null, "2693", null, "985", null, "853", null, "559", null, "1840", null, "739", null, "7880", null, "1622", null, "8602", null, "2057", null, "18338", null, "3218", null, "13762", null, "2323", null, "13178", null, "3119", null, "10180", null, "1977", null, "13096", null, "3080", null, "-999999999", "N", "-999999999", "N", "1743", null, "698", null, "-999999999", "N", "-999999999", "N", "480", null, "382", null, "1441", null, "817", null, "1110", null, "702", null, "9828", null, "1823", null, "44774", null, "11903", null, "19060", null, "2955", null, "3152", null, "1273", null, "9013", null, "2408", null, "6895", null, "1721", null, "8.8", null, "1.2", null, "43.3", null, "6.7", null, "56.7", null, "6.7", null, "21.8", null, "5.8", null, "49.0", null, "6.5", null, "12.2", null, "6.5", null, "36.7", null, "6.1", null, "29.3", null, "4.9", null, "51.1", null, "7.2", null, "12.1", null, "4.9", null, "39.0", null, "6.8", null, "9.1", null, "6.5", null, "29.9", null, "6.2", null, "0.0", null, "0.8", null, "48.9", null, "7.2", null, "9.6", null, "3.7", null, "10.0", null, "3.4", null, "3.2", null, "2.0", null, "6.8", null, "2.6", null, "29.3", null, "4.9", null, "31.9", null, "6.7", null, "68.1", null, "6.7", null, "51.1", null, "7.8", null, "48.9", null, "7.8", null, "37.8", null, "6.7", null, "48.6", null, "7.8", null, "-999999999.0", "N", "-999999999.0", "N", "6.5", null, "2.6", null, "-999999999.0", "N", "-999999999.0", "N", "1.8", null, "1.4", null, "5.3", null, "2.9", null, "4.1", null, "2.6", null, "36.5", null, "6.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.5", null, "6.6", null, "47.3", null, "8.9", null, "36.2", null, "7.8", null, "280522", null, "5543", null, "132472", null, "3655", null, "148050", null, "5463", null, "136289", null, "5072", null, "41609", null, "3965", null, "12991", null, "2361", null, "28618", null, "3227", null, "102624", null, "5235", null, "78312", null, "4565", null, "56370", null, "3663", null, "21529", null, "3127", null, "6077", null, "1911", null, "15452", null, "2488", null, "413", null, "333", null, "202210", null, "4772", null, "79919", null, "4132", null, "20080", null, "3074", null, "6914", null, "1501", null, "13166", null, "2573", null, "102211", null, "5239", null, "20932", null, "3019", null, "259590", null, "5497", null, "65662", null, "4394", null, "214860", null, "5776", null, "186193", null, "4536", null, "62161", null, "4079", null, "-999999999", "N", "-999999999", "N", "13089", null, "1888", null, "-999999999", "N", "-999999999", "N", "5875", null, "1789", null, "12846", null, "2188", null, "13054", null, "2447", null, "182966", null, "4153", null, "100091", null, "3640", null, "177898", null, "5988", null, "21745", null, "2073", null, "51498", null, "3809", null, "104655", null, "4775", null, "91.2", null, "1.2", null, "47.2", null, "1.3", null, "52.8", null, "1.3", null, "48.6", null, "1.5", null, "14.8", null, "1.4", null, "4.6", null, "0.8", null, "10.2", null, "1.1", null, "36.6", null, "1.7", null, "27.9", null, "1.4", null, "20.1", null, "1.2", null, "7.7", null, "1.1", null, "2.2", null, "0.7", null, "5.5", null, "0.9", null, "0.1", null, "0.1", null, "72.1", null, "1.4", null, "28.5", null, "1.4", null, "7.2", null, "1.1", null, "2.5", null, "0.5", null, "4.7", null, "0.9", null, "36.4", null, "1.7", null, "7.5", null, "1.0", null, "92.5", null, "1.0", null, "23.4", null, "1.5", null, "76.6", null, "1.5", null, "66.4", null, "1.4", null, "22.2", null, "1.3", null, "-999999999.0", "N", "-999999999.0", "N", "4.7", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "2.1", null, "0.6", null, "4.6", null, "0.8", null, "4.7", null, "0.8", null, "65.2", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.2", null, "1.1", null, "28.9", null, "1.8", null, "58.8", null, "2.0", null, "24", "02"], ["5001900US2403", "Congressional District 3 (119th Congress), Maryland", "292083", null, "4309", null, "124104", null, "3483", null, "167979", null, "4579", null, "156895", null, "4789", null, "43943", null, "4443", null, "10258", null, "1814", null, "33685", null, "3823", null, "91245", null, "4463", null, "91549", null, "4606", null, "67559", null, "3489", null, "23342", null, "3414", null, "4972", null, "1474", null, "18370", null, "2878", null, "648", null, "466", null, "200534", null, "4897", null, "89336", null, "4014", null, "20601", null, "2592", null, "5286", null, "1191", null, "15315", null, "2314", null, "90597", null, "4479", null, "19214", null, "2935", null, "272869", null, "4954", null, "64044", null, "4131", null, "228039", null, "4798", null, "181606", null, "4745", null, "51554", null, "3276", null, "-999999999", "N", "-999999999", "N", "27791", null, "1490", null, "-999999999", "N", "-999999999", "N", "11098", null, "2138", null, "19200", null, "2530", null, "21802", null, "2574", null, "177243", null, "4706", null, "136641", null, "5496", null, "200838", null, "5173", null, "21904", null, "2024", null, "51401", null, "3808", null, "127533", null, "5365", null, "-888888888", "(X)", "-888888888", "(X)", "42.5", null, "1.2", null, "57.5", null, "1.2", null, "53.7", null, "1.6", null, "15.0", null, "1.5", null, "3.5", null, "0.6", null, "11.5", null, "1.3", null, "31.2", null, "1.5", null, "31.3", null, "1.5", null, "23.1", null, "1.1", null, "8.0", null, "1.1", null, "1.7", null, "0.5", null, "6.3", null, "1.0", null, "0.2", null, "0.2", null, "68.7", null, "1.5", null, "30.6", null, "1.4", null, "7.1", null, "0.9", null, "1.8", null, "0.4", null, "5.2", null, "0.8", null, "31.0", null, "1.5", null, "6.6", null, "1.0", null, "93.4", null, "1.0", null, "21.9", null, "1.3", null, "78.1", null, "1.3", null, "62.2", null, "1.3", null, "17.7", null, "1.1", null, "-999999999.0", "N", "-999999999.0", "N", "9.5", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "3.8", null, "0.7", null, "6.6", null, "0.8", null, "7.5", null, "0.8", null, "60.7", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.9", null, "1.1", null, "25.6", null, "1.8", null, "63.5", null, "1.8", null, "18908", null, "2720", null, "10267", null, "1929", null, "8641", null, "1919", null, "5651", null, "1558", null, "8225", null, "1959", null, "1702", null, "753", null, "6523", null, "1945", null, "5032", null, "1346", null, "8709", null, "1939", null, "3247", null, "1134", null, "5373", null, "1717", null, "516", null, "466", null, "4857", null, "1678", null, "89", null, "158", null, "10199", null, "1933", null, "2404", null, "997", null, "2852", null, "1011", null, "1186", null, "584", null, "1666", null, "837", null, "4943", null, "1322", null, "7474", null, "1845", null, "11434", null, "2031", null, "9818", null, "2163", null, "9090", null, "1735", null, "6686", null, "1383", null, "6184", null, "1744", null, "-999999999", "N", "-999999999", "N", "2577", null, "1078", null, "-999999999", "N", "-999999999", "N", "2442", null, "1182", null, "913", null, "472", null, "2219", null, "1000", null, "6633", null, "1382", null, "38243", null, "8167", null, "13876", null, "2520", null, "1782", null, "803", null, "7056", null, "1697", null, "5038", null, "1554", null, "6.5", null, "0.9", null, "54.3", null, "7.3", null, "45.7", null, "7.3", null, "29.9", null, "6.9", null, "43.5", null, "7.6", null, "9.0", null, "4.0", null, "34.5", null, "8.1", null, "26.6", null, "6.7", null, "46.1", null, "7.4", null, "17.2", null, "5.5", null, "28.4", null, "7.7", null, "2.7", null, "2.5", null, "25.7", null, "7.6", null, "0.5", null, "0.8", null, "53.9", null, "7.4", null, "12.7", null, "4.8", null, "15.1", null, "4.9", null, "6.3", null, "3.1", null, "8.8", null, "4.1", null, "26.1", null, "6.6", null, "39.5", null, "7.3", null, "60.5", null, "7.3", null, "51.9", null, "7.5", null, "48.1", null, "7.5", null, "35.4", null, "6.7", null, "32.7", null, "7.7", null, "-999999999.0", "N", "-999999999.0", "N", "13.6", null, "5.3", null, "-999999999.0", "N", "-999999999.0", "N", "12.9", null, "5.8", null, "4.8", null, "2.5", null, "11.7", null, "4.9", null, "35.1", null, "6.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.8", null, "5.9", null, "50.9", null, "8.0", null, "36.3", null, "8.3", null, "273175", null, "4811", null, "113837", null, "3613", null, "159338", null, "4596", null, "151244", null, "4966", null, "35718", null, "3837", null, "8556", null, "1518", null, "27162", null, "3314", null, "86213", null, "4272", null, "82840", null, "4239", null, "64312", null, "3790", null, "17969", null, "2820", null, "4456", null, "1244", null, "13513", null, "2461", null, "559", null, "432", null, "190335", null, "5271", null, "86932", null, "3991", null, "17749", null, "2430", null, "4100", null, "1019", null, "13649", null, "2179", null, "85654", null, "4279", null, "11740", null, "2259", null, "261435", null, "5154", null, "54226", null, "3678", null, "218949", null, "5343", null, "174920", null, "4763", null, "45370", null, "3330", null, "-999999999", "N", "-999999999", "N", "25214", null, "1597", null, "-999999999", "N", "-999999999", "N", "8656", null, "1569", null, "18287", null, "2576", null, "19583", null, "2429", null, "170610", null, "4784", null, "144218", null, "5005", null, "186962", null, "5039", null, "20122", null, "1853", null, "44345", null, "3604", null, "122495", null, "5112", null, "93.5", null, "0.9", null, "41.7", null, "1.2", null, "58.3", null, "1.2", null, "55.4", null, "1.6", null, "13.1", null, "1.4", null, "3.1", null, "0.6", null, "9.9", null, "1.2", null, "31.6", null, "1.4", null, "30.3", null, "1.5", null, "23.5", null, "1.3", null, "6.6", null, "1.0", null, "1.6", null, "0.5", null, "4.9", null, "0.9", null, "0.2", null, "0.2", null, "69.7", null, "1.5", null, "31.8", null, "1.4", null, "6.5", null, "0.9", null, "1.5", null, "0.4", null, "5.0", null, "0.8", null, "31.4", null, "1.4", null, "4.3", null, "0.8", null, "95.7", null, "0.8", null, "19.9", null, "1.3", null, "80.1", null, "1.3", null, "64.0", null, "1.4", null, "16.6", null, "1.2", null, "-999999999.0", "N", "-999999999.0", "N", "9.2", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "3.2", null, "0.6", null, "6.7", null, "0.9", null, "7.2", null, "0.8", null, "62.5", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.8", null, "1.0", null, "23.7", null, "1.8", null, "65.5", null, "1.9", null, "24", "03"], ["5001900US2404", "Congressional District 4 (119th Congress), Maryland", "277113", null, "3446", null, "117361", null, "3965", null, "159752", null, "4900", null, "93196", null, "4994", null, "77374", null, "4171", null, "22850", null, "2975", null, "54524", null, "4011", null, "106543", null, "5323", null, "77963", null, "4901", null, "40912", null, "3793", null, "35849", null, "3694", null, "9281", null, "1871", null, "26568", null, "3195", null, "1202", null, "989", null, "199150", null, "5114", null, "52284", null, "3908", null, "41525", null, "3461", null, "13569", null, "2384", null, "27956", null, "2971", null, "105341", null, "5084", null, "33922", null, "3599", null, "243191", null, "4543", null, "66172", null, "4019", null, "210941", null, "4859", null, "33670", null, "2476", null, "169384", null, "3653", null, "1765", null, "894", null, "11437", null, "1254", null, "-999999999", "N", "-999999999", "N", "35980", null, "2864", null, "24796", null, "3009", null, "54850", null, "2879", null, "30352", null, "1895", null, "87647", null, "4171", null, "170570", null, "5171", null, "16307", null, "2360", null, "52790", null, "4075", null, "101473", null, "4786", null, "-888888888", "(X)", "-888888888", "(X)", "42.4", null, "1.5", null, "57.6", null, "1.5", null, "33.6", null, "1.7", null, "27.9", null, "1.6", null, "8.2", null, "1.1", null, "19.7", null, "1.4", null, "38.4", null, "1.8", null, "28.1", null, "1.7", null, "14.8", null, "1.3", null, "12.9", null, "1.3", null, "3.3", null, "0.7", null, "9.6", null, "1.1", null, "0.4", null, "0.4", null, "71.9", null, "1.7", null, "18.9", null, "1.4", null, "15.0", null, "1.3", null, "4.9", null, "0.9", null, "10.1", null, "1.1", null, "38.0", null, "1.7", null, "12.2", null, "1.3", null, "87.8", null, "1.3", null, "23.9", null, "1.4", null, "76.1", null, "1.4", null, "12.2", null, "0.9", null, "61.1", null, "1.1", null, "0.6", null, "0.3", null, "4.1", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "13.0", null, "1.0", null, "8.9", null, "1.1", null, "19.8", null, "1.0", null, "11.0", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "9.6", null, "1.4", null, "30.9", null, "2.3", null, "59.5", null, "2.0", null, "34998", null, "4011", null, "15320", null, "2700", null, "19678", null, "2956", null, "8348", null, "1933", null, "15522", null, "2571", null, "3367", null, "1288", null, "12155", null, "2232", null, "11128", null, "2642", null, "15581", null, "2799", null, "6626", null, "1767", null, "8955", null, "1999", null, "1527", null, "810", null, "7428", null, "1967", null, "0", null, "228", null, "19417", null, "3388", null, "1722", null, "742", null, "6567", null, "1646", null, "1840", null, "895", null, "4727", null, "1318", null, "11128", null, "2642", null, "9724", null, "2032", null, "25274", null, "3523", null, "14954", null, "2512", null, "20044", null, "2895", null, "687", null, "367", null, "24683", null, "3284", null, "370", null, "289", null, "1255", null, "674", null, "-999999999", "N", "-999999999", "N", "3787", null, "1346", null, "4197", null, "1830", null, "6236", null, "1606", null, "486", null, "288", null, "46934", null, "7398", null, "23870", null, "3357", null, "4857", null, "1408", null, "8389", null, "1944", null, "10624", null, "2142", null, "12.6", null, "1.4", null, "43.8", null, "5.8", null, "56.2", null, "5.8", null, "23.9", null, "4.6", null, "44.4", null, "6.1", null, "9.6", null, "3.6", null, "34.7", null, "5.5", null, "31.8", null, "6.3", null, "44.5", null, "6.7", null, "18.9", null, "4.4", null, "25.6", null, "5.5", null, "4.4", null, "2.3", null, "21.2", null, "5.4", null, "0.0", null, "0.6", null, "55.5", null, "6.7", null, "4.9", null, "2.1", null, "18.8", null, "4.1", null, "5.3", null, "2.5", null, "13.5", null, "3.4", null, "31.8", null, "6.3", null, "27.8", null, "5.1", null, "72.2", null, "5.1", null, "42.7", null, "5.1", null, "57.3", null, "5.1", null, "2.0", null, "1.0", null, "70.5", null, "5.5", null, "1.1", null, "0.8", null, "3.6", null, "1.9", null, "-999999999.0", "N", "-999999999.0", "N", "10.8", null, "3.6", null, "12.0", null, "4.9", null, "17.8", null, "4.1", null, "1.4", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "20.3", null, "5.3", null, "35.1", null, "6.3", null, "44.5", null, "6.5", null, "242115", null, "4570", null, "102041", null, "4319", null, "140074", null, "5099", null, "84848", null, "4512", null, "61852", null, "4348", null, "19483", null, "2883", null, "42369", null, "3734", null, "95415", null, "4887", null, "62382", null, "4739", null, "34286", null, "3418", null, "26894", null, "3270", null, "7754", null, "1645", null, "19140", null, "2735", null, "1202", null, "989", null, "179733", null, "5207", null, "50562", null, "3904", null, "34958", null, "3735", null, "11729", null, "2345", null, "23229", null, "2921", null, "94213", null, "4743", null, "24198", null, "3330", null, "217917", null, "4839", null, "51218", null, "3771", null, "190897", null, "5386", null, "32983", null, "2440", null, "144701", null, "4463", null, "1395", null, "868", null, "10182", null, "1273", null, "-999999999", "N", "-999999999", "N", "32193", null, "3118", null, "20599", null, "2568", null, "48614", null, "3146", null, "29866", null, "1860", null, "94498", null, "4687", null, "146700", null, "5045", null, "11450", null, "2033", null, "44401", null, "3878", null, "90849", null, "4630", null, "87.4", null, "1.4", null, "42.1", null, "1.7", null, "57.9", null, "1.7", null, "35.0", null, "1.8", null, "25.5", null, "1.7", null, "8.0", null, "1.2", null, "17.5", null, "1.5", null, "39.4", null, "1.8", null, "25.8", null, "1.8", null, "14.2", null, "1.4", null, "11.1", null, "1.3", null, "3.2", null, "0.7", null, "7.9", null, "1.1", null, "0.5", null, "0.4", null, "74.2", null, "1.8", null, "20.9", null, "1.6", null, "14.4", null, "1.5", null, "4.8", null, "1.0", null, "9.6", null, "1.2", null, "38.9", null, "1.8", null, "10.0", null, "1.3", null, "90.0", null, "1.3", null, "21.2", null, "1.5", null, "78.8", null, "1.5", null, "13.6", null, "1.0", null, "59.8", null, "1.4", null, "0.6", null, "0.4", null, "4.2", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "13.3", null, "1.3", null, "8.5", null, "1.0", null, "20.1", null, "1.3", null, "12.3", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "7.8", null, "1.4", null, "30.3", null, "2.5", null, "61.9", null, "2.3", null, "24", "04"], ["5001900US2405", "Congressional District 5 (119th Congress), Maryland", "289123", null, "5275", null, "123685", null, "3849", null, "165438", null, "5040", null, "150604", null, "5569", null, "53075", null, "4200", null, "13003", null, "2380", null, "40072", null, "3812", null, "85444", null, "5483", null, "96083", null, "5273", null, "68277", null, "4321", null, "27206", null, "3684", null, "6045", null, "1795", null, "21161", null, "3131", null, "600", null, "398", null, "193040", null, "6466", null, "82327", null, "4597", null, "25869", null, "3216", null, "6958", null, "1636", null, "18911", null, "2683", null, "84844", null, "5537", null, "20622", null, "3012", null, "268501", null, "5368", null, "71220", null, "4339", null, "217903", null, "5619", null, "135312", null, "3913", null, "118643", null, "4468", null, "-999999999", "N", "-999999999", "N", "7936", null, "1105", null, "-999999999", "N", "-999999999", "N", "6724", null, "1794", null, "19711", null, "3053", null, "18037", null, "2079", null, "132290", null, "3787", null, "128699", null, "3531", null, "203679", null, "5436", null, "21078", null, "2158", null, "56535", null, "3312", null, "126066", null, "5009", null, "-888888888", "(X)", "-888888888", "(X)", "42.8", null, "1.2", null, "57.2", null, "1.2", null, "52.1", null, "1.9", null, "18.4", null, "1.4", null, "4.5", null, "0.8", null, "13.9", null, "1.3", null, "29.6", null, "1.7", null, "33.2", null, "1.8", null, "23.6", null, "1.5", null, "9.4", null, "1.2", null, "2.1", null, "0.6", null, "7.3", null, "1.1", null, "0.2", null, "0.1", null, "66.8", null, "1.8", null, "28.5", null, "1.6", null, "8.9", null, "1.1", null, "2.4", null, "0.6", null, "6.5", null, "0.9", null, "29.3", null, "1.7", null, "7.1", null, "1.0", null, "92.9", null, "1.0", null, "24.6", null, "1.4", null, "75.4", null, "1.4", null, "46.8", null, "1.2", null, "41.0", null, "1.2", null, "-999999999.0", "N", "-999999999.0", "N", "2.7", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "2.3", null, "0.6", null, "6.8", null, "1.0", null, "6.2", null, "0.7", null, "45.8", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.3", null, "1.0", null, "27.8", null, "1.5", null, "61.9", null, "1.7", null, "17925", null, "2757", null, "9965", null, "1914", null, "7960", null, "1925", null, "4898", null, "1298", null, "6999", null, "1769", null, "1420", null, "687", null, "5579", null, "1555", null, "6028", null, "1585", null, "7034", null, "1620", null, "2983", null, "1004", null, "3922", null, "1379", null, "702", null, "596", null, "3220", null, "1246", null, "129", null, "216", null, "10891", null, "1967", null, "1915", null, "904", null, "3077", null, "955", null, "718", null, "370", null, "2359", null, "896", null, "5899", null, "1617", null, "6466", null, "1934", null, "11459", null, "1934", null, "9902", null, "2110", null, "8023", null, "1671", null, "5338", null, "1290", null, "11027", null, "2326", null, "-999999999", "N", "-999999999", "N", "234", null, "264", null, "-999999999", "N", "-999999999", "N", "645", null, "599", null, "681", null, "444", null, "557", null, "384", null, "5338", null, "1290", null, "43725", null, "19175", null, "11897", null, "2019", null, "1841", null, "864", null, "4186", null, "1293", null, "5870", null, "1346", null, "6.2", null, "0.9", null, "55.6", null, "7.6", null, "44.4", null, "7.6", null, "27.3", null, "6.6", null, "39.0", null, "7.8", null, "7.9", null, "3.6", null, "31.1", null, "7.3", null, "33.6", null, "6.6", null, "39.2", null, "6.4", null, "16.6", null, "5.1", null, "21.9", null, "6.5", null, "3.9", null, "3.2", null, "18.0", null, "6.3", null, "0.7", null, "1.2", null, "60.8", null, "6.4", null, "10.7", null, "5.1", null, "17.2", null, "5.0", null, "4.0", null, "2.2", null, "13.2", null, "4.6", null, "32.9", null, "6.8", null, "36.1", null, "8.0", null, "63.9", null, "8.0", null, "55.2", null, "7.2", null, "44.8", null, "7.2", null, "29.8", null, "6.9", null, "61.5", null, "7.7", null, "-999999999.0", "N", "-999999999.0", "N", "1.3", null, "1.4", null, "-999999999.0", "N", "-999999999.0", "N", "3.6", null, "3.2", null, "3.8", null, "2.4", null, "3.1", null, "2.0", null, "29.8", null, "6.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.5", null, "6.4", null, "35.2", null, "8.8", null, "49.3", null, "9.0", null, "271198", null, "5163", null, "113720", null, "3892", null, "157478", null, "4878", null, "145706", null, "5334", null, "46076", null, "4090", null, "11583", null, "2316", null, "34493", null, "3632", null, "79416", null, "5304", null, "89049", null, "5053", null, "65294", null, "4211", null, "23284", null, "3488", null, "5343", null, "1709", null, "17941", null, "2930", null, "471", null, "349", null, "182149", null, "6564", null, "80412", null, "4409", null, "22792", null, "2961", null, "6240", null, "1605", null, "16552", null, "2466", null, "78945", null, "5314", null, "14156", null, "2619", null, "257042", null, "5373", null, "61318", null, "4094", null, "209880", null, "5432", null, "129974", null, "4276", null, "107616", null, "4606", null, "-999999999", "N", "-999999999", "N", "7702", null, "1041", null, "-999999999", "N", "-999999999", "N", "6079", null, "1799", null, "19030", null, "3025", null, "17480", null, "2098", null, "126952", null, "4143", null, "132773", null, "4828", null, "191782", null, "5323", null, "19237", null, "1912", null, "52349", null, "3540", null, "120196", null, "4830", null, "93.8", null, "0.9", null, "41.9", null, "1.3", null, "58.1", null, "1.3", null, "53.7", null, "2.0", null, "17.0", null, "1.4", null, "4.3", null, "0.8", null, "12.7", null, "1.3", null, "29.3", null, "1.8", null, "32.8", null, "1.9", null, "24.1", null, "1.6", null, "8.6", null, "1.3", null, "2.0", null, "0.6", null, "6.6", null, "1.1", null, "0.2", null, "0.1", null, "67.2", null, "1.9", null, "29.7", null, "1.6", null, "8.4", null, "1.1", null, "2.3", null, "0.6", null, "6.1", null, "0.9", null, "29.1", null, "1.8", null, "5.2", null, "1.0", null, "94.8", null, "1.0", null, "22.6", null, "1.4", null, "77.4", null, "1.4", null, "47.9", null, "1.4", null, "39.7", null, "1.4", null, "-999999999.0", "N", "-999999999.0", "N", "2.8", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "2.2", null, "0.7", null, "7.0", null, "1.1", null, "6.4", null, "0.8", null, "46.8", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.0", null, "1.0", null, "27.3", null, "1.7", null, "62.7", null, "1.7", null, "24", "05"], ["5001900US2406", "Congressional District 6 (119th Congress), Maryland", "301264", null, "4282", null, "129815", null, "3607", null, "171449", null, "4509", null, "150268", null, "5476", null, "54364", null, "3889", null, "15805", null, "2059", null, "38559", null, "3331", null, "96632", null, "4657", null, "96276", null, "4397", null, "64026", null, "3571", null, "31437", null, "3168", null, "8064", null, "1825", null, "23373", null, "2902", null, "813", null, "603", null, "204988", null, "4189", null, "86242", null, "3622", null, "22927", null, "2548", null, "7741", null, "1402", null, "15186", null, "2149", null, "95819", null, "4533", null, "25409", null, "2364", null, "275855", null, "4686", null, "78196", null, "4168", null, "223068", null, "5575", null, "202618", null, "3503", null, "32689", null, "3221", null, "-999999999", "N", "-999999999", "N", "28729", null, "2435", null, "-999999999", "N", "-999999999", "N", "15494", null, "2254", null, "20938", null, "2472", null, "30298", null, "2374", null, "198070", null, "3272", null, "105125", null, "4140", null, "204632", null, "6032", null, "24617", null, "2000", null, "55624", null, "3972", null, "124391", null, "5391", null, "-888888888", "(X)", "-888888888", "(X)", "43.1", null, "1.1", null, "56.9", null, "1.1", null, "49.9", null, "1.5", null, "18.0", null, "1.3", null, "5.2", null, "0.7", null, "12.8", null, "1.1", null, "32.1", null, "1.6", null, "32.0", null, "1.3", null, "21.3", null, "1.1", null, "10.4", null, "1.0", null, "2.7", null, "0.6", null, "7.8", null, "1.0", null, "0.3", null, "0.2", null, "68.0", null, "1.3", null, "28.6", null, "1.1", null, "7.6", null, "0.9", null, "2.6", null, "0.5", null, "5.0", null, "0.7", null, "31.8", null, "1.5", null, "8.4", null, "0.8", null, "91.6", null, "0.8", null, "26.0", null, "1.4", null, "74.0", null, "1.4", null, "67.3", null, "1.1", null, "10.9", null, "1.0", null, "-999999999.0", "N", "-999999999.0", "N", "9.5", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "5.1", null, "0.8", null, "7.0", null, "0.8", null, "10.1", null, "0.8", null, "65.7", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.0", null, "1.0", null, "27.2", null, "1.7", null, "60.8", null, "1.8", null, "33372", null, "2785", null, "13686", null, "1858", null, "19686", null, "2218", null, "8891", null, "1658", null, "13583", null, "1964", null, "2624", null, "1043", null, "10959", null, "1911", null, "10898", null, "1779", null, "16187", null, "2129", null, "5682", null, "1302", null, "10435", null, "1911", null, "2137", null, "996", null, "8298", null, "1769", null, "70", null, "86", null, "17185", null, "2133", null, "3209", null, "916", null, "3148", null, "983", null, "487", null, "309", null, "2661", null, "936", null, "10828", null, "1773", null, "10489", null, "1807", null, "22883", null, "2379", null, "16737", null, "2339", null, "16635", null, "2162", null, "19609", null, "2032", null, "5444", null, "1521", null, "-999999999", "N", "-999999999", "N", "1456", null, "729", null, "-999999999", "N", "-999999999", "N", "3167", null, "1222", null, "3633", null, "1216", null, "4413", null, "1460", null, "19298", null, "2043", null, "39232", null, "12284", null, "22474", null, "2286", null, "2826", null, "879", null, "9129", null, "1508", null, "10519", null, "1860", null, "11.1", null, "0.9", null, "41.0", null, "4.4", null, "59.0", null, "4.4", null, "26.6", null, "4.8", null, "40.7", null, "4.6", null, "7.9", null, "3.0", null, "32.8", null, "5.0", null, "32.7", null, "4.4", null, "48.5", null, "4.8", null, "17.0", null, "3.9", null, "31.3", null, "4.7", null, "6.4", null, "2.9", null, "24.9", null, "4.7", null, "0.2", null, "0.3", null, "51.5", null, "4.8", null, "9.6", null, "2.7", null, "9.4", null, "3.0", null, "1.5", null, "0.9", null, "8.0", null, "2.8", null, "32.4", null, "4.3", null, "31.4", null, "4.6", null, "68.6", null, "4.6", null, "50.2", null, "5.3", null, "49.8", null, "5.3", null, "58.8", null, "4.7", null, "16.3", null, "4.5", null, "-999999999.0", "N", "-999999999.0", "N", "4.4", null, "2.2", null, "-999999999.0", "N", "-999999999.0", "N", "9.5", null, "3.4", null, "10.9", null, "3.5", null, "13.2", null, "4.0", null, "57.8", null, "4.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.6", null, "3.6", null, "40.6", null, "6.2", null, "46.8", null, "6.1", null, "267892", null, "5281", null, "116129", null, "4032", null, "151763", null, "4590", null, "141377", null, "5106", null, "40781", null, "3394", null, "13181", null, "1938", null, "27600", null, "2859", null, "85734", null, "4714", null, "80089", null, "3934", null, "58344", null, "3277", null, "21002", null, "2538", null, "5927", null, "1521", null, "15075", null, "2480", null, "743", null, "599", null, "187803", null, "4680", null, "83033", null, "3541", null, "19779", null, "2393", null, "7254", null, "1376", null, "12525", null, "1918", null, "84991", null, "4588", null, "14920", null, "1934", null, "252972", null, "5357", null, "61459", null, "3798", null, "206433", null, "5884", null, "183009", null, "3912", null, "27245", null, "2991", null, "-999999999", "N", "-999999999", "N", "27273", null, "2432", null, "-999999999", "N", "-999999999", "N", "12327", null, "2217", null, "17305", null, "2226", null, "25885", null, "2189", null, "178772", null, "3642", null, "112119", null, "3749", null, "182158", null, "5923", null, "21791", null, "1856", null, "46495", null, "3624", null, "113872", null, "5366", null, "88.9", null, "0.9", null, "43.3", null, "1.3", null, "56.7", null, "1.3", null, "52.8", null, "1.4", null, "15.2", null, "1.3", null, "4.9", null, "0.7", null, "10.3", null, "1.1", null, "32.0", null, "1.7", null, "29.9", null, "1.3", null, "21.8", null, "1.1", null, "7.8", null, "0.9", null, "2.2", null, "0.6", null, "5.6", null, "0.9", null, "0.3", null, "0.2", null, "70.1", null, "1.3", null, "31.0", null, "1.1", null, "7.4", null, "0.9", null, "2.7", null, "0.5", null, "4.7", null, "0.7", null, "31.7", null, "1.6", null, "5.6", null, "0.7", null, "94.4", null, "0.7", null, "22.9", null, "1.4", null, "77.1", null, "1.4", null, "68.3", null, "1.1", null, "10.2", null, "1.1", null, "-999999999.0", "N", "-999999999.0", "N", "10.2", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "4.6", null, "0.8", null, "6.5", null, "0.8", null, "9.7", null, "0.8", null, "66.7", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.0", null, "1.0", null, "25.5", null, "1.8", null, "62.5", null, "2.0", null, "24", "06"], ["5001900US2407", "Congressional District 7 (119th Congress), Maryland", "332423", null, "5090", null, "131436", null, "4073", null, "200987", null, "5496", null, "86732", null, "5196", null, "79036", null, "5119", null, "20206", null, "2776", null, "58830", null, "4637", null, "166655", null, "6874", null, "75615", null, "4870", null, "33857", null, "3326", null, "41261", null, "3652", null, "9358", null, "2295", null, "31903", null, "3157", null, "497", null, "524", null, "256808", null, "5314", null, "52875", null, "4330", null, "37775", null, "3466", null, "10848", null, "1921", null, "26927", null, "3305", null, "166158", null, "6792", null, "59034", null, "4126", null, "273389", null, "6410", null, "100578", null, "6430", null, "231845", null, "7929", null, "110166", null, "3564", null, "180487", null, "4956", null, "1995", null, "783", null, "8236", null, "1416", null, "-999999999", "N", "-999999999", "N", "11191", null, "1838", null, "20348", null, "2849", null, "21907", null, "1877", null, "107257", null, "3509", null, "66738", null, "2456", null, "165768", null, "7389", null, "21933", null, "2503", null, "56971", null, "5271", null, "86864", null, "5212", null, "-888888888", "(X)", "-888888888", "(X)", "39.5", null, "1.2", null, "60.5", null, "1.2", null, "26.1", null, "1.6", null, "23.8", null, "1.4", null, "6.1", null, "0.8", null, "17.7", null, "1.3", null, "50.1", null, "2.0", null, "22.7", null, "1.4", null, "10.2", null, "1.0", null, "12.4", null, "1.1", null, "2.8", null, "0.7", null, "9.6", null, "0.9", null, "0.1", null, "0.2", null, "77.3", null, "1.4", null, "15.9", null, "1.3", null, "11.4", null, "1.0", null, "3.3", null, "0.6", null, "8.1", null, "0.9", null, "50.0", null, "2.0", null, "17.8", null, "1.3", null, "82.2", null, "1.3", null, "30.3", null, "2.0", null, "69.7", null, "2.0", null, "33.1", null, "1.0", null, "54.3", null, "1.2", null, "0.6", null, "0.2", null, "2.5", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "3.4", null, "0.5", null, "6.1", null, "0.9", null, "6.6", null, "0.5", null, "32.3", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.2", null, "1.3", null, "34.4", null, "2.6", null, "52.4", null, "2.5", null, "65763", null, "4840", null, "30242", null, "2942", null, "35521", null, "4262", null, "7864", null, "1876", null, "27823", null, "3530", null, "4890", null, "1674", null, "22933", null, "3124", null, "30076", null, "3352", null, "23357", null, "3556", null, "5148", null, "1558", null, "17857", null, "2945", null, "2751", null, "1294", null, "15106", null, "2610", null, "352", null, "520", null, "42406", null, "3774", null, "2716", null, "1226", null, "9966", null, "1998", null, "2139", null, "896", null, "7827", null, "1791", null, "29724", null, "3318", null, "29575", null, "3622", null, "36188", null, "4384", null, "32982", null, "3683", null, "32781", null, "4106", null, "8225", null, "1724", null, "51483", null, "3749", null, "387", null, "453", null, "1065", null, "600", null, "-999999999", "N", "-999999999", "N", "1538", null, "920", null, "3065", null, "1158", null, "2981", null, "1291", null, "8082", null, "1716", null, "28619", null, "6768", null, "35687", null, "4417", null, "7793", null, "1812", null, "15777", null, "3105", null, "12117", null, "2096", null, "19.8", null, "1.4", null, "46.0", null, "4.1", null, "54.0", null, "4.1", null, "12.0", null, "2.5", null, "42.3", null, "4.0", null, "7.4", null, "2.4", null, "34.9", null, "3.8", null, "45.7", null, "4.6", null, "35.5", null, "4.3", null, "7.8", null, "2.2", null, "27.2", null, "3.9", null, "4.2", null, "1.9", null, "23.0", null, "3.6", null, "0.5", null, "0.8", null, "64.5", null, "4.3", null, "4.1", null, "1.8", null, "15.2", null, "2.8", null, "3.3", null, "1.4", null, "11.9", null, "2.5", null, "45.2", null, "4.5", null, "45.0", null, "4.8", null, "55.0", null, "4.8", null, "50.2", null, "4.6", null, "49.8", null, "4.6", null, "12.5", null, "2.3", null, "78.3", null, "2.9", null, "0.6", null, "0.7", null, "1.6", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "2.3", null, "1.3", null, "4.7", null, "1.7", null, "4.5", null, "1.8", null, "12.3", null, "2.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "21.8", null, "4.7", null, "44.2", null, "5.8", null, "34.0", null, "4.5", null, "266660", null, "6123", null, "101194", null, "4064", null, "165466", null, "6499", null, "78868", null, "4688", null, "51213", null, "4252", null, "15316", null, "2367", null, "35897", null, "3798", null, "136579", null, "7023", null, "52258", null, "4437", null, "28709", null, "3267", null, "23404", null, "3012", null, "6607", null, "1903", null, "16797", null, "2328", null, "145", null, "155", null, "214402", null, "5774", null, "50159", null, "3929", null, "27809", null, "3246", null, "8709", null, "1883", null, "19100", null, "3046", null, "136434", null, "7004", null, "29459", null, "3327", null, "237201", null, "6544", null, "67596", null, "5579", null, "199064", null, "7780", null, "101941", null, "3982", null, "129004", null, "5064", null, "1608", null, "664", null, "7171", null, "1323", null, "-999999999", "N", "-999999999", "N", "9653", null, "1709", null, "17283", null, "2758", null, "18926", null, "1815", null, "99175", null, "3877", null, "76451", null, "3369", null, "130081", null, "6295", null, "14140", null, "1922", null, "41194", null, "4647", null, "74747", null, "4806", null, "80.2", null, "1.4", null, "37.9", null, "1.6", null, "62.1", null, "1.6", null, "29.6", null, "1.8", null, "19.2", null, "1.5", null, "5.7", null, "0.9", null, "13.5", null, "1.3", null, "51.2", null, "2.2", null, "19.6", null, "1.5", null, "10.8", null, "1.2", null, "8.8", null, "1.1", null, "2.5", null, "0.7", null, "6.3", null, "0.9", null, "0.1", null, "0.1", null, "80.4", null, "1.5", null, "18.8", null, "1.6", null, "10.4", null, "1.2", null, "3.3", null, "0.7", null, "7.2", null, "1.1", null, "51.2", null, "2.2", null, "11.0", null, "1.2", null, "89.0", null, "1.2", null, "25.3", null, "2.1", null, "74.7", null, "2.1", null, "38.2", null, "1.2", null, "48.4", null, "1.5", null, "0.6", null, "0.3", null, "2.7", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "3.6", null, "0.6", null, "6.5", null, "1.0", null, "7.1", null, "0.7", null, "37.2", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.9", null, "1.4", null, "31.7", null, "3.0", null, "57.5", null, "2.9", null, "24", "07"], ["5001900US2408", "Congressional District 8 (119th Congress), Maryland", "284409", null, "4139", null, "126374", null, "3512", null, "158035", null, "4496", null, "151642", null, "3913", null, "38114", null, "3156", null, "10669", null, "2116", null, "27445", null, "2635", null, "94653", null, "4048", null, "90147", null, "3697", null, "68767", null, "3227", null, "20697", null, "2391", null, "6317", null, "1543", null, "14380", null, "2142", null, "683", null, "459", null, "194262", null, "5004", null, "82875", null, "3928", null, "17417", null, "2358", null, "4352", null, "1157", null, "13065", null, "1990", null, "93970", null, "4081", null, "21390", null, "2701", null, "263019", null, "4650", null, "55605", null, "3319", null, "228804", null, "5396", null, "144592", null, "3665", null, "49054", null, "3408", null, "-999999999", "N", "-999999999", "N", "41343", null, "3267", null, "-999999999", "N", "-999999999", "N", "21839", null, "2511", null, "26056", null, "2851", null, "41641", null, "2790", null, "140183", null, "3734", null, "146362", null, "6229", null, "189756", null, "4056", null, "19628", null, "1730", null, "49687", null, "3758", null, "120441", null, "4479", null, "-888888888", "(X)", "-888888888", "(X)", "44.4", null, "1.2", null, "55.6", null, "1.2", null, "53.3", null, "1.4", null, "13.4", null, "1.1", null, "3.8", null, "0.7", null, "9.6", null, "0.9", null, "33.3", null, "1.2", null, "31.7", null, "1.3", null, "24.2", null, "1.2", null, "7.3", null, "0.8", null, "2.2", null, "0.5", null, "5.1", null, "0.7", null, "0.2", null, "0.2", null, "68.3", null, "1.3", null, "29.1", null, "1.3", null, "6.1", null, "0.8", null, "1.5", null, "0.4", null, "4.6", null, "0.7", null, "33.0", null, "1.3", null, "7.5", null, "0.9", null, "92.5", null, "0.9", null, "19.6", null, "1.2", null, "80.4", null, "1.2", null, "50.8", null, "1.3", null, "17.2", null, "1.1", null, "-999999999.0", "N", "-999999999.0", "N", "14.5", null, "1.1", null, "-999999999.0", "N", "-999999999.0", "N", "7.7", null, "0.9", null, "9.2", null, "1.0", null, "14.6", null, "1.0", null, "49.3", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.3", null, "0.9", null, "26.2", null, "1.9", null, "63.5", null, "1.9", null, "17215", null, "2547", null, "9492", null, "1710", null, "7723", null, "1646", null, "6143", null, "1374", null, "5825", null, "1491", null, "778", null, "612", null, "5047", null, "1412", null, "5247", null, "1399", null, "6705", null, "1707", null, "3735", null, "1151", null, "2970", null, "1229", null, "191", null, "305", null, "2779", null, "1215", null, "0", null, "228", null, "10510", null, "1897", null, "2408", null, "935", null, "2855", null, "1042", null, "587", null, "536", null, "2268", null, "918", null, "5247", null, "1399", null, "6193", null, "1742", null, "11022", null, "1915", null, "6878", null, "1593", null, "10337", null, "1980", null, "3784", null, "1037", null, "7425", null, "1932", null, "-999999999", "N", "-999999999", "N", "2482", null, "1010", null, "-999999999", "N", "-999999999", "N", "1952", null, "761", null, "1513", null, "761", null, "3715", null, "1171", null, "3458", null, "1004", null, "35299", null, "7005", null, "11968", null, "2206", null, "1201", null, "578", null, "5211", null, "1656", null, "5556", null, "1399", null, "6.1", null, "0.9", null, "55.1", null, "6.4", null, "44.9", null, "6.4", null, "35.7", null, "6.3", null, "33.8", null, "6.6", null, "4.5", null, "3.5", null, "29.3", null, "6.7", null, "30.5", null, "7.1", null, "38.9", null, "7.5", null, "21.7", null, "6.1", null, "17.3", null, "6.2", null, "1.1", null, "1.8", null, "16.1", null, "6.2", null, "0.0", null, "1.2", null, "61.1", null, "7.5", null, "14.0", null, "5.0", null, "16.6", null, "5.8", null, "3.4", null, "3.1", null, "13.2", null, "5.3", null, "30.5", null, "7.1", null, "36.0", null, "7.8", null, "64.0", null, "7.8", null, "40.0", null, "7.3", null, "60.0", null, "7.3", null, "22.0", null, "5.7", null, "43.1", null, "7.6", null, "-999999999.0", "N", "-999999999.0", "N", "14.4", null, "5.2", null, "-999999999.0", "N", "-999999999.0", "N", "11.3", null, "4.2", null, "8.8", null, "4.6", null, "21.6", null, "6.5", null, "20.1", null, "5.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.0", null, "4.8", null, "43.5", null, "9.4", null, "46.4", null, "9.7", null, "267194", null, "4545", null, "116882", null, "3373", null, "150312", null, "4623", null, "145499", null, "4115", null, "32289", null, "3014", null, "9891", null, "2058", null, "22398", null, "2366", null, "89406", null, "4063", null, "83442", null, "4044", null, "65032", null, "3247", null, "17727", null, "2488", null, "6126", null, "1560", null, "11601", null, "2165", null, "683", null, "459", null, "183752", null, "5015", null, "80467", null, "3975", null, "14562", null, "2129", null, "3765", null, "1090", null, "10797", null, "1658", null, "88723", null, "4089", null, "15197", null, "2247", null, "251997", null, "4825", null, "48727", null, "2795", null, "218467", null, "5626", null, "140808", null, "3498", null, "41629", null, "3267", null, "-999999999", "N", "-999999999", "N", "38861", null, "3255", null, "-999999999", "N", "-999999999", "N", "19887", null, "2431", null, "24543", null, "2846", null, "37926", null, "3056", null, "136725", null, "3566", null, "152238", null, "4800", null, "177788", null, "4025", null, "18427", null, "1752", null, "44476", null, "3812", null, "114885", null, "4404", null, "93.9", null, "0.9", null, "43.7", null, "1.2", null, "56.3", null, "1.2", null, "54.5", null, "1.5", null, "12.1", null, "1.1", null, "3.7", null, "0.8", null, "8.4", null, "0.9", null, "33.5", null, "1.3", null, "31.2", null, "1.4", null, "24.3", null, "1.3", null, "6.6", null, "0.9", null, "2.3", null, "0.6", null, "4.3", null, "0.8", null, "0.3", null, "0.2", null, "68.8", null, "1.4", null, "30.1", null, "1.4", null, "5.4", null, "0.8", null, "1.4", null, "0.4", null, "4.0", null, "0.6", null, "33.2", null, "1.3", null, "5.7", null, "0.8", null, "94.3", null, "0.8", null, "18.2", null, "1.1", null, "81.8", null, "1.1", null, "52.7", null, "1.4", null, "15.6", null, "1.1", null, "-999999999.0", "N", "-999999999.0", "N", "14.5", null, "1.1", null, "-999999999.0", "N", "-999999999.0", "N", "7.4", null, "0.9", null, "9.2", null, "1.1", null, "14.2", null, "1.1", null, "51.2", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.4", null, "1.0", null, "25.0", null, "2.0", null, "64.6", null, "2.0", null, "24", "08"], ["5001900US2501", "Congressional District 1 (119th Congress), Massachusetts", "321049", null, "4107", null, "153487", null, "4463", null, "167562", null, "4739", null, "126299", null, "4731", null, "65908", null, "4996", null, "18625", null, "2599", null, "47283", null, "4207", null, "128842", null, "4982", null, "80065", null, "4225", null, "40254", null, "3441", null, "39238", null, "4262", null, "8694", null, "2304", null, "30544", null, "3651", null, "573", null, "428", null, "240984", null, "5186", null, "86045", null, "4097", null, "26670", null, "3607", null, "9931", null, "2088", null, "16739", null, "2710", null, "128269", null, "5003", null, "45655", null, "3675", null, "275394", null, "4604", null, "100144", null, "4854", null, "220905", null, "5845", null, "242351", null, "4143", null, "16702", null, "1952", null, "1029", null, "614", null, "5399", null, "1371", null, "-999999999", "N", "-999999999", "N", "22554", null, "2757", null, "33014", null, "3658", null, "54148", null, "2607", null, "235767", null, "4145", null, "75462", null, "3625", null, "192207", null, "5346", null, "34187", null, "2954", null, "59634", null, "4056", null, "98386", null, "4509", null, "-888888888", "(X)", "-888888888", "(X)", "47.8", null, "1.3", null, "52.2", null, "1.3", null, "39.3", null, "1.4", null, "20.5", null, "1.5", null, "5.8", null, "0.8", null, "14.7", null, "1.3", null, "40.1", null, "1.5", null, "24.9", null, "1.3", null, "12.5", null, "1.1", null, "12.2", null, "1.3", null, "2.7", null, "0.7", null, "9.5", null, "1.1", null, "0.2", null, "0.1", null, "75.1", null, "1.3", null, "26.8", null, "1.3", null, "8.3", null, "1.1", null, "3.1", null, "0.6", null, "5.2", null, "0.8", null, "40.0", null, "1.5", null, "14.2", null, "1.1", null, "85.8", null, "1.1", null, "31.2", null, "1.5", null, "68.8", null, "1.5", null, "75.5", null, "1.0", null, "5.2", null, "0.6", null, "0.3", null, "0.2", null, "1.7", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "7.0", null, "0.9", null, "10.3", null, "1.1", null, "16.9", null, "0.8", null, "73.4", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.8", null, "1.4", null, "31.0", null, "1.8", null, "51.2", null, "2.0", null, "70400", null, "4150", null, "31546", null, "3368", null, "38854", null, "3770", null, "12060", null, "2037", null, "27999", null, "3334", null, "4808", null, "1275", null, "23191", null, "3368", null, "30341", null, "2920", null, "25995", null, "3175", null, "6131", null, "1548", null, "19474", null, "2748", null, "2398", null, "1024", null, "17076", null, "2808", null, "390", null, "395", null, "44405", null, "3568", null, "5929", null, "1394", null, "8525", null, "1968", null, "2410", null, "863", null, "6115", null, "1770", null, "29951", null, "3022", null, "29968", null, "3412", null, "40432", null, "3874", null, "40411", null, "3342", null, "29989", null, "3636", null, "37499", null, "3523", null, "5486", null, "1341", null, "372", null, "330", null, "1249", null, "748", null, "-999999999", "N", "-999999999", "N", "12592", null, "1945", null, "13202", null, "2111", null, "26774", null, "2840", null, "34748", null, "3442", null, "25833", null, "3165", null, "40059", null, "3494", null, "11360", null, "2040", null, "16424", null, "2344", null, "12275", null, "2038", null, "21.9", null, "1.3", null, "44.8", null, "4.1", null, "55.2", null, "4.1", null, "17.1", null, "2.8", null, "39.8", null, "3.9", null, "6.8", null, "1.9", null, "32.9", null, "4.0", null, "43.1", null, "3.5", null, "36.9", null, "3.8", null, "8.7", null, "2.1", null, "27.7", null, "3.5", null, "3.4", null, "1.5", null, "24.3", null, "3.5", null, "0.6", null, "0.6", null, "63.1", null, "3.8", null, "8.4", null, "2.0", null, "12.1", null, "2.7", null, "3.4", null, "1.2", null, "8.7", null, "2.4", null, "42.5", null, "3.6", null, "42.6", null, "4.2", null, "57.4", null, "4.2", null, "57.4", null, "4.1", null, "42.6", null, "4.1", null, "53.3", null, "3.4", null, "7.8", null, "1.9", null, "0.5", null, "0.5", null, "1.8", null, "1.1", null, "-999999999.0", "N", "-999999999.0", "N", "17.9", null, "2.7", null, "18.8", null, "2.8", null, "38.0", null, "3.5", null, "49.4", null, "3.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "28.4", null, "4.4", null, "41.0", null, "4.3", null, "30.6", null, "4.7", null, "250649", null, "5318", null, "121941", null, "4221", null, "128708", null, "4974", null, "114239", null, "4760", null, "37909", null, "3827", null, "13817", null, "2455", null, "24092", null, "3012", null, "98501", null, "4390", null, "54070", null, "3688", null, "34123", null, "3121", null, "19764", null, "3465", null, "6296", null, "1978", null, "13468", null, "2736", null, "183", null, "158", null, "196579", null, "5068", null, "80116", null, "4037", null, "18145", null, "2726", null, "7521", null, "1781", null, "10624", null, "1873", null, "98318", null, "4385", null, "15687", null, "2597", null, "234962", null, "5112", null, "59733", null, "3818", null, "190916", null, "5970", null, "204852", null, "5275", null, "11216", null, "1800", null, "657", null, "517", null, "4150", null, "1022", null, "-999999999", "N", "-999999999", "N", "9962", null, "2479", null, "19812", null, "3188", null, "27374", null, "3061", null, "201019", null, "5145", null, "91696", null, "3234", null, "152148", null, "4908", null, "22827", null, "2065", null, "43210", null, "3566", null, "86111", null, "4185", null, "78.1", null, "1.3", null, "48.7", null, "1.5", null, "51.3", null, "1.5", null, "45.6", null, "1.8", null, "15.1", null, "1.4", null, "5.5", null, "1.0", null, "9.6", null, "1.1", null, "39.3", null, "1.5", null, "21.6", null, "1.3", null, "13.6", null, "1.2", null, "7.9", null, "1.3", null, "2.5", null, "0.8", null, "5.4", null, "1.1", null, "0.1", null, "0.1", null, "78.4", null, "1.3", null, "32.0", null, "1.6", null, "7.2", null, "1.1", null, "3.0", null, "0.7", null, "4.2", null, "0.8", null, "39.2", null, "1.5", null, "6.3", null, "1.0", null, "93.7", null, "1.0", null, "23.8", null, "1.5", null, "76.2", null, "1.5", null, "81.7", null, "1.6", null, "4.5", null, "0.7", null, "0.3", null, "0.2", null, "1.7", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "4.0", null, "1.0", null, "7.9", null, "1.2", null, "10.9", null, "1.2", null, "80.2", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.0", null, "1.3", null, "28.4", null, "2.1", null, "56.6", null, "2.1", null, "25", "01"], ["5001900US2502", "Congressional District 2 (119th Congress), Massachusetts", "311664", null, "4402", null, "142584", null, "4469", null, "169080", null, "4129", null, "153107", null, "4916", null, "47534", null, "3633", null, "17042", null, "2495", null, "30492", null, "3152", null, "111023", null, "5179", null, "88993", null, "4013", null, "60796", null, "3429", null, "27461", null, "3254", null, "9345", null, "1942", null, "18116", null, "2596", null, "736", null, "441", null, "222671", null, "5464", null, "92311", null, "4242", null, "20073", null, "2345", null, "7697", null, "1832", null, "12376", null, "1886", null, "110287", null, "5144", null, "32930", null, "3865", null, "278734", null, "5049", null, "88849", null, "5271", null, "222815", null, "5481", null, "237523", null, "5274", null, "14570", null, "1640", null, "-999999999", "N", "-999999999", "N", "18125", null, "1538", null, "-999999999", "N", "-999999999", "N", "12230", null, "2253", null, "28623", null, "2746", null, "31568", null, "2847", null, "231939", null, "5346", null, "97024", null, "3550", null, "200641", null, "5105", null, "23988", null, "2087", null, "54756", null, "4185", null, "121897", null, "4447", null, "-888888888", "(X)", "-888888888", "(X)", "45.7", null, "1.2", null, "54.3", null, "1.2", null, "49.1", null, "1.5", null, "15.3", null, "1.2", null, "5.5", null, "0.8", null, "9.8", null, "1.0", null, "35.6", null, "1.5", null, "28.6", null, "1.3", null, "19.5", null, "1.1", null, "8.8", null, "1.0", null, "3.0", null, "0.6", null, "5.8", null, "0.8", null, "0.2", null, "0.1", null, "71.4", null, "1.3", null, "29.6", null, "1.3", null, "6.4", null, "0.7", null, "2.5", null, "0.6", null, "4.0", null, "0.6", null, "35.4", null, "1.5", null, "10.6", null, "1.2", null, "89.4", null, "1.2", null, "28.5", null, "1.6", null, "71.5", null, "1.6", null, "76.2", null, "1.2", null, "4.7", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "5.8", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "3.9", null, "0.7", null, "9.2", null, "0.9", null, "10.1", null, "0.9", null, "74.4", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.0", null, "1.0", null, "27.3", null, "1.8", null, "60.8", null, "1.9", null, "50186", null, "4482", null, "23916", null, "2959", null, "26270", null, "2995", null, "9464", null, "1908", null, "17372", null, "2751", null, "5758", null, "1558", null, "11614", null, "2280", null, "23350", null, "2896", null, "16598", null, "2536", null, "4370", null, "1300", null, "11797", null, "2321", null, "3051", null, "1225", null, "8746", null, "1909", null, "431", null, "338", null, "33588", null, "3690", null, "5094", null, "1364", null, "5575", null, "1586", null, "2707", null, "1104", null, "2868", null, "1105", null, "22919", null, "2835", null, "17880", null, "2839", null, "32306", null, "3347", null, "27757", null, "3282", null, "22429", null, "3405", null, "28833", null, "3659", null, "3838", null, "1235", null, "-999999999", "N", "-999999999", "N", "1886", null, "896", null, "-999999999", "N", "-999999999", "N", "4252", null, "1432", null, "11285", null, "2110", null, "14794", null, "2397", null, "26850", null, "3396", null, "36310", null, "6414", null, "26836", null, "3152", null, "4856", null, "1526", null, "11896", null, "2144", null, "10084", null, "1956", null, "16.1", null, "1.4", null, "47.7", null, "3.9", null, "52.3", null, "3.9", null, "18.9", null, "3.5", null, "34.6", null, "4.4", null, "11.5", null, "3.1", null, "23.1", null, "3.8", null, "46.5", null, "4.1", null, "33.1", null, "4.2", null, "8.7", null, "2.5", null, "23.5", null, "4.2", null, "6.1", null, "2.5", null, "17.4", null, "3.4", null, "0.9", null, "0.7", null, "66.9", null, "4.2", null, "10.2", null, "2.6", null, "11.1", null, "2.9", null, "5.4", null, "2.2", null, "5.7", null, "2.1", null, "45.7", null, "4.0", null, "35.6", null, "4.3", null, "64.4", null, "4.3", null, "55.3", null, "5.0", null, "44.7", null, "5.0", null, "57.5", null, "4.4", null, "7.6", null, "2.4", null, "-999999999.0", "N", "-999999999.0", "N", "3.8", null, "1.8", null, "-999999999.0", "N", "-999999999.0", "N", "8.5", null, "2.9", null, "22.5", null, "3.8", null, "29.5", null, "4.3", null, "53.5", null, "4.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.1", null, "4.9", null, "44.3", null, "6.2", null, "37.6", null, "6.4", null, "261478", null, "5536", null, "118668", null, "4878", null, "142810", null, "4224", null, "143643", null, "4798", null, "30162", null, "2398", null, "11284", null, "2001", null, "18878", null, "2422", null, "87673", null, "4864", null, "72395", null, "4206", null, "56426", null, "3475", null, "15664", null, "2356", null, "6294", null, "1579", null, "9370", null, "2053", null, "305", null, "288", null, "189083", null, "6022", null, "87217", null, "4011", null, "14498", null, "1974", null, "4990", null, "1382", null, "9508", null, "1684", null, "87368", null, "4888", null, "15050", null, "2596", null, "246428", null, "5753", null, "61092", null, "4376", null, "200386", null, "5136", null, "208690", null, "5326", null, "10732", null, "1613", null, "-999999999", "N", "-999999999", "N", "16239", null, "1689", null, "-999999999", "N", "-999999999", "N", "7978", null, "1758", null, "17338", null, "2286", null, "16774", null, "2087", null, "205089", null, "5412", null, "111813", null, "3374", null, "173805", null, "5108", null, "19132", null, "1830", null, "42860", null, "3898", null, "111813", null, "4223", null, "83.9", null, "1.4", null, "45.4", null, "1.4", null, "54.6", null, "1.4", null, "54.9", null, "1.5", null, "11.5", null, "0.9", null, "4.3", null, "0.8", null, "7.2", null, "0.9", null, "33.5", null, "1.6", null, "27.7", null, "1.6", null, "21.6", null, "1.3", null, "6.0", null, "0.9", null, "2.4", null, "0.6", null, "3.6", null, "0.8", null, "0.1", null, "0.1", null, "72.3", null, "1.6", null, "33.4", null, "1.4", null, "5.5", null, "0.8", null, "1.9", null, "0.5", null, "3.6", null, "0.6", null, "33.4", null, "1.6", null, "5.8", null, "1.0", null, "94.2", null, "1.0", null, "23.4", null, "1.5", null, "76.6", null, "1.5", null, "79.8", null, "1.1", null, "4.1", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "6.2", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "3.1", null, "0.7", null, "6.6", null, "0.9", null, "6.4", null, "0.8", null, "78.4", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.0", null, "1.0", null, "24.7", null, "2.0", null, "64.3", null, "1.9", null, "25", "02"], ["5001900US2503", "Congressional District 3 (119th Congress), Massachusetts", "298235", null, "6437", null, "132089", null, "4824", null, "166146", null, "5672", null, "136749", null, "4622", null, "60245", null, "4075", null, "18353", null, "2916", null, "41892", null, "3572", null, "101241", null, "6118", null, "94254", null, "3960", null, "56993", null, "3682", null, "36199", null, "3564", null, "12236", null, "2703", null, "23963", null, "2756", null, "1062", null, "605", null, "203981", null, "7609", null, "79756", null, "4419", null, "24046", null, "2574", null, "6117", null, "1487", null, "17929", null, "2313", null, "100179", null, "6188", null, "34084", null, "3374", null, "264151", null, "6646", null, "80388", null, "4799", null, "217847", null, "6870", null, "194703", null, "6672", null, "12565", null, "1873", null, "-999999999", "N", "-999999999", "N", "23488", null, "2685", null, "-999999999", "N", "-999999999", "N", "24620", null, "3478", null, "42564", null, "4236", null, "60267", null, "4284", null, "188710", null, "6645", null, "98501", null, "4658", null, "196994", null, "4708", null, "25437", null, "2840", null, "52973", null, "3644", null, "118584", null, "4598", null, "-888888888", "(X)", "-888888888", "(X)", "44.3", null, "1.4", null, "55.7", null, "1.4", null, "45.9", null, "1.7", null, "20.2", null, "1.3", null, "6.2", null, "1.0", null, "14.0", null, "1.2", null, "33.9", null, "1.6", null, "31.6", null, "1.5", null, "19.1", null, "1.4", null, "12.1", null, "1.2", null, "4.1", null, "0.9", null, "8.0", null, "0.9", null, "0.4", null, "0.2", null, "68.4", null, "1.5", null, "26.7", null, "1.4", null, "8.1", null, "0.8", null, "2.1", null, "0.5", null, "6.0", null, "0.8", null, "33.6", null, "1.6", null, "11.4", null, "1.1", null, "88.6", null, "1.1", null, "27.0", null, "1.6", null, "73.0", null, "1.6", null, "65.3", null, "1.6", null, "4.2", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "7.9", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "8.3", null, "1.2", null, "14.3", null, "1.4", null, "20.2", null, "1.4", null, "63.3", null, "1.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.9", null, "1.4", null, "26.9", null, "1.7", null, "60.2", null, "2.0", null, "53974", null, "4066", null, "25808", null, "2834", null, "28166", null, "3150", null, "12786", null, "2145", null, "22977", null, "3275", null, "4949", null, "1866", null, "18028", null, "2620", null, "18211", null, "2636", null, "23867", null, "3239", null, "6894", null, "1601", null, "16679", null, "2960", null, "3745", null, "1655", null, "12934", null, "2323", null, "294", null, "342", null, "30107", null, "2843", null, "5892", null, "1465", null, "6298", null, "1465", null, "1204", null, "656", null, "5094", null, "1280", null, "17917", null, "2607", null, "20477", null, "2629", null, "33497", null, "3504", null, "27829", null, "3062", null, "26145", null, "3362", null, "24477", null, "2393", null, "2284", null, "807", null, "-999999999", "N", "-999999999", "N", "2991", null, "1047", null, "-999999999", "N", "-999999999", "N", "10459", null, "2058", null, "13585", null, "2547", null, "26182", null, "2972", null, "22187", null, "2159", null, "36417", null, "2895", null, "35763", null, "3649", null, "7399", null, "1706", null, "13853", null, "2351", null, "14511", null, "2514", null, "18.1", null, "1.4", null, "47.8", null, "4.1", null, "52.2", null, "4.1", null, "23.7", null, "3.6", null, "42.6", null, "4.9", null, "9.2", null, "3.3", null, "33.4", null, "4.3", null, "33.7", null, "4.3", null, "44.2", null, "4.3", null, "12.8", null, "2.8", null, "30.9", null, "4.6", null, "6.9", null, "2.9", null, "24.0", null, "3.9", null, "0.5", null, "0.6", null, "55.8", null, "4.3", null, "10.9", null, "2.7", null, "11.7", null, "2.7", null, "2.2", null, "1.2", null, "9.4", null, "2.4", null, "33.2", null, "4.3", null, "37.9", null, "4.2", null, "62.1", null, "4.2", null, "51.6", null, "4.6", null, "48.4", null, "4.6", null, "45.3", null, "3.6", null, "4.2", null, "1.5", null, "-999999999.0", "N", "-999999999.0", "N", "5.5", null, "1.9", null, "-999999999.0", "N", "-999999999.0", "N", "19.4", null, "3.4", null, "25.2", null, "4.1", null, "48.5", null, "3.5", null, "41.1", null, "3.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "20.7", null, "4.3", null, "38.7", null, "5.5", null, "40.6", null, "5.4", null, "244261", null, "7113", null, "106281", null, "4878", null, "137980", null, "5911", null, "123963", null, "4771", null, "37268", null, "3144", null, "13404", null, "2136", null, "23864", null, "2823", null, "83030", null, "5973", null, "70387", null, "3940", null, "50099", null, "3792", null, "19520", null, "2403", null, "8491", null, "2043", null, "11029", null, "1716", null, "768", null, "465", null, "173874", null, "7736", null, "73864", null, "4523", null, "17748", null, "2444", null, "4913", null, "1312", null, "12835", null, "2201", null, "82262", null, "6047", null, "13607", null, "2118", null, "230654", null, "7200", null, "52559", null, "4201", null, "191702", null, "7097", null, "170226", null, "6543", null, "10281", null, "1846", null, "-999999999", "N", "-999999999", "N", "20497", null, "2638", null, "-999999999", "N", "-999999999", "N", "14161", null, "2660", null, "28979", null, "3681", null, "34085", null, "3567", null, "166523", null, "6464", null, "114410", null, "5361", null, "161231", null, "5248", null, "18038", null, "2447", null, "39120", null, "3050", null, "104073", null, "4658", null, "81.9", null, "1.4", null, "43.5", null, "1.6", null, "56.5", null, "1.6", null, "50.8", null, "2.0", null, "15.3", null, "1.2", null, "5.5", null, "0.9", null, "9.8", null, "1.1", null, "34.0", null, "1.9", null, "28.8", null, "1.7", null, "20.5", null, "1.7", null, "8.0", null, "1.0", null, "3.5", null, "0.8", null, "4.5", null, "0.7", null, "0.3", null, "0.2", null, "71.2", null, "1.7", null, "30.2", null, "1.7", null, "7.3", null, "0.9", null, "2.0", null, "0.5", null, "5.3", null, "0.9", null, "33.7", null, "1.9", null, "5.6", null, "0.9", null, "94.4", null, "0.9", null, "21.5", null, "1.6", null, "78.5", null, "1.6", null, "69.7", null, "1.9", null, "4.2", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "8.4", null, "1.0", null, "-999999999.0", "N", "-999999999.0", "N", "5.8", null, "1.0", null, "11.9", null, "1.5", null, "14.0", null, "1.4", null, "68.2", null, "1.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.2", null, "1.5", null, "24.3", null, "1.6", null, "64.5", null, "2.1", null, "25", "03"], ["5001900US2504", "Congressional District 4 (119th Congress), Massachusetts", "308947", null, "4688", null, "141292", null, "4428", null, "167655", null, "3807", null, "161953", null, "4731", null, "48394", null, "3939", null, "14341", null, "2383", null, "34053", null, "3513", null, "98600", null, "5158", null, "93245", null, "4166", null, "66784", null, "3273", null, "26293", null, "2802", null, "6980", null, "1672", null, "19313", null, "2475", null, "168", null, "195", null, "215702", null, "5677", null, "95169", null, "5036", null, "22101", null, "2765", null, "7361", null, "1754", null, "14740", null, "2301", null, "98432", null, "5148", null, "24442", null, "2959", null, "284505", null, "4889", null, "73240", null, "4358", null, "235707", null, "5454", null, "247206", null, "5168", null, "11770", null, "2033", null, "-999999999", "N", "-999999999", "N", "20974", null, "2326", null, "-999999999", "N", "-999999999", "N", "7557", null, "1868", null, "21098", null, "2513", null, "15997", null, "2379", null, "244943", null, "5265", null, "115485", null, "3781", null, "210347", null, "4962", null, "22306", null, "1804", null, "55061", null, "3749", null, "132980", null, "3979", null, "-888888888", "(X)", "-888888888", "(X)", "45.7", null, "1.1", null, "54.3", null, "1.1", null, "52.4", null, "1.5", null, "15.7", null, "1.3", null, "4.6", null, "0.8", null, "11.0", null, "1.1", null, "31.9", null, "1.5", null, "30.2", null, "1.3", null, "21.6", null, "1.1", null, "8.5", null, "0.9", null, "2.3", null, "0.5", null, "6.3", null, "0.8", null, "0.1", null, "0.1", null, "69.8", null, "1.3", null, "30.8", null, "1.6", null, "7.2", null, "0.9", null, "2.4", null, "0.6", null, "4.8", null, "0.7", null, "31.9", null, "1.5", null, "7.9", null, "0.9", null, "92.1", null, "0.9", null, "23.7", null, "1.4", null, "76.3", null, "1.4", null, "80.0", null, "1.1", null, "3.8", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "6.8", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "2.4", null, "0.6", null, "6.8", null, "0.8", null, "5.2", null, "0.8", null, "79.3", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.6", null, "0.8", null, "26.2", null, "1.5", null, "63.2", null, "1.6", null, "38296", null, "3980", null, "16292", null, "2172", null, "22004", null, "3138", null, "8717", null, "1972", null, "15510", null, "2964", null, "3934", null, "1366", null, "11576", null, "2355", null, "14069", null, "2054", null, "15006", null, "2595", null, "5199", null, "1524", null, "9719", null, "2119", null, "1919", null, "1112", null, "7800", null, "1797", null, "88", null, "148", null, "23290", null, "2749", null, "3518", null, "1122", null, "5791", null, "1717", null, "2015", null, "740", null, "3776", null, "1388", null, "13981", null, "2035", null, "10413", null, "1911", null, "27883", null, "3714", null, "18408", null, "2392", null, "19888", null, "3129", null, "25360", null, "3016", null, "4360", null, "1789", null, "-999999999", "N", "-999999999", "N", "1454", null, "585", null, "-999999999", "N", "-999999999", "N", "1668", null, "927", null, "5387", null, "1551", null, "4814", null, "1687", null, "24832", null, "2935", null, "44591", null, "6421", null, "24227", null, "3492", null, "2981", null, "889", null, "10892", null, "2175", null, "10354", null, "2353", null, "12.4", null, "1.3", null, "42.5", null, "4.5", null, "57.5", null, "4.5", null, "22.8", null, "4.7", null, "40.5", null, "5.5", null, "10.3", null, "3.3", null, "30.2", null, "4.6", null, "36.7", null, "4.9", null, "39.2", null, "4.7", null, "13.6", null, "3.6", null, "25.4", null, "4.6", null, "5.0", null, "2.8", null, "20.4", null, "4.1", null, "0.2", null, "0.4", null, "60.8", null, "4.7", null, "9.2", null, "3.0", null, "15.1", null, "3.9", null, "5.3", null, "1.9", null, "9.9", null, "3.2", null, "36.5", null, "4.9", null, "27.2", null, "4.7", null, "72.8", null, "4.7", null, "48.1", null, "5.0", null, "51.9", null, "5.0", null, "66.2", null, "5.0", null, "11.4", null, "4.3", null, "-999999999.0", "N", "-999999999.0", "N", "3.8", null, "1.6", null, "-999999999.0", "N", "-999999999.0", "N", "4.4", null, "2.3", null, "14.1", null, "3.8", null, "12.6", null, "3.9", null, "64.8", null, "5.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.3", null, "3.6", null, "45.0", null, "6.6", null, "42.7", null, "6.7", null, "270651", null, "6075", null, "125000", null, "4769", null, "145651", null, "4672", null, "153236", null, "5073", null, "32884", null, "3482", null, "10407", null, "2052", null, "22477", null, "3060", null, "84531", null, "4522", null, "78239", null, "3678", null, "61585", null, "3130", null, "16574", null, "2725", null, "5061", null, "1614", null, "11513", null, "2201", null, "80", null, "130", null, "192412", null, "5860", null, "91651", null, "4953", null, "16310", null, "2195", null, "5346", null, "1507", null, "10964", null, "1818", null, "84451", null, "4531", null, "14029", null, "2131", null, "256622", null, "5744", null, "54832", null, "4017", null, "215819", null, "6020", null, "221846", null, "5877", null, "7410", null, "1509", null, "-999999999", "N", "-999999999", "N", "19520", null, "2237", null, "-999999999", "N", "-999999999", "N", "5889", null, "1550", null, "15711", null, "2046", null, "11183", null, "1968", null, "220111", null, "5981", null, "127053", null, "3945", null, "186120", null, "5272", null, "19325", null, "1718", null, "44169", null, "3444", null, "122626", null, "4776", null, "87.6", null, "1.3", null, "46.2", null, "1.3", null, "53.8", null, "1.3", null, "56.6", null, "1.7", null, "12.1", null, "1.2", null, "3.8", null, "0.7", null, "8.3", null, "1.1", null, "31.2", null, "1.4", null, "28.9", null, "1.3", null, "22.8", null, "1.1", null, "6.1", null, "1.0", null, "1.9", null, "0.6", null, "4.3", null, "0.8", null, "0.0", null, "0.1", null, "71.1", null, "1.3", null, "33.9", null, "1.7", null, "6.0", null, "0.8", null, "2.0", null, "0.5", null, "4.1", null, "0.7", null, "31.2", null, "1.4", null, "5.2", null, "0.8", null, "94.8", null, "0.8", null, "20.3", null, "1.4", null, "79.7", null, "1.4", null, "82.0", null, "1.1", null, "2.7", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "7.2", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "2.2", null, "0.6", null, "5.8", null, "0.8", null, "4.1", null, "0.7", null, "81.3", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.4", null, "0.9", null, "23.7", null, "1.7", null, "65.9", null, "1.8", null, "25", "04"], ["5001900US2505", "Congressional District 5 (119th Congress), Massachusetts", "306029", null, "5347", null, "117676", null, "5344", null, "188353", null, "5704", null, "153061", null, "4820", null, "44859", null, "3679", null, "16519", null, "2823", null, "28340", null, "3180", null, "108109", null, "4230", null, "89678", null, "4065", null, "68899", null, "4081", null, "20632", null, "2665", null, "6398", null, "1771", null, "14234", null, "2194", null, "147", null, "185", null, "216351", null, "6293", null, "84162", null, "4800", null, "24227", null, "3178", null, "10121", null, "2115", null, "14106", null, "2300", null, "107962", null, "4233", null, "25834", null, "2891", null, "280195", null, "5345", null, "61274", null, "4698", null, "244755", null, "6335", null, "211842", null, "5114", null, "13701", null, "2159", null, "-999999999", "N", "-999999999", "N", "39641", null, "3250", null, "-999999999", "N", "-999999999", "N", "12368", null, "2375", null, "28046", null, "3062", null, "25550", null, "2606", null, "208481", null, "5112", null, "136612", null, "5790", null, "197920", null, "3918", null, "17454", null, "1975", null, "51739", null, "3913", null, "128727", null, "4340", null, "-888888888", "(X)", "-888888888", "(X)", "38.5", null, "1.6", null, "61.5", null, "1.6", null, "50.0", null, "1.4", null, "14.7", null, "1.2", null, "5.4", null, "0.9", null, "9.3", null, "1.0", null, "35.3", null, "1.1", null, "29.3", null, "1.4", null, "22.5", null, "1.3", null, "6.7", null, "0.9", null, "2.1", null, "0.6", null, "4.7", null, "0.7", null, "0.0", null, "0.1", null, "70.7", null, "1.4", null, "27.5", null, "1.5", null, "7.9", null, "1.0", null, "3.3", null, "0.7", null, "4.6", null, "0.7", null, "35.3", null, "1.1", null, "8.4", null, "0.9", null, "91.6", null, "0.9", null, "20.0", null, "1.5", null, "80.0", null, "1.5", null, "69.2", null, "1.3", null, "4.5", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "13.0", null, "1.0", null, "-999999999.0", "N", "-999999999.0", "N", "4.0", null, "0.8", null, "9.2", null, "1.0", null, "8.3", null, "0.8", null, "68.1", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "8.8", null, "1.0", null, "26.1", null, "1.9", null, "65.0", null, "1.8", null, "28955", null, "3023", null, "14123", null, "2532", null, "14832", null, "2455", null, "7131", null, "1502", null, "11640", null, "2063", null, "3492", null, "1335", null, "8148", null, "1668", null, "10184", null, "1877", null, "11511", null, "2061", null, "3892", null, "1137", null, "7619", null, "1861", null, "1274", null, "751", null, "6345", null, "1703", null, "0", null, "228", null, "17444", null, "2730", null, "3239", null, "1134", null, "4021", null, "1315", null, "2218", null, "1193", null, "1803", null, "567", null, "10184", null, "1877", null, "9148", null, "1849", null, "19807", null, "2439", null, "14704", null, "2346", null, "14251", null, "1932", null, "15046", null, "2157", null, "3301", null, "1046", null, "-999999999", "N", "-999999999", "N", "3210", null, "1180", null, "-999999999", "N", "-999999999", "N", "2317", null, "1160", null, "4974", null, "1500", null, "5776", null, "1638", null, "14832", null, "2129", null, "41167", null, "7392", null, "18771", null, "2321", null, "3554", null, "1224", null, "6845", null, "1591", null, "8372", null, "1734", null, "9.5", null, "1.0", null, "48.8", null, "6.8", null, "51.2", null, "6.8", null, "24.6", null, "4.7", null, "40.2", null, "5.9", null, "12.1", null, "4.3", null, "28.1", null, "5.4", null, "35.2", null, "5.0", null, "39.8", null, "6.3", null, "13.4", null, "3.7", null, "26.3", null, "6.1", null, "4.4", null, "2.6", null, "21.9", null, "5.7", null, "0.0", null, "0.7", null, "60.2", null, "6.3", null, "11.2", null, "3.8", null, "13.9", null, "4.2", null, "7.7", null, "3.9", null, "6.2", null, "1.9", null, "35.2", null, "5.0", null, "31.6", null, "5.2", null, "68.4", null, "5.2", null, "50.8", null, "5.3", null, "49.2", null, "5.3", null, "52.0", null, "5.8", null, "11.4", null, "3.4", null, "-999999999.0", "N", "-999999999.0", "N", "11.1", null, "3.8", null, "-999999999.0", "N", "-999999999.0", "N", "8.0", null, "3.9", null, "17.2", null, "5.0", null, "19.9", null, "5.1", null, "51.2", null, "5.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.9", null, "5.9", null, "36.5", null, "7.3", null, "44.6", null, "7.8", null, "277074", null, "5350", null, "103553", null, "4799", null, "173521", null, "5173", null, "145930", null, "4531", null, "33219", null, "3214", null, "13027", null, "2550", null, "20192", null, "2812", null, "97925", null, "3944", null, "78167", null, "4038", null, "65007", null, "3839", null, "13013", null, "2367", null, "5124", null, "1679", null, "7889", null, "1754", null, "147", null, "185", null, "198907", null, "6077", null, "80923", null, "4740", null, "20206", null, "2819", null, "7903", null, "1794", null, "12303", null, "2238", null, "97778", null, "3934", null, "16686", null, "2327", null, "260388", null, "5281", null, "46570", null, "4257", null, "230504", null, "6424", null, "196796", null, "5162", null, "10400", null, "1962", null, "-999999999", "N", "-999999999", "N", "36431", null, "3173", null, "-999999999", "N", "-999999999", "N", "10051", null, "2083", null, "23072", null, "2825", null, "19774", null, "2491", null, "193649", null, "5181", null, "148259", null, "4297", null, "179149", null, "3898", null, "13900", null, "1765", null, "44894", null, "3694", null, "120355", null, "4025", null, "90.5", null, "1.0", null, "37.4", null, "1.5", null, "62.6", null, "1.5", null, "52.7", null, "1.4", null, "12.0", null, "1.2", null, "4.7", null, "0.9", null, "7.3", null, "1.0", null, "35.3", null, "1.1", null, "28.2", null, "1.5", null, "23.5", null, "1.4", null, "4.7", null, "0.9", null, "1.8", null, "0.6", null, "2.8", null, "0.6", null, "0.1", null, "0.1", null, "71.8", null, "1.5", null, "29.2", null, "1.6", null, "7.3", null, "1.0", null, "2.9", null, "0.6", null, "4.4", null, "0.8", null, "35.3", null, "1.1", null, "6.0", null, "0.8", null, "94.0", null, "0.8", null, "16.8", null, "1.5", null, "83.2", null, "1.5", null, "71.0", null, "1.4", null, "3.8", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "13.1", null, "1.1", null, "-999999999.0", "N", "-999999999.0", "N", "3.6", null, "0.7", null, "8.3", null, "1.0", null, "7.1", null, "0.9", null, "69.9", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "7.8", null, "1.0", null, "25.1", null, "1.9", null, "67.2", null, "1.9", null, "25", "05"], ["5001900US2506", "Congressional District 6 (119th Congress), Massachusetts", "304133", null, "4145", null, "146943", null, "4057", null, "157190", null, "4307", null, "160339", null, "5319", null, "45394", null, "3735", null, "11307", null, "2023", null, "34087", null, "3450", null, "98400", null, "5249", null, "85854", null, "3824", null, "63952", null, "3452", null, "21178", null, "2517", null, "4850", null, "1384", null, "16328", null, "2287", null, "724", null, "499", null, "218279", null, "6030", null, "96387", null, "4684", null, "24216", null, "2925", null, "6457", null, "1315", null, "17759", null, "2567", null, "97676", null, "5257", null, "25454", null, "3200", null, "278679", null, "4646", null, "67853", null, "4113", null, "236280", null, "5282", null, "247452", null, "4094", null, "9681", null, "1673", null, "-999999999", "N", "-999999999", "N", "13168", null, "1591", null, "-999999999", "N", "-999999999", "N", "12709", null, "2204", null, "20282", null, "2193", null, "28491", null, "2748", null, "242657", null, "4282", null, "121409", null, "6316", null, "205733", null, "4600", null, "25510", null, "2647", null, "48726", null, "3793", null, "131497", null, "5432", null, "-888888888", "(X)", "-888888888", "(X)", "48.3", null, "1.2", null, "51.7", null, "1.2", null, "52.7", null, "1.8", null, "14.9", null, "1.2", null, "3.7", null, "0.7", null, "11.2", null, "1.1", null, "32.4", null, "1.5", null, "28.2", null, "1.4", null, "21.0", null, "1.2", null, "7.0", null, "0.8", null, "1.6", null, "0.5", null, "5.4", null, "0.7", null, "0.2", null, "0.2", null, "71.8", null, "1.4", null, "31.7", null, "1.4", null, "8.0", null, "1.0", null, "2.1", null, "0.4", null, "5.8", null, "0.9", null, "32.1", null, "1.5", null, "8.4", null, "1.0", null, "91.6", null, "1.0", null, "22.3", null, "1.3", null, "77.7", null, "1.3", null, "81.4", null, "1.0", null, "3.2", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "4.3", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "4.2", null, "0.7", null, "6.7", null, "0.7", null, "9.4", null, "0.9", null, "79.8", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.4", null, "1.2", null, "23.7", null, "1.8", null, "63.9", null, "2.1", null, "32434", null, "3747", null, "17377", null, "2448", null, "15057", null, "2661", null, "7439", null, "1733", null, "11684", null, "2077", null, "1434", null, "710", null, "10250", null, "1969", null, "13311", null, "2350", null, "11846", null, "2184", null, "4165", null, "1265", null, "7580", null, "1823", null, "934", null, "551", null, "6646", null, "1740", null, "101", null, "153", null, "20588", null, "2782", null, "3274", null, "1132", null, "4104", null, "1232", null, "500", null, "484", null, "3604", null, "1127", null, "13210", null, "2359", null, "10719", null, "2131", null, "21715", null, "2825", null, "15405", null, "2359", null, "17029", null, "2637", null, "20922", null, "2883", null, "2029", null, "943", null, "-999999999", "N", "-999999999", "N", "1130", null, "400", null, "-999999999", "N", "-999999999", "N", "3657", null, "1098", null, "4668", null, "1362", null, "7096", null, "1862", null, "20444", null, "2879", null, "30855", null, "4398", null, "19123", null, "2572", null, "3298", null, "1169", null, "8500", null, "1679", null, "7325", null, "1643", null, "10.7", null, "1.2", null, "53.6", null, "5.5", null, "46.4", null, "5.5", null, "22.9", null, "4.7", null, "36.0", null, "5.4", null, "4.4", null, "2.2", null, "31.6", null, "5.0", null, "41.0", null, "4.9", null, "36.5", null, "5.0", null, "12.8", null, "3.6", null, "23.4", null, "4.8", null, "2.9", null, "1.8", null, "20.5", null, "4.5", null, "0.3", null, "0.5", null, "63.5", null, "5.0", null, "10.1", null, "3.4", null, "12.7", null, "3.9", null, "1.5", null, "1.5", null, "11.1", null, "3.5", null, "40.7", null, "4.9", null, "33.0", null, "5.0", null, "67.0", null, "5.0", null, "47.5", null, "5.1", null, "52.5", null, "5.1", null, "64.5", null, "5.3", null, "6.3", null, "2.6", null, "-999999999.0", "N", "-999999999.0", "N", "3.5", null, "1.3", null, "-999999999.0", "N", "-999999999.0", "N", "11.3", null, "3.1", null, "14.4", null, "3.8", null, "21.9", null, "4.9", null, "63.0", null, "5.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.2", null, "5.1", null, "44.4", null, "7.0", null, "38.3", null, "7.4", null, "271699", null, "5369", null, "129566", null, "4059", null, "142133", null, "4732", null, "152900", null, "5244", null, "33710", null, "3278", null, "9873", null, "1803", null, "23837", null, "2882", null, "85089", null, "4662", null, "74008", null, "3467", null, "59787", null, "3202", null, "13598", null, "1926", null, "3916", null, "1161", null, "9682", null, "1674", null, "623", null, "477", null, "197691", null, "6372", null, "93113", null, "4761", null, "20112", null, "2704", null, "5957", null, "1214", null, "14155", null, "2420", null, "84466", null, "4630", null, "14735", null, "2489", null, "256964", null, "5717", null, "52448", null, "3566", null, "219251", null, "5435", null, "226530", null, "4956", null, "7652", null, "1710", null, "-999999999", "N", "-999999999", "N", "12038", null, "1642", null, "-999999999", "N", "-999999999", "N", "9052", null, "1804", null, "15614", null, "2188", null, "21395", null, "2164", null, "222213", null, "4936", null, "131781", null, "5391", null, "186610", null, "5271", null, "22212", null, "2211", null, "40226", null, "3419", null, "124172", null, "5115", null, "89.3", null, "1.2", null, "47.7", null, "1.3", null, "52.3", null, "1.3", null, "56.3", null, "1.7", null, "12.4", null, "1.2", null, "3.6", null, "0.7", null, "8.8", null, "1.1", null, "31.3", null, "1.5", null, "27.2", null, "1.4", null, "22.0", null, "1.3", null, "5.0", null, "0.7", null, "1.4", null, "0.4", null, "3.6", null, "0.6", null, "0.2", null, "0.2", null, "72.8", null, "1.4", null, "34.3", null, "1.4", null, "7.4", null, "1.0", null, "2.2", null, "0.4", null, "5.2", null, "0.9", null, "31.1", null, "1.5", null, "5.4", null, "0.9", null, "94.6", null, "0.9", null, "19.3", null, "1.2", null, "80.7", null, "1.2", null, "83.4", null, "1.1", null, "2.8", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "4.4", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "3.3", null, "0.7", null, "5.7", null, "0.8", null, "7.9", null, "0.8", null, "81.8", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.9", null, "1.2", null, "21.6", null, "1.7", null, "66.5", null, "1.9", null, "25", "06"], ["5001900US2507", "Congressional District 7 (119th Congress), Massachusetts", "316617", null, "5462", null, "101256", null, "4409", null, "215361", null, "5639", null, "91302", null, "4965", null, "61198", null, "3800", null, "15484", null, "2207", null, "45714", null, "3536", null, "164117", null, "5935", null, "67589", null, "3930", null, "34044", null, "2970", null, "32822", null, "3560", null, "6885", null, "2068", null, "25937", null, "3077", null, "723", null, "575", null, "249028", null, "6255", null, "57258", null, "4669", null, "28376", null, "3286", null, "8599", null, "1868", null, "19777", null, "2344", null, "163394", null, "5864", null, "54107", null, "4673", null, "262510", null, "5643", null, "80165", null, "4482", null, "236452", null, "5565", null, "145261", null, "4419", null, "59733", null, "3670", null, "2002", null, "781", null, "36308", null, "3289", null, "-999999999", "N", "-999999999", "N", "22851", null, "2769", null, "50462", null, "4332", null, "63355", null, "3546", null, "138937", null, "4582", null, "98603", null, "5400", null, "152500", null, "5357", null, "18063", null, "2421", null, "42791", null, "4364", null, "91646", null, "5141", null, "-888888888", "(X)", "-888888888", "(X)", "32.0", null, "1.3", null, "68.0", null, "1.3", null, "28.8", null, "1.6", null, "19.3", null, "1.1", null, "4.9", null, "0.7", null, "14.4", null, "1.1", null, "51.8", null, "1.6", null, "21.3", null, "1.2", null, "10.8", null, "1.0", null, "10.4", null, "1.1", null, "2.2", null, "0.6", null, "8.2", null, "0.9", null, "0.2", null, "0.2", null, "78.7", null, "1.2", null, "18.1", null, "1.4", null, "9.0", null, "1.0", null, "2.7", null, "0.6", null, "6.2", null, "0.7", null, "51.6", null, "1.5", null, "17.1", null, "1.4", null, "82.9", null, "1.4", null, "25.3", null, "1.3", null, "74.7", null, "1.3", null, "45.9", null, "1.4", null, "18.9", null, "1.1", null, "0.6", null, "0.2", null, "11.5", null, "1.0", null, "-999999999.0", "N", "-999999999.0", "N", "7.2", null, "0.9", null, "15.9", null, "1.3", null, "20.0", null, "1.1", null, "43.9", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.8", null, "1.6", null, "28.1", null, "2.6", null, "60.1", null, "2.7", null, "68985", null, "4197", null, "31973", null, "2575", null, "37012", null, "3489", null, "11891", null, "2038", null, "28659", null, "2974", null, "2948", null, "1225", null, "25711", null, "2864", null, "28435", null, "3416", null, "22712", null, "2836", null, "5262", null, "1388", null, "17409", null, "2757", null, "1654", null, "991", null, "15755", null, "2584", null, "41", null, "68", null, "46273", null, "3951", null, "6629", null, "1719", null, "11250", null, "1986", null, "1294", null, "698", null, "9956", null, "1789", null, "28394", null, "3419", null, "31366", null, "3990", null, "37619", null, "3220", null, "36444", null, "3816", null, "32541", null, "3150", null, "13510", null, "2202", null, "25826", null, "2944", null, "600", null, "405", null, "7876", null, "1427", null, "-999999999", "N", "-999999999", "N", "7320", null, "1647", null, "13853", null, "2450", null, "21421", null, "2470", null, "12012", null, "1859", null, "26861", null, "4780", null, "40550", null, "3421", null, "8697", null, "2021", null, "16831", null, "2734", null, "15022", null, "2578", null, "21.8", null, "1.2", null, "46.3", null, "3.2", null, "53.7", null, "3.2", null, "17.2", null, "2.9", null, "41.5", null, "3.6", null, "4.3", null, "1.7", null, "37.3", null, "3.7", null, "41.2", null, "4.0", null, "32.9", null, "3.7", null, "7.6", null, "2.1", null, "25.2", null, "3.7", null, "2.4", null, "1.4", null, "22.8", null, "3.5", null, "0.1", null, "0.1", null, "67.1", null, "3.7", null, "9.6", null, "2.4", null, "16.3", null, "2.8", null, "1.9", null, "1.0", null, "14.4", null, "2.6", null, "41.2", null, "4.0", null, "45.5", null, "4.3", null, "54.5", null, "4.3", null, "52.8", null, "4.0", null, "47.2", null, "4.0", null, "19.6", null, "2.9", null, "37.4", null, "3.5", null, "0.9", null, "0.6", null, "11.4", null, "2.0", null, "-999999999.0", "N", "-999999999.0", "N", "10.6", null, "2.3", null, "20.1", null, "3.4", null, "31.1", null, "3.0", null, "17.4", null, "2.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "21.4", null, "4.5", null, "41.5", null, "5.9", null, "37.0", null, "5.7", null, "247632", null, "5469", null, "69283", null, "4590", null, "178349", null, "5585", null, "79411", null, "4435", null, "32539", null, "3340", null, "12536", null, "2155", null, "20003", null, "2593", null, "135682", null, "5494", null, "44877", null, "3529", null, "28782", null, "2734", null, "15413", null, "2862", null, "5231", null, "1868", null, "10182", null, "2235", null, "682", null, "569", null, "202755", null, "5466", null, "50629", null, "4077", null, "17126", null, "2356", null, "7305", null, "1636", null, "9821", null, "1446", null, "135000", null, "5404", null, "22741", null, "2555", null, "224891", null, "5502", null, "43721", null, "3303", null, "203911", null, "5190", null, "131751", null, "4348", null, "33907", null, "3163", null, "1402", null, "781", null, "28432", null, "2880", null, "-999999999", "N", "-999999999", "N", "15531", null, "2356", null, "36609", null, "3617", null, "41934", null, "3272", null, "126925", null, "4494", null, "116499", null, "5445", null, "111950", null, "5534", null, "9366", null, "1641", null, "25960", null, "3483", null, "76624", null, "4699", null, "78.2", null, "1.2", null, "28.0", null, "1.7", null, "72.0", null, "1.7", null, "32.1", null, "1.6", null, "13.1", null, "1.3", null, "5.1", null, "0.9", null, "8.1", null, "1.0", null, "54.8", null, "1.9", null, "18.1", null, "1.3", null, "11.6", null, "1.1", null, "6.2", null, "1.1", null, "2.1", null, "0.7", null, "4.1", null, "0.9", null, "0.3", null, "0.2", null, "81.9", null, "1.3", null, "20.4", null, "1.5", null, "6.9", null, "1.0", null, "2.9", null, "0.7", null, "4.0", null, "0.6", null, "54.5", null, "1.9", null, "9.2", null, "1.0", null, "90.8", null, "1.0", null, "17.7", null, "1.2", null, "82.3", null, "1.2", null, "53.2", null, "1.7", null, "13.7", null, "1.2", null, "0.6", null, "0.3", null, "11.5", null, "1.1", null, "-999999999.0", "N", "-999999999.0", "N", "6.3", null, "0.9", null, "14.8", null, "1.4", null, "16.9", null, "1.3", null, "51.3", null, "1.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "8.4", null, "1.5", null, "23.2", null, "2.7", null, "68.4", null, "2.7", null, "25", "07"], ["5001900US2508", "Congressional District 8 (119th Congress), Massachusetts", "327712", null, "5867", null, "131365", null, "4348", null, "196347", null, "5288", null, "140127", null, "5060", null, "53886", null, "5025", null, "17144", null, "2337", null, "36742", null, "3956", null, "133699", null, "4980", null, "79572", null, "3650", null, "56228", null, "2968", null, "23025", null, "3183", null, "6585", null, "1511", null, "16440", null, "2617", null, "319", null, "290", null, "248140", null, "6211", null, "83899", null, "4310", null, "30861", null, "3544", null, "10559", null, "1846", null, "20302", null, "2809", null, "133380", null, "4967", null, "30171", null, "3190", null, "297541", null, "6296", null, "73054", null, "5075", null, "254658", null, "6652", null, "234765", null, "5402", null, "29801", null, "3124", null, "-999999999", "N", "-999999999", "N", "29450", null, "2116", null, "-999999999", "N", "-999999999", "N", "14106", null, "2089", null, "19138", null, "2476", null, "20585", null, "2407", null, "230781", null, "5378", null, "118563", null, "4811", null, "194013", null, "5704", null, "20904", null, "2628", null, "48732", null, "4521", null, "124377", null, "5176", null, "-888888888", "(X)", "-888888888", "(X)", "40.1", null, "1.2", null, "59.9", null, "1.2", null, "42.8", null, "1.5", null, "16.4", null, "1.5", null, "5.2", null, "0.7", null, "11.2", null, "1.1", null, "40.8", null, "1.4", null, "24.3", null, "1.1", null, "17.2", null, "1.0", null, "7.0", null, "0.9", null, "2.0", null, "0.5", null, "5.0", null, "0.8", null, "0.1", null, "0.1", null, "75.7", null, "1.1", null, "25.6", null, "1.2", null, "9.4", null, "1.0", null, "3.2", null, "0.6", null, "6.2", null, "0.8", null, "40.7", null, "1.4", null, "9.2", null, "1.0", null, "90.8", null, "1.0", null, "22.3", null, "1.5", null, "77.7", null, "1.5", null, "71.6", null, "1.1", null, "9.1", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "9.0", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "4.3", null, "0.6", null, "5.8", null, "0.7", null, "6.3", null, "0.7", null, "70.4", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.8", null, "1.3", null, "25.1", null, "2.0", null, "64.1", null, "2.3", null, "42789", null, "3741", null, "23999", null, "2727", null, "18790", null, "2549", null, "9400", null, "1751", null, "16500", null, "2444", null, "4036", null, "1019", null, "12464", null, "2232", null, "16889", null, "2822", null, "13900", null, "2357", null, "5146", null, "1317", null, "8754", null, "1914", null, "1771", null, "730", null, "6983", null, "1731", null, "0", null, "228", null, "28889", null, "3322", null, "4254", null, "1140", null, "7746", null, "1574", null, "2265", null, "807", null, "5481", null, "1383", null, "16889", null, "2822", null, "12793", null, "2449", null, "29996", null, "2930", null, "21528", null, "2743", null, "21261", null, "2928", null, "20513", null, "2790", null, "9539", null, "2251", null, "-999999999", "N", "-999999999", "N", "5335", null, "1295", null, "-999999999", "N", "-999999999", "N", "2926", null, "953", null, "4345", null, "1238", null, "4072", null, "1128", null, "19602", null, "2631", null, "40583", null, "8159", null, "25900", null, "3098", null, "2937", null, "1002", null, "9172", null, "1898", null, "13791", null, "2247", null, "13.1", null, "1.1", null, "56.1", null, "4.3", null, "43.9", null, "4.3", null, "22.0", null, "3.9", null, "38.6", null, "4.5", null, "9.4", null, "2.3", null, "29.1", null, "4.4", null, "39.5", null, "5.4", null, "32.5", null, "4.8", null, "12.0", null, "3.1", null, "20.5", null, "4.0", null, "4.1", null, "1.7", null, "16.3", null, "3.6", null, "0.0", null, "0.5", null, "67.5", null, "4.8", null, "9.9", null, "2.6", null, "18.1", null, "3.4", null, "5.3", null, "1.8", null, "12.8", null, "3.0", null, "39.5", null, "5.4", null, "29.9", null, "4.6", null, "70.1", null, "4.6", null, "50.3", null, "5.0", null, "49.7", null, "5.0", null, "47.9", null, "4.6", null, "22.3", null, "4.7", null, "-999999999.0", "N", "-999999999.0", "N", "12.5", null, "2.9", null, "-999999999.0", "N", "-999999999.0", "N", "6.8", null, "2.3", null, "10.2", null, "2.9", null, "9.5", null, "2.5", null, "45.8", null, "4.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.3", null, "3.7", null, "35.4", null, "5.7", null, "53.2", null, "6.2", null, "284923", null, "6231", null, "107366", null, "4812", null, "177557", null, "5244", null, "130727", null, "4840", null, "37386", null, "4303", null, "13108", null, "2437", null, "24278", null, "3277", null, "116810", null, "5099", null, "65672", null, "3341", null, "51082", null, "3040", null, "14271", null, "2506", null, "4814", null, "1455", null, "9457", null, "1921", null, "319", null, "290", null, "219251", null, "6474", null, "79645", null, "4241", null, "23115", null, "3272", null, "8294", null, "1839", null, "14821", null, "2499", null, "116491", null, "5085", null, "17378", null, "2323", null, "267545", null, "6275", null, "51526", null, "4250", null, "233397", null, "6586", null, "214252", null, "5997", null, "20262", null, "2566", null, "-999999999", "N", "-999999999", "N", "24115", null, "2238", null, "-999999999", "N", "-999999999", "N", "11180", null, "2082", null, "14793", null, "2106", null, "16513", null, "2554", null, "211179", null, "5910", null, "130820", null, "4346", null, "168113", null, "5204", null, "17967", null, "2311", null, "39560", null, "3998", null, "110586", null, "4785", null, "86.9", null, "1.1", null, "37.7", null, "1.4", null, "62.3", null, "1.4", null, "45.9", null, "1.5", null, "13.1", null, "1.5", null, "4.6", null, "0.8", null, "8.5", null, "1.1", null, "41.0", null, "1.5", null, "23.0", null, "1.2", null, "17.9", null, "1.1", null, "5.0", null, "0.9", null, "1.7", null, "0.5", null, "3.3", null, "0.7", null, "0.1", null, "0.1", null, "77.0", null, "1.2", null, "28.0", null, "1.3", null, "8.1", null, "1.1", null, "2.9", null, "0.6", null, "5.2", null, "0.9", null, "40.9", null, "1.4", null, "6.1", null, "0.8", null, "93.9", null, "0.8", null, "18.1", null, "1.4", null, "81.9", null, "1.4", null, "75.2", null, "1.3", null, "7.1", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "8.5", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "3.9", null, "0.7", null, "5.2", null, "0.7", null, "5.8", null, "0.9", null, "74.1", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.7", null, "1.4", null, "23.5", null, "2.1", null, "65.8", null, "2.4", null, "25", "08"], ["5001900US2509", "Congressional District 9 (119th Congress), Massachusetts", "335418", null, "6324", null, "180622", null, "4749", null, "154796", null, "5108", null, "159796", null, "5494", null, "51215", null, "4446", null, "14845", null, "2530", null, "36370", null, "3446", null, "124407", null, "5765", null, "78107", null, "4299", null, "52122", null, "4270", null, "25472", null, "3357", null, "6669", null, "1916", null, "18803", null, "2614", null, "513", null, "359", null, "257311", null, "5941", null, "107674", null, "4239", null, "25743", null, "3129", null, "8176", null, "1907", null, "17567", null, "2418", null, "123894", null, "5793", null, "31617", null, "3265", null, "303801", null, "6996", null, "88833", null, "4632", null, "246585", null, "6889", null, "295259", null, "6537", null, "6045", null, "1642", null, "581", null, "219", null, "3733", null, "933", null, "-999999999", "N", "-999999999", "N", "12922", null, "2092", null, "16878", null, "2259", null, "14677", null, "1794", null, "292488", null, "6487", null, "101312", null, "3184", null, "211011", null, "5663", null, "36326", null, "3198", null, "57364", null, "4848", null, "117321", null, "5909", null, "-888888888", "(X)", "-888888888", "(X)", "53.8", null, "1.1", null, "46.2", null, "1.1", null, "47.6", null, "1.6", null, "15.3", null, "1.3", null, "4.4", null, "0.7", null, "10.8", null, "1.0", null, "37.1", null, "1.4", null, "23.3", null, "1.2", null, "15.5", null, "1.2", null, "7.6", null, "1.0", null, "2.0", null, "0.6", null, "5.6", null, "0.8", null, "0.2", null, "0.1", null, "76.7", null, "1.2", null, "32.1", null, "1.2", null, "7.7", null, "0.9", null, "2.4", null, "0.6", null, "5.2", null, "0.7", null, "36.9", null, "1.5", null, "9.4", null, "1.0", null, "90.6", null, "1.0", null, "26.5", null, "1.4", null, "73.5", null, "1.4", null, "88.0", null, "1.0", null, "1.8", null, "0.5", null, "0.2", null, "0.1", null, "1.1", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "3.9", null, "0.6", null, "5.0", null, "0.7", null, "4.4", null, "0.5", null, "87.2", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.2", null, "1.6", null, "27.2", null, "2.2", null, "55.6", null, "2.1", null, "40683", null, "3596", null, "20226", null, "2566", null, "20457", null, "2450", null, "8399", null, "1632", null, "15478", null, "2495", null, "3630", null, "1280", null, "11848", null, "2249", null, "16806", null, "2603", null, "15598", null, "2293", null, "5211", null, "1554", null, "10387", null, "2019", null, "2014", null, "1023", null, "8373", null, "1832", null, "0", null, "228", null, "25085", null, "3200", null, "3188", null, "799", null, "5091", null, "1401", null, "1616", null, "878", null, "3475", null, "1254", null, "16806", null, "2603", null, "15121", null, "2531", null, "25562", null, "2614", null, "21754", null, "2965", null, "18929", null, "2625", null, "28465", null, "3081", null, "2256", null, "1124", null, "291", null, "261", null, "367", null, "302", null, "-999999999", "N", "-999999999", "N", "4924", null, "1355", null, "4380", null, "1285", null, "5927", null, "1313", null, "27493", null, "2968", null, "31248", null, "3714", null, "23877", null, "2788", null, "4364", null, "1375", null, "10361", null, "1847", null, "9152", null, "2016", null, "12.1", null, "1.1", null, "49.7", null, "4.3", null, "50.3", null, "4.3", null, "20.6", null, "3.9", null, "38.0", null, "5.0", null, "8.9", null, "3.1", null, "29.1", null, "4.6", null, "41.3", null, "4.9", null, "38.3", null, "5.0", null, "12.8", null, "3.8", null, "25.5", null, "4.5", null, "5.0", null, "2.5", null, "20.6", null, "4.1", null, "0.0", null, "0.5", null, "61.7", null, "5.0", null, "7.8", null, "1.9", null, "12.5", null, "3.1", null, "4.0", null, "2.1", null, "8.5", null, "2.9", null, "41.3", null, "4.9", null, "37.2", null, "4.6", null, "62.8", null, "4.6", null, "53.5", null, "5.2", null, "46.5", null, "5.2", null, "70.0", null, "4.1", null, "5.5", null, "2.6", null, "0.7", null, "0.6", null, "0.9", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "12.1", null, "3.3", null, "10.8", null, "3.1", null, "14.6", null, "3.0", null, "67.6", null, "4.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.3", null, "5.1", null, "43.4", null, "6.3", null, "38.3", null, "7.2", null, "294735", null, "6696", null, "160396", null, "4390", null, "134339", null, "5465", null, "151397", null, "5462", null, "35737", null, "3657", null, "11215", null, "2070", null, "24522", null, "2963", null, "107601", null, "5600", null, "62509", null, "4119", null, "46911", null, "4185", null, "15085", null, "2695", null, "4655", null, "1577", null, "10430", null, "2134", null, "513", null, "359", null, "232226", null, "6011", null, "104486", null, "4300", null, "20652", null, "2761", null, "6560", null, "1660", null, "14092", null, "2082", null, "107088", null, "5616", null, "16496", null, "2460", null, "278239", null, "7021", null, "67079", null, "4162", null, "227656", null, "7470", null, "266794", null, "6819", null, "3789", null, "1192", null, "290", null, "243", null, "3366", null, "955", null, "-999999999", "N", "-999999999", "N", "7998", null, "1711", null, "12498", null, "1847", null, "8750", null, "1433", null, "264995", null, "6774", null, "111584", null, "3789", null, "187134", null, "5753", null, "31962", null, "2706", null, "47003", null, "4453", null, "108169", null, "5784", null, "87.9", null, "1.1", null, "54.4", null, "1.3", null, "45.6", null, "1.3", null, "51.4", null, "1.7", null, "12.1", null, "1.2", null, "3.8", null, "0.7", null, "8.3", null, "1.0", null, "36.5", null, "1.6", null, "21.2", null, "1.2", null, "15.9", null, "1.4", null, "5.1", null, "0.9", null, "1.6", null, "0.5", null, "3.5", null, "0.7", null, "0.2", null, "0.1", null, "78.8", null, "1.2", null, "35.5", null, "1.5", null, "7.0", null, "0.9", null, "2.2", null, "0.6", null, "4.8", null, "0.7", null, "36.3", null, "1.6", null, "5.6", null, "0.8", null, "94.4", null, "0.8", null, "22.8", null, "1.4", null, "77.2", null, "1.4", null, "90.5", null, "1.0", null, "1.3", null, "0.4", null, "0.1", null, "0.1", null, "1.1", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "2.7", null, "0.6", null, "4.2", null, "0.6", null, "3.0", null, "0.5", null, "89.9", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.1", null, "1.5", null, "25.1", null, "2.2", null, "57.8", null, "2.2", null, "25", "09"], ["5001900US2601", "Congressional District 1 (119th Congress), Michigan", "358866", null, "4004", null, "185358", null, "2226", null, "173508", null, "3648", null, "179310", null, "3589", null, "43940", null, "2398", null, "15137", null, "1367", null, "28803", null, "2027", null, "135616", null, "3633", null, "81684", null, "2813", null, "54669", null, "2479", null, "25399", null, "1890", null, "8252", null, "1047", null, "17147", null, "1722", null, "1616", null, "564", null, "277182", null, "3993", null, "124641", null, "3185", null, "18541", null, "1671", null, "6885", null, "993", null, "11656", null, "1304", null, "134000", null, "3733", null, "47168", null, "2372", null, "311698", null, "4066", null, "112536", null, "3612", null, "246330", null, "4950", null, "328943", null, "3702", null, "756", null, "412", null, "6881", null, "985", null, "-999999999", "N", "-999999999", "N", "-999999999", "N", "-999999999", "N", "2054", null, "533", null, "18892", null, "1550", null, "6195", null, "869", null, "326373", null, "3679", null, "64299", null, "1653", null, "223250", null, "4080", null, "56525", null, "2260", null, "65045", null, "3102", null, "101680", null, "3280", null, "-888888888", "(X)", "-888888888", "(X)", "51.7", null, "0.6", null, "48.3", null, "0.6", null, "50.0", null, "0.9", null, "12.2", null, "0.6", null, "4.2", null, "0.4", null, "8.0", null, "0.6", null, "37.8", null, "0.9", null, "22.8", null, "0.7", null, "15.2", null, "0.7", null, "7.1", null, "0.5", null, "2.3", null, "0.3", null, "4.8", null, "0.5", null, "0.5", null, "0.2", null, "77.2", null, "0.7", null, "34.7", null, "0.8", null, "5.2", null, "0.5", null, "1.9", null, "0.3", null, "3.2", null, "0.4", null, "37.3", null, "0.9", null, "13.1", null, "0.6", null, "86.9", null, "0.6", null, "31.4", null, "1.0", null, "68.6", null, "1.0", null, "91.7", null, "0.5", null, "0.2", null, "0.1", null, "1.9", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "0.6", null, "0.1", null, "5.3", null, "0.4", null, "1.7", null, "0.2", null, "90.9", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "25.3", null, "0.9", null, "29.1", null, "1.2", null, "45.5", null, "1.2", null, "40801", null, "2416", null, "16474", null, "1290", null, "24327", null, "2041", null, "9994", null, "1239", null, "12791", null, "1509", null, "3646", null, "638", null, "9145", null, "1414", null, "18016", null, "1530", null, "15869", null, "1528", null, "5873", null, "951", null, "9256", null, "1350", null, "2314", null, "562", null, "6942", null, "1194", null, "740", null, "406", null, "24932", null, "1781", null, "4121", null, "812", null, "3535", null, "678", null, "1332", null, "411", null, "2203", null, "552", null, "17276", null, "1534", null, "18020", null, "1713", null, "22781", null, "1882", null, "22701", null, "1543", null, "18100", null, "1605", null, "35580", null, "2346", null, "200", null, "164", null, "1334", null, "516", null, "-999999999", "N", "-999999999", "N", "-999999999", "N", "-999999999", "N", "151", null, "126", null, "3448", null, "733", null, "1115", null, "443", null, "35101", null, "2319", null, "27449", null, "1806", null, "22785", null, "1817", null, "4173", null, "606", null, "9904", null, "1223", null, "8708", null, "1199", null, "11.4", null, "0.6", null, "40.4", null, "2.8", null, "59.6", null, "2.8", null, "24.5", null, "2.8", null, "31.3", null, "3.0", null, "8.9", null, "1.5", null, "22.4", null, "3.0", null, "44.2", null, "2.8", null, "38.9", null, "2.8", null, "14.4", null, "2.2", null, "22.7", null, "2.9", null, "5.7", null, "1.3", null, "17.0", null, "2.6", null, "1.8", null, "1.0", null, "61.1", null, "2.8", null, "10.1", null, "1.9", null, "8.7", null, "1.6", null, "3.3", null, "1.0", null, "5.4", null, "1.3", null, "42.3", null, "2.9", null, "44.2", null, "3.2", null, "55.8", null, "3.2", null, "55.6", null, "2.5", null, "44.4", null, "2.5", null, "87.2", null, "2.3", null, "0.5", null, "0.4", null, "3.3", null, "1.2", null, "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "0.4", null, "0.3", null, "8.5", null, "1.8", null, "2.7", null, "1.1", null, "86.0", null, "2.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.3", null, "2.4", null, "43.5", null, "4.1", null, "38.2", null, "4.0", null, "318065", null, "4013", null, "168884", null, "2147", null, "149181", null, "3373", null, "169316", null, "3468", null, "31149", null, "1908", null, "11491", null, "1257", null, "19658", null, "1676", null, "117600", null, "3468", null, "65815", null, "2628", null, "48796", null, "2571", null, "16143", null, "1454", null, "5938", null, "890", null, "10205", null, "1365", null, "876", null, "359", null, "252250", null, "4030", null, "120520", null, "3163", null, "15006", null, "1534", null, "5553", null, "932", null, "9453", null, "1238", null, "116724", null, "3468", null, "29148", null, "2117", null, "288917", null, "3894", null, "89835", null, "3299", null, "228230", null, "4591", null, "293363", null, "3709", null, "556", null, "363", null, "5547", null, "796", null, "-999999999", "N", "-999999999", "N", "-999999999", "N", "-999999999", "N", "1903", null, "526", null, "15444", null, "1627", null, "5080", null, "893", null, "291272", null, "3688", null, "69264", null, "1426", null, "200465", null, "3586", null, "52352", null, "2198", null, "55141", null, "2595", null, "92972", null, "3065", null, "88.6", null, "0.6", null, "53.1", null, "0.6", null, "46.9", null, "0.6", null, "53.2", null, "0.9", null, "9.8", null, "0.6", null, "3.6", null, "0.4", null, "6.2", null, "0.5", null, "37.0", null, "0.9", null, "20.7", null, "0.8", null, "15.3", null, "0.8", null, "5.1", null, "0.5", null, "1.9", null, "0.3", null, "3.2", null, "0.4", null, "0.3", null, "0.1", null, "79.3", null, "0.8", null, "37.9", null, "0.9", null, "4.7", null, "0.5", null, "1.7", null, "0.3", null, "3.0", null, "0.4", null, "36.7", null, "0.9", null, "9.2", null, "0.6", null, "90.8", null, "0.6", null, "28.2", null, "1.0", null, "71.8", null, "1.0", null, "92.2", null, "0.6", null, "0.2", null, "0.1", null, "1.7", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "0.6", null, "0.2", null, "4.9", null, "0.5", null, "1.6", null, "0.3", null, "91.6", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "26.1", null, "1.0", null, "27.5", null, "1.2", null, "46.4", null, "1.2", null, "26", "01"], ["5001900US2602", "Congressional District 2 (119th Congress), Michigan", "308221", null, "3907", null, "149007", null, "2553", null, "159214", null, "4164", null, "161746", null, "4354", null, "43165", null, "2895", null, "14565", null, "1708", null, "28600", null, "2299", null, "103310", null, "3537", null, "80960", null, "3499", null, "54815", null, "2943", null, "25826", null, "2518", null, "8452", null, "1466", null, "17374", null, "1994", null, "319", null, "159", null, "227261", null, "3856", null, "106931", null, "3247", null, "17339", null, "1493", null, "6113", null, "923", null, "11226", null, "1310", null, "102991", null, "3513", null, "40428", null, "2713", null, "267793", null, "3958", null, "93078", null, "3076", null, "215143", null, "4326", null, "285079", null, "4256", null, "2425", null, "827", null, "1932", null, "591", null, "1389", null, "454", null, "-999999999", "N", "-999999999", "N", "3151", null, "765", null, "13994", null, "1651", null, "10068", null, "1218", null, "281112", null, "4142", null, "66726", null, "1424", null, "204911", null, "4367", null, "43964", null, "2195", null, "61797", null, "3315", null, "99150", null, "3688", null, "-888888888", "(X)", "-888888888", "(X)", "48.3", null, "0.9", null, "51.7", null, "0.9", null, "52.5", null, "1.2", null, "14.0", null, "0.9", null, "4.7", null, "0.5", null, "9.3", null, "0.7", null, "33.5", null, "1.1", null, "26.3", null, "1.0", null, "17.8", null, "0.9", null, "8.4", null, "0.8", null, "2.7", null, "0.5", null, "5.6", null, "0.6", null, "0.1", null, "0.1", null, "73.7", null, "1.0", null, "34.7", null, "1.0", null, "5.6", null, "0.5", null, "2.0", null, "0.3", null, "3.6", null, "0.4", null, "33.4", null, "1.1", null, "13.1", null, "0.8", null, "86.9", null, "0.8", null, "30.2", null, "1.0", null, "69.8", null, "1.0", null, "92.5", null, "0.7", null, "0.8", null, "0.3", null, "0.6", null, "0.2", null, "0.5", null, "0.1", null, "-999999999.0", "N", "-999999999.0", "N", "1.0", null, "0.2", null, "4.5", null, "0.5", null, "3.3", null, "0.4", null, "91.2", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "21.5", null, "1.1", null, "30.2", null, "1.4", null, "48.4", null, "1.4", null, "39401", null, "2471", null, "16626", null, "1510", null, "22775", null, "2058", null, "10950", null, "1187", null, "13824", null, "1632", null, "3006", null, "908", null, "10818", null, "1465", null, "14627", null, "1427", null, "16512", null, "1565", null, "6507", null, "881", null, "9885", null, "1332", null, "2232", null, "793", null, "7653", null, "1159", null, "120", null, "99", null, "22889", null, "1861", null, "4443", null, "811", null, "3939", null, "821", null, "774", null, "333", null, "3165", null, "774", null, "14507", null, "1427", null, "17969", null, "1899", null, "21432", null, "1740", null, "21411", null, "2094", null, "17990", null, "1732", null, "34502", null, "2235", null, "406", null, "268", null, "402", null, "347", null, "70", null, "80", null, "-999999999", "N", "-999999999", "N", "702", null, "479", null, "3319", null, "766", null, "2941", null, "796", null, "33070", null, "2159", null, "27047", null, "2350", null, "24774", null, "2036", null, "6090", null, "1174", null, "10913", null, "1254", null, "7771", null, "1097", null, "12.8", null, "0.8", null, "42.2", null, "3.2", null, "57.8", null, "3.2", null, "27.8", null, "2.5", null, "35.1", null, "3.3", null, "7.6", null, "2.2", null, "27.5", null, "3.3", null, "37.1", null, "3.0", null, "41.9", null, "3.0", null, "16.5", null, "2.0", null, "25.1", null, "2.9", null, "5.7", null, "1.9", null, "19.4", null, "2.8", null, "0.3", null, "0.3", null, "58.1", null, "3.0", null, "11.3", null, "1.9", null, "10.0", null, "1.9", null, "2.0", null, "0.8", null, "8.0", null, "1.9", null, "36.8", null, "3.0", null, "45.6", null, "3.4", null, "54.4", null, "3.4", null, "54.3", null, "3.7", null, "45.7", null, "3.7", null, "87.6", null, "2.1", null, "1.0", null, "0.7", null, "1.0", null, "0.9", null, "0.2", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "1.8", null, "1.2", null, "8.4", null, "1.8", null, "7.5", null, "2.0", null, "83.9", null, "2.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "24.6", null, "4.0", null, "44.1", null, "3.7", null, "31.4", null, "4.0", null, "268820", null, "4381", null, "132381", null, "2566", null, "136439", null, "4234", null, "150796", null, "4255", null, "29341", null, "2552", null, "11559", null, "1610", null, "17782", null, "1932", null, "88683", null, "3217", null, "64448", null, "3366", null, "48308", null, "2862", null, "15941", null, "2314", null, "6220", null, "1269", null, "9721", null, "1761", null, "199", null, "129", null, "204372", null, "3797", null, "102488", null, "3137", null, "13400", null, "1295", null, "5339", null, "931", null, "8061", null, "1099", null, "88484", null, "3194", null, "22459", null, "2121", null, "246361", null, "4242", null, "71667", null, "3116", null, "197153", null, "4534", null, "250577", null, "4489", null, "2019", null, "791", null, "1530", null, "659", null, "1319", null, "460", null, "-999999999", "N", "-999999999", "N", "2449", null, "552", null, "10675", null, "1515", null, "7127", null, "1093", null, "248042", null, "4350", null, "73128", null, "2206", null, "180137", null, "4172", null, "37874", null, "2011", null, "50884", null, "2952", null, "91379", null, "3482", null, "87.2", null, "0.8", null, "49.2", null, "1.0", null, "50.8", null, "1.0", null, "56.1", null, "1.3", null, "10.9", null, "0.9", null, "4.3", null, "0.6", null, "6.6", null, "0.7", null, "33.0", null, "1.1", null, "24.0", null, "1.1", null, "18.0", null, "1.0", null, "5.9", null, "0.8", null, "2.3", null, "0.5", null, "3.6", null, "0.6", null, "0.1", null, "0.1", null, "76.0", null, "1.1", null, "38.1", null, "1.1", null, "5.0", null, "0.5", null, "2.0", null, "0.3", null, "3.0", null, "0.4", null, "32.9", null, "1.1", null, "8.4", null, "0.8", null, "91.6", null, "0.8", null, "26.7", null, "1.1", null, "73.3", null, "1.1", null, "93.2", null, "0.7", null, "0.8", null, "0.3", null, "0.6", null, "0.2", null, "0.5", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "0.9", null, "0.2", null, "4.0", null, "0.6", null, "2.7", null, "0.4", null, "92.3", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "21.0", null, "1.1", null, "28.2", null, "1.5", null, "50.7", null, "1.5", null, "26", "02"], ["5001900US2603", "Congressional District 3 (119th Congress), Michigan", "308093", null, "4452", null, "117785", null, "3548", null, "190308", null, "4694", null, "142489", null, "4761", null, "50699", null, "4094", null, "15602", null, "2400", null, "35097", null, "3490", null, "114905", null, "4646", null, "88915", null, "3731", null, "57195", null, "3744", null, "31240", null, "3375", null, "9903", null, "1930", null, "21337", null, "2841", null, "480", null, "341", null, "219178", null, "4832", null, "85294", null, "3973", null, "19459", null, "2602", null, "5699", null, "1336", null, "13760", null, "2029", null, "114425", null, "4636", null, "35257", null, "3249", null, "272836", null, "4741", null, "79993", null, "4868", null, "228100", null, "5151", null, "240262", null, "4189", null, "30941", null, "2665", null, "1037", null, "395", null, "6795", null, "1064", null, "-999999999", "N", "-999999999", "N", "6671", null, "1169", null, "22387", null, "2219", null, "23011", null, "1551", null, "236190", null, "4195", null, "77215", null, "2065", null, "193188", null, "4714", null, "25548", null, "2366", null, "56686", null, "4273", null, "110954", null, "4309", null, "-888888888", "(X)", "-888888888", "(X)", "38.2", null, "1.1", null, "61.8", null, "1.1", null, "46.2", null, "1.5", null, "16.5", null, "1.3", null, "5.1", null, "0.8", null, "11.4", null, "1.1", null, "37.3", null, "1.3", null, "28.9", null, "1.2", null, "18.6", null, "1.2", null, "10.1", null, "1.1", null, "3.2", null, "0.6", null, "6.9", null, "0.9", null, "0.2", null, "0.1", null, "71.1", null, "1.2", null, "27.7", null, "1.3", null, "6.3", null, "0.8", null, "1.8", null, "0.4", null, "4.5", null, "0.6", null, "37.1", null, "1.3", null, "11.4", null, "1.0", null, "88.6", null, "1.0", null, "26.0", null, "1.5", null, "74.0", null, "1.5", null, "78.0", null, "0.9", null, "10.0", null, "0.9", null, "0.3", null, "0.1", null, "2.2", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "2.2", null, "0.4", null, "7.3", null, "0.7", null, "7.5", null, "0.5", null, "76.7", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.2", null, "1.2", null, "29.3", null, "2.0", null, "57.4", null, "2.0", null, "37463", null, "3538", null, "12840", null, "1943", null, "24623", null, "3063", null, "8437", null, "1683", null, "16044", null, "2140", null, "2886", null, "876", null, "13158", null, "2016", null, "12982", null, "2220", null, "17365", null, "2651", null, "5559", null, "1584", null, "11746", null, "2050", null, "1915", null, "745", null, "9831", null, "1930", null, "60", null, "102", null, "20098", null, "2736", null, "2878", null, "795", null, "4298", null, "1189", null, "971", null, "529", null, "3327", null, "1148", null, "12922", null, "2240", null, "17155", null, "2439", null, "20308", null, "2444", null, "19882", null, "2649", null, "17581", null, "2621", null, "20844", null, "2470", null, "9459", null, "1896", null, "275", null, "258", null, "905", null, "527", null, "-999999999", "N", "-999999999", "N", "1277", null, "606", null, "4703", null, "1544", null, "4879", null, "1184", null, "19628", null, "2455", null, "28985", null, "4054", null, "24481", null, "2820", null, "4602", null, "1293", null, "9833", null, "1741", null, "10046", null, "1987", null, "12.2", null, "1.1", null, "34.3", null, "4.6", null, "65.7", null, "4.6", null, "22.5", null, "3.7", null, "42.8", null, "4.9", null, "7.7", null, "2.3", null, "35.1", null, "4.8", null, "34.7", null, "4.8", null, "46.4", null, "5.5", null, "14.8", null, "3.8", null, "31.4", null, "4.9", null, "5.1", null, "2.0", null, "26.2", null, "4.7", null, "0.2", null, "0.3", null, "53.6", null, "5.5", null, "7.7", null, "2.0", null, "11.5", null, "3.2", null, "2.6", null, "1.4", null, "8.9", null, "3.1", null, "34.5", null, "4.8", null, "45.8", null, "4.5", null, "54.2", null, "4.5", null, "53.1", null, "5.2", null, "46.9", null, "5.2", null, "55.6", null, "4.2", null, "25.2", null, "4.6", null, "0.7", null, "0.7", null, "2.4", null, "1.3", null, "-999999999.0", "N", "-999999999.0", "N", "3.4", null, "1.6", null, "12.6", null, "3.9", null, "13.0", null, "3.0", null, "52.4", null, "4.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.8", null, "5.1", null, "40.2", null, "5.7", null, "41.0", null, "5.9", null, "270630", null, "5078", null, "104945", null, "3671", null, "165685", null, "4757", null, "134052", null, "5042", null, "34655", null, "3463", null, "12716", null, "2281", null, "21939", null, "2846", null, "101923", null, "4390", null, "71550", null, "3598", null, "51636", null, "3570", null, "19494", null, "2789", null, "7988", null, "1852", null, "11506", null, "2183", null, "420", null, "310", null, "199080", null, "4937", null, "82416", null, "4148", null, "15161", null, "2136", null, "4728", null, "1234", null, "10433", null, "1602", null, "101503", null, "4345", null, "18102", null, "2565", null, "252528", null, "5041", null, "60111", null, "4423", null, "210519", null, "5204", null, "219418", null, "4349", null, "21482", null, "2593", null, "762", null, "387", null, "5890", null, "1040", null, "-999999999", "N", "-999999999", "N", "5394", null, "1045", null, "17684", null, "2109", null, "18132", null, "1599", null, "216562", null, "4310", null, "83484", null, "2434", null, "168707", null, "4768", null, "20946", null, "2005", null, "46853", null, "3728", null, "100908", null, "4190", null, "87.8", null, "1.1", null, "38.8", null, "1.2", null, "61.2", null, "1.2", null, "49.5", null, "1.6", null, "12.8", null, "1.3", null, "4.7", null, "0.8", null, "8.1", null, "1.0", null, "37.7", null, "1.4", null, "26.4", null, "1.2", null, "19.1", null, "1.3", null, "7.2", null, "1.0", null, "3.0", null, "0.7", null, "4.3", null, "0.8", null, "0.2", null, "0.1", null, "73.6", null, "1.2", null, "30.5", null, "1.4", null, "5.6", null, "0.8", null, "1.7", null, "0.5", null, "3.9", null, "0.6", null, "37.5", null, "1.4", null, "6.7", null, "0.9", null, "93.3", null, "0.9", null, "22.2", null, "1.5", null, "77.8", null, "1.5", null, "81.1", null, "1.1", null, "7.9", null, "0.9", null, "0.3", null, "0.1", null, "2.2", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "2.0", null, "0.4", null, "6.5", null, "0.7", null, "6.7", null, "0.6", null, "80.0", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.4", null, "1.1", null, "27.8", null, "2.0", null, "59.8", null, "2.1", null, "26", "03"], ["5001900US2604", "Congressional District 4 (119th Congress), Michigan", "312801", null, "3829", null, "131452", null, "3162", null, "181349", null, "4182", null, "150113", null, "5046", null, "45443", null, "3605", null, "12714", null, "1800", null, "32729", null, "3061", null, "117245", null, "4777", null, "85595", null, "3902", null, "58928", null, "3362", null, "25921", null, "2966", null, "7604", null, "1489", null, "18317", null, "2451", null, "746", null, "410", null, "227206", null, "4869", null, "91185", null, "3971", null, "19522", null, "2066", null, "5110", null, "1022", null, "14412", null, "1959", null, "116499", null, "4728", null, "37677", null, "3239", null, "275124", null, "4811", null, "72402", null, "3776", null, "240399", null, "5128", null, "253854", null, "4926", null, "23174", null, "1980", null, "1394", null, "635", null, "8186", null, "1058", null, "-999999999", "N", "-999999999", "N", "7752", null, "1685", null, "18410", null, "2419", null, "21678", null, "1661", null, "248726", null, "4833", null, "73702", null, "3100", null, "195556", null, "4626", null, "30502", null, "2285", null, "57411", null, "3546", null, "107643", null, "4660", null, "-888888888", "(X)", "-888888888", "(X)", "42.0", null, "1.0", null, "58.0", null, "1.0", null, "48.0", null, "1.4", null, "14.5", null, "1.2", null, "4.1", null, "0.6", null, "10.5", null, "1.0", null, "37.5", null, "1.4", null, "27.4", null, "1.2", null, "18.8", null, "1.0", null, "8.3", null, "1.0", null, "2.4", null, "0.5", null, "5.9", null, "0.8", null, "0.2", null, "0.1", null, "72.6", null, "1.2", null, "29.2", null, "1.2", null, "6.2", null, "0.7", null, "1.6", null, "0.3", null, "4.6", null, "0.6", null, "37.2", null, "1.4", null, "12.0", null, "1.0", null, "88.0", null, "1.0", null, "23.1", null, "1.2", null, "76.9", null, "1.2", null, "81.2", null, "1.0", null, "7.4", null, "0.6", null, "0.4", null, "0.2", null, "2.6", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "2.5", null, "0.5", null, "5.9", null, "0.8", null, "6.9", null, "0.5", null, "79.5", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.6", null, "1.1", null, "29.4", null, "1.7", null, "55.0", null, "1.9", null, "35640", null, "2730", null, "12680", null, "1445", null, "22960", null, "2610", null, "7406", null, "1414", null, "13370", null, "2195", null, "3019", null, "982", null, "10351", null, "1962", null, "14864", null, "2116", null, "15435", null, "2249", null, "5344", null, "1285", null, "9714", null, "1846", null, "2194", null, "845", null, "7520", null, "1641", null, "377", null, "234", null, "20205", null, "2147", null, "2062", null, "616", null, "3656", null, "1003", null, "825", null, "501", null, "2831", null, "893", null, "14487", null, "2096", null, "15753", null, "2079", null, "19887", null, "2075", null, "14446", null, "1712", null, "21194", null, "2406", null, "22551", null, "2080", null, "8100", null, "1766", null, "296", null, "299", null, "588", null, "503", null, "-999999999", "N", "-999999999", "N", "1535", null, "673", null, "2570", null, "625", null, "3447", null, "992", null, "22334", null, "2087", null, "30915", null, "3371", null, "20776", null, "2538", null, "3189", null, "922", null, "10430", null, "1935", null, "7157", null, "1412", null, "11.4", null, "0.9", null, "35.6", null, "4.1", null, "64.4", null, "4.1", null, "20.8", null, "3.7", null, "37.5", null, "5.2", null, "8.5", null, "2.7", null, "29.0", null, "4.8", null, "41.7", null, "5.3", null, "43.3", null, "4.9", null, "15.0", null, "3.4", null, "27.3", null, "4.5", null, "6.2", null, "2.4", null, "21.1", null, "4.0", null, "1.1", null, "0.7", null, "56.7", null, "4.9", null, "5.8", null, "1.7", null, "10.3", null, "2.8", null, "2.3", null, "1.4", null, "7.9", null, "2.5", null, "40.6", null, "5.2", null, "44.2", null, "4.4", null, "55.8", null, "4.4", null, "40.5", null, "4.2", null, "59.5", null, "4.2", null, "63.3", null, "4.2", null, "22.7", null, "4.3", null, "0.8", null, "0.8", null, "1.6", null, "1.4", null, "-999999999.0", "N", "-999999999.0", "N", "4.3", null, "1.9", null, "7.2", null, "1.7", null, "9.7", null, "2.7", null, "62.7", null, "4.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.3", null, "4.1", null, "50.2", null, "6.0", null, "34.4", null, "6.0", null, "277161", null, "4708", null, "118772", null, "3389", null, "158389", null, "4502", null, "142707", null, "4917", null, "32073", null, "3506", null, "9695", null, "1616", null, "22378", null, "2872", null, "102381", null, "4864", null, "70160", null, "3600", null, "53584", null, "3108", null, "16207", null, "2568", null, "5410", null, "1324", null, "10797", null, "1961", null, "369", null, "340", null, "207001", null, "5194", null, "89123", null, "3942", null, "15866", null, "1906", null, "4285", null, "899", null, "11581", null, "1785", null, "102012", null, "4784", null, "21924", null, "2863", null, "255237", null, "5120", null, "57956", null, "3197", null, "219205", null, "5282", null, "231303", null, "5124", null, "15074", null, "2044", null, "1098", null, "554", null, "7598", null, "894", null, "-999999999", "N", "-999999999", "N", "6217", null, "1559", null, "15840", null, "2345", null, "18231", null, "1805", null, "226392", null, "4969", null, "80576", null, "2458", null, "174780", null, "4895", null, "27313", null, "1939", null, "46981", null, "3336", null, "100486", null, "4525", null, "88.6", null, "0.9", null, "42.9", null, "1.1", null, "57.1", null, "1.1", null, "51.5", null, "1.5", null, "11.6", null, "1.3", null, "3.5", null, "0.6", null, "8.1", null, "1.0", null, "36.9", null, "1.6", null, "25.3", null, "1.3", null, "19.3", null, "1.1", null, "5.8", null, "0.9", null, "2.0", null, "0.5", null, "3.9", null, "0.7", null, "0.1", null, "0.1", null, "74.7", null, "1.3", null, "32.2", null, "1.3", null, "5.7", null, "0.7", null, "1.5", null, "0.3", null, "4.2", null, "0.6", null, "36.8", null, "1.5", null, "7.9", null, "1.0", null, "92.1", null, "1.0", null, "20.9", null, "1.2", null, "79.1", null, "1.2", null, "83.5", null, "1.1", null, "5.4", null, "0.7", null, "0.4", null, "0.2", null, "2.7", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "2.2", null, "0.6", null, "5.7", null, "0.9", null, "6.6", null, "0.6", null, "81.7", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.6", null, "1.1", null, "26.9", null, "1.7", null, "57.5", null, "1.9", null, "26", "04"], ["5001900US2605", "Congressional District 5 (119th Congress), Michigan", "308096", null, "3737", null, "147680", null, "2809", null, "160416", null, "3692", null, "151062", null, "4073", null, "46006", null, "3269", null, "15966", null, "1963", null, "30040", null, "2434", null, "111028", null, "3489", null, "79960", null, "3519", null, "51165", null, "2851", null, "28165", null, "3218", null, "9326", null, "1962", null, "18839", null, "2179", null, "630", null, "317", null, "228136", null, "4197", null, "99897", null, "3205", null, "17841", null, "2133", null, "6640", null, "1209", null, "11201", null, "1427", null, "110398", null, "3515", null, "32931", null, "2473", null, "275165", null, "3621", null, "89115", null, "3477", null, "218981", null, "4726", null, "276047", null, "3858", null, "9919", null, "1331", null, "824", null, "354", null, "2032", null, "523", null, "-999999999", "N", "-999999999", "N", "4558", null, "1063", null, "14716", null, "1532", null, "12596", null, "1276", null, "272462", null, "3698", null, "70684", null, "1316", null, "197068", null, "3934", null, "36160", null, "2129", null, "64988", null, "3057", null, "95920", null, "3552", null, "-888888888", "(X)", "-888888888", "(X)", "47.9", null, "0.9", null, "52.1", null, "0.9", null, "49.0", null, "1.2", null, "14.9", null, "1.0", null, "5.2", null, "0.6", null, "9.8", null, "0.8", null, "36.0", null, "1.0", null, "26.0", null, "1.1", null, "16.6", null, "0.9", null, "9.1", null, "1.0", null, "3.0", null, "0.6", null, "6.1", null, "0.7", null, "0.2", null, "0.1", null, "74.0", null, "1.1", null, "32.4", null, "1.0", null, "5.8", null, "0.7", null, "2.2", null, "0.4", null, "3.6", null, "0.5", null, "35.8", null, "1.0", null, "10.7", null, "0.8", null, "89.3", null, "0.8", null, "28.9", null, "1.1", null, "71.1", null, "1.1", null, "89.6", null, "0.7", null, "3.2", null, "0.4", null, "0.3", null, "0.1", null, "0.7", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "1.5", null, "0.3", null, "4.8", null, "0.5", null, "4.1", null, "0.4", null, "88.4", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.3", null, "1.0", null, "33.0", null, "1.4", null, "48.7", null, "1.5", null, "33468", null, "2676", null, "10619", null, "1229", null, "22849", null, "2567", null, "7815", null, "1268", null, "14263", null, "1883", null, "2557", null, "800", null, "11706", null, "1761", null, "11390", null, "1573", null, "15338", null, "1894", null, "4877", null, "988", null, "10368", null, "1605", null, "2134", null, "773", null, "8234", null, "1522", null, "93", null, "115", null, "18130", null, "1893", null, "2938", null, "793", null, "3895", null, "1044", null, "423", null, "294", null, "3472", null, "986", null, "11297", null, "1543", null, "13421", null, "1845", null, "20047", null, "1962", null, "16143", null, "1729", null, "17325", null, "2008", null, "27260", null, "2252", null, "2949", null, "876", null, "222", null, "186", null, "87", null, "136", null, "-999999999", "N", "-999999999", "N", "863", null, "535", null, "2087", null, "654", null, "2207", null, "866", null, "26390", null, "2121", null, "29516", null, "3848", null, "22078", null, "2146", null, "3737", null, "998", null, "11704", null, "1720", null, "6637", null, "1020", null, "10.9", null, "0.8", null, "31.7", null, "3.8", null, "68.3", null, "3.8", null, "23.4", null, "3.5", null, "42.6", null, "4.3", null, "7.6", null, "2.2", null, "35.0", null, "4.4", null, "34.0", null, "3.8", null, "45.8", null, "4.0", null, "14.6", null, "2.7", null, "31.0", null, "3.9", null, "6.4", null, "2.2", null, "24.6", null, "4.0", null, "0.3", null, "0.3", null, "54.2", null, "4.0", null, "8.8", null, "2.4", null, "11.6", null, "3.0", null, "1.3", null, "0.9", null, "10.4", null, "2.9", null, "33.8", null, "3.7", null, "40.1", null, "4.1", null, "59.9", null, "4.1", null, "48.2", null, "3.9", null, "51.8", null, "3.9", null, "81.5", null, "3.1", null, "8.8", null, "2.4", null, "0.7", null, "0.6", null, "0.3", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "2.6", null, "1.5", null, "6.2", null, "1.9", null, "6.6", null, "2.4", null, "78.9", null, "3.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.9", null, "4.2", null, "53.0", null, "5.0", null, "30.1", null, "4.3", null, "274628", null, "3904", null, "137061", null, "2890", null, "137567", null, "3936", null, "143247", null, "4040", null, "31743", null, "2593", null, "13409", null, "1824", null, "18334", null, "1729", null, "99638", null, "3440", null, "64622", null, "3225", null, "46288", null, "2792", null, "17797", null, "2643", null, "7192", null, "1786", null, "10605", null, "1548", null, "537", null, "295", null, "210006", null, "4256", null, "96959", null, "3130", null, "13946", null, "1728", null, "6217", null, "1177", null, "7729", null, "1052", null, "99101", null, "3479", null, "19510", null, "1787", null, "255118", null, "3829", null, "72972", null, "3238", null, "201656", null, "4888", null, "248787", null, "3930", null, "6970", null, "1316", null, "602", null, "308", null, "1945", null, "488", null, "-999999999", "N", "-999999999", "N", "3695", null, "913", null, "12629", null, "1540", null, "10389", null, "1314", null, "246072", null, "3703", null, "75687", null, "1557", null, "174990", null, "3770", null, "32423", null, "1931", null, "53284", null, "2785", null, "89283", null, "3510", null, "89.1", null, "0.8", null, "49.9", null, "1.0", null, "50.1", null, "1.0", null, "52.2", null, "1.3", null, "11.6", null, "0.9", null, "4.9", null, "0.7", null, "6.7", null, "0.6", null, "36.3", null, "1.1", null, "23.5", null, "1.1", null, "16.9", null, "1.0", null, "6.5", null, "1.0", null, "2.6", null, "0.6", null, "3.9", null, "0.6", null, "0.2", null, "0.1", null, "76.5", null, "1.1", null, "35.3", null, "1.0", null, "5.1", null, "0.6", null, "2.3", null, "0.4", null, "2.8", null, "0.4", null, "36.1", null, "1.1", null, "7.1", null, "0.6", null, "92.9", null, "0.6", null, "26.6", null, "1.2", null, "73.4", null, "1.2", null, "90.6", null, "0.8", null, "2.5", null, "0.5", null, "0.2", null, "0.1", null, "0.7", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "1.3", null, "0.3", null, "4.6", null, "0.5", null, "3.8", null, "0.5", null, "89.6", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.5", null, "1.0", null, "30.4", null, "1.5", null, "51.0", null, "1.6", null, "26", "05"], ["5001900US2606", "Congressional District 6 (119th Congress), Michigan", "311746", null, "5565", null, "128457", null, "3863", null, "183289", null, "4746", null, "153254", null, "3999", null, "36249", null, "3433", null, "11120", null, "1924", null, "25129", null, "3051", null, "122243", null, "5536", null, "77509", null, "3494", null, "58314", null, "2789", null, "18725", null, "2583", null, "5015", null, "1358", null, "13710", null, "2456", null, "470", null, "597", null, "234237", null, "6511", null, "94940", null, "4103", null, "17524", null, "2433", null, "6105", null, "1327", null, "11419", null, "1916", null, "121773", null, "5533", null, "33657", null, "2956", null, "278089", null, "5209", null, "71677", null, "4133", null, "240069", null, "6209", null, "225505", null, "5251", null, "30073", null, "2510", null, "889", null, "408", null, "33793", null, "2397", null, "-999999999", "N", "-999999999", "N", "3884", null, "989", null, "17552", null, "2155", null, "14150", null, "1699", null, "221831", null, "5201", null, "96954", null, "3145", null, "189503", null, "3678", null, "27781", null, "1936", null, "52643", null, "3688", null, "109079", null, "3812", null, "-888888888", "(X)", "-888888888", "(X)", "41.2", null, "1.0", null, "58.8", null, "1.0", null, "49.2", null, "1.5", null, "11.6", null, "1.1", null, "3.6", null, "0.6", null, "8.1", null, "1.0", null, "39.2", null, "1.3", null, "24.9", null, "1.2", null, "18.7", null, "1.0", null, "6.0", null, "0.8", null, "1.6", null, "0.4", null, "4.4", null, "0.8", null, "0.2", null, "0.2", null, "75.1", null, "1.2", null, "30.5", null, "1.3", null, "5.6", null, "0.8", null, "2.0", null, "0.4", null, "3.7", null, "0.6", null, "39.1", null, "1.3", null, "10.8", null, "0.9", null, "89.2", null, "0.9", null, "23.0", null, "1.3", null, "77.0", null, "1.3", null, "72.3", null, "1.1", null, "9.6", null, "0.8", null, "0.3", null, "0.1", null, "10.8", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "1.2", null, "0.3", null, "5.6", null, "0.7", null, "4.5", null, "0.5", null, "71.2", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.7", null, "1.0", null, "27.8", null, "1.8", null, "57.6", null, "1.7", null, "21992", null, "2693", null, "8188", null, "1506", null, "13804", null, "2195", null, "5856", null, "1258", null, "7531", null, "1619", null, "1310", null, "717", null, "6221", null, "1480", null, "8605", null, "1798", null, "8280", null, "1514", null, "2759", null, "824", null, "5407", null, "1342", null, "752", null, "536", null, "4655", null, "1289", null, "114", null, "189", null, "13712", null, "2081", null, "3097", null, "942", null, "2124", null, "766", null, "558", null, "395", null, "1566", null, "667", null, "8491", null, "1801", null, "6707", null, "1428", null, "15285", null, "2177", null, "10511", null, "1952", null, "11481", null, "1974", null, "11803", null, "1887", null, "5903", null, "1536", null, "173", null, "189", null, "1796", null, "860", null, "-999999999", "N", "-999999999", "N", "389", null, "233", null, "1928", null, "775", null, "1829", null, "747", null, "11304", null, "1837", null, "42532", null, "10668", null, "13387", null, "1880", null, "2368", null, "905", null, "5137", null, "1176", null, "5882", null, "1479", null, "7.1", null, "0.9", null, "37.2", null, "5.6", null, "62.8", null, "5.6", null, "26.6", null, "4.9", null, "34.2", null, "6.7", null, "6.0", null, "3.3", null, "28.3", null, "6.0", null, "39.1", null, "5.8", null, "37.7", null, "5.3", null, "12.5", null, "3.3", null, "24.6", null, "5.6", null, "3.4", null, "2.5", null, "21.2", null, "5.1", null, "0.5", null, "0.9", null, "62.3", null, "5.3", null, "14.1", null, "4.1", null, "9.7", null, "3.5", null, "2.5", null, "1.8", null, "7.1", null, "3.1", null, "38.6", null, "5.8", null, "30.5", null, "5.2", null, "69.5", null, "5.2", null, "47.8", null, "6.6", null, "52.2", null, "6.6", null, "53.7", null, "6.6", null, "26.8", null, "5.8", null, "0.8", null, "0.9", null, "8.2", null, "3.6", null, "-999999999.0", "N", "-999999999.0", "N", "1.8", null, "1.0", null, "8.8", null, "3.4", null, "8.3", null, "3.2", null, "51.4", null, "6.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.7", null, "6.1", null, "38.4", null, "7.9", null, "43.9", null, "8.6", null, "289754", null, "6131", null, "120269", null, "3671", null, "169485", null, "4931", null, "147398", null, "3934", null, "28718", null, "3159", null, "9810", null, "1804", null, "18908", null, "2722", null, "113638", null, "5882", null, "69229", null, "3364", null, "55555", null, "2803", null, "13318", null, "2211", null, "4263", null, "1238", null, "9055", null, "1966", null, "356", null, "559", null, "220525", null, "6795", null, "91843", null, "4150", null, "15400", null, "2403", null, "5547", null, "1351", null, "9853", null, "1793", null, "113282", null, "5870", null, "26950", null, "2925", null, "262804", null, "5315", null, "61166", null, "4017", null, "228588", null, "6392", null, "213702", null, "5103", null, "24170", null, "2414", null, "716", null, "353", null, "31997", null, "2367", null, "-999999999", "N", "-999999999", "N", "3495", null, "942", null, "15624", null, "2004", null, "12321", null, "1601", null, "210527", null, "5062", null, "101689", null, "2110", null, "176116", null, "3959", null, "25413", null, "1871", null, "47506", null, "3479", null, "103197", null, "3646", null, "92.9", null, "0.9", null, "41.5", null, "1.0", null, "58.5", null, "1.0", null, "50.9", null, "1.5", null, "9.9", null, "1.1", null, "3.4", null, "0.6", null, "6.5", null, "0.9", null, "39.2", null, "1.5", null, "23.9", null, "1.2", null, "19.2", null, "1.1", null, "4.6", null, "0.8", null, "1.5", null, "0.4", null, "3.1", null, "0.7", null, "0.1", null, "0.2", null, "76.1", null, "1.2", null, "31.7", null, "1.4", null, "5.3", null, "0.8", null, "1.9", null, "0.5", null, "3.4", null, "0.6", null, "39.1", null, "1.5", null, "9.3", null, "0.9", null, "90.7", null, "0.9", null, "21.1", null, "1.3", null, "78.9", null, "1.3", null, "73.8", null, "1.1", null, "8.3", null, "0.8", null, "0.2", null, "0.1", null, "11.0", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "1.2", null, "0.3", null, "5.4", null, "0.7", null, "4.3", null, "0.5", null, "72.7", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.4", null, "1.0", null, "27.0", null, "1.8", null, "58.6", null, "1.7", null, "26", "06"], ["5001900US2607", "Congressional District 7 (119th Congress), Michigan", "320647", null, "3313", null, "134593", null, "2549", null, "186054", null, "3504", null, "152876", null, "4269", null, "44729", null, "2913", null, "15767", null, "2026", null, "28962", null, "2528", null, "123042", null, "4098", null, "81600", null, "3523", null, "55220", null, "2938", null, "25471", null, "2448", null, "8357", null, "1360", null, "17114", null, "2254", null, "909", null, "477", null, "239047", null, "4847", null, "97656", null, "3325", null, "19258", null, "2343", null, "7410", null, "1545", null, "11848", null, "1547", null, "122133", null, "4146", null, "36809", null, "3595", null, "283838", null, "4360", null, "79170", null, "3777", null, "241477", null, "4660", null, "268249", null, "4037", null, "17492", null, "1702", null, "1559", null, "859", null, "9959", null, "1566", null, "-999999999", "N", "-999999999", "N", "5138", null, "1261", null, "18011", null, "2313", null, "14366", null, "1303", null, "264655", null, "3971", null, "80268", null, "2056", null, "197605", null, "4398", null, "31394", null, "2471", null, "56710", null, "3459", null, "109501", null, "4006", null, "-888888888", "(X)", "-888888888", "(X)", "42.0", null, "0.8", null, "58.0", null, "0.8", null, "47.7", null, "1.2", null, "13.9", null, "0.9", null, "4.9", null, "0.6", null, "9.0", null, "0.8", null, "38.4", null, "1.2", null, "25.4", null, "1.1", null, "17.2", null, "0.9", null, "7.9", null, "0.8", null, "2.6", null, "0.4", null, "5.3", null, "0.7", null, "0.3", null, "0.1", null, "74.6", null, "1.1", null, "30.5", null, "0.9", null, "6.0", null, "0.7", null, "2.3", null, "0.5", null, "3.7", null, "0.5", null, "38.1", null, "1.2", null, "11.5", null, "1.1", null, "88.5", null, "1.1", null, "24.7", null, "1.2", null, "75.3", null, "1.2", null, "83.7", null, "0.7", null, "5.5", null, "0.5", null, "0.5", null, "0.3", null, "3.1", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "1.6", null, "0.4", null, "5.6", null, "0.7", null, "4.5", null, "0.4", null, "82.5", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.9", null, "1.2", null, "28.7", null, "1.6", null, "55.4", null, "1.8", null, "28046", null, "3033", null, "10957", null, "1559", null, "17089", null, "2477", null, "5650", null, "1303", null, "10735", null, "1722", null, "2454", null, "766", null, "8281", null, "1621", null, "11661", null, "2030", null, "11335", null, "2038", null, "3758", null, "1130", null, "7232", null, "1463", null, "1336", null, "580", null, "5896", null, "1409", null, "345", null, "269", null, "16711", null, "2392", null, "1892", null, "597", null, "3503", null, "932", null, "1118", null, "552", null, "2385", null, "698", null, "11316", null, "2074", null, "12469", null, "2098", null, "15577", null, "1910", null, "12530", null, "1587", null, "15516", null, "2672", null, "19839", null, "2270", null, "4524", null, "1253", null, "445", null, "535", null, "608", null, "495", null, "-999999999", "N", "-999999999", "N", "576", null, "358", null, "2054", null, "756", null, "1930", null, "845", null, "19490", null, "2272", null, "26369", null, "4520", null, "16385", null, "2279", null, "3563", null, "1064", null, "7354", null, "1432", null, "5468", null, "1193", null, "8.7", null, "0.9", null, "39.1", null, "4.6", null, "60.9", null, "4.6", null, "20.1", null, "4.1", null, "38.3", null, "4.8", null, "8.7", null, "2.7", null, "29.5", null, "4.7", null, "41.6", null, "5.5", null, "40.4", null, "5.8", null, "13.4", null, "3.6", null, "25.8", null, "4.5", null, "4.8", null, "2.1", null, "21.0", null, "4.4", null, "1.2", null, "1.0", null, "59.6", null, "5.8", null, "6.7", null, "2.2", null, "12.5", null, "3.1", null, "4.0", null, "2.0", null, "8.5", null, "2.3", null, "40.3", null, "5.6", null, "44.5", null, "4.8", null, "55.5", null, "4.8", null, "44.7", null, "5.5", null, "55.3", null, "5.5", null, "70.7", null, "4.7", null, "16.1", null, "3.7", null, "1.6", null, "1.9", null, "2.2", null, "1.8", null, "-999999999.0", "N", "-999999999.0", "N", "2.1", null, "1.3", null, "7.3", null, "2.6", null, "6.9", null, "3.0", null, "69.5", null, "4.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "21.7", null, "5.9", null, "44.9", null, "5.9", null, "33.4", null, "5.7", null, "292601", null, "4291", null, "123636", null, "3008", null, "168965", null, "4218", null, "147226", null, "4257", null, "33994", null, "2489", null, "13313", null, "1885", null, "20681", null, "2063", null, "111381", null, "4150", null, "70265", null, "3285", null, "51462", null, "2966", null, "18239", null, "2022", null, "7021", null, "1190", null, "11218", null, "1792", null, "564", null, "410", null, "222336", null, "4983", null, "95764", null, "3292", null, "15755", null, "2057", null, "6292", null, "1383", null, "9463", null, "1423", null, "110817", null, "4155", null, "24340", null, "2687", null, "268261", null, "4783", null, "66640", null, "3307", null, "225961", null, "5122", null, "248410", null, "4496", null, "12968", null, "1763", null, "1114", null, "681", null, "9351", null, "1627", null, "-999999999", "N", "-999999999", "N", "4562", null, "1196", null, "15957", null, "2263", null, "12436", null, "1544", null, "245165", null, "4455", null, "85401", null, "2107", null, "181220", null, "4326", null, "27831", null, "2150", null, "49356", null, "3068", null, "104033", null, "4123", null, "91.3", null, "0.9", null, "42.3", null, "1.0", null, "57.7", null, "1.0", null, "50.3", null, "1.3", null, "11.6", null, "0.9", null, "4.5", null, "0.6", null, "7.1", null, "0.7", null, "38.1", null, "1.3", null, "24.0", null, "1.1", null, "17.6", null, "1.0", null, "6.2", null, "0.7", null, "2.4", null, "0.4", null, "3.8", null, "0.6", null, "0.2", null, "0.1", null, "76.0", null, "1.1", null, "32.7", null, "1.0", null, "5.4", null, "0.7", null, "2.2", null, "0.5", null, "3.2", null, "0.5", null, "37.9", null, "1.3", null, "8.3", null, "0.9", null, "91.7", null, "0.9", null, "22.8", null, "1.1", null, "77.2", null, "1.1", null, "84.9", null, "0.8", null, "4.4", null, "0.6", null, "0.4", null, "0.2", null, "3.2", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "1.6", null, "0.4", null, "5.5", null, "0.8", null, "4.3", null, "0.5", null, "83.8", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.4", null, "1.1", null, "27.2", null, "1.6", null, "57.4", null, "1.7", null, "26", "07"], ["5001900US2608", "Congressional District 8 (119th Congress), Michigan", "324528", null, "3328", null, "148031", null, "2758", null, "176497", null, "3260", null, "139333", null, "4077", null, "64464", null, "3747", null, "20042", null, "2394", null, "44422", null, "3352", null, "120731", null, "4604", null, "89307", null, "4103", null, "48338", null, "2829", null, "39811", null, "3225", null, "11782", null, "2023", null, "28029", null, "2941", null, "1158", null, "672", null, "235221", null, "4541", null, "90995", null, "3269", null, "24653", null, "2804", null, "8260", null, "1415", null, "16393", null, "2305", null, "119573", null, "4595", null, "52213", null, "3195", null, "272315", null, "4274", null, "101616", null, "4708", null, "222912", null, "5513", null, "255021", null, "3332", null, "45260", null, "2304", null, "700", null, "349", null, "2431", null, "659", null, "-999999999", "N", "-999999999", "N", "3135", null, "948", null, "17981", null, "2460", null, "13831", null, "1472", null, "249038", null, "3345", null, "64576", null, "2206", null, "203797", null, "4914", null, "41971", null, "2151", null, "69176", null, "4125", null, "92650", null, "4155", null, "-888888888", "(X)", "-888888888", "(X)", "45.6", null, "0.8", null, "54.4", null, "0.8", null, "42.9", null, "1.2", null, "19.9", null, "1.1", null, "6.2", null, "0.7", null, "13.7", null, "1.0", null, "37.2", null, "1.4", null, "27.5", null, "1.2", null, "14.9", null, "0.9", null, "12.3", null, "1.0", null, "3.6", null, "0.6", null, "8.6", null, "0.9", null, "0.4", null, "0.2", null, "72.5", null, "1.2", null, "28.0", null, "1.0", null, "7.6", null, "0.9", null, "2.5", null, "0.4", null, "5.1", null, "0.7", null, "36.8", null, "1.4", null, "16.1", null, "1.0", null, "83.9", null, "1.0", null, "31.3", null, "1.5", null, "68.7", null, "1.5", null, "78.6", null, "0.9", null, "13.9", null, "0.7", null, "0.2", null, "0.1", null, "0.7", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "1.0", null, "0.3", null, "5.5", null, "0.8", null, "4.3", null, "0.4", null, "76.7", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "20.6", null, "0.9", null, "33.9", null, "1.7", null, "45.5", null, "1.9", null, "55135", null, "3198", null, "18727", null, "1891", null, "36408", null, "2975", null, "11655", null, "2062", null, "24023", null, "2413", null, "5693", null, "1351", null, "18330", null, "2352", null, "19457", null, "2103", null, "24104", null, "2710", null, "6371", null, "1499", null, "17276", null, "2269", null, "3856", null, "1247", null, "13420", null, "2120", null, "457", null, "283", null, "31031", null, "2156", null, "5284", null, "1195", null, "6747", null, "1299", null, "1837", null, "585", null, "4910", null, "1311", null, "19000", null, "2023", null, "27255", null, "2804", null, "27880", null, "2423", null, "29081", null, "2600", null, "26054", null, "2627", null, "31716", null, "2519", null, "18019", null, "2073", null, "288", null, "234", null, "204", null, "197", null, "-999999999", "N", "-999999999", "N", "667", null, "334", null, "4241", null, "1037", null, "3452", null, "936", null, "30238", null, "2573", null, "25915", null, "3369", null, "35678", null, "3232", null, "8203", null, "1105", null, "16919", null, "2385", null, "10556", null, "1986", null, "17.0", null, "1.0", null, "34.0", null, "3.2", null, "66.0", null, "3.2", null, "21.1", null, "3.3", null, "43.6", null, "3.5", null, "10.3", null, "2.3", null, "33.2", null, "3.8", null, "35.3", null, "3.7", null, "43.7", null, "3.5", null, "11.6", null, "2.5", null, "31.3", null, "3.4", null, "7.0", null, "2.2", null, "24.3", null, "3.5", null, "0.8", null, "0.5", null, "56.3", null, "3.5", null, "9.6", null, "2.0", null, "12.2", null, "2.4", null, "3.3", null, "1.1", null, "8.9", null, "2.4", null, "34.5", null, "3.6", null, "49.4", null, "3.8", null, "50.6", null, "3.8", null, "52.7", null, "3.7", null, "47.3", null, "3.7", null, "57.5", null, "3.1", null, "32.7", null, "3.2", null, "0.5", null, "0.4", null, "0.4", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "1.2", null, "0.6", null, "7.7", null, "1.9", null, "6.3", null, "1.7", null, "54.8", null, "3.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "23.0", null, "3.1", null, "47.4", null, "4.5", null, "29.6", null, "4.7", null, "269393", null, "4343", null, "129304", null, "2942", null, "140089", null, "3822", null, "127678", null, "4322", null, "40441", null, "3292", null, "14349", null, "2074", null, "26092", null, "2642", null, "101274", null, "4747", null, "65203", null, "3720", null, "41967", null, "3076", null, "22535", null, "2574", null, "7926", null, "1591", null, "14609", null, "2086", null, "701", null, "609", null, "204190", null, "4833", null, "85711", null, "3151", null, "17906", null, "2338", null, "6423", null, "1322", null, "11483", null, "1779", null, "100573", null, "4730", null, "24958", null, "2255", null, "244435", null, "4199", null, "72535", null, "3936", null, "196858", null, "5126", null, "223305", null, "3773", null, "27241", null, "2434", null, "412", null, "257", null, "2227", null, "676", null, "-999999999", "N", "-999999999", "N", "2468", null, "817", null, "13740", null, "2229", null, "10379", null, "1543", null, "218800", null, "3879", null, "72853", null, "1966", null, "168119", null, "5065", null, "33768", null, "2073", null, "52257", null, "3736", null, "82094", null, "4097", null, "83.0", null, "1.0", null, "48.0", null, "1.0", null, "52.0", null, "1.0", null, "47.4", null, "1.5", null, "15.0", null, "1.2", null, "5.3", null, "0.8", null, "9.7", null, "1.0", null, "37.6", null, "1.6", null, "24.2", null, "1.3", null, "15.6", null, "1.1", null, "8.4", null, "1.0", null, "2.9", null, "0.6", null, "5.4", null, "0.8", null, "0.3", null, "0.2", null, "75.8", null, "1.3", null, "31.8", null, "1.1", null, "6.6", null, "0.9", null, "2.4", null, "0.5", null, "4.3", null, "0.7", null, "37.3", null, "1.6", null, "9.3", null, "0.8", null, "90.7", null, "0.8", null, "26.9", null, "1.4", null, "73.1", null, "1.4", null, "82.9", null, "1.2", null, "10.1", null, "0.8", null, "0.2", null, "0.1", null, "0.8", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "0.9", null, "0.3", null, "5.1", null, "0.8", null, "3.9", null, "0.6", null, "81.2", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "20.1", null, "1.1", null, "31.1", null, "1.9", null, "48.8", null, "2.0", null, "26", "08"], ["5001900US2609", "Congressional District 9 (119th Congress), Michigan", "308996", null, "4165", null, "147598", null, "3924", null, "161398", null, "4644", null, "175560", null, "4187", null, "37589", null, "3007", null, "13032", null, "1721", null, "24557", null, "2242", null, "95847", null, "4051", null, "82342", null, "3307", null, "61252", null, "2577", null, "20348", null, "2224", null, "6641", null, "1238", null, "13707", null, "1784", null, "742", null, "503", null, "226654", null, "5553", null, "114308", null, "4541", null, "17241", null, "1786", null, "6391", null, "1293", null, "10850", null, "1367", null, "95105", null, "4010", null, "28360", null, "2165", null, "280636", null, "4566", null, "86802", null, "4147", null, "222194", null, "5835", null, "284429", null, "4328", null, "3845", null, "1060", null, "-999999999", "N", "-999999999", "N", "4270", null, "1240", null, "-999999999", "N", "-999999999", "N", "3918", null, "1199", null, "11951", null, "1557", null, "10889", null, "1706", null, "280095", null, "4497", null, "87017", null, "2103", null, "213149", null, "3866", null, "40438", null, "2537", null, "56210", null, "3162", null, "116501", null, "3980", null, "-888888888", "(X)", "-888888888", "(X)", "47.8", null, "1.2", null, "52.2", null, "1.2", null, "56.8", null, "1.3", null, "12.2", null, "1.0", null, "4.2", null, "0.6", null, "7.9", null, "0.7", null, "31.0", null, "1.1", null, "26.6", null, "1.2", null, "19.8", null, "0.9", null, "6.6", null, "0.7", null, "2.1", null, "0.4", null, "4.4", null, "0.6", null, "0.2", null, "0.2", null, "73.4", null, "1.2", null, "37.0", null, "1.4", null, "5.6", null, "0.6", null, "2.1", null, "0.4", null, "3.5", null, "0.4", null, "30.8", null, "1.1", null, "9.2", null, "0.7", null, "90.8", null, "0.7", null, "28.1", null, "1.4", null, "71.9", null, "1.4", null, "92.0", null, "0.7", null, "1.2", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "1.4", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "1.3", null, "0.4", null, "3.9", null, "0.5", null, "3.5", null, "0.6", null, "90.6", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "19.0", null, "1.1", null, "26.4", null, "1.4", null, "54.7", null, "1.6", null, "29016", null, "2595", null, "11546", null, "1465", null, "17470", null, "2145", null, "8297", null, "1269", null, "9986", null, "1573", null, "2232", null, "772", null, "7754", null, "1225", null, "10733", null, "1824", null, "12586", null, "1465", null, "4948", null, "864", null, "7203", null, "1389", null, "1596", null, "805", null, "5607", null, "1066", null, "435", null, "453", null, "16430", null, "1931", null, "3349", null, "836", null, "2783", null, "810", null, "636", null, "365", null, "2147", null, "664", null, "10298", null, "1696", null, "11006", null, "1516", null, "18010", null, "2173", null, "15252", null, "1910", null, "13764", null, "1829", null, "25521", null, "2487", null, "605", null, "441", null, "-999999999", "N", "-999999999", "N", "76", null, "121", null, "-999999999", "N", "-999999999", "N", "232", null, "229", null, "2494", null, "872", null, "2201", null, "971", null, "24214", null, "2327", null, "33388", null, "3141", null, "18283", null, "1917", null, "3017", null, "660", null, "7851", null, "1290", null, "7415", null, "1257", null, "9.4", null, "0.8", null, "39.8", null, "4.3", null, "60.2", null, "4.3", null, "28.6", null, "3.8", null, "34.4", null, "4.9", null, "7.7", null, "2.5", null, "26.7", null, "4.1", null, "37.0", null, "4.8", null, "43.4", null, "3.8", null, "17.1", null, "2.8", null, "24.8", null, "4.4", null, "5.5", null, "2.7", null, "19.3", null, "3.6", null, "1.5", null, "1.5", null, "56.6", null, "3.8", null, "11.5", null, "2.6", null, "9.6", null, "2.7", null, "2.2", null, "1.2", null, "7.4", null, "2.3", null, "35.5", null, "4.5", null, "37.9", null, "4.4", null, "62.1", null, "4.4", null, "52.6", null, "4.6", null, "47.4", null, "4.6", null, "88.0", null, "3.0", null, "2.1", null, "1.5", null, "-999999999.0", "N", "-999999999.0", "N", "0.3", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "0.8", null, "0.8", null, "8.6", null, "2.9", null, "7.6", null, "3.2", null, "83.5", null, "3.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.5", null, "3.4", null, "42.9", null, "5.1", null, "40.6", null, "5.3", null, "279980", null, "4811", null, "136052", null, "3937", null, "143928", null, "4623", null, "167263", null, "4180", null, "27603", null, "2516", null, "10800", null, "1553", null, "16803", null, "1920", null, "85114", null, "4004", null, "69756", null, "3009", null, "56304", null, "2554", null, "13145", null, "1795", null, "5045", null, "1087", null, "8100", null, "1498", null, "307", null, "235", null, "210224", null, "5732", null, "110959", null, "4587", null, "14458", null, "1659", null, "5755", null, "1212", null, "8703", null, "1318", null, "84807", null, "3970", null, "17354", null, "1822", null, "262626", null, "4832", null, "71550", null, "3866", null, "208430", null, "5849", null, "258908", null, "5048", null, "3240", null, "1014", null, "-999999999", "N", "-999999999", "N", "4194", null, "1239", null, "-999999999", "N", "-999999999", "N", "3686", null, "1178", null, "9457", null, "1231", null, "8688", null, "1371", null, "255881", null, "5078", null, "92866", null, "2590", null, "194866", null, "3795", null, "37421", null, "2377", null, "48359", null, "3061", null, "109086", null, "3766", null, "90.6", null, "0.8", null, "48.6", null, "1.3", null, "51.4", null, "1.3", null, "59.7", null, "1.4", null, "9.9", null, "0.9", null, "3.9", null, "0.6", null, "6.0", null, "0.7", null, "30.4", null, "1.2", null, "24.9", null, "1.2", null, "20.1", null, "1.0", null, "4.7", null, "0.6", null, "1.8", null, "0.4", null, "2.9", null, "0.5", null, "0.1", null, "0.1", null, "75.1", null, "1.2", null, "39.6", null, "1.5", null, "5.2", null, "0.6", null, "2.1", null, "0.4", null, "3.1", null, "0.5", null, "30.3", null, "1.2", null, "6.2", null, "0.6", null, "93.8", null, "0.6", null, "25.6", null, "1.4", null, "74.4", null, "1.4", null, "92.5", null, "0.7", null, "1.2", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "1.5", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "1.3", null, "0.4", null, "3.4", null, "0.4", null, "3.1", null, "0.5", null, "91.4", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "19.2", null, "1.2", null, "24.8", null, "1.5", null, "56.0", null, "1.5", null, "26", "09"], ["5001900US2610", "Congressional District 10 (119th Congress), Michigan", "323732", null, "3803", null, "147190", null, "3966", null, "176542", null, "4115", null, "138097", null, "5048", null, "60570", null, "4495", null, "18556", null, "2388", null, "42014", null, "3489", null, "125065", null, "5112", null, "83885", null, "4065", null, "53500", null, "3588", null, "29616", null, "3912", null, "8098", null, "1767", null, "21518", null, "3053", null, "769", null, "530", null, "239847", null, "4607", null, "84597", null, "4014", null, "30954", null, "2887", null, "10458", null, "1730", null, "20496", null, "2365", null, "124296", null, "5103", null, "37900", null, "3144", null, "285832", null, "4668", null, "94216", null, "4564", null, "229516", null, "5519", null, "238679", null, "4729", null, "46889", null, "2547", null, "801", null, "304", null, "17684", null, "2091", null, "-999999999", "N", "-999999999", "N", "3323", null, "1014", null, "15919", null, "2021", null, "10026", null, "1494", null, "236426", null, "4679", null, "74512", null, "2792", null, "198667", null, "4902", null, "27873", null, "2478", null, "62834", null, "3974", null, "107960", null, "4677", null, "-888888888", "(X)", "-888888888", "(X)", "45.5", null, "1.1", null, "54.5", null, "1.1", null, "42.7", null, "1.6", null, "18.7", null, "1.4", null, "5.7", null, "0.7", null, "13.0", null, "1.1", null, "38.6", null, "1.4", null, "25.9", null, "1.2", null, "16.5", null, "1.1", null, "9.1", null, "1.2", null, "2.5", null, "0.5", null, "6.6", null, "0.9", null, "0.2", null, "0.2", null, "74.1", null, "1.2", null, "26.1", null, "1.3", null, "9.6", null, "0.9", null, "3.2", null, "0.5", null, "6.3", null, "0.7", null, "38.4", null, "1.5", null, "11.7", null, "1.0", null, "88.3", null, "1.0", null, "29.1", null, "1.4", null, "70.9", null, "1.4", null, "73.7", null, "1.0", null, "14.5", null, "0.8", null, "0.2", null, "0.1", null, "5.5", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "1.0", null, "0.3", null, "4.9", null, "0.6", null, "3.1", null, "0.5", null, "73.0", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.0", null, "1.2", null, "31.6", null, "1.8", null, "54.3", null, "2.0", null, "46043", null, "4034", null, "21149", null, "2543", null, "24894", null, "3275", null, "9511", null, "1529", null, "20209", null, "2771", null, "3818", null, "1143", null, "16391", null, "2465", null, "16323", null, "2177", null, "17852", null, "2876", null, "5626", null, "1218", null, "11750", null, "2355", null, "1736", null, "784", null, "10014", null, "2201", null, "476", null, "474", null, "28191", null, "2795", null, "3885", null, "1150", null, "8459", null, "1554", null, "2082", null, "845", null, "6377", null, "1313", null, "15847", null, "2081", null, "17172", null, "2542", null, "28871", null, "3327", null, "23714", null, "2700", null, "22329", null, "3163", null, "26236", null, "3164", null, "13050", null, "2203", null, "174", null, "169", null, "3745", null, "1080", null, "-999999999", "N", "-999999999", "N", "405", null, "296", null, "2433", null, "895", null, "1454", null, "644", null, "25545", null, "3133", null, "31744", null, "2152", null, "29720", null, "3167", null, "4138", null, "1263", null, "14765", null, "2426", null, "10817", null, "2120", null, "14.2", null, "1.2", null, "45.9", null, "4.6", null, "54.1", null, "4.6", null, "20.7", null, "3.1", null, "43.9", null, "4.1", null, "8.3", null, "2.4", null, "35.6", null, "3.8", null, "35.5", null, "3.7", null, "38.8", null, "4.5", null, "12.2", null, "2.5", null, "25.5", null, "4.0", null, "3.8", null, "1.7", null, "21.7", null, "3.9", null, "1.0", null, "1.0", null, "61.2", null, "4.5", null, "8.4", null, "2.5", null, "18.4", null, "3.3", null, "4.5", null, "1.8", null, "13.9", null, "2.8", null, "34.4", null, "3.7", null, "37.3", null, "4.6", null, "62.7", null, "4.6", null, "51.5", null, "4.7", null, "48.5", null, "4.7", null, "57.0", null, "3.8", null, "28.3", null, "4.3", null, "0.4", null, "0.4", null, "8.1", null, "2.3", null, "-999999999.0", "N", "-999999999.0", "N", "0.9", null, "0.6", null, "5.3", null, "2.0", null, "3.2", null, "1.4", null, "55.5", null, "3.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.9", null, "4.2", null, "49.7", null, "5.7", null, "36.4", null, "5.9", null, "277689", null, "5353", null, "126041", null, "3861", null, "151648", null, "4462", null, "128586", null, "4967", null, "40361", null, "3315", null, "14738", null, "2010", null, "25623", null, "2394", null, "108742", null, "4958", null, "66033", null, "3667", null, "47874", null, "3362", null, "17866", null, "2817", null, "6362", null, "1688", null, "11504", null, "1931", null, "293", null, "234", null, "211656", null, "5254", null, "80712", null, "3856", null, "22495", null, "2719", null, "8376", null, "1600", null, "14119", null, "2028", null, "108449", null, "4947", null, "20728", null, "2573", null, "256961", null, "5218", null, "70502", null, "4046", null, "207187", null, "5588", null, "212443", null, "5350", null, "33839", null, "2929", null, "627", null, "282", null, "13939", null, "1866", null, "-999999999", "N", "-999999999", "N", "2918", null, "1019", null, "13486", null, "2025", null, "8572", null, "1327", null, "210881", null, "5175", null, "82483", null, "3089", null, "168947", null, "5076", null, "23735", null, "2198", null, "48069", null, "3123", null, "97143", null, "4623", null, "85.8", null, "1.2", null, "45.4", null, "1.1", null, "54.6", null, "1.1", null, "46.3", null, "1.6", null, "14.5", null, "1.2", null, "5.3", null, "0.7", null, "9.2", null, "0.9", null, "39.2", null, "1.5", null, "23.8", null, "1.2", null, "17.2", null, "1.1", null, "6.4", null, "1.0", null, "2.3", null, "0.6", null, "4.1", null, "0.7", null, "0.1", null, "0.1", null, "76.2", null, "1.2", null, "29.1", null, "1.4", null, "8.1", null, "1.0", null, "3.0", null, "0.6", null, "5.1", null, "0.7", null, "39.1", null, "1.5", null, "7.5", null, "0.9", null, "92.5", null, "0.9", null, "25.4", null, "1.4", null, "74.6", null, "1.4", null, "76.5", null, "1.2", null, "12.2", null, "1.0", null, "0.2", null, "0.1", null, "5.0", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "1.1", null, "0.4", null, "4.9", null, "0.7", null, "3.1", null, "0.5", null, "75.9", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.0", null, "1.2", null, "28.5", null, "1.7", null, "57.5", null, "2.0", null, "26", "10"], ["5001900US2611", "Congressional District 11 (119th Congress), Michigan", "330960", null, "4580", null, "139333", null, "4018", null, "191627", null, "4551", null, "155531", null, "5157", null, "40280", null, "3051", null, "13244", null, "1965", null, "27036", null, "2664", null, "135149", null, "5321", null, "77075", null, "3862", null, "57183", null, "3431", null, "19383", null, "2487", null, "6136", null, "1292", null, "13247", null, "2138", null, "509", null, "411", null, "253885", null, "4902", null, "98348", null, "4603", null, "20897", null, "2213", null, "7108", null, "1535", null, "13789", null, "1842", null, "134640", null, "5375", null, "32685", null, "3048", null, "298275", null, "5499", null, "73633", null, "3875", null, "257327", null, "5824", null, "234471", null, "4851", null, "42392", null, "2958", null, "1028", null, "447", null, "29605", null, "2115", null, "-999999999", "N", "-999999999", "N", "3869", null, "1185", null, "19552", null, "2504", null, "13981", null, "1781", null, "232277", null, "4814", null, "92977", null, "2356", null, "195811", null, "5668", null, "25413", null, "2010", null, "57976", null, "4201", null, "112422", null, "4044", null, "-888888888", "(X)", "-888888888", "(X)", "42.1", null, "1.1", null, "57.9", null, "1.1", null, "47.0", null, "1.4", null, "12.2", null, "0.9", null, "4.0", null, "0.6", null, "8.2", null, "0.8", null, "40.8", null, "1.5", null, "23.3", null, "1.1", null, "17.3", null, "1.0", null, "5.9", null, "0.7", null, "1.9", null, "0.4", null, "4.0", null, "0.6", null, "0.2", null, "0.1", null, "76.7", null, "1.1", null, "29.7", null, "1.3", null, "6.3", null, "0.7", null, "2.1", null, "0.5", null, "4.2", null, "0.6", null, "40.7", null, "1.5", null, "9.9", null, "0.9", null, "90.1", null, "0.9", null, "22.2", null, "1.2", null, "77.8", null, "1.2", null, "70.8", null, "1.1", null, "12.8", null, "0.9", null, "0.3", null, "0.1", null, "8.9", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "1.2", null, "0.4", null, "5.9", null, "0.8", null, "4.2", null, "0.5", null, "70.2", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.0", null, "1.0", null, "29.6", null, "1.7", null, "57.4", null, "1.8", null, "27280", null, "2466", null, "12159", null, "1534", null, "15121", null, "2039", null, "5804", null, "1342", null, "9458", null, "1903", null, "2124", null, "887", null, "7334", null, "1648", null, "12018", null, "1899", null, "8344", null, "1704", null, "2615", null, "972", null, "5729", null, "1533", null, "916", null, "554", null, "4813", null, "1343", null, "0", null, "187", null, "18936", null, "2138", null, "3189", null, "971", null, "3729", null, "970", null, "1208", null, "611", null, "2521", null, "903", null, "12018", null, "1899", null, "10656", null, "1678", null, "16624", null, "2318", null, "12743", null, "1791", null, "14537", null, "2120", null, "14490", null, "1714", null, "8921", null, "1663", null, "199", null, "212", null, "909", null, "594", null, "-999999999", "N", "-999999999", "N", "170", null, "175", null, "2591", null, "1005", null, "1045", null, "577", null, "14421", null, "1713", null, "27053", null, "7541", null, "15262", null, "2333", null, "3367", null, "1021", null, "6956", null, "1667", null, "4939", null, "1315", null, "8.2", null, "0.8", null, "44.6", null, "4.7", null, "55.4", null, "4.7", null, "21.3", null, "4.6", null, "34.7", null, "5.7", null, "7.8", null, "3.0", null, "26.9", null, "5.3", null, "44.1", null, "6.2", null, "30.6", null, "5.4", null, "9.6", null, "3.4", null, "21.0", null, "5.1", null, "3.4", null, "1.9", null, "17.6", null, "4.7", null, "0.0", null, "0.5", null, "69.4", null, "5.4", null, "11.7", null, "3.4", null, "13.7", null, "3.1", null, "4.4", null, "2.2", null, "9.2", null, "3.1", null, "44.1", null, "6.2", null, "39.1", null, "5.6", null, "60.9", null, "5.6", null, "46.7", null, "5.6", null, "53.3", null, "5.6", null, "53.1", null, "5.0", null, "32.7", null, "5.1", null, "0.7", null, "0.8", null, "3.3", null, "2.1", null, "-999999999.0", "N", "-999999999.0", "N", "0.6", null, "0.6", null, "9.5", null, "3.5", null, "3.8", null, "2.1", null, "52.9", null, "5.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "22.1", null, "6.1", null, "45.6", null, "8.3", null, "32.4", null, "6.8", null, "303680", null, "5365", null, "127174", null, "4042", null, "176506", null, "4921", null, "149727", null, "4827", null, "30822", null, "2784", null, "11120", null, "2002", null, "19702", null, "2178", null, "123131", null, "5289", null, "68731", null, "3441", null, "54568", null, "3321", null, "13654", null, "2057", null, "5220", null, "1239", null, "8434", null, "1701", null, "509", null, "411", null, "234949", null, "5388", null, "95159", null, "4376", null, "17168", null, "2212", null, "5900", null, "1549", null, "11268", null, "1601", null, "122622", null, "5367", null, "22029", null, "2563", null, "281651", null, "5517", null, "60890", null, "3598", null, "242790", null, "5757", null, "219981", null, "4991", null, "33471", null, "2875", null, "829", null, "424", null, "28696", null, "2160", null, "-999999999", "N", "-999999999", "N", "3699", null, "1170", null, "16961", null, "2142", null, "12936", null, "1737", null, "217856", null, "4998", null, "100500", null, "2450", null, "180549", null, "5229", null, "22046", null, "1846", null, "51020", null, "3786", null, "107483", null, "3950", null, "91.8", null, "0.8", null, "41.9", null, "1.2", null, "58.1", null, "1.2", null, "49.3", null, "1.5", null, "10.1", null, "0.9", null, "3.7", null, "0.6", null, "6.5", null, "0.7", null, "40.5", null, "1.5", null, "22.6", null, "1.1", null, "18.0", null, "1.1", null, "4.5", null, "0.7", null, "1.7", null, "0.4", null, "2.8", null, "0.6", null, "0.2", null, "0.1", null, "77.4", null, "1.1", null, "31.3", null, "1.4", null, "5.7", null, "0.7", null, "1.9", null, "0.5", null, "3.7", null, "0.5", null, "40.4", null, "1.5", null, "7.3", null, "0.8", null, "92.7", null, "0.8", null, "20.1", null, "1.2", null, "79.9", null, "1.2", null, "72.4", null, "1.1", null, "11.0", null, "0.9", null, "0.3", null, "0.1", null, "9.4", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "1.2", null, "0.4", null, "5.6", null, "0.7", null, "4.3", null, "0.6", null, "71.7", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.2", null, "1.0", null, "28.3", null, "1.7", null, "59.5", null, "1.7", null, "26", "11"], ["5001900US2612", "Congressional District 12 (119th Congress), Michigan", "303265", null, "6304", null, "135879", null, "5172", null, "167386", null, "5416", null, "106653", null, "4639", null, "73445", null, "4606", null, "18328", null, "2645", null, "55117", null, "4175", null, "123167", null, "6616", null, "81462", null, "4254", null, "43170", null, "3015", null, "37784", null, "3776", null, "8563", null, "1936", null, "29221", null, "3462", null, "508", null, "383", null, "221803", null, "7436", null, "63483", null, "3900", null, "35661", null, "3135", null, "9765", null, "1804", null, "25896", null, "2647", null, "122659", null, "6634", null, "63427", null, "4319", null, "239838", null, "5781", null, "91221", null, "5180", null, "212044", null, "6555", null, "139980", null, "4376", null, "140306", null, "5284", null, "666", null, "343", null, "4849", null, "956", null, "-999999999", "N", "-999999999", "N", "2475", null, "839", null, "14910", null, "2288", null, "7891", null, "1504", null, "138526", null, "4402", null, "57324", null, "2055", null, "180098", null, "5378", null, "32716", null, "2477", null, "65335", null, "4420", null, "82047", null, "4345", null, "-888888888", "(X)", "-888888888", "(X)", "44.8", null, "1.4", null, "55.2", null, "1.4", null, "35.2", null, "1.4", null, "24.2", null, "1.6", null, "6.0", null, "0.9", null, "18.2", null, "1.4", null, "40.6", null, "1.8", null, "26.9", null, "1.5", null, "14.2", null, "1.0", null, "12.5", null, "1.3", null, "2.8", null, "0.6", null, "9.6", null, "1.1", null, "0.2", null, "0.1", null, "73.1", null, "1.5", null, "20.9", null, "1.2", null, "11.8", null, "1.1", null, "3.2", null, "0.6", null, "8.5", null, "0.9", null, "40.4", null, "1.8", null, "20.9", null, "1.3", null, "79.1", null, "1.3", null, "30.1", null, "1.6", null, "69.9", null, "1.6", null, "46.2", null, "1.2", null, "46.3", null, "1.4", null, "0.2", null, "0.1", null, "1.6", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "0.8", null, "0.3", null, "4.9", null, "0.7", null, "2.6", null, "0.5", null, "45.7", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.2", null, "1.3", null, "36.3", null, "2.1", null, "45.6", null, "2.1", null, "66515", null, "4855", null, "27577", null, "3142", null, "38938", null, "3844", null, "15974", null, "2182", null, "28781", null, "3375", null, "4642", null, "1400", null, "24139", null, "3207", null, "21760", null, "2770", null, "27915", null, "3112", null, "9633", null, "1473", null, "17964", null, "2729", null, "2616", null, "1091", null, "15348", null, "2707", null, "318", null, "336", null, "38600", null, "3811", null, "6341", null, "1414", null, "10817", null, "2008", null, "2026", null, "759", null, "8791", null, "1846", null, "21442", null, "2732", null, "32931", null, "3136", null, "33584", null, "3764", null, "32423", null, "3365", null, "34092", null, "3578", null, "19714", null, "2202", null, "43282", null, "4146", null, "126", null, "131", null, "30", null, "51", null, "-999999999", "N", "-999999999", "N", "667", null, "451", null, "2696", null, "853", null, "1381", null, "660", null, "19538", null, "2206", null, "26081", null, "2184", null, "44755", null, "4270", null, "10344", null, "1666", null, "21332", null, "2698", null, "13079", null, "2488", null, "21.9", null, "1.6", null, "41.5", null, "3.8", null, "58.5", null, "3.8", null, "24.0", null, "2.9", null, "43.3", null, "3.4", null, "7.0", null, "2.0", null, "36.3", null, "3.6", null, "32.7", null, "3.7", null, "42.0", null, "3.7", null, "14.5", null, "2.1", null, "27.0", null, "3.6", null, "3.9", null, "1.6", null, "23.1", null, "3.6", null, "0.5", null, "0.5", null, "58.0", null, "3.7", null, "9.5", null, "2.0", null, "16.3", null, "2.5", null, "3.0", null, "1.1", null, "13.2", null, "2.4", null, "32.2", null, "3.6", null, "49.5", null, "3.7", null, "50.5", null, "3.7", null, "48.7", null, "3.7", null, "51.3", null, "3.7", null, "29.6", null, "3.0", null, "65.1", null, "3.3", null, "0.2", null, "0.2", null, "0.0", null, "0.1", null, "-999999999.0", "N", "-999999999.0", "N", "1.0", null, "0.7", null, "4.1", null, "1.2", null, "2.1", null, "1.0", null, "29.4", null, "3.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "23.1", null, "3.3", null, "47.7", null, "4.1", null, "29.2", null, "4.5", null, "236750", null, "7471", null, "108302", null, "5067", null, "128448", null, "5598", null, "90679", null, "4475", null, "44664", null, "3815", null, "13686", null, "2313", null, "30978", null, "3249", null, "101407", null, "6127", null, "53547", null, "3779", null, "33537", null, "2805", null, "19820", null, "3071", null, "5947", null, "1715", null, "13873", null, "2742", null, "190", null, "175", null, "183203", null, "7568", null, "57142", null, "3703", null, "24844", null, "2592", null, "7739", null, "1733", null, "17105", null, "1910", null, "101217", null, "6138", null, "30496", null, "3633", null, "206254", null, "6571", null, "58798", null, "4051", null, "177952", null, "6748", null, "120266", null, "4694", null, "97024", null, "5618", null, "540", null, "323", null, "4819", null, "956", null, "-999999999", "N", "-999999999", "N", "1808", null, "674", null, "12214", null, "2122", null, "6510", null, "1395", null, "118988", null, "4738", null, "67338", null, "2759", null, "135343", null, "5642", null, "22372", null, "2156", null, "44003", null, "4026", null, "68968", null, "4366", null, "78.1", null, "1.6", null, "45.7", null, "1.6", null, "54.3", null, "1.6", null, "38.3", null, "1.6", null, "18.9", null, "1.6", null, "5.8", null, "1.0", null, "13.1", null, "1.3", null, "42.8", null, "2.0", null, "22.6", null, "1.6", null, "14.2", null, "1.2", null, "8.4", null, "1.3", null, "2.5", null, "0.7", null, "5.9", null, "1.1", null, "0.1", null, "0.1", null, "77.4", null, "1.6", null, "24.1", null, "1.3", null, "10.5", null, "1.1", null, "3.3", null, "0.7", null, "7.2", null, "0.8", null, "42.8", null, "2.0", null, "12.9", null, "1.4", null, "87.1", null, "1.4", null, "24.8", null, "1.5", null, "75.2", null, "1.5", null, "50.8", null, "1.5", null, "41.0", null, "1.7", null, "0.2", null, "0.1", null, "2.0", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "0.8", null, "0.3", null, "5.2", null, "0.9", null, "2.7", null, "0.6", null, "50.3", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.5", null, "1.5", null, "32.5", null, "2.5", null, "51.0", null, "2.6", null, "26", "12"], ["5001900US2613", "Congressional District 13 (119th Congress), Michigan", "311330", null, "6068", null, "126666", null, "4582", null, "184664", null, "5745", null, "91346", null, "4383", null, "82296", null, "4577", null, "20779", null, "2854", null, "61517", null, "4236", null, "137688", null, "5670", null, "87091", null, "4559", null, "38745", null, "3676", null, "47308", null, "3543", null, "10049", null, "2042", null, "37259", null, "3205", null, "1038", null, "793", null, "224239", null, "6857", null, "52601", null, "3410", null, "34988", null, "3338", null, "10730", null, "2212", null, "24258", null, "2584", null, "136650", null, "5715", null, "77525", null, "5102", null, "233805", null, "6776", null, "101636", null, "4941", null, "209694", null, "6411", null, "131208", null, "4565", null, "140909", null, "5436", null, "1157", null, "662", null, "6320", null, "1394", null, "-999999999", "N", "-999999999", "N", "10131", null, "1512", null, "21394", null, "2724", null, "22821", null, "1809", null, "127061", null, "4514", null, "50937", null, "1367", null, "173642", null, "5183", null, "29119", null, "2950", null, "71297", null, "5046", null, "73226", null, "4124", null, "-888888888", "(X)", "-888888888", "(X)", "40.7", null, "1.3", null, "59.3", null, "1.3", null, "29.3", null, "1.4", null, "26.4", null, "1.4", null, "6.7", null, "0.9", null, "19.8", null, "1.3", null, "44.2", null, "1.5", null, "28.0", null, "1.5", null, "12.4", null, "1.2", null, "15.2", null, "1.1", null, "3.2", null, "0.7", null, "12.0", null, "1.0", null, "0.3", null, "0.3", null, "72.0", null, "1.5", null, "16.9", null, "1.1", null, "11.2", null, "1.0", null, "3.4", null, "0.7", null, "7.8", null, "0.8", null, "43.9", null, "1.5", null, "24.9", null, "1.6", null, "75.1", null, "1.6", null, "32.6", null, "1.5", null, "67.4", null, "1.5", null, "42.1", null, "1.3", null, "45.3", null, "1.4", null, "0.4", null, "0.2", null, "2.0", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "3.3", null, "0.5", null, "6.9", null, "0.9", null, "7.3", null, "0.6", null, "40.8", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.8", null, "1.6", null, "41.1", null, "2.6", null, "42.2", null, "2.1", null, "86557", null, "5073", null, "29777", null, "3212", null, "56780", null, "4292", null, "13854", null, "2203", null, "39368", null, "3490", null, "6762", null, "1715", null, "32606", null, "3129", null, "33335", null, "3691", null, "38805", null, "3481", null, "9987", null, "2061", null, "28487", null, "3071", null, "3817", null, "1145", null, "24670", null, "2954", null, "331", null, "386", null, "47752", null, "4096", null, "3867", null, "1079", null, "10881", null, "1668", null, "2945", null, "1190", null, "7936", null, "1209", null, "33004", null, "3707", null, "48487", null, "4416", null, "38070", null, "3623", null, "40265", null, "3677", null, "46292", null, "3866", null, "17950", null, "2391", null, "58434", null, "4257", null, "487", null, "404", null, "1440", null, "689", null, "-999999999", "N", "-999999999", "N", "2317", null, "921", null, "5929", null, "1627", null, "5086", null, "1105", null, "17161", null, "2321", null, "21566", null, "1806", null, "53222", null, "3908", null, "10723", null, "2119", null, "27770", null, "3470", null, "14729", null, "2150", null, "27.8", null, "1.5", null, "34.4", null, "3.1", null, "65.6", null, "3.1", null, "16.0", null, "2.5", null, "45.5", null, "3.2", null, "7.8", null, "1.8", null, "37.7", null, "3.3", null, "38.5", null, "3.3", null, "44.8", null, "3.2", null, "11.5", null, "2.3", null, "32.9", null, "3.0", null, "4.4", null, "1.3", null, "28.5", null, "3.1", null, "0.4", null, "0.4", null, "55.2", null, "3.2", null, "4.5", null, "1.2", null, "12.6", null, "1.8", null, "3.4", null, "1.3", null, "9.2", null, "1.5", null, "38.1", null, "3.4", null, "56.0", null, "3.6", null, "44.0", null, "3.6", null, "46.5", null, "3.2", null, "53.5", null, "3.2", null, "20.7", null, "2.4", null, "67.5", null, "2.7", null, "0.6", null, "0.5", null, "1.7", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "2.7", null, "1.1", null, "6.8", null, "1.9", null, "5.9", null, "1.3", null, "19.8", null, "2.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "20.1", null, "3.8", null, "52.2", null, "5.0", null, "27.7", null, "3.5", null, "224773", null, "6038", null, "96889", null, "4202", null, "127884", null, "5677", null, "77492", null, "3921", null, "42928", null, "3852", null, "14017", null, "2570", null, "28911", null, "3181", null, "104353", null, "5789", null, "48286", null, "3830", null, "28758", null, "2860", null, "18821", null, "2631", null, "6232", null, "1693", null, "12589", null, "2204", null, "707", null, "640", null, "176487", null, "6403", null, "48734", null, "3468", null, "24107", null, "2875", null, "7785", null, "1769", null, "16322", null, "2316", null, "103646", null, "5789", null, "29038", null, "3137", null, "195735", null, "6351", null, "61371", null, "4239", null, "163402", null, "6566", null, "113258", null, "4412", null, "82475", null, "4865", null, "670", null, "402", null, "4880", null, "1336", null, "-999999999", "N", "-999999999", "N", "7814", null, "1322", null, "15465", null, "2189", null, "17735", null, "1755", null, "109900", null, "4462", null, "63776", null, "3350", null, "120420", null, "5379", null, "18396", null, "2285", null, "43527", null, "4008", null, "58497", null, "4097", null, "72.2", null, "1.5", null, "43.1", null, "1.7", null, "56.9", null, "1.7", null, "34.5", null, "1.6", null, "19.1", null, "1.6", null, "6.2", null, "1.1", null, "12.9", null, "1.4", null, "46.4", null, "2.1", null, "21.5", null, "1.7", null, "12.8", null, "1.3", null, "8.4", null, "1.2", null, "2.8", null, "0.8", null, "5.6", null, "1.0", null, "0.3", null, "0.3", null, "78.5", null, "1.7", null, "21.7", null, "1.5", null, "10.7", null, "1.2", null, "3.5", null, "0.8", null, "7.3", null, "1.0", null, "46.1", null, "2.1", null, "12.9", null, "1.4", null, "87.1", null, "1.4", null, "27.3", null, "1.9", null, "72.7", null, "1.9", null, "50.4", null, "1.7", null, "36.7", null, "1.7", null, "0.3", null, "0.2", null, "2.2", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "3.5", null, "0.6", null, "6.9", null, "0.9", null, "7.9", null, "0.8", null, "48.9", null, "1.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.3", null, "1.8", null, "36.1", null, "2.8", null, "48.6", null, "2.8", null, "26", "13"], ["5001900US2701", "Congressional District 1 (119th Congress), Minnesota", "293765", null, "2900", null, "124150", null, "2421", null, "169615", null, "3240", null, "143589", null, "3320", null, "34948", null, "2412", null, "12916", null, "1651", null, "22032", null, "2008", null, "115228", null, "3350", null, "75768", null, "2781", null, "52652", null, "2637", null, "22663", null, "1899", null, "8366", null, "1284", null, "14297", null, "1712", null, "453", null, "257", null, "217997", null, "3349", null, "90937", null, "2670", null, "12285", null, "1572", null, "4550", null, "831", null, "7735", null, "1272", null, "114775", null, "3348", null, "32081", null, "2743", null, "261684", null, "3908", null, "70489", null, "3568", null, "223276", null, "3785", null, "257750", null, "3352", null, "7698", null, "1341", null, "1250", null, "564", null, "7447", null, "927", null, "-999999999", "N", "-999999999", "N", "6620", null, "1453", null, "12870", null, "2155", null, "16469", null, "1744", null, "254039", null, "3148", null, "78573", null, "2825", null, "178537", null, "3264", null, "28025", null, "1667", null, "46243", null, "2672", null, "104269", null, "3758", null, "-888888888", "(X)", "-888888888", "(X)", "42.3", null, "0.8", null, "57.7", null, "0.8", null, "48.9", null, "1.0", null, "11.9", null, "0.8", null, "4.4", null, "0.6", null, "7.5", null, "0.7", null, "39.2", null, "1.0", null, "25.8", null, "0.9", null, "17.9", null, "0.9", null, "7.7", null, "0.6", null, "2.8", null, "0.4", null, "4.9", null, "0.6", null, "0.2", null, "0.1", null, "74.2", null, "0.9", null, "31.0", null, "0.9", null, "4.2", null, "0.5", null, "1.5", null, "0.3", null, "2.6", null, "0.4", null, "39.1", null, "1.0", null, "10.9", null, "0.9", null, "89.1", null, "0.9", null, "24.0", null, "1.2", null, "76.0", null, "1.2", null, "87.7", null, "0.8", null, "2.6", null, "0.5", null, "0.4", null, "0.2", null, "2.5", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "2.3", null, "0.5", null, "4.4", null, "0.7", null, "5.6", null, "0.6", null, "86.5", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.7", null, "0.9", null, "25.9", null, "1.5", null, "58.4", null, "1.5", null, "21145", null, "2460", null, "6866", null, "1197", null, "14279", null, "1942", null, "5292", null, "1145", null, "6303", null, "1302", null, "1067", null, "374", null, "5236", null, "1256", null, "9550", null, "1880", null, "8099", null, "1560", null, "3472", null, "1021", null, "4620", null, "1114", null, "525", null, "200", null, "4095", null, "1061", null, "7", null, "12", null, "13046", null, "2103", null, "1820", null, "594", null, "1683", null, "657", null, "542", null, "306", null, "1141", null, "619", null, "9543", null, "1879", null, "7927", null, "1455", null, "13218", null, "1758", null, "9801", null, "1837", null, "11344", null, "1898", null, "16968", null, "2067", null, "1732", null, "945", null, "36", null, "48", null, "594", null, "359", null, "-999999999", "N", "-999999999", "N", "993", null, "934", null, "822", null, "385", null, "2455", null, "1402", null, "15755", null, "1772", null, "32424", null, "6149", null, "11595", null, "1680", null, "1472", null, "545", null, "5036", null, "1075", null, "5087", null, "1053", null, "7.2", null, "0.8", null, "32.5", null, "4.4", null, "67.5", null, "4.4", null, "25.0", null, "4.6", null, "29.8", null, "5.8", null, "5.0", null, "1.8", null, "24.8", null, "5.5", null, "45.2", null, "6.2", null, "38.3", null, "6.3", null, "16.4", null, "4.4", null, "21.8", null, "5.0", null, "2.5", null, "1.0", null, "19.4", null, "4.8", null, "0.0", null, "0.1", null, "61.7", null, "6.3", null, "8.6", null, "2.7", null, "8.0", null, "3.1", null, "2.6", null, "1.5", null, "5.4", null, "2.9", null, "45.1", null, "6.2", null, "37.5", null, "4.9", null, "62.5", null, "4.9", null, "46.4", null, "6.7", null, "53.6", null, "6.7", null, "80.2", null, "5.5", null, "8.2", null, "4.2", null, "0.2", null, "0.2", null, "2.8", null, "1.7", null, "-999999999.0", "N", "-999999999.0", "N", "4.7", null, "4.3", null, "3.9", null, "1.9", null, "11.6", null, "6.1", null, "74.5", null, "6.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.7", null, "4.3", null, "43.4", null, "6.5", null, "43.9", null, "6.9", null, "272620", null, "3922", null, "117284", null, "2622", null, "155336", null, "3428", null, "138297", null, "3434", null, "28645", null, "2278", null, "11849", null, "1620", null, "16796", null, "1853", null, "105678", null, "3290", null, "67669", null, "2817", null, "49180", null, "2498", null, "18043", null, "1807", null, "7841", null, "1304", null, "10202", null, "1503", null, "446", null, "256", null, "204951", null, "3581", null, "89117", null, "2770", null, "10602", null, "1417", null, "4008", null, "796", null, "6594", null, "1139", null, "105232", null, "3285", null, "24154", null, "2366", null, "248466", null, "4311", null, "60688", null, "3340", null, "211932", null, "4019", null, "240782", null, "3825", null, "5966", null, "1409", null, "1214", null, "548", null, "6853", null, "1030", null, "-999999999", "N", "-999999999", "N", "5627", null, "1193", null, "12048", null, "2077", null, "14014", null, "1828", null, "238284", null, "3800", null, "82233", null, "1691", null, "166942", null, "3594", null, "26553", null, "1519", null, "41207", null, "2641", null, "99182", null, "3756", null, "92.8", null, "0.8", null, "43.0", null, "0.8", null, "57.0", null, "0.8", null, "50.7", null, "1.1", null, "10.5", null, "0.8", null, "4.3", null, "0.6", null, "6.2", null, "0.7", null, "38.8", null, "1.0", null, "24.8", null, "0.9", null, "18.0", null, "0.8", null, "6.6", null, "0.7", null, "2.9", null, "0.5", null, "3.7", null, "0.5", null, "0.2", null, "0.1", null, "75.2", null, "0.9", null, "32.7", null, "1.0", null, "3.9", null, "0.5", null, "1.5", null, "0.3", null, "2.4", null, "0.4", null, "38.6", null, "1.0", null, "8.9", null, "0.9", null, "91.1", null, "0.9", null, "22.3", null, "1.1", null, "77.7", null, "1.1", null, "88.3", null, "0.9", null, "2.2", null, "0.5", null, "0.4", null, "0.2", null, "2.5", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "2.1", null, "0.4", null, "4.4", null, "0.7", null, "5.1", null, "0.7", null, "87.4", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.9", null, "0.9", null, "24.7", null, "1.6", null, "59.4", null, "1.6", null, "27", "01"], ["5001900US2702", "Congressional District 2 (119th Congress), Minnesota", "282190", null, "3152", null, "113430", null, "2803", null, "168760", null, "3626", null, "156443", null, "4254", null, "37570", null, "3308", null, "11605", null, "1728", null, "25965", null, "2539", null, "88177", null, "3761", null, "89640", null, "3330", null, "67524", null, "3324", null, "21736", null, "2461", null, "6764", null, "1299", null, "14972", null, "1995", null, "380", null, "417", null, "192550", null, "3873", null, "88919", null, "3120", null, "15834", null, "2532", null, "4841", null, "1390", null, "10993", null, "1873", null, "87797", null, "3778", null, "19403", null, "2083", null, "262787", null, "3911", null, "59980", null, "3402", null, "222210", null, "4353", null, "228235", null, "3332", null, "19114", null, "1819", null, "1123", null, "593", null, "13517", null, "1252", null, "-999999999", "N", "-999999999", "N", "6966", null, "1250", null, "12910", null, "1734", null, "15275", null, "1273", null, "224789", null, "3294", null, "108162", null, "2848", null, "194013", null, "4042", null, "22260", null, "2008", null, "42320", null, "2973", null, "129433", null, "3595", null, "-888888888", "(X)", "-888888888", "(X)", "40.2", null, "1.0", null, "59.8", null, "1.0", null, "55.4", null, "1.4", null, "13.3", null, "1.2", null, "4.1", null, "0.6", null, "9.2", null, "0.9", null, "31.2", null, "1.3", null, "31.8", null, "1.1", null, "23.9", null, "1.1", null, "7.7", null, "0.9", null, "2.4", null, "0.5", null, "5.3", null, "0.7", null, "0.1", null, "0.1", null, "68.2", null, "1.1", null, "31.5", null, "1.1", null, "5.6", null, "0.9", null, "1.7", null, "0.5", null, "3.9", null, "0.7", null, "31.1", null, "1.3", null, "6.9", null, "0.7", null, "93.1", null, "0.7", null, "21.3", null, "1.2", null, "78.7", null, "1.2", null, "80.9", null, "0.9", null, "6.8", null, "0.6", null, "0.4", null, "0.2", null, "4.8", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "2.5", null, "0.4", null, "4.6", null, "0.6", null, "5.4", null, "0.5", null, "79.7", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.5", null, "1.0", null, "21.8", null, "1.4", null, "66.7", null, "1.5", null, "13768", null, "2054", null, "5094", null, "1070", null, "8674", null, "1683", null, "3540", null, "1024", null, "4750", null, "1206", null, "949", null, "492", null, "3801", null, "1026", null, "5478", null, "1430", null, "6299", null, "1398", null, "2906", null, "959", null, "3156", null, "940", null, "589", null, "362", null, "2567", null, "793", null, "237", null, "341", null, "7469", null, "1596", null, "634", null, "335", null, "1594", null, "708", null, "360", null, "307", null, "1234", null, "599", null, "5241", null, "1388", null, "5171", null, "1219", null, "8597", null, "1728", null, "7163", null, "1576", null, "6605", null, "1442", null, "7599", null, "1523", null, "3202", null, "1097", null, "318", null, "305", null, "618", null, "425", null, "-999999999", "N", "-999999999", "N", "541", null, "446", null, "1341", null, "654", null, "1148", null, "570", null, "7422", null, "1506", null, "40087", null, "13468", null, "8290", null, "1520", null, "1584", null, "562", null, "2555", null, "763", null, "4151", null, "1107", null, "4.9", null, "0.7", null, "37.0", null, "6.5", null, "63.0", null, "6.5", null, "25.7", null, "6.8", null, "34.5", null, "7.3", null, "6.9", null, "3.4", null, "27.6", null, "6.5", null, "39.8", null, "7.8", null, "45.8", null, "7.9", null, "21.1", null, "6.7", null, "22.9", null, "5.9", null, "4.3", null, "2.5", null, "18.6", null, "5.2", null, "1.7", null, "2.4", null, "54.2", null, "7.9", null, "4.6", null, "2.3", null, "11.6", null, "4.9", null, "2.6", null, "2.2", null, "9.0", null, "4.2", null, "38.1", null, "7.9", null, "37.6", null, "7.5", null, "62.4", null, "7.5", null, "52.0", null, "8.1", null, "48.0", null, "8.1", null, "55.2", null, "7.3", null, "23.3", null, "6.9", null, "2.3", null, "2.2", null, "4.5", null, "3.0", null, "-999999999.0", "N", "-999999999.0", "N", "3.9", null, "3.2", null, "9.7", null, "4.7", null, "8.3", null, "4.2", null, "53.9", null, "7.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "19.1", null, "6.4", null, "30.8", null, "7.5", null, "50.1", null, "8.4", null, "268422", null, "3796", null, "108336", null, "2901", null, "160086", null, "4021", null, "152903", null, "4347", null, "32820", null, "3238", null, "10656", null, "1708", null, "22164", null, "2611", null, "82699", null, "3486", null, "83341", null, "3505", null, "64618", null, "3361", null, "18580", null, "2420", null, "6175", null, "1228", null, "12405", null, "2099", null, "143", null, "147", null, "185081", null, "3785", null, "88285", null, "3114", null, "14240", null, "2367", null, "4481", null, "1374", null, "9759", null, "1776", null, "82556", null, "3493", null, "14232", null, "1789", null, "254190", null, "4051", null, "52817", null, "3233", null, "215605", null, "4575", null, "220636", null, "3751", null, "15912", null, "2104", null, "805", null, "436", null, "12899", null, "1132", null, "-999999999", "N", "-999999999", "N", "6425", null, "1247", null, "11569", null, "1538", null, "14127", null, "1360", null, "217367", null, "3681", null, "111023", null, "2139", null, "185723", null, "4466", null, "20676", null, "1991", null, "39765", null, "3053", null, "125282", null, "3770", null, "95.1", null, "0.7", null, "40.4", null, "1.1", null, "59.6", null, "1.1", null, "57.0", null, "1.5", null, "12.2", null, "1.2", null, "4.0", null, "0.6", null, "8.3", null, "1.0", null, "30.8", null, "1.3", null, "31.0", null, "1.2", null, "24.1", null, "1.2", null, "6.9", null, "0.9", null, "2.3", null, "0.5", null, "4.6", null, "0.8", null, "0.1", null, "0.1", null, "69.0", null, "1.2", null, "32.9", null, "1.1", null, "5.3", null, "0.9", null, "1.7", null, "0.5", null, "3.6", null, "0.7", null, "30.8", null, "1.3", null, "5.3", null, "0.7", null, "94.7", null, "0.7", null, "19.7", null, "1.2", null, "80.3", null, "1.2", null, "82.2", null, "1.1", null, "5.9", null, "0.8", null, "0.3", null, "0.2", null, "4.8", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "2.4", null, "0.5", null, "4.3", null, "0.6", null, "5.3", null, "0.5", null, "81.0", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.1", null, "1.0", null, "21.4", null, "1.5", null, "67.5", null, "1.6", null, "27", "02"], ["5001900US2703", "Congressional District 3 (119th Congress), Minnesota", "288824", null, "5554", null, "122755", null, "4243", null, "166069", null, "4875", null, "146358", null, "4369", null, "38262", null, "3322", null, "16253", null, "2449", null, "22009", null, "2236", null, "104204", null, "5341", null, "83778", null, "3502", null, "60226", null, "3285", null, "22483", null, "2882", null, "9196", null, "1893", null, "13287", null, "2053", null, "1069", null, "643", null, "205046", null, "6096", null, "86132", null, "3727", null, "15779", null, "2043", null, "7057", null, "1681", null, "8722", null, "1358", null, "103135", null, "5324", null, "18914", null, "2112", null, "269910", null, "5977", null, "59794", null, "3475", null, "229030", null, "5618", null, "225114", null, "5379", null, "24099", null, "2965", null, "-999999999", "N", "-999999999", "N", "20662", null, "1956", null, "-999999999", "N", "-999999999", "N", "5230", null, "1228", null, "12704", null, "2102", null, "8029", null, "1398", null, "223989", null, "5337", null, "106557", null, "3383", null, "184620", null, "4782", null, "24135", null, "2136", null, "45895", null, "3459", null, "114590", null, "4137", null, "-888888888", "(X)", "-888888888", "(X)", "42.5", null, "1.2", null, "57.5", null, "1.2", null, "50.7", null, "1.4", null, "13.2", null, "1.1", null, "5.6", null, "0.8", null, "7.6", null, "0.8", null, "36.1", null, "1.5", null, "29.0", null, "1.3", null, "20.9", null, "1.2", null, "7.8", null, "1.0", null, "3.2", null, "0.7", null, "4.6", null, "0.7", null, "0.4", null, "0.2", null, "71.0", null, "1.3", null, "29.8", null, "1.2", null, "5.5", null, "0.7", null, "2.4", null, "0.6", null, "3.0", null, "0.5", null, "35.7", null, "1.5", null, "6.5", null, "0.7", null, "93.5", null, "0.7", null, "20.7", null, "1.1", null, "79.3", null, "1.1", null, "77.9", null, "1.2", null, "8.3", null, "1.0", null, "-999999999.0", "N", "-999999999.0", "N", "7.2", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "1.8", null, "0.4", null, "4.4", null, "0.7", null, "2.8", null, "0.5", null, "77.6", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.1", null, "1.1", null, "24.9", null, "1.7", null, "62.1", null, "1.8", null, "16928", null, "2200", null, "7239", null, "1504", null, "9689", null, "1837", null, "3509", null, "972", null, "6610", null, "1531", null, "1850", null, "995", null, "4760", null, "1166", null, "6809", null, "1417", null, "7497", null, "1523", null, "2494", null, "937", null, "4553", null, "1348", null, "1000", null, "689", null, "3553", null, "1176", null, "450", null, "534", null, "9431", null, "1771", null, "1015", null, "381", null, "2057", null, "826", null, "850", null, "677", null, "1207", null, "624", null, "6359", null, "1388", null, "6450", null, "1549", null, "10478", null, "1771", null, "8939", null, "1786", null, "7989", null, "1600", null, "9180", null, "1502", null, "4837", null, "1491", null, "-999999999", "N", "-999999999", "N", "1325", null, "522", null, "-999999999", "N", "-999999999", "N", "630", null, "480", null, "936", null, "549", null, "900", null, "545", null, "9104", null, "1498", null, "37348", null, "7881", null, "10119", null, "1698", null, "1164", null, "685", null, "4672", null, "1317", null, "4283", null, "1197", null, "5.9", null, "0.8", null, "42.8", null, "7.3", null, "57.2", null, "7.3", null, "20.7", null, "5.5", null, "39.0", null, "7.0", null, "10.9", null, "5.5", null, "28.1", null, "6.0", null, "40.2", null, "6.4", null, "44.3", null, "7.2", null, "14.7", null, "5.2", null, "26.9", null, "6.9", null, "5.9", null, "4.0", null, "21.0", null, "6.3", null, "2.7", null, "3.2", null, "55.7", null, "7.2", null, "6.0", null, "2.3", null, "12.2", null, "4.6", null, "5.0", null, "3.8", null, "7.1", null, "3.7", null, "37.6", null, "5.8", null, "38.1", null, "7.4", null, "61.9", null, "7.4", null, "52.8", null, "7.6", null, "47.2", null, "7.6", null, "54.2", null, "7.2", null, "28.6", null, "7.4", null, "-999999999.0", "N", "-999999999.0", "N", "7.8", null, "2.9", null, "-999999999.0", "N", "-999999999.0", "N", "3.7", null, "2.7", null, "5.5", null, "3.2", null, "5.3", null, "3.1", null, "53.8", null, "7.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.5", null, "6.6", null, "46.2", null, "9.6", null, "42.3", null, "10.0", null, "271896", null, "6203", null, "115516", null, "4223", null, "156380", null, "5181", null, "142849", null, "4499", null, "31652", null, "3030", null, "14403", null, "2379", null, "17249", null, "2304", null, "97395", null, "5064", null, "76281", null, "3717", null, "57732", null, "3189", null, "17930", null, "2593", null, "8196", null, "1800", null, "9734", null, "1968", null, "619", null, "323", null, "195615", null, "6266", null, "85117", null, "3738", null, "13722", null, "1881", null, "6207", null, "1563", null, "7515", null, "1270", null, "96776", null, "5094", null, "12464", null, "1495", null, "259432", null, "6379", null, "50855", null, "3405", null, "221041", null, "5694", null, "215934", null, "5848", null, "19262", null, "2823", null, "-999999999", "N", "-999999999", "N", "19337", null, "2038", null, "-999999999", "N", "-999999999", "N", "4600", null, "1211", null, "11768", null, "2034", null, "7129", null, "1386", null, "214885", null, "5796", null, "111103", null, "3895", null, "174501", null, "5097", null, "22971", null, "1999", null, "41223", null, "3193", null, "110307", null, "4169", null, "94.1", null, "0.8", null, "42.5", null, "1.3", null, "57.5", null, "1.3", null, "52.5", null, "1.4", null, "11.6", null, "1.1", null, "5.3", null, "0.9", null, "6.3", null, "0.8", null, "35.8", null, "1.5", null, "28.1", null, "1.3", null, "21.2", null, "1.2", null, "6.6", null, "0.9", null, "3.0", null, "0.7", null, "3.6", null, "0.7", null, "0.2", null, "0.1", null, "71.9", null, "1.3", null, "31.3", null, "1.2", null, "5.0", null, "0.7", null, "2.3", null, "0.6", null, "2.8", null, "0.5", null, "35.6", null, "1.5", null, "4.6", null, "0.6", null, "95.4", null, "0.6", null, "18.7", null, "1.1", null, "81.3", null, "1.1", null, "79.4", null, "1.3", null, "7.1", null, "1.0", null, "-999999999.0", "N", "-999999999.0", "N", "7.1", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "1.7", null, "0.4", null, "4.3", null, "0.7", null, "2.6", null, "0.5", null, "79.0", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.2", null, "1.1", null, "23.6", null, "1.6", null, "63.2", null, "1.7", null, "27", "03"], ["5001900US2704", "Congressional District 4 (119th Congress), Minnesota", "288496", null, "3387", null, "115793", null, "2774", null, "172703", null, "3508", null, "117958", null, "4244", null, "50415", null, "3771", null, "13022", null, "1968", null, "37393", null, "2887", null, "120123", null, "4453", null, "78626", null, "3601", null, "48008", null, "2784", null, "29993", null, "3368", null, "6768", null, "1600", null, "23225", null, "2649", null, "625", null, "394", null, "209870", null, "4508", null, "69950", null, "3087", null, "20422", null, "2768", null, "6254", null, "1537", null, "14168", null, "2075", null, "119498", null, "4496", null, "32456", null, "3118", null, "256040", null, "3934", null, "72916", null, "4226", null, "215580", null, "5317", null, "208434", null, "2961", null, "28586", null, "1977", null, "1189", null, "629", null, "26010", null, "1768", null, "-999999999", "N", "-999999999", "N", "8413", null, "1557", null, "15632", null, "2091", null, "18410", null, "1903", null, "204764", null, "2849", null, "84731", null, "3327", null, "168373", null, "3981", null, "25237", null, "2318", null, "49377", null, "3680", null, "93759", null, "4021", null, "-888888888", "(X)", "-888888888", "(X)", "40.1", null, "0.9", null, "59.9", null, "0.9", null, "40.9", null, "1.4", null, "17.5", null, "1.3", null, "4.5", null, "0.7", null, "13.0", null, "1.0", null, "41.6", null, "1.4", null, "27.3", null, "1.2", null, "16.6", null, "0.9", null, "10.4", null, "1.2", null, "2.3", null, "0.6", null, "8.1", null, "0.9", null, "0.2", null, "0.1", null, "72.7", null, "1.2", null, "24.2", null, "1.1", null, "7.1", null, "1.0", null, "2.2", null, "0.5", null, "4.9", null, "0.7", null, "41.4", null, "1.4", null, "11.3", null, "1.1", null, "88.7", null, "1.1", null, "25.3", null, "1.5", null, "74.7", null, "1.5", null, "72.2", null, "0.9", null, "9.9", null, "0.7", null, "0.4", null, "0.2", null, "9.0", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "2.9", null, "0.5", null, "5.4", null, "0.7", null, "6.4", null, "0.6", null, "71.0", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.0", null, "1.3", null, "29.3", null, "2.0", null, "55.7", null, "2.2", null, "30434", null, "3076", null, "10773", null, "1620", null, "19661", null, "2903", null, "5917", null, "1450", null, "14626", null, "2258", null, "2009", null, "776", null, "12617", null, "2132", null, "9891", null, "1550", null, "13760", null, "2312", null, "4735", null, "1328", null, "8816", null, "2097", null, "1174", null, "604", null, "7642", null, "2019", null, "209", null, "230", null, "16674", null, "2131", null, "1182", null, "611", null, "5810", null, "1323", null, "835", null, "407", null, "4975", null, "1241", null, "9682", null, "1534", null, "13467", null, "2057", null, "16967", null, "2371", null, "16777", null, "2202", null, "13657", null, "2406", null, "10719", null, "1566", null, "10098", null, "2073", null, "514", null, "573", null, "6021", null, "1313", null, "-999999999", "N", "-999999999", "N", "938", null, "675", null, "1981", null, "749", null, "2210", null, "1206", null, "10290", null, "1473", null, "31540", null, "5769", null, "20543", null, "2504", null, "3726", null, "1360", null, "8419", null, "1901", null, "8398", null, "1589", null, "10.5", null, "1.0", null, "35.4", null, "5.2", null, "64.6", null, "5.2", null, "19.4", null, "4.3", null, "48.1", null, "5.5", null, "6.6", null, "2.5", null, "41.5", null, "5.5", null, "32.5", null, "4.1", null, "45.2", null, "5.4", null, "15.6", null, "4.1", null, "29.0", null, "6.0", null, "3.9", null, "2.0", null, "25.1", null, "5.9", null, "0.7", null, "0.8", null, "54.8", null, "5.4", null, "3.9", null, "2.0", null, "19.1", null, "4.2", null, "2.7", null, "1.3", null, "16.3", null, "4.0", null, "31.8", null, "4.2", null, "44.2", null, "5.2", null, "55.8", null, "5.2", null, "55.1", null, "5.7", null, "44.9", null, "5.7", null, "35.2", null, "4.3", null, "33.2", null, "5.1", null, "1.7", null, "1.9", null, "19.8", null, "4.3", null, "-999999999.0", "N", "-999999999.0", "N", "3.1", null, "2.1", null, "6.5", null, "2.5", null, "7.3", null, "3.8", null, "33.8", null, "4.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.1", null, "6.0", null, "41.0", null, "7.3", null, "40.9", null, "7.2", null, "258062", null, "4083", null, "105020", null, "2537", null, "153042", null, "3975", null, "112041", null, "4050", null, "35789", null, "3309", null, "11013", null, "1729", null, "24776", null, "2872", null, "110232", null, "4494", null, "64866", null, "3440", null, "43273", null, "2644", null, "21177", null, "2991", null, "5594", null, "1383", null, "15583", null, "2499", null, "416", null, "320", null, "193196", null, "4462", null, "68768", null, "3026", null, "14612", null, "2293", null, "5419", null, "1416", null, "9193", null, "1675", null, "109816", null, "4511", null, "18989", null, "2141", null, "239073", null, "4289", null, "56139", null, "3693", null, "201923", null, "5117", null, "197715", null, "3378", null, "18488", null, "2421", null, "675", null, "329", null, "19989", null, "1807", null, "-999999999", "N", "-999999999", "N", "7475", null, "1573", null, "13651", null, "2079", null, "16200", null, "1912", null, "194474", null, "3295", null, "91033", null, "2900", null, "147830", null, "3996", null, "21511", null, "1910", null, "40958", null, "3040", null, "85361", null, "3982", null, "89.5", null, "1.0", null, "40.7", null, "1.0", null, "59.3", null, "1.0", null, "43.4", null, "1.5", null, "13.9", null, "1.3", null, "4.3", null, "0.7", null, "9.6", null, "1.1", null, "42.7", null, "1.5", null, "25.1", null, "1.3", null, "16.8", null, "1.0", null, "8.2", null, "1.2", null, "2.2", null, "0.5", null, "6.0", null, "1.0", null, "0.2", null, "0.1", null, "74.9", null, "1.3", null, "26.6", null, "1.2", null, "5.7", null, "0.9", null, "2.1", null, "0.6", null, "3.6", null, "0.7", null, "42.6", null, "1.5", null, "7.4", null, "0.8", null, "92.6", null, "0.8", null, "21.8", null, "1.4", null, "78.2", null, "1.4", null, "76.6", null, "1.3", null, "7.2", null, "0.9", null, "0.3", null, "0.1", null, "7.7", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "2.9", null, "0.6", null, "5.3", null, "0.8", null, "6.3", null, "0.7", null, "75.4", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.6", null, "1.2", null, "27.7", null, "1.9", null, "57.7", null, "2.2", null, "27", "04"], ["5001900US2705", "Congressional District 5 (119th Congress), Minnesota", "314674", null, "5339", null, "98160", null, "4549", null, "216514", null, "5555", null, "102483", null, "4380", null, "39139", null, "3627", null, "11052", null, "1707", null, "28087", null, "3149", null, "173052", null, "5988", null, "62246", null, "3844", null, "39114", null, "2790", null, "22193", null, "3238", null, "5207", null, "1287", null, "16986", null, "2766", null, "939", null, "649", null, "252428", null, "6464", null, "63369", null, "3990", null, "16946", null, "2201", null, "5845", null, "1483", null, "11101", null, "1895", null, "172113", null, "5974", null, "41504", null, "4123", null, "273170", null, "6315", null, "68914", null, "4960", null, "245760", null, "6488", null, "215365", null, "5429", null, "48533", null, "3730", null, "2301", null, "702", null, "13250", null, "1741", null, "-999999999", "N", "-999999999", "N", "11032", null, "1903", null, "24159", null, "2824", null, "25304", null, "2309", null, "210106", null, "5383", null, "80274", null, "2667", null, "141622", null, "4735", null, "18323", null, "2300", null, "36764", null, "3149", null, "86535", null, "3659", null, "-888888888", "(X)", "-888888888", "(X)", "31.2", null, "1.3", null, "68.8", null, "1.3", null, "32.6", null, "1.4", null, "12.4", null, "1.1", null, "3.5", null, "0.5", null, "8.9", null, "1.0", null, "55.0", null, "1.5", null, "19.8", null, "1.3", null, "12.4", null, "0.9", null, "7.1", null, "1.0", null, "1.7", null, "0.4", null, "5.4", null, "0.9", null, "0.3", null, "0.2", null, "80.2", null, "1.3", null, "20.1", null, "1.2", null, "5.4", null, "0.7", null, "1.9", null, "0.5", null, "3.5", null, "0.6", null, "54.7", null, "1.5", null, "13.2", null, "1.3", null, "86.8", null, "1.3", null, "21.9", null, "1.5", null, "78.1", null, "1.5", null, "68.4", null, "1.3", null, "15.4", null, "1.2", null, "0.7", null, "0.2", null, "4.2", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "3.5", null, "0.6", null, "7.7", null, "0.9", null, "8.0", null, "0.7", null, "66.8", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.9", null, "1.5", null, "26.0", null, "2.0", null, "61.1", null, "2.0", null, "34698", null, "4043", null, "13495", null, "2207", null, "21203", null, "3756", null, "5443", null, "1596", null, "9335", null, "2434", null, "1935", null, "761", null, "7400", null, "2267", null, "19920", null, "3129", null, "10166", null, "2483", null, "3772", null, "1193", null, "5958", null, "2173", null, "560", null, "330", null, "5398", null, "2070", null, "436", null, "468", null, "24532", null, "3385", null, "1671", null, "963", null, "3377", null, "1142", null, "1375", null, "724", null, "2002", null, "898", null, "19484", null, "3125", null, "17081", null, "3166", null, "17617", null, "3137", null, "19070", null, "3086", null, "15628", null, "2932", null, "13492", null, "2417", null, "14781", null, "3024", null, "524", null, "314", null, "1354", null, "694", null, "-999999999", "N", "-999999999", "N", "1645", null, "1035", null, "2902", null, "1077", null, "2784", null, "1090", null, "13301", null, "2375", null, "21198", null, "6910", null, "14778", null, "2979", null, "3107", null, "1486", null, "6668", null, "1733", null, "5003", null, "1665", null, "11.0", null, "1.2", null, "38.9", null, "6.2", null, "61.1", null, "6.2", null, "15.7", null, "4.2", null, "26.9", null, "6.1", null, "5.6", null, "2.1", null, "21.3", null, "5.8", null, "57.4", null, "6.6", null, "29.3", null, "6.0", null, "10.9", null, "3.2", null, "17.2", null, "5.7", null, "1.6", null, "1.0", null, "15.6", null, "5.4", null, "1.3", null, "1.4", null, "70.7", null, "6.0", null, "4.8", null, "2.7", null, "9.7", null, "3.2", null, "4.0", null, "2.0", null, "5.8", null, "2.6", null, "56.2", null, "6.6", null, "49.2", null, "7.0", null, "50.8", null, "7.0", null, "55.0", null, "6.4", null, "45.0", null, "6.4", null, "38.9", null, "6.0", null, "42.6", null, "6.0", null, "1.5", null, "0.9", null, "3.9", null, "2.0", null, "-999999999.0", "N", "-999999999.0", "N", "4.7", null, "2.9", null, "8.4", null, "3.1", null, "8.0", null, "2.8", null, "38.3", null, "6.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "21.0", null, "8.4", null, "45.1", null, "9.2", null, "33.9", null, "9.1", null, "279976", null, "5626", null, "84665", null, "4231", null, "195311", null, "5073", null, "97040", null, "4219", null, "29804", null, "2856", null, "9117", null, "1635", null, "20687", null, "2404", null, "153132", null, "5367", null, "52080", null, "3464", null, "35342", null, "2776", null, "16235", null, "2434", null, "4647", null, "1244", null, "11588", null, "1988", null, "503", null, "442", null, "227896", null, "6355", null, "61698", null, "3788", null, "13569", null, "2090", null, "4470", null, "1394", null, "9099", null, "1623", null, "152629", null, "5374", null, "24423", null, "2671", null, "255553", null, "5666", null, "49844", null, "3723", null, "230132", null, "6088", null, "201873", null, "5382", null, "33752", null, "4135", null, "1777", null, "632", null, "11896", null, "1675", null, "-999999999", "N", "-999999999", "N", "9387", null, "1568", null, "21257", null, "2612", null, "22520", null, "2164", null, "196805", null, "5397", null, "88643", null, "4521", null, "126844", null, "4515", null, "15216", null, "1871", null, "30096", null, "2758", null, "81532", null, "3546", null, "89.0", null, "1.2", null, "30.2", null, "1.3", null, "69.8", null, "1.3", null, "34.7", null, "1.4", null, "10.6", null, "1.0", null, "3.3", null, "0.6", null, "7.4", null, "0.9", null, "54.7", null, "1.4", null, "18.6", null, "1.3", null, "12.6", null, "1.0", null, "5.8", null, "0.9", null, "1.7", null, "0.4", null, "4.1", null, "0.7", null, "0.2", null, "0.2", null, "81.4", null, "1.3", null, "22.0", null, "1.2", null, "4.8", null, "0.7", null, "1.6", null, "0.5", null, "3.2", null, "0.6", null, "54.5", null, "1.4", null, "8.7", null, "0.9", null, "91.3", null, "0.9", null, "17.8", null, "1.3", null, "82.2", null, "1.3", null, "72.1", null, "1.5", null, "12.1", null, "1.4", null, "0.6", null, "0.2", null, "4.2", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "3.4", null, "0.6", null, "7.6", null, "0.9", null, "8.0", null, "0.8", null, "70.3", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.0", null, "1.3", null, "23.7", null, "2.0", null, "64.3", null, "2.1", null, "27", "05"], ["5001900US2706", "Congressional District 6 (119th Congress), Minnesota", "281891", null, "2986", null, "106332", null, "3091", null, "175559", null, "3312", null, "162061", null, "4865", null, "37835", null, "3553", null, "11924", null, "1763", null, "25911", null, "3042", null, "81995", null, "4498", null, "96021", null, "3732", null, "72449", null, "3521", null, "23012", null, "2955", null, "6332", null, "1244", null, "16680", null, "2707", null, "560", null, "424", null, "185870", null, "4259", null, "89612", null, "3262", null, "14823", null, "2131", null, "5592", null, "1269", null, "9231", null, "1641", null, "81435", null, "4379", null, "21421", null, "2556", null, "260470", null, "3687", null, "67091", null, "3762", null, "214800", null, "4273", null, "244877", null, "3568", null, "13169", null, "2118", null, "539", null, "256", null, "7952", null, "1106", null, "-999999999", "N", "-999999999", "N", "3629", null, "1081", null, "11635", null, "2174", null, "8880", null, "1258", null, "242427", null, "3458", null, "105084", null, "2944", null, "199896", null, "4495", null, "24855", null, "1920", null, "46641", null, "3526", null, "128400", null, "4021", null, "-888888888", "(X)", "-888888888", "(X)", "37.7", null, "1.0", null, "62.3", null, "1.0", null, "57.5", null, "1.7", null, "13.4", null, "1.3", null, "4.2", null, "0.6", null, "9.2", null, "1.1", null, "29.1", null, "1.5", null, "34.1", null, "1.3", null, "25.7", null, "1.2", null, "8.2", null, "1.1", null, "2.2", null, "0.4", null, "5.9", null, "1.0", null, "0.2", null, "0.2", null, "65.9", null, "1.3", null, "31.8", null, "1.2", null, "5.3", null, "0.7", null, "2.0", null, "0.4", null, "3.3", null, "0.6", null, "28.9", null, "1.5", null, "7.6", null, "0.9", null, "92.4", null, "0.9", null, "23.8", null, "1.3", null, "76.2", null, "1.3", null, "86.9", null, "0.9", null, "4.7", null, "0.8", null, "0.2", null, "0.1", null, "2.8", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "1.3", null, "0.4", null, "4.1", null, "0.8", null, "3.2", null, "0.4", null, "86.0", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.4", null, "0.9", null, "23.3", null, "1.6", null, "64.2", null, "1.4", null, "19033", null, "2899", null, "5117", null, "1133", null, "13916", null, "2709", null, "4289", null, "1117", null, "9993", null, "2343", null, "1680", null, "765", null, "8313", null, "2013", null, "4751", null, "1154", null, "11613", null, "2595", null, "3123", null, "1057", null, "8490", null, "2234", null, "1403", null, "734", null, "7087", null, "2001", null, "0", null, "157", null, "7420", null, "1240", null, "1166", null, "496", null, "1503", null, "687", null, "277", null, "267", null, "1226", null, "627", null, "4751", null, "1154", null, "6383", null, "1765", null, "12650", null, "2571", null, "8368", null, "1877", null, "10665", null, "2158", null, "11546", null, "1755", null, "3632", null, "1430", null, "108", null, "127", null, "861", null, "585", null, "-999999999", "N", "-999999999", "N", "191", null, "222", null, "2695", null, "1444", null, "1229", null, "1086", null, "11415", null, "1724", null, "51240", null, "11531", null, "14282", null, "2802", null, "1878", null, "835", null, "7749", null, "2062", null, "4655", null, "1295", null, "6.8", null, "1.0", null, "26.9", null, "6.0", null, "73.1", null, "6.0", null, "22.5", null, "4.8", null, "52.5", null, "7.5", null, "8.8", null, "3.6", null, "43.7", null, "7.2", null, "25.0", null, "6.3", null, "61.0", null, "6.7", null, "16.4", null, "4.8", null, "44.6", null, "7.6", null, "7.4", null, "3.5", null, "37.2", null, "7.6", null, "0.0", null, "0.5", null, "39.0", null, "6.7", null, "6.1", null, "2.6", null, "7.9", null, "3.6", null, "1.5", null, "1.4", null, "6.4", null, "3.4", null, "25.0", null, "6.3", null, "33.5", null, "8.2", null, "66.5", null, "8.2", null, "44.0", null, "7.4", null, "56.0", null, "7.4", null, "60.7", null, "6.8", null, "19.1", null, "6.7", null, "0.6", null, "0.7", null, "4.5", null, "2.9", null, "-999999999.0", "N", "-999999999.0", "N", "1.0", null, "1.2", null, "14.2", null, "6.9", null, "6.5", null, "5.4", null, "60.0", null, "6.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.1", null, "5.7", null, "54.3", null, "8.5", null, "32.6", null, "6.9", null, "262858", null, "4467", null, "101215", null, "3142", null, "161643", null, "3801", null, "157772", null, "5008", null, "27842", null, "3066", null, "10244", null, "1640", null, "17598", null, "2468", null, "77244", null, "4401", null, "84408", null, "3874", null, "69326", null, "3609", null, "14522", null, "2391", null, "4929", null, "1114", null, "9593", null, "1980", null, "560", null, "424", null, "178450", null, "4226", null, "88446", null, "3326", null, "13320", null, "1952", null, "5315", null, "1233", null, "8005", null, "1490", null, "76684", null, "4289", null, "15038", null, "2053", null, "247820", null, "4466", null, "58723", null, "3465", null, "204135", null, "4864", null, "233331", null, "3995", null, "9537", null, "1898", null, "431", null, "224", null, "7091", null, "1279", null, "-999999999", "N", "-999999999", "N", "3438", null, "1075", null, "8940", null, "1806", null, "7651", null, "1226", null, "231012", null, "3871", null, "108952", null, "2753", null, "185614", null, "5121", null, "22977", null, "1762", null, "38892", null, "2926", null, "123745", null, "4284", null, "93.2", null, "1.0", null, "38.5", null, "1.0", null, "61.5", null, "1.0", null, "60.0", null, "1.7", null, "10.6", null, "1.1", null, "3.9", null, "0.6", null, "6.7", null, "0.9", null, "29.4", null, "1.6", null, "32.1", null, "1.3", null, "26.4", null, "1.2", null, "5.5", null, "0.9", null, "1.9", null, "0.4", null, "3.6", null, "0.7", null, "0.2", null, "0.2", null, "67.9", null, "1.3", null, "33.6", null, "1.3", null, "5.1", null, "0.7", null, "2.0", null, "0.5", null, "3.0", null, "0.6", null, "29.2", null, "1.5", null, "5.7", null, "0.8", null, "94.3", null, "0.8", null, "22.3", null, "1.3", null, "77.7", null, "1.3", null, "88.8", null, "0.9", null, "3.6", null, "0.7", null, "0.2", null, "0.1", null, "2.7", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "1.3", null, "0.4", null, "3.4", null, "0.7", null, "2.9", null, "0.4", null, "87.9", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.4", null, "0.9", null, "21.0", null, "1.4", null, "66.7", null, "1.3", null, "27", "06"], ["5001900US2707", "Congressional District 7 (119th Congress), Minnesota", "303605", null, "2762", null, "138357", null, "1992", null, "165248", null, "2951", null, "157308", null, "3482", null, "36767", null, "2333", null, "13401", null, "1486", null, "23366", null, "1720", null, "109530", null, "3479", null, "82772", null, "2514", null, "58730", null, "2286", null, "23562", null, "1767", null, "8661", null, "1154", null, "14901", null, "1281", null, "480", null, "315", null, "220833", null, "3141", null, "98578", null, "2552", null, "13205", null, "1277", null, "4740", null, "741", null, "8465", null, "1031", null, "109050", null, "3495", null, "36432", null, "2200", null, "267173", null, "3352", null, "80148", null, "2851", null, "223457", null, "3447", null, "274679", null, "2908", null, "3912", null, "1160", null, "2564", null, "755", null, "2342", null, "618", null, "304", null, "169", null, "5085", null, "954", null, "14719", null, "1574", null, "14894", null, "1373", null, "272039", null, "2865", null, "74454", null, "1899", null, "194075", null, "3752", null, "30865", null, "1363", null, "51002", null, "2696", null, "112208", null, "3198", null, "-888888888", "(X)", "-888888888", "(X)", "45.6", null, "0.7", null, "54.4", null, "0.7", null, "51.8", null, "1.1", null, "12.1", null, "0.8", null, "4.4", null, "0.5", null, "7.7", null, "0.6", null, "36.1", null, "1.1", null, "27.3", null, "0.8", null, "19.3", null, "0.7", null, "7.8", null, "0.6", null, "2.9", null, "0.4", null, "4.9", null, "0.4", null, "0.2", null, "0.1", null, "72.7", null, "0.8", null, "32.5", null, "0.8", null, "4.3", null, "0.4", null, "1.6", null, "0.2", null, "2.8", null, "0.3", null, "35.9", null, "1.1", null, "12.0", null, "0.7", null, "88.0", null, "0.7", null, "26.4", null, "0.9", null, "73.6", null, "0.9", null, "90.5", null, "0.6", null, "1.3", null, "0.4", null, "0.8", null, "0.2", null, "0.8", null, "0.2", null, "0.1", null, "0.1", null, "1.7", null, "0.3", null, "4.8", null, "0.5", null, "4.9", null, "0.4", null, "89.6", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.9", null, "0.6", null, "26.3", null, "1.3", null, "57.8", null, "1.3", null, "30242", null, "2153", null, "11499", null, "1480", null, "18743", null, "2007", null, "5848", null, "927", null, "9852", null, "1287", null, "2231", null, "575", null, "7621", null, "1223", null, "14542", null, "1669", null, "11275", null, "1363", null, "4350", null, "799", null, "6874", null, "971", null, "1805", null, "516", null, "5069", null, "826", null, "51", null, "59", null, "18967", null, "1818", null, "1498", null, "421", null, "2978", null, "1047", null, "426", null, "297", null, "2552", null, "1050", null, "14491", null, "1668", null, "13723", null, "1699", null, "16519", null, "1881", null, "16719", null, "1833", null, "13523", null, "1379", null, "23253", null, "1881", null, "2251", null, "1054", null, "602", null, "373", null, "216", null, "325", null, "120", null, "142", null, "1221", null, "652", null, "2579", null, "668", null, "2870", null, "867", null, "22900", null, "1942", null, "25007", null, "3158", null, "15700", null, "1676", null, "2122", null, "578", null, "7536", null, "1385", null, "6042", null, "1207", null, "10.0", null, "0.7", null, "38.0", null, "4.5", null, "62.0", null, "4.5", null, "19.3", null, "2.7", null, "32.6", null, "3.8", null, "7.4", null, "1.9", null, "25.2", null, "3.7", null, "48.1", null, "4.3", null, "37.3", null, "3.8", null, "14.4", null, "2.3", null, "22.7", null, "3.1", null, "6.0", null, "1.7", null, "16.8", null, "2.7", null, "0.2", null, "0.2", null, "62.7", null, "3.8", null, "5.0", null, "1.4", null, "9.8", null, "3.4", null, "1.4", null, "1.0", null, "8.4", null, "3.4", null, "47.9", null, "4.3", null, "45.4", null, "4.7", null, "54.6", null, "4.7", null, "55.3", null, "4.0", null, "44.7", null, "4.0", null, "76.9", null, "4.3", null, "7.4", null, "3.4", null, "2.0", null, "1.3", null, "0.7", null, "1.1", null, "0.4", null, "0.5", null, "4.0", null, "2.1", null, "8.5", null, "2.1", null, "9.5", null, "2.7", null, "75.7", null, "4.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.5", null, "3.6", null, "48.0", null, "6.9", null, "38.5", null, "6.5", null, "273363", null, "3374", null, "126858", null, "2205", null, "146505", null, "3321", null, "151460", null, "3545", null, "26915", null, "1780", null, "11170", null, "1298", null, "15745", null, "1227", null, "94988", null, "3084", null, "71497", null, "2427", null, "54380", null, "2270", null, "16688", null, "1349", null, "6856", null, "1036", null, "9832", null, "1044", null, "429", null, "313", null, "201866", null, "3231", null, "97080", null, "2472", null, "10227", null, "1027", null, "4314", null, "704", null, "5913", null, "742", null, "94559", null, "3103", null, "22709", null, "1756", null, "250654", null, "3528", null, "63429", null, "2316", null, "209934", null, "3680", null, "251426", null, "3071", null, "1661", null, "941", null, "1962", null, "647", null, "2126", null, "568", null, "184", null, "120", null, "3864", null, "784", null, "12140", null, "1537", null, "12024", null, "1583", null, "249139", null, "3020", null, "80350", null, "1324", null, "178375", null, "3676", null, "28743", null, "1373", null, "43466", null, "2253", null, "106166", null, "2980", null, "90.0", null, "0.7", null, "46.4", null, "0.8", null, "53.6", null, "0.8", null, "55.4", null, "1.1", null, "9.8", null, "0.6", null, "4.1", null, "0.5", null, "5.8", null, "0.4", null, "34.7", null, "1.1", null, "26.2", null, "0.8", null, "19.9", null, "0.8", null, "6.1", null, "0.5", null, "2.5", null, "0.4", null, "3.6", null, "0.4", null, "0.2", null, "0.1", null, "73.8", null, "0.8", null, "35.5", null, "0.8", null, "3.7", null, "0.4", null, "1.6", null, "0.3", null, "2.2", null, "0.3", null, "34.6", null, "1.1", null, "8.3", null, "0.6", null, "91.7", null, "0.6", null, "23.2", null, "0.8", null, "76.8", null, "0.8", null, "92.0", null, "0.7", null, "0.6", null, "0.3", null, "0.7", null, "0.2", null, "0.8", null, "0.2", null, "0.1", null, "0.1", null, "1.4", null, "0.3", null, "4.4", null, "0.5", null, "4.4", null, "0.6", null, "91.1", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.1", null, "0.7", null, "24.4", null, "1.2", null, "59.5", null, "1.2", null, "27", "07"], ["5001900US2708", "Congressional District 8 (119th Congress), Minnesota", "309997", null, "3094", null, "145883", null, "2157", null, "164114", null, "3459", null, "151943", null, "3715", null, "40861", null, "2922", null, "14759", null, "1660", null, "26102", null, "2156", null, "117193", null, "2801", null, "77386", null, "2886", null, "51631", null, "2433", null, "25222", null, "2601", null, "9626", null, "1487", null, "15596", null, "1872", null, "533", null, "379", null, "232611", null, "3382", null, "100312", null, "2864", null, "15639", null, "1493", null, "5133", null, "920", null, "10506", null, "1328", null, "116660", null, "2861", null, "37835", null, "2660", null, "272162", null, "3594", null, "86092", null, "3118", null, "223905", null, "4310", null, "281069", null, "2815", null, "1829", null, "600", null, "8807", null, "810", null, "2999", null, "610", null, "-999999999", "N", "-999999999", "N", "2015", null, "504", null, "13049", null, "1226", null, "4390", null, "747", null, "279925", null, "2769", null, "74635", null, "2494", null, "192804", null, "3488", null, "38830", null, "1751", null, "53001", null, "2903", null, "100973", null, "3186", null, "-888888888", "(X)", "-888888888", "(X)", "47.1", null, "0.8", null, "52.9", null, "0.8", null, "49.0", null, "1.1", null, "13.2", null, "0.9", null, "4.8", null, "0.5", null, "8.4", null, "0.7", null, "37.8", null, "0.9", null, "25.0", null, "0.9", null, "16.7", null, "0.8", null, "8.1", null, "0.8", null, "3.1", null, "0.5", null, "5.0", null, "0.6", null, "0.2", null, "0.1", null, "75.0", null, "0.9", null, "32.4", null, "0.9", null, "5.0", null, "0.5", null, "1.7", null, "0.3", null, "3.4", null, "0.4", null, "37.6", null, "0.9", null, "12.2", null, "0.8", null, "87.8", null, "0.8", null, "27.8", null, "1.0", null, "72.2", null, "1.0", null, "90.7", null, "0.4", null, "0.6", null, "0.2", null, "2.8", null, "0.3", null, "1.0", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "0.7", null, "0.2", null, "4.2", null, "0.4", null, "1.4", null, "0.2", null, "90.3", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "20.1", null, "0.9", null, "27.5", null, "1.3", null, "52.4", null, "1.5", null, "30762", null, "2274", null, "12968", null, "1370", null, "17794", null, "1824", null, "6018", null, "991", null, "9968", null, "1277", null, "2487", null, "689", null, "7481", null, "1202", null, "14776", null, "1591", null, "11209", null, "1420", null, "3910", null, "886", null, "7198", null, "1227", null, "1824", null, "637", null, "5374", null, "1164", null, "101", null, "102", null, "19553", null, "1765", null, "2108", null, "452", null, "2770", null, "566", null, "663", null, "261", null, "2107", null, "517", null, "14675", null, "1584", null, "14863", null, "1683", null, "15899", null, "1576", null, "16825", null, "1893", null, "13937", null, "1625", null, "23848", null, "2060", null, "545", null, "397", null, "2869", null, "541", null, "497", null, "316", null, "-999999999", "N", "-999999999", "N", "141", null, "98", null, "2862", null, "704", null, "445", null, "237", null, "23721", null, "2057", null, "24039", null, "3194", null, "15986", null, "1491", null, "3841", null, "750", null, "6527", null, "1101", null, "5618", null, "965", null, "9.9", null, "0.7", null, "42.2", null, "3.6", null, "57.8", null, "3.6", null, "19.6", null, "2.7", null, "32.4", null, "3.8", null, "8.1", null, "2.2", null, "24.3", null, "3.7", null, "48.0", null, "3.4", null, "36.4", null, "3.6", null, "12.7", null, "2.6", null, "23.4", null, "3.7", null, "5.9", null, "2.0", null, "17.5", null, "3.6", null, "0.3", null, "0.3", null, "63.6", null, "3.6", null, "6.9", null, "1.4", null, "9.0", null, "1.9", null, "2.2", null, "0.9", null, "6.8", null, "1.7", null, "47.7", null, "3.4", null, "48.3", null, "3.8", null, "51.7", null, "3.8", null, "54.7", null, "4.4", null, "45.3", null, "4.4", null, "77.5", null, "2.9", null, "1.8", null, "1.3", null, "9.3", null, "1.8", null, "1.6", null, "1.0", null, "-999999999.0", "N", "-999999999.0", "N", "0.5", null, "0.3", null, "9.3", null, "2.2", null, "1.4", null, "0.8", null, "77.1", null, "2.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "24.0", null, "4.5", null, "40.8", null, "5.0", null, "35.1", null, "5.3", null, "279235", null, "3596", null, "132915", null, "2143", null, "146320", null, "3728", null, "145925", null, "3774", null, "30893", null, "2270", null, "12272", null, "1552", null, "18621", null, "1592", null, "102417", null, "2896", null, "66177", null, "2656", null, "47721", null, "2498", null, "18024", null, "1837", null, "7802", null, "1250", null, "10222", null, "1235", null, "432", null, "375", null, "213058", null, "3684", null, "98204", null, "2827", null, "12869", null, "1450", null, "4470", null, "864", null, "8399", null, "1226", null, "101985", null, "2894", null, "22972", null, "2165", null, "256263", null, "4060", null, "69267", null, "2771", null, "209968", null, "4253", null, "257221", null, "3126", null, "1284", null, "534", null, "5938", null, "748", null, "2502", null, "482", null, "-999999999", "N", "-999999999", "N", "1874", null, "497", null, "10187", null, "1102", null, "3945", null, "692", null, "256204", null, "3055", null, "80927", null, "1639", null, "176818", null, "3667", null, "34989", null, "1676", null, "46474", null, "2622", null, "95355", null, "3328", null, "90.1", null, "0.7", null, "47.6", null, "0.9", null, "52.4", null, "0.9", null, "52.3", null, "1.1", null, "11.1", null, "0.8", null, "4.4", null, "0.5", null, "6.7", null, "0.6", null, "36.7", null, "1.0", null, "23.7", null, "0.9", null, "17.1", null, "0.8", null, "6.5", null, "0.7", null, "2.8", null, "0.4", null, "3.7", null, "0.5", null, "0.2", null, "0.1", null, "76.3", null, "0.9", null, "35.2", null, "0.9", null, "4.6", null, "0.5", null, "1.6", null, "0.3", null, "3.0", null, "0.4", null, "36.5", null, "1.0", null, "8.2", null, "0.8", null, "91.8", null, "0.8", null, "24.8", null, "1.0", null, "75.2", null, "1.0", null, "92.1", null, "0.4", null, "0.5", null, "0.2", null, "2.1", null, "0.3", null, "0.9", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "0.7", null, "0.2", null, "3.6", null, "0.4", null, "1.4", null, "0.2", null, "91.8", null, "0.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "19.8", null, "0.9", null, "26.3", null, "1.3", null, "53.9", null, "1.5", null, "27", "08"], ["5001900US2801", "Congressional District 1 (119th Congress), Mississippi", "302651", null, "3571", null, "124988", null, "3123", null, "177663", null, "3810", null, "138231", null, "5413", null, "63268", null, "4716", null, "15284", null, "2254", null, "47984", null, "4190", null, "101152", null, "5922", null, "95925", null, "4582", null, "60041", null, "3969", null, "35349", null, "3635", null, "6612", null, "1848", null, "28737", null, "3317", null, "535", null, "465", null, "206726", null, "5468", null, "78190", null, "4271", null, "27919", null, "3257", null, "8672", null, "1860", null, "19247", null, "2544", null, "100617", null, "5989", null, "53564", null, "4396", null, "249087", null, "5168", null, "94324", null, "5141", null, "208327", null, "5295", null, "200803", null, "3536", null, "82402", null, "3066", null, "1350", null, "783", null, "2189", null, "654", null, "-999999999", "N", "-999999999", "N", "4981", null, "1342", null, "10901", null, "2097", null, "10078", null, "1347", null, "198200", null, "3430", null, "60524", null, "2346", null, "201499", null, "5669", null, "32330", null, "3201", null, "66445", null, "4275", null, "102724", null, "4987", null, "-888888888", "(X)", "-888888888", "(X)", "41.3", null, "1.0", null, "58.7", null, "1.0", null, "45.7", null, "1.8", null, "20.9", null, "1.6", null, "5.1", null, "0.7", null, "15.9", null, "1.4", null, "33.4", null, "1.8", null, "31.7", null, "1.5", null, "19.8", null, "1.3", null, "11.7", null, "1.2", null, "2.2", null, "0.6", null, "9.5", null, "1.1", null, "0.2", null, "0.2", null, "68.3", null, "1.5", null, "25.8", null, "1.4", null, "9.2", null, "1.1", null, "2.9", null, "0.6", null, "6.4", null, "0.8", null, "33.2", null, "1.9", null, "17.7", null, "1.4", null, "82.3", null, "1.4", null, "31.2", null, "1.6", null, "68.8", null, "1.6", null, "66.3", null, "0.9", null, "27.2", null, "1.0", null, "0.4", null, "0.3", null, "0.7", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "1.6", null, "0.4", null, "3.6", null, "0.7", null, "3.3", null, "0.4", null, "65.5", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.0", null, "1.5", null, "33.0", null, "2.0", null, "51.0", null, "2.0", null, "30004", null, "3256", null, "10737", null, "1933", null, "19267", null, "2749", null, "7455", null, "1724", null, "12714", null, "2261", null, "1592", null, "806", null, "11122", null, "2049", null, "9835", null, "1933", null, "14125", null, "2184", null, "4853", null, "1457", null, "9272", null, "2096", null, "607", null, "512", null, "8665", null, "2075", null, "0", null, "226", null, "15879", null, "2296", null, "2602", null, "997", null, "3442", null, "1091", null, "985", null, "632", null, "2457", null, "805", null, "9835", null, "1933", null, "16645", null, "2545", null, "13359", null, "2287", null, "12916", null, "2019", null, "17088", null, "2819", null, "12960", null, "1822", null, "15317", null, "2793", null, "136", null, "142", null, "0", null, "226", null, "-999999999", "N", "-999999999", "N", "553", null, "510", null, "1038", null, "517", null, "482", null, "364", null, "12919", null, "1830", null, "21440", null, "3620", null, "20169", null, "2345", null, "5108", null, "1240", null, "10166", null, "2009", null, "4895", null, "1390", null, "9.9", null, "1.0", null, "35.8", null, "5.4", null, "64.2", null, "5.4", null, "24.8", null, "5.3", null, "42.4", null, "6.2", null, "5.3", null, "2.6", null, "37.1", null, "5.8", null, "32.8", null, "4.7", null, "47.1", null, "5.1", null, "16.2", null, "4.5", null, "30.9", null, "6.0", null, "2.0", null, "1.7", null, "28.9", null, "6.1", null, "0.0", null, "0.7", null, "52.9", null, "5.1", null, "8.7", null, "3.3", null, "11.5", null, "3.6", null, "3.3", null, "2.1", null, "8.2", null, "2.7", null, "32.8", null, "4.7", null, "55.5", null, "5.9", null, "44.5", null, "5.9", null, "43.0", null, "5.9", null, "57.0", null, "5.9", null, "43.2", null, "5.5", null, "51.0", null, "6.0", null, "0.5", null, "0.5", null, "0.0", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "1.8", null, "1.7", null, "3.5", null, "1.7", null, "1.6", null, "1.2", null, "43.1", null, "5.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "25.3", null, "6.1", null, "50.4", null, "7.2", null, "24.3", null, "6.1", null, "272647", null, "4146", null, "114251", null, "2859", null, "158396", null, "3674", null, "130776", null, "5212", null, "50554", null, "4875", null, "13692", null, "2098", null, "36862", null, "4199", null, "91317", null, "5579", null, "81800", null, "4638", null, "55188", null, "3995", null, "26077", null, "3772", null, "6005", null, "1794", null, "20072", null, "3116", null, "535", null, "465", null, "190847", null, "5420", null, "75588", null, "4095", null, "24477", null, "3076", null, "7687", null, "1724", null, "16790", null, "2505", null, "90782", null, "5667", null, "36919", null, "3771", null, "235728", null, "5324", null, "81408", null, "4960", null, "191239", null, "5351", null, "187843", null, "3535", null, "67085", null, "3804", null, "1214", null, "781", null, "2189", null, "654", null, "-999999999", "N", "-999999999", "N", "4428", null, "1151", null, "9863", null, "1986", null, "9596", null, "1328", null, "185281", null, "3454", null, "65425", null, "2652", null, "181330", null, "6091", null, "27222", null, "2737", null, "56279", null, "4153", null, "97829", null, "4918", null, "90.1", null, "1.0", null, "41.9", null, "0.9", null, "58.1", null, "0.9", null, "48.0", null, "1.9", null, "18.5", null, "1.7", null, "5.0", null, "0.8", null, "13.5", null, "1.5", null, "33.5", null, "2.0", null, "30.0", null, "1.6", null, "20.2", null, "1.4", null, "9.6", null, "1.4", null, "2.2", null, "0.7", null, "7.4", null, "1.1", null, "0.2", null, "0.2", null, "70.0", null, "1.6", null, "27.7", null, "1.5", null, "9.0", null, "1.1", null, "2.8", null, "0.6", null, "6.2", null, "0.9", null, "33.3", null, "2.0", null, "13.5", null, "1.4", null, "86.5", null, "1.4", null, "29.9", null, "1.7", null, "70.1", null, "1.7", null, "68.9", null, "1.2", null, "24.6", null, "1.3", null, "0.4", null, "0.3", null, "0.8", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "1.6", null, "0.4", null, "3.6", null, "0.7", null, "3.5", null, "0.5", null, "68.0", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.0", null, "1.3", null, "31.0", null, "2.1", null, "54.0", null, "2.1", null, "28", "01"], ["5001900US2802", "Congressional District 2 (119th Congress), Mississippi", "282159", null, "4812", null, "131730", null, "3160", null, "150429", null, "4712", null, "98783", null, "4443", null, "73586", null, "4350", null, "12300", null, "1996", null, "61286", null, "4136", null, "109790", null, "4771", null, "76111", null, "4435", null, "31789", null, "2897", null, "43426", null, "3496", null, "5738", null, "1490", null, "37688", null, "3074", null, "896", null, "507", null, "206048", null, "4618", null, "66994", null, "3222", null, "30160", null, "3052", null, "6562", null, "1374", null, "23598", null, "2631", null, "108894", null, "4733", null, "65013", null, "3775", null, "217146", null, "5238", null, "96279", null, "4539", null, "185880", null, "5456", null, "92338", null, "2746", null, "178690", null, "4319", null, "1184", null, "577", null, "1547", null, "719", null, "-999999999", "N", "-999999999", "N", "2305", null, "881", null, "6047", null, "1302", null, "3085", null, "1098", null, "92158", null, "2764", null, "47495", null, "2042", null, "172369", null, "5288", null, "37035", null, "2777", null, "61026", null, "4594", null, "74308", null, "4478", null, "-888888888", "(X)", "-888888888", "(X)", "46.7", null, "1.1", null, "53.3", null, "1.1", null, "35.0", null, "1.4", null, "26.1", null, "1.5", null, "4.4", null, "0.7", null, "21.7", null, "1.5", null, "38.9", null, "1.6", null, "27.0", null, "1.4", null, "11.3", null, "1.0", null, "15.4", null, "1.2", null, "2.0", null, "0.5", null, "13.4", null, "1.1", null, "0.3", null, "0.2", null, "73.0", null, "1.4", null, "23.7", null, "1.1", null, "10.7", null, "1.1", null, "2.3", null, "0.5", null, "8.4", null, "0.9", null, "38.6", null, "1.5", null, "23.0", null, "1.3", null, "77.0", null, "1.3", null, "34.1", null, "1.5", null, "65.9", null, "1.5", null, "32.7", null, "0.9", null, "63.3", null, "1.1", null, "0.4", null, "0.2", null, "0.5", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "0.8", null, "0.3", null, "2.1", null, "0.5", null, "1.1", null, "0.4", null, "32.7", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "21.5", null, "1.6", null, "35.4", null, "2.3", null, "43.1", null, "2.2", null, "46114", null, "3627", null, "18570", null, "2309", null, "27544", null, "3110", null, "5144", null, "1074", null, "23728", null, "2698", null, "2711", null, "1225", null, "21017", null, "2468", null, "17242", null, "2334", null, "20909", null, "2658", null, "2939", null, "986", null, "17480", null, "2295", null, "1542", null, "1007", null, "15938", null, "2136", null, "490", null, "388", null, "25205", null, "2770", null, "2205", null, "812", null, "6248", null, "1285", null, "1169", null, "518", null, "5079", null, "1185", null, "16752", null, "2282", null, "27612", null, "2921", null, "18502", null, "2675", null, "23951", null, "2694", null, "22163", null, "2550", null, "4535", null, "914", null, "39264", null, "3427", null, "396", null, "399", null, "216", null, "261", null, "-999999999", "N", "-999999999", "N", "341", null, "290", null, "1362", null, "758", null, "420", null, "312", null, "4535", null, "914", null, "19817", null, "2998", null, "28872", null, "3002", null, "9142", null, "1717", null, "14453", null, "2495", null, "5277", null, "1346", null, "16.3", null, "1.2", null, "40.3", null, "4.3", null, "59.7", null, "4.3", null, "11.2", null, "2.1", null, "51.5", null, "4.2", null, "5.9", null, "2.5", null, "45.6", null, "4.5", null, "37.4", null, "4.2", null, "45.3", null, "4.4", null, "6.4", null, "2.0", null, "37.9", null, "4.0", null, "3.3", null, "2.1", null, "34.6", null, "4.2", null, "1.1", null, "0.8", null, "54.7", null, "4.4", null, "4.8", null, "1.8", null, "13.5", null, "2.6", null, "2.5", null, "1.1", null, "11.0", null, "2.4", null, "36.3", null, "4.0", null, "59.9", null, "4.6", null, "40.1", null, "4.6", null, "51.9", null, "4.1", null, "48.1", null, "4.1", null, "9.8", null, "2.0", null, "85.1", null, "2.6", null, "0.9", null, "0.9", null, "0.5", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "0.7", null, "0.6", null, "3.0", null, "1.6", null, "0.9", null, "0.7", null, "9.8", null, "2.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "31.7", null, "5.2", null, "50.1", null, "6.4", null, "18.3", null, "4.2", null, "236045", null, "4422", null, "113160", null, "3406", null, "122885", null, "4386", null, "93639", null, "4213", null, "49858", null, "3804", null, "9589", null, "1506", null, "40269", null, "3574", null, "92548", null, "4596", null, "55202", null, "4171", null, "28850", null, "2752", null, "25946", null, "2910", null, "4196", null, "1189", null, "21750", null, "2598", null, "406", null, "316", null, "180843", null, "4846", null, "64789", null, "3123", null, "23912", null, "3132", null, "5393", null, "1291", null, "18519", null, "2711", null, "92142", null, "4594", null, "37401", null, "3091", null, "198644", null, "4502", null, "72328", null, "4131", null, "163717", null, "5272", null, "87803", null, "2784", null, "139426", null, "4475", null, "788", null, "661", null, "1331", null, "698", null, "-999999999", "N", "-999999999", "N", "1964", null, "842", null, "4685", null, "1096", null, "2665", null, "1100", null, "87623", null, "2793", null, "54480", null, "2462", null, "143497", null, "4880", null, "27893", null, "2337", null, "46573", null, "3634", null, "69031", null, "4379", null, "83.7", null, "1.2", null, "47.9", null, "1.4", null, "52.1", null, "1.4", null, "39.7", null, "1.6", null, "21.1", null, "1.6", null, "4.1", null, "0.6", null, "17.1", null, "1.5", null, "39.2", null, "1.8", null, "23.4", null, "1.7", null, "12.2", null, "1.1", null, "11.0", null, "1.2", null, "1.8", null, "0.5", null, "9.2", null, "1.1", null, "0.2", null, "0.1", null, "76.6", null, "1.7", null, "27.4", null, "1.2", null, "10.1", null, "1.3", null, "2.3", null, "0.5", null, "7.8", null, "1.2", null, "39.0", null, "1.8", null, "15.8", null, "1.2", null, "84.2", null, "1.2", null, "30.6", null, "1.7", null, "69.4", null, "1.7", null, "37.2", null, "1.1", null, "59.1", null, "1.4", null, "0.3", null, "0.3", null, "0.6", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "0.8", null, "0.4", null, "2.0", null, "0.5", null, "1.1", null, "0.5", null, "37.1", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "19.4", null, "1.6", null, "32.5", null, "2.3", null, "48.1", null, "2.4", null, "28", "02"], ["5001900US2803", "Congressional District 3 (119th Congress), Mississippi", "289330", null, "4635", null, "125912", null, "3318", null, "163418", null, "5318", null, "134472", null, "6558", null, "57518", null, "4369", null, "12113", null, "2192", null, "45405", null, "3975", null, "97340", null, "5463", null, "86320", null, "4740", null, "52083", null, "4328", null, "33978", null, "3463", null, "5091", null, "1428", null, "28887", null, "3260", null, "259", null, "247", null, "203010", null, "5541", null, "82389", null, "4643", null, "23540", null, "2911", null, "7022", null, "1860", null, "16518", null, "2505", null, "97081", null, "5471", null, "46617", null, "4079", null, "242713", null, "5770", null, "97231", null, "4063", null, "192099", null, "5422", null, "174602", null, "3939", null, "95654", null, "3896", null, "2093", null, "766", null, "4336", null, "959", null, "-999999999", "N", "-999999999", "N", "2350", null, "757", null, "10255", null, "1793", null, "7029", null, "1087", null, "172662", null, "3940", null, "66380", null, "3290", null, "191990", null, "6150", null, "34819", null, "3067", null, "61072", null, "4362", null, "96099", null, "5261", null, "-888888888", "(X)", "-888888888", "(X)", "43.5", null, "1.3", null, "56.5", null, "1.3", null, "46.5", null, "2.0", null, "19.9", null, "1.5", null, "4.2", null, "0.8", null, "15.7", null, "1.4", null, "33.6", null, "1.8", null, "29.8", null, "1.6", null, "18.0", null, "1.4", null, "11.7", null, "1.2", null, "1.8", null, "0.5", null, "10.0", null, "1.1", null, "0.1", null, "0.1", null, "70.2", null, "1.6", null, "28.5", null, "1.5", null, "8.1", null, "1.0", null, "2.4", null, "0.6", null, "5.7", null, "0.9", null, "33.6", null, "1.8", null, "16.1", null, "1.4", null, "83.9", null, "1.4", null, "33.6", null, "1.4", null, "66.4", null, "1.4", null, "60.3", null, "1.3", null, "33.1", null, "1.2", null, "0.7", null, "0.3", null, "1.5", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "0.8", null, "0.3", null, "3.5", null, "0.6", null, "2.4", null, "0.4", null, "59.7", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.1", null, "1.5", null, "31.8", null, "2.1", null, "50.1", null, "2.1", null, "31179", null, "3299", null, "11300", null, "1593", null, "19879", null, "2865", null, "6677", null, "1796", null, "16129", null, "2719", null, "1846", null, "799", null, "14283", null, "2537", null, "8373", null, "1762", null, "16592", null, "2798", null, "5215", null, "1638", null, "11138", null, "2308", null, "450", null, "354", null, "10688", null, "2378", null, "239", null, "237", null, "14587", null, "2134", null, "1462", null, "692", null, "4991", null, "1511", null, "1396", null, "823", null, "3595", null, "1247", null, "8134", null, "1737", null, "17153", null, "2880", null, "14026", null, "2281", null, "15459", null, "2226", null, "15720", null, "2776", null, "10485", null, "1975", null, "18981", null, "2768", null, "386", null, "314", null, "342", null, "404", null, "-999999999", "N", "-999999999", "N", "81", null, "132", null, "904", null, "537", null, "397", null, "331", null, "10401", null, "1968", null, "23428", null, "5004", null, "22806", null, "3086", null, "5460", null, "1687", null, "10192", null, "2119", null, "7154", null, "1852", null, "10.8", null, "1.1", null, "36.2", null, "4.7", null, "63.8", null, "4.7", null, "21.4", null, "5.4", null, "51.7", null, "6.0", null, "5.9", null, "2.4", null, "45.8", null, "6.1", null, "26.9", null, "5.3", null, "53.2", null, "5.9", null, "16.7", null, "4.9", null, "35.7", null, "5.5", null, "1.4", null, "1.2", null, "34.3", null, "5.8", null, "0.8", null, "0.8", null, "46.8", null, "5.9", null, "4.7", null, "2.2", null, "16.0", null, "4.7", null, "4.5", null, "2.5", null, "11.5", null, "4.1", null, "26.1", null, "5.1", null, "55.0", null, "6.3", null, "45.0", null, "6.3", null, "49.6", null, "6.1", null, "50.4", null, "6.1", null, "33.6", null, "5.4", null, "60.9", null, "5.7", null, "1.2", null, "1.0", null, "1.1", null, "1.3", null, "-999999999.0", "N", "-999999999.0", "N", "0.3", null, "0.4", null, "2.9", null, "1.7", null, "1.3", null, "1.0", null, "33.4", null, "5.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "23.9", null, "6.7", null, "44.7", null, "6.9", null, "31.4", null, "7.1", null, "258151", null, "5138", null, "114612", null, "3425", null, "143539", null, "5489", null, "127795", null, "6273", null, "41389", null, "4058", null, "10267", null, "2137", null, "31122", null, "3361", null, "88967", null, "4922", null, "69728", null, "4502", null, "46868", null, "4132", null, "22840", null, "3002", null, "4641", null, "1429", null, "18199", null, "2584", null, "20", null, "43", null, "188423", null, "5378", null, "80927", null, "4394", null, "18549", null, "2609", null, "5626", null, "1625", null, "12923", null, "2024", null, "88947", null, "4922", null, "29464", null, "3008", null, "228687", null, "5564", null, "81772", null, "4144", null, "176379", null, "5587", null, "164117", null, "4127", null, "76673", null, "3854", null, "1707", null, "745", null, "3994", null, "1094", null, "-999999999", "N", "-999999999", "N", "2269", null, "740", null, "9351", null, "1636", null, "6632", null, "1049", null, "162261", null, "4182", null, "71677", null, "2730", null, "169184", null, "5737", null, "29359", null, "2430", null, "50880", null, "4094", null, "88945", null, "4939", null, "89.2", null, "1.1", null, "44.4", null, "1.4", null, "55.6", null, "1.4", null, "49.5", null, "2.2", null, "16.0", null, "1.5", null, "4.0", null, "0.8", null, "12.1", null, "1.3", null, "34.5", null, "1.8", null, "27.0", null, "1.6", null, "18.2", null, "1.5", null, "8.8", null, "1.2", null, "1.8", null, "0.6", null, "7.0", null, "1.0", null, "0.0", null, "0.1", null, "73.0", null, "1.6", null, "31.3", null, "1.6", null, "7.2", null, "1.0", null, "2.2", null, "0.6", null, "5.0", null, "0.8", null, "34.5", null, "1.8", null, "11.4", null, "1.2", null, "88.6", null, "1.2", null, "31.7", null, "1.5", null, "68.3", null, "1.5", null, "63.6", null, "1.4", null, "29.7", null, "1.3", null, "0.7", null, "0.3", null, "1.5", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "0.9", null, "0.3", null, "3.6", null, "0.6", null, "2.6", null, "0.4", null, "62.9", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.4", null, "1.4", null, "30.1", null, "2.2", null, "52.6", null, "2.1", null, "28", "03"], ["5001900US2804", "Congressional District 4 (119th Congress), Mississippi", "302550", null, "3686", null, "133441", null, "3623", null, "169109", null, "3795", null, "138691", null, "5048", null, "64642", null, "4477", null, "15736", null, "2404", null, "48906", null, "4146", null, "99217", null, "4915", null, "98129", null, "4682", null, "56346", null, "3492", null, "40710", null, "4220", null, "8670", null, "1751", null, "32040", null, "3820", null, "1073", null, "601", null, "204421", null, "5032", null, "82345", null, "4228", null, "23932", null, "2780", null, "7066", null, "1631", null, "16866", null, "2400", null, "98144", null, "4970", null, "49196", null, "3869", null, "253354", null, "4349", null, "119723", null, "5114", null, "182827", null, "5327", null, "209908", null, "3352", null, "67705", null, "3123", null, "768", null, "428", null, "4537", null, "1114", null, "-999999999", "N", "-999999999", "N", "5641", null, "1350", null, "13991", null, "1795", null, "12078", null, "1518", null, "208071", null, "3321", null, "62159", null, "1996", null, "203333", null, "5371", null, "37424", null, "2779", null, "71510", null, "4071", null, "94399", null, "4098", null, "-888888888", "(X)", "-888888888", "(X)", "44.1", null, "1.1", null, "55.9", null, "1.1", null, "45.8", null, "1.5", null, "21.4", null, "1.5", null, "5.2", null, "0.8", null, "16.2", null, "1.4", null, "32.8", null, "1.6", null, "32.4", null, "1.5", null, "18.6", null, "1.1", null, "13.5", null, "1.4", null, "2.9", null, "0.6", null, "10.6", null, "1.3", null, "0.4", null, "0.2", null, "67.6", null, "1.5", null, "27.2", null, "1.4", null, "7.9", null, "0.9", null, "2.3", null, "0.5", null, "5.6", null, "0.8", null, "32.4", null, "1.6", null, "16.3", null, "1.2", null, "83.7", null, "1.2", null, "39.6", null, "1.6", null, "60.4", null, "1.6", null, "69.4", null, "0.8", null, "22.4", null, "1.0", null, "0.3", null, "0.1", null, "1.5", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "1.9", null, "0.4", null, "4.6", null, "0.6", null, "4.0", null, "0.5", null, "68.8", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.4", null, "1.3", null, "35.2", null, "1.5", null, "46.4", null, "1.8", null, "32202", null, "3694", null, "12003", null, "2218", null, "20199", null, "3269", null, "6740", null, "1736", null, "16272", null, "2611", null, "2797", null, "1198", null, "13475", null, "2004", null, "9190", null, "1620", null, "17174", null, "2924", null, "4180", null, "1479", null, "12962", null, "2419", null, "1998", null, "1121", null, "10964", null, "1926", null, "32", null, "53", null, "15028", null, "2417", null, "2560", null, "907", null, "3310", null, "1068", null, "799", null, "490", null, "2511", null, "815", null, "9158", null, "1622", null, "16913", null, "2871", null, "15289", null, "2125", null, "18480", null, "2804", null, "13722", null, "2563", null, "13773", null, "2219", null, "14562", null, "2659", null, "140", null, "111", null, "991", null, "721", null, "-999999999", "N", "-999999999", "N", "1718", null, "822", null, "1018", null, "542", null, "2263", null, "858", null, "13643", null, "2227", null, "22203", null, "5283", null, "23012", null, "3231", null, "6432", null, "1641", null, "10410", null, "2053", null, "6170", null, "1347", null, "10.6", null, "1.2", null, "37.3", null, "6.1", null, "62.7", null, "6.1", null, "20.9", null, "4.7", null, "50.5", null, "5.1", null, "8.7", null, "3.3", null, "41.8", null, "4.4", null, "28.5", null, "4.5", null, "53.3", null, "6.0", null, "13.0", null, "4.2", null, "40.3", null, "5.7", null, "6.2", null, "3.3", null, "34.0", null, "4.8", null, "0.1", null, "0.2", null, "46.7", null, "6.0", null, "7.9", null, "2.7", null, "10.3", null, "3.0", null, "2.5", null, "1.4", null, "7.8", null, "2.4", null, "28.4", null, "4.5", null, "52.5", null, "5.3", null, "47.5", null, "5.3", null, "57.4", null, "6.1", null, "42.6", null, "6.1", null, "42.8", null, "5.0", null, "45.2", null, "5.7", null, "0.4", null, "0.3", null, "3.1", null, "2.2", null, "-999999999.0", "N", "-999999999.0", "N", "5.3", null, "2.6", null, "3.2", null, "1.7", null, "7.0", null, "2.7", null, "42.4", null, "5.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "28.0", null, "5.6", null, "45.2", null, "6.6", null, "26.8", null, "4.8", null, "270348", null, "4759", null, "121438", null, "3588", null, "148910", null, "4325", null, "131951", null, "4960", null, "48370", null, "4007", null, "12939", null, "2129", null, "35431", null, "3750", null, "90027", null, "4623", null, "80955", null, "4422", null, "52166", null, "3173", null, "27748", null, "3650", null, "6672", null, "1624", null, "21076", null, "3312", null, "1041", null, "600", null, "189393", null, "4933", null, "79785", null, "4221", null, "20622", null, "2817", null, "6267", null, "1606", null, "14355", null, "2362", null, "88986", null, "4703", null, "32283", null, "2961", null, "238065", null, "4575", null, "101243", null, "4621", null, "169105", null, "5735", null, "196135", null, "3949", null, "53143", null, "3179", null, "628", null, "408", null, "3546", null, "851", null, "-999999999", "N", "-999999999", "N", "3923", null, "1046", null, "12973", null, "1789", null, "9815", null, "1576", null, "194428", null, "3869", null, "67787", null, "3514", null, "180321", null, "5592", null, "30992", null, "2434", null, "61100", null, "4008", null, "88229", null, "4255", null, "89.4", null, "1.2", null, "44.9", null, "1.2", null, "55.1", null, "1.2", null, "48.8", null, "1.6", null, "17.9", null, "1.4", null, "4.8", null, "0.8", null, "13.1", null, "1.4", null, "33.3", null, "1.6", null, "29.9", null, "1.5", null, "19.3", null, "1.1", null, "10.3", null, "1.3", null, "2.5", null, "0.6", null, "7.8", null, "1.2", null, "0.4", null, "0.2", null, "70.1", null, "1.5", null, "29.5", null, "1.5", null, "7.6", null, "1.0", null, "2.3", null, "0.6", null, "5.3", null, "0.9", null, "32.9", null, "1.7", null, "11.9", null, "1.0", null, "88.1", null, "1.0", null, "37.4", null, "1.7", null, "62.6", null, "1.7", null, "72.5", null, "1.0", null, "19.7", null, "1.1", null, "0.2", null, "0.2", null, "1.3", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "1.5", null, "0.4", null, "4.8", null, "0.7", null, "3.6", null, "0.6", null, "71.9", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.2", null, "1.3", null, "33.9", null, "1.7", null, "48.9", null, "2.0", null, "28", "04"], ["5001900US2901", "Congressional District 1 (119th Congress), Missouri", "343121", null, "6282", null, "134161", null, "4003", null, "208960", null, "5900", null, "100101", null, "5184", null, "72617", null, "4995", null, "17359", null, "2863", null, "55258", null, "4494", null, "170403", null, "6254", null, "76397", null, "4657", null, "35152", null, "3791", null, "39942", null, "3606", null, "7871", null, "1987", null, "32071", null, "3677", null, "1303", null, "1092", null, "266724", null, "5788", null, "64949", null, "3587", null, "32675", null, "3616", null, "9488", null, "1873", null, "23187", null, "3128", null, "169100", null, "6274", null, "58267", null, "4553", null, "284854", null, "7009", null, "98395", null, "6385", null, "244726", null, "6819", null, "159945", null, "5544", null, "145496", null, "4666", null, "830", null, "383", null, "12625", null, "1426", null, "-999999999", "N", "-999999999", "N", "5705", null, "1527", null, "18520", null, "2964", null, "13570", null, "1344", null, "157106", null, "5541", null, "60692", null, "2189", null, "172718", null, "6765", null, "21847", null, "2268", null, "58171", null, "4273", null, "92700", null, "4863", null, "-888888888", "(X)", "-888888888", "(X)", "39.1", null, "1.1", null, "60.9", null, "1.1", null, "29.2", null, "1.3", null, "21.2", null, "1.4", null, "5.1", null, "0.8", null, "16.1", null, "1.3", null, "49.7", null, "1.7", null, "22.3", null, "1.2", null, "10.2", null, "1.0", null, "11.6", null, "1.0", null, "2.3", null, "0.6", null, "9.3", null, "1.1", null, "0.4", null, "0.3", null, "77.7", null, "1.2", null, "18.9", null, "1.0", null, "9.5", null, "1.1", null, "2.8", null, "0.6", null, "6.8", null, "0.9", null, "49.3", null, "1.7", null, "17.0", null, "1.3", null, "83.0", null, "1.3", null, "28.7", null, "1.7", null, "71.3", null, "1.7", null, "46.6", null, "1.2", null, "42.4", null, "1.2", null, "0.2", null, "0.1", null, "3.7", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "1.7", null, "0.4", null, "5.4", null, "0.9", null, "4.0", null, "0.4", null, "45.8", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.6", null, "1.3", null, "33.7", null, "2.0", null, "53.7", null, "1.9", null, "50613", null, "4347", null, "19609", null, "2931", null, "31004", null, "3062", null, "5918", null, "1577", null, "22800", null, "3269", null, "3314", null, "1170", null, "19486", null, "2829", null, "21895", null, "3055", null, "19998", null, "2899", null, "3334", null, "1419", null, "16593", null, "2636", null, "1499", null, "739", null, "15094", null, "2502", null, "71", null, "120", null, "30615", null, "3415", null, "2584", null, "977", null, "6207", null, "1448", null, "1815", null, "886", null, "4392", null, "1093", null, "21824", null, "3065", null, "24754", null, "3309", null, "25859", null, "3402", null, "27473", null, "4042", null, "23140", null, "3352", null, "8685", null, "1771", null, "37747", null, "3680", null, "226", null, "198", null, "453", null, "388", null, "-999999999", "N", "-999999999", "N", "700", null, "564", null, "2802", null, "1034", null, "1574", null, "828", null, "8159", null, "1638", null, "24888", null, "2702", null, "28718", null, "3513", null, "4175", null, "1427", null, "15561", null, "2649", null, "8982", null, "2160", null, "14.8", null, "1.3", null, "38.7", null, "4.1", null, "61.3", null, "4.1", null, "11.7", null, "3.0", null, "45.0", null, "5.0", null, "6.5", null, "2.2", null, "38.5", null, "4.5", null, "43.3", null, "4.8", null, "39.5", null, "4.5", null, "6.6", null, "2.7", null, "32.8", null, "4.4", null, "3.0", null, "1.5", null, "29.8", null, "4.2", null, "0.1", null, "0.2", null, "60.5", null, "4.5", null, "5.1", null, "2.0", null, "12.3", null, "2.6", null, "3.6", null, "1.7", null, "8.7", null, "2.1", null, "43.1", null, "4.8", null, "48.9", null, "5.1", null, "51.1", null, "5.1", null, "54.3", null, "5.9", null, "45.7", null, "5.9", null, "17.2", null, "3.1", null, "74.6", null, "3.8", null, "0.4", null, "0.4", null, "0.9", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "1.4", null, "1.1", null, "5.5", null, "2.0", null, "3.1", null, "1.6", null, "16.1", null, "3.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.5", null, "4.5", null, "54.2", null, "6.8", null, "31.3", null, "6.3", null, "292508", null, "7025", null, "114552", null, "4024", null, "177956", null, "6273", null, "94183", null, "4835", null, "49817", null, "4563", null, "14045", null, "2723", null, "35772", null, "3594", null, "148508", null, "6136", null, "56399", null, "4101", null, "31818", null, "3325", null, "23349", null, "2798", null, "6372", null, "1803", null, "16977", null, "2481", null, "1232", null, "1078", null, "236109", null, "6018", null, "62365", null, "3478", null, "26468", null, "3361", null, "7673", null, "1805", null, "18795", null, "2863", null, "147276", null, "6209", null, "33513", null, "3511", null, "258995", null, "7041", null, "70922", null, "5149", null, "221586", null, "6552", null, "151260", null, "5542", null, "107749", null, "4986", null, "604", null, "354", null, "12172", null, "1398", null, "-999999999", "N", "-999999999", "N", "5005", null, "1486", null, "15718", null, "2661", null, "11996", null, "1437", null, "148947", null, "5463", null, "69701", null, "3368", null, "144000", null, "6427", null, "17672", null, "1969", null, "42610", null, "4030", null, "83718", null, "4535", null, "85.2", null, "1.3", null, "39.2", null, "1.3", null, "60.8", null, "1.3", null, "32.2", null, "1.5", null, "17.0", null, "1.5", null, "4.8", null, "0.9", null, "12.2", null, "1.2", null, "50.8", null, "1.8", null, "19.3", null, "1.2", null, "10.9", null, "1.0", null, "8.0", null, "0.9", null, "2.2", null, "0.6", null, "5.8", null, "0.8", null, "0.4", null, "0.4", null, "80.7", null, "1.2", null, "21.3", null, "1.2", null, "9.0", null, "1.1", null, "2.6", null, "0.6", null, "6.4", null, "1.0", null, "50.3", null, "1.8", null, "11.5", null, "1.2", null, "88.5", null, "1.2", null, "24.2", null, "1.6", null, "75.8", null, "1.6", null, "51.7", null, "1.4", null, "36.8", null, "1.3", null, "0.2", null, "0.1", null, "4.2", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "1.7", null, "0.5", null, "5.4", null, "0.9", null, "4.1", null, "0.5", null, "50.9", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.3", null, "1.4", null, "29.6", null, "2.2", null, "58.1", null, "2.0", null, "29", "01"], ["5001900US2902", "Congressional District 2 (119th Congress), Missouri", "314525", null, "5093", null, "141317", null, "4224", null, "173208", null, "5060", null, "172115", null, "4752", null, "39525", null, "3086", null, "13589", null, "1662", null, "25936", null, "2699", null, "102885", null, "5493", null, "93815", null, "3709", null, "71237", null, "3267", null, "22165", null, "2326", null, "7665", null, "1282", null, "14500", null, "2204", null, "413", null, "329", null, "220710", null, "5225", null, "100878", null, "4239", null, "17360", null, "2344", null, "5924", null, "1363", null, "11436", null, "1759", null, "102472", null, "5468", null, "22051", null, "2571", null, "292474", null, "5206", null, "73799", null, "4148", null, "240726", null, "5809", null, "274093", null, "4954", null, "10540", null, "2359", null, "-999999999", "N", "-999999999", "N", "13604", null, "1341", null, "-999999999", "N", "-999999999", "N", "2967", null, "1011", null, "12819", null, "1950", null, "8509", null, "1431", null, "271239", null, "4924", null, "101494", null, "2606", null, "211640", null, "4874", null, "32210", null, "2180", null, "57361", null, "3620", null, "122069", null, "4446", null, "-888888888", "(X)", "-888888888", "(X)", "44.9", null, "1.2", null, "55.1", null, "1.2", null, "54.7", null, "1.6", null, "12.6", null, "0.9", null, "4.3", null, "0.5", null, "8.2", null, "0.8", null, "32.7", null, "1.5", null, "29.8", null, "1.1", null, "22.6", null, "1.0", null, "7.0", null, "0.7", null, "2.4", null, "0.4", null, "4.6", null, "0.7", null, "0.1", null, "0.1", null, "70.2", null, "1.1", null, "32.1", null, "1.4", null, "5.5", null, "0.7", null, "1.9", null, "0.4", null, "3.6", null, "0.6", null, "32.6", null, "1.5", null, "7.0", null, "0.8", null, "93.0", null, "0.8", null, "23.5", null, "1.3", null, "76.5", null, "1.3", null, "87.1", null, "0.9", null, "3.4", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "4.3", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "0.9", null, "0.3", null, "4.1", null, "0.6", null, "2.7", null, "0.4", null, "86.2", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.2", null, "1.0", null, "27.1", null, "1.5", null, "57.7", null, "1.8", null, "13501", null, "2490", null, "5049", null, "1254", null, "8452", null, "2155", null, "3890", null, "1220", null, "6082", null, "1579", null, "1851", null, "883", null, "4231", null, "1206", null, "3529", null, "1350", null, "7739", null, "1883", null, "3101", null, "1083", null, "4638", null, "1445", null, "1303", null, "715", null, "3335", null, "1128", null, "0", null, "198", null, "5762", null, "1505", null, "789", null, "534", null, "1444", null, "637", null, "548", null, "490", null, "896", null, "448", null, "3529", null, "1350", null, "4959", null, "1647", null, "8542", null, "1727", null, "6834", null, "1537", null, "6667", null, "1874", null, "10656", null, "1802", null, "625", null, "549", null, "-999999999", "N", "-999999999", "N", "529", null, "376", null, "-999999999", "N", "-999999999", "N", "221", null, "257", null, "1470", null, "1143", null, "181", null, "234", null, "10624", null, "1814", null, "40116", null, "14862", null, "9972", null, "1949", null, "916", null, "545", null, "5182", null, "1351", null, "3874", null, "1283", null, "4.3", null, "0.8", null, "37.4", null, "8.4", null, "62.6", null, "8.4", null, "28.8", null, "8.6", null, "45.0", null, "8.3", null, "13.7", null, "6.3", null, "31.3", null, "6.7", null, "26.1", null, "8.1", null, "57.3", null, "8.5", null, "23.0", null, "7.5", null, "34.4", null, "7.5", null, "9.7", null, "5.0", null, "24.7", null, "6.3", null, "0.0", null, "1.2", null, "42.7", null, "8.5", null, "5.8", null, "4.0", null, "10.7", null, "5.0", null, "4.1", null, "3.7", null, "6.6", null, "3.5", null, "26.1", null, "8.1", null, "36.7", null, "8.7", null, "63.3", null, "8.7", null, "50.6", null, "8.7", null, "49.4", null, "8.7", null, "78.9", null, "8.1", null, "4.6", null, "4.0", null, "-999999999.0", "N", "-999999999.0", "N", "3.9", null, "2.8", null, "-999999999.0", "N", "-999999999.0", "N", "1.6", null, "1.9", null, "10.9", null, "7.5", null, "1.3", null, "1.8", null, "78.7", null, "8.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "9.2", null, "5.1", null, "52.0", null, "10.2", null, "38.8", null, "10.0", null, "301024", null, "5448", null, "136268", null, "4178", null, "164756", null, "5440", null, "168225", null, "4705", null, "33443", null, "3303", null, "11738", null, "1756", null, "21705", null, "2599", null, "99356", null, "5327", null, "86076", null, "3850", null, "68136", null, "3246", null, "17527", null, "2349", null, "6362", null, "1322", null, "11165", null, "1972", null, "413", null, "329", null, "214948", null, "5164", null, "100089", null, "4314", null, "15916", null, "2202", null, "5376", null, "1200", null, "10540", null, "1675", null, "98943", null, "5301", null, "17092", null, "2324", null, "283932", null, "5305", null, "66965", null, "4063", null, "234059", null, "5996", null, "263437", null, "5287", null, "9915", null, "2289", null, "-999999999", "N", "-999999999", "N", "13075", null, "1327", null, "-999999999", "N", "-999999999", "N", "2746", null, "1027", null, "11349", null, "1505", null, "8328", null, "1426", null, "260615", null, "5215", null, "103999", null, "3091", null, "201668", null, "5089", null, "31294", null, "2159", null, "52179", null, "3503", null, "118195", null, "4320", null, "95.7", null, "0.8", null, "45.3", null, "1.3", null, "54.7", null, "1.3", null, "55.9", null, "1.6", null, "11.1", null, "1.0", null, "3.9", null, "0.6", null, "7.2", null, "0.8", null, "33.0", null, "1.5", null, "28.6", null, "1.2", null, "22.6", null, "1.1", null, "5.8", null, "0.8", null, "2.1", null, "0.4", null, "3.7", null, "0.6", null, "0.1", null, "0.1", null, "71.4", null, "1.2", null, "33.2", null, "1.5", null, "5.3", null, "0.7", null, "1.8", null, "0.4", null, "3.5", null, "0.5", null, "32.9", null, "1.5", null, "5.7", null, "0.8", null, "94.3", null, "0.8", null, "22.2", null, "1.3", null, "77.8", null, "1.3", null, "87.5", null, "0.8", null, "3.3", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "4.3", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "0.9", null, "0.3", null, "3.8", null, "0.5", null, "2.8", null, "0.5", null, "86.6", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.5", null, "1.0", null, "25.9", null, "1.5", null, "58.6", null, "1.8", null, "29", "02"], ["5001900US2903", "Congressional District 3 (119th Congress), Missouri", "322596", null, "5118", null, "141755", null, "3930", null, "180841", null, "5030", null, "168427", null, "5601", null, "42475", null, "3742", null, "13443", null, "2114", null, "29032", null, "3170", null, "111694", null, "4657", null, "93020", null, "4664", null, "66108", null, "3749", null, "25280", null, "2832", null, "7859", null, "1431", null, "17421", null, "2455", null, "1632", null, "930", null, "229576", null, "5763", null, "102319", null, "4132", null, "17195", null, "2567", null, "5584", null, "1582", null, "11611", null, "1869", null, "110062", null, "4663", null, "36821", null, "3262", null, "285775", null, "5567", null, "88572", null, "4326", null, "234024", null, "6185", null, "283645", null, "5406", null, "15986", null, "2463", null, "-999999999", "N", "-999999999", "N", "6880", null, "1053", null, "-999999999", "N", "-999999999", "N", "2205", null, "807", null, "13358", null, "1942", null, "7348", null, "1445", null, "280685", null, "5114", null, "84323", null, "2970", null, "210902", null, "6029", null, "35862", null, "2455", null, "53984", null, "3534", null, "121056", null, "5141", null, "-888888888", "(X)", "-888888888", "(X)", "43.9", null, "1.1", null, "56.1", null, "1.1", null, "52.2", null, "1.5", null, "13.2", null, "1.1", null, "4.2", null, "0.7", null, "9.0", null, "1.0", null, "34.6", null, "1.4", null, "28.8", null, "1.4", null, "20.5", null, "1.1", null, "7.8", null, "0.9", null, "2.4", null, "0.4", null, "5.4", null, "0.8", null, "0.5", null, "0.3", null, "71.2", null, "1.4", null, "31.7", null, "1.1", null, "5.3", null, "0.8", null, "1.7", null, "0.5", null, "3.6", null, "0.6", null, "34.1", null, "1.4", null, "11.4", null, "1.0", null, "88.6", null, "1.0", null, "27.5", null, "1.3", null, "72.5", null, "1.3", null, "87.9", null, "1.0", null, "5.0", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "2.1", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "0.7", null, "0.2", null, "4.1", null, "0.6", null, "2.3", null, "0.4", null, "87.0", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.0", null, "1.1", null, "25.6", null, "1.5", null, "57.4", null, "1.7", null, "19263", null, "2435", null, "7820", null, "1763", null, "11443", null, "2029", null, "2879", null, "738", null, "8108", null, "1862", null, "1771", null, "667", null, "6337", null, "1623", null, "8276", null, "1860", null, "8428", null, "1736", null, "1819", null, "577", null, "6425", null, "1665", null, "1235", null, "567", null, "5190", null, "1535", null, "184", null, "266", null, "10835", null, "1869", null, "1060", null, "448", null, "1683", null, "680", null, "536", null, "331", null, "1147", null, "546", null, "8092", null, "1852", null, "11029", null, "1940", null, "8234", null, "1757", null, "11728", null, "2143", null, "7535", null, "1441", null, "14464", null, "1747", null, "3503", null, "1660", null, "-999999999", "N", "-999999999", "N", "107", null, "131", null, "-999999999", "N", "-999999999", "N", "127", null, "185", null, "1062", null, "404", null, "605", null, "356", null, "14280", null, "1730", null, "23461", null, "9318", null, "10987", null, "1892", null, "2803", null, "1012", null, "4770", null, "1308", null, "3414", null, "1301", null, "6.0", null, "0.7", null, "40.6", null, "7.6", null, "59.4", null, "7.6", null, "14.9", null, "4.1", null, "42.1", null, "7.6", null, "9.2", null, "3.3", null, "32.9", null, "6.8", null, "43.0", null, "7.5", null, "43.8", null, "6.9", null, "9.4", null, "3.1", null, "33.4", null, "6.8", null, "6.4", null, "2.8", null, "26.9", null, "6.6", null, "1.0", null, "1.4", null, "56.2", null, "6.9", null, "5.5", null, "2.4", null, "8.7", null, "3.6", null, "2.8", null, "1.7", null, "6.0", null, "2.9", null, "42.0", null, "7.4", null, "57.3", null, "7.2", null, "42.7", null, "7.2", null, "60.9", null, "6.7", null, "39.1", null, "6.7", null, "75.1", null, "7.4", null, "18.2", null, "7.3", null, "-999999999.0", "N", "-999999999.0", "N", "0.6", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "0.7", null, "0.9", null, "5.5", null, "2.1", null, "3.1", null, "1.8", null, "74.1", null, "7.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "25.5", null, "8.2", null, "43.4", null, "10.1", null, "31.1", null, "9.8", null, "303333", null, "5363", null, "133935", null, "3755", null, "169398", null, "5320", null, "165548", null, "5635", null, "34367", null, "3442", null, "11672", null, "1990", null, "22695", null, "2927", null, "103418", null, "4362", null, "84592", null, "4589", null, "64289", null, "3792", null, "18855", null, "2483", null, "6624", null, "1334", null, "12231", null, "2170", null, "1448", null, "838", null, "218741", null, "5465", null, "101259", null, "4132", null, "15512", null, "2603", null, "5048", null, "1552", null, "10464", null, "1810", null, "101970", null, "4375", null, "25792", null, "2668", null, "277541", null, "5255", null, "76844", null, "4134", null, "226489", null, "6124", null, "269181", null, "5378", null, "12483", null, "2032", null, "-999999999", "N", "-999999999", "N", "6773", null, "1066", null, "-999999999", "N", "-999999999", "N", "2078", null, "779", null, "12296", null, "1851", null, "6743", null, "1458", null, "266405", null, "5061", null, "88046", null, "2354", null, "199915", null, "5951", null, "33059", null, "2149", null, "49214", null, "3192", null, "117642", null, "5031", null, "94.0", null, "0.7", null, "44.2", null, "1.2", null, "55.8", null, "1.2", null, "54.6", null, "1.5", null, "11.3", null, "1.1", null, "3.8", null, "0.7", null, "7.5", null, "0.9", null, "34.1", null, "1.4", null, "27.9", null, "1.4", null, "21.2", null, "1.2", null, "6.2", null, "0.8", null, "2.2", null, "0.4", null, "4.0", null, "0.7", null, "0.5", null, "0.3", null, "72.1", null, "1.4", null, "33.4", null, "1.2", null, "5.1", null, "0.8", null, "1.7", null, "0.5", null, "3.4", null, "0.6", null, "33.6", null, "1.4", null, "8.5", null, "0.8", null, "91.5", null, "0.8", null, "25.3", null, "1.4", null, "74.7", null, "1.4", null, "88.7", null, "0.9", null, "4.1", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "2.2", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "0.7", null, "0.3", null, "4.1", null, "0.6", null, "2.2", null, "0.5", null, "87.8", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.5", null, "1.0", null, "24.6", null, "1.4", null, "58.8", null, "1.6", null, "29", "03"], ["5001900US2904", "Congressional District 4 (119th Congress), Missouri", "310375", null, "4426", null, "135005", null, "3185", null, "175370", null, "4060", null, "156761", null, "4876", null, "45157", null, "3792", null, "15979", null, "2400", null, "29178", null, "3150", null, "108457", null, "4259", null, "90848", null, "4491", null, "61516", null, "3438", null, "28318", null, "3081", null, "10038", null, "1985", null, "18280", null, "2617", null, "1014", null, "592", null, "219527", null, "4957", null, "95245", null, "4059", null, "16839", null, "2171", null, "5941", null, "1201", null, "10898", null, "1719", null, "107443", null, "4372", null, "37563", null, "2731", null, "272812", null, "4209", null, "100173", null, "4277", null, "210202", null, "5362", null, "274425", null, "4750", null, "10348", null, "1883", null, "667", null, "285", null, "3084", null, "921", null, "-999999999", "N", "-999999999", "N", "3157", null, "858", null, "18276", null, "2060", null, "9985", null, "1273", null, "272300", null, "4541", null, "68144", null, "2218", null, "201918", null, "5197", null, "33889", null, "2666", null, "61180", null, "3770", null, "106849", null, "4237", null, "-888888888", "(X)", "-888888888", "(X)", "43.5", null, "0.9", null, "56.5", null, "0.9", null, "50.5", null, "1.4", null, "14.5", null, "1.2", null, "5.1", null, "0.8", null, "9.4", null, "1.0", null, "34.9", null, "1.3", null, "29.3", null, "1.3", null, "19.8", null, "1.1", null, "9.1", null, "1.0", null, "3.2", null, "0.6", null, "5.9", null, "0.8", null, "0.3", null, "0.2", null, "70.7", null, "1.3", null, "30.7", null, "1.3", null, "5.4", null, "0.7", null, "1.9", null, "0.4", null, "3.5", null, "0.5", null, "34.6", null, "1.3", null, "12.1", null, "0.8", null, "87.9", null, "0.8", null, "32.3", null, "1.3", null, "67.7", null, "1.3", null, "88.4", null, "0.9", null, "3.3", null, "0.6", null, "0.2", null, "0.1", null, "1.0", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "1.0", null, "0.3", null, "5.9", null, "0.7", null, "3.2", null, "0.4", null, "87.7", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.8", null, "1.2", null, "30.3", null, "1.7", null, "52.9", null, "1.7", null, "28154", null, "2136", null, "12479", null, "1662", null, "15675", null, "1751", null, "6884", null, "1271", null, "10829", null, "1615", null, "3173", null, "1059", null, "7656", null, "1418", null, "10441", null, "1556", null, "11805", null, "1831", null, "4229", null, "958", null, "7523", null, "1564", null, "1781", null, "934", null, "5742", null, "1334", null, "53", null, "112", null, "16349", null, "1786", null, "2655", null, "779", null, "3306", null, "753", null, "1392", null, "538", null, "1914", null, "586", null, "10388", null, "1526", null, "13161", null, "1856", null, "14993", null, "1466", null, "16818", null, "1703", null, "11336", null, "1587", null, "22578", null, "1962", null, "3182", null, "1233", null, "55", null, "62", null, "94", null, "132", null, "-999999999", "N", "-999999999", "N", "176", null, "173", null, "2000", null, "662", null, "1397", null, "661", null, "22177", null, "1892", null, "30172", null, "3829", null, "17713", null, "1943", null, "3259", null, "840", null, "8326", null, "1494", null, "6128", null, "1214", null, "9.1", null, "0.7", null, "44.3", null, "4.7", null, "55.7", null, "4.7", null, "24.5", null, "4.2", null, "38.5", null, "4.7", null, "11.3", null, "3.6", null, "27.2", null, "4.5", null, "37.1", null, "4.8", null, "41.9", null, "5.2", null, "15.0", null, "3.3", null, "26.7", null, "4.8", null, "6.3", null, "3.2", null, "20.4", null, "4.3", null, "0.2", null, "0.4", null, "58.1", null, "5.2", null, "9.4", null, "2.6", null, "11.7", null, "2.7", null, "4.9", null, "1.9", null, "6.8", null, "2.1", null, "36.9", null, "4.8", null, "46.7", null, "4.6", null, "53.3", null, "4.6", null, "59.7", null, "4.4", null, "40.3", null, "4.4", null, "80.2", null, "4.3", null, "11.3", null, "4.2", null, "0.2", null, "0.2", null, "0.3", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "0.6", null, "0.6", null, "7.1", null, "2.3", null, "5.0", null, "2.3", null, "78.8", null, "4.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.4", null, "4.1", null, "47.0", null, "6.6", null, "34.6", null, "6.1", null, "282221", null, "4601", null, "122526", null, "3424", null, "159695", null, "4156", null, "149877", null, "4814", null, "34328", null, "3367", null, "12806", null, "2160", null, "21522", null, "2831", null, "98016", null, "4160", null, "79043", null, "4136", null, "57287", null, "3461", null, "20795", null, "2550", null, "8257", null, "1737", null, "12538", null, "2184", null, "961", null, "582", null, "203178", null, "5056", null, "92590", null, "4067", null, "13533", null, "1955", null, "4549", null, "1049", null, "8984", null, "1537", null, "97055", null, "4288", null, "24402", null, "2427", null, "257819", null, "4159", null, "83355", null, "3913", null, "198866", null, "5135", null, "251847", null, "4710", null, "7166", null, "1677", null, "612", null, "271", null, "2990", null, "917", null, "-999999999", "N", "-999999999", "N", "2981", null, "821", null, "16276", null, "2117", null, "8588", null, "1304", null, "250123", null, "4572", null, "72080", null, "1475", null, "184205", null, "5038", null, "30630", null, "2477", null, "52854", null, "3695", null, "100721", null, "3905", null, "90.9", null, "0.7", null, "43.4", null, "1.1", null, "56.6", null, "1.1", null, "53.1", null, "1.5", null, "12.2", null, "1.1", null, "4.5", null, "0.8", null, "7.6", null, "1.0", null, "34.7", null, "1.4", null, "28.0", null, "1.4", null, "20.3", null, "1.2", null, "7.4", null, "0.9", null, "2.9", null, "0.6", null, "4.4", null, "0.8", null, "0.3", null, "0.2", null, "72.0", null, "1.4", null, "32.8", null, "1.4", null, "4.8", null, "0.7", null, "1.6", null, "0.4", null, "3.2", null, "0.5", null, "34.4", null, "1.4", null, "8.6", null, "0.8", null, "91.4", null, "0.8", null, "29.5", null, "1.3", null, "70.5", null, "1.3", null, "89.2", null, "0.9", null, "2.5", null, "0.6", null, "0.2", null, "0.1", null, "1.1", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "1.1", null, "0.3", null, "5.8", null, "0.7", null, "3.0", null, "0.5", null, "88.6", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.6", null, "1.3", null, "28.7", null, "1.8", null, "54.7", null, "1.7", null, "29", "04"], ["5001900US2905", "Congressional District 5 (119th Congress), Missouri", "336550", null, "4179", null, "128014", null, "3460", null, "208536", null, "5045", null, "126145", null, "4278", null, "57397", null, "4314", null, "14739", null, "2536", null, "42658", null, "3623", null, "153008", null, "6012", null, "86247", null, "4773", null, "50569", null, "3284", null, "34950", null, "3750", null, "8827", null, "2030", null, "26123", null, "3306", null, "728", null, "481", null, "250303", null, "6157", null, "75576", null, "3930", null, "22447", null, "2806", null, "5912", null, "1468", null, "16535", null, "2050", null, "152280", null, "6037", null, "52997", null, "5087", null, "283553", null, "6269", null, "98146", null, "5669", null, "238404", null, "6396", null, "219327", null, "4519", null, "73321", null, "3717", null, "1427", null, "587", null, "6072", null, "898", null, "-999999999", "N", "-999999999", "N", "10455", null, "2158", null, "25590", null, "3037", null, "31199", null, "2304", null, "211452", null, "4521", null, "67960", null, "2647", null, "183542", null, "5523", null, "28961", null, "2937", null, "55334", null, "4921", null, "99247", null, "4790", null, "-888888888", "(X)", "-888888888", "(X)", "38.0", null, "1.1", null, "62.0", null, "1.1", null, "37.5", null, "1.2", null, "17.1", null, "1.3", null, "4.4", null, "0.7", null, "12.7", null, "1.1", null, "45.5", null, "1.6", null, "25.6", null, "1.4", null, "15.0", null, "1.0", null, "10.4", null, "1.1", null, "2.6", null, "0.6", null, "7.8", null, "1.0", null, "0.2", null, "0.1", null, "74.4", null, "1.4", null, "22.5", null, "1.1", null, "6.7", null, "0.8", null, "1.8", null, "0.4", null, "4.9", null, "0.6", null, "45.2", null, "1.6", null, "15.7", null, "1.5", null, "84.3", null, "1.5", null, "29.2", null, "1.7", null, "70.8", null, "1.7", null, "65.2", null, "1.1", null, "21.8", null, "1.0", null, "0.4", null, "0.2", null, "1.8", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "3.1", null, "0.6", null, "7.6", null, "0.9", null, "9.3", null, "0.7", null, "62.8", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.8", null, "1.5", null, "30.1", null, "2.4", null, "54.1", null, "2.4", null, "33028", null, "3444", null, "12012", null, "1893", null, "21016", null, "3029", null, "5040", null, "1693", null, "15162", null, "2424", null, "2376", null, "1110", null, "12786", null, "2142", null, "12826", null, "1871", null, "14948", null, "2539", null, "3929", null, "1487", null, "10822", null, "1887", null, "1643", null, "953", null, "9179", null, "1779", null, "197", null, "203", null, "18080", null, "2429", null, "1111", null, "568", null, "4340", null, "1343", null, "733", null, "614", null, "3607", null, "1190", null, "12629", null, "1838", null, "17697", null, "2957", null, "15331", null, "2292", null, "17562", null, "2901", null, "15466", null, "2289", null, "13746", null, "2077", null, "15672", null, "2616", null, "55", null, "71", null, "395", null, "258", null, "-999999999", "N", "-999999999", "N", "957", null, "488", null, "2126", null, "855", null, "2821", null, "885", null, "12818", null, "1976", null, "26081", null, "3668", null, "20202", null, "3059", null, "5244", null, "1799", null, "9459", null, "2153", null, "5499", null, "1348", null, "9.8", null, "1.0", null, "36.4", null, "5.2", null, "63.6", null, "5.2", null, "15.3", null, "4.5", null, "45.9", null, "5.4", null, "7.2", null, "3.1", null, "38.7", null, "5.4", null, "38.8", null, "5.2", null, "45.3", null, "5.5", null, "11.9", null, "4.0", null, "32.8", null, "4.8", null, "5.0", null, "2.7", null, "27.8", null, "5.1", null, "0.6", null, "0.6", null, "54.7", null, "5.5", null, "3.4", null, "1.7", null, "13.1", null, "3.7", null, "2.2", null, "1.8", null, "10.9", null, "3.3", null, "38.2", null, "5.1", null, "53.6", null, "6.0", null, "46.4", null, "6.0", null, "53.2", null, "5.9", null, "46.8", null, "5.9", null, "41.6", null, "5.0", null, "47.5", null, "5.4", null, "0.2", null, "0.2", null, "1.2", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "2.9", null, "1.5", null, "6.4", null, "2.5", null, "8.5", null, "2.6", null, "38.8", null, "4.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "26.0", null, "7.2", null, "46.8", null, "8.1", null, "27.2", null, "6.2", null, "303522", null, "4617", null, "116002", null, "3420", null, "187520", null, "5232", null, "121105", null, "4396", null, "42235", null, "3998", null, "12363", null, "2242", null, "29872", null, "3265", null, "140182", null, "5839", null, "71299", null, "4262", null, "46640", null, "3185", null, "24128", null, "3240", null, "7184", null, "1649", null, "16944", null, "2678", null, "531", null, "432", null, "232223", null, "5917", null, "74465", null, "4099", null, "18107", null, "2561", null, "5179", null, "1384", null, "12928", null, "1877", null, "139651", null, "5875", null, "35300", null, "4019", null, "268222", null, "6225", null, "80584", null, "5053", null, "222938", null, "6262", null, "205581", null, "4664", null, "57649", null, "4040", null, "1372", null, "595", null, "5677", null, "894", null, "-999999999", "N", "-999999999", "N", "9498", null, "2113", null, "23464", null, "2887", null, "28378", null, "2433", null, "198634", null, "4608", null, "74067", null, "2706", null, "163340", null, "5269", null, "23717", null, "2140", null, "45875", null, "4566", null, "93748", null, "4668", null, "90.2", null, "1.0", null, "38.2", null, "1.2", null, "61.8", null, "1.2", null, "39.9", null, "1.4", null, "13.9", null, "1.3", null, "4.1", null, "0.7", null, "9.8", null, "1.1", null, "46.2", null, "1.7", null, "23.5", null, "1.4", null, "15.4", null, "1.1", null, "7.9", null, "1.1", null, "2.4", null, "0.5", null, "5.6", null, "0.9", null, "0.2", null, "0.1", null, "76.5", null, "1.4", null, "24.5", null, "1.3", null, "6.0", null, "0.8", null, "1.7", null, "0.5", null, "4.3", null, "0.6", null, "46.0", null, "1.7", null, "11.6", null, "1.3", null, "88.4", null, "1.3", null, "26.5", null, "1.6", null, "73.5", null, "1.6", null, "67.7", null, "1.4", null, "19.0", null, "1.2", null, "0.5", null, "0.2", null, "1.9", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "3.1", null, "0.7", null, "7.7", null, "1.0", null, "9.3", null, "0.8", null, "65.4", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.5", null, "1.3", null, "28.1", null, "2.5", null, "57.4", null, "2.3", null, "29", "05"], ["5001900US2906", "Congressional District 6 (119th Congress), Missouri", "305221", null, "3846", null, "133913", null, "2966", null, "171308", null, "3430", null, "157167", null, "4551", null, "43019", null, "3003", null, "15279", null, "1924", null, "27740", null, "2273", null, "105035", null, "4522", null, "90397", null, "3652", null, "61978", null, "3172", null, "27745", null, "2517", null, "9796", null, "1765", null, "17949", null, "1933", null, "674", null, "366", null, "214824", null, "4306", null, "95189", null, "3668", null, "15274", null, "1922", null, "5483", null, "984", null, "9791", null, "1390", null, "104361", null, "4500", null, "31501", null, "2523", null, "273720", null, "4418", null, "89074", null, "3858", null, "216147", null, "4749", null, "275537", null, "3866", null, "8618", null, "1304", null, "757", null, "270", null, "3272", null, "875", null, "-999999999", "N", "-999999999", "N", "2698", null, "749", null, "14249", null, "1626", null, "10403", null, "1396", null, "271790", null, "3888", null, "75637", null, "1836", null, "200186", null, "4910", null, "29427", null, "2154", null, "58805", null, "4206", null, "111954", null, "3951", null, "-888888888", "(X)", "-888888888", "(X)", "43.9", null, "0.8", null, "56.1", null, "0.8", null, "51.5", null, "1.3", null, "14.1", null, "1.0", null, "5.0", null, "0.6", null, "9.1", null, "0.7", null, "34.4", null, "1.4", null, "29.6", null, "1.1", null, "20.3", null, "1.0", null, "9.1", null, "0.8", null, "3.2", null, "0.6", null, "5.9", null, "0.6", null, "0.2", null, "0.1", null, "70.4", null, "1.1", null, "31.2", null, "1.1", null, "5.0", null, "0.6", null, "1.8", null, "0.3", null, "3.2", null, "0.5", null, "34.2", null, "1.4", null, "10.3", null, "0.8", null, "89.7", null, "0.8", null, "29.2", null, "1.2", null, "70.8", null, "1.2", null, "90.3", null, "0.6", null, "2.8", null, "0.4", null, "0.2", null, "0.1", null, "1.1", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "0.9", null, "0.2", null, "4.7", null, "0.5", null, "3.4", null, "0.5", null, "89.0", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.7", null, "1.0", null, "29.4", null, "1.9", null, "55.9", null, "1.8", null, "23522", null, "2132", null, "9135", null, "1449", null, "14387", null, "1611", null, "4825", null, "968", null, "8997", null, "1387", null, "2198", null, "685", null, "6799", null, "1188", null, "9700", null, "1477", null, "9911", null, "1590", null, "3077", null, "893", null, "6666", null, "1272", null, "1408", null, "500", null, "5258", null, "1144", null, "168", null, "172", null, "13611", null, "1621", null, "1748", null, "508", null, "2331", null, "675", null, "790", null, "447", null, "1541", null, "476", null, "9532", null, "1460", null, "11186", null, "1731", null, "12336", null, "1634", null, "12861", null, "1679", null, "10661", null, "1627", null, "19466", null, "2131", null, "1345", null, "532", null, "94", null, "108", null, "122", null, "167", null, "-999999999", "N", "-999999999", "N", "571", null, "429", null, "1924", null, "604", null, "1454", null, "702", null, "19257", null, "2134", null, "24923", null, "3644", null, "13822", null, "1651", null, "3059", null, "699", null, "6238", null, "1074", null, "4525", null, "1112", null, "7.7", null, "0.7", null, "38.8", null, "4.7", null, "61.2", null, "4.7", null, "20.5", null, "3.6", null, "38.2", null, "5.1", null, "9.3", null, "2.7", null, "28.9", null, "4.8", null, "41.2", null, "4.9", null, "42.1", null, "5.1", null, "13.1", null, "3.4", null, "28.3", null, "4.7", null, "6.0", null, "2.0", null, "22.4", null, "4.5", null, "0.7", null, "0.7", null, "57.9", null, "5.1", null, "7.4", null, "2.2", null, "9.9", null, "2.9", null, "3.4", null, "1.8", null, "6.6", null, "2.2", null, "40.5", null, "4.8", null, "47.6", null, "5.6", null, "52.4", null, "5.6", null, "54.7", null, "5.4", null, "45.3", null, "5.4", null, "82.8", null, "3.9", null, "5.7", null, "2.3", null, "0.4", null, "0.5", null, "0.5", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "2.4", null, "1.8", null, "8.2", null, "2.6", null, "6.2", null, "2.9", null, "81.9", null, "4.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "22.1", null, "5.0", null, "45.1", null, "6.0", null, "32.7", null, "6.1", null, "281699", null, "4247", null, "124778", null, "2842", null, "156921", null, "3795", null, "152342", null, "4581", null, "34022", null, "2803", null, "13081", null, "1861", null, "20941", null, "2144", null, "95335", null, "4499", null, "80486", null, "3484", null, "58901", null, "3087", null, "21079", null, "2308", null, "8388", null, "1675", null, "12691", null, "1777", null, "506", null, "391", null, "201213", null, "4273", null, "93441", null, "3640", null, "12943", null, "1647", null, "4693", null, "849", null, "8250", null, "1276", null, "94829", null, "4456", null, "20315", null, "2225", null, "261384", null, "4506", null, "76213", null, "3575", null, "205486", null, "4745", null, "256071", null, "4282", null, "7273", null, "1276", null, "663", null, "240", null, "3150", null, "896", null, "-999999999", "N", "-999999999", "N", "2127", null, "647", null, "12325", null, "1628", null, "8949", null, "1314", null, "252533", null, "4237", null, "80243", null, "1628", null, "186364", null, "4783", null, "26368", null, "2001", null, "52567", null, "4079", null, "107429", null, "4002", null, "92.3", null, "0.7", null, "44.3", null, "0.9", null, "55.7", null, "0.9", null, "54.1", null, "1.4", null, "12.1", null, "1.0", null, "4.6", null, "0.7", null, "7.4", null, "0.8", null, "33.8", null, "1.5", null, "28.6", null, "1.1", null, "20.9", null, "1.0", null, "7.5", null, "0.8", null, "3.0", null, "0.6", null, "4.5", null, "0.6", null, "0.2", null, "0.1", null, "71.4", null, "1.1", null, "33.2", null, "1.2", null, "4.6", null, "0.6", null, "1.7", null, "0.3", null, "2.9", null, "0.5", null, "33.7", null, "1.5", null, "7.2", null, "0.8", null, "92.8", null, "0.8", null, "27.1", null, "1.2", null, "72.9", null, "1.2", null, "90.9", null, "0.7", null, "2.6", null, "0.5", null, "0.2", null, "0.1", null, "1.1", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "0.8", null, "0.2", null, "4.4", null, "0.6", null, "3.2", null, "0.5", null, "89.6", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.1", null, "1.0", null, "28.2", null, "2.0", null, "57.6", null, "1.8", null, "29", "06"], ["5001900US2907", "Congressional District 7 (119th Congress), Missouri", "323866", null, "3758", null, "137032", null, "2862", null, "186834", null, "3559", null, "158497", null, "4865", null, "47091", null, "3977", null, "17111", null, "2463", null, "29980", null, "2811", null, "118278", null, "4646", null, "92680", null, "3535", null, "61179", null, "2940", null, "30453", null, "3384", null, "10774", null, "2261", null, "19679", null, "2262", null, "1048", null, "593", null, "231186", null, "4064", null, "97318", null, "4272", null, "16638", null, "2110", null, "6337", null, "1298", null, "10301", null, "1589", null, "117230", null, "4715", null, "39922", null, "2940", null, "283944", null, "4035", null, "101546", null, "4782", null, "222320", null, "4858", null, "289047", null, "3697", null, "3888", null, "1136", null, "2232", null, "700", null, "3697", null, "667", null, "-999999999", "N", "-999999999", "N", "5874", null, "1407", null, "18607", null, "2155", null, "16079", null, "1586", null, "284474", null, "3393", null, "66064", null, "1622", null, "205588", null, "5044", null, "35588", null, "2102", null, "62463", null, "4207", null, "107537", null, "4602", null, "-888888888", "(X)", "-888888888", "(X)", "42.3", null, "0.8", null, "57.7", null, "0.8", null, "48.9", null, "1.5", null, "14.5", null, "1.2", null, "5.3", null, "0.8", null, "9.3", null, "0.8", null, "36.5", null, "1.4", null, "28.6", null, "1.0", null, "18.9", null, "0.9", null, "9.4", null, "1.0", null, "3.3", null, "0.7", null, "6.1", null, "0.7", null, "0.3", null, "0.2", null, "71.4", null, "1.0", null, "30.0", null, "1.3", null, "5.1", null, "0.7", null, "2.0", null, "0.4", null, "3.2", null, "0.5", null, "36.2", null, "1.4", null, "12.3", null, "0.9", null, "87.7", null, "0.9", null, "31.4", null, "1.4", null, "68.6", null, "1.4", null, "89.2", null, "0.8", null, "1.2", null, "0.3", null, "0.7", null, "0.2", null, "1.1", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "1.8", null, "0.4", null, "5.7", null, "0.7", null, "5.0", null, "0.5", null, "87.8", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.3", null, "0.9", null, "30.4", null, "1.9", null, "52.3", null, "1.8", null, "33379", null, "3221", null, "12258", null, "1709", null, "21121", null, "2967", null, "7632", null, "1403", null, "12174", null, "2080", null, "3070", null, "1117", null, "9104", null, "1518", null, "13573", null, "1814", null, "16007", null, "2379", null, "5407", null, "1261", null, "10344", null, "2083", null, "2472", null, "1029", null, "7872", null, "1587", null, "256", null, "209", null, "17372", null, "2147", null, "2225", null, "683", null, "1830", null, "614", null, "598", null, "382", null, "1232", null, "457", null, "13317", null, "1780", null, "16755", null, "2203", null, "16624", null, "2370", null, "18521", null, "2319", null, "14858", null, "2332", null, "27306", null, "2577", null, "1447", null, "963", null, "271", null, "169", null, "225", null, "228", null, "-999999999", "N", "-999999999", "N", "1107", null, "864", null, "2864", null, "852", null, "2328", null, "1071", null, "26714", null, "2581", null, "26362", null, "4411", null, "19806", null, "2390", null, "4725", null, "1128", null, "9931", null, "2125", null, "5150", null, "1210", null, "10.3", null, "1.0", null, "36.7", null, "4.9", null, "63.3", null, "4.9", null, "22.9", null, "4.1", null, "36.5", null, "4.3", null, "9.2", null, "3.0", null, "27.3", null, "3.5", null, "40.7", null, "4.0", null, "48.0", null, "4.8", null, "16.2", null, "3.7", null, "31.0", null, "4.7", null, "7.4", null, "2.8", null, "23.6", null, "3.8", null, "0.8", null, "0.6", null, "52.0", null, "4.8", null, "6.7", null, "2.0", null, "5.5", null, "1.8", null, "1.8", null, "1.1", null, "3.7", null, "1.4", null, "39.9", null, "4.0", null, "50.2", null, "4.8", null, "49.8", null, "4.8", null, "55.5", null, "5.0", null, "44.5", null, "5.0", null, "81.8", null, "3.8", null, "4.3", null, "2.7", null, "0.8", null, "0.5", null, "0.7", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "3.3", null, "2.5", null, "8.6", null, "2.5", null, "7.0", null, "3.0", null, "80.0", null, "3.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "23.9", null, "5.7", null, "50.1", null, "7.3", null, "26.0", null, "5.7", null, "290487", null, "4774", null, "124774", null, "2727", null, "165713", null, "4260", null, "150865", null, "4728", null, "34917", null, "3641", null, "14041", null, "2409", null, "20876", null, "2585", null, "104705", null, "4880", null, "76673", null, "3548", null, "55772", null, "2579", null, "20109", null, "2811", null, "8302", null, "1950", null, "11807", null, "1895", null, "792", null, "570", null, "213814", null, "4213", null, "95093", null, "4277", null, "14808", null, "2060", null, "5739", null, "1284", null, "9069", null, "1567", null, "103913", null, "4876", null, "23167", null, "2540", null, "267320", null, "4703", null, "83025", null, "4650", null, "207462", null, "5257", null, "261741", null, "4602", null, "2441", null, "885", null, "1961", null, "700", null, "3472", null, "678", null, "-999999999", "N", "-999999999", "N", "4767", null, "1281", null, "15743", null, "1964", null, "13751", null, "1525", null, "257760", null, "4338", null, "71053", null, "1930", null, "185782", null, "5204", null, "30863", null, "2119", null, "52532", null, "4198", null, "102387", null, "4569", null, "89.7", null, "1.0", null, "43.0", null, "0.9", null, "57.0", null, "0.9", null, "51.9", null, "1.6", null, "12.0", null, "1.2", null, "4.8", null, "0.8", null, "7.2", null, "0.9", null, "36.0", null, "1.5", null, "26.4", null, "1.1", null, "19.2", null, "0.9", null, "6.9", null, "0.9", null, "2.9", null, "0.7", null, "4.1", null, "0.6", null, "0.3", null, "0.2", null, "73.6", null, "1.1", null, "32.7", null, "1.5", null, "5.1", null, "0.7", null, "2.0", null, "0.4", null, "3.1", null, "0.5", null, "35.8", null, "1.5", null, "8.0", null, "0.8", null, "92.0", null, "0.8", null, "28.6", null, "1.5", null, "71.4", null, "1.5", null, "90.1", null, "0.9", null, "0.8", null, "0.3", null, "0.7", null, "0.2", null, "1.2", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "1.6", null, "0.4", null, "5.4", null, "0.7", null, "4.7", null, "0.5", null, "88.7", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.6", null, "1.1", null, "28.3", null, "2.1", null, "55.1", null, "1.9", null, "29", "07"], ["5001900US2908", "Congressional District 8 (119th Congress), Missouri", "306990", null, "3772", null, "138250", null, "3253", null, "168740", null, "4244", null, "151475", null, "5120", null, "53515", null, "3758", null, "16912", null, "2112", null, "36603", null, "2922", null, "102000", null, "3833", null, "93275", null, "3740", null, "58014", null, "3357", null, "34077", null, "2984", null, "10155", null, "1804", null, "23922", null, "2450", null, "1184", null, "836", null, "213715", null, "3974", null, "93461", null, "3878", null, "19438", null, "2172", null, "6757", null, "1313", null, "12681", null, "1742", null, "100816", null, "3911", null, "50781", null, "3442", null, "256209", null, "4559", null, "108475", null, "4295", null, "198515", null, "5262", null, "276572", null, "3621", null, "9015", null, "1151", null, "1136", null, "435", null, "2375", null, "660", null, "-999999999", "N", "-999999999", "N", "-999999999", "N", "-999999999", "N", "16094", null, "1563", null, "6595", null, "1228", null, "273743", null, "3552", null, "59897", null, "2387", null, "204990", null, "5256", null, "36988", null, "2266", null, "69149", null, "3675", null, "98853", null, "4075", null, "-888888888", "(X)", "-888888888", "(X)", "45.0", null, "1.0", null, "55.0", null, "1.0", null, "49.3", null, "1.5", null, "17.4", null, "1.2", null, "5.5", null, "0.7", null, "11.9", null, "0.9", null, "33.2", null, "1.3", null, "30.4", null, "1.1", null, "18.9", null, "1.1", null, "11.1", null, "0.9", null, "3.3", null, "0.6", null, "7.8", null, "0.8", null, "0.4", null, "0.3", null, "69.6", null, "1.1", null, "30.4", null, "1.2", null, "6.3", null, "0.7", null, "2.2", null, "0.4", null, "4.1", null, "0.6", null, "32.8", null, "1.3", null, "16.5", null, "1.1", null, "83.5", null, "1.1", null, "35.3", null, "1.4", null, "64.7", null, "1.4", null, "90.1", null, "0.6", null, "2.9", null, "0.4", null, "0.4", null, "0.1", null, "0.8", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "5.2", null, "0.5", null, "2.1", null, "0.4", null, "89.2", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.0", null, "1.1", null, "33.7", null, "1.5", null, "48.2", null, "1.6", null, "37855", null, "3291", null, "16412", null, "2141", null, "21443", null, "2478", null, "7747", null, "1313", null, "15391", null, "2096", null, "3019", null, "840", null, "12372", null, "1843", null, "14717", null, "1935", null, "16039", null, "2195", null, "4758", null, "970", null, "11277", null, "1913", null, "2014", null, "640", null, "9263", null, "1770", null, "4", null, "7", null, "21816", null, "2313", null, "2989", null, "921", null, "4114", null, "1132", null, "1005", null, "490", null, "3109", null, "957", null, "14713", null, "1935", null, "21467", null, "2588", null, "16388", null, "2360", null, "21872", null, "2353", null, "15983", null, "2022", null, "31758", null, "2897", null, "2432", null, "909", null, "297", null, "228", null, "0", null, "198", null, "-999999999", "N", "-999999999", "N", "-999999999", "N", "-999999999", "N", "3328", null, "956", null, "1014", null, "609", null, "31424", null, "2884", null, "23089", null, "2796", null, "23138", null, "2725", null, "5628", null, "1109", null, "11466", null, "1855", null, "6044", null, "1329", null, "12.3", null, "1.0", null, "43.4", null, "4.2", null, "56.6", null, "4.2", null, "20.5", null, "3.1", null, "40.7", null, "3.6", null, "8.0", null, "2.0", null, "32.7", null, "3.5", null, "38.9", null, "4.3", null, "42.4", null, "4.1", null, "12.6", null, "2.5", null, "29.8", null, "3.9", null, "5.3", null, "1.6", null, "24.5", null, "3.8", null, "0.0", null, "0.1", null, "57.6", null, "4.1", null, "7.9", null, "2.3", null, "10.9", null, "2.8", null, "2.7", null, "1.3", null, "8.2", null, "2.5", null, "38.9", null, "4.3", null, "56.7", null, "4.9", null, "43.3", null, "4.9", null, "57.8", null, "3.8", null, "42.2", null, "3.8", null, "83.9", null, "3.0", null, "6.4", null, "2.3", null, "0.8", null, "0.6", null, "0.0", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "8.8", null, "2.3", null, "2.7", null, "1.5", null, "83.0", null, "3.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "24.3", null, "4.0", null, "49.6", null, "5.4", null, "26.1", null, "4.8", null, "269135", null, "3986", null, "121838", null, "3334", null, "147297", null, "4014", null, "143728", null, "5139", null, "38124", null, "3356", null, "13893", null, "1906", null, "24231", null, "2596", null, "87283", null, "4378", null, "77236", null, "3618", null, "53256", null, "3143", null, "22800", null, "2634", null, "8141", null, "1641", null, "14659", null, "2014", null, "1180", null, "836", null, "191899", null, "4065", null, "90472", null, "3967", null, "15324", null, "2093", null, "5752", null, "1199", null, "9572", null, "1615", null, "86103", null, "4385", null, "29314", null, "2700", null, "239821", null, "4190", null, "86603", null, "3835", null, "182532", null, "5033", null, "244814", null, "4077", null, "6583", null, "1051", null, "839", null, "358", null, "2375", null, "660", null, "-999999999", "N", "-999999999", "N", "-999999999", "N", "-999999999", "N", "12766", null, "1491", null, "5581", null, "1316", null, "242319", null, "3961", null, "65327", null, "2073", null, "181852", null, "4986", null, "31360", null, "2143", null, "57683", null, "3457", null, "92809", null, "4023", null, "87.7", null, "1.0", null, "45.3", null, "1.1", null, "54.7", null, "1.1", null, "53.4", null, "1.8", null, "14.2", null, "1.2", null, "5.2", null, "0.7", null, "9.0", null, "1.0", null, "32.4", null, "1.6", null, "28.7", null, "1.2", null, "19.8", null, "1.1", null, "8.5", null, "1.0", null, "3.0", null, "0.6", null, "5.4", null, "0.7", null, "0.4", null, "0.3", null, "71.3", null, "1.2", null, "33.6", null, "1.4", null, "5.7", null, "0.8", null, "2.1", null, "0.4", null, "3.6", null, "0.6", null, "32.0", null, "1.6", null, "10.9", null, "1.0", null, "89.1", null, "1.0", null, "32.2", null, "1.4", null, "67.8", null, "1.4", null, "91.0", null, "0.7", null, "2.4", null, "0.4", null, "0.3", null, "0.1", null, "0.9", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "4.7", null, "0.6", null, "2.1", null, "0.5", null, "90.0", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.2", null, "1.2", null, "31.7", null, "1.6", null, "51.0", null, "1.7", null, "29", "08"], ["5001900US3001", "Congressional District 1 (119th Congress), Montana", "239637", null, "3141", null, "104486", null, "2654", null, "135151", null, "3850", null, "115684", null, "4347", null, "27568", null, "3010", null, "10250", null, "1954", null, "17318", null, "2229", null, "96385", null, "3962", null, "57410", null, "3436", null, "40914", null, "2790", null, "15452", null, "2150", null, "5192", null, "1324", null, "10260", null, "1743", null, "1044", null, "537", null, "182227", null, "4540", null, "74770", null, "3186", null, "12116", null, "2053", null, "5058", null, "1490", null, "7058", null, "1353", null, "95341", null, "3943", null, "25573", null, "2445", null, "214064", null, "3596", null, "62725", null, "3647", null, "176912", null, "3915", null, "212922", null, "3496", null, "-999999999", "N", "-999999999", "N", "7675", null, "954", null, "2166", null, "703", null, "-999999999", "N", "-999999999", "N", "-999999999", "N", "-999999999", "N", "14845", null, "1722", null, "10249", null, "1193", null, "209045", null, "3418", null, "77017", null, "2933", null, "143252", null, "4352", null, "27362", null, "1875", null, "38252", null, "3076", null, "77638", null, "3398", null, "-888888888", "(X)", "-888888888", "(X)", "43.6", null, "1.2", null, "56.4", null, "1.2", null, "48.3", null, "1.6", null, "11.5", null, "1.3", null, "4.3", null, "0.8", null, "7.2", null, "0.9", null, "40.2", null, "1.6", null, "24.0", null, "1.5", null, "17.1", null, "1.1", null, "6.4", null, "0.9", null, "2.2", null, "0.6", null, "4.3", null, "0.7", null, "0.4", null, "0.2", null, "76.0", null, "1.5", null, "31.2", null, "1.2", null, "5.1", null, "0.8", null, "2.1", null, "0.6", null, "2.9", null, "0.6", null, "39.8", null, "1.6", null, "10.7", null, "1.0", null, "89.3", null, "1.0", null, "26.2", null, "1.4", null, "73.8", null, "1.4", null, "88.9", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "3.2", null, "0.4", null, "0.9", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "6.2", null, "0.7", null, "4.3", null, "0.5", null, "87.2", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "19.1", null, "1.2", null, "26.7", null, "1.9", null, "54.2", null, "1.9", null, "15604", null, "1791", null, "6531", null, "1319", null, "9073", null, "1466", null, "4034", null, "1067", null, "5130", null, "1078", null, "1096", null, "557", null, "4034", null, "1084", null, "6440", null, "1277", null, "6432", null, "1265", null, "2245", null, "729", null, "4061", null, "996", null, "1018", null, "568", null, "3043", null, "978", null, "126", null, "167", null, "9172", null, "1591", null, "1789", null, "808", null, "1069", null, "466", null, "78", null, "114", null, "991", null, "438", null, "6314", null, "1251", null, "6967", null, "1320", null, "8637", null, "1378", null, "8923", null, "1547", null, "6681", null, "1373", null, "11669", null, "1571", null, "-999999999", "N", "-999999999", "N", "2260", null, "594", null, "0", null, "185", null, "-999999999", "N", "-999999999", "N", "-999999999", "N", "-999999999", "N", "1562", null, "576", null, "1606", null, "625", null, "11142", null, "1594", null, "26436", null, "4706", null, "9164", null, "1518", null, "1763", null, "730", null, "4269", null, "1056", null, "3132", null, "907", null, "6.5", null, "0.8", null, "41.9", null, "6.8", null, "58.1", null, "6.8", null, "25.9", null, "5.9", null, "32.9", null, "6.1", null, "7.0", null, "3.6", null, "25.9", null, "6.4", null, "41.3", null, "6.8", null, "41.2", null, "7.1", null, "14.4", null, "4.5", null, "26.0", null, "6.0", null, "6.5", null, "3.7", null, "19.5", null, "6.1", null, "0.8", null, "1.1", null, "58.8", null, "7.1", null, "11.5", null, "4.8", null, "6.9", null, "2.9", null, "0.5", null, "0.7", null, "6.4", null, "2.7", null, "40.5", null, "6.9", null, "44.6", null, "6.5", null, "55.4", null, "6.5", null, "57.2", null, "7.4", null, "42.8", null, "7.4", null, "74.8", null, "4.5", null, "-999999999.0", "N", "-999999999.0", "N", "14.5", null, "3.9", null, "0.0", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "10.0", null, "3.3", null, "10.3", null, "3.8", null, "71.4", null, "5.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "19.2", null, "7.4", null, "46.6", null, "8.5", null, "34.2", null, "8.5", null, "224033", null, "3608", null, "97955", null, "3038", null, "126078", null, "4022", null, "111650", null, "4255", null, "22438", null, "2814", null, "9154", null, "1853", null, "13284", null, "1920", null, "89945", null, "3943", null, "50978", null, "3227", null, "38669", null, "2645", null, "11391", null, "1911", null, "4174", null, "1140", null, "7217", null, "1507", null, "918", null, "545", null, "173055", null, "4608", null, "72981", null, "3310", null, "11047", null, "1994", null, "4980", null, "1502", null, "6067", null, "1248", null, "89027", null, "3955", null, "18606", null, "2562", null, "205427", null, "3902", null, "53802", null, "3282", null, "170231", null, "3989", null, "201253", null, "3769", null, "-999999999", "N", "-999999999", "N", "5415", null, "880", null, "2166", null, "703", null, "-999999999", "N", "-999999999", "N", "-999999999", "N", "-999999999", "N", "13283", null, "1696", null, "8643", null, "1191", null, "197903", null, "3737", null, "81552", null, "2770", null, "134088", null, "4229", null, "25599", null, "1865", null, "33983", null, "2995", null, "74506", null, "3489", null, "93.5", null, "0.8", null, "43.7", null, "1.3", null, "56.3", null, "1.3", null, "49.8", null, "1.6", null, "10.0", null, "1.3", null, "4.1", null, "0.8", null, "5.9", null, "0.9", null, "40.1", null, "1.6", null, "22.8", null, "1.5", null, "17.3", null, "1.2", null, "5.1", null, "0.9", null, "1.9", null, "0.5", null, "3.2", null, "0.7", null, "0.4", null, "0.2", null, "77.2", null, "1.5", null, "32.6", null, "1.3", null, "4.9", null, "0.9", null, "2.2", null, "0.7", null, "2.7", null, "0.6", null, "39.7", null, "1.6", null, "8.3", null, "1.1", null, "91.7", null, "1.1", null, "24.0", null, "1.4", null, "76.0", null, "1.4", null, "89.8", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "2.4", null, "0.4", null, "1.0", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "5.9", null, "0.8", null, "3.9", null, "0.5", null, "88.3", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "19.1", null, "1.3", null, "25.3", null, "2.0", null, "55.6", null, "2.0", null, "30", "01"], ["5001900US3002", "Congressional District 2 (119th Congress), Montana", "229344", null, "2705", null, "103023", null, "2382", null, "126321", null, "3300", null, "113953", null, "4218", null, "28012", null, "2685", null, "10906", null, "1920", null, "17106", null, "2201", null, "87379", null, "4399", null, "63344", null, "3122", null, "43123", null, "2664", null, "19584", null, "2375", null, "8178", null, "1637", null, "11406", null, "1886", null, "637", null, "503", null, "166000", null, "3552", null, "70830", null, "3370", null, "8428", null, "1580", null, "2728", null, "927", null, "5700", null, "1323", null, "86742", null, "4404", null, "23931", null, "2558", null, "205413", null, "3642", null, "68508", null, "4024", null, "160836", null, "4332", null, "198956", null, "2947", null, "-999999999", "N", "-999999999", "N", "10880", null, "1110", null, "1632", null, "593", null, "-999999999", "N", "-999999999", "N", "-999999999", "N", "-999999999", "N", "15615", null, "2056", null, "8791", null, "1329", null, "196095", null, "2840", null, "73599", null, "2562", null, "141965", null, "4623", null, "23779", null, "2051", null, "38774", null, "2610", null, "79412", null, "3371", null, "-888888888", "(X)", "-888888888", "(X)", "44.9", null, "1.1", null, "55.1", null, "1.1", null, "49.7", null, "1.7", null, "12.2", null, "1.2", null, "4.8", null, "0.8", null, "7.5", null, "1.0", null, "38.1", null, "1.9", null, "27.6", null, "1.3", null, "18.8", null, "1.1", null, "8.5", null, "1.0", null, "3.6", null, "0.7", null, "5.0", null, "0.8", null, "0.3", null, "0.2", null, "72.4", null, "1.3", null, "30.9", null, "1.4", null, "3.7", null, "0.7", null, "1.2", null, "0.4", null, "2.5", null, "0.6", null, "37.8", null, "1.9", null, "10.4", null, "1.1", null, "89.6", null, "1.1", null, "29.9", null, "1.7", null, "70.1", null, "1.7", null, "86.8", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "4.7", null, "0.5", null, "0.7", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "6.8", null, "0.9", null, "3.8", null, "0.6", null, "85.5", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.7", null, "1.3", null, "27.3", null, "1.6", null, "55.9", null, "1.4", null, "17073", null, "2053", null, "6871", null, "1407", null, "10202", null, "1682", null, "3089", null, "964", null, "6099", null, "1391", null, "2002", null, "919", null, "4097", null, "1073", null, "7885", null, "1630", null, "7761", null, "1622", null, "2031", null, "753", null, "5667", null, "1420", null, "1846", null, "913", null, "3821", null, "1064", null, "63", null, "85", null, "9312", null, "1758", null, "1058", null, "635", null, "432", null, "258", null, "156", null, "130", null, "276", null, "227", null, "7822", null, "1621", null, "7465", null, "1447", null, "9608", null, "1774", null, "9741", null, "1814", null, "7332", null, "1360", null, "11608", null, "1531", null, "-999999999", "N", "-999999999", "N", "2906", null, "791", null, "59", null, "79", null, "-999999999", "N", "-999999999", "N", "-999999999", "N", "-999999999", "N", "2398", null, "1156", null, "655", null, "442", null, "11280", null, "1593", null, "29560", null, "8745", null, "9188", null, "1597", null, "1332", null, "552", null, "3739", null, "1073", null, "4117", null, "1060", null, "7.4", null, "0.9", null, "40.2", null, "6.9", null, "59.8", null, "6.9", null, "18.1", null, "5.3", null, "35.7", null, "7.2", null, "11.7", null, "5.2", null, "24.0", null, "5.9", null, "46.2", null, "7.3", null, "45.5", null, "7.9", null, "11.9", null, "4.3", null, "33.2", null, "7.3", null, "10.8", null, "5.1", null, "22.4", null, "5.8", null, "0.4", null, "0.5", null, "54.5", null, "7.9", null, "6.2", null, "3.7", null, "2.5", null, "1.6", null, "0.9", null, "0.8", null, "1.6", null, "1.4", null, "45.8", null, "7.3", null, "43.7", null, "7.3", null, "56.3", null, "7.3", null, "57.1", null, "7.1", null, "42.9", null, "7.1", null, "68.0", null, "6.4", null, "-999999999.0", "N", "-999999999.0", "N", "17.0", null, "4.2", null, "0.3", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "14.0", null, "6.3", null, "3.8", null, "2.7", null, "66.1", null, "6.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.5", null, "6.3", null, "40.7", null, "7.9", null, "44.8", null, "8.6", null, "212271", null, "3484", null, "96152", null, "2392", null, "116119", null, "3497", null, "110864", null, "4261", null, "21913", null, "2394", null, "8904", null, "1778", null, "13009", null, "1836", null, "79494", null, "4085", null, "55583", null, "3164", null, "41092", null, "2698", null, "13917", null, "1847", null, "6332", null, "1424", null, "7585", null, "1467", null, "574", null, "493", null, "156688", null, "3576", null, "69772", null, "3398", null, "7996", null, "1533", null, "2572", null, "912", null, "5424", null, "1264", null, "78920", null, "4103", null, "16466", null, "1970", null, "195805", null, "3963", null, "58767", null, "3669", null, "153504", null, "4344", null, "187348", null, "3338", null, "-999999999", "N", "-999999999", "N", "7974", null, "1025", null, "1573", null, "607", null, "-999999999", "N", "-999999999", "N", "-999999999", "N", "-999999999", "N", "13217", null, "1700", null, "8136", null, "1281", null, "184815", null, "3158", null, "77758", null, "2084", null, "132777", null, "4544", null, "22447", null, "1860", null, "35035", null, "2212", null, "75295", null, "3270", null, "92.6", null, "0.9", null, "45.3", null, "1.1", null, "54.7", null, "1.1", null, "52.2", null, "1.8", null, "10.3", null, "1.1", null, "4.2", null, "0.8", null, "6.1", null, "0.9", null, "37.4", null, "1.8", null, "26.2", null, "1.4", null, "19.4", null, "1.2", null, "6.6", null, "0.9", null, "3.0", null, "0.7", null, "3.6", null, "0.7", null, "0.3", null, "0.2", null, "73.8", null, "1.4", null, "32.9", null, "1.6", null, "3.8", null, "0.7", null, "1.2", null, "0.4", null, "2.6", null, "0.6", null, "37.2", null, "1.8", null, "7.8", null, "0.9", null, "92.2", null, "0.9", null, "27.7", null, "1.7", null, "72.3", null, "1.7", null, "88.3", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "3.8", null, "0.5", null, "0.7", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "6.2", null, "0.8", null, "3.8", null, "0.6", null, "87.1", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.9", null, "1.3", null, "26.4", null, "1.5", null, "56.7", null, "1.3", null, "30", "02"], ["5001900US3101", "Congressional District 1 (119th Congress), Nebraska", "275740", null, "2734", null, "103661", null, "2342", null, "172079", null, "2746", null, "135277", null, "4456", null, "34697", null, "2763", null, "11492", null, "1680", null, "23205", null, "2226", null, "105766", null, "4603", null, "80868", null, "3615", null, "59088", null, "3373", null, "21138", null, "2454", null, "7290", null, "1489", null, "13848", null, "1865", null, "642", null, "377", null, "194872", null, "4154", null, "76189", null, "3214", null, "13559", null, "1729", null, "4202", null, "924", null, "9357", null, "1488", null, "105124", null, "4549", null, "31967", null, "2647", null, "243773", null, "3721", null, "70845", null, "3897", null, "204895", null, "3878", null, "232961", null, "3156", null, "8782", null, "1350", null, "1797", null, "792", null, "7310", null, "830", null, "-999999999", "N", "-999999999", "N", "6630", null, "1395", null, "18059", null, "2351", null, "23713", null, "1842", null, "226901", null, "2990", null, "77659", null, "3262", null, "169974", null, "4488", null, "22820", null, "1806", null, "45686", null, "3338", null, "101468", null, "4000", null, "-888888888", "(X)", "-888888888", "(X)", "37.6", null, "0.8", null, "62.4", null, "0.8", null, "49.1", null, "1.6", null, "12.6", null, "1.0", null, "4.2", null, "0.6", null, "8.4", null, "0.8", null, "38.4", null, "1.6", null, "29.3", null, "1.3", null, "21.4", null, "1.2", null, "7.7", null, "0.9", null, "2.6", null, "0.5", null, "5.0", null, "0.7", null, "0.2", null, "0.1", null, "70.7", null, "1.3", null, "27.6", null, "1.2", null, "4.9", null, "0.6", null, "1.5", null, "0.3", null, "3.4", null, "0.5", null, "38.1", null, "1.6", null, "11.6", null, "1.0", null, "88.4", null, "1.0", null, "25.7", null, "1.3", null, "74.3", null, "1.3", null, "84.5", null, "0.8", null, "3.2", null, "0.5", null, "0.7", null, "0.3", null, "2.7", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "2.4", null, "0.5", null, "6.5", null, "0.8", null, "8.6", null, "0.7", null, "82.3", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.4", null, "1.0", null, "26.9", null, "1.8", null, "59.7", null, "1.8", null, "22046", null, "2269", null, "7398", null, "1223", null, "14648", null, "1916", null, "6605", null, "1370", null, "7941", null, "1645", null, "2555", null, "1087", null, "5386", null, "1348", null, "7500", null, "1266", null, "11515", null, "1841", null, "5079", null, "1229", null, "6370", null, "1564", null, "1928", null, "920", null, "4442", null, "1300", null, "66", null, "107", null, "10531", null, "1523", null, "1526", null, "667", null, "1571", null, "508", null, "627", null, "420", null, "944", null, "452", null, "7434", null, "1245", null, "9376", null, "1730", null, "12670", null, "2068", null, "10212", null, "1370", null, "11834", null, "2061", null, "15278", null, "1858", null, "2163", null, "1106", null, "241", null, "137", null, "790", null, "481", null, "-999999999", "N", "-999999999", "N", "1051", null, "594", null, "2470", null, "911", null, "4006", null, "1147", null, "13880", null, "1762", null, "33473", null, "9625", null, "14546", null, "2073", null, "2350", null, "702", null, "8284", null, "1676", null, "3912", null, "1012", null, "8.0", null, "0.8", null, "33.6", null, "4.7", null, "66.4", null, "4.7", null, "30.0", null, "5.4", null, "36.0", null, "5.9", null, "11.6", null, "4.6", null, "24.4", null, "5.5", null, "34.0", null, "5.3", null, "52.2", null, "5.6", null, "23.0", null, "5.2", null, "28.9", null, "5.9", null, "8.7", null, "3.9", null, "20.1", null, "5.3", null, "0.3", null, "0.5", null, "47.8", null, "5.6", null, "6.9", null, "2.8", null, "7.1", null, "2.3", null, "2.8", null, "1.9", null, "4.3", null, "2.1", null, "33.7", null, "5.2", null, "42.5", null, "6.9", null, "57.5", null, "6.9", null, "46.3", null, "5.9", null, "53.7", null, "5.9", null, "69.3", null, "5.7", null, "9.8", null, "4.7", null, "1.1", null, "0.6", null, "3.6", null, "2.2", null, "-999999999.0", "N", "-999999999.0", "N", "4.8", null, "2.6", null, "11.2", null, "4.0", null, "18.2", null, "4.8", null, "63.0", null, "5.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.2", null, "5.1", null, "57.0", null, "6.1", null, "26.9", null, "6.1", null, "253694", null, "3502", null, "96263", null, "2223", null, "157431", null, "3233", null, "128672", null, "4266", null, "26756", null, "2532", null, "8937", null, "1412", null, "17819", null, "2064", null, "98266", null, "4296", null, "69353", null, "3497", null, "54009", null, "3151", null, "14768", null, "2052", null, "5362", null, "1216", null, "9406", null, "1613", null, "576", null, "348", null, "184341", null, "3991", null, "74663", null, "3121", null, "11988", null, "1668", null, "3575", null, "869", null, "8413", null, "1438", null, "97690", null, "4270", null, "22591", null, "2576", null, "231103", null, "3834", null, "60633", null, "3678", null, "193061", null, "3930", null, "217683", null, "3243", null, "6619", null, "1302", null, "1556", null, "789", null, "6520", null, "908", null, "-999999999", "N", "-999999999", "N", "5579", null, "1338", null, "15589", null, "2300", null, "19707", null, "2126", null, "213021", null, "3136", null, "82015", null, "2016", null, "155428", null, "4460", null, "20470", null, "1618", null, "37402", null, "3024", null, "97556", null, "3883", null, "92.0", null, "0.8", null, "37.9", null, "0.8", null, "62.1", null, "0.8", null, "50.7", null, "1.6", null, "10.5", null, "1.0", null, "3.5", null, "0.6", null, "7.0", null, "0.8", null, "38.7", null, "1.6", null, "27.3", null, "1.3", null, "21.3", null, "1.2", null, "5.8", null, "0.8", null, "2.1", null, "0.5", null, "3.7", null, "0.6", null, "0.2", null, "0.1", null, "72.7", null, "1.3", null, "29.4", null, "1.2", null, "4.7", null, "0.7", null, "1.4", null, "0.3", null, "3.3", null, "0.6", null, "38.5", null, "1.6", null, "8.9", null, "1.0", null, "91.1", null, "1.0", null, "23.9", null, "1.4", null, "76.1", null, "1.4", null, "85.8", null, "0.9", null, "2.6", null, "0.5", null, "0.6", null, "0.3", null, "2.6", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "2.2", null, "0.5", null, "6.1", null, "0.9", null, "7.8", null, "0.8", null, "84.0", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.2", null, "1.0", null, "24.1", null, "1.8", null, "62.8", null, "1.7", null, "31", "01"], ["5001900US3102", "Congressional District 2 (119th Congress), Nebraska", "272900", null, "3233", null, "96790", null, "2724", null, "176110", null, "3089", null, "128746", null, "4114", null, "40569", null, "3686", null, "12611", null, "2286", null, "27958", null, "3123", null, "103585", null, "4213", null, "85892", null, "3915", null, "60020", null, "2912", null, "24965", null, "3275", null, "6542", null, "1612", null, "18423", null, "2789", null, "907", null, "571", null, "187008", null, "3830", null, "68726", null, "3758", null, "15604", null, "2030", null, "6069", null, "1627", null, "9535", null, "1583", null, "102678", null, "4116", null, "29118", null, "2777", null, "243782", null, "4361", null, "57849", null, "3379", null, "215051", null, "4226", null, "209248", null, "3306", null, "24044", null, "2281", null, "1281", null, "541", null, "10133", null, "1033", null, "-999999999", "N", "-999999999", "N", "9558", null, "1733", null, "18556", null, "2138", null, "25981", null, "1648", null, "202713", null, "2996", null, "84478", null, "3287", null, "169315", null, "4781", null, "19963", null, "1731", null, "42547", null, "3654", null, "106805", null, "4307", null, "-888888888", "(X)", "-888888888", "(X)", "35.5", null, "0.9", null, "64.5", null, "0.9", null, "47.2", null, "1.4", null, "14.9", null, "1.3", null, "4.6", null, "0.8", null, "10.2", null, "1.1", null, "38.0", null, "1.5", null, "31.5", null, "1.3", null, "22.0", null, "1.0", null, "9.1", null, "1.2", null, "2.4", null, "0.6", null, "6.8", null, "1.0", null, "0.3", null, "0.2", null, "68.5", null, "1.3", null, "25.2", null, "1.4", null, "5.7", null, "0.7", null, "2.2", null, "0.6", null, "3.5", null, "0.6", null, "37.6", null, "1.5", null, "10.7", null, "1.0", null, "89.3", null, "1.0", null, "21.2", null, "1.2", null, "78.8", null, "1.2", null, "76.7", null, "1.0", null, "8.8", null, "0.8", null, "0.5", null, "0.2", null, "3.7", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "3.5", null, "0.6", null, "6.8", null, "0.8", null, "9.5", null, "0.6", null, "74.3", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.8", null, "1.0", null, "25.1", null, "1.9", null, "63.1", null, "2.0", null, "22802", null, "2415", null, "7701", null, "1326", null, "15101", null, "2101", null, "5030", null, "1436", null, "11181", null, "2073", null, "2426", null, "1089", null, "8755", null, "1766", null, "6591", null, "1223", null, "12012", null, "2097", null, "3762", null, "1143", null, "8171", null, "1876", null, "1667", null, "1007", null, "6504", null, "1635", null, "79", null, "93", null, "10790", null, "1644", null, "1268", null, "685", null, "3010", null, "1217", null, "759", null, "659", null, "2251", null, "1067", null, "6512", null, "1212", null, "10190", null, "1963", null, "12612", null, "1790", null, "8951", null, "1824", null, "13851", null, "2185", null, "9272", null, "1664", null, "7391", null, "1745", null, "237", null, "201", null, "1412", null, "674", null, "-999999999", "N", "-999999999", "N", "1270", null, "792", null, "3220", null, "1260", null, "4160", null, "1135", null, "8352", null, "1634", null, "31104", null, "9486", null, "16211", null, "2104", null, "2412", null, "908", null, "7965", null, "1724", null, "5834", null, "1703", null, "8.4", null, "0.9", null, "33.8", null, "5.1", null, "66.2", null, "5.1", null, "22.1", null, "6.2", null, "49.0", null, "6.5", null, "10.6", null, "4.5", null, "38.4", null, "6.3", null, "28.9", null, "4.7", null, "52.7", null, "6.3", null, "16.5", null, "4.8", null, "35.8", null, "6.5", null, "7.3", null, "4.2", null, "28.5", null, "6.2", null, "0.3", null, "0.4", null, "47.3", null, "6.3", null, "5.6", null, "3.1", null, "13.2", null, "5.2", null, "3.3", null, "2.9", null, "9.9", null, "4.6", null, "28.6", null, "4.7", null, "44.7", null, "6.5", null, "55.3", null, "6.5", null, "39.3", null, "7.0", null, "60.7", null, "7.0", null, "40.7", null, "6.0", null, "32.4", null, "5.8", null, "1.0", null, "0.9", null, "6.2", null, "3.0", null, "-999999999.0", "N", "-999999999.0", "N", "5.6", null, "3.5", null, "14.1", null, "5.6", null, "18.2", null, "4.9", null, "36.6", null, "6.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.9", null, "5.5", null, "49.1", null, "8.4", null, "36.0", null, "9.1", null, "250098", null, "3980", null, "89089", null, "2934", null, "161009", null, "3236", null, "123716", null, "4129", null, "29388", null, "2911", null, "10185", null, "1759", null, "19203", null, "2507", null, "96994", null, "4255", null, "73880", null, "3457", null, "56258", null, "2739", null, "16794", null, "2521", null, "4875", null, "1273", null, "11919", null, "2194", null, "828", null, "560", null, "176218", null, "3885", null, "67458", null, "3705", null, "12594", null, "1713", null, "5310", null, "1412", null, "7284", null, "1191", null, "96166", null, "4174", null, "18928", null, "2140", null, "231170", null, "4354", null, "48898", null, "3020", null, "201200", null, "4737", null, "199976", null, "3740", null, "16653", null, "2307", null, "1044", null, "467", null, "8721", null, "1262", null, "-999999999", "N", "-999999999", "N", "8288", null, "1632", null, "15336", null, "2123", null, "21821", null, "1839", null, "194361", null, "3408", null, "91280", null, "2164", null, "153104", null, "4561", null, "17551", null, "1598", null, "34582", null, "3043", null, "100971", null, "4339", null, "91.6", null, "0.9", null, "35.6", null, "1.0", null, "64.4", null, "1.0", null, "49.5", null, "1.5", null, "11.8", null, "1.1", null, "4.1", null, "0.7", null, "7.7", null, "1.0", null, "38.8", null, "1.6", null, "29.5", null, "1.2", null, "22.5", null, "1.0", null, "6.7", null, "1.0", null, "1.9", null, "0.5", null, "4.8", null, "0.9", null, "0.3", null, "0.2", null, "70.5", null, "1.2", null, "27.0", null, "1.5", null, "5.0", null, "0.7", null, "2.1", null, "0.6", null, "2.9", null, "0.5", null, "38.5", null, "1.6", null, "7.6", null, "0.9", null, "92.4", null, "0.9", null, "19.6", null, "1.2", null, "80.4", null, "1.2", null, "80.0", null, "1.2", null, "6.7", null, "0.9", null, "0.4", null, "0.2", null, "3.5", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "3.3", null, "0.7", null, "6.1", null, "0.8", null, "8.7", null, "0.7", null, "77.7", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.5", null, "1.0", null, "22.6", null, "1.9", null, "65.9", null, "2.0", null, "31", "02"], ["5001900US3103", "Congressional District 3 (119th Congress), Nebraska", "275372", null, "2662", null, "125703", null, "2676", null, "149669", null, "3203", null, "138787", null, "3599", null, "36307", null, "3334", null, "12983", null, "1941", null, "23324", null, "2474", null, "100278", null, "3586", null, "77745", null, "3094", null, "52595", null, "2399", null, "24173", null, "2664", null, "8365", null, "1735", null, "15808", null, "2096", null, "977", null, "452", null, "197627", null, "3363", null, "86192", null, "3163", null, "12134", null, "1678", null, "4618", null, "835", null, "7516", null, "1324", null, "99301", null, "3433", null, "31705", null, "2609", null, "243667", null, "3545", null, "76670", null, "3327", null, "198702", null, "3781", null, "236696", null, "2671", null, "2482", null, "1095", null, "4696", null, "1139", null, "2576", null, "800", null, "-999999999", "N", "-999999999", "N", "10989", null, "2004", null, "17791", null, "2084", null, "26642", null, "1858", null, "232265", null, "2584", null, "69788", null, "1881", null, "175094", null, "4078", null, "23943", null, "1778", null, "47820", null, "2786", null, "103331", null, "3245", null, "-888888888", "(X)", "-888888888", "(X)", "45.6", null, "0.9", null, "54.4", null, "0.9", null, "50.4", null, "1.2", null, "13.2", null, "1.2", null, "4.7", null, "0.7", null, "8.5", null, "0.9", null, "36.4", null, "1.3", null, "28.2", null, "1.1", null, "19.1", null, "0.8", null, "8.8", null, "1.0", null, "3.0", null, "0.6", null, "5.7", null, "0.8", null, "0.4", null, "0.2", null, "71.8", null, "1.1", null, "31.3", null, "1.1", null, "4.4", null, "0.6", null, "1.7", null, "0.3", null, "2.7", null, "0.5", null, "36.1", null, "1.2", null, "11.5", null, "0.9", null, "88.5", null, "0.9", null, "27.8", null, "1.2", null, "72.2", null, "1.2", null, "86.0", null, "0.8", null, "0.9", null, "0.4", null, "1.7", null, "0.4", null, "0.9", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "4.0", null, "0.7", null, "6.5", null, "0.8", null, "9.7", null, "0.6", null, "84.3", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.7", null, "1.0", null, "27.3", null, "1.3", null, "59.0", null, "1.5", null, "23966", null, "2541", null, "8031", null, "1472", null, "15935", null, "2045", null, "5644", null, "1119", null, "8778", null, "1703", null, "1530", null, "588", null, "7248", null, "1628", null, "9544", null, "1333", null, "11684", null, "1873", null, "3860", null, "890", null, "7301", null, "1530", null, "1310", null, "586", null, "5991", null, "1433", null, "523", null, "369", null, "12282", null, "1652", null, "1784", null, "790", null, "1477", null, "559", null, "220", null, "185", null, "1257", null, "528", null, "9021", null, "1256", null, "10791", null, "1676", null, "13175", null, "1727", null, "12077", null, "1996", null, "11889", null, "1832", null, "16400", null, "1590", null, "413", null, "465", null, "983", null, "436", null, "77", null, "98", null, "-999999999", "N", "-999999999", "N", "1857", null, "929", null, "4176", null, "1429", null, "4948", null, "1228", null, "15789", null, "1559", null, "28435", null, "5950", null, "14422", null, "2048", null, "1878", null, "658", null, "6587", null, "1326", null, "5957", null, "1413", null, "8.7", null, "0.9", null, "33.5", null, "5.0", null, "66.5", null, "5.0", null, "23.6", null, "4.1", null, "36.6", null, "5.2", null, "6.4", null, "2.4", null, "30.2", null, "5.2", null, "39.8", null, "4.5", null, "48.8", null, "5.2", null, "16.1", null, "3.5", null, "30.5", null, "4.9", null, "5.5", null, "2.4", null, "25.0", null, "4.8", null, "2.2", null, "1.5", null, "51.2", null, "5.2", null, "7.4", null, "3.1", null, "6.2", null, "2.2", null, "0.9", null, "0.8", null, "5.2", null, "2.1", null, "37.6", null, "4.5", null, "45.0", null, "4.7", null, "55.0", null, "4.7", null, "50.4", null, "6.0", null, "49.6", null, "6.0", null, "68.4", null, "4.4", null, "1.7", null, "1.9", null, "4.1", null, "1.7", null, "0.3", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "7.7", null, "3.8", null, "17.4", null, "5.2", null, "20.6", null, "4.1", null, "65.9", null, "4.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.0", null, "4.2", null, "45.7", null, "7.0", null, "41.3", null, "7.6", null, "251406", null, "2994", null, "117672", null, "2444", null, "133734", null, "3373", null, "133143", null, "3634", null, "27529", null, "2644", null, "11453", null, "1700", null, "16076", null, "1856", null, "90734", null, "3526", null, "66061", null, "2885", null, "48735", null, "2501", null, "16872", null, "2043", null, "7055", null, "1445", null, "9817", null, "1509", null, "454", null, "243", null, "185345", null, "3435", null, "84408", null, "3142", null, "10657", null, "1566", null, "4398", null, "796", null, "6259", null, "1211", null, "90280", null, "3473", null, "20914", null, "2006", null, "230492", null, "3630", null, "64593", null, "3064", null, "186813", null, "3935", null, "220296", null, "2825", null, "2069", null, "990", null, "3713", null, "1034", null, "2499", null, "790", null, "-999999999", "N", "-999999999", "N", "9132", null, "1811", null, "13615", null, "1662", null, "21694", null, "1750", null, "216476", null, "2814", null, "73915", null, "1981", null, "160672", null, "3739", null, "22065", null, "1643", null, "41233", null, "2434", null, "97374", null, "3228", null, "91.3", null, "0.9", null, "46.8", null, "1.0", null, "53.2", null, "1.0", null, "53.0", null, "1.2", null, "11.0", null, "1.1", null, "4.6", null, "0.7", null, "6.4", null, "0.8", null, "36.1", null, "1.3", null, "26.3", null, "1.1", null, "19.4", null, "0.9", null, "6.7", null, "0.8", null, "2.8", null, "0.6", null, "3.9", null, "0.6", null, "0.2", null, "0.1", null, "73.7", null, "1.1", null, "33.6", null, "1.2", null, "4.2", null, "0.6", null, "1.7", null, "0.3", null, "2.5", null, "0.5", null, "35.9", null, "1.3", null, "8.3", null, "0.8", null, "91.7", null, "0.8", null, "25.7", null, "1.2", null, "74.3", null, "1.2", null, "87.6", null, "0.9", null, "0.8", null, "0.4", null, "1.5", null, "0.4", null, "1.0", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "3.6", null, "0.7", null, "5.4", null, "0.7", null, "8.6", null, "0.7", null, "86.1", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.7", null, "1.0", null, "25.7", null, "1.4", null, "60.6", null, "1.5", null, "31", "03"], ["5001900US3201", "Congressional District 1 (119th Congress), Nevada", "298036", null, "8098", null, "127480", null, "5451", null, "170556", null, "7033", null, "117974", null, "4586", null, "65494", null, "4780", null, "20430", null, "2970", null, "45064", null, "4166", null, "114568", null, "6397", null, "81039", null, "4410", null, "43530", null, "3540", null, "36702", null, "4046", null, "10074", null, "2052", null, "26628", null, "3354", null, "807", null, "618", null, "216997", null, "8312", null, "74444", null, "3836", null, "28792", null, "3574", null, "10356", null, "2023", null, "18436", null, "2897", null, "113761", null, "6384", null, "43324", null, "4080", null, "254712", null, "7286", null, "92872", null, "5670", null, "205164", null, "5847", null, "152252", null, "6308", null, "27335", null, "3231", null, "3108", null, "991", null, "22699", null, "2832", null, "2254", null, "971", null, "51319", null, "4042", null, "39069", null, "4162", null, "90079", null, "5210", null, "140061", null, "5679", null, "72138", null, "2508", null, "183468", null, "6075", null, "28057", null, "2778", null, "58493", null, "4400", null, "96918", null, "4639", null, "-888888888", "(X)", "-888888888", "(X)", "42.8", null, "1.6", null, "57.2", null, "1.6", null, "39.6", null, "1.6", null, "22.0", null, "1.4", null, "6.9", null, "1.0", null, "15.1", null, "1.3", null, "38.4", null, "1.6", null, "27.2", null, "1.5", null, "14.6", null, "1.3", null, "12.3", null, "1.3", null, "3.4", null, "0.7", null, "8.9", null, "1.1", null, "0.3", null, "0.2", null, "72.8", null, "1.5", null, "25.0", null, "1.1", null, "9.7", null, "1.2", null, "3.5", null, "0.7", null, "6.2", null, "0.9", null, "38.2", null, "1.6", null, "14.5", null, "1.2", null, "85.5", null, "1.2", null, "31.2", null, "1.5", null, "68.8", null, "1.5", null, "51.1", null, "1.8", null, "9.2", null, "1.1", null, "1.0", null, "0.3", null, "7.6", null, "1.0", null, "0.8", null, "0.3", null, "17.2", null, "1.2", null, "13.1", null, "1.3", null, "30.2", null, "1.4", null, "47.0", null, "1.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.3", null, "1.3", null, "31.9", null, "2.1", null, "52.8", null, "2.1", null, "45419", null, "4194", null, "18903", null, "2495", null, "26516", null, "3244", null, "10087", null, "2100", null, "19966", null, "3087", null, "5433", null, "1642", null, "14533", null, "2385", null, "15366", null, "2466", null, "19299", null, "2855", null, "6238", null, "1769", null, "12761", null, "2559", null, "2863", null, "979", null, "9898", null, "2287", null, "300", null, "309", null, "26120", null, "3244", null, "3849", null, "1117", null, "7205", null, "1748", null, "2570", null, "1261", null, "4635", null, "1183", null, "15066", null, "2451", null, "19002", null, "2747", null, "26417", null, "3416", null, "22937", null, "2815", null, "22482", null, "2932", null, "15351", null, "2487", null, "7891", null, "2185", null, "353", null, "295", null, "2297", null, "776", null, "288", null, "325", null, "11148", null, "2226", null, "8091", null, "1794", null, "18983", null, "2681", null, "12988", null, "2211", null, "34356", null, "4130", null, "30053", null, "3699", null, "4909", null, "1403", null, "14557", null, "2259", null, "10587", null, "2044", null, "15.2", null, "1.3", null, "41.6", null, "4.3", null, "58.4", null, "4.3", null, "22.2", null, "4.3", null, "44.0", null, "4.9", null, "12.0", null, "3.2", null, "32.0", null, "4.4", null, "33.8", null, "4.8", null, "42.5", null, "4.8", null, "13.7", null, "3.8", null, "28.1", null, "4.8", null, "6.3", null, "2.1", null, "21.8", null, "4.5", null, "0.7", null, "0.7", null, "57.5", null, "4.8", null, "8.5", null, "2.3", null, "15.9", null, "3.4", null, "5.7", null, "2.6", null, "10.2", null, "2.5", null, "33.2", null, "4.8", null, "41.8", null, "4.9", null, "58.2", null, "4.9", null, "50.5", null, "4.3", null, "49.5", null, "4.3", null, "33.8", null, "4.9", null, "17.4", null, "4.4", null, "0.8", null, "0.7", null, "5.1", null, "1.6", null, "0.6", null, "0.7", null, "24.5", null, "4.3", null, "17.8", null, "3.6", null, "41.8", null, "4.1", null, "28.6", null, "4.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.3", null, "4.1", null, "48.4", null, "5.4", null, "35.2", null, "4.8", null, "252617", null, "7409", null, "108577", null, "4715", null, "144040", null, "7068", null, "107887", null, "4538", null, "45528", null, "4171", null, "14997", null, "2154", null, "30531", null, "3893", null, "99202", null, "6002", null, "61740", null, "3767", null, "37292", null, "3538", null, "23941", null, "3187", null, "7211", null, "1705", null, "16730", null, "2695", null, "507", null, "541", null, "190877", null, "7230", null, "70595", null, "3628", null, "21587", null, "3210", null, "7786", null, "1559", null, "13801", null, "2616", null, "98695", null, "6003", null, "24322", null, "2836", null, "228295", null, "6574", null, "69935", null, "4882", null, "182682", null, "5842", null, "136901", null, "6180", null, "19444", null, "2972", null, "2755", null, "925", null, "20402", null, "2734", null, "1966", null, "1034", null, "40171", null, "3590", null, "30978", null, "3892", null, "71096", null, "4608", null, "127073", null, "5726", null, "80120", null, "2875", null, "153415", null, "5414", null, "23148", null, "2495", null, "43936", null, "3702", null, "86331", null, "4347", null, "84.8", null, "1.3", null, "43.0", null, "1.8", null, "57.0", null, "1.8", null, "42.7", null, "1.9", null, "18.0", null, "1.5", null, "5.9", null, "0.9", null, "12.1", null, "1.4", null, "39.3", null, "1.8", null, "24.4", null, "1.4", null, "14.8", null, "1.5", null, "9.5", null, "1.2", null, "2.9", null, "0.7", null, "6.6", null, "1.0", null, "0.2", null, "0.2", null, "75.6", null, "1.4", null, "27.9", null, "1.4", null, "8.5", null, "1.2", null, "3.1", null, "0.6", null, "5.5", null, "1.0", null, "39.1", null, "1.8", null, "9.6", null, "1.0", null, "90.4", null, "1.0", null, "27.7", null, "1.6", null, "72.3", null, "1.6", null, "54.2", null, "2.0", null, "7.7", null, "1.2", null, "1.1", null, "0.4", null, "8.1", null, "1.1", null, "0.8", null, "0.4", null, "15.9", null, "1.3", null, "12.3", null, "1.4", null, "28.1", null, "1.6", null, "50.3", null, "1.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.1", null, "1.5", null, "28.6", null, "2.1", null, "56.3", null, "2.2", null, "32", "01"], ["5001900US3202", "Congressional District 2 (119th Congress), Nevada", "322753", null, "4115", null, "143373", null, "2825", null, "179380", null, "3992", null, "152766", null, "4730", null, "50361", null, "3558", null, "18162", null, "2353", null, "32199", null, "2907", null, "119626", null, "5052", null, "88979", null, "4743", null, "60373", null, "4153", null, "28206", null, "2975", null, "9629", null, "2013", null, "18577", null, "2471", null, "400", null, "266", null, "233774", null, "5120", null, "92393", null, "4090", null, "22155", null, "2236", null, "8533", null, "1635", null, "13622", null, "1833", null, "119226", null, "5039", null, "32726", null, "3039", null, "290027", null, "4896", null, "90669", null, "4038", null, "232084", null, "5647", null, "230952", null, "4544", null, "6064", null, "1052", null, "6588", null, "1035", null, "14842", null, "1002", null, "-999999999", "N", "-999999999", "N", "20345", null, "2468", null, "42523", null, "3316", null, "60461", null, "2649", null, "219277", null, "4287", null, "86806", null, "2527", null, "203127", null, "4937", null, "33274", null, "2443", null, "63530", null, "4186", null, "106323", null, "4665", null, "-888888888", "(X)", "-888888888", "(X)", "44.4", null, "0.8", null, "55.6", null, "0.8", null, "47.3", null, "1.4", null, "15.6", null, "1.1", null, "5.6", null, "0.7", null, "10.0", null, "0.9", null, "37.1", null, "1.4", null, "27.6", null, "1.4", null, "18.7", null, "1.3", null, "8.7", null, "0.9", null, "3.0", null, "0.6", null, "5.8", null, "0.8", null, "0.1", null, "0.1", null, "72.4", null, "1.4", null, "28.6", null, "1.3", null, "6.9", null, "0.7", null, "2.6", null, "0.5", null, "4.2", null, "0.6", null, "36.9", null, "1.4", null, "10.1", null, "0.9", null, "89.9", null, "0.9", null, "28.1", null, "1.3", null, "71.9", null, "1.3", null, "71.6", null, "1.2", null, "1.9", null, "0.3", null, "2.0", null, "0.3", null, "4.6", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "6.3", null, "0.7", null, "13.2", null, "1.0", null, "18.7", null, "0.8", null, "67.9", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.4", null, "1.1", null, "31.3", null, "1.9", null, "52.3", null, "2.0", null, "25626", null, "2765", null, "10854", null, "1704", null, "14772", null, "1972", null, "6817", null, "1460", null, "10035", null, "1675", null, "2604", null, "894", null, "7431", null, "1505", null, "8774", null, "1596", null, "12494", null, "1782", null, "4585", null, "1148", null, "7801", null, "1493", null, "1918", null, "790", null, "5883", null, "1359", null, "108", null, "194", null, "13132", null, "1867", null, "2232", null, "864", null, "2234", null, "686", null, "686", null, "438", null, "1548", null, "567", null, "8666", null, "1612", null, "9102", null, "1707", null, "16524", null, "2307", null, "13123", null, "2153", null, "12503", null, "1552", null, "14817", null, "1846", null, "986", null, "480", null, "1167", null, "552", null, "1209", null, "490", null, "-999999999", "N", "-999999999", "N", "1892", null, "841", null, "5268", null, "1597", null, "7324", null, "1789", null, "13762", null, "1797", null, "37118", null, "4250", null, "16852", null, "2163", null, "2448", null, "871", null, "8755", null, "1766", null, "5649", null, "1399", null, "7.9", null, "0.9", null, "42.4", null, "4.7", null, "57.6", null, "4.7", null, "26.6", null, "5.0", null, "39.2", null, "4.9", null, "10.2", null, "3.3", null, "29.0", null, "4.9", null, "34.2", null, "4.8", null, "48.8", null, "4.6", null, "17.9", null, "4.1", null, "30.4", null, "4.7", null, "7.5", null, "3.0", null, "23.0", null, "4.5", null, "0.4", null, "0.8", null, "51.2", null, "4.6", null, "8.7", null, "3.3", null, "8.7", null, "2.6", null, "2.7", null, "1.7", null, "6.0", null, "2.2", null, "33.8", null, "4.9", null, "35.5", null, "5.5", null, "64.5", null, "5.5", null, "51.2", null, "4.9", null, "48.8", null, "4.9", null, "57.8", null, "4.9", null, "3.8", null, "1.8", null, "4.6", null, "2.0", null, "4.7", null, "1.9", null, "-999999999.0", "N", "-999999999.0", "N", "7.4", null, "3.2", null, "20.6", null, "5.4", null, "28.6", null, "5.6", null, "53.7", null, "5.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.5", null, "4.9", null, "52.0", null, "7.6", null, "33.5", null, "7.2", null, "297127", null, "5044", null, "132519", null, "3420", null, "164608", null, "3998", null, "145949", null, "4707", null, "40326", null, "3443", null, "15558", null, "2329", null, "24768", null, "2548", null, "110852", null, "5362", null, "76485", null, "4403", null, "55788", null, "4056", null, "20405", null, "2721", null, "7711", null, "1930", null, "12694", null, "1968", null, "292", null, "220", null, "220642", null, "5376", null, "90161", null, "4095", null, "19921", null, "2161", null, "7847", null, "1592", null, "12074", null, "1772", null, "110560", null, "5348", null, "23624", null, "2392", null, "273503", null, "5227", null, "77546", null, "4286", null, "219581", null, "5802", null, "216135", null, "4866", null, "5078", null, "1100", null, "5421", null, "920", null, "13633", null, "981", null, "-999999999", "N", "-999999999", "N", "18453", null, "2127", null, "37255", null, "3391", null, "53137", null, "2712", null, "205515", null, "4765", null, "91052", null, "2564", null, "186275", null, "4888", null, "30826", null, "2186", null, "54775", null, "3822", null, "100674", null, "4690", null, "92.1", null, "0.9", null, "44.6", null, "0.9", null, "55.4", null, "0.9", null, "49.1", null, "1.6", null, "13.6", null, "1.1", null, "5.2", null, "0.8", null, "8.3", null, "0.9", null, "37.3", null, "1.5", null, "25.7", null, "1.4", null, "18.8", null, "1.3", null, "6.9", null, "0.9", null, "2.6", null, "0.6", null, "4.3", null, "0.7", null, "0.1", null, "0.1", null, "74.3", null, "1.4", null, "30.3", null, "1.4", null, "6.7", null, "0.7", null, "2.6", null, "0.5", null, "4.1", null, "0.6", null, "37.2", null, "1.5", null, "8.0", null, "0.8", null, "92.0", null, "0.8", null, "26.1", null, "1.4", null, "73.9", null, "1.4", null, "72.7", null, "1.2", null, "1.7", null, "0.4", null, "1.8", null, "0.3", null, "4.6", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "6.2", null, "0.7", null, "12.5", null, "1.1", null, "17.9", null, "0.8", null, "69.2", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.5", null, "1.1", null, "29.4", null, "1.9", null, "54.0", null, "2.1", null, "32", "02"], ["5001900US3203", "Congressional District 3 (119th Congress), Nevada", "331182", null, "8098", null, "139056", null, "6000", null, "192126", null, "7006", null, "140409", null, "6238", null, "62713", null, "5022", null, "22753", null, "3481", null, "39960", null, "3754", null, "128060", null, "7388", null, "82580", null, "5045", null, "50791", null, "4267", null, "31036", null, "4060", null, "10827", null, "2493", null, "20209", null, "3072", null, "753", null, "593", null, "248602", null, "9115", null, "89618", null, "5646", null, "31677", null, "3588", null, "11926", null, "2360", null, "19751", null, "2628", null, "127307", null, "7325", null, "31650", null, "3716", null, "299532", null, "8385", null, "88090", null, "5711", null, "243092", null, "8077", null, "174152", null, "6708", null, "33567", null, "3976", null, "2035", null, "770", null, "56394", null, "3573", null, "3365", null, "904", null, "21357", null, "3552", null, "40312", null, "3996", null, "53800", null, "4692", null, "164672", null, "6248", null, "90358", null, "2791", null, "203122", null, "7042", null, "27920", null, "2911", null, "66498", null, "5384", null, "108704", null, "4984", null, "-888888888", "(X)", "-888888888", "(X)", "42.0", null, "1.5", null, "58.0", null, "1.5", null, "42.4", null, "1.7", null, "18.9", null, "1.5", null, "6.9", null, "1.0", null, "12.1", null, "1.1", null, "38.7", null, "1.8", null, "24.9", null, "1.6", null, "15.3", null, "1.3", null, "9.4", null, "1.3", null, "3.3", null, "0.8", null, "6.1", null, "0.9", null, "0.2", null, "0.2", null, "75.1", null, "1.6", null, "27.1", null, "1.6", null, "9.6", null, "1.0", null, "3.6", null, "0.7", null, "6.0", null, "0.8", null, "38.4", null, "1.8", null, "9.6", null, "1.1", null, "90.4", null, "1.1", null, "26.6", null, "1.6", null, "73.4", null, "1.6", null, "52.6", null, "1.7", null, "10.1", null, "1.2", null, "0.6", null, "0.2", null, "17.0", null, "1.1", null, "1.0", null, "0.3", null, "6.4", null, "1.0", null, "12.2", null, "1.1", null, "16.2", null, "1.2", null, "49.7", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.7", null, "1.4", null, "32.7", null, "2.2", null, "53.5", null, "2.0", null, "31178", null, "3751", null, "14015", null, "2425", null, "17163", null, "2885", null, "9460", null, "2277", null, "12616", null, "2370", null, "3756", null, "1242", null, "8860", null, "1889", null, "9102", null, "2030", null, "12778", null, "2357", null, "4647", null, "1403", null, "7689", null, "1760", null, "1835", null, "981", null, "5854", null, "1442", null, "442", null, "521", null, "18400", null, "3364", null, "4813", null, "1807", null, "4927", null, "1418", null, "1921", null, "910", null, "3006", null, "1162", null, "8660", null, "1974", null, "7672", null, "1856", null, "23506", null, "3479", null, "15443", null, "2458", null, "15735", null, "2702", null, "12284", null, "2266", null, "5818", null, "1576", null, "48", null, "60", null, "4959", null, "1378", null, "284", null, "217", null, "3337", null, "1451", null, "4448", null, "1472", null, "6528", null, "1794", null, "11445", null, "2140", null, "50525", null, "5075", null, "22076", null, "3158", null, "3286", null, "1241", null, "9653", null, "2140", null, "9137", null, "1891", null, "9.4", null, "1.1", null, "45.0", null, "6.0", null, "55.0", null, "6.0", null, "30.3", null, "5.7", null, "40.5", null, "6.6", null, "12.0", null, "3.8", null, "28.4", null, "5.4", null, "29.2", null, "5.5", null, "41.0", null, "6.8", null, "14.9", null, "4.1", null, "24.7", null, "5.7", null, "5.9", null, "3.2", null, "18.8", null, "4.5", null, "1.4", null, "1.7", null, "59.0", null, "6.8", null, "15.4", null, "5.2", null, "15.8", null, "3.9", null, "6.2", null, "2.8", null, "9.6", null, "3.5", null, "27.8", null, "5.4", null, "24.6", null, "5.5", null, "75.4", null, "5.5", null, "49.5", null, "5.7", null, "50.5", null, "5.7", null, "39.4", null, "6.5", null, "18.7", null, "4.7", null, "0.2", null, "0.2", null, "15.9", null, "4.0", null, "0.9", null, "0.7", null, "10.7", null, "4.2", null, "14.3", null, "4.0", null, "20.9", null, "4.6", null, "36.7", null, "6.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.9", null, "5.2", null, "43.7", null, "7.0", null, "41.4", null, "6.7", null, "300004", null, "7657", null, "125041", null, "6110", null, "174963", null, "7065", null, "130949", null, "5306", null, "50097", null, "4381", null, "18997", null, "3059", null, "31100", null, "3227", null, "118958", null, "6993", null, "69802", null, "4406", null, "46144", null, "4005", null, "23347", null, "3401", null, "8992", null, "2182", null, "14355", null, "2578", null, "311", null, "266", null, "230202", null, "8519", null, "84805", null, "4875", null, "26750", null, "3494", null, "10005", null, "2104", null, "16745", null, "2433", null, "118647", null, "7024", null, "23978", null, "3154", null, "276026", null, "7909", null, "72647", null, "5273", null, "227357", null, "7812", null, "161868", null, "6047", null, "27749", null, "3824", null, "1987", null, "763", null, "51435", null, "3704", null, "3081", null, "883", null, "18020", null, "3133", null, "35864", null, "3834", null, "47272", null, "4608", null, "153227", null, "5696", null, "95444", null, "4542", null, "181046", null, "6119", null, "24634", null, "2511", null, "56845", null, "4659", null, "99567", null, "4888", null, "90.6", null, "1.1", null, "41.7", null, "1.8", null, "58.3", null, "1.8", null, "43.6", null, "1.7", null, "16.7", null, "1.4", null, "6.3", null, "1.0", null, "10.4", null, "1.1", null, "39.7", null, "1.8", null, "23.3", null, "1.5", null, "15.4", null, "1.4", null, "7.8", null, "1.2", null, "3.0", null, "0.7", null, "4.8", null, "0.9", null, "0.1", null, "0.1", null, "76.7", null, "1.5", null, "28.3", null, "1.6", null, "8.9", null, "1.1", null, "3.3", null, "0.7", null, "5.6", null, "0.8", null, "39.5", null, "1.9", null, "8.0", null, "1.0", null, "92.0", null, "1.0", null, "24.2", null, "1.7", null, "75.8", null, "1.7", null, "54.0", null, "1.6", null, "9.2", null, "1.2", null, "0.7", null, "0.3", null, "17.1", null, "1.3", null, "1.0", null, "0.3", null, "6.0", null, "1.0", null, "12.0", null, "1.2", null, "15.8", null, "1.4", null, "51.1", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.6", null, "1.3", null, "31.4", null, "2.2", null, "55.0", null, "2.1", null, "32", "03"], ["5001900US3204", "Congressional District 4 (119th Congress), Nevada", "286954", null, "7088", null, "121269", null, "4649", null, "165685", null, "7496", null, "127179", null, "5662", null, "64865", null, "4740", null, "23720", null, "3588", null, "41145", null, "3962", null, "94910", null, "5739", null, "88760", null, "4824", null, "54018", null, "4270", null, "33812", null, "3310", null, "11150", null, "2448", null, "22662", null, "2849", null, "930", null, "629", null, "198194", null, "6459", null, "73161", null, "4419", null, "31053", null, "2850", null, "12570", null, "2306", null, "18483", null, "2377", null, "93980", null, "5836", null, "38554", null, "3901", null, "248400", null, "6126", null, "96507", null, "5453", null, "190447", null, "6528", null, "141069", null, "5467", null, "47874", null, "3574", null, "4794", null, "1208", null, "17398", null, "2402", null, "1618", null, "734", null, "35517", null, "3813", null, "38684", null, "4132", null, "83578", null, "4547", null, "121793", null, "5068", null, "75889", null, "2720", null, "192044", null, "6322", null, "28019", null, "2264", null, "60590", null, "4031", null, "103435", null, "4928", null, "-888888888", "(X)", "-888888888", "(X)", "42.3", null, "1.7", null, "57.7", null, "1.7", null, "44.3", null, "1.6", null, "22.6", null, "1.7", null, "8.3", null, "1.3", null, "14.3", null, "1.4", null, "33.1", null, "1.7", null, "30.9", null, "1.5", null, "18.8", null, "1.4", null, "11.8", null, "1.2", null, "3.9", null, "0.9", null, "7.9", null, "1.0", null, "0.3", null, "0.2", null, "69.1", null, "1.5", null, "25.5", null, "1.4", null, "10.8", null, "1.0", null, "4.4", null, "0.8", null, "6.4", null, "0.8", null, "32.8", null, "1.7", null, "13.4", null, "1.2", null, "86.6", null, "1.2", null, "33.6", null, "1.7", null, "66.4", null, "1.7", null, "49.2", null, "1.5", null, "16.7", null, "1.2", null, "1.7", null, "0.4", null, "6.1", null, "0.8", null, "0.6", null, "0.3", null, "12.4", null, "1.2", null, "13.5", null, "1.4", null, "29.1", null, "1.4", null, "42.4", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.6", null, "1.2", null, "31.6", null, "1.7", null, "53.9", null, "1.8", null, "44602", null, "4172", null, "17682", null, "2263", null, "26920", null, "3598", null, "11295", null, "2150", null, "19976", null, "3075", null, "5666", null, "2024", null, "14310", null, "2656", null, "13331", null, "2146", null, "20051", null, "2616", null, "6268", null, "1650", null, "13392", null, "2185", null, "2972", null, "1351", null, "10420", null, "1913", null, "391", null, "359", null, "24551", null, "2949", null, "5027", null, "1145", null, "6584", null, "1778", null, "2694", null, "1163", null, "3890", null, "1369", null, "12940", null, "2176", null, "15155", null, "2920", null, "29447", null, "3206", null, "23265", null, "3120", null, "21337", null, "2752", null, "15154", null, "2723", null, "12696", null, "2537", null, "982", null, "803", null, "2054", null, "797", null, "291", null, "366", null, "6950", null, "1919", null, "6475", null, "1691", null, "15649", null, "2512", null, "12518", null, "2432", null, "40465", null, "7018", null, "31271", null, "3538", null, "5930", null, "1219", null, "12626", null, "2309", null, "12715", null, "2508", null, "15.5", null, "1.4", null, "39.6", null, "4.5", null, "60.4", null, "4.5", null, "25.3", null, "4.3", null, "44.8", null, "5.2", null, "12.7", null, "4.3", null, "32.1", null, "5.0", null, "29.9", null, "4.1", null, "45.0", null, "4.2", null, "14.1", null, "3.4", null, "30.0", null, "4.1", null, "6.7", null, "2.9", null, "23.4", null, "3.9", null, "0.9", null, "0.8", null, "55.0", null, "4.2", null, "11.3", null, "2.4", null, "14.8", null, "3.6", null, "6.0", null, "2.6", null, "8.7", null, "2.8", null, "29.0", null, "4.1", null, "34.0", null, "5.1", null, "66.0", null, "5.1", null, "52.2", null, "4.6", null, "47.8", null, "4.6", null, "34.0", null, "5.0", null, "28.5", null, "4.9", null, "2.2", null, "1.7", null, "4.6", null, "1.7", null, "0.7", null, "0.8", null, "15.6", null, "4.1", null, "14.5", null, "3.8", null, "35.1", null, "4.9", null, "28.1", null, "4.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "19.0", null, "3.6", null, "40.4", null, "6.1", null, "40.7", null, "5.8", null, "242352", null, "7496", null, "103587", null, "4649", null, "138765", null, "6733", null, "115884", null, "5215", null, "44889", null, "3554", null, "18054", null, "2734", null, "26835", null, "3144", null, "81579", null, "5539", null, "68709", null, "4161", null, "47750", null, "3938", null, "20420", null, "2702", null, "8178", null, "1986", null, "12242", null, "2299", null, "539", null, "598", null, "173643", null, "6653", null, "68134", null, "4101", null, "24469", null, "2551", null, "9876", null, "1957", null, "14593", null, "2296", null, "81040", null, "5568", null, "23399", null, "2475", null, "218953", null, "6915", null, "73242", null, "4788", null, "169110", null, "6636", null, "125915", null, "5240", null, "35178", null, "3724", null, "3812", null, "971", null, "15344", null, "2230", null, "1327", null, "705", null, "28567", null, "3321", null, "32209", null, "3377", null, "67929", null, "4203", null, "109275", null, "4695", null, "84700", null, "4096", null, "160773", null, "5763", null, "22089", null, "1975", null, "47964", null, "3643", null, "90720", null, "4856", null, "84.5", null, "1.4", null, "42.7", null, "1.8", null, "57.3", null, "1.8", null, "47.8", null, "1.6", null, "18.5", null, "1.5", null, "7.4", null, "1.1", null, "11.1", null, "1.3", null, "33.7", null, "1.8", null, "28.4", null, "1.5", null, "19.7", null, "1.4", null, "8.4", null, "1.1", null, "3.4", null, "0.8", null, "5.1", null, "1.0", null, "0.2", null, "0.2", null, "71.6", null, "1.5", null, "28.1", null, "1.6", null, "10.1", null, "1.0", null, "4.1", null, "0.8", null, "6.0", null, "1.0", null, "33.4", null, "1.8", null, "9.7", null, "0.9", null, "90.3", null, "0.9", null, "30.2", null, "1.7", null, "69.8", null, "1.7", null, "52.0", null, "1.7", null, "14.5", null, "1.4", null, "1.6", null, "0.4", null, "6.3", null, "0.9", null, "0.5", null, "0.3", null, "11.8", null, "1.3", null, "13.3", null, "1.3", null, "28.0", null, "1.5", null, "45.1", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.7", null, "1.3", null, "29.8", null, "2.0", null, "56.4", null, "2.0", null, "32", "04"], ["5001900US3301", "Congressional District 1 (119th Congress), New Hampshire", "287161", null, "4947", null, "139688", null, "3799", null, "147473", null, "4469", null, "145203", null, "4546", null, "37591", null, "3670", null, "13163", null, "2205", null, "24428", null, "2816", null, "104367", null, "5069", null, "71933", null, "4025", null, "50010", null, "3686", null, "21721", null, "3001", null, "7762", null, "1892", null, "13959", null, "2341", null, "202", null, "139", null, "215228", null, "4851", null, "95193", null, "3562", null, "15870", null, "1992", null, "5401", null, "1150", null, "10469", null, "1538", null, "104165", null, "5073", null, "23235", null, "2641", null, "263926", null, "5557", null, "79210", null, "4658", null, "207951", null, "6040", null, "261021", null, "4877", null, "3544", null, "1003", null, "-999999999", "N", "-999999999", "N", "6368", null, "1292", null, "-999999999", "N", "-999999999", "N", "3048", null, "963", null, "12726", null, "1958", null, "10226", null, "1575", null, "258255", null, "4635", null, "102258", null, "3126", null, "182794", null, "5296", null, "23831", null, "2165", null, "51038", null, "3944", null, "107925", null, "4559", null, "-888888888", "(X)", "-888888888", "(X)", "48.6", null, "1.2", null, "51.4", null, "1.2", null, "50.6", null, "1.4", null, "13.1", null, "1.3", null, "4.6", null, "0.8", null, "8.5", null, "1.0", null, "36.3", null, "1.6", null, "25.0", null, "1.3", null, "17.4", null, "1.2", null, "7.6", null, "1.0", null, "2.7", null, "0.7", null, "4.9", null, "0.8", null, "0.1", null, "0.1", null, "75.0", null, "1.3", null, "33.1", null, "1.3", null, "5.5", null, "0.7", null, "1.9", null, "0.4", null, "3.6", null, "0.5", null, "36.3", null, "1.6", null, "8.1", null, "0.9", null, "91.9", null, "0.9", null, "27.6", null, "1.6", null, "72.4", null, "1.6", null, "90.9", null, "0.8", null, "1.2", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "2.2", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "1.1", null, "0.3", null, "4.4", null, "0.7", null, "3.6", null, "0.5", null, "89.9", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.0", null, "1.1", null, "27.9", null, "2.0", null, "59.0", null, "2.0", null, "18048", null, "2339", null, "8495", null, "1742", null, "9553", null, "1622", null, "4065", null, "1214", null, "7121", null, "1791", null, "1683", null, "926", null, "5438", null, "1368", null, "6862", null, "1539", null, "7764", null, "1802", null, "2742", null, "1127", null, "4981", null, "1633", null, "1196", null, "921", null, "3785", null, "1139", null, "41", null, "69", null, "10284", null, "1764", null, "1323", null, "593", null, "2140", null, "840", null, "487", null, "454", null, "1653", null, "731", null, "6821", null, "1555", null, "7593", null, "1588", null, "10455", null, "1937", null, "10280", null, "1758", null, "7768", null, "1907", null, "15449", null, "2311", null, "561", null, "434", null, "-999999999", "N", "-999999999", "N", "76", null, "87", null, "-999999999", "N", "-999999999", "N", "604", null, "437", null, "1358", null, "710", null, "1310", null, "750", null, "14904", null, "2315", null, "27628", null, "6426", null, "11186", null, "1902", null, "1941", null, "807", null, "5517", null, "1503", null, "3728", null, "1331", null, "6.3", null, "0.8", null, "47.1", null, "6.7", null, "52.9", null, "6.7", null, "22.5", null, "6.3", null, "39.5", null, "8.2", null, "9.3", null, "4.7", null, "30.1", null, "6.8", null, "38.0", null, "6.9", null, "43.0", null, "7.6", null, "15.2", null, "6.0", null, "27.6", null, "7.8", null, "6.6", null, "4.8", null, "21.0", null, "5.7", null, "0.2", null, "0.4", null, "57.0", null, "7.6", null, "7.3", null, "3.3", null, "11.9", null, "4.7", null, "2.7", null, "2.5", null, "9.2", null, "4.0", null, "37.8", null, "7.0", null, "42.1", null, "7.3", null, "57.9", null, "7.3", null, "57.0", null, "7.9", null, "43.0", null, "7.9", null, "85.6", null, "4.7", null, "3.1", null, "2.4", null, "-999999999.0", "N", "-999999999.0", "N", "0.4", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "3.3", null, "2.4", null, "7.5", null, "3.9", null, "7.3", null, "4.1", null, "82.6", null, "5.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.4", null, "6.7", null, "49.3", null, "10.3", null, "33.3", null, "10.6", null, "269113", null, "5102", null, "131193", null, "3666", null, "137920", null, "4590", null, "141138", null, "4342", null, "30470", null, "3134", null, "11480", null, "2063", null, "18990", null, "2379", null, "97505", null, "4993", null, "64169", null, "3857", null, "47268", null, "3490", null, "16740", null, "2453", null, "6566", null, "1610", null, "10174", null, "1995", null, "161", null, "125", null, "204944", null, "4861", null, "93870", null, "3461", null, "13730", null, "1921", null, "4914", null, "1174", null, "8816", null, "1355", null, "97344", null, "4996", null, "15642", null, "2179", null, "253471", null, "5571", null, "68930", null, "4359", null, "200183", null, "5853", null, "245572", null, "4882", null, "2983", null, "982", null, "-999999999", "N", "-999999999", "N", "6292", null, "1300", null, "-999999999", "N", "-999999999", "N", "2444", null, "902", null, "11368", null, "1781", null, "8916", null, "1402", null, "243351", null, "4645", null, "108089", null, "3592", null, "171608", null, "5178", null, "21890", null, "1957", null, "45521", null, "3784", null, "104197", null, "4429", null, "93.7", null, "0.8", null, "48.8", null, "1.2", null, "51.2", null, "1.2", null, "52.4", null, "1.4", null, "11.3", null, "1.1", null, "4.3", null, "0.8", null, "7.1", null, "0.9", null, "36.2", null, "1.6", null, "23.8", null, "1.3", null, "17.6", null, "1.2", null, "6.2", null, "0.9", null, "2.4", null, "0.6", null, "3.8", null, "0.7", null, "0.1", null, "0.1", null, "76.2", null, "1.3", null, "34.9", null, "1.3", null, "5.1", null, "0.7", null, "1.8", null, "0.4", null, "3.3", null, "0.5", null, "36.2", null, "1.6", null, "5.8", null, "0.8", null, "94.2", null, "0.8", null, "25.6", null, "1.6", null, "74.4", null, "1.6", null, "91.3", null, "0.8", null, "1.1", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "2.3", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "0.9", null, "0.3", null, "4.2", null, "0.7", null, "3.3", null, "0.5", null, "90.4", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.8", null, "1.0", null, "26.5", null, "2.0", null, "60.7", null, "2.0", null, "33", "01"], ["5001900US3302", "Congressional District 2 (119th Congress), New Hampshire", "283528", null, "4264", null, "135344", null, "3698", null, "148184", null, "3967", null, "142062", null, "4896", null, "36859", null, "3061", null, "12983", null, "2088", null, "23876", null, "2449", null, "104607", null, "4611", null, "68311", null, "4157", null, "48146", null, "3517", null, "18836", null, "2341", null, "6372", null, "1412", null, "12464", null, "1818", null, "1329", null, "680", null, "215217", null, "5306", null, "93916", null, "4015", null, "18023", null, "2475", null, "6611", null, "1744", null, "11412", null, "1662", null, "103278", null, "4646", null, "23577", null, "2521", null, "259951", null, "5019", null, "76403", null, "3936", null, "207125", null, "5614", null, "255078", null, "4310", null, "3698", null, "1049", null, "-999999999", "N", "-999999999", "N", "8132", null, "1166", null, "-999999999", "N", "-999999999", "N", "3365", null, "1333", null, "13037", null, "1894", null, "9696", null, "1568", null, "252063", null, "4263", null, "97020", null, "3966", null, "178921", null, "4382", null, "27195", null, "2437", null, "46213", null, "3626", null, "105513", null, "3974", null, "-888888888", "(X)", "-888888888", "(X)", "47.7", null, "1.1", null, "52.3", null, "1.1", null, "50.1", null, "1.6", null, "13.0", null, "1.1", null, "4.6", null, "0.7", null, "8.4", null, "0.9", null, "36.9", null, "1.4", null, "24.1", null, "1.4", null, "17.0", null, "1.2", null, "6.6", null, "0.8", null, "2.2", null, "0.5", null, "4.4", null, "0.6", null, "0.5", null, "0.2", null, "75.9", null, "1.4", null, "33.1", null, "1.4", null, "6.4", null, "0.9", null, "2.3", null, "0.6", null, "4.0", null, "0.6", null, "36.4", null, "1.4", null, "8.3", null, "0.9", null, "91.7", null, "0.9", null, "26.9", null, "1.4", null, "73.1", null, "1.4", null, "90.0", null, "0.8", null, "1.3", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "2.9", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "1.2", null, "0.5", null, "4.6", null, "0.7", null, "3.4", null, "0.6", null, "88.9", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.2", null, "1.3", null, "25.8", null, "1.8", null, "59.0", null, "1.8", null, "19021", null, "2379", null, "8267", null, "1480", null, "10754", null, "1963", null, "4809", null, "1450", null, "5460", null, "1084", null, "919", null, "404", null, "4541", null, "1058", null, "8752", null, "1685", null, "5962", null, "1516", null, "2443", null, "1142", null, "3440", null, "950", null, "664", null, "430", null, "2776", null, "862", null, "79", null, "93", null, "13059", null, "2025", null, "2366", null, "892", null, "2020", null, "746", null, "255", null, "229", null, "1765", null, "683", null, "8673", null, "1673", null, "7335", null, "1469", null, "11686", null, "1758", null, "11897", null, "1938", null, "7124", null, "1554", null, "15544", null, "1932", null, "819", null, "933", null, "-999999999", "N", "-999999999", "N", "373", null, "395", null, "-999999999", "N", "-999999999", "N", "625", null, "528", null, "1660", null, "825", null, "1046", null, "736", null, "15377", null, "1940", null, "30404", null, "6367", null, "10269", null, "1944", null, "2741", null, "1268", null, "3815", null, "956", null, "3713", null, "1311", null, "6.7", null, "0.9", null, "43.5", null, "6.5", null, "56.5", null, "6.5", null, "25.3", null, "6.6", null, "28.7", null, "4.6", null, "4.8", null, "2.1", null, "23.9", null, "4.7", null, "46.0", null, "7.3", null, "31.3", null, "6.8", null, "12.8", null, "5.6", null, "18.1", null, "4.6", null, "3.5", null, "2.2", null, "14.6", null, "4.3", null, "0.4", null, "0.5", null, "68.7", null, "6.8", null, "12.4", null, "4.4", null, "10.6", null, "3.7", null, "1.3", null, "1.2", null, "9.3", null, "3.3", null, "45.6", null, "7.2", null, "38.6", null, "5.8", null, "61.4", null, "5.8", null, "62.5", null, "6.6", null, "37.5", null, "6.6", null, "81.7", null, "6.5", null, "4.3", null, "4.8", null, "-999999999.0", "N", "-999999999.0", "N", "2.0", null, "2.0", null, "-999999999.0", "N", "-999999999.0", "N", "3.3", null, "2.7", null, "8.7", null, "4.1", null, "5.5", null, "3.8", null, "80.8", null, "6.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "26.7", null, "10.0", null, "37.2", null, "9.8", null, "36.2", null, "10.1", null, "264507", null, "5120", null, "127077", null, "3584", null, "137430", null, "4590", null, "137253", null, "5069", null, "31399", null, "2937", null, "12064", null, "2071", null, "19335", null, "2287", null, "95855", null, "4577", null, "62349", null, "4027", null, "45703", null, "3356", null, "15396", null, "2245", null, "5708", null, "1371", null, "9688", null, "1813", null, "1250", null, "648", null, "202158", null, "5461", null, "91550", null, "4148", null, "16003", null, "2458", null, "6356", null, "1754", null, "9647", null, "1606", null, "94605", null, "4645", null, "16242", null, "2127", null, "248265", null, "5378", null, "64506", null, "3499", null, "200001", null, "5653", null, "239534", null, "4549", null, "2879", null, "804", null, "-999999999", "N", "-999999999", "N", "7759", null, "1269", null, "-999999999", "N", "-999999999", "N", "2740", null, "1180", null, "11377", null, "1879", null, "8650", null, "1624", null, "236686", null, "4615", null, "101569", null, "2683", null, "168652", null, "4632", null, "24454", null, "1859", null, "42398", null, "3593", null, "101800", null, "3797", null, "93.3", null, "0.9", null, "48.0", null, "1.2", null, "52.0", null, "1.2", null, "51.9", null, "1.7", null, "11.9", null, "1.1", null, "4.6", null, "0.8", null, "7.3", null, "0.9", null, "36.2", null, "1.5", null, "23.6", null, "1.4", null, "17.3", null, "1.2", null, "5.8", null, "0.8", null, "2.2", null, "0.5", null, "3.7", null, "0.7", null, "0.5", null, "0.2", null, "76.4", null, "1.4", null, "34.6", null, "1.5", null, "6.1", null, "0.9", null, "2.4", null, "0.7", null, "3.6", null, "0.6", null, "35.8", null, "1.5", null, "6.1", null, "0.8", null, "93.9", null, "0.8", null, "24.4", null, "1.3", null, "75.6", null, "1.3", null, "90.6", null, "0.9", null, "1.1", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "2.9", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "1.0", null, "0.4", null, "4.3", null, "0.7", null, "3.3", null, "0.6", null, "89.5", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.5", null, "1.1", null, "25.1", null, "1.9", null, "60.4", null, "1.7", null, "33", "02"], ["5001900US3401", "Congressional District 1 (119th Congress), New Jersey", "298502", null, "3734", null, "131782", null, "3458", null, "166720", null, "4667", null, "133338", null, "4695", null, "62172", null, "3885", null, "17657", null, "2099", null, "44515", null, "3599", null, "102992", null, "4650", null, "91492", null, "4682", null, "53859", null, "3736", null, "37212", null, "3350", null, "9560", null, "1787", null, "27652", null, "3031", null, "421", null, "276", null, "207010", null, "4591", null, "79479", null, "3721", null, "24960", null, "2128", null, "8097", null, "1398", null, "16863", null, "1751", null, "102571", null, "4615", null, "31572", null, "2750", null, "266930", null, "4403", null, "85937", null, "4886", null, "212565", null, "4991", null, "193437", null, "3711", null, "51622", null, "2985", null, "1371", null, "866", null, "12693", null, "1395", null, "-999999999", "N", "-999999999", "N", "21771", null, "2292", null, "17608", null, "2324", null, "39214", null, "2550", null, "187639", null, "3399", null, "94772", null, "3273", null, "195510", null, "5844", null, "24630", null, "2217", null, "58906", null, "3568", null, "111974", null, "4642", null, "-888888888", "(X)", "-888888888", "(X)", "44.1", null, "1.2", null, "55.9", null, "1.2", null, "44.7", null, "1.4", null, "20.8", null, "1.2", null, "5.9", null, "0.7", null, "14.9", null, "1.2", null, "34.5", null, "1.6", null, "30.7", null, "1.4", null, "18.0", null, "1.2", null, "12.5", null, "1.1", null, "3.2", null, "0.6", null, "9.3", null, "1.0", null, "0.1", null, "0.1", null, "69.3", null, "1.4", null, "26.6", null, "1.2", null, "8.4", null, "0.7", null, "2.7", null, "0.5", null, "5.6", null, "0.6", null, "34.4", null, "1.6", null, "10.6", null, "0.9", null, "89.4", null, "0.9", null, "28.8", null, "1.5", null, "71.2", null, "1.5", null, "64.8", null, "1.0", null, "17.3", null, "0.9", null, "0.5", null, "0.3", null, "4.3", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "7.3", null, "0.8", null, "5.9", null, "0.8", null, "13.1", null, "0.8", null, "62.9", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.6", null, "1.0", null, "30.1", null, "1.6", null, "57.3", null, "1.6", null, "34302", null, "3208", null, "14239", null, "2016", null, "20063", null, "2833", null, "5883", null, "1275", null, "15867", null, "2487", null, "2660", null, "924", null, "13207", null, "2334", null, "12552", null, "2220", null, "15851", null, "2406", null, "3929", null, "1202", null, "11922", null, "2093", null, "1983", null, "816", null, "9939", null, "2019", null, "0", null, "226", null, "18451", null, "2470", null, "1954", null, "630", null, "3945", null, "1128", null, "677", null, "380", null, "3268", null, "1003", null, "12552", null, "2220", null, "14205", null, "2053", null, "20097", null, "2615", null, "16349", null, "2146", null, "17953", null, "2549", null, "11381", null, "1955", null, "9495", null, "2104", null, "979", null, "789", null, "2457", null, "856", null, "-999999999", "N", "-999999999", "N", "6384", null, "1534", null, "3606", null, "1158", null, "12086", null, "2084", null, "9971", null, "1876", null, "31073", null, "3830", null, "21750", null, "2871", null, "4011", null, "951", null, "11024", null, "2138", null, "6715", null, "1640", null, "11.5", null, "1.1", null, "41.5", null, "5.2", null, "58.5", null, "5.2", null, "17.2", null, "3.5", null, "46.3", null, "5.5", null, "7.8", null, "2.6", null, "38.5", null, "5.4", null, "36.6", null, "5.7", null, "46.2", null, "5.4", null, "11.5", null, "3.3", null, "34.8", null, "5.1", null, "5.8", null, "2.4", null, "29.0", null, "5.1", null, "0.0", null, "0.6", null, "53.8", null, "5.4", null, "5.7", null, "1.9", null, "11.5", null, "3.0", null, "2.0", null, "1.1", null, "9.5", null, "2.7", null, "36.6", null, "5.7", null, "41.4", null, "4.9", null, "58.6", null, "4.9", null, "47.7", null, "5.0", null, "52.3", null, "5.0", null, "33.2", null, "4.7", null, "27.7", null, "5.5", null, "2.9", null, "2.3", null, "7.2", null, "2.5", null, "-999999999.0", "N", "-999999999.0", "N", "18.6", null, "4.3", null, "10.5", null, "3.3", null, "35.2", null, "5.2", null, "29.1", null, "4.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.4", null, "4.2", null, "50.7", null, "6.9", null, "30.9", null, "6.1", null, "264200", null, "4687", null, "117543", null, "3651", null, "146657", null, "4919", null, "127455", null, "4649", null, "46305", null, "4121", null, "14997", null, "2029", null, "31308", null, "3387", null, "90440", null, "4508", null, "75641", null, "4362", null, "49930", null, "3390", null, "25290", null, "3431", null, "7577", null, "1671", null, "17713", null, "2831", null, "421", null, "276", null, "188559", null, "4679", null, "77525", null, "3712", null, "21015", null, "2073", null, "7420", null, "1357", null, "13595", null, "1746", null, "90019", null, "4488", null, "17367", null, "2095", null, "246833", null, "5013", null, "69588", null, "4465", null, "194612", null, "5201", null, "182056", null, "4130", null, "42127", null, "3128", null, "392", null, "273", null, "10236", null, "1327", null, "-999999999", "N", "-999999999", "N", "15387", null, "2028", null, "14002", null, "2277", null, "27128", null, "2430", null, "177668", null, "3857", null, "103623", null, "2664", null, "173760", null, "5781", null, "20619", null, "2013", null, "47882", null, "3170", null, "105259", null, "4395", null, "88.5", null, "1.1", null, "44.5", null, "1.4", null, "55.5", null, "1.4", null, "48.2", null, "1.7", null, "17.5", null, "1.4", null, "5.7", null, "0.7", null, "11.9", null, "1.2", null, "34.2", null, "1.7", null, "28.6", null, "1.5", null, "18.9", null, "1.3", null, "9.6", null, "1.2", null, "2.9", null, "0.6", null, "6.7", null, "1.0", null, "0.2", null, "0.1", null, "71.4", null, "1.5", null, "29.3", null, "1.4", null, "8.0", null, "0.8", null, "2.8", null, "0.5", null, "5.1", null, "0.6", null, "34.1", null, "1.7", null, "6.6", null, "0.8", null, "93.4", null, "0.8", null, "26.3", null, "1.6", null, "73.7", null, "1.6", null, "68.9", null, "1.3", null, "15.9", null, "1.1", null, "0.1", null, "0.1", null, "3.9", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "5.8", null, "0.8", null, "5.3", null, "0.8", null, "10.3", null, "0.9", null, "67.2", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.9", null, "1.1", null, "27.6", null, "1.5", null, "60.6", null, "1.7", null, "34", "01"], ["5001900US3402", "Congressional District 2 (119th Congress), New Jersey", "312427", null, "4472", null, "163558", null, "4231", null, "148869", null, "4834", null, "153653", null, "4403", null, "58847", null, "4636", null, "18530", null, "3099", null, "40317", null, "3541", null, "99927", null, "5031", null, "85038", null, "3965", null, "52629", null, "3455", null, "31757", null, "3472", null, "8891", null, "2225", null, "22866", null, "2678", null, "652", null, "518", null, "227389", null, "5523", null, "101024", null, "3510", null, "27090", null, "2850", null, "9639", null, "2134", null, "17451", null, "2061", null, "99275", null, "4925", null, "34907", null, "3276", null, "277520", null, "4841", null, "94512", null, "5093", null, "217915", null, "6155", null, "225569", null, "4031", null, "29811", null, "2280", null, "2872", null, "1033", null, "11088", null, "1163", null, "-999999999", "N", "-999999999", "N", "17814", null, "2776", null, "25273", null, "2967", null, "43534", null, "2231", null, "219601", null, "3874", null, "84183", null, "2816", null, "212500", null, "4816", null, "35982", null, "2720", null, "64768", null, "4316", null, "111750", null, "4968", null, "-888888888", "(X)", "-888888888", "(X)", "52.4", null, "1.3", null, "47.6", null, "1.3", null, "49.2", null, "1.4", null, "18.8", null, "1.5", null, "5.9", null, "1.0", null, "12.9", null, "1.1", null, "32.0", null, "1.4", null, "27.2", null, "1.3", null, "16.8", null, "1.1", null, "10.2", null, "1.1", null, "2.8", null, "0.7", null, "7.3", null, "0.9", null, "0.2", null, "0.2", null, "72.8", null, "1.3", null, "32.3", null, "1.1", null, "8.7", null, "0.9", null, "3.1", null, "0.7", null, "5.6", null, "0.7", null, "31.8", null, "1.4", null, "11.2", null, "1.0", null, "88.8", null, "1.0", null, "30.3", null, "1.6", null, "69.7", null, "1.6", null, "72.2", null, "0.9", null, "9.5", null, "0.7", null, "0.9", null, "0.3", null, "3.5", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "5.7", null, "0.9", null, "8.1", null, "0.9", null, "13.9", null, "0.6", null, "70.3", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.9", null, "1.3", null, "30.5", null, "1.9", null, "52.6", null, "1.8", null, "36085", null, "3803", null, "15620", null, "2179", null, "20465", null, "3381", null, "7979", null, "1725", null, "16037", null, "2852", null, "4324", null, "1471", null, "11713", null, "2288", null, "12069", null, "2482", null, "18152", null, "2860", null, "5490", null, "1624", null, "12380", null, "2688", null, "2923", null, "1409", null, "9457", null, "2191", null, "282", null, "314", null, "17933", null, "2785", null, "2489", null, "736", null, "3657", null, "896", null, "1401", null, "594", null, "2256", null, "630", null, "11787", null, "2470", null, "14343", null, "2457", null, "21742", null, "2635", null, "16129", null, "2386", null, "19956", null, "3132", null, "13953", null, "2024", null, "10990", null, "2543", null, "348", null, "327", null, "1015", null, "517", null, "-999999999", "N", "-999999999", "N", "4548", null, "1435", null, "5231", null, "1502", null, "10293", null, "1963", null, "12686", null, "1896", null, "36539", null, "5681", null, "24016", null, "3133", null, "3928", null, "1171", null, "12754", null, "2681", null, "7334", null, "1807", null, "11.5", null, "1.2", null, "43.3", null, "5.6", null, "56.7", null, "5.6", null, "22.1", null, "4.5", null, "44.4", null, "6.2", null, "12.0", null, "3.7", null, "32.5", null, "5.5", null, "33.4", null, "5.6", null, "50.3", null, "5.8", null, "15.2", null, "4.3", null, "34.3", null, "6.2", null, "8.1", null, "3.6", null, "26.2", null, "5.5", null, "0.8", null, "0.9", null, "49.7", null, "5.8", null, "6.9", null, "2.0", null, "10.1", null, "2.4", null, "3.9", null, "1.6", null, "6.3", null, "1.7", null, "32.7", null, "5.6", null, "39.7", null, "4.7", null, "60.3", null, "4.7", null, "44.7", null, "5.5", null, "55.3", null, "5.5", null, "38.7", null, "5.2", null, "30.5", null, "5.3", null, "1.0", null, "0.9", null, "2.8", null, "1.4", null, "-999999999.0", "N", "-999999999.0", "N", "12.6", null, "3.9", null, "14.5", null, "3.7", null, "28.5", null, "4.8", null, "35.2", null, "4.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.4", null, "4.9", null, "53.1", null, "7.4", null, "30.5", null, "6.7", null, "276342", null, "4967", null, "147938", null, "4509", null, "128404", null, "5060", null, "145674", null, "4438", null, "42810", null, "3870", null, "14206", null, "2621", null, "28604", null, "3453", null, "87858", null, "4851", null, "66886", null, "4215", null, "47139", null, "3343", null, "19377", null, "3046", null, "5968", null, "1517", null, "13409", null, "2735", null, "370", null, "375", null, "209456", null, "5676", null, "98535", null, "3564", null, "23433", null, "2832", null, "8238", null, "2132", null, "15195", null, "1949", null, "87488", null, "4786", null, "20564", null, "2716", null, "255778", null, "4932", null, "78383", null, "4885", null, "197959", null, "6157", null, "211616", null, "4179", null, "18821", null, "2409", null, "2524", null, "992", null, "10073", null, "1124", null, "-999999999", "N", "-999999999", "N", "13266", null, "2527", null, "20042", null, "2828", null, "33241", null, "2942", null, "206915", null, "4083", null, "92773", null, "3260", null, "188484", null, "4654", null, "32054", null, "2288", null, "52014", null, "3599", null, "104416", null, "5058", null, "88.5", null, "1.2", null, "53.5", null, "1.5", null, "46.5", null, "1.5", null, "52.7", null, "1.5", null, "15.5", null, "1.4", null, "5.1", null, "0.9", null, "10.4", null, "1.3", null, "31.8", null, "1.5", null, "24.2", null, "1.5", null, "17.1", null, "1.2", null, "7.0", null, "1.1", null, "2.2", null, "0.5", null, "4.9", null, "1.0", null, "0.1", null, "0.1", null, "75.8", null, "1.5", null, "35.7", null, "1.2", null, "8.5", null, "1.0", null, "3.0", null, "0.8", null, "5.5", null, "0.7", null, "31.7", null, "1.5", null, "7.4", null, "1.0", null, "92.6", null, "1.0", null, "28.4", null, "1.7", null, "71.6", null, "1.7", null, "76.6", null, "1.3", null, "6.8", null, "0.8", null, "0.9", null, "0.4", null, "3.6", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "4.8", null, "0.9", null, "7.3", null, "1.0", null, "12.0", null, "1.0", null, "74.9", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.0", null, "1.3", null, "27.6", null, "1.9", null, "55.4", null, "1.9", null, "34", "02"], ["5001900US3403", "Congressional District 3 (119th Congress), New Jersey", "297695", null, "4137", null, "142822", null, "4504", null, "154873", null, "3687", null, "164004", null, "4896", null, "47761", null, "3916", null, "13342", null, "2244", null, "34419", null, "3033", null, "85930", null, "4595", null, "89798", null, "4155", null, "67134", null, "3810", null, "22222", null, "2826", null, "5279", null, "1662", null, "16943", null, "2169", null, "442", null, "431", null, "207897", null, "5254", null, "96870", null, "3798", null, "25539", null, "3071", null, "8063", null, "1736", null, "17476", null, "2186", null, "85488", null, "4687", null, "15809", null, "2370", null, "281886", null, "4537", null, "74844", null, "4540", null, "222851", null, "4633", null, "201346", null, "4544", null, "34742", null, "2204", null, "-999999999", "N", "-999999999", "N", "22099", null, "1700", null, "-999999999", "N", "-999999999", "N", "16033", null, "2572", null, "21696", null, "2648", null, "32417", null, "2810", null, "195958", null, "4420", null, "116950", null, "3687", null, "211765", null, "5292", null, "26840", null, "2415", null, "57705", null, "3810", null, "127220", null, "5035", null, "-888888888", "(X)", "-888888888", "(X)", "48.0", null, "1.2", null, "52.0", null, "1.2", null, "55.1", null, "1.6", null, "16.0", null, "1.3", null, "4.5", null, "0.7", null, "11.6", null, "1.0", null, "28.9", null, "1.5", null, "30.2", null, "1.4", null, "22.6", null, "1.3", null, "7.5", null, "0.9", null, "1.8", null, "0.6", null, "5.7", null, "0.7", null, "0.1", null, "0.1", null, "69.8", null, "1.4", null, "32.5", null, "1.3", null, "8.6", null, "1.0", null, "2.7", null, "0.6", null, "5.9", null, "0.7", null, "28.7", null, "1.5", null, "5.3", null, "0.8", null, "94.7", null, "0.8", null, "25.1", null, "1.4", null, "74.9", null, "1.4", null, "67.6", null, "1.2", null, "11.7", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "7.4", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "5.4", null, "0.9", null, "7.3", null, "0.9", null, "10.9", null, "0.9", null, "65.8", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.7", null, "1.1", null, "27.2", null, "1.7", null, "60.1", null, "1.7", null, "12269", null, "2037", null, "6013", null, "1249", null, "6256", null, "1534", null, "3516", null, "977", null, "5515", null, "1554", null, "1099", null, "786", null, "4416", null, "1412", null, "3238", null, "1016", null, "6191", null, "1491", null, "2519", null, "871", null, "3672", null, "1308", null, "489", null, "646", null, "3183", null, "1232", null, "0", null, "226", null, "6078", null, "1226", null, "997", null, "425", null, "1843", null, "637", null, "610", null, "457", null, "1233", null, "518", null, "3238", null, "1016", null, "3080", null, "918", null, "9189", null, "1759", null, "5524", null, "1206", null, "6745", null, "1545", null, "5808", null, "1380", null, "3080", null, "1041", null, "-999999999", "N", "-999999999", "N", "546", null, "290", null, "-999999999", "N", "-999999999", "N", "1184", null, "758", null, "1651", null, "896", null, "2399", null, "905", null, "5431", null, "1311", null, "48645", null, "18603", null, "9031", null, "1742", null, "1705", null, "859", null, "3302", null, "929", null, "4024", null, "1127", null, "4.1", null, "0.7", null, "49.0", null, "7.7", null, "51.0", null, "7.7", null, "28.7", null, "7.2", null, "45.0", null, "9.3", null, "9.0", null, "6.0", null, "36.0", null, "9.8", null, "26.4", null, "7.1", null, "50.5", null, "7.4", null, "20.5", null, "6.2", null, "29.9", null, "8.9", null, "4.0", null, "5.2", null, "25.9", null, "9.0", null, "0.0", null, "1.7", null, "49.5", null, "7.4", null, "8.1", null, "3.8", null, "15.0", null, "4.6", null, "5.0", null, "3.6", null, "10.0", null, "4.0", null, "26.4", null, "7.1", null, "25.1", null, "6.5", null, "74.9", null, "6.5", null, "45.0", null, "7.5", null, "55.0", null, "7.5", null, "47.3", null, "8.8", null, "25.1", null, "7.4", null, "-999999999.0", "N", "-999999999.0", "N", "4.5", null, "2.6", null, "-999999999.0", "N", "-999999999.0", "N", "9.7", null, "5.9", null, "13.5", null, "6.6", null, "19.6", null, "6.5", null, "44.3", null, "8.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.9", null, "8.5", null, "36.6", null, "8.2", null, "44.6", null, "9.4", null, "285426", null, "4470", null, "136809", null, "4434", null, "148617", null, "3991", null, "160488", null, "4648", null, "42246", null, "3777", null, "12243", null, "2143", null, "30003", null, "2900", null, "82692", null, "4457", null, "83607", null, "3980", null, "64615", null, "3593", null, "18550", null, "2548", null, "4790", null, "1473", null, "13760", null, "1904", null, "442", null, "431", null, "201819", null, "5213", null, "95873", null, "3812", null, "23696", null, "3012", null, "7453", null, "1698", null, "16243", null, "2150", null, "82250", null, "4529", null, "12729", null, "2212", null, "272697", null, "4848", null, "69320", null, "4626", null, "216106", null, "4605", null, "195538", null, "4616", null, "31662", null, "2154", null, "-999999999", "N", "-999999999", "N", "21553", null, "1749", null, "-999999999", "N", "-999999999", "N", "14849", null, "2552", null, "20045", null, "2649", null, "30018", null, "2821", null, "190527", null, "4480", null, "118791", null, "3368", null, "202734", null, "5401", null, "25135", null, "2278", null, "54403", null, "3834", null, "123196", null, "5063", null, "95.9", null, "0.7", null, "47.9", null, "1.3", null, "52.1", null, "1.3", null, "56.2", null, "1.5", null, "14.8", null, "1.2", null, "4.3", null, "0.7", null, "10.5", null, "1.0", null, "29.0", null, "1.5", null, "29.3", null, "1.4", null, "22.6", null, "1.3", null, "6.5", null, "0.9", null, "1.7", null, "0.5", null, "4.8", null, "0.7", null, "0.2", null, "0.2", null, "70.7", null, "1.4", null, "33.6", null, "1.3", null, "8.3", null, "1.0", null, "2.6", null, "0.6", null, "5.7", null, "0.7", null, "28.8", null, "1.5", null, "4.5", null, "0.8", null, "95.5", null, "0.8", null, "24.3", null, "1.5", null, "75.7", null, "1.5", null, "68.5", null, "1.3", null, "11.1", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "7.6", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "5.2", null, "0.9", null, "7.0", null, "0.9", null, "10.5", null, "0.9", null, "66.8", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.4", null, "1.1", null, "26.8", null, "1.8", null, "60.8", null, "1.8", null, "34", "03"], ["5001900US3404", "Congressional District 4 (119th Congress), New Jersey", "295458", null, "5126", null, "159669", null, "4121", null, "135789", null, "4682", null, "165067", null, "4882", null, "37618", null, "4062", null, "12038", null, "2092", null, "25580", null, "3294", null, "92773", null, "4888", null, "85926", null, "3353", null, "68019", null, "3347", null, "17241", null, "2637", null, "5551", null, "1643", null, "11690", null, "2101", null, "666", null, "533", null, "209532", null, "5378", null, "97048", null, "4455", null, "20377", null, "3035", null, "6487", null, "1328", null, "13890", null, "2679", null, "92107", null, "4877", null, "26259", null, "3103", null, "269199", null, "5107", null, "73130", null, "3725", null, "222328", null, "5505", null, "252130", null, "4757", null, "10309", null, "1833", null, "-999999999", "N", "-999999999", "N", "7101", null, "1000", null, "-999999999", "N", "-999999999", "N", "9504", null, "1742", null, "15882", null, "2102", null, "24736", null, "2098", null, "247331", null, "4895", null, "103769", null, "4295", null, "202685", null, "5029", null, "31668", null, "2278", null, "61043", null, "3832", null, "109974", null, "4003", null, "-888888888", "(X)", "-888888888", "(X)", "54.0", null, "1.2", null, "46.0", null, "1.2", null, "55.9", null, "1.6", null, "12.7", null, "1.3", null, "4.1", null, "0.7", null, "8.7", null, "1.1", null, "31.4", null, "1.5", null, "29.1", null, "1.1", null, "23.0", null, "1.2", null, "5.8", null, "0.9", null, "1.9", null, "0.6", null, "4.0", null, "0.7", null, "0.2", null, "0.2", null, "70.9", null, "1.1", null, "32.8", null, "1.4", null, "6.9", null, "1.0", null, "2.2", null, "0.4", null, "4.7", null, "0.9", null, "31.2", null, "1.5", null, "8.9", null, "1.0", null, "91.1", null, "1.0", null, "24.8", null, "1.2", null, "75.2", null, "1.2", null, "85.3", null, "0.9", null, "3.5", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "2.4", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "3.2", null, "0.6", null, "5.4", null, "0.7", null, "8.4", null, "0.7", null, "83.7", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.6", null, "1.0", null, "30.1", null, "1.6", null, "54.3", null, "1.8", null, "18171", null, "2528", null, "9003", null, "1769", null, "9168", null, "1829", null, "6217", null, "1190", null, "5606", null, "1677", null, "715", null, "384", null, "4891", null, "1648", null, "6348", null, "1650", null, "8489", null, "1605", null, "4557", null, "1077", null, "3932", null, "1436", null, "443", null, "308", null, "3489", null, "1373", null, "0", null, "226", null, "9682", null, "1815", null, "1660", null, "639", null, "1674", null, "790", null, "272", null, "239", null, "1402", null, "790", null, "6348", null, "1650", null, "7845", null, "1846", null, "10326", null, "1582", null, "7404", null, "1634", null, "10767", null, "2083", null, "12727", null, "2126", null, "1859", null, "1141", null, "-999999999", "N", "-999999999", "N", "429", null, "278", null, "-999999999", "N", "-999999999", "N", "877", null, "573", null, "2236", null, "958", null, "2945", null, "1156", null, "12332", null, "2081", null, "30866", null, "5626", null, "11823", null, "1909", null, "1336", null, "612", null, "6530", null, "1630", null, "3957", null, "983", null, "6.2", null, "0.8", null, "49.5", null, "7.0", null, "50.5", null, "7.0", null, "34.2", null, "6.7", null, "30.9", null, "7.4", null, "3.9", null, "2.1", null, "26.9", null, "7.4", null, "34.9", null, "6.9", null, "46.7", null, "6.3", null, "25.1", null, "5.9", null, "21.6", null, "6.7", null, "2.4", null, "1.6", null, "19.2", null, "6.5", null, "0.0", null, "1.2", null, "53.3", null, "6.3", null, "9.1", null, "3.6", null, "9.2", null, "4.1", null, "1.5", null, "1.3", null, "7.7", null, "4.1", null, "34.9", null, "6.9", null, "43.2", null, "6.7", null, "56.8", null, "6.7", null, "40.7", null, "7.5", null, "59.3", null, "7.5", null, "70.0", null, "7.3", null, "10.2", null, "5.9", null, "-999999999.0", "N", "-999999999.0", "N", "2.4", null, "1.6", null, "-999999999.0", "N", "-999999999.0", "N", "4.8", null, "3.0", null, "12.3", null, "5.0", null, "16.2", null, "5.8", null, "67.9", null, "7.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.3", null, "5.2", null, "55.2", null, "8.4", null, "33.5", null, "7.6", null, "277287", null, "4917", null, "150666", null, "3996", null, "126621", null, "4478", null, "158850", null, "4768", null, "32012", null, "3583", null, "11323", null, "2134", null, "20689", null, "2854", null, "86425", null, "4590", null, "77437", null, "3528", null, "63462", null, "3405", null, "13309", null, "2332", null, "5108", null, "1647", null, "8201", null, "1604", null, "666", null, "533", null, "199850", null, "5478", null, "95388", null, "4314", null, "18703", null, "2832", null, "6215", null, "1356", null, "12488", null, "2450", null, "85759", null, "4610", null, "18414", null, "2267", null, "258873", null, "5262", null, "65726", null, "3463", null, "211561", null, "5382", null, "239403", null, "4638", null, "8450", null, "1342", null, "-999999999", "N", "-999999999", "N", "6672", null, "1004", null, "-999999999", "N", "-999999999", "N", "8627", null, "1647", null, "13646", null, "1866", null, "21791", null, "2153", null, "234999", null, "4745", null, "110137", null, "4194", null, "190862", null, "4825", null, "30332", null, "2325", null, "54513", null, "3416", null, "106017", null, "3892", null, "93.8", null, "0.8", null, "54.3", null, "1.3", null, "45.7", null, "1.3", null, "57.3", null, "1.5", null, "11.5", null, "1.3", null, "4.1", null, "0.8", null, "7.5", null, "1.0", null, "31.2", null, "1.5", null, "27.9", null, "1.3", null, "22.9", null, "1.2", null, "4.8", null, "0.8", null, "1.8", null, "0.6", null, "3.0", null, "0.6", null, "0.2", null, "0.2", null, "72.1", null, "1.3", null, "34.4", null, "1.4", null, "6.7", null, "1.0", null, "2.2", null, "0.5", null, "4.5", null, "0.9", null, "30.9", null, "1.5", null, "6.6", null, "0.8", null, "93.4", null, "0.8", null, "23.7", null, "1.2", null, "76.3", null, "1.2", null, "86.3", null, "0.8", null, "3.0", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "2.4", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "3.1", null, "0.6", null, "4.9", null, "0.7", null, "7.9", null, "0.8", null, "84.7", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.9", null, "1.1", null, "28.6", null, "1.6", null, "55.5", null, "1.7", null, "34", "04"], ["5001900US3405", "Congressional District 5 (119th Congress), New Jersey", "291016", null, "5573", null, "137099", null, "4013", null, "153917", null, "5354", null, "169117", null, "5105", null, "41283", null, "3917", null, "14180", null, "2322", null, "27103", null, "2958", null, "80616", null, "5123", null, "88893", null, "4499", null, "70157", null, "3585", null, "18361", null, "2906", null, "5575", null, "1616", null, "12786", null, "2386", null, "375", null, "261", null, "202123", null, "5174", null, "98960", null, "4390", null, "22922", null, "2751", null, "8605", null, "1758", null, "14317", null, "1957", null, "80241", null, "5174", null, "19511", null, "2445", null, "271505", null, "5973", null, "59919", null, "3997", null, "231097", null, "5759", null, "181267", null, "5537", null, "16828", null, "1865", null, "-999999999", "N", "-999999999", "N", "48681", null, "2491", null, "-999999999", "N", "-999999999", "N", "15403", null, "2379", null, "28566", null, "3176", null, "45918", null, "3494", null, "174965", null, "5454", null, "130387", null, "4422", null, "210400", null, "6045", null, "23593", null, "2337", null, "56799", null, "4290", null, "130008", null, "4690", null, "-888888888", "(X)", "-888888888", "(X)", "47.1", null, "1.3", null, "52.9", null, "1.3", null, "58.1", null, "1.6", null, "14.2", null, "1.3", null, "4.9", null, "0.8", null, "9.3", null, "1.0", null, "27.7", null, "1.6", null, "30.5", null, "1.4", null, "24.1", null, "1.1", null, "6.3", null, "1.0", null, "1.9", null, "0.5", null, "4.4", null, "0.8", null, "0.1", null, "0.1", null, "69.5", null, "1.4", null, "34.0", null, "1.5", null, "7.9", null, "0.9", null, "3.0", null, "0.6", null, "4.9", null, "0.6", null, "27.6", null, "1.7", null, "6.7", null, "0.8", null, "93.3", null, "0.8", null, "20.6", null, "1.3", null, "79.4", null, "1.3", null, "62.3", null, "1.3", null, "5.8", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "16.7", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "5.3", null, "0.8", null, "9.8", null, "1.1", null, "15.8", null, "1.2", null, "60.1", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.2", null, "1.0", null, "27.0", null, "1.8", null, "61.8", null, "1.9", null, "12817", null, "2016", null, "8480", null, "1584", null, "4337", null, "1399", null, "3033", null, "819", null, "4907", null, "1510", null, "757", null, "485", null, "4150", null, "1420", null, "4877", null, "1113", null, "3334", null, "1092", null, "1138", null, "494", null, "2196", null, "1016", null, "26", null, "46", null, "2170", null, "1023", null, "0", null, "226", null, "9483", null, "1670", null, "1895", null, "600", null, "2711", null, "1083", null, "731", null, "484", null, "1980", null, "949", null, "4877", null, "1113", null, "6413", null, "1562", null, "6404", null, "1526", null, "6469", null, "1543", null, "6348", null, "1324", null, "5184", null, "1403", null, "970", null, "668", null, "-999999999", "N", "-999999999", "N", "2953", null, "859", null, "-999999999", "N", "-999999999", "N", "1772", null, "720", null, "1938", null, "966", null, "3904", null, "1169", null, "4687", null, "1297", null, "21369", null, "11214", null, "7940", null, "1695", null, "1811", null, "789", null, "3014", null, "1145", null, "3115", null, "1161", null, "4.4", null, "0.7", null, "66.2", null, "8.7", null, "33.8", null, "8.7", null, "23.7", null, "5.8", null, "38.3", null, "8.8", null, "5.9", null, "3.5", null, "32.4", null, "9.0", null, "38.1", null, "7.4", null, "26.0", null, "7.2", null, "8.9", null, "3.8", null, "17.1", null, "7.1", null, "0.2", null, "0.4", null, "16.9", null, "7.1", null, "0.0", null, "1.6", null, "74.0", null, "7.2", null, "14.8", null, "4.3", null, "21.2", null, "7.4", null, "5.7", null, "3.5", null, "15.4", null, "6.9", null, "38.1", null, "7.4", null, "50.0", null, "9.2", null, "50.0", null, "9.2", null, "50.5", null, "8.0", null, "49.5", null, "8.0", null, "40.4", null, "8.2", null, "7.6", null, "4.9", null, "-999999999.0", "N", "-999999999.0", "N", "23.0", null, "7.0", null, "-999999999.0", "N", "-999999999.0", "N", "13.8", null, "5.2", null, "15.1", null, "6.9", null, "30.5", null, "7.1", null, "36.6", null, "7.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "22.8", null, "9.1", null, "38.0", null, "11.9", null, "39.2", null, "11.8", null, "278199", null, "5771", null, "128619", null, "3829", null, "149580", null, "5436", null, "166084", null, "5079", null, "36376", null, "3547", null, "13423", null, "2197", null, "22953", null, "2583", null, "75739", null, "5068", null, "85559", null, "4510", null, "69019", null, "3569", null, "16165", null, "2689", null, "5549", null, "1621", null, "10616", null, "2132", null, "375", null, "261", null, "192640", null, "4975", null, "97065", null, "4344", null, "20211", null, "2488", null, "7874", null, "1674", null, "12337", null, "1676", null, "75364", null, "5122", null, "13098", null, "2122", null, "265101", null, "5937", null, "53450", null, "3873", null, "224749", null, "6120", null, "176083", null, "5618", null, "15858", null, "1847", null, "-999999999", "N", "-999999999", "N", "45728", null, "2767", null, "-999999999", "N", "-999999999", "N", "13631", null, "2301", null, "26628", null, "3048", null, "42014", null, "3434", null, "170278", null, "5570", null, "133990", null, "4408", null, "202460", null, "6136", null, "21782", null, "2165", null, "53785", null, "3982", null, "126893", null, "4670", null, "95.6", null, "0.7", null, "46.2", null, "1.3", null, "53.8", null, "1.3", null, "59.7", null, "1.6", null, "13.1", null, "1.2", null, "4.8", null, "0.8", null, "8.3", null, "0.9", null, "27.2", null, "1.7", null, "30.8", null, "1.4", null, "24.8", null, "1.1", null, "5.8", null, "0.9", null, "2.0", null, "0.6", null, "3.8", null, "0.8", null, "0.1", null, "0.1", null, "69.2", null, "1.4", null, "34.9", null, "1.6", null, "7.3", null, "0.9", null, "2.8", null, "0.6", null, "4.4", null, "0.6", null, "27.1", null, "1.7", null, "4.7", null, "0.8", null, "95.3", null, "0.8", null, "19.2", null, "1.4", null, "80.8", null, "1.4", null, "63.3", null, "1.4", null, "5.7", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "16.4", null, "1.0", null, "-999999999.0", "N", "-999999999.0", "N", "4.9", null, "0.8", null, "9.6", null, "1.1", null, "15.1", null, "1.2", null, "61.2", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.8", null, "0.9", null, "26.6", null, "1.7", null, "62.7", null, "1.8", null, "34", "05"], ["5001900US3406", "Congressional District 6 (119th Congress), New Jersey", "289807", null, "4608", null, "127782", null, "4845", null, "162025", null, "4671", null, "141141", null, "4385", null, "51833", null, "4217", null, "19524", null, "3017", null, "32309", null, "3557", null, "96833", null, "4772", null, "83084", null, "4393", null, "59208", null, "3718", null, "23372", null, "3098", null, "6790", null, "1882", null, "16582", null, "2676", null, "504", null, "401", null, "206723", null, "6167", null, "81933", null, "4269", null, "28461", null, "3102", null, "12734", null, "2486", null, "15727", null, "2285", null, "96329", null, "4809", null, "28356", null, "3373", null, "261451", null, "5470", null, "67716", null, "4384", null, "222091", null, "5334", null, "147854", null, "5161", null, "31507", null, "3241", null, "2866", null, "948", null, "47986", null, "2451", null, "-999999999", "N", "-999999999", "N", "31515", null, "3085", null, "27790", null, "3276", null, "63973", null, "3504", null, "139896", null, "5043", null, "104316", null, "4464", null, "192974", null, "4640", null, "19537", null, "2184", null, "54026", null, "4152", null, "119411", null, "5060", null, "-888888888", "(X)", "-888888888", "(X)", "44.1", null, "1.4", null, "55.9", null, "1.4", null, "48.7", null, "1.6", null, "17.9", null, "1.4", null, "6.7", null, "1.0", null, "11.1", null, "1.2", null, "33.4", null, "1.4", null, "28.7", null, "1.6", null, "20.4", null, "1.4", null, "8.1", null, "1.0", null, "2.3", null, "0.6", null, "5.7", null, "0.9", null, "0.2", null, "0.1", null, "71.3", null, "1.6", null, "28.3", null, "1.4", null, "9.8", null, "1.1", null, "4.4", null, "0.8", null, "5.4", null, "0.8", null, "33.2", null, "1.5", null, "9.8", null, "1.2", null, "90.2", null, "1.2", null, "23.4", null, "1.4", null, "76.6", null, "1.4", null, "51.0", null, "1.4", null, "10.9", null, "1.1", null, "1.0", null, "0.3", null, "16.6", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "10.9", null, "1.1", null, "9.6", null, "1.1", null, "22.1", null, "1.2", null, "48.3", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.1", null, "1.1", null, "28.0", null, "2.1", null, "61.9", null, "2.0", null, "25802", null, "3868", null, "13717", null, "2427", null, "12085", null, "2389", null, "7017", null, "1844", null, "9691", null, "2098", null, "2893", null, "1405", null, "6798", null, "1480", null, "9094", null, "2042", null, "11590", null, "2764", null, "4712", null, "1657", null, "6878", null, "2042", null, "2094", null, "1288", null, "4784", null, "1485", null, "0", null, "226", null, "14212", null, "2535", null, "2305", null, "811", null, "2813", null, "990", null, "799", null, "598", null, "2014", null, "796", null, "9094", null, "2042", null, "10408", null, "2169", null, "15394", null, "2748", null, "11079", null, "2458", null, "14723", null, "2801", null, "8985", null, "1714", null, "3353", null, "1285", null, "262", null, "352", null, "2719", null, "1085", null, "-999999999", "N", "-999999999", "N", "7148", null, "2003", null, "3335", null, "1198", null, "11160", null, "2459", null, "7775", null, "1575", null, "29482", null, "7968", null, "16708", null, "2984", null, "2702", null, "976", null, "7724", null, "2032", null, "6282", null, "1661", null, "8.9", null, "1.3", null, "53.2", null, "5.6", null, "46.8", null, "5.6", null, "27.2", null, "5.6", null, "37.6", null, "6.1", null, "11.2", null, "4.9", null, "26.3", null, "5.2", null, "35.2", null, "6.0", null, "44.9", null, "7.3", null, "18.3", null, "5.4", null, "26.7", null, "6.7", null, "8.1", null, "4.6", null, "18.5", null, "5.4", null, "0.0", null, "0.8", null, "55.1", null, "7.3", null, "8.9", null, "3.1", null, "10.9", null, "3.8", null, "3.1", null, "2.3", null, "7.8", null, "3.1", null, "35.2", null, "6.0", null, "40.3", null, "5.9", null, "59.7", null, "5.9", null, "42.9", null, "7.0", null, "57.1", null, "7.0", null, "34.8", null, "5.5", null, "13.0", null, "4.7", null, "1.0", null, "1.4", null, "10.5", null, "3.7", null, "-999999999.0", "N", "-999999999.0", "N", "27.7", null, "6.0", null, "12.9", null, "4.3", null, "43.3", null, "5.9", null, "30.1", null, "5.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.2", null, "5.1", null, "46.2", null, "8.9", null, "37.6", null, "7.4", null, "264005", null, "5317", null, "114065", null, "4973", null, "149940", null, "4647", null, "134124", null, "4743", null, "42142", null, "3930", null, "16631", null, "2965", null, "25511", null, "3143", null, "87739", null, "4593", null, "71494", null, "4099", null, "54496", null, "3467", null, "16494", null, "2412", null, "4696", null, "1525", null, "11798", null, "2124", null, "504", null, "401", null, "192511", null, "6010", null, "79628", null, "4256", null, "25648", null, "3164", null, "11935", null, "2639", null, "13713", null, "2087", null, "87235", null, "4659", null, "17948", null, "2942", null, "246057", null, "5675", null, "56637", null, "3893", null, "207368", null, "5552", null, "138869", null, "5330", null, "28154", null, "2986", null, "2604", null, "922", null, "45267", null, "2656", null, "-999999999", "N", "-999999999", "N", "24367", null, "2719", null, "24455", null, "2930", null, "52813", null, "3323", null, "132121", null, "5180", null, "111882", null, "4090", null, "176266", null, "5077", null, "16835", null, "2000", null, "46302", null, "3736", null, "113129", null, "5163", null, "91.1", null, "1.3", null, "43.2", null, "1.5", null, "56.8", null, "1.5", null, "50.8", null, "1.7", null, "16.0", null, "1.4", null, "6.3", null, "1.1", null, "9.7", null, "1.2", null, "33.2", null, "1.5", null, "27.1", null, "1.5", null, "20.6", null, "1.4", null, "6.2", null, "0.9", null, "1.8", null, "0.6", null, "4.5", null, "0.8", null, "0.2", null, "0.2", null, "72.9", null, "1.5", null, "30.2", null, "1.5", null, "9.7", null, "1.2", null, "4.5", null, "1.0", null, "5.2", null, "0.8", null, "33.0", null, "1.6", null, "6.8", null, "1.1", null, "93.2", null, "1.1", null, "21.5", null, "1.4", null, "78.5", null, "1.4", null, "52.6", null, "1.6", null, "10.7", null, "1.1", null, "1.0", null, "0.3", null, "17.1", null, "1.0", null, "-999999999.0", "N", "-999999999.0", "N", "9.2", null, "1.0", null, "9.3", null, "1.1", null, "20.0", null, "1.2", null, "50.0", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "9.6", null, "1.1", null, "26.3", null, "2.0", null, "64.2", null, "2.2", null, "34", "06"], ["5001900US3407", "Congressional District 7 (119th Congress), New Jersey", "301151", null, "4425", null, "140301", null, "4317", null, "160850", null, "4320", null, "177613", null, "4948", null, "34799", null, "3277", null, "11325", null, "2189", null, "23474", null, "2656", null, "88739", null, "4443", null, "87623", null, "3283", null, "70423", null, "3084", null, "16465", null, "2324", null, "5675", null, "1580", null, "10790", null, "1908", null, "735", null, "688", null, "213528", null, "5057", null, "107190", null, "4351", null, "18334", null, "2224", null, "5650", null, "1410", null, "12684", null, "1918", null, "88004", null, "4428", null, "19451", null, "2782", null, "281700", null, "5138", null, "62474", null, "3503", null, "238677", null, "5167", null, "222385", null, "4585", null, "16694", null, "2463", null, "-999999999", "N", "-999999999", "N", "24449", null, "2102", null, "-999999999", "N", "-999999999", "N", "12321", null, "2235", null, "24896", null, "2778", null, "32246", null, "2890", null, "217341", null, "4354", null, "132702", null, "4289", null, "212412", null, "4855", null, "25266", null, "2500", null, "52631", null, "3807", null, "134515", null, "4969", null, "-888888888", "(X)", "-888888888", "(X)", "46.6", null, "1.2", null, "53.4", null, "1.2", null, "59.0", null, "1.4", null, "11.6", null, "1.1", null, "3.8", null, "0.7", null, "7.8", null, "0.9", null, "29.5", null, "1.4", null, "29.1", null, "1.1", null, "23.4", null, "1.0", null, "5.5", null, "0.8", null, "1.9", null, "0.5", null, "3.6", null, "0.6", null, "0.2", null, "0.2", null, "70.9", null, "1.1", null, "35.6", null, "1.3", null, "6.1", null, "0.7", null, "1.9", null, "0.5", null, "4.2", null, "0.6", null, "29.2", null, "1.4", null, "6.5", null, "0.9", null, "93.5", null, "0.9", null, "20.7", null, "1.2", null, "79.3", null, "1.2", null, "73.8", null, "1.2", null, "5.5", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "8.1", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "4.1", null, "0.7", null, "8.3", null, "0.9", null, "10.7", null, "0.9", null, "72.2", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.9", null, "1.1", null, "24.8", null, "1.7", null, "63.3", null, "1.8", null, "11521", null, "1944", null, "7010", null, "1673", null, "4511", null, "1179", null, "3824", null, "1085", null, "2797", null, "889", null, "625", null, "356", null, "2172", null, "836", null, "4900", null, "1318", null, "3176", null, "827", null, "1578", null, "623", null, "1481", null, "615", null, "166", null, "184", null, "1315", null, "575", null, "117", null, "187", null, "8345", null, "1842", null, "2246", null, "985", null, "1316", null, "585", null, "459", null, "295", null, "857", null, "531", null, "4783", null, "1317", null, "4637", null, "1421", null, "6884", null, "1364", null, "5602", null, "1380", null, "5919", null, "1305", null, "5664", null, "1273", null, "1434", null, "828", null, "-999999999", "N", "-999999999", "N", "860", null, "457", null, "-999999999", "N", "-999999999", "N", "1712", null, "891", null, "1805", null, "883", null, "3475", null, "1203", null, "5133", null, "1304", null, "27233", null, "6130", null, "6621", null, "1357", null, "1919", null, "875", null, "1896", null, "754", null, "2806", null, "774", null, "3.8", null, "0.6", null, "60.8", null, "8.8", null, "39.2", null, "8.8", null, "33.2", null, "7.6", null, "24.3", null, "7.1", null, "5.4", null, "2.9", null, "18.9", null, "7.1", null, "42.5", null, "8.0", null, "27.6", null, "7.1", null, "13.7", null, "5.5", null, "12.9", null, "5.1", null, "1.4", null, "1.6", null, "11.4", null, "4.8", null, "1.0", null, "1.6", null, "72.4", null, "7.1", null, "19.5", null, "7.2", null, "11.4", null, "4.9", null, "4.0", null, "2.4", null, "7.4", null, "4.6", null, "41.5", null, "8.0", null, "40.2", null, "8.9", null, "59.8", null, "8.9", null, "48.6", null, "8.1", null, "51.4", null, "8.1", null, "49.2", null, "8.5", null, "12.4", null, "6.7", null, "-999999999.0", "N", "-999999999.0", "N", "7.5", null, "4.0", null, "-999999999.0", "N", "-999999999.0", "N", "14.9", null, "7.3", null, "15.7", null, "6.9", null, "30.2", null, "8.8", null, "44.6", null, "8.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "29.0", null, "10.5", null, "28.6", null, "9.6", null, "42.4", null, "10.8", null, "289630", null, "4408", null, "133291", null, "3997", null, "156339", null, "4512", null, "173789", null, "5014", null, "32002", null, "3185", null, "10700", null, "2175", null, "21302", null, "2485", null, "83839", null, "4274", null, "84447", null, "3364", null, "68845", null, "3068", null, "14984", null, "2339", null, "5509", null, "1584", null, "9475", null, "1801", null, "618", null, "655", null, "205183", null, "4792", null, "104944", null, "4431", null, "17018", null, "2185", null, "5191", null, "1360", null, "11827", null, "1885", null, "83221", null, "4303", null, "14814", null, "2460", null, "274816", null, "4996", null, "56872", null, "3396", null, "232758", null, "5320", null, "216721", null, "4357", null, "15260", null, "2491", null, "-999999999", "N", "-999999999", "N", "23589", null, "2002", null, "-999999999", "N", "-999999999", "N", "10609", null, "1969", null, "23091", null, "2947", null, "28771", null, "2732", null, "212208", null, "4232", null, "137530", null, "5625", null, "205791", null, "4939", null, "23347", null, "2453", null, "50735", null, "3965", null, "131709", null, "4905", null, "96.2", null, "0.6", null, "46.0", null, "1.3", null, "54.0", null, "1.3", null, "60.0", null, "1.5", null, "11.0", null, "1.1", null, "3.7", null, "0.8", null, "7.4", null, "0.8", null, "28.9", null, "1.4", null, "29.2", null, "1.1", null, "23.8", null, "1.1", null, "5.2", null, "0.8", null, "1.9", null, "0.5", null, "3.3", null, "0.6", null, "0.2", null, "0.2", null, "70.8", null, "1.1", null, "36.2", null, "1.4", null, "5.9", null, "0.8", null, "1.8", null, "0.5", null, "4.1", null, "0.7", null, "28.7", null, "1.4", null, "5.1", null, "0.9", null, "94.9", null, "0.9", null, "19.6", null, "1.2", null, "80.4", null, "1.2", null, "74.8", null, "1.2", null, "5.3", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "8.1", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "3.7", null, "0.7", null, "8.0", null, "1.0", null, "9.9", null, "0.9", null, "73.3", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.3", null, "1.1", null, "24.7", null, "1.9", null, "64.0", null, "1.9", null, "34", "07"], ["5001900US3408", "Congressional District 8 (119th Congress), New Jersey", "310568", null, "6008", null, "97866", null, "4692", null, "212702", null, "5403", null, "113447", null, "5619", null, "73421", null, "5407", null, "22652", null, "3282", null, "50769", null, "4470", null, "123700", null, "6087", null, "89736", null, "4843", null, "50583", null, "4113", null, "38689", null, "4177", null, "10316", null, "2527", null, "28373", null, "3399", null, "464", null, "487", null, "220832", null, "6449", null, "62864", null, "4891", null, "34732", null, "3871", null, "12336", null, "2130", null, "22396", null, "3141", null, "123236", null, "6093", null, "49844", null, "4055", null, "260724", null, "6938", null, "62323", null, "4015", null, "248245", null, "6040", null, "110501", null, "4549", null, "29787", null, "4230", null, "3873", null, "1136", null, "42118", null, "2398", null, "-999999999", "N", "-999999999", "N", "71713", null, "5002", null, "52504", null, "4900", null, "136719", null, "4696", null, "93269", null, "3786", null, "88096", null, "3242", null, "186868", null, "6505", null, "17502", null, "2622", null, "61013", null, "5180", null, "108353", null, "5229", null, "-888888888", "(X)", "-888888888", "(X)", "31.5", null, "1.3", null, "68.5", null, "1.3", null, "36.5", null, "1.8", null, "23.6", null, "1.6", null, "7.3", null, "1.1", null, "16.3", null, "1.3", null, "39.8", null, "1.8", null, "28.9", null, "1.5", null, "16.3", null, "1.3", null, "12.5", null, "1.3", null, "3.3", null, "0.8", null, "9.1", null, "1.1", null, "0.1", null, "0.2", null, "71.1", null, "1.5", null, "20.2", null, "1.6", null, "11.2", null, "1.2", null, "4.0", null, "0.7", null, "7.2", null, "1.0", null, "39.7", null, "1.8", null, "16.0", null, "1.3", null, "84.0", null, "1.3", null, "20.1", null, "1.2", null, "79.9", null, "1.2", null, "35.6", null, "1.2", null, "9.6", null, "1.3", null, "1.2", null, "0.4", null, "13.6", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "23.1", null, "1.6", null, "16.9", null, "1.5", null, "44.0", null, "1.4", null, "30.0", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "9.4", null, "1.3", null, "32.7", null, "2.3", null, "58.0", null, "2.4", null, "48916", null, "3799", null, "24075", null, "2598", null, "24841", null, "2924", null, "10297", null, "2042", null, "21908", null, "3028", null, "3767", null, "1694", null, "18141", null, "2790", null, "16711", null, "2661", null, "22304", null, "3243", null, "6725", null, "1655", null, "15579", null, "2730", null, "3065", null, "1532", null, "12514", null, "2180", null, "0", null, "226", null, "26612", null, "3025", null, "3572", null, "1156", null, "6329", null, "1656", null, "702", null, "550", null, "5627", null, "1560", null, "16711", null, "2661", null, "24526", null, "3401", null, "24390", null, "3075", null, "21459", null, "2402", null, "27457", null, "3393", null, "9257", null, "1682", null, "6765", null, "2105", null, "1225", null, "732", null, "1709", null, "772", null, "-999999999", "N", "-999999999", "N", "17427", null, "2780", null, "12533", null, "2475", null, "35085", null, "3789", null, "5158", null, "1136", null, "26453", null, "4077", null, "32205", null, "3502", null, "6287", null, "1689", null, "15252", null, "2780", null, "10666", null, "2214", null, "15.8", null, "1.2", null, "49.2", null, "4.1", null, "50.8", null, "4.1", null, "21.1", null, "4.0", null, "44.8", null, "4.7", null, "7.7", null, "3.4", null, "37.1", null, "4.7", null, "34.2", null, "4.9", null, "45.6", null, "5.2", null, "13.7", null, "3.3", null, "31.8", null, "4.5", null, "6.3", null, "3.0", null, "25.6", null, "3.7", null, "0.0", null, "0.4", null, "54.4", null, "5.2", null, "7.3", null, "2.3", null, "12.9", null, "3.4", null, "1.4", null, "1.1", null, "11.5", null, "3.1", null, "34.2", null, "4.9", null, "50.1", null, "5.4", null, "49.9", null, "5.4", null, "43.9", null, "4.5", null, "56.1", null, "4.5", null, "18.9", null, "3.5", null, "13.8", null, "4.2", null, "2.5", null, "1.5", null, "3.5", null, "1.6", null, "-999999999.0", "N", "-999999999.0", "N", "35.6", null, "4.7", null, "25.6", null, "4.5", null, "71.7", null, "4.5", null, "10.5", null, "2.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "19.5", null, "4.9", null, "47.4", null, "6.7", null, "33.1", null, "6.1", null, "261652", null, "6351", null, "73791", null, "4202", null, "187861", null, "5764", null, "103150", null, "5368", null, "51513", null, "4725", null, "18885", null, "3092", null, "32628", null, "3586", null, "106989", null, "6178", null, "67432", null, "4483", null, "43858", null, "3978", null, "23110", null, "3458", null, "7251", null, "2127", null, "15859", null, "2669", null, "464", null, "487", null, "194220", null, "6194", null, "59292", null, "4640", null, "28403", null, "3351", null, "11634", null, "2018", null, "16769", null, "2748", null, "106525", null, "6158", null, "25318", null, "3073", null, "236334", null, "6770", null, "40864", null, "3058", null, "220788", null, "6385", null, "101244", null, "4439", null, "23022", null, "3749", null, "2648", null, "1015", null, "40409", null, "2496", null, "-999999999", "N", "-999999999", "N", "54286", null, "4466", null, "39971", null, "4242", null, "101634", null, "4904", null, "88111", null, "3705", null, "102997", null, "3715", null, "154663", null, "6146", null, "11215", null, "1871", null, "45761", null, "3871", null, "97687", null, "5403", null, "84.2", null, "1.2", null, "28.2", null, "1.4", null, "71.8", null, "1.4", null, "39.4", null, "2.0", null, "19.7", null, "1.7", null, "7.2", null, "1.2", null, "12.5", null, "1.3", null, "40.9", null, "2.0", null, "25.8", null, "1.6", null, "16.8", null, "1.5", null, "8.8", null, "1.3", null, "2.8", null, "0.8", null, "6.1", null, "1.0", null, "0.2", null, "0.2", null, "74.2", null, "1.6", null, "22.7", null, "1.8", null, "10.9", null, "1.2", null, "4.4", null, "0.8", null, "6.4", null, "1.0", null, "40.7", null, "2.0", null, "9.7", null, "1.2", null, "90.3", null, "1.2", null, "15.6", null, "1.1", null, "84.4", null, "1.1", null, "38.7", null, "1.4", null, "8.8", null, "1.4", null, "1.0", null, "0.4", null, "15.4", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "20.7", null, "1.7", null, "15.3", null, "1.6", null, "38.8", null, "1.6", null, "33.7", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "7.3", null, "1.2", null, "29.6", null, "2.2", null, "63.2", null, "2.4", null, "34", "08"], ["5001900US3409", "Congressional District 9 (119th Congress), New Jersey", "275462", null, "5026", null, "119874", null, "4616", null, "155588", null, "5671", null, "121369", null, "5457", null, "70354", null, "4267", null, "20595", null, "2680", null, "49759", null, "4089", null, "83739", null, "5055", null, "88056", null, "4325", null, "50234", null, "3673", null, "37609", null, "3306", null, "8069", null, "1628", null, "29540", null, "3184", null, "213", null, "278", null, "187406", null, "5366", null, "71135", null, "4562", null, "32745", null, "3346", null, "12526", null, "2218", null, "20219", null, "2599", null, "83526", null, "5056", null, "33111", null, "3364", null, "242351", null, "5654", null, "64262", null, "3728", null, "211200", null, "5627", null, "122497", null, "5060", null, "25492", null, "2848", null, "976", null, "475", null, "24848", null, "2658", null, "-999999999", "N", "-999999999", "N", "48945", null, "3419", null, "52657", null, "3485", null, "108620", null, "3951", null, "112380", null, "4694", null, "87122", null, "3679", null, "191723", null, "5932", null, "20658", null, "2405", null, "61603", null, "4508", null, "109462", null, "4783", null, "-888888888", "(X)", "-888888888", "(X)", "43.5", null, "1.6", null, "56.5", null, "1.6", null, "44.1", null, "1.7", null, "25.5", null, "1.5", null, "7.5", null, "1.0", null, "18.1", null, "1.5", null, "30.4", null, "1.7", null, "32.0", null, "1.5", null, "18.2", null, "1.3", null, "13.7", null, "1.2", null, "2.9", null, "0.6", null, "10.7", null, "1.1", null, "0.1", null, "0.1", null, "68.0", null, "1.5", null, "25.8", null, "1.5", null, "11.9", null, "1.2", null, "4.5", null, "0.8", null, "7.3", null, "0.9", null, "30.3", null, "1.7", null, "12.0", null, "1.2", null, "88.0", null, "1.2", null, "23.3", null, "1.3", null, "76.7", null, "1.3", null, "44.5", null, "1.5", null, "9.3", null, "1.0", null, "0.4", null, "0.2", null, "9.0", null, "1.0", null, "-999999999.0", "N", "-999999999.0", "N", "17.8", null, "1.3", null, "19.1", null, "1.2", null, "39.4", null, "1.4", null, "40.8", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.8", null, "1.2", null, "32.1", null, "2.0", null, "57.1", null, "2.0", null, "39569", null, "3372", null, "18375", null, "2651", null, "21194", null, "2507", null, "9058", null, "1737", null, "20309", null, "2444", null, "3926", null, "1409", null, "16383", null, "2287", null, "10202", null, "1972", null, "20542", null, "2276", null, "6367", null, "1576", null, "14175", null, "1924", null, "2182", null, "968", null, "11993", null, "1832", null, "0", null, "226", null, "19027", null, "2481", null, "2691", null, "955", null, "6134", null, "1530", null, "1744", null, "933", null, "4390", null, "1275", null, "10202", null, "1972", null, "16361", null, "2735", null, "23208", null, "3175", null, "16748", null, "2470", null, "22821", null, "2742", null, "7080", null, "1841", null, "5944", null, "1651", null, "225", null, "196", null, "2689", null, "849", null, "-999999999", "N", "-999999999", "N", "13676", null, "2636", null, "9908", null, "1602", null, "26302", null, "2889", null, "5304", null, "1335", null, "31563", null, "5370", null, "29367", null, "2975", null, "4977", null, "1428", null, "13631", null, "2255", null, "10759", null, "1935", null, "14.4", null, "1.3", null, "46.4", null, "5.0", null, "53.6", null, "5.0", null, "22.9", null, "3.8", null, "51.3", null, "4.9", null, "9.9", null, "3.4", null, "41.4", null, "4.9", null, "25.8", null, "4.4", null, "51.9", null, "4.3", null, "16.1", null, "3.7", null, "35.8", null, "4.3", null, "5.5", null, "2.4", null, "30.3", null, "4.2", null, "0.0", null, "0.5", null, "48.1", null, "4.3", null, "6.8", null, "2.3", null, "15.5", null, "3.6", null, "4.4", null, "2.3", null, "11.1", null, "3.1", null, "25.8", null, "4.4", null, "41.3", null, "6.1", null, "58.7", null, "6.1", null, "42.3", null, "5.0", null, "57.7", null, "5.0", null, "17.9", null, "4.3", null, "15.0", null, "4.3", null, "0.6", null, "0.5", null, "6.8", null, "2.0", null, "-999999999.0", "N", "-999999999.0", "N", "34.6", null, "5.5", null, "25.0", null, "3.8", null, "66.5", null, "4.1", null, "13.4", null, "3.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.9", null, "4.5", null, "46.4", null, "5.9", null, "36.6", null, "5.7", null, "235893", null, "6142", null, "101499", null, "5097", null, "134394", null, "5711", null, "112311", null, "5328", null, "50045", null, "3618", null, "16669", null, "2340", null, "33376", null, "3549", null, "73537", null, "4758", null, "67514", null, "4032", null, "43867", null, "3392", null, "23434", null, "2742", null, "5887", null, "1379", null, "17547", null, "2689", null, "213", null, "278", null, "168379", null, "5625", null, "68444", null, "4834", null, "26611", null, "3103", null, "10782", null, "2056", null, "15829", null, "2492", null, "73324", null, "4765", null, "16750", null, "2238", null, "219143", null, "5940", null, "47514", null, "3446", null, "188379", null, "6043", null, "115417", null, "5066", null, "19548", null, "2271", null, "751", null, "473", null, "22159", null, "2722", null, "-999999999", "N", "-999999999", "N", "35269", null, "3123", null, "42749", null, "3549", null, "82318", null, "4440", null, "107076", null, "4840", null, "95875", null, "3433", null, "162356", null, "6063", null, "15681", null, "2190", null, "47972", null, "3849", null, "98703", null, "4454", null, "85.6", null, "1.3", null, "43.0", null, "1.9", null, "57.0", null, "1.9", null, "47.6", null, "1.8", null, "21.2", null, "1.5", null, "7.1", null, "1.0", null, "14.1", null, "1.4", null, "31.2", null, "1.8", null, "28.6", null, "1.5", null, "18.6", null, "1.4", null, "9.9", null, "1.1", null, "2.5", null, "0.6", null, "7.4", null, "1.1", null, "0.1", null, "0.1", null, "71.4", null, "1.5", null, "29.0", null, "1.8", null, "11.3", null, "1.3", null, "4.6", null, "0.9", null, "6.7", null, "1.0", null, "31.1", null, "1.8", null, "7.1", null, "0.9", null, "92.9", null, "0.9", null, "20.1", null, "1.4", null, "79.9", null, "1.4", null, "48.9", null, "1.6", null, "8.3", null, "0.9", null, "0.3", null, "0.2", null, "9.4", null, "1.1", null, "-999999999.0", "N", "-999999999.0", "N", "15.0", null, "1.2", null, "18.1", null, "1.5", null, "34.9", null, "1.6", null, "45.4", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "9.7", null, "1.2", null, "29.5", null, "2.0", null, "60.8", null, "2.1", null, "34", "09"], ["5001900US3410", "Congressional District 10 (119th Congress), New Jersey", "292201", null, "5863", null, "117264", null, "4974", null, "174937", null, "5971", null, "105687", null, "4685", null, "79059", null, "4901", null, "20725", null, "3023", null, "58334", null, "4189", null, "107455", null, "6415", null, "89904", null, "4735", null, "47325", null, "3650", null, "42037", null, "3411", null, "8768", null, "2152", null, "33269", null, "3151", null, "542", null, "446", null, "202297", null, "7601", null, "58362", null, "3823", null, "37022", null, "4571", null, "11957", null, "2739", null, "25065", null, "3408", null, "106913", null, "6325", null, "46645", null, "4508", null, "245556", null, "5783", null, "74777", null, "5268", null, "217424", null, "5998", null, "65697", null, "3908", null, "137066", null, "5203", null, "1670", null, "757", null, "20294", null, "2379", null, "-999999999", "N", "-999999999", "N", "36317", null, "4115", null, "31058", null, "3690", null, "64160", null, "4376", null, "59527", null, "3560", null, "76594", null, "4273", null, "184746", null, "5603", null, "20044", null, "2772", null, "62583", null, "5099", null, "102119", null, "5444", null, "-888888888", "(X)", "-888888888", "(X)", "40.1", null, "1.6", null, "59.9", null, "1.6", null, "36.2", null, "1.7", null, "27.1", null, "1.6", null, "7.1", null, "1.0", null, "20.0", null, "1.4", null, "36.8", null, "1.9", null, "30.8", null, "1.7", null, "16.2", null, "1.3", null, "14.4", null, "1.2", null, "3.0", null, "0.7", null, "11.4", null, "1.1", null, "0.2", null, "0.2", null, "69.2", null, "1.7", null, "20.0", null, "1.3", null, "12.7", null, "1.5", null, "4.1", null, "0.9", null, "8.6", null, "1.1", null, "36.6", null, "1.8", null, "16.0", null, "1.4", null, "84.0", null, "1.4", null, "25.6", null, "1.6", null, "74.4", null, "1.6", null, "22.5", null, "1.2", null, "46.9", null, "1.6", null, "0.6", null, "0.3", null, "6.9", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "12.4", null, "1.4", null, "10.6", null, "1.2", null, "22.0", null, "1.4", null, "20.4", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.8", null, "1.4", null, "33.9", null, "2.5", null, "55.3", null, "2.6", null, "52703", null, "4562", null, "21499", null, "3076", null, "31204", null, "4317", null, "9890", null, "1930", null, "23768", null, "3421", null, "4300", null, "1478", null, "19468", null, "3407", null, "19045", null, "2733", null, "23724", null, "3529", null, "6776", null, "1800", null, "16948", null, "2991", null, "2226", null, "980", null, "14722", null, "2822", null, "0", null, "226", null, "28979", null, "3371", null, "3114", null, "1106", null, "6820", null, "1690", null, "2074", null, "1246", null, "4746", null, "1348", null, "19045", null, "2733", null, "23574", null, "3077", null, "29129", null, "3582", null, "20908", null, "3031", null, "31795", null, "4447", null, "5379", null, "1419", null, "28727", null, "3628", null, "478", null, "456", null, "2428", null, "1124", null, "-999999999", "N", "-999999999", "N", "9308", null, "2319", null, "6284", null, "1656", null, "16206", null, "2729", null, "3777", null, "1207", null, "26656", null, "3882", null, "33658", null, "3931", null, "5197", null, "1379", null, "16276", null, "2701", null, "12185", null, "2550", null, "18.0", null, "1.5", null, "40.8", null, "5.4", null, "59.2", null, "5.4", null, "18.8", null, "3.1", null, "45.1", null, "5.1", null, "8.2", null, "2.8", null, "36.9", null, "5.4", null, "36.1", null, "4.5", null, "45.0", null, "5.0", null, "12.9", null, "3.1", null, "32.2", null, "4.7", null, "4.2", null, "1.9", null, "27.9", null, "4.5", null, "0.0", null, "0.4", null, "55.0", null, "5.0", null, "5.9", null, "2.1", null, "12.9", null, "3.1", null, "3.9", null, "2.3", null, "9.0", null, "2.5", null, "36.1", null, "4.5", null, "44.7", null, "4.6", null, "55.3", null, "4.6", null, "39.7", null, "5.5", null, "60.3", null, "5.5", null, "10.2", null, "2.5", null, "54.5", null, "5.5", null, "0.9", null, "0.9", null, "4.6", null, "2.1", null, "-999999999.0", "N", "-999999999.0", "N", "17.7", null, "4.0", null, "11.9", null, "3.0", null, "30.7", null, "4.4", null, "7.2", null, "2.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.4", null, "4.2", null, "48.4", null, "5.8", null, "36.2", null, "5.6", null, "239498", null, "6474", null, "95765", null, "4425", null, "143733", null, "5942", null, "95797", null, "4567", null, "55291", null, "4425", null, "16425", null, "2643", null, "38866", null, "3743", null, "88410", null, "5857", null, "66180", null, "4626", null, "40549", null, "3745", null, "25089", null, "3144", null, "6542", null, "1809", null, "18547", null, "2815", null, "542", null, "446", null, "173318", null, "6912", null, "55248", null, "3889", null, "30202", null, "4018", null, "9883", null, "2418", null, "20319", null, "3069", null, "87868", null, "5788", null, "23071", null, "3158", null, "216427", null, "6053", null, "53869", null, "4367", null, "185629", null, "6434", null, "60318", null, "3528", null, "108339", null, "5303", null, "1192", null, "604", null, "17866", null, "2105", null, "-999999999", "N", "-999999999", "N", "27009", null, "3753", null, "24774", null, "3501", null, "47954", null, "3895", null, "55750", null, "3220", null, "90794", null, "4138", null, "151088", null, "5424", null, "14847", null, "2638", null, "46307", null, "4450", null, "89934", null, "4912", null, "82.0", null, "1.5", null, "40.0", null, "1.7", null, "60.0", null, "1.7", null, "40.0", null, "2.0", null, "23.1", null, "1.6", null, "6.9", null, "1.1", null, "16.2", null, "1.4", null, "36.9", null, "2.0", null, "27.6", null, "1.9", null, "16.9", null, "1.6", null, "10.5", null, "1.3", null, "2.7", null, "0.7", null, "7.7", null, "1.2", null, "0.2", null, "0.2", null, "72.4", null, "1.9", null, "23.1", null, "1.7", null, "12.6", null, "1.6", null, "4.1", null, "1.0", null, "8.5", null, "1.2", null, "36.7", null, "2.0", null, "9.6", null, "1.2", null, "90.4", null, "1.2", null, "22.5", null, "1.7", null, "77.5", null, "1.7", null, "25.2", null, "1.3", null, "45.2", null, "1.8", null, "0.5", null, "0.3", null, "7.5", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "11.3", null, "1.5", null, "10.3", null, "1.4", null, "20.0", null, "1.5", null, "23.3", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "9.8", null, "1.7", null, "30.6", null, "2.7", null, "59.5", null, "2.9", null, "34", "10"], ["5001900US3411", "Congressional District 11 (119th Congress), New Jersey", "292757", null, "4788", null, "129411", null, "4034", null, "163346", null, "4669", null, "170367", null, "4529", null, "39003", null, "3641", null, "11617", null, "2036", null, "27386", null, "2991", null, "83387", null, "4801", null, "93016", null, "4375", null, "75151", null, "4316", null, "17436", null, "2675", null, "5443", null, "1563", null, "11993", null, "2095", null, "429", null, "317", null, "199741", null, "5524", null, "95216", null, "4327", null, "21567", null, "2827", null, "6174", null, "1498", null, "15393", null, "2324", null, "82958", null, "4795", null, "14950", null, "2382", null, "277807", null, "5036", null, "56182", null, "4349", null, "236575", null, "5425", null, "201628", null, "4816", null, "14827", null, "2291", null, "-999999999", "N", "-999999999", "N", "32992", null, "2170", null, "-999999999", "N", "-999999999", "N", "15547", null, "2491", null, "27461", null, "2635", null, "41723", null, "3230", null, "194963", null, "4796", null, "141429", null, "4611", null, "209370", null, "4932", null, "22353", null, "2303", null, "51497", null, "3719", null, "135520", null, "4532", null, "-888888888", "(X)", "-888888888", "(X)", "44.2", null, "1.2", null, "55.8", null, "1.2", null, "58.2", null, "1.5", null, "13.3", null, "1.2", null, "4.0", null, "0.7", null, "9.4", null, "1.0", null, "28.5", null, "1.5", null, "31.8", null, "1.4", null, "25.7", null, "1.5", null, "6.0", null, "0.9", null, "1.9", null, "0.5", null, "4.1", null, "0.7", null, "0.1", null, "0.1", null, "68.2", null, "1.4", null, "32.5", null, "1.5", null, "7.4", null, "0.9", null, "2.1", null, "0.5", null, "5.3", null, "0.8", null, "28.3", null, "1.5", null, "5.1", null, "0.8", null, "94.9", null, "0.8", null, "19.2", null, "1.4", null, "80.8", null, "1.4", null, "68.9", null, "1.1", null, "5.1", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "11.3", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "5.3", null, "0.8", null, "9.4", null, "0.9", null, "14.3", null, "1.1", null, "66.6", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.7", null, "1.1", null, "24.6", null, "1.6", null, "64.7", null, "1.7", null, "10354", null, "2064", null, "7014", null, "1642", null, "3340", null, "1067", null, "3259", null, "1229", null, "2435", null, "815", null, "431", null, "283", null, "2004", null, "710", null, "4660", null, "1369", null, "3128", null, "1115", null, "1672", null, "880", null, "1361", null, "614", null, "148", null, "172", null, "1213", null, "534", null, "95", null, "155", null, "7226", null, "1600", null, "1587", null, "734", null, "1074", null, "517", null, "283", null, "222", null, "791", null, "457", null, "4565", null, "1351", null, "2215", null, "802", null, "8139", null, "1844", null, "5310", null, "1322", null, "5044", null, "1459", null, "4949", null, "1393", null, "1087", null, "530", null, "-999999999", "N", "-999999999", "N", "1740", null, "717", null, "-999999999", "N", "-999999999", "N", "814", null, "501", null, "1764", null, "684", null, "2698", null, "1038", null, "4437", null, "1261", null, "52546", null, "13329", null, "5694", null, "1529", null, "909", null, "537", null, "1764", null, "684", null, "3021", null, "1121", null, "3.5", null, "0.7", null, "67.7", null, "8.1", null, "32.3", null, "8.1", null, "31.5", null, "9.0", null, "23.5", null, "7.6", null, "4.2", null, "2.5", null, "19.4", null, "7.0", null, "45.0", null, "9.9", null, "30.2", null, "8.3", null, "16.1", null, "6.9", null, "13.1", null, "5.9", null, "1.4", null, "1.6", null, "11.7", null, "5.3", null, "0.9", null, "1.5", null, "69.8", null, "8.3", null, "15.3", null, "6.7", null, "10.4", null, "4.9", null, "2.7", null, "2.1", null, "7.6", null, "4.4", null, "44.1", null, "9.6", null, "21.4", null, "6.9", null, "78.6", null, "6.9", null, "51.3", null, "9.0", null, "48.7", null, "9.0", null, "47.8", null, "9.3", null, "10.5", null, "4.7", null, "-999999999.0", "N", "-999999999.0", "N", "16.8", null, "6.0", null, "-999999999.0", "N", "-999999999.0", "N", "7.9", null, "4.5", null, "17.0", null, "6.2", null, "26.1", null, "8.0", null, "42.9", null, "9.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.0", null, "8.4", null, "31.0", null, "10.9", null, "53.1", null, "11.2", null, "282403", null, "4955", null, "122397", null, "4132", null, "160006", null, "4559", null, "167108", null, "4323", null, "36568", null, "3476", null, "11186", null, "1971", null, "25382", null, "2865", null, "78727", null, "4921", null, "89888", null, "4182", null, "73479", null, "4211", null, "16075", null, "2589", null, "5295", null, "1523", null, "10780", null, "2029", null, "334", null, "279", null, "192515", null, "5699", null, "93629", null, "4292", null, "20493", null, "2790", null, "5891", null, "1443", null, "14602", null, "2291", null, "78393", null, "4951", null, "12735", null, "2177", null, "269668", null, "5168", null, "50872", null, "4362", null, "231531", null, "5527", null, "196679", null, "4810", null, "13740", null, "2292", null, "-999999999", "N", "-999999999", "N", "31252", null, "2256", null, "-999999999", "N", "-999999999", "N", "14733", null, "2608", null, "25697", null, "2686", null, "39025", null, "3373", null, "190526", null, "4852", null, "144805", null, "5784", null, "203676", null, "4782", null, "21444", null, "2310", null, "49733", null, "3577", null, "132499", null, "4562", null, "96.5", null, "0.7", null, "43.3", null, "1.3", null, "56.7", null, "1.3", null, "59.2", null, "1.5", null, "12.9", null, "1.2", null, "4.0", null, "0.7", null, "9.0", null, "1.0", null, "27.9", null, "1.5", null, "31.8", null, "1.5", null, "26.0", null, "1.5", null, "5.7", null, "0.9", null, "1.9", null, "0.5", null, "3.8", null, "0.7", null, "0.1", null, "0.1", null, "68.2", null, "1.5", null, "33.2", null, "1.5", null, "7.3", null, "1.0", null, "2.1", null, "0.5", null, "5.2", null, "0.8", null, "27.8", null, "1.6", null, "4.5", null, "0.8", null, "95.5", null, "0.8", null, "18.0", null, "1.5", null, "82.0", null, "1.5", null, "69.6", null, "1.2", null, "4.9", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "11.1", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "5.2", null, "0.9", null, "9.1", null, "0.9", null, "13.8", null, "1.2", null, "67.5", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.5", null, "1.1", null, "24.4", null, "1.6", null, "65.1", null, "1.7", null, "34", "11"], ["5001900US3412", "Congressional District 12 (119th Congress), New Jersey", "286900", null, "4869", null, "125774", null, "4432", null, "161126", null, "4823", null, "150150", null, "5026", null, "53086", null, "4395", null, "13362", null, "2242", null, "39724", null, "3512", null, "83664", null, "5837", null, "97484", null, "4357", null, "66670", null, "3450", null, "30389", null, "3797", null, "7220", null, "1863", null, "23169", null, "3158", null, "425", null, "390", null, "189416", null, "6550", null, "83480", null, "5007", null, "22697", null, "2929", null, "6142", null, "1463", null, "16555", null, "2288", null, "83239", null, "5832", null, "25116", null, "3003", null, "261784", null, "5323", null, "64043", null, "4262", null, "222857", null, "5457", null, "131285", null, "4444", null, "46433", null, "3490", null, "2111", null, "1087", null, "56350", null, "3248", null, "-999999999", "N", "-999999999", "N", "30953", null, "3268", null, "19632", null, "2719", null, "48765", null, "2870", null, "127538", null, "4421", null, "117099", null, "4211", null, "203236", null, "5105", null, "19676", null, "1989", null, "56938", null, "4041", null, "126622", null, "4544", null, "-888888888", "(X)", "-888888888", "(X)", "43.8", null, "1.4", null, "56.2", null, "1.4", null, "52.3", null, "1.9", null, "18.5", null, "1.5", null, "4.7", null, "0.8", null, "13.8", null, "1.2", null, "29.2", null, "1.8", null, "34.0", null, "1.6", null, "23.2", null, "1.3", null, "10.6", null, "1.3", null, "2.5", null, "0.6", null, "8.1", null, "1.1", null, "0.1", null, "0.1", null, "66.0", null, "1.6", null, "29.1", null, "1.7", null, "7.9", null, "1.0", null, "2.1", null, "0.5", null, "5.8", null, "0.8", null, "29.0", null, "1.8", null, "8.8", null, "1.0", null, "91.2", null, "1.0", null, "22.3", null, "1.4", null, "77.7", null, "1.4", null, "45.8", null, "1.3", null, "16.2", null, "1.1", null, "0.7", null, "0.4", null, "19.6", null, "1.2", null, "-999999999.0", "N", "-999999999.0", "N", "10.8", null, "1.1", null, "6.8", null, "0.9", null, "17.0", null, "0.9", null, "44.5", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "9.7", null, "1.0", null, "28.0", null, "1.8", null, "62.3", null, "1.8", null, "19829", null, "2850", null, "10422", null, "1816", null, "9407", null, "2334", null, "2759", null, "820", null, "9878", null, "2041", null, "2040", null, "867", null, "7838", null, "1914", null, "7192", null, "1586", null, "8388", null, "1829", null, "1496", null, "520", null, "6639", null, "1733", null, "1137", null, "658", null, "5502", null, "1666", null, "253", null, "268", null, "11441", null, "1906", null, "1263", null, "644", null, "3239", null, "1180", null, "903", null, "707", null, "2336", null, "919", null, "6939", null, "1585", null, "8796", null, "1839", null, "11033", null, "2150", null, "9336", null, "1930", null, "10493", null, "2243", null, "5179", null, "1365", null, "6660", null, "2022", null, "860", null, "624", null, "1632", null, "694", null, "-999999999", "N", "-999999999", "N", "4560", null, "1340", null, "938", null, "511", null, "6175", null, "1388", null, "5179", null, "1365", null, "25487", null, "4891", null, "12637", null, "2287", null, "2895", null, "1128", null, "6213", null, "1517", null, "3529", null, "1247", null, "6.9", null, "1.0", null, "52.6", null, "7.8", null, "47.4", null, "7.8", null, "13.9", null, "3.9", null, "49.8", null, "6.4", null, "10.3", null, "4.4", null, "39.5", null, "6.5", null, "36.3", null, "6.4", null, "42.3", null, "6.2", null, "7.5", null, "2.6", null, "33.5", null, "6.2", null, "5.7", null, "3.3", null, "27.7", null, "6.2", null, "1.3", null, "1.3", null, "57.7", null, "6.2", null, "6.4", null, "3.1", null, "16.3", null, "5.7", null, "4.6", null, "3.5", null, "11.8", null, "4.5", null, "35.0", null, "6.5", null, "44.4", null, "7.0", null, "55.6", null, "7.0", null, "47.1", null, "7.7", null, "52.9", null, "7.7", null, "26.1", null, "6.3", null, "33.6", null, "7.9", null, "4.3", null, "3.0", null, "8.2", null, "3.6", null, "-999999999.0", "N", "-999999999.0", "N", "23.0", null, "6.1", null, "4.7", null, "2.6", null, "31.1", null, "5.8", null, "26.1", null, "6.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "22.9", null, "7.7", null, "49.2", null, "8.9", null, "27.9", null, "8.3", null, "267071", null, "4715", null, "115352", null, "4255", null, "151719", null, "4652", null, "147391", null, "4864", null, "43208", null, "4072", null, "11322", null, "2179", null, "31886", null, "3203", null, "76472", null, "5268", null, "89096", null, "4147", null, "65174", null, "3529", null, "23750", null, "3361", null, "6083", null, "1764", null, "17667", null, "2706", null, "172", null, "217", null, "177975", null, "6031", null, "82217", null, "4903", null, "19458", null, "2701", null, "5239", null, "1316", null, "14219", null, "2272", null, "76300", null, "5267", null, "16320", null, "2499", null, "250751", null, "5281", null, "54707", null, "4119", null, "212364", null, "5317", null, "126106", null, "4403", null, "39773", null, "3646", null, "1251", null, "723", null, "54718", null, "3065", null, "-999999999", "N", "-999999999", "N", "26393", null, "2921", null, "18694", null, "2596", null, "42590", null, "2873", null, "122359", null, "4428", null, "124024", null, "5318", null, "190599", null, "5127", null, "16781", null, "1864", null, "50725", null, "4001", null, "123093", null, "4414", null, "93.1", null, "1.0", null, "43.2", null, "1.4", null, "56.8", null, "1.4", null, "55.2", null, "1.8", null, "16.2", null, "1.5", null, "4.2", null, "0.8", null, "11.9", null, "1.2", null, "28.6", null, "1.8", null, "33.4", null, "1.6", null, "24.4", null, "1.4", null, "8.9", null, "1.2", null, "2.3", null, "0.7", null, "6.6", null, "1.0", null, "0.1", null, "0.1", null, "66.6", null, "1.6", null, "30.8", null, "1.8", null, "7.3", null, "1.0", null, "2.0", null, "0.5", null, "5.3", null, "0.8", null, "28.6", null, "1.8", null, "6.1", null, "0.9", null, "93.9", null, "0.9", null, "20.5", null, "1.5", null, "79.5", null, "1.5", null, "47.2", null, "1.4", null, "14.9", null, "1.3", null, "0.5", null, "0.3", null, "20.5", null, "1.2", null, "-999999999.0", "N", "-999999999.0", "N", "9.9", null, "1.1", null, "7.0", null, "1.0", null, "15.9", null, "1.0", null, "45.8", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "8.8", null, "1.0", null, "26.6", null, "1.8", null, "64.6", null, "1.8", null, "34", "12"], ["5001900US3501", "Congressional District 1 (119th Congress), New Mexico", "305491", null, "5082", null, "139884", null, "4208", null, "165607", null, "5285", null, "120243", null, "5098", null, "54064", null, "3970", null, "20146", null, "3067", null, "33918", null, "3374", null, "131184", null, "4923", null, "72377", null, "4774", null, "41601", null, "3555", null, "30567", null, "3631", null, "11579", null, "2623", null, "18988", null, "2959", null, "209", null, "238", null, "233114", null, "6226", null, "78642", null, "4275", null, "23497", null, "2639", null, "8567", null, "1931", null, "14930", null, "1905", null, "130975", null, "4895", null, "39434", null, "3548", null, "266057", null, "5764", null, "94353", null, "4303", null, "211138", null, "5773", null, "188328", null, "5217", null, "8668", null, "1601", null, "12790", null, "1885", null, "9705", null, "1269", null, "-999999999", "N", "-999999999", "N", "27431", null, "3384", null, "58511", null, "4888", null, "113414", null, "4781", null, "153438", null, "4133", null, "77246", null, "3624", null, "174307", null, "4890", null, "30991", null, "2632", null, "60788", null, "4501", null, "82528", null, "3917", null, "-888888888", "(X)", "-888888888", "(X)", "45.8", null, "1.3", null, "54.2", null, "1.3", null, "39.4", null, "1.6", null, "17.7", null, "1.3", null, "6.6", null, "1.0", null, "11.1", null, "1.1", null, "42.9", null, "1.4", null, "23.7", null, "1.5", null, "13.6", null, "1.1", null, "10.0", null, "1.2", null, "3.8", null, "0.9", null, "6.2", null, "1.0", null, "0.1", null, "0.1", null, "76.3", null, "1.5", null, "25.7", null, "1.4", null, "7.7", null, "0.9", null, "2.8", null, "0.6", null, "4.9", null, "0.6", null, "42.9", null, "1.4", null, "12.9", null, "1.1", null, "87.1", null, "1.1", null, "30.9", null, "1.4", null, "69.1", null, "1.4", null, "61.6", null, "1.7", null, "2.8", null, "0.5", null, "4.2", null, "0.6", null, "3.2", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "9.0", null, "1.1", null, "19.2", null, "1.5", null, "37.1", null, "1.3", null, "50.2", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.8", null, "1.5", null, "34.9", null, "2.2", null, "47.3", null, "2.1", null, "48825", null, "3641", null, "20943", null, "2300", null, "27882", null, "2995", null, "11596", null, "2280", null, "17849", null, "2000", null, "5942", null, "1514", null, "11907", null, "1974", null, "19380", null, "2601", null, "17560", null, "2370", null, "6952", null, "1821", null, "10469", null, "1904", null, "3376", null, "1376", null, "7093", null, "1464", null, "139", null, "207", null, "31265", null, "3066", null, "4644", null, "1338", null, "7380", null, "1499", null, "2566", null, "969", null, "4814", null, "1325", null, "19241", null, "2582", null, "17538", null, "2054", null, "31287", null, "3150", null, "24602", null, "2660", null, "24223", null, "3277", null, "24937", null, "2847", null, "1862", null, "859", null, "3102", null, "1052", null, "989", null, "499", null, "-999999999", "N", "-999999999", "N", "6287", null, "1360", null, "11590", null, "2336", null, "24952", null, "2888", null, "17255", null, "2251", null, "38367", null, "5826", null, "29445", null, "2766", null, "4473", null, "1105", null, "14084", null, "2144", null, "10888", null, "2294", null, "16.0", null, "1.2", null, "42.9", null, "3.9", null, "57.1", null, "3.9", null, "23.8", null, "4.3", null, "36.6", null, "3.6", null, "12.2", null, "3.2", null, "24.4", null, "3.6", null, "39.7", null, "4.1", null, "36.0", null, "4.1", null, "14.2", null, "3.4", null, "21.4", null, "3.8", null, "6.9", null, "2.8", null, "14.5", null, "2.9", null, "0.3", null, "0.4", null, "64.0", null, "4.1", null, "9.5", null, "2.8", null, "15.1", null, "2.9", null, "5.3", null, "2.0", null, "9.9", null, "2.5", null, "39.4", null, "4.0", null, "35.9", null, "3.7", null, "64.1", null, "3.7", null, "50.4", null, "4.8", null, "49.6", null, "4.8", null, "51.1", null, "4.7", null, "3.8", null, "1.8", null, "6.4", null, "2.1", null, "2.0", null, "1.0", null, "-999999999.0", "N", "-999999999.0", "N", "12.9", null, "2.7", null, "23.7", null, "4.2", null, "51.1", null, "4.4", null, "35.3", null, "4.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.2", null, "3.6", null, "47.8", null, "6.3", null, "37.0", null, "6.4", null, "256666", null, "6222", null, "118941", null, "3924", null, "137725", null, "5649", null, "108647", null, "5146", null, "36215", null, "3551", null, "14204", null, "2624", null, "22011", null, "2893", null, "111804", null, "4995", null, "54817", null, "4256", null, "34649", null, "3300", null, "20098", null, "2920", null, "8203", null, "2171", null, "11895", null, "2564", null, "70", null, "118", null, "201849", null, "6354", null, "73998", null, "4298", null, "16117", null, "2127", null, "6001", null, "1625", null, "10116", null, "1464", null, "111734", null, "4989", null, "21896", null, "2637", null, "234770", null, "6478", null, "69751", null, "4176", null, "186915", null, "6367", null, "163391", null, "5731", null, "6806", null, "1430", null, "9688", null, "1758", null, "8716", null, "1337", null, "-999999999", "N", "-999999999", "N", "21144", null, "3180", null, "46921", null, "4064", null, "88462", null, "5004", null, "136183", null, "4540", null, "85480", null, "3620", null, "144862", null, "5078", null, "26518", null, "2551", null, "46704", null, "4036", null, "71640", null, "3868", null, "84.0", null, "1.2", null, "46.3", null, "1.4", null, "53.7", null, "1.4", null, "42.3", null, "1.7", null, "14.1", null, "1.4", null, "5.5", null, "1.0", null, "8.6", null, "1.1", null, "43.6", null, "1.5", null, "21.4", null, "1.6", null, "13.5", null, "1.2", null, "7.8", null, "1.1", null, "3.2", null, "0.8", null, "4.6", null, "1.0", null, "0.0", null, "0.1", null, "78.6", null, "1.6", null, "28.8", null, "1.5", null, "6.3", null, "0.8", null, "2.3", null, "0.6", null, "3.9", null, "0.6", null, "43.5", null, "1.5", null, "8.5", null, "1.0", null, "91.5", null, "1.0", null, "27.2", null, "1.6", null, "72.8", null, "1.6", null, "63.7", null, "1.7", null, "2.7", null, "0.6", null, "3.8", null, "0.7", null, "3.4", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "8.2", null, "1.2", null, "18.3", null, "1.5", null, "34.5", null, "1.6", null, "53.1", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.3", null, "1.6", null, "32.2", null, "2.4", null, "49.5", null, "2.4", null, "35", "01"], ["5001900US3502", "Congressional District 2 (119th Congress), New Mexico", "264996", null, "5828", null, "117893", null, "3931", null, "147103", null, "4863", null, "111371", null, "5003", null, "60195", null, "4894", null, "20922", null, "3224", null, "39273", null, "3650", null, "93430", null, "5950", null, "73122", null, "4917", null, "38540", null, "3194", null, "34485", null, "4122", null, "10488", null, "2368", null, "23997", null, "3373", null, "97", null, "117", null, "191874", null, "6015", null, "72831", null, "4433", null, "25710", null, "3508", null, "10434", null, "2229", null, "15276", null, "2157", null, "93333", null, "5947", null, "49957", null, "4984", null, "215039", null, "6991", null, "91237", null, "5374", null, "173759", null, "5420", null, "123885", null, "4899", null, "6672", null, "1783", null, "13174", null, "1825", null, "2689", null, "947", null, "-999999999", "N", "-999999999", "N", "42496", null, "4356", null, "76080", null, "4601", null, "142457", null, "4918", null, "96141", null, "3824", null, "60933", null, "2047", null, "171566", null, "6129", null, "38148", null, "3062", null, "58313", null, "3622", null, "75105", null, "3864", null, "-888888888", "(X)", "-888888888", "(X)", "44.5", null, "1.2", null, "55.5", null, "1.2", null, "42.0", null, "1.8", null, "22.7", null, "1.7", null, "7.9", null, "1.2", null, "14.8", null, "1.4", null, "35.3", null, "2.0", null, "27.6", null, "1.7", null, "14.5", null, "1.2", null, "13.0", null, "1.5", null, "4.0", null, "0.9", null, "9.1", null, "1.3", null, "0.0", null, "0.1", null, "72.4", null, "1.7", null, "27.5", null, "1.7", null, "9.7", null, "1.3", null, "3.9", null, "0.8", null, "5.8", null, "0.8", null, "35.2", null, "2.0", null, "18.9", null, "1.9", null, "81.1", null, "1.9", null, "34.4", null, "1.7", null, "65.6", null, "1.7", null, "46.7", null, "1.5", null, "2.5", null, "0.7", null, "5.0", null, "0.7", null, "1.0", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "16.0", null, "1.6", null, "28.7", null, "1.7", null, "53.8", null, "1.4", null, "36.3", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "22.2", null, "1.6", null, "34.0", null, "1.7", null, "43.8", null, "1.7", null, "60378", null, "4607", null, "22449", null, "2769", null, "37929", null, "3402", null, "15826", null, "2495", null, "25448", null, "3622", null, "6277", null, "2090", null, "19171", null, "2890", null, "19104", null, "2670", null, "27253", null, "3115", null, "10235", null, "1963", null, "16977", null, "2776", null, "3382", null, "1428", null, "13595", null, "2402", null, "41", null, "65", null, "33125", null, "3540", null, "5591", null, "1428", null, "8471", null, "1936", null, "2895", null, "1417", null, "5576", null, "1246", null, "19063", null, "2676", null, "27353", null, "3494", null, "33025", null, "3310", null, "27703", null, "3026", null, "32675", null, "3499", null, "22468", null, "2602", null, "2397", null, "1280", null, "4778", null, "1262", null, "140", null, "183", null, "-999999999", "N", "-999999999", "N", "10199", null, "2180", null, "20396", null, "2855", null, "38477", null, "3753", null, "15075", null, "2332", null, "27228", null, "3163", null, "41274", null, "3923", null, "9366", null, "1992", null, "16838", null, "2423", null, "15070", null, "2568", null, "22.8", null, "1.7", null, "37.2", null, "3.4", null, "62.8", null, "3.4", null, "26.2", null, "3.9", null, "42.1", null, "4.7", null, "10.4", null, "3.2", null, "31.8", null, "4.2", null, "31.6", null, "3.8", null, "45.1", null, "4.0", null, "17.0", null, "3.2", null, "28.1", null, "3.9", null, "5.6", null, "2.3", null, "22.5", null, "3.5", null, "0.1", null, "0.1", null, "54.9", null, "4.0", null, "9.3", null, "2.3", null, "14.0", null, "2.9", null, "4.8", null, "2.2", null, "9.2", null, "2.0", null, "31.6", null, "3.8", null, "45.3", null, "4.2", null, "54.7", null, "4.2", null, "45.9", null, "3.8", null, "54.1", null, "3.8", null, "37.2", null, "3.8", null, "4.0", null, "2.0", null, "7.9", null, "2.0", null, "0.2", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "16.9", null, "3.4", null, "33.8", null, "3.8", null, "63.7", null, "3.5", null, "25.0", null, "3.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "22.7", null, "4.2", null, "40.8", null, "4.9", null, "36.5", null, "5.0", null, "204618", null, "6357", null, "95444", null, "3336", null, "109174", null, "5695", null, "95545", null, "5131", null, "34747", null, "3894", null, "14645", null, "2935", null, "20102", null, "2492", null, "74326", null, "5523", null, "45869", null, "3461", null, "28305", null, "2668", null, "17508", null, "2770", null, "7106", null, "1740", null, "10402", null, "2280", null, "56", null, "103", null, "158749", null, "6250", null, "67240", null, "4315", null, "17239", null, "3097", null, "7539", null, "2071", null, "9700", null, "1665", null, "74270", null, "5498", null, "22604", null, "3235", null, "182014", null, "6526", null, "63534", null, "5003", null, "141084", null, "5329", null, "101417", null, "4636", null, "4275", null, "1444", null, "8396", null, "1541", null, "2549", null, "961", null, "-999999999", "N", "-999999999", "N", "32297", null, "3997", null, "55684", null, "4422", null, "103980", null, "5233", null, "81066", null, "3625", null, "70497", null, "3038", null, "130292", null, "5602", null, "28782", null, "2663", null, "41475", null, "3180", null, "60035", null, "3760", null, "77.2", null, "1.7", null, "46.6", null, "1.6", null, "53.4", null, "1.6", null, "46.7", null, "2.3", null, "17.0", null, "1.8", null, "7.2", null, "1.4", null, "9.8", null, "1.2", null, "36.3", null, "2.3", null, "22.4", null, "1.6", null, "13.8", null, "1.3", null, "8.6", null, "1.3", null, "3.5", null, "0.8", null, "5.1", null, "1.1", null, "0.0", null, "0.1", null, "77.6", null, "1.6", null, "32.9", null, "2.0", null, "8.4", null, "1.5", null, "3.7", null, "1.0", null, "4.7", null, "0.8", null, "36.3", null, "2.2", null, "11.0", null, "1.5", null, "89.0", null, "1.5", null, "31.1", null, "2.0", null, "68.9", null, "2.0", null, "49.6", null, "2.0", null, "2.1", null, "0.7", null, "4.1", null, "0.7", null, "1.2", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "15.8", null, "1.8", null, "27.2", null, "2.0", null, "50.8", null, "1.7", null, "39.6", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "22.1", null, "1.8", null, "31.8", null, "2.1", null, "46.1", null, "2.0", null, "35", "02"], ["5001900US3503", "Congressional District 3 (119th Congress), New Mexico", "286483", null, "3825", null, "138442", null, "3497", null, "148041", null, "4030", null, "115518", null, "3857", null, "60939", null, "4162", null, "21705", null, "2803", null, "39234", null, "3350", null, "110026", null, "4408", null, "80047", null, "4047", null, "43779", null, "3295", null, "35782", null, "3796", null, "12080", null, "2405", null, "23702", null, "3007", null, "486", null, "406", null, "206436", null, "4756", null, "71739", null, "3098", null, "25157", null, "2342", null, "9625", null, "1622", null, "15532", null, "1793", null, "109540", null, "4478", null, "53894", null, "3415", null, "232589", null, "4641", null, "96670", null, "4570", null, "189813", null, "5175", null, "147305", null, "4399", null, "2898", null, "731", null, "41459", null, "2175", null, "3736", null, "1084", null, "-999999999", "N", "-999999999", "N", "32526", null, "2653", null, "58289", null, "4477", null, "110427", null, "3302", null, "121182", null, "3053", null, "66346", null, "2007", null, "176457", null, "4063", null, "34598", null, "2735", null, "64020", null, "3612", null, "77839", null, "3479", null, "-888888888", "(X)", "-888888888", "(X)", "48.3", null, "1.1", null, "51.7", null, "1.1", null, "40.3", null, "1.3", null, "21.3", null, "1.4", null, "7.6", null, "1.0", null, "13.7", null, "1.2", null, "38.4", null, "1.3", null, "27.9", null, "1.4", null, "15.3", null, "1.1", null, "12.5", null, "1.3", null, "4.2", null, "0.8", null, "8.3", null, "1.1", null, "0.2", null, "0.1", null, "72.1", null, "1.4", null, "25.0", null, "1.1", null, "8.8", null, "0.8", null, "3.4", null, "0.6", null, "5.4", null, "0.6", null, "38.2", null, "1.4", null, "18.8", null, "1.2", null, "81.2", null, "1.2", null, "33.7", null, "1.5", null, "66.3", null, "1.5", null, "51.4", null, "1.4", null, "1.0", null, "0.3", null, "14.5", null, "0.7", null, "1.3", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "11.4", null, "0.9", null, "20.3", null, "1.6", null, "38.5", null, "1.0", null, "42.3", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "19.6", null, "1.4", null, "36.3", null, "1.8", null, "44.1", null, "1.9", null, "56364", null, "3804", null, "21906", null, "2537", null, "34458", null, "2935", null, "12562", null, "2007", null, "23688", null, "2220", null, "6722", null, "1175", null, "16966", null, "1983", null, "20114", null, "2563", null, "24428", null, "2442", null, "7936", null, "1602", null, "16079", null, "2226", null, "4546", null, "1094", null, "11533", null, "1979", null, "413", null, "420", null, "31936", null, "3274", null, "4626", null, "1214", null, "7609", null, "1293", null, "2176", null, "716", null, "5433", null, "1020", null, "19701", null, "2515", null, "27447", null, "2673", null, "28917", null, "3279", null, "28431", null, "3162", null, "27933", null, "2652", null, "19445", null, "2662", null, "718", null, "440", null, "14334", null, "1201", null, "254", null, "273", null, "-999999999", "N", "-999999999", "N", "8859", null, "1718", null, "12723", null, "2437", null, "27569", null, "2852", null, "12824", null, "1820", null, "27784", null, "4377", null, "36250", null, "2796", null, "8094", null, "1517", null, "16108", null, "2025", null, "12048", null, "1743", null, "19.7", null, "1.3", null, "38.9", null, "3.5", null, "61.1", null, "3.5", null, "22.3", null, "3.1", null, "42.0", null, "3.6", null, "11.9", null, "2.0", null, "30.1", null, "3.5", null, "35.7", null, "3.4", null, "43.3", null, "3.7", null, "14.1", null, "2.7", null, "28.5", null, "3.9", null, "8.1", null, "1.9", null, "20.5", null, "3.5", null, "0.7", null, "0.7", null, "56.7", null, "3.7", null, "8.2", null, "2.0", null, "13.5", null, "2.2", null, "3.9", null, "1.2", null, "9.6", null, "1.8", null, "35.0", null, "3.4", null, "48.7", null, "4.1", null, "51.3", null, "4.1", null, "50.4", null, "3.9", null, "49.6", null, "3.9", null, "34.5", null, "3.8", null, "1.3", null, "0.8", null, "25.4", null, "2.4", null, "0.5", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "15.7", null, "3.0", null, "22.6", null, "3.7", null, "48.9", null, "3.2", null, "22.8", null, "2.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "22.3", null, "4.1", null, "44.4", null, "4.1", null, "33.2", null, "3.9", null, "230119", null, "5125", null, "116536", null, "3530", null, "113583", null, "4034", null, "102956", null, "3708", null, "37251", null, "3180", null, "14983", null, "2404", null, "22268", null, "2571", null, "89912", null, "4266", null, "55619", null, "3568", null, "35843", null, "2741", null, "19703", null, "2946", null, "7534", null, "2018", null, "12169", null, "2127", null, "73", null, "83", null, "174500", null, "4735", null, "67113", null, "3136", null, "17548", null, "2059", null, "7449", null, "1483", null, "10099", null, "1616", null, "89839", null, "4264", null, "26447", null, "2950", null, "203672", null, "5248", null, "68239", null, "3876", null, "161880", null, "5218", null, "127860", null, "4300", null, "2180", null, "718", null, "27125", null, "2022", null, "3482", null, "1089", null, "-999999999", "N", "-999999999", "N", "23667", null, "2472", null, "45566", null, "4044", null, "82858", null, "3996", null, "108358", null, "3353", null, "77243", null, "2443", null, "140207", null, "4077", null, "26504", null, "2322", null, "47912", null, "3382", null, "65791", null, "3543", null, "80.3", null, "1.3", null, "50.6", null, "1.2", null, "49.4", null, "1.2", null, "44.7", null, "1.4", null, "16.2", null, "1.4", null, "6.5", null, "1.1", null, "9.7", null, "1.1", null, "39.1", null, "1.5", null, "24.2", null, "1.4", null, "15.6", null, "1.1", null, "8.6", null, "1.3", null, "3.3", null, "0.9", null, "5.3", null, "0.9", null, "0.0", null, "0.1", null, "75.8", null, "1.4", null, "29.2", null, "1.4", null, "7.6", null, "0.9", null, "3.2", null, "0.7", null, "4.4", null, "0.7", null, "39.0", null, "1.5", null, "11.5", null, "1.2", null, "88.5", null, "1.2", null, "29.7", null, "1.6", null, "70.3", null, "1.6", null, "55.6", null, "1.7", null, "0.9", null, "0.3", null, "11.8", null, "0.8", null, "1.5", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "10.3", null, "1.0", null, "19.8", null, "1.7", null, "36.0", null, "1.4", null, "47.1", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.9", null, "1.6", null, "34.2", null, "2.1", null, "46.9", null, "2.2", null, "35", "03"], ["5001900US3601", "Congressional District 1 (119th Congress), New York", "272652", null, "5112", null, "148161", null, "4132", null, "124491", null, "4488", null, "156705", null, "4239", null, "39326", null, "3430", null, "10304", null, "1956", null, "29022", null, "2940", null, "76621", null, "4436", null, "75874", null, "3866", null, "57452", null, "3099", null, "16851", null, "2289", null, "3751", null, "1168", null, "13100", null, "1892", null, "1571", null, "927", null, "196778", null, "6203", null, "99253", null, "3649", null, "22475", null, "2868", null, "6553", null, "1538", null, "15922", null, "2248", null, "75050", null, "4466", null, "19043", null, "2193", null, "253609", null, "5308", null, "64236", null, "3895", null, "208416", null, "5131", null, "219304", null, "4909", null, "9439", null, "2187", null, "865", null, "513", null, "12150", null, "1177", null, "-999999999", "N", "-999999999", "N", "9260", null, "1789", null, "21531", null, "2231", null, "29518", null, "2990", null, "214167", null, "4881", null, "130141", null, "4447", null, "196031", null, "4615", null, "31209", null, "2687", null, "51288", null, "3515", null, "113534", null, "4141", null, "-888888888", "(X)", "-888888888", "(X)", "54.3", null, "1.3", null, "45.7", null, "1.3", null, "57.5", null, "1.5", null, "14.4", null, "1.2", null, "3.8", null, "0.7", null, "10.6", null, "1.0", null, "28.1", null, "1.4", null, "27.8", null, "1.5", null, "21.1", null, "1.2", null, "6.2", null, "0.8", null, "1.4", null, "0.4", null, "4.8", null, "0.7", null, "0.6", null, "0.3", null, "72.2", null, "1.5", null, "36.4", null, "1.2", null, "8.2", null, "1.0", null, "2.4", null, "0.6", null, "5.8", null, "0.8", null, "27.5", null, "1.4", null, "7.0", null, "0.8", null, "93.0", null, "0.8", null, "23.6", null, "1.3", null, "76.4", null, "1.3", null, "80.4", null, "1.2", null, "3.5", null, "0.8", null, "0.3", null, "0.2", null, "4.5", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "3.4", null, "0.6", null, "7.9", null, "0.8", null, "10.8", null, "1.1", null, "78.5", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.9", null, "1.3", null, "26.2", null, "1.7", null, "57.9", null, "1.7", null, "16937", null, "2516", null, "8994", null, "1625", null, "7943", null, "1911", null, "4387", null, "1084", null, "6810", null, "1961", null, "1081", null, "760", null, "5729", null, "1865", null, "5740", null, "1568", null, "6685", null, "1769", null, "2252", null, "756", null, "4048", null, "1437", null, "339", null, "388", null, "3709", null, "1448", null, "385", null, "599", null, "10252", null, "1764", null, "2135", null, "767", null, "2762", null, "1197", null, "742", null, "540", null, "2020", null, "1021", null, "5355", null, "1199", null, "4851", null, "1227", null, "12086", null, "2033", null, "9538", null, "1776", null, "7399", null, "1627", null, "9404", null, "1711", null, "2447", null, "1234", null, "370", null, "372", null, "590", null, "248", null, "-999999999", "N", "-999999999", "N", "1651", null, "926", null, "2475", null, "982", null, "4070", null, "1301", null, "9153", null, "1720", null, "53525", null, "21628", null, "11197", null, "2303", null, "1436", null, "613", null, "4168", null, "1224", null, "5593", null, "1754", null, "6.2", null, "0.9", null, "53.1", null, "7.5", null, "46.9", null, "7.5", null, "25.9", null, "6.1", null, "40.2", null, "8.5", null, "6.4", null, "4.3", null, "33.8", null, "8.8", null, "33.9", null, "8.4", null, "39.5", null, "7.5", null, "13.3", null, "4.3", null, "23.9", null, "7.2", null, "2.0", null, "2.3", null, "21.9", null, "7.5", null, "2.3", null, "3.5", null, "60.5", null, "7.5", null, "12.6", null, "4.5", null, "16.3", null, "6.2", null, "4.4", null, "3.1", null, "11.9", null, "5.5", null, "31.6", null, "6.7", null, "28.6", null, "5.8", null, "71.4", null, "5.8", null, "56.3", null, "6.8", null, "43.7", null, "6.8", null, "55.5", null, "7.7", null, "14.4", null, "6.9", null, "2.2", null, "2.1", null, "3.5", null, "1.5", null, "-999999999.0", "N", "-999999999.0", "N", "9.7", null, "4.9", null, "14.6", null, "5.3", null, "24.0", null, "6.3", null, "54.0", null, "7.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.8", null, "5.0", null, "37.2", null, "9.9", null, "50.0", null, "9.3", null, "255715", null, "5244", null, "139167", null, "4010", null, "116548", null, "4110", null, "152318", null, "4066", null, "32516", null, "2944", null, "9223", null, "1818", null, "23293", null, "2557", null, "70881", null, "4547", null, "69189", null, "3362", null, "55200", null, "3060", null, "12803", null, "1995", null, "3412", null, "1163", null, "9391", null, "1493", null, "1186", null, "722", null, "186526", null, "6005", null, "97118", null, "3540", null, "19713", null, "2510", null, "5811", null, "1387", null, "13902", null, "2168", null, "69695", null, "4578", null, "14192", null, "1922", null, "241523", null, "5139", null, "54698", null, "3740", null, "201017", null, "5121", null, "209900", null, "4958", null, "6992", null, "1604", null, "495", null, "302", null, "11560", null, "1157", null, "-999999999", "N", "-999999999", "N", "7609", null, "1611", null, "19056", null, "2325", null, "25448", null, "2830", null, "205014", null, "4962", null, "135268", null, "6438", null, "184834", null, "4319", null, "29773", null, "2704", null, "47120", null, "3261", null, "107941", null, "3843", null, "93.8", null, "0.9", null, "54.4", null, "1.2", null, "45.6", null, "1.2", null, "59.6", null, "1.5", null, "12.7", null, "1.1", null, "3.6", null, "0.7", null, "9.1", null, "1.0", null, "27.7", null, "1.5", null, "27.1", null, "1.4", null, "21.6", null, "1.2", null, "5.0", null, "0.8", null, "1.3", null, "0.5", null, "3.7", null, "0.6", null, "0.5", null, "0.3", null, "72.9", null, "1.4", null, "38.0", null, "1.3", null, "7.7", null, "1.0", null, "2.3", null, "0.5", null, "5.4", null, "0.8", null, "27.3", null, "1.5", null, "5.5", null, "0.7", null, "94.5", null, "0.7", null, "21.4", null, "1.4", null, "78.6", null, "1.4", null, "82.1", null, "1.1", null, "2.7", null, "0.6", null, "0.2", null, "0.1", null, "4.5", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "3.0", null, "0.6", null, "7.5", null, "0.9", null, "10.0", null, "1.1", null, "80.2", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.1", null, "1.3", null, "25.5", null, "1.7", null, "58.4", null, "1.8", null, "36", "01"], ["5001900US3602", "Congressional District 2 (119th Congress), New York", "245583", null, "5055", null, "123523", null, "4821", null, "122060", null, "4180", null, "132041", null, "5295", null, "47660", null, "3280", null, "16566", null, "2387", null, "31094", null, "3068", null, "65882", null, "5288", null, "78837", null, "4304", null, "55004", null, "4048", null, "23051", null, "2626", null, "8041", null, "1796", null, "15010", null, "2253", null, "782", null, "556", null, "166746", null, "6000", null, "77037", null, "4229", null, "24609", null, "2195", null, "8525", null, "1477", null, "16084", null, "1777", null, "65100", null, "5230", null, "17055", null, "2425", null, "228528", null, "5012", null, "70451", null, "4214", null, "175132", null, "5618", null, "164819", null, "4983", null, "23656", null, "2376", null, "1147", null, "630", null, "7229", null, "1201", null, "-999999999", "N", "-999999999", "N", "28094", null, "2319", null, "20625", null, "2315", null, "51967", null, "2640", null, "157105", null, "4871", null, "125071", null, "4964", null, "179701", null, "4950", null, "17799", null, "1603", null, "41898", null, "3027", null, "120004", null, "4215", null, "-888888888", "(X)", "-888888888", "(X)", "50.3", null, "1.5", null, "49.7", null, "1.5", null, "53.8", null, "1.9", null, "19.4", null, "1.4", null, "6.7", null, "1.0", null, "12.7", null, "1.2", null, "26.8", null, "1.9", null, "32.1", null, "1.8", null, "22.4", null, "1.6", null, "9.4", null, "1.1", null, "3.3", null, "0.8", null, "6.1", null, "0.9", null, "0.3", null, "0.2", null, "67.9", null, "1.8", null, "31.4", null, "1.6", null, "10.0", null, "0.9", null, "3.5", null, "0.6", null, "6.5", null, "0.7", null, "26.5", null, "1.9", null, "6.9", null, "1.0", null, "93.1", null, "1.0", null, "28.7", null, "1.7", null, "71.3", null, "1.7", null, "67.1", null, "1.3", null, "9.6", null, "0.9", null, "0.5", null, "0.3", null, "2.9", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "11.4", null, "1.0", null, "8.4", null, "0.9", null, "21.2", null, "1.1", null, "64.0", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "9.9", null, "0.9", null, "23.3", null, "1.5", null, "66.8", null, "1.5", null, "28728", null, "2644", null, "16610", null, "2173", null, "12118", null, "1904", null, "10368", null, "1737", null, "11260", null, "1768", null, "3186", null, "1157", null, "8074", null, "1391", null, "7100", null, "1599", null, "13343", null, "1903", null, "6054", null, "1351", null, "7025", null, "1521", null, "2056", null, "1093", null, "4969", null, "1117", null, "264", null, "334", null, "15385", null, "1934", null, "4314", null, "1172", null, "4235", null, "1127", null, "1130", null, "615", null, "3105", null, "960", null, "6836", null, "1484", null, "5805", null, "1404", null, "22923", null, "2529", null, "16173", null, "2384", null, "12555", null, "1832", null, "10559", null, "1419", null, "6367", null, "1522", null, "339", null, "347", null, "761", null, "493", null, "-999999999", "N", "-999999999", "N", "6857", null, "1598", null, "3845", null, "1200", null, "11461", null, "1847", null, "9602", null, "1292", null, "73419", null, "12654", null, "21628", null, "2463", null, "1874", null, "787", null, "6715", null, "1446", null, "13039", null, "1925", null, "11.7", null, "1.1", null, "57.8", null, "5.4", null, "42.2", null, "5.4", null, "36.1", null, "4.9", null, "39.2", null, "5.1", null, "11.1", null, "3.9", null, "28.1", null, "4.2", null, "24.7", null, "5.1", null, "46.4", null, "4.8", null, "21.1", null, "4.2", null, "24.5", null, "4.7", null, "7.2", null, "3.7", null, "17.3", null, "3.6", null, "0.9", null, "1.2", null, "53.6", null, "4.8", null, "15.0", null, "3.8", null, "14.7", null, "3.8", null, "3.9", null, "2.1", null, "10.8", null, "3.2", null, "23.8", null, "4.7", null, "20.2", null, "4.6", null, "79.8", null, "4.6", null, "56.3", null, "5.7", null, "43.7", null, "5.7", null, "36.8", null, "4.8", null, "22.2", null, "4.3", null, "1.2", null, "1.2", null, "2.6", null, "1.7", null, "-999999999.0", "N", "-999999999.0", "N", "23.9", null, "5.0", null, "13.4", null, "4.0", null, "39.9", null, "5.2", null, "33.4", null, "4.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "8.7", null, "3.4", null, "31.0", null, "5.9", null, "60.3", null, "6.0", null, "216855", null, "5314", null, "106913", null, "5001", null, "109942", null, "4026", null, "121673", null, "5063", null, "36400", null, "3065", null, "13380", null, "1931", null, "23020", null, "2813", null, "58782", null, "4728", null, "65494", null, "4143", null, "48950", null, "3839", null, "16026", null, "2241", null, "5985", null, "1399", null, "10041", null, "1914", null, "518", null, "465", null, "151361", null, "5986", null, "72723", null, "4203", null, "20374", null, "2010", null, "7395", null, "1331", null, "12979", null, "1631", null, "58264", null, "4747", null, "11250", null, "2067", null, "205605", null, "4999", null, "54278", null, "3787", null, "162577", null, "5369", null, "154260", null, "4902", null, "17289", null, "2080", null, "808", null, "513", null, "6468", null, "1051", null, "-999999999", "N", "-999999999", "N", "21237", null, "2045", null, "16780", null, "2279", null, "40506", null, "2841", null, "147503", null, "4758", null, "130406", null, "5502", null, "158073", null, "4830", null, "15925", null, "1593", null, "35183", null, "2666", null, "106965", null, "4384", null, "88.3", null, "1.1", null, "49.3", null, "1.7", null, "50.7", null, "1.7", null, "56.1", null, "2.0", null, "16.8", null, "1.4", null, "6.2", null, "0.9", null, "10.6", null, "1.3", null, "27.1", null, "1.9", null, "30.2", null, "1.9", null, "22.6", null, "1.7", null, "7.4", null, "1.0", null, "2.8", null, "0.7", null, "4.6", null, "0.9", null, "0.2", null, "0.2", null, "69.8", null, "1.9", null, "33.5", null, "1.8", null, "9.4", null, "0.9", null, "3.4", null, "0.6", null, "6.0", null, "0.8", null, "26.9", null, "1.9", null, "5.2", null, "0.9", null, "94.8", null, "0.9", null, "25.0", null, "1.6", null, "75.0", null, "1.6", null, "71.1", null, "1.4", null, "8.0", null, "0.9", null, "0.4", null, "0.2", null, "3.0", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "9.8", null, "1.0", null, "7.7", null, "1.0", null, "18.7", null, "1.3", null, "68.0", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.1", null, "1.0", null, "22.3", null, "1.5", null, "67.7", null, "1.7", null, "36", "02"], ["5001900US3603", "Congressional District 3 (119th Congress), New York", "273834", null, "6074", null, "153390", null, "5383", null, "120444", null, "5013", null, "164380", null, "5335", null, "38966", null, "3959", null, "11788", null, "2085", null, "27178", null, "3377", null, "70488", null, "4943", null, "84447", null, "3976", null, "67045", null, "4188", null, "15850", null, "2319", null, "4671", null, "1146", null, "11179", null, "2064", null, "1552", null, "910", null, "189387", null, "6323", null, "97335", null, "3964", null, "23116", null, "3046", null, "7117", null, "1606", null, "15999", null, "2633", null, "68936", null, "4764", null, "19952", null, "2355", null, "253882", null, "5647", null, "70812", null, "4040", null, "203022", null, "6126", null, "167161", null, "5757", null, "10055", null, "1863", null, "-999999999", "N", "-999999999", "N", "60107", null, "3326", null, "-999999999", "N", "-999999999", "N", "16418", null, "2717", null, "19126", null, "2546", null, "34068", null, "3247", null, "162940", null, "5703", null, "138234", null, "6080", null, "203346", null, "4960", null, "26829", null, "2626", null, "55282", null, "3256", null, "121235", null, "4746", null, "-888888888", "(X)", "-888888888", "(X)", "56.0", null, "1.5", null, "44.0", null, "1.5", null, "60.0", null, "1.8", null, "14.2", null, "1.4", null, "4.3", null, "0.8", null, "9.9", null, "1.2", null, "25.7", null, "1.5", null, "30.8", null, "1.4", null, "24.5", null, "1.5", null, "5.8", null, "0.9", null, "1.7", null, "0.4", null, "4.1", null, "0.8", null, "0.6", null, "0.3", null, "69.2", null, "1.4", null, "35.5", null, "1.4", null, "8.4", null, "1.1", null, "2.6", null, "0.6", null, "5.8", null, "0.9", null, "25.2", null, "1.5", null, "7.3", null, "0.8", null, "92.7", null, "0.8", null, "25.9", null, "1.4", null, "74.1", null, "1.4", null, "61.0", null, "1.5", null, "3.7", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "22.0", null, "1.1", null, "-999999999.0", "N", "-999999999.0", "N", "6.0", null, "1.0", null, "7.0", null, "0.9", null, "12.4", null, "1.2", null, "59.5", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.2", null, "1.2", null, "27.2", null, "1.5", null, "59.6", null, "1.7", null, "13977", null, "2379", null, "9644", null, "1819", null, "4333", null, "1173", null, "5006", null, "1198", null, "5270", null, "1494", null, "1413", null, "754", null, "3857", null, "1268", null, "3701", null, "1080", null, "5312", null, "1383", null, "2828", null, "908", null, "2232", null, "862", null, "863", null, "624", null, "1369", null, "508", null, "252", null, "312", null, "8665", null, "1757", null, "2178", null, "869", null, "3038", null, "1101", null, "550", null, "395", null, "2488", null, "1106", null, "3449", null, "1032", null, "3013", null, "977", null, "10964", null, "2026", null, "8045", null, "1796", null, "5932", null, "1516", null, "5677", null, "1309", null, "588", null, "438", null, "-999999999", "N", "-999999999", "N", "4056", null, "1226", null, "-999999999", "N", "-999999999", "N", "1848", null, "1022", null, "1644", null, "882", null, "3555", null, "1417", null, "5089", null, "1191", null, "69736", null, "18468", null, "10276", null, "1888", null, "886", null, "536", null, "3601", null, "1208", null, "5789", null, "1462", null, "5.1", null, "0.9", null, "69.0", null, "6.3", null, "31.0", null, "6.3", null, "35.8", null, "7.1", null, "37.7", null, "8.0", null, "10.1", null, "4.9", null, "27.6", null, "7.8", null, "26.5", null, "6.0", null, "38.0", null, "7.4", null, "20.2", null, "6.2", null, "16.0", null, "5.2", null, "6.2", null, "4.0", null, "9.8", null, "3.5", null, "1.8", null, "2.1", null, "62.0", null, "7.4", null, "15.6", null, "5.7", null, "21.7", null, "7.1", null, "3.9", null, "2.9", null, "17.8", null, "7.2", null, "24.7", null, "6.2", null, "21.6", null, "5.9", null, "78.4", null, "5.9", null, "57.6", null, "8.2", null, "42.4", null, "8.2", null, "40.6", null, "7.6", null, "4.2", null, "3.2", null, "-999999999.0", "N", "-999999999.0", "N", "29.0", null, "7.3", null, "-999999999.0", "N", "-999999999.0", "N", "13.2", null, "6.3", null, "11.8", null, "6.0", null, "25.4", null, "8.1", null, "36.4", null, "7.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "8.6", null, "5.2", null, "35.0", null, "9.6", null, "56.3", null, "9.7", null, "259857", null, "6050", null, "143746", null, "5293", null, "116111", null, "4974", null, "159374", null, "5210", null, "33696", null, "3265", null, "10375", null, "1989", null, "23321", null, "2796", null, "66787", null, "5033", null, "79135", null, "3682", null, "64217", null, "3830", null, "13618", null, "2119", null, "3808", null, "1079", null, "9810", null, "1998", null, "1300", null, "867", null, "180722", null, "6144", null, "95157", null, "3849", null, "20078", null, "2412", null, "6567", null, "1479", null, "13511", null, "2089", null, "65487", null, "4835", null, "16939", null, "2182", null, "242918", null, "5451", null, "62767", null, "3694", null, "197090", null, "6176", null, "161484", null, "5928", null, "9467", null, "1850", null, "-999999999", "N", "-999999999", "N", "56051", null, "3061", null, "-999999999", "N", "-999999999", "N", "14570", null, "2465", null, "17482", null, "2390", null, "30513", null, "2940", null, "157851", null, "5780", null, "141577", null, "5625", null, "193070", null, "4732", null, "25943", null, "2594", null, "51681", null, "3308", null, "115446", null, "4481", null, "94.9", null, "0.9", null, "55.3", null, "1.6", null, "44.7", null, "1.6", null, "61.3", null, "1.9", null, "13.0", null, "1.3", null, "4.0", null, "0.8", null, "9.0", null, "1.1", null, "25.7", null, "1.6", null, "30.5", null, "1.4", null, "24.7", null, "1.5", null, "5.2", null, "0.8", null, "1.5", null, "0.4", null, "3.8", null, "0.8", null, "0.5", null, "0.3", null, "69.5", null, "1.4", null, "36.6", null, "1.4", null, "7.7", null, "0.9", null, "2.5", null, "0.6", null, "5.2", null, "0.8", null, "25.2", null, "1.5", null, "6.5", null, "0.8", null, "93.5", null, "0.8", null, "24.2", null, "1.4", null, "75.8", null, "1.4", null, "62.1", null, "1.6", null, "3.6", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "21.6", null, "1.1", null, "-999999999.0", "N", "-999999999.0", "N", "5.6", null, "1.0", null, "6.7", null, "0.9", null, "11.7", null, "1.2", null, "60.7", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.4", null, "1.3", null, "26.8", null, "1.7", null, "59.8", null, "1.8", null, "36", "03"], ["5001900US3604", "Congressional District 4 (119th Congress), New York", "251021", null, "4021", null, "132370", null, "4370", null, "118651", null, "3975", null, "146684", null, "5072", null, "40469", null, "3693", null, "11338", null, "2079", null, "29131", null, "3282", null, "63868", null, "4359", null, "85567", null, "3923", null, "65542", null, "3685", null, "19332", null, "2568", null, "4769", null, "1359", null, "14563", null, "2273", null, "693", null, "663", null, "165454", null, "5324", null, "81142", null, "4523", null, "21137", null, "2645", null, "6569", null, "1697", null, "14568", null, "2082", null, "63175", null, "4261", null, "17224", null, "2575", null, "233797", null, "4395", null, "59561", null, "4323", null, "191460", null, "5281", null, "148515", null, "3924", null, "39914", null, "2439", null, "-999999999", "N", "-999999999", "N", "16981", null, "1772", null, "-999999999", "N", "-999999999", "N", "21933", null, "2803", null, "22930", null, "3113", null, "43962", null, "2795", null, "142474", null, "3945", null, "137724", null, "4792", null, "187153", null, "4658", null, "20470", null, "2080", null, "44535", null, "3763", null, "122148", null, "4022", null, "-888888888", "(X)", "-888888888", "(X)", "52.7", null, "1.5", null, "47.3", null, "1.5", null, "58.4", null, "2.0", null, "16.1", null, "1.4", null, "4.5", null, "0.8", null, "11.6", null, "1.3", null, "25.4", null, "1.6", null, "34.1", null, "1.6", null, "26.1", null, "1.5", null, "7.7", null, "1.0", null, "1.9", null, "0.5", null, "5.8", null, "0.9", null, "0.3", null, "0.3", null, "65.9", null, "1.6", null, "32.3", null, "1.7", null, "8.4", null, "1.0", null, "2.6", null, "0.7", null, "5.8", null, "0.8", null, "25.2", null, "1.6", null, "6.9", null, "1.0", null, "93.1", null, "1.0", null, "23.7", null, "1.7", null, "76.3", null, "1.7", null, "59.2", null, "1.3", null, "15.9", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "6.8", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "8.7", null, "1.1", null, "9.1", null, "1.2", null, "17.5", null, "1.1", null, "56.8", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.9", null, "1.1", null, "23.8", null, "1.8", null, "65.3", null, "1.8", null, "15596", null, "2306", null, "11490", null, "1920", null, "4106", null, "1466", null, "5210", null, "1314", null, "5406", null, "1641", null, "1560", null, "811", null, "3846", null, "1357", null, "4980", null, "1484", null, "6224", null, "1672", null, "2966", null, "928", null, "3258", null, "1420", null, "1000", null, "680", null, "2258", null, "1060", null, "0", null, "220", null, "9372", null, "1915", null, "2244", null, "916", null, "2148", null, "818", null, "560", null, "478", null, "1588", null, "712", null, "4980", null, "1484", null, "3834", null, "1421", null, "11762", null, "1917", null, "6992", null, "1739", null, "8604", null, "1761", null, "4344", null, "1143", null, "4474", null, "1400", null, "-999999999", "N", "-999999999", "N", "2721", null, "963", null, "-999999999", "N", "-999999999", "N", "1589", null, "873", null, "2468", null, "984", null, "4663", null, "1581", null, "3613", null, "1028", null, "72516", null, "29614", null, "10616", null, "1951", null, "1590", null, "794", null, "2660", null, "983", null, "6366", null, "1346", null, "6.2", null, "0.9", null, "73.7", null, "7.9", null, "26.3", null, "7.9", null, "33.4", null, "7.9", null, "34.7", null, "8.5", null, "10.0", null, "4.8", null, "24.7", null, "7.6", null, "31.9", null, "8.0", null, "39.9", null, "8.8", null, "19.0", null, "5.8", null, "20.9", null, "8.0", null, "6.4", null, "4.2", null, "14.5", null, "6.0", null, "0.0", null, "1.3", null, "60.1", null, "8.8", null, "14.4", null, "5.6", null, "13.8", null, "4.9", null, "3.6", null, "3.0", null, "10.2", null, "4.5", null, "31.9", null, "8.0", null, "24.6", null, "7.7", null, "75.4", null, "7.7", null, "44.8", null, "8.5", null, "55.2", null, "8.5", null, "27.9", null, "6.4", null, "28.7", null, "7.8", null, "-999999999.0", "N", "-999999999.0", "N", "17.4", null, "5.8", null, "-999999999.0", "N", "-999999999.0", "N", "10.2", null, "5.3", null, "15.8", null, "5.7", null, "29.9", null, "8.5", null, "23.2", null, "6.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.0", null, "7.0", null, "25.1", null, "7.3", null, "60.0", null, "8.5", null, "235425", null, "4181", null, "120880", null, "4152", null, "114545", null, "4065", null, "141474", null, "5013", null, "35063", null, "3653", null, "9778", null, "1911", null, "25285", null, "3234", null, "58888", null, "4272", null, "79343", null, "3418", null, "62576", null, "3490", null, "16074", null, "2382", null, "3769", null, "1099", null, "12305", null, "2146", null, "693", null, "663", null, "156082", null, "5014", null, "78898", null, "4419", null, "18989", null, "2523", null, "6009", null, "1607", null, "12980", null, "1993", null, "58195", null, "4186", null, "13390", null, "2443", null, "222035", null, "4458", null, "52569", null, "4078", null, "182856", null, "5227", null, "144171", null, "3911", null, "35440", null, "2281", null, "-999999999", "N", "-999999999", "N", "14260", null, "1730", null, "-999999999", "N", "-999999999", "N", "20344", null, "2745", null, "20462", null, "3015", null, "39299", null, "2865", null, "138861", null, "3959", null, "140882", null, "5065", null, "176537", null, "4500", null, "18880", null, "1931", null, "41875", null, "3676", null, "115782", null, "4150", null, "93.8", null, "0.9", null, "51.3", null, "1.5", null, "48.7", null, "1.5", null, "60.1", null, "2.1", null, "14.9", null, "1.5", null, "4.2", null, "0.8", null, "10.7", null, "1.4", null, "25.0", null, "1.7", null, "33.7", null, "1.5", null, "26.6", null, "1.6", null, "6.8", null, "1.0", null, "1.6", null, "0.5", null, "5.2", null, "0.9", null, "0.3", null, "0.3", null, "66.3", null, "1.5", null, "33.5", null, "1.8", null, "8.1", null, "1.1", null, "2.6", null, "0.7", null, "5.5", null, "0.8", null, "24.7", null, "1.6", null, "5.7", null, "1.0", null, "94.3", null, "1.0", null, "22.3", null, "1.7", null, "77.7", null, "1.7", null, "61.2", null, "1.4", null, "15.1", null, "1.0", null, "-999999999.0", "N", "-999999999.0", "N", "6.1", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "8.6", null, "1.1", null, "8.7", null, "1.3", null, "16.7", null, "1.2", null, "59.0", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.7", null, "1.1", null, "23.7", null, "1.9", null, "65.6", null, "1.8", null, "36", "04"], ["5001900US3605", "Congressional District 5 (119th Congress), New York", "263241", null, "6389", null, "139944", null, "5030", null, "123297", null, "5611", null, "109788", null, "5907", null, "80009", null, "4906", null, "20589", null, "2447", null, "59420", null, "4501", null, "73444", null, "4914", null, "82188", null, "4758", null, "46055", null, "3531", null, "35655", null, "3096", null, "7545", null, "1531", null, "28110", null, "2883", null, "478", null, "283", null, "181053", null, "6019", null, "63733", null, "5051", null, "44354", null, "4321", null, "13044", null, "2007", null, "31310", null, "3851", null, "72966", null, "4869", null, "41820", null, "3508", null, "221421", null, "6611", null, "81984", null, "4166", null, "181257", null, "6171", null, "46229", null, "3904", null, "112224", null, "3996", null, "2020", null, "1085", null, "31817", null, "2952", null, "-999999999", "N", "-999999999", "N", "41346", null, "3301", null, "29605", null, "3398", null, "54462", null, "4211", null, "42098", null, "3677", null, "82463", null, "2570", null, "189797", null, "6671", null, "24010", null, "3109", null, "62039", null, "4521", null, "103748", null, "5774", null, "-888888888", "(X)", "-888888888", "(X)", "53.2", null, "1.6", null, "46.8", null, "1.6", null, "41.7", null, "1.8", null, "30.4", null, "1.8", null, "7.8", null, "0.9", null, "22.6", null, "1.7", null, "27.9", null, "1.8", null, "31.2", null, "1.6", null, "17.5", null, "1.2", null, "13.5", null, "1.1", null, "2.9", null, "0.6", null, "10.7", null, "1.1", null, "0.2", null, "0.1", null, "68.8", null, "1.6", null, "24.2", null, "1.8", null, "16.8", null, "1.6", null, "5.0", null, "0.8", null, "11.9", null, "1.5", null, "27.7", null, "1.7", null, "15.9", null, "1.3", null, "84.1", null, "1.3", null, "31.1", null, "1.5", null, "68.9", null, "1.5", null, "17.6", null, "1.3", null, "42.6", null, "1.6", null, "0.8", null, "0.4", null, "12.1", null, "1.1", null, "-999999999.0", "N", "-999999999.0", "N", "15.7", null, "1.1", null, "11.2", null, "1.2", null, "20.7", null, "1.4", null, "16.0", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.7", null, "1.6", null, "32.7", null, "2.0", null, "54.7", null, "2.4", null, "55469", null, "4706", null, "31757", null, "3588", null, "23712", null, "3312", null, "16407", null, "2823", null, "22695", null, "2928", null, "4542", null, "1475", null, "18153", null, "2641", null, "16367", null, "2928", null, "19943", null, "2585", null, "7867", null, "1782", null, "11912", null, "1893", null, "1813", null, "1018", null, "10099", null, "1630", null, "164", null, "163", null, "35526", null, "3733", null, "8540", null, "2073", null, "10783", null, "2149", null, "2729", null, "1138", null, "8054", null, "1958", null, "16203", null, "2916", null, "21328", null, "2790", null, "34141", null, "3347", null, "30337", null, "2997", null, "25132", null, "3040", null, "5592", null, "1635", null, "27020", null, "2657", null, "671", null, "673", null, "5655", null, "1238", null, "-999999999", "N", "-999999999", "N", "9900", null, "1735", null, "6631", null, "1795", null, "14662", null, "2908", null, "5081", null, "1604", null, "39830", null, "3181", null, "39102", null, "3758", null, "8622", null, "1796", null, "14352", null, "2609", null, "16128", null, "2354", null, "21.1", null, "1.7", null, "57.3", null, "4.6", null, "42.7", null, "4.6", null, "29.6", null, "4.3", null, "40.9", null, "4.7", null, "8.2", null, "2.6", null, "32.7", null, "4.4", null, "29.5", null, "4.3", null, "36.0", null, "3.7", null, "14.2", null, "2.9", null, "21.5", null, "3.1", null, "3.3", null, "1.8", null, "18.2", null, "2.9", null, "0.3", null, "0.3", null, "64.0", null, "3.7", null, "15.4", null, "3.4", null, "19.4", null, "3.8", null, "4.9", null, "2.1", null, "14.5", null, "3.4", null, "29.2", null, "4.2", null, "38.5", null, "3.5", null, "61.5", null, "3.5", null, "54.7", null, "3.4", null, "45.3", null, "3.4", null, "10.1", null, "2.8", null, "48.7", null, "3.7", null, "1.2", null, "1.2", null, "10.2", null, "2.0", null, "-999999999.0", "N", "-999999999.0", "N", "17.8", null, "2.7", null, "12.0", null, "2.9", null, "26.4", null, "4.2", null, "9.2", null, "2.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "22.1", null, "4.0", null, "36.7", null, "5.2", null, "41.2", null, "5.3", null, "207772", null, "6428", null, "108187", null, "5805", null, "99585", null, "5005", null, "93381", null, "5226", null, "57314", null, "4350", null, "16047", null, "2266", null, "41267", null, "3944", null, "57077", null, "3993", null, "62245", null, "4303", null, "38188", null, "3206", null, "23743", null, "2949", null, "5732", null, "1309", null, "18011", null, "2794", null, "314", null, "270", null, "145527", null, "5490", null, "55193", null, "4511", null, "33571", null, "3453", null, "10315", null, "1726", null, "23256", null, "3037", null, "56763", null, "3956", null, "20492", null, "2639", null, "187280", null, "6561", null, "51647", null, "3453", null, "156125", null, "6054", null, "40637", null, "3602", null, "85204", null, "4295", null, "1349", null, "840", null, "26162", null, "2894", null, "-999999999", "N", "-999999999", "N", "31446", null, "2930", null, "22974", null, "3068", null, "39800", null, "3001", null, "37017", null, "3410", null, "91774", null, "2558", null, "150695", null, "6467", null, "15388", null, "2251", null, "47687", null, "4166", null, "87620", null, "5389", null, "78.9", null, "1.7", null, "52.1", null, "2.1", null, "47.9", null, "2.1", null, "44.9", null, "1.9", null, "27.6", null, "1.9", null, "7.7", null, "1.1", null, "19.9", null, "1.7", null, "27.5", null, "1.9", null, "30.0", null, "1.8", null, "18.4", null, "1.4", null, "11.4", null, "1.4", null, "2.8", null, "0.6", null, "8.7", null, "1.3", null, "0.2", null, "0.1", null, "70.0", null, "1.8", null, "26.6", null, "1.9", null, "16.2", null, "1.6", null, "5.0", null, "0.8", null, "11.2", null, "1.4", null, "27.3", null, "1.8", null, "9.9", null, "1.3", null, "90.1", null, "1.3", null, "24.9", null, "1.5", null, "75.1", null, "1.5", null, "19.6", null, "1.5", null, "41.0", null, "1.8", null, "0.6", null, "0.4", null, "12.6", null, "1.3", null, "-999999999.0", "N", "-999999999.0", "N", "15.1", null, "1.3", null, "11.1", null, "1.4", null, "19.2", null, "1.2", null, "17.8", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.2", null, "1.5", null, "31.6", null, "2.3", null, "58.1", null, "2.6", null, "36", "05"], ["5001900US3606", "Congressional District 6 (119th Congress), New York", "278234", null, "7127", null, "142422", null, "5527", null, "135812", null, "6344", null, "127303", null, "5017", null, "56585", null, "4775", null, "21665", null, "3045", null, "34920", null, "3977", null, "94346", null, "5474", null, "68786", null, "4901", null, "46764", null, "3764", null, "21673", null, "3113", null, "7708", null, "1781", null, "13965", null, "2834", null, "349", null, "323", null, "209448", null, "7433", null, "80539", null, "4614", null, "34912", null, "3656", null, "13957", null, "2409", null, "20955", null, "2812", null, "93997", null, "5430", null, "40298", null, "4236", null, "237936", null, "6446", null, "69491", null, "4669", null, "208743", null, "7167", null, "81929", null, "4995", null, "14146", null, "3286", null, "2365", null, "1042", null, "117021", null, "3808", null, "-999999999", "N", "-999999999", "N", "32051", null, "3612", null, "30527", null, "3118", null, "65458", null, "4274", null, "75358", null, "4901", null, "82145", null, "3151", null, "183888", null, "5584", null, "27617", null, "3200", null, "53809", null, "3977", null, "102462", null, "5197", null, "-888888888", "(X)", "-888888888", "(X)", "51.2", null, "1.7", null, "48.8", null, "1.7", null, "45.8", null, "1.9", null, "20.3", null, "1.5", null, "7.8", null, "1.1", null, "12.6", null, "1.3", null, "33.9", null, "1.6", null, "24.7", null, "1.7", null, "16.8", null, "1.4", null, "7.8", null, "1.1", null, "2.8", null, "0.6", null, "5.0", null, "1.0", null, "0.1", null, "0.1", null, "75.3", null, "1.7", null, "28.9", null, "1.7", null, "12.5", null, "1.2", null, "5.0", null, "0.9", null, "7.5", null, "1.0", null, "33.8", null, "1.6", null, "14.5", null, "1.4", null, "85.5", null, "1.4", null, "25.0", null, "1.6", null, "75.0", null, "1.6", null, "29.4", null, "1.5", null, "5.1", null, "1.1", null, "0.9", null, "0.4", null, "42.1", null, "1.5", null, "-999999999.0", "N", "-999999999.0", "N", "11.5", null, "1.3", null, "11.0", null, "1.1", null, "23.5", null, "1.4", null, "27.1", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.0", null, "1.7", null, "29.3", null, "1.9", null, "55.7", null, "2.4", null, "49320", null, "4699", null, "33688", null, "3617", null, "15632", null, "2454", null, "20760", null, "2725", null, "15594", null, "2897", null, "3983", null, "1150", null, "11611", null, "2712", null, "12966", null, "2604", null, "15665", null, "2859", null, "7791", null, "1630", null, "7874", null, "2381", null, "1800", null, "896", null, "6074", null, "2174", null, "0", null, "220", null, "33655", null, "3666", null, "12969", null, "2171", null, "7720", null, "1838", null, "2183", null, "923", null, "5537", null, "1558", null, "12966", null, "2604", null, "15763", null, "2998", null, "33557", null, "3767", null, "21951", null, "3584", null, "27369", null, "2971", null, "10110", null, "2229", null, "3948", null, "2269", null, "757", null, "469", null, "20649", null, "2280", null, "-999999999", "N", "-999999999", "N", "7643", null, "2082", null, "6213", null, "1951", null, "15351", null, "2820", null, "8570", null, "2131", null, "44586", null, "6869", null, "36354", null, "3821", null, "7754", null, "1842", null, "13905", null, "3006", null, "14695", null, "2300", null, "17.7", null, "1.6", null, "68.3", null, "3.8", null, "31.7", null, "3.8", null, "42.1", null, "4.5", null, "31.6", null, "5.0", null, "8.1", null, "2.3", null, "23.5", null, "4.9", null, "26.3", null, "4.3", null, "31.8", null, "4.6", null, "15.8", null, "3.0", null, "16.0", null, "4.4", null, "3.6", null, "1.8", null, "12.3", null, "4.0", null, "0.0", null, "0.4", null, "68.2", null, "4.6", null, "26.3", null, "4.0", null, "15.7", null, "3.7", null, "4.4", null, "1.9", null, "11.2", null, "3.1", null, "26.3", null, "4.3", null, "32.0", null, "4.9", null, "68.0", null, "4.9", null, "44.5", null, "4.8", null, "55.5", null, "4.8", null, "20.5", null, "3.9", null, "8.0", null, "4.3", null, "1.5", null, "1.0", null, "41.9", null, "4.5", null, "-999999999.0", "N", "-999999999.0", "N", "15.5", null, "3.8", null, "12.6", null, "3.9", null, "31.1", null, "4.9", null, "17.4", null, "3.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "21.3", null, "4.6", null, "38.2", null, "6.1", null, "40.4", null, "6.1", null, "228914", null, "7345", null, "108734", null, "5451", null, "120180", null, "6513", null, "106543", null, "4164", null, "40991", null, "4017", null, "17682", null, "2802", null, "23309", null, "2824", null, "81380", null, "5570", null, "53121", null, "4225", null, "38973", null, "3615", null, "13799", null, "2296", null, "5908", null, "1613", null, "7891", null, "1747", null, "349", null, "323", null, "175793", null, "7498", null, "67570", null, "4276", null, "27192", null, "3253", null, "11774", null, "2308", null, "15418", null, "2353", null, "81031", null, "5520", null, "24535", null, "3669", null, "204379", null, "6498", null, "47540", null, "3907", null, "181374", null, "7380", null, "71819", null, "4619", null, "10198", null, "2691", null, "1608", null, "934", null, "96372", null, "4324", null, "-999999999", "N", "-999999999", "N", "24408", null, "2969", null, "24314", null, "2929", null, "50107", null, "3870", null, "66788", null, "4522", null, "89422", null, "3323", null, "147534", null, "5013", null, "19863", null, "2692", null, "39904", null, "3530", null, "87767", null, "4483", null, "82.3", null, "1.6", null, "47.5", null, "2.1", null, "52.5", null, "2.1", null, "46.5", null, "2.0", null, "17.9", null, "1.5", null, "7.7", null, "1.2", null, "10.2", null, "1.1", null, "35.6", null, "1.8", null, "23.2", null, "1.8", null, "17.0", null, "1.7", null, "6.0", null, "0.9", null, "2.6", null, "0.7", null, "3.4", null, "0.7", null, "0.2", null, "0.1", null, "76.8", null, "1.8", null, "29.5", null, "1.9", null, "11.9", null, "1.3", null, "5.1", null, "1.0", null, "6.7", null, "1.0", null, "35.4", null, "1.8", null, "10.7", null, "1.5", null, "89.3", null, "1.5", null, "20.8", null, "1.7", null, "79.2", null, "1.7", null, "31.4", null, "1.8", null, "4.5", null, "1.1", null, "0.7", null, "0.4", null, "42.1", null, "1.7", null, "-999999999.0", "N", "-999999999.0", "N", "10.7", null, "1.3", null, "10.6", null, "1.2", null, "21.9", null, "1.5", null, "29.2", null, "1.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.5", null, "1.8", null, "27.0", null, "2.0", null, "59.5", null, "2.6", null, "36", "06"], ["5001900US3607", "Congressional District 7 (119th Congress), New York", "309951", null, "9065", null, "93858", null, "6162", null, "216093", null, "7785", null, "103545", null, "5661", null, "51160", null, "4445", null, "13906", null, "1984", null, "37254", null, "4088", null, "155246", null, "6980", null, "69131", null, "4556", null, "43542", null, "3278", null, "24821", null, "3001", null, "4999", null, "1298", null, "19822", null, "2973", null, "768", null, "678", null, "240820", null, "7908", null, "60003", null, "4713", null, "26339", null, "3205", null, "8907", null, "1696", null, "17432", null, "2693", null, "154478", null, "6991", null, "52308", null, "4478", null, "257643", null, "9159", null, "74753", null, "5283", null, "235198", null, "8221", null, "143123", null, "6520", null, "33014", null, "3734", null, "2950", null, "1376", null, "39870", null, "3042", null, "-999999999", "N", "-999999999", "N", "51472", null, "4548", null, "39146", null, "3887", null, "90238", null, "5641", null, "132572", null, "6362", null, "92194", null, "6017", null, "154705", null, "7422", null, "17960", null, "2472", null, "45585", null, "4404", null, "91160", null, "6097", null, "-888888888", "(X)", "-888888888", "(X)", "30.3", null, "1.7", null, "69.7", null, "1.7", null, "33.4", null, "1.6", null, "16.5", null, "1.3", null, "4.5", null, "0.6", null, "12.0", null, "1.2", null, "50.1", null, "1.8", null, "22.3", null, "1.3", null, "14.0", null, "1.0", null, "8.0", null, "0.9", null, "1.6", null, "0.4", null, "6.4", null, "0.9", null, "0.2", null, "0.2", null, "77.7", null, "1.3", null, "19.4", null, "1.4", null, "8.5", null, "1.0", null, "2.9", null, "0.6", null, "5.6", null, "0.8", null, "49.8", null, "1.8", null, "16.9", null, "1.4", null, "83.1", null, "1.4", null, "24.1", null, "1.5", null, "75.9", null, "1.5", null, "46.2", null, "1.7", null, "10.7", null, "1.2", null, "1.0", null, "0.4", null, "12.9", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "16.6", null, "1.3", null, "12.6", null, "1.2", null, "29.1", null, "1.5", null, "42.8", null, "1.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.6", null, "1.5", null, "29.5", null, "2.5", null, "58.9", null, "2.5", null, "64600", null, "4798", null, "33370", null, "3598", null, "31230", null, "3368", null, "18894", null, "2946", null, "23043", null, "3005", null, "5254", null, "1536", null, "17789", null, "2959", null, "22663", null, "2875", null, "23247", null, "2957", null, "11424", null, "2363", null, "11823", null, "2289", null, "1551", null, "790", null, "10272", null, "2275", null, "0", null, "220", null, "41353", null, "3884", null, "7470", null, "1729", null, "11220", null, "2077", null, "3703", null, "1334", null, "7517", null, "1838", null, "22663", null, "2875", null, "31216", null, "3990", null, "33384", null, "3489", null, "31990", null, "3942", null, "32610", null, "3889", null, "16835", null, "2577", null, "11087", null, "2251", null, "385", null, "397", null, "6470", null, "1179", null, "-999999999", "N", "-999999999", "N", "19997", null, "3427", null, "9450", null, "1968", null, "30385", null, "3966", null, "14470", null, "2306", null, "25127", null, "3607", null, "41937", null, "3803", null, "8367", null, "1630", null, "17565", null, "3031", null, "16005", null, "2735", null, "20.8", null, "1.5", null, "51.7", null, "3.9", null, "48.3", null, "3.9", null, "29.2", null, "4.1", null, "35.7", null, "3.9", null, "8.1", null, "2.3", null, "27.5", null, "4.1", null, "35.1", null, "3.5", null, "36.0", null, "3.7", null, "17.7", null, "3.6", null, "18.3", null, "3.1", null, "2.4", null, "1.2", null, "15.9", null, "3.3", null, "0.0", null, "0.3", null, "64.0", null, "3.7", null, "11.6", null, "2.4", null, "17.4", null, "3.1", null, "5.7", null, "2.1", null, "11.6", null, "2.8", null, "35.1", null, "3.5", null, "48.3", null, "4.5", null, "51.7", null, "4.5", null, "49.5", null, "4.8", null, "50.5", null, "4.8", null, "26.1", null, "3.2", null, "17.2", null, "3.2", null, "0.6", null, "0.6", null, "10.0", null, "1.8", null, "-999999999.0", "N", "-999999999.0", "N", "31.0", null, "4.7", null, "14.6", null, "3.0", null, "47.0", null, "4.9", null, "22.4", null, "3.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "20.0", null, "3.9", null, "41.9", null, "5.6", null, "38.2", null, "5.6", null, "245351", null, "9179", null, "60488", null, "5407", null, "184863", null, "7785", null, "84651", null, "5297", null, "28117", null, "3735", null, "8652", null, "1764", null, "19465", null, "3093", null, "132583", null, "6587", null, "45884", null, "3819", null, "32118", null, "3173", null, "12998", null, "2062", null, "3448", null, "1214", null, "9550", null, "1802", null, "768", null, "678", null, "199467", null, "8063", null, "52533", null, "4212", null, "15119", null, "2953", null, "5204", null, "1344", null, "9915", null, "2408", null, "131815", null, "6597", null, "21092", null, "2979", null, "224259", null, "9096", null, "42763", null, "4541", null, "202588", null, "8138", null, "126288", null, "6256", null, "21927", null, "3214", null, "2565", null, "1344", null, "33400", null, "3080", null, "-999999999", "N", "-999999999", "N", "31475", null, "3545", null, "29696", null, "3554", null, "59853", null, "5303", null, "118102", null, "6056", null, "117224", null, "5072", null, "112768", null, "6541", null, "9593", null, "1929", null, "28020", null, "3196", null, "75155", null, "5736", null, "79.2", null, "1.5", null, "24.7", null, "1.9", null, "75.3", null, "1.9", null, "34.5", null, "1.8", null, "11.5", null, "1.4", null, "3.5", null, "0.7", null, "7.9", null, "1.1", null, "54.0", null, "1.9", null, "18.7", null, "1.4", null, "13.1", null, "1.2", null, "5.3", null, "0.8", null, "1.4", null, "0.5", null, "3.9", null, "0.7", null, "0.3", null, "0.3", null, "81.3", null, "1.4", null, "21.4", null, "1.6", null, "6.2", null, "1.1", null, "2.1", null, "0.5", null, "4.0", null, "0.9", null, "53.7", null, "1.9", null, "8.6", null, "1.2", null, "91.4", null, "1.2", null, "17.4", null, "1.7", null, "82.6", null, "1.7", null, "51.5", null, "2.0", null, "8.9", null, "1.2", null, "1.0", null, "0.6", null, "13.6", null, "1.2", null, "-999999999.0", "N", "-999999999.0", "N", "12.8", null, "1.2", null, "12.1", null, "1.4", null, "24.4", null, "1.8", null, "48.1", null, "2.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "8.5", null, "1.6", null, "24.8", null, "2.6", null, "66.6", null, "2.9", null, "36", "07"], ["5001900US3608", "Congressional District 8 (119th Congress), New York", "287434", null, "6867", null, "130914", null, "5723", null, "156520", null, "6781", null, "91400", null, "5622", null, "75029", null, "5605", null, "17757", null, "2991", null, "57272", null, "4963", null, "121005", null, "7246", null, "68184", null, "4665", null, "33737", null, "3289", null, "34240", null, "3669", null, "7601", null, "1617", null, "26639", null, "3417", null, "207", null, "181", null, "219250", null, "6609", null, "57663", null, "4430", null, "40789", null, "4038", null, "10156", null, "2386", null, "30633", null, "3435", null, "120798", null, "7269", null, "60335", null, "4720", null, "227099", null, "7502", null, "92583", null, "5811", null, "194851", null, "7478", null, "99260", null, "4300", null, "115647", null, "6277", null, "845", null, "534", null, "21980", null, "2142", null, "-999999999", "N", "-999999999", "N", "21793", null, "2729", null, "27825", null, "3322", null, "41372", null, "3774", null, "94776", null, "4336", null, "63052", null, "3401", null, "166429", null, "6707", null, "32621", null, "3531", null, "56106", null, "4098", null, "77702", null, "5349", null, "-888888888", "(X)", "-888888888", "(X)", "45.5", null, "1.8", null, "54.5", null, "1.8", null, "31.8", null, "1.9", null, "26.1", null, "1.9", null, "6.2", null, "1.0", null, "19.9", null, "1.7", null, "42.1", null, "2.1", null, "23.7", null, "1.5", null, "11.7", null, "1.1", null, "11.9", null, "1.2", null, "2.6", null, "0.6", null, "9.3", null, "1.2", null, "0.1", null, "0.1", null, "76.3", null, "1.5", null, "20.1", null, "1.6", null, "14.2", null, "1.4", null, "3.5", null, "0.8", null, "10.7", null, "1.2", null, "42.0", null, "2.2", null, "21.0", null, "1.6", null, "79.0", null, "1.6", null, "32.2", null, "1.9", null, "67.8", null, "1.9", null, "34.5", null, "1.4", null, "40.2", null, "1.8", null, "0.3", null, "0.2", null, "7.6", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "7.6", null, "0.9", null, "9.7", null, "1.2", null, "14.4", null, "1.3", null, "33.0", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "19.6", null, "2.0", null, "33.7", null, "2.2", null, "46.7", null, "2.4", null, "88495", null, "5867", null, "48394", null, "3867", null, "40101", null, "4278", null, "21221", null, "2896", null, "33577", null, "4141", null, "5681", null, "1744", null, "27896", null, "3642", null, "33697", null, "3553", null, "26044", null, "3636", null, "8181", null, "1711", null, "17829", null, "2929", null, "2466", null, "1139", null, "15363", null, "2598", null, "34", null, "58", null, "62451", null, "4617", null, "13040", null, "2354", null, "15748", null, "2679", null, "3215", null, "1396", null, "12533", null, "2304", null, "33663", null, "3545", null, "40727", null, "4036", null, "47768", null, "4715", null, "45126", null, "3977", null, "43369", null, "4905", null, "21760", null, "2784", null, "41049", null, "4170", null, "584", null, "469", null, "5816", null, "1198", null, "-999999999", "N", "-999999999", "N", "10464", null, "2116", null, "8822", null, "1928", null, "18202", null, "2839", null, "20233", null, "2613", null, "24061", null, "3693", null, "54798", null, "5308", null, "18269", null, "3210", null, "21289", null, "3486", null, "15240", null, "2769", null, "30.8", null, "1.9", null, "54.7", null, "3.3", null, "45.3", null, "3.3", null, "24.0", null, "2.9", null, "37.9", null, "3.4", null, "6.4", null, "1.9", null, "31.5", null, "3.2", null, "38.1", null, "3.7", null, "29.4", null, "3.3", null, "9.2", null, "1.8", null, "20.1", null, "2.8", null, "2.8", null, "1.2", null, "17.4", null, "2.6", null, "0.0", null, "0.1", null, "70.6", null, "3.3", null, "14.7", null, "2.5", null, "17.8", null, "2.7", null, "3.6", null, "1.6", null, "14.2", null, "2.3", null, "38.0", null, "3.7", null, "46.0", null, "3.7", null, "54.0", null, "3.7", null, "51.0", null, "3.8", null, "49.0", null, "3.8", null, "24.6", null, "3.0", null, "46.4", null, "3.2", null, "0.7", null, "0.5", null, "6.6", null, "1.3", null, "-999999999.0", "N", "-999999999.0", "N", "11.8", null, "2.2", null, "10.0", null, "2.1", null, "20.6", null, "2.7", null, "22.9", null, "2.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "33.3", null, "4.8", null, "38.8", null, "4.9", null, "27.8", null, "4.6", null, "198939", null, "7082", null, "82520", null, "4289", null, "116419", null, "6238", null, "70179", null, "5070", null, "41452", null, "3839", null, "12076", null, "2255", null, "29376", null, "3530", null, "87308", null, "6473", null, "42140", null, "3315", null, "25556", null, "2776", null, "16411", null, "2137", null, "5135", null, "1157", null, "11276", null, "2040", null, "173", null, "172", null, "156799", null, "6634", null, "44623", null, "3938", null, "25041", null, "3017", null, "6941", null, "1942", null, "18100", null, "2561", null, "87135", null, "6476", null, "19608", null, "2496", null, "179331", null, "7029", null, "47457", null, "4015", null, "151482", null, "6429", null, "77500", null, "3835", null, "74598", null, "5323", null, "261", null, "245", null, "16164", null, "1926", null, "-999999999", "N", "-999999999", "N", "11329", null, "2037", null, "19003", null, "2685", null, "23170", null, "2641", null, "74543", null, "3796", null, "87833", null, "5179", null, "111631", null, "5529", null, "14352", null, "2073", null, "34817", null, "3045", null, "62462", null, "4641", null, "69.2", null, "1.9", null, "41.5", null, "1.9", null, "58.5", null, "1.9", null, "35.3", null, "2.4", null, "20.8", null, "1.9", null, "6.1", null, "1.1", null, "14.8", null, "1.8", null, "43.9", null, "2.5", null, "21.2", null, "1.6", null, "12.8", null, "1.3", null, "8.2", null, "1.1", null, "2.6", null, "0.6", null, "5.7", null, "1.0", null, "0.1", null, "0.1", null, "78.8", null, "1.6", null, "22.4", null, "1.9", null, "12.6", null, "1.5", null, "3.5", null, "1.0", null, "9.1", null, "1.3", null, "43.8", null, "2.5", null, "9.9", null, "1.2", null, "90.1", null, "1.2", null, "23.9", null, "1.8", null, "76.1", null, "1.8", null, "39.0", null, "1.7", null, "37.5", null, "2.1", null, "0.1", null, "0.1", null, "8.1", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "5.7", null, "1.0", null, "9.6", null, "1.3", null, "11.6", null, "1.3", null, "37.5", null, "1.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.9", null, "1.7", null, "31.2", null, "2.5", null, "56.0", null, "2.8", null, "36", "08"], ["5001900US3609", "Congressional District 9 (119th Congress), New York", "268239", null, "7069", null, "119706", null, "5380", null, "148533", null, "7113", null, "93883", null, "4969", null, "63475", null, "4828", null, "14073", null, "2250", null, "49402", null, "4329", null, "110881", null, "5087", null, "67639", null, "4541", null, "41097", null, "3433", null, "25977", null, "3302", null, "3490", null, "1086", null, "22487", null, "3221", null, "565", null, "409", null, "200600", null, "5900", null, "52786", null, "3653", null, "37498", null, "3402", null, "10583", null, "2238", null, "26915", null, "3200", null, "110316", null, "5116", null, "47958", null, "4349", null, "220281", null, "6746", null, "70069", null, "5003", null, "198170", null, "7600", null, "87572", null, "4490", null, "115793", null, "5843", null, "1440", null, "826", null, "23347", null, "2200", null, "-999999999", "N", "-999999999", "N", "14326", null, "2407", null, "25761", null, "3091", null, "29091", null, "3213", null, "83700", null, "4373", null, "76531", null, "3254", null, "157358", null, "6803", null, "17724", null, "2810", null, "52073", null, "4375", null, "87561", null, "5915", null, "-888888888", "(X)", "-888888888", "(X)", "44.6", null, "1.9", null, "55.4", null, "1.9", null, "35.0", null, "1.6", null, "23.7", null, "1.6", null, "5.2", null, "0.8", null, "18.4", null, "1.5", null, "41.3", null, "1.8", null, "25.2", null, "1.4", null, "15.3", null, "1.2", null, "9.7", null, "1.2", null, "1.3", null, "0.4", null, "8.4", null, "1.1", null, "0.2", null, "0.2", null, "74.8", null, "1.4", null, "19.7", null, "1.3", null, "14.0", null, "1.2", null, "3.9", null, "0.8", null, "10.0", null, "1.1", null, "41.1", null, "1.8", null, "17.9", null, "1.5", null, "82.1", null, "1.5", null, "26.1", null, "1.8", null, "73.9", null, "1.8", null, "32.6", null, "1.4", null, "43.2", null, "1.7", null, "0.5", null, "0.3", null, "8.7", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "5.3", null, "0.9", null, "9.6", null, "1.1", null, "10.8", null, "1.1", null, "31.2", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.3", null, "1.6", null, "33.1", null, "2.7", null, "55.6", null, "2.6", null, "59702", null, "4528", null, "33426", null, "3627", null, "26276", null, "3404", null, "16449", null, "2316", null, "20099", null, "2834", null, "3556", null, "1240", null, "16543", null, "2734", null, "23154", null, "3184", null, "18855", null, "2990", null, "8838", null, "1734", null, "9736", null, "2092", null, "1361", null, "779", null, "8375", null, "2105", null, "281", null, "330", null, "40847", null, "3942", null, "7611", null, "1569", null, "10363", null, "1704", null, "2195", null, "1078", null, "8168", null, "1494", null, "22873", null, "3192", null, "25821", null, "3367", null, "33881", null, "2921", null, "27301", null, "2982", null, "32401", null, "3479", null, "16291", null, "2119", null, "26102", null, "3493", null, "454", null, "614", null, "5391", null, "1087", null, "-999999999", "N", "-999999999", "N", "5170", null, "1772", null, "6294", null, "1315", null, "9259", null, "1660", null, "15355", null, "2065", null, "30864", null, "4023", null, "36548", null, "3547", null, "6951", null, "1785", null, "16620", null, "2669", null, "12977", null, "2097", null, "22.3", null, "1.6", null, "56.0", null, "4.5", null, "44.0", null, "4.5", null, "27.6", null, "3.3", null, "33.7", null, "4.2", null, "6.0", null, "2.1", null, "27.7", null, "4.1", null, "38.8", null, "4.2", null, "31.6", null, "4.3", null, "14.8", null, "2.6", null, "16.3", null, "3.2", null, "2.3", null, "1.3", null, "14.0", null, "3.3", null, "0.5", null, "0.6", null, "68.4", null, "4.3", null, "12.7", null, "2.5", null, "17.4", null, "2.8", null, "3.7", null, "1.8", null, "13.7", null, "2.4", null, "38.3", null, "4.2", null, "43.2", null, "3.8", null, "56.8", null, "3.8", null, "45.7", null, "3.8", null, "54.3", null, "3.8", null, "27.3", null, "3.0", null, "43.7", null, "4.0", null, "0.8", null, "1.0", null, "9.0", null, "1.8", null, "-999999999.0", "N", "-999999999.0", "N", "8.7", null, "3.0", null, "10.5", null, "2.3", null, "15.5", null, "2.8", null, "25.7", null, "3.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "19.0", null, "4.6", null, "45.5", null, "5.6", null, "35.5", null, "4.8", null, "208537", null, "6989", null, "86280", null, "5328", null, "122257", null, "6805", null, "77434", null, "4783", null, "43376", null, "3866", null, "10517", null, "1974", null, "32859", null, "3664", null, "87727", null, "4806", null, "48784", null, "4463", null, "32259", null, "3171", null, "16241", null, "2896", null, "2129", null, "806", null, "14112", null, "2895", null, "284", null, "254", null, "159753", null, "5678", null, "45175", null, "3466", null, "27135", null, "2737", null, "8388", null, "2034", null, "18747", null, "2584", null, "87443", null, "4801", null, "22137", null, "3045", null, "186400", null, "6891", null, "42768", null, "4386", null, "165769", null, "7403", null, "71281", null, "4219", null, "89691", null, "5199", null, "986", null, "567", null, "17956", null, "1916", null, "-999999999", "N", "-999999999", "N", "9156", null, "1797", null, "19467", null, "2691", null, "19832", null, "2686", null, "68345", null, "4078", null, "88619", null, "4518", null, "120810", null, "6295", null, "10773", null, "1868", null, "35453", null, "3846", null, "74584", null, "5407", null, "77.7", null, "1.6", null, "41.4", null, "2.4", null, "58.6", null, "2.4", null, "37.1", null, "1.8", null, "20.8", null, "1.7", null, "5.0", null, "0.9", null, "15.8", null, "1.6", null, "42.1", null, "2.0", null, "23.4", null, "1.8", null, "15.5", null, "1.4", null, "7.8", null, "1.3", null, "1.0", null, "0.4", null, "6.8", null, "1.3", null, "0.1", null, "0.1", null, "76.6", null, "1.8", null, "21.7", null, "1.5", null, "13.0", null, "1.3", null, "4.0", null, "1.0", null, "9.0", null, "1.2", null, "41.9", null, "2.0", null, "10.6", null, "1.4", null, "89.4", null, "1.4", null, "20.5", null, "2.1", null, "79.5", null, "2.1", null, "34.2", null, "1.7", null, "43.0", null, "1.9", null, "0.5", null, "0.3", null, "8.6", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "4.4", null, "0.9", null, "9.3", null, "1.2", null, "9.5", null, "1.2", null, "32.8", null, "1.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "8.9", null, "1.5", null, "29.3", null, "2.9", null, "61.7", null, "2.9", null, "36", "09"], ["5001900US3610", "Congressional District 10 (119th Congress), New York", "320427", null, "8883", null, "99861", null, "5727", null, "220566", null, "7791", null, "115401", null, "5205", null, "39324", null, "4039", null, "10963", null, "2421", null, "28361", null, "3268", null, "165702", null, "7776", null, "71067", null, "4509", null, "50968", null, "4032", null, "19601", null, "3161", null, "5623", null, "1715", null, "13978", null, "2747", null, "498", null, "343", null, "249360", null, "8201", null, "64433", null, "4176", null, "19723", null, "3057", null, "5340", null, "1698", null, "14383", null, "2289", null, "165204", null, "7730", null, "49456", null, "4465", null, "270971", null, "9269", null, "58193", null, "4779", null, "262234", null, "8235", null, "183240", null, "7762", null, "21892", null, "3668", null, "1681", null, "785", null, "57297", null, "3199", null, "-999999999", "N", "-999999999", "N", "23383", null, "2830", null, "32876", null, "4444", null, "55208", null, "4757", null, "172993", null, "7721", null, "119517", null, "6357", null, "154725", null, "6169", null, "18859", null, "2306", null, "42956", null, "3949", null, "92910", null, "4717", null, "-888888888", "(X)", "-888888888", "(X)", "31.2", null, "1.5", null, "68.8", null, "1.5", null, "36.0", null, "1.6", null, "12.3", null, "1.2", null, "3.4", null, "0.8", null, "8.9", null, "1.0", null, "51.7", null, "1.7", null, "22.2", null, "1.3", null, "15.9", null, "1.2", null, "6.1", null, "1.0", null, "1.8", null, "0.5", null, "4.4", null, "0.8", null, "0.2", null, "0.1", null, "77.8", null, "1.3", null, "20.1", null, "1.3", null, "6.2", null, "0.9", null, "1.7", null, "0.5", null, "4.5", null, "0.7", null, "51.6", null, "1.7", null, "15.4", null, "1.4", null, "84.6", null, "1.4", null, "18.2", null, "1.4", null, "81.8", null, "1.4", null, "57.2", null, "1.7", null, "6.8", null, "1.1", null, "0.5", null, "0.2", null, "17.9", null, "1.0", null, "-999999999.0", "N", "-999999999.0", "N", "7.3", null, "0.9", null, "10.3", null, "1.4", null, "17.2", null, "1.4", null, "54.0", null, "1.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.2", null, "1.4", null, "27.8", null, "2.2", null, "60.0", null, "2.3", null, "49672", null, "4325", null, "28317", null, "3178", null, "21355", null, "3148", null, "16016", null, "2431", null, "15467", null, "3097", null, "3285", null, "1424", null, "12182", null, "2727", null, "18189", null, "2538", null, "15184", null, "2740", null, "6762", null, "1502", null, "8422", null, "2381", null, "2126", null, "1296", null, "6296", null, "2116", null, "0", null, "220", null, "34488", null, "3303", null, "9254", null, "1987", null, "7045", null, "1760", null, "1159", null, "556", null, "5886", null, "1695", null, "18189", null, "2538", null, "22998", null, "2938", null, "26674", null, "3631", null, "23218", null, "3024", null, "26454", null, "3836", null, "12052", null, "2532", null, "8548", null, "2250", null, "651", null, "511", null, "14665", null, "2012", null, "-999999999", "N", "-999999999", "N", "9160", null, "1721", null, "4596", null, "1713", null, "15543", null, "2583", null, "10704", null, "2548", null, "24875", null, "2539", null, "31483", null, "3948", null, "8105", null, "1826", null, "12215", null, "2712", null, "11163", null, "2137", null, "15.5", null, "1.3", null, "57.0", null, "4.7", null, "43.0", null, "4.7", null, "32.2", null, "4.1", null, "31.1", null, "5.1", null, "6.6", null, "2.7", null, "24.5", null, "4.8", null, "36.6", null, "4.7", null, "30.6", null, "4.3", null, "13.6", null, "2.8", null, "17.0", null, "4.2", null, "4.3", null, "2.5", null, "12.7", null, "4.0", null, "0.0", null, "0.4", null, "69.4", null, "4.3", null, "18.6", null, "3.7", null, "14.2", null, "3.3", null, "2.3", null, "1.1", null, "11.8", null, "3.2", null, "36.6", null, "4.7", null, "46.3", null, "5.0", null, "53.7", null, "5.0", null, "46.7", null, "5.4", null, "53.3", null, "5.4", null, "24.3", null, "4.3", null, "17.2", null, "4.1", null, "1.3", null, "1.0", null, "29.5", null, "3.5", null, "-999999999.0", "N", "-999999999.0", "N", "18.4", null, "3.3", null, "9.3", null, "3.4", null, "31.3", null, "5.0", null, "21.5", null, "4.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "25.7", null, "4.8", null, "38.8", null, "6.6", null, "35.5", null, "5.8", null, "270755", null, "8945", null, "71544", null, "5012", null, "199211", null, "7671", null, "99385", null, "4934", null, "23857", null, "2815", null, "7678", null, "1882", null, "16179", null, "2068", null, "147513", null, "7323", null, "55883", null, "4336", null, "44206", null, "3787", null, "11179", null, "2337", null, "3497", null, "1467", null, "7682", null, "1601", null, "498", null, "343", null, "214872", null, "7701", null, "55179", null, "3752", null, "12678", null, "2267", null, "4181", null, "1569", null, "8497", null, "1621", null, "147015", null, "7251", null, "26458", null, "3647", null, "244297", null, "9234", null, "34975", null, "3941", null, "235780", null, "8471", null, "171188", null, "7771", null, "13344", null, "3166", null, "1030", null, "534", null, "42632", null, "3227", null, "-999999999", "N", "-999999999", "N", "14223", null, "2210", null, "28280", null, "3841", null, "39665", null, "4055", null, "162289", null, "7751", null, "146894", null, "10074", null, "123242", null, "6123", null, "10754", null, "1940", null, "30741", null, "3677", null, "81747", null, "4840", null, "84.5", null, "1.3", null, "26.4", null, "1.6", null, "73.6", null, "1.6", null, "36.7", null, "1.5", null, "8.8", null, "1.0", null, "2.8", null, "0.7", null, "6.0", null, "0.7", null, "54.5", null, "1.8", null, "20.6", null, "1.4", null, "16.3", null, "1.3", null, "4.1", null, "0.8", null, "1.3", null, "0.5", null, "2.8", null, "0.6", null, "0.2", null, "0.1", null, "79.4", null, "1.4", null, "20.4", null, "1.3", null, "4.7", null, "0.8", null, "1.5", null, "0.6", null, "3.1", null, "0.6", null, "54.3", null, "1.8", null, "9.8", null, "1.3", null, "90.2", null, "1.3", null, "12.9", null, "1.4", null, "87.1", null, "1.4", null, "63.2", null, "1.8", null, "4.9", null, "1.1", null, "0.4", null, "0.2", null, "15.7", null, "1.2", null, "-999999999.0", "N", "-999999999.0", "N", "5.3", null, "0.8", null, "10.4", null, "1.4", null, "14.6", null, "1.4", null, "59.9", null, "1.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "8.7", null, "1.5", null, "24.9", null, "2.5", null, "66.3", null, "2.8", null, "36", "10"], ["5001900US3611", "Congressional District 11 (119th Congress), New York", "263997", null, "4211", null, "129332", null, "3626", null, "134665", null, "4074", null, "126998", null, "4946", null, "57706", null, "4322", null, "19589", null, "2557", null, "38117", null, "3737", null, "79293", null, "4576", null, "79677", null, "4453", null, "53938", null, "3556", null, "25447", null, "3105", null, "6768", null, "1730", null, "18679", null, "2668", null, "292", null, "479", null, "184320", null, "4695", null, "73060", null, "3822", null, "32259", null, "3188", null, "12821", null, "2108", null, "19438", null, "2658", null, "79001", null, "4582", null, "37066", null, "3623", null, "226931", null, "4708", null, "73601", null, "3752", null, "190396", null, "4769", null, "156700", null, "3714", null, "18595", null, "2186", null, "-999999999", "N", "-999999999", "N", "47715", null, "2497", null, "-999999999", "N", "-999999999", "N", "19297", null, "2400", null, "20616", null, "2219", null, "43524", null, "3121", null, "149409", null, "3823", null, "90759", null, "2660", null, "184704", null, "5751", null, "26750", null, "2461", null, "53727", null, "4272", null, "104227", null, "4901", null, "-888888888", "(X)", "-888888888", "(X)", "49.0", null, "1.2", null, "51.0", null, "1.2", null, "48.1", null, "1.6", null, "21.9", null, "1.6", null, "7.4", null, "0.9", null, "14.4", null, "1.4", null, "30.0", null, "1.7", null, "30.2", null, "1.6", null, "20.4", null, "1.3", null, "9.6", null, "1.1", null, "2.6", null, "0.6", null, "7.1", null, "1.0", null, "0.1", null, "0.2", null, "69.8", null, "1.6", null, "27.7", null, "1.3", null, "12.2", null, "1.2", null, "4.9", null, "0.8", null, "7.4", null, "1.0", null, "29.9", null, "1.7", null, "14.0", null, "1.3", null, "86.0", null, "1.3", null, "27.9", null, "1.4", null, "72.1", null, "1.4", null, "59.4", null, "1.1", null, "7.0", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "18.1", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "7.3", null, "0.9", null, "7.8", null, "0.8", null, "16.5", null, "1.1", null, "56.6", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.5", null, "1.3", null, "29.1", null, "2.0", null, "56.4", null, "2.1", null, "43404", null, "3261", null, "27225", null, "2653", null, "16179", null, "2451", null, "13883", null, "2105", null, "14637", null, "1850", null, "4056", null, "1043", null, "10581", null, "1655", null, "14884", null, "2339", null, "14785", null, "2299", null, "7045", null, "1462", null, "7521", null, "1678", null, "1674", null, "911", null, "5847", null, "1437", null, "219", null, "361", null, "28619", null, "2686", null, "6838", null, "1504", null, "7116", null, "1214", null, "2382", null, "746", null, "4734", null, "1182", null, "14665", null, "2265", null, "17311", null, "2418", null, "26093", null, "2197", null, "22074", null, "2446", null, "21330", null, "2833", null, "18588", null, "2351", null, "4333", null, "1404", null, "-999999999", "N", "-999999999", "N", "11581", null, "1653", null, "-999999999", "N", "-999999999", "N", "5993", null, "1697", null, "2672", null, "829", null, "10750", null, "2058", null, "16775", null, "2380", null, "33989", null, "6954", null, "28520", null, "2883", null, "7041", null, "1452", null, "9229", null, "1714", null, "12250", null, "1716", null, "16.4", null, "1.2", null, "62.7", null, "4.5", null, "37.3", null, "4.5", null, "32.0", null, "3.7", null, "33.7", null, "4.0", null, "9.3", null, "2.3", null, "24.4", null, "3.8", null, "34.3", null, "4.6", null, "34.1", null, "4.4", null, "16.2", null, "3.0", null, "17.3", null, "3.6", null, "3.9", null, "2.1", null, "13.5", null, "3.2", null, "0.5", null, "0.8", null, "65.9", null, "4.4", null, "15.8", null, "3.1", null, "16.4", null, "2.9", null, "5.5", null, "1.7", null, "10.9", null, "2.8", null, "33.8", null, "4.6", null, "39.9", null, "3.9", null, "60.1", null, "3.9", null, "50.9", null, "4.8", null, "49.1", null, "4.8", null, "42.8", null, "4.4", null, "10.0", null, "3.1", null, "-999999999.0", "N", "-999999999.0", "N", "26.7", null, "3.5", null, "-999999999.0", "N", "-999999999.0", "N", "13.8", null, "3.7", null, "6.2", null, "1.9", null, "24.8", null, "4.4", null, "38.6", null, "4.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "24.7", null, "4.2", null, "32.4", null, "4.7", null, "43.0", null, "5.1", null, "220593", null, "4229", null, "102107", null, "3186", null, "118486", null, "4218", null, "113115", null, "4859", null, "43069", null, "4207", null, "15533", null, "2504", null, "27536", null, "3435", null, "64409", null, "4482", null, "64892", null, "4006", null, "46893", null, "3467", null, "17926", null, "2716", null, "5094", null, "1506", null, "12832", null, "2348", null, "73", null, "123", null, "155701", null, "4467", null, "66222", null, "3643", null, "25143", null, "3149", null, "10439", null, "1983", null, "14704", null, "2334", null, "64336", null, "4492", null, "19755", null, "2573", null, "200838", null, "4650", null, "51527", null, "3119", null, "169066", null, "4498", null, "138112", null, "3580", null, "14262", null, "2275", null, "-999999999", "N", "-999999999", "N", "36134", null, "2362", null, "-999999999", "N", "-999999999", "N", "13304", null, "1750", null, "17944", null, "2235", null, "32774", null, "2571", null, "132634", null, "3696", null, "100945", null, "3042", null, "156184", null, "5734", null, "19709", null, "2281", null, "44498", null, "3895", null, "91977", null, "4674", null, "83.6", null, "1.2", null, "46.3", null, "1.4", null, "53.7", null, "1.4", null, "51.3", null, "2.0", null, "19.5", null, "1.8", null, "7.0", null, "1.1", null, "12.5", null, "1.5", null, "29.2", null, "2.0", null, "29.4", null, "1.7", null, "21.3", null, "1.6", null, "8.1", null, "1.2", null, "2.3", null, "0.7", null, "5.8", null, "1.0", null, "0.0", null, "0.1", null, "70.6", null, "1.7", null, "30.0", null, "1.5", null, "11.4", null, "1.4", null, "4.7", null, "0.9", null, "6.7", null, "1.0", null, "29.2", null, "2.0", null, "9.0", null, "1.2", null, "91.0", null, "1.2", null, "23.4", null, "1.4", null, "76.6", null, "1.4", null, "62.6", null, "1.3", null, "6.5", null, "1.0", null, "-999999999.0", "N", "-999999999.0", "N", "16.4", null, "1.0", null, "-999999999.0", "N", "-999999999.0", "N", "6.0", null, "0.8", null, "8.1", null, "1.0", null, "14.9", null, "1.1", null, "60.1", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.6", null, "1.3", null, "28.5", null, "2.3", null, "58.9", null, "2.3", null, "36", "11"], ["5001900US3612", "Congressional District 12 (119th Congress), New York", "404396", null, "10127", null, "150302", null, "5854", null, "254094", null, "8992", null, "124100", null, "7252", null, "25830", null, "4631", null, "8231", null, "3090", null, "17599", null, "2985", null, "254466", null, "9857", null, "51634", null, "4781", null, "42717", null, "4176", null, "8521", null, "2786", null, "3384", null, "2013", null, "5137", null, "1769", null, "396", null, "406", null, "352762", null, "10188", null, "81383", null, "6266", null, "17309", null, "3488", null, "4847", null, "2265", null, "12462", null, "2298", null, "254070", null, "9815", null, "33454", null, "4680", null, "370942", null, "9828", null, "61161", null, "5427", null, "343235", null, "10754", null, "270793", null, "7837", null, "21997", null, "4387", null, "-999999999", "N", "-999999999", "N", "59404", null, "4196", null, "-999999999", "N", "-999999999", "N", "17203", null, "3124", null, "34376", null, "4368", null, "43022", null, "4853", null, "261777", null, "8280", null, "153117", null, "6556", null, "149930", null, "7282", null, "15956", null, "2759", null, "44327", null, "4759", null, "89647", null, "5357", null, "-888888888", "(X)", "-888888888", "(X)", "37.2", null, "1.3", null, "62.8", null, "1.3", null, "30.7", null, "1.7", null, "6.4", null, "1.1", null, "2.0", null, "0.8", null, "4.4", null, "0.7", null, "62.9", null, "1.7", null, "12.8", null, "1.2", null, "10.6", null, "1.0", null, "2.1", null, "0.7", null, "0.8", null, "0.5", null, "1.3", null, "0.4", null, "0.1", null, "0.1", null, "87.2", null, "1.2", null, "20.1", null, "1.5", null, "4.3", null, "0.9", null, "1.2", null, "0.6", null, "3.1", null, "0.6", null, "62.8", null, "1.7", null, "8.3", null, "1.1", null, "91.7", null, "1.1", null, "15.1", null, "1.3", null, "84.9", null, "1.3", null, "67.0", null, "1.4", null, "5.4", null, "1.1", null, "-999999999.0", "N", "-999999999.0", "N", "14.7", null, "1.0", null, "-999999999.0", "N", "-999999999.0", "N", "4.3", null, "0.8", null, "8.5", null, "1.0", null, "10.6", null, "1.1", null, "64.7", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.6", null, "1.8", null, "29.6", null, "2.7", null, "59.8", null, "2.5", null, "24159", null, "4383", null, "17010", null, "3570", null, "7149", null, "2319", null, "4491", null, "2096", null, "5271", null, "2660", null, "2341", null, "2153", null, "2930", null, "1310", null, "14397", null, "2791", null, "4260", null, "2091", null, "1782", null, "1234", null, "2478", null, "1650", null, "951", null, "1218", null, "1527", null, "943", null, "0", null, "220", null, "19899", null, "3446", null, "2709", null, "1719", null, "2793", null, "1941", null, "1390", null, "1730", null, "1403", null, "924", null, "14397", null, "2791", null, "8145", null, "2539", null, "16014", null, "3911", null, "10656", null, "2824", null, "13503", null, "3411", null, "7773", null, "1851", null, "5759", null, "2666", null, "-999999999", "N", "-999999999", "N", "3379", null, "1509", null, "-999999999", "N", "-999999999", "N", "4363", null, "2149", null, "2531", null, "1135", null, "7190", null, "2266", null, "7279", null, "1769", null, "23985", null, "5777", null, "9762", null, "3372", null, "2277", null, "1550", null, "5223", null, "2683", null, "2262", null, "1353", null, "6.0", null, "1.1", null, "70.4", null, "7.8", null, "29.6", null, "7.8", null, "18.6", null, "7.6", null, "21.8", null, "9.2", null, "9.7", null, "8.1", null, "12.1", null, "5.3", null, "59.6", null, "9.6", null, "17.6", null, "7.1", null, "7.4", null, "4.8", null, "10.3", null, "6.0", null, "3.9", null, "4.8", null, "6.3", null, "3.5", null, "0.0", null, "0.8", null, "82.4", null, "7.1", null, "11.2", null, "6.6", null, "11.6", null, "7.7", null, "5.8", null, "6.9", null, "5.8", null, "4.1", null, "59.6", null, "9.6", null, "33.7", null, "9.5", null, "66.3", null, "9.5", null, "44.1", null, "9.1", null, "55.9", null, "9.1", null, "32.2", null, "6.9", null, "23.8", null, "9.2", null, "-999999999.0", "N", "-999999999.0", "N", "14.0", null, "6.1", null, "-999999999.0", "N", "-999999999.0", "N", "18.1", null, "8.0", null, "10.5", null, "4.5", null, "29.8", null, "7.7", null, "30.1", null, "6.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "23.3", null, "14.0", null, "53.5", null, "16.8", null, "23.2", null, "13.5", null, "380237", null, "10093", null, "133292", null, "5531", null, "246945", null, "8679", null, "119609", null, "6906", null, "20559", null, "4121", null, "5890", null, "2396", null, "14669", null, "2970", null, "240069", null, "9588", null, "47374", null, "4738", null, "40935", null, "4213", null, "6043", null, "2395", null, "2433", null, "1641", null, "3610", null, "1577", null, "396", null, "406", null, "332863", null, "9936", null, "78674", null, "5848", null, "14516", null, "2921", null, "3457", null, "1521", null, "11059", null, "2356", null, "239673", null, "9519", null, "25309", null, "3636", null, "354928", null, "9587", null, "50505", null, "4521", null, "329732", null, "10568", null, "263020", null, "7927", null, "16238", null, "3446", null, "-999999999", "N", "-999999999", "N", "56025", null, "4150", null, "-999999999", "N", "-999999999", "N", "12840", null, "2499", null, "31845", null, "4301", null, "35832", null, "4301", null, "254498", null, "8321", null, "162511", null, "6829", null, "140168", null, "7043", null, "13679", null, "2268", null, "39104", null, "4487", null, "87385", null, "5236", null, "94.0", null, "1.1", null, "35.1", null, "1.3", null, "64.9", null, "1.3", null, "31.5", null, "1.7", null, "5.4", null, "1.1", null, "1.5", null, "0.6", null, "3.9", null, "0.8", null, "63.1", null, "1.7", null, "12.5", null, "1.2", null, "10.8", null, "1.1", null, "1.6", null, "0.6", null, "0.6", null, "0.4", null, "0.9", null, "0.4", null, "0.1", null, "0.1", null, "87.5", null, "1.2", null, "20.7", null, "1.5", null, "3.8", null, "0.8", null, "0.9", null, "0.4", null, "2.9", null, "0.6", null, "63.0", null, "1.7", null, "6.7", null, "0.9", null, "93.3", null, "0.9", null, "13.3", null, "1.2", null, "86.7", null, "1.2", null, "69.2", null, "1.4", null, "4.3", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "14.7", null, "1.1", null, "-999999999.0", "N", "-999999999.0", "N", "3.4", null, "0.6", null, "8.4", null, "1.1", null, "9.4", null, "1.1", null, "66.9", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "9.8", null, "1.5", null, "27.9", null, "2.7", null, "62.3", null, "2.5", null, "36", "12"], ["5001900US3613", "Congressional District 13 (119th Congress), New York", "311592", null, "8498", null, "134629", null, "5468", null, "176963", null, "8356", null, "67004", null, "4719", null, "89727", null, "6653", null, "24355", null, "3526", null, "65372", null, "5610", null, "154861", null, "8105", null, "67360", null, "6274", null, "29782", null, "3539", null, "37415", null, "4661", null, "8698", null, "2258", null, "28717", null, "4211", null, "163", null, "237", null, "244232", null, "8908", null, "37222", null, "4309", null, "52312", null, "5289", null, "15657", null, "3157", null, "36655", null, "4429", null, "154698", null, "8058", null, "80573", null, "5513", null, "231019", null, "8696", null, "97921", null, "7328", null, "213671", null, "8577", null, "72257", null, "5216", null, "87324", null, "6343", null, "3523", null, "1519", null, "15349", null, "2631", null, "-999999999", "N", "-999999999", "N", "78218", null, "5321", null, "54319", null, "5121", null, "143676", null, "6276", null, "60974", null, "4630", null, "52401", null, "4061", null, "156731", null, "8151", null, "21961", null, "3130", null, "61858", null, "5785", null, "72912", null, "5745", null, "-888888888", "(X)", "-888888888", "(X)", "43.2", null, "1.7", null, "56.8", null, "1.7", null, "21.5", null, "1.4", null, "28.8", null, "2.0", null, "7.8", null, "1.1", null, "21.0", null, "1.7", null, "49.7", null, "2.2", null, "21.6", null, "1.9", null, "9.6", null, "1.1", null, "12.0", null, "1.4", null, "2.8", null, "0.7", null, "9.2", null, "1.3", null, "0.1", null, "0.1", null, "78.4", null, "1.9", null, "11.9", null, "1.3", null, "16.8", null, "1.7", null, "5.0", null, "1.0", null, "11.8", null, "1.4", null, "49.6", null, "2.2", null, "25.9", null, "1.7", null, "74.1", null, "1.7", null, "31.4", null, "2.1", null, "68.6", null, "2.1", null, "23.2", null, "1.5", null, "28.0", null, "1.7", null, "1.1", null, "0.5", null, "4.9", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "25.1", null, "1.7", null, "17.4", null, "1.6", null, "46.1", null, "1.7", null, "19.6", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.0", null, "1.8", null, "39.5", null, "2.9", null, "46.5", null, "3.0", null, "103509", null, "6871", null, "56331", null, "4814", null, "47178", null, "5514", null, "14536", null, "2936", null, "44129", null, "5156", null, "7928", null, "2512", null, "36201", null, "4637", null, "44844", null, "4865", null, "27969", null, "4710", null, "8298", null, "2539", null, "19508", null, "3653", null, "2707", null, "1535", null, "16801", null, "3606", null, "163", null, "237", null, "75540", null, "6117", null, "6238", null, "1897", null, "24621", null, "3957", null, "5221", null, "2239", null, "19400", null, "3136", null, "44681", null, "4834", null, "50126", null, "4556", null, "53383", null, "5321", null, "53582", null, "5575", null, "49927", null, "4652", null, "11001", null, "1979", null, "31298", null, "4689", null, "1518", null, "1077", null, "2048", null, "896", null, "-999999999", "N", "-999999999", "N", "36713", null, "3949", null, "20868", null, "3792", null, "63286", null, "4871", null, "5502", null, "1798", null, "22992", null, "1565", null, "58665", null, "6065", null, "13265", null, "2601", null, "27234", null, "4027", null, "18166", null, "3118", null, "33.2", null, "2.1", null, "54.4", null, "3.8", null, "45.6", null, "3.8", null, "14.0", null, "2.6", null, "42.6", null, "4.0", null, "7.7", null, "2.3", null, "35.0", null, "3.8", null, "43.3", null, "4.1", null, "27.0", null, "4.0", null, "8.0", null, "2.3", null, "18.8", null, "3.3", null, "2.6", null, "1.5", null, "16.2", null, "3.3", null, "0.2", null, "0.2", null, "73.0", null, "4.0", null, "6.0", null, "1.8", null, "23.8", null, "3.4", null, "5.0", null, "2.1", null, "18.7", null, "2.8", null, "43.2", null, "4.1", null, "48.4", null, "3.4", null, "51.6", null, "3.4", null, "51.8", null, "3.7", null, "48.2", null, "3.7", null, "10.6", null, "1.7", null, "30.2", null, "3.5", null, "1.5", null, "1.0", null, "2.0", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "35.5", null, "3.6", null, "20.2", null, "3.5", null, "61.1", null, "3.6", null, "5.3", null, "1.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "22.6", null, "4.0", null, "46.4", null, "4.5", null, "31.0", null, "4.3", null, "208083", null, "9058", null, "78298", null, "5692", null, "129785", null, "7400", null, "52468", null, "4819", null, "45598", null, "4221", null, "16427", null, "2860", null, "29171", null, "3930", null, "110017", null, "7213", null, "39391", null, "4468", null, "21484", null, "3152", null, "17907", null, "2990", null, "5991", null, "1699", null, "11916", null, "2545", null, "0", null, "220", null, "168692", null, "8927", null, "30984", null, "4081", null, "27691", null, "3507", null, "10436", null, "2471", null, "17255", null, "3148", null, "110017", null, "7213", null, "30447", null, "4637", null, "177636", null, "8791", null, "44339", null, "4892", null, "163744", null, "8400", null, "61256", null, "5000", null, "56026", null, "5815", null, "2005", null, "960", null, "13301", null, "2387", null, "-999999999", "N", "-999999999", "N", "41505", null, "4266", null, "33451", null, "3952", null, "80390", null, "5732", null, "55472", null, "4324", null, "73786", null, "5739", null, "98066", null, "5866", null, "8696", null, "2103", null, "34624", null, "4254", null, "54746", null, "4877", null, "66.8", null, "2.1", null, "37.6", null, "2.2", null, "62.4", null, "2.2", null, "25.2", null, "2.1", null, "21.9", null, "1.9", null, "7.9", null, "1.4", null, "14.0", null, "1.8", null, "52.9", null, "2.3", null, "18.9", null, "2.1", null, "10.3", null, "1.5", null, "8.6", null, "1.4", null, "2.9", null, "0.8", null, "5.7", null, "1.2", null, "0.0", null, "0.1", null, "81.1", null, "2.1", null, "14.9", null, "1.8", null, "13.3", null, "1.7", null, "5.0", null, "1.2", null, "8.3", null, "1.5", null, "52.9", null, "2.3", null, "14.6", null, "2.1", null, "85.4", null, "2.1", null, "21.3", null, "2.2", null, "78.7", null, "2.2", null, "29.4", null, "2.2", null, "26.9", null, "2.4", null, "1.0", null, "0.5", null, "6.4", null, "1.1", null, "-999999999.0", "N", "-999999999.0", "N", "19.9", null, "1.9", null, "16.1", null, "1.8", null, "38.6", null, "2.2", null, "26.7", null, "1.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "8.9", null, "2.0", null, "35.3", null, "3.7", null, "55.8", null, "3.9", null, "36", "13"], ["5001900US3614", "Congressional District 14 (119th Congress), New York", "281606", null, "6864", null, "112365", null, "5463", null, "169241", null, "6489", null, "91873", null, "6027", null, "83475", null, "5744", null, "25590", null, "3468", null, "57885", null, "5350", null, "106258", null, "5924", null, "85073", null, "6047", null, "43086", null, "4412", null, "41778", null, "4641", null, "10250", null, "2320", null, "31528", null, "4302", null, "209", null, "265", null, "196533", null, "6597", null, "48787", null, "4513", null, "41697", null, "3877", null, "15340", null, "2795", null, "26357", null, "3221", null, "106049", null, "5933", null, "57030", null, "4927", null, "224576", null, "6550", null, "77929", null, "5135", null, "203677", null, "8441", null, "77897", null, "4380", null, "43637", null, "3861", null, "4244", null, "1382", null, "30593", null, "2498", null, "-999999999", "N", "-999999999", "N", "89451", null, "5497", null, "35626", null, "3536", null, "138914", null, "6108", null, "65675", null, "3845", null, "64547", null, "4942", null, "175348", null, "7579", null, "26741", null, "3472", null, "61419", null, "5277", null, "87188", null, "5767", null, "-888888888", "(X)", "-888888888", "(X)", "39.9", null, "1.7", null, "60.1", null, "1.7", null, "32.6", null, "2.0", null, "29.6", null, "1.8", null, "9.1", null, "1.2", null, "20.6", null, "1.7", null, "37.7", null, "2.0", null, "30.2", null, "1.9", null, "15.3", null, "1.5", null, "14.8", null, "1.5", null, "3.6", null, "0.8", null, "11.2", null, "1.5", null, "0.1", null, "0.1", null, "69.8", null, "1.9", null, "17.3", null, "1.6", null, "14.8", null, "1.3", null, "5.4", null, "1.0", null, "9.4", null, "1.1", null, "37.7", null, "2.0", null, "20.3", null, "1.6", null, "79.7", null, "1.6", null, "27.7", null, "1.9", null, "72.3", null, "1.9", null, "27.7", null, "1.5", null, "15.5", null, "1.3", null, "1.5", null, "0.5", null, "10.9", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "31.8", null, "1.8", null, "12.7", null, "1.2", null, "49.3", null, "1.7", null, "23.3", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.3", null, "1.9", null, "35.0", null, "2.5", null, "49.7", null, "2.6", null, "78035", null, "4812", null, "35947", null, "3472", null, "42088", null, "3947", null, "18513", null, "2609", null, "36406", null, "3550", null, "6735", null, "1536", null, "29671", null, "3422", null, "23116", null, "3253", null, "32559", null, "3109", null, "9970", null, "1885", null, "22589", null, "3204", null, "3515", null, "996", null, "19074", null, "3169", null, "0", null, "220", null, "45476", null, "4132", null, "8543", null, "1752", null, "13817", null, "2367", null, "3220", null, "1252", null, "10597", null, "2010", null, "23116", null, "3253", null, "34308", null, "4071", null, "43727", null, "4114", null, "35198", null, "3670", null, "42837", null, "4626", null, "8362", null, "2130", null, "16571", null, "2906", null, "1825", null, "961", null, "5492", null, "1250", null, "-999999999", "N", "-999999999", "N", "35241", null, "3633", null, "10386", null, "1929", null, "50420", null, "3599", null, "4412", null, "1146", null, "29014", null, "4205", null, "54919", null, "3681", null, "14577", null, "2746", null, "23383", null, "3298", null, "16959", null, "2631", null, "27.7", null, "1.5", null, "46.1", null, "3.6", null, "53.9", null, "3.6", null, "23.7", null, "3.3", null, "46.7", null, "3.7", null, "8.6", null, "1.9", null, "38.0", null, "3.7", null, "29.6", null, "3.3", null, "41.7", null, "3.4", null, "12.8", null, "2.4", null, "28.9", null, "3.7", null, "4.5", null, "1.3", null, "24.4", null, "3.7", null, "0.0", null, "0.3", null, "58.3", null, "3.4", null, "10.9", null, "2.2", null, "17.7", null, "2.8", null, "4.1", null, "1.6", null, "13.6", null, "2.5", null, "29.6", null, "3.3", null, "44.0", null, "4.3", null, "56.0", null, "4.3", null, "45.1", null, "4.3", null, "54.9", null, "4.3", null, "10.7", null, "2.6", null, "21.2", null, "3.1", null, "2.3", null, "1.2", null, "7.0", null, "1.6", null, "-999999999.0", "N", "-999999999.0", "N", "45.2", null, "4.2", null, "13.3", null, "2.4", null, "64.6", null, "3.5", null, "5.7", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "26.5", null, "4.6", null, "42.6", null, "5.1", null, "30.9", null, "4.6", null, "203571", null, "6223", null, "76418", null, "4655", null, "127153", null, "5478", null, "73360", null, "5310", null, "47069", null, "4389", null, "18855", null, "3027", null, "28214", null, "3779", null, "83142", null, "5351", null, "52514", null, "4862", null, "33116", null, "3927", null, "19189", null, "2894", null, "6735", null, "2100", null, "12454", null, "2503", null, "209", null, "265", null, "151057", null, "5829", null, "40244", null, "4033", null, "27880", null, "3185", null, "12120", null, "2414", null, "15760", null, "2328", null, "82933", null, "5348", null, "22722", null, "3077", null, "180849", null, "6407", null, "42731", null, "3547", null, "160840", null, "6720", null, "69535", null, "3741", null, "27066", null, "3370", null, "2419", null, "1138", null, "25101", null, "2527", null, "-999999999", "N", "-999999999", "N", "54210", null, "5054", null, "25240", null, "3311", null, "88494", null, "5606", null, "61263", null, "3588", null, "84096", null, "3607", null, "120429", null, "6250", null, "12164", null, "2095", null, "38036", null, "4381", null, "70229", null, "5116", null, "72.3", null, "1.5", null, "37.5", null, "1.9", null, "62.5", null, "1.9", null, "36.0", null, "2.4", null, "23.1", null, "2.0", null, "9.3", null, "1.4", null, "13.9", null, "1.8", null, "40.8", null, "2.4", null, "25.8", null, "2.1", null, "16.3", null, "1.8", null, "9.4", null, "1.4", null, "3.3", null, "1.0", null, "6.1", null, "1.2", null, "0.1", null, "0.1", null, "74.2", null, "2.1", null, "19.8", null, "2.0", null, "13.7", null, "1.5", null, "6.0", null, "1.1", null, "7.7", null, "1.1", null, "40.7", null, "2.4", null, "11.2", null, "1.5", null, "88.8", null, "1.5", null, "21.0", null, "1.8", null, "79.0", null, "1.8", null, "34.2", null, "1.9", null, "13.3", null, "1.5", null, "1.2", null, "0.6", null, "12.3", null, "1.2", null, "-999999999.0", "N", "-999999999.0", "N", "26.6", null, "2.2", null, "12.4", null, "1.6", null, "43.5", null, "2.2", null, "30.1", null, "1.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.1", null, "1.7", null, "31.6", null, "3.0", null, "58.3", null, "3.2", null, "36", "14"], ["5001900US3615", "Congressional District 15 (119th Congress), New York", "290505", null, "6075", null, "118828", null, "4796", null, "171677", null, "6370", null, "70338", null, "5683", null, "110158", null, "6746", null, "22266", null, "3412", null, "87892", null, "5530", null, "110009", null, "6216", null, "89818", null, "5574", null, "32090", null, "4322", null, "57318", null, "5481", null, "7550", null, "1934", null, "49768", null, "4761", null, "410", null, "444", null, "200687", null, "6105", null, "38248", null, "3124", null, "52840", null, "4788", null, "14716", null, "2764", null, "38124", null, "3956", null, "109599", null, "6109", null, "91126", null, "5596", null, "199379", null, "7196", null, "120750", null, "5626", null, "169755", null, "6551", null, "36920", null, "3322", null, "111247", null, "5659", null, "4361", null, "1528", null, "7842", null, "1344", null, "-999999999", "N", "-999999999", "N", "98433", null, "5261", null, "31553", null, "3194", null, "152532", null, "5158", null, "26209", null, "2532", null, "44554", null, "2807", null, "180496", null, "7101", null, "31732", null, "3947", null, "71310", null, "5480", null, "77454", null, "5284", null, "-888888888", "(X)", "-888888888", "(X)", "40.9", null, "1.6", null, "59.1", null, "1.6", null, "24.2", null, "1.9", null, "37.9", null, "2.2", null, "7.7", null, "1.1", null, "30.3", null, "1.8", null, "37.9", null, "2.0", null, "30.9", null, "1.7", null, "11.0", null, "1.5", null, "19.7", null, "1.8", null, "2.6", null, "0.7", null, "17.1", null, "1.6", null, "0.1", null, "0.2", null, "69.1", null, "1.7", null, "13.2", null, "1.1", null, "18.2", null, "1.6", null, "5.1", null, "0.9", null, "13.1", null, "1.4", null, "37.7", null, "2.0", null, "31.4", null, "1.9", null, "68.6", null, "1.9", null, "41.6", null, "1.8", null, "58.4", null, "1.8", null, "12.7", null, "1.1", null, "38.3", null, "1.7", null, "1.5", null, "0.5", null, "2.7", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "33.9", null, "1.7", null, "10.9", null, "1.1", null, "52.5", null, "1.6", null, "9.0", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.6", null, "2.0", null, "39.5", null, "2.7", null, "42.9", null, "2.4", null, "129117", null, "5530", null, "56523", null, "4622", null, "72594", null, "4674", null, "19427", null, "3046", null, "59378", null, "5496", null, "8310", null, "2197", null, "51068", null, "4428", null, "50312", null, "4467", null, "49509", null, "4462", null, "11426", null, "2316", null, "37720", null, "4448", null, "4306", null, "1515", null, "33414", null, "3874", null, "363", null, "441", null, "79608", null, "4872", null, "8001", null, "2051", null, "21658", null, "3127", null, "4004", null, "1388", null, "17654", null, "2611", null, "49949", null, "4351", null, "69228", null, "5489", null, "59889", null, "4879", null, "71381", null, "4359", null, "57736", null, "4393", null, "10518", null, "2264", null, "46610", null, "4543", null, "2299", null, "1361", null, "2325", null, "945", null, "-999999999", "N", "-999999999", "N", "51484", null, "4670", null, "15795", null, "2411", null, "80756", null, "5234", null, "4071", null, "1245", null, "19352", null, "2012", null, "78805", null, "5656", null, "22938", null, "3495", null, "35020", null, "4020", null, "20847", null, "2617", null, "44.4", null, "1.7", null, "43.8", null, "2.9", null, "56.2", null, "2.9", null, "15.0", null, "2.3", null, "46.0", null, "3.4", null, "6.4", null, "1.6", null, "39.6", null, "2.8", null, "39.0", null, "3.2", null, "38.3", null, "2.9", null, "8.8", null, "1.8", null, "29.2", null, "3.0", null, "3.3", null, "1.1", null, "25.9", null, "2.7", null, "0.3", null, "0.3", null, "61.7", null, "2.9", null, "6.2", null, "1.6", null, "16.8", null, "2.3", null, "3.1", null, "1.1", null, "13.7", null, "1.9", null, "38.7", null, "3.1", null, "53.6", null, "3.4", null, "46.4", null, "3.4", null, "55.3", null, "2.6", null, "44.7", null, "2.6", null, "8.1", null, "1.7", null, "36.1", null, "3.1", null, "1.8", null, "1.0", null, "1.8", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "39.9", null, "3.2", null, "12.2", null, "1.8", null, "62.5", null, "3.2", null, "3.2", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "29.1", null, "3.7", null, "44.4", null, "3.9", null, "26.5", null, "3.2", null, "161388", null, "6148", null, "62305", null, "4210", null, "99083", null, "6002", null, "50911", null, "4489", null, "50780", null, "4734", null, "13956", null, "2518", null, "36824", null, "3697", null, "59697", null, "4482", null, "40309", null, "4643", null, "20664", null, "3138", null, "19598", null, "3576", null, "3244", null, "1373", null, "16354", null, "2961", null, "47", null, "79", null, "121079", null, "5549", null, "30247", null, "2930", null, "31182", null, "3309", null, "10712", null, "2094", null, "20470", null, "2737", null, "59650", null, "4464", null, "21898", null, "2828", null, "139490", null, "6082", null, "49369", null, "3699", null, "112019", null, "5995", null, "26402", null, "2487", null, "64637", null, "5104", null, "2062", null, "914", null, "5517", null, "1078", null, "-999999999", "N", "-999999999", "N", "46949", null, "4023", null, "15758", null, "2264", null, "71776", null, "4879", null, "22138", null, "2342", null, "69476", null, "3376", null, "101691", null, "5700", null, "8794", null, "1657", null, "36290", null, "4446", null, "56607", null, "4506", null, "55.6", null, "1.7", null, "38.6", null, "2.5", null, "61.4", null, "2.5", null, "31.5", null, "2.6", null, "31.5", null, "2.6", null, "8.6", null, "1.5", null, "22.8", null, "2.1", null, "37.0", null, "2.5", null, "25.0", null, "2.5", null, "12.8", null, "1.9", null, "12.1", null, "2.1", null, "2.0", null, "0.8", null, "10.1", null, "1.7", null, "0.0", null, "0.1", null, "75.0", null, "2.5", null, "18.7", null, "1.7", null, "19.3", null, "2.0", null, "6.6", null, "1.3", null, "12.7", null, "1.7", null, "37.0", null, "2.5", null, "13.6", null, "1.7", null, "86.4", null, "1.7", null, "30.6", null, "2.2", null, "69.4", null, "2.2", null, "16.4", null, "1.4", null, "40.1", null, "2.5", null, "1.3", null, "0.6", null, "3.4", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "29.1", null, "2.2", null, "9.8", null, "1.4", null, "44.5", null, "2.6", null, "13.7", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "8.6", null, "1.6", null, "35.7", null, "3.6", null, "55.7", null, "3.5", null, "36", "15"], ["5001900US3616", "Congressional District 16 (119th Congress), New York", "297652", null, "4447", null, "135883", null, "4642", null, "161769", null, "4443", null, "132368", null, "4714", null, "58706", null, "4941", null, "14524", null, "2700", null, "44182", null, "4040", null, "106578", null, "4841", null, "84157", null, "4691", null, "56669", null, "3444", null, "26718", null, "3636", null, "5026", null, "1340", null, "21692", null, "3229", null, "770", null, "464", null, "213495", null, "6195", null, "75699", null, "4394", null, "31988", null, "4129", null, "9498", null, "2121", null, "22490", null, "3213", null, "105808", null, "4826", null, "35575", null, "3743", null, "262077", null, "5380", null, "69309", null, "3674", null, "228343", null, "5333", null, "136182", null, "4727", null, "64501", null, "3489", null, "1489", null, "823", null, "17285", null, "1428", null, "-999999999", "N", "-999999999", "N", "41737", null, "3449", null, "36458", null, "3712", null, "80681", null, "3625", null, "126590", null, "3965", null, "102025", null, "3242", null, "191074", null, "5116", null, "21874", null, "2714", null, "58845", null, "3746", null, "110355", null, "5259", null, "-888888888", "(X)", "-888888888", "(X)", "45.7", null, "1.3", null, "54.3", null, "1.3", null, "44.5", null, "1.6", null, "19.7", null, "1.6", null, "4.9", null, "0.9", null, "14.8", null, "1.3", null, "35.8", null, "1.5", null, "28.3", null, "1.6", null, "19.0", null, "1.2", null, "9.0", null, "1.2", null, "1.7", null, "0.4", null, "7.3", null, "1.1", null, "0.3", null, "0.2", null, "71.7", null, "1.6", null, "25.4", null, "1.4", null, "10.7", null, "1.3", null, "3.2", null, "0.7", null, "7.6", null, "1.1", null, "35.5", null, "1.5", null, "12.0", null, "1.2", null, "88.0", null, "1.2", null, "23.3", null, "1.2", null, "76.7", null, "1.2", null, "45.8", null, "1.4", null, "21.7", null, "1.2", null, "0.5", null, "0.3", null, "5.8", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "14.0", null, "1.1", null, "12.2", null, "1.2", null, "27.1", null, "1.1", null, "42.5", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.4", null, "1.4", null, "30.8", null, "1.9", null, "57.8", null, "2.0", null, "33998", null, "3735", null, "17107", null, "2640", null, "16891", null, "2854", null, "8021", null, "1676", null, "13056", null, "2625", null, "1387", null, "555", null, "11669", null, "2552", null, "12921", null, "2562", null, "12643", null, "2494", null, "4566", null, "1290", null, "7753", null, "2025", null, "492", null, "373", null, "7261", null, "1972", null, "324", null, "269", null, "21355", null, "2872", null, "3455", null, "1141", null, "5303", null, "1690", null, "895", null, "509", null, "4408", null, "1564", null, "12597", null, "2516", null, "14861", null, "2566", null, "19137", null, "2638", null, "16199", null, "2597", null, "17799", null, "2914", null, "5628", null, "1478", null, "10529", null, "1929", null, "792", null, "579", null, "561", null, "395", null, "-999999999", "N", "-999999999", "N", "8988", null, "2230", null, "7500", null, "1958", null, "17711", null, "2826", null, "3909", null, "1125", null, "33495", null, "4414", null, "21077", null, "2906", null, "4780", null, "1654", null, "7776", null, "1937", null, "8521", null, "1860", null, "11.4", null, "1.2", null, "50.3", null, "6.0", null, "49.7", null, "6.0", null, "23.6", null, "4.8", null, "38.4", null, "6.1", null, "4.1", null, "1.6", null, "34.3", null, "6.1", null, "38.0", null, "5.9", null, "37.2", null, "5.7", null, "13.4", null, "3.6", null, "22.8", null, "5.0", null, "1.4", null, "1.1", null, "21.4", null, "4.9", null, "1.0", null, "0.8", null, "62.8", null, "5.7", null, "10.2", null, "3.5", null, "15.6", null, "4.9", null, "2.6", null, "1.5", null, "13.0", null, "4.5", null, "37.1", null, "5.7", null, "43.7", null, "5.4", null, "56.3", null, "5.4", null, "47.6", null, "6.0", null, "52.4", null, "6.0", null, "16.6", null, "4.3", null, "31.0", null, "4.8", null, "2.3", null, "1.7", null, "1.7", null, "1.2", null, "-999999999.0", "N", "-999999999.0", "N", "26.4", null, "5.3", null, "22.1", null, "5.0", null, "52.1", null, "5.6", null, "11.5", null, "3.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "22.7", null, "6.8", null, "36.9", null, "7.3", null, "40.4", null, "8.0", null, "263654", null, "5259", null, "118776", null, "4400", null, "144878", null, "4697", null, "124347", null, "4893", null, "45650", null, "4857", null, "13137", null, "2672", null, "32513", null, "3876", null, "93657", null, "4762", null, "71514", null, "4475", null, "52103", null, "3579", null, "18965", null, "3288", null, "4534", null, "1333", null, "14431", null, "2900", null, "446", null, "354", null, "192140", null, "5790", null, "72244", null, "4493", null, "26685", null, "3735", null, "8603", null, "2024", null, "18082", null, "2857", null, "93211", null, "4790", null, "20714", null, "2756", null, "242940", null, "5807", null, "53110", null, "3260", null, "210544", null, "5478", null, "130554", null, "4387", null, "53972", null, "3510", null, "697", null, "553", null, "16724", null, "1459", null, "-999999999", "N", "-999999999", "N", "32749", null, "3633", null, "28958", null, "3372", null, "62970", null, "3853", null, "122681", null, "3776", null, "114847", null, "5835", null, "169997", null, "5170", null, "17094", null, "2098", null, "51069", null, "3378", null, "101834", null, "5147", null, "88.6", null, "1.2", null, "45.0", null, "1.4", null, "55.0", null, "1.4", null, "47.2", null, "1.8", null, "17.3", null, "1.8", null, "5.0", null, "1.0", null, "12.3", null, "1.4", null, "35.5", null, "1.6", null, "27.1", null, "1.6", null, "19.8", null, "1.3", null, "7.2", null, "1.2", null, "1.7", null, "0.5", null, "5.5", null, "1.1", null, "0.2", null, "0.1", null, "72.9", null, "1.6", null, "27.4", null, "1.7", null, "10.1", null, "1.4", null, "3.3", null, "0.8", null, "6.9", null, "1.1", null, "35.4", null, "1.6", null, "7.9", null, "1.0", null, "92.1", null, "1.0", null, "20.1", null, "1.2", null, "79.9", null, "1.2", null, "49.5", null, "1.5", null, "20.5", null, "1.2", null, "0.3", null, "0.2", null, "6.3", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "12.4", null, "1.3", null, "11.0", null, "1.3", null, "23.9", null, "1.3", null, "46.5", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.1", null, "1.2", null, "30.0", null, "2.0", null, "59.9", null, "1.9", null, "36", "16"], ["5001900US3617", "Congressional District 17 (119th Congress), New York", "261372", null, "3891", null, "129431", null, "4107", null, "131941", null, "3683", null, "154810", null, "4821", null, "36912", null, "3229", null, "11456", null, "2111", null, "25456", null, "2881", null, "69650", null, "3322", null, "84474", null, "3189", null, "66901", null, "3447", null, "16631", null, "2109", null, "5782", null, "1496", null, "10849", null, "1774", null, "942", null, "680", null, "176898", null, "4301", null, "87909", null, "4104", null, "20281", null, "2441", null, "5674", null, "1592", null, "14607", null, "2191", null, "68708", null, "3169", null, "24254", null, "2683", null, "237118", null, "4291", null, "56704", null, "3829", null, "204668", null, "4462", null, "182088", null, "4048", null, "18066", null, "1688", null, "1157", null, "696", null, "14049", null, "1458", null, "-999999999", "N", "-999999999", "N", "24997", null, "2362", null, "20930", null, "2152", null, "47144", null, "2765", null, "174754", null, "3652", null, "123436", null, "3288", null, "191722", null, "4483", null, "22979", null, "2338", null, "55470", null, "4451", null, "113273", null, "4693", null, "-888888888", "(X)", "-888888888", "(X)", "49.5", null, "1.3", null, "50.5", null, "1.3", null, "59.2", null, "1.6", null, "14.1", null, "1.2", null, "4.4", null, "0.8", null, "9.7", null, "1.1", null, "26.6", null, "1.2", null, "32.3", null, "1.2", null, "25.6", null, "1.3", null, "6.4", null, "0.8", null, "2.2", null, "0.6", null, "4.2", null, "0.7", null, "0.4", null, "0.3", null, "67.7", null, "1.2", null, "33.6", null, "1.4", null, "7.8", null, "0.9", null, "2.2", null, "0.6", null, "5.6", null, "0.8", null, "26.3", null, "1.2", null, "9.3", null, "1.0", null, "90.7", null, "1.0", null, "21.7", null, "1.4", null, "78.3", null, "1.4", null, "69.7", null, "1.2", null, "6.9", null, "0.6", null, "0.4", null, "0.3", null, "5.4", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "9.6", null, "0.9", null, "8.0", null, "0.8", null, "18.0", null, "1.0", null, "66.9", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.0", null, "1.2", null, "28.9", null, "2.1", null, "59.1", null, "2.2", null, "18104", null, "2471", null, "7698", null, "1466", null, "10406", null, "1961", null, "10113", null, "1859", null, "3920", null, "1113", null, "903", null, "751", null, "3017", null, "950", null, "4071", null, "1007", null, "10169", null, "1962", null, "7524", null, "1656", null, "2590", null, "900", null, "535", null, "631", null, "2055", null, "764", null, "55", null, "102", null, "7935", null, "1369", null, "2589", null, "887", null, "1330", null, "598", null, "368", null, "291", null, "962", null, "547", null, "4016", null, "995", null, "7474", null, "1503", null, "10630", null, "1862", null, "7186", null, "1536", null, "10918", null, "1921", null, "10363", null, "1545", null, "2496", null, "964", null, "160", null, "205", null, "850", null, "504", null, "-999999999", "N", "-999999999", "N", "3180", null, "1297", null, "1055", null, "504", null, "4585", null, "1352", null, "9969", null, "1586", null, "39030", null, "8312", null, "14033", null, "2155", null, "2015", null, "832", null, "5469", null, "1281", null, "6549", null, "1511", null, "6.9", null, "1.0", null, "42.5", null, "6.6", null, "57.5", null, "6.6", null, "55.9", null, "6.5", null, "21.7", null, "5.4", null, "5.0", null, "4.0", null, "16.7", null, "4.9", null, "22.5", null, "4.8", null, "56.2", null, "6.2", null, "41.6", null, "6.5", null, "14.3", null, "4.4", null, "3.0", null, "3.4", null, "11.4", null, "4.0", null, "0.3", null, "0.6", null, "43.8", null, "6.2", null, "14.3", null, "4.7", null, "7.3", null, "3.3", null, "2.0", null, "1.6", null, "5.3", null, "3.0", null, "22.2", null, "4.8", null, "41.3", null, "6.3", null, "58.7", null, "6.3", null, "39.7", null, "6.6", null, "60.3", null, "6.6", null, "57.2", null, "6.9", null, "13.8", null, "5.0", null, "0.9", null, "1.1", null, "4.7", null, "2.6", null, "-999999999.0", "N", "-999999999.0", "N", "17.6", null, "6.1", null, "5.8", null, "2.8", null, "25.3", null, "6.0", null, "55.1", null, "6.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.4", null, "5.6", null, "39.0", null, "7.1", null, "46.7", null, "7.6", null, "243268", null, "4863", null, "121733", null, "4258", null, "121535", null, "4164", null, "144697", null, "4902", null, "32992", null, "3097", null, "10553", null, "1958", null, "22439", null, "2840", null, "65579", null, "3119", null, "74305", null, "3704", null, "59377", null, "3810", null, "14041", null, "2054", null, "5247", null, "1427", null, "8794", null, "1655", null, "887", null, "673", null, "168963", null, "4405", null, "85320", null, "4103", null, "18951", null, "2364", null, "5306", null, "1514", null, "13645", null, "2178", null, "64692", null, "2952", null, "16780", null, "2491", null, "226488", null, "4785", null, "49518", null, "3528", null, "193750", null, "4748", null, "171725", null, "4163", null, "15570", null, "1629", null, "997", null, "693", null, "13199", null, "1468", null, "-999999999", "N", "-999999999", "N", "21817", null, "2334", null, "19875", null, "2119", null, "42559", null, "2652", null, "164785", null, "3821", null, "129949", null, "3868", null, "177689", null, "4966", null, "20964", null, "2274", null, "50001", null, "4233", null, "106724", null, "4868", null, "93.1", null, "1.0", null, "50.0", null, "1.4", null, "50.0", null, "1.4", null, "59.5", null, "1.6", null, "13.6", null, "1.2", null, "4.3", null, "0.8", null, "9.2", null, "1.1", null, "27.0", null, "1.2", null, "30.5", null, "1.3", null, "24.4", null, "1.5", null, "5.8", null, "0.8", null, "2.2", null, "0.6", null, "3.6", null, "0.7", null, "0.4", null, "0.3", null, "69.5", null, "1.3", null, "35.1", null, "1.6", null, "7.8", null, "0.9", null, "2.2", null, "0.6", null, "5.6", null, "0.9", null, "26.6", null, "1.2", null, "6.9", null, "1.0", null, "93.1", null, "1.0", null, "20.4", null, "1.3", null, "79.6", null, "1.3", null, "70.6", null, "1.3", null, "6.4", null, "0.6", null, "0.4", null, "0.3", null, "5.4", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "9.0", null, "0.9", null, "8.2", null, "0.9", null, "17.5", null, "1.0", null, "67.7", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.8", null, "1.3", null, "28.1", null, "2.2", null, "60.1", null, "2.2", null, "36", "17"], ["5001900US3618", "Congressional District 18 (119th Congress), New York", "294497", null, "3304", null, "136147", null, "2782", null, "158350", null, "4084", null, "136072", null, "5432", null, "48365", null, "3955", null, "14509", null, "1982", null, "33856", null, "3553", null, "110060", null, "5506", null, "81880", null, "4156", null, "54528", null, "4013", null, "26342", null, "3434", null, "7912", null, "1644", null, "18430", null, "2914", null, "1010", null, "717", null, "212617", null, "4916", null, "81544", null, "4194", null, "22023", null, "2678", null, "6597", null, "1460", null, "15426", null, "2194", null, "109050", null, "5247", null, "28670", null, "2926", null, "265827", null, "4087", null, "81167", null, "4313", null, "213330", null, "5514", null, "212393", null, "4010", null, "25522", null, "2447", null, "870", null, "409", null, "8233", null, "1105", null, "-999999999", "N", "-999999999", "N", "19539", null, "2032", null, "27940", null, "2840", null, "46765", null, "2475", null, "202234", null, "3653", null, "91635", null, "3044", null, "184437", null, "5474", null, "22410", null, "2436", null, "56419", null, "4294", null, "105608", null, "5821", null, "-888888888", "(X)", "-888888888", "(X)", "46.2", null, "1.0", null, "53.8", null, "1.0", null, "46.2", null, "1.8", null, "16.4", null, "1.3", null, "4.9", null, "0.7", null, "11.5", null, "1.2", null, "37.4", null, "1.8", null, "27.8", null, "1.4", null, "18.5", null, "1.4", null, "8.9", null, "1.2", null, "2.7", null, "0.6", null, "6.3", null, "1.0", null, "0.3", null, "0.2", null, "72.2", null, "1.4", null, "27.7", null, "1.4", null, "7.5", null, "0.9", null, "2.2", null, "0.5", null, "5.2", null, "0.7", null, "37.0", null, "1.7", null, "9.7", null, "1.0", null, "90.3", null, "1.0", null, "27.6", null, "1.5", null, "72.4", null, "1.5", null, "72.1", null, "1.1", null, "8.7", null, "0.8", null, "0.3", null, "0.1", null, "2.8", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "6.6", null, "0.7", null, "9.5", null, "1.0", null, "15.9", null, "0.8", null, "68.7", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.2", null, "1.3", null, "30.6", null, "2.3", null, "57.3", null, "2.4", null, "28560", null, "2749", null, "13386", null, "1651", null, "15174", null, "2497", null, "7982", null, "1663", null, "7462", null, "1856", null, "741", null, "430", null, "6721", null, "1774", null, "13116", null, "1787", null, "11070", null, "2096", null, "6370", null, "1513", null, "4647", null, "1389", null, "551", null, "419", null, "4096", null, "1311", null, "53", null, "93", null, "17490", null, "2042", null, "1612", null, "543", null, "2815", null, "1026", null, "190", null, "164", null, "2625", null, "1008", null, "13063", null, "1794", null, "10822", null, "1894", null, "17738", null, "2312", null, "15041", null, "2099", null, "13519", null, "1857", null, "19298", null, "2406", null, "3635", null, "903", null, "124", null, "138", null, "254", null, "255", null, "-999999999", "N", "-999999999", "N", "2188", null, "1012", null, "3061", null, "974", null, "6446", null, "1474", null, "17178", null, "2192", null, "30502", null, "7057", null, "15444", null, "2437", null, "2785", null, "1009", null, "7112", null, "1640", null, "5547", null, "1266", null, "9.7", null, "0.9", null, "46.9", null, "5.5", null, "53.1", null, "5.5", null, "27.9", null, "5.2", null, "26.1", null, "5.4", null, "2.6", null, "1.5", null, "23.5", null, "5.3", null, "45.9", null, "5.7", null, "38.8", null, "5.6", null, "22.3", null, "4.7", null, "16.3", null, "4.2", null, "1.9", null, "1.4", null, "14.3", null, "4.1", null, "0.2", null, "0.3", null, "61.2", null, "5.6", null, "5.6", null, "1.9", null, "9.9", null, "3.4", null, "0.7", null, "0.6", null, "9.2", null, "3.4", null, "45.7", null, "5.7", null, "37.9", null, "5.5", null, "62.1", null, "5.5", null, "52.7", null, "5.0", null, "47.3", null, "5.0", null, "67.6", null, "4.9", null, "12.7", null, "3.1", null, "0.4", null, "0.5", null, "0.9", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "7.7", null, "3.4", null, "10.7", null, "3.2", null, "22.6", null, "4.5", null, "60.1", null, "5.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.0", null, "6.2", null, "46.1", null, "7.0", null, "35.9", null, "6.6", null, "265937", null, "4083", null, "122761", null, "3124", null, "143176", null, "4828", null, "128090", null, "5142", null, "40903", null, "3477", null, "13768", null, "1966", null, "27135", null, "2927", null, "96944", null, "5142", null, "70810", null, "3687", null, "48158", null, "3662", null, "21695", null, "3046", null, "7361", null, "1607", null, "14334", null, "2511", null, "957", null, "699", null, "195127", null, "4914", null, "79932", null, "4136", null, "19208", null, "2644", null, "6407", null, "1460", null, "12801", null, "2000", null, "95987", null, "4915", null, "17848", null, "2235", null, "248089", null, "4479", null, "66126", null, "3539", null, "199811", null, "5732", null, "193095", null, "4284", null, "21887", null, "2527", null, "746", null, "392", null, "7979", null, "1128", null, "-999999999", "N", "-999999999", "N", "17351", null, "2167", null, "24879", null, "2741", null, "40319", null, "2602", null, "185056", null, "4136", null, "99503", null, "3560", null, "168993", null, "5012", null, "19625", null, "2019", null, "49307", null, "4202", null, "100061", null, "5648", null, "90.3", null, "0.9", null, "46.2", null, "1.3", null, "53.8", null, "1.3", null, "48.2", null, "1.9", null, "15.4", null, "1.3", null, "5.2", null, "0.7", null, "10.2", null, "1.1", null, "36.5", null, "1.8", null, "26.6", null, "1.4", null, "18.1", null, "1.4", null, "8.2", null, "1.1", null, "2.8", null, "0.6", null, "5.4", null, "0.9", null, "0.4", null, "0.3", null, "73.4", null, "1.4", null, "30.1", null, "1.5", null, "7.2", null, "1.0", null, "2.4", null, "0.5", null, "4.8", null, "0.8", null, "36.1", null, "1.7", null, "6.7", null, "0.8", null, "93.3", null, "0.8", null, "24.9", null, "1.4", null, "75.1", null, "1.4", null, "72.6", null, "1.2", null, "8.2", null, "0.9", null, "0.3", null, "0.1", null, "3.0", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "6.5", null, "0.8", null, "9.4", null, "1.0", null, "15.2", null, "0.9", null, "69.6", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.6", null, "1.2", null, "29.2", null, "2.4", null, "59.2", null, "2.5", null, "36", "18"], ["5001900US3619", "Congressional District 19 (119th Congress), New York", "328952", null, "4854", null, "157293", null, "2861", null, "171659", null, "4720", null, "142585", null, "4431", null, "51729", null, "3515", null, "16457", null, "1868", null, "35272", null, "3045", null, "134638", null, "4652", null, "77525", null, "3789", null, "45870", null, "2876", null, "31141", null, "2875", null, "9196", null, "1308", null, "21945", null, "2706", null, "514", null, "320", null, "251427", null, "4844", null, "96715", null, "3748", null, "20588", null, "2108", null, "7261", null, "1233", null, "13327", null, "1675", null, "134124", null, "4698", null, "46118", null, "3487", null, "282834", null, "4795", null, "92752", null, "4374", null, "236200", null, "6318", null, "282108", null, "4600", null, "10590", null, "1670", null, "1360", null, "643", null, "8737", null, "1200", null, "-999999999", "N", "-999999999", "N", "7173", null, "1451", null, "18879", null, "2406", null, "17859", null, "1616", null, "278264", null, "4612", null, "73323", null, "2622", null, "194314", null, "4694", null, "34524", null, "2258", null, "58694", null, "3429", null, "101096", null, "4729", null, "-888888888", "(X)", "-888888888", "(X)", "47.8", null, "0.9", null, "52.2", null, "0.9", null, "43.3", null, "1.3", null, "15.7", null, "1.0", null, "5.0", null, "0.6", null, "10.7", null, "0.9", null, "40.9", null, "1.2", null, "23.6", null, "1.1", null, "13.9", null, "0.9", null, "9.5", null, "0.8", null, "2.8", null, "0.4", null, "6.7", null, "0.8", null, "0.2", null, "0.1", null, "76.4", null, "1.1", null, "29.4", null, "1.1", null, "6.3", null, "0.6", null, "2.2", null, "0.4", null, "4.1", null, "0.5", null, "40.8", null, "1.2", null, "14.0", null, "1.0", null, "86.0", null, "1.0", null, "28.2", null, "1.4", null, "71.8", null, "1.4", null, "85.8", null, "0.8", null, "3.2", null, "0.5", null, "0.4", null, "0.2", null, "2.7", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "2.2", null, "0.4", null, "5.7", null, "0.7", null, "5.4", null, "0.5", null, "84.6", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.8", null, "1.1", null, "30.2", null, "1.8", null, "52.0", null, "1.7", null, "40550", null, "3026", null, "18629", null, "2135", null, "21921", null, "2678", null, "7949", null, "1318", null, "15341", null, "2327", null, "2961", null, "843", null, "12380", null, "2103", null, "17260", null, "2105", null, "15783", null, "2174", null, "4708", null, "1107", null, "10959", null, "2120", null, "1368", null, "591", null, "9591", null, "2055", null, "116", null, "142", null, "24767", null, "2414", null, "3241", null, "883", null, "4382", null, "1064", null, "1593", null, "672", null, "2789", null, "776", null, "17144", null, "2097", null, "19199", null, "2553", null, "21351", null, "2207", null, "20698", null, "2349", null, "19852", null, "2360", null, "30346", null, "2285", null, "3552", null, "1319", null, "322", null, "286", null, "897", null, "465", null, "-999999999", "N", "-999999999", "N", "1592", null, "711", null, "3756", null, "1072", null, "5215", null, "1500", null, "29247", null, "2155", null, "26109", null, "3194", null, "23290", null, "2327", null, "5823", null, "1220", null, "10177", null, "1557", null, "7290", null, "1520", null, "12.3", null, "0.9", null, "45.9", null, "4.7", null, "54.1", null, "4.7", null, "19.6", null, "3.5", null, "37.8", null, "4.4", null, "7.3", null, "2.0", null, "30.5", null, "4.1", null, "42.6", null, "4.0", null, "38.9", null, "4.3", null, "11.6", null, "2.8", null, "27.0", null, "4.4", null, "3.4", null, "1.5", null, "23.7", null, "4.3", null, "0.3", null, "0.3", null, "61.1", null, "4.3", null, "8.0", null, "2.3", null, "10.8", null, "2.5", null, "3.9", null, "1.6", null, "6.9", null, "1.9", null, "42.3", null, "4.0", null, "47.3", null, "4.6", null, "52.7", null, "4.6", null, "51.0", null, "4.5", null, "49.0", null, "4.5", null, "74.8", null, "3.3", null, "8.8", null, "3.0", null, "0.8", null, "0.7", null, "2.2", null, "1.1", null, "-999999999.0", "N", "-999999999.0", "N", "3.9", null, "1.8", null, "9.3", null, "2.5", null, "12.9", null, "3.2", null, "72.1", null, "3.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "25.0", null, "5.3", null, "43.7", null, "4.6", null, "31.3", null, "5.3", null, "288402", null, "5376", null, "138664", null, "3447", null, "149738", null, "4813", null, "134636", null, "4155", null, "36388", null, "3324", null, "13496", null, "1896", null, "22892", null, "2491", null, "117378", null, "4492", null, "61742", null, "3357", null, "41162", null, "2521", null, "20182", null, "2330", null, "7828", null, "1354", null, "12354", null, "1858", null, "398", null, "307", null, "226660", null, "5209", null, "93474", null, "3702", null, "16206", null, "2014", null, "5668", null, "1250", null, "10538", null, "1576", null, "116980", null, "4561", null, "26919", null, "2713", null, "261483", null, "5263", null, "72054", null, "4006", null, "216348", null, "6109", null, "251762", null, "5147", null, "7038", null, "1395", null, "1038", null, "569", null, "7840", null, "1206", null, "-999999999", "N", "-999999999", "N", "5581", null, "1279", null, "15123", null, "2238", null, "12644", null, "1619", null, "249017", null, "5089", null, "80646", null, "2412", null, "171024", null, "4772", null, "28701", null, "1986", null, "48517", null, "3266", null, "93806", null, "4647", null, "87.7", null, "0.9", null, "48.1", null, "1.1", null, "51.9", null, "1.1", null, "46.7", null, "1.3", null, "12.6", null, "1.1", null, "4.7", null, "0.6", null, "7.9", null, "0.8", null, "40.7", null, "1.3", null, "21.4", null, "1.1", null, "14.3", null, "0.9", null, "7.0", null, "0.8", null, "2.7", null, "0.5", null, "4.3", null, "0.6", null, "0.1", null, "0.1", null, "78.6", null, "1.1", null, "32.4", null, "1.2", null, "5.6", null, "0.7", null, "2.0", null, "0.4", null, "3.7", null, "0.5", null, "40.6", null, "1.3", null, "9.3", null, "0.9", null, "90.7", null, "0.9", null, "25.0", null, "1.4", null, "75.0", null, "1.4", null, "87.3", null, "0.9", null, "2.4", null, "0.5", null, "0.4", null, "0.2", null, "2.7", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "1.9", null, "0.4", null, "5.2", null, "0.8", null, "4.4", null, "0.5", null, "86.3", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.8", null, "1.1", null, "28.4", null, "1.9", null, "54.8", null, "1.9", null, "36", "19"], ["5001900US3620", "Congressional District 20 (119th Congress), New York", "341758", null, "3897", null, "142560", null, "3428", null, "199198", null, "4399", null, "141867", null, "4959", null, "50563", null, "4174", null, "14124", null, "2164", null, "36439", null, "3346", null, "149328", null, "5742", null, "84297", null, "4109", null, "55368", null, "3257", null, "28026", null, "3411", null, "7818", null, "1680", null, "20208", null, "2771", null, "903", null, "515", null, "257461", null, "5056", null, "86499", null, "3988", null, "22537", null, "3120", null, "6306", null, "1514", null, "16231", null, "2632", null, "148425", null, "5795", null, "41970", null, "3945", null, "299788", null, "5291", null, "83242", null, "4341", null, "258516", null, "5274", null, "265722", null, "4087", null, "27173", null, "2750", null, "-999999999", "N", "-999999999", "N", "16679", null, "1536", null, "-999999999", "N", "-999999999", "N", "9482", null, "1459", null, "22005", null, "2204", null, "21143", null, "1735", null, "260552", null, "4075", null, "85230", null, "2729", null, "192430", null, "5769", null, "31580", null, "2748", null, "53465", null, "3842", null, "107385", null, "3811", null, "-888888888", "(X)", "-888888888", "(X)", "41.7", null, "1.0", null, "58.3", null, "1.0", null, "41.5", null, "1.4", null, "14.8", null, "1.2", null, "4.1", null, "0.6", null, "10.7", null, "1.0", null, "43.7", null, "1.6", null, "24.7", null, "1.2", null, "16.2", null, "0.9", null, "8.2", null, "1.0", null, "2.3", null, "0.5", null, "5.9", null, "0.8", null, "0.3", null, "0.2", null, "75.3", null, "1.2", null, "25.3", null, "1.1", null, "6.6", null, "0.9", null, "1.8", null, "0.4", null, "4.7", null, "0.8", null, "43.4", null, "1.6", null, "12.3", null, "1.1", null, "87.7", null, "1.1", null, "24.4", null, "1.2", null, "75.6", null, "1.2", null, "77.8", null, "0.9", null, "8.0", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "4.9", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "2.8", null, "0.4", null, "6.4", null, "0.6", null, "6.2", null, "0.5", null, "76.2", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.4", null, "1.3", null, "27.8", null, "1.7", null, "55.8", null, "1.6", null, "37503", null, "3085", null, "16719", null, "2291", null, "20784", null, "2811", null, "7466", null, "1847", null, "13547", null, "2060", null, "1667", null, "693", null, "11880", null, "2110", null, "16490", null, "1965", null, "13879", null, "2239", null, "4700", null, "1529", null, "9038", null, "1941", null, "1048", null, "579", null, "7990", null, "1857", null, "141", null, "230", null, "23624", null, "2486", null, "2766", null, "1124", null, "4509", null, "1268", null, "619", null, "376", null, "3890", null, "1290", null, "16349", null, "1954", null, "17764", null, "2706", null, "19739", null, "2466", null, "22452", null, "2660", null, "15051", null, "2470", null, "21211", null, "2635", null, "7598", null, "1609", null, "-999999999", "N", "-999999999", "N", "2284", null, "747", null, "-999999999", "N", "-999999999", "N", "2027", null, "799", null, "4318", null, "1327", null, "4515", null, "1124", null, "19754", null, "2542", null, "24724", null, "3705", null, "21013", null, "2481", null, "4531", null, "1324", null, "9275", null, "1733", null, "7207", null, "1763", null, "11.0", null, "0.9", null, "44.6", null, "5.4", null, "55.4", null, "5.4", null, "19.9", null, "4.6", null, "36.1", null, "4.5", null, "4.4", null, "1.9", null, "31.7", null, "4.7", null, "44.0", null, "4.2", null, "37.0", null, "4.8", null, "12.5", null, "3.9", null, "24.1", null, "4.6", null, "2.8", null, "1.5", null, "21.3", null, "4.5", null, "0.4", null, "0.6", null, "63.0", null, "4.8", null, "7.4", null, "2.9", null, "12.0", null, "3.3", null, "1.7", null, "1.0", null, "10.4", null, "3.3", null, "43.6", null, "4.2", null, "47.4", null, "5.5", null, "52.6", null, "5.5", null, "59.9", null, "5.5", null, "40.1", null, "5.5", null, "56.6", null, "4.7", null, "20.3", null, "4.1", null, "-999999999.0", "N", "-999999999.0", "N", "6.1", null, "2.0", null, "-999999999.0", "N", "-999999999.0", "N", "5.4", null, "2.1", null, "11.5", null, "3.4", null, "12.0", null, "3.0", null, "52.7", null, "4.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "21.6", null, "5.7", null, "44.1", null, "7.4", null, "34.3", null, "6.8", null, "304255", null, "5015", null, "125841", null, "3488", null, "178414", null, "4485", null, "134401", null, "4726", null, "37016", null, "4044", null, "12457", null, "2210", null, "24559", null, "3039", null, "132838", null, "5856", null, "70418", null, "3885", null, "50668", null, "3122", null, "18988", null, "3131", null, "6770", null, "1750", null, "12218", null, "2262", null, "762", null, "478", null, "233837", null, "5675", null, "83733", null, "3676", null, "18028", null, "2648", null, "5687", null, "1482", null, "12341", null, "2147", null, "132076", null, "5862", null, "24206", null, "2845", null, "280049", null, "5534", null, "60790", null, "3650", null, "243465", null, "5496", null, "244511", null, "4713", null, "19575", null, "2777", null, "-999999999", "N", "-999999999", "N", "14395", null, "1557", null, "-999999999", "N", "-999999999", "N", "7455", null, "1412", null, "17687", null, "2225", null, "16628", null, "1823", null, "240798", null, "4653", null, "92694", null, "2952", null, "171417", null, "5171", null, "27049", null, "2236", null, "44190", null, "3486", null, "100178", null, "3908", null, "89.0", null, "0.9", null, "41.4", null, "1.0", null, "58.6", null, "1.0", null, "44.2", null, "1.6", null, "12.2", null, "1.3", null, "4.1", null, "0.7", null, "8.1", null, "1.0", null, "43.7", null, "1.6", null, "23.1", null, "1.3", null, "16.7", null, "1.1", null, "6.2", null, "1.0", null, "2.2", null, "0.6", null, "4.0", null, "0.7", null, "0.3", null, "0.2", null, "76.9", null, "1.3", null, "27.5", null, "1.2", null, "5.9", null, "0.9", null, "1.9", null, "0.5", null, "4.1", null, "0.7", null, "43.4", null, "1.6", null, "8.0", null, "0.9", null, "92.0", null, "0.9", null, "20.0", null, "1.2", null, "80.0", null, "1.2", null, "80.4", null, "0.9", null, "6.4", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "4.7", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "2.5", null, "0.5", null, "5.8", null, "0.7", null, "5.5", null, "0.6", null, "79.1", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.8", null, "1.2", null, "25.8", null, "1.8", null, "58.4", null, "1.6", null, "36", "20"], ["5001900US3621", "Congressional District 21 (119th Congress), New York", "332078", null, "4525", null, "154743", null, "3379", null, "177335", null, "4661", null, "151487", null, "4713", null, "53563", null, "3754", null, "17900", null, "2064", null, "35663", null, "2862", null, "127028", null, "5445", null, "86689", null, "3603", null, "52553", null, "2940", null, "33387", null, "2822", null, "11045", null, "1850", null, "22342", null, "2176", null, "749", null, "289", null, "245389", null, "4944", null, "98934", null, "3592", null, "20176", null, "2332", null, "6855", null, "1357", null, "13321", null, "1774", null, "126279", null, "5430", null, "44706", null, "2848", null, "287372", null, "4669", null, "101820", null, "4116", null, "230258", null, "5077", null, "305014", null, "4713", null, "3428", null, "1102", null, "2241", null, "510", null, "2931", null, "697", null, "-999999999", "N", "-999999999", "N", "3396", null, "1087", null, "14978", null, "1799", null, "9300", null, "1482", null, "301793", null, "4768", null, "70323", null, "2087", null, "205050", null, "5038", null, "39967", null, "2186", null, "66149", null, "3316", null, "98934", null, "3744", null, "-888888888", "(X)", "-888888888", "(X)", "46.6", null, "1.0", null, "53.4", null, "1.0", null, "45.6", null, "1.4", null, "16.1", null, "1.1", null, "5.4", null, "0.6", null, "10.7", null, "0.9", null, "38.3", null, "1.4", null, "26.1", null, "1.0", null, "15.8", null, "0.9", null, "10.1", null, "0.8", null, "3.3", null, "0.6", null, "6.7", null, "0.7", null, "0.2", null, "0.1", null, "73.9", null, "1.0", null, "29.8", null, "1.1", null, "6.1", null, "0.7", null, "2.1", null, "0.4", null, "4.0", null, "0.5", null, "38.0", null, "1.4", null, "13.5", null, "0.8", null, "86.5", null, "0.8", null, "30.7", null, "1.2", null, "69.3", null, "1.2", null, "91.9", null, "0.6", null, "1.0", null, "0.3", null, "0.7", null, "0.2", null, "0.9", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "1.0", null, "0.3", null, "4.5", null, "0.5", null, "2.8", null, "0.4", null, "90.9", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "19.5", null, "1.0", null, "32.3", null, "1.4", null, "48.2", null, "1.3", null, "49632", null, "3040", null, "23180", null, "2418", null, "26452", null, "2051", null, "10384", null, "1585", null, "15807", null, "2231", null, "3871", null, "945", null, "11936", null, "1969", null, "23441", null, "1971", null, "16337", null, "2073", null, "5849", null, "1175", null, "10223", null, "1737", null, "2268", null, "755", null, "7955", null, "1511", null, "265", null, "172", null, "33295", null, "2790", null, "4535", null, "1210", null, "5584", null, "1311", null, "1603", null, "594", null, "3981", null, "1120", null, "23176", null, "1978", null, "21412", null, "2059", null, "28220", null, "2570", null, "28509", null, "2456", null, "21123", null, "2383", null, "44188", null, "2883", null, "904", null, "503", null, "763", null, "389", null, "91", null, "123", null, "-999999999", "N", "-999999999", "N", "156", null, "179", null, "3530", null, "1069", null, "1142", null, "502", null, "43661", null, "2974", null, "27123", null, "2755", null, "26191", null, "2514", null, "6891", null, "1346", null, "11940", null, "1475", null, "7360", null, "1225", null, "14.9", null, "0.9", null, "46.7", null, "3.4", null, "53.3", null, "3.4", null, "20.9", null, "3.0", null, "31.8", null, "3.6", null, "7.8", null, "1.8", null, "24.0", null, "3.4", null, "47.2", null, "3.3", null, "32.9", null, "3.7", null, "11.8", null, "2.3", null, "20.6", null, "3.3", null, "4.6", null, "1.5", null, "16.0", null, "3.0", null, "0.5", null, "0.3", null, "67.1", null, "3.7", null, "9.1", null, "2.4", null, "11.3", null, "2.3", null, "3.2", null, "1.2", null, "8.0", null, "2.0", null, "46.7", null, "3.4", null, "43.1", null, "3.5", null, "56.9", null, "3.5", null, "57.4", null, "3.8", null, "42.6", null, "3.8", null, "89.0", null, "2.4", null, "1.8", null, "1.0", null, "1.5", null, "0.8", null, "0.2", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "0.3", null, "0.4", null, "7.1", null, "2.1", null, "2.3", null, "1.0", null, "88.0", null, "2.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "26.3", null, "3.9", null, "45.6", null, "4.8", null, "28.1", null, "3.7", null, "282446", null, "4891", null, "131563", null, "3378", null, "150883", null, "4383", null, "141103", null, "4644", null, "37756", null, "3080", null, "14029", null, "1971", null, "23727", null, "2162", null, "103587", null, "5045", null, "70352", null, "2964", null, "46704", null, "2650", null, "23164", null, "2140", null, "8777", null, "1711", null, "14387", null, "1738", null, "484", null, "259", null, "212094", null, "4907", null, "94399", null, "3575", null, "14592", null, "2000", null, "5252", null, "1175", null, "9340", null, "1474", null, "103103", null, "5020", null, "23294", null, "2251", null, "259152", null, "4941", null, "73311", null, "3372", null, "209135", null, "4751", null, "260826", null, "4844", null, "2524", null, "1007", null, "1478", null, "584", null, "2840", null, "715", null, "-999999999", "N", "-999999999", "N", "3240", null, "1082", null, "11448", null, "1420", null, "8158", null, "1456", null, "258132", null, "4792", null, "77391", null, "2156", null, "178859", null, "4846", null, "33076", null, "1974", null, "54209", null, "2851", null, "91574", null, "3832", null, "85.1", null, "0.9", null, "46.6", null, "1.1", null, "53.4", null, "1.1", null, "50.0", null, "1.5", null, "13.4", null, "1.1", null, "5.0", null, "0.7", null, "8.4", null, "0.8", null, "36.7", null, "1.5", null, "24.9", null, "1.0", null, "16.5", null, "0.9", null, "8.2", null, "0.8", null, "3.1", null, "0.6", null, "5.1", null, "0.6", null, "0.2", null, "0.1", null, "75.1", null, "1.0", null, "33.4", null, "1.2", null, "5.2", null, "0.7", null, "1.9", null, "0.4", null, "3.3", null, "0.5", null, "36.5", null, "1.5", null, "8.2", null, "0.8", null, "91.8", null, "0.8", null, "26.0", null, "1.1", null, "74.0", null, "1.1", null, "92.3", null, "0.7", null, "0.9", null, "0.4", null, "0.5", null, "0.2", null, "1.0", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "1.1", null, "0.4", null, "4.1", null, "0.5", null, "2.9", null, "0.5", null, "91.4", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.5", null, "1.0", null, "30.3", null, "1.4", null, "51.2", null, "1.5", null, "36", "21"], ["5001900US3622", "Congressional District 22 (119th Congress), New York", "325262", null, "3575", null, "145661", null, "3243", null, "179601", null, "3654", null, "138285", null, "4302", null, "52962", null, "3196", null, "16161", null, "2055", null, "36801", null, "2646", null, "134015", null, "4437", null, "81070", null, "3900", null, "50652", null, "3001", null, "29994", null, "2909", null, "9015", null, "1508", null, "20979", null, "2453", null, "424", null, "180", null, "244192", null, "4913", null, "87633", null, "3676", null, "22968", null, "2227", null, "7146", null, "1207", null, "15822", null, "1676", null, "133591", null, "4408", null, "43506", null, "3881", null, "281756", null, "4842", null, "88871", null, "4073", null, "236391", null, "5508", null, "265190", null, "3640", null, "23955", null, "1861", null, "1244", null, "526", null, "10671", null, "1365", null, "-999999999", "N", "-999999999", "N", "5621", null, "1072", null, "18400", null, "2401", null, "15232", null, "1284", null, "262188", null, "3575", null, "75553", null, "2282", null, "191247", null, "4226", null, "30509", null, "2465", null, "58494", null, "3661", null, "102244", null, "4076", null, "-888888888", "(X)", "-888888888", "(X)", "44.8", null, "0.9", null, "55.2", null, "0.9", null, "42.5", null, "1.2", null, "16.3", null, "1.0", null, "5.0", null, "0.6", null, "11.3", null, "0.8", null, "41.2", null, "1.2", null, "24.9", null, "1.2", null, "15.6", null, "0.9", null, "9.2", null, "0.9", null, "2.8", null, "0.5", null, "6.4", null, "0.8", null, "0.1", null, "0.1", null, "75.1", null, "1.2", null, "26.9", null, "1.1", null, "7.1", null, "0.7", null, "2.2", null, "0.4", null, "4.9", null, "0.5", null, "41.1", null, "1.2", null, "13.4", null, "1.2", null, "86.6", null, "1.2", null, "27.3", null, "1.3", null, "72.7", null, "1.3", null, "81.5", null, "0.8", null, "7.4", null, "0.6", null, "0.4", null, "0.2", null, "3.3", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "1.7", null, "0.3", null, "5.7", null, "0.7", null, "4.7", null, "0.4", null, "80.6", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.0", null, "1.2", null, "30.6", null, "1.8", null, "53.5", null, "1.8", null, "46693", null, "3213", null, "20110", null, "2143", null, "26583", null, "2446", null, "8968", null, "1607", null, "16638", null, "1937", null, "3000", null, "913", null, "13638", null, "1720", null, "21087", null, "2401", null, "16948", null, "2467", null, "5655", null, "1419", null, "11237", null, "1888", null, "1925", null, "874", null, "9312", null, "1576", null, "56", null, "51", null, "29745", null, "2666", null, "3313", null, "822", null, "5401", null, "1086", null, "1075", null, "491", null, "4326", null, "918", null, "21031", null, "2397", null, "21696", null, "2623", null, "24997", null, "2591", null, "25787", null, "2548", null, "20906", null, "2196", null, "31012", null, "2672", null, "8660", null, "1633", null, "178", null, "207", null, "1853", null, "757", null, "-999999999", "N", "-999999999", "N", "1513", null, "725", null, "3477", null, "1075", null, "4592", null, "1176", null, "29999", null, "2696", null, "23861", null, "3147", null, "25606", null, "2598", null, "6682", null, "1361", null, "12686", null, "2067", null, "6238", null, "1338", null, "14.4", null, "1.0", null, "43.1", null, "3.5", null, "56.9", null, "3.5", null, "19.2", null, "3.1", null, "35.6", null, "3.5", null, "6.4", null, "1.9", null, "29.2", null, "3.2", null, "45.2", null, "4.1", null, "36.3", null, "4.3", null, "12.1", null, "2.9", null, "24.1", null, "3.4", null, "4.1", null, "1.8", null, "19.9", null, "2.9", null, "0.1", null, "0.1", null, "63.7", null, "4.3", null, "7.1", null, "1.6", null, "11.6", null, "2.4", null, "2.3", null, "1.1", null, "9.3", null, "2.0", null, "45.0", null, "4.1", null, "46.5", null, "4.4", null, "53.5", null, "4.4", null, "55.2", null, "3.7", null, "44.8", null, "3.7", null, "66.4", null, "3.4", null, "18.5", null, "3.4", null, "0.4", null, "0.4", null, "4.0", null, "1.6", null, "-999999999.0", "N", "-999999999.0", "N", "3.2", null, "1.5", null, "7.4", null, "2.1", null, "9.8", null, "2.3", null, "64.2", null, "3.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "26.1", null, "4.9", null, "49.5", null, "5.6", null, "24.4", null, "4.8", null, "278569", null, "4633", null, "125551", null, "3627", null, "153018", null, "3870", null, "129317", null, "4076", null, "36324", null, "2904", null, "13161", null, "1730", null, "23163", null, "2455", null, "112928", null, "4172", null, "64122", null, "3686", null, "44997", null, "2798", null, "18757", null, "2454", null, "7090", null, "1350", null, "11667", null, "2012", null, "368", null, "181", null, "214447", null, "4839", null, "84320", null, "3599", null, "17567", null, "1775", null, "6071", null, "1084", null, "11496", null, "1362", null, "112560", null, "4157", null, "21810", null, "2538", null, "256759", null, "4887", null, "63084", null, "3706", null, "215485", null, "5330", null, "234178", null, "4298", null, "15295", null, "1916", null, "1066", null, "485", null, "8818", null, "1383", null, "-999999999", "N", "-999999999", "N", "4108", null, "960", null, "14923", null, "2209", null, "10640", null, "1430", null, "232189", null, "4187", null, "84527", null, "2801", null, "165641", null, "4097", null, "23827", null, "2182", null, "45808", null, "2961", null, "96006", null, "3773", null, "85.6", null, "1.0", null, "45.1", null, "1.1", null, "54.9", null, "1.1", null, "46.4", null, "1.4", null, "13.0", null, "1.0", null, "4.7", null, "0.6", null, "8.3", null, "0.8", null, "40.5", null, "1.2", null, "23.0", null, "1.2", null, "16.2", null, "1.0", null, "6.7", null, "0.9", null, "2.5", null, "0.5", null, "4.2", null, "0.7", null, "0.1", null, "0.1", null, "77.0", null, "1.2", null, "30.3", null, "1.3", null, "6.3", null, "0.6", null, "2.2", null, "0.4", null, "4.1", null, "0.5", null, "40.4", null, "1.2", null, "7.8", null, "0.9", null, "92.2", null, "0.9", null, "22.6", null, "1.3", null, "77.4", null, "1.3", null, "84.1", null, "0.9", null, "5.5", null, "0.7", null, "0.4", null, "0.2", null, "3.2", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "1.5", null, "0.3", null, "5.4", null, "0.8", null, "3.8", null, "0.5", null, "83.4", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.4", null, "1.2", null, "27.7", null, "1.7", null, "58.0", null, "1.8", null, "36", "22"], ["5001900US3623", "Congressional District 23 (119th Congress), New York", "329811", null, "4324", null, "157652", null, "3108", null, "172159", null, "3906", null, "154888", null, "4656", null, "54664", null, "3718", null, "20372", null, "2023", null, "34292", null, "2947", null, "120259", null, "5155", null, "89378", null, "3561", null, "54808", null, "2797", null, "33760", null, "3100", null, "11768", null, "2044", null, "21992", null, "2128", null, "810", null, "475", null, "240433", null, "5082", null, "100080", null, "3745", null, "20904", null, "2635", null, "8604", null, "1579", null, "12300", null, "1895", null, "119449", null, "5152", null, "40405", null, "2757", null, "289406", null, "4637", null, "92377", null, "4324", null, "237434", null, "5882", null, "305351", null, "4394", null, "5058", null, "1207", null, "2248", null, "669", null, "2817", null, "573", null, "-999999999", "N", "-999999999", "N", "2795", null, "874", null, "11492", null, "1683", null, "9751", null, "1329", null, "302968", null, "4298", null, "74552", null, "2337", null, "209552", null, "4770", null, "41276", null, "2439", null, "64254", null, "3644", null, "104022", null, "4090", null, "-888888888", "(X)", "-888888888", "(X)", "47.8", null, "0.8", null, "52.2", null, "0.8", null, "47.0", null, "1.4", null, "16.6", null, "1.1", null, "6.2", null, "0.6", null, "10.4", null, "0.9", null, "36.5", null, "1.4", null, "27.1", null, "1.1", null, "16.6", null, "0.9", null, "10.2", null, "0.9", null, "3.6", null, "0.6", null, "6.7", null, "0.6", null, "0.2", null, "0.1", null, "72.9", null, "1.1", null, "30.3", null, "1.1", null, "6.3", null, "0.8", null, "2.6", null, "0.5", null, "3.7", null, "0.6", null, "36.2", null, "1.4", null, "12.3", null, "0.8", null, "87.7", null, "0.8", null, "28.0", null, "1.3", null, "72.0", null, "1.3", null, "92.6", null, "0.7", null, "1.5", null, "0.4", null, "0.7", null, "0.2", null, "0.9", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "0.8", null, "0.3", null, "3.5", null, "0.5", null, "3.0", null, "0.4", null, "91.9", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "19.7", null, "1.1", null, "30.7", null, "1.6", null, "49.6", null, "1.5", null, "44269", null, "3310", null, "18916", null, "2205", null, "25353", null, "2619", null, "9239", null, "1401", null, "16530", null, "2518", null, "5270", null, "1472", null, "11260", null, "1804", null, "18500", null, "2003", null, "18443", null, "2564", null, "5775", null, "989", null, "12397", null, "2308", null, "3054", null, "1306", null, "9343", null, "1675", null, "271", null, "200", null, "25826", null, "2302", null, "3464", null, "836", null, "4133", null, "934", null, "2216", null, "719", null, "1917", null, "606", null, "18229", null, "2017", null, "20269", null, "2322", null, "24000", null, "2358", null, "24955", null, "2613", null, "19314", null, "1964", null, "36871", null, "2574", null, "1714", null, "699", null, "972", null, "574", null, "152", null, "124", null, "-999999999", "N", "-999999999", "N", "1410", null, "702", null, "3150", null, "1191", null, "4042", null, "1091", null, "36052", null, "2438", null, "25388", null, "2099", null, "25769", null, "2881", null, "6818", null, "1338", null, "11600", null, "1949", null, "7351", null, "1389", null, "13.4", null, "1.0", null, "42.7", null, "3.9", null, "57.3", null, "3.9", null, "20.9", null, "2.8", null, "37.3", null, "4.4", null, "11.9", null, "3.0", null, "25.4", null, "3.5", null, "41.8", null, "4.0", null, "41.7", null, "4.1", null, "13.0", null, "2.1", null, "28.0", null, "4.2", null, "6.9", null, "2.7", null, "21.1", null, "3.3", null, "0.6", null, "0.5", null, "58.3", null, "4.1", null, "7.8", null, "1.8", null, "9.3", null, "2.1", null, "5.0", null, "1.6", null, "4.3", null, "1.4", null, "41.2", null, "4.0", null, "45.8", null, "3.7", null, "54.2", null, "3.7", null, "56.4", null, "3.6", null, "43.6", null, "3.6", null, "83.3", null, "3.3", null, "3.9", null, "1.5", null, "2.2", null, "1.3", null, "0.3", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "3.2", null, "1.5", null, "7.1", null, "2.5", null, "9.1", null, "2.3", null, "81.4", null, "3.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "26.5", null, "4.2", null, "45.0", null, "5.0", null, "28.5", null, "4.9", null, "285542", null, "4534", null, "138736", null, "3267", null, "146806", null, "3938", null, "145649", null, "4362", null, "38134", null, "3193", null, "15102", null, "1963", null, "23032", null, "2569", null, "101759", null, "4460", null, "70935", null, "3102", null, "49033", null, "2509", null, "21363", null, "2401", null, "8714", null, "1711", null, "12649", null, "1707", null, "539", null, "430", null, "214607", null, "4800", null, "96616", null, "3666", null, "16771", null, "2411", null, "6388", null, "1455", null, "10383", null, "1861", null, "101220", null, "4431", null, "20136", null, "1880", null, "265406", null, "4688", null, "67422", null, "3475", null, "218120", null, "5699", null, "268480", null, "4382", null, "3344", null, "1103", null, "1276", null, "386", null, "2665", null, "571", null, "-999999999", "N", "-999999999", "N", "1385", null, "688", null, "8342", null, "1286", null, "5709", null, "1434", null, "266916", null, "4344", null, "82088", null, "1616", null, "183783", null, "4604", null, "34458", null, "1979", null, "52654", null, "3579", null, "96671", null, "3952", null, "86.6", null, "1.0", null, "48.6", null, "1.0", null, "51.4", null, "1.0", null, "51.0", null, "1.4", null, "13.4", null, "1.1", null, "5.3", null, "0.7", null, "8.1", null, "0.9", null, "35.6", null, "1.4", null, "24.8", null, "1.1", null, "17.2", null, "0.9", null, "7.5", null, "0.8", null, "3.1", null, "0.6", null, "4.4", null, "0.6", null, "0.2", null, "0.2", null, "75.2", null, "1.1", null, "33.8", null, "1.2", null, "5.9", null, "0.8", null, "2.2", null, "0.5", null, "3.6", null, "0.7", null, "35.4", null, "1.4", null, "7.1", null, "0.7", null, "92.9", null, "0.7", null, "23.6", null, "1.3", null, "76.4", null, "1.3", null, "94.0", null, "0.6", null, "1.2", null, "0.4", null, "0.4", null, "0.1", null, "0.9", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "0.5", null, "0.2", null, "2.9", null, "0.4", null, "2.0", null, "0.5", null, "93.5", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.7", null, "1.1", null, "28.7", null, "1.8", null, "52.6", null, "1.6", null, "36", "23"], ["5001900US3624", "Congressional District 24 (119th Congress), New York", "330065", null, "4647", null, "157285", null, "3030", null, "172780", null, "4129", null, "155695", null, "4071", null, "51756", null, "3301", null, "17080", null, "2213", null, "34676", null, "2356", null, "122614", null, "4320", null, "83470", null, "4051", null, "52138", null, "2906", null, "30608", null, "2847", null, "9601", null, "1624", null, "21007", null, "2213", null, "724", null, "376", null, "246595", null, "5398", null, "103557", null, "3276", null, "21148", null, "2375", null, "7479", null, "1405", null, "13669", null, "1705", null, "121890", null, "4424", null, "40021", null, "3019", null, "290044", null, "4898", null, "97452", null, "3658", null, "232613", null, "4620", null, "304090", null, "4512", null, "4136", null, "1311", null, "349", null, "156", null, "2522", null, "696", null, "-999999999", "N", "-999999999", "N", "3788", null, "811", null, "14956", null, "1964", null, "10541", null, "1236", null, "301265", null, "4398", null, "72396", null, "2361", null, "207451", null, "4288", null, "37269", null, "2195", null, "62435", null, "3528", null, "107747", null, "4264", null, "-888888888", "(X)", "-888888888", "(X)", "47.7", null, "0.8", null, "52.3", null, "0.8", null, "47.2", null, "1.2", null, "15.7", null, "1.0", null, "5.2", null, "0.7", null, "10.5", null, "0.7", null, "37.1", null, "1.1", null, "25.3", null, "1.2", null, "15.8", null, "0.9", null, "9.3", null, "0.9", null, "2.9", null, "0.5", null, "6.4", null, "0.7", null, "0.2", null, "0.1", null, "74.7", null, "1.2", null, "31.4", null, "1.0", null, "6.4", null, "0.7", null, "2.3", null, "0.4", null, "4.1", null, "0.5", null, "36.9", null, "1.1", null, "12.1", null, "0.9", null, "87.9", null, "0.9", null, "29.5", null, "1.0", null, "70.5", null, "1.0", null, "92.1", null, "0.7", null, "1.3", null, "0.4", null, "0.1", null, "0.1", null, "0.8", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "1.1", null, "0.2", null, "4.5", null, "0.6", null, "3.2", null, "0.4", null, "91.3", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.0", null, "1.1", null, "30.1", null, "1.5", null, "51.9", null, "1.6", null, "43344", null, "2802", null, "18556", null, "1707", null, "24788", null, "2085", null, "7875", null, "1247", null, "15209", null, "1812", null, "3123", null, "1137", null, "12086", null, "1590", null, "20260", null, "2085", null, "15632", null, "1867", null, "4440", null, "936", null, "10982", null, "1806", null, "1541", null, "877", null, "9441", null, "1662", null, "210", null, "194", null, "27712", null, "2552", null, "3435", null, "863", null, "4227", null, "1099", null, "1582", null, "697", null, "2645", null, "764", null, "20050", null, "2102", null, "20348", null, "2004", null, "22996", null, "2073", null, "25322", null, "2534", null, "18022", null, "2128", null, "37970", null, "2608", null, "702", null, "569", null, "113", null, "108", null, "280", null, "234", null, "-999999999", "N", "-999999999", "N", "1236", null, "480", null, "3043", null, "947", null, "3031", null, "782", null, "37169", null, "2570", null, "22964", null, "2057", null, "23084", null, "1888", null, "7011", null, "1276", null, "10348", null, "1689", null, "5725", null, "1258", null, "13.1", null, "0.8", null, "42.8", null, "3.0", null, "57.2", null, "3.0", null, "18.2", null, "2.8", null, "35.1", null, "3.7", null, "7.2", null, "2.6", null, "27.9", null, "3.3", null, "46.7", null, "3.3", null, "36.1", null, "3.8", null, "10.2", null, "2.1", null, "25.3", null, "3.9", null, "3.6", null, "2.0", null, "21.8", null, "3.6", null, "0.5", null, "0.5", null, "63.9", null, "3.8", null, "7.9", null, "2.0", null, "9.8", null, "2.5", null, "3.6", null, "1.6", null, "6.1", null, "1.8", null, "46.3", null, "3.3", null, "46.9", null, "3.4", null, "53.1", null, "3.4", null, "58.4", null, "4.3", null, "41.6", null, "4.3", null, "87.6", null, "2.4", null, "1.6", null, "1.3", null, "0.3", null, "0.3", null, "0.6", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "2.9", null, "1.1", null, "7.0", null, "2.1", null, "7.0", null, "1.7", null, "85.8", null, "2.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "30.4", null, "5.3", null, "44.8", null, "5.6", null, "24.8", null, "5.3", null, "286721", null, "4717", null, "138729", null, "2884", null, "147992", null, "4302", null, "147820", null, "3986", null, "36547", null, "2861", null, "13957", null, "1858", null, "22590", null, "2012", null, "102354", null, "4028", null, "67838", null, "3575", null, "47698", null, "2894", null, "19626", null, "2181", null, "8060", null, "1467", null, "11566", null, "1473", null, "514", null, "323", null, "218883", null, "5400", null, "100122", null, "3409", null, "16921", null, "1832", null, "5897", null, "1085", null, "11024", null, "1452", null, "101840", null, "4099", null, "19673", null, "2358", null, "267048", null, "4910", null, "72130", null, "2978", null, "214591", null, "4604", null, "266120", null, "4262", null, "3434", null, "1167", null, "236", null, "120", null, "2242", null, "665", null, "-999999999", "N", "-999999999", "N", "2552", null, "792", null, "11913", null, "2017", null, "7510", null, "1392", null, "264096", null, "4127", null, "81378", null, "1656", null, "184367", null, "4291", null, "30258", null, "2026", null, "52087", null, "3023", null, "102022", null, "4002", null, "86.9", null, "0.8", null, "48.4", null, "1.0", null, "51.6", null, "1.0", null, "51.6", null, "1.2", null, "12.7", null, "1.0", null, "4.9", null, "0.7", null, "7.9", null, "0.7", null, "35.7", null, "1.2", null, "23.7", null, "1.2", null, "16.6", null, "1.0", null, "6.8", null, "0.8", null, "2.8", null, "0.5", null, "4.0", null, "0.5", null, "0.2", null, "0.1", null, "76.3", null, "1.2", null, "34.9", null, "1.1", null, "5.9", null, "0.6", null, "2.1", null, "0.4", null, "3.8", null, "0.5", null, "35.5", null, "1.2", null, "6.9", null, "0.8", null, "93.1", null, "0.8", null, "25.2", null, "1.0", null, "74.8", null, "1.0", null, "92.8", null, "0.8", null, "1.2", null, "0.4", null, "0.1", null, "0.1", null, "0.8", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "0.9", null, "0.3", null, "4.2", null, "0.7", null, "2.6", null, "0.5", null, "92.1", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.4", null, "1.1", null, "28.3", null, "1.5", null, "55.3", null, "1.6", null, "36", "24"], ["5001900US3625", "Congressional District 25 (119th Congress), New York", "326173", null, "3553", null, "139119", null, "3523", null, "187054", null, "3891", null, "132572", null, "4503", null, "56478", null, "3924", null, "14229", null, "2415", null, "42249", null, "3026", null, "137123", null, "4972", null, "84495", null, "3982", null, "49238", null, "3470", null, "34693", null, "3106", null, "7595", null, "1621", null, "27098", null, "2789", null, "564", null, "324", null, "241678", null, "4524", null, "83334", null, "3743", null, "21785", null, "2469", null, "6634", null, "1549", null, "15151", null, "2056", null, "136559", null, "4994", null, "46745", null, "3824", null, "279428", null, "4441", null, "88092", null, "4619", null, "238081", null, "5446", null, "241334", null, "4078", null, "43202", null, "2392", null, "695", null, "475", null, "10462", null, "1123", null, "-999999999", "N", "-999999999", "N", "9590", null, "1914", null, "20515", null, "2366", null, "26242", null, "1797", null, "235859", null, "4007", null, "76980", null, "2308", null, "189050", null, "4978", null, "30385", null, "2585", null, "55398", null, "3168", null, "103267", null, "3942", null, "-888888888", "(X)", "-888888888", "(X)", "42.7", null, "1.0", null, "57.3", null, "1.0", null, "40.6", null, "1.3", null, "17.3", null, "1.2", null, "4.4", null, "0.7", null, "13.0", null, "0.9", null, "42.0", null, "1.4", null, "25.9", null, "1.2", null, "15.1", null, "1.0", null, "10.6", null, "1.0", null, "2.3", null, "0.5", null, "8.3", null, "0.8", null, "0.2", null, "0.1", null, "74.1", null, "1.2", null, "25.5", null, "1.1", null, "6.7", null, "0.8", null, "2.0", null, "0.5", null, "4.6", null, "0.6", null, "41.9", null, "1.4", null, "14.3", null, "1.1", null, "85.7", null, "1.1", null, "27.0", null, "1.4", null, "73.0", null, "1.4", null, "74.0", null, "1.0", null, "13.2", null, "0.7", null, "0.2", null, "0.1", null, "3.2", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "2.9", null, "0.6", null, "6.3", null, "0.7", null, "8.0", null, "0.5", null, "72.3", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.1", null, "1.3", null, "29.3", null, "1.4", null, "54.6", null, "1.6", null, "50069", null, "3710", null, "19578", null, "2297", null, "30491", null, "3228", null, "7518", null, "1585", null, "22754", null, "3036", null, "3621", null, "1341", null, "19133", null, "2857", null, "19797", null, "2215", null, "20908", null, "3101", null, "4507", null, "1167", null, "16370", null, "2802", null, "1885", null, "967", null, "14485", null, "2726", null, "31", null, "53", null, "29161", null, "2703", null, "3011", null, "943", null, "6384", null, "1320", null, "1736", null, "853", null, "4648", null, "1119", null, "19766", null, "2221", null, "24772", null, "2842", null, "25297", null, "2968", null, "27782", null, "2812", null, "22287", null, "2690", null, "22601", null, "2425", null, "15134", null, "1889", null, "337", null, "351", null, "1754", null, "712", null, "-999999999", "N", "-999999999", "N", "3813", null, "1049", null, "6111", null, "1590", null, "10460", null, "1650", null, "20623", null, "2263", null, "23685", null, "2016", null, "30272", null, "3362", null, "6614", null, "1702", null, "15712", null, "2580", null, "7946", null, "1573", null, "15.4", null, "1.1", null, "39.1", null, "4.0", null, "60.9", null, "4.0", null, "15.0", null, "3.0", null, "45.4", null, "4.3", null, "7.2", null, "2.6", null, "38.2", null, "4.5", null, "39.5", null, "4.1", null, "41.8", null, "4.6", null, "9.0", null, "2.2", null, "32.7", null, "4.5", null, "3.8", null, "1.9", null, "28.9", null, "4.6", null, "0.1", null, "0.1", null, "58.2", null, "4.6", null, "6.0", null, "1.9", null, "12.8", null, "2.5", null, "3.5", null, "1.7", null, "9.3", null, "2.2", null, "39.5", null, "4.1", null, "49.5", null, "4.5", null, "50.5", null, "4.5", null, "55.5", null, "4.1", null, "44.5", null, "4.1", null, "45.1", null, "3.5", null, "30.2", null, "3.0", null, "0.7", null, "0.7", null, "3.5", null, "1.4", null, "-999999999.0", "N", "-999999999.0", "N", "7.6", null, "2.1", null, "12.2", null, "3.0", null, "20.9", null, "2.9", null, "41.2", null, "3.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "21.8", null, "5.0", null, "51.9", null, "5.8", null, "26.2", null, "4.8", null, "276104", null, "4435", null, "119541", null, "3690", null, "156563", null, "4326", null, "125054", null, "4495", null, "33724", null, "3216", null, "10608", null, "1943", null, "23116", null, "2730", null, "117326", null, "4680", null, "63587", null, "3716", null, "44731", null, "3335", null, "18323", null, "2450", null, "5710", null, "1406", null, "12613", null, "2234", null, "533", null, "319", null, "212517", null, "4575", null, "80323", null, "3629", null, "15401", null, "2122", null, "4898", null, "1194", null, "10503", null, "1845", null, "116793", null, "4704", null, "21973", null, "2489", null, "254131", null, "4121", null, "60310", null, "3957", null, "215794", null, "5212", null, "218733", null, "4225", null, "28068", null, "2710", null, "358", null, "288", null, "8708", null, "1168", null, "-999999999", "N", "-999999999", "N", "5777", null, "1496", null, "14404", null, "2043", null, "15782", null, "2070", null, "215236", null, "4208", null, "88202", null, "3858", null, "158778", null, "4572", null, "23771", null, "1827", null, "39686", null, "2850", null, "95321", null, "3759", null, "84.6", null, "1.1", null, "43.3", null, "1.2", null, "56.7", null, "1.2", null, "45.3", null, "1.5", null, "12.2", null, "1.1", null, "3.8", null, "0.7", null, "8.4", null, "1.0", null, "42.5", null, "1.5", null, "23.0", null, "1.3", null, "16.2", null, "1.2", null, "6.6", null, "0.9", null, "2.1", null, "0.5", null, "4.6", null, "0.8", null, "0.2", null, "0.1", null, "77.0", null, "1.3", null, "29.1", null, "1.3", null, "5.6", null, "0.8", null, "1.8", null, "0.4", null, "3.8", null, "0.7", null, "42.3", null, "1.5", null, "8.0", null, "0.9", null, "92.0", null, "0.9", null, "21.8", null, "1.4", null, "78.2", null, "1.4", null, "79.2", null, "1.2", null, "10.2", null, "1.0", null, "0.1", null, "0.1", null, "3.2", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "2.1", null, "0.5", null, "5.2", null, "0.7", null, "5.7", null, "0.7", null, "78.0", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.0", null, "1.1", null, "25.0", null, "1.6", null, "60.0", null, "1.7", null, "36", "25"], ["5001900US3626", "Congressional District 26 (119th Congress), New York", "337742", null, "4605", null, "143839", null, "3651", null, "193903", null, "4683", null, "122295", null, "4334", null, "61340", null, "3628", null, "14387", null, "1681", null, "46953", null, "3196", null, "154107", null, "5942", null, "79673", null, "3928", null, "46057", null, "3449", null, "32931", null, "3217", null, "6187", null, "1428", null, "26744", null, "2923", null, "685", null, "518", null, "258069", null, "6060", null, "76238", null, "3541", null, "28409", null, "2955", null, "8200", null, "1446", null, "20209", null, "2621", null, "153422", null, "5929", null, "52562", null, "4747", null, "285180", null, "5968", null, "93933", null, "4699", null, "243809", null, "6341", null, "245836", null, "4788", null, "51043", null, "3121", null, "1564", null, "657", null, "14591", null, "1190", null, "-999999999", "N", "-999999999", "N", "7716", null, "1550", null, "16992", null, "2648", null, "21308", null, "2136", null, "240570", null, "4643", null, "64666", null, "2388", null, "183635", null, "4685", null, "31606", null, "3157", null, "59526", null, "4538", null, "92503", null, "3990", null, "-888888888", "(X)", "-888888888", "(X)", "42.6", null, "1.0", null, "57.4", null, "1.0", null, "36.2", null, "1.3", null, "18.2", null, "1.1", null, "4.3", null, "0.5", null, "13.9", null, "1.0", null, "45.6", null, "1.4", null, "23.6", null, "1.2", null, "13.6", null, "1.0", null, "9.8", null, "1.0", null, "1.8", null, "0.4", null, "7.9", null, "0.9", null, "0.2", null, "0.2", null, "76.4", null, "1.2", null, "22.6", null, "1.0", null, "8.4", null, "0.9", null, "2.4", null, "0.4", null, "6.0", null, "0.8", null, "45.4", null, "1.4", null, "15.6", null, "1.4", null, "84.4", null, "1.4", null, "27.8", null, "1.4", null, "72.2", null, "1.4", null, "72.8", null, "1.0", null, "15.1", null, "0.9", null, "0.5", null, "0.2", null, "4.3", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "2.3", null, "0.5", null, "5.0", null, "0.8", null, "6.3", null, "0.6", null, "71.2", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.2", null, "1.6", null, "32.4", null, "2.3", null, "50.4", null, "2.0", null, "56798", null, "4147", null, "22691", null, "2179", null, "34107", null, "3516", null, "10394", null, "1916", null, "23015", null, "3236", null, "3181", null, "983", null, "19834", null, "2965", null, "23389", null, "2381", null, "24182", null, "3125", null, "7206", null, "1624", null, "16543", null, "2787", null, "1994", null, "887", null, "14549", null, "2565", null, "433", null, "462", null, "32616", null, "2726", null, "3188", null, "897", null, "6472", null, "1606", null, "1187", null, "507", null, "5285", null, "1491", null, "22956", null, "2376", null, "26457", null, "3367", null, "30341", null, "3372", null, "29502", null, "2963", null, "27296", null, "3345", null, "28433", null, "3242", null, "16867", null, "2539", null, "368", null, "321", null, "4521", null, "1004", null, "-999999999", "N", "-999999999", "N", "2568", null, "909", null, "4041", null, "1224", null, "5349", null, "1126", null, "27428", null, "3122", null, "24269", null, "2802", null, "33409", null, "3693", null, "6926", null, "1919", null, "17391", null, "2601", null, "9092", null, "1854", null, "16.8", null, "1.3", null, "40.0", null, "3.4", null, "60.0", null, "3.4", null, "18.3", null, "3.2", null, "40.5", null, "4.0", null, "5.6", null, "1.7", null, "34.9", null, "3.7", null, "41.2", null, "3.8", null, "42.6", null, "3.8", null, "12.7", null, "2.7", null, "29.1", null, "3.8", null, "3.5", null, "1.5", null, "25.6", null, "3.6", null, "0.8", null, "0.8", null, "57.4", null, "3.8", null, "5.6", null, "1.6", null, "11.4", null, "2.6", null, "2.1", null, "0.9", null, "9.3", null, "2.5", null, "40.4", null, "3.8", null, "46.6", null, "4.7", null, "53.4", null, "4.7", null, "51.9", null, "4.2", null, "48.1", null, "4.2", null, "50.1", null, "4.1", null, "29.7", null, "3.9", null, "0.6", null, "0.6", null, "8.0", null, "1.7", null, "-999999999.0", "N", "-999999999.0", "N", "4.5", null, "1.6", null, "7.1", null, "2.1", null, "9.4", null, "1.9", null, "48.3", null, "4.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "20.7", null, "4.9", null, "52.1", null, "5.8", null, "27.2", null, "4.8", null, "280944", null, "6239", null, "121148", null, "3832", null, "159796", null, "5689", null, "111901", null, "4128", null, "38325", null, "2799", null, "11206", null, "1595", null, "27119", null, "2571", null, "130718", null, "5495", null, "55491", null, "3353", null, "38851", null, "3084", null, "16388", null, "2245", null, "4193", null, "1158", null, "12195", null, "2131", null, "252", null, "196", null, "225453", null, "6247", null, "73050", null, "3438", null, "21937", null, "2481", null, "7013", null, "1307", null, "14924", null, "2239", null, "130466", null, "5492", null, "26105", null, "3223", null, "254839", null, "5914", null, "64431", null, "4061", null, "216513", null, "6664", null, "217403", null, "5135", null, "34176", null, "2932", null, "1196", null, "584", null, "10070", null, "1629", null, "-999999999", "N", "-999999999", "N", "5148", null, "1316", null, "12951", null, "2102", null, "15959", null, "2222", null, "213142", null, "4980", null, "73524", null, "2522", null, "150226", null, "4576", null, "24680", null, "2500", null, "42135", null, "4309", null, "83411", null, "4270", null, "83.2", null, "1.3", null, "43.1", null, "1.3", null, "56.9", null, "1.3", null, "39.8", null, "1.4", null, "13.6", null, "0.9", null, "4.0", null, "0.6", null, "9.7", null, "0.9", null, "46.5", null, "1.4", null, "19.8", null, "1.2", null, "13.8", null, "1.1", null, "5.8", null, "0.8", null, "1.5", null, "0.4", null, "4.3", null, "0.7", null, "0.1", null, "0.1", null, "80.2", null, "1.2", null, "26.0", null, "1.2", null, "7.8", null, "0.9", null, "2.5", null, "0.5", null, "5.3", null, "0.8", null, "46.4", null, "1.4", null, "9.3", null, "1.1", null, "90.7", null, "1.1", null, "22.9", null, "1.4", null, "77.1", null, "1.4", null, "77.4", null, "1.1", null, "12.2", null, "1.0", null, "0.4", null, "0.2", null, "3.6", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "1.8", null, "0.5", null, "4.6", null, "0.7", null, "5.7", null, "0.8", null, "75.9", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.4", null, "1.6", null, "28.0", null, "2.7", null, "55.5", null, "2.3", null, "36", "26"], ["5001900US3701", "Congressional District 1 (119th Congress), North Carolina", "317180", null, "3780", null, "152093", null, "3620", null, "165087", null, "4557", null, "134807", null, "4438", null, "70674", null, "4172", null, "16994", null, "2361", null, "53680", null, "3528", null, "111699", null, "5379", null, "90654", null, "4655", null, "49102", null, "3148", null, "39855", null, "3206", null, "8559", null, "2024", null, "31296", null, "2620", null, "1697", null, "823", null, "226526", null, "5050", null, "85705", null, "4119", null, "30819", null, "2909", null, "8435", null, "1747", null, "22384", null, "2506", null, "110002", null, "5376", null, "53930", null, "4134", null, "263250", null, "5075", null, "104999", null, "4458", null, "212181", null, "5685", null, "158011", null, "3279", null, "126224", null, "3314", null, "2286", null, "675", null, "2693", null, "959", null, "-999999999", "N", "-999999999", "N", "9112", null, "1626", null, "18854", null, "2127", null, "19316", null, "1344", null, "155231", null, "3314", null, "58749", null, "2324", null, "205481", null, "4766", null, "37139", null, "2437", null, "70047", null, "4734", null, "98295", null, "4508", null, "-888888888", "(X)", "-888888888", "(X)", "48.0", null, "1.1", null, "52.0", null, "1.1", null, "42.5", null, "1.4", null, "22.3", null, "1.3", null, "5.4", null, "0.7", null, "16.9", null, "1.1", null, "35.2", null, "1.5", null, "28.6", null, "1.4", null, "15.5", null, "1.0", null, "12.6", null, "1.0", null, "2.7", null, "0.6", null, "9.9", null, "0.8", null, "0.5", null, "0.3", null, "71.4", null, "1.4", null, "27.0", null, "1.3", null, "9.7", null, "0.9", null, "2.7", null, "0.6", null, "7.1", null, "0.8", null, "34.7", null, "1.5", null, "17.0", null, "1.3", null, "83.0", null, "1.3", null, "33.1", null, "1.4", null, "66.9", null, "1.4", null, "49.8", null, "0.9", null, "39.8", null, "0.9", null, "0.7", null, "0.2", null, "0.8", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "2.9", null, "0.5", null, "5.9", null, "0.7", null, "6.1", null, "0.4", null, "48.9", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.1", null, "1.1", null, "34.1", null, "2.0", null, "47.8", null, "2.0", null, "60848", null, "4359", null, "26636", null, "2599", null, "34212", null, "3239", null, "9268", null, "1784", null, "28843", null, "2982", null, "4010", null, "1435", null, "24833", null, "2796", null, "22737", null, "2444", null, "25357", null, "3059", null, "5758", null, "1525", null, "19274", null, "2412", null, "3044", null, "1345", null, "16230", null, "2067", null, "325", null, "306", null, "35491", null, "3307", null, "3510", null, "1129", null, "9569", null, "1719", null, "966", null, "490", null, "8603", null, "1753", null, "22412", null, "2421", null, "29252", null, "2724", null, "31596", null, "3436", null, "28941", null, "3084", null, "31907", null, "3111", null, "14425", null, "2062", null, "40642", null, "3363", null, "400", null, "253", null, "199", null, "179", null, "-999999999", "N", "-999999999", "N", "2187", null, "926", null, "2995", null, "1059", null, "4299", null, "1185", null, "13163", null, "1944", null, "24119", null, "1813", null, "38111", null, "3801", null, "8695", null, "1535", null, "19606", null, "2881", null, "9810", null, "1704", null, "19.2", null, "1.4", null, "43.8", null, "3.2", null, "56.2", null, "3.2", null, "15.2", null, "2.4", null, "47.4", null, "3.5", null, "6.6", null, "2.3", null, "40.8", null, "3.7", null, "37.4", null, "3.6", null, "41.7", null, "3.8", null, "9.5", null, "2.2", null, "31.7", null, "3.5", null, "5.0", null, "2.1", null, "26.7", null, "3.2", null, "0.5", null, "0.5", null, "58.3", null, "3.8", null, "5.8", null, "1.8", null, "15.7", null, "2.5", null, "1.6", null, "0.8", null, "14.1", null, "2.5", null, "36.8", null, "3.5", null, "48.1", null, "3.6", null, "51.9", null, "3.6", null, "47.6", null, "3.6", null, "52.4", null, "3.6", null, "23.7", null, "2.9", null, "66.8", null, "3.1", null, "0.7", null, "0.4", null, "0.3", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "3.6", null, "1.5", null, "4.9", null, "1.7", null, "7.1", null, "1.9", null, "21.6", null, "2.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "22.8", null, "3.6", null, "51.4", null, "4.6", null, "25.7", null, "3.9", null, "256332", null, "5299", null, "125457", null, "3697", null, "130875", null, "4630", null, "125539", null, "4652", null, "41831", null, "3643", null, "12984", null, "2126", null, "28847", null, "2750", null, "88962", null, "5084", null, "65297", null, "4224", null, "43344", null, "3005", null, "20581", null, "2586", null, "5515", null, "1576", null, "15066", null, "2039", null, "1372", null, "821", null, "191035", null, "5581", null, "82195", null, "4185", null, "21250", null, "2380", null, "7469", null, "1630", null, "13781", null, "1871", null, "87590", null, "5116", null, "24678", null, "3183", null, "231654", null, "5048", null, "76058", null, "4141", null, "180274", null, "5628", null, "143586", null, "3795", null, "85582", null, "3201", null, "1886", null, "610", null, "2494", null, "947", null, "-999999999", "N", "-999999999", "N", "6925", null, "1646", null, "15859", null, "1955", null, "15017", null, "1656", null, "142068", null, "3839", null, "68253", null, "2624", null, "167370", null, "5631", null, "28444", null, "2069", null, "50441", null, "4026", null, "88485", null, "4739", null, "80.8", null, "1.4", null, "48.9", null, "1.3", null, "51.1", null, "1.3", null, "49.0", null, "1.6", null, "16.3", null, "1.4", null, "5.1", null, "0.8", null, "11.3", null, "1.1", null, "34.7", null, "1.8", null, "25.5", null, "1.6", null, "16.9", null, "1.1", null, "8.0", null, "1.0", null, "2.2", null, "0.6", null, "5.9", null, "0.8", null, "0.5", null, "0.3", null, "74.5", null, "1.6", null, "32.1", null, "1.5", null, "8.3", null, "0.9", null, "2.9", null, "0.6", null, "5.4", null, "0.7", null, "34.2", null, "1.8", null, "9.6", null, "1.2", null, "90.4", null, "1.2", null, "29.7", null, "1.5", null, "70.3", null, "1.5", null, "56.0", null, "1.1", null, "33.4", null, "1.1", null, "0.7", null, "0.2", null, "1.0", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "2.7", null, "0.6", null, "6.2", null, "0.8", null, "5.9", null, "0.6", null, "55.4", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.0", null, "1.3", null, "30.1", null, "2.1", null, "52.9", null, "2.1", null, "37", "01"], ["5001900US3702", "Congressional District 2 (119th Congress), North Carolina", "338839", null, "5488", null, "109124", null, "3815", null, "229715", null, "5487", null, "141205", null, "5897", null, "54361", null, "4059", null, "16413", null, "2779", null, "37948", null, "3712", null, "143273", null, "6465", null, "91540", null, "5633", null, "60381", null, "4669", null, "30125", null, "3829", null, "9870", null, "2627", null, "20255", null, "3186", null, "1034", null, "679", null, "247299", null, "7362", null, "80824", null, "5059", null, "24236", null, "2975", null, "6543", null, "1730", null, "17693", null, "2439", null, "142239", null, "6579", null, "33545", null, "3966", null, "305294", null, "6528", null, "57585", null, "4668", null, "281254", null, "6385", null, "202117", null, "4814", null, "75683", null, "3836", null, "683", null, "402", null, "19401", null, "2300", null, "-999999999", "N", "-999999999", "N", "17620", null, "2516", null, "23335", null, "3091", null, "34334", null, "2425", null, "196437", null, "4717", null, "93949", null, "4507", null, "195566", null, "5842", null, "20531", null, "2621", null, "59739", null, "4426", null, "115296", null, "5683", null, "-888888888", "(X)", "-888888888", "(X)", "32.2", null, "1.1", null, "67.8", null, "1.1", null, "41.7", null, "1.6", null, "16.0", null, "1.3", null, "4.8", null, "0.8", null, "11.2", null, "1.1", null, "42.3", null, "1.7", null, "27.0", null, "1.7", null, "17.8", null, "1.3", null, "8.9", null, "1.2", null, "2.9", null, "0.8", null, "6.0", null, "0.9", null, "0.3", null, "0.2", null, "73.0", null, "1.7", null, "23.9", null, "1.4", null, "7.2", null, "0.9", null, "1.9", null, "0.5", null, "5.2", null, "0.7", null, "42.0", null, "1.7", null, "9.9", null, "1.2", null, "90.1", null, "1.2", null, "17.0", null, "1.3", null, "83.0", null, "1.3", null, "59.6", null, "1.0", null, "22.3", null, "1.1", null, "0.2", null, "0.1", null, "5.7", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "5.2", null, "0.7", null, "6.9", null, "0.9", null, "10.1", null, "0.7", null, "58.0", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.5", null, "1.3", null, "30.5", null, "2.1", null, "59.0", null, "2.3", null, "21836", null, "3195", null, "6430", null, "1639", null, "15406", null, "2495", null, "4634", null, "1548", null, "10516", null, "2366", null, "1406", null, "832", null, "9110", null, "2109", null, "6686", null, "1869", null, "12105", null, "2195", null, "3495", null, "1456", null, "8428", null, "2076", null, "893", null, "705", null, "7535", null, "1877", null, "182", null, "218", null, "9731", null, "2302", null, "1139", null, "601", null, "2088", null, "961", null, "513", null, "328", null, "1575", null, "877", null, "6504", null, "1888", null, "8436", null, "1871", null, "13400", null, "2590", null, "8596", null, "2117", null, "13240", null, "2524", null, "5369", null, "1272", null, "12134", null, "2556", null, "374", null, "318", null, "1103", null, "702", null, "-999999999", "N", "-999999999", "N", "1455", null, "827", null, "1401", null, "799", null, "3325", null, "1170", null, "5223", null, "1292", null, "32709", null, "10530", null, "15150", null, "2543", null, "1764", null, "875", null, "8127", null, "1922", null, "5259", null, "1387", null, "6.4", null, "1.0", null, "29.4", null, "5.9", null, "70.6", null, "5.9", null, "21.2", null, "6.6", null, "48.2", null, "8.4", null, "6.4", null, "3.5", null, "41.7", null, "8.3", null, "30.6", null, "6.9", null, "55.4", null, "7.4", null, "16.0", null, "6.3", null, "38.6", null, "8.1", null, "4.1", null, "3.0", null, "34.5", null, "7.9", null, "0.8", null, "1.0", null, "44.6", null, "7.4", null, "5.2", null, "2.7", null, "9.6", null, "4.0", null, "2.3", null, "1.4", null, "7.2", null, "3.8", null, "29.8", null, "7.0", null, "38.6", null, "7.0", null, "61.4", null, "7.0", null, "39.4", null, "7.7", null, "60.6", null, "7.7", null, "24.6", null, "5.3", null, "55.6", null, "7.0", null, "1.7", null, "1.4", null, "5.1", null, "3.2", null, "-999999999.0", "N", "-999999999.0", "N", "6.7", null, "3.6", null, "6.4", null, "3.6", null, "15.2", null, "4.8", null, "23.9", null, "5.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.6", null, "5.7", null, "53.6", null, "7.9", null, "34.7", null, "7.7", null, "317003", null, "6412", null, "102694", null, "3832", null, "214309", null, "6011", null, "136571", null, "6475", null, "43845", null, "3962", null, "15007", null, "2661", null, "28838", null, "3364", null, "136587", null, "6330", null, "79435", null, "5866", null, "56886", null, "4903", null, "21697", null, "3536", null, "8977", null, "2523", null, "12720", null, "2684", null, "852", null, "638", null, "237568", null, "7400", null, "79685", null, "5098", null, "22148", null, "2793", null, "6030", null, "1701", null, "16118", null, "2213", null, "135735", null, "6391", null, "25109", null, "3254", null, "291894", null, "6909", null, "48989", null, "4465", null, "268014", null, "6741", null, "196748", null, "5023", null, "63549", null, "3982", null, "309", null, "245", null, "18298", null, "2225", null, "-999999999", "N", "-999999999", "N", "16165", null, "2358", null, "21934", null, "3173", null, "31009", null, "2766", null, "191214", null, "4925", null, "99503", null, "2834", null, "180416", null, "6671", null, "18767", null, "2572", null, "51612", null, "4482", null, "110037", null, "5695", null, "93.6", null, "1.0", null, "32.4", null, "1.1", null, "67.6", null, "1.1", null, "43.1", null, "1.7", null, "13.8", null, "1.3", null, "4.7", null, "0.8", null, "9.1", null, "1.1", null, "43.1", null, "1.8", null, "25.1", null, "1.8", null, "17.9", null, "1.5", null, "6.8", null, "1.1", null, "2.8", null, "0.8", null, "4.0", null, "0.8", null, "0.3", null, "0.2", null, "74.9", null, "1.8", null, "25.1", null, "1.5", null, "7.0", null, "0.9", null, "1.9", null, "0.5", null, "5.1", null, "0.7", null, "42.8", null, "1.8", null, "7.9", null, "1.0", null, "92.1", null, "1.0", null, "15.5", null, "1.4", null, "84.5", null, "1.4", null, "62.1", null, "1.2", null, "20.0", null, "1.2", null, "0.1", null, "0.1", null, "5.8", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "5.1", null, "0.7", null, "6.9", null, "1.0", null, "9.8", null, "0.8", null, "60.3", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.4", null, "1.3", null, "28.6", null, "2.2", null, "61.0", null, "2.4", null, "37", "02"], ["5001900US3703", "Congressional District 3 (119th Congress), North Carolina", "324318", null, "4451", null, "135442", null, "3277", null, "188876", null, "4206", null, "147140", null, "5241", null, "58050", null, "4148", null, "17529", null, "2569", null, "40521", null, "3349", null, "119128", null, "5129", null, "91407", null, "4385", null, "56105", null, "3668", null, "33836", null, "3915", null, "9632", null, "2011", null, "24204", null, "3111", null, "1466", null, "920", null, "232911", null, "5004", null, "91035", null, "3693", null, "24214", null, "2588", null, "7897", null, "1742", null, "16317", null, "2137", null, "117662", null, "5032", null, "49254", null, "4308", null, "275064", null, "5638", null, "100850", null, "4739", null, "223468", null, "5874", null, "221317", null, "4000", null, "64400", null, "2953", null, "1621", null, "700", null, "4711", null, "775", null, "-999999999", "N", "-999999999", "N", "14233", null, "1810", null, "17808", null, "2583", null, "26605", null, "1938", null, "215319", null, "3727", null, "65164", null, "2070", null, "205190", null, "5269", null, "37496", null, "2701", null, "69754", null, "4695", null, "97940", null, "4666", null, "-888888888", "(X)", "-888888888", "(X)", "41.8", null, "0.9", null, "58.2", null, "0.9", null, "45.4", null, "1.5", null, "17.9", null, "1.3", null, "5.4", null, "0.8", null, "12.5", null, "1.0", null, "36.7", null, "1.5", null, "28.2", null, "1.3", null, "17.3", null, "1.1", null, "10.4", null, "1.2", null, "3.0", null, "0.6", null, "7.5", null, "0.9", null, "0.5", null, "0.3", null, "71.8", null, "1.3", null, "28.1", null, "1.1", null, "7.5", null, "0.8", null, "2.4", null, "0.5", null, "5.0", null, "0.7", null, "36.3", null, "1.4", null, "15.2", null, "1.3", null, "84.8", null, "1.3", null, "31.1", null, "1.4", null, "68.9", null, "1.4", null, "68.2", null, "1.0", null, "19.9", null, "0.8", null, "0.5", null, "0.2", null, "1.5", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "4.4", null, "0.6", null, "5.5", null, "0.8", null, "8.2", null, "0.6", null, "66.4", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.3", null, "1.3", null, "34.0", null, "2.1", null, "47.7", null, "1.7", null, "40114", null, "3414", null, "15152", null, "1909", null, "24962", null, "2995", null, "8820", null, "1762", null, "17595", null, "2417", null, "3410", null, "1008", null, "14185", null, "2086", null, "13699", null, "2072", null, "18152", null, "2395", null, "5019", null, "1393", null, "12497", null, "2195", null, "2355", null, "921", null, "10142", null, "1883", null, "636", null, "618", null, "21962", null, "2434", null, "3801", null, "1155", null, "5098", null, "1278", null, "1055", null, "604", null, "4043", null, "1104", null, "13063", null, "2000", null, "15646", null, "2189", null, "24468", null, "2674", null, "20285", null, "3062", null, "19829", null, "2703", null, "15286", null, "2385", null, "18353", null, "2514", null, "478", null, "434", null, "277", null, "222", null, "-999999999", "N", "-999999999", "N", "2376", null, "923", null, "3344", null, "1006", null, "4260", null, "1068", null, "14795", null, "2260", null, "30764", null, "4360", null, "26415", null, "2709", null, "6880", null, "1805", null, "11450", null, "1961", null, "8085", null, "1905", null, "12.4", null, "1.0", null, "37.8", null, "4.3", null, "62.2", null, "4.3", null, "22.0", null, "4.0", null, "43.9", null, "4.9", null, "8.5", null, "2.4", null, "35.4", null, "4.4", null, "34.2", null, "4.1", null, "45.3", null, "4.2", null, "12.5", null, "3.2", null, "31.2", null, "4.8", null, "5.9", null, "2.2", null, "25.3", null, "4.2", null, "1.6", null, "1.5", null, "54.7", null, "4.2", null, "9.5", null, "2.9", null, "12.7", null, "3.0", null, "2.6", null, "1.5", null, "10.1", null, "2.6", null, "32.6", null, "4.1", null, "39.0", null, "4.3", null, "61.0", null, "4.3", null, "50.6", null, "5.8", null, "49.4", null, "5.8", null, "38.1", null, "5.0", null, "45.8", null, "4.8", null, "1.2", null, "1.1", null, "0.7", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "5.9", null, "2.2", null, "8.3", null, "2.5", null, "10.6", null, "2.6", null, "36.9", null, "4.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "26.0", null, "5.9", null, "43.3", null, "7.0", null, "30.6", null, "6.2", null, "284204", null, "4518", null, "120290", null, "2949", null, "163914", null, "4555", null, "138320", null, "5322", null, "40455", null, "3323", null, "14119", null, "2459", null, "26336", null, "2886", null, "105429", null, "4929", null, "73255", null, "4091", null, "51086", null, "3614", null, "21339", null, "3105", null, "7277", null, "1847", null, "14062", null, "2534", null, "830", null, "620", null, "210949", null, "5089", null, "87234", null, "3947", null, "19116", null, "2210", null, "6842", null, "1568", null, "12274", null, "1877", null, "104599", null, "4873", null, "33608", null, "3816", null, "250596", null, "5498", null, "80565", null, "4198", null, "203639", null, "5582", null, "206031", null, "4213", null, "46047", null, "2880", null, "1143", null, "570", null, "4434", null, "753", null, "-999999999", "N", "-999999999", "N", "11857", null, "1675", null, "14464", null, "2338", null, "22345", null, "1929", null, "200524", null, "3948", null, "70755", null, "2653", null, "178775", null, "5372", null, "30616", null, "2201", null, "58304", null, "4002", null, "89855", null, "4677", null, "87.6", null, "1.0", null, "42.3", null, "1.0", null, "57.7", null, "1.0", null, "48.7", null, "1.7", null, "14.2", null, "1.2", null, "5.0", null, "0.9", null, "9.3", null, "1.0", null, "37.1", null, "1.6", null, "25.8", null, "1.4", null, "18.0", null, "1.2", null, "7.5", null, "1.1", null, "2.6", null, "0.7", null, "4.9", null, "0.9", null, "0.3", null, "0.2", null, "74.2", null, "1.4", null, "30.7", null, "1.3", null, "6.7", null, "0.8", null, "2.4", null, "0.5", null, "4.3", null, "0.7", null, "36.8", null, "1.6", null, "11.8", null, "1.3", null, "88.2", null, "1.3", null, "28.3", null, "1.5", null, "71.7", null, "1.5", null, "72.5", null, "1.1", null, "16.2", null, "0.9", null, "0.4", null, "0.2", null, "1.6", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "4.2", null, "0.6", null, "5.1", null, "0.8", null, "7.9", null, "0.6", null, "70.6", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.1", null, "1.2", null, "32.6", null, "2.1", null, "50.3", null, "1.8", null, "37", "03"], ["5001900US3704", "Congressional District 4 (119th Congress), North Carolina", "323924", null, "5221", null, "115037", null, "4527", null, "208887", null, "5655", null, "161458", null, "6211", null, "41088", null, "4216", null, "11551", null, "2488", null, "29537", null, "3652", null, "121378", null, "6195", null, "99430", null, "4865", null, "73542", null, "4070", null, "25124", null, "3564", null, "6555", null, "1662", null, "18569", null, "3230", null, "764", null, "597", null, "224494", null, "6680", null, "87916", null, "4823", null, "15964", null, "2921", null, "4996", null, "2038", null, "10968", null, "2040", null, "120614", null, "6134", null, "27911", null, "3378", null, "296013", null, "4744", null, "64632", null, "3939", null, "259292", null, "5901", null, "189402", null, "4722", null, "61626", null, "4080", null, "1204", null, "627", null, "34714", null, "2381", null, "-999999999", "N", "-999999999", "N", "12491", null, "1962", null, "24244", null, "3258", null, "26378", null, "2338", null, "185842", null, "4638", null, "102410", null, "2194", null, "202546", null, "5997", null, "24187", null, "2141", null, "57874", null, "5068", null, "120485", null, "4720", null, "-888888888", "(X)", "-888888888", "(X)", "35.5", null, "1.3", null, "64.5", null, "1.3", null, "49.8", null, "1.8", null, "12.7", null, "1.3", null, "3.6", null, "0.8", null, "9.1", null, "1.1", null, "37.5", null, "1.7", null, "30.7", null, "1.5", null, "22.7", null, "1.3", null, "7.8", null, "1.1", null, "2.0", null, "0.5", null, "5.7", null, "1.0", null, "0.2", null, "0.2", null, "69.3", null, "1.5", null, "27.1", null, "1.4", null, "4.9", null, "0.9", null, "1.5", null, "0.6", null, "3.4", null, "0.6", null, "37.2", null, "1.7", null, "8.6", null, "1.0", null, "91.4", null, "1.0", null, "20.0", null, "1.2", null, "80.0", null, "1.2", null, "58.5", null, "1.3", null, "19.0", null, "1.2", null, "0.4", null, "0.2", null, "10.7", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "3.9", null, "0.6", null, "7.5", null, "1.0", null, "8.1", null, "0.7", null, "57.4", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.9", null, "1.0", null, "28.6", null, "2.1", null, "59.5", null, "2.1", null, "22917", null, "3167", null, "10891", null, "2174", null, "12026", null, "2219", null, "4753", null, "1433", null, "9069", null, "2209", null, "1603", null, "861", null, "7466", null, "2043", null, "9095", null, "2126", null, "8460", null, "2149", null, "2890", null, "1197", null, "5570", null, "1903", null, "631", null, "564", null, "4939", null, "1854", null, "0", null, "226", null, "14457", null, "2223", null, "1863", null, "730", null, "3499", null, "1203", null, "972", null, "795", null, "2527", null, "842", null, "9095", null, "2126", null, "6853", null, "1716", null, "16064", null, "2771", null, "9689", null, "1955", null, "13228", null, "3014", null, "5335", null, "1352", null, "14023", null, "2952", null, "110", null, "135", null, "620", null, "388", null, "-999999999", "N", "-999999999", "N", "1222", null, "737", null, "1607", null, "970", null, "2159", null, "979", null, "5168", null, "1344", null, "42245", null, "10467", null, "13822", null, "2302", null, "1409", null, "607", null, "6295", null, "1997", null, "6118", null, "1488", null, "7.1", null, "1.0", null, "47.5", null, "6.6", null, "52.5", null, "6.6", null, "20.7", null, "6.2", null, "39.6", null, "7.7", null, "7.0", null, "3.7", null, "32.6", null, "7.3", null, "39.7", null, "6.9", null, "36.9", null, "6.8", null, "12.6", null, "4.9", null, "24.3", null, "6.8", null, "2.8", null, "2.5", null, "21.6", null, "6.7", null, "0.0", null, "0.9", null, "63.1", null, "6.8", null, "8.1", null, "3.4", null, "15.3", null, "5.4", null, "4.2", null, "3.5", null, "11.0", null, "3.9", null, "39.7", null, "6.9", null, "29.9", null, "6.6", null, "70.1", null, "6.6", null, "42.3", null, "8.3", null, "57.7", null, "8.3", null, "23.3", null, "5.3", null, "61.2", null, "7.6", null, "0.5", null, "0.6", null, "2.7", null, "1.7", null, "-999999999.0", "N", "-999999999.0", "N", "5.3", null, "3.2", null, "7.0", null, "4.3", null, "9.4", null, "4.2", null, "22.6", null, "5.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.2", null, "4.4", null, "45.5", null, "10.5", null, "44.3", null, "9.4", null, "301007", null, "5712", null, "104146", null, "4328", null, "196861", null, "5842", null, "156705", null, "5885", null, "32019", null, "3394", null, "9948", null, "2400", null, "22071", null, "3097", null, "112283", null, "5969", null, "90970", null, "4265", null, "70652", null, "3983", null, "19554", null, "2953", null, "5924", null, "1654", null, "13630", null, "2678", null, "764", null, "597", null, "210037", null, "6969", null, "86053", null, "4651", null, "12465", null, "2466", null, "4024", null, "1869", null, "8441", null, "1759", null, "111519", null, "5919", null, "21058", null, "3051", null, "279949", null, "5251", null, "54943", null, "3889", null, "246064", null, "6031", null, "184067", null, "4687", null, "47603", null, "3804", null, "1094", null, "617", null, "34094", null, "2381", null, "-999999999", "N", "-999999999", "N", "11269", null, "2004", null, "22637", null, "3141", null, "24219", null, "2299", null, "180674", null, "4575", null, "107207", null, "2970", null, "188724", null, "5391", null, "22778", null, "2106", null, "51579", null, "4516", null, "114367", null, "4694", null, "92.9", null, "1.0", null, "34.6", null, "1.4", null, "65.4", null, "1.4", null, "52.1", null, "1.8", null, "10.6", null, "1.1", null, "3.3", null, "0.8", null, "7.3", null, "1.0", null, "37.3", null, "1.7", null, "30.2", null, "1.5", null, "23.5", null, "1.4", null, "6.5", null, "1.0", null, "2.0", null, "0.6", null, "4.5", null, "0.9", null, "0.3", null, "0.2", null, "69.8", null, "1.5", null, "28.6", null, "1.4", null, "4.1", null, "0.8", null, "1.3", null, "0.6", null, "2.8", null, "0.6", null, "37.0", null, "1.7", null, "7.0", null, "1.0", null, "93.0", null, "1.0", null, "18.3", null, "1.2", null, "81.7", null, "1.2", null, "61.2", null, "1.3", null, "15.8", null, "1.2", null, "0.4", null, "0.2", null, "11.3", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "3.7", null, "0.7", null, "7.5", null, "1.0", null, "8.0", null, "0.7", null, "60.0", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.1", null, "1.0", null, "27.3", null, "2.1", null, "60.6", null, "2.2", null, "37", "04"], ["5001900US3705", "Congressional District 5 (119th Congress), North Carolina", "317146", null, "5064", null, "142140", null, "4097", null, "175006", null, "4005", null, "139515", null, "5997", null, "57521", null, "4792", null, "17560", null, "2444", null, "39961", null, "4227", null, "120110", null, "5958", null, "89466", null, "4922", null, "52774", null, "3902", null, "36155", null, "3995", null, "11267", null, "2283", null, "24888", null, "3099", null, "537", null, "788", null, "227680", null, "6000", null, "86741", null, "4644", null, "21366", null, "2657", null, "6293", null, "1301", null, "15073", null, "2620", null, "119573", null, "6006", null, "50798", null, "4209", null, "266348", null, "5763", null, "104892", null, "5375", null, "212254", null, "5322", null, "228537", null, "4512", null, "57419", null, "4485", null, "1067", null, "538", null, "5842", null, "1363", null, "-999999999", "N", "-999999999", "N", "8401", null, "2178", null, "15880", null, "2863", null, "19271", null, "2325", null, "222947", null, "4457", null, "59041", null, "2522", null, "197036", null, "6311", null, "39439", null, "2996", null, "62841", null, "4872", null, "94756", null, "4712", null, "-888888888", "(X)", "-888888888", "(X)", "44.8", null, "1.0", null, "55.2", null, "1.0", null, "44.0", null, "1.8", null, "18.1", null, "1.5", null, "5.5", null, "0.8", null, "12.6", null, "1.3", null, "37.9", null, "1.8", null, "28.2", null, "1.5", null, "16.6", null, "1.2", null, "11.4", null, "1.2", null, "3.6", null, "0.7", null, "7.8", null, "1.0", null, "0.2", null, "0.2", null, "71.8", null, "1.5", null, "27.4", null, "1.4", null, "6.7", null, "0.8", null, "2.0", null, "0.4", null, "4.8", null, "0.8", null, "37.7", null, "1.8", null, "16.0", null, "1.3", null, "84.0", null, "1.3", null, "33.1", null, "1.5", null, "66.9", null, "1.5", null, "72.1", null, "1.1", null, "18.1", null, "1.3", null, "0.3", null, "0.2", null, "1.8", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "2.6", null, "0.7", null, "5.0", null, "0.9", null, "6.1", null, "0.7", null, "70.3", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "20.0", null, "1.4", null, "31.9", null, "2.2", null, "48.1", null, "1.9", null, "55296", null, "3865", null, "23370", null, "2700", null, "31926", null, "3304", null, "10608", null, "1843", null, "22134", null, "3074", null, "5937", null, "1857", null, "16197", null, "2651", null, "22554", null, "3203", null, "24172", null, "2952", null, "7336", null, "1494", null, "16809", null, "2725", null, "4671", null, "1756", null, "12138", null, "2476", null, "27", null, "48", null, "31124", null, "3418", null, "3272", null, "936", null, "5325", null, "1337", null, "1266", null, "606", null, "4059", null, "1220", null, "22527", null, "3201", null, "24127", null, "3201", null, "31169", null, "2931", null, "29185", null, "3019", null, "26111", null, "2820", null, "31257", null, "2964", null, "17438", null, "2825", null, "255", null, "220", null, "1075", null, "610", null, "-999999999", "N", "-999999999", "N", "2049", null, "1108", null, "3222", null, "1702", null, "4056", null, "1451", null, "29794", null, "2911", null, "27025", null, "2290", null, "32742", null, "3412", null, "8706", null, "2039", null, "15513", null, "2712", null, "8523", null, "1736", null, "17.4", null, "1.2", null, "42.3", null, "4.2", null, "57.7", null, "4.2", null, "19.2", null, "3.4", null, "40.0", null, "4.6", null, "10.7", null, "3.3", null, "29.3", null, "4.1", null, "40.8", null, "4.9", null, "43.7", null, "4.6", null, "13.3", null, "2.8", null, "30.4", null, "4.1", null, "8.4", null, "3.2", null, "22.0", null, "3.9", null, "0.0", null, "0.1", null, "56.3", null, "4.6", null, "5.9", null, "1.6", null, "9.6", null, "2.4", null, "2.3", null, "1.1", null, "7.3", null, "2.2", null, "40.7", null, "4.9", null, "43.6", null, "4.4", null, "56.4", null, "4.4", null, "52.8", null, "4.0", null, "47.2", null, "4.0", null, "56.5", null, "4.1", null, "31.5", null, "4.5", null, "0.5", null, "0.4", null, "1.9", null, "1.1", null, "-999999999.0", "N", "-999999999.0", "N", "3.7", null, "2.0", null, "5.8", null, "3.0", null, "7.3", null, "2.7", null, "53.9", null, "3.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "26.6", null, "5.4", null, "47.4", null, "6.2", null, "26.0", null, "5.1", null, "261850", null, "5891", null, "118770", null, "4204", null, "143080", null, "4410", null, "128907", null, "6074", null, "35387", null, "3362", null, "11623", null, "1910", null, "23764", null, "2914", null, "97556", null, "5836", null, "65294", null, "4606", null, "45438", null, "4037", null, "19346", null, "2908", null, "6596", null, "1706", null, "12750", null, "2079", null, "510", null, "788", null, "196556", null, "6023", null, "83469", null, "4615", null, "16041", null, "2147", null, "5027", null, "1137", null, "11014", null, "2096", null, "97046", null, "5872", null, "26671", null, "2760", null, "235179", null, "5623", null, "75707", null, "4431", null, "186143", null, "5439", null, "197280", null, "4433", null, "39981", null, "4200", null, "812", null, "493", null, "4767", null, "1322", null, "-999999999", "N", "-999999999", "N", "6352", null, "1875", null, "12658", null, "2171", null, "15215", null, "1911", null, "193153", null, "4316", null, "68162", null, "2871", null, "164294", null, "6106", null, "30733", null, "2780", null, "47328", null, "4145", null, "86233", null, "4770", null, "82.6", null, "1.2", null, "45.4", null, "1.2", null, "54.6", null, "1.2", null, "49.2", null, "2.0", null, "13.5", null, "1.3", null, "4.4", null, "0.7", null, "9.1", null, "1.1", null, "37.3", null, "2.0", null, "24.9", null, "1.6", null, "17.4", null, "1.5", null, "7.4", null, "1.1", null, "2.5", null, "0.7", null, "4.9", null, "0.8", null, "0.2", null, "0.3", null, "75.1", null, "1.6", null, "31.9", null, "1.6", null, "6.1", null, "0.8", null, "1.9", null, "0.4", null, "4.2", null, "0.8", null, "37.1", null, "2.0", null, "10.2", null, "1.0", null, "89.8", null, "1.0", null, "28.9", null, "1.5", null, "71.1", null, "1.5", null, "75.3", null, "1.3", null, "15.3", null, "1.5", null, "0.3", null, "0.2", null, "1.8", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "2.4", null, "0.7", null, "4.8", null, "0.8", null, "5.8", null, "0.7", null, "73.8", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.7", null, "1.5", null, "28.8", null, "2.3", null, "52.5", null, "2.2", null, "37", "05"], ["5001900US3706", "Congressional District 6 (119th Congress), North Carolina", "329135", null, "6077", null, "134469", null, "4455", null, "194666", null, "6099", null, "149443", null, "5370", null, "59617", null, "5028", null, "16457", null, "2912", null, "43160", null, "3879", null, "120075", null, "6955", null, "95747", null, "4404", null, "62747", null, "3965", null, "32401", null, "3803", null, "8188", null, "1958", null, "24213", null, "3152", null, "599", null, "464", null, "233388", null, "7213", null, "86696", null, "4038", null, "27216", null, "3512", null, "8269", null, "1935", null, "18947", null, "2835", null, "119476", null, "6951", null, "41491", null, "4512", null, "287644", null, "6676", null, "94715", null, "5797", null, "234420", null, "6691", null, "217372", null, "5331", null, "62184", null, "4188", null, "-999999999", "N", "-999999999", "N", "11995", null, "1764", null, "-999999999", "N", "-999999999", "N", "14452", null, "2869", null, "21612", null, "3293", null, "28635", null, "2895", null, "213829", null, "5438", null, "68414", null, "2505", null, "209060", null, "5691", null, "31230", null, "2718", null, "61607", null, "4161", null, "116223", null, "5082", null, "-888888888", "(X)", "-888888888", "(X)", "40.9", null, "1.3", null, "59.1", null, "1.3", null, "45.4", null, "1.6", null, "18.1", null, "1.5", null, "5.0", null, "0.9", null, "13.1", null, "1.2", null, "36.5", null, "1.8", null, "29.1", null, "1.4", null, "19.1", null, "1.2", null, "9.8", null, "1.2", null, "2.5", null, "0.6", null, "7.4", null, "1.0", null, "0.2", null, "0.1", null, "70.9", null, "1.4", null, "26.3", null, "1.2", null, "8.3", null, "1.0", null, "2.5", null, "0.6", null, "5.8", null, "0.8", null, "36.3", null, "1.8", null, "12.6", null, "1.3", null, "87.4", null, "1.3", null, "28.8", null, "1.6", null, "71.2", null, "1.6", null, "66.0", null, "1.2", null, "18.9", null, "1.2", null, "-999999999.0", "N", "-999999999.0", "N", "3.6", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "4.4", null, "0.9", null, "6.6", null, "1.0", null, "8.7", null, "0.9", null, "65.0", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.9", null, "1.2", null, "29.5", null, "2.0", null, "55.6", null, "1.7", null, "42301", null, "3955", null, "15994", null, "2518", null, "26307", null, "3194", null, "10992", null, "2010", null, "16729", null, "2836", null, "2714", null, "1088", null, "14015", null, "2544", null, "14580", null, "2556", null, "20219", null, "2773", null, "8329", null, "1832", null, "11854", null, "2352", null, "2107", null, "1001", null, "9747", null, "2231", null, "36", null, "75", null, "22082", null, "3068", null, "2663", null, "1047", null, "4875", null, "1612", null, "607", null, "412", null, "4268", null, "1528", null, "14544", null, "2551", null, "16828", null, "2928", null, "25473", null, "3352", null, "19948", null, "2751", null, "22353", null, "2983", null, "17844", null, "2211", null, "16753", null, "2993", null, "-999999999", "N", "-999999999", "N", "1405", null, "728", null, "-999999999", "N", "-999999999", "N", "2257", null, "942", null, "3859", null, "1605", null, "3901", null, "1294", null, "17530", null, "2184", null, "30925", null, "6937", null, "27721", null, "3267", null, "4185", null, "1339", null, "12159", null, "2041", null, "11377", null, "2271", null, "12.9", null, "1.2", null, "37.8", null, "4.8", null, "62.2", null, "4.8", null, "26.0", null, "4.5", null, "39.5", null, "5.3", null, "6.4", null, "2.5", null, "33.1", null, "4.9", null, "34.5", null, "5.0", null, "47.8", null, "5.1", null, "19.7", null, "4.3", null, "28.0", null, "4.6", null, "5.0", null, "2.3", null, "23.0", null, "4.6", null, "0.1", null, "0.2", null, "52.2", null, "5.1", null, "6.3", null, "2.4", null, "11.5", null, "3.7", null, "1.4", null, "1.0", null, "10.1", null, "3.5", null, "34.4", null, "5.0", null, "39.8", null, "5.7", null, "60.2", null, "5.7", null, "47.2", null, "4.9", null, "52.8", null, "4.9", null, "42.2", null, "4.5", null, "39.6", null, "5.4", null, "-999999999.0", "N", "-999999999.0", "N", "3.3", null, "1.7", null, "-999999999.0", "N", "-999999999.0", "N", "5.3", null, "2.2", null, "9.1", null, "3.6", null, "9.2", null, "3.0", null, "41.4", null, "4.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.1", null, "4.4", null, "43.9", null, "6.0", null, "41.0", null, "6.1", null, "286834", null, "6675", null, "118475", null, "4468", null, "168359", null, "6509", null, "138451", null, "5169", null, "42888", null, "3994", null, "13743", null, "2747", null, "29145", null, "2824", null, "105495", null, "6626", null, "75528", null, "4473", null, "54418", null, "4158", null, "20547", null, "3294", null, "6081", null, "1768", null, "14466", null, "2474", null, "563", null, "456", null, "211306", null, "6898", null, "84033", null, "3909", null, "22341", null, "3104", null, "7662", null, "1892", null, "14679", null, "2215", null, "104932", null, "6624", null, "24663", null, "3440", null, "262171", null, "7096", null, "74767", null, "5068", null, "212067", null, "6921", null, "199528", null, "5043", null, "45431", null, "3570", null, "-999999999", "N", "-999999999", "N", "10590", null, "1836", null, "-999999999", "N", "-999999999", "N", "12195", null, "2682", null, "17753", null, "3135", null, "24734", null, "2728", null, "196299", null, "5050", null, "74640", null, "2399", null, "181339", null, "5685", null, "27045", null, "2256", null, "49448", null, "3997", null, "104846", null, "5458", null, "87.1", null, "1.2", null, "41.3", null, "1.5", null, "58.7", null, "1.5", null, "48.3", null, "1.6", null, "15.0", null, "1.4", null, "4.8", null, "1.0", null, "10.2", null, "1.0", null, "36.8", null, "1.9", null, "26.3", null, "1.5", null, "19.0", null, "1.4", null, "7.2", null, "1.2", null, "2.1", null, "0.6", null, "5.0", null, "0.9", null, "0.2", null, "0.2", null, "73.7", null, "1.5", null, "29.3", null, "1.4", null, "7.8", null, "1.1", null, "2.7", null, "0.7", null, "5.1", null, "0.8", null, "36.6", null, "1.9", null, "8.6", null, "1.2", null, "91.4", null, "1.2", null, "26.1", null, "1.7", null, "73.9", null, "1.7", null, "69.6", null, "1.3", null, "15.8", null, "1.2", null, "-999999999.0", "N", "-999999999.0", "N", "3.7", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "4.3", null, "0.9", null, "6.2", null, "1.1", null, "8.6", null, "0.9", null, "68.4", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.9", null, "1.1", null, "27.3", null, "2.2", null, "57.8", null, "2.1", null, "37", "06"], ["5001900US3707", "Congressional District 7 (119th Congress), North Carolina", "339370", null, "4656", null, "163304", null, "2811", null, "176066", null, "4696", null, "160296", null, "4999", null, "55723", null, "3895", null, "14998", null, "2214", null, "40725", null, "3276", null, "123351", null, "4235", null, "85014", null, "4862", null, "52650", null, "3736", null, "31968", null, "3341", null, "6890", null, "1488", null, "25078", null, "3014", null, "396", null, "298", null, "254356", null, "4416", null, "107646", null, "3777", null, "23755", null, "2644", null, "8108", null, "1533", null, "15647", null, "2063", null, "122955", null, "4242", null, "43289", null, "3632", null, "296081", null, "5373", null, "99366", null, "5139", null, "240004", null, "6081", null, "238327", null, "3929", null, "60157", null, "2511", null, "6462", null, "764", null, "3660", null, "762", null, "-999999999", "N", "-999999999", "N", "10725", null, "1941", null, "19656", null, "2206", null, "22297", null, "1876", null, "234813", null, "3806", null, "71121", null, "1446", null, "216019", null, "6097", null, "45319", null, "2836", null, "69129", null, "4733", null, "101571", null, "4975", null, "-888888888", "(X)", "-888888888", "(X)", "48.1", null, "0.9", null, "51.9", null, "0.9", null, "47.2", null, "1.2", null, "16.4", null, "1.1", null, "4.4", null, "0.6", null, "12.0", null, "0.9", null, "36.3", null, "1.3", null, "25.1", null, "1.3", null, "15.5", null, "1.0", null, "9.4", null, "0.9", null, "2.0", null, "0.4", null, "7.4", null, "0.9", null, "0.1", null, "0.1", null, "74.9", null, "1.3", null, "31.7", null, "1.1", null, "7.0", null, "0.8", null, "2.4", null, "0.4", null, "4.6", null, "0.6", null, "36.2", null, "1.3", null, "12.8", null, "1.1", null, "87.2", null, "1.1", null, "29.3", null, "1.5", null, "70.7", null, "1.5", null, "70.2", null, "0.8", null, "17.7", null, "0.7", null, "1.9", null, "0.2", null, "1.1", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "3.2", null, "0.6", null, "5.8", null, "0.6", null, "6.6", null, "0.5", null, "69.2", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "21.0", null, "1.2", null, "32.0", null, "1.9", null, "47.0", null, "2.0", null, "40153", null, "3310", null, "16968", null, "1595", null, "23185", null, "2935", null, "8379", null, "1609", null, "18708", null, "2506", null, "3248", null, "1130", null, "15460", null, "2260", null, "13066", null, "1688", null, "18900", null, "2596", null, "4796", null, "1235", null, "13834", null, "2486", null, "1876", null, "863", null, "11958", null, "2284", null, "270", null, "241", null, "21253", null, "1921", null, "3583", null, "1046", null, "4874", null, "1149", null, "1372", null, "811", null, "3502", null, "816", null, "12796", null, "1671", null, "17741", null, "2550", null, "22412", null, "2390", null, "19273", null, "2126", null, "20880", null, "2665", null, "16534", null, "2168", null, "15964", null, "2059", null, "1823", null, "544", null, "591", null, "340", null, "-999999999", "N", "-999999999", "N", "2013", null, "645", null, "3130", null, "972", null, "3306", null, "825", null, "16121", null, "2146", null, "27875", null, "3115", null, "27087", null, "2867", null, "6571", null, "1276", null, "13508", null, "2098", null, "7008", null, "1840", null, "11.8", null, "0.9", null, "42.3", null, "3.9", null, "57.7", null, "3.9", null, "20.9", null, "3.7", null, "46.6", null, "4.2", null, "8.1", null, "2.7", null, "38.5", null, "4.3", null, "32.5", null, "3.7", null, "47.1", null, "4.0", null, "11.9", null, "2.9", null, "34.5", null, "4.7", null, "4.7", null, "2.0", null, "29.8", null, "4.6", null, "0.7", null, "0.6", null, "52.9", null, "4.0", null, "8.9", null, "2.6", null, "12.1", null, "2.9", null, "3.4", null, "2.0", null, "8.7", null, "2.1", null, "31.9", null, "3.6", null, "44.2", null, "4.6", null, "55.8", null, "4.6", null, "48.0", null, "4.3", null, "52.0", null, "4.3", null, "41.2", null, "3.9", null, "39.8", null, "3.8", null, "4.5", null, "1.4", null, "1.5", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "5.0", null, "1.6", null, "7.8", null, "2.3", null, "8.2", null, "2.1", null, "40.1", null, "3.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "24.3", null, "4.4", null, "49.9", null, "6.0", null, "25.9", null, "5.8", null, "299217", null, "4663", null, "146336", null, "3031", null, "152881", null, "4608", null, "151917", null, "4812", null, "37015", null, "3252", null, "11750", null, "1932", null, "25265", null, "2675", null, "110285", null, "4259", null, "66114", null, "4329", null, "47854", null, "3610", null, "18134", null, "2516", null, "5014", null, "1250", null, "13120", null, "2134", null, "126", null, "156", null, "233103", null, "4195", null, "104063", null, "3552", null, "18881", null, "2232", null, "6736", null, "1378", null, "12145", null, "1829", null, "110159", null, "4251", null, "25548", null, "2763", null, "273669", null, "4921", null, "80093", null, "4531", null, "219124", null, "6053", null, "221793", null, "3842", null, "44193", null, "2649", null, "4639", null, "835", null, "3069", null, "804", null, "-999999999", "N", "-999999999", "N", "8712", null, "1919", null, "16526", null, "2135", null, "18991", null, "1809", null, "218692", null, "3757", null, "78370", null, "2157", null, "188932", null, "5216", null, "38748", null, "2456", null, "55621", null, "4199", null, "94563", null, "4421", null, "88.2", null, "0.9", null, "48.9", null, "1.0", null, "51.1", null, "1.0", null, "50.8", null, "1.4", null, "12.4", null, "1.0", null, "3.9", null, "0.6", null, "8.4", null, "0.9", null, "36.9", null, "1.4", null, "22.1", null, "1.3", null, "16.0", null, "1.1", null, "6.1", null, "0.8", null, "1.7", null, "0.4", null, "4.4", null, "0.7", null, "0.0", null, "0.1", null, "77.9", null, "1.3", null, "34.8", null, "1.2", null, "6.3", null, "0.7", null, "2.3", null, "0.5", null, "4.1", null, "0.6", null, "36.8", null, "1.4", null, "8.5", null, "0.9", null, "91.5", null, "0.9", null, "26.8", null, "1.5", null, "73.2", null, "1.5", null, "74.1", null, "1.0", null, "14.8", null, "0.8", null, "1.6", null, "0.3", null, "1.0", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "2.9", null, "0.6", null, "5.5", null, "0.7", null, "6.3", null, "0.6", null, "73.1", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "20.5", null, "1.2", null, "29.4", null, "2.0", null, "50.1", null, "2.0", null, "37", "07"], ["5001900US3708", "Congressional District 8 (119th Congress), North Carolina", "293042", null, "4496", null, "126491", null, "3433", null, "166551", null, "4443", null, "160414", null, "5222", null, "53340", null, "3745", null, "14896", null, "2217", null, "38444", null, "3075", null, "79288", null, "4614", null, "105349", null, "4121", null, "73181", null, "3960", null, "31742", null, "3045", null, "8900", null, "1988", null, "22842", null, "2531", null, "426", null, "417", null, "187693", null, "4712", null, "87233", null, "4466", null, "21598", null, "2154", null, "5996", null, "1058", null, "15602", null, "1760", null, "78862", null, "4631", null, "37442", null, "3446", null, "255600", null, "5139", null, "83492", null, "3706", null, "209550", null, "4645", null, "185934", null, "4326", null, "53515", null, "2770", null, "17328", null, "1023", null, "11099", null, "1303", null, "-999999999", "N", "-999999999", "N", "10634", null, "1758", null, "14309", null, "1989", null, "21040", null, "2168", null, "182291", null, "4455", null, "81435", null, "2110", null, "213754", null, "5556", null, "32521", null, "2598", null, "64317", null, "3722", null, "116916", null, "5060", null, "-888888888", "(X)", "-888888888", "(X)", "43.2", null, "1.1", null, "56.8", null, "1.1", null, "54.7", null, "1.6", null, "18.2", null, "1.2", null, "5.1", null, "0.8", null, "13.1", null, "1.0", null, "27.1", null, "1.5", null, "36.0", null, "1.3", null, "25.0", null, "1.3", null, "10.8", null, "1.0", null, "3.0", null, "0.7", null, "7.8", null, "0.9", null, "0.1", null, "0.1", null, "64.0", null, "1.3", null, "29.8", null, "1.5", null, "7.4", null, "0.7", null, "2.0", null, "0.4", null, "5.3", null, "0.6", null, "26.9", null, "1.5", null, "12.8", null, "1.2", null, "87.2", null, "1.2", null, "28.5", null, "1.2", null, "71.5", null, "1.2", null, "63.4", null, "1.2", null, "18.3", null, "0.9", null, "5.9", null, "0.4", null, "3.8", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "3.6", null, "0.6", null, "4.9", null, "0.7", null, "7.2", null, "0.7", null, "62.2", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.2", null, "1.1", null, "30.1", null, "1.6", null, "54.7", null, "1.8", null, "37796", null, "3187", null, "14970", null, "1688", null, "22826", null, "2681", null, "8756", null, "1607", null, "16928", null, "2045", null, "3811", null, "1182", null, "13117", null, "1715", null, "12112", null, "2342", null, "18792", null, "2345", null, "6805", null, "1612", null, "11958", null, "1824", null, "2744", null, "1158", null, "9214", null, "1563", null, "29", null, "49", null, "19004", null, "2460", null, "1951", null, "567", null, "4970", null, "913", null, "1067", null, "393", null, "3903", null, "904", null, "12083", null, "2346", null, "15376", null, "2429", null, "22420", null, "2610", null, "19706", null, "2395", null, "18090", null, "2464", null, "12221", null, "1908", null, "15014", null, "2260", null, "6973", null, "901", null, "716", null, "734", null, "-999999999", "N", "-999999999", "N", "1330", null, "688", null, "1542", null, "749", null, "3169", null, "1360", null, "11610", null, "1738", null, "29322", null, "4762", null, "25684", null, "2508", null, "5880", null, "1254", null, "11782", null, "1828", null, "8022", null, "1783", null, "12.9", null, "1.1", null, "39.6", null, "3.9", null, "60.4", null, "3.9", null, "23.2", null, "3.9", null, "44.8", null, "4.8", null, "10.1", null, "3.0", null, "34.7", null, "4.3", null, "32.0", null, "5.0", null, "49.7", null, "4.8", null, "18.0", null, "4.0", null, "31.6", null, "4.2", null, "7.3", null, "3.0", null, "24.4", null, "3.8", null, "0.1", null, "0.1", null, "50.3", null, "4.8", null, "5.2", null, "1.5", null, "13.1", null, "2.5", null, "2.8", null, "1.0", null, "10.3", null, "2.5", null, "32.0", null, "5.0", null, "40.7", null, "5.2", null, "59.3", null, "5.2", null, "52.1", null, "4.8", null, "47.9", null, "4.8", null, "32.3", null, "4.4", null, "39.7", null, "4.6", null, "18.4", null, "2.6", null, "1.9", null, "1.9", null, "-999999999.0", "N", "-999999999.0", "N", "3.5", null, "1.8", null, "4.1", null, "1.9", null, "8.4", null, "3.3", null, "30.7", null, "4.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "22.9", null, "4.7", null, "45.9", null, "5.8", null, "31.2", null, "5.7", null, "255246", null, "4764", null, "111521", null, "3341", null, "143725", null, "4160", null, "151658", null, "5092", null, "36412", null, "3407", null, "11085", null, "1929", null, "25327", null, "2951", null, "67176", null, "4146", null, "86557", null, "3673", null, "66376", null, "3913", null, "19784", null, "2804", null, "6156", null, "1676", null, "13628", null, "2357", null, "397", null, "412", null, "168689", null, "4633", null, "85282", null, "4390", null, "16628", null, "2149", null, "4929", null, "1077", null, "11699", null, "1754", null, "66779", null, "4149", null, "22066", null, "2737", null, "233180", null, "4764", null, "63786", null, "3567", null, "191460", null, "4477", null, "173713", null, "4512", null, "38501", null, "2768", null, "10355", null, "937", null, "10383", null, "1395", null, "-999999999", "N", "-999999999", "N", "9304", null, "1533", null, "12767", null, "2024", null, "17871", null, "1943", null, "170681", null, "4546", null, "91639", null, "2049", null, "188070", null, "5016", null, "26641", null, "2130", null, "52535", null, "3344", null, "108894", null, "4827", null, "87.1", null, "1.1", null, "43.7", null, "1.1", null, "56.3", null, "1.1", null, "59.4", null, "1.7", null, "14.3", null, "1.3", null, "4.3", null, "0.8", null, "9.9", null, "1.1", null, "26.3", null, "1.5", null, "33.9", null, "1.3", null, "26.0", null, "1.5", null, "7.8", null, "1.1", null, "2.4", null, "0.7", null, "5.3", null, "0.9", null, "0.2", null, "0.2", null, "66.1", null, "1.3", null, "33.4", null, "1.6", null, "6.5", null, "0.8", null, "1.9", null, "0.4", null, "4.6", null, "0.7", null, "26.2", null, "1.5", null, "8.6", null, "1.0", null, "91.4", null, "1.0", null, "25.0", null, "1.3", null, "75.0", null, "1.3", null, "68.1", null, "1.4", null, "15.1", null, "1.0", null, "4.1", null, "0.4", null, "4.1", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "3.6", null, "0.6", null, "5.0", null, "0.8", null, "7.0", null, "0.8", null, "66.9", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.2", null, "1.0", null, "27.9", null, "1.7", null, "57.9", null, "1.9", null, "37", "08"], ["5001900US3709", "Congressional District 9 (119th Congress), North Carolina", "313500", null, "4597", null, "131492", null, "4034", null, "182008", null, "4041", null, "153303", null, "5945", null, "59178", null, "3958", null, "15551", null, "2273", null, "43627", null, "3837", null, "101019", null, "5083", null, "93552", null, "4038", null, "59401", null, "3907", null, "33688", null, "3304", null, "7689", null, "1457", null, "25999", null, "3094", null, "463", null, "262", null, "219948", null, "5000", null, "93902", null, "4941", null, "25490", null, "2736", null, "7862", null, "1765", null, "17628", null, "2375", null, "100556", null, "5082", null, "40610", null, "3701", null, "272890", null, "5743", null, "89611", null, "4923", null, "223889", null, "5638", null, "200743", null, "4679", null, "66196", null, "3391", null, "2895", null, "674", null, "5326", null, "902", null, "639", null, "415", null, "14632", null, "1804", null, "23069", null, "2411", null, "32213", null, "2215", null, "196229", null, "4559", null, "68360", null, "2242", null, "212481", null, "5844", null, "35867", null, "2730", null, "70442", null, "3552", null, "106172", null, "4636", null, "-888888888", "(X)", "-888888888", "(X)", "41.9", null, "1.1", null, "58.1", null, "1.1", null, "48.9", null, "1.8", null, "18.9", null, "1.2", null, "5.0", null, "0.7", null, "13.9", null, "1.2", null, "32.2", null, "1.6", null, "29.8", null, "1.2", null, "18.9", null, "1.2", null, "10.7", null, "1.0", null, "2.5", null, "0.5", null, "8.3", null, "1.0", null, "0.1", null, "0.1", null, "70.2", null, "1.2", null, "30.0", null, "1.5", null, "8.1", null, "0.9", null, "2.5", null, "0.6", null, "5.6", null, "0.7", null, "32.1", null, "1.6", null, "13.0", null, "1.2", null, "87.0", null, "1.2", null, "28.6", null, "1.5", null, "71.4", null, "1.5", null, "64.0", null, "1.2", null, "21.1", null, "1.0", null, "0.9", null, "0.2", null, "1.7", null, "0.3", null, "0.2", null, "0.1", null, "4.7", null, "0.6", null, "7.4", null, "0.8", null, "10.3", null, "0.7", null, "62.6", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.9", null, "1.2", null, "33.2", null, "1.5", null, "50.0", null, "1.6", null, "42394", null, "3467", null, "16671", null, "2753", null, "25723", null, "2999", null, "10561", null, "1956", null, "18785", null, "2387", null, "2917", null, "843", null, "15868", null, "2304", null, "13048", null, "2272", null, "22337", null, "2409", null, "7234", null, "1412", null, "14850", null, "2119", null, "2532", null, "715", null, "12318", null, "2065", null, "253", null, "248", null, "20057", null, "2384", null, "3327", null, "1376", null, "3935", null, "1027", null, "385", null, "440", null, "3550", null, "970", null, "12795", null, "2264", null, "14287", null, "2439", null, "28107", null, "2679", null, "19629", null, "2546", null, "22765", null, "2676", null, "19418", null, "2551", null, "15511", null, "1933", null, "582", null, "287", null, "405", null, "277", null, "257", null, "231", null, "1892", null, "880", null, "4329", null, "1335", null, "4753", null, "1405", null, "18701", null, "2320", null, "35373", null, "3633", null, "29346", null, "3053", null, "5581", null, "1484", null, "15230", null, "2273", null, "8535", null, "1477", null, "13.5", null, "1.1", null, "39.3", null, "5.4", null, "60.7", null, "5.4", null, "24.9", null, "4.0", null, "44.3", null, "4.7", null, "6.9", null, "1.9", null, "37.4", null, "4.7", null, "30.8", null, "4.6", null, "52.7", null, "3.9", null, "17.1", null, "3.0", null, "35.0", null, "4.1", null, "6.0", null, "1.7", null, "29.1", null, "4.2", null, "0.6", null, "0.6", null, "47.3", null, "3.9", null, "7.8", null, "3.1", null, "9.3", null, "2.4", null, "0.9", null, "1.0", null, "8.4", null, "2.3", null, "30.2", null, "4.6", null, "33.7", null, "4.5", null, "66.3", null, "4.5", null, "46.3", null, "4.6", null, "53.7", null, "4.6", null, "45.8", null, "4.4", null, "36.6", null, "4.1", null, "1.4", null, "0.7", null, "1.0", null, "0.6", null, "0.6", null, "0.6", null, "4.5", null, "2.0", null, "10.2", null, "3.0", null, "11.2", null, "2.9", null, "44.1", null, "4.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "19.0", null, "4.3", null, "51.9", null, "5.7", null, "29.1", null, "4.6", null, "271106", null, "6079", null, "114821", null, "4022", null, "156285", null, "5092", null, "142742", null, "6146", null, "40393", null, "3457", null, "12634", null, "2048", null, "27759", null, "3279", null, "87971", null, "5021", null, "71215", null, "4473", null, "52167", null, "4036", null, "18838", null, "2609", null, "5157", null, "1258", null, "13681", null, "2248", null, "210", null, "167", null, "199891", null, "5790", null, "90575", null, "4701", null, "21555", null, "2365", null, "7477", null, "1696", null, "14078", null, "2066", null, "87761", null, "5047", null, "26323", null, "2803", null, "244783", null, "6315", null, "69982", null, "4796", null, "201124", null, "6081", null, "181325", null, "4876", null, "50685", null, "3424", null, "2313", null, "637", null, "4921", null, "945", null, "382", null, "348", null, "12740", null, "1892", null, "18740", null, "2306", null, "27460", null, "2224", null, "177528", null, "4751", null, "75677", null, "2673", null, "183135", null, "6132", null, "30286", null, "2533", null, "55212", null, "3553", null, "97637", null, "4565", null, "86.5", null, "1.1", null, "42.4", null, "1.2", null, "57.6", null, "1.2", null, "52.7", null, "2.0", null, "14.9", null, "1.2", null, "4.7", null, "0.7", null, "10.2", null, "1.2", null, "32.4", null, "1.7", null, "26.3", null, "1.5", null, "19.2", null, "1.4", null, "6.9", null, "1.0", null, "1.9", null, "0.5", null, "5.0", null, "0.8", null, "0.1", null, "0.1", null, "73.7", null, "1.5", null, "33.4", null, "1.7", null, "8.0", null, "0.8", null, "2.8", null, "0.6", null, "5.2", null, "0.8", null, "32.4", null, "1.7", null, "9.7", null, "1.0", null, "90.3", null, "1.0", null, "25.8", null, "1.6", null, "74.2", null, "1.6", null, "66.9", null, "1.3", null, "18.7", null, "1.1", null, "0.9", null, "0.2", null, "1.8", null, "0.3", null, "0.1", null, "0.1", null, "4.7", null, "0.7", null, "6.9", null, "0.9", null, "10.1", null, "0.8", null, "65.5", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.5", null, "1.2", null, "30.1", null, "1.7", null, "53.3", null, "1.8", null, "37", "09"], ["5001900US3710", "Congressional District 10 (119th Congress), North Carolina", "326998", null, "4661", null, "137781", null, "3688", null, "189217", null, "4886", null, "165924", null, "5610", null, "46514", null, "3923", null, "12886", null, "2413", null, "33628", null, "3188", null, "114560", null, "4854", null, "90700", null, "4768", null, "65239", null, "3866", null, "24571", null, "3134", null, "5318", null, "1505", null, "19253", null, "2765", null, "890", null, "589", null, "236298", null, "5205", null, "100685", null, "4420", null, "21943", null, "2610", null, "7568", null, "1749", null, "14375", null, "1928", null, "113670", null, "4696", null, "45295", null, "4215", null, "281703", null, "5107", null, "88336", null, "4867", null, "238662", null, "6215", null, "233522", null, "4008", null, "51776", null, "3486", null, "1335", null, "792", null, "7625", null, "1260", null, "-999999999", "N", "-999999999", "N", "11865", null, "2219", null, "20353", null, "2724", null, "27498", null, "2836", null, "229206", null, "4222", null, "71999", null, "2677", null, "212438", null, "5471", null, "38155", null, "2930", null, "63811", null, "4254", null, "110472", null, "4908", null, "-888888888", "(X)", "-888888888", "(X)", "42.1", null, "1.1", null, "57.9", null, "1.1", null, "50.7", null, "1.6", null, "14.2", null, "1.2", null, "3.9", null, "0.7", null, "10.3", null, "1.0", null, "35.0", null, "1.4", null, "27.7", null, "1.4", null, "20.0", null, "1.1", null, "7.5", null, "0.9", null, "1.6", null, "0.5", null, "5.9", null, "0.8", null, "0.3", null, "0.2", null, "72.3", null, "1.4", null, "30.8", null, "1.3", null, "6.7", null, "0.8", null, "2.3", null, "0.5", null, "4.4", null, "0.6", null, "34.8", null, "1.4", null, "13.9", null, "1.2", null, "86.1", null, "1.2", null, "27.0", null, "1.5", null, "73.0", null, "1.5", null, "71.4", null, "1.1", null, "15.8", null, "1.0", null, "0.4", null, "0.2", null, "2.3", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "3.6", null, "0.7", null, "6.2", null, "0.8", null, "8.4", null, "0.9", null, "70.1", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.0", null, "1.3", null, "30.0", null, "1.8", null, "52.0", null, "1.9", null, "38713", null, "4291", null, "14365", null, "2474", null, "24348", null, "3606", null, "8696", null, "1947", null, "15344", null, "2851", null, "3462", null, "1304", null, "11882", null, "2554", null, "14673", null, "2405", null, "18384", null, "3057", null, "6326", null, "1786", null, "11534", null, "2625", null, "2301", null, "1158", null, "9233", null, "2322", null, "524", null, "476", null, "20329", null, "2955", null, "2370", null, "850", null, "3810", null, "1186", null, "1161", null, "655", null, "2649", null, "926", null, "14149", null, "2389", null, "17884", null, "2932", null, "20829", null, "3343", null, "19007", null, "2891", null, "19706", null, "3239", null, "19065", null, "2834", null, "10886", null, "2124", null, "475", null, "535", null, "438", null, "385", null, "-999999999", "N", "-999999999", "N", "2552", null, "1217", null, "5297", null, "1964", null, "5368", null, "1875", null, "18904", null, "2815", null, "26861", null, "4543", null, "24040", null, "3302", null, "6088", null, "1887", null, "10561", null, "2267", null, "7391", null, "1680", null, "11.8", null, "1.3", null, "37.1", null, "5.4", null, "62.9", null, "5.4", null, "22.5", null, "4.7", null, "39.6", null, "5.3", null, "8.9", null, "3.2", null, "30.7", null, "5.3", null, "37.9", null, "4.7", null, "47.5", null, "5.5", null, "16.3", null, "4.3", null, "29.8", null, "5.5", null, "5.9", null, "3.0", null, "23.8", null, "5.0", null, "1.4", null, "1.2", null, "52.5", null, "5.5", null, "6.1", null, "2.2", null, "9.8", null, "2.8", null, "3.0", null, "1.6", null, "6.8", null, "2.3", null, "36.5", null, "4.9", null, "46.2", null, "5.9", null, "53.8", null, "5.9", null, "49.1", null, "5.6", null, "50.9", null, "5.6", null, "49.2", null, "5.5", null, "28.1", null, "4.6", null, "1.2", null, "1.4", null, "1.1", null, "1.0", null, "-999999999.0", "N", "-999999999.0", "N", "6.6", null, "2.9", null, "13.7", null, "4.7", null, "13.9", null, "4.3", null, "48.8", null, "5.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "25.3", null, "6.7", null, "43.9", null, "7.0", null, "30.7", null, "6.0", null, "288285", null, "6029", null, "123416", null, "3821", null, "164869", null, "5508", null, "157228", null, "5818", null, "31170", null, "3112", null, "9424", null, "1850", null, "21746", null, "2567", null, "99887", null, "5000", null, "72316", null, "4316", null, "58913", null, "3573", null, "13037", null, "2263", null, "3017", null, "1005", null, "10020", null, "2054", null, "366", null, "323", null, "215969", null, "6088", null, "98315", null, "4536", null, "18133", null, "2546", null, "6407", null, "1578", null, "11726", null, "1901", null, "99521", null, "4951", null, "27411", null, "2969", null, "260874", null, "6114", null, "69329", null, "4913", null, "218956", null, "6446", null, "214457", null, "4869", null, "40890", null, "3160", null, "860", null, "524", null, "7187", null, "1215", null, "-999999999", "N", "-999999999", "N", "9313", null, "2020", null, "15056", null, "2555", null, "22130", null, "2778", null, "210302", null, "4929", null, "81127", null, "1899", null, "188398", null, "6087", null, "32067", null, "2978", null, "53250", null, "4084", null, "103081", null, "4957", null, "88.2", null, "1.3", null, "42.8", null, "1.2", null, "57.2", null, "1.2", null, "54.5", null, "1.8", null, "10.8", null, "1.0", null, "3.3", null, "0.6", null, "7.5", null, "0.9", null, "34.6", null, "1.6", null, "25.1", null, "1.4", null, "20.4", null, "1.2", null, "4.5", null, "0.8", null, "1.0", null, "0.3", null, "3.5", null, "0.7", null, "0.1", null, "0.1", null, "74.9", null, "1.4", null, "34.1", null, "1.4", null, "6.3", null, "0.9", null, "2.2", null, "0.5", null, "4.1", null, "0.7", null, "34.5", null, "1.6", null, "9.5", null, "1.0", null, "90.5", null, "1.0", null, "24.0", null, "1.6", null, "76.0", null, "1.6", null, "74.4", null, "1.3", null, "14.2", null, "1.0", null, "0.3", null, "0.2", null, "2.5", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "3.2", null, "0.7", null, "5.2", null, "0.9", null, "7.7", null, "0.9", null, "72.9", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.0", null, "1.5", null, "28.3", null, "2.0", null, "54.7", null, "1.9", null, "37", "10"], ["5001900US3711", "Congressional District 11 (119th Congress), North Carolina", "319182", null, "5961", null, "159923", null, "3334", null, "159259", null, "5659", null, "164213", null, "6108", null, "41409", null, "4442", null, "14104", null, "2490", null, "27305", null, "3357", null, "113560", null, "5304", null, "73677", null, "4189", null, "50245", null, "3457", null, "22869", null, "3092", null, "7843", null, "1875", null, "15026", null, "2282", null, "563", null, "382", null, "245505", null, "5726", null, "113968", null, "4501", null, "18540", null, "3042", null, "6261", null, "1687", null, "12279", null, "2515", null, "112997", null, "5280", null, "39240", null, "3347", null, "279942", null, "5638", null, "96450", null, "4610", null, "222732", null, "6614", null, "280768", null, "5101", null, "9461", null, "1987", null, "3515", null, "676", null, "-999999999", "N", "-999999999", "N", "-999999999", "N", "-999999999", "N", "6044", null, "1517", null, "17177", null, "2524", null, "15421", null, "1923", null, "278827", null, "5212", null, "67690", null, "2645", null, "205622", null, "6083", null, "48307", null, "3080", null, "66141", null, "4412", null, "91174", null, "4780", null, "-888888888", "(X)", "-888888888", "(X)", "50.1", null, "1.1", null, "49.9", null, "1.1", null, "51.4", null, "1.7", null, "13.0", null, "1.4", null, "4.4", null, "0.8", null, "8.6", null, "1.0", null, "35.6", null, "1.5", null, "23.1", null, "1.2", null, "15.7", null, "1.0", null, "7.2", null, "1.0", null, "2.5", null, "0.6", null, "4.7", null, "0.7", null, "0.2", null, "0.1", null, "76.9", null, "1.2", null, "35.7", null, "1.3", null, "5.8", null, "0.9", null, "2.0", null, "0.5", null, "3.8", null, "0.8", null, "35.4", null, "1.5", null, "12.3", null, "1.0", null, "87.7", null, "1.0", null, "30.2", null, "1.4", null, "69.8", null, "1.4", null, "88.0", null, "0.8", null, "3.0", null, "0.6", null, "1.1", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "1.9", null, "0.5", null, "5.4", null, "0.8", null, "4.8", null, "0.6", null, "87.4", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "23.5", null, "1.4", null, "32.2", null, "2.0", null, "44.3", null, "1.7", null, "33238", null, "3450", null, "14396", null, "2067", null, "18842", null, "2496", null, "9278", null, "1910", null, "13344", null, "2695", null, "4608", null, "1628", null, "8736", null, "1726", null, "10616", null, "1689", null, "14642", null, "2385", null, "5928", null, "1470", null, "8655", null, "2180", null, "3266", null, "1438", null, "5389", null, "1356", null, "59", null, "98", null, "18596", null, "2556", null, "3350", null, "1045", null, "4689", null, "1562", null, "1342", null, "710", null, "3347", null, "1267", null, "10557", null, "1684", null, "13150", null, "2254", null, "20088", null, "2709", null, "16891", null, "2490", null, "16347", null, "2402", null, "28900", null, "3168", null, "1141", null, "571", null, "248", null, "168", null, "-999999999", "N", "-999999999", "N", "-999999999", "N", "-999999999", "N", "401", null, "518", null, "2512", null, "940", null, "1771", null, "914", null, "28775", null, "3122", null, "30895", null, "5390", null, "22622", null, "3018", null, "5122", null, "1384", null, "11231", null, "2094", null, "6269", null, "1551", null, "10.4", null, "1.0", null, "43.3", null, "4.5", null, "56.7", null, "4.5", null, "27.9", null, "5.2", null, "40.1", null, "6.1", null, "13.9", null, "4.4", null, "26.3", null, "4.3", null, "31.9", null, "4.5", null, "44.1", null, "5.3", null, "17.8", null, "4.2", null, "26.0", null, "5.7", null, "9.8", null, "4.0", null, "16.2", null, "3.9", null, "0.2", null, "0.3", null, "55.9", null, "5.3", null, "10.1", null, "3.0", null, "14.1", null, "4.2", null, "4.0", null, "2.1", null, "10.1", null, "3.4", null, "31.8", null, "4.5", null, "39.6", null, "5.3", null, "60.4", null, "5.3", null, "50.8", null, "5.2", null, "49.2", null, "5.2", null, "86.9", null, "3.3", null, "3.4", null, "1.7", null, "0.7", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "1.2", null, "1.6", null, "7.6", null, "2.7", null, "5.3", null, "2.7", null, "86.6", null, "3.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "22.6", null, "5.5", null, "49.6", null, "5.9", null, "27.7", null, "5.9", null, "285944", null, "6099", null, "145527", null, "3530", null, "140417", null, "5811", null, "154935", null, "5597", null, "28065", null, "3820", null, "9496", null, "2087", null, "18569", null, "3021", null, "102944", null, "5061", null, "59035", null, "3764", null, "44317", null, "2953", null, "14214", null, "2546", null, "4577", null, "1323", null, "9637", null, "2027", null, "504", null, "364", null, "226909", null, "5892", null, "110618", null, "4443", null, "13851", null, "2673", null, "4919", null, "1515", null, "8932", null, "2133", null, "102440", null, "5053", null, "26090", null, "2827", null, "259854", null, "5668", null, "79559", null, "4535", null, "206385", null, "6386", null, "251868", null, "5270", null, "8320", null, "1974", null, "3267", null, "669", null, "-999999999", "N", "-999999999", "N", "-999999999", "N", "-999999999", "N", "5643", null, "1459", null, "14665", null, "2310", null, "13650", null, "1907", null, "250052", null, "5417", null, "72605", null, "3046", null, "183000", null, "5576", null, "43185", null, "2716", null, "54910", null, "4033", null, "84905", null, "4504", null, "89.6", null, "1.0", null, "50.9", null, "1.3", null, "49.1", null, "1.3", null, "54.2", null, "1.7", null, "9.8", null, "1.3", null, "3.3", null, "0.7", null, "6.5", null, "1.0", null, "36.0", null, "1.5", null, "20.6", null, "1.2", null, "15.5", null, "1.0", null, "5.0", null, "0.9", null, "1.6", null, "0.5", null, "3.4", null, "0.7", null, "0.2", null, "0.1", null, "79.4", null, "1.2", null, "38.7", null, "1.4", null, "4.8", null, "0.9", null, "1.7", null, "0.5", null, "3.1", null, "0.7", null, "35.8", null, "1.5", null, "9.1", null, "0.9", null, "90.9", null, "0.9", null, "27.8", null, "1.5", null, "72.2", null, "1.5", null, "88.1", null, "0.9", null, "2.9", null, "0.7", null, "1.1", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "2.0", null, "0.5", null, "5.1", null, "0.8", null, "4.8", null, "0.7", null, "87.4", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "23.6", null, "1.4", null, "30.0", null, "2.0", null, "46.4", null, "1.9", null, "37", "11"], ["5001900US3712", "Congressional District 12 (119th Congress), North Carolina", "330922", null, "5454", null, "87817", null, "3192", null, "243105", null, "5261", null, "110100", null, "5272", null, "61945", null, "4919", null, "17442", null, "2442", null, "44503", null, "4304", null, "158877", null, "5850", null, "87776", null, "4997", null, "48021", null, "3741", null, "38841", null, "4128", null, "10669", null, "2048", null, "28172", null, "3577", null, "914", null, "651", null, "243146", null, "6161", null, "62079", null, "3938", null, "23104", null, "2779", null, "6773", null, "1528", null, "16331", null, "2218", null, "157963", null, "5915", null, "41545", null, "3826", null, "289377", null, "6500", null, "65960", null, "5157", null, "264962", null, "7506", null, "140931", null, "4340", null, "125008", null, "4382", null, "2300", null, "906", null, "15909", null, "2212", null, "-999999999", "N", "-999999999", "N", "26346", null, "2859", null, "20266", null, "2857", null, "43933", null, "2519", null, "134973", null, "4228", null, "80180", null, "3248", null, "172045", null, "6229", null, "18119", null, "2109", null, "55948", null, "3787", null, "97978", null, "5237", null, "-888888888", "(X)", "-888888888", "(X)", "26.5", null, "0.9", null, "73.5", null, "0.9", null, "33.3", null, "1.4", null, "18.7", null, "1.5", null, "5.3", null, "0.7", null, "13.4", null, "1.3", null, "48.0", null, "1.6", null, "26.5", null, "1.4", null, "14.5", null, "1.1", null, "11.7", null, "1.2", null, "3.2", null, "0.6", null, "8.5", null, "1.1", null, "0.3", null, "0.2", null, "73.5", null, "1.4", null, "18.8", null, "1.1", null, "7.0", null, "0.8", null, "2.0", null, "0.5", null, "4.9", null, "0.7", null, "47.7", null, "1.6", null, "12.6", null, "1.2", null, "87.4", null, "1.2", null, "19.9", null, "1.6", null, "80.1", null, "1.6", null, "42.6", null, "1.2", null, "37.8", null, "1.2", null, "0.7", null, "0.3", null, "4.8", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "8.0", null, "0.8", null, "6.1", null, "0.9", null, "13.3", null, "0.7", null, "40.8", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.5", null, "1.2", null, "32.5", null, "1.9", null, "56.9", null, "2.2", null, "36386", null, "3816", null, "13364", null, "1985", null, "23022", null, "3347", null, "7878", null, "1845", null, "16789", null, "2554", null, "2571", null, "898", null, "14218", null, "2436", null, "11719", null, "2401", null, "16982", null, "2475", null, "5611", null, "1392", null, "10907", null, "2136", null, "1177", null, "641", null, "9730", null, "2093", null, "464", null, "566", null, "19404", null, "3228", null, "2267", null, "945", null, "5882", null, "1511", null, "1394", null, "720", null, "4488", null, "1246", null, "11255", null, "2260", null, "13310", null, "2520", null, "23076", null, "3278", null, "15620", null, "2064", null, "20766", null, "3153", null, "4877", null, "1337", null, "23829", null, "3460", null, "823", null, "547", null, "1180", null, "588", null, "-999999999", "N", "-999999999", "N", "3348", null, "1130", null, "2198", null, "894", null, "5705", null, "1191", null, "4155", null, "1286", null, "36703", null, "8816", null, "24667", null, "2951", null, "3946", null, "1246", null, "11098", null, "2086", null, "9623", null, "2095", null, "11.0", null, "1.2", null, "36.7", null, "5.0", null, "63.3", null, "5.0", null, "21.7", null, "4.5", null, "46.1", null, "5.9", null, "7.1", null, "2.4", null, "39.1", null, "5.7", null, "32.2", null, "5.2", null, "46.7", null, "5.8", null, "15.4", null, "3.5", null, "30.0", null, "5.7", null, "3.2", null, "1.8", null, "26.7", null, "5.5", null, "1.3", null, "1.5", null, "53.3", null, "5.8", null, "6.2", null, "2.4", null, "16.2", null, "3.6", null, "3.8", null, "1.9", null, "12.3", null, "3.1", null, "30.9", null, "4.9", null, "36.6", null, "5.9", null, "63.4", null, "5.9", null, "42.9", null, "4.8", null, "57.1", null, "4.8", null, "13.4", null, "3.5", null, "65.5", null, "5.5", null, "2.3", null, "1.5", null, "3.2", null, "1.6", null, "-999999999.0", "N", "-999999999.0", "N", "9.2", null, "3.1", null, "6.0", null, "2.4", null, "15.7", null, "3.3", null, "11.4", null, "3.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.0", null, "4.4", null, "45.0", null, "7.1", null, "39.0", null, "7.1", null, "294536", null, "6661", null, "74453", null, "3630", null, "220083", null, "5578", null, "102222", null, "5468", null, "45156", null, "4231", null, "14871", null, "2189", null, "30285", null, "3570", null, "147158", null, "6105", null, "70794", null, "4747", null, "42410", null, "3635", null, "27934", null, "3654", null, "9492", null, "1963", null, "18442", null, "2968", null, "450", null, "325", null, "223742", null, "6579", null, "59812", null, "4057", null, "17222", null, "2399", null, "5379", null, "1266", null, "11843", null, "2047", null, "146708", null, "6149", null, "28235", null, "3229", null, "266301", null, "7282", null, "50340", null, "4820", null, "244196", null, "7871", null, "136054", null, "4386", null, "101179", null, "4766", null, "1477", null, "715", null, "14729", null, "2218", null, "-999999999", "N", "-999999999", "N", "22998", null, "2727", null, "18068", null, "2584", null, "38228", null, "2585", null, "130818", null, "4269", null, "85941", null, "2304", null, "147378", null, "6426", null, "14173", null, "1763", null, "44850", null, "3769", null, "88355", null, "5175", null, "89.0", null, "1.2", null, "25.3", null, "1.0", null, "74.7", null, "1.0", null, "34.7", null, "1.6", null, "15.3", null, "1.4", null, "5.0", null, "0.7", null, "10.3", null, "1.2", null, "50.0", null, "1.8", null, "24.0", null, "1.5", null, "14.4", null, "1.1", null, "9.5", null, "1.2", null, "3.2", null, "0.7", null, "6.3", null, "1.0", null, "0.2", null, "0.1", null, "76.0", null, "1.5", null, "20.3", null, "1.3", null, "5.8", null, "0.8", null, "1.8", null, "0.4", null, "4.0", null, "0.7", null, "49.8", null, "1.8", null, "9.6", null, "1.1", null, "90.4", null, "1.1", null, "17.1", null, "1.6", null, "82.9", null, "1.6", null, "46.2", null, "1.4", null, "34.4", null, "1.3", null, "0.5", null, "0.2", null, "5.0", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "7.8", null, "0.9", null, "6.1", null, "0.9", null, "13.0", null, "0.8", null, "44.4", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "9.6", null, "1.2", null, "30.4", null, "2.1", null, "60.0", null, "2.3", null, "37", "12"], ["5001900US3713", "Congressional District 13 (119th Congress), North Carolina", "310283", null, "4363", null, "127205", null, "3709", null, "183078", null, "4834", null, "169495", null, "5580", null, "55960", null, "4390", null, "14193", null, "2275", null, "41767", null, "3936", null, "84828", null, "4919", null, "101734", null, "4653", null, "68097", null, "4145", null, "32954", null, "3751", null, "7079", null, "1875", null, "25875", null, "3161", null, "683", null, "508", null, "208549", null, "5771", null, "101398", null, "4331", null, "23006", null, "3014", null, "7114", null, "1760", null, "15892", null, "2563", null, "84145", null, "4784", null, "35049", null, "3386", null, "275234", null, "4937", null, "86985", null, "4537", null, "223298", null, "5443", null, "209785", null, "4682", null, "59430", null, "3679", null, "1347", null, "522", null, "3426", null, "1119", null, "-999999999", "N", "-999999999", "N", "15214", null, "2402", null, "20742", null, "3120", null, "36050", null, "2469", null, "201597", null, "4600", null, "85183", null, "3696", null, "225455", null, "5128", null, "32774", null, "2622", null, "71198", null, "4113", null, "121483", null, "5209", null, "-888888888", "(X)", "-888888888", "(X)", "41.0", null, "1.2", null, "59.0", null, "1.2", null, "54.6", null, "1.7", null, "18.0", null, "1.4", null, "4.6", null, "0.7", null, "13.5", null, "1.3", null, "27.3", null, "1.5", null, "32.8", null, "1.5", null, "21.9", null, "1.3", null, "10.6", null, "1.2", null, "2.3", null, "0.6", null, "8.3", null, "1.0", null, "0.2", null, "0.2", null, "67.2", null, "1.5", null, "32.7", null, "1.3", null, "7.4", null, "1.0", null, "2.3", null, "0.6", null, "5.1", null, "0.8", null, "27.1", null, "1.4", null, "11.3", null, "1.1", null, "88.7", null, "1.1", null, "28.0", null, "1.4", null, "72.0", null, "1.4", null, "67.6", null, "1.3", null, "19.2", null, "1.1", null, "0.4", null, "0.2", null, "1.1", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "4.9", null, "0.8", null, "6.7", null, "1.0", null, "11.6", null, "0.8", null, "65.0", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.5", null, "1.1", null, "31.6", null, "1.7", null, "53.9", null, "1.9", null, "33697", null, "3313", null, "13691", null, "1732", null, "20006", null, "2692", null, "8438", null, "2032", null, "13595", null, "2673", null, "1204", null, "722", null, "12391", null, "2590", null, "11664", null, "2100", null, "16143", null, "2579", null, "5765", null, "1691", null, "10289", null, "2348", null, "929", null, "671", null, "9360", null, "2239", null, "89", null, "117", null, "17554", null, "2572", null, "2673", null, "975", null, "3306", null, "1240", null, "275", null, "263", null, "3031", null, "1242", null, "11575", null, "2068", null, "14504", null, "2492", null, "19193", null, "2827", null, "16667", null, "2485", null, "17030", null, "2526", null, "14991", null, "2078", null, "14275", null, "2475", null, "194", null, "198", null, "0", null, "226", null, "-999999999", "N", "-999999999", "N", "2177", null, "1076", null, "1966", null, "1078", null, "5829", null, "1557", null, "12746", null, "1889", null, "30537", null, "5622", null, "22033", null, "2832", null, "3507", null, "1342", null, "10931", null, "2089", null, "7595", null, "1953", null, "10.9", null, "1.1", null, "40.6", null, "4.3", null, "59.4", null, "4.3", null, "25.0", null, "5.9", null, "40.3", null, "6.3", null, "3.6", null, "2.1", null, "36.8", null, "6.3", null, "34.6", null, "5.3", null, "47.9", null, "5.9", null, "17.1", null, "5.0", null, "30.5", null, "5.8", null, "2.8", null, "2.0", null, "27.8", null, "5.7", null, "0.3", null, "0.3", null, "52.1", null, "5.9", null, "7.9", null, "2.8", null, "9.8", null, "3.6", null, "0.8", null, "0.8", null, "9.0", null, "3.6", null, "34.4", null, "5.2", null, "43.0", null, "6.2", null, "57.0", null, "6.2", null, "49.5", null, "5.6", null, "50.5", null, "5.6", null, "44.5", null, "5.6", null, "42.4", null, "5.0", null, "0.6", null, "0.6", null, "0.0", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "6.5", null, "3.1", null, "5.8", null, "3.2", null, "17.3", null, "4.3", null, "37.8", null, "5.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.9", null, "5.6", null, "49.6", null, "7.2", null, "34.5", null, "8.0", null, "276586", null, "5437", null, "113514", null, "3602", null, "163072", null, "5385", null, "161057", null, "5108", null, "42365", null, "4058", null, "12989", null, "2158", null, "29376", null, "3454", null, "73164", null, "4438", null, "85591", null, "4271", null, "62332", null, "3846", null, "22665", null, "3003", null, "6150", null, "1666", null, "16515", null, "2525", null, "594", null, "496", null, "190995", null, "5793", null, "98725", null, "4213", null, "19700", null, "2932", null, "6839", null, "1769", null, "12861", null, "2447", null, "72570", null, "4364", null, "20545", null, "2564", null, "256041", null, "5382", null, "70318", null, "4091", null, "206268", null, "6064", null, "194794", null, "4682", null, "45155", null, "3539", null, "1153", null, "483", null, "3426", null, "1119", null, "-999999999", "N", "-999999999", "N", "13037", null, "2371", null, "18776", null, "2863", null, "30221", null, "2727", null, "188851", null, "4828", null, "93069", null, "3522", null, "203422", null, "5534", null, "29267", null, "2417", null, "60267", null, "3540", null, "113888", null, "4866", null, "89.1", null, "1.1", null, "41.0", null, "1.3", null, "59.0", null, "1.3", null, "58.2", null, "1.7", null, "15.3", null, "1.4", null, "4.7", null, "0.8", null, "10.6", null, "1.2", null, "26.5", null, "1.5", null, "30.9", null, "1.5", null, "22.5", null, "1.4", null, "8.2", null, "1.1", null, "2.2", null, "0.6", null, "6.0", null, "0.9", null, "0.2", null, "0.2", null, "69.1", null, "1.5", null, "35.7", null, "1.4", null, "7.1", null, "1.0", null, "2.5", null, "0.6", null, "4.6", null, "0.9", null, "26.2", null, "1.5", null, "7.4", null, "0.9", null, "92.6", null, "0.9", null, "25.4", null, "1.5", null, "74.6", null, "1.5", null, "70.4", null, "1.5", null, "16.3", null, "1.2", null, "0.4", null, "0.2", null, "1.2", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "4.7", null, "0.8", null, "6.8", null, "1.0", null, "10.9", null, "1.0", null, "68.3", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.4", null, "1.1", null, "29.6", null, "1.6", null, "56.0", null, "1.8", null, "37", "13"], ["5001900US3714", "Congressional District 14 (119th Congress), North Carolina", "312520", null, "5775", null, "129866", null, "3614", null, "182654", null, "4831", null, "154994", null, "4663", null, "50786", null, "4278", null, "13523", null, "2052", null, "37263", null, "3423", null, "106740", null, "4956", null, "90062", null, "4704", null, "58986", null, "3800", null, "30400", null, "3389", null, "6732", null, "1234", null, "23668", null, "3073", null, "676", null, "572", null, "222458", null, "6162", null, "96008", null, "4006", null, "20386", null, "2464", null, "6791", null, "1316", null, "13595", null, "2116", null, "106064", null, "4915", null, "34823", null, "2979", null, "277697", null, "6105", null, "85595", null, "4267", null, "226925", null, "6020", null, "224751", null, "4926", null, "44992", null, "3534", null, "-999999999", "N", "-999999999", "N", "11778", null, "1610", null, "-999999999", "N", "-999999999", "N", "9271", null, "1587", null, "20510", null, "2657", null, "22565", null, "2011", null, "220679", null, "4741", null, "78324", null, "2931", null, "205780", null, "5741", null, "30015", null, "2542", null, "62945", null, "4050", null, "112820", null, "4597", null, "-888888888", "(X)", "-888888888", "(X)", "41.6", null, "1.0", null, "58.4", null, "1.0", null, "49.6", null, "1.4", null, "16.3", null, "1.3", null, "4.3", null, "0.6", null, "11.9", null, "1.1", null, "34.2", null, "1.4", null, "28.8", null, "1.4", null, "18.9", null, "1.2", null, "9.7", null, "1.1", null, "2.2", null, "0.4", null, "7.6", null, "1.0", null, "0.2", null, "0.2", null, "71.2", null, "1.4", null, "30.7", null, "1.2", null, "6.5", null, "0.8", null, "2.2", null, "0.4", null, "4.4", null, "0.7", null, "33.9", null, "1.4", null, "11.1", null, "0.9", null, "88.9", null, "0.9", null, "27.4", null, "1.3", null, "72.6", null, "1.3", null, "71.9", null, "1.1", null, "14.4", null, "1.0", null, "-999999999.0", "N", "-999999999.0", "N", "3.8", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "3.0", null, "0.5", null, "6.6", null, "0.8", null, "7.2", null, "0.6", null, "70.6", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.6", null, "1.2", null, "30.6", null, "1.7", null, "54.8", null, "1.7", null, "34610", null, "3581", null, "14609", null, "2047", null, "20001", null, "2743", null, "8347", null, "1636", null, "13848", null, "2154", null, "2685", null, "981", null, "11163", null, "1940", null, "12415", null, "2124", null, "15551", null, "2490", null, "4878", null, "1173", null, "10299", null, "1950", null, "2075", null, "865", null, "8224", null, "1760", null, "374", null, "485", null, "19059", null, "2627", null, "3469", null, "1068", null, "3549", null, "1129", null, "610", null, "385", null, "2939", null, "998", null, "12041", null, "2043", null, "12676", null, "2327", null, "21934", null, "2812", null, "16997", null, "2439", null, "17613", null, "2438", null, "21223", null, "2681", null, "8359", null, "1719", null, "-999999999", "N", "-999999999", "N", "920", null, "454", null, "-999999999", "N", "-999999999", "N", "1260", null, "690", null, "2771", null, "1046", null, "2594", null, "996", null, "20558", null, "2614", null, "33179", null, "7257", null, "22195", null, "2741", null, "4033", null, "1142", null, "9990", null, "1766", null, "8172", null, "1712", null, "11.1", null, "1.1", null, "42.2", null, "4.5", null, "57.8", null, "4.5", null, "24.1", null, "3.9", null, "40.0", null, "5.1", null, "7.8", null, "2.6", null, "32.3", null, "5.1", null, "35.9", null, "4.7", null, "44.9", null, "5.3", null, "14.1", null, "2.9", null, "29.8", null, "4.9", null, "6.0", null, "2.4", null, "23.8", null, "4.7", null, "1.1", null, "1.4", null, "55.1", null, "5.3", null, "10.0", null, "2.9", null, "10.3", null, "3.2", null, "1.8", null, "1.1", null, "8.5", null, "2.9", null, "34.8", null, "4.7", null, "36.6", null, "5.3", null, "63.4", null, "5.3", null, "49.1", null, "4.7", null, "50.9", null, "4.7", null, "61.3", null, "4.6", null, "24.2", null, "4.5", null, "-999999999.0", "N", "-999999999.0", "N", "2.7", null, "1.3", null, "-999999999.0", "N", "-999999999.0", "N", "3.6", null, "1.9", null, "8.0", null, "2.8", null, "7.5", null, "2.7", null, "59.4", null, "4.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.2", null, "4.8", null, "45.0", null, "5.8", null, "36.8", null, "5.9", null, "277910", null, "6306", null, "115257", null, "3715", null, "162653", null, "5107", null, "146647", null, "4660", null, "36938", null, "3891", null, "10838", null, "1776", null, "26100", null, "3125", null, "94325", null, "4964", null, "74511", null, "4335", null, "54108", null, "3819", null, "20101", null, "3008", null, "4657", null, "1046", null, "15444", null, "2704", null, "302", null, "248", null, "203399", null, "6641", null, "92539", null, "4052", null, "16837", null, "2254", null, "6181", null, "1296", null, "10656", null, "1830", null, "94023", null, "4983", null, "22147", null, "2395", null, "255763", null, "6011", null, "68598", null, "3331", null, "209312", null, "5922", null, "203528", null, "4961", null, "36633", null, "3677", null, "-999999999", "N", "-999999999", "N", "10858", null, "1651", null, "-999999999", "N", "-999999999", "N", "8011", null, "1480", null, "17739", null, "2676", null, "19971", null, "1852", null, "200121", null, "4749", null, "85583", null, "2423", null, "183585", null, "5656", null, "25982", null, "2207", null, "52955", null, "3981", null, "104648", null, "4618", null, "88.9", null, "1.1", null, "41.5", null, "1.1", null, "58.5", null, "1.1", null, "52.8", null, "1.5", null, "13.3", null, "1.3", null, "3.9", null, "0.6", null, "9.4", null, "1.1", null, "33.9", null, "1.5", null, "26.8", null, "1.5", null, "19.5", null, "1.4", null, "7.2", null, "1.1", null, "1.7", null, "0.4", null, "5.6", null, "0.9", null, "0.1", null, "0.1", null, "73.2", null, "1.5", null, "33.3", null, "1.3", null, "6.1", null, "0.8", null, "2.2", null, "0.5", null, "3.8", null, "0.6", null, "33.8", null, "1.5", null, "8.0", null, "0.8", null, "92.0", null, "0.8", null, "24.7", null, "1.1", null, "75.3", null, "1.1", null, "73.2", null, "1.2", null, "13.2", null, "1.2", null, "-999999999.0", "N", "-999999999.0", "N", "3.9", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "2.9", null, "0.5", null, "6.4", null, "0.9", null, "7.2", null, "0.6", null, "72.0", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.2", null, "1.1", null, "28.8", null, "1.9", null, "57.0", null, "1.9", null, "37", "14"], ["5001900US3800", "Congressional District (at Large) (119th Congress), North Dakota", "349705", null, "2892", null, "128005", null, "2696", null, "221700", null, "3694", null, "158667", null, "5136", null, "41358", null, "3389", null, "15127", null, "2211", null, "26231", null, "2689", null, "149680", null, "4842", null, "93480", null, "4171", null, "66595", null, "4225", null, "26374", null, "2985", null, "9179", null, "1854", null, "17195", null, "2431", null, "511", null, "372", null, "256225", null, "4808", null, "92072", null, "3707", null, "14984", null, "1828", null, "5948", null, "1264", null, "9036", null, "1576", null, "149169", null, "4853", null, "39471", null, "3095", null, "310234", null, "3570", null, "82230", null, "4147", null, "267475", null, "4932", null, "296446", null, "2899", null, "12201", null, "1429", null, "11935", null, "1588", null, "6881", null, "1312", null, "-999999999", "N", "-999999999", "N", "3971", null, "1133", null, "18014", null, "2344", null, "14141", null, "1602", null, "291126", null, "2841", null, "77871", null, "2755", null, "200025", null, "4319", null, "28036", null, "2267", null, "54014", null, "3511", null, "117975", null, "4644", null, "-888888888", "(X)", "-888888888", "(X)", "36.6", null, "0.8", null, "63.4", null, "0.8", null, "45.4", null, "1.5", null, "11.8", null, "1.0", null, "4.3", null, "0.6", null, "7.5", null, "0.8", null, "42.8", null, "1.3", null, "26.7", null, "1.2", null, "19.0", null, "1.2", null, "7.5", null, "0.9", null, "2.6", null, "0.5", null, "4.9", null, "0.7", null, "0.1", null, "0.1", null, "73.3", null, "1.2", null, "26.3", null, "1.1", null, "4.3", null, "0.5", null, "1.7", null, "0.4", null, "2.6", null, "0.5", null, "42.7", null, "1.3", null, "11.3", null, "0.9", null, "88.7", null, "0.9", null, "23.5", null, "1.2", null, "76.5", null, "1.2", null, "84.8", null, "0.8", null, "3.5", null, "0.4", null, "3.4", null, "0.4", null, "2.0", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "1.1", null, "0.3", null, "5.2", null, "0.7", null, "4.0", null, "0.5", null, "83.2", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.0", null, "1.1", null, "27.0", null, "1.7", null, "59.0", null, "1.8", null, "22340", null, "2626", null, "7417", null, "1467", null, "14923", null, "2076", null, "3339", null, "954", null, "8099", null, "1623", null, "1933", null, "826", null, "6166", null, "1543", null, "10902", null, "1870", null, "9739", null, "1631", null, "2748", null, "860", null, "6991", null, "1446", null, "1268", null, "586", null, "5723", null, "1468", null, "0", null, "175", null, "12601", null, "2011", null, "591", null, "288", null, "1108", null, "639", null, "665", null, "595", null, "443", null, "272", null, "10902", null, "1870", null, "11439", null, "1907", null, "10901", null, "1742", null, "12684", null, "2146", null, "9656", null, "1907", null, "13605", null, "1867", null, "2727", null, "1306", null, "3191", null, "831", null, "108", null, "132", null, "-999999999", "N", "-999999999", "N", "223", null, "284", null, "2407", null, "1006", null, "1784", null, "973", null, "13351", null, "1817", null, "19793", null, "2971", null, "11438", null, "1840", null, "2364", null, "890", null, "6098", null, "1567", null, "2976", null, "860", null, "6.4", null, "0.7", null, "33.2", null, "5.2", null, "66.8", null, "5.2", null, "14.9", null, "4.2", null, "36.3", null, "5.6", null, "8.7", null, "3.6", null, "27.6", null, "5.8", null, "48.8", null, "5.9", null, "43.6", null, "5.7", null, "12.3", null, "3.8", null, "31.3", null, "5.2", null, "5.7", null, "2.7", null, "25.6", null, "5.5", null, "0.0", null, "0.6", null, "56.4", null, "5.7", null, "2.6", null, "1.3", null, "5.0", null, "2.8", null, "3.0", null, "2.6", null, "2.0", null, "1.2", null, "48.8", null, "5.9", null, "51.2", null, "5.8", null, "48.8", null, "5.8", null, "56.8", null, "6.9", null, "43.2", null, "6.9", null, "60.9", null, "6.2", null, "12.2", null, "5.4", null, "14.3", null, "3.6", null, "0.5", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "1.0", null, "1.3", null, "10.8", null, "4.3", null, "8.0", null, "4.1", null, "59.8", null, "6.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "20.7", null, "7.0", null, "53.3", null, "9.7", null, "26.0", null, "7.2", null, "327365", null, "3530", null, "120588", null, "2648", null, "206777", null, "3934", null, "155328", null, "5159", null, "33259", null, "3127", null, "13194", null, "2092", null, "20065", null, "2524", null, "138778", null, "4714", null, "83741", null, "4225", null, "63847", null, "4165", null, "19383", null, "2567", null, "7911", null, "1760", null, "11472", null, "1949", null, "511", null, "372", null, "243624", null, "4579", null, "91481", null, "3645", null, "13876", null, "1752", null, "5283", null, "1220", null, "8593", null, "1569", null, "138267", null, "4714", null, "28032", null, "2959", null, "299333", null, "3764", null, "69546", null, "3894", null, "257819", null, "4918", null, "282841", null, "3335", null, "9474", null, "1441", null, "8744", null, "1531", null, "6773", null, "1352", null, "-999999999", "N", "-999999999", "N", "3748", null, "1034", null, "15607", null, "2134", null, "12357", null, "1700", null, "277775", null, "3158", null, "82087", null, "2197", null, "188587", null, "4542", null, "25672", null, "2174", null, "47916", null, "3085", null, "114999", null, "4684", null, "93.6", null, "0.7", null, "36.8", null, "0.8", null, "63.2", null, "0.8", null, "47.4", null, "1.5", null, "10.2", null, "1.0", null, "4.0", null, "0.6", null, "6.1", null, "0.8", null, "42.4", null, "1.3", null, "25.6", null, "1.2", null, "19.5", null, "1.2", null, "5.9", null, "0.8", null, "2.4", null, "0.5", null, "3.5", null, "0.6", null, "0.2", null, "0.1", null, "74.4", null, "1.2", null, "27.9", null, "1.1", null, "4.2", null, "0.5", null, "1.6", null, "0.4", null, "2.6", null, "0.5", null, "42.2", null, "1.3", null, "8.6", null, "0.9", null, "91.4", null, "0.9", null, "21.2", null, "1.2", null, "78.8", null, "1.2", null, "86.4", null, "0.9", null, "2.9", null, "0.4", null, "2.7", null, "0.5", null, "2.1", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "1.1", null, "0.3", null, "4.8", null, "0.6", null, "3.8", null, "0.5", null, "84.9", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.6", null, "1.2", null, "25.4", null, "1.6", null, "61.0", null, "1.8", null, "38", "00"], ["5001900US3901", "Congressional District 1 (119th Congress), Ohio", "336741", null, "4281", null, "123689", null, "4451", null, "213052", null, "4776", null, "142151", null, "4049", null, "53599", null, "4428", null, "12036", null, "2266", null, "41563", null, "3705", null, "140991", null, "5848", null, "91231", null, "4729", null, "58720", null, "3510", null, "31967", null, "3611", null, "6662", null, "1672", null, "25305", null, "3156", null, "544", null, "548", null, "245510", null, "6182", null, "83431", null, "3741", null, "21632", null, "2708", null, "5374", null, "1454", null, "16258", null, "2128", null, "140447", null, "5929", null, "48721", null, "4258", null, "288020", null, "5198", null, "74146", null, "4664", null, "262595", null, "5192", null, "236176", null, "5099", null, "62055", null, "4560", null, "530", null, "277", null, "14476", null, "1097", null, "-999999999", "N", "-999999999", "N", "5592", null, "1462", null, "17393", null, "2358", null, "12622", null, "1520", null, "233249", null, "5011", null, "82099", null, "3797", null, "195750", null, "5080", null, "27230", null, "2657", null, "56386", null, "4635", null, "112134", null, "4831", null, "-888888888", "(X)", "-888888888", "(X)", "36.7", null, "1.2", null, "63.3", null, "1.2", null, "42.2", null, "1.2", null, "15.9", null, "1.3", null, "3.6", null, "0.7", null, "12.3", null, "1.1", null, "41.9", null, "1.5", null, "27.1", null, "1.4", null, "17.4", null, "1.0", null, "9.5", null, "1.1", null, "2.0", null, "0.5", null, "7.5", null, "0.9", null, "0.2", null, "0.2", null, "72.9", null, "1.4", null, "24.8", null, "1.1", null, "6.4", null, "0.8", null, "1.6", null, "0.4", null, "4.8", null, "0.6", null, "41.7", null, "1.5", null, "14.5", null, "1.2", null, "85.5", null, "1.2", null, "22.0", null, "1.3", null, "78.0", null, "1.3", null, "70.1", null, "1.3", null, "18.4", null, "1.3", null, "0.2", null, "0.1", null, "4.3", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "1.7", null, "0.4", null, "5.2", null, "0.7", null, "3.7", null, "0.5", null, "69.3", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.9", null, "1.3", null, "28.8", null, "2.1", null, "57.3", null, "2.2", null, "34137", null, "3313", null, "14171", null, "2096", null, "19966", null, "3245", null, "4883", null, "1470", null, "15711", null, "3030", null, "1967", null, "936", null, "13744", null, "2899", null, "13543", null, "2205", null, "15069", null, "3210", null, "2839", null, "1214", null, "11896", null, "2818", null, "1517", null, "817", null, "10379", null, "2655", null, "334", null, "524", null, "19068", null, "2589", null, "2044", null, "872", null, "3815", null, "1169", null, "450", null, "440", null, "3365", null, "1081", null, "13209", null, "2211", null, "20022", null, "3152", null, "14115", null, "1979", null, "17471", null, "2488", null, "16666", null, "2689", null, "13594", null, "1998", null, "17085", null, "2831", null, "95", null, "120", null, "212", null, "266", null, "-999999999", "N", "-999999999", "N", "1179", null, "800", null, "1972", null, "989", null, "1776", null, "973", null, "13553", null, "2000", null, "21612", null, "1812", null, "20594", null, "3195", null, "6739", null, "1719", null, "10510", null, "2771", null, "3345", null, "1011", null, "10.1", null, "1.0", null, "41.5", null, "6.1", null, "58.5", null, "6.1", null, "14.3", null, "4.2", null, "46.0", null, "6.6", null, "5.8", null, "2.7", null, "40.3", null, "6.5", null, "39.7", null, "6.1", null, "44.1", null, "7.2", null, "8.3", null, "3.4", null, "34.8", null, "6.6", null, "4.4", null, "2.4", null, "30.4", null, "6.4", null, "1.0", null, "1.5", null, "55.9", null, "7.2", null, "6.0", null, "2.6", null, "11.2", null, "3.3", null, "1.3", null, "1.3", null, "9.9", null, "3.0", null, "38.7", null, "6.2", null, "58.7", null, "5.7", null, "41.3", null, "5.7", null, "51.2", null, "5.9", null, "48.8", null, "5.9", null, "39.8", null, "4.8", null, "50.0", null, "5.2", null, "0.3", null, "0.4", null, "0.6", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "3.5", null, "2.4", null, "5.8", null, "3.0", null, "5.2", null, "2.9", null, "39.7", null, "4.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "32.7", null, "7.7", null, "51.0", null, "8.7", null, "16.2", null, "4.9", null, "302604", null, "5126", null, "109518", null, "3960", null, "193086", null, "5383", null, "137268", null, "4248", null, "37888", null, "3697", null, "10069", null, "2157", null, "27819", null, "2993", null, "127448", null, "5411", null, "76162", null, "4373", null, "55881", null, "3376", null, "20071", null, "2952", null, "5145", null, "1457", null, "14926", null, "2476", null, "210", null, "186", null, "226442", null, "5817", null, "81387", null, "3670", null, "17817", null, "2507", null, "4924", null, "1475", null, "12893", null, "1925", null, "127238", null, "5436", null, "28699", null, "3231", null, "273905", null, "5271", null, "56675", null, "4300", null, "245929", null, "5440", null, "222582", null, "5012", null, "44970", null, "4389", null, "435", null, "256", null, "14264", null, "1031", null, "-999999999", "N", "-999999999", "N", "4413", null, "1360", null, "15421", null, "2362", null, "10846", null, "1515", null, "219696", null, "4939", null, "90705", null, "3148", null, "175156", null, "5338", null, "20491", null, "2074", null, "45876", null, "3869", null, "108789", null, "4940", null, "89.9", null, "1.0", null, "36.2", null, "1.3", null, "63.8", null, "1.3", null, "45.4", null, "1.3", null, "12.5", null, "1.2", null, "3.3", null, "0.7", null, "9.2", null, "1.0", null, "42.1", null, "1.6", null, "25.2", null, "1.4", null, "18.5", null, "1.1", null, "6.6", null, "1.0", null, "1.7", null, "0.5", null, "4.9", null, "0.8", null, "0.1", null, "0.1", null, "74.8", null, "1.4", null, "26.9", null, "1.2", null, "5.9", null, "0.8", null, "1.6", null, "0.5", null, "4.3", null, "0.6", null, "42.0", null, "1.6", null, "9.5", null, "1.0", null, "90.5", null, "1.0", null, "18.7", null, "1.3", null, "81.3", null, "1.3", null, "73.6", null, "1.4", null, "14.9", null, "1.4", null, "0.1", null, "0.1", null, "4.7", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "1.5", null, "0.4", null, "5.1", null, "0.8", null, "3.6", null, "0.5", null, "72.6", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.7", null, "1.1", null, "26.2", null, "2.0", null, "62.1", null, "2.2", null, "39", "01"], ["5001900US3902", "Congressional District 2 (119th Congress), Ohio", "319998", null, "3116", null, "149820", null, "2986", null, "170178", null, "3750", null, "156656", null, "5609", null, "53648", null, "3783", null, "17012", null, "2120", null, "36636", null, "3131", null, "109694", null, "4539", null, "98171", null, "4897", null, "64464", null, "4472", null, "32754", null, "3076", null, "9563", null, "1712", null, "23191", null, "2653", null, "953", null, "528", null, "221827", null, "4350", null, "92192", null, "3304", null, "20894", null, "2344", null, "7449", null, "1171", null, "13445", null, "1923", null, "108741", null, "4451", null, "47108", null, "3625", null, "272890", null, "4934", null, "112871", null, "3921", null, "207127", null, "4489", null, "301059", null, "3649", null, "4154", null, "1227", null, "535", null, "323", null, "1684", null, "624", null, "-999999999", "N", "-999999999", "N", "1325", null, "679", null, "11241", null, "1568", null, "3590", null, "794", null, "299367", null, "3682", null, "67801", null, "2206", null, "210304", null, "5609", null, "36826", null, "2630", null, "69849", null, "4341", null, "103629", null, "4974", null, "-888888888", "(X)", "-888888888", "(X)", "46.8", null, "0.9", null, "53.2", null, "0.9", null, "49.0", null, "1.6", null, "16.8", null, "1.2", null, "5.3", null, "0.6", null, "11.4", null, "1.0", null, "34.3", null, "1.5", null, "30.7", null, "1.4", null, "20.1", null, "1.3", null, "10.2", null, "0.9", null, "3.0", null, "0.5", null, "7.2", null, "0.8", null, "0.3", null, "0.2", null, "69.3", null, "1.4", null, "28.8", null, "1.0", null, "6.5", null, "0.7", null, "2.3", null, "0.4", null, "4.2", null, "0.6", null, "34.0", null, "1.4", null, "14.7", null, "1.2", null, "85.3", null, "1.2", null, "35.3", null, "1.2", null, "64.7", null, "1.2", null, "94.1", null, "0.6", null, "1.3", null, "0.4", null, "0.2", null, "0.1", null, "0.5", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "0.4", null, "0.2", null, "3.5", null, "0.5", null, "1.1", null, "0.2", null, "93.6", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.5", null, "1.1", null, "33.2", null, "1.9", null, "49.3", null, "1.9", null, "49105", null, "3508", null, "22373", null, "2595", null, "26732", null, "2652", null, "11939", null, "2139", null, "16009", null, "2108", null, "3942", null, "1054", null, "12067", null, "1854", null, "21157", null, "2781", null, "17967", null, "2576", null, "7406", null, "1623", null, "10447", null, "1984", null, "2427", null, "905", null, "8020", null, "1836", null, "114", null, "142", null, "31138", null, "3323", null, "4533", null, "1150", null, "5562", null, "1460", null, "1515", null, "550", null, "4047", null, "1314", null, "21043", null, "2766", null, "26596", null, "2857", null, "22509", null, "2659", null, "29333", null, "2601", null, "19772", null, "2705", null, "43657", null, "3219", null, "856", null, "528", null, "405", null, "307", null, "211", null, "171", null, "-999999999", "N", "-999999999", "N", "120", null, "138", null, "3856", null, "1100", null, "549", null, "589", null, "43165", null, "3108", null, "21009", null, "1532", null, "27948", null, "3155", null, "8334", null, "1503", null, "13004", null, "2246", null, "6610", null, "1669", null, "15.3", null, "1.1", null, "45.6", null, "4.0", null, "54.4", null, "4.0", null, "24.3", null, "3.9", null, "32.6", null, "3.6", null, "8.0", null, "2.1", null, "24.6", null, "3.4", null, "43.1", null, "4.9", null, "36.6", null, "4.8", null, "15.1", null, "3.1", null, "21.3", null, "3.9", null, "4.9", null, "1.8", null, "16.3", null, "3.7", null, "0.2", null, "0.3", null, "63.4", null, "4.8", null, "9.2", null, "2.2", null, "11.3", null, "2.8", null, "3.1", null, "1.1", null, "8.2", null, "2.6", null, "42.9", null, "4.8", null, "54.2", null, "4.4", null, "45.8", null, "4.4", null, "59.7", null, "4.1", null, "40.3", null, "4.1", null, "88.9", null, "2.3", null, "1.7", null, "1.1", null, "0.8", null, "0.6", null, "0.4", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "0.2", null, "0.3", null, "7.9", null, "2.1", null, "1.1", null, "1.2", null, "87.9", null, "2.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "29.8", null, "5.1", null, "46.5", null, "5.5", null, "23.7", null, "5.1", null, "270893", null, "4540", null, "127447", null, "3248", null, "143446", null, "4083", null, "144717", null, "5675", null, "37639", null, "3261", null, "13070", null, "2021", null, "24569", null, "2710", null, "88537", null, "4117", null, "80204", null, "4254", null, "57058", null, "4178", null, "22307", null, "2447", null, "7136", null, "1465", null, "15171", null, "2144", null, "839", null, "519", null, "190689", null, "4697", null, "87659", null, "3642", null, "15332", null, "1938", null, "5934", null, "1224", null, "9398", null, "1386", null, "87698", null, "4044", null, "20512", null, "2402", null, "250381", null, "4983", null, "83538", null, "3684", null, "187355", null, "4703", null, "257402", null, "4729", null, "3298", null, "1057", null, "130", null, "131", null, "1473", null, "614", null, "-999999999", "N", "-999999999", "N", "1205", null, "663", null, "7385", null, "1082", null, "3041", null, "822", null, "256202", null, "4657", null, "75167", null, "3091", null, "182356", null, "5459", null, "28492", null, "2216", null, "56845", null, "3437", null, "97019", null, "5081", null, "84.7", null, "1.1", null, "47.0", null, "1.1", null, "53.0", null, "1.1", null, "53.4", null, "1.8", null, "13.9", null, "1.2", null, "4.8", null, "0.7", null, "9.1", null, "1.0", null, "32.7", null, "1.5", null, "29.6", null, "1.4", null, "21.1", null, "1.4", null, "8.2", null, "0.9", null, "2.6", null, "0.5", null, "5.6", null, "0.8", null, "0.3", null, "0.2", null, "70.4", null, "1.4", null, "32.4", null, "1.3", null, "5.7", null, "0.7", null, "2.2", null, "0.4", null, "3.5", null, "0.5", null, "32.4", null, "1.5", null, "7.6", null, "0.9", null, "92.4", null, "0.9", null, "30.8", null, "1.3", null, "69.2", null, "1.3", null, "95.0", null, "0.6", null, "1.2", null, "0.4", null, "0.0", null, "0.1", null, "0.5", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "0.4", null, "0.2", null, "2.7", null, "0.4", null, "1.1", null, "0.3", null, "94.6", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.6", null, "1.1", null, "31.2", null, "1.9", null, "53.2", null, "2.0", null, "39", "02"], ["5001900US3903", "Congressional District 3 (119th Congress), Ohio", "332565", null, "6947", null, "107485", null, "4477", null, "225080", null, "6481", null, "118459", null, "6023", null, "62432", null, "4651", null, "17545", null, "2512", null, "44887", null, "3747", null, "151674", null, "6556", null, "89881", null, "4907", null, "51139", null, "3500", null, "37787", null, "3908", null, "8915", null, "1869", null, "28872", null, "3243", null, "955", null, "625", null, "242684", null, "7130", null, "67320", null, "4862", null, "24645", null, "3177", null, "8630", null, "2040", null, "16015", null, "2487", null, "150719", null, "6553", null, "46929", null, "3820", null, "285636", null, "7667", null, "74534", null, "4489", null, "258031", null, "7113", null, "195570", null, "5247", null, "87775", null, "4332", null, "2077", null, "1233", null, "18706", null, "2333", null, "-999999999", "N", "-999999999", "N", "6887", null, "1498", null, "21486", null, "3281", null, "16517", null, "2241", null, "192116", null, "5184", null, "72896", null, "2861", null, "180891", null, "6588", null, "19928", null, "1926", null, "60181", null, "4466", null, "100782", null, "5820", null, "-888888888", "(X)", "-888888888", "(X)", "32.3", null, "1.2", null, "67.7", null, "1.2", null, "35.6", null, "1.7", null, "18.8", null, "1.3", null, "5.3", null, "0.8", null, "13.5", null, "1.1", null, "45.6", null, "1.7", null, "27.0", null, "1.4", null, "15.4", null, "1.0", null, "11.4", null, "1.2", null, "2.7", null, "0.6", null, "8.7", null, "1.0", null, "0.3", null, "0.2", null, "73.0", null, "1.4", null, "20.2", null, "1.4", null, "7.4", null, "0.9", null, "2.6", null, "0.6", null, "4.8", null, "0.7", null, "45.3", null, "1.7", null, "14.1", null, "1.2", null, "85.9", null, "1.2", null, "22.4", null, "1.3", null, "77.6", null, "1.3", null, "58.8", null, "1.3", null, "26.4", null, "1.2", null, "0.6", null, "0.4", null, "5.6", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "2.1", null, "0.5", null, "6.5", null, "1.0", null, "5.0", null, "0.7", null, "57.8", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.0", null, "1.0", null, "33.3", null, "2.2", null, "55.7", null, "2.3", null, "33830", null, "3817", null, "11370", null, "1770", null, "22460", null, "3302", null, "5370", null, "1511", null, "16460", null, "2669", null, "1201", null, "634", null, "15259", null, "2534", null, "12000", null, "1890", null, "17052", null, "3036", null, "4099", null, "1328", null, "12953", null, "2559", null, "763", null, "602", null, "12190", null, "2362", null, "0", null, "211", null, "16778", null, "2430", null, "1271", null, "664", null, "3507", null, "1074", null, "438", null, "265", null, "3069", null, "1037", null, "12000", null, "1890", null, "17921", null, "2821", null, "15909", null, "2446", null, "15924", null, "2412", null, "17906", null, "2750", null, "10095", null, "1814", null, "16925", null, "2754", null, "831", null, "990", null, "2201", null, "1089", null, "-999999999", "N", "-999999999", "N", "975", null, "655", null, "2803", null, "1170", null, "2152", null, "984", null, "9884", null, "1765", null, "25915", null, "3500", null, "21830", null, "3168", null, "3626", null, "1168", null, "11281", null, "2496", null, "6923", null, "1755", null, "10.2", null, "1.2", null, "33.6", null, "4.7", null, "66.4", null, "4.7", null, "15.9", null, "4.0", null, "48.7", null, "5.0", null, "3.6", null, "1.8", null, "45.1", null, "5.0", null, "35.5", null, "4.7", null, "50.4", null, "5.9", null, "12.1", null, "3.6", null, "38.3", null, "5.5", null, "2.3", null, "1.7", null, "36.0", null, "5.1", null, "0.0", null, "0.5", null, "49.6", null, "5.9", null, "3.8", null, "1.9", null, "10.4", null, "3.1", null, "1.3", null, "0.8", null, "9.1", null, "3.0", null, "35.5", null, "4.7", null, "53.0", null, "5.3", null, "47.0", null, "5.3", null, "47.1", null, "5.1", null, "52.9", null, "5.1", null, "29.8", null, "5.1", null, "50.0", null, "5.2", null, "2.5", null, "2.8", null, "6.5", null, "3.2", null, "-999999999.0", "N", "-999999999.0", "N", "2.9", null, "2.0", null, "8.3", null, "3.3", null, "6.4", null, "2.7", null, "29.2", null, "4.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.6", null, "5.3", null, "51.7", null, "8.0", null, "31.7", null, "6.5", null, "298735", null, "7745", null, "96115", null, "4357", null, "202620", null, "6789", null, "113089", null, "5897", null, "45972", null, "4302", null, "16344", null, "2433", null, "29628", null, "3458", null, "139674", null, "6241", null, "72829", null, "4284", null, "47040", null, "3409", null, "24834", null, "3050", null, "8152", null, "1705", null, "16682", null, "2577", null, "955", null, "625", null, "225906", null, "7193", null, "66049", null, "4903", null, "21138", null, "2885", null, "8192", null, "2034", null, "12946", null, "2249", null, "138719", null, "6188", null, "29008", null, "3341", null, "269727", null, "8016", null, "58610", null, "3858", null, "240125", null, "7622", null, "185475", null, "5336", null, "70850", null, "4576", null, "1246", null, "840", null, "16505", null, "2431", null, "-999999999", "N", "-999999999", "N", "5912", null, "1430", null, "18683", null, "3047", null, "14365", null, "2348", null, "182232", null, "5295", null, "79628", null, "2339", null, "159061", null, "6551", null, "16302", null, "1707", null, "48900", null, "4015", null, "93859", null, "5735", null, "89.8", null, "1.2", null, "32.2", null, "1.3", null, "67.8", null, "1.3", null, "37.9", null, "1.8", null, "15.4", null, "1.4", null, "5.5", null, "0.8", null, "9.9", null, "1.1", null, "46.8", null, "1.7", null, "24.4", null, "1.3", null, "15.7", null, "1.1", null, "8.3", null, "1.0", null, "2.7", null, "0.6", null, "5.6", null, "0.8", null, "0.3", null, "0.2", null, "75.6", null, "1.3", null, "22.1", null, "1.6", null, "7.1", null, "0.9", null, "2.7", null, "0.7", null, "4.3", null, "0.7", null, "46.4", null, "1.7", null, "9.7", null, "1.1", null, "90.3", null, "1.1", null, "19.6", null, "1.2", null, "80.4", null, "1.2", null, "62.1", null, "1.5", null, "23.7", null, "1.3", null, "0.4", null, "0.3", null, "5.5", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "2.0", null, "0.5", null, "6.3", null, "1.0", null, "4.8", null, "0.8", null, "61.0", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.2", null, "1.0", null, "30.7", null, "2.3", null, "59.0", null, "2.4", null, "39", "03"], ["5001900US3904", "Congressional District 4 (119th Congress), Ohio", "318454", null, "3459", null, "137682", null, "2968", null, "180772", null, "3713", null, "168236", null, "4726", null, "47755", null, "3339", null, "17824", null, "2100", null, "29931", null, "2696", null, "102463", null, "4663", null, "96470", null, "4269", null, "68423", null, "3565", null, "27686", null, "2835", null, "10523", null, "1689", null, "17163", null, "2026", null, "361", null, "271", null, "221984", null, "4766", null, "99813", null, "3831", null, "20069", null, "2460", null, "7301", null, "1461", null, "12768", null, "2003", null, "102102", null, "4701", null, "33942", null, "3905", null, "284512", null, "4999", null, "88416", null, "4736", null, "230038", null, "5179", null, "278261", null, "4118", null, "10918", null, "1338", null, "1378", null, "770", null, "8118", null, "1068", null, "-999999999", "N", "-999999999", "N", "2916", null, "981", null, "16778", null, "2235", null, "8177", null, "963", null, "276756", null, "3934", null, "81278", null, "1643", null, "215991", null, "4627", null, "34581", null, "2337", null, "62416", null, "3629", null, "118994", null, "4932", null, "-888888888", "(X)", "-888888888", "(X)", "43.2", null, "0.9", null, "56.8", null, "0.9", null, "52.8", null, "1.5", null, "15.0", null, "1.0", null, "5.6", null, "0.7", null, "9.4", null, "0.8", null, "32.2", null, "1.4", null, "30.3", null, "1.3", null, "21.5", null, "1.1", null, "8.7", null, "0.9", null, "3.3", null, "0.5", null, "5.4", null, "0.6", null, "0.1", null, "0.1", null, "69.7", null, "1.3", null, "31.3", null, "1.2", null, "6.3", null, "0.8", null, "2.3", null, "0.5", null, "4.0", null, "0.6", null, "32.1", null, "1.4", null, "10.7", null, "1.2", null, "89.3", null, "1.2", null, "27.8", null, "1.4", null, "72.2", null, "1.4", null, "87.4", null, "0.8", null, "3.4", null, "0.4", null, "0.4", null, "0.2", null, "2.5", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "0.9", null, "0.3", null, "5.3", null, "0.7", null, "2.6", null, "0.3", null, "86.9", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.0", null, "1.1", null, "28.9", null, "1.6", null, "55.1", null, "1.8", null, "29551", null, "2932", null, "13173", null, "1761", null, "16378", null, "2228", null, "6390", null, "1524", null, "10243", null, "1580", null, "2788", null, "818", null, "7455", null, "1313", null, "12918", null, "1920", null, "10923", null, "1816", null, "3899", null, "1349", null, "7024", null, "1341", null, "1840", null, "702", null, "5184", null, "1097", null, "0", null, "211", null, "18628", null, "2546", null, "2491", null, "697", null, "3219", null, "926", null, "948", null, "526", null, "2271", null, "765", null, "12918", null, "1920", null, "14947", null, "2401", null, "14604", null, "1993", null, "15948", null, "2198", null, "13603", null, "1791", null, "24683", null, "2662", null, "1861", null, "609", null, "374", null, "313", null, "254", null, "240", null, "-999999999", "N", "-999999999", "N", "690", null, "540", null, "1689", null, "690", null, "1298", null, "518", null, "24307", null, "2656", null, "21184", null, "4777", null, "16633", null, "2256", null, "5438", null, "1341", null, "6709", null, "1376", null, "4486", null, "1312", null, "9.3", null, "0.9", null, "44.6", null, "4.6", null, "55.4", null, "4.6", null, "21.6", null, "4.5", null, "34.7", null, "4.2", null, "9.4", null, "2.7", null, "25.2", null, "3.7", null, "43.7", null, "5.0", null, "37.0", null, "5.3", null, "13.2", null, "4.3", null, "23.8", null, "4.3", null, "6.2", null, "2.4", null, "17.5", null, "3.5", null, "0.0", null, "0.6", null, "63.0", null, "5.3", null, "8.4", null, "2.1", null, "10.9", null, "2.8", null, "3.2", null, "1.7", null, "7.7", null, "2.3", null, "43.7", null, "5.0", null, "50.6", null, "5.6", null, "49.4", null, "5.6", null, "54.0", null, "4.6", null, "46.0", null, "4.6", null, "83.5", null, "3.6", null, "6.3", null, "1.9", null, "1.3", null, "1.1", null, "0.9", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "2.3", null, "1.8", null, "5.7", null, "2.3", null, "4.4", null, "1.8", null, "82.3", null, "3.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "32.7", null, "6.7", null, "40.3", null, "7.2", null, "27.0", null, "6.4", null, "288903", null, "3824", null, "124509", null, "2872", null, "164394", null, "3476", null, "161846", null, "4448", null, "37512", null, "3036", null, "15036", null, "2013", null, "22476", null, "2365", null, "89545", null, "4406", null, "85547", null, "4073", null, "64524", null, "3340", null, "20662", null, "2450", null, "8683", null, "1610", null, "11979", null, "1802", null, "361", null, "271", null, "203356", null, "5039", null, "97322", null, "3808", null, "16850", null, "2351", null, "6353", null, "1377", null, "10497", null, "1960", null, "89184", null, "4448", null, "18995", null, "2729", null, "269908", null, "4784", null, "72468", null, "4404", null, "216435", null, "5041", null, "253578", null, "4479", null, "9057", null, "1388", null, "1004", null, "693", null, "7864", null, "1013", null, "-999999999", "N", "-999999999", "N", "2226", null, "792", null, "15089", null, "2271", null, "6879", null, "1028", null, "252449", null, "4420", null, "87000", null, "2059", null, "199358", null, "4662", null, "29143", null, "2257", null, "55707", null, "3390", null, "114508", null, "4795", null, "90.7", null, "0.9", null, "43.1", null, "0.9", null, "56.9", null, "0.9", null, "56.0", null, "1.5", null, "13.0", null, "1.0", null, "5.2", null, "0.7", null, "7.8", null, "0.8", null, "31.0", null, "1.4", null, "29.6", null, "1.4", null, "22.3", null, "1.2", null, "7.2", null, "0.8", null, "3.0", null, "0.6", null, "4.1", null, "0.6", null, "0.1", null, "0.1", null, "70.4", null, "1.4", null, "33.7", null, "1.3", null, "5.8", null, "0.8", null, "2.2", null, "0.5", null, "3.6", null, "0.7", null, "30.9", null, "1.4", null, "6.6", null, "1.0", null, "93.4", null, "1.0", null, "25.1", null, "1.5", null, "74.9", null, "1.5", null, "87.8", null, "0.9", null, "3.1", null, "0.5", null, "0.3", null, "0.2", null, "2.7", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "0.8", null, "0.3", null, "5.2", null, "0.8", null, "2.4", null, "0.4", null, "87.4", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.6", null, "1.1", null, "27.9", null, "1.6", null, "57.4", null, "1.8", null, "39", "04"], ["5001900US3905", "Congressional District 5 (119th Congress), Ohio", "324758", null, "3032", null, "146245", null, "2765", null, "178513", null, "3281", null, "159896", null, "4145", null, "47151", null, "3637", null, "14663", null, "2256", null, "32488", null, "2812", null, "117711", null, "4669", null, "89920", null, "3599", null, "59804", null, "2602", null, "29502", null, "2986", null, "8875", null, "1912", null, "20627", null, "2282", null, "614", null, "357", null, "234838", null, "3727", null, "100092", null, "3611", null, "17649", null, "2204", null, "5788", null, "1352", null, "11861", null, "1839", null, "117097", null, "4682", null, "38555", null, "2858", null, "286203", null, "3887", null, "92937", null, "4315", null, "231821", null, "5324", null, "286622", null, "2941", null, "11170", null, "1611", null, "-999999999", "N", "-999999999", "N", "3067", null, "647", null, "-999999999", "N", "-999999999", "N", "5851", null, "1320", null, "17265", null, "1888", null, "20442", null, "1756", null, "280916", null, "2909", null, "73004", null, "2465", null, "207047", null, "4543", null, "35917", null, "2394", null, "58836", null, "3578", null, "112294", null, "4004", null, "-888888888", "(X)", "-888888888", "(X)", "45.0", null, "0.8", null, "55.0", null, "0.8", null, "49.2", null, "1.3", null, "14.5", null, "1.1", null, "4.5", null, "0.7", null, "10.0", null, "0.9", null, "36.2", null, "1.3", null, "27.7", null, "1.0", null, "18.4", null, "0.8", null, "9.1", null, "0.9", null, "2.7", null, "0.6", null, "6.4", null, "0.7", null, "0.2", null, "0.1", null, "72.3", null, "1.0", null, "30.8", null, "1.1", null, "5.4", null, "0.7", null, "1.8", null, "0.4", null, "3.7", null, "0.6", null, "36.1", null, "1.4", null, "11.9", null, "0.9", null, "88.1", null, "0.9", null, "28.6", null, "1.4", null, "71.4", null, "1.4", null, "88.3", null, "0.8", null, "3.4", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "0.9", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "1.8", null, "0.4", null, "5.3", null, "0.6", null, "6.3", null, "0.5", null, "86.5", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.3", null, "1.1", null, "28.4", null, "1.6", null, "54.2", null, "1.6", null, "31102", null, "2905", null, "12342", null, "1918", null, "18760", null, "2347", null, "5296", null, "1015", null, "14709", null, "2474", null, "3127", null, "1205", null, "11582", null, "2048", null, "11097", null, "1723", null, "14485", null, "2479", null, "2704", null, "790", null, "11624", null, "2328", null, "2387", null, "1118", null, "9237", null, "1874", null, "157", null, "154", null, "16617", null, "2042", null, "2592", null, "611", null, "3085", null, "924", null, "740", null, "528", null, "2345", null, "783", null, "10940", null, "1685", null, "14485", null, "1915", null, "16617", null, "2242", null, "18565", null, "2268", null, "12537", null, "2007", null, "24189", null, "2596", null, "2271", null, "917", null, "-999999999", "N", "-999999999", "N", "121", null, "135", null, "-999999999", "N", "-999999999", "N", "1079", null, "630", null, "3299", null, "1178", null, "3354", null, "1146", null, "23083", null, "2588", null, "25837", null, "3617", null, "20005", null, "2710", null, "5146", null, "1380", null, "9817", null, "1681", null, "5042", null, "1351", null, "9.6", null, "0.9", null, "39.7", null, "5.0", null, "60.3", null, "5.0", null, "17.0", null, "3.1", null, "47.3", null, "5.6", null, "10.1", null, "3.6", null, "37.2", null, "5.1", null, "35.7", null, "5.2", null, "46.6", null, "5.7", null, "8.7", null, "2.4", null, "37.4", null, "6.0", null, "7.7", null, "3.5", null, "29.7", null, "4.9", null, "0.5", null, "0.5", null, "53.4", null, "5.7", null, "8.3", null, "2.0", null, "9.9", null, "2.8", null, "2.4", null, "1.7", null, "7.5", null, "2.4", null, "35.2", null, "5.1", null, "46.6", null, "4.7", null, "53.4", null, "4.7", null, "59.7", null, "5.1", null, "40.3", null, "5.1", null, "77.8", null, "4.9", null, "7.3", null, "2.7", null, "-999999999.0", "N", "-999999999.0", "N", "0.4", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "3.5", null, "2.1", null, "10.6", null, "3.6", null, "10.8", null, "3.6", null, "74.2", null, "5.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "25.7", null, "5.4", null, "49.1", null, "5.9", null, "25.2", null, "5.9", null, "293656", null, "4112", null, "133903", null, "2652", null, "159753", null, "3445", null, "154600", null, "4119", null, "32442", null, "3104", null, "11536", null, "2025", null, "20906", null, "2289", null, "106614", null, "4547", null, "75435", null, "3137", null, "57100", null, "2421", null, "17878", null, "2537", null, "6488", null, "1661", null, "11390", null, "1850", null, "457", null, "326", null, "218221", null, "3993", null, "97500", null, "3543", null, "14564", null, "2067", null, "5048", null, "1266", null, "9516", null, "1677", null, "106157", null, "4532", null, "24070", null, "2184", null, "269586", null, "4607", null, "74372", null, "4037", null, "219284", null, "4979", null, "262433", null, "3765", null, "8899", null, "1496", null, "-999999999", "N", "-999999999", "N", "2946", null, "664", null, "-999999999", "N", "-999999999", "N", "4772", null, "1232", null, "13966", null, "1603", null, "17088", null, "1652", null, "257833", null, "3731", null, "78729", null, "2665", null, "187042", null, "4637", null, "30771", null, "1921", null, "49019", null, "3421", null, "107252", null, "3894", null, "90.4", null, "0.9", null, "45.6", null, "0.8", null, "54.4", null, "0.8", null, "52.6", null, "1.4", null, "11.0", null, "1.0", null, "3.9", null, "0.7", null, "7.1", null, "0.8", null, "36.3", null, "1.4", null, "25.7", null, "1.0", null, "19.4", null, "0.8", null, "6.1", null, "0.8", null, "2.2", null, "0.6", null, "3.9", null, "0.6", null, "0.2", null, "0.1", null, "74.3", null, "1.0", null, "33.2", null, "1.2", null, "5.0", null, "0.7", null, "1.7", null, "0.4", null, "3.2", null, "0.6", null, "36.2", null, "1.4", null, "8.2", null, "0.7", null, "91.8", null, "0.7", null, "25.3", null, "1.3", null, "74.7", null, "1.3", null, "89.4", null, "0.8", null, "3.0", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "1.0", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "1.6", null, "0.4", null, "4.8", null, "0.5", null, "5.8", null, "0.5", null, "87.8", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.5", null, "1.0", null, "26.2", null, "1.7", null, "57.3", null, "1.6", null, "39", "05"], ["5001900US3906", "Congressional District 6 (119th Congress), Ohio", "331998", null, "4987", null, "162194", null, "3455", null, "169804", null, "5000", null, "145708", null, "4321", null, "57351", null, "3836", null, "21028", null, "2378", null, "36323", null, "2748", null, "128939", null, "5002", null, "81882", null, "3562", null, "48500", null, "2736", null, "32446", null, "2896", null, "11079", null, "1947", null, "21367", null, "2100", null, "936", null, "518", null, "250116", null, "4456", null, "97208", null, "3414", null, "24905", null, "2539", null, "9949", null, "1577", null, "14956", null, "1799", null, "128003", null, "4923", null, "50684", null, "3641", null, "281314", null, "5871", null, "103850", null, "4355", null, "228148", null, "5589", null, "296448", null, "4753", null, "18298", null, "1547", null, "680", null, "349", null, "1326", null, "457", null, "-999999999", "N", "-999999999", "N", "3364", null, "726", null, "11862", null, "1817", null, "8720", null, "1087", null, "293897", null, "4837", null, "60716", null, "1197", null, "203059", null, "5172", null, "40896", null, "2655", null, "66569", null, "4071", null, "95594", null, "3887", null, "-888888888", "(X)", "-888888888", "(X)", "48.9", null, "1.0", null, "51.1", null, "1.0", null, "43.9", null, "1.2", null, "17.3", null, "1.1", null, "6.3", null, "0.7", null, "10.9", null, "0.8", null, "38.8", null, "1.3", null, "24.7", null, "0.9", null, "14.6", null, "0.8", null, "9.8", null, "0.8", null, "3.3", null, "0.6", null, "6.4", null, "0.6", null, "0.3", null, "0.2", null, "75.3", null, "0.9", null, "29.3", null, "1.0", null, "7.5", null, "0.8", null, "3.0", null, "0.5", null, "4.5", null, "0.5", null, "38.6", null, "1.3", null, "15.3", null, "1.1", null, "84.7", null, "1.1", null, "31.3", null, "1.3", null, "68.7", null, "1.3", null, "89.3", null, "0.7", null, "5.5", null, "0.5", null, "0.2", null, "0.1", null, "0.4", null, "0.1", null, "-999999999.0", "N", "-999999999.0", "N", "1.0", null, "0.2", null, "3.6", null, "0.5", null, "2.6", null, "0.3", null, "88.5", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "20.1", null, "1.2", null, "32.8", null, "1.7", null, "47.1", null, "1.6", null, "49582", null, "3370", null, "22248", null, "2308", null, "27334", null, "2615", null, "10082", null, "1620", null, "18516", null, "2374", null, "5434", null, "1404", null, "13082", null, "1910", null, "20984", null, "2196", null, "16933", null, "2047", null, "4607", null, "1002", null, "12168", null, "1756", null, "2909", null, "1031", null, "9259", null, "1505", null, "158", null, "145", null, "32649", null, "2604", null, "5475", null, "1285", null, "6348", null, "1527", null, "2525", null, "931", null, "3823", null, "1107", null, "20826", null, "2176", null, "24362", null, "2607", null, "25220", null, "2834", null, "27818", null, "2621", null, "21764", null, "2309", null, "38364", null, "3098", null, "6872", null, "1234", null, "274", null, "205", null, "95", null, "158", null, "-999999999", "N", "-999999999", "N", "929", null, "457", null, "3048", null, "814", null, "2622", null, "711", null, "37777", null, "3120", null, "22330", null, "2234", null, "28598", null, "2817", null, "7652", null, "1517", null, "13911", null, "2257", null, "7035", null, "1689", null, "14.9", null, "1.0", null, "44.9", null, "3.6", null, "55.1", null, "3.6", null, "20.3", null, "2.9", null, "37.3", null, "4.0", null, "11.0", null, "2.6", null, "26.4", null, "3.5", null, "42.3", null, "3.7", null, "34.2", null, "3.2", null, "9.3", null, "1.8", null, "24.5", null, "3.1", null, "5.9", null, "2.0", null, "18.7", null, "2.8", null, "0.3", null, "0.3", null, "65.8", null, "3.2", null, "11.0", null, "2.5", null, "12.8", null, "2.9", null, "5.1", null, "1.8", null, "7.7", null, "2.2", null, "42.0", null, "3.7", null, "49.1", null, "4.3", null, "50.9", null, "4.3", null, "56.1", null, "3.6", null, "43.9", null, "3.6", null, "77.4", null, "2.7", null, "13.9", null, "2.3", null, "0.6", null, "0.4", null, "0.2", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "1.9", null, "0.9", null, "6.1", null, "1.7", null, "5.3", null, "1.5", null, "76.2", null, "2.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "26.8", null, "5.0", null, "48.6", null, "5.8", null, "24.6", null, "5.3", null, "282416", null, "5903", null, "139946", null, "3487", null, "142470", null, "5079", null, "135626", null, "4369", null, "38835", null, "3425", null, "15594", null, "2121", null, "23241", null, "2350", null, "107955", null, "5296", null, "64949", null, "3481", null, "43893", null, "2697", null, "20278", null, "2558", null, "8170", null, "1734", null, "12108", null, "1785", null, "778", null, "471", null, "217467", null, "4950", null, "91733", null, "3466", null, "18557", null, "2040", null, "7424", null, "1372", null, "11133", null, "1406", null, "107177", null, "5218", null, "26322", null, "3016", null, "256094", null, "6033", null, "76032", null, "3705", null, "206384", null, "5595", null, "258084", null, "5722", null, "11426", null, "1487", null, "406", null, "313", null, "1231", null, "421", null, "-999999999", "N", "-999999999", "N", "2435", null, "767", null, "8814", null, "1705", null, "6098", null, "1022", null, "256120", null, "5778", null, "67288", null, "2091", null, "174461", null, "5154", null, "33244", null, "2121", null, "52658", null, "3528", null, "88559", null, "3777", null, "85.1", null, "1.0", null, "49.6", null, "1.1", null, "50.4", null, "1.1", null, "48.0", null, "1.4", null, "13.8", null, "1.2", null, "5.5", null, "0.8", null, "8.2", null, "0.8", null, "38.2", null, "1.6", null, "23.0", null, "1.1", null, "15.5", null, "0.9", null, "7.2", null, "0.9", null, "2.9", null, "0.6", null, "4.3", null, "0.6", null, "0.3", null, "0.2", null, "77.0", null, "1.1", null, "32.5", null, "1.2", null, "6.6", null, "0.7", null, "2.6", null, "0.5", null, "3.9", null, "0.5", null, "38.0", null, "1.5", null, "9.3", null, "1.0", null, "90.7", null, "1.0", null, "26.9", null, "1.2", null, "73.1", null, "1.2", null, "91.4", null, "0.9", null, "4.0", null, "0.5", null, "0.1", null, "0.1", null, "0.4", null, "0.1", null, "-999999999.0", "N", "-999999999.0", "N", "0.9", null, "0.3", null, "3.1", null, "0.6", null, "2.2", null, "0.4", null, "90.7", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "19.1", null, "1.2", null, "30.2", null, "1.6", null, "50.8", null, "1.7", null, "39", "06"], ["5001900US3907", "Congressional District 7 (119th Congress), Ohio", "325017", null, "4273", null, "153734", null, "3882", null, "171283", null, "4515", null, "164975", null, "4824", null, "41350", null, "4008", null, "12550", null, "2004", null, "28800", null, "3191", null, "118692", null, "5346", null, "84284", null, "3385", null, "63148", null, "3191", null, "20430", null, "2498", null, "6096", null, "1384", null, "14334", null, "2078", null, "706", null, "413", null, "240733", null, "4731", null, "101827", null, "4037", null, "20920", null, "2657", null, "6454", null, "1336", null, "14466", null, "2149", null, "117986", null, "5309", null, "25140", null, "2503", null, "299877", null, "4587", null, "78927", null, "3382", null, "246090", null, "4642", null, "291285", null, "4736", null, "9523", null, "1739", null, "-999999999", "N", "-999999999", "N", "8168", null, "1233", null, "-999999999", "N", "-999999999", "N", "3939", null, "1186", null, "11418", null, "1828", null, "11181", null, "1646", null, "288322", null, "4698", null, "84749", null, "2824", null, "206325", null, "5292", null, "29711", null, "1970", null, "60019", null, "3772", null, "116595", null, "4848", null, "-888888888", "(X)", "-888888888", "(X)", "47.3", null, "1.1", null, "52.7", null, "1.1", null, "50.8", null, "1.5", null, "12.7", null, "1.2", null, "3.9", null, "0.6", null, "8.9", null, "0.9", null, "36.5", null, "1.5", null, "25.9", null, "1.0", null, "19.4", null, "1.0", null, "6.3", null, "0.7", null, "1.9", null, "0.4", null, "4.4", null, "0.6", null, "0.2", null, "0.1", null, "74.1", null, "1.0", null, "31.3", null, "1.2", null, "6.4", null, "0.8", null, "2.0", null, "0.4", null, "4.5", null, "0.6", null, "36.3", null, "1.5", null, "7.7", null, "0.8", null, "92.3", null, "0.8", null, "24.3", null, "1.0", null, "75.7", null, "1.0", null, "89.6", null, "0.9", null, "2.9", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "2.5", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "1.2", null, "0.4", null, "3.5", null, "0.6", null, "3.4", null, "0.5", null, "88.7", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.4", null, "0.9", null, "29.1", null, "1.6", null, "56.5", null, "1.8", null, "21255", null, "2240", null, "9261", null, "1461", null, "11994", null, "2018", null, "6205", null, "1389", null, "7657", null, "1408", null, "1994", null, "856", null, "5663", null, "1146", null, "7393", null, "1472", null, "9703", null, "1686", null, "4423", null, "1246", null, "5119", null, "1095", null, "809", null, "451", null, "4310", null, "1031", null, "161", null, "159", null, "11552", null, "1710", null, "1782", null, "693", null, "2538", null, "915", null, "1185", null, "680", null, "1353", null, "586", null, "7232", null, "1468", null, "7209", null, "1034", null, "14046", null, "2051", null, "11478", null, "1926", null, "9777", null, "1633", null, "16804", null, "1963", null, "1347", null, "642", null, "-999999999", "N", "-999999999", "N", "617", null, "472", null, "-999999999", "N", "-999999999", "N", "1169", null, "733", null, "1048", null, "535", null, "1747", null, "901", null, "16374", null, "1823", null, "38106", null, "6412", null, "13862", null, "1919", null, "1396", null, "413", null, "6700", null, "1236", null, "5766", null, "1533", null, "6.5", null, "0.7", null, "43.6", null, "6.3", null, "56.4", null, "6.3", null, "29.2", null, "5.9", null, "36.0", null, "5.2", null, "9.4", null, "3.7", null, "26.6", null, "4.8", null, "34.8", null, "5.9", null, "45.7", null, "6.0", null, "20.8", null, "5.4", null, "24.1", null, "4.4", null, "3.8", null, "2.1", null, "20.3", null, "4.4", null, "0.8", null, "0.7", null, "54.3", null, "6.0", null, "8.4", null, "3.3", null, "11.9", null, "4.1", null, "5.6", null, "3.1", null, "6.4", null, "2.8", null, "34.0", null, "5.9", null, "33.9", null, "4.7", null, "66.1", null, "4.7", null, "54.0", null, "6.5", null, "46.0", null, "6.5", null, "79.1", null, "6.1", null, "6.3", null, "2.9", null, "-999999999.0", "N", "-999999999.0", "N", "2.9", null, "2.2", null, "-999999999.0", "N", "-999999999.0", "N", "5.5", null, "3.3", null, "4.9", null, "2.5", null, "8.2", null, "3.9", null, "77.0", null, "6.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.1", null, "3.2", null, "48.3", null, "7.6", null, "41.6", null, "7.4", null, "303762", null, "4707", null, "144473", null, "4046", null, "159289", null, "4840", null, "158770", null, "4729", null, "33693", null, "3799", null, "10556", null, "1906", null, "23137", null, "2979", null, "111299", null, "5187", null, "74581", null, "3211", null, "58725", null, "3136", null, "15311", null, "2166", null, "5287", null, "1267", null, "10024", null, "1782", null, "545", null, "355", null, "229181", null, "4884", null, "100045", null, "3938", null, "18382", null, "2537", null, "5269", null, "1317", null, "13113", null, "2109", null, "110754", null, "5150", null, "17931", null, "2232", null, "285831", null, "4940", null, "67449", null, "3422", null, "236313", null, "4361", null, "274481", null, "5295", null, "8176", null, "1786", null, "-999999999", "N", "-999999999", "N", "7551", null, "1270", null, "-999999999", "N", "-999999999", "N", "2770", null, "957", null, "10370", null, "1816", null, "9434", null, "1629", null, "271948", null, "5166", null, "87671", null, "2981", null, "192463", null, "5150", null, "28315", null, "1980", null, "53319", null, "3612", null, "110829", null, "4351", null, "93.5", null, "0.7", null, "47.6", null, "1.2", null, "52.4", null, "1.2", null, "52.3", null, "1.6", null, "11.1", null, "1.2", null, "3.5", null, "0.6", null, "7.6", null, "0.9", null, "36.6", null, "1.5", null, "24.6", null, "1.0", null, "19.3", null, "1.0", null, "5.0", null, "0.7", null, "1.7", null, "0.4", null, "3.3", null, "0.6", null, "0.2", null, "0.1", null, "75.4", null, "1.0", null, "32.9", null, "1.3", null, "6.1", null, "0.8", null, "1.7", null, "0.4", null, "4.3", null, "0.7", null, "36.5", null, "1.5", null, "5.9", null, "0.7", null, "94.1", null, "0.7", null, "22.2", null, "1.0", null, "77.8", null, "1.0", null, "90.4", null, "1.0", null, "2.7", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "2.5", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "0.9", null, "0.3", null, "3.4", null, "0.6", null, "3.1", null, "0.5", null, "89.5", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.7", null, "1.0", null, "27.7", null, "1.6", null, "57.6", null, "1.7", null, "39", "07"], ["5001900US3908", "Congressional District 8 (119th Congress), Ohio", "310628", null, "4597", null, "136777", null, "4549", null, "173851", null, "5040", null, "149798", null, "5896", null, "54892", null, "4182", null, "18486", null, "2568", null, "36406", null, "3507", null, "105938", null, "4961", null, "92376", null, "4373", null, "58966", null, "4274", null, "32209", null, "3515", null, "11026", null, "2062", null, "21183", null, "3106", null, "1201", null, "628", null, "218252", null, "6369", null, "90832", null, "4593", null, "22683", null, "2672", null, "7460", null, "1570", null, "15223", null, "2172", null, "104737", null, "4917", null, "33656", null, "3798", null, "276972", null, "5546", null, "88945", null, "4660", null, "221683", null, "5474", null, "238748", null, "4441", null, "41414", null, "3633", null, "-999999999", "N", "-999999999", "N", "8550", null, "1392", null, "-999999999", "N", "-999999999", "N", "5554", null, "1781", null, "15574", null, "2689", null, "10157", null, "1499", null, "237351", null, "4363", null, "78375", null, "2413", null, "204690", null, "4781", null, "31022", null, "2246", null, "62069", null, "3654", null, "111599", null, "4758", null, "-888888888", "(X)", "-888888888", "(X)", "44.0", null, "1.3", null, "56.0", null, "1.3", null, "48.2", null, "1.8", null, "17.7", null, "1.3", null, "6.0", null, "0.8", null, "11.7", null, "1.1", null, "34.1", null, "1.4", null, "29.7", null, "1.5", null, "19.0", null, "1.4", null, "10.4", null, "1.1", null, "3.5", null, "0.7", null, "6.8", null, "1.0", null, "0.4", null, "0.2", null, "70.3", null, "1.5", null, "29.2", null, "1.3", null, "7.3", null, "0.9", null, "2.4", null, "0.5", null, "4.9", null, "0.7", null, "33.7", null, "1.4", null, "10.8", null, "1.2", null, "89.2", null, "1.2", null, "28.6", null, "1.4", null, "71.4", null, "1.4", null, "76.9", null, "1.3", null, "13.3", null, "1.1", null, "-999999999.0", "N", "-999999999.0", "N", "2.8", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "1.8", null, "0.6", null, "5.0", null, "0.8", null, "3.3", null, "0.5", null, "76.4", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.2", null, "1.1", null, "30.3", null, "1.7", null, "54.5", null, "1.7", null, "27638", null, "2844", null, "11998", null, "2044", null, "15640", null, "2815", null, "6055", null, "1814", null, "12909", null, "2341", null, "5046", null, "1527", null, "7863", null, "1877", null, "8674", null, "1629", null, "14311", null, "2498", null, "4307", null, "1513", null, "9828", null, "1991", null, "3808", null, "1385", null, "6020", null, "1592", null, "176", null, "165", null, "13327", null, "1964", null, "1748", null, "853", null, "3081", null, "1169", null, "1238", null, "563", null, "1843", null, "960", null, "8498", null, "1646", null, "12001", null, "2067", null, "15637", null, "2300", null, "17022", null, "2608", null, "10616", null, "2368", null, "17464", null, "2323", null, "7253", null, "1641", null, "-999999999", "N", "-999999999", "N", "596", null, "531", null, "-999999999", "N", "-999999999", "N", "739", null, "480", null, "1479", null, "796", null, "584", null, "364", null, "17320", null, "2304", null, "32185", null, "6582", null, "18964", null, "2488", null, "3826", null, "1232", null, "8411", null, "1760", null, "6727", null, "1921", null, "8.9", null, "0.9", null, "43.4", null, "7.1", null, "56.6", null, "7.1", null, "21.9", null, "6.2", null, "46.7", null, "6.8", null, "18.3", null, "5.0", null, "28.4", null, "6.2", null, "31.4", null, "5.2", null, "51.8", null, "6.3", null, "15.6", null, "5.1", null, "35.6", null, "5.8", null, "13.8", null, "4.7", null, "21.8", null, "5.2", null, "0.6", null, "0.6", null, "48.2", null, "6.3", null, "6.3", null, "3.2", null, "11.1", null, "4.2", null, "4.5", null, "2.0", null, "6.7", null, "3.5", null, "30.7", null, "5.3", null, "43.4", null, "6.0", null, "56.6", null, "6.0", null, "61.6", null, "7.4", null, "38.4", null, "7.4", null, "63.2", null, "5.9", null, "26.2", null, "5.1", null, "-999999999.0", "N", "-999999999.0", "N", "2.2", null, "1.9", null, "-999999999.0", "N", "-999999999.0", "N", "2.7", null, "1.7", null, "5.4", null, "2.8", null, "2.1", null, "1.3", null, "62.7", null, "5.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "20.2", null, "6.4", null, "44.4", null, "7.8", null, "35.5", null, "8.3", null, "282990", null, "5475", null, "124779", null, "4335", null, "158211", null, "5568", null, "143743", null, "5628", null, "41983", null, "3725", null, "13440", null, "2145", null, "28543", null, "3274", null, "97264", null, "5096", null, "78065", null, "4490", null, "54659", null, "4186", null, "22381", null, "3054", null, "7218", null, "1708", null, "15163", null, "2578", null, "1025", null, "591", null, "204925", null, "6335", null, "89084", null, "4425", null, "19602", null, "2499", null, "6222", null, "1455", null, "13380", null, "2129", null, "96239", null, "5079", null, "21655", null, "3135", null, "261335", null, "6117", null, "71923", null, "4137", null, "211067", null, "5787", null, "221284", null, "5094", null, "34161", null, "3970", null, "-999999999", "N", "-999999999", "N", "7954", null, "1326", null, "-999999999", "N", "-999999999", "N", "4815", null, "1640", null, "14095", null, "2592", null, "9573", null, "1493", null, "220031", null, "5005", null, "81870", null, "1712", null, "185726", null, "5460", null, "27196", null, "2239", null, "53658", null, "3806", null, "104872", null, "4958", null, "91.1", null, "0.9", null, "44.1", null, "1.4", null, "55.9", null, "1.4", null, "50.8", null, "1.8", null, "14.8", null, "1.3", null, "4.7", null, "0.8", null, "10.1", null, "1.1", null, "34.4", null, "1.6", null, "27.6", null, "1.6", null, "19.3", null, "1.5", null, "7.9", null, "1.1", null, "2.6", null, "0.6", null, "5.4", null, "0.9", null, "0.4", null, "0.2", null, "72.4", null, "1.6", null, "31.5", null, "1.4", null, "6.9", null, "0.9", null, "2.2", null, "0.5", null, "4.7", null, "0.8", null, "34.0", null, "1.6", null, "7.7", null, "1.1", null, "92.3", null, "1.1", null, "25.4", null, "1.4", null, "74.6", null, "1.4", null, "78.2", null, "1.5", null, "12.1", null, "1.3", null, "-999999999.0", "N", "-999999999.0", "N", "2.8", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "1.7", null, "0.6", null, "5.0", null, "0.9", null, "3.4", null, "0.5", null, "77.8", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.6", null, "1.1", null, "28.9", null, "1.9", null, "56.5", null, "2.0", null, "39", "08"], ["5001900US3909", "Congressional District 9 (119th Congress), Ohio", "339298", null, "2859", null, "146901", null, "2868", null, "192397", null, "3537", null, "139949", null, "4524", null, "63214", null, "3732", null, "19253", null, "2225", null, "43961", null, "3386", null, "136135", null, "5434", null, "90579", null, "4059", null, "50133", null, "2945", null, "40004", null, "3874", null, "10620", null, "1976", null, "29384", null, "3295", null, "442", null, "313", null, "248719", null, "4445", null, "89816", null, "3926", null, "23210", null, "2281", null, "8633", null, "1575", null, "14577", null, "1631", null, "135693", null, "5454", null, "48757", null, "3344", null, "290541", null, "4141", null, "96844", null, "3927", null, "242454", null, "4024", null, "270706", null, "3502", null, "37639", null, "2333", null, "-999999999", "N", "-999999999", "N", "3928", null, "685", null, "-999999999", "N", "-999999999", "N", "7623", null, "1448", null, "18981", null, "2726", null, "20211", null, "1655", null, "263953", null, "3192", null, "66802", null, "1799", null, "203163", null, "5073", null, "34465", null, "2728", null, "67383", null, "4135", null, "101315", null, "4680", null, "-888888888", "(X)", "-888888888", "(X)", "43.3", null, "0.8", null, "56.7", null, "0.8", null, "41.2", null, "1.4", null, "18.6", null, "1.1", null, "5.7", null, "0.6", null, "13.0", null, "1.0", null, "40.1", null, "1.5", null, "26.7", null, "1.2", null, "14.8", null, "0.9", null, "11.8", null, "1.1", null, "3.1", null, "0.6", null, "8.7", null, "1.0", null, "0.1", null, "0.1", null, "73.3", null, "1.2", null, "26.5", null, "1.2", null, "6.8", null, "0.7", null, "2.5", null, "0.5", null, "4.3", null, "0.5", null, "40.0", null, "1.5", null, "14.4", null, "1.0", null, "85.6", null, "1.0", null, "28.5", null, "1.1", null, "71.5", null, "1.1", null, "79.8", null, "0.8", null, "11.1", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "1.2", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "2.2", null, "0.4", null, "5.6", null, "0.8", null, "6.0", null, "0.5", null, "77.8", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.0", null, "1.3", null, "33.2", null, "1.9", null, "49.9", null, "1.8", null, "44700", null, "3935", null, "15976", null, "2160", null, "28724", null, "3325", null, "5991", null, "1136", null, "21543", null, "2862", null, "4038", null, "1228", null, "17505", null, "2579", null, "17166", null, "2149", null, "19530", null, "2794", null, "3108", null, "903", null, "16300", null, "2740", null, "2320", null, "1090", null, "13980", null, "2476", null, "122", null, "163", null, "25170", null, "2608", null, "2883", null, "777", null, "5243", null, "1164", null, "1718", null, "687", null, "3525", null, "978", null, "17044", null, "2155", null, "21861", null, "2729", null, "22839", null, "2672", null, "22505", null, "2519", null, "22195", null, "3081", null, "25599", null, "2688", null, "12293", null, "1655", null, "-999999999", "N", "-999999999", "N", "240", null, "281", null, "-999999999", "N", "-999999999", "N", "1822", null, "780", null, "4723", null, "1503", null, "3842", null, "1247", null, "24659", null, "2651", null, "24398", null, "2245", null, "27534", null, "2976", null, "6465", null, "1607", null, "14449", null, "2224", null, "6620", null, "1666", null, "13.2", null, "1.2", null, "35.7", null, "4.1", null, "64.3", null, "4.1", null, "13.4", null, "2.6", null, "48.2", null, "4.0", null, "9.0", null, "2.6", null, "39.2", null, "4.0", null, "38.4", null, "3.6", null, "43.7", null, "4.2", null, "7.0", null, "2.1", null, "36.5", null, "4.3", null, "5.2", null, "2.4", null, "31.3", null, "4.0", null, "0.3", null, "0.4", null, "56.3", null, "4.2", null, "6.4", null, "1.7", null, "11.7", null, "2.6", null, "3.8", null, "1.5", null, "7.9", null, "2.2", null, "38.1", null, "3.6", null, "48.9", null, "4.2", null, "51.1", null, "4.2", null, "50.3", null, "4.5", null, "49.7", null, "4.5", null, "57.3", null, "3.7", null, "27.5", null, "3.1", null, "-999999999.0", "N", "-999999999.0", "N", "0.5", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "4.1", null, "1.6", null, "10.6", null, "3.2", null, "8.6", null, "2.5", null, "55.2", null, "3.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "23.5", null, "5.2", null, "52.5", null, "6.0", null, "24.0", null, "5.4", null, "294598", null, "4607", null, "130925", null, "2985", null, "163673", null, "3940", null, "133958", null, "4300", null, "41671", null, "3305", null, "15215", null, "1994", null, "26456", null, "2888", null, "118969", null, "5350", null, "71049", null, "3531", null, "47025", null, "2633", null, "23704", null, "2761", null, "8300", null, "1610", null, "15404", null, "2440", null, "320", null, "276", null, "223549", null, "4838", null, "86933", null, "3853", null, "17967", null, "2078", null, "6915", null, "1436", null, "11052", null, "1538", null, "118649", null, "5350", null, "26896", null, "2487", null, "267702", null, "4673", null, "74339", null, "3527", null, "220259", null, "4722", null, "245107", null, "4167", null, "25346", null, "2531", null, "-999999999", "N", "-999999999", "N", "3688", null, "683", null, "-999999999", "N", "-999999999", "N", "5801", null, "1446", null, "14258", null, "2240", null, "16369", null, "1820", null, "239294", null, "4009", null, "75424", null, "2290", null, "175629", null, "5563", null, "28000", null, "2191", null, "52934", null, "3811", null, "94695", null, "4516", null, "86.8", null, "1.2", null, "44.4", null, "0.9", null, "55.6", null, "0.9", null, "45.5", null, "1.5", null, "14.1", null, "1.0", null, "5.2", null, "0.7", null, "9.0", null, "0.9", null, "40.4", null, "1.7", null, "24.1", null, "1.1", null, "16.0", null, "0.9", null, "8.0", null, "0.9", null, "2.8", null, "0.5", null, "5.2", null, "0.8", null, "0.1", null, "0.1", null, "75.9", null, "1.1", null, "29.5", null, "1.3", null, "6.1", null, "0.7", null, "2.3", null, "0.5", null, "3.8", null, "0.5", null, "40.3", null, "1.7", null, "9.1", null, "0.8", null, "90.9", null, "0.8", null, "25.2", null, "1.1", null, "74.8", null, "1.1", null, "83.2", null, "1.1", null, "8.6", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "1.3", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "2.0", null, "0.5", null, "4.8", null, "0.8", null, "5.6", null, "0.6", null, "81.2", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.9", null, "1.2", null, "30.1", null, "1.9", null, "53.9", null, "1.8", null, "39", "09"], ["5001900US3910", "Congressional District 10 (119th Congress), Ohio", "335199", null, "3717", null, "141880", null, "3245", null, "193319", null, "4444", null, "142615", null, "4692", null, "52074", null, "4345", null, "13885", null, "2088", null, "38189", null, "3415", null, "140510", null, "4630", null, "83772", null, "4403", null, "52573", null, "3400", null, "30248", null, "3621", null, "7698", null, "1660", null, "22550", null, "2963", null, "951", null, "601", null, "251427", null, "4967", null, "90042", null, "3952", null, "21826", null, "2360", null, "6187", null, "1345", null, "15639", null, "2010", null, "139559", null, "4541", null, "46033", null, "4040", null, "289166", null, "4660", null, "100227", null, "5174", null, "234972", null, "5447", null, "249269", null, "4106", null, "55558", null, "2884", null, "-999999999", "N", "-999999999", "N", "6814", null, "781", null, "-999999999", "N", "-999999999", "N", "5922", null, "1905", null, "17134", null, "2364", null, "10515", null, "1375", null, "247590", null, "4009", null, "69377", null, "2265", null, "194689", null, "5044", null, "32877", null, "2844", null, "59886", null, "3986", null, "101926", null, "4701", null, "-888888888", "(X)", "-888888888", "(X)", "42.3", null, "1.0", null, "57.7", null, "1.0", null, "42.5", null, "1.3", null, "15.5", null, "1.3", null, "4.1", null, "0.6", null, "11.4", null, "1.0", null, "41.9", null, "1.3", null, "25.0", null, "1.3", null, "15.7", null, "1.0", null, "9.0", null, "1.1", null, "2.3", null, "0.5", null, "6.7", null, "0.9", null, "0.3", null, "0.2", null, "75.0", null, "1.3", null, "26.9", null, "1.1", null, "6.5", null, "0.7", null, "1.8", null, "0.4", null, "4.7", null, "0.6", null, "41.6", null, "1.3", null, "13.7", null, "1.2", null, "86.3", null, "1.2", null, "29.9", null, "1.5", null, "70.1", null, "1.5", null, "74.4", null, "0.9", null, "16.6", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "2.0", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "1.8", null, "0.6", null, "5.1", null, "0.7", null, "3.1", null, "0.4", null, "73.9", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.9", null, "1.5", null, "30.8", null, "1.9", null, "52.4", null, "1.9", null, "40799", null, "3822", null, "14271", null, "2266", null, "26528", null, "3491", null, "7340", null, "1557", null, "16904", null, "2781", null, "2840", null, "925", null, "14064", null, "2568", null, "16555", null, "2443", null, "16275", null, "2883", null, "3847", null, "1170", null, "12118", null, "2709", null, "1590", null, "758", null, "10528", null, "2495", null, "310", null, "376", null, "24524", null, "2829", null, "3493", null, "996", null, "4786", null, "1239", null, "1250", null, "566", null, "3536", null, "1167", null, "16245", null, "2436", null, "20141", null, "2649", null, "20658", null, "2605", null, "22072", null, "2805", null, "18727", null, "2768", null, "23029", null, "2451", null, "14398", null, "2463", null, "-999999999", "N", "-999999999", "N", "325", null, "298", null, "-999999999", "N", "-999999999", "N", "441", null, "387", null, "2448", null, "1205", null, "1198", null, "664", null, "22911", null, "2442", null, "23785", null, "2884", null, "24244", null, "3083", null, "4521", null, "1193", null, "11828", null, "2244", null, "7895", null, "1693", null, "12.2", null, "1.1", null, "35.0", null, "5.1", null, "65.0", null, "5.1", null, "18.0", null, "3.8", null, "41.4", null, "4.8", null, "7.0", null, "2.2", null, "34.5", null, "4.7", null, "40.6", null, "4.8", null, "39.9", null, "5.3", null, "9.4", null, "2.8", null, "29.7", null, "5.4", null, "3.9", null, "1.8", null, "25.8", null, "5.0", null, "0.8", null, "0.9", null, "60.1", null, "5.3", null, "8.6", null, "2.5", null, "11.7", null, "3.0", null, "3.1", null, "1.4", null, "8.7", null, "2.8", null, "39.8", null, "4.8", null, "49.4", null, "4.4", null, "50.6", null, "4.4", null, "54.1", null, "5.0", null, "45.9", null, "5.0", null, "56.4", null, "4.5", null, "35.3", null, "4.7", null, "-999999999.0", "N", "-999999999.0", "N", "0.8", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "1.1", null, "1.0", null, "6.0", null, "2.8", null, "2.9", null, "1.6", null, "56.2", null, "4.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.6", null, "4.7", null, "48.8", null, "6.0", null, "32.6", null, "5.8", null, "294400", null, "4688", null, "127609", null, "3316", null, "166791", null, "5232", null, "135275", null, "4391", null, "35170", null, "3465", null, "11045", null, "1732", null, "24125", null, "2796", null, "123955", null, "4353", null, "67497", null, "3806", null, "48726", null, "3227", null, "18130", null, "2598", null, "6108", null, "1490", null, "12022", null, "1930", null, "641", null, "453", null, "226903", null, "4957", null, "86549", null, "3736", null, "17040", null, "2065", null, "4937", null, "1109", null, "12103", null, "1842", null, "123314", null, "4245", null, "25892", null, "3118", null, "268508", null, "5101", null, "78155", null, "4949", null, "216245", null, "5376", null, "226240", null, "4330", null, "41160", null, "3578", null, "-999999999", "N", "-999999999", "N", "6489", null, "871", null, "-999999999", "N", "-999999999", "N", "5481", null, "1869", null, "14686", null, "2167", null, "9317", null, "1505", null, "224679", null, "4260", null, "75851", null, "2207", null, "170445", null, "4267", null, "28356", null, "2555", null, "48058", null, "3290", null, "94031", null, "4364", null, "87.8", null, "1.1", null, "43.3", null, "1.2", null, "56.7", null, "1.2", null, "45.9", null, "1.3", null, "11.9", null, "1.2", null, "3.8", null, "0.6", null, "8.2", null, "0.9", null, "42.1", null, "1.2", null, "22.9", null, "1.2", null, "16.6", null, "1.1", null, "6.2", null, "0.9", null, "2.1", null, "0.5", null, "4.1", null, "0.6", null, "0.2", null, "0.2", null, "77.1", null, "1.2", null, "29.4", null, "1.2", null, "5.8", null, "0.7", null, "1.7", null, "0.4", null, "4.1", null, "0.6", null, "41.9", null, "1.2", null, "8.8", null, "1.0", null, "91.2", null, "1.0", null, "26.5", null, "1.6", null, "73.5", null, "1.6", null, "76.8", null, "1.2", null, "14.0", null, "1.1", null, "-999999999.0", "N", "-999999999.0", "N", "2.2", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "1.9", null, "0.6", null, "5.0", null, "0.7", null, "3.2", null, "0.5", null, "76.3", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.6", null, "1.5", null, "28.2", null, "1.8", null, "55.2", null, "1.9", null, "39", "10"], ["5001900US3911", "Congressional District 11 (119th Congress), Ohio", "349129", null, "5298", null, "143097", null, "4228", null, "206032", null, "4400", null, "92065", null, "4395", null, "77436", null, "3715", null, "17609", null, "2501", null, "59827", null, "3510", null, "179628", null, "6691", null, "75841", null, "4464", null, "28385", null, "2845", null, "45805", null, "3578", null, "8798", null, "1948", null, "37007", null, "3378", null, "1651", null, "1208", null, "273288", null, "6313", null, "63680", null, "3942", null, "31631", null, "2732", null, "8811", null, "1778", null, "22820", null, "2537", null, "177977", null, "6943", null, "69057", null, "4848", null, "280072", null, "6869", null, "100534", null, "5287", null, "248595", null, "7037", null, "157126", null, "5166", null, "149096", null, "4039", null, "934", null, "538", null, "9470", null, "1675", null, "-999999999", "N", "-999999999", "N", "8247", null, "1923", null, "24256", null, "2893", null, "24422", null, "2067", null, "153157", null, "5063", null, "56120", null, "2004", null, "169501", null, "5121", null, "26569", null, "2235", null, "60674", null, "4151", null, "82258", null, "3832", null, "-888888888", "(X)", "-888888888", "(X)", "41.0", null, "1.0", null, "59.0", null, "1.0", null, "26.4", null, "1.3", null, "22.2", null, "1.1", null, "5.0", null, "0.7", null, "17.1", null, "1.0", null, "51.5", null, "1.5", null, "21.7", null, "1.3", null, "8.1", null, "0.8", null, "13.1", null, "1.0", null, "2.5", null, "0.6", null, "10.6", null, "1.0", null, "0.5", null, "0.3", null, "78.3", null, "1.3", null, "18.2", null, "1.2", null, "9.1", null, "0.8", null, "2.5", null, "0.5", null, "6.5", null, "0.7", null, "51.0", null, "1.6", null, "19.8", null, "1.4", null, "80.2", null, "1.4", null, "28.8", null, "1.5", null, "71.2", null, "1.5", null, "45.0", null, "1.1", null, "42.7", null, "1.1", null, "0.3", null, "0.2", null, "2.7", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "2.4", null, "0.6", null, "6.9", null, "0.8", null, "7.0", null, "0.6", null, "43.9", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.7", null, "1.3", null, "35.8", null, "2.0", null, "48.5", null, "1.9", null, "63015", null, "3933", null, "27647", null, "2503", null, "35368", null, "3114", null, "6279", null, "1347", null, "27282", null, "2806", null, "4646", null, "1196", null, "22636", null, "2763", null, "29454", null, "2563", null, "22671", null, "2717", null, "3161", null, "990", null, "19168", null, "2594", null, "2083", null, "885", null, "17085", null, "2432", null, "342", null, "344", null, "40344", null, "3042", null, "3118", null, "1021", null, "8114", null, "1539", null, "2563", null, "961", null, "5551", null, "1419", null, "29112", null, "2492", null, "34310", null, "2959", null, "28705", null, "3355", null, "31488", null, "2934", null, "31527", null, "2718", null, "13747", null, "1795", null, "40499", null, "3392", null, "395", null, "447", null, "1425", null, "677", null, "-999999999", "N", "-999999999", "N", "2549", null, "785", null, "4400", null, "1133", null, "6402", null, "1261", null, "12732", null, "1856", null, "19221", null, "2031", null, "33561", null, "3126", null, "7683", null, "1637", null, "16886", null, "2626", null, "8992", null, "1879", null, "18.0", null, "1.1", null, "43.9", null, "3.1", null, "56.1", null, "3.1", null, "10.0", null, "2.0", null, "43.3", null, "3.3", null, "7.4", null, "1.9", null, "35.9", null, "3.5", null, "46.7", null, "3.3", null, "36.0", null, "3.4", null, "5.0", null, "1.5", null, "30.4", null, "3.4", null, "3.3", null, "1.4", null, "27.1", null, "3.3", null, "0.5", null, "0.5", null, "64.0", null, "3.4", null, "4.9", null, "1.6", null, "12.9", null, "2.4", null, "4.1", null, "1.6", null, "8.8", null, "2.1", null, "46.2", null, "3.1", null, "54.4", null, "4.0", null, "45.6", null, "4.0", null, "50.0", null, "3.2", null, "50.0", null, "3.2", null, "21.8", null, "2.6", null, "64.3", null, "3.1", null, "0.6", null, "0.7", null, "2.3", null, "1.1", null, "-999999999.0", "N", "-999999999.0", "N", "4.0", null, "1.2", null, "7.0", null, "1.8", null, "10.2", null, "2.0", null, "20.2", null, "2.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "22.9", null, "4.6", null, "50.3", null, "5.9", null, "26.8", null, "5.0", null, "286114", null, "6431", null, "115450", null, "4355", null, "170664", null, "5646", null, "85786", null, "4213", null, "50154", null, "3939", null, "12963", null, "2338", null, "37191", null, "3254", null, "150174", null, "6994", null, "53170", null, "3956", null, "25224", null, "2738", null, "26637", null, "3374", null, "6715", null, "1897", null, "19922", null, "2990", null, "1309", null, "1133", null, "232944", null, "6823", null, "60562", null, "3720", null, "23517", null, "2242", null, "6248", null, "1568", null, "17269", null, "2055", null, "148865", null, "7154", null, "34747", null, "3405", null, "251367", null, "6976", null, "69046", null, "4121", null, "217068", null, "7277", null, "143379", null, "4832", null, "108597", null, "4467", null, "539", null, "378", null, "8045", null, "1540", null, "-999999999", "N", "-999999999", "N", "5698", null, "1714", null, "19856", null, "2676", null, "18020", null, "2107", null, "140425", null, "4702", null, "65086", null, "2342", null, "135940", null, "5365", null, "18886", null, "1893", null, "43788", null, "4117", null, "73266", null, "3556", null, "82.0", null, "1.1", null, "40.4", null, "1.3", null, "59.6", null, "1.3", null, "30.0", null, "1.5", null, "17.5", null, "1.4", null, "4.5", null, "0.8", null, "13.0", null, "1.1", null, "52.5", null, "1.9", null, "18.6", null, "1.4", null, "8.8", null, "0.9", null, "9.3", null, "1.2", null, "2.3", null, "0.7", null, "7.0", null, "1.1", null, "0.5", null, "0.4", null, "81.4", null, "1.4", null, "21.2", null, "1.3", null, "8.2", null, "0.8", null, "2.2", null, "0.5", null, "6.0", null, "0.7", null, "52.0", null, "1.9", null, "12.1", null, "1.2", null, "87.9", null, "1.2", null, "24.1", null, "1.5", null, "75.9", null, "1.5", null, "50.1", null, "1.2", null, "38.0", null, "1.3", null, "0.2", null, "0.1", null, "2.8", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "2.0", null, "0.6", null, "6.9", null, "0.9", null, "6.3", null, "0.7", null, "49.1", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.9", null, "1.4", null, "32.2", null, "2.3", null, "53.9", null, "2.4", null, "39", "11"], ["5001900US3912", "Congressional District 12 (119th Congress), Ohio", "303553", null, "3685", null, "136053", null, "3091", null, "167500", null, "3994", null, "163493", null, "4124", null, "44289", null, "3297", null, "15537", null, "2006", null, "28752", null, "2580", null, "95771", null, "3934", null, "94173", null, "3357", null, "66609", null, "3252", null, "26496", null, "2759", null, "8772", null, "1623", null, "17724", null, "2028", null, "1068", null, "534", null, "209380", null, "4057", null, "96884", null, "3437", null, "17793", null, "1875", null, "6765", null, "1371", null, "11028", null, "1693", null, "94703", null, "3961", null, "34400", null, "3010", null, "269153", null, "4565", null, "88377", null, "4278", null, "215176", null, "4937", null, "275756", null, "3773", null, "9960", null, "1169", null, "-999999999", "N", "-999999999", "N", "4890", null, "705", null, "-999999999", "N", "-999999999", "N", "2046", null, "717", null, "10495", null, "1665", null, "4948", null, "1097", null, "274123", null, "3746", null, "78547", null, "2197", null, "207782", null, "4431", null, "34010", null, "2249", null, "64278", null, "3774", null, "109494", null, "3665", null, "-888888888", "(X)", "-888888888", "(X)", "44.8", null, "1.0", null, "55.2", null, "1.0", null, "53.9", null, "1.2", null, "14.6", null, "1.1", null, "5.1", null, "0.7", null, "9.5", null, "0.8", null, "31.6", null, "1.2", null, "31.0", null, "1.0", null, "21.9", null, "1.0", null, "8.7", null, "0.9", null, "2.9", null, "0.5", null, "5.8", null, "0.7", null, "0.4", null, "0.2", null, "69.0", null, "1.0", null, "31.9", null, "1.1", null, "5.9", null, "0.6", null, "2.2", null, "0.5", null, "3.6", null, "0.6", null, "31.2", null, "1.2", null, "11.3", null, "1.0", null, "88.7", null, "1.0", null, "29.1", null, "1.4", null, "70.9", null, "1.4", null, "90.8", null, "0.7", null, "3.3", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "1.6", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "0.7", null, "0.2", null, "3.5", null, "0.5", null, "1.6", null, "0.4", null, "90.3", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.4", null, "1.0", null, "30.9", null, "1.6", null, "52.7", null, "1.5", null, "35597", null, "3061", null, "16839", null, "1971", null, "18758", null, "2382", null, "10421", null, "1561", null, "11210", null, "1592", null, "2919", null, "938", null, "8291", null, "1419", null, "13966", null, "1898", null, "15030", null, "2138", null, "7289", null, "1590", null, "7495", null, "1267", null, "1671", null, "704", null, "5824", null, "1168", null, "246", null, "192", null, "20567", null, "2326", null, "3132", null, "794", null, "3715", null, "908", null, "1248", null, "612", null, "2467", null, "724", null, "13720", null, "1906", null, "15046", null, "2158", null, "20551", null, "2188", null, "20621", null, "2556", null, "14976", null, "1917", null, "30531", null, "2672", null, "2328", null, "980", null, "-999999999", "N", "-999999999", "N", "1029", null, "561", null, "-999999999", "N", "-999999999", "N", "247", null, "238", null, "1462", null, "559", null, "393", null, "291", null, "30389", null, "2668", null, "30301", null, "4405", null, "21631", null, "2338", null, "4981", null, "1096", null, "9672", null, "1709", null, "6978", null, "1135", null, "11.7", null, "1.0", null, "47.3", null, "4.4", null, "52.7", null, "4.4", null, "29.3", null, "3.7", null, "31.5", null, "3.5", null, "8.2", null, "2.6", null, "23.3", null, "3.3", null, "39.2", null, "4.1", null, "42.2", null, "4.6", null, "20.5", null, "4.1", null, "21.1", null, "2.9", null, "4.7", null, "2.0", null, "16.4", null, "2.7", null, "0.7", null, "0.5", null, "57.8", null, "4.6", null, "8.8", null, "2.2", null, "10.4", null, "2.5", null, "3.5", null, "1.7", null, "6.9", null, "2.0", null, "38.5", null, "4.1", null, "42.3", null, "4.4", null, "57.7", null, "4.4", null, "57.9", null, "4.5", null, "42.1", null, "4.5", null, "85.8", null, "2.9", null, "6.5", null, "2.6", null, "-999999999.0", "N", "-999999999.0", "N", "2.9", null, "1.6", null, "-999999999.0", "N", "-999999999.0", "N", "0.7", null, "0.7", null, "4.1", null, "1.5", null, "1.1", null, "0.8", null, "85.4", null, "2.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "23.0", null, "4.6", null, "44.7", null, "4.9", null, "32.3", null, "5.0", null, "267956", null, "4565", null, "119214", null, "3031", null, "148742", null, "4474", null, "153072", null, "4069", null, "33079", null, "3216", null, "12618", null, "1798", null, "20461", null, "2661", null, "81805", null, "4035", null, "79143", null, "3254", null, "59320", null, "2870", null, "19001", null, "2553", null, "7101", null, "1354", null, "11900", null, "1977", null, "822", null, "499", null, "188813", null, "4450", null, "93752", null, "3458", null, "14078", null, "1719", null, "5517", null, "1230", null, "8561", null, "1512", null, "80983", null, "4130", null, "19354", null, "2237", null, "248602", null, "4845", null, "67756", null, "3809", null, "200200", null, "4724", null, "245225", null, "4623", null, "7632", null, "1155", null, "-999999999", "N", "-999999999", "N", "3861", null, "830", null, "-999999999", "N", "-999999999", "N", "1799", null, "690", null, "9033", null, "1504", null, "4555", null, "1062", null, "243734", null, "4549", null, "84437", null, "1931", null, "186151", null, "4846", null, "29029", null, "2130", null, "54606", null, "3868", null, "102516", null, "3576", null, "88.3", null, "1.0", null, "44.5", null, "1.1", null, "55.5", null, "1.1", null, "57.1", null, "1.4", null, "12.3", null, "1.1", null, "4.7", null, "0.7", null, "7.6", null, "0.9", null, "30.5", null, "1.4", null, "29.5", null, "1.1", null, "22.1", null, "1.1", null, "7.1", null, "0.9", null, "2.7", null, "0.5", null, "4.4", null, "0.7", null, "0.3", null, "0.2", null, "70.5", null, "1.1", null, "35.0", null, "1.2", null, "5.3", null, "0.6", null, "2.1", null, "0.5", null, "3.2", null, "0.6", null, "30.2", null, "1.4", null, "7.2", null, "0.8", null, "92.8", null, "0.8", null, "25.3", null, "1.3", null, "74.7", null, "1.3", null, "91.5", null, "0.8", null, "2.8", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "1.4", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "0.7", null, "0.3", null, "3.4", null, "0.6", null, "1.7", null, "0.4", null, "91.0", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.6", null, "1.0", null, "29.3", null, "1.8", null, "55.1", null, "1.8", null, "39", "12"], ["5001900US3913", "Congressional District 13 (119th Congress), Ohio", "338629", null, "3396", null, "150832", null, "3295", null, "187797", null, "3877", null, "147803", null, "4215", null, "56507", null, "4035", null, "15530", null, "2987", null, "40977", null, "3412", null, "134319", null, "4282", null, "86422", null, "3734", null, "52900", null, "3566", null, "32686", null, "3284", null, "8644", null, "2325", null, "24042", null, "2875", null, "836", null, "644", null, "252207", null, "4214", null, "94903", null, "3949", null, "23821", null, "2740", null, "6886", null, "1509", null, "16935", null, "2120", null, "133483", null, "4186", null, "44899", null, "4030", null, "293730", null, "4227", null, "95915", null, "4670", null, "242714", null, "5185", null, "264726", null, "3728", null, "44898", null, "2871", null, "-999999999", "N", "-999999999", "N", "9649", null, "922", null, "-999999999", "N", "-999999999", "N", "2799", null, "990", null, "16028", null, "2264", null, "8225", null, "1043", null, "262718", null, "3549", null, "70528", null, "2161", null, "204310", null, "4089", null, "33011", null, "2612", null, "62337", null, "4595", null, "108962", null, "4835", null, "-888888888", "(X)", "-888888888", "(X)", "44.5", null, "0.9", null, "55.5", null, "0.9", null, "43.6", null, "1.3", null, "16.7", null, "1.2", null, "4.6", null, "0.9", null, "12.1", null, "1.0", null, "39.7", null, "1.1", null, "25.5", null, "1.1", null, "15.6", null, "1.1", null, "9.7", null, "0.9", null, "2.6", null, "0.7", null, "7.1", null, "0.8", null, "0.2", null, "0.2", null, "74.5", null, "1.1", null, "28.0", null, "1.2", null, "7.0", null, "0.8", null, "2.0", null, "0.4", null, "5.0", null, "0.6", null, "39.4", null, "1.1", null, "13.3", null, "1.1", null, "86.7", null, "1.1", null, "28.3", null, "1.3", null, "71.7", null, "1.3", null, "78.2", null, "0.9", null, "13.3", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "2.8", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "0.8", null, "0.3", null, "4.7", null, "0.7", null, "2.4", null, "0.3", null, "77.6", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.2", null, "1.2", null, "30.5", null, "2.1", null, "53.3", null, "2.3", null, "44816", null, "3761", null, "17562", null, "2170", null, "27254", null, "3580", null, "7794", null, "1629", null, "18658", null, "2305", null, "3011", null, "1205", null, "15647", null, "2289", null, "18364", null, "2923", null, "19664", null, "2582", null, "5556", null, "1604", null, "13593", null, "2077", null, "1924", null, "1026", null, "11669", null, "1963", null, "515", null, "570", null, "25152", null, "3028", null, "2238", null, "655", null, "5065", null, "1173", null, "1087", null, "572", null, "3978", null, "1153", null, "17849", null, "2851", null, "22745", null, "3272", null, "22071", null, "2861", null, "21074", null, "2648", null, "23742", null, "2840", null, "23493", null, "2995", null, "14646", null, "2257", null, "-999999999", "N", "-999999999", "N", "2393", null, "979", null, "-999999999", "N", "-999999999", "N", "939", null, "669", null, "3291", null, "1095", null, "1580", null, "712", null, "23195", null, "2956", null, "23838", null, "2548", null, "26452", null, "2612", null, "6710", null, "1593", null, "11858", null, "2201", null, "7884", null, "1758", null, "13.2", null, "1.1", null, "39.2", null, "4.8", null, "60.8", null, "4.8", null, "17.4", null, "3.4", null, "41.6", null, "4.6", null, "6.7", null, "2.7", null, "34.9", null, "4.6", null, "41.0", null, "4.7", null, "43.9", null, "4.6", null, "12.4", null, "3.4", null, "30.3", null, "4.1", null, "4.3", null, "2.3", null, "26.0", null, "3.9", null, "1.1", null, "1.3", null, "56.1", null, "4.6", null, "5.0", null, "1.5", null, "11.3", null, "2.7", null, "2.4", null, "1.3", null, "8.9", null, "2.6", null, "39.8", null, "4.6", null, "50.8", null, "5.4", null, "49.2", null, "5.4", null, "47.0", null, "4.5", null, "53.0", null, "4.5", null, "52.4", null, "4.6", null, "32.7", null, "4.3", null, "-999999999.0", "N", "-999999999.0", "N", "5.3", null, "2.2", null, "-999999999.0", "N", "-999999999.0", "N", "2.1", null, "1.5", null, "7.3", null, "2.4", null, "3.5", null, "1.6", null, "51.8", null, "4.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "25.4", null, "5.1", null, "44.8", null, "7.1", null, "29.8", null, "6.4", null, "293813", null, "4166", null, "133270", null, "3269", null, "160543", null, "4069", null, "140009", null, "4167", null, "37849", null, "3715", null, "12519", null, "2473", null, "25330", null, "3087", null, "115955", null, "4076", null, "66758", null, "3848", null, "47344", null, "3720", null, "19093", null, "2741", null, "6720", null, "1990", null, "12373", null, "2342", null, "321", null, "265", null, "227055", null, "4619", null, "92665", null, "3822", null, "18756", null, "2758", null, "5799", null, "1365", null, "12957", null, "2137", null, "115634", null, "4000", null, "22154", null, "2787", null, "271659", null, "4146", null, "74841", null, "4086", null, "218972", null, "5138", null, "241233", null, "4236", null, "30252", null, "2897", null, "-999999999", "N", "-999999999", "N", "7256", null, "1208", null, "-999999999", "N", "-999999999", "N", "1860", null, "741", null, "12737", null, "1801", null, "6645", null, "1150", null, "239523", null, "3938", null, "78779", null, "3550", null, "177858", null, "4227", null, "26301", null, "2041", null, "50479", null, "4043", null, "101078", null, "4764", null, "86.8", null, "1.1", null, "45.4", null, "1.0", null, "54.6", null, "1.0", null, "47.7", null, "1.4", null, "12.9", null, "1.2", null, "4.3", null, "0.8", null, "8.6", null, "1.0", null, "39.5", null, "1.2", null, "22.7", null, "1.2", null, "16.1", null, "1.2", null, "6.5", null, "0.9", null, "2.3", null, "0.7", null, "4.2", null, "0.8", null, "0.1", null, "0.1", null, "77.3", null, "1.2", null, "31.5", null, "1.3", null, "6.4", null, "0.9", null, "2.0", null, "0.5", null, "4.4", null, "0.7", null, "39.4", null, "1.2", null, "7.5", null, "0.9", null, "92.5", null, "0.9", null, "25.5", null, "1.4", null, "74.5", null, "1.4", null, "82.1", null, "1.0", null, "10.3", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "2.5", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "0.6", null, "0.3", null, "4.3", null, "0.6", null, "2.3", null, "0.4", null, "81.5", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.8", null, "1.2", null, "28.4", null, "2.1", null, "56.8", null, "2.2", null, "39", "13"], ["5001900US3914", "Congressional District 14 (119th Congress), Ohio", "332396", null, "3115", null, "158984", null, "2668", null, "173412", null, "3747", null, "156105", null, "4761", null, "51012", null, "3792", null, "15744", null, "1954", null, "35268", null, "3148", null, "125279", null, "4423", null, "80007", null, "3405", null, "51906", null, "3652", null, "27555", null, "3413", null, "7997", null, "1545", null, "19558", null, "2796", null, "546", null, "345", null, "252389", null, "4127", null, "104199", null, "4175", null, "23457", null, "2660", null, "7747", null, "1431", null, "15710", null, "2036", null, "124733", null, "4460", null, "38304", null, "3454", null, "294092", null, "4504", null, "90232", null, "4295", null, "242164", null, "4889", null, "297256", null, "3528", null, "16668", null, "1686", null, "-999999999", "N", "-999999999", "N", "3789", null, "653", null, "-999999999", "N", "-999999999", "N", "2880", null, "933", null, "11511", null, "1712", null, "8523", null, "1090", null, "294392", null, "3435", null, "73552", null, "1893", null, "207117", null, "4145", null, "37392", null, "2664", null, "64345", null, "4524", null, "105380", null, "4345", null, "-888888888", "(X)", "-888888888", "(X)", "47.8", null, "0.9", null, "52.2", null, "0.9", null, "47.0", null, "1.4", null, "15.3", null, "1.2", null, "4.7", null, "0.6", null, "10.6", null, "1.0", null, "37.7", null, "1.2", null, "24.1", null, "1.0", null, "15.6", null, "1.1", null, "8.3", null, "1.0", null, "2.4", null, "0.5", null, "5.9", null, "0.9", null, "0.2", null, "0.1", null, "75.9", null, "1.0", null, "31.3", null, "1.3", null, "7.1", null, "0.8", null, "2.3", null, "0.4", null, "4.7", null, "0.6", null, "37.5", null, "1.2", null, "11.5", null, "1.0", null, "88.5", null, "1.0", null, "27.1", null, "1.3", null, "72.9", null, "1.3", null, "89.4", null, "0.7", null, "5.0", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "1.1", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "0.9", null, "0.3", null, "3.5", null, "0.5", null, "2.6", null, "0.3", null, "88.6", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.1", null, "1.2", null, "31.1", null, "2.0", null, "50.9", null, "2.0", null, "34345", null, "3002", null, "14037", null, "1847", null, "20308", null, "2447", null, "5501", null, "1095", null, "12994", null, "1774", null, "2374", null, "729", null, "10620", null, "1717", null, "15850", null, "2080", null, "13001", null, "1988", null, "3715", null, "1043", null, "9229", null, "1667", null, "1621", null, "549", null, "7608", null, "1594", null, "57", null, "97", null, "21344", null, "2273", null, "1786", null, "528", null, "3765", null, "866", null, "753", null, "456", null, "3012", null, "719", null, "15793", null, "2061", null, "14805", null, "2193", null, "19540", null, "2496", null, "17885", null, "1837", null, "16460", null, "2538", null, "26717", null, "2460", null, "4238", null, "1343", null, "-999999999", "N", "-999999999", "N", "62", null, "83", null, "-999999999", "N", "-999999999", "N", "478", null, "519", null, "2643", null, "926", null, "2354", null, "658", null, "25869", null, "2545", null, "25481", null, "5560", null, "18495", null, "2207", null, "4439", null, "1108", null, "9383", null, "1686", null, "4673", null, "1261", null, "10.3", null, "0.9", null, "40.9", null, "4.4", null, "59.1", null, "4.4", null, "16.0", null, "2.8", null, "37.8", null, "4.1", null, "6.9", null, "2.0", null, "30.9", null, "4.3", null, "46.1", null, "4.5", null, "37.9", null, "4.4", null, "10.8", null, "2.8", null, "26.9", null, "4.2", null, "4.7", null, "1.5", null, "22.2", null, "4.2", null, "0.2", null, "0.3", null, "62.1", null, "4.4", null, "5.2", null, "1.6", null, "11.0", null, "2.4", null, "2.2", null, "1.3", null, "8.8", null, "2.0", null, "46.0", null, "4.4", null, "43.1", null, "5.2", null, "56.9", null, "5.2", null, "52.1", null, "4.8", null, "47.9", null, "4.8", null, "77.8", null, "4.2", null, "12.3", null, "3.5", null, "-999999999.0", "N", "-999999999.0", "N", "0.2", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "1.4", null, "1.5", null, "7.7", null, "2.7", null, "6.9", null, "2.0", null, "75.3", null, "4.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "24.0", null, "5.7", null, "50.7", null, "6.8", null, "25.3", null, "5.8", null, "298051", null, "4494", null, "144947", null, "2637", null, "153104", null, "4258", null, "150604", null, "4894", null, "38018", null, "3292", null, "13370", null, "1774", null, "24648", null, "2682", null, "109429", null, "4676", null, "67006", null, "3312", null, "48191", null, "3366", null, "18326", null, "2736", null, "6376", null, "1446", null, "11950", null, "2196", null, "489", null, "336", null, "231045", null, "4678", null, "102413", null, "4246", null, "19692", null, "2409", null, "6994", null, "1394", null, "12698", null, "1794", null, "108940", null, "4692", null, "23499", null, "2862", null, "274552", null, "4732", null, "72347", null, "3946", null, "225704", null, "5158", null, "270539", null, "4533", null, "12430", null, "1720", null, "-999999999", "N", "-999999999", "N", "3727", null, "657", null, "-999999999", "N", "-999999999", "N", "2402", null, "907", null, "8868", null, "1564", null, "6169", null, "1002", null, "268523", null, "4426", null, "79597", null, "2584", null, "188622", null, "4678", null, "32953", null, "2532", null, "54962", null, "4354", null, "100707", null, "4496", null, "89.7", null, "0.9", null, "48.6", null, "0.9", null, "51.4", null, "0.9", null, "50.5", null, "1.5", null, "12.8", null, "1.1", null, "4.5", null, "0.6", null, "8.3", null, "0.9", null, "36.7", null, "1.4", null, "22.5", null, "1.1", null, "16.2", null, "1.1", null, "6.1", null, "0.9", null, "2.1", null, "0.5", null, "4.0", null, "0.7", null, "0.2", null, "0.1", null, "77.5", null, "1.1", null, "34.4", null, "1.4", null, "6.6", null, "0.8", null, "2.3", null, "0.5", null, "4.3", null, "0.6", null, "36.6", null, "1.4", null, "7.9", null, "0.9", null, "92.1", null, "0.9", null, "24.3", null, "1.3", null, "75.7", null, "1.3", null, "90.8", null, "0.8", null, "4.2", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "1.3", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "0.8", null, "0.3", null, "3.0", null, "0.5", null, "2.1", null, "0.3", null, "90.1", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.5", null, "1.3", null, "29.1", null, "2.1", null, "53.4", null, "2.1", null, "39", "14"], ["5001900US3915", "Congressional District 15 (119th Congress), Ohio", "330959", null, "7166", null, "125323", null, "4467", null, "205636", null, "6031", null, "148542", null, "5317", null, "58604", null, "5079", null, "16469", null, "2445", null, "42135", null, "4445", null, "123813", null, "6440", null, "98038", null, "4838", null, "61549", null, "3496", null, "35632", null, "3887", null, "9229", null, "1948", null, "26403", null, "3696", null, "857", null, "607", null, "232921", null, "6599", null, "86993", null, "4171", null, "22972", null, "3048", null, "7240", null, "1490", null, "15732", null, "2637", null, "122956", null, "6332", null, "35813", null, "4194", null, "295146", null, "6818", null, "89399", null, "4561", null, "241560", null, "7477", null, "252763", null, "6142", null, "32431", null, "4024", null, "1268", null, "757", null, "12432", null, "2074", null, "-999999999", "N", "-999999999", "N", "7504", null, "1555", null, "24292", null, "2973", null, "17790", null, "2111", null, "249801", null, "5935", null, "80864", null, "2304", null, "207146", null, "6777", null, "28235", null, "2559", null, "63603", null, "5612", null, "115308", null, "4848", null, "-888888888", "(X)", "-888888888", "(X)", "37.9", null, "1.1", null, "62.1", null, "1.1", null, "44.9", null, "1.5", null, "17.7", null, "1.5", null, "5.0", null, "0.7", null, "12.7", null, "1.3", null, "37.4", null, "1.7", null, "29.6", null, "1.3", null, "18.6", null, "1.0", null, "10.8", null, "1.1", null, "2.8", null, "0.6", null, "8.0", null, "1.1", null, "0.3", null, "0.2", null, "70.4", null, "1.3", null, "26.3", null, "1.2", null, "6.9", null, "0.9", null, "2.2", null, "0.5", null, "4.8", null, "0.8", null, "37.2", null, "1.7", null, "10.8", null, "1.2", null, "89.2", null, "1.2", null, "27.0", null, "1.4", null, "73.0", null, "1.4", null, "76.4", null, "1.4", null, "9.8", null, "1.1", null, "0.4", null, "0.2", null, "3.8", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "2.3", null, "0.5", null, "7.3", null, "0.9", null, "5.4", null, "0.6", null, "75.5", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.6", null, "1.2", null, "30.7", null, "2.2", null, "55.7", null, "2.1", null, "32159", null, "3403", null, "13720", null, "2103", null, "18439", null, "2792", null, "6395", null, "1575", null, "13301", null, "2158", null, "2484", null, "912", null, "10817", null, "1942", null, "12463", null, "2076", null, "13646", null, "2477", null, "4203", null, "1278", null, "8765", null, "1938", null, "1524", null, "732", null, "7241", null, "1769", null, "678", null, "565", null, "18513", null, "2286", null, "2192", null, "884", null, "4536", null, "1200", null, "960", null, "643", null, "3576", null, "1047", null, "11785", null, "1984", null, "14165", null, "2742", null, "17994", null, "2242", null, "19437", null, "2513", null, "12722", null, "2254", null, "22413", null, "2839", null, "5164", null, "1558", null, "440", null, "533", null, "547", null, "451", null, "-999999999", "N", "-999999999", "N", "868", null, "554", null, "2727", null, "1225", null, "1713", null, "956", null, "22358", null, "2859", null, "26277", null, "2842", null, "19696", null, "2739", null, "4832", null, "1293", null, "8697", null, "1836", null, "6167", null, "1526", null, "9.7", null, "1.0", null, "42.7", null, "5.4", null, "57.3", null, "5.4", null, "19.9", null, "4.5", null, "41.4", null, "4.7", null, "7.7", null, "2.7", null, "33.6", null, "4.6", null, "38.8", null, "5.2", null, "42.4", null, "5.4", null, "13.1", null, "3.9", null, "27.3", null, "4.4", null, "4.7", null, "2.2", null, "22.5", null, "4.3", null, "2.1", null, "1.7", null, "57.6", null, "5.4", null, "6.8", null, "2.6", null, "14.1", null, "3.9", null, "3.0", null, "2.0", null, "11.1", null, "3.4", null, "36.6", null, "5.1", null, "44.0", null, "5.9", null, "56.0", null, "5.9", null, "60.4", null, "5.2", null, "39.6", null, "5.2", null, "69.7", null, "6.2", null, "16.1", null, "4.2", null, "1.4", null, "1.7", null, "1.7", null, "1.4", null, "-999999999.0", "N", "-999999999.0", "N", "2.7", null, "1.7", null, "8.5", null, "3.6", null, "5.3", null, "2.9", null, "69.5", null, "6.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "24.5", null, "5.9", null, "44.2", null, "6.6", null, "31.3", null, "6.6", null, "298800", null, "6913", null, "111603", null, "4415", null, "187197", null, "5699", null, "142147", null, "5107", null, "45303", null, "4799", null, "13985", null, "2430", null, "31318", null, "3915", null, "111350", null, "6032", null, "84392", null, "4112", null, "57346", null, "3206", null, "26867", null, "3414", null, "7705", null, "1935", null, "19162", null, "3111", null, "179", null, "182", null, "214408", null, "6500", null, "84801", null, "4080", null, "18436", null, "2678", null, "6280", null, "1332", null, "12156", null, "2185", null, "111171", null, "6043", null, "21648", null, "3062", null, "277152", null, "6879", null, "69962", null, "4267", null, "228838", null, "6745", null, "230350", null, "6030", null, "27267", null, "3756", null, "828", null, "561", null, "11885", null, "2039", null, "-999999999", "N", "-999999999", "N", "6636", null, "1485", null, "21565", null, "2869", null, "16077", null, "2092", null, "227443", null, "5812", null, "86603", null, "2434", null, "187450", null, "6071", null, "23403", null, "2151", null, "54906", null, "5180", null, "109141", null, "4547", null, "90.3", null, "1.0", null, "37.4", null, "1.2", null, "62.6", null, "1.2", null, "47.6", null, "1.6", null, "15.2", null, "1.6", null, "4.7", null, "0.8", null, "10.5", null, "1.3", null, "37.3", null, "1.7", null, "28.2", null, "1.3", null, "19.2", null, "1.1", null, "9.0", null, "1.1", null, "2.6", null, "0.6", null, "6.4", null, "1.0", null, "0.1", null, "0.1", null, "71.8", null, "1.3", null, "28.4", null, "1.3", null, "6.2", null, "0.9", null, "2.1", null, "0.4", null, "4.1", null, "0.7", null, "37.2", null, "1.7", null, "7.2", null, "1.0", null, "92.8", null, "1.0", null, "23.4", null, "1.3", null, "76.6", null, "1.3", null, "77.1", null, "1.4", null, "9.1", null, "1.2", null, "0.3", null, "0.2", null, "4.0", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "2.2", null, "0.5", null, "7.2", null, "0.9", null, "5.4", null, "0.7", null, "76.1", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.5", null, "1.1", null, "29.3", null, "2.3", null, "58.2", null, "2.2", null, "39", "15"], ["5001900US4001", "Congressional District 1 (119th Congress), Oklahoma", "331306", null, "1754", null, "123886", null, "2268", null, "207420", null, "2371", null, "151308", null, "3577", null, "57556", null, "2766", null, "17674", null, "1620", null, "39882", null, "2469", null, "122442", null, "3725", null, "100237", null, "3027", null, "65401", null, "2424", null, "34068", null, "2122", null, "9717", null, "1156", null, "24351", null, "1985", null, "768", null, "449", null, "231069", null, "3393", null, "85907", null, "2769", null, "23488", null, "1742", null, "7957", null, "1140", null, "15531", null, "1351", null, "121674", null, "3730", null, "42575", null, "2579", null, "288731", null, "2987", null, "98314", null, "3405", null, "232992", null, "3549", null, "224441", null, "2460", null, "26806", null, "1518", null, "15261", null, "1228", null, "9379", null, "763", null, "-999999999", "N", "-999999999", "N", "11912", null, "1358", null, "42880", null, "2279", null, "37455", null, "1350", null, "216463", null, "2277", null, "71143", null, "1188", null, "208864", null, "3588", null, "30775", null, "1650", null, "66558", null, "2722", null, "111531", null, "2947", null, "-888888888", "(X)", "-888888888", "(X)", "37.4", null, "0.6", null, "62.6", null, "0.6", null, "45.7", null, "1.1", null, "17.4", null, "0.8", null, "5.3", null, "0.5", null, "12.0", null, "0.7", null, "37.0", null, "1.1", null, "30.3", null, "0.9", null, "19.7", null, "0.7", null, "10.3", null, "0.6", null, "2.9", null, "0.4", null, "7.4", null, "0.6", null, "0.2", null, "0.1", null, "69.7", null, "0.9", null, "25.9", null, "0.8", null, "7.1", null, "0.5", null, "2.4", null, "0.3", null, "4.7", null, "0.4", null, "36.7", null, "1.1", null, "12.9", null, "0.8", null, "87.1", null, "0.8", null, "29.7", null, "1.0", null, "70.3", null, "1.0", null, "67.7", null, "0.7", null, "8.1", null, "0.5", null, "4.6", null, "0.4", null, "2.8", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "3.6", null, "0.4", null, "12.9", null, "0.7", null, "11.3", null, "0.4", null, "65.3", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.7", null, "0.7", null, "31.9", null, "1.2", null, "53.4", null, "1.2", null, "40371", null, "2511", null, "13408", null, "1501", null, "26963", null, "2104", null, "9450", null, "1308", null, "16564", null, "1718", null, "3721", null, "783", null, "12843", null, "1599", null, "14357", null, "1701", null, "18249", null, "1747", null, "6112", null, "1059", null, "12012", null, "1453", null, "2339", null, "615", null, "9673", null, "1330", null, "125", null, "203", null, "22122", null, "1929", null, "3338", null, "700", null, "4552", null, "916", null, "1382", null, "529", null, "3170", null, "714", null, "14232", null, "1682", null, "19715", null, "1901", null, "20656", null, "1732", null, "19675", null, "1593", null, "20696", null, "1940", null, "20723", null, "1953", null, "7165", null, "909", null, "2576", null, "547", null, "1376", null, "553", null, "-999999999", "N", "-999999999", "N", "1438", null, "546", null, "7006", null, "1146", null, "5277", null, "1002", null, "19444", null, "1890", null, "27151", null, "3249", null, "26014", null, "2097", null, "6253", null, "1073", null, "11523", null, "1436", null, "8238", null, "1036", null, "12.2", null, "0.8", null, "33.2", null, "3.1", null, "66.8", null, "3.1", null, "23.4", null, "3.1", null, "41.0", null, "3.3", null, "9.2", null, "1.9", null, "31.8", null, "3.3", null, "35.6", null, "3.5", null, "45.2", null, "3.3", null, "15.1", null, "2.6", null, "29.8", null, "2.9", null, "5.8", null, "1.5", null, "24.0", null, "2.8", null, "0.3", null, "0.5", null, "54.8", null, "3.3", null, "8.3", null, "1.7", null, "11.3", null, "2.2", null, "3.4", null, "1.3", null, "7.9", null, "1.7", null, "35.3", null, "3.5", null, "48.8", null, "3.3", null, "51.2", null, "3.3", null, "48.7", null, "3.1", null, "51.3", null, "3.1", null, "51.3", null, "3.0", null, "17.7", null, "2.2", null, "6.4", null, "1.4", null, "3.4", null, "1.4", null, "-999999999.0", "N", "-999999999.0", "N", "3.6", null, "1.4", null, "17.4", null, "2.5", null, "13.1", null, "2.4", null, "48.2", null, "3.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "24.0", null, "3.1", null, "44.3", null, "4.3", null, "31.7", null, "3.6", null, "290935", null, "2864", null, "110478", null, "2331", null, "180457", null, "2794", null, "141858", null, "3476", null, "40992", null, "2755", null, "13953", null, "1512", null, "27039", null, "2222", null, "108085", null, "3338", null, "81988", null, "2767", null, "59289", null, "2291", null, "22056", null, "2167", null, "7378", null, "1151", null, "14678", null, "1807", null, "643", null, "398", null, "208947", null, "3297", null, "82569", null, "2756", null, "18936", null, "1603", null, "6575", null, "989", null, "12361", null, "1247", null, "107442", null, "3380", null, "22860", null, "1788", null, "268075", null, "3239", null, "78639", null, "3067", null, "212296", null, "3367", null, "203718", null, "2705", null, "19641", null, "1612", null, "12685", null, "1097", null, "8003", null, "791", null, "-999999999", "N", "-999999999", "N", "10474", null, "1370", null, "35874", null, "1971", null, "32178", null, "1318", null, "197019", null, "2572", null, "77698", null, "1891", null, "182850", null, "3468", null, "24522", null, "1237", null, "55035", null, "2386", null, "103293", null, "2831", null, "87.8", null, "0.8", null, "38.0", null, "0.7", null, "62.0", null, "0.7", null, "48.8", null, "1.2", null, "14.1", null, "0.9", null, "4.8", null, "0.5", null, "9.3", null, "0.7", null, "37.2", null, "1.1", null, "28.2", null, "0.9", null, "20.4", null, "0.8", null, "7.6", null, "0.7", null, "2.5", null, "0.4", null, "5.0", null, "0.6", null, "0.2", null, "0.1", null, "71.8", null, "0.9", null, "28.4", null, "0.9", null, "6.5", null, "0.6", null, "2.3", null, "0.3", null, "4.2", null, "0.4", null, "36.9", null, "1.1", null, "7.9", null, "0.6", null, "92.1", null, "0.6", null, "27.0", null, "1.0", null, "73.0", null, "1.0", null, "70.0", null, "0.8", null, "6.8", null, "0.5", null, "4.4", null, "0.4", null, "2.8", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "3.6", null, "0.5", null, "12.3", null, "0.7", null, "11.1", null, "0.4", null, "67.7", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.4", null, "0.7", null, "30.1", null, "1.1", null, "56.5", null, "1.2", null, "40", "01"], ["5001900US4002", "Congressional District 2 (119th Congress), Oklahoma", "315658", null, "2564", null, "147257", null, "2168", null, "168401", null, "2953", null, "150806", null, "3728", null, "61625", null, "3041", null, "20228", null, "1661", null, "41397", null, "2538", null, "103227", null, "3324", null, "96737", null, "3309", null, "57927", null, "2627", null, "37966", null, "2561", null, "11109", null, "1265", null, "26857", null, "2179", null, "844", null, "302", null, "218921", null, "3493", null, "92879", null, "2860", null, "23659", null, "1821", null, "9119", null, "1135", null, "14540", null, "1364", null, "102383", null, "3396", null, "56852", null, "2665", null, "258806", null, "3375", null, "128255", null, "3551", null, "187403", null, "4001", null, "217789", null, "2763", null, "9224", null, "836", null, "45728", null, "1634", null, "1854", null, "418", null, "476", null, "248", null, "4273", null, "852", null, "36314", null, "1873", null, "13894", null, "1016", null, "213649", null, "2619", null, "56060", null, "1462", null, "212431", null, "3729", null, "45606", null, "2069", null, "73827", null, "2632", null, "92998", null, "2940", null, "-888888888", "(X)", "-888888888", "(X)", "46.7", null, "0.7", null, "53.3", null, "0.7", null, "47.8", null, "1.1", null, "19.5", null, "1.0", null, "6.4", null, "0.5", null, "13.1", null, "0.8", null, "32.7", null, "1.0", null, "30.6", null, "1.0", null, "18.4", null, "0.8", null, "12.0", null, "0.8", null, "3.5", null, "0.4", null, "8.5", null, "0.7", null, "0.3", null, "0.1", null, "69.4", null, "1.0", null, "29.4", null, "0.9", null, "7.5", null, "0.6", null, "2.9", null, "0.4", null, "4.6", null, "0.4", null, "32.4", null, "1.1", null, "18.0", null, "0.8", null, "82.0", null, "0.8", null, "40.6", null, "1.1", null, "59.4", null, "1.1", null, "69.0", null, "0.7", null, "2.9", null, "0.3", null, "14.5", null, "0.5", null, "0.6", null, "0.1", null, "0.2", null, "0.1", null, "1.4", null, "0.3", null, "11.5", null, "0.6", null, "4.4", null, "0.3", null, "67.7", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "21.5", null, "0.9", null, "34.8", null, "1.0", null, "43.8", null, "1.2", null, "55436", null, "2659", null, "20733", null, "1768", null, "34703", null, "1968", null, "15535", null, "1474", null, "22663", null, "1665", null, "5759", null, "868", null, "16904", null, "1493", null, "17238", null, "1565", null, "26140", null, "1835", null, "10741", null, "1303", null, "15228", null, "1271", null, "3535", null, "656", null, "11693", null, "1175", null, "171", null, "108", null, "29296", null, "1894", null, "4794", null, "848", null, "7435", null, "952", null, "2224", null, "511", null, "5211", null, "850", null, "17067", null, "1569", null, "28265", null, "1772", null, "27171", null, "1761", null, "30358", null, "2049", null, "25078", null, "1840", null, "35879", null, "2102", null, "3104", null, "724", null, "8379", null, "882", null, "300", null, "165", null, "117", null, "79", null, "761", null, "340", null, "6896", null, "859", null, "2415", null, "636", null, "34960", null, "2027", null, "25641", null, "1205", null, "38198", null, "2235", null, "9995", null, "1073", null, "17831", null, "1432", null, "10372", null, "1251", null, "17.6", null, "0.8", null, "37.4", null, "2.4", null, "62.6", null, "2.4", null, "28.0", null, "2.2", null, "40.9", null, "2.4", null, "10.4", null, "1.6", null, "30.5", null, "2.2", null, "31.1", null, "2.4", null, "47.2", null, "2.4", null, "19.4", null, "2.1", null, "27.5", null, "1.9", null, "6.4", null, "1.2", null, "21.1", null, "1.8", null, "0.3", null, "0.2", null, "52.8", null, "2.4", null, "8.6", null, "1.5", null, "13.4", null, "1.6", null, "4.0", null, "0.9", null, "9.4", null, "1.5", null, "30.8", null, "2.4", null, "51.0", null, "2.1", null, "49.0", null, "2.1", null, "54.8", null, "2.5", null, "45.2", null, "2.5", null, "64.7", null, "1.9", null, "5.6", null, "1.3", null, "15.1", null, "1.4", null, "0.5", null, "0.3", null, "0.2", null, "0.1", null, "1.4", null, "0.6", null, "12.4", null, "1.5", null, "4.4", null, "1.1", null, "63.1", null, "1.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "26.2", null, "2.3", null, "46.7", null, "2.9", null, "27.2", null, "2.7", null, "260222", null, "3504", null, "126524", null, "2231", null, "133698", null, "3038", null, "135271", null, "3785", null, "38962", null, "2259", null, "14469", null, "1410", null, "24493", null, "1971", null, "85989", null, "3041", null, "70597", null, "3019", null, "47186", null, "2393", null, "22738", null, "1916", null, "7574", null, "1106", null, "15164", null, "1624", null, "673", null, "311", null, "189625", null, "3493", null, "88085", null, "2958", null, "16224", null, "1393", null, "6895", null, "953", null, "9329", null, "1058", null, "85316", null, "3102", null, "28587", null, "1950", null, "231635", null, "3839", null, "97897", null, "3480", null, "162325", null, "4062", null, "181910", null, "3249", null, "6120", null, "928", null, "37349", null, "1615", null, "1554", null, "440", null, "359", null, "245", null, "3512", null, "741", null, "29418", null, "1593", null, "11479", null, "1095", null, "178689", null, "3064", null, "63694", null, "1654", null, "174233", null, "3897", null, "35611", null, "1840", null, "55996", null, "2267", null, "82626", null, "2942", null, "82.4", null, "0.8", null, "48.6", null, "0.8", null, "51.4", null, "0.8", null, "52.0", null, "1.1", null, "15.0", null, "0.9", null, "5.6", null, "0.5", null, "9.4", null, "0.8", null, "33.0", null, "1.1", null, "27.1", null, "1.1", null, "18.1", null, "0.8", null, "8.7", null, "0.7", null, "2.9", null, "0.4", null, "5.8", null, "0.6", null, "0.3", null, "0.1", null, "72.9", null, "1.1", null, "33.8", null, "1.0", null, "6.2", null, "0.5", null, "2.6", null, "0.4", null, "3.6", null, "0.4", null, "32.8", null, "1.1", null, "11.0", null, "0.7", null, "89.0", null, "0.7", null, "37.6", null, "1.3", null, "62.4", null, "1.3", null, "69.9", null, "0.8", null, "2.4", null, "0.4", null, "14.4", null, "0.6", null, "0.6", null, "0.2", null, "0.1", null, "0.1", null, "1.3", null, "0.3", null, "11.3", null, "0.6", null, "4.4", null, "0.4", null, "68.7", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "20.4", null, "1.0", null, "32.1", null, "1.1", null, "47.4", null, "1.3", null, "40", "02"], ["5001900US4003", "Congressional District 3 (119th Congress), Oklahoma", "305502", null, "4505", null, "120302", null, "2994", null, "185200", null, "4185", null, "139896", null, "5237", null, "52724", null, "3348", null, "18194", null, "1976", null, "34530", null, "3090", null, "112882", null, "4491", null, "94162", null, "4129", null, "60380", null, "3776", null, "33467", null, "2923", null, "11455", null, "1523", null, "22012", null, "2572", null, "315", null, "225", null, "211340", null, "4771", null, "79516", null, "3779", null, "19257", null, "1960", null, "6739", null, "1261", null, "12518", null, "1613", null, "112567", null, "4490", null, "55826", null, "3693", null, "249676", null, "5038", null, "101491", null, "3574", null, "204011", null, "4892", null, "218428", null, "4021", null, "13916", null, "2393", null, "12889", null, "1070", null, "6363", null, "1356", null, "672", null, "275", null, "17348", null, "1917", null, "35886", null, "3196", null, "49858", null, "2661", null, "205812", null, "3815", null, "59917", null, "1875", null, "192620", null, "5309", null, "30268", null, "1895", null, "67970", null, "4027", null, "94382", null, "4491", null, "-888888888", "(X)", "-888888888", "(X)", "39.4", null, "0.9", null, "60.6", null, "0.9", null, "45.8", null, "1.5", null, "17.3", null, "1.1", null, "6.0", null, "0.6", null, "11.3", null, "1.0", null, "36.9", null, "1.4", null, "30.8", null, "1.2", null, "19.8", null, "1.2", null, "11.0", null, "0.9", null, "3.7", null, "0.5", null, "7.2", null, "0.8", null, "0.1", null, "0.1", null, "69.2", null, "1.2", null, "26.0", null, "1.1", null, "6.3", null, "0.6", null, "2.2", null, "0.4", null, "4.1", null, "0.5", null, "36.8", null, "1.4", null, "18.3", null, "1.2", null, "81.7", null, "1.2", null, "33.2", null, "1.1", null, "66.8", null, "1.1", null, "71.5", null, "1.1", null, "4.6", null, "0.8", null, "4.2", null, "0.3", null, "2.1", null, "0.4", null, "0.2", null, "0.1", null, "5.7", null, "0.6", null, "11.7", null, "1.0", null, "16.3", null, "0.8", null, "67.4", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.7", null, "0.9", null, "35.3", null, "1.8", null, "49.0", null, "2.0", null, "45277", null, "2991", null, "14920", null, "1876", null, "30357", null, "2262", null, "10998", null, "1341", null, "17188", null, "2342", null, "4447", null, "1159", null, "12741", null, "1976", null, "17091", null, "2155", null, "21027", null, "2028", null, "7929", null, "1077", null, "13062", null, "1987", null, "3033", null, "852", null, "10029", null, "1842", null, "36", null, "44", null, "24250", null, "2622", null, "3069", null, "692", null, "4126", null, "1243", null, "1414", null, "767", null, "2712", null, "884", null, "17055", null, "2153", null, "24230", null, "2341", null, "21047", null, "2327", null, "23956", null, "2378", null, "21321", null, "2255", null, "26728", null, "2249", null, "6402", null, "1787", null, "3162", null, "729", null, "138", null, "212", null, "264", null, "178", null, "2864", null, "958", null, "5719", null, "1232", null, "8022", null, "1478", null, "24255", null, "2161", null, "24352", null, "3700", null, "28186", null, "2551", null, "5515", null, "1165", null, "13751", null, "2077", null, "8920", null, "1335", null, "14.8", null, "1.0", null, "33.0", null, "3.2", null, "67.0", null, "3.2", null, "24.3", null, "2.9", null, "38.0", null, "4.2", null, "9.8", null, "2.4", null, "28.1", null, "3.8", null, "37.7", null, "4.0", null, "46.4", null, "3.9", null, "17.5", null, "2.5", null, "28.8", null, "4.0", null, "6.7", null, "1.9", null, "22.2", null, "3.7", null, "0.1", null, "0.1", null, "53.6", null, "3.9", null, "6.8", null, "1.5", null, "9.1", null, "2.5", null, "3.1", null, "1.6", null, "6.0", null, "1.9", null, "37.7", null, "4.0", null, "53.5", null, "4.0", null, "46.5", null, "4.0", null, "52.9", null, "3.9", null, "47.1", null, "3.9", null, "59.0", null, "3.8", null, "14.1", null, "3.6", null, "7.0", null, "1.6", null, "0.3", null, "0.5", null, "0.6", null, "0.4", null, "6.3", null, "2.1", null, "12.6", null, "2.6", null, "17.7", null, "3.1", null, "53.6", null, "3.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "19.6", null, "3.7", null, "48.8", null, "4.9", null, "31.6", null, "4.7", null, "260225", null, "4972", null, "105382", null, "2837", null, "154843", null, "4384", null, "128898", null, "5061", null, "35536", null, "2443", null, "13747", null, "1818", null, "21789", null, "2198", null, "95791", null, "3835", null, "73135", null, "3823", null, "52451", null, "3568", null, "20405", null, "2094", null, "8422", null, "1574", null, "11983", null, "1511", null, "279", null, "221", null, "187090", null, "4397", null, "76447", null, "3743", null, "15131", null, "1619", null, "5325", null, "1066", null, "9806", null, "1381", null, "95512", null, "3819", null, "31596", null, "2565", null, "228629", null, "4934", null, "77535", null, "3338", null, "182690", null, "5050", null, "191700", null, "4006", null, "7514", null, "1909", null, "9727", null, "1068", null, "6225", null, "1363", null, "408", null, "341", null, "14484", null, "2114", null, "30167", null, "2763", null, "41836", null, "2970", null, "181557", null, "3966", null, "66463", null, "1983", null, "164434", null, "5217", null, "24753", null, "1687", null, "54219", null, "3729", null, "85462", null, "4253", null, "85.2", null, "1.0", null, "40.5", null, "1.0", null, "59.5", null, "1.0", null, "49.5", null, "1.5", null, "13.7", null, "0.9", null, "5.3", null, "0.7", null, "8.4", null, "0.8", null, "36.8", null, "1.4", null, "28.1", null, "1.3", null, "20.2", null, "1.3", null, "7.8", null, "0.8", null, "3.2", null, "0.6", null, "4.6", null, "0.6", null, "0.1", null, "0.1", null, "71.9", null, "1.3", null, "29.4", null, "1.3", null, "5.8", null, "0.6", null, "2.0", null, "0.4", null, "3.8", null, "0.5", null, "36.7", null, "1.4", null, "12.1", null, "1.0", null, "87.9", null, "1.0", null, "29.8", null, "1.2", null, "70.2", null, "1.2", null, "73.7", null, "1.3", null, "2.9", null, "0.7", null, "3.7", null, "0.4", null, "2.4", null, "0.5", null, "0.2", null, "0.1", null, "5.6", null, "0.8", null, "11.6", null, "1.0", null, "16.1", null, "1.0", null, "69.8", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.1", null, "0.9", null, "33.0", null, "1.9", null, "52.0", null, "2.1", null, "40", "03"], ["5001900US4004", "Congressional District 4 (119th Congress), Oklahoma", "318854", null, "3523", null, "125528", null, "2729", null, "193326", null, "4046", null, "146791", null, "3753", null, "61941", null, "3543", null, "19469", null, "2076", null, "42472", null, "3021", null, "110122", null, "4355", null, "100371", null, "4069", null, "59481", null, "3124", null, "39920", null, "3140", null, "11100", null, "1804", null, "28820", null, "2563", null, "970", null, "437", null, "218483", null, "4753", null, "87310", null, "3549", null, "22021", null, "2223", null, "8369", null, "1560", null, "13652", null, "1675", null, "109152", null, "4288", null, "47023", null, "2446", null, "271831", null, "3946", null, "108034", null, "3747", null, "210820", null, "4713", null, "231516", null, "3364", null, "21105", null, "2393", null, "14007", null, "1447", null, "7501", null, "907", null, "-999999999", "N", "-999999999", "N", "8148", null, "1361", null, "35921", null, "2656", null, "28618", null, "1952", null, "224483", null, "3499", null, "67377", null, "1499", null, "208732", null, "4137", null, "31527", null, "1589", null, "70860", null, "3264", null, "106345", null, "4002", null, "-888888888", "(X)", "-888888888", "(X)", "39.4", null, "0.9", null, "60.6", null, "0.9", null, "46.0", null, "1.2", null, "19.4", null, "1.1", null, "6.1", null, "0.6", null, "13.3", null, "0.9", null, "34.5", null, "1.2", null, "31.5", null, "1.2", null, "18.7", null, "1.0", null, "12.5", null, "1.0", null, "3.5", null, "0.6", null, "9.0", null, "0.8", null, "0.3", null, "0.1", null, "68.5", null, "1.2", null, "27.4", null, "1.1", null, "6.9", null, "0.7", null, "2.6", null, "0.5", null, "4.3", null, "0.5", null, "34.2", null, "1.2", null, "14.7", null, "0.8", null, "85.3", null, "0.8", null, "33.9", null, "1.2", null, "66.1", null, "1.2", null, "72.6", null, "1.0", null, "6.6", null, "0.7", null, "4.4", null, "0.5", null, "2.4", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "2.6", null, "0.4", null, "11.3", null, "0.8", null, "9.0", null, "0.6", null, "70.4", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.1", null, "0.7", null, "33.9", null, "1.5", null, "50.9", null, "1.5", null, "43177", null, "3215", null, "12205", null, "1443", null, "30972", null, "2906", null, "11326", null, "1701", null, "19478", null, "2278", null, "4808", null, "1133", null, "14670", null, "1758", null, "12373", null, "1598", null, "22770", null, "2648", null, "7654", null, "1407", null, "14824", null, "2081", null, "3347", null, "1042", null, "11477", null, "1747", null, "292", null, "170", null, "20407", null, "2152", null, "3672", null, "874", null, "4654", null, "1124", null, "1461", null, "609", null, "3193", null, "890", null, "12081", null, "1627", null, "20306", null, "2042", null, "22871", null, "2386", null, "21883", null, "2421", null, "21294", null, "2546", null, "26619", null, "2205", null, "5514", null, "1478", null, "2076", null, "486", null, "548", null, "381", null, "-999999999", "N", "-999999999", "N", "1601", null, "575", null, "6543", null, "1110", null, "5689", null, "1029", null, "25526", null, "2189", null, "34493", null, "4361", null, "30804", null, "2916", null, "4496", null, "884", null, "14572", null, "2147", null, "11736", null, "1805", null, "13.5", null, "1.0", null, "28.3", null, "3.1", null, "71.7", null, "3.1", null, "26.2", null, "3.4", null, "45.1", null, "3.6", null, "11.1", null, "2.3", null, "34.0", null, "3.1", null, "28.7", null, "3.4", null, "52.7", null, "4.1", null, "17.7", null, "2.9", null, "34.3", null, "3.8", null, "7.8", null, "2.3", null, "26.6", null, "3.4", null, "0.7", null, "0.4", null, "47.3", null, "4.1", null, "8.5", null, "2.0", null, "10.8", null, "2.5", null, "3.4", null, "1.4", null, "7.4", null, "2.0", null, "28.0", null, "3.4", null, "47.0", null, "3.5", null, "53.0", null, "3.5", null, "50.7", null, "4.4", null, "49.3", null, "4.4", null, "61.7", null, "3.3", null, "12.8", null, "3.0", null, "4.8", null, "1.1", null, "1.3", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "3.7", null, "1.3", null, "15.2", null, "2.4", null, "13.2", null, "2.2", null, "59.1", null, "3.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.6", null, "2.9", null, "47.3", null, "4.8", null, "38.1", null, "4.6", null, "275677", null, "4386", null, "113323", null, "2743", null, "162354", null, "4395", null, "135465", null, "3684", null, "42463", null, "3603", null, "14661", null, "2154", null, "27802", null, "2879", null, "97749", null, "4239", null, "77601", null, "3895", null, "51827", null, "2881", null, "25096", null, "2905", null, "7753", null, "1619", null, "17343", null, "2375", null, "678", null, "399", null, "198076", null, "4762", null, "83638", null, "3553", null, "17367", null, "2095", null, "6908", null, "1448", null, "10459", null, "1413", null, "97071", null, "4191", null, "26717", null, "2012", null, "248960", null, "3946", null, "86151", null, "3351", null, "189526", null, "4382", null, "204897", null, "3597", null, "15591", null, "2029", null, "11931", null, "1306", null, "6953", null, "864", null, "-999999999", "N", "-999999999", "N", "6547", null, "1229", null, "29378", null, "2653", null, "22929", null, "1771", null, "198957", null, "3680", null, "72996", null, "1826", null, "177928", null, "4452", null, "27031", null, "1564", null, "56288", null, "3113", null, "94609", null, "3964", null, "86.5", null, "1.0", null, "41.1", null, "1.0", null, "58.9", null, "1.0", null, "49.1", null, "1.3", null, "15.4", null, "1.2", null, "5.3", null, "0.8", null, "10.1", null, "1.0", null, "35.5", null, "1.4", null, "28.1", null, "1.3", null, "18.8", null, "1.0", null, "9.1", null, "1.0", null, "2.8", null, "0.6", null, "6.3", null, "0.8", null, "0.2", null, "0.1", null, "71.9", null, "1.3", null, "30.3", null, "1.3", null, "6.3", null, "0.7", null, "2.5", null, "0.5", null, "3.8", null, "0.5", null, "35.2", null, "1.3", null, "9.7", null, "0.7", null, "90.3", null, "0.7", null, "31.3", null, "1.1", null, "68.7", null, "1.1", null, "74.3", null, "1.1", null, "5.7", null, "0.7", null, "4.3", null, "0.5", null, "2.5", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "2.4", null, "0.5", null, "10.7", null, "0.9", null, "8.3", null, "0.6", null, "72.2", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.2", null, "0.8", null, "31.6", null, "1.6", null, "53.2", null, "1.6", null, "40", "04"], ["5001900US4005", "Congressional District 5 (119th Congress), Oklahoma", "332428", null, "4843", null, "128627", null, "3649", null, "203801", null, "4753", null, "158895", null, "5340", null, "48900", null, "3710", null, "15254", null, "2085", null, "33646", null, "2514", null, "124633", null, "5424", null, "100929", null, "4630", null, "68372", null, "3624", null, "30839", null, "3352", null, "9173", null, "1770", null, "21666", null, "2455", null, "1718", null, "976", null, "231499", null, "5751", null, "90523", null, "3859", null, "18061", null, "2207", null, "6081", null, "1184", null, "11980", null, "1638", null, "122915", null, "5437", null, "43564", null, "3212", null, "288864", null, "5274", null, "102652", null, "4344", null, "229776", null, "5469", null, "232397", null, "4031", null, "36654", null, "3164", null, "10264", null, "1257", null, "11833", null, "1539", null, "-999999999", "N", "-999999999", "N", "9931", null, "1625", null, "31240", null, "2575", null, "27265", null, "2515", null, "225805", null, "3546", null, "76260", null, "2348", null, "207795", null, "5741", null, "29959", null, "2263", null, "63908", null, "3978", null, "113928", null, "4816", null, "-888888888", "(X)", "-888888888", "(X)", "38.7", null, "1.0", null, "61.3", null, "1.0", null, "47.8", null, "1.5", null, "14.7", null, "1.1", null, "4.6", null, "0.6", null, "10.1", null, "0.8", null, "37.5", null, "1.5", null, "30.4", null, "1.3", null, "20.6", null, "1.1", null, "9.3", null, "1.0", null, "2.8", null, "0.5", null, "6.5", null, "0.7", null, "0.5", null, "0.3", null, "69.6", null, "1.3", null, "27.2", null, "1.1", null, "5.4", null, "0.7", null, "1.8", null, "0.4", null, "3.6", null, "0.5", null, "37.0", null, "1.5", null, "13.1", null, "0.9", null, "86.9", null, "0.9", null, "30.9", null, "1.2", null, "69.1", null, "1.2", null, "69.9", null, "1.0", null, "11.0", null, "0.9", null, "3.1", null, "0.4", null, "3.6", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "3.0", null, "0.5", null, "9.4", null, "0.7", null, "8.2", null, "0.7", null, "67.9", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.4", null, "1.1", null, "30.8", null, "1.6", null, "54.8", null, "1.8", null, "40241", null, "3251", null, "13853", null, "1733", null, "26388", null, "2748", null, "9718", null, "1783", null, "14043", null, "2037", null, "2659", null, "880", null, "11384", null, "1759", null, "16480", null, "2481", null, "17884", null, "2390", null, "7060", null, "1547", null, "10430", null, "1869", null, "1927", null, "824", null, "8503", null, "1572", null, "394", null, "492", null, "22357", null, "2806", null, "2658", null, "830", null, "3613", null, "824", null, "732", null, "332", null, "2881", null, "732", null, "16086", null, "2401", null, "18653", null, "2404", null, "21588", null, "2717", null, "21420", null, "2370", null, "18821", null, "2634", null, "21286", null, "2190", null, "10031", null, "1893", null, "1426", null, "375", null, "1053", null, "548", null, "-999999999", "N", "-999999999", "N", "1814", null, "676", null, "4631", null, "1109", null, "4980", null, "1410", null, "19689", null, "2051", null, "29896", null, "4078", null, "23761", null, "2677", null, "4449", null, "1037", null, "9562", null, "1615", null, "9750", null, "1597", null, "12.1", null, "1.0", null, "34.4", null, "3.7", null, "65.6", null, "3.7", null, "24.1", null, "4.0", null, "34.9", null, "4.4", null, "6.6", null, "2.2", null, "28.3", null, "3.8", null, "41.0", null, "5.0", null, "44.4", null, "5.0", null, "17.5", null, "3.7", null, "25.9", null, "4.2", null, "4.8", null, "2.0", null, "21.1", null, "3.6", null, "1.0", null, "1.2", null, "55.6", null, "5.0", null, "6.6", null, "1.9", null, "9.0", null, "2.0", null, "1.8", null, "0.8", null, "7.2", null, "1.7", null, "40.0", null, "4.8", null, "46.4", null, "4.9", null, "53.6", null, "4.9", null, "53.2", null, "4.8", null, "46.8", null, "4.8", null, "52.9", null, "4.4", null, "24.9", null, "4.0", null, "3.5", null, "0.9", null, "2.6", null, "1.4", null, "-999999999.0", "N", "-999999999.0", "N", "4.5", null, "1.6", null, "11.5", null, "2.5", null, "12.4", null, "3.2", null, "48.9", null, "4.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.7", null, "4.1", null, "40.2", null, "5.0", null, "41.0", null, "4.5", null, "292187", null, "5505", null, "114774", null, "3499", null, "177413", null, "5184", null, "149177", null, "4955", null, "34857", null, "3263", null, "12595", null, "1855", null, "22262", null, "2277", null, "108153", null, "4731", null, "83045", null, "3886", null, "61312", null, "3234", null, "20409", null, "2765", null, "7246", null, "1521", null, "13163", null, "2083", null, "1324", null, "845", null, "209142", null, "5993", null, "87865", null, "3877", null, "14448", null, "2071", null, "5349", null, "1140", null, "9099", null, "1494", null, "106829", null, "4775", null, "24911", null, "2572", null, "267276", null, "5368", null, "81232", null, "4139", null, "210955", null, "5578", null, "211111", null, "4189", null, "26623", null, "2806", null, "8838", null, "1214", null, "10780", null, "1566", null, "-999999999", "N", "-999999999", "N", "8117", null, "1546", null, "26609", null, "2584", null, "22285", null, "2161", null, "206116", null, "3788", null, "85196", null, "2889", null, "184034", null, "5432", null, "25510", null, "2012", null, "54346", null, "3789", null, "104178", null, "4481", null, "87.9", null, "1.0", null, "39.3", null, "1.1", null, "60.7", null, "1.1", null, "51.1", null, "1.5", null, "11.9", null, "1.1", null, "4.3", null, "0.6", null, "7.6", null, "0.8", null, "37.0", null, "1.4", null, "28.4", null, "1.3", null, "21.0", null, "1.1", null, "7.0", null, "0.9", null, "2.5", null, "0.5", null, "4.5", null, "0.7", null, "0.5", null, "0.3", null, "71.6", null, "1.3", null, "30.1", null, "1.1", null, "4.9", null, "0.7", null, "1.8", null, "0.4", null, "3.1", null, "0.5", null, "36.6", null, "1.4", null, "8.5", null, "0.8", null, "91.5", null, "0.8", null, "27.8", null, "1.3", null, "72.2", null, "1.3", null, "72.3", null, "1.1", null, "9.1", null, "0.9", null, "3.0", null, "0.4", null, "3.7", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "2.8", null, "0.5", null, "9.1", null, "0.8", null, "7.6", null, "0.7", null, "70.5", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.9", null, "1.1", null, "29.5", null, "1.7", null, "56.6", null, "1.8", null, "40", "05"], ["5001900US4101", "Congressional District 1 (119th Congress), Oregon", "305467", null, "5637", null, "109733", null, "3815", null, "195734", null, "5455", null, "138819", null, "4851", null, "36723", null, "3311", null, "11371", null, "1603", null, "25352", null, "2763", null, "129925", null, "4953", null, "73971", null, "3649", null, "53421", null, "3121", null, "19599", null, "2827", null, "5527", null, "1248", null, "14072", null, "2344", null, "951", null, "628", null, "231496", null, "5766", null, "85398", null, "3848", null, "17124", null, "2489", null, "5844", null, "1332", null, "11280", null, "2056", null, "128974", null, "5077", null, "33920", null, "3778", null, "271547", null, "6468", null, "78070", null, "5620", null, "227397", null, "6417", null, "220690", null, "5298", null, "7576", null, "1627", null, "1792", null, "757", null, "30383", null, "2029", null, "-999999999", "N", "-999999999", "N", "16729", null, "2151", null, "27542", null, "2857", null, "37295", null, "2850", null, "212006", null, "5037", null, "97201", null, "3092", null, "175542", null, "4573", null, "26916", null, "2198", null, "46925", null, "3421", null, "101701", null, "4341", null, "-888888888", "(X)", "-888888888", "(X)", "35.9", null, "1.2", null, "64.1", null, "1.2", null, "45.4", null, "1.5", null, "12.0", null, "1.1", null, "3.7", null, "0.5", null, "8.3", null, "0.9", null, "42.5", null, "1.3", null, "24.2", null, "1.1", null, "17.5", null, "1.0", null, "6.4", null, "0.9", null, "1.8", null, "0.4", null, "4.6", null, "0.8", null, "0.3", null, "0.2", null, "75.8", null, "1.1", null, "28.0", null, "1.2", null, "5.6", null, "0.8", null, "1.9", null, "0.4", null, "3.7", null, "0.7", null, "42.2", null, "1.3", null, "11.1", null, "1.2", null, "88.9", null, "1.2", null, "25.6", null, "1.7", null, "74.4", null, "1.7", null, "72.2", null, "1.2", null, "2.5", null, "0.5", null, "0.6", null, "0.2", null, "9.9", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "5.5", null, "0.7", null, "9.0", null, "0.9", null, "12.2", null, "0.9", null, "69.4", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.3", null, "1.2", null, "26.7", null, "1.8", null, "57.9", null, "1.9", null, "40353", null, "3697", null, "14724", null, "1888", null, "25629", null, "3223", null, "6933", null, "1356", null, "10156", null, "1847", null, "2183", null, "845", null, "7973", null, "1524", null, "23264", null, "2349", null, "10554", null, "2019", null, "4167", null, "1156", null, "5755", null, "1460", null, "568", null, "321", null, "5187", null, "1368", null, "632", null, "570", null, "29799", null, "3079", null, "2766", null, "794", null, "4401", null, "1310", null, "1615", null, "810", null, "2786", null, "828", null, "22632", null, "2326", null, "15786", null, "2331", null, "24567", null, "2953", null, "19607", null, "2687", null, "20746", null, "2791", null, "27395", null, "2908", null, "2276", null, "1058", null, "383", null, "259", null, "2875", null, "1071", null, "-999999999", "N", "-999999999", "N", "2631", null, "1285", null, "4582", null, "1195", null, "6260", null, "1797", null, "25387", null, "2726", null, "32050", null, "4833", null, "17089", null, "2603", null, "2881", null, "963", null, "6782", null, "1538", null, "7426", null, "1829", null, "13.2", null, "1.1", null, "36.5", null, "4.3", null, "63.5", null, "4.3", null, "17.2", null, "3.0", null, "25.2", null, "3.3", null, "5.4", null, "1.9", null, "19.8", null, "3.0", null, "57.7", null, "4.2", null, "26.2", null, "4.2", null, "10.3", null, "2.7", null, "14.3", null, "3.2", null, "1.4", null, "0.8", null, "12.9", null, "3.0", null, "1.6", null, "1.4", null, "73.8", null, "4.2", null, "6.9", null, "1.9", null, "10.9", null, "2.9", null, "4.0", null, "1.9", null, "6.9", null, "1.9", null, "56.1", null, "4.2", null, "39.1", null, "4.6", null, "60.9", null, "4.6", null, "48.6", null, "5.0", null, "51.4", null, "5.0", null, "67.9", null, "4.7", null, "5.6", null, "2.5", null, "0.9", null, "0.7", null, "7.1", null, "2.5", null, "-999999999.0", "N", "-999999999.0", "N", "6.5", null, "3.1", null, "11.4", null, "2.8", null, "15.5", null, "4.0", null, "62.9", null, "4.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.9", null, "5.7", null, "39.7", null, "6.6", null, "43.5", null, "7.4", null, "265114", null, "5496", null, "95009", null, "3588", null, "170105", null, "5242", null, "131886", null, "5133", null, "26567", null, "3185", null, "9188", null, "1481", null, "17379", null, "2526", null, "106661", null, "4844", null, "63417", null, "3709", null, "49254", null, "3155", null, "13844", null, "2482", null, "4959", null, "1272", null, "8885", null, "1909", null, "319", null, "260", null, "201697", null, "4982", null, "82632", null, "3978", null, "12723", null, "2284", null, "4229", null, "1146", null, "8494", null, "1921", null, "106342", null, "4788", null, "18134", null, "2528", null, "246980", null, "5919", null, "58463", null, "4747", null, "206651", null, "6291", null, "193295", null, "5127", null, "5300", null, "1137", null, "1409", null, "669", null, "27508", null, "2044", null, "-999999999", "N", "-999999999", "N", "14098", null, "2024", null, "22960", null, "2503", null, "31035", null, "2869", null, "186619", null, "4876", null, "106293", null, "3024", null, "158453", null, "5099", null, "24035", null, "2089", null, "40143", null, "3357", null, "94275", null, "4539", null, "86.8", null, "1.1", null, "35.8", null, "1.3", null, "64.2", null, "1.3", null, "49.7", null, "1.7", null, "10.0", null, "1.2", null, "3.5", null, "0.6", null, "6.6", null, "0.9", null, "40.2", null, "1.6", null, "23.9", null, "1.2", null, "18.6", null, "1.1", null, "5.2", null, "0.9", null, "1.9", null, "0.5", null, "3.4", null, "0.7", null, "0.1", null, "0.1", null, "76.1", null, "1.2", null, "31.2", null, "1.5", null, "4.8", null, "0.9", null, "1.6", null, "0.4", null, "3.2", null, "0.7", null, "40.1", null, "1.5", null, "6.8", null, "1.0", null, "93.2", null, "1.0", null, "22.1", null, "1.7", null, "77.9", null, "1.7", null, "72.9", null, "1.3", null, "2.0", null, "0.4", null, "0.5", null, "0.3", null, "10.4", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "5.3", null, "0.7", null, "8.7", null, "0.9", null, "11.7", null, "1.0", null, "70.4", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.2", null, "1.2", null, "25.3", null, "2.0", null, "59.5", null, "2.0", null, "41", "01"], ["5001900US4102", "Congressional District 2 (119th Congress), Oregon", "290269", null, "3780", null, "143900", null, "3344", null, "146369", null, "3459", null, "138835", null, "4990", null, "44818", null, "3379", null, "13990", null, "2215", null, "30828", null, "3020", null, "106616", null, "3664", null, "75916", null, "3558", null, "49130", null, "3215", null, "26333", null, "2629", null, "8204", null, "1685", null, "18129", null, "2338", null, "453", null, "353", null, "214353", null, "4409", null, "89705", null, "4095", null, "18485", null, "2073", null, "5786", null, "1368", null, "12699", null, "1877", null, "106163", null, "3606", null, "40751", null, "3777", null, "249518", null, "5403", null, "101148", null, "4281", null, "189121", null, "5127", null, "243129", null, "4469", null, "1221", null, "735", null, "5819", null, "1066", null, "2618", null, "708", null, "-999999999", "N", "-999999999", "N", "11366", null, "2066", null, "25764", null, "2782", null, "32239", null, "2123", null, "235221", null, "3861", null, "68267", null, "2385", null, "183653", null, "4894", null, "39876", null, "2248", null, "57946", null, "3677", null, "85831", null, "4173", null, "-888888888", "(X)", "-888888888", "(X)", "49.6", null, "1.0", null, "50.4", null, "1.0", null, "47.8", null, "1.5", null, "15.4", null, "1.1", null, "4.8", null, "0.8", null, "10.6", null, "1.0", null, "36.7", null, "1.3", null, "26.2", null, "1.2", null, "16.9", null, "1.1", null, "9.1", null, "0.9", null, "2.8", null, "0.6", null, "6.2", null, "0.8", null, "0.2", null, "0.1", null, "73.8", null, "1.2", null, "30.9", null, "1.3", null, "6.4", null, "0.7", null, "2.0", null, "0.5", null, "4.4", null, "0.6", null, "36.6", null, "1.3", null, "14.0", null, "1.3", null, "86.0", null, "1.3", null, "34.8", null, "1.5", null, "65.2", null, "1.5", null, "83.8", null, "1.0", null, "0.4", null, "0.3", null, "2.0", null, "0.4", null, "0.9", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "3.9", null, "0.7", null, "8.9", null, "0.9", null, "11.1", null, "0.7", null, "81.0", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "21.7", null, "1.2", null, "31.6", null, "1.8", null, "46.7", null, "1.7", null, "57984", null, "4110", null, "25989", null, "2858", null, "31995", null, "3306", null, "15175", null, "2126", null, "20247", null, "2825", null, "4787", null, "1378", null, "15460", null, "2429", null, "22562", null, "2406", null, "21689", null, "2803", null, "7880", null, "1568", null, "13658", null, "2395", null, "3458", null, "1277", null, "10200", null, "1953", null, "151", null, "222", null, "36295", null, "3174", null, "7295", null, "1531", null, "6589", null, "1383", null, "1329", null, "630", null, "5260", null, "1280", null, "22411", null, "2390", null, "21292", null, "2519", null, "36692", null, "3545", null, "29858", null, "3397", null, "28126", null, "2887", null, "45161", null, "3506", null, "541", null, "640", null, "1628", null, "574", null, "336", null, "309", null, "-999999999", "N", "-999999999", "N", "2502", null, "1152", null, "7816", null, "1557", null, "8434", null, "1769", null, "42386", null, "3074", null, "31914", null, "4018", null, "35422", null, "3181", null, "6670", null, "1343", null, "15914", null, "2347", null, "12838", null, "2171", null, "20.0", null, "1.4", null, "44.8", null, "4.0", null, "55.2", null, "4.0", null, "26.2", null, "3.5", null, "34.9", null, "3.8", null, "8.3", null, "2.3", null, "26.7", null, "3.5", null, "38.9", null, "3.2", null, "37.4", null, "3.8", null, "13.6", null, "2.6", null, "23.6", null, "3.5", null, "6.0", null, "2.1", null, "17.6", null, "3.0", null, "0.3", null, "0.4", null, "62.6", null, "3.8", null, "12.6", null, "2.6", null, "11.4", null, "2.2", null, "2.3", null, "1.1", null, "9.1", null, "2.0", null, "38.7", null, "3.1", null, "36.7", null, "3.8", null, "63.3", null, "3.8", null, "51.5", null, "4.1", null, "48.5", null, "4.1", null, "77.9", null, "3.1", null, "0.9", null, "1.1", null, "2.8", null, "1.0", null, "0.6", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "4.3", null, "1.9", null, "13.5", null, "2.5", null, "14.5", null, "2.6", null, "73.1", null, "2.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.8", null, "3.6", null, "44.9", null, "5.5", null, "36.2", null, "4.6", null, "232285", null, "5068", null, "117911", null, "3013", null, "114374", null, "4809", null, "123660", null, "4517", null, "24571", null, "2953", null, "9203", null, "1877", null, "15368", null, "2254", null, "84054", null, "3445", null, "54227", null, "3398", null, "41250", null, "2661", null, "12675", null, "2084", null, "4746", null, "1252", null, "7929", null, "1701", null, "302", null, "280", null, "178058", null, "4943", null, "82410", null, "3958", null, "11896", null, "1810", null, "4457", null, "1214", null, "7439", null, "1494", null, "83752", null, "3395", null, "19459", null, "3005", null, "212826", null, "5041", null, "71290", null, "3691", null, "160995", null, "4632", null, "197968", null, "4742", null, "680", null, "460", null, "4191", null, "922", null, "2282", null, "696", null, "-999999999", "N", "-999999999", "N", "8864", null, "1834", null, "17948", null, "2436", null, "23805", null, "2188", null, "192835", null, "4463", null, "76341", null, "2139", null, "148231", null, "5021", null, "33206", null, "2258", null, "42032", null, "3949", null, "72993", null, "3842", null, "80.0", null, "1.4", null, "50.8", null, "1.3", null, "49.2", null, "1.3", null, "53.2", null, "1.6", null, "10.6", null, "1.2", null, "4.0", null, "0.8", null, "6.6", null, "0.9", null, "36.2", null, "1.4", null, "23.3", null, "1.4", null, "17.8", null, "1.1", null, "5.5", null, "0.9", null, "2.0", null, "0.5", null, "3.4", null, "0.7", null, "0.1", null, "0.1", null, "76.7", null, "1.4", null, "35.5", null, "1.5", null, "5.1", null, "0.8", null, "1.9", null, "0.5", null, "3.2", null, "0.6", null, "36.1", null, "1.4", null, "8.4", null, "1.2", null, "91.6", null, "1.2", null, "30.7", null, "1.4", null, "69.3", null, "1.4", null, "85.2", null, "1.2", null, "0.3", null, "0.2", null, "1.8", null, "0.4", null, "1.0", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "3.8", null, "0.8", null, "7.7", null, "1.0", null, "10.2", null, "0.9", null, "83.0", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "22.4", null, "1.5", null, "28.4", null, "2.3", null, "49.2", null, "2.1", null, "41", "02"], ["5001900US4103", "Congressional District 3 (119th Congress), Oregon", "282861", null, "4922", null, "101639", null, "3722", null, "181222", null, "4298", null, "118861", null, "4547", null, "45640", null, "3665", null, "15863", null, "2576", null, "29777", null, "2853", null, "118360", null, "4795", null, "72243", null, "4305", null, "45360", null, "3299", null, "25036", null, "3394", null, "8741", null, "1998", null, "16295", null, "2443", null, "1847", null, "1212", null, "210618", null, "5660", null, "73501", null, "4105", null, "20604", null, "2352", null, "7122", null, "1609", null, "13482", null, "2103", null, "116513", null, "4793", null, "31687", null, "3406", null, "251174", null, "5960", null, "81322", null, "5478", null, "201539", null, "6007", null, "202978", null, "4615", null, "14647", null, "2017", null, "2646", null, "965", null, "19823", null, "1810", null, "971", null, "534", null, "11975", null, "2216", null, "29821", null, "3528", null, "33731", null, "2357", null, "195418", null, "4524", null, "94110", null, "3678", null, "164501", null, "4874", null, "19594", null, "2071", null, "46767", null, "3997", null, "98140", null, "4100", null, "-888888888", "(X)", "-888888888", "(X)", "35.9", null, "1.1", null, "64.1", null, "1.1", null, "42.0", null, "1.6", null, "16.1", null, "1.2", null, "5.6", null, "0.9", null, "10.5", null, "1.0", null, "41.8", null, "1.5", null, "25.5", null, "1.5", null, "16.0", null, "1.2", null, "8.9", null, "1.2", null, "3.1", null, "0.7", null, "5.8", null, "0.8", null, "0.7", null, "0.4", null, "74.5", null, "1.5", null, "26.0", null, "1.4", null, "7.3", null, "0.8", null, "2.5", null, "0.6", null, "4.8", null, "0.8", null, "41.2", null, "1.5", null, "11.2", null, "1.2", null, "88.8", null, "1.2", null, "28.7", null, "1.8", null, "71.3", null, "1.8", null, "71.8", null, "1.1", null, "5.2", null, "0.7", null, "0.9", null, "0.3", null, "7.0", null, "0.6", null, "0.3", null, "0.2", null, "4.2", null, "0.8", null, "10.5", null, "1.2", null, "11.9", null, "0.8", null, "69.1", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.9", null, "1.1", null, "28.4", null, "2.2", null, "59.7", null, "2.2", null, "48142", null, "3992", null, "17546", null, "2439", null, "30596", null, "3097", null, "10293", null, "1733", null, "15015", null, "2300", null, "3816", null, "1440", null, "11199", null, "1809", null, "22834", null, "2935", null, "16739", null, "2454", null, "6178", null, "1473", null, "9390", null, "1773", null, "1536", null, "712", null, "7854", null, "1619", null, "1171", null, "1012", null, "31403", null, "3648", null, "4115", null, "1252", null, "5625", null, "1554", null, "2280", null, "1108", null, "3345", null, "1119", null, "21663", null, "2852", null, "15917", null, "2263", null, "32225", null, "3843", null, "23790", null, "3355", null, "24352", null, "2812", null, "28063", null, "3402", null, "5188", null, "1411", null, "647", null, "362", null, "3947", null, "1045", null, "437", null, "516", null, "2788", null, "979", null, "7072", null, "1655", null, "7265", null, "1499", null, "26353", null, "3166", null, "40071", null, "8927", null, "25308", null, "2775", null, "3672", null, "901", null, "10700", null, "1782", null, "10936", null, "2127", null, "17.0", null, "1.3", null, "36.4", null, "3.9", null, "63.6", null, "3.9", null, "21.4", null, "3.3", null, "31.2", null, "4.1", null, "7.9", null, "2.9", null, "23.3", null, "3.4", null, "47.4", null, "4.2", null, "34.8", null, "4.6", null, "12.8", null, "2.9", null, "19.5", null, "3.6", null, "3.2", null, "1.5", null, "16.3", null, "3.3", null, "2.4", null, "2.1", null, "65.2", null, "4.6", null, "8.5", null, "2.6", null, "11.7", null, "2.9", null, "4.7", null, "2.2", null, "6.9", null, "2.2", null, "45.0", null, "4.3", null, "33.1", null, "4.5", null, "66.9", null, "4.5", null, "49.4", null, "4.9", null, "50.6", null, "4.9", null, "58.3", null, "4.9", null, "10.8", null, "2.8", null, "1.3", null, "0.7", null, "8.2", null, "2.1", null, "0.9", null, "1.1", null, "5.8", null, "2.0", null, "14.7", null, "3.3", null, "15.1", null, "2.8", null, "54.7", null, "4.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.5", null, "3.5", null, "42.3", null, "6.1", null, "43.2", null, "5.8", null, "234719", null, "5303", null, "84093", null, "3643", null, "150626", null, "4940", null, "108568", null, "4385", null, "30625", null, "3377", null, "12047", null, "2290", null, "18578", null, "2277", null, "95526", null, "4680", null, "55504", null, "3923", null, "39182", null, "2959", null, "15646", null, "3045", null, "7205", null, "1933", null, "8441", null, "1878", null, "676", null, "532", null, "179215", null, "5289", null, "69386", null, "3922", null, "14979", null, "2247", null, "4842", null, "1325", null, "10137", null, "1900", null, "94850", null, "4634", null, "15770", null, "2428", null, "218949", null, "5644", null, "57532", null, "4046", null, "177187", null, "5824", null, "174915", null, "5164", null, "9459", null, "1500", null, "1999", null, "867", null, "15876", null, "2052", null, "534", null, "239", null, "9187", null, "2088", null, "22749", null, "2875", null, "26466", null, "2517", null, "169065", null, "5051", null, "104436", null, "2640", null, "139193", null, "4986", null, "15922", null, "1778", null, "36067", null, "3534", null, "87204", null, "4111", null, "83.0", null, "1.3", null, "35.8", null, "1.4", null, "64.2", null, "1.4", null, "46.3", null, "1.7", null, "13.0", null, "1.4", null, "5.1", null, "0.9", null, "7.9", null, "1.0", null, "40.7", null, "1.7", null, "23.6", null, "1.6", null, "16.7", null, "1.3", null, "6.7", null, "1.2", null, "3.1", null, "0.8", null, "3.6", null, "0.8", null, "0.3", null, "0.2", null, "76.4", null, "1.6", null, "29.6", null, "1.5", null, "6.4", null, "1.0", null, "2.1", null, "0.6", null, "4.3", null, "0.8", null, "40.4", null, "1.7", null, "6.7", null, "1.0", null, "93.3", null, "1.0", null, "24.5", null, "1.7", null, "75.5", null, "1.7", null, "74.5", null, "1.5", null, "4.0", null, "0.6", null, "0.9", null, "0.4", null, "6.8", null, "0.8", null, "0.2", null, "0.1", null, "3.9", null, "0.9", null, "9.7", null, "1.2", null, "11.3", null, "1.0", null, "72.0", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.4", null, "1.1", null, "25.9", null, "2.3", null, "62.6", null, "2.4", null, "41", "03"], ["5001900US4104", "Congressional District 4 (119th Congress), Oregon", "306480", null, "3143", null, "146819", null, "3102", null, "159661", null, "3992", null, "135481", null, "5121", null, "46625", null, "3393", null, "14149", null, "2388", null, "32476", null, "2377", null, "124374", null, "5362", null, "68063", null, "3970", null, "41991", null, "3308", null, "25147", null, "2829", null, "7061", null, "1496", null, "18086", null, "2330", null, "925", null, "803", null, "238417", null, "4238", null, "93490", null, "4356", null, "21478", null, "2319", null, "7088", null, "1661", null, "14390", null, "1457", null, "123449", null, "5387", null, "51075", null, "4065", null, "255405", null, "4691", null, "104198", null, "3957", null, "202282", null, "4256", null, "260756", null, "3823", null, "1823", null, "627", null, "3820", null, "1014", null, "7737", null, "1277", null, "-999999999", "N", "-999999999", "N", "5020", null, "1237", null, "27050", null, "2773", null, "19255", null, "1672", null, "255275", null, "3698", null, "69445", null, "2859", null, "182106", null, "5695", null, "42583", null, "2928", null, "57556", null, "3652", null, "81967", null, "4695", null, "-888888888", "(X)", "-888888888", "(X)", "47.9", null, "1.0", null, "52.1", null, "1.0", null, "44.2", null, "1.6", null, "15.2", null, "1.1", null, "4.6", null, "0.8", null, "10.6", null, "0.8", null, "40.6", null, "1.7", null, "22.2", null, "1.2", null, "13.7", null, "1.1", null, "8.2", null, "0.9", null, "2.3", null, "0.5", null, "5.9", null, "0.8", null, "0.3", null, "0.3", null, "77.8", null, "1.2", null, "30.5", null, "1.4", null, "7.0", null, "0.8", null, "2.3", null, "0.5", null, "4.7", null, "0.5", null, "40.3", null, "1.7", null, "16.7", null, "1.3", null, "83.3", null, "1.3", null, "34.0", null, "1.2", null, "66.0", null, "1.2", null, "85.1", null, "0.8", null, "0.6", null, "0.2", null, "1.2", null, "0.3", null, "2.5", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "1.6", null, "0.4", null, "8.8", null, "0.9", null, "6.3", null, "0.5", null, "83.3", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "23.4", null, "1.4", null, "31.6", null, "1.8", null, "45.0", null, "2.1", null, "59564", null, "4148", null, "24684", null, "2628", null, "34880", null, "3498", null, "14132", null, "2004", null, "17889", null, "2580", null, "3823", null, "1176", null, "14066", null, "2232", null, "27543", null, "3196", null, "19251", null, "2727", null, "7857", null, "1496", null, "10754", null, "2198", null, "1884", null, "834", null, "8870", null, "1902", null, "640", null, "818", null, "40313", null, "3885", null, "6275", null, "1354", null, "7135", null, "1287", null, "1939", null, "675", null, "5196", null, "1073", null, "26903", null, "3125", null, "25858", null, "3215", null, "33706", null, "2990", null, "30613", null, "2761", null, "28951", null, "3137", null, "48326", null, "3345", null, "755", null, "547", null, "791", null, "446", null, "686", null, "396", null, "-999999999", "N", "-999999999", "N", "1401", null, "687", null, "7511", null, "1602", null, "4462", null, "1237", null, "46578", null, "3271", null, "35385", null, "3815", null, "32021", null, "3489", null, "6933", null, "1299", null, "14627", null, "2415", null, "10461", null, "1876", null, "19.4", null, "1.4", null, "41.4", null, "3.7", null, "58.6", null, "3.7", null, "23.7", null, "3.0", null, "30.0", null, "3.7", null, "6.4", null, "1.9", null, "23.6", null, "3.2", null, "46.2", null, "4.4", null, "32.3", null, "4.2", null, "13.2", null, "2.5", null, "18.1", null, "3.4", null, "3.2", null, "1.4", null, "14.9", null, "2.9", null, "1.1", null, "1.4", null, "67.7", null, "4.2", null, "10.5", null, "2.1", null, "12.0", null, "2.0", null, "3.3", null, "1.1", null, "8.7", null, "1.7", null, "45.2", null, "4.2", null, "43.4", null, "3.9", null, "56.6", null, "3.9", null, "51.4", null, "3.5", null, "48.6", null, "3.5", null, "81.1", null, "2.8", null, "1.3", null, "0.9", null, "1.3", null, "0.8", null, "1.2", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "2.4", null, "1.1", null, "12.6", null, "2.3", null, "7.5", null, "2.0", null, "78.2", null, "3.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "21.7", null, "3.7", null, "45.7", null, "5.2", null, "32.7", null, "4.6", null, "246916", null, "5074", null, "122135", null, "3549", null, "124781", null, "4563", null, "121349", null, "5435", null, "28736", null, "2774", null, "10326", null, "2040", null, "18410", null, "1939", null, "96831", null, "4841", null, "48812", null, "3255", null, "34134", null, "3068", null, "14393", null, "1979", null, "5177", null, "1290", null, "9216", null, "1472", null, "285", null, "203", null, "198104", null, "4961", null, "87215", null, "4342", null, "14343", null, "2320", null, "5149", null, "1469", null, "9194", null, "1572", null, "96546", null, "4806", null, "25217", null, "2988", null, "221699", null, "5502", null, "73585", null, "3813", null, "173331", null, "4671", null, "212430", null, "5099", null, "1068", null, "573", null, "3029", null, "837", null, "7051", null, "1274", null, "-999999999", "N", "-999999999", "N", "3619", null, "975", null, "19539", null, "2639", null, "14793", null, "1737", null, "208697", null, "4905", null, "77770", null, "2787", null, "150085", null, "5717", null, "35650", null, "2743", null, "42929", null, "3251", null, "71506", null, "4439", null, "80.6", null, "1.4", null, "49.5", null, "1.3", null, "50.5", null, "1.3", null, "49.1", null, "1.8", null, "11.6", null, "1.1", null, "4.2", null, "0.8", null, "7.5", null, "0.8", null, "39.2", null, "1.9", null, "19.8", null, "1.2", null, "13.8", null, "1.1", null, "5.8", null, "0.8", null, "2.1", null, "0.5", null, "3.7", null, "0.6", null, "0.1", null, "0.1", null, "80.2", null, "1.2", null, "35.3", null, "1.6", null, "5.8", null, "0.9", null, "2.1", null, "0.6", null, "3.7", null, "0.6", null, "39.1", null, "1.8", null, "10.2", null, "1.2", null, "89.8", null, "1.2", null, "29.8", null, "1.4", null, "70.2", null, "1.4", null, "86.0", null, "1.0", null, "0.4", null, "0.2", null, "1.2", null, "0.3", null, "2.9", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "1.5", null, "0.4", null, "7.9", null, "1.0", null, "6.0", null, "0.7", null, "84.5", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "23.8", null, "1.6", null, "28.6", null, "1.9", null, "47.6", null, "2.2", null, "41", "04"], ["5001900US4105", "Congressional District 5 (119th Congress), Oregon", "285122", null, "4704", null, "127486", null, "3376", null, "157636", null, "4234", null, "146707", null, "4700", null, "41038", null, "3944", null, "12512", null, "2239", null, "28526", null, "3256", null, "97377", null, "4354", null, "79887", null, "4323", null, "56047", null, "3869", null, "23270", null, "3343", null, "7064", null, "1871", null, "16206", null, "2828", null, "570", null, "384", null, "205235", null, "4925", null, "90660", null, "3974", null, "17768", null, "2252", null, "5448", null, "1163", null, "12320", null, "1993", null, "96807", null, "4340", null, "27572", null, "3053", null, "257550", null, "5559", null, "76074", null, "3705", null, "209048", null, "5098", null, "245253", null, "4436", null, "1997", null, "588", null, "1831", null, "837", null, "6622", null, "1106", null, "-999999999", "N", "-999999999", "N", "8202", null, "1963", null, "21130", null, "2265", null, "21083", null, "2092", null, "239902", null, "4424", null, "96200", null, "3107", null, "187745", null, "4818", null, "30578", null, "1945", null, "57235", null, "4635", null, "99932", null, "4677", null, "-888888888", "(X)", "-888888888", "(X)", "44.7", null, "1.0", null, "55.3", null, "1.0", null, "51.5", null, "1.5", null, "14.4", null, "1.3", null, "4.4", null, "0.8", null, "10.0", null, "1.1", null, "34.2", null, "1.4", null, "28.0", null, "1.4", null, "19.7", null, "1.3", null, "8.2", null, "1.2", null, "2.5", null, "0.7", null, "5.7", null, "1.0", null, "0.2", null, "0.1", null, "72.0", null, "1.4", null, "31.8", null, "1.4", null, "6.2", null, "0.8", null, "1.9", null, "0.4", null, "4.3", null, "0.7", null, "34.0", null, "1.4", null, "9.7", null, "1.1", null, "90.3", null, "1.1", null, "26.7", null, "1.2", null, "73.3", null, "1.2", null, "86.0", null, "0.9", null, "0.7", null, "0.2", null, "0.6", null, "0.3", null, "2.3", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "2.9", null, "0.7", null, "7.4", null, "0.8", null, "7.4", null, "0.7", null, "84.1", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.3", null, "1.0", null, "30.5", null, "2.2", null, "53.2", null, "2.1", null, "36249", null, "3357", null, "14201", null, "2014", null, "22048", null, "2763", null, "10104", null, "1816", null, "13566", null, "2309", null, "2668", null, "830", null, "10898", null, "2157", null, "12579", null, "2011", null, "14508", null, "2165", null, "6820", null, "1683", null, "7513", null, "1586", null, "1683", null, "660", null, "5830", null, "1481", null, "175", null, "230", null, "21741", null, "2600", null, "3284", null, "991", null, "6053", null, "1593", null, "985", null, "540", null, "5068", null, "1438", null, "12404", null, "1978", null, "10488", null, "1930", null, "25761", null, "3100", null, "16484", null, "2168", null, "19765", null, "2525", null, "29536", null, "3121", null, "290", null, "245", null, "317", null, "176", null, "568", null, "443", null, "-999999999", "N", "-999999999", "N", "2691", null, "1051", null, "2847", null, "856", null, "4461", null, "1326", null, "28164", null, "2989", null, "51380", null, "6514", null, "23670", null, "2761", null, "3606", null, "924", null, "10851", null, "1983", null, "9213", null, "1754", null, "12.7", null, "1.2", null, "39.2", null, "4.6", null, "60.8", null, "4.6", null, "27.9", null, "4.4", null, "37.4", null, "5.2", null, "7.4", null, "2.3", null, "30.1", null, "4.9", null, "34.7", null, "4.5", null, "40.0", null, "4.6", null, "18.8", null, "4.2", null, "20.7", null, "4.0", null, "4.6", null, "1.9", null, "16.1", null, "3.7", null, "0.5", null, "0.6", null, "60.0", null, "4.6", null, "9.1", null, "2.8", null, "16.7", null, "4.0", null, "2.7", null, "1.5", null, "14.0", null, "3.6", null, "34.2", null, "4.4", null, "28.9", null, "4.8", null, "71.1", null, "4.8", null, "45.5", null, "4.5", null, "54.5", null, "4.5", null, "81.5", null, "3.7", null, "0.8", null, "0.7", null, "0.9", null, "0.5", null, "1.6", null, "1.3", null, "-999999999.0", "N", "-999999999.0", "N", "7.4", null, "2.7", null, "7.9", null, "2.3", null, "12.3", null, "3.3", null, "77.7", null, "3.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.2", null, "3.9", null, "45.8", null, "5.6", null, "38.9", null, "6.0", null, "248873", null, "5364", null, "113285", null, "3314", null, "135588", null, "4827", null, "136603", null, "4657", null, "27472", null, "3372", null, "9844", null, "2011", null, "17628", null, "2688", null, "84798", null, "4450", null, "65379", null, "4077", null, "49227", null, "3520", null, "15757", null, "3023", null, "5381", null, "1748", null, "10376", null, "2365", null, "395", null, "305", null, "183494", null, "5109", null, "87376", null, "3987", null, "11715", null, "1765", null, "4463", null, "1002", null, "7252", null, "1629", null, "84403", null, "4459", null, "17084", null, "2272", null, "231789", null, "5922", null, "59590", null, "3297", null, "189283", null, "5414", null, "215717", null, "5299", null, "1707", null, "569", null, "1514", null, "807", null, "6054", null, "1068", null, "-999999999", "N", "-999999999", "N", "5511", null, "1719", null, "18283", null, "2121", null, "16622", null, "2184", null, "211738", null, "5150", null, "102801", null, "2370", null, "164075", null, "4789", null, "26972", null, "1930", null, "46384", null, "4210", null, "90719", null, "4334", null, "87.3", null, "1.2", null, "45.5", null, "1.2", null, "54.5", null, "1.2", null, "54.9", null, "1.6", null, "11.0", null, "1.3", null, "4.0", null, "0.8", null, "7.1", null, "1.1", null, "34.1", null, "1.5", null, "26.3", null, "1.5", null, "19.8", null, "1.3", null, "6.3", null, "1.2", null, "2.2", null, "0.7", null, "4.2", null, "0.9", null, "0.2", null, "0.1", null, "73.7", null, "1.5", null, "35.1", null, "1.6", null, "4.7", null, "0.7", null, "1.8", null, "0.4", null, "2.9", null, "0.7", null, "33.9", null, "1.5", null, "6.9", null, "0.9", null, "93.1", null, "0.9", null, "23.9", null, "1.3", null, "76.1", null, "1.3", null, "86.7", null, "1.1", null, "0.7", null, "0.2", null, "0.6", null, "0.3", null, "2.4", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "2.2", null, "0.7", null, "7.3", null, "0.8", null, "6.7", null, "0.9", null, "85.1", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.4", null, "1.1", null, "28.3", null, "2.4", null, "55.3", null, "2.2", null, "41", "05"], ["5001900US4106", "Congressional District 6 (119th Congress), Oregon", "274071", null, "4000", null, "112784", null, "3437", null, "161287", null, "4153", null, "137121", null, "4660", null, "41506", null, "3857", null, "13480", null, "2382", null, "28026", null, "3113", null, "95444", null, "5052", null, "80666", null, "3834", null, "56129", null, "3564", null, "23764", null, "3034", null, "7701", null, "2176", null, "16063", null, "2130", null, "773", null, "431", null, "193405", null, "5129", null, "80992", null, "3813", null, "17742", null, "2796", null, "5779", null, "1439", null, "11963", null, "2249", null, "94671", null, "4981", null, "29140", null, "3081", null, "244931", null, "4338", null, "79186", null, "5080", null, "194885", null, "5686", null, "212413", null, "4414", null, "3260", null, "1138", null, "2496", null, "937", null, "8893", null, "1574", null, "-999999999", "N", "-999999999", "N", "19940", null, "2349", null, "25881", null, "3051", null, "44940", null, "2564", null, "201113", null, "4242", null, "90927", null, "2078", null, "178627", null, "4748", null, "25965", null, "2312", null, "52400", null, "3608", null, "100262", null, "3981", null, "-888888888", "(X)", "-888888888", "(X)", "41.2", null, "1.2", null, "58.8", null, "1.2", null, "50.0", null, "1.5", null, "15.1", null, "1.4", null, "4.9", null, "0.9", null, "10.2", null, "1.2", null, "34.8", null, "1.7", null, "29.4", null, "1.4", null, "20.5", null, "1.3", null, "8.7", null, "1.1", null, "2.8", null, "0.8", null, "5.9", null, "0.8", null, "0.3", null, "0.2", null, "70.6", null, "1.4", null, "29.6", null, "1.3", null, "6.5", null, "1.0", null, "2.1", null, "0.5", null, "4.4", null, "0.8", null, "34.5", null, "1.6", null, "10.6", null, "1.1", null, "89.4", null, "1.1", null, "28.9", null, "1.8", null, "71.1", null, "1.8", null, "77.5", null, "1.3", null, "1.2", null, "0.4", null, "0.9", null, "0.3", null, "3.2", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "7.3", null, "0.8", null, "9.4", null, "1.1", null, "16.4", null, "0.9", null, "73.4", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.5", null, "1.2", null, "29.3", null, "1.7", null, "56.1", null, "2.0", null, "43214", null, "3593", null, "17456", null, "2601", null, "25758", null, "3097", null, "14213", null, "2319", null, "15109", null, "2315", null, "3370", null, "1096", null, "11739", null, "2099", null, "13892", null, "2198", null, "19348", null, "2808", null, "9434", null, "1990", null, "9767", null, "2014", null, "1803", null, "999", null, "7964", null, "1831", null, "147", null, "186", null, "23866", null, "2802", null, "4779", null, "1151", null, "5342", null, "1523", null, "1567", null, "768", null, "3775", null, "1237", null, "13745", null, "2209", null, "14412", null, "2271", null, "28802", null, "3078", null, "24321", null, "3179", null, "18893", null, "2614", null, "30300", null, "3177", null, "580", null, "473", null, "752", null, "693", null, "917", null, "493", null, "-999999999", "N", "-999999999", "N", "5482", null, "1511", null, "4987", null, "1546", null, "12761", null, "2011", null, "26960", null, "3051", null, "42690", null, "6133", null, "29322", null, "3148", null, "4529", null, "1342", null, "12548", null, "2184", null, "12245", null, "1931", null, "15.8", null, "1.3", null, "40.4", null, "5.1", null, "59.6", null, "5.1", null, "32.9", null, "4.4", null, "35.0", null, "4.7", null, "7.8", null, "2.5", null, "27.2", null, "4.5", null, "32.1", null, "4.5", null, "44.8", null, "5.0", null, "21.8", null, "3.9", null, "22.6", null, "4.4", null, "4.2", null, "2.3", null, "18.4", null, "4.2", null, "0.3", null, "0.4", null, "55.2", null, "5.0", null, "11.1", null, "2.6", null, "12.4", null, "3.4", null, "3.6", null, "1.8", null, "8.7", null, "2.7", null, "31.8", null, "4.5", null, "33.4", null, "4.5", null, "66.6", null, "4.5", null, "56.3", null, "5.2", null, "43.7", null, "5.2", null, "70.1", null, "4.5", null, "1.3", null, "1.1", null, "1.7", null, "1.6", null, "2.1", null, "1.1", null, "-999999999.0", "N", "-999999999.0", "N", "12.7", null, "3.4", null, "11.5", null, "3.5", null, "29.5", null, "4.2", null, "62.4", null, "4.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.4", null, "4.0", null, "42.8", null, "5.4", null, "41.8", null, "5.9", null, "230857", null, "5178", null, "95328", null, "3529", null, "135529", null, "4776", null, "122908", null, "4978", null, "26397", null, "3190", null, "10110", null, "2159", null, "16287", null, "2451", null, "81552", null, "4552", null, "61318", null, "3700", null, "46695", null, "3411", null, "13997", null, "2453", null, "5898", null, "1845", null, "8099", null, "1641", null, "626", null, "354", null, "169539", null, "5222", null, "76213", null, "3712", null, "12400", null, "2447", null, "4212", null, "1309", null, "8188", null, "1916", null, "80926", null, "4504", null, "14728", null, "2274", null, "216129", null, "5029", null, "54865", null, "3897", null, "175992", null, "5663", null, "182113", null, "5004", null, "2680", null, "1062", null, "1744", null, "655", null, "7976", null, "1519", null, "-999999999", "N", "-999999999", "N", "14458", null, "2251", null, "20894", null, "2838", null, "32179", null, "2847", null, "174153", null, "4927", null, "99031", null, "2994", null, "149305", null, "5342", null, "21436", null, "1862", null, "39852", null, "3343", null, "88017", null, "4310", null, "84.2", null, "1.3", null, "41.3", null, "1.4", null, "58.7", null, "1.4", null, "53.2", null, "1.7", null, "11.4", null, "1.4", null, "4.4", null, "0.9", null, "7.1", null, "1.1", null, "35.3", null, "1.8", null, "26.6", null, "1.5", null, "20.2", null, "1.4", null, "6.1", null, "1.0", null, "2.6", null, "0.8", null, "3.5", null, "0.7", null, "0.3", null, "0.2", null, "73.4", null, "1.5", null, "33.0", null, "1.3", null, "5.4", null, "1.1", null, "1.8", null, "0.6", null, "3.5", null, "0.8", null, "35.1", null, "1.8", null, "6.4", null, "1.0", null, "93.6", null, "1.0", null, "23.8", null, "1.6", null, "76.2", null, "1.6", null, "78.9", null, "1.4", null, "1.2", null, "0.5", null, "0.8", null, "0.3", null, "3.5", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "6.3", null, "1.0", null, "9.1", null, "1.2", null, "13.9", null, "1.2", null, "75.4", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.4", null, "1.2", null, "26.7", null, "1.9", null, "59.0", null, "2.1", null, "41", "06"], ["5001900US4201", "Congressional District 1 (119th Congress), Pennsylvania", "296750", null, "2964", null, "146940", null, "3455", null, "149810", null, "3708", null, "168718", null, "5256", null, "40639", null, "3362", null, "15000", null, "2302", null, "25639", null, "2929", null, "87393", null, "4785", null, "79861", null, "3649", null, "60409", null, "3686", null, "19315", null, "2208", null, "7227", null, "1528", null, "12088", null, "1627", null, "137", null, "144", null, "216889", null, "3599", null, "108309", null, "4377", null, "21324", null, "2709", null, "7773", null, "1654", null, "13551", null, "2253", null, "87256", null, "4784", null, "20222", null, "2558", null, "276528", null, "3741", null, "74407", null, "4338", null, "222343", null, "4686", null, "248966", null, "3685", null, "10457", null, "1511", null, "-999999999", "N", "-999999999", "N", "15508", null, "1326", null, "-999999999", "N", "-999999999", "N", "7373", null, "1600", null, "13925", null, "2228", null, "16658", null, "1884", null, "245426", null, "3532", null, "112090", null, "3911", null, "209357", null, "5119", null, "31701", null, "2776", null, "50678", null, "3389", null, "126978", null, "4705", null, "-888888888", "(X)", "-888888888", "(X)", "49.5", null, "1.1", null, "50.5", null, "1.1", null, "56.9", null, "1.7", null, "13.7", null, "1.1", null, "5.1", null, "0.8", null, "8.6", null, "1.0", null, "29.5", null, "1.6", null, "26.9", null, "1.1", null, "20.4", null, "1.2", null, "6.5", null, "0.7", null, "2.4", null, "0.5", null, "4.1", null, "0.5", null, "0.0", null, "0.1", null, "73.1", null, "1.1", null, "36.5", null, "1.5", null, "7.2", null, "0.9", null, "2.6", null, "0.6", null, "4.6", null, "0.8", null, "29.4", null, "1.6", null, "6.8", null, "0.9", null, "93.2", null, "0.9", null, "25.1", null, "1.4", null, "74.9", null, "1.4", null, "83.9", null, "1.0", null, "3.5", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "5.2", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "2.5", null, "0.5", null, "4.7", null, "0.7", null, "5.6", null, "0.6", null, "82.7", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.1", null, "1.2", null, "24.2", null, "1.5", null, "60.7", null, "1.7", null, "21996", null, "2589", null, "11279", null, "1779", null, "10717", null, "2373", null, "6528", null, "1389", null, "7723", null, "1594", null, "1680", null, "852", null, "6043", null, "1391", null, "7745", null, "1672", null, "9236", null, "1802", null, "3671", null, "1141", null, "5565", null, "1377", null, "1061", null, "630", null, "4504", null, "1288", null, "0", null, "192", null, "12760", null, "1974", null, "2857", null, "932", null, "2158", null, "984", null, "619", null, "551", null, "1539", null, "691", null, "7745", null, "1672", null, "6198", null, "1553", null, "15798", null, "2363", null, "12771", null, "1954", null, "9225", null, "1863", null, "16520", null, "2213", null, "2475", null, "889", null, "-999999999", "N", "-999999999", "N", "1225", null, "562", null, "-999999999", "N", "-999999999", "N", "937", null, "538", null, "806", null, "418", null, "1234", null, "586", null, "16197", null, "2261", null, "49769", null, "12190", null, "14251", null, "1991", null, "2624", null, "979", null, "5481", null, "1465", null, "6146", null, "1441", null, "7.4", null, "0.9", null, "51.3", null, "7.5", null, "48.7", null, "7.5", null, "29.7", null, "5.3", null, "35.1", null, "6.4", null, "7.6", null, "3.8", null, "27.5", null, "5.8", null, "35.2", null, "5.9", null, "42.0", null, "6.2", null, "16.7", null, "4.7", null, "25.3", null, "5.5", null, "4.8", null, "2.9", null, "20.5", null, "5.2", null, "0.0", null, "0.7", null, "58.0", null, "6.2", null, "13.0", null, "4.1", null, "9.8", null, "4.5", null, "2.8", null, "2.4", null, "7.0", null, "3.3", null, "35.2", null, "5.9", null, "28.2", null, "6.4", null, "71.8", null, "6.4", null, "58.1", null, "6.4", null, "41.9", null, "6.4", null, "75.1", null, "4.5", null, "11.3", null, "3.9", null, "-999999999.0", "N", "-999999999.0", "N", "5.6", null, "2.5", null, "-999999999.0", "N", "-999999999.0", "N", "4.3", null, "2.3", null, "3.7", null, "1.9", null, "5.6", null, "2.6", null, "73.6", null, "4.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.4", null, "6.3", null, "38.5", null, "9.0", null, "43.1", null, "8.3", null, "274754", null, "3801", null, "135661", null, "3665", null, "139093", null, "4294", null, "162190", null, "5147", null, "32916", null, "3115", null, "13320", null, "2271", null, "19596", null, "2300", null, "79648", null, "4590", null, "70625", null, "3721", null, "56738", null, "3598", null, "13750", null, "2217", null, "6166", null, "1485", null, "7584", null, "1301", null, "137", null, "144", null, "204129", null, "3305", null, "105452", null, "4245", null, "19166", null, "2611", null, "7154", null, "1593", null, "12012", null, "2175", null, "79511", null, "4581", null, "14024", null, "2308", null, "260730", null, "3794", null, "61636", null, "4087", null, "213118", null, "4707", null, "232446", null, "4202", null, "7982", null, "1624", null, "-999999999", "N", "-999999999", "N", "14283", null, "1477", null, "-999999999", "N", "-999999999", "N", "6436", null, "1521", null, "13119", null, "2262", null, "15424", null, "1783", null, "229229", null, "4127", null, "118997", null, "4779", null, "195106", null, "5084", null, "29077", null, "2468", null, "45197", null, "3353", null, "120832", null, "4942", null, "92.6", null, "0.9", null, "49.4", null, "1.3", null, "50.6", null, "1.3", null, "59.0", null, "1.8", null, "12.0", null, "1.1", null, "4.8", null, "0.8", null, "7.1", null, "0.8", null, "29.0", null, "1.6", null, "25.7", null, "1.2", null, "20.7", null, "1.2", null, "5.0", null, "0.8", null, "2.2", null, "0.5", null, "2.8", null, "0.5", null, "0.0", null, "0.1", null, "74.3", null, "1.2", null, "38.4", null, "1.6", null, "7.0", null, "0.9", null, "2.6", null, "0.6", null, "4.4", null, "0.8", null, "28.9", null, "1.6", null, "5.1", null, "0.8", null, "94.9", null, "0.8", null, "22.4", null, "1.4", null, "77.6", null, "1.4", null, "84.6", null, "1.1", null, "2.9", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "5.2", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "2.3", null, "0.6", null, "4.8", null, "0.8", null, "5.6", null, "0.7", null, "83.4", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.9", null, "1.2", null, "23.2", null, "1.6", null, "61.9", null, "1.8", null, "42", "01"], ["5001900US4202", "Congressional District 2 (119th Congress), Pennsylvania", "305454", null, "8147", null, "122692", null, "4886", null, "182762", null, "7668", null, "101367", null, "6487", null, "72343", null, "5554", null, "17307", null, "2780", null, "55036", null, "5576", null, "131744", null, "7074", null, "81930", null, "6653", null, "40957", null, "5372", null, "39737", null, "5348", null, "7603", null, "2314", null, "32134", null, "5071", null, "1236", null, "966", null, "223524", null, "8088", null, "60410", null, "4485", null, "32606", null, "3675", null, "9704", null, "2083", null, "22902", null, "2940", null, "130508", null, "7060", null, "60806", null, "6094", null, "244648", null, "7801", null, "101964", null, "7027", null, "203490", null, "8395", null, "135508", null, "4812", null, "72088", null, "5764", null, "1961", null, "1561", null, "29691", null, "2970", null, "-999999999", "N", "-999999999", "N", "34884", null, "4742", null, "31322", null, "4362", null, "70140", null, "4080", null, "124297", null, "4081", null, "57907", null, "3623", null, "173710", null, "6295", null, "23369", null, "2708", null, "58747", null, "5802", null, "91594", null, "6176", null, "-888888888", "(X)", "-888888888", "(X)", "40.2", null, "1.5", null, "59.8", null, "1.5", null, "33.2", null, "2.0", null, "23.7", null, "1.8", null, "5.7", null, "0.9", null, "18.0", null, "1.8", null, "43.1", null, "1.8", null, "26.8", null, "2.0", null, "13.4", null, "1.7", null, "13.0", null, "1.7", null, "2.5", null, "0.8", null, "10.5", null, "1.6", null, "0.4", null, "0.3", null, "73.2", null, "2.0", null, "19.8", null, "1.5", null, "10.7", null, "1.2", null, "3.2", null, "0.7", null, "7.5", null, "1.0", null, "42.7", null, "1.8", null, "19.9", null, "1.8", null, "80.1", null, "1.8", null, "33.4", null, "2.1", null, "66.6", null, "2.1", null, "44.4", null, "1.6", null, "23.6", null, "1.6", null, "0.6", null, "0.5", null, "9.7", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "11.4", null, "1.6", null, "10.3", null, "1.4", null, "23.0", null, "1.3", null, "40.7", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.5", null, "1.6", null, "33.8", null, "3.0", null, "52.7", null, "2.9", null, "82154", null, "8073", null, "37100", null, "4313", null, "45054", null, "6460", null, "20783", null, "4646", null, "33087", null, "4890", null, "5522", null, "1874", null, "27565", null, "4709", null, "28284", null, "4383", null, "33293", null, "5921", null, "11070", null, "3743", null, "21199", null, "4396", null, "3332", null, "1616", null, "17867", null, "4332", null, "1024", null, "948", null, "48861", null, "5056", null, "9713", null, "2267", null, "11888", null, "2265", null, "2190", null, "1096", null, "9698", null, "1950", null, "27260", null, "3899", null, "35449", null, "5127", null, "46705", null, "5823", null, "41803", null, "5920", null, "40351", null, "5318", null, "24309", null, "3754", null, "24355", null, "5477", null, "1270", null, "1357", null, "6355", null, "1541", null, "-999999999", "N", "-999999999", "N", "17326", null, "2979", null, "8539", null, "2235", null, "29829", null, "4164", null, "20742", null, "3056", null, "31089", null, "3437", null, "53870", null, "6554", null, "10081", null, "2174", null, "23854", null, "4164", null, "19935", null, "4229", null, "26.9", null, "2.5", null, "45.2", null, "4.3", null, "54.8", null, "4.3", null, "25.3", null, "4.7", null, "40.3", null, "4.9", null, "6.7", null, "2.3", null, "33.6", null, "4.7", null, "34.4", null, "4.4", null, "40.5", null, "4.8", null, "13.5", null, "4.0", null, "25.8", null, "4.7", null, "4.1", null, "2.0", null, "21.7", null, "4.6", null, "1.2", null, "1.1", null, "59.5", null, "4.8", null, "11.8", null, "2.7", null, "14.5", null, "2.7", null, "2.7", null, "1.3", null, "11.8", null, "2.4", null, "33.2", null, "3.9", null, "43.1", null, "4.5", null, "56.9", null, "4.5", null, "50.9", null, "4.8", null, "49.1", null, "4.8", null, "29.6", null, "4.1", null, "29.6", null, "4.9", null, "1.5", null, "1.7", null, "7.7", null, "1.8", null, "-999999999.0", "N", "-999999999.0", "N", "21.1", null, "3.5", null, "10.4", null, "2.5", null, "36.3", null, "4.3", null, "25.2", null, "3.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.7", null, "4.1", null, "44.3", null, "5.5", null, "37.0", null, "5.5", null, "223300", null, "8906", null, "85592", null, "5240", null, "137708", null, "7636", null, "80584", null, "6017", null, "39256", null, "4718", null, "11785", null, "2363", null, "27471", null, "4137", null, "103460", null, "6888", null, "48637", null, "6085", null, "29887", null, "4224", null, "18538", null, "4352", null, "4271", null, "1806", null, "14267", null, "3637", null, "212", null, "203", null, "174663", null, "7859", null, "50697", null, "4566", null, "20718", null, "3059", null, "7514", null, "1980", null, "13204", null, "2148", null, "103248", null, "6894", null, "25357", null, "4046", null, "197943", null, "9026", null, "60161", null, "5475", null, "163139", null, "8272", null, "111199", null, "4511", null, "47733", null, "5545", null, "691", null, "578", null, "23336", null, "2923", null, "-999999999", "N", "-999999999", "N", "17558", null, "4046", null, "22783", null, "3846", null, "40311", null, "4076", null, "103555", null, "4288", null, "70906", null, "3574", null, "119840", null, "6717", null, "13288", null, "2370", null, "34893", null, "4313", null, "71659", null, "5403", null, "73.1", null, "2.5", null, "38.3", null, "2.0", null, "61.7", null, "2.0", null, "36.1", null, "2.4", null, "17.6", null, "2.0", null, "5.3", null, "1.0", null, "12.3", null, "1.8", null, "46.3", null, "2.3", null, "21.8", null, "2.4", null, "13.4", null, "1.7", null, "8.3", null, "1.9", null, "1.9", null, "0.8", null, "6.4", null, "1.6", null, "0.1", null, "0.1", null, "78.2", null, "2.4", null, "22.7", null, "2.0", null, "9.3", null, "1.4", null, "3.4", null, "0.9", null, "5.9", null, "1.0", null, "46.2", null, "2.3", null, "11.4", null, "1.8", null, "88.6", null, "1.8", null, "26.9", null, "2.2", null, "73.1", null, "2.2", null, "49.8", null, "2.2", null, "21.4", null, "2.0", null, "0.3", null, "0.3", null, "10.5", null, "1.2", null, "-999999999.0", "N", "-999999999.0", "N", "7.9", null, "1.8", null, "10.2", null, "1.6", null, "18.1", null, "1.7", null, "46.4", null, "2.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.1", null, "1.9", null, "29.1", null, "3.1", null, "59.8", null, "3.3", null, "42", "02"], ["5001900US4203", "Congressional District 3 (119th Congress), Pennsylvania", "365677", null, "8895", null, "122133", null, "4537", null, "243544", null, "8552", null, "83639", null, "5169", null, "78255", null, "5876", null, "15173", null, "2895", null, "63082", null, "4831", null, "203783", null, "7869", null, "74208", null, "6241", null, "31756", null, "4300", null, "42278", null, "5323", null, "8274", null, "2253", null, "34004", null, "4558", null, "174", null, "169", null, "291469", null, "9322", null, "51883", null, "4279", null, "35977", null, "4098", null, "6899", null, "1917", null, "29078", null, "3539", null, "203609", null, "7865", null, "69226", null, "6705", null, "296451", null, "9032", null, "103546", null, "6207", null, "262131", null, "9670", null, "128827", null, "4843", null, "186921", null, "7091", null, "-999999999", "N", "-999999999", "N", "22535", null, "3031", null, "-999999999", "N", "-999999999", "N", "6320", null, "1951", null, "20445", null, "3540", null, "17163", null, "3226", null, "124994", null, "4660", null, "65154", null, "3651", null, "161894", null, "6718", null, "21651", null, "3104", null, "56279", null, "5424", null, "83964", null, "5345", null, "-888888888", "(X)", "-888888888", "(X)", "33.4", null, "1.2", null, "66.6", null, "1.2", null, "22.9", null, "1.3", null, "21.4", null, "1.5", null, "4.1", null, "0.8", null, "17.3", null, "1.3", null, "55.7", null, "1.6", null, "20.3", null, "1.6", null, "8.7", null, "1.2", null, "11.6", null, "1.4", null, "2.3", null, "0.6", null, "9.3", null, "1.2", null, "0.0", null, "0.1", null, "79.7", null, "1.6", null, "14.2", null, "1.1", null, "9.8", null, "1.1", null, "1.9", null, "0.5", null, "8.0", null, "1.0", null, "55.7", null, "1.6", null, "18.9", null, "1.7", null, "81.1", null, "1.7", null, "28.3", null, "1.7", null, "71.7", null, "1.7", null, "35.2", null, "1.3", null, "51.1", null, "1.4", null, "-999999999.0", "N", "-999999999.0", "N", "6.2", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "1.7", null, "0.5", null, "5.6", null, "1.0", null, "4.7", null, "0.9", null, "34.2", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.4", null, "1.8", null, "34.8", null, "2.9", null, "51.9", null, "2.8", null, "88636", null, "6697", null, "37844", null, "3908", null, "50792", null, "5919", null, "10022", null, "3337", null, "34793", null, "4227", null, "5057", null, "1722", null, "29736", null, "3946", null, "43821", null, "5019", null, "26985", null, "4769", null, "6207", null, "3049", null, "20718", null, "3654", null, "2462", null, "1267", null, "18256", null, "3490", null, "60", null, "103", null, "61651", null, "5995", null, "3815", null, "1315", null, "14075", null, "2744", null, "2595", null, "1188", null, "11480", null, "2479", null, "43761", null, "5021", null, "37949", null, "4975", null, "50687", null, "5556", null, "47038", null, "4882", null, "41598", null, "5052", null, "10439", null, "1978", null, "65905", null, "6223", null, "-999999999", "N", "-999999999", "N", "3811", null, "1384", null, "-999999999", "N", "-999999999", "N", "1792", null, "902", null, "6498", null, "1965", null, "3965", null, "1356", null, "9891", null, "1945", null, "27047", null, "3002", null, "44815", null, "5151", null, "8087", null, "1901", null, "21060", null, "3716", null, "15668", null, "3446", null, "24.2", null, "1.8", null, "42.7", null, "4.0", null, "57.3", null, "4.0", null, "11.3", null, "3.5", null, "39.3", null, "4.1", null, "5.7", null, "1.9", null, "33.5", null, "4.0", null, "49.4", null, "4.3", null, "30.4", null, "4.7", null, "7.0", null, "3.3", null, "23.4", null, "3.8", null, "2.8", null, "1.4", null, "20.6", null, "3.7", null, "0.1", null, "0.1", null, "69.6", null, "4.7", null, "4.3", null, "1.4", null, "15.9", null, "3.0", null, "2.9", null, "1.3", null, "13.0", null, "2.7", null, "49.4", null, "4.3", null, "42.8", null, "4.6", null, "57.2", null, "4.6", null, "53.1", null, "4.2", null, "46.9", null, "4.2", null, "11.8", null, "2.2", null, "74.4", null, "3.2", null, "-999999999.0", "N", "-999999999.0", "N", "4.3", null, "1.5", null, "-999999999.0", "N", "-999999999.0", "N", "2.0", null, "1.0", null, "7.3", null, "2.3", null, "4.5", null, "1.5", null, "11.2", null, "2.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.0", null, "4.3", null, "47.0", null, "6.0", null, "35.0", null, "5.9", null, "277041", null, "9564", null, "84289", null, "3520", null, "192752", null, "8897", null, "73617", null, "5088", null, "43462", null, "5246", null, "10116", null, "2437", null, "33346", null, "4228", null, "159962", null, "8832", null, "47223", null, "5695", null, "25549", null, "3826", null, "21560", null, "4386", null, "5812", null, "1959", null, "15748", null, "3586", null, "114", null, "136", null, "229818", null, "9775", null, "48068", null, "3998", null, "21902", null, "2960", null, "4304", null, "1581", null, "17598", null, "2644", null, "159848", null, "8831", null, "31277", null, "4481", null, "245764", null, "8512", null, "56508", null, "5349", null, "220533", null, "9498", null, "118388", null, "4615", null, "121016", null, "7480", null, "-999999999", "N", "-999999999", "N", "18724", null, "2636", null, "-999999999", "N", "-999999999", "N", "4528", null, "1620", null, "13947", null, "2663", null, "13198", null, "2526", null, "115103", null, "4471", null, "79959", null, "3632", null, "117079", null, "6565", null, "13564", null, "2107", null, "35219", null, "4646", null, "68296", null, "4957", null, "75.8", null, "1.8", null, "30.4", null, "1.3", null, "69.6", null, "1.3", null, "26.6", null, "1.8", null, "15.7", null, "1.8", null, "3.7", null, "0.9", null, "12.0", null, "1.5", null, "57.7", null, "2.2", null, "17.0", null, "2.0", null, "9.2", null, "1.3", null, "7.8", null, "1.6", null, "2.1", null, "0.7", null, "5.7", null, "1.3", null, "0.0", null, "0.1", null, "83.0", null, "2.0", null, "17.4", null, "1.4", null, "7.9", null, "1.0", null, "1.6", null, "0.6", null, "6.4", null, "0.9", null, "57.7", null, "2.2", null, "11.3", null, "1.5", null, "88.7", null, "1.5", null, "20.4", null, "1.8", null, "79.6", null, "1.8", null, "42.7", null, "1.7", null, "43.7", null, "1.8", null, "-999999999.0", "N", "-999999999.0", "N", "6.8", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "1.6", null, "0.6", null, "5.0", null, "0.9", null, "4.8", null, "0.9", null, "41.5", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.6", null, "1.7", null, "30.1", null, "3.3", null, "58.3", null, "3.3", null, "42", "03"], ["5001900US4204", "Congressional District 4 (119th Congress), Pennsylvania", "301711", null, "4253", null, "139356", null, "3846", null, "162355", null, "4030", null, "160834", null, "4341", null, "39942", null, "3671", null, "12989", null, "1920", null, "26953", null, "3062", null, "100935", null, "4551", null, "87964", null, "3975", null, "66970", null, "3410", null, "20512", null, "3034", null, "6845", null, "1737", null, "13667", null, "2440", null, "482", null, "328", null, "213747", null, "5014", null, "93864", null, "3447", null, "19430", null, "2236", null, "6144", null, "1320", null, "13286", null, "2029", null, "100453", null, "4578", null, "20867", null, "2551", null, "280844", null, "4416", null, "70978", null, "4131", null, "230733", null, "4716", null, "237921", null, "4788", null, "24203", null, "2244", null, "-999999999", "N", "-999999999", "N", "18557", null, "1425", null, "-999999999", "N", "-999999999", "N", "4792", null, "1279", null, "15677", null, "2117", null, "15258", null, "1998", null, "234245", null, "4807", null, "108414", null, "3663", null, "200776", null, "4744", null, "26696", null, "1887", null, "50574", null, "3299", null, "123506", null, "4184", null, "-888888888", "(X)", "-888888888", "(X)", "46.2", null, "1.1", null, "53.8", null, "1.1", null, "53.3", null, "1.4", null, "13.2", null, "1.2", null, "4.3", null, "0.6", null, "8.9", null, "1.0", null, "33.5", null, "1.4", null, "29.2", null, "1.3", null, "22.2", null, "1.2", null, "6.8", null, "1.0", null, "2.3", null, "0.6", null, "4.5", null, "0.8", null, "0.2", null, "0.1", null, "70.8", null, "1.3", null, "31.1", null, "1.1", null, "6.4", null, "0.7", null, "2.0", null, "0.4", null, "4.4", null, "0.7", null, "33.3", null, "1.4", null, "6.9", null, "0.8", null, "93.1", null, "0.8", null, "23.5", null, "1.3", null, "76.5", null, "1.3", null, "78.9", null, "1.0", null, "8.0", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "6.2", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "1.6", null, "0.4", null, "5.2", null, "0.7", null, "5.1", null, "0.7", null, "77.6", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.3", null, "1.0", null, "25.2", null, "1.4", null, "61.5", null, "1.5", null, "22648", null, "2795", null, "10949", null, "1790", null, "11699", null, "2133", null, "6187", null, "1575", null, "9890", null, "1724", null, "2269", null, "894", null, "7621", null, "1537", null, "6571", null, "1576", null, "8586", null, "2084", null, "3309", null, "1177", null, "5277", null, "1515", null, "1253", null, "692", null, "4024", null, "1375", null, "0", null, "192", null, "14062", null, "2282", null, "2878", null, "970", null, "4613", null, "1431", null, "1016", null, "576", null, "3597", null, "1210", null, "6571", null, "1576", null, "6127", null, "1720", null, "16521", null, "2377", null, "10767", null, "2074", null, "11881", null, "2025", null, "13355", null, "1910", null, "4157", null, "1362", null, "-999999999", "N", "-999999999", "N", "1182", null, "739", null, "-999999999", "N", "-999999999", "N", "1448", null, "989", null, "2506", null, "951", null, "2520", null, "1235", null, "13190", null, "1927", null, "41333", null, "6082", null, "16077", null, "2419", null, "3039", null, "1102", null, "7186", null, "1348", null, "5852", null, "1585", null, "7.5", null, "0.9", null, "48.3", null, "6.1", null, "51.7", null, "6.1", null, "27.3", null, "5.8", null, "43.7", null, "5.9", null, "10.0", null, "3.8", null, "33.6", null, "5.8", null, "29.0", null, "6.1", null, "37.9", null, "7.5", null, "14.6", null, "4.9", null, "23.3", null, "5.8", null, "5.5", null, "3.0", null, "17.8", null, "5.4", null, "0.0", null, "0.7", null, "62.1", null, "7.5", null, "12.7", null, "3.9", null, "20.4", null, "6.2", null, "4.5", null, "2.4", null, "15.9", null, "5.4", null, "29.0", null, "6.1", null, "27.1", null, "6.5", null, "72.9", null, "6.5", null, "47.5", null, "6.7", null, "52.5", null, "6.7", null, "59.0", null, "6.5", null, "18.4", null, "5.3", null, "-999999999.0", "N", "-999999999.0", "N", "5.2", null, "3.4", null, "-999999999.0", "N", "-999999999.0", "N", "6.4", null, "4.0", null, "11.1", null, "3.7", null, "11.1", null, "4.8", null, "58.2", null, "6.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.9", null, "6.8", null, "44.7", null, "5.8", null, "36.4", null, "6.9", null, "279063", null, "4910", null, "128407", null, "3830", null, "150656", null, "4331", null, "154647", null, "4235", null, "30052", null, "3147", null, "10720", null, "1846", null, "19332", null, "2595", null, "94364", null, "4847", null, "79378", null, "3570", null, "63661", null, "3045", null, "15235", null, "2522", null, "5592", null, "1543", null, "9643", null, "1927", null, "482", null, "328", null, "199685", null, "5247", null, "90986", null, "3516", null, "14817", null, "1793", null, "5128", null, "1184", null, "9689", null, "1595", null, "93882", null, "4859", null, "14740", null, "1999", null, "264323", null, "4883", null, "60211", null, "3755", null, "218852", null, "4824", null, "224566", null, "5160", null, "20046", null, "2332", null, "-999999999", "N", "-999999999", "N", "17375", null, "1359", null, "-999999999", "N", "-999999999", "N", "3344", null, "1165", null, "13171", null, "1859", null, "12738", null, "2084", null, "221055", null, "5162", null, "115956", null, "3886", null, "184699", null, "4665", null, "23657", null, "1743", null, "43388", null, "3236", null, "117654", null, "4365", null, "92.5", null, "0.9", null, "46.0", null, "1.2", null, "54.0", null, "1.2", null, "55.4", null, "1.5", null, "10.8", null, "1.1", null, "3.8", null, "0.6", null, "6.9", null, "0.9", null, "33.8", null, "1.5", null, "28.4", null, "1.2", null, "22.8", null, "1.1", null, "5.5", null, "0.9", null, "2.0", null, "0.5", null, "3.5", null, "0.7", null, "0.2", null, "0.1", null, "71.6", null, "1.2", null, "32.6", null, "1.2", null, "5.3", null, "0.6", null, "1.8", null, "0.4", null, "3.5", null, "0.6", null, "33.6", null, "1.5", null, "5.3", null, "0.7", null, "94.7", null, "0.7", null, "21.6", null, "1.2", null, "78.4", null, "1.2", null, "80.5", null, "1.1", null, "7.2", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "6.2", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "1.2", null, "0.4", null, "4.7", null, "0.7", null, "4.6", null, "0.7", null, "79.2", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.8", null, "1.0", null, "23.5", null, "1.6", null, "63.7", null, "1.6", null, "42", "04"], ["5001900US4205", "Congressional District 5 (119th Congress), Pennsylvania", "293296", null, "4309", null, "124681", null, "3547", null, "168615", null, "4346", null, "127820", null, "4824", null, "56619", null, "4502", null, "14505", null, "2419", null, "42114", null, "3292", null, "108857", null, "4942", null, "84523", null, "4767", null, "54141", null, "3272", null, "30219", null, "3684", null, "7451", null, "1882", null, "22768", null, "2686", null, "163", null, "190", null, "208773", null, "6150", null, "73679", null, "3906", null, "26400", null, "3396", null, "7054", null, "1848", null, "19346", null, "2684", null, "108694", null, "4934", null, "38367", null, "3326", null, "254929", null, "4882", null, "78073", null, "4713", null, "215223", null, "5397", null, "180296", null, "3873", null, "74180", null, "3617", null, "614", null, "474", null, "19402", null, "1537", null, "-999999999", "N", "-999999999", "N", "7490", null, "1888", null, "11265", null, "1856", null, "12779", null, "1576", null, "178599", null, "3729", null, "85873", null, "3378", null, "184439", null, "5131", null, "24438", null, "2688", null, "54654", null, "4244", null, "105347", null, "4456", null, "-888888888", "(X)", "-888888888", "(X)", "42.5", null, "1.1", null, "57.5", null, "1.1", null, "43.6", null, "1.6", null, "19.3", null, "1.5", null, "4.9", null, "0.8", null, "14.4", null, "1.1", null, "37.1", null, "1.6", null, "28.8", null, "1.6", null, "18.5", null, "1.1", null, "10.3", null, "1.3", null, "2.5", null, "0.6", null, "7.8", null, "0.9", null, "0.1", null, "0.1", null, "71.2", null, "1.6", null, "25.1", null, "1.3", null, "9.0", null, "1.1", null, "2.4", null, "0.6", null, "6.6", null, "0.9", null, "37.1", null, "1.6", null, "13.1", null, "1.1", null, "86.9", null, "1.1", null, "26.6", null, "1.5", null, "73.4", null, "1.5", null, "61.5", null, "1.2", null, "25.3", null, "1.1", null, "0.2", null, "0.2", null, "6.6", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "2.6", null, "0.6", null, "3.8", null, "0.6", null, "4.4", null, "0.5", null, "60.9", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.2", null, "1.4", null, "29.6", null, "2.0", null, "57.1", null, "2.0", null, "48499", null, "4044", null, "19836", null, "2684", null, "28663", null, "3223", null, "9548", null, "2065", null, "20622", null, "2529", null, "3632", null, "1312", null, "16990", null, "2290", null, "18329", null, "2650", null, "20096", null, "2918", null, "5839", null, "1616", null, "14134", null, "2345", null, "2202", null, "1026", null, "11932", null, "2140", null, "123", null, "151", null, "28403", null, "3663", null, "3709", null, "1091", null, "6488", null, "1720", null, "1430", null, "785", null, "5058", null, "1432", null, "18206", null, "2647", null, "17466", null, "2522", null, "31033", null, "3779", null, "21066", null, "2965", null, "27433", null, "3782", null, "15273", null, "2236", null, "25414", null, "3243", null, "49", null, "55", null, "3254", null, "1005", null, "-999999999", "N", "-999999999", "N", "2716", null, "1254", null, "1793", null, "1182", null, "3068", null, "1223", null, "15228", null, "2237", null, "31989", null, "4751", null, "30170", null, "3141", null, "6605", null, "1777", null, "12099", null, "2409", null, "11466", null, "2104", null, "16.5", null, "1.3", null, "40.9", null, "4.4", null, "59.1", null, "4.4", null, "19.7", null, "3.8", null, "42.5", null, "4.3", null, "7.5", null, "2.6", null, "35.0", null, "4.3", null, "37.8", null, "4.3", null, "41.4", null, "5.3", null, "12.0", null, "3.1", null, "29.1", null, "4.5", null, "4.5", null, "2.0", null, "24.6", null, "4.4", null, "0.3", null, "0.3", null, "58.6", null, "5.3", null, "7.6", null, "2.1", null, "13.4", null, "3.3", null, "2.9", null, "1.6", null, "10.4", null, "2.8", null, "37.5", null, "4.3", null, "36.0", null, "4.8", null, "64.0", null, "4.8", null, "43.4", null, "5.5", null, "56.6", null, "5.5", null, "31.5", null, "3.7", null, "52.4", null, "4.9", null, "0.1", null, "0.1", null, "6.7", null, "2.0", null, "-999999999.0", "N", "-999999999.0", "N", "5.6", null, "2.5", null, "3.7", null, "2.5", null, "6.3", null, "2.5", null, "31.4", null, "3.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "21.9", null, "5.6", null, "40.1", null, "6.7", null, "38.0", null, "5.8", null, "244797", null, "4990", null, "104845", null, "3526", null, "139952", null, "4637", null, "118272", null, "4747", null, "35997", null, "3329", null, "10873", null, "1898", null, "25124", null, "2618", null, "90528", null, "4787", null, "64427", null, "3618", null, "48302", null, "3088", null, "16085", null, "2354", null, "5249", null, "1424", null, "10836", null, "1681", null, "40", null, "66", null, "180370", null, "5399", null, "69970", null, "3758", null, "19912", null, "2716", null, "5624", null, "1641", null, "14288", null, "2100", null, "90488", null, "4791", null, "20901", null, "2535", null, "223896", null, "4895", null, "57007", null, "3718", null, "187790", null, "4985", null, "165023", null, "4001", null, "48766", null, "3553", null, "565", null, "474", null, "16148", null, "1527", null, "-999999999", "N", "-999999999", "N", "4774", null, "1354", null, "9472", null, "1613", null, "9711", null, "1563", null, "163371", null, "3876", null, "99747", null, "3430", null, "154269", null, "4709", null, "17833", null, "2175", null, "42555", null, "3516", null, "93881", null, "4252", null, "83.5", null, "1.3", null, "42.8", null, "1.3", null, "57.2", null, "1.3", null, "48.3", null, "1.8", null, "14.7", null, "1.4", null, "4.4", null, "0.8", null, "10.3", null, "1.1", null, "37.0", null, "1.7", null, "26.3", null, "1.4", null, "19.7", null, "1.2", null, "6.6", null, "1.0", null, "2.1", null, "0.6", null, "4.4", null, "0.7", null, "0.0", null, "0.1", null, "73.7", null, "1.4", null, "28.6", null, "1.5", null, "8.1", null, "1.1", null, "2.3", null, "0.7", null, "5.8", null, "0.8", null, "37.0", null, "1.7", null, "8.5", null, "1.0", null, "91.5", null, "1.0", null, "23.3", null, "1.4", null, "76.7", null, "1.4", null, "67.4", null, "1.4", null, "19.9", null, "1.3", null, "0.2", null, "0.2", null, "6.6", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "2.0", null, "0.6", null, "3.9", null, "0.7", null, "4.0", null, "0.6", null, "66.7", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.6", null, "1.3", null, "27.6", null, "2.1", null, "60.9", null, "2.1", null, "42", "05"], ["5001900US4206", "Congressional District 6 (119th Congress), Pennsylvania", "298456", null, "2997", null, "131214", null, "3193", null, "167242", null, "3578", null, "161846", null, "4643", null, "46800", null, "3377", null, "14075", null, "2414", null, "32725", null, "2645", null, "89810", null, "4254", null, "96031", null, "3294", null, "69899", null, "3285", null, "25676", null, "2393", null, "7283", null, "1610", null, "18393", null, "2219", null, "456", null, "444", null, "202425", null, "3808", null, "91947", null, "3239", null, "21124", null, "2297", null, "6792", null, "1629", null, "14332", null, "1794", null, "89354", null, "4231", null, "28051", null, "2744", null, "270405", null, "3768", null, "67670", null, "3897", null, "230786", null, "4259", null, "222691", null, "2905", null, "14724", null, "1549", null, "-999999999", "N", "-999999999", "N", "16191", null, "988", null, "-999999999", "N", "-999999999", "N", "11710", null, "2144", null, "31860", null, "2876", null, "42132", null, "2388", null, "218078", null, "2818", null, "109810", null, "3325", null, "208646", null, "4623", null, "26356", null, "2217", null, "57914", null, "3636", null, "124376", null, "4458", null, "-888888888", "(X)", "-888888888", "(X)", "44.0", null, "1.0", null, "56.0", null, "1.0", null, "54.2", null, "1.4", null, "15.7", null, "1.1", null, "4.7", null, "0.8", null, "11.0", null, "0.9", null, "30.1", null, "1.4", null, "32.2", null, "1.1", null, "23.4", null, "1.1", null, "8.6", null, "0.8", null, "2.4", null, "0.5", null, "6.2", null, "0.7", null, "0.2", null, "0.1", null, "67.8", null, "1.1", null, "30.8", null, "1.0", null, "7.1", null, "0.8", null, "2.3", null, "0.5", null, "4.8", null, "0.6", null, "29.9", null, "1.4", null, "9.4", null, "0.9", null, "90.6", null, "0.9", null, "22.7", null, "1.3", null, "77.3", null, "1.3", null, "74.6", null, "0.9", null, "4.9", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "5.4", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "3.9", null, "0.7", null, "10.7", null, "0.9", null, "14.1", null, "0.7", null, "73.1", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.6", null, "1.0", null, "27.8", null, "1.6", null, "59.6", null, "1.7", null, "30466", null, "2870", null, "12267", null, "1931", null, "18199", null, "2556", null, "6940", null, "1614", null, "14207", null, "2274", null, "3145", null, "1187", null, "11062", null, "2071", null, "9319", null, "1619", null, "15222", null, "2268", null, "4843", null, "1319", null, "10270", null, "1882", null, "1935", null, "915", null, "8335", null, "1740", null, "109", null, "154", null, "15244", null, "2252", null, "2097", null, "839", null, "3937", null, "1237", null, "1210", null, "717", null, "2727", null, "902", null, "9210", null, "1604", null, "13290", null, "1938", null, "17176", null, "2545", null, "12604", null, "1974", null, "17862", null, "2494", null, "13909", null, "2280", null, "3080", null, "923", null, "-999999999", "N", "-999999999", "N", "560", null, "585", null, "-999999999", "N", "-999999999", "N", "3094", null, "1171", null, "9794", null, "1727", null, "13766", null, "2004", null, "12371", null, "2015", null, "31101", null, "2331", null, "21147", null, "2609", null, "2802", null, "820", null, "10123", null, "2043", null, "8222", null, "1776", null, "10.2", null, "0.9", null, "40.3", null, "5.5", null, "59.7", null, "5.5", null, "22.8", null, "4.7", null, "46.6", null, "6.0", null, "10.3", null, "3.7", null, "36.3", null, "5.9", null, "30.6", null, "4.8", null, "50.0", null, "5.7", null, "15.9", null, "3.9", null, "33.7", null, "5.6", null, "6.4", null, "3.0", null, "27.4", null, "5.3", null, "0.4", null, "0.5", null, "50.0", null, "5.7", null, "6.9", null, "2.7", null, "12.9", null, "3.7", null, "4.0", null, "2.3", null, "9.0", null, "2.8", null, "30.2", null, "4.8", null, "43.6", null, "5.6", null, "56.4", null, "5.6", null, "41.4", null, "5.6", null, "58.6", null, "5.6", null, "45.7", null, "5.9", null, "10.1", null, "3.0", null, "-999999999.0", "N", "-999999999.0", "N", "1.8", null, "1.9", null, "-999999999.0", "N", "-999999999.0", "N", "10.2", null, "3.6", null, "32.1", null, "5.2", null, "45.2", null, "5.1", null, "40.6", null, "5.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.3", null, "4.1", null, "47.9", null, "7.1", null, "38.9", null, "6.6", null, "267990", null, "3704", null, "118947", null, "2942", null, "149043", null, "3884", null, "154906", null, "4398", null, "32593", null, "3010", null, "10930", null, "2141", null, "21663", null, "2266", null, "80491", null, "3984", null, "80809", null, "2999", null, "65056", null, "3128", null, "15406", null, "2035", null, "5348", null, "1416", null, "10058", null, "1643", null, "347", null, "415", null, "187181", null, "4067", null, "89850", null, "3221", null, "17187", null, "2051", null, "5582", null, "1449", null, "11605", null, "1672", null, "80144", null, "3964", null, "14761", null, "2112", null, "253229", null, "3806", null, "55066", null, "3788", null, "212924", null, "4629", null, "208782", null, "3136", null, "11644", null, "1612", null, "-999999999", "N", "-999999999", "N", "15631", null, "1137", null, "-999999999", "N", "-999999999", "N", "8616", null, "1779", null, "22066", null, "2562", null, "28366", null, "2413", null, "205707", null, "3052", null, "120672", null, "2657", null, "187499", null, "4275", null, "23554", null, "2018", null, "47791", null, "3209", null, "116154", null, "4184", null, "89.8", null, "0.9", null, "44.4", null, "1.1", null, "55.6", null, "1.1", null, "57.8", null, "1.6", null, "12.2", null, "1.1", null, "4.1", null, "0.8", null, "8.1", null, "0.8", null, "30.0", null, "1.4", null, "30.2", null, "1.1", null, "24.3", null, "1.2", null, "5.7", null, "0.8", null, "2.0", null, "0.5", null, "3.8", null, "0.6", null, "0.1", null, "0.2", null, "69.8", null, "1.1", null, "33.5", null, "1.1", null, "6.4", null, "0.8", null, "2.1", null, "0.5", null, "4.3", null, "0.6", null, "29.9", null, "1.4", null, "5.5", null, "0.8", null, "94.5", null, "0.8", null, "20.5", null, "1.4", null, "79.5", null, "1.4", null, "77.9", null, "0.9", null, "4.3", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "5.8", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "3.2", null, "0.7", null, "8.2", null, "0.9", null, "10.6", null, "0.8", null, "76.8", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.6", null, "1.1", null, "25.5", null, "1.6", null, "61.9", null, "1.7", null, "42", "06"], ["5001900US4207", "Congressional District 7 (119th Congress), Pennsylvania", "300584", null, "3039", null, "140493", null, "3069", null, "160091", null, "3801", null, "144945", null, "4800", null, "55373", null, "3982", null, "16176", null, "2310", null, "39197", null, "3501", null, "100266", null, "4998", null, "89148", null, "3805", null, "53927", null, "2952", null, "33670", null, "3434", null, "8754", null, "1765", null, "24916", null, "3028", null, "1551", null, "1063", null, "211436", null, "4150", null, "91018", null, "3844", null, "21703", null, "2673", null, "7422", null, "1634", null, "14281", null, "2346", null, "98715", null, "4943", null, "31137", null, "3075", null, "269447", null, "3923", null, "84311", null, "4358", null, "216273", null, "5140", null, "224072", null, "3667", null, "15641", null, "1746", null, "-999999999", "N", "-999999999", "N", "8219", null, "1001", null, "-999999999", "N", "-999999999", "N", "26878", null, "2889", null, "24188", null, "2827", null, "53050", null, "2633", null, "217303", null, "3421", null, "82166", null, "2726", null, "200318", null, "5199", null, "32176", null, "2183", null, "59896", null, "3981", null, "108246", null, "4792", null, "-888888888", "(X)", "-888888888", "(X)", "46.7", null, "1.0", null, "53.3", null, "1.0", null, "48.2", null, "1.6", null, "18.4", null, "1.3", null, "5.4", null, "0.8", null, "13.0", null, "1.1", null, "33.4", null, "1.6", null, "29.7", null, "1.2", null, "17.9", null, "1.0", null, "11.2", null, "1.1", null, "2.9", null, "0.6", null, "8.3", null, "1.0", null, "0.5", null, "0.4", null, "70.3", null, "1.2", null, "30.3", null, "1.3", null, "7.2", null, "0.9", null, "2.5", null, "0.5", null, "4.8", null, "0.8", null, "32.8", null, "1.6", null, "10.4", null, "1.0", null, "89.6", null, "1.0", null, "28.0", null, "1.5", null, "72.0", null, "1.5", null, "74.5", null, "1.1", null, "5.2", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "2.7", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "8.9", null, "0.9", null, "8.0", null, "0.9", null, "17.6", null, "0.8", null, "72.3", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.1", null, "1.1", null, "29.9", null, "1.8", null, "54.0", null, "1.9", null, "42998", null, "3526", null, "19734", null, "2661", null, "23264", null, "2755", null, "10832", null, "1989", null, "18611", null, "2703", null, "4391", null, "1536", null, "14220", null, "2164", null, "13555", null, "2140", null, "19148", null, "2730", null, "6823", null, "1680", null, "12180", null, "2283", null, "2521", null, "1110", null, "9659", null, "1892", null, "145", null, "211", null, "23850", null, "2784", null, "4009", null, "1077", null, "6431", null, "1547", null, "1870", null, "988", null, "4561", null, "1336", null, "13410", null, "2099", null, "14498", null, "2325", null, "28500", null, "3000", null, "21763", null, "2680", null, "21235", null, "2748", null, "22713", null, "2490", null, "4075", null, "1249", null, "-999999999", "N", "-999999999", "N", "949", null, "538", null, "-999999999", "N", "-999999999", "N", "8359", null, "1974", null, "6848", null, "1746", null, "17264", null, "2362", null, "20658", null, "2277", null, "33722", null, "3188", null, "29443", null, "3311", null, "4888", null, "1218", null, "13105", null, "2382", null, "11450", null, "2183", null, "14.3", null, "1.2", null, "45.9", null, "4.8", null, "54.1", null, "4.8", null, "25.2", null, "4.1", null, "43.3", null, "4.9", null, "10.2", null, "3.5", null, "33.1", null, "4.0", null, "31.5", null, "4.7", null, "44.5", null, "5.0", null, "15.9", null, "3.5", null, "28.3", null, "4.9", null, "5.9", null, "2.5", null, "22.5", null, "4.2", null, "0.3", null, "0.5", null, "55.5", null, "5.0", null, "9.3", null, "2.5", null, "15.0", null, "3.1", null, "4.3", null, "2.3", null, "10.6", null, "2.8", null, "31.2", null, "4.6", null, "33.7", null, "4.6", null, "66.3", null, "4.6", null, "50.6", null, "4.8", null, "49.4", null, "4.8", null, "52.8", null, "4.0", null, "9.5", null, "2.7", null, "-999999999.0", "N", "-999999999.0", "N", "2.2", null, "1.2", null, "-999999999.0", "N", "-999999999.0", "N", "19.4", null, "4.5", null, "15.9", null, "3.8", null, "40.2", null, "4.3", null, "48.0", null, "3.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.6", null, "4.0", null, "44.5", null, "6.1", null, "38.9", null, "5.8", null, "257586", null, "4595", null, "120759", null, "3012", null, "136827", null, "4120", null, "134113", null, "4713", null, "36762", null, "3278", null, "11785", null, "1805", null, "24977", null, "2915", null, "86711", null, "4641", null, "70000", null, "4028", null, "47104", null, "2960", null, "21490", null, "2685", null, "6233", null, "1316", null, "15257", null, "2441", null, "1406", null, "1068", null, "187586", null, "4557", null, "87009", null, "3737", null, "15272", null, "2214", null, "5552", null, "1428", null, "9720", null, "1808", null, "85305", null, "4674", null, "16639", null, "2187", null, "240947", null, "4562", null, "62548", null, "3786", null, "195038", null, "5337", null, "201359", null, "4025", null, "11566", null, "1731", null, "-999999999", "N", "-999999999", "N", "7270", null, "986", null, "-999999999", "N", "-999999999", "N", "18519", null, "2657", null, "17340", null, "2479", null, "35786", null, "2982", null, "196645", null, "3890", null, "90667", null, "1802", null, "170875", null, "5612", null, "27288", null, "1926", null, "46791", null, "3515", null, "96796", null, "4610", null, "85.7", null, "1.2", null, "46.9", null, "1.1", null, "53.1", null, "1.1", null, "52.1", null, "1.6", null, "14.3", null, "1.2", null, "4.6", null, "0.7", null, "9.7", null, "1.1", null, "33.7", null, "1.7", null, "27.2", null, "1.4", null, "18.3", null, "1.1", null, "8.3", null, "1.0", null, "2.4", null, "0.5", null, "5.9", null, "0.9", null, "0.5", null, "0.4", null, "72.8", null, "1.4", null, "33.8", null, "1.4", null, "5.9", null, "0.9", null, "2.2", null, "0.6", null, "3.8", null, "0.7", null, "33.1", null, "1.8", null, "6.5", null, "0.8", null, "93.5", null, "0.8", null, "24.3", null, "1.4", null, "75.7", null, "1.4", null, "78.2", null, "1.2", null, "4.5", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "2.8", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "7.2", null, "1.0", null, "6.7", null, "0.9", null, "13.9", null, "1.1", null, "76.3", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.0", null, "1.1", null, "27.4", null, "1.8", null, "56.6", null, "1.9", null, "42", "07"], ["5001900US4208", "Congressional District 8 (119th Congress), Pennsylvania", "311893", null, "4478", null, "154959", null, "4017", null, "156934", null, "4885", null, "134959", null, "4314", null, "57578", null, "3646", null, "17444", null, "1842", null, "40134", null, "3185", null, "119356", null, "4723", null, "78856", null, "4150", null, "48014", null, "3384", null, "30488", null, "2906", null, "8824", null, "1666", null, "21664", null, "2398", null, "354", null, "238", null, "233037", null, "4397", null, "86945", null, "3716", null, "27090", null, "2561", null, "8620", null, "1180", null, "18470", null, "2158", null, "119002", null, "4693", null, "42750", null, "3024", null, "269143", null, "4922", null, "101352", null, "4796", null, "210541", null, "5279", null, "247039", null, "4028", null, "16684", null, "1601", null, "997", null, "563", null, "5244", null, "659", null, "-999999999", "N", "-999999999", "N", "16304", null, "1817", null, "25625", null, "2275", null, "37180", null, "2161", null, "242281", null, "3938", null, "69715", null, "1889", null, "192537", null, "4866", null, "34258", null, "2331", null, "64132", null, "3693", null, "94147", null, "4026", null, "-888888888", "(X)", "-888888888", "(X)", "49.7", null, "1.2", null, "50.3", null, "1.2", null, "43.3", null, "1.3", null, "18.5", null, "1.1", null, "5.6", null, "0.6", null, "12.9", null, "1.0", null, "38.3", null, "1.4", null, "25.3", null, "1.2", null, "15.4", null, "1.0", null, "9.8", null, "0.9", null, "2.8", null, "0.5", null, "6.9", null, "0.7", null, "0.1", null, "0.1", null, "74.7", null, "1.2", null, "27.9", null, "1.2", null, "8.7", null, "0.8", null, "2.8", null, "0.4", null, "5.9", null, "0.7", null, "38.2", null, "1.4", null, "13.7", null, "1.0", null, "86.3", null, "1.0", null, "32.5", null, "1.4", null, "67.5", null, "1.4", null, "79.2", null, "0.8", null, "5.3", null, "0.5", null, "0.3", null, "0.2", null, "1.7", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "5.2", null, "0.6", null, "8.2", null, "0.7", null, "11.9", null, "0.6", null, "77.7", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.8", null, "1.2", null, "33.3", null, "1.7", null, "48.9", null, "1.6", null, "55665", null, "3904", null, "25624", null, "2554", null, "30041", null, "3377", null, "14688", null, "2357", null, "20056", null, "2394", null, "4470", null, "1244", null, "15586", null, "2013", null, "20921", null, "2507", null, "20772", null, "2552", null, "7955", null, "1787", null, "12677", null, "1843", null, "2599", null, "961", null, "10078", null, "1680", null, "140", null, "150", null, "34893", null, "3313", null, "6733", null, "1300", null, "7379", null, "1708", null, "1871", null, "740", null, "5508", null, "1372", null, "20781", null, "2509", null, "21937", null, "2346", null, "33728", null, "3259", null, "29220", null, "2986", null, "26445", null, "3104", null, "35728", null, "3172", null, "5747", null, "1297", null, "432", null, "359", null, "659", null, "373", null, "-999999999", "N", "-999999999", "N", "5476", null, "1371", null, "7623", null, "1755", null, "11674", null, "1978", null, "34337", null, "3031", null, "32315", null, "4826", null, "34744", null, "3271", null, "8291", null, "1695", null, "14538", null, "2185", null, "11915", null, "2207", null, "17.8", null, "1.2", null, "46.0", null, "4.0", null, "54.0", null, "4.0", null, "26.4", null, "3.5", null, "36.0", null, "3.8", null, "8.0", null, "2.2", null, "28.0", null, "3.3", null, "37.6", null, "3.8", null, "37.3", null, "3.9", null, "14.3", null, "2.9", null, "22.8", null, "3.2", null, "4.7", null, "1.8", null, "18.1", null, "2.9", null, "0.3", null, "0.3", null, "62.7", null, "3.9", null, "12.1", null, "2.2", null, "13.3", null, "2.9", null, "3.4", null, "1.3", null, "9.9", null, "2.4", null, "37.3", null, "3.7", null, "39.4", null, "3.5", null, "60.6", null, "3.5", null, "52.5", null, "4.2", null, "47.5", null, "4.2", null, "64.2", null, "3.9", null, "10.3", null, "2.3", null, "0.8", null, "0.6", null, "1.2", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "9.8", null, "2.4", null, "13.7", null, "2.8", null, "21.0", null, "3.1", null, "61.7", null, "3.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "23.9", null, "4.3", null, "41.8", null, "5.5", null, "34.3", null, "5.1", null, "256228", null, "5333", null, "129335", null, "3623", null, "126893", null, "5093", null, "120271", null, "4302", null, "37522", null, "2793", null, "12974", null, "1496", null, "24548", null, "2519", null, "98435", null, "4802", null, "58084", null, "4017", null, "40059", null, "3201", null, "17811", null, "2370", null, "6225", null, "1349", null, "11586", null, "2036", null, "214", null, "189", null, "198144", null, "4739", null, "80212", null, "3916", null, "19711", null, "2122", null, "6749", null, "1089", null, "12962", null, "1677", null, "98221", null, "4782", null, "20813", null, "2507", null, "235415", null, "5686", null, "72132", null, "3785", null, "184096", null, "5614", null, "211311", null, "4723", null, "10937", null, "1444", null, "565", null, "423", null, "4585", null, "721", null, "-999999999", "N", "-999999999", "N", "10828", null, "1666", null, "18002", null, "2186", null, "25506", null, "2425", null, "207944", null, "4620", null, "77185", null, "3119", null, "157793", null, "4803", null, "25967", null, "1870", null, "49594", null, "3378", null, "82232", null, "3912", null, "82.2", null, "1.2", null, "50.5", null, "1.4", null, "49.5", null, "1.4", null, "46.9", null, "1.5", null, "14.6", null, "1.1", null, "5.1", null, "0.6", null, "9.6", null, "1.0", null, "38.4", null, "1.6", null, "22.7", null, "1.4", null, "15.6", null, "1.1", null, "7.0", null, "0.9", null, "2.4", null, "0.5", null, "4.5", null, "0.8", null, "0.1", null, "0.1", null, "77.3", null, "1.4", null, "31.3", null, "1.6", null, "7.7", null, "0.8", null, "2.6", null, "0.4", null, "5.1", null, "0.7", null, "38.3", null, "1.6", null, "8.1", null, "1.0", null, "91.9", null, "1.0", null, "28.2", null, "1.4", null, "71.8", null, "1.4", null, "82.5", null, "1.0", null, "4.3", null, "0.5", null, "0.2", null, "0.2", null, "1.8", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "4.2", null, "0.6", null, "7.0", null, "0.8", null, "10.0", null, "0.9", null, "81.2", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.5", null, "1.2", null, "31.4", null, "1.8", null, "52.1", null, "1.8", null, "42", "08"], ["5001900US4209", "Congressional District 9 (119th Congress), Pennsylvania", "319363", null, "4173", null, "153963", null, "3273", null, "165400", null, "4414", null, "154313", null, "4048", null, "49534", null, "3579", null, "15918", null, "1786", null, "33616", null, "3034", null, "115516", null, "4339", null, "82723", null, "3770", null, "53189", null, "2581", null, "28384", null, "2814", null, "8816", null, "1472", null, "19568", null, "2501", null, "1150", null, "579", null, "236640", null, "4532", null, "101124", null, "3559", null, "21150", null, "2261", null, "7102", null, "961", null, "14048", null, "1991", null, "114366", null, "4324", null, "39053", null, "3153", null, "280310", null, "4680", null, "97345", null, "4442", null, "222018", null, "5411", null, "290634", null, "4085", null, "4457", null, "1163", null, "284", null, "203", null, "1840", null, "425", null, "-999999999", "N", "-999999999", "N", "6444", null, "1457", null, "15629", null, "2002", null, "17290", null, "1702", null, "285678", null, "3841", null, "68016", null, "1835", null, "203847", null, "5026", null, "38676", null, "2038", null, "60803", null, "3479", null, "104368", null, "4132", null, "-888888888", "(X)", "-888888888", "(X)", "48.2", null, "1.0", null, "51.8", null, "1.0", null, "48.3", null, "1.2", null, "15.5", null, "1.1", null, "5.0", null, "0.6", null, "10.5", null, "0.9", null, "36.2", null, "1.3", null, "25.9", null, "1.1", null, "16.7", null, "0.8", null, "8.9", null, "0.8", null, "2.8", null, "0.5", null, "6.1", null, "0.8", null, "0.4", null, "0.2", null, "74.1", null, "1.1", null, "31.7", null, "1.0", null, "6.6", null, "0.7", null, "2.2", null, "0.3", null, "4.4", null, "0.6", null, "35.8", null, "1.3", null, "12.2", null, "1.0", null, "87.8", null, "1.0", null, "30.5", null, "1.4", null, "69.5", null, "1.4", null, "91.0", null, "0.7", null, "1.4", null, "0.4", null, "0.1", null, "0.1", null, "0.6", null, "0.1", null, "-999999999.0", "N", "-999999999.0", "N", "2.0", null, "0.5", null, "4.9", null, "0.6", null, "5.4", null, "0.5", null, "89.5", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "19.0", null, "1.0", null, "29.8", null, "1.5", null, "51.2", null, "1.4", null, "47877", null, "2699", null, "19160", null, "1915", null, "28717", null, "2536", null, "10788", null, "1476", null, "18452", null, "2391", null, "4670", null, "1128", null, "13782", null, "2017", null, "18637", null, "1704", null, "19844", null, "2223", null, "6486", null, "1238", null, "12890", null, "2099", null, "3027", null, "929", null, "9863", null, "1818", null, "468", null, "400", null, "28033", null, "2291", null, "4302", null, "910", null, "5562", null, "1344", null, "1643", null, "586", null, "3919", null, "1263", null, "18169", null, "1715", null, "19418", null, "1736", null, "28459", null, "2404", null, "25976", null, "2840", null, "21901", null, "2381", null, "39613", null, "2461", null, "2236", null, "1054", null, "93", null, "78", null, "0", null, "192", null, "-999999999", "N", "-999999999", "N", "2027", null, "878", null, "3908", null, "1296", null, "5804", null, "1300", null, "37213", null, "2299", null, "27610", null, "2735", null, "29240", null, "2411", null, "6467", null, "1194", null, "12703", null, "1808", null, "10070", null, "1723", null, "15.0", null, "0.8", null, "40.0", null, "3.6", null, "60.0", null, "3.6", null, "22.5", null, "3.0", null, "38.5", null, "4.0", null, "9.8", null, "2.2", null, "28.8", null, "3.7", null, "38.9", null, "3.2", null, "41.4", null, "3.8", null, "13.5", null, "2.6", null, "26.9", null, "3.8", null, "6.3", null, "1.8", null, "20.6", null, "3.5", null, "1.0", null, "0.8", null, "58.6", null, "3.8", null, "9.0", null, "1.9", null, "11.6", null, "2.7", null, "3.4", null, "1.2", null, "8.2", null, "2.6", null, "37.9", null, "3.2", null, "40.6", null, "3.2", null, "59.4", null, "3.2", null, "54.3", null, "4.7", null, "45.7", null, "4.7", null, "82.7", null, "3.7", null, "4.7", null, "2.2", null, "0.2", null, "0.2", null, "0.0", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "4.2", null, "1.8", null, "8.2", null, "2.6", null, "12.1", null, "2.5", null, "77.7", null, "3.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "22.1", null, "4.1", null, "43.4", null, "4.8", null, "34.4", null, "4.9", null, "271486", null, "4307", null, "134803", null, "3014", null, "136683", null, "4186", null, "143525", null, "3980", null, "31082", null, "2760", null, "11248", null, "1520", null, "19834", null, "2161", null, "96879", null, "4302", null, "62879", null, "3124", null, "46703", null, "2524", null, "15494", null, "1763", null, "5789", null, "1128", null, "9705", null, "1492", null, "682", null, "439", null, "208607", null, "4788", null, "96822", null, "3588", null, "15588", null, "1782", null, "5459", null, "1025", null, "10129", null, "1372", null, "96197", null, "4267", null, "19635", null, "2344", null, "251851", null, "4500", null, "71369", null, "3328", null, "200117", null, "4778", null, "251021", null, "4137", null, "2221", null, "816", null, "191", null, "189", null, "1840", null, "425", null, "-999999999", "N", "-999999999", "N", "4417", null, "1111", null, "11721", null, "1795", null, "11486", null, "1768", null, "248465", null, "4011", null, "75693", null, "2048", null, "174607", null, "4476", null, "32209", null, "1826", null, "48100", null, "2994", null, "94298", null, "3731", null, "85.0", null, "0.8", null, "49.7", null, "1.1", null, "50.3", null, "1.1", null, "52.9", null, "1.4", null, "11.4", null, "1.0", null, "4.1", null, "0.6", null, "7.3", null, "0.8", null, "35.7", null, "1.4", null, "23.2", null, "1.1", null, "17.2", null, "0.9", null, "5.7", null, "0.6", null, "2.1", null, "0.4", null, "3.6", null, "0.5", null, "0.3", null, "0.2", null, "76.8", null, "1.1", null, "35.7", null, "1.2", null, "5.7", null, "0.6", null, "2.0", null, "0.4", null, "3.7", null, "0.5", null, "35.4", null, "1.4", null, "7.2", null, "0.8", null, "92.8", null, "0.8", null, "26.3", null, "1.2", null, "73.7", null, "1.2", null, "92.5", null, "0.7", null, "0.8", null, "0.3", null, "0.1", null, "0.1", null, "0.7", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "1.6", null, "0.4", null, "4.3", null, "0.6", null, "4.2", null, "0.6", null, "91.5", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.4", null, "1.1", null, "27.5", null, "1.5", null, "54.0", null, "1.4", null, "42", "09"], ["5001900US4210", "Congressional District 10 (119th Congress), Pennsylvania", "321438", null, "3470", null, "140003", null, "2975", null, "181435", null, "3589", null, "155010", null, "5062", null, "47459", null, "3967", null, "14307", null, "2154", null, "33152", null, "3230", null, "118969", null, "4231", null, "89731", null, "4785", null, "60513", null, "3633", null, "28455", null, "3209", null, "8330", null, "1899", null, "20125", null, "2912", null, "763", null, "492", null, "231707", null, "5011", null, "94497", null, "4277", null, "19004", null, "2537", null, "5977", null, "1380", null, "13027", null, "2231", null, "118206", null, "4214", null, "36487", null, "3471", null, "284951", null, "4413", null, "88358", null, "5187", null, "233080", null, "6163", null, "244756", null, "4546", null, "32568", null, "2899", null, "-999999999", "N", "-999999999", "N", "15332", null, "1599", null, "-999999999", "N", "-999999999", "N", "9790", null, "1838", null, "18614", null, "2949", null, "23841", null, "2537", null, "239595", null, "4558", null, "81071", null, "2109", null, "202469", null, "5010", null, "33190", null, "2482", null, "57830", null, "4408", null, "111449", null, "4890", null, "-888888888", "(X)", "-888888888", "(X)", "43.6", null, "0.9", null, "56.4", null, "0.9", null, "48.2", null, "1.4", null, "14.8", null, "1.2", null, "4.5", null, "0.7", null, "10.3", null, "1.0", null, "37.0", null, "1.3", null, "27.9", null, "1.4", null, "18.8", null, "1.1", null, "8.9", null, "1.0", null, "2.6", null, "0.6", null, "6.3", null, "0.9", null, "0.2", null, "0.2", null, "72.1", null, "1.4", null, "29.4", null, "1.3", null, "5.9", null, "0.8", null, "1.9", null, "0.4", null, "4.1", null, "0.7", null, "36.8", null, "1.3", null, "11.4", null, "1.1", null, "88.6", null, "1.1", null, "27.5", null, "1.6", null, "72.5", null, "1.6", null, "76.1", null, "1.1", null, "10.1", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "4.8", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "3.0", null, "0.6", null, "5.8", null, "0.9", null, "7.4", null, "0.8", null, "74.5", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.4", null, "1.3", null, "28.6", null, "2.0", null, "55.0", null, "1.9", null, "45736", null, "3835", null, "19841", null, "2249", null, "25895", null, "3051", null, "13155", null, "2251", null, "15608", null, "2577", null, "3592", null, "1172", null, "12016", null, "2242", null, "16973", null, "2551", null, "20284", null, "2797", null, "8056", null, "1746", null, "11722", null, "2295", null, "2485", null, "1085", null, "9237", null, "2086", null, "506", null, "422", null, "25452", null, "2938", null, "5099", null, "1382", null, "3886", null, "1280", null, "1107", null, "532", null, "2779", null, "1058", null, "16467", null, "2510", null, "17241", null, "2810", null, "28495", null, "3380", null, "24333", null, "3075", null, "21403", null, "3069", null, "21542", null, "2816", null, "10494", null, "2027", null, "-999999999", "N", "-999999999", "N", "4547", null, "1455", null, "-999999999", "N", "-999999999", "N", "3037", null, "1153", null, "6116", null, "1595", null, "8830", null, "1870", null, "19975", null, "2640", null, "36642", null, "6175", null, "28763", null, "3289", null, "4737", null, "1399", null, "11794", null, "2732", null, "12232", null, "2420", null, "14.2", null, "1.2", null, "43.4", null, "4.0", null, "56.6", null, "4.0", null, "28.8", null, "4.5", null, "34.1", null, "4.6", null, "7.9", null, "2.4", null, "26.3", null, "4.3", null, "37.1", null, "4.8", null, "44.4", null, "4.7", null, "17.6", null, "3.5", null, "25.6", null, "4.4", null, "5.4", null, "2.3", null, "20.2", null, "4.2", null, "1.1", null, "0.9", null, "55.6", null, "4.7", null, "11.1", null, "3.0", null, "8.5", null, "2.7", null, "2.4", null, "1.1", null, "6.1", null, "2.2", null, "36.0", null, "4.6", null, "37.7", null, "5.3", null, "62.3", null, "5.3", null, "53.2", null, "5.3", null, "46.8", null, "5.3", null, "47.1", null, "4.7", null, "22.9", null, "4.0", null, "-999999999.0", "N", "-999999999.0", "N", "9.9", null, "3.0", null, "-999999999.0", "N", "-999999999.0", "N", "6.6", null, "2.4", null, "13.4", null, "3.5", null, "19.3", null, "3.8", null, "43.7", null, "4.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.5", null, "4.8", null, "41.0", null, "7.4", null, "42.5", null, "7.4", null, "275702", null, "4473", null, "120162", null, "3280", null, "155540", null, "3941", null, "141855", null, "4827", null, "31851", null, "3771", null, "10715", null, "1784", null, "21136", null, "3221", null, "101996", null, "4016", null, "69447", null, "4210", null, "52457", null, "3403", null, "16733", null, "2905", null, "5845", null, "1416", null, "10888", null, "2684", null, "257", null, "249", null, "206255", null, "4376", null, "89398", null, "3979", null, "15118", null, "2311", null, "4870", null, "1283", null, "10248", null, "1993", null, "101739", null, "3983", null, "19246", null, "2881", null, "256456", null, "4415", null, "64025", null, "4668", null, "211677", null, "5879", null, "223214", null, "4616", null, "22074", null, "2946", null, "-999999999", "N", "-999999999", "N", "10785", null, "1905", null, "-999999999", "N", "-999999999", "N", "6753", null, "1594", null, "12498", null, "2622", null, "15011", null, "2479", null, "219620", null, "4638", null, "88806", null, "2767", null, "173706", null, "4635", null, "28453", null, "2113", null, "46036", null, "3918", null, "99217", null, "4732", null, "85.8", null, "1.2", null, "43.6", null, "1.0", null, "56.4", null, "1.0", null, "51.5", null, "1.6", null, "11.6", null, "1.3", null, "3.9", null, "0.6", null, "7.7", null, "1.1", null, "37.0", null, "1.3", null, "25.2", null, "1.4", null, "19.0", null, "1.2", null, "6.1", null, "1.0", null, "2.1", null, "0.5", null, "3.9", null, "1.0", null, "0.1", null, "0.1", null, "74.8", null, "1.4", null, "32.4", null, "1.5", null, "5.5", null, "0.8", null, "1.8", null, "0.5", null, "3.7", null, "0.7", null, "36.9", null, "1.3", null, "7.0", null, "1.0", null, "93.0", null, "1.0", null, "23.2", null, "1.7", null, "76.8", null, "1.7", null, "81.0", null, "1.4", null, "8.0", null, "1.0", null, "-999999999.0", "N", "-999999999.0", "N", "3.9", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "2.4", null, "0.6", null, "4.5", null, "0.9", null, "5.4", null, "0.9", null, "79.7", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.4", null, "1.2", null, "26.5", null, "2.1", null, "57.1", null, "2.1", null, "42", "10"], ["5001900US4211", "Congressional District 11 (119th Congress), Pennsylvania", "304599", null, "2695", null, "141211", null, "2892", null, "163388", null, "3217", null, "166503", null, "4548", null, "42205", null, "4224", null, "13566", null, "2555", null, "28639", null, "2894", null, "95891", null, "4756", null, "88347", null, "3814", null, "63107", null, "3326", null, "24325", null, "3470", null, "7367", null, "1883", null, "16958", null, "2614", null, "915", null, "602", null, "216252", null, "4570", null, "103396", null, "3634", null, "17880", null, "2296", null, "6199", null, "1615", null, "11681", null, "1585", null, "94976", null, "4835", null, "23905", null, "2403", null, "280694", null, "3356", null, "72818", null, "3925", null, "231781", null, "4225", null, "263840", null, "3425", null, "7664", null, "1279", null, "-999999999", "N", "-999999999", "N", "5510", null, "1026", null, "-999999999", "N", "-999999999", "N", "8034", null, "1735", null, "18934", null, "2504", null, "24053", null, "1909", null, "258587", null, "3614", null, "85402", null, "2697", null, "208708", null, "4178", null, "30186", null, "2015", null, "60701", null, "4291", null, "117821", null, "4401", null, "-888888888", "(X)", "-888888888", "(X)", "46.4", null, "0.9", null, "53.6", null, "0.9", null, "54.7", null, "1.6", null, "13.9", null, "1.4", null, "4.5", null, "0.8", null, "9.4", null, "0.9", null, "31.5", null, "1.4", null, "29.0", null, "1.3", null, "20.7", null, "1.1", null, "8.0", null, "1.1", null, "2.4", null, "0.6", null, "5.6", null, "0.9", null, "0.3", null, "0.2", null, "71.0", null, "1.3", null, "33.9", null, "1.2", null, "5.9", null, "0.7", null, "2.0", null, "0.5", null, "3.8", null, "0.5", null, "31.2", null, "1.5", null, "7.8", null, "0.8", null, "92.2", null, "0.8", null, "23.9", null, "1.3", null, "76.1", null, "1.3", null, "86.6", null, "0.8", null, "2.5", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "1.8", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "2.6", null, "0.6", null, "6.2", null, "0.8", null, "7.9", null, "0.6", null, "84.9", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.5", null, "1.0", null, "29.1", null, "1.9", null, "56.5", null, "1.8", null, "27690", null, "2920", null, "11037", null, "1892", null, "16653", null, "2340", null, "7127", null, "1177", null, "12140", null, "2381", null, "2163", null, "848", null, "9977", null, "2079", null, "8423", null, "1759", null, "15095", null, "2289", null, "4865", null, "1062", null, "9696", null, "2232", null, "1378", null, "670", null, "8318", null, "2038", null, "534", null, "515", null, "12595", null, "2007", null, "2262", null, "665", null, "2444", null, "949", null, "785", null, "475", null, "1659", null, "836", null, "7889", null, "1667", null, "9998", null, "2118", null, "17692", null, "2319", null, "13455", null, "2363", null, "14235", null, "2162", null, "19133", null, "2382", null, "1719", null, "612", null, "-999999999", "N", "-999999999", "N", "794", null, "422", null, "-999999999", "N", "-999999999", "N", "2187", null, "1071", null, "3657", null, "1327", null, "5856", null, "1407", null, "18465", null, "2350", null, "33888", null, "2687", null, "19267", null, "2370", null, "1951", null, "804", null, "10465", null, "2008", null, "6851", null, "1079", null, "9.1", null, "1.0", null, "39.9", null, "5.5", null, "60.1", null, "5.5", null, "25.7", null, "4.5", null, "43.8", null, "6.4", null, "7.8", null, "2.9", null, "36.0", null, "5.8", null, "30.4", null, "5.2", null, "54.5", null, "5.7", null, "17.6", null, "4.1", null, "35.0", null, "6.4", null, "5.0", null, "2.3", null, "30.0", null, "6.1", null, "1.9", null, "1.8", null, "45.5", null, "5.7", null, "8.2", null, "2.4", null, "8.8", null, "3.3", null, "2.8", null, "1.7", null, "6.0", null, "2.9", null, "28.5", null, "5.1", null, "36.1", null, "6.1", null, "63.9", null, "6.1", null, "48.6", null, "6.3", null, "51.4", null, "6.3", null, "69.1", null, "5.0", null, "6.2", null, "2.2", null, "-999999999.0", "N", "-999999999.0", "N", "2.9", null, "1.5", null, "-999999999.0", "N", "-999999999.0", "N", "7.9", null, "3.8", null, "13.2", null, "4.4", null, "21.1", null, "4.6", null, "66.7", null, "5.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.1", null, "3.8", null, "54.3", null, "6.3", null, "35.6", null, "5.8", null, "276909", null, "3771", null, "130174", null, "3088", null, "146735", null, "3735", null, "159376", null, "4710", null, "30065", null, "3226", null, "11403", null, "2399", null, "18662", null, "2275", null, "87468", null, "4554", null, "73252", null, "3628", null, "58242", null, "3372", null, "14629", null, "2551", null, "5989", null, "1730", null, "8640", null, "1808", null, "381", null, "362", null, "203657", null, "4483", null, "101134", null, "3613", null, "15436", null, "2282", null, "5414", null, "1581", null, "10022", null, "1529", null, "87087", null, "4541", null, "13907", null, "1850", null, "263002", null, "3492", null, "59363", null, "3389", null, "217546", null, "4595", null, "244707", null, "4042", null, "5945", null, "1394", null, "-999999999", "N", "-999999999", "N", "4716", null, "1043", null, "-999999999", "N", "-999999999", "N", "5847", null, "1486", null, "15277", null, "2146", null, "18197", null, "2040", null, "240122", null, "4174", null, "90756", null, "2425", null, "189441", null, "4312", null, "28235", null, "1772", null, "50236", null, "3892", null, "110970", null, "4543", null, "90.9", null, "1.0", null, "47.0", null, "1.0", null, "53.0", null, "1.0", null, "57.6", null, "1.7", null, "10.9", null, "1.2", null, "4.1", null, "0.9", null, "6.7", null, "0.8", null, "31.6", null, "1.5", null, "26.5", null, "1.3", null, "21.0", null, "1.2", null, "5.3", null, "0.9", null, "2.2", null, "0.6", null, "3.1", null, "0.6", null, "0.1", null, "0.1", null, "73.5", null, "1.3", null, "36.5", null, "1.3", null, "5.6", null, "0.8", null, "2.0", null, "0.6", null, "3.6", null, "0.5", null, "31.4", null, "1.5", null, "5.0", null, "0.6", null, "95.0", null, "0.6", null, "21.4", null, "1.2", null, "78.6", null, "1.2", null, "88.4", null, "0.9", null, "2.1", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "1.7", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "2.1", null, "0.5", null, "5.5", null, "0.8", null, "6.6", null, "0.7", null, "86.7", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.9", null, "1.0", null, "26.5", null, "1.9", null, "58.6", null, "1.9", null, "42", "11"], ["5001900US4212", "Congressional District 12 (119th Congress), Pennsylvania", "342448", null, "5377", null, "145305", null, "4365", null, "197143", null, "5095", null, "135287", null, "4768", null, "46683", null, "3577", null, "12589", null, "2114", null, "34094", null, "3281", null, "160478", null, "6511", null, "70246", null, "4057", null, "46927", null, "3487", null, "22485", null, "2834", null, "5322", null, "1256", null, "17163", null, "2393", null, "834", null, "550", null, "272202", null, "5986", null, "88360", null, "3788", null, "24198", null, "2544", null, "7267", null, "1770", null, "16931", null, "2333", null, "159644", null, "6460", null, "48215", null, "3494", null, "294233", null, "5630", null, "88256", null, "4651", null, "254192", null, "5939", null, "266299", null, "5117", null, "45105", null, "2821", null, "-999999999", "N", "-999999999", "N", "14455", null, "1522", null, "-999999999", "N", "-999999999", "N", "2866", null, "1025", null, "13367", null, "1992", null, "8265", null, "1055", null, "264676", null, "5163", null, "74565", null, "2650", null, "181970", null, "5521", null, "29451", null, "2177", null, "51316", null, "3218", null, "101203", null, "4252", null, "-888888888", "(X)", "-888888888", "(X)", "42.4", null, "1.1", null, "57.6", null, "1.1", null, "39.5", null, "1.4", null, "13.6", null, "1.0", null, "3.7", null, "0.6", null, "10.0", null, "1.0", null, "46.9", null, "1.6", null, "20.5", null, "1.2", null, "13.7", null, "1.0", null, "6.6", null, "0.8", null, "1.6", null, "0.4", null, "5.0", null, "0.7", null, "0.2", null, "0.2", null, "79.5", null, "1.2", null, "25.8", null, "1.1", null, "7.1", null, "0.7", null, "2.1", null, "0.5", null, "4.9", null, "0.7", null, "46.6", null, "1.6", null, "14.1", null, "1.0", null, "85.9", null, "1.0", null, "25.8", null, "1.3", null, "74.2", null, "1.3", null, "77.8", null, "0.9", null, "13.2", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "4.2", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "0.8", null, "0.3", null, "3.9", null, "0.6", null, "2.4", null, "0.3", null, "77.3", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.2", null, "1.1", null, "28.2", null, "1.5", null, "55.6", null, "1.6", null, "55849", null, "3973", null, "22900", null, "2628", null, "32949", null, "3249", null, "10617", null, "1927", null, "20644", null, "2405", null, "4090", null, "1086", null, "16554", null, "2153", null, "24588", null, "2794", null, "20357", null, "2532", null, "6737", null, "1688", null, "13385", null, "2104", null, "1807", null, "774", null, "11578", null, "1948", null, "235", null, "235", null, "35492", null, "3393", null, "3880", null, "1071", null, "7259", null, "1537", null, "2283", null, "913", null, "4976", null, "1265", null, "24353", null, "2800", null, "25398", null, "2917", null, "30451", null, "2630", null, "27764", null, "2956", null, "28085", null, "3080", null, "29800", null, "3050", null, "19316", null, "2375", null, "-999999999", "N", "-999999999", "N", "2732", null, "1146", null, "-999999999", "N", "-999999999", "N", "855", null, "734", null, "3022", null, "944", null, "1764", null, "882", null, "29724", null, "3008", null, "27715", null, "3661", null, "31261", null, "2668", null, "5623", null, "1289", null, "14635", null, "2407", null, "11003", null, "1867", null, "16.3", null, "1.1", null, "41.0", null, "3.9", null, "59.0", null, "3.9", null, "19.0", null, "3.3", null, "37.0", null, "3.6", null, "7.3", null, "1.9", null, "29.6", null, "3.4", null, "44.0", null, "3.4", null, "36.5", null, "3.9", null, "12.1", null, "2.9", null, "24.0", null, "3.4", null, "3.2", null, "1.4", null, "20.7", null, "3.2", null, "0.4", null, "0.4", null, "63.5", null, "3.9", null, "6.9", null, "1.9", null, "13.0", null, "2.7", null, "4.1", null, "1.6", null, "8.9", null, "2.2", null, "43.6", null, "3.4", null, "45.5", null, "3.5", null, "54.5", null, "3.5", null, "49.7", null, "4.1", null, "50.3", null, "4.1", null, "53.4", null, "3.8", null, "34.6", null, "3.5", null, "-999999999.0", "N", "-999999999.0", "N", "4.9", null, "2.0", null, "-999999999.0", "N", "-999999999.0", "N", "1.5", null, "1.3", null, "5.4", null, "1.7", null, "3.2", null, "1.6", null, "53.2", null, "3.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.0", null, "4.1", null, "46.8", null, "5.5", null, "35.2", null, "5.7", null, "286599", null, "5953", null, "122405", null, "4142", null, "164194", null, "5502", null, "124670", null, "4278", null, "26039", null, "2480", null, "8499", null, "1662", null, "17540", null, "2427", null, "135890", null, "6358", null, "49889", null, "3522", null, "40190", null, "3090", null, "9100", null, "1685", null, "3515", null, "1097", null, "5585", null, "1399", null, "599", null, "503", null, "236710", null, "6276", null, "84480", null, "3637", null, "16939", null, "2351", null, "4984", null, "1468", null, "11955", null, "2085", null, "135291", null, "6372", null, "22817", null, "2285", null, "263782", null, "5744", null, "60492", null, "4255", null, "226107", null, "6152", null, "236499", null, "5402", null, "25789", null, "2509", null, "-999999999", "N", "-999999999", "N", "11723", null, "1657", null, "-999999999", "N", "-999999999", "N", "2011", null, "952", null, "10345", null, "1795", null, "6501", null, "1042", null, "234952", null, "5449", null, "86279", null, "2663", null, "150709", null, "4639", null, "23828", null, "1910", null, "36681", null, "2568", null, "90200", null, "3910", null, "83.7", null, "1.1", null, "42.7", null, "1.3", null, "57.3", null, "1.3", null, "43.5", null, "1.5", null, "9.1", null, "0.9", null, "3.0", null, "0.6", null, "6.1", null, "0.9", null, "47.4", null, "1.7", null, "17.4", null, "1.2", null, "14.0", null, "1.1", null, "3.2", null, "0.6", null, "1.2", null, "0.4", null, "1.9", null, "0.5", null, "0.2", null, "0.2", null, "82.6", null, "1.2", null, "29.5", null, "1.3", null, "5.9", null, "0.8", null, "1.7", null, "0.5", null, "4.2", null, "0.7", null, "47.2", null, "1.7", null, "8.0", null, "0.8", null, "92.0", null, "0.8", null, "21.1", null, "1.4", null, "78.9", null, "1.4", null, "82.5", null, "1.1", null, "9.0", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "4.1", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "0.7", null, "0.3", null, "3.6", null, "0.6", null, "2.3", null, "0.4", null, "82.0", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.8", null, "1.2", null, "24.3", null, "1.5", null, "59.9", null, "1.7", null, "42", "12"], ["5001900US4213", "Congressional District 13 (119th Congress), Pennsylvania", "315869", null, "3479", null, "153162", null, "3140", null, "162707", null, "3727", null, "156896", null, "4941", null, "47041", null, "3230", null, "15050", null, "1948", null, "31991", null, "2572", null, "111932", null, "4178", null, "76772", null, "3098", null, "49929", null, "2695", null, "25356", null, "2129", null, "7793", null, "1348", null, "17563", null, "1757", null, "1487", null, "679", null, "239097", null, "3772", null, "106967", null, "3851", null, "21685", null, "2279", null, "7257", null, "1423", null, "14428", null, "1803", null, "110445", null, "4154", null, "34034", null, "2418", null, "281835", null, "3814", null, "92091", null, "3975", null, "223778", null, "4451", null, "292972", null, "3854", null, "4702", null, "927", null, "665", null, "436", null, "1954", null, "353", null, "-999999999", "N", "-999999999", "N", "2991", null, "905", null, "12585", null, "1824", null, "8059", null, "972", null, "290337", null, "3782", null, "70192", null, "1776", null, "203937", null, "4842", null, "38711", null, "2228", null, "61725", null, "3283", null, "103501", null, "3702", null, "-888888888", "(X)", "-888888888", "(X)", "48.5", null, "0.9", null, "51.5", null, "0.9", null, "49.7", null, "1.4", null, "14.9", null, "1.0", null, "4.8", null, "0.6", null, "10.1", null, "0.8", null, "35.4", null, "1.3", null, "24.3", null, "0.9", null, "15.8", null, "0.8", null, "8.0", null, "0.7", null, "2.5", null, "0.4", null, "5.6", null, "0.6", null, "0.5", null, "0.2", null, "75.7", null, "0.9", null, "33.9", null, "1.2", null, "6.9", null, "0.7", null, "2.3", null, "0.4", null, "4.6", null, "0.6", null, "35.0", null, "1.3", null, "10.8", null, "0.7", null, "89.2", null, "0.7", null, "29.2", null, "1.2", null, "70.8", null, "1.2", null, "92.8", null, "0.6", null, "1.5", null, "0.3", null, "0.2", null, "0.1", null, "0.6", null, "0.1", null, "-999999999.0", "N", "-999999999.0", "N", "0.9", null, "0.3", null, "4.0", null, "0.6", null, "2.6", null, "0.3", null, "91.9", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "19.0", null, "1.0", null, "30.3", null, "1.4", null, "50.8", null, "1.4", null, "47018", null, "3253", null, "19516", null, "2026", null, "27502", null, "2809", null, "11033", null, "1653", null, "16024", null, "1933", null, "3219", null, "949", null, "12805", null, "1628", null, "19961", null, "2120", null, "17085", null, "1798", null, "5732", null, "1260", null, "10794", null, "1539", null, "1945", null, "847", null, "8849", null, "1337", null, "559", null, "365", null, "29933", null, "2724", null, "5301", null, "1027", null, "5230", null, "1208", null, "1274", null, "455", null, "3956", null, "1041", null, "19402", null, "2143", null, "18584", null, "2144", null, "28434", null, "2780", null, "25874", null, "2422", null, "21144", null, "2230", null, "40499", null, "3028", null, "1733", null, "558", null, "224", null, "203", null, "335", null, "183", null, "-999999999", "N", "-999999999", "N", "507", null, "477", null, "3720", null, "950", null, "1853", null, "707", null, "40050", null, "3048", null, "31131", null, "1912", null, "27057", null, "2551", null, "5367", null, "1035", null, "12660", null, "1855", null, "9030", null, "1626", null, "14.9", null, "1.0", null, "41.5", null, "3.8", null, "58.5", null, "3.8", null, "23.5", null, "3.0", null, "34.1", null, "3.4", null, "6.8", null, "2.0", null, "27.2", null, "2.9", null, "42.5", null, "3.5", null, "36.3", null, "3.2", null, "12.2", null, "2.5", null, "23.0", null, "3.1", null, "4.1", null, "1.8", null, "18.8", null, "2.7", null, "1.2", null, "0.8", null, "63.7", null, "3.2", null, "11.3", null, "2.1", null, "11.1", null, "2.3", null, "2.7", null, "0.9", null, "8.4", null, "2.0", null, "41.3", null, "3.5", null, "39.5", null, "3.9", null, "60.5", null, "3.9", null, "55.0", null, "3.5", null, "45.0", null, "3.5", null, "86.1", null, "2.2", null, "3.7", null, "1.2", null, "0.5", null, "0.4", null, "0.7", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "1.1", null, "1.0", null, "7.9", null, "1.9", null, "3.9", null, "1.5", null, "85.2", null, "2.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "19.8", null, "3.5", null, "46.8", null, "5.7", null, "33.4", null, "4.6", null, "268851", null, "4240", null, "133646", null, "3132", null, "135205", null, "3873", null, "145863", null, "4675", null, "31017", null, "2536", null, "11831", null, "1561", null, "19186", null, "2147", null, "91971", null, "3657", null, "59687", null, "2821", null, "44197", null, "2440", null, "14562", null, "1650", null, "5848", null, "978", null, "8714", null, "1453", null, "928", null, "642", null, "209164", null, "3964", null, "101666", null, "3712", null, "16455", null, "2092", null, "5983", null, "1299", null, "10472", null, "1714", null, "91043", null, "3625", null, "15450", null, "1636", null, "253401", null, "4232", null, "66217", null, "3112", null, "202634", null, "4637", null, "252473", null, "4375", null, "2969", null, "790", null, "441", null, "383", null, "1619", null, "360", null, "-999999999", "N", "-999999999", "N", "2484", null, "822", null, "8865", null, "1569", null, "6206", null, "1027", null, "250287", null, "4239", null, "77871", null, "2174", null, "176880", null, "4602", null, "33344", null, "1960", null, "49065", null, "2833", null, "94471", null, "3479", null, "85.1", null, "1.0", null, "49.7", null, "1.0", null, "50.3", null, "1.0", null, "54.3", null, "1.5", null, "11.5", null, "0.9", null, "4.4", null, "0.6", null, "7.1", null, "0.8", null, "34.2", null, "1.3", null, "22.2", null, "1.0", null, "16.4", null, "0.8", null, "5.4", null, "0.6", null, "2.2", null, "0.4", null, "3.2", null, "0.5", null, "0.3", null, "0.2", null, "77.8", null, "1.0", null, "37.8", null, "1.3", null, "6.1", null, "0.8", null, "2.2", null, "0.5", null, "3.9", null, "0.6", null, "33.9", null, "1.3", null, "5.7", null, "0.6", null, "94.3", null, "0.6", null, "24.6", null, "1.1", null, "75.4", null, "1.1", null, "93.9", null, "0.6", null, "1.1", null, "0.3", null, "0.2", null, "0.1", null, "0.6", null, "0.1", null, "-999999999.0", "N", "-999999999.0", "N", "0.9", null, "0.3", null, "3.3", null, "0.6", null, "2.3", null, "0.4", null, "93.1", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.9", null, "0.9", null, "27.7", null, "1.4", null, "53.4", null, "1.6", null, "42", "13"], ["5001900US4214", "Congressional District 14 (119th Congress), Pennsylvania", "327964", null, "3957", null, "160113", null, "2876", null, "167851", null, "4468", null, "156299", null, "4037", null, "49645", null, "3283", null, "17230", null, "2308", null, "32415", null, "2577", null, "122020", null, "3983", null, "79584", null, "4133", null, "51479", null, "3032", null, "25902", null, "2488", null, "9083", null, "1678", null, "16819", null, "2081", null, "2203", null, "1053", null, "248380", null, "4909", null, "104820", null, "3483", null, "23743", null, "2448", null, "8147", null, "1388", null, "15596", null, "1970", null, "119817", null, "3869", null, "43282", null, "3136", null, "284682", null, "4795", null, "102782", null, "3803", null, "225182", null, "4719", null, "307900", null, "3899", null, "6944", null, "777", null, "-999999999", "N", "-999999999", "N", "2202", null, "553", null, "-999999999", "N", "-999999999", "N", "1158", null, "449", null, "9426", null, "1306", null, "4988", null, "1012", null, "306085", null, "3897", null, "67410", null, "2198", null, "205944", null, "4714", null, "44313", null, "2520", null, "62033", null, "3447", null, "99598", null, "3677", null, "-888888888", "(X)", "-888888888", "(X)", "48.8", null, "1.0", null, "51.2", null, "1.0", null, "47.7", null, "1.1", null, "15.1", null, "1.0", null, "5.3", null, "0.7", null, "9.9", null, "0.8", null, "37.2", null, "1.2", null, "24.3", null, "1.2", null, "15.7", null, "0.9", null, "7.9", null, "0.7", null, "2.8", null, "0.5", null, "5.1", null, "0.6", null, "0.7", null, "0.3", null, "75.7", null, "1.2", null, "32.0", null, "1.0", null, "7.2", null, "0.7", null, "2.5", null, "0.4", null, "4.8", null, "0.6", null, "36.5", null, "1.1", null, "13.2", null, "1.0", null, "86.8", null, "1.0", null, "31.3", null, "1.1", null, "68.7", null, "1.1", null, "93.9", null, "0.5", null, "2.1", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "0.7", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "0.4", null, "0.1", null, "2.9", null, "0.4", null, "1.5", null, "0.3", null, "93.3", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "21.5", null, "1.1", null, "30.1", null, "1.5", null, "48.4", null, "1.5", null, "60518", null, "3510", null, "28160", null, "2301", null, "32358", null, "2649", null, "13683", null, "1855", null, "20798", null, "2563", null, "4583", null, "1150", null, "16215", null, "2267", null, "26037", null, "2328", null, "21148", null, "2564", null, "7308", null, "1386", null, "13164", null, "2076", null, "2733", null, "913", null, "10431", null, "1991", null, "676", null, "479", null, "39370", null, "2605", null, "6375", null, "1308", null, "7634", null, "1358", null, "1850", null, "633", null, "5784", null, "1217", null, "25361", null, "2192", null, "24321", null, "2467", null, "36197", null, "3130", null, "31726", null, "2728", null, "28792", null, "2477", null, "53380", null, "3088", null, "2940", null, "675", null, "-999999999", "N", "-999999999", "N", "277", null, "401", null, "-999999999", "N", "-999999999", "N", "248", null, "214", null, "3673", null, "970", null, "1237", null, "476", null, "52925", null, "3062", null, "28243", null, "2662", null, "34481", null, "3106", null, "8572", null, "1495", null, "16793", null, "2306", null, "9116", null, "1539", null, "18.5", null, "1.0", null, "46.5", null, "2.9", null, "53.5", null, "2.9", null, "22.6", null, "2.8", null, "34.4", null, "3.3", null, "7.6", null, "1.8", null, "26.8", null, "3.2", null, "43.0", null, "3.4", null, "34.9", null, "3.2", null, "12.1", null, "2.2", null, "21.8", null, "2.9", null, "4.5", null, "1.4", null, "17.2", null, "3.0", null, "1.1", null, "0.8", null, "65.1", null, "3.2", null, "10.5", null, "2.1", null, "12.6", null, "2.1", null, "3.1", null, "1.0", null, "9.6", null, "1.9", null, "41.9", null, "3.2", null, "40.2", null, "3.5", null, "59.8", null, "3.5", null, "52.4", null, "3.2", null, "47.6", null, "3.2", null, "88.2", null, "2.0", null, "4.9", null, "1.1", null, "-999999999.0", "N", "-999999999.0", "N", "0.5", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "0.4", null, "0.4", null, "6.1", null, "1.5", null, "2.0", null, "0.8", null, "87.5", null, "2.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "24.9", null, "4.1", null, "48.7", null, "4.5", null, "26.4", null, "3.8", null, "267446", null, "4434", null, "131953", null, "2673", null, "135493", null, "4348", null, "142616", null, "3854", null, "28847", null, "2816", null, "12647", null, "1892", null, "16200", null, "1877", null, "95983", null, "3898", null, "58436", null, "3339", null, "44171", null, "2754", null, "12738", null, "1802", null, "6350", null, "1453", null, "6388", null, "1096", null, "1527", null, "1006", null, "209010", null, "4965", null, "98445", null, "3427", null, "16109", null, "2043", null, "6297", null, "1262", null, "9812", null, "1545", null, "94456", null, "3793", null, "18961", null, "2177", null, "248485", null, "4383", null, "71056", null, "3108", null, "196390", null, "4980", null, "254520", null, "4327", null, "4004", null, "879", null, "-999999999", "N", "-999999999", "N", "1925", null, "428", null, "-999999999", "N", "-999999999", "N", "910", null, "382", null, "5753", null, "1004", null, "3751", null, "937", null, "253160", null, "4308", null, "77903", null, "2206", null, "171463", null, "4223", null, "35741", null, "2040", null, "45240", null, "2942", null, "90482", null, "3730", null, "81.5", null, "1.0", null, "49.3", null, "1.1", null, "50.7", null, "1.1", null, "53.3", null, "1.2", null, "10.8", null, "1.0", null, "4.7", null, "0.7", null, "6.1", null, "0.7", null, "35.9", null, "1.3", null, "21.8", null, "1.2", null, "16.5", null, "1.0", null, "4.8", null, "0.7", null, "2.4", null, "0.5", null, "2.4", null, "0.4", null, "0.6", null, "0.4", null, "78.2", null, "1.2", null, "36.8", null, "1.1", null, "6.0", null, "0.8", null, "2.4", null, "0.5", null, "3.7", null, "0.6", null, "35.3", null, "1.2", null, "7.1", null, "0.8", null, "92.9", null, "0.8", null, "26.6", null, "1.2", null, "73.4", null, "1.2", null, "95.2", null, "0.5", null, "1.5", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "0.7", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "0.3", null, "0.1", null, "2.2", null, "0.4", null, "1.4", null, "0.3", null, "94.7", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "20.8", null, "1.1", null, "26.4", null, "1.6", null, "52.8", null, "1.7", null, "42", "14"], ["5001900US4215", "Congressional District 15 (119th Congress), Pennsylvania", "309059", null, "3635", null, "147352", null, "2692", null, "161707", null, "3714", null, "156887", null, "3847", null, "37222", null, "2775", null, "12523", null, "1357", null, "24699", null, "2265", null, "114950", null, "3588", null, "74604", null, "3206", null, "51144", null, "2544", null, "22581", null, "2310", null, "7139", null, "1163", null, "15442", null, "1827", null, "879", null, "392", null, "234455", null, "4002", null, "105743", null, "2950", null, "14641", null, "1634", null, "5384", null, "895", null, "9257", null, "1299", null, "114071", null, "3601", null, "40314", null, "2819", null, "268745", null, "4527", null, "92335", null, "3755", null, "216724", null, "4525", null, "290109", null, "3854", null, "2112", null, "842", null, "-999999999", "N", "-999999999", "N", "5326", null, "943", null, "-999999999", "N", "-999999999", "N", "1919", null, "740", null, "9367", null, "1325", null, "3403", null, "746", null, "288946", null, "3796", null, "65193", null, "1547", null, "194109", null, "3982", null, "42244", null, "2322", null, "54786", null, "3086", null, "97079", null, "3386", null, "-888888888", "(X)", "-888888888", "(X)", "47.7", null, "0.9", null, "52.3", null, "0.9", null, "50.8", null, "1.1", null, "12.0", null, "0.9", null, "4.1", null, "0.4", null, "8.0", null, "0.7", null, "37.2", null, "1.1", null, "24.1", null, "1.0", null, "16.5", null, "0.8", null, "7.3", null, "0.8", null, "2.3", null, "0.4", null, "5.0", null, "0.6", null, "0.3", null, "0.1", null, "75.9", null, "1.0", null, "34.2", null, "0.9", null, "4.7", null, "0.5", null, "1.7", null, "0.3", null, "3.0", null, "0.4", null, "36.9", null, "1.1", null, "13.0", null, "0.9", null, "87.0", null, "0.9", null, "29.9", null, "1.2", null, "70.1", null, "1.2", null, "93.9", null, "0.5", null, "0.7", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "1.7", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "0.6", null, "0.2", null, "3.0", null, "0.4", null, "1.1", null, "0.2", null, "93.5", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "21.8", null, "1.1", null, "28.2", null, "1.5", null, "50.0", null, "1.4", null, "46392", null, "2685", null, "19052", null, "1739", null, "27340", null, "2379", null, "12279", null, "1606", null, "14064", null, "1866", null, "3253", null, "771", null, "10811", null, "1701", null, "20049", null, "2116", null, "17190", null, "2061", null, "6789", null, "1338", null, "10120", null, "1755", null, "2056", null, "642", null, "8064", null, "1608", null, "281", null, "181", null, "29202", null, "2501", null, "5490", null, "1090", null, "3944", null, "880", null, "1197", null, "450", null, "2747", null, "772", null, "19768", null, "2133", null, "19211", null, "2000", null, "27181", null, "2278", null, "24000", null, "2216", null, "22392", null, "2213", null, "42754", null, "2770", null, "609", null, "364", null, "-999999999", "N", "-999999999", "N", "275", null, "240", null, "-999999999", "N", "-999999999", "N", "275", null, "278", null, "2417", null, "620", null, "778", null, "350", null, "42534", null, "2786", null, "27851", null, "2797", null, "26343", null, "2042", null, "7106", null, "1430", null, "11297", null, "1665", null, "7940", null, "1194", null, "15.0", null, "0.9", null, "41.1", null, "3.3", null, "58.9", null, "3.3", null, "26.5", null, "3.3", null, "30.3", null, "3.7", null, "7.0", null, "1.6", null, "23.3", null, "3.5", null, "43.2", null, "3.5", null, "37.1", null, "3.9", null, "14.6", null, "2.7", null, "21.8", null, "3.7", null, "4.4", null, "1.4", null, "17.4", null, "3.4", null, "0.6", null, "0.4", null, "62.9", null, "3.9", null, "11.8", null, "2.5", null, "8.5", null, "1.8", null, "2.6", null, "1.0", null, "5.9", null, "1.6", null, "42.6", null, "3.5", null, "41.4", null, "3.6", null, "58.6", null, "3.6", null, "51.7", null, "3.8", null, "48.3", null, "3.8", null, "92.2", null, "1.7", null, "1.3", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "0.6", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "0.6", null, "0.6", null, "5.2", null, "1.4", null, "1.7", null, "0.8", null, "91.7", null, "1.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "27.0", null, "5.0", null, "42.9", null, "5.0", null, "30.1", null, "4.4", null, "262667", null, "4286", null, "128300", null, "2591", null, "134367", null, "3860", null, "144608", null, "3759", null, "23158", null, "2103", null, "9270", null, "1315", null, "13888", null, "1581", null, "94901", null, "3276", null, "57414", null, "2784", null, "44355", null, "2315", null, "12461", null, "1666", null, "5083", null, "1081", null, "7378", null, "1179", null, "598", null, "335", null, "205253", null, "3573", null, "100253", null, "2899", null, "10697", null, "1284", null, "4187", null, "785", null, "6510", null, "997", null, "94303", null, "3245", null, "21103", null, "2191", null, "241564", null, "4519", null, "68335", null, "3153", null, "194332", null, "4516", null, "247355", null, "4424", null, "1503", null, "782", null, "-999999999", "N", "-999999999", "N", "5051", null, "883", null, "-999999999", "N", "-999999999", "N", "1644", null, "674", null, "6950", null, "1139", null, "2625", null, "616", null, "246412", null, "4404", null, "72599", null, "2017", null, "167766", null, "4019", null, "35138", null, "1917", null, "43489", null, "2458", null, "89139", null, "3126", null, "85.0", null, "0.9", null, "48.8", null, "0.9", null, "51.2", null, "0.9", null, "55.1", null, "1.2", null, "8.8", null, "0.8", null, "3.5", null, "0.5", null, "5.3", null, "0.6", null, "36.1", null, "1.1", null, "21.9", null, "0.9", null, "16.9", null, "0.8", null, "4.7", null, "0.6", null, "1.9", null, "0.4", null, "2.8", null, "0.4", null, "0.2", null, "0.1", null, "78.1", null, "0.9", null, "38.2", null, "1.1", null, "4.1", null, "0.5", null, "1.6", null, "0.3", null, "2.5", null, "0.4", null, "35.9", null, "1.1", null, "8.0", null, "0.8", null, "92.0", null, "0.8", null, "26.0", null, "1.1", null, "74.0", null, "1.1", null, "94.2", null, "0.5", null, "0.6", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "1.9", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "0.6", null, "0.3", null, "2.6", null, "0.4", null, "1.0", null, "0.2", null, "93.8", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "20.9", null, "1.0", null, "25.9", null, "1.4", null, "53.1", null, "1.3", null, "42", "15"], ["5001900US4216", "Congressional District 16 (119th Congress), Pennsylvania", "320003", null, "2601", null, "151354", null, "2794", null, "168649", null, "3223", null, "151664", null, "4264", null, "46454", null, "2998", null, "15444", null, "1882", null, "31010", null, "2431", null, "121885", null, "4391", null, "76947", null, "2828", null, "49398", null, "2418", null, "27136", null, "2196", null, "8732", null, "1461", null, "18404", null, "1885", null, "413", null, "329", null, "243056", null, "3375", null, "102266", null, "3811", null, "19318", null, "2227", null, "6712", null, "1273", null, "12606", null, "1698", null, "121472", null, "4379", null, "44984", null, "3251", null, "275019", null, "3240", null, "92053", null, "4127", null, "227950", null, "4476", null, "288186", null, "3010", null, "13068", null, "1523", null, "-999999999", "N", "-999999999", "N", "2952", null, "688", null, "-999999999", "N", "-999999999", "N", "3086", null, "865", null, "12473", null, "1872", null, "6915", null, "883", null, "286375", null, "3078", null, "67473", null, "2044", null, "198118", null, "4414", null, "37341", null, "2256", null, "60973", null, "3298", null, "99804", null, "4070", null, "-888888888", "(X)", "-888888888", "(X)", "47.3", null, "0.8", null, "52.7", null, "0.8", null, "47.4", null, "1.3", null, "14.5", null, "0.9", null, "4.8", null, "0.6", null, "9.7", null, "0.8", null, "38.1", null, "1.3", null, "24.0", null, "0.9", null, "15.4", null, "0.7", null, "8.5", null, "0.7", null, "2.7", null, "0.5", null, "5.8", null, "0.6", null, "0.1", null, "0.1", null, "76.0", null, "0.9", null, "32.0", null, "1.2", null, "6.0", null, "0.7", null, "2.1", null, "0.4", null, "3.9", null, "0.5", null, "38.0", null, "1.3", null, "14.1", null, "1.0", null, "85.9", null, "1.0", null, "28.8", null, "1.3", null, "71.2", null, "1.3", null, "90.1", null, "0.7", null, "4.1", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "0.9", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "1.0", null, "0.3", null, "3.9", null, "0.6", null, "2.2", null, "0.3", null, "89.5", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.8", null, "1.0", null, "30.8", null, "1.6", null, "50.4", null, "1.7", null, "53616", null, "3691", null, "20673", null, "2143", null, "32943", null, "2945", null, "11449", null, "1692", null, "18489", null, "2094", null, "4852", null, "1015", null, "13637", null, "1918", null, "23678", null, "2833", null, "19209", null, "2119", null, "6331", null, "1163", null, "12521", null, "1737", null, "3070", null, "793", null, "9451", null, "1561", null, "357", null, "326", null, "34407", null, "3314", null, "5118", null, "1147", null, "5968", null, "1324", null, "1782", null, "770", null, "4186", null, "1072", null, "23321", null, "2855", null, "22947", null, "2531", null, "30669", null, "3017", null, "27393", null, "2611", null, "26223", null, "2375", null, "42481", null, "2963", null, "6203", null, "1281", null, "-999999999", "N", "-999999999", "N", "591", null, "379", null, "-999999999", "N", "-999999999", "N", "1205", null, "666", null, "3117", null, "983", null, "1819", null, "617", null, "42216", null, "2975", null, "25388", null, "2132", null, "29938", null, "2777", null, "5717", null, "1152", null, "15093", null, "1844", null, "9128", null, "1583", null, "16.8", null, "1.1", null, "38.6", null, "3.2", null, "61.4", null, "3.2", null, "21.4", null, "2.9", null, "34.5", null, "3.3", null, "9.0", null, "2.0", null, "25.4", null, "3.0", null, "44.2", null, "4.0", null, "35.8", null, "3.6", null, "11.8", null, "2.1", null, "23.4", null, "3.0", null, "5.7", null, "1.5", null, "17.6", null, "2.6", null, "0.7", null, "0.6", null, "64.2", null, "3.6", null, "9.5", null, "2.0", null, "11.1", null, "2.3", null, "3.3", null, "1.4", null, "7.8", null, "1.9", null, "43.5", null, "4.0", null, "42.8", null, "3.8", null, "57.2", null, "3.8", null, "51.1", null, "3.1", null, "48.9", null, "3.1", null, "79.2", null, "2.5", null, "11.6", null, "2.2", null, "-999999999.0", "N", "-999999999.0", "N", "1.1", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "2.2", null, "1.2", null, "5.8", null, "1.7", null, "3.4", null, "1.1", null, "78.7", null, "2.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "19.1", null, "3.4", null, "50.4", null, "4.3", null, "30.5", null, "4.3", null, "266387", null, "2966", null, "130681", null, "2663", null, "135706", null, "3369", null, "140215", null, "3730", null, "27965", null, "2381", null, "10592", null, "1556", null, "17373", null, "2113", null, "98207", null, "3887", null, "57738", null, "2944", null, "43067", null, "2516", null, "14615", null, "1531", null, "5662", null, "1160", null, "8953", null, "1483", null, "56", null, "59", null, "208649", null, "3210", null, "97148", null, "3393", null, "13350", null, "1892", null, "4930", null, "1028", null, "8420", null, "1437", null, "98151", null, "3891", null, "22037", null, "2139", null, "244350", null, "3211", null, "64660", null, "3411", null, "201727", null, "4294", null, "245705", null, "2902", null, "6865", null, "1403", null, "-999999999", "N", "-999999999", "N", "2361", null, "686", null, "-999999999", "N", "-999999999", "N", "1881", null, "659", null, "9356", null, "1565", null, "5096", null, "996", null, "244159", null, "2977", null, "77451", null, "2527", null, "168180", null, "4109", null, "31624", null, "1869", null, "45880", null, "3105", null, "90676", null, "3602", null, "83.2", null, "1.1", null, "49.1", null, "1.0", null, "50.9", null, "1.0", null, "52.6", null, "1.3", null, "10.5", null, "0.9", null, "4.0", null, "0.6", null, "6.5", null, "0.8", null, "36.9", null, "1.4", null, "21.7", null, "1.0", null, "16.2", null, "0.9", null, "5.5", null, "0.6", null, "2.1", null, "0.4", null, "3.4", null, "0.5", null, "0.0", null, "0.1", null, "78.3", null, "1.0", null, "36.5", null, "1.3", null, "5.0", null, "0.7", null, "1.9", null, "0.4", null, "3.2", null, "0.5", null, "36.8", null, "1.4", null, "8.3", null, "0.8", null, "91.7", null, "0.8", null, "24.3", null, "1.3", null, "75.7", null, "1.3", null, "92.2", null, "0.8", null, "2.6", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "0.9", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "0.7", null, "0.2", null, "3.5", null, "0.6", null, "1.9", null, "0.4", null, "91.7", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.8", null, "1.0", null, "27.3", null, "1.7", null, "53.9", null, "1.7", null, "42", "16"], ["5001900US4217", "Congressional District 17 (119th Congress), Pennsylvania", "327160", null, "4789", null, "150469", null, "4188", null, "176691", null, "4809", null, "156017", null, "4735", null, "43019", null, "3055", null, "11152", null, "1678", null, "31867", null, "2680", null, "128124", null, "5125", null, "83987", null, "3986", null, "59595", null, "3505", null, "23703", null, "2779", null, "5020", null, "1168", null, "18683", null, "2396", null, "689", null, "351", null, "243173", null, "5716", null, "96422", null, "3984", null, "19316", null, "2138", null, "6132", null, "1184", null, "13184", null, "1682", null, "127435", null, "5109", null, "33290", null, "3569", null, "293870", null, "5019", null, "85679", null, "4684", null, "241481", null, "5947", null, "278760", null, "5250", null, "23421", null, "2743", null, "-999999999", "N", "-999999999", "N", "9187", null, "1746", null, "-999999999", "N", "-999999999", "N", "3361", null, "1086", null, "12316", null, "1899", null, "7221", null, "1097", null, "276594", null, "5209", null, "88580", null, "3326", null, "199036", null, "5013", null, "30156", null, "2273", null, "55638", null, "3665", null, "113242", null, "4623", null, "-888888888", "(X)", "-888888888", "(X)", "46.0", null, "1.2", null, "54.0", null, "1.2", null, "47.7", null, "1.3", null, "13.1", null, "0.9", null, "3.4", null, "0.5", null, "9.7", null, "0.8", null, "39.2", null, "1.4", null, "25.7", null, "1.2", null, "18.2", null, "1.1", null, "7.2", null, "0.8", null, "1.5", null, "0.4", null, "5.7", null, "0.7", null, "0.2", null, "0.1", null, "74.3", null, "1.2", null, "29.5", null, "1.1", null, "5.9", null, "0.7", null, "1.9", null, "0.4", null, "4.0", null, "0.5", null, "39.0", null, "1.4", null, "10.2", null, "1.1", null, "89.8", null, "1.1", null, "26.2", null, "1.4", null, "73.8", null, "1.4", null, "85.2", null, "1.1", null, "7.2", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "2.8", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "1.0", null, "0.3", null, "3.8", null, "0.6", null, "2.2", null, "0.3", null, "84.5", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.2", null, "1.1", null, "28.0", null, "1.7", null, "56.9", null, "1.7", null, "33025", null, "3224", null, "14151", null, "1924", null, "18874", null, "2432", null, "5400", null, "1117", null, "11566", null, "1714", null, "1545", null, "564", null, "10021", null, "1693", null, "16059", null, "2279", null, "11955", null, "2120", null, "3893", null, "1001", null, "7916", null, "1633", null, "649", null, "321", null, "7267", null, "1590", null, "146", null, "180", null, "21070", null, "2463", null, "1507", null, "610", null, "3650", null, "850", null, "896", null, "499", null, "2754", null, "725", null, "15913", null, "2248", null, "13414", null, "2296", null, "19611", null, "2091", null, "17075", null, "2074", null, "15950", null, "2153", null, "23614", null, "2768", null, "5780", null, "1361", null, "-999999999", "N", "-999999999", "N", "496", null, "425", null, "-999999999", "N", "-999999999", "N", "242", null, "189", null, "2835", null, "957", null, "1327", null, "716", null, "23043", null, "2742", null, "27925", null, "2920", null, "16966", null, "2125", null, "3051", null, "956", null, "7598", null, "1507", null, "6317", null, "1225", null, "10.1", null, "1.0", null, "42.8", null, "4.4", null, "57.2", null, "4.4", null, "16.4", null, "3.2", null, "35.0", null, "3.9", null, "4.7", null, "1.7", null, "30.3", null, "4.0", null, "48.6", null, "4.6", null, "36.2", null, "4.9", null, "11.8", null, "2.8", null, "24.0", null, "4.1", null, "2.0", null, "1.0", null, "22.0", null, "4.0", null, "0.4", null, "0.5", null, "63.8", null, "4.9", null, "4.6", null, "1.9", null, "11.1", null, "2.6", null, "2.7", null, "1.5", null, "8.3", null, "2.2", null, "48.2", null, "4.5", null, "40.6", null, "4.7", null, "59.4", null, "4.7", null, "51.7", null, "4.1", null, "48.3", null, "4.1", null, "71.5", null, "3.7", null, "17.5", null, "3.7", null, "-999999999.0", "N", "-999999999.0", "N", "1.5", null, "1.3", null, "-999999999.0", "N", "-999999999.0", "N", "0.7", null, "0.6", null, "8.6", null, "3.0", null, "4.0", null, "2.2", null, "69.8", null, "3.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.0", null, "5.2", null, "44.8", null, "6.7", null, "37.2", null, "5.9", null, "294135", null, "4944", null, "136318", null, "3994", null, "157817", null, "4747", null, "150617", null, "4593", null, "31453", null, "2732", null, "9607", null, "1462", null, "21846", null, "2483", null, "112065", null, "5244", null, "72032", null, "4076", null, "55702", null, "3590", null, "15787", null, "2460", null, "4371", null, "1094", null, "11416", null, "2110", null, "543", null, "307", null, "222103", null, "5644", null, "94915", null, "3907", null, "15666", null, "2014", null, "5236", null, "1073", null, "10430", null, "1579", null, "111522", null, "5217", null, "19876", null, "2761", null, "274259", null, "4968", null, "68604", null, "4087", null, "225531", null, "5865", null, "255146", null, "5154", null, "17641", null, "2455", null, "-999999999", "N", "-999999999", "N", "8691", null, "1702", null, "-999999999", "N", "-999999999", "N", "3119", null, "1107", null, "9481", null, "1707", null, "5894", null, "1005", null, "253551", null, "5141", null, "97322", null, "3292", null, "182070", null, "5007", null, "27105", null, "2120", null, "48040", null, "3403", null, "106925", null, "4607", null, "89.9", null, "1.0", null, "46.3", null, "1.2", null, "53.7", null, "1.2", null, "51.2", null, "1.5", null, "10.7", null, "0.9", null, "3.3", null, "0.5", null, "7.4", null, "0.8", null, "38.1", null, "1.6", null, "24.5", null, "1.4", null, "18.9", null, "1.2", null, "5.4", null, "0.8", null, "1.5", null, "0.4", null, "3.9", null, "0.7", null, "0.2", null, "0.1", null, "75.5", null, "1.4", null, "32.3", null, "1.3", null, "5.3", null, "0.7", null, "1.8", null, "0.4", null, "3.5", null, "0.5", null, "37.9", null, "1.5", null, "6.8", null, "0.9", null, "93.2", null, "0.9", null, "23.3", null, "1.4", null, "76.7", null, "1.4", null, "86.7", null, "1.2", null, "6.0", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "3.0", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "1.1", null, "0.4", null, "3.2", null, "0.6", null, "2.0", null, "0.3", null, "86.2", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.9", null, "1.2", null, "26.4", null, "1.7", null, "58.7", null, "1.8", null, "42", "17"], ["5001900US4401", "Congressional District 1 (119th Congress), Rhode Island", "227002", null, "4064", null, "101131", null, "3381", null, "125871", null, "4277", null, "93814", null, "4884", null, "41442", null, "3789", null, "12913", null, "2663", null, "28529", null, "3111", null, "91746", null, "4945", null, "58328", null, "3492", null, "33864", null, "3511", null, "23823", null, "3038", null, "6986", null, "2136", null, "16837", null, "2661", null, "641", null, "576", null, "168674", null, "4574", null, "59950", null, "3860", null, "17619", null, "2392", null, "5927", null, "1509", null, "11692", null, "1898", null, "91105", null, "4932", null, "29238", null, "2983", null, "197764", null, "4432", null, "63094", null, "4535", null, "163908", null, "5443", null, "157968", null, "4350", null, "12793", null, "2596", null, "1340", null, "699", null, "8367", null, "1382", null, "-999999999", "N", "-999999999", "N", "15679", null, "2825", null, "30442", null, "3888", null, "36728", null, "2835", null, "153436", null, "4441", null, "77683", null, "3597", null, "135256", null, "4517", null, "21006", null, "2401", null, "41092", null, "3630", null, "73158", null, "3748", null, "-888888888", "(X)", "-888888888", "(X)", "44.6", null, "1.4", null, "55.4", null, "1.4", null, "41.3", null, "2.1", null, "18.3", null, "1.7", null, "5.7", null, "1.2", null, "12.6", null, "1.4", null, "40.4", null, "1.9", null, "25.7", null, "1.5", null, "14.9", null, "1.5", null, "10.5", null, "1.3", null, "3.1", null, "0.9", null, "7.4", null, "1.2", null, "0.3", null, "0.3", null, "74.3", null, "1.5", null, "26.4", null, "1.7", null, "7.8", null, "1.1", null, "2.6", null, "0.7", null, "5.2", null, "0.8", null, "40.1", null, "1.9", null, "12.9", null, "1.3", null, "87.1", null, "1.3", null, "27.8", null, "2.0", null, "72.2", null, "2.0", null, "69.6", null, "1.7", null, "5.6", null, "1.1", null, "0.6", null, "0.3", null, "3.7", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "6.9", null, "1.2", null, "13.4", null, "1.7", null, "16.2", null, "1.2", null, "67.6", null, "1.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.5", null, "1.7", null, "30.4", null, "2.4", null, "54.1", null, "2.4", null, "34953", null, "3893", null, "16171", null, "2494", null, "18782", null, "2789", null, "6709", null, "1890", null, "13382", null, "2584", null, "2672", null, "1345", null, "10710", null, "2130", null, "14862", null, "2629", null, "12278", null, "2477", null, "3242", null, "1517", null, "8954", null, "2160", null, "931", null, "552", null, "8023", null, "2065", null, "82", null, "134", null, "22675", null, "3238", null, "3467", null, "1252", null, "4428", null, "1464", null, "1741", null, "1149", null, "2687", null, "919", null, "14780", null, "2626", null, "15151", null, "2334", null, "19802", null, "3448", null, "16390", null, "2724", null, "18563", null, "3215", null, "17273", null, "2999", null, "2884", null, "1307", null, "478", null, "272", null, "501", null, "463", null, "-999999999", "N", "-999999999", "N", "3957", null, "1459", null, "9488", null, "2376", null, "12115", null, "2135", null, "16243", null, "2994", null, "23406", null, "3007", null, "20091", null, "3073", null, "6072", null, "1720", null, "7225", null, "2157", null, "6794", null, "1557", null, "15.4", null, "1.7", null, "46.3", null, "5.1", null, "53.7", null, "5.1", null, "19.2", null, "4.8", null, "38.3", null, "6.2", null, "7.6", null, "3.7", null, "30.6", null, "5.4", null, "42.5", null, "6.0", null, "35.1", null, "5.9", null, "9.3", null, "4.2", null, "25.6", null, "5.5", null, "2.7", null, "1.5", null, "23.0", null, "5.4", null, "0.2", null, "0.4", null, "64.9", null, "5.9", null, "9.9", null, "3.3", null, "12.7", null, "4.0", null, "5.0", null, "3.2", null, "7.7", null, "2.6", null, "42.3", null, "6.0", null, "43.3", null, "6.1", null, "56.7", null, "6.1", null, "46.9", null, "6.5", null, "53.1", null, "6.5", null, "49.4", null, "5.7", null, "8.3", null, "3.5", null, "1.4", null, "0.8", null, "1.4", null, "1.3", null, "-999999999.0", "N", "-999999999.0", "N", "11.3", null, "4.1", null, "27.1", null, "6.4", null, "34.7", null, "5.1", null, "46.5", null, "6.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "30.2", null, "7.2", null, "36.0", null, "8.8", null, "33.8", null, "6.5", null, "192049", null, "4715", null, "84960", null, "3938", null, "107089", null, "4242", null, "87105", null, "4687", null, "28060", null, "3314", null, "10241", null, "2189", null, "17819", null, "2656", null, "76884", null, "4405", null, "46050", null, "3113", null, "30622", null, "3186", null, "14869", null, "2376", null, "6055", null, "2057", null, "8814", null, "1859", null, "559", null, "578", null, "145999", null, "4989", null, "56483", null, "3762", null, "13191", null, "2253", null, "4186", null, "1186", null, "9005", null, "1805", null, "76325", null, "4362", null, "14087", null, "2260", null, "177962", null, "4759", null, "46704", null, "4088", null, "145345", null, "5109", null, "140695", null, "4374", null, "9909", null, "2257", null, "862", null, "637", null, "7866", null, "1323", null, "-999999999", "N", "-999999999", "N", "11722", null, "2518", null, "20954", null, "2926", null, "24613", null, "2625", null, "137193", null, "4525", null, "88375", null, "4901", null, "115165", null, "4692", null, "14934", null, "1793", null, "33867", null, "3488", null, "66364", null, "3730", null, "84.6", null, "1.7", null, "44.2", null, "1.7", null, "55.8", null, "1.7", null, "45.4", null, "2.2", null, "14.6", null, "1.7", null, "5.3", null, "1.1", null, "9.3", null, "1.4", null, "40.0", null, "2.0", null, "24.0", null, "1.6", null, "15.9", null, "1.6", null, "7.7", null, "1.2", null, "3.2", null, "1.1", null, "4.6", null, "1.0", null, "0.3", null, "0.3", null, "76.0", null, "1.6", null, "29.4", null, "1.8", null, "6.9", null, "1.1", null, "2.2", null, "0.6", null, "4.7", null, "0.9", null, "39.7", null, "2.0", null, "7.3", null, "1.2", null, "92.7", null, "1.2", null, "24.3", null, "2.0", null, "75.7", null, "2.0", null, "73.3", null, "1.7", null, "5.2", null, "1.2", null, "0.4", null, "0.3", null, "4.1", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "6.1", null, "1.3", null, "10.9", null, "1.5", null, "12.8", null, "1.3", null, "71.4", null, "1.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.0", null, "1.4", null, "29.4", null, "2.6", null, "57.6", null, "2.7", null, "44", "01"], ["5001900US4402", "Congressional District 2 (119th Congress), Rhode Island", "221316", null, "4242", null, "102891", null, "4079", null, "118425", null, "4110", null, "99944", null, "5073", null, "34795", null, "3550", null, "9920", null, "2089", null, "24875", null, "3157", null, "86577", null, "5360", null, "55479", null, "4177", null, "35513", null, "3884", null, "19174", null, "2800", null, "4895", null, "1366", null, "14279", null, "2425", null, "792", null, "590", null, "165837", null, "5676", null, "64431", null, "4313", null, "15621", null, "2604", null, "5025", null, "1646", null, "10596", null, "1964", null, "85785", null, "5384", null, "28701", null, "3263", null, "192615", null, "4914", null, "56398", null, "4080", null, "164918", null, "4620", null, "173416", null, "4358", null, "9899", null, "2277", null, "-999999999", "N", "-999999999", "N", "7142", null, "1458", null, "-999999999", "N", "-999999999", "N", "14106", null, "2477", null, "15943", null, "2702", null, "26295", null, "2607", null, "171162", null, "4475", null, "92127", null, "4195", null, "134739", null, "4893", null, "20009", null, "2714", null, "34861", null, "2722", null, "79869", null, "4243", null, "-888888888", "(X)", "-888888888", "(X)", "46.5", null, "1.6", null, "53.5", null, "1.6", null, "45.2", null, "2.2", null, "15.7", null, "1.6", null, "4.5", null, "0.9", null, "11.2", null, "1.4", null, "39.1", null, "2.1", null, "25.1", null, "1.9", null, "16.0", null, "1.8", null, "8.7", null, "1.3", null, "2.2", null, "0.6", null, "6.5", null, "1.1", null, "0.4", null, "0.3", null, "74.9", null, "1.9", null, "29.1", null, "1.9", null, "7.1", null, "1.2", null, "2.3", null, "0.7", null, "4.8", null, "0.9", null, "38.8", null, "2.2", null, "13.0", null, "1.5", null, "87.0", null, "1.5", null, "25.5", null, "1.7", null, "74.5", null, "1.7", null, "78.4", null, "1.4", null, "4.5", null, "1.0", null, "-999999999.0", "N", "-999999999.0", "N", "3.2", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "6.4", null, "1.1", null, "7.2", null, "1.2", null, "11.9", null, "1.2", null, "77.3", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.9", null, "1.9", null, "25.9", null, "1.9", null, "59.3", null, "2.3", null, "27312", null, "2848", null, "14808", null, "2352", null, "12504", null, "2347", null, "5412", null, "1497", null, "7126", null, "1739", null, "1650", null, "1103", null, "5476", null, "1426", null, "14774", null, "2482", null, "8479", null, "1911", null, "3878", null, "1431", null, "4569", null, "1344", null, "844", null, "792", null, "3725", null, "1175", null, "32", null, "55", null, "18833", null, "2461", null, "1534", null, "688", null, "2557", null, "1148", null, "806", null, "723", null, "1751", null, "771", null, "14742", null, "2484", null, "14032", null, "2184", null, "13280", null, "2237", null, "14839", null, "2606", null, "12473", null, "2289", null, "14614", null, "2179", null, "2258", null, "1091", null, "-999999999", "N", "-999999999", "N", "530", null, "381", null, "-999999999", "N", "-999999999", "N", "4627", null, "1390", null, "5211", null, "1490", null, "9806", null, "1876", null, "14288", null, "2158", null, "19673", null, "4552", null, "12538", null, "2276", null, "3382", null, "1285", null, "4528", null, "1373", null, "4628", null, "1611", null, "12.3", null, "1.2", null, "54.2", null, "6.9", null, "45.8", null, "6.9", null, "19.8", null, "5.3", null, "26.1", null, "5.7", null, "6.0", null, "3.9", null, "20.0", null, "5.0", null, "54.1", null, "7.0", null, "31.0", null, "6.0", null, "14.2", null, "5.0", null, "16.7", null, "4.5", null, "3.1", null, "2.9", null, "13.6", null, "4.1", null, "0.1", null, "0.2", null, "69.0", null, "6.0", null, "5.6", null, "2.6", null, "9.4", null, "4.1", null, "3.0", null, "2.6", null, "6.4", null, "2.9", null, "54.0", null, "7.0", null, "51.4", null, "6.2", null, "48.6", null, "6.2", null, "54.3", null, "7.3", null, "45.7", null, "7.3", null, "53.5", null, "5.7", null, "8.3", null, "3.9", null, "-999999999.0", "N", "-999999999.0", "N", "1.9", null, "1.4", null, "-999999999.0", "N", "-999999999.0", "N", "16.9", null, "5.0", null, "19.1", null, "4.8", null, "35.9", null, "5.7", null, "52.3", null, "5.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "27.0", null, "9.2", null, "36.1", null, "9.5", null, "36.9", null, "10.1", null, "194004", null, "4474", null, "88083", null, "3502", null, "105921", null, "4194", null, "94532", null, "4776", null, "27669", null, "3493", null, "8270", null, "1835", null, "19399", null, "2898", null, "71803", null, "4950", null, "47000", null, "4103", null, "31635", null, "3723", null, "14605", null, "2735", null, "4051", null, "1265", null, "10554", null, "2269", null, "760", null, "583", null, "147004", null, "5446", null, "62897", null, "4283", null, "13064", null, "2240", null, "4219", null, "1395", null, "8845", null, "1721", null, "71043", null, "4978", null, "14669", null, "2728", null, "179335", null, "4641", null, "41559", null, "3173", null, "152445", null, "4877", null, "158802", null, "4377", null, "7641", null, "2128", null, "-999999999", "N", "-999999999", "N", "6612", null, "1426", null, "-999999999", "N", "-999999999", "N", "9479", null, "2389", null, "10732", null, "2355", null, "16489", null, "2877", null, "156874", null, "4525", null, "102162", null, "4018", null, "122201", null, "4542", null, "16627", null, "2553", null, "30333", null, "2942", null, "75241", null, "3976", null, "87.7", null, "1.2", null, "45.4", null, "1.6", null, "54.6", null, "1.6", null, "48.7", null, "2.5", null, "14.3", null, "1.8", null, "4.3", null, "0.9", null, "10.0", null, "1.5", null, "37.0", null, "2.2", null, "24.2", null, "2.1", null, "16.3", null, "1.9", null, "7.5", null, "1.4", null, "2.1", null, "0.7", null, "5.4", null, "1.2", null, "0.4", null, "0.3", null, "75.8", null, "2.1", null, "32.4", null, "2.2", null, "6.7", null, "1.2", null, "2.2", null, "0.7", null, "4.6", null, "0.9", null, "36.6", null, "2.2", null, "7.6", null, "1.4", null, "92.4", null, "1.4", null, "21.4", null, "1.6", null, "78.6", null, "1.6", null, "81.9", null, "1.7", null, "3.9", null, "1.1", null, "-999999999.0", "N", "-999999999.0", "N", "3.4", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "4.9", null, "1.2", null, "5.5", null, "1.2", null, "8.5", null, "1.4", null, "80.9", null, "1.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.6", null, "2.0", null, "24.8", null, "2.2", null, "61.6", null, "2.6", null, "44", "02"], ["5001900US4501", "Congressional District 1 (119th Congress), South Carolina", "328022", null, "5119", null, "147552", null, "3835", null, "180470", null, "5921", null, "182728", null, "5714", null, "44166", null, "4575", null, "11836", null, "2066", null, "32330", null, "3896", null, "101128", null, "6762", null, "91300", null, "5163", null, "67999", null, "4713", null, "22694", null, "3325", null, "5502", null, "1460", null, "17192", null, "2912", null, "607", null, "636", null, "236722", null, "6526", null, "114729", null, "5224", null, "21472", null, "2860", null, "6334", null, "1594", null, "15138", null, "2335", null, "100521", null, "6729", null, "24380", null, "3091", null, "303642", null, "5943", null, "77758", null, "4297", null, "250264", null, "5974", null, "242017", null, "5320", null, "50396", null, "2772", null, "1141", null, "514", null, "5432", null, "1106", null, "-999999999", "N", "-999999999", "N", "7799", null, "2009", null, "21203", null, "3286", null, "20682", null, "1935", null, "237096", null, "5206", null, "95136", null, "2463", null, "226894", null, "6457", null, "42337", null, "3081", null, "62858", null, "5177", null, "121699", null, "5922", null, "-888888888", "(X)", "-888888888", "(X)", "45.0", null, "1.3", null, "55.0", null, "1.3", null, "55.7", null, "1.6", null, "13.5", null, "1.4", null, "3.6", null, "0.6", null, "9.9", null, "1.2", null, "30.8", null, "1.9", null, "27.8", null, "1.6", null, "20.7", null, "1.4", null, "6.9", null, "1.0", null, "1.7", null, "0.5", null, "5.2", null, "0.9", null, "0.2", null, "0.2", null, "72.2", null, "1.6", null, "35.0", null, "1.6", null, "6.5", null, "0.9", null, "1.9", null, "0.5", null, "4.6", null, "0.7", null, "30.6", null, "1.9", null, "7.4", null, "0.9", null, "92.6", null, "0.9", null, "23.7", null, "1.3", null, "76.3", null, "1.3", null, "73.8", null, "1.2", null, "15.4", null, "0.8", null, "0.3", null, "0.2", null, "1.7", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "2.4", null, "0.6", null, "6.5", null, "1.0", null, "6.3", null, "0.6", null, "72.3", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.7", null, "1.3", null, "27.7", null, "2.1", null, "53.6", null, "2.2", null, "17171", null, "2932", null, "7150", null, "1682", null, "10021", null, "2181", null, "5010", null, "1493", null, "6907", null, "1803", null, "686", null, "466", null, "6221", null, "1737", null, "5254", null, "2009", null, "8634", null, "2241", null, "3513", null, "1364", null, "5121", null, "1576", null, "416", null, "411", null, "4705", null, "1529", null, "0", null, "229", null, "8537", null, "2107", null, "1497", null, "743", null, "1786", null, "839", null, "270", null, "251", null, "1516", null, "782", null, "5254", null, "2009", null, "6881", null, "1869", null, "10290", null, "2082", null, "8337", null, "2026", null, "8834", null, "2051", null, "6618", null, "2067", null, "8616", null, "2470", null, "241", null, "261", null, "385", null, "333", null, "-999999999", "N", "-999999999", "N", "179", null, "179", null, "1132", null, "653", null, "1378", null, "753", null, "6186", null, "2000", null, "38765", null, "7399", null, "11917", null, "2464", null, "1418", null, "698", null, "4914", null, "1604", null, "5585", null, "1692", null, "5.2", null, "0.9", null, "41.6", null, "7.2", null, "58.4", null, "7.2", null, "29.2", null, "7.7", null, "40.2", null, "8.3", null, "4.0", null, "2.6", null, "36.2", null, "8.6", null, "30.6", null, "9.8", null, "50.3", null, "9.4", null, "20.5", null, "7.0", null, "29.8", null, "7.6", null, "2.4", null, "2.3", null, "27.4", null, "7.8", null, "0.0", null, "1.3", null, "49.7", null, "9.4", null, "8.7", null, "4.5", null, "10.4", null, "4.7", null, "1.6", null, "1.5", null, "8.8", null, "4.4", null, "30.6", null, "9.8", null, "40.1", null, "7.8", null, "59.9", null, "7.8", null, "48.6", null, "8.4", null, "51.4", null, "8.4", null, "38.5", null, "10.6", null, "50.2", null, "10.5", null, "1.4", null, "1.5", null, "2.2", null, "1.9", null, "-999999999.0", "N", "-999999999.0", "N", "1.0", null, "1.0", null, "6.6", null, "3.8", null, "8.0", null, "4.4", null, "36.0", null, "10.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.9", null, "6.0", null, "41.2", null, "9.7", null, "46.9", null, "10.1", null, "310851", null, "6068", null, "140402", null, "3768", null, "170449", null, "6312", null, "177718", null, "5832", null, "37259", null, "4270", null, "11150", null, "2113", null, "26109", null, "3517", null, "95874", null, "6476", null, "82666", null, "4821", null, "64486", null, "4567", null, "17573", null, "2985", null, "5086", null, "1410", null, "12487", null, "2478", null, "607", null, "636", null, "228185", null, "6443", null, "113232", null, "5127", null, "19686", null, "2739", null, "6064", null, "1594", null, "13622", null, "2194", null, "95267", null, "6445", null, "17499", null, "2832", null, "293352", null, "6467", null, "69421", null, "3962", null, "241430", null, "6290", null, "235399", null, "5452", null, "41780", null, "3160", null, "900", null, "446", null, "5047", null, "1153", null, "-999999999", "N", "-999999999", "N", "7620", null, "1994", null, "20071", null, "3176", null, "19304", null, "1717", null, "230910", null, "5319", null, "98453", null, "3699", null, "214977", null, "6718", null, "40919", null, "3115", null, "57944", null, "4821", null, "116114", null, "6048", null, "94.8", null, "0.9", null, "45.2", null, "1.3", null, "54.8", null, "1.3", null, "57.2", null, "1.6", null, "12.0", null, "1.4", null, "3.6", null, "0.7", null, "8.4", null, "1.1", null, "30.8", null, "1.9", null, "26.6", null, "1.5", null, "20.7", null, "1.4", null, "5.7", null, "1.0", null, "1.6", null, "0.5", null, "4.0", null, "0.8", null, "0.2", null, "0.2", null, "73.4", null, "1.5", null, "36.4", null, "1.6", null, "6.3", null, "0.9", null, "2.0", null, "0.5", null, "4.4", null, "0.7", null, "30.6", null, "1.9", null, "5.6", null, "0.9", null, "94.4", null, "0.9", null, "22.3", null, "1.2", null, "77.7", null, "1.2", null, "75.7", null, "1.2", null, "13.4", null, "0.9", null, "0.3", null, "0.1", null, "1.6", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "2.5", null, "0.6", null, "6.5", null, "1.0", null, "6.2", null, "0.6", null, "74.3", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "19.0", null, "1.4", null, "27.0", null, "2.1", null, "54.0", null, "2.1", null, "45", "01"], ["5001900US4502", "Congressional District 2 (119th Congress), South Carolina", "306822", null, "5885", null, "130774", null, "4089", null, "176048", null, "6396", null, "151915", null, "5259", null, "57382", null, "4298", null, "13842", null, "2472", null, "43540", null, "3561", null, "97525", null, "4880", null, "95960", null, "5290", null, "59857", null, "4070", null, "35409", null, "3313", null, "8416", null, "1854", null, "26993", null, "2927", null, "694", null, "580", null, "210862", null, "5923", null, "92058", null, "4000", null, "21973", null, "2436", null, "5426", null, "1360", null, "16547", null, "1974", null, "96831", null, "4954", null, "36073", null, "3910", null, "270749", null, "6382", null, "88532", null, "4080", null, "218290", null, "6468", null, "196951", null, "3890", null, "80850", null, "4622", null, "-999999999", "N", "-999999999", "N", "6603", null, "1073", null, "-999999999", "N", "-999999999", "N", "5946", null, "1680", null, "15871", null, "2438", null, "15953", null, "1409", null, "193815", null, "3972", null, "77683", null, "2897", null, "209297", null, "5848", null, "36829", null, "2885", null, "66962", null, "4782", null, "105506", null, "5400", null, "-888888888", "(X)", "-888888888", "(X)", "42.6", null, "1.4", null, "57.4", null, "1.4", null, "49.5", null, "1.5", null, "18.7", null, "1.3", null, "4.5", null, "0.8", null, "14.2", null, "1.1", null, "31.8", null, "1.4", null, "31.3", null, "1.6", null, "19.5", null, "1.2", null, "11.5", null, "1.0", null, "2.7", null, "0.6", null, "8.8", null, "0.9", null, "0.2", null, "0.2", null, "68.7", null, "1.6", null, "30.0", null, "1.3", null, "7.2", null, "0.8", null, "1.8", null, "0.4", null, "5.4", null, "0.6", null, "31.6", null, "1.5", null, "11.8", null, "1.3", null, "88.2", null, "1.3", null, "28.9", null, "1.3", null, "71.1", null, "1.3", null, "64.2", null, "1.2", null, "26.4", null, "1.3", null, "-999999999.0", "N", "-999999999.0", "N", "2.2", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "1.9", null, "0.5", null, "5.2", null, "0.8", null, "5.2", null, "0.5", null, "63.2", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.6", null, "1.3", null, "32.0", null, "2.1", null, "50.4", null, "2.1", null, "26239", null, "2674", null, "9686", null, "1390", null, "16553", null, "2380", null, "6997", null, "1337", null, "13293", null, "2142", null, "2867", null, "1214", null, "10426", null, "1696", null, "5949", null, "1421", null, "15069", null, "2172", null, "4737", null, "1218", null, "10156", null, "1932", null, "2540", null, "1188", null, "7616", null, "1636", null, "176", null, "167", null, "11170", null, "1643", null, "2260", null, "654", null, "3137", null, "743", null, "327", null, "239", null, "2810", null, "742", null, "5773", null, "1428", null, "11300", null, "1996", null, "14939", null, "1894", null, "12921", null, "1762", null, "13318", null, "2334", null, "10972", null, "1450", null, "12403", null, "2017", null, "-999999999", "N", "-999999999", "N", "243", null, "308", null, "-999999999", "N", "-999999999", "N", "850", null, "509", null, "1771", null, "960", null, "1740", null, "838", null, "10731", null, "1432", null, "38789", null, "4540", null, "20290", null, "2404", null, "4779", null, "1339", null, "8543", null, "1693", null, "6968", null, "1720", null, "8.6", null, "0.9", null, "36.9", null, "4.9", null, "63.1", null, "4.9", null, "26.7", null, "5.1", null, "50.7", null, "5.4", null, "10.9", null, "4.2", null, "39.7", null, "5.1", null, "22.7", null, "4.9", null, "57.4", null, "5.1", null, "18.1", null, "4.5", null, "38.7", null, "5.3", null, "9.7", null, "4.2", null, "29.0", null, "5.4", null, "0.7", null, "0.7", null, "42.6", null, "5.1", null, "8.6", null, "2.6", null, "12.0", null, "2.7", null, "1.2", null, "0.9", null, "10.7", null, "2.7", null, "22.0", null, "4.9", null, "43.1", null, "5.4", null, "56.9", null, "5.4", null, "49.2", null, "6.0", null, "50.8", null, "6.0", null, "41.8", null, "5.0", null, "47.3", null, "5.3", null, "-999999999.0", "N", "-999999999.0", "N", "0.9", null, "1.2", null, "-999999999.0", "N", "-999999999.0", "N", "3.2", null, "1.9", null, "6.7", null, "3.5", null, "6.6", null, "3.2", null, "40.9", null, "4.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "23.6", null, "5.4", null, "42.1", null, "7.5", null, "34.3", null, "7.5", null, "280583", null, "6506", null, "121088", null, "4154", null, "159495", null, "6372", null, "144918", null, "5202", null, "44089", null, "4069", null, "10975", null, "2201", null, "33114", null, "3296", null, "91576", null, "4687", null, "80891", null, "5296", null, "55120", null, "3948", null, "25253", null, "3156", null, "5876", null, "1507", null, "19377", null, "2834", null, "518", null, "538", null, "199692", null, "6069", null, "89798", null, "4022", null, "18836", null, "2477", null, "5099", null, "1322", null, "13737", null, "1977", null, "91058", null, "4739", null, "24773", null, "3253", null, "255810", null, "6700", null, "75611", null, "4306", null, "204972", null, "6788", null, "185979", null, "4270", null, "68447", null, "4971", null, "-999999999", "N", "-999999999", "N", "6360", null, "1073", null, "-999999999", "N", "-999999999", "N", "5096", null, "1556", null, "14100", null, "2323", null, "14213", null, "1557", null, "183084", null, "4297", null, "81052", null, "1769", null, "189007", null, "6120", null, "32050", null, "2481", null, "58419", null, "4388", null, "98538", null, "4912", null, "91.4", null, "0.9", null, "43.2", null, "1.5", null, "56.8", null, "1.5", null, "51.6", null, "1.5", null, "15.7", null, "1.4", null, "3.9", null, "0.8", null, "11.8", null, "1.1", null, "32.6", null, "1.5", null, "28.8", null, "1.7", null, "19.6", null, "1.3", null, "9.0", null, "1.1", null, "2.1", null, "0.5", null, "6.9", null, "1.0", null, "0.2", null, "0.2", null, "71.2", null, "1.7", null, "32.0", null, "1.4", null, "6.7", null, "0.9", null, "1.8", null, "0.5", null, "4.9", null, "0.7", null, "32.5", null, "1.5", null, "8.8", null, "1.1", null, "91.2", null, "1.1", null, "26.9", null, "1.5", null, "73.1", null, "1.5", null, "66.3", null, "1.5", null, "24.4", null, "1.5", null, "-999999999.0", "N", "-999999999.0", "N", "2.3", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "1.8", null, "0.5", null, "5.0", null, "0.8", null, "5.1", null, "0.5", null, "65.3", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.0", null, "1.3", null, "30.9", null, "1.9", null, "52.1", null, "2.0", null, "45", "02"], ["5001900US4503", "Congressional District 3 (119th Congress), South Carolina", "310100", null, "4337", null, "138545", null, "3506", null, "171555", null, "4538", null, "156124", null, "4662", null, "53150", null, "3464", null, "14997", null, "1978", null, "38153", null, "3307", null, "100826", null, "4489", null, "87170", null, "4264", null, "55089", null, "3933", null, "31650", null, "3300", null, "8905", null, "1641", null, "22745", null, "2948", null, "431", null, "294", null, "222930", null, "4873", null, "101035", null, "4029", null, "21500", null, "2224", null, "6092", null, "1277", null, "15408", null, "1996", null, "100395", null, "4486", null, "49827", null, "3872", null, "260273", null, "5087", null, "94806", null, "4512", null, "215294", null, "6111", null, "234852", null, "3823", null, "49202", null, "2825", null, "-999999999", "N", "-999999999", "N", "2913", null, "856", null, "-999999999", "N", "-999999999", "N", "5942", null, "1456", null, "15877", null, "2493", null, "14775", null, "1770", null, "231202", null, "3709", null, "65919", null, "1981", null, "209274", null, "4478", null, "42166", null, "2458", null, "64398", null, "3817", null, "102710", null, "3688", null, "-888888888", "(X)", "-888888888", "(X)", "44.7", null, "1.1", null, "55.3", null, "1.1", null, "50.3", null, "1.5", null, "17.1", null, "1.1", null, "4.8", null, "0.6", null, "12.3", null, "1.1", null, "32.5", null, "1.3", null, "28.1", null, "1.3", null, "17.8", null, "1.3", null, "10.2", null, "1.0", null, "2.9", null, "0.5", null, "7.3", null, "0.9", null, "0.1", null, "0.1", null, "71.9", null, "1.3", null, "32.6", null, "1.3", null, "6.9", null, "0.7", null, "2.0", null, "0.4", null, "5.0", null, "0.6", null, "32.4", null, "1.3", null, "16.1", null, "1.2", null, "83.9", null, "1.2", null, "30.6", null, "1.5", null, "69.4", null, "1.5", null, "75.7", null, "1.0", null, "15.9", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "0.9", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "1.9", null, "0.5", null, "5.1", null, "0.8", null, "4.8", null, "0.6", null, "74.6", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "20.1", null, "1.1", null, "30.8", null, "1.6", null, "49.1", null, "1.5", null, "28928", null, "3240", null, "10687", null, "1799", null, "18241", null, "2397", null, "4882", null, "1323", null, "14848", null, "2846", null, "2514", null, "946", null, "12334", null, "2518", null, "9198", null, "1623", null, "15213", null, "2574", null, "3639", null, "1221", null, "11466", null, "2341", null, "2149", null, "906", null, "9317", null, "2040", null, "108", null, "136", null, "13715", null, "2041", null, "1243", null, "552", null, "3382", null, "1055", null, "365", null, "266", null, "3017", null, "1004", null, "9090", null, "1624", null, "16683", null, "2225", null, "12245", null, "2095", null, "14714", null, "2260", null, "14214", null, "2186", null, "15764", null, "2402", null, "10410", null, "1879", null, "-999999999", "N", "-999999999", "N", "0", null, "229", null, "-999999999", "N", "-999999999", "N", "853", null, "501", null, "1860", null, "766", null, "1241", null, "610", null, "15598", null, "2374", null, "18781", null, "3996", null, "19730", null, "2962", null, "4815", null, "1438", null, "10397", null, "2050", null, "4518", null, "1191", null, "9.3", null, "1.0", null, "36.9", null, "4.6", null, "63.1", null, "4.6", null, "16.9", null, "4.5", null, "51.3", null, "6.5", null, "8.7", null, "3.2", null, "42.6", null, "5.8", null, "31.8", null, "5.3", null, "52.6", null, "5.8", null, "12.6", null, "4.1", null, "39.6", null, "5.9", null, "7.4", null, "3.1", null, "32.2", null, "5.2", null, "0.4", null, "0.5", null, "47.4", null, "5.8", null, "4.3", null, "2.0", null, "11.7", null, "3.1", null, "1.3", null, "0.9", null, "10.4", null, "3.0", null, "31.4", null, "5.3", null, "57.7", null, "4.9", null, "42.3", null, "4.9", null, "50.9", null, "5.3", null, "49.1", null, "5.3", null, "54.5", null, "5.3", null, "36.0", null, "5.0", null, "-999999999.0", "N", "-999999999.0", "N", "0.0", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "2.9", null, "1.8", null, "6.4", null, "2.5", null, "4.3", null, "2.1", null, "53.9", null, "5.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "24.4", null, "6.4", null, "52.7", null, "6.2", null, "22.9", null, "5.3", null, "281172", null, "5000", null, "127858", null, "3745", null, "153314", null, "4611", null, "151242", null, "4752", null, "38302", null, "3030", null, "12483", null, "2020", null, "25819", null, "2886", null, "91628", null, "4272", null, "71957", null, "3983", null, "51450", null, "3867", null, "20184", null, "2686", null, "6756", null, "1585", null, "13428", null, "2390", null, "323", null, "239", null, "209215", null, "4837", null, "99792", null, "4001", null, "18118", null, "2116", null, "5727", null, "1240", null, "12391", null, "1880", null, "91305", null, "4263", null, "33144", null, "3490", null, "248028", null, "5294", null, "80092", null, "3921", null, "201080", null, "6014", null, "219088", null, "3989", null, "38792", null, "3146", null, "-999999999", "N", "-999999999", "N", "2913", null, "856", null, "-999999999", "N", "-999999999", "N", "5089", null, "1365", null, "14017", null, "2378", null, "13534", null, "1814", null, "215604", null, "3810", null, "71208", null, "1602", null, "189544", null, "4461", null, "37351", null, "2442", null, "54001", null, "3865", null, "98192", null, "3619", null, "90.7", null, "1.0", null, "45.5", null, "1.2", null, "54.5", null, "1.2", null, "53.8", null, "1.5", null, "13.6", null, "1.1", null, "4.4", null, "0.7", null, "9.2", null, "1.0", null, "32.6", null, "1.3", null, "25.6", null, "1.3", null, "18.3", null, "1.3", null, "7.2", null, "0.9", null, "2.4", null, "0.6", null, "4.8", null, "0.8", null, "0.1", null, "0.1", null, "74.4", null, "1.3", null, "35.5", null, "1.4", null, "6.4", null, "0.8", null, "2.0", null, "0.4", null, "4.4", null, "0.7", null, "32.5", null, "1.3", null, "11.8", null, "1.2", null, "88.2", null, "1.2", null, "28.5", null, "1.4", null, "71.5", null, "1.4", null, "77.9", null, "1.2", null, "13.8", null, "1.0", null, "-999999999.0", "N", "-999999999.0", "N", "1.0", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "1.8", null, "0.5", null, "5.0", null, "0.8", null, "4.8", null, "0.6", null, "76.7", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "19.7", null, "1.2", null, "28.5", null, "1.8", null, "51.8", null, "1.7", null, "45", "03"], ["5001900US4504", "Congressional District 4 (119th Congress), South Carolina", "319887", null, "5061", null, "129031", null, "3315", null, "190856", null, "5234", null, "157653", null, "5059", null, "54250", null, "4131", null, "14905", null, "2445", null, "39345", null, "3257", null, "107984", null, "5651", null, "92678", null, "4843", null, "61799", null, "3703", null, "29969", null, "3125", null, "7467", null, "1830", null, "22502", null, "2866", null, "910", null, "678", null, "227209", null, "5779", null, "95854", null, "4900", null, "24281", null, "2912", null, "7438", null, "1744", null, "16843", null, "2456", null, "107074", null, "5692", null, "34753", null, "3542", null, "285134", null, "5605", null, "80046", null, "4520", null, "239841", null, "5021", null, "220412", null, "4869", null, "53852", null, "3507", null, "-999999999", "N", "-999999999", "N", "7504", null, "1079", null, "-999999999", "N", "-999999999", "N", "7211", null, "1463", null, "29159", null, "3810", null, "29998", null, "2465", null, "215430", null, "5068", null, "78299", null, "2478", null, "211903", null, "5580", null, "33519", null, "2858", null, "63853", null, "5079", null, "114531", null, "5169", null, "-888888888", "(X)", "-888888888", "(X)", "40.3", null, "1.1", null, "59.7", null, "1.1", null, "49.3", null, "1.5", null, "17.0", null, "1.3", null, "4.7", null, "0.8", null, "12.3", null, "1.0", null, "33.8", null, "1.6", null, "29.0", null, "1.4", null, "19.3", null, "1.1", null, "9.4", null, "1.0", null, "2.3", null, "0.6", null, "7.0", null, "0.9", null, "0.3", null, "0.2", null, "71.0", null, "1.4", null, "30.0", null, "1.6", null, "7.6", null, "0.9", null, "2.3", null, "0.5", null, "5.3", null, "0.8", null, "33.5", null, "1.6", null, "10.9", null, "1.1", null, "89.1", null, "1.1", null, "25.0", null, "1.3", null, "75.0", null, "1.3", null, "68.9", null, "1.2", null, "16.8", null, "1.1", null, "-999999999.0", "N", "-999999999.0", "N", "2.3", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "2.3", null, "0.5", null, "9.1", null, "1.2", null, "9.4", null, "0.7", null, "67.3", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.8", null, "1.3", null, "30.1", null, "2.2", null, "54.0", null, "2.2", null, "27765", null, "3777", null, "11941", null, "1772", null, "15824", null, "2966", null, "8555", null, "2038", null, "11071", null, "2388", null, "2210", null, "1006", null, "8861", null, "2145", null, "8139", null, "1878", null, "15127", null, "2560", null, "6834", null, "1612", null, "8293", null, "2152", null, "1641", null, "936", null, "6652", null, "1873", null, "0", null, "229", null, "12638", null, "2390", null, "1721", null, "882", null, "2778", null, "1218", null, "569", null, "465", null, "2209", null, "1074", null, "8139", null, "1878", null, "11454", null, "2415", null, "16311", null, "2769", null, "11659", null, "2242", null, "16106", null, "3163", null, "12020", null, "2236", null, "10454", null, "2158", null, "-999999999", "N", "-999999999", "N", "239", null, "254", null, "-999999999", "N", "-999999999", "N", "1223", null, "731", null, "3780", null, "1830", null, "3886", null, "1461", null, "11673", null, "2177", null, "31747", null, "4437", null, "19626", null, "3093", null, "2665", null, "887", null, "9290", null, "2130", null, "7671", null, "1925", null, "8.7", null, "1.2", null, "43.0", null, "5.2", null, "57.0", null, "5.2", null, "30.8", null, "6.1", null, "39.9", null, "6.6", null, "8.0", null, "3.4", null, "31.9", null, "6.5", null, "29.3", null, "5.6", null, "54.5", null, "5.8", null, "24.6", null, "5.3", null, "29.9", null, "6.3", null, "5.9", null, "3.1", null, "24.0", null, "5.9", null, "0.0", null, "0.8", null, "45.5", null, "5.8", null, "6.2", null, "2.9", null, "10.0", null, "4.3", null, "2.0", null, "1.7", null, "8.0", null, "3.8", null, "29.3", null, "5.6", null, "41.3", null, "6.4", null, "58.7", null, "6.4", null, "42.0", null, "6.9", null, "58.0", null, "6.9", null, "43.3", null, "6.4", null, "37.7", null, "6.5", null, "-999999999.0", "N", "-999999999.0", "N", "0.9", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "4.4", null, "2.6", null, "13.6", null, "5.7", null, "14.0", null, "4.6", null, "42.0", null, "6.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.6", null, "4.2", null, "47.3", null, "7.8", null, "39.1", null, "7.5", null, "292122", null, "5742", null, "117090", null, "3744", null, "175032", null, "5481", null, "149098", null, "5187", null, "43179", null, "3698", null, "12695", null, "2305", null, "30484", null, "2960", null, "99845", null, "5666", null, "77551", null, "4697", null, "54965", null, "3655", null, "21676", null, "2902", null, "5826", null, "1654", null, "15850", null, "2564", null, "910", null, "678", null, "214571", null, "6029", null, "94133", null, "4792", null, "21503", null, "2640", null, "6869", null, "1689", null, "14634", null, "2271", null, "98935", null, "5695", null, "23299", null, "3212", null, "268823", null, "5700", null, "68387", null, "4698", null, "223735", null, "5627", null, "208392", null, "5329", null, "43398", null, "3797", null, "-999999999", "N", "-999999999", "N", "7265", null, "1124", null, "-999999999", "N", "-999999999", "N", "5988", null, "1414", null, "25379", null, "3502", null, "26112", null, "2584", null, "203757", null, "5451", null, "82665", null, "1697", null, "192277", null, "5581", null, "30854", null, "2632", null, "54563", null, "4761", null, "106860", null, "5055", null, "91.3", null, "1.2", null, "40.1", null, "1.2", null, "59.9", null, "1.2", null, "51.0", null, "1.7", null, "14.8", null, "1.2", null, "4.3", null, "0.8", null, "10.4", null, "1.0", null, "34.2", null, "1.7", null, "26.5", null, "1.5", null, "18.8", null, "1.2", null, "7.4", null, "1.0", null, "2.0", null, "0.6", null, "5.4", null, "0.9", null, "0.3", null, "0.2", null, "73.5", null, "1.5", null, "32.2", null, "1.7", null, "7.4", null, "0.9", null, "2.4", null, "0.6", null, "5.0", null, "0.8", null, "33.9", null, "1.7", null, "8.0", null, "1.1", null, "92.0", null, "1.1", null, "23.4", null, "1.5", null, "76.6", null, "1.5", null, "71.3", null, "1.4", null, "14.9", null, "1.3", null, "-999999999.0", "N", "-999999999.0", "N", "2.5", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "2.0", null, "0.5", null, "8.7", null, "1.2", null, "8.9", null, "0.8", null, "69.8", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.0", null, "1.3", null, "28.4", null, "2.2", null, "55.6", null, "2.3", null, "45", "04"], ["5001900US4505", "Congressional District 5 (119th Congress), South Carolina", "306876", null, "4178", null, "131415", null, "3416", null, "175461", null, "4834", null, "153644", null, "5544", null, "52501", null, "3393", null, "14409", null, "2284", null, "38092", null, "3472", null, "100731", null, "4825", null, "94441", null, "4557", null, "63995", null, "4122", null, "29676", null, "3080", null, "8300", null, "2176", null, "21376", null, "2786", null, "770", null, "549", null, "212435", null, "4957", null, "89649", null, "3707", null, "22825", null, "2677", null, "6109", null, "1331", null, "16716", null, "2361", null, "99961", null, "4750", null, "37867", null, "3850", null, "269009", null, "5401", null, "87064", null, "4613", null, "219812", null, "5883", null, "203447", null, "3693", null, "75830", null, "3166", null, "1115", null, "469", null, "6453", null, "1051", null, "-999999999", "N", "-999999999", "N", "5139", null, "1021", null, "14756", null, "2152", null, "14204", null, "1477", null, "200402", null, "3662", null, "75344", null, "1846", null, "206145", null, "5428", null, "31730", null, "2661", null, "68459", null, "4353", null, "105956", null, "4328", null, "-888888888", "(X)", "-888888888", "(X)", "42.8", null, "1.1", null, "57.2", null, "1.1", null, "50.1", null, "1.6", null, "17.1", null, "1.1", null, "4.7", null, "0.8", null, "12.4", null, "1.1", null, "32.8", null, "1.5", null, "30.8", null, "1.4", null, "20.9", null, "1.3", null, "9.7", null, "1.0", null, "2.7", null, "0.7", null, "7.0", null, "0.9", null, "0.3", null, "0.2", null, "69.2", null, "1.4", null, "29.2", null, "1.2", null, "7.4", null, "0.9", null, "2.0", null, "0.4", null, "5.4", null, "0.8", null, "32.6", null, "1.5", null, "12.3", null, "1.3", null, "87.7", null, "1.3", null, "28.4", null, "1.5", null, "71.6", null, "1.5", null, "66.3", null, "0.9", null, "24.7", null, "1.0", null, "0.4", null, "0.2", null, "2.1", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "1.7", null, "0.3", null, "4.8", null, "0.7", null, "4.6", null, "0.5", null, "65.3", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.4", null, "1.2", null, "33.2", null, "1.8", null, "51.4", null, "1.8", null, "27432", null, "2863", null, "12064", null, "1680", null, "15368", null, "2509", null, "6833", null, "1389", null, "12174", null, "1995", null, "2400", null, "1046", null, "9774", null, "1701", null, "8425", null, "1851", null, "13812", null, "2105", null, "4843", null, "1324", null, "8945", null, "1862", null, "1835", null, "1029", null, "7110", null, "1602", null, "24", null, "43", null, "13620", null, "2140", null, "1990", null, "561", null, "3229", null, "903", null, "565", null, "406", null, "2664", null, "761", null, "8401", null, "1843", null, "12570", null, "2345", null, "14862", null, "2143", null, "13025", null, "2042", null, "14407", null, "2197", null, "11041", null, "1754", null, "13647", null, "2253", null, "80", null, "80", null, "324", null, "394", null, "-999999999", "N", "-999999999", "N", "871", null, "609", null, "1469", null, "626", null, "2397", null, "908", null, "10123", null, "1761", null, "31950", null, "8010", null, "19007", null, "2403", null, "3845", null, "1129", null, "9020", null, "1932", null, "6142", null, "1524", null, "8.9", null, "0.9", null, "44.0", null, "5.6", null, "56.0", null, "5.6", null, "24.9", null, "4.8", null, "44.4", null, "5.4", null, "8.7", null, "3.7", null, "35.6", null, "4.8", null, "30.7", null, "5.7", null, "50.3", null, "5.8", null, "17.7", null, "4.8", null, "32.6", null, "5.5", null, "6.7", null, "3.7", null, "25.9", null, "4.8", null, "0.1", null, "0.2", null, "49.7", null, "5.8", null, "7.3", null, "1.9", null, "11.8", null, "3.2", null, "2.1", null, "1.4", null, "9.7", null, "2.8", null, "30.6", null, "5.6", null, "45.8", null, "6.4", null, "54.2", null, "6.4", null, "47.5", null, "5.7", null, "52.5", null, "5.7", null, "40.2", null, "5.2", null, "49.7", null, "5.7", null, "0.3", null, "0.3", null, "1.2", null, "1.4", null, "-999999999.0", "N", "-999999999.0", "N", "3.2", null, "2.2", null, "5.4", null, "2.3", null, "8.7", null, "3.4", null, "36.9", null, "5.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "20.2", null, "5.7", null, "47.5", null, "7.6", null, "32.3", null, "7.0", null, "279444", null, "4805", null, "119351", null, "3137", null, "160093", null, "5099", null, "146811", null, "5439", null, "40327", null, "3581", null, "12009", null, "2265", null, "28318", null, "3442", null, "92306", null, "4778", null, "80629", null, "4341", null, "59152", null, "4043", null, "20731", null, "2965", null, "6465", null, "1892", null, "14266", null, "2718", null, "746", null, "559", null, "198815", null, "4942", null, "87659", null, "3702", null, "19596", null, "2442", null, "5544", null, "1349", null, "14052", null, "2208", null, "91560", null, "4724", null, "25297", null, "3045", null, "254147", null, "5397", null, "74039", null, "4114", null, "205405", null, "5392", null, "192406", null, "3936", null, "62183", null, "3820", null, "1035", null, "481", null, "6129", null, "1146", null, "-999999999", "N", "-999999999", "N", "4268", null, "920", null, "13287", null, "2046", null, "11807", null, "1523", null, "190279", null, "3875", null, "79204", null, "2397", null, "187138", null, "5471", null, "27885", null, "2467", null, "59439", null, "4247", null, "99814", null, "4064", null, "91.1", null, "0.9", null, "42.7", null, "1.2", null, "57.3", null, "1.2", null, "52.5", null, "1.8", null, "14.4", null, "1.2", null, "4.3", null, "0.8", null, "10.1", null, "1.2", null, "33.0", null, "1.6", null, "28.9", null, "1.4", null, "21.2", null, "1.4", null, "7.4", null, "1.0", null, "2.3", null, "0.7", null, "5.1", null, "1.0", null, "0.3", null, "0.2", null, "71.1", null, "1.4", null, "31.4", null, "1.3", null, "7.0", null, "0.9", null, "2.0", null, "0.5", null, "5.0", null, "0.8", null, "32.8", null, "1.6", null, "9.1", null, "1.1", null, "90.9", null, "1.1", null, "26.5", null, "1.4", null, "73.5", null, "1.4", null, "68.9", null, "1.2", null, "22.3", null, "1.2", null, "0.4", null, "0.2", null, "2.2", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "1.5", null, "0.3", null, "4.8", null, "0.7", null, "4.2", null, "0.5", null, "68.1", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.9", null, "1.3", null, "31.8", null, "1.9", null, "53.3", null, "1.8", null, "45", "05"], ["5001900US4506", "Congressional District 6 (119th Congress), South Carolina", "320532", null, "8162", null, "133087", null, "5088", null, "187445", null, "7374", null, "112408", null, "5550", null, "67586", null, "5691", null, "16134", null, "3115", null, "51452", null, "4716", null, "140538", null, "6885", null, "77183", null, "5948", null, "37756", null, "3923", null, "38851", null, "4327", null, "8802", null, "2529", null, "30049", null, "3590", null, "576", null, "544", null, "243349", null, "7429", null, "74652", null, "4601", null, "28735", null, "3735", null, "7332", null, "1838", null, "21403", null, "3143", null, "139962", null, "6792", null, "63377", null, "5563", null, "257155", null, "6819", null, "94274", null, "5191", null, "226258", null, "7875", null, "147995", null, "6728", null, "138720", null, "5737", null, "-999999999", "N", "-999999999", "N", "4874", null, "1163", null, "-999999999", "N", "-999999999", "N", "4177", null, "1377", null, "22192", null, "3386", null, "15248", null, "1844", null, "145947", null, "6701", null, "58458", null, "2495", null, "179994", null, "7198", null, "31363", null, "3098", null, "62167", null, "5266", null, "86464", null, "5235", null, "-888888888", "(X)", "-888888888", "(X)", "41.5", null, "1.4", null, "58.5", null, "1.4", null, "35.1", null, "1.7", null, "21.1", null, "1.6", null, "5.0", null, "0.9", null, "16.1", null, "1.4", null, "43.8", null, "1.8", null, "24.1", null, "1.7", null, "11.8", null, "1.2", null, "12.1", null, "1.3", null, "2.7", null, "0.8", null, "9.4", null, "1.1", null, "0.2", null, "0.2", null, "75.9", null, "1.7", null, "23.3", null, "1.5", null, "9.0", null, "1.1", null, "2.3", null, "0.6", null, "6.7", null, "1.0", null, "43.7", null, "1.8", null, "19.8", null, "1.5", null, "80.2", null, "1.5", null, "29.4", null, "1.5", null, "70.6", null, "1.5", null, "46.2", null, "1.6", null, "43.3", null, "1.4", null, "-999999999.0", "N", "-999999999.0", "N", "1.5", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "1.3", null, "0.4", null, "6.9", null, "1.1", null, "4.8", null, "0.6", null, "45.5", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.4", null, "1.6", null, "34.5", null, "2.3", null, "48.0", null, "2.6", null, "45184", null, "4363", null, "20095", null, "2688", null, "25089", null, "4123", null, "5871", null, "1616", null, "23120", null, "3127", null, "2587", null, "1024", null, "20533", null, "3010", null, "16193", null, "2236", null, "20510", null, "3111", null, "3067", null, "1236", null, "17443", null, "2790", null, "1697", null, "809", null, "15746", null, "2784", null, "0", null, "229", null, "24674", null, "3191", null, "2804", null, "922", null, "5677", null, "1579", null, "890", null, "597", null, "4787", null, "1445", null, "16193", null, "2236", null, "22290", null, "2997", null, "22894", null, "2930", null, "21958", null, "3101", null, "23226", null, "3523", null, "8494", null, "1632", null, "33886", null, "3728", null, "-999999999", "N", "-999999999", "N", "154", null, "212", null, "-999999999", "N", "-999999999", "N", "59", null, "81", null, "2560", null, "1080", null, "1070", null, "742", null, "8444", null, "1616", null, "21330", null, "2891", null, "28991", null, "3787", null, "6930", null, "1923", null, "13222", null, "2674", null, "8839", null, "2205", null, "14.1", null, "1.3", null, "44.5", null, "5.8", null, "55.5", null, "5.8", null, "13.0", null, "3.0", null, "51.2", null, "4.7", null, "5.7", null, "2.2", null, "45.4", null, "4.7", null, "35.8", null, "4.4", null, "45.4", null, "5.1", null, "6.8", null, "2.5", null, "38.6", null, "5.2", null, "3.8", null, "1.8", null, "34.8", null, "5.3", null, "0.0", null, "0.5", null, "54.6", null, "5.1", null, "6.2", null, "1.9", null, "12.6", null, "3.1", null, "2.0", null, "1.3", null, "10.6", null, "2.9", null, "35.8", null, "4.4", null, "49.3", null, "4.4", null, "50.7", null, "4.4", null, "48.6", null, "5.6", null, "51.4", null, "5.6", null, "18.8", null, "3.1", null, "75.0", null, "3.8", null, "-999999999.0", "N", "-999999999.0", "N", "0.3", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "0.1", null, "0.2", null, "5.7", null, "2.4", null, "2.4", null, "1.6", null, "18.7", null, "3.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "23.9", null, "5.6", null, "45.6", null, "7.5", null, "30.5", null, "6.4", null, "275348", null, "7638", null, "112992", null, "4256", null, "162356", null, "7745", null, "106537", null, "5192", null, "44466", null, "5085", null, "13547", null, "2965", null, "30919", null, "4082", null, "124345", null, "6684", null, "56673", null, "4900", null, "34689", null, "3606", null, "21408", null, "3697", null, "7105", null, "2393", null, "14303", null, "2756", null, "576", null, "544", null, "218675", null, "7290", null, "71848", null, "4470", null, "23058", null, "3370", null, "6442", null, "1741", null, "16616", null, "2713", null, "123769", null, "6623", null, "41087", null, "3708", null, "234261", null, "7333", null, "72316", null, "4321", null, "203032", null, "7199", null, "139501", null, "6059", null, "104834", null, "5189", null, "-999999999", "N", "-999999999", "N", "4720", null, "1211", null, "-999999999", "N", "-999999999", "N", "4118", null, "1369", null, "19632", null, "3414", null, "14178", null, "1828", null, "137503", null, "6062", null, "63572", null, "3229", null, "151003", null, "6311", null, "24433", null, "2264", null, "48945", null, "4284", null, "77625", null, "5238", null, "85.9", null, "1.3", null, "41.0", null, "1.7", null, "59.0", null, "1.7", null, "38.7", null, "1.8", null, "16.1", null, "1.7", null, "4.9", null, "1.0", null, "11.2", null, "1.4", null, "45.2", null, "1.9", null, "20.6", null, "1.6", null, "12.6", null, "1.3", null, "7.8", null, "1.3", null, "2.6", null, "0.9", null, "5.2", null, "1.0", null, "0.2", null, "0.2", null, "79.4", null, "1.6", null, "26.1", null, "1.6", null, "8.4", null, "1.2", null, "2.3", null, "0.6", null, "6.0", null, "1.0", null, "45.0", null, "1.9", null, "14.9", null, "1.3", null, "85.1", null, "1.3", null, "26.3", null, "1.5", null, "73.7", null, "1.5", null, "50.7", null, "1.7", null, "38.1", null, "1.5", null, "-999999999.0", "N", "-999999999.0", "N", "1.7", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "1.5", null, "0.5", null, "7.1", null, "1.2", null, "5.1", null, "0.7", null, "49.9", null, "1.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.2", null, "1.4", null, "32.4", null, "2.4", null, "51.4", null, "2.7", null, "45", "06"], ["5001900US4507", "Congressional District 7 (119th Congress), South Carolina", "330651", null, "6039", null, "177168", null, "3612", null, "153483", null, "5443", null, "155721", null, "5248", null, "60929", null, "4513", null, "14254", null, "2126", null, "46675", null, "3818", null, "114001", null, "6082", null, "79156", null, "4284", null, "41013", null, "3412", null, "37658", null, "3717", null, "8109", null, "1974", null, "29549", null, "2956", null, "485", null, "315", null, "251495", null, "5637", null, "114708", null, "4626", null, "23271", null, "3010", null, "6145", null, "1384", null, "17126", null, "2488", null, "113516", null, "6100", null, "61509", null, "5581", null, "269142", null, "6753", null, "107724", null, "5831", null, "222927", null, "7736", null, "227182", null, "4766", null, "78519", null, "3517", null, "1846", null, "754", null, "2972", null, "665", null, "-999999999", "N", "-999999999", "N", "4934", null, "1237", null, "15156", null, "1968", null, "13236", null, "1566", null, "225562", null, "4828", null, "61149", null, "1849", null, "216650", null, "6718", null, "52307", null, "3491", null, "74856", null, "4989", null, "89487", null, "5116", null, "-888888888", "(X)", "-888888888", "(X)", "53.6", null, "1.1", null, "46.4", null, "1.1", null, "47.1", null, "1.5", null, "18.4", null, "1.3", null, "4.3", null, "0.6", null, "14.1", null, "1.1", null, "34.5", null, "1.7", null, "23.9", null, "1.2", null, "12.4", null, "1.0", null, "11.4", null, "1.1", null, "2.5", null, "0.6", null, "8.9", null, "0.9", null, "0.1", null, "0.1", null, "76.1", null, "1.2", null, "34.7", null, "1.4", null, "7.0", null, "0.9", null, "1.9", null, "0.4", null, "5.2", null, "0.7", null, "34.3", null, "1.7", null, "18.6", null, "1.6", null, "81.4", null, "1.6", null, "32.6", null, "1.8", null, "67.4", null, "1.8", null, "68.7", null, "0.9", null, "23.7", null, "0.9", null, "0.6", null, "0.2", null, "0.9", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "1.5", null, "0.4", null, "4.6", null, "0.6", null, "4.0", null, "0.5", null, "68.2", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "24.1", null, "1.5", null, "34.6", null, "2.1", null, "41.3", null, "1.8", null, "38652", null, "3908", null, "15645", null, "2212", null, "23007", null, "2909", null, "8752", null, "2119", null, "18021", null, "2557", null, "2718", null, "1191", null, "15303", null, "1998", null, "11879", null, "2465", null, "19787", null, "2650", null, "5728", null, "2036", null, "13991", null, "2517", null, "2100", null, "1103", null, "11891", null, "1934", null, "68", null, "111", null, "18865", null, "2697", null, "3024", null, "1036", null, "4030", null, "1207", null, "618", null, "424", null, "3412", null, "1152", null, "11811", null, "2465", null, "23536", null, "3100", null, "15116", null, "2589", null, "17263", null, "2812", null, "21389", null, "3108", null, "14588", null, "2246", null, "21874", null, "2749", null, "228", null, "167", null, "0", null, "229", null, "-999999999", "N", "-999999999", "N", "367", null, "373", null, "1595", null, "720", null, "949", null, "608", null, "14561", null, "2242", null, "20797", null, "3431", null, "26773", null, "2943", null, "5664", null, "1652", null, "13833", null, "2554", null, "7276", null, "2056", null, "11.7", null, "1.1", null, "40.5", null, "4.2", null, "59.5", null, "4.2", null, "22.6", null, "5.1", null, "46.6", null, "5.4", null, "7.0", null, "3.0", null, "39.6", null, "4.1", null, "30.7", null, "4.9", null, "51.2", null, "4.7", null, "14.8", null, "5.1", null, "36.2", null, "5.5", null, "5.4", null, "2.8", null, "30.8", null, "4.0", null, "0.2", null, "0.3", null, "48.8", null, "4.7", null, "7.8", null, "2.6", null, "10.4", null, "3.2", null, "1.6", null, "1.1", null, "8.8", null, "3.1", null, "30.6", null, "4.9", null, "60.9", null, "5.3", null, "39.1", null, "5.3", null, "44.7", null, "5.7", null, "55.3", null, "5.7", null, "37.7", null, "4.3", null, "56.6", null, "4.4", null, "0.6", null, "0.4", null, "0.0", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "0.9", null, "0.9", null, "4.1", null, "1.8", null, "2.5", null, "1.5", null, "37.7", null, "4.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "21.2", null, "5.6", null, "51.7", null, "8.1", null, "27.2", null, "6.8", null, "291999", null, "6135", null, "161523", null, "3485", null, "130476", null, "5224", null, "146969", null, "4944", null, "42908", null, "4236", null, "11536", null, "1808", null, "31372", null, "3566", null, "102122", null, "5809", null, "59369", null, "3828", null, "35285", null, "2905", null, "23667", null, "3198", null, "6009", null, "1514", null, "17658", null, "2712", null, "417", null, "321", null, "232630", null, "5578", null, "111684", null, "4482", null, "19241", null, "2709", null, "5527", null, "1278", null, "13714", null, "2252", null, "101705", null, "5824", null, "37973", null, "4357", null, "254026", null, "6190", null, "90461", null, "5145", null, "201538", null, "7330", null, "212594", null, "4913", null, "56645", null, "3621", null, "1618", null, "715", null, "2972", null, "665", null, "-999999999", "N", "-999999999", "N", "4567", null, "1166", null, "13561", null, "1877", null, "12287", null, "1540", null, "211001", null, "4913", null, "66603", null, "2370", null, "189877", null, "6257", null, "46643", null, "3050", null, "61023", null, "4317", null, "82211", null, "4644", null, "88.3", null, "1.1", null, "55.3", null, "1.1", null, "44.7", null, "1.1", null, "50.3", null, "1.6", null, "14.7", null, "1.4", null, "4.0", null, "0.6", null, "10.7", null, "1.2", null, "35.0", null, "1.8", null, "20.3", null, "1.2", null, "12.1", null, "0.9", null, "8.1", null, "1.1", null, "2.1", null, "0.5", null, "6.0", null, "0.9", null, "0.1", null, "0.1", null, "79.7", null, "1.2", null, "38.2", null, "1.5", null, "6.6", null, "0.9", null, "1.9", null, "0.4", null, "4.7", null, "0.7", null, "34.8", null, "1.8", null, "13.0", null, "1.4", null, "87.0", null, "1.4", null, "31.0", null, "1.8", null, "69.0", null, "1.8", null, "72.8", null, "1.0", null, "19.4", null, "1.1", null, "0.6", null, "0.2", null, "1.0", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "1.6", null, "0.4", null, "4.6", null, "0.6", null, "4.2", null, "0.5", null, "72.3", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "24.6", null, "1.5", null, "32.1", null, "2.0", null, "43.3", null, "1.8", null, "45", "07"], ["5001900US4600", "Congressional District (at Large) (119th Congress), South Dakota", "382302", null, "3562", null, "155126", null, "2829", null, "227176", null, "3729", null, "188332", null, "4846", null, "48178", null, "3913", null, "17184", null, "1997", null, "30994", null, "3123", null, "145792", null, "4547", null, "107119", null, "3516", null, "73784", null, "3528", null, "32550", null, "3143", null, "11227", null, "1881", null, "21323", null, "2521", null, "785", null, "651", null, "275183", null, "4616", null, "114548", null, "3787", null, "15628", null, "2151", null, "5957", null, "1227", null, "9671", null, "1537", null, "145007", null, "4399", null, "40873", null, "3554", null, "341429", null, "4615", null, "102471", null, "4497", null, "279831", null, "5790", null, "324515", null, "3738", null, "7004", null, "1421", null, "19109", null, "1455", null, "5719", null, "1173", null, "-999999999", "N", "-999999999", "N", "4757", null, "1016", null, "21068", null, "2543", null, "14744", null, "1430", null, "320752", null, "3762", null, "76881", null, "1990", null, "236510", null, "4443", null, "34916", null, "2350", null, "60682", null, "3622", null, "140912", null, "4420", null, "-888888888", "(X)", "-888888888", "(X)", "40.6", null, "0.7", null, "59.4", null, "0.7", null, "49.3", null, "1.2", null, "12.6", null, "1.0", null, "4.5", null, "0.5", null, "8.1", null, "0.8", null, "38.1", null, "1.1", null, "28.0", null, "0.9", null, "19.3", null, "0.9", null, "8.5", null, "0.8", null, "2.9", null, "0.5", null, "5.6", null, "0.7", null, "0.2", null, "0.2", null, "72.0", null, "0.9", null, "30.0", null, "1.0", null, "4.1", null, "0.6", null, "1.6", null, "0.3", null, "2.5", null, "0.4", null, "37.9", null, "1.1", null, "10.7", null, "0.9", null, "89.3", null, "0.9", null, "26.8", null, "1.2", null, "73.2", null, "1.2", null, "84.9", null, "0.7", null, "1.8", null, "0.4", null, "5.0", null, "0.4", null, "1.5", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "1.2", null, "0.3", null, "5.5", null, "0.7", null, "3.9", null, "0.4", null, "83.9", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.8", null, "1.0", null, "25.7", null, "1.5", null, "59.6", null, "1.4", null, "27163", null, "2903", null, "10741", null, "1624", null, "16422", null, "2371", null, "3540", null, "1372", null, "11026", null, "1933", null, "2795", null, "933", null, "8231", null, "1723", null, "12597", null, "1889", null, "11453", null, "2122", null, "2882", null, "1248", null, "8283", null, "1527", null, "1702", null, "618", null, "6581", null, "1483", null, "288", null, "421", null, "15710", null, "2148", null, "658", null, "330", null, "2743", null, "1120", null, "1093", null, "629", null, "1650", null, "753", null, "12309", null, "1757", null, "14558", null, "2131", null, "12605", null, "2169", null, "15456", null, "2189", null, "11707", null, "2191", null, "16632", null, "2261", null, "418", null, "351", null, "6681", null, "1577", null, "219", null, "283", null, "-999999999", "N", "-999999999", "N", "515", null, "458", null, "2665", null, "990", null, "1459", null, "690", null, "16632", null, "2261", null, "19914", null, "3421", null, "14566", null, "2443", null, "3695", null, "1155", null, "6048", null, "1293", null, "4823", null, "1549", null, "7.1", null, "0.8", null, "39.5", null, "5.0", null, "60.5", null, "5.0", null, "13.0", null, "4.6", null, "40.6", null, "5.5", null, "10.3", null, "3.2", null, "30.3", null, "5.6", null, "46.4", null, "6.0", null, "42.2", null, "5.9", null, "10.6", null, "4.2", null, "30.5", null, "4.8", null, "6.3", null, "2.2", null, "24.2", null, "4.9", null, "1.1", null, "1.6", null, "57.8", null, "5.9", null, "2.4", null, "1.2", null, "10.1", null, "3.9", null, "4.0", null, "2.2", null, "6.1", null, "2.7", null, "45.3", null, "5.4", null, "53.6", null, "5.9", null, "46.4", null, "5.9", null, "56.9", null, "6.0", null, "43.1", null, "6.0", null, "61.2", null, "5.4", null, "1.5", null, "1.3", null, "24.6", null, "5.0", null, "0.8", null, "1.0", null, "-999999999.0", "N", "-999999999.0", "N", "1.9", null, "1.7", null, "9.8", null, "3.5", null, "5.4", null, "2.6", null, "61.2", null, "5.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "25.4", null, "6.3", null, "41.5", null, "7.9", null, "33.1", null, "8.0", null, "355139", null, "4568", null, "144385", null, "3238", null, "210754", null, "4408", null, "184792", null, "4850", null, "37152", null, "3798", null, "14389", null, "1962", null, "22763", null, "2943", null, "133195", null, "4342", null, "95666", null, "3988", null, "70902", null, "3589", null, "24267", null, "2900", null, "9525", null, "1827", null, "14742", null, "2136", null, "497", null, "432", null, "259473", null, "4637", null, "113890", null, "3804", null, "12885", null, "1938", null, "4864", null, "1112", null, "8021", null, "1481", null, "132698", null, "4230", null, "26315", null, "2855", null, "328824", null, "4975", null, "87015", null, "3868", null, "268124", null, "5805", null, "307883", null, "4146", null, "6586", null, "1481", null, "12428", null, "1884", null, "5500", null, "1224", null, "-999999999", "N", "-999999999", "N", "4242", null, "981", null, "18403", null, "2484", null, "13285", null, "1547", null, "304120", null, "4175", null, "81432", null, "1453", null, "221944", null, "4932", null, "31221", null, "2284", null, "54634", null, "3324", null, "136089", null, "4175", null, "92.9", null, "0.8", null, "40.7", null, "0.8", null, "59.3", null, "0.8", null, "52.0", null, "1.2", null, "10.5", null, "1.1", null, "4.1", null, "0.6", null, "6.4", null, "0.8", null, "37.5", null, "1.1", null, "26.9", null, "1.0", null, "20.0", null, "1.0", null, "6.8", null, "0.8", null, "2.7", null, "0.5", null, "4.2", null, "0.6", null, "0.1", null, "0.1", null, "73.1", null, "1.0", null, "32.1", null, "1.0", null, "3.6", null, "0.5", null, "1.4", null, "0.3", null, "2.3", null, "0.4", null, "37.4", null, "1.1", null, "7.4", null, "0.8", null, "92.6", null, "0.8", null, "24.5", null, "1.1", null, "75.5", null, "1.1", null, "86.7", null, "0.9", null, "1.9", null, "0.4", null, "3.5", null, "0.5", null, "1.5", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "1.2", null, "0.3", null, "5.2", null, "0.7", null, "3.7", null, "0.4", null, "85.6", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.1", null, "1.0", null, "24.6", null, "1.4", null, "61.3", null, "1.3", null, "46", "00"], ["5001900US4701", "Congressional District 1 (119th Congress), Tennessee", "333785", null, "4609", null, "159719", null, "3515", null, "174066", null, "4237", null, "154849", null, "5356", null, "54553", null, "3898", null, "17076", null, "2567", null, "37477", null, "3075", null, "124383", null, "5069", null, "80778", null, "4245", null, "49193", null, "3522", null, "30382", null, "3408", null, "8427", null, "1824", null, "21955", null, "2674", null, "1203", null, "704", null, "253007", null, "5293", null, "105656", null, "4455", null, "24171", null, "2445", null, "8649", null, "1807", null, "15522", null, "1768", null, "123180", null, "4970", null, "53313", null, "4446", null, "280472", null, "5688", null, "118760", null, "5091", null, "215025", null, "6586", null, "302630", null, "4310", null, "5378", null, "1470", null, "-999999999", "N", "-999999999", "N", "2411", null, "675", null, "-999999999", "N", "-999999999", "N", "5853", null, "1639", null, "17185", null, "1916", null, "12719", null, "1474", null, "301034", null, "4274", null, "60591", null, "1700", null, "209402", null, "5404", null, "43376", null, "2904", null, "70068", null, "4394", null, "95958", null, "4728", null, "-888888888", "(X)", "-888888888", "(X)", "47.9", null, "0.9", null, "52.1", null, "0.9", null, "46.4", null, "1.4", null, "16.3", null, "1.2", null, "5.1", null, "0.8", null, "11.2", null, "0.9", null, "37.3", null, "1.4", null, "24.2", null, "1.2", null, "14.7", null, "1.0", null, "9.1", null, "1.0", null, "2.5", null, "0.5", null, "6.6", null, "0.8", null, "0.4", null, "0.2", null, "75.8", null, "1.2", null, "31.7", null, "1.3", null, "7.2", null, "0.7", null, "2.6", null, "0.5", null, "4.7", null, "0.5", null, "36.9", null, "1.4", null, "16.0", null, "1.3", null, "84.0", null, "1.3", null, "35.6", null, "1.6", null, "64.4", null, "1.6", null, "90.7", null, "0.7", null, "1.6", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "0.7", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "1.8", null, "0.5", null, "5.1", null, "0.5", null, "3.8", null, "0.4", null, "90.2", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "20.7", null, "1.3", null, "33.5", null, "1.9", null, "45.8", null, "1.9", null, "36951", null, "3110", null, "15660", null, "2077", null, "21291", null, "2468", null, "8097", null, "1710", null, "15711", null, "2168", null, "3877", null, "1220", null, "11834", null, "2067", null, "13143", null, "1603", null, "17410", null, "2566", null, "4897", null, "1417", null, "12144", null, "2024", null, "2054", null, "929", null, "10090", null, "1983", null, "369", null, "354", null, "19541", null, "2352", null, "3200", null, "885", null, "3567", null, "1113", null, "1823", null, "921", null, "1744", null, "614", null, "12774", null, "1558", null, "21499", null, "2678", null, "15452", null, "2357", null, "20523", null, "2550", null, "16428", null, "2151", null, "32632", null, "2893", null, "963", null, "641", null, "-999999999", "N", "-999999999", "N", "0", null, "230", null, "-999999999", "N", "-999999999", "N", "114", null, "133", null, "3172", null, "988", null, "1337", null, "677", null, "32244", null, "2897", null, "22437", null, "3424", null, "23808", null, "2682", null, "5839", null, "1207", null, "11659", null, "1886", null, "6310", null, "1553", null, "11.1", null, "0.9", null, "42.4", null, "4.5", null, "57.6", null, "4.5", null, "21.9", null, "4.1", null, "42.5", null, "4.4", null, "10.5", null, "3.2", null, "32.0", null, "4.7", null, "35.6", null, "3.8", null, "47.1", null, "5.2", null, "13.3", null, "3.6", null, "32.9", null, "4.6", null, "5.6", null, "2.6", null, "27.3", null, "4.6", null, "1.0", null, "0.9", null, "52.9", null, "5.2", null, "8.7", null, "2.2", null, "9.7", null, "2.9", null, "4.9", null, "2.4", null, "4.7", null, "1.7", null, "34.6", null, "4.0", null, "58.2", null, "5.4", null, "41.8", null, "5.4", null, "55.5", null, "4.7", null, "44.5", null, "4.7", null, "88.3", null, "3.2", null, "2.6", null, "1.7", null, "-999999999.0", "N", "-999999999.0", "N", "0.0", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "0.3", null, "0.4", null, "8.6", null, "2.5", null, "3.6", null, "1.8", null, "87.3", null, "3.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "24.5", null, "4.9", null, "49.0", null, "5.7", null, "26.5", null, "5.3", null, "296834", null, "5375", null, "144059", null, "3799", null, "152775", null, "4957", null, "146752", null, "5243", null, "38842", null, "3008", null, "13199", null, "2224", null, "25643", null, "2394", null, "111240", null, "4839", null, "63368", null, "3905", null, "44296", null, "3282", null, "18238", null, "2602", null, "6373", null, "1680", null, "11865", null, "1995", null, "834", null, "573", null, "233466", null, "5044", null, "102456", null, "4282", null, "20604", null, "2301", null, "6826", null, "1509", null, "13778", null, "1815", null, "110406", null, "4671", null, "31814", null, "3210", null, "265020", null, "5816", null, "98237", null, "5047", null, "198597", null, "6617", null, "269998", null, "4726", null, "4415", null, "1568", null, "-999999999", "N", "-999999999", "N", "2411", null, "675", null, "-999999999", "N", "-999999999", "N", "5739", null, "1645", null, "14013", null, "1799", null, "11382", null, "1438", null, "268790", null, "4774", null, "65982", null, "1997", null, "185594", null, "5247", null, "37537", null, "2571", null, "58409", null, "3781", null, "89648", null, "4733", null, "88.9", null, "0.9", null, "48.5", null, "1.2", null, "51.5", null, "1.2", null, "49.4", null, "1.5", null, "13.1", null, "1.0", null, "4.4", null, "0.7", null, "8.6", null, "0.8", null, "37.5", null, "1.4", null, "21.3", null, "1.2", null, "14.9", null, "1.0", null, "6.1", null, "0.9", null, "2.1", null, "0.6", null, "4.0", null, "0.7", null, "0.3", null, "0.2", null, "78.7", null, "1.2", null, "34.5", null, "1.4", null, "6.9", null, "0.8", null, "2.3", null, "0.5", null, "4.6", null, "0.6", null, "37.2", null, "1.4", null, "10.7", null, "1.1", null, "89.3", null, "1.1", null, "33.1", null, "1.7", null, "66.9", null, "1.7", null, "91.0", null, "0.8", null, "1.5", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "0.8", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "1.9", null, "0.6", null, "4.7", null, "0.6", null, "3.8", null, "0.5", null, "90.6", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "20.2", null, "1.3", null, "31.5", null, "1.8", null, "48.3", null, "2.0", null, "47", "01"], ["5001900US4702", "Congressional District 2 (119th Congress), Tennessee", "335984", null, "3615", null, "139789", null, "3044", null, "196195", null, "4406", null, "168603", null, "5517", null, "46344", null, "3492", null, "14598", null, "2128", null, "31746", null, "2950", null, "121037", null, "4931", null, "91956", null, "4917", null, "63104", null, "4316", null, "28542", null, "3047", null, "8317", null, "1549", null, "20225", null, "2898", null, "310", null, "189", null, "244028", null, "5012", null, "105499", null, "4005", null, "17802", null, "2227", null, "6281", null, "1521", null, "11521", null, "1634", null, "120727", null, "4915", null, "42406", null, "3417", null, "293578", null, "4393", null, "87353", null, "4688", null, "248631", null, "5972", null, "288846", null, "3508", null, "19754", null, "1738", null, "-999999999", "N", "-999999999", "N", "4779", null, "850", null, "-999999999", "N", "-999999999", "N", "2993", null, "1011", null, "18886", null, "2433", null, "15226", null, "1634", null, "286054", null, "3426", null, "72659", null, "2232", null, "214947", null, "5821", null, "35894", null, "2385", null, "68995", null, "4272", null, "110058", null, "4274", null, "-888888888", "(X)", "-888888888", "(X)", "41.6", null, "1.0", null, "58.4", null, "1.0", null, "50.2", null, "1.5", null, "13.8", null, "1.0", null, "4.3", null, "0.6", null, "9.4", null, "0.9", null, "36.0", null, "1.5", null, "27.4", null, "1.4", null, "18.8", null, "1.2", null, "8.5", null, "0.9", null, "2.5", null, "0.5", null, "6.0", null, "0.9", null, "0.1", null, "0.1", null, "72.6", null, "1.4", null, "31.4", null, "1.1", null, "5.3", null, "0.7", null, "1.9", null, "0.4", null, "3.4", null, "0.5", null, "35.9", null, "1.5", null, "12.6", null, "1.0", null, "87.4", null, "1.0", null, "26.0", null, "1.4", null, "74.0", null, "1.4", null, "86.0", null, "0.7", null, "5.9", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "1.4", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "0.9", null, "0.3", null, "5.6", null, "0.7", null, "4.5", null, "0.5", null, "85.1", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.7", null, "1.1", null, "32.1", null, "1.7", null, "51.2", null, "1.5", null, "28750", null, "2998", null, "11697", null, "1962", null, "17053", null, "2517", null, "6580", null, "1629", null, "12024", null, "1841", null, "2149", null, "867", null, "9875", null, "1697", null, "10146", null, "2072", null, "13116", null, "2137", null, "3946", null, "1315", null, "9120", null, "1668", null, "1306", null, "743", null, "7814", null, "1628", null, "50", null, "89", null, "15634", null, "2445", null, "2634", null, "887", null, "2904", null, "853", null, "843", null, "432", null, "2061", null, "677", null, "10096", null, "2064", null, "14860", null, "2275", null, "13890", null, "2314", null, "13925", null, "2143", null, "14825", null, "2531", null, "20331", null, "2698", null, "5707", null, "1177", null, "-999999999", "N", "-999999999", "N", "95", null, "117", null, "-999999999", "N", "-999999999", "N", "747", null, "520", null, "1697", null, "667", null, "1760", null, "693", null, "20135", null, "2670", null, "24653", null, "4428", null, "18604", null, "2478", null, "4822", null, "1259", null, "9099", null, "2009", null, "4683", null, "1045", null, "8.6", null, "0.9", null, "40.7", null, "5.7", null, "59.3", null, "5.7", null, "22.9", null, "4.7", null, "41.8", null, "5.9", null, "7.5", null, "3.0", null, "34.3", null, "5.7", null, "35.3", null, "5.9", null, "45.6", null, "6.0", null, "13.7", null, "4.2", null, "31.7", null, "5.4", null, "4.5", null, "2.6", null, "27.2", null, "5.5", null, "0.2", null, "0.3", null, "54.4", null, "6.0", null, "9.2", null, "2.8", null, "10.1", null, "2.9", null, "2.9", null, "1.5", null, "7.2", null, "2.3", null, "35.1", null, "5.9", null, "51.7", null, "6.0", null, "48.3", null, "6.0", null, "48.4", null, "6.3", null, "51.6", null, "6.3", null, "70.7", null, "4.8", null, "19.9", null, "3.9", null, "-999999999.0", "N", "-999999999.0", "N", "0.3", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "2.6", null, "1.8", null, "5.9", null, "2.2", null, "6.1", null, "2.3", null, "70.0", null, "4.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "25.9", null, "6.0", null, "48.9", null, "7.7", null, "25.2", null, "5.2", null, "307234", null, "4231", null, "128092", null, "3197", null, "179142", null, "4535", null, "162023", null, "5336", null, "34320", null, "2978", null, "12449", null, "2007", null, "21871", null, "2333", null, "110891", null, "4973", null, "78840", null, "4045", null, "59158", null, "3891", null, "19422", null, "2393", null, "7011", null, "1387", null, "12411", null, "2158", null, "260", null, "182", null, "228394", null, "5120", null, "102865", null, "3908", null, "14898", null, "2048", null, "5438", null, "1457", null, "9460", null, "1399", null, "110631", null, "4951", null, "27546", null, "2675", null, "279688", null, "4628", null, "73428", null, "4176", null, "233806", null, "5643", null, "268515", null, "3865", null, "14047", null, "1637", null, "-999999999", "N", "-999999999", "N", "4684", null, "852", null, "-999999999", "N", "-999999999", "N", "2246", null, "820", null, "17189", null, "2311", null, "13466", null, "1710", null, "265919", null, "3771", null, "77785", null, "2728", null, "196343", null, "5364", null, "31072", null, "2221", null, "59896", null, "3863", null, "105375", null, "4219", null, "91.4", null, "0.9", null, "41.7", null, "1.0", null, "58.3", null, "1.0", null, "52.7", null, "1.6", null, "11.2", null, "1.0", null, "4.1", null, "0.6", null, "7.1", null, "0.8", null, "36.1", null, "1.5", null, "25.7", null, "1.3", null, "19.3", null, "1.2", null, "6.3", null, "0.8", null, "2.3", null, "0.5", null, "4.0", null, "0.7", null, "0.1", null, "0.1", null, "74.3", null, "1.3", null, "33.5", null, "1.2", null, "4.8", null, "0.7", null, "1.8", null, "0.5", null, "3.1", null, "0.5", null, "36.0", null, "1.5", null, "9.0", null, "0.9", null, "91.0", null, "0.9", null, "23.9", null, "1.4", null, "76.1", null, "1.4", null, "87.4", null, "0.7", null, "4.6", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "1.5", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "0.7", null, "0.3", null, "5.6", null, "0.7", null, "4.4", null, "0.5", null, "86.6", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.8", null, "1.1", null, "30.5", null, "1.7", null, "53.7", null, "1.7", null, "47", "02"], ["5001900US4703", "Congressional District 3 (119th Congress), Tennessee", "327839", null, "3834", null, "142936", null, "3911", null, "184903", null, "4037", null, "155682", null, "4596", null, "56860", null, "4072", null, "17091", null, "2292", null, "39769", null, "3676", null, "115297", null, "5309", null, "90753", null, "4199", null, "57397", null, "3517", null, "31821", null, "3414", null, "8069", null, "1604", null, "23752", null, "3133", null, "1535", null, "921", null, "237086", null, "5330", null, "98285", null, "3312", null, "25039", null, "2846", null, "9022", null, "1873", null, "16017", null, "2210", null, "113762", null, "5256", null, "42839", null, "3619", null, "285000", null, "4545", null, "104166", null, "5149", null, "223673", null, "5570", null, "265299", null, "3607", null, "32213", null, "1988", null, "-999999999", "N", "-999999999", "N", "4266", null, "1004", null, "-999999999", "N", "-999999999", "N", "4292", null, "989", null, "21044", null, "2773", null, "13876", null, "1343", null, "260897", null, "3514", null, "74530", null, "2151", null, "212542", null, "4639", null, "37146", null, "2505", null, "68763", null, "4118", null, "106633", null, "4552", null, "-888888888", "(X)", "-888888888", "(X)", "43.6", null, "1.1", null, "56.4", null, "1.1", null, "47.5", null, "1.4", null, "17.3", null, "1.3", null, "5.2", null, "0.7", null, "12.1", null, "1.1", null, "35.2", null, "1.4", null, "27.7", null, "1.3", null, "17.5", null, "1.0", null, "9.7", null, "1.1", null, "2.5", null, "0.5", null, "7.2", null, "1.0", null, "0.5", null, "0.3", null, "72.3", null, "1.3", null, "30.0", null, "1.0", null, "7.6", null, "0.9", null, "2.8", null, "0.6", null, "4.9", null, "0.7", null, "34.7", null, "1.4", null, "13.1", null, "1.1", null, "86.9", null, "1.1", null, "31.8", null, "1.5", null, "68.2", null, "1.5", null, "80.9", null, "0.9", null, "9.8", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "1.3", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "1.3", null, "0.3", null, "6.4", null, "0.8", null, "4.2", null, "0.4", null, "79.6", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.5", null, "1.1", null, "32.4", null, "1.8", null, "50.2", null, "1.9", null, "34776", null, "3425", null, "13363", null, "1906", null, "21413", null, "3061", null, "8852", null, "1988", null, "13880", null, "2231", null, "2582", null, "1130", null, "11298", null, "1997", null, "12044", null, "2279", null, "16778", null, "2887", null, "5332", null, "1677", null, "10678", null, "2121", null, "1331", null, "767", null, "9347", null, "2022", null, "768", null, "552", null, "17998", null, "2681", null, "3520", null, "1092", null, "3202", null, "1046", null, "1251", null, "842", null, "1951", null, "554", null, "11276", null, "2175", null, "17650", null, "2467", null, "17126", null, "2557", null, "20342", null, "2793", null, "14434", null, "2481", null, "23453", null, "2729", null, "6609", null, "1614", null, "-999999999", "N", "-999999999", "N", "151", null, "151", null, "-999999999", "N", "-999999999", "N", "811", null, "380", null, "3752", null, "1265", null, "2410", null, "773", null, "22673", null, "2683", null, "24389", null, "3657", null, "22732", null, "3154", null, "6403", null, "1377", null, "10083", null, "2235", null, "6246", null, "1692", null, "10.6", null, "1.0", null, "38.4", null, "5.0", null, "61.6", null, "5.0", null, "25.5", null, "4.7", null, "39.9", null, "5.4", null, "7.4", null, "3.2", null, "32.5", null, "5.0", null, "34.6", null, "5.9", null, "48.2", null, "6.3", null, "15.3", null, "4.2", null, "30.7", null, "5.4", null, "3.8", null, "2.2", null, "26.9", null, "5.2", null, "2.2", null, "1.6", null, "51.8", null, "6.3", null, "10.1", null, "3.1", null, "9.2", null, "2.9", null, "3.6", null, "2.4", null, "5.6", null, "1.6", null, "32.4", null, "5.5", null, "50.8", null, "5.3", null, "49.2", null, "5.3", null, "58.5", null, "5.8", null, "41.5", null, "5.8", null, "67.4", null, "5.1", null, "19.0", null, "4.0", null, "-999999999.0", "N", "-999999999.0", "N", "0.4", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "2.3", null, "1.1", null, "10.8", null, "3.3", null, "6.9", null, "2.1", null, "65.2", null, "5.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "28.2", null, "5.9", null, "44.4", null, "6.9", null, "27.5", null, "6.0", null, "293063", null, "4855", null, "129573", null, "3675", null, "163490", null, "4334", null, "146830", null, "4572", null, "42980", null, "3717", null, "14509", null, "2152", null, "28471", null, "3106", null, "103253", null, "5271", null, "73975", null, "3957", null, "52065", null, "3329", null, "21143", null, "2725", null, "6738", null, "1365", null, "14405", null, "2346", null, "767", null, "595", null, "219088", null, "5690", null, "94765", null, "3248", null, "21837", null, "2863", null, "7771", null, "1750", null, "14066", null, "2268", null, "102486", null, "5365", null, "25189", null, "2687", null, "267874", null, "4912", null, "83824", null, "4648", null, "209239", null, "5424", null, "241846", null, "4331", null, "25604", null, "2029", null, "-999999999", "N", "-999999999", "N", "4115", null, "970", null, "-999999999", "N", "-999999999", "N", "3481", null, "907", null, "17292", null, "2296", null, "11466", null, "1416", null, "238224", null, "4313", null, "80836", null, "1939", null, "189810", null, "4934", null, "30743", null, "2219", null, "58680", null, "3789", null, "100387", null, "4991", null, "89.4", null, "1.0", null, "44.2", null, "1.1", null, "55.8", null, "1.1", null, "50.1", null, "1.5", null, "14.7", null, "1.3", null, "5.0", null, "0.7", null, "9.7", null, "1.1", null, "35.2", null, "1.6", null, "25.2", null, "1.3", null, "17.8", null, "1.1", null, "7.2", null, "1.0", null, "2.3", null, "0.5", null, "4.9", null, "0.8", null, "0.3", null, "0.2", null, "74.8", null, "1.3", null, "32.3", null, "1.2", null, "7.5", null, "0.9", null, "2.7", null, "0.6", null, "4.8", null, "0.8", null, "35.0", null, "1.6", null, "8.6", null, "0.9", null, "91.4", null, "0.9", null, "28.6", null, "1.5", null, "71.4", null, "1.5", null, "82.5", null, "0.9", null, "8.7", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "1.4", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "1.2", null, "0.3", null, "5.9", null, "0.8", null, "3.9", null, "0.5", null, "81.3", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.2", null, "1.2", null, "30.9", null, "1.9", null, "52.9", null, "2.0", null, "47", "03"], ["5001900US4704", "Congressional District 4 (119th Congress), Tennessee", "310016", null, "4362", null, "124575", null, "3125", null, "185441", null, "4928", null, "152732", null, "5604", null, "61699", null, "5262", null, "20777", null, "3378", null, "40922", null, "3931", null, "95585", null, "5194", null, "103966", null, "5028", null, "63659", null, "3580", null, "38410", null, "4273", null, "12573", null, "2774", null, "25837", null, "3350", null, "1897", null, "1186", null, "206050", null, "5159", null, "89073", null, "4342", null, "23289", null, "3068", null, "8204", null, "2026", null, "15085", null, "2095", null, "93688", null, "5298", null, "35244", null, "3551", null, "274772", null, "5272", null, "101988", null, "5163", null, "208028", null, "5540", null, "249699", null, "4449", null, "25447", null, "2318", null, "1182", null, "715", null, "6110", null, "842", null, "-999999999", "N", "-999999999", "N", "8227", null, "1589", null, "19091", null, "2418", null, "21038", null, "1622", null, "246648", null, "4324", null, "73896", null, "3199", null, "214431", null, "5953", null, "33556", null, "3056", null, "65772", null, "5148", null, "115103", null, "4870", null, "-888888888", "(X)", "-888888888", "(X)", "40.2", null, "1.1", null, "59.8", null, "1.1", null, "49.3", null, "1.6", null, "19.9", null, "1.7", null, "6.7", null, "1.1", null, "13.2", null, "1.3", null, "30.8", null, "1.6", null, "33.5", null, "1.5", null, "20.5", null, "1.1", null, "12.4", null, "1.4", null, "4.1", null, "0.9", null, "8.3", null, "1.1", null, "0.6", null, "0.4", null, "66.5", null, "1.5", null, "28.7", null, "1.3", null, "7.5", null, "1.0", null, "2.6", null, "0.7", null, "4.9", null, "0.7", null, "30.2", null, "1.7", null, "11.4", null, "1.1", null, "88.6", null, "1.1", null, "32.9", null, "1.6", null, "67.1", null, "1.6", null, "80.5", null, "0.9", null, "8.2", null, "0.7", null, "0.4", null, "0.2", null, "2.0", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "2.7", null, "0.5", null, "6.2", null, "0.8", null, "6.8", null, "0.5", null, "79.6", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.6", null, "1.3", null, "30.7", null, "2.2", null, "53.7", null, "1.9", null, "26461", null, "3085", null, "9796", null, "1838", null, "16665", null, "2402", null, "7329", null, "1645", null, "10815", null, "2195", null, "1775", null, "903", null, "9040", null, "2016", null, "8317", null, "1643", null, "14337", null, "2611", null, "5422", null, "1502", null, "8211", null, "2007", null, "962", null, "646", null, "7249", null, "1930", null, "704", null, "809", null, "12124", null, "1802", null, "1907", null, "777", null, "2604", null, "1018", null, "813", null, "650", null, "1791", null, "790", null, "7613", null, "1489", null, "12369", null, "2028", null, "14092", null, "2294", null, "15795", null, "2340", null, "10666", null, "2125", null, "19277", null, "2534", null, "3294", null, "1406", null, "81", null, "72", null, "0", null, "230", null, "-999999999", "N", "-999999999", "N", "788", null, "611", null, "3021", null, "1077", null, "2047", null, "1026", null, "19239", null, "2529", null, "28509", null, "7760", null, "18144", null, "2756", null, "5294", null, "1290", null, "7163", null, "1949", null, "5687", null, "1403", null, "8.5", null, "1.0", null, "37.0", null, "5.4", null, "63.0", null, "5.4", null, "27.7", null, "5.4", null, "40.9", null, "6.0", null, "6.7", null, "3.3", null, "34.2", null, "5.9", null, "31.4", null, "5.6", null, "54.2", null, "6.0", null, "20.5", null, "5.1", null, "31.0", null, "5.9", null, "3.6", null, "2.3", null, "27.4", null, "6.0", null, "2.7", null, "3.0", null, "45.8", null, "6.0", null, "7.2", null, "2.9", null, "9.8", null, "3.8", null, "3.1", null, "2.4", null, "6.8", null, "3.0", null, "28.8", null, "5.2", null, "46.7", null, "5.7", null, "53.3", null, "5.7", null, "59.7", null, "6.1", null, "40.3", null, "6.1", null, "72.9", null, "5.8", null, "12.4", null, "4.9", null, "0.3", null, "0.3", null, "0.0", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "3.0", null, "2.2", null, "11.4", null, "3.8", null, "7.7", null, "3.7", null, "72.7", null, "5.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "29.2", null, "6.2", null, "39.5", null, "7.9", null, "31.3", null, "6.7", null, "283555", null, "4974", null, "114779", null, "3265", null, "168776", null, "4798", null, "145403", null, "5407", null, "50884", null, "4916", null, "19002", null, "3249", null, "31882", null, "3498", null, "87268", null, "5001", null, "89629", null, "4935", null, "58237", null, "3289", null, "30199", null, "4045", null, "11611", null, "2685", null, "18588", null, "2823", null, "1193", null, "708", null, "193926", null, "5288", null, "87166", null, "4148", null, "20685", null, "2823", null, "7391", null, "1838", null, "13294", null, "1959", null, "86075", null, "5114", null, "22875", null, "3034", null, "260680", null, "5439", null, "86193", null, "5040", null, "197362", null, "5498", null, "230422", null, "4613", null, "22153", null, "2593", null, "1101", null, "722", null, "6110", null, "842", null, "-999999999", "N", "-999999999", "N", "7439", null, "1485", null, "16070", null, "2151", null, "18991", null, "1659", null, "227409", null, "4463", null, "78466", null, "3106", null, "196287", null, "6111", null, "28262", null, "2559", null, "58609", null, "4793", null, "109416", null, "4913", null, "91.5", null, "1.0", null, "40.5", null, "1.1", null, "59.5", null, "1.1", null, "51.3", null, "1.6", null, "17.9", null, "1.7", null, "6.7", null, "1.1", null, "11.2", null, "1.3", null, "30.8", null, "1.7", null, "31.6", null, "1.6", null, "20.5", null, "1.1", null, "10.7", null, "1.4", null, "4.1", null, "0.9", null, "6.6", null, "1.0", null, "0.4", null, "0.2", null, "68.4", null, "1.6", null, "30.7", null, "1.3", null, "7.3", null, "1.0", null, "2.6", null, "0.6", null, "4.7", null, "0.7", null, "30.4", null, "1.7", null, "8.1", null, "1.1", null, "91.9", null, "1.1", null, "30.4", null, "1.6", null, "69.6", null, "1.6", null, "81.3", null, "1.0", null, "7.8", null, "0.9", null, "0.4", null, "0.3", null, "2.2", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "2.6", null, "0.5", null, "5.7", null, "0.8", null, "6.7", null, "0.6", null, "80.2", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.4", null, "1.2", null, "29.9", null, "2.2", null, "55.7", null, "2.0", null, "47", "04"], ["5001900US4705", "Congressional District 5 (119th Congress), Tennessee", "332488", null, "6837", null, "120927", null, "4681", null, "211561", null, "6805", null, "176474", null, "6284", null, "42753", null, "4446", null, "11535", null, "2455", null, "31218", null, "3530", null, "113261", null, "6526", null, "102648", null, "5976", null, "77924", null, "5279", null, "24004", null, "3914", null, "5932", null, "1888", null, "18072", null, "3244", null, "720", null, "598", null, "229840", null, "6789", null, "98550", null, "5697", null, "18749", null, "3384", null, "5603", null, "1752", null, "13146", null, "2646", null, "112541", null, "6360", null, "28173", null, "3684", null, "304315", null, "6553", null, "71177", null, "5337", null, "261311", null, "7549", null, "240898", null, "5575", null, "44526", null, "4255", null, "-999999999", "N", "-999999999", "N", "12193", null, "1226", null, "-999999999", "N", "-999999999", "N", "9895", null, "2369", null, "23469", null, "3399", null, "29794", null, "3288", null, "235051", null, "5361", null, "96192", null, "4534", null, "219227", null, "6312", null, "23597", null, "2154", null, "65865", null, "4858", null, "129765", null, "6419", null, "-888888888", "(X)", "-888888888", "(X)", "36.4", null, "1.3", null, "63.6", null, "1.3", null, "53.1", null, "1.9", null, "12.9", null, "1.3", null, "3.5", null, "0.7", null, "9.4", null, "1.0", null, "34.1", null, "1.7", null, "30.9", null, "1.6", null, "23.4", null, "1.5", null, "7.2", null, "1.2", null, "1.8", null, "0.6", null, "5.4", null, "1.0", null, "0.2", null, "0.2", null, "69.1", null, "1.6", null, "29.6", null, "1.9", null, "5.6", null, "1.0", null, "1.7", null, "0.5", null, "4.0", null, "0.8", null, "33.8", null, "1.6", null, "8.5", null, "1.1", null, "91.5", null, "1.1", null, "21.4", null, "1.6", null, "78.6", null, "1.6", null, "72.5", null, "1.6", null, "13.4", null, "1.2", null, "-999999999.0", "N", "-999999999.0", "N", "3.7", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "3.0", null, "0.7", null, "7.1", null, "1.0", null, "9.0", null, "0.9", null, "70.7", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.8", null, "1.0", null, "30.0", null, "2.1", null, "59.2", null, "2.2", null, "14676", null, "3066", null, "5366", null, "1497", null, "9310", null, "2430", null, "4550", null, "1336", null, "6284", null, "2150", null, "1698", null, "1013", null, "4586", null, "1909", null, "3842", null, "1403", null, "8383", null, "2374", null, "3269", null, "1283", null, "5114", null, "1969", null, "1608", null, "964", null, "3506", null, "1697", null, "0", null, "230", null, "6293", null, "1798", null, "1281", null, "551", null, "1170", null, "932", null, "90", null, "152", null, "1080", null, "925", null, "3842", null, "1403", null, "5433", null, "1925", null, "9243", null, "2176", null, "6768", null, "1972", null, "7908", null, "2215", null, "8555", null, "2208", null, "2240", null, "1297", null, "-999999999", "N", "-999999999", "N", "194", null, "235", null, "-999999999", "N", "-999999999", "N", "1392", null, "863", null, "2295", null, "1208", null, "3068", null, "1258", null, "8555", null, "2208", null, "47190", null, "16499", null, "10834", null, "2555", null, "1102", null, "931", null, "6371", null, "2184", null, "3361", null, "995", null, "4.4", null, "0.9", null, "36.6", null, "8.2", null, "63.4", null, "8.2", null, "31.0", null, "8.4", null, "42.8", null, "10.2", null, "11.6", null, "6.8", null, "31.2", null, "9.7", null, "26.2", null, "8.0", null, "57.1", null, "9.6", null, "22.3", null, "7.8", null, "34.8", null, "10.2", null, "11.0", null, "6.5", null, "23.9", null, "9.3", null, "0.0", null, "1.5", null, "42.9", null, "9.6", null, "8.7", null, "4.1", null, "8.0", null, "6.2", null, "0.6", null, "1.0", null, "7.4", null, "6.1", null, "26.2", null, "8.0", null, "37.0", null, "9.5", null, "63.0", null, "9.5", null, "46.1", null, "9.8", null, "53.9", null, "9.8", null, "58.3", null, "8.6", null, "15.3", null, "8.1", null, "-999999999.0", "N", "-999999999.0", "N", "1.3", null, "1.6", null, "-999999999.0", "N", "-999999999.0", "N", "9.5", null, "5.8", null, "15.6", null, "7.9", null, "20.9", null, "7.8", null, "58.3", null, "8.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.2", null, "8.0", null, "58.8", null, "11.2", null, "31.0", null, "10.0", null, "317812", null, "6624", null, "115561", null, "4379", null, "202251", null, "6571", null, "171924", null, "6298", null, "36469", null, "4363", null, "9837", null, "2395", null, "26632", null, "3464", null, "109419", null, "6177", null, "94265", null, "5616", null, "74655", null, "5262", null, "18890", null, "3713", null, "4324", null, "1638", null, "14566", null, "3090", null, "720", null, "598", null, "223547", null, "6513", null, "97269", null, "5802", null, "17579", null, "3307", null, "5513", null, "1751", null, "12066", null, "2562", null, "108699", null, "6016", null, "22740", null, "3304", null, "295072", null, "6485", null, "64409", null, "4711", null, "253403", null, "7458", null, "232343", null, "5733", null, "42286", null, "4413", null, "-999999999", "N", "-999999999", "N", "11999", null, "1186", null, "-999999999", "N", "-999999999", "N", "8503", null, "2250", null, "21174", null, "3140", null, "26726", null, "3477", null, "226496", null, "5597", null, "99673", null, "4337", null, "208393", null, "6164", null, "22495", null, "1904", null, "59494", null, "4570", null, "126404", null, "6213", null, "95.6", null, "0.9", null, "36.4", null, "1.3", null, "63.6", null, "1.3", null, "54.1", null, "1.9", null, "11.5", null, "1.3", null, "3.1", null, "0.7", null, "8.4", null, "1.1", null, "34.4", null, "1.7", null, "29.7", null, "1.6", null, "23.5", null, "1.6", null, "5.9", null, "1.2", null, "1.4", null, "0.5", null, "4.6", null, "1.0", null, "0.2", null, "0.2", null, "70.3", null, "1.6", null, "30.6", null, "1.9", null, "5.5", null, "1.0", null, "1.7", null, "0.6", null, "3.8", null, "0.8", null, "34.2", null, "1.6", null, "7.2", null, "1.0", null, "92.8", null, "1.0", null, "20.3", null, "1.5", null, "79.7", null, "1.5", null, "73.1", null, "1.7", null, "13.3", null, "1.3", null, "-999999999.0", "N", "-999999999.0", "N", "3.8", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "2.7", null, "0.7", null, "6.7", null, "1.0", null, "8.4", null, "1.0", null, "71.3", null, "1.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.8", null, "0.9", null, "28.5", null, "2.1", null, "60.7", null, "2.1", null, "47", "05"], ["5001900US4706", "Congressional District 6 (119th Congress), Tennessee", "338026", null, "5188", null, "138196", null, "3840", null, "199830", null, "5220", null, "162795", null, "5874", null, "55554", null, "4421", null, "18267", null, "2700", null, "37287", null, "3706", null, "119677", null, "5714", null, "98097", null, "5440", null, "64048", null, "4743", null, "31865", null, "3461", null, "9571", null, "2017", null, "22294", null, "3152", null, "2184", null, "1140", null, "239929", null, "6501", null, "98747", null, "4319", null, "23689", null, "3187", null, "8696", null, "1994", null, "14993", null, "2319", null, "117493", null, "5508", null, "42419", null, "4529", null, "295607", null, "6225", null, "94114", null, "4626", null, "243912", null, "5915", null, "276682", null, "5296", null, "29822", null, "3542", null, "-999999999", "N", "-999999999", "N", "4603", null, "1289", null, "-999999999", "N", "-999999999", "N", "5891", null, "1652", null, "19400", null, "2853", null, "18268", null, "2702", null, "272233", null, "5139", null, "72083", null, "2971", null, "218349", null, "6043", null, "38118", null, "2748", null, "64290", null, "4219", null, "115941", null, "5153", null, "-888888888", "(X)", "-888888888", "(X)", "40.9", null, "1.1", null, "59.1", null, "1.1", null, "48.2", null, "1.6", null, "16.4", null, "1.3", null, "5.4", null, "0.8", null, "11.0", null, "1.1", null, "35.4", null, "1.6", null, "29.0", null, "1.6", null, "18.9", null, "1.4", null, "9.4", null, "1.0", null, "2.8", null, "0.6", null, "6.6", null, "0.9", null, "0.6", null, "0.3", null, "71.0", null, "1.6", null, "29.2", null, "1.2", null, "7.0", null, "0.9", null, "2.6", null, "0.6", null, "4.4", null, "0.7", null, "34.8", null, "1.5", null, "12.5", null, "1.3", null, "87.5", null, "1.3", null, "27.8", null, "1.3", null, "72.2", null, "1.3", null, "81.9", null, "1.2", null, "8.8", null, "1.0", null, "-999999999.0", "N", "-999999999.0", "N", "1.4", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "1.7", null, "0.5", null, "5.7", null, "0.8", null, "5.4", null, "0.8", null, "80.5", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.5", null, "1.2", null, "29.4", null, "1.7", null, "53.1", null, "1.9", null, "30595", null, "2808", null, "11916", null, "2023", null, "18679", null, "2582", null, "7664", null, "1698", null, "14402", null, "2270", null, "3022", null, "1243", null, "11380", null, "2151", null, "8529", null, "1644", null, "16830", null, "2590", null, "5135", null, "1438", null, "10934", null, "2122", null, "2256", null, "1147", null, "8678", null, "2148", null, "761", null, "799", null, "13765", null, "1935", null, "2529", null, "858", null, "3468", null, "1048", null, "766", null, "561", null, "2702", null, "867", null, "7768", null, "1602", null, "13880", null, "2348", null, "16715", null, "2290", null, "13750", null, "1993", null, "16845", null, "2418", null, "22652", null, "2295", null, "4877", null, "1610", null, "-999999999", "N", "-999999999", "N", "251", null, "248", null, "-999999999", "N", "-999999999", "N", "844", null, "761", null, "1829", null, "860", null, "1670", null, "955", null, "22084", null, "2333", null, "35189", null, "9109", null, "22066", null, "2808", null, "4719", null, "1379", null, "11364", null, "2110", null, "5983", null, "1369", null, "9.1", null, "0.8", null, "38.9", null, "5.9", null, "61.1", null, "5.9", null, "25.0", null, "4.8", null, "47.1", null, "5.7", null, "9.9", null, "4.0", null, "37.2", null, "6.0", null, "27.9", null, "5.2", null, "55.0", null, "5.8", null, "16.8", null, "4.3", null, "35.7", null, "5.8", null, "7.4", null, "3.8", null, "28.4", null, "6.2", null, "2.5", null, "2.6", null, "45.0", null, "5.8", null, "8.3", null, "2.7", null, "11.3", null, "3.3", null, "2.5", null, "1.8", null, "8.8", null, "2.9", null, "25.4", null, "5.2", null, "45.4", null, "6.1", null, "54.6", null, "6.1", null, "44.9", null, "5.6", null, "55.1", null, "5.6", null, "74.0", null, "5.6", null, "15.9", null, "4.9", null, "-999999999.0", "N", "-999999999.0", "N", "0.8", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "2.8", null, "2.4", null, "6.0", null, "2.7", null, "5.5", null, "3.0", null, "72.2", null, "5.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "21.4", null, "5.3", null, "51.5", null, "7.0", null, "27.1", null, "5.6", null, "307431", null, "5366", null, "126280", null, "3726", null, "181151", null, "4917", null, "155131", null, "5477", null, "41152", null, "3706", null, "15245", null, "2481", null, "25907", null, "3010", null, "111148", null, "5423", null, "81267", null, "4609", null, "58913", null, "4442", null, "20931", null, "2653", null, "7315", null, "1817", null, "13616", null, "2256", null, "1423", null, "896", null, "226164", null, "6263", null, "96218", null, "4169", null, "20221", null, "2952", null, "7930", null, "1950", null, "12291", null, "2204", null, "109725", null, "5406", null, "28539", null, "3897", null, "278892", null, "6151", null, "80364", null, "4198", null, "227067", null, "5585", null, "254030", null, "5207", null, "24945", null, "3327", null, "-999999999", "N", "-999999999", "N", "4352", null, "1247", null, "-999999999", "N", "-999999999", "N", "5047", null, "1447", null, "17571", null, "2705", null, "16598", null, "2638", null, "250149", null, "5190", null, "77409", null, "3960", null, "196283", null, "5510", null, "33399", null, "2469", null, "52926", null, "3710", null, "109958", null, "4810", null, "90.9", null, "0.8", null, "41.1", null, "1.1", null, "58.9", null, "1.1", null, "50.5", null, "1.7", null, "13.4", null, "1.2", null, "5.0", null, "0.8", null, "8.4", null, "1.0", null, "36.2", null, "1.6", null, "26.4", null, "1.5", null, "19.2", null, "1.4", null, "6.8", null, "0.9", null, "2.4", null, "0.6", null, "4.4", null, "0.8", null, "0.5", null, "0.3", null, "73.6", null, "1.5", null, "31.3", null, "1.3", null, "6.6", null, "0.9", null, "2.6", null, "0.6", null, "4.0", null, "0.7", null, "35.7", null, "1.6", null, "9.3", null, "1.3", null, "90.7", null, "1.3", null, "26.1", null, "1.3", null, "73.9", null, "1.3", null, "82.6", null, "1.2", null, "8.1", null, "1.1", null, "-999999999.0", "N", "-999999999.0", "N", "1.4", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "1.6", null, "0.5", null, "5.7", null, "0.9", null, "5.4", null, "0.8", null, "81.4", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.0", null, "1.2", null, "27.0", null, "1.7", null, "56.0", null, "1.9", null, "47", "06"], ["5001900US4707", "Congressional District 7 (119th Congress), Tennessee", "343050", null, "5747", null, "117400", null, "4054", null, "225650", null, "5812", null, "157682", null, "5640", null, "52341", null, "3942", null, "13653", null, "1998", null, "38688", null, "3570", null, "133027", null, "6102", null, "90057", null, "4839", null, "62645", null, "3731", null, "26913", null, "3134", null, "6311", null, "1435", null, "20602", null, "2897", null, "499", null, "358", null, "252993", null, "6547", null, "95037", null, "4764", null, "25428", null, "3067", null, "7342", null, "1635", null, "18086", null, "2695", null, "132528", null, "6060", null, "40390", null, "4572", null, "302660", null, "6226", null, "95664", null, "5487", null, "247386", null, "6356", null, "249771", null, "4807", null, "56284", null, "4289", null, "-999999999", "N", "-999999999", "N", "6876", null, "1310", null, "-999999999", "N", "-999999999", "N", "4849", null, "1500", null, "23697", null, "3300", null, "21965", null, "2125", null, "242064", null, "4818", null, "79222", null, "2637", null, "210023", null, "5318", null, "30281", null, "2711", null, "61076", null, "4355", null, "118666", null, "5505", null, "-888888888", "(X)", "-888888888", "(X)", "34.2", null, "1.1", null, "65.8", null, "1.1", null, "46.0", null, "1.7", null, "15.3", null, "1.1", null, "4.0", null, "0.6", null, "11.3", null, "1.0", null, "38.8", null, "1.5", null, "26.3", null, "1.4", null, "18.3", null, "1.1", null, "7.8", null, "0.9", null, "1.8", null, "0.4", null, "6.0", null, "0.8", null, "0.1", null, "0.1", null, "73.7", null, "1.4", null, "27.7", null, "1.4", null, "7.4", null, "0.9", null, "2.1", null, "0.5", null, "5.3", null, "0.8", null, "38.6", null, "1.5", null, "11.8", null, "1.3", null, "88.2", null, "1.3", null, "27.9", null, "1.5", null, "72.1", null, "1.5", null, "72.8", null, "1.3", null, "16.4", null, "1.2", null, "-999999999.0", "N", "-999999999.0", "N", "2.0", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "1.4", null, "0.4", null, "6.9", null, "0.9", null, "6.4", null, "0.6", null, "70.6", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.4", null, "1.2", null, "29.1", null, "2.0", null, "56.5", null, "2.1", null, "22742", null, "2921", null, "8759", null, "2033", null, "13983", null, "2535", null, "5110", null, "1509", null, "8085", null, "1634", null, "726", null, "548", null, "7359", null, "1573", null, "9547", null, "2146", null, "8969", null, "1989", null, "3230", null, "1086", null, "5605", null, "1584", null, "606", null, "530", null, "4999", null, "1494", null, "134", null, "151", null, "13773", null, "2504", null, "1880", null, "947", null, "2480", null, "994", null, "120", null, "144", null, "2360", null, "986", null, "9413", null, "2140", null, "12234", null, "2361", null, "10508", null, "1850", null, "12469", null, "2017", null, "10273", null, "2193", null, "11972", null, "2123", null, "8744", null, "2400", null, "-999999999", "N", "-999999999", "N", "147", null, "159", null, "-999999999", "N", "-999999999", "N", "406", null, "368", null, "1473", null, "729", null, "1549", null, "892", null, "11179", null, "2035", null, "17872", null, "2861", null, "13195", null, "2183", null, "3322", null, "1271", null, "6627", null, "1665", null, "3246", null, "975", null, "6.6", null, "0.8", null, "38.5", null, "7.7", null, "61.5", null, "7.7", null, "22.5", null, "5.6", null, "35.6", null, "6.7", null, "3.2", null, "2.4", null, "32.4", null, "6.5", null, "42.0", null, "7.1", null, "39.4", null, "7.4", null, "14.2", null, "4.3", null, "24.6", null, "6.5", null, "2.7", null, "2.3", null, "22.0", null, "6.1", null, "0.6", null, "0.7", null, "60.6", null, "7.4", null, "8.3", null, "3.9", null, "10.9", null, "4.5", null, "0.5", null, "0.6", null, "10.4", null, "4.4", null, "41.4", null, "7.1", null, "53.8", null, "6.7", null, "46.2", null, "6.7", null, "54.8", null, "6.7", null, "45.2", null, "6.7", null, "52.6", null, "8.2", null, "38.4", null, "8.1", null, "-999999999.0", "N", "-999999999.0", "N", "0.6", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "1.8", null, "1.6", null, "6.5", null, "3.1", null, "6.8", null, "3.8", null, "49.2", null, "8.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "25.2", null, "8.2", null, "50.2", null, "9.9", null, "24.6", null, "6.5", null, "320308", null, "5945", null, "108641", null, "4043", null, "211667", null, "5903", null, "152572", null, "5532", null, "44256", null, "3845", null, "12927", null, "1892", null, "31329", null, "3296", null, "123480", null, "6158", null, "81088", null, "4858", null, "59415", null, "3854", null, "21308", null, "2821", null, "5705", null, "1369", null, "15603", null, "2545", null, "365", null, "314", null, "239220", null, "6861", null, "93157", null, "4612", null, "22948", null, "3261", null, "7222", null, "1650", null, "15726", null, "2735", null, "123115", null, "6129", null, "28156", null, "3838", null, "292152", null, "6431", null, "83195", null, "5070", null, "237113", null, "6558", null, "237799", null, "4723", null, "47540", null, "3982", null, "-999999999", "N", "-999999999", "N", "6729", null, "1286", null, "-999999999", "N", "-999999999", "N", "4443", null, "1502", null, "22224", null, "3137", null, "20416", null, "2110", null, "230885", null, "4665", null, "84312", null, "4414", null, "196828", null, "5410", null, "26959", null, "2293", null, "54449", null, "4245", null, "115420", null, "5282", null, "93.4", null, "0.8", null, "33.9", null, "1.2", null, "66.1", null, "1.2", null, "47.6", null, "1.8", null, "13.8", null, "1.2", null, "4.0", null, "0.6", null, "9.8", null, "1.0", null, "38.6", null, "1.6", null, "25.3", null, "1.5", null, "18.5", null, "1.2", null, "6.7", null, "0.9", null, "1.8", null, "0.4", null, "4.9", null, "0.8", null, "0.1", null, "0.1", null, "74.7", null, "1.5", null, "29.1", null, "1.5", null, "7.2", null, "1.0", null, "2.3", null, "0.5", null, "4.9", null, "0.8", null, "38.4", null, "1.6", null, "8.8", null, "1.2", null, "91.2", null, "1.2", null, "26.0", null, "1.5", null, "74.0", null, "1.5", null, "74.2", null, "1.3", null, "14.8", null, "1.2", null, "-999999999.0", "N", "-999999999.0", "N", "2.1", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "1.4", null, "0.5", null, "6.9", null, "0.9", null, "6.4", null, "0.6", null, "72.1", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.7", null, "1.1", null, "27.7", null, "2.0", null, "58.6", null, "2.1", null, "47", "07"], ["5001900US4708", "Congressional District 8 (119th Congress), Tennessee", "309744", null, "3793", null, "143967", null, "3306", null, "165777", null, "3882", null, "152776", null, "4412", null, "55696", null, "3655", null, "15027", null, "2430", null, "40669", null, "3041", null, "101272", null, "3565", null, "91876", null, "3689", null, "58370", null, "3579", null, "32680", null, "2707", null, "6527", null, "1698", null, "26153", null, "2444", null, "826", null, "577", null, "217868", null, "4219", null, "94406", null, "3868", null, "23016", null, "2640", null, "8500", null, "1760", null, "14516", null, "1840", null, "100446", null, "3561", null, "40699", null, "3238", null, "269045", null, "4517", null, "94915", null, "3996", null, "214829", null, "5024", null, "236256", null, "3931", null, "51503", null, "2652", null, "1296", null, "707", null, "-999999999", "N", "-999999999", "N", "-999999999", "N", "-999999999", "N", "2618", null, "875", null, "12259", null, "2141", null, "7630", null, "1472", null, "234243", null, "3873", null, "70081", null, "2098", null, "208472", null, "5177", null, "32465", null, "3180", null, "72287", null, "4190", null, "103720", null, "4051", null, "-888888888", "(X)", "-888888888", "(X)", "46.5", null, "1.0", null, "53.5", null, "1.0", null, "49.3", null, "1.3", null, "18.0", null, "1.1", null, "4.9", null, "0.8", null, "13.1", null, "0.9", null, "32.7", null, "1.2", null, "29.7", null, "1.1", null, "18.8", null, "1.2", null, "10.6", null, "0.8", null, "2.1", null, "0.5", null, "8.4", null, "0.8", null, "0.3", null, "0.2", null, "70.3", null, "1.1", null, "30.5", null, "1.1", null, "7.4", null, "0.8", null, "2.7", null, "0.6", null, "4.7", null, "0.6", null, "32.4", null, "1.2", null, "13.1", null, "1.0", null, "86.9", null, "1.0", null, "30.6", null, "1.3", null, "69.4", null, "1.3", null, "76.3", null, "1.0", null, "16.6", null, "0.9", null, "0.4", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "0.8", null, "0.3", null, "4.0", null, "0.7", null, "2.5", null, "0.5", null, "75.6", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.6", null, "1.5", null, "34.7", null, "1.6", null, "49.8", null, "1.6", null, "33566", null, "2623", null, "13435", null, "1926", null, "20131", null, "2010", null, "5752", null, "1363", null, "17820", null, "1839", null, "3203", null, "1049", null, "14617", null, "1744", null, "9994", null, "1632", null, "16646", null, "1922", null, "3385", null, "977", null, "13124", null, "1503", null, "1551", null, "814", null, "11573", null, "1538", null, "137", null, "160", null, "16920", null, "1932", null, "2367", null, "901", null, "4696", null, "1135", null, "1652", null, "769", null, "3044", null, "910", null, "9857", null, "1622", null, "16951", null, "1854", null, "16615", null, "2241", null, "17613", null, "2146", null, "15953", null, "2177", null, "17342", null, "1992", null, "13309", null, "1732", null, "314", null, "374", null, "-999999999", "N", "-999999999", "N", "-999999999", "N", "-999999999", "N", "59", null, "71", null, "2529", null, "1038", null, "818", null, "489", null, "17160", null, "1963", null, "27868", null, "5351", null, "23572", null, "2224", null, "6214", null, "1328", null, "12242", null, "1655", null, "5116", null, "1411", null, "10.8", null, "0.8", null, "40.0", null, "4.4", null, "60.0", null, "4.4", null, "17.1", null, "3.6", null, "53.1", null, "4.6", null, "9.5", null, "3.0", null, "43.5", null, "4.7", null, "29.8", null, "4.1", null, "49.6", null, "4.2", null, "10.1", null, "2.6", null, "39.1", null, "3.8", null, "4.6", null, "2.4", null, "34.5", null, "4.2", null, "0.4", null, "0.5", null, "50.4", null, "4.2", null, "7.1", null, "2.6", null, "14.0", null, "3.3", null, "4.9", null, "2.3", null, "9.1", null, "2.7", null, "29.4", null, "4.1", null, "50.5", null, "4.7", null, "49.5", null, "4.7", null, "52.5", null, "5.2", null, "47.5", null, "5.2", null, "51.7", null, "4.3", null, "39.7", null, "4.4", null, "0.9", null, "1.1", null, "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "0.2", null, "0.2", null, "7.5", null, "3.0", null, "2.4", null, "1.5", null, "51.1", null, "4.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "26.4", null, "5.1", null, "51.9", null, "5.7", null, "21.7", null, "5.4", null, "276178", null, "4310", null, "130532", null, "3154", null, "145646", null, "4448", null, "147024", null, "4401", null, "37876", null, "2933", null, "11824", null, "2133", null, "26052", null, "2462", null, "91278", null, "3653", null, "75230", null, "3496", null, "54985", null, "3542", null, "19556", null, "2142", null, "4976", null, "1442", null, "14580", null, "1970", null, "689", null, "550", null, "200948", null, "4202", null, "92039", null, "3758", null, "18320", null, "2117", null, "6848", null, "1458", null, "11472", null, "1567", null, "90589", null, "3683", null, "23748", null, "2687", null, "252430", null, "4632", null, "77302", null, "4114", null, "198876", null, "5279", null, "218914", null, "3804", null, "38194", null, "2951", null, "982", null, "628", null, "-999999999", "N", "-999999999", "N", "-999999999", "N", "-999999999", "N", "2559", null, "890", null, "9730", null, "1590", null, "6812", null, "1328", null, "217083", null, "3808", null, "77347", null, "2694", null, "184900", null, "5013", null, "26251", null, "2644", null, "60045", null, "3786", null, "98604", null, "3954", null, "89.2", null, "0.8", null, "47.3", null, "1.1", null, "52.7", null, "1.1", null, "53.2", null, "1.3", null, "13.7", null, "1.0", null, "4.3", null, "0.8", null, "9.4", null, "0.9", null, "33.1", null, "1.3", null, "27.2", null, "1.1", null, "19.9", null, "1.3", null, "7.1", null, "0.7", null, "1.8", null, "0.5", null, "5.3", null, "0.7", null, "0.2", null, "0.2", null, "72.8", null, "1.1", null, "33.3", null, "1.2", null, "6.6", null, "0.8", null, "2.5", null, "0.5", null, "4.2", null, "0.6", null, "32.8", null, "1.3", null, "8.6", null, "1.0", null, "91.4", null, "1.0", null, "28.0", null, "1.5", null, "72.0", null, "1.5", null, "79.3", null, "1.0", null, "13.8", null, "1.0", null, "0.4", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "0.9", null, "0.3", null, "3.5", null, "0.6", null, "2.5", null, "0.5", null, "78.6", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.2", null, "1.4", null, "32.5", null, "1.7", null, "53.3", null, "1.7", null, "47", "08"], ["5001900US4709", "Congressional District 9 (119th Congress), Tennessee", "297833", null, "5042", null, "111685", null, "4142", null, "186148", null, "4281", null, "86356", null, "4780", null, "80419", null, "5263", null, "19125", null, "2777", null, "61294", null, "4762", null, "131058", null, "6106", null, "83596", null, "5278", null, "34722", null, "4101", null, "48245", null, "4637", null, "7240", null, "2015", null, "41005", null, "4478", null, "629", null, "518", null, "214237", null, "6202", null, "51634", null, "3495", null, "32174", null, "3067", null, "11885", null, "2304", null, "20289", null, "2465", null, "130429", null, "6153", null, "59897", null, "4500", null, "237936", null, "6009", null, "81129", null, "5012", null, "216704", null, "5821", null, "81698", null, "3897", null, "184015", null, "4384", null, "814", null, "405", null, "5830", null, "1185", null, "-999999999", "N", "-999999999", "N", "11284", null, "1995", null, "13711", null, "2149", null, "20301", null, "1683", null, "78956", null, "3711", null, "55603", null, "2219", null, "166775", null, "6315", null, "26383", null, "3193", null, "60302", null, "4335", null, "80090", null, "5111", null, "-888888888", "(X)", "-888888888", "(X)", "37.5", null, "1.1", null, "62.5", null, "1.1", null, "29.0", null, "1.5", null, "27.0", null, "1.7", null, "6.4", null, "0.9", null, "20.6", null, "1.6", null, "44.0", null, "1.9", null, "28.1", null, "1.7", null, "11.7", null, "1.4", null, "16.2", null, "1.5", null, "2.4", null, "0.7", null, "13.8", null, "1.5", null, "0.2", null, "0.2", null, "71.9", null, "1.7", null, "17.3", null, "1.1", null, "10.8", null, "1.0", null, "4.0", null, "0.8", null, "6.8", null, "0.8", null, "43.8", null, "1.9", null, "20.1", null, "1.5", null, "79.9", null, "1.5", null, "27.2", null, "1.6", null, "72.8", null, "1.6", null, "27.4", null, "1.2", null, "61.8", null, "1.2", null, "0.3", null, "0.1", null, "2.0", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "3.8", null, "0.7", null, "4.6", null, "0.7", null, "6.8", null, "0.5", null, "26.5", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.8", null, "1.8", null, "36.2", null, "2.2", null, "48.0", null, "2.4", null, "46638", null, "4488", null, "17375", null, "2280", null, "29263", null, "3902", null, "6273", null, "1892", null, "24873", null, "3380", null, "3352", null, "1276", null, "21521", null, "3404", null, "15492", null, "2245", null, "24387", null, "3826", null, "5004", null, "1780", null, "19383", null, "3201", null, "1469", null, "865", null, "17914", null, "3166", null, "0", null, "230", null, "22251", null, "2670", null, "1269", null, "561", null, "5490", null, "1502", null, "1883", null, "1072", null, "3607", null, "1061", null, "15492", null, "2245", null, "26028", null, "3791", null, "20610", null, "3298", null, "20033", null, "3142", null, "26605", null, "3196", null, "5167", null, "1378", null, "37411", null, "4251", null, "102", null, "126", null, "448", null, "387", null, "-999999999", "N", "-999999999", "N", "1088", null, "550", null, "2126", null, "981", null, "1950", null, "760", null, "5167", null, "1378", null, "21223", null, "2389", null, "31146", null, "3940", null, "9890", null, "2174", null, "13233", null, "2439", null, "8023", null, "2202", null, "15.7", null, "1.5", null, "37.3", null, "4.4", null, "62.7", null, "4.4", null, "13.5", null, "3.7", null, "53.3", null, "4.6", null, "7.2", null, "2.8", null, "46.1", null, "5.0", null, "33.2", null, "4.3", null, "52.3", null, "5.1", null, "10.7", null, "3.5", null, "41.6", null, "4.9", null, "3.1", null, "1.9", null, "38.4", null, "5.0", null, "0.0", null, "0.5", null, "47.7", null, "5.1", null, "2.7", null, "1.2", null, "11.8", null, "3.2", null, "4.0", null, "2.3", null, "7.7", null, "2.2", null, "33.2", null, "4.3", null, "55.8", null, "5.8", null, "44.2", null, "5.8", null, "43.0", null, "4.8", null, "57.0", null, "4.8", null, "11.1", null, "2.9", null, "80.2", null, "4.0", null, "0.2", null, "0.3", null, "1.0", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "2.3", null, "1.1", null, "4.6", null, "2.1", null, "4.2", null, "1.6", null, "11.1", null, "2.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "31.8", null, "6.1", null, "42.5", null, "6.4", null, "25.8", null, "5.5", null, "251195", null, "6385", null, "94310", null, "3762", null, "156885", null, "5475", null, "80083", null, "4253", null, "55546", null, "4657", null, "15773", null, "2487", null, "39773", null, "4073", null, "115566", null, "6231", null, "59209", null, "4191", null, "29718", null, "3416", null, "28862", null, "3730", null, "5771", null, "1809", null, "23091", null, "3143", null, "629", null, "518", null, "191986", null, "6150", null, "50365", null, "3398", null, "26684", null, "2926", null, "10002", null, "2146", null, "16682", null, "2417", null, "114937", null, "6264", null, "33869", null, "3559", null, "217326", null, "6201", null, "61096", null, "4484", null, "190099", null, "6298", null, "76531", null, "4050", null, "146604", null, "5884", null, "712", null, "372", null, "5382", null, "1064", null, "-999999999", "N", "-999999999", "N", "10196", null, "2026", null, "11585", null, "1892", null, "18351", null, "1876", null, "73789", null, "3817", null, "62672", null, "2638", null, "135629", null, "6161", null, "16493", null, "2331", null, "47069", null, "3998", null, "72067", null, "4916", null, "84.3", null, "1.5", null, "37.5", null, "1.3", null, "62.5", null, "1.3", null, "31.9", null, "1.6", null, "22.1", null, "1.8", null, "6.3", null, "1.0", null, "15.8", null, "1.6", null, "46.0", null, "2.1", null, "23.6", null, "1.5", null, "11.8", null, "1.4", null, "11.5", null, "1.4", null, "2.3", null, "0.7", null, "9.2", null, "1.2", null, "0.3", null, "0.2", null, "76.4", null, "1.5", null, "20.1", null, "1.3", null, "10.6", null, "1.2", null, "4.0", null, "0.9", null, "6.6", null, "1.0", null, "45.8", null, "2.1", null, "13.5", null, "1.3", null, "86.5", null, "1.3", null, "24.3", null, "1.7", null, "75.7", null, "1.7", null, "30.5", null, "1.5", null, "58.4", null, "1.6", null, "0.3", null, "0.1", null, "2.1", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "4.1", null, "0.8", null, "4.6", null, "0.7", null, "7.3", null, "0.7", null, "29.4", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.2", null, "1.6", null, "34.7", null, "2.5", null, "53.1", null, "2.7", null, "47", "09"], ["5001900US4801", "Congressional District 1 (119th Congress), Texas", "300720", null, "3917", null, "133368", null, "3455", null, "167352", null, "3694", null, "147513", null, "5109", null, "61913", null, "4105", null, "15560", null, "2398", null, "46353", null, "3406", null, "91294", null, "4696", null, "99669", null, "4334", null, "60751", null, "3352", null, "37727", null, "3623", null, "8353", null, "1885", null, "29374", null, "3170", null, "1191", null, "932", null, "201051", null, "5160", null, "86762", null, "3943", null, "24186", null, "3049", null, "7207", null, "1613", null, "16979", null, "2365", null, "90103", null, "4582", null, "43293", null, "3950", null, "257427", null, "4600", null, "100309", null, "3944", null, "200411", null, "3864", null, "201886", null, "4175", null, "52817", null, "2352", null, "1476", null, "610", null, "2249", null, "585", null, "-999999999", "N", "-999999999", "N", "10528", null, "1913", null, "31745", null, "3001", null, "40185", null, "2087", null, "192211", null, "3961", null, "66563", null, "1947", null, "209426", null, "4928", null, "35272", null, "2748", null, "68034", null, "4077", null, "106120", null, "3907", null, "-888888888", "(X)", "-888888888", "(X)", "44.3", null, "1.0", null, "55.7", null, "1.0", null, "49.1", null, "1.6", null, "20.6", null, "1.3", null, "5.2", null, "0.8", null, "15.4", null, "1.1", null, "30.4", null, "1.5", null, "33.1", null, "1.4", null, "20.2", null, "1.1", null, "12.5", null, "1.2", null, "2.8", null, "0.6", null, "9.8", null, "1.1", null, "0.4", null, "0.3", null, "66.9", null, "1.4", null, "28.9", null, "1.3", null, "8.0", null, "1.0", null, "2.4", null, "0.5", null, "5.6", null, "0.8", null, "30.0", null, "1.4", null, "14.4", null, "1.3", null, "85.6", null, "1.3", null, "33.4", null, "1.1", null, "66.6", null, "1.1", null, "67.1", null, "1.1", null, "17.6", null, "0.8", null, "0.5", null, "0.2", null, "0.7", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "3.5", null, "0.6", null, "10.6", null, "1.0", null, "13.4", null, "0.7", null, "63.9", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.8", null, "1.3", null, "32.5", null, "1.6", null, "50.7", null, "1.6", null, "37194", null, "3043", null, "14573", null, "1688", null, "22621", null, "2441", null, "9075", null, "1673", null, "17211", null, "2518", null, "3494", null, "1204", null, "13717", null, "2457", null, "10908", null, "1554", null, "18767", null, "2611", null, "5732", null, "1413", null, "12909", null, "2213", null, "1940", null, "793", null, "10969", null, "2241", null, "126", null, "167", null, "18427", null, "1872", null, "3343", null, "932", null, "4302", null, "1061", null, "1554", null, "807", null, "2748", null, "866", null, "10782", null, "1567", null, "16045", null, "2587", null, "21149", null, "2351", null, "19027", null, "2276", null, "18167", null, "2711", null, "17671", null, "2303", null, "12833", null, "1759", null, "25", null, "34", null, "197", null, "155", null, "-999999999", "N", "-999999999", "N", "1085", null, "561", null, "5383", null, "1497", null, "5364", null, "1427", null, "15919", null, "2185", null, "27809", null, "2409", null, "26286", null, "2840", null, "5315", null, "1261", null, "12678", null, "2313", null, "8293", null, "1649", null, "12.4", null, "1.0", null, "39.2", null, "3.7", null, "60.8", null, "3.7", null, "24.4", null, "4.2", null, "46.3", null, "4.8", null, "9.4", null, "3.1", null, "36.9", null, "5.2", null, "29.3", null, "4.0", null, "50.5", null, "4.5", null, "15.4", null, "3.6", null, "34.7", null, "4.5", null, "5.2", null, "2.1", null, "29.5", null, "4.9", null, "0.3", null, "0.4", null, "49.5", null, "4.5", null, "9.0", null, "2.6", null, "11.6", null, "2.7", null, "4.2", null, "2.1", null, "7.4", null, "2.3", null, "29.0", null, "4.0", null, "43.1", null, "5.3", null, "56.9", null, "5.3", null, "51.2", null, "5.4", null, "48.8", null, "5.4", null, "47.5", null, "4.5", null, "34.5", null, "4.2", null, "0.1", null, "0.1", null, "0.5", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "2.9", null, "1.5", null, "14.5", null, "3.8", null, "14.4", null, "3.6", null, "42.8", null, "4.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "20.2", null, "4.2", null, "48.2", null, "6.5", null, "31.5", null, "5.9", null, "263526", null, "4439", null, "118795", null, "3547", null, "144731", null, "4101", null, "138438", null, "4784", null, "44702", null, "4231", null, "12066", null, "2219", null, "32636", null, "3517", null, "80386", null, "4520", null, "80902", null, "4117", null, "55019", null, "2998", null, "24818", null, "3422", null, "6413", null, "1865", null, "18405", null, "2734", null, "1065", null, "919", null, "182624", null, "5097", null, "83419", null, "3729", null, "19884", null, "2909", null, "5653", null, "1395", null, "14231", null, "2385", null, "79321", null, "4385", null, "27248", null, "3108", null, "236278", null, "4696", null, "81282", null, "3731", null, "182244", null, "4284", null, "184215", null, "4228", null, "39984", null, "2204", null, "1451", null, "601", null, "2052", null, "587", null, "-999999999", "N", "-999999999", "N", "9443", null, "1860", null, "26362", null, "2872", null, "34821", null, "2060", null, "176292", null, "4123", null, "73901", null, "2798", null, "183140", null, "4929", null, "29957", null, "2492", null, "55356", null, "3754", null, "97827", null, "3923", null, "87.6", null, "1.0", null, "45.1", null, "1.2", null, "54.9", null, "1.2", null, "52.5", null, "1.8", null, "17.0", null, "1.5", null, "4.6", null, "0.8", null, "12.4", null, "1.3", null, "30.5", null, "1.6", null, "30.7", null, "1.5", null, "20.9", null, "1.2", null, "9.4", null, "1.3", null, "2.4", null, "0.7", null, "7.0", null, "1.0", null, "0.4", null, "0.3", null, "69.3", null, "1.5", null, "31.7", null, "1.4", null, "7.5", null, "1.1", null, "2.1", null, "0.5", null, "5.4", null, "0.9", null, "30.1", null, "1.5", null, "10.3", null, "1.1", null, "89.7", null, "1.1", null, "30.8", null, "1.3", null, "69.2", null, "1.3", null, "69.9", null, "1.2", null, "15.2", null, "0.8", null, "0.6", null, "0.2", null, "0.8", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "3.6", null, "0.7", null, "10.0", null, "1.1", null, "13.2", null, "0.8", null, "66.9", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.4", null, "1.3", null, "30.2", null, "1.7", null, "53.4", null, "1.8", null, "48", "01"], ["5001900US4802", "Congressional District 2 (119th Congress), Texas", "303509", null, "9108", null, "109656", null, "5816", null, "193853", null, "8324", null, "180984", null, "7400", null, "48387", null, "4805", null, "14349", null, "3006", null, "34038", null, "4025", null, "74138", null, "6034", null, "118055", null, "6690", null, "87866", null, "6194", null, "29987", null, "4533", null, "8359", null, "2789", null, "21628", null, "3719", null, "202", null, "247", null, "185454", null, "8935", null, "93118", null, "5801", null, "18400", null, "2852", null, "5990", null, "1585", null, "12410", null, "2395", null, "73936", null, "6072", null, "27748", null, "4053", null, "275761", null, "8651", null, "76492", null, "5261", null, "227017", null, "7946", null, "182133", null, "8259", null, "41911", null, "5302", null, "-999999999", "N", "-999999999", "N", "13762", null, "2478", null, "-999999999", "N", "-999999999", "N", "19569", null, "3410", null, "44710", null, "4529", null, "78919", null, "5659", null, "159442", null, "7443", null, "101405", null, "4209", null, "229371", null, "8111", null, "26389", null, "3406", null, "68326", null, "6670", null, "134656", null, "7116", null, "-888888888", "(X)", "-888888888", "(X)", "36.1", null, "1.7", null, "63.9", null, "1.7", null, "59.6", null, "1.9", null, "15.9", null, "1.5", null, "4.7", null, "1.0", null, "11.2", null, "1.3", null, "24.4", null, "1.8", null, "38.9", null, "2.0", null, "29.0", null, "2.0", null, "9.9", null, "1.4", null, "2.8", null, "0.9", null, "7.1", null, "1.2", null, "0.1", null, "0.1", null, "61.1", null, "2.0", null, "30.7", null, "1.6", null, "6.1", null, "0.9", null, "2.0", null, "0.5", null, "4.1", null, "0.8", null, "24.4", null, "1.8", null, "9.1", null, "1.3", null, "90.9", null, "1.3", null, "25.2", null, "1.5", null, "74.8", null, "1.5", null, "60.0", null, "1.9", null, "13.8", null, "1.6", null, "-999999999.0", "N", "-999999999.0", "N", "4.5", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "6.4", null, "1.1", null, "14.7", null, "1.5", null, "26.0", null, "1.8", null, "52.5", null, "1.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.5", null, "1.4", null, "29.8", null, "2.6", null, "58.7", null, "2.6", null, "14670", null, "3284", null, "4719", null, "1456", null, "9951", null, "2787", null, "5731", null, "2151", null, "5140", null, "1862", null, "909", null, "743", null, "4231", null, "1710", null, "3799", null, "1919", null, "8491", null, "2268", null, "4276", null, "1911", null, "4215", null, "1801", null, "909", null, "743", null, "3306", null, "1669", null, "0", null, "242", null, "6179", null, "2258", null, "1455", null, "902", null, "925", null, "527", null, "0", null, "242", null, "925", null, "527", null, "3799", null, "1919", null, "4865", null, "1742", null, "9805", null, "2721", null, "6249", null, "1967", null, "8421", null, "2465", null, "6826", null, "2028", null, "4293", null, "2146", null, "-999999999", "N", "-999999999", "N", "311", null, "353", null, "-999999999", "N", "-999999999", "N", "819", null, "771", null, "2312", null, "940", null, "4507", null, "1629", null, "4962", null, "1669", null, "56631", null, "11396", null, "10871", null, "2664", null, "2060", null, "1174", null, "3995", null, "1515", null, "4816", null, "1942", null, "4.8", null, "1.1", null, "32.2", null, "8.8", null, "67.8", null, "8.8", null, "39.1", null, "11.4", null, "35.0", null, "12.0", null, "6.2", null, "5.2", null, "28.8", null, "10.8", null, "25.9", null, "10.8", null, "57.9", null, "10.6", null, "29.1", null, "11.4", null, "28.7", null, "11.4", null, "6.2", null, "5.2", null, "22.5", null, "10.4", null, "0.0", null, "1.6", null, "42.1", null, "10.6", null, "9.9", null, "5.4", null, "6.3", null, "3.8", null, "0.0", null, "1.6", null, "6.3", null, "3.8", null, "25.9", null, "10.8", null, "33.2", null, "9.9", null, "66.8", null, "9.9", null, "42.6", null, "10.2", null, "57.4", null, "10.2", null, "46.5", null, "10.3", null, "29.3", null, "11.7", null, "-999999999.0", "N", "-999999999.0", "N", "2.1", null, "2.5", null, "-999999999.0", "N", "-999999999.0", "N", "5.6", null, "5.3", null, "15.8", null, "6.0", null, "30.7", null, "10.0", null, "33.8", null, "9.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.9", null, "9.9", null, "36.7", null, "10.9", null, "44.3", null, "13.6", null, "288839", null, "8920", null, "104937", null, "5902", null, "183902", null, "8216", null, "175253", null, "7372", null, "43247", null, "4360", null, "13440", null, "2888", null, "29807", null, "3672", null, "70339", null, "6294", null, "109564", null, "6622", null, "83590", null, "5869", null, "25772", null, "4185", null, "7450", null, "2720", null, "18322", null, "3409", null, "202", null, "247", null, "179275", null, "9057", null, "91663", null, "5652", null, "17475", null, "2929", null, "5990", null, "1585", null, "11485", null, "2459", null, "70137", null, "6324", null, "22883", null, "3835", null, "265956", null, "8200", null, "70243", null, "4853", null, "218596", null, "7878", null, "175307", null, "8098", null, "37618", null, "4713", null, "-999999999", "N", "-999999999", "N", "13451", null, "2479", null, "-999999999", "N", "-999999999", "N", "18750", null, "3263", null, "42398", null, "4544", null, "74412", null, "5549", null, "154480", null, "7274", null, "105084", null, "5475", null, "218500", null, "7810", null, "24329", null, "3000", null, "64331", null, "6325", null, "129840", null, "6921", null, "95.2", null, "1.1", null, "36.3", null, "1.8", null, "63.7", null, "1.8", null, "60.7", null, "2.1", null, "15.0", null, "1.5", null, "4.7", null, "1.0", null, "10.3", null, "1.2", null, "24.4", null, "1.9", null, "37.9", null, "2.2", null, "28.9", null, "2.0", null, "8.9", null, "1.4", null, "2.6", null, "0.9", null, "6.3", null, "1.2", null, "0.1", null, "0.1", null, "62.1", null, "2.2", null, "31.7", null, "1.6", null, "6.1", null, "1.0", null, "2.1", null, "0.6", null, "4.0", null, "0.8", null, "24.3", null, "1.9", null, "7.9", null, "1.3", null, "92.1", null, "1.3", null, "24.3", null, "1.5", null, "75.7", null, "1.5", null, "60.7", null, "1.8", null, "13.0", null, "1.6", null, "-999999999.0", "N", "-999999999.0", "N", "4.7", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "6.5", null, "1.1", null, "14.7", null, "1.5", null, "25.8", null, "1.8", null, "53.5", null, "1.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.1", null, "1.3", null, "29.4", null, "2.6", null, "59.4", null, "2.6", null, "48", "02"], ["5001900US4803", "Congressional District 3 (119th Congress), Texas", "319719", null, "5420", null, "112131", null, "4308", null, "207588", null, "5381", null, "201932", null, "5976", null, "43585", null, "3680", null, "12822", null, "2352", null, "30763", null, "3403", null, "74202", null, "5394", null, "127429", null, "5432", null, "102705", null, "4621", null, "24293", null, "3081", null, "5361", null, "1527", null, "18932", null, "2747", null, "431", null, "387", null, "192290", null, "6468", null, "99227", null, "5298", null, "19292", null, "2667", null, "7461", null, "1960", null, "11831", null, "1983", null, "73771", null, "5390", null, "22518", null, "2983", null, "297201", null, "5831", null, "67606", null, "4711", null, "252113", null, "6273", null, "192808", null, "5682", null, "33673", null, "3424", null, "-999999999", "N", "-999999999", "N", "48933", null, "3785", null, "-999999999", "N", "-999999999", "N", "10452", null, "2276", null, "31681", null, "3497", null, "43304", null, "3503", null, "182522", null, "5561", null, "124853", null, "4251", null, "245517", null, "6242", null, "24785", null, "2871", null, "66385", null, "5097", null, "154347", null, "6367", null, "-888888888", "(X)", "-888888888", "(X)", "35.1", null, "1.2", null, "64.9", null, "1.2", null, "63.2", null, "1.7", null, "13.6", null, "1.1", null, "4.0", null, "0.7", null, "9.6", null, "1.0", null, "23.2", null, "1.6", null, "39.9", null, "1.6", null, "32.1", null, "1.4", null, "7.6", null, "1.0", null, "1.7", null, "0.5", null, "5.9", null, "0.8", null, "0.1", null, "0.1", null, "60.1", null, "1.6", null, "31.0", null, "1.6", null, "6.0", null, "0.8", null, "2.3", null, "0.6", null, "3.7", null, "0.6", null, "23.1", null, "1.6", null, "7.0", null, "0.9", null, "93.0", null, "0.9", null, "21.1", null, "1.4", null, "78.9", null, "1.4", null, "60.3", null, "1.7", null, "10.5", null, "1.1", null, "-999999999.0", "N", "-999999999.0", "N", "15.3", null, "1.1", null, "-999999999.0", "N", "-999999999.0", "N", "3.3", null, "0.7", null, "9.9", null, "1.0", null, "13.5", null, "1.0", null, "57.1", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.1", null, "1.1", null, "27.0", null, "2.0", null, "62.9", null, "2.0", null, "14001", null, "2718", null, "5872", null, "1467", null, "8129", null, "2258", null, "4003", null, "1337", null, "7724", null, "2154", null, "2061", null, "1255", null, "5663", null, "1629", null, "2274", null, "1205", null, "7656", null, "2041", null, "2311", null, "1100", null, "5345", null, "1745", null, "1228", null, "1027", null, "4117", null, "1421", null, "0", null, "242", null, "6345", null, "1755", null, "1692", null, "773", null, "2379", null, "985", null, "833", null, "564", null, "1546", null, "694", null, "2274", null, "1205", null, "4004", null, "1384", null, "9997", null, "2243", null, "7390", null, "1761", null, "6611", null, "1858", null, "6638", null, "1512", null, "3677", null, "1528", null, "-999999999", "N", "-999999999", "N", "1384", null, "829", null, "-999999999", "N", "-999999999", "N", "936", null, "624", null, "1316", null, "660", null, "2227", null, "957", null, "6116", null, "1405", null, "42359", null, "7087", null, "11727", null, "2428", null, "2481", null, "1354", null, "4881", null, "1586", null, "4365", null, "1436", null, "4.4", null, "0.8", null, "41.9", null, "9.0", null, "58.1", null, "9.0", null, "28.6", null, "8.7", null, "55.2", null, "10.7", null, "14.7", null, "7.9", null, "40.4", null, "9.8", null, "16.2", null, "7.8", null, "54.7", null, "9.5", null, "16.5", null, "7.5", null, "38.2", null, "9.4", null, "8.8", null, "6.7", null, "29.4", null, "9.0", null, "0.0", null, "1.7", null, "45.3", null, "9.5", null, "12.1", null, "5.4", null, "17.0", null, "6.5", null, "5.9", null, "3.9", null, "11.0", null, "4.7", null, "16.2", null, "7.8", null, "28.6", null, "8.1", null, "71.4", null, "8.1", null, "52.8", null, "8.5", null, "47.2", null, "8.5", null, "47.4", null, "8.2", null, "26.3", null, "8.2", null, "-999999999.0", "N", "-999999999.0", "N", "9.9", null, "5.3", null, "-999999999.0", "N", "-999999999.0", "N", "6.7", null, "4.4", null, "9.4", null, "4.9", null, "15.9", null, "7.1", null, "43.7", null, "7.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "21.2", null, "9.8", null, "41.6", null, "10.2", null, "37.2", null, "11.5", null, "305718", null, "5550", null, "106259", null, "4144", null, "199459", null, "5713", null, "197929", null, "6081", null, "35861", null, "3486", null, "10761", null, "2331", null, "25100", null, "3159", null, "71928", null, "5453", null, "119773", null, "5075", null, "100394", null, "4663", null, "18948", null, "2862", null, "4133", null, "1333", null, "14815", null, "2742", null, "431", null, "387", null, "185945", null, "6477", null, "97535", null, "5216", null, "16913", null, "2600", null, "6628", null, "1853", null, "10285", null, "1866", null, "71497", null, "5444", null, "18514", null, "2830", null, "287204", null, "5536", null, "60216", null, "4404", null, "245502", null, "6394", null, "186170", null, "5346", null, "29996", null, "3373", null, "-999999999", "N", "-999999999", "N", "47549", null, "3918", null, "-999999999", "N", "-999999999", "N", "9516", null, "2215", null, "30365", null, "3584", null, "41077", null, "3576", null, "176406", null, "5311", null, "127877", null, "4657", null, "233790", null, "6261", null, "22304", null, "2675", null, "61504", null, "4756", null, "149982", null, "6303", null, "95.6", null, "0.8", null, "34.8", null, "1.3", null, "65.2", null, "1.3", null, "64.7", null, "1.8", null, "11.7", null, "1.1", null, "3.5", null, "0.7", null, "8.2", null, "1.0", null, "23.5", null, "1.7", null, "39.2", null, "1.6", null, "32.8", null, "1.5", null, "6.2", null, "0.9", null, "1.4", null, "0.4", null, "4.8", null, "0.9", null, "0.1", null, "0.1", null, "60.8", null, "1.6", null, "31.9", null, "1.6", null, "5.5", null, "0.8", null, "2.2", null, "0.6", null, "3.4", null, "0.6", null, "23.4", null, "1.7", null, "6.1", null, "0.9", null, "93.9", null, "0.9", null, "19.7", null, "1.4", null, "80.3", null, "1.4", null, "60.9", null, "1.7", null, "9.8", null, "1.1", null, "-999999999.0", "N", "-999999999.0", "N", "15.6", null, "1.2", null, "-999999999.0", "N", "-999999999.0", "N", "3.1", null, "0.7", null, "9.9", null, "1.1", null, "13.4", null, "1.1", null, "57.7", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "9.5", null, "1.1", null, "26.3", null, "2.0", null, "64.2", null, "1.9", null, "48", "03"], ["5001900US4804", "Congressional District 4 (119th Congress), Texas", "327138", null, "5579", null, "121675", null, "4876", null, "205463", null, "6513", null, "183484", null, "5593", null, "44486", null, "4249", null, "12798", null, "2144", null, "31688", null, "3491", null, "99168", null, "5210", null, "118334", null, "5831", null, "92041", null, "5595", null, "25529", null, "3564", null, "7479", null, "1742", null, "18050", null, "2953", null, "764", null, "483", null, "208804", null, "6279", null, "91443", null, "3913", null, "18957", null, "2298", null, "5319", null, "1429", null, "13638", null, "1995", null, "98404", null, "5178", null, "26314", null, "3571", null, "300824", null, "5604", null, "76260", null, "4869", null, "250878", null, "6152", null, "215054", null, "5123", null, "32035", null, "4044", null, "2939", null, "983", null, "38753", null, "3891", null, "-999999999", "N", "-999999999", "N", "11447", null, "2661", null, "26910", null, "3469", null, "40957", null, "3929", null, "202821", null, "5018", null, "99301", null, "2684", null, "227970", null, "5912", null, "23517", null, "2109", null, "70982", null, "4929", null, "133471", null, "5415", null, "-888888888", "(X)", "-888888888", "(X)", "37.2", null, "1.5", null, "62.8", null, "1.5", null, "56.1", null, "1.5", null, "13.6", null, "1.3", null, "3.9", null, "0.7", null, "9.7", null, "1.1", null, "30.3", null, "1.5", null, "36.2", null, "1.6", null, "28.1", null, "1.6", null, "7.8", null, "1.1", null, "2.3", null, "0.5", null, "5.5", null, "0.9", null, "0.2", null, "0.1", null, "63.8", null, "1.6", null, "28.0", null, "1.2", null, "5.8", null, "0.7", null, "1.6", null, "0.4", null, "4.2", null, "0.6", null, "30.1", null, "1.5", null, "8.0", null, "1.1", null, "92.0", null, "1.1", null, "23.3", null, "1.4", null, "76.7", null, "1.4", null, "65.7", null, "1.4", null, "9.8", null, "1.2", null, "0.9", null, "0.3", null, "11.8", null, "1.1", null, "-999999999.0", "N", "-999999999.0", "N", "3.5", null, "0.8", null, "8.2", null, "1.1", null, "12.5", null, "1.2", null, "62.0", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.3", null, "0.9", null, "31.1", null, "1.9", null, "58.5", null, "1.9", null, "18880", null, "2826", null, "6715", null, "1495", null, "12165", null, "2543", null, "5060", null, "1463", null, "9396", null, "2438", null, "1705", null, "986", null, "7691", null, "2099", null, "4424", null, "1147", null, "11780", null, "2475", null, "4333", null, "1431", null, "7263", null, "2115", null, "1329", null, "906", null, "5934", null, "1823", null, "184", null, "258", null, "7100", null, "1570", null, "727", null, "332", null, "2133", null, "1012", null, "376", null, "305", null, "1757", null, "948", null, "4240", null, "1108", null, "7989", null, "1957", null, "10891", null, "2107", null, "8298", null, "1787", null, "10582", null, "2289", null, "10844", null, "2310", null, "3501", null, "1345", null, "306", null, "315", null, "802", null, "527", null, "-999999999", "N", "-999999999", "N", "1245", null, "951", null, "2182", null, "1026", null, "4333", null, "1605", null, "9075", null, "2060", null, "30270", null, "6129", null, "14456", null, "2800", null, "2784", null, "1073", null, "7859", null, "2284", null, "3813", null, "1017", null, "5.8", null, "0.8", null, "35.6", null, "7.4", null, "64.4", null, "7.4", null, "26.8", null, "7.0", null, "49.8", null, "8.7", null, "9.0", null, "4.8", null, "40.7", null, "8.2", null, "23.4", null, "6.4", null, "62.4", null, "7.5", null, "23.0", null, "7.0", null, "38.5", null, "8.4", null, "7.0", null, "4.5", null, "31.4", null, "7.9", null, "1.0", null, "1.4", null, "37.6", null, "7.5", null, "3.9", null, "1.7", null, "11.3", null, "4.9", null, "2.0", null, "1.6", null, "9.3", null, "4.7", null, "22.5", null, "6.0", null, "42.3", null, "7.9", null, "57.7", null, "7.9", null, "44.0", null, "7.7", null, "56.0", null, "7.7", null, "57.4", null, "8.3", null, "18.5", null, "6.5", null, "1.6", null, "1.7", null, "4.2", null, "2.7", null, "-999999999.0", "N", "-999999999.0", "N", "6.6", null, "4.8", null, "11.6", null, "5.7", null, "23.0", null, "7.6", null, "48.1", null, "8.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "19.3", null, "6.7", null, "54.4", null, "9.4", null, "26.4", null, "6.8", null, "308258", null, "5543", null, "114960", null, "4769", null, "193298", null, "6273", null, "178424", null, "5661", null, "35090", null, "3576", null, "11093", null, "2022", null, "23997", null, "3159", null, "94744", null, "5091", null, "106554", null, "5597", null, "87708", null, "5580", null, "18266", null, "2783", null, "6150", null, "1498", null, "12116", null, "2396", null, "580", null, "407", null, "201704", null, "6323", null, "90716", null, "3941", null, "16824", null, "2297", null, "4943", null, "1383", null, "11881", null, "1956", null, "94164", null, "5070", null, "18325", null, "2829", null, "289933", null, "5652", null, "67962", null, "4609", null, "240296", null, "6297", null, "204210", null, "5537", null, "28534", null, "3857", null, "2633", null, "952", null, "37951", null, "3838", null, "-999999999", "N", "-999999999", "N", "10202", null, "2480", null, "24728", null, "3455", null, "36624", null, "3892", null, "193746", null, "5159", null, "102492", null, "2495", null, "213514", null, "5738", null, "20733", null, "1896", null, "63123", null, "4849", null, "129658", null, "5348", null, "94.2", null, "0.8", null, "37.3", null, "1.5", null, "62.7", null, "1.5", null, "57.9", null, "1.6", null, "11.4", null, "1.2", null, "3.6", null, "0.7", null, "7.8", null, "1.0", null, "30.7", null, "1.5", null, "34.6", null, "1.7", null, "28.5", null, "1.7", null, "5.9", null, "0.9", null, "2.0", null, "0.5", null, "3.9", null, "0.8", null, "0.2", null, "0.1", null, "65.4", null, "1.7", null, "29.4", null, "1.3", null, "5.5", null, "0.7", null, "1.6", null, "0.4", null, "3.9", null, "0.6", null, "30.5", null, "1.5", null, "5.9", null, "0.9", null, "94.1", null, "0.9", null, "22.0", null, "1.5", null, "78.0", null, "1.5", null, "66.2", null, "1.5", null, "9.3", null, "1.2", null, "0.9", null, "0.3", null, "12.3", null, "1.2", null, "-999999999.0", "N", "-999999999.0", "N", "3.3", null, "0.8", null, "8.0", null, "1.1", null, "11.9", null, "1.2", null, "62.9", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "9.7", null, "0.9", null, "29.6", null, "2.0", null, "60.7", null, "2.0", null, "48", "04"], ["5001900US4805", "Congressional District 5 (119th Congress), Texas", "284462", null, "6070", null, "124333", null, "4951", null, "160129", null, "5600", null, "149225", null, "4820", null, "54891", null, "4350", null, "13406", null, "2334", null, "41485", null, "3885", null, "80346", null, "5651", null, "99286", null, "4888", null, "64123", null, "4190", null, "34717", null, "4356", null, "6803", null, "1647", null, "27914", null, "4051", null, "446", null, "522", null, "185176", null, "6752", null, "85102", null, "4764", null, "20174", null, "2798", null, "6603", null, "1655", null, "13571", null, "2119", null, "79900", null, "5640", null, "32466", null, "4054", null, "251996", null, "7076", null, "79313", null, "5004", null, "205149", null, "6605", null, "161132", null, "5168", null, "44302", null, "3755", null, "2134", null, "892", null, "11627", null, "1863", null, "-999999999", "N", "-999999999", "N", "16337", null, "2913", null, "48910", null, "4368", null, "72747", null, "4437", null, "145626", null, "4547", null, "75301", null, "3542", null, "204116", null, "5617", null, "26407", null, "2549", null, "69568", null, "4909", null, "108141", null, "5667", null, "-888888888", "(X)", "-888888888", "(X)", "43.7", null, "1.5", null, "56.3", null, "1.5", null, "52.5", null, "1.6", null, "19.3", null, "1.5", null, "4.7", null, "0.8", null, "14.6", null, "1.4", null, "28.2", null, "1.7", null, "34.9", null, "1.7", null, "22.5", null, "1.5", null, "12.2", null, "1.5", null, "2.4", null, "0.6", null, "9.8", null, "1.4", null, "0.2", null, "0.2", null, "65.1", null, "1.7", null, "29.9", null, "1.6", null, "7.1", null, "1.0", null, "2.3", null, "0.6", null, "4.8", null, "0.7", null, "28.1", null, "1.7", null, "11.4", null, "1.4", null, "88.6", null, "1.4", null, "27.9", null, "1.7", null, "72.1", null, "1.7", null, "56.6", null, "1.9", null, "15.6", null, "1.1", null, "0.8", null, "0.3", null, "4.1", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "5.7", null, "1.0", null, "17.2", null, "1.5", null, "25.6", null, "1.4", null, "51.2", null, "1.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.9", null, "1.2", null, "34.1", null, "2.1", null, "53.0", null, "2.5", null, "29857", null, "3526", null, "11166", null, "1919", null, "18691", null, "2918", null, "7246", null, "1770", null, "13678", null, "2527", null, "2045", null, "1113", null, "11633", null, "2213", null, "8933", null, "1939", null, "16255", null, "2669", null, "5585", null, "1420", null, "10455", null, "2201", null, "911", null, "590", null, "9544", null, "2153", null, "215", null, "321", null, "13602", null, "2216", null, "1661", null, "800", null, "3223", null, "1248", null, "1134", null, "906", null, "2089", null, "721", null, "8718", null, "1887", null, "11049", null, "2222", null, "18808", null, "3090", null, "13021", null, "1933", null, "16836", null, "2828", null, "12228", null, "2058", null, "10367", null, "2334", null, "323", null, "348", null, "1724", null, "851", null, "-999999999", "N", "-999999999", "N", "1033", null, "673", null, "4182", null, "1231", null, "6879", null, "2151", null, "10078", null, "1675", null, "35971", null, "5636", null, "20924", null, "3018", null, "2818", null, "1080", null, "11224", null, "2258", null, "6882", null, "1746", null, "10.5", null, "1.2", null, "37.4", null, "5.4", null, "62.6", null, "5.4", null, "24.3", null, "5.0", null, "45.8", null, "6.6", null, "6.8", null, "3.7", null, "39.0", null, "5.8", null, "29.9", null, "5.5", null, "54.4", null, "5.7", null, "18.7", null, "4.2", null, "35.0", null, "5.9", null, "3.1", null, "2.0", null, "32.0", null, "5.8", null, "0.7", null, "1.1", null, "45.6", null, "5.7", null, "5.6", null, "2.5", null, "10.8", null, "4.2", null, "3.8", null, "3.0", null, "7.0", null, "2.4", null, "29.2", null, "5.5", null, "37.0", null, "6.5", null, "63.0", null, "6.5", null, "43.6", null, "5.4", null, "56.4", null, "5.4", null, "41.0", null, "5.6", null, "34.7", null, "6.5", null, "1.1", null, "1.2", null, "5.8", null, "2.6", null, "-999999999.0", "N", "-999999999.0", "N", "3.5", null, "2.2", null, "14.0", null, "3.7", null, "23.0", null, "6.0", null, "33.8", null, "5.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.5", null, "5.0", null, "53.6", null, "7.2", null, "32.9", null, "6.8", null, "254605", null, "6041", null, "113167", null, "4712", null, "141438", null, "5626", null, "141979", null, "4640", null, "41213", null, "3793", null, "11361", null, "1936", null, "29852", null, "3146", null, "71413", null, "5411", null, "83031", null, "4798", null, "58538", null, "4289", null, "24262", null, "3504", null, "5892", null, "1518", null, "18370", null, "3028", null, "231", null, "299", null, "171574", null, "6533", null, "83441", null, "4734", null, "16951", null, "2309", null, "5469", null, "1291", null, "11482", null, "1931", null, "71182", null, "5417", null, "21417", null, "3017", null, "233188", null, "6873", null, "66292", null, "4666", null, "188313", null, "6888", null, "148904", null, "4856", null, "33935", null, "4058", null, "1811", null, "848", null, "9903", null, "1682", null, "-999999999", "N", "-999999999", "N", "15304", null, "2780", null, "44728", null, "4337", null, "65868", null, "4476", null, "135548", null, "4411", null, "80642", null, "2267", null, "183192", null, "5270", null, "23589", null, "2232", null, "58344", null, "4670", null, "101259", null, "5112", null, "89.5", null, "1.2", null, "44.4", null, "1.6", null, "55.6", null, "1.6", null, "55.8", null, "1.8", null, "16.2", null, "1.4", null, "4.5", null, "0.7", null, "11.7", null, "1.2", null, "28.0", null, "1.8", null, "32.6", null, "1.8", null, "23.0", null, "1.7", null, "9.5", null, "1.3", null, "2.3", null, "0.6", null, "7.2", null, "1.2", null, "0.1", null, "0.1", null, "67.4", null, "1.8", null, "32.8", null, "1.8", null, "6.7", null, "0.9", null, "2.1", null, "0.5", null, "4.5", null, "0.7", null, "28.0", null, "1.8", null, "8.4", null, "1.2", null, "91.6", null, "1.2", null, "26.0", null, "1.8", null, "74.0", null, "1.8", null, "58.5", null, "2.0", null, "13.3", null, "1.4", null, "0.7", null, "0.3", null, "3.9", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "6.0", null, "1.1", null, "17.6", null, "1.6", null, "25.9", null, "1.6", null, "53.2", null, "1.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.9", null, "1.2", null, "31.8", null, "2.2", null, "55.3", null, "2.5", null, "48", "05"], ["5001900US4806", "Congressional District 6 (119th Congress), Texas", "286547", null, "5123", null, "108008", null, "4342", null, "178539", null, "4773", null, "153669", null, "6157", null, "55738", null, "4470", null, "16856", null, "2917", null, "38882", null, "3743", null, "77140", null, "5274", null, "102264", null, "4582", null, "70629", null, "3807", null, "31245", null, "3363", null, "7453", null, "1743", null, "23792", null, "3081", null, "390", null, "392", null, "184283", null, "6402", null, "83040", null, "5252", null, "24493", null, "3401", null, "9403", null, "2176", null, "15090", null, "2371", null, "76750", null, "5310", null, "29538", null, "3539", null, "257009", null, "6037", null, "75780", null, "5398", null, "210767", null, "6350", null, "163653", null, "5203", null, "43306", null, "3529", null, "2898", null, "1026", null, "9517", null, "1697", null, "-999999999", "N", "-999999999", "N", "26617", null, "2615", null, "40501", null, "3610", null, "82270", null, "4286", null, "141818", null, "4665", null, "81604", null, "2684", null, "209407", null, "6470", null, "23896", null, "2288", null, "63969", null, "4295", null, "121542", null, "6273", null, "-888888888", "(X)", "-888888888", "(X)", "37.7", null, "1.3", null, "62.3", null, "1.3", null, "53.6", null, "1.9", null, "19.5", null, "1.5", null, "5.9", null, "1.0", null, "13.6", null, "1.3", null, "26.9", null, "1.8", null, "35.7", null, "1.6", null, "24.6", null, "1.4", null, "10.9", null, "1.2", null, "2.6", null, "0.6", null, "8.3", null, "1.1", null, "0.1", null, "0.1", null, "64.3", null, "1.6", null, "29.0", null, "1.7", null, "8.5", null, "1.2", null, "3.3", null, "0.8", null, "5.3", null, "0.8", null, "26.8", null, "1.8", null, "10.3", null, "1.2", null, "89.7", null, "1.2", null, "26.4", null, "1.8", null, "73.6", null, "1.8", null, "57.1", null, "1.5", null, "15.1", null, "1.2", null, "1.0", null, "0.4", null, "3.3", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "9.3", null, "0.9", null, "14.1", null, "1.3", null, "28.7", null, "1.4", null, "49.5", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.4", null, "1.1", null, "30.5", null, "1.9", null, "58.0", null, "2.1", null, "24708", null, "3202", null, "8696", null, "1578", null, "16012", null, "2639", null, "9992", null, "2147", null, "8711", null, "1577", null, "1388", null, "688", null, "7323", null, "1513", null, "6005", null, "1432", null, "14123", null, "2572", null, "7997", null, "1974", null, "6112", null, "1430", null, "874", null, "558", null, "5238", null, "1311", null, "14", null, "26", null, "10585", null, "1858", null, "1995", null, "884", null, "2599", null, "943", null, "514", null, "399", null, "2085", null, "890", null, "5991", null, "1436", null, "8523", null, "1983", null, "16185", null, "2602", null, "12267", null, "2041", null, "12441", null, "2429", null, "11502", null, "1909", null, "5753", null, "1583", null, "479", null, "529", null, "381", null, "367", null, "-999999999", "N", "-999999999", "N", "2521", null, "1055", null, "4017", null, "1200", null, "7911", null, "1989", null, "9246", null, "1518", null, "40827", null, "10582", null, "18703", null, "2662", null, "3455", null, "1285", null, "6870", null, "1685", null, "8378", null, "2103", null, "8.6", null, "1.1", null, "35.2", null, "5.3", null, "64.8", null, "5.3", null, "40.4", null, "6.0", null, "35.3", null, "5.7", null, "5.6", null, "2.9", null, "29.6", null, "5.3", null, "24.3", null, "4.8", null, "57.2", null, "6.1", null, "32.4", null, "5.7", null, "24.7", null, "5.1", null, "3.5", null, "2.3", null, "21.2", null, "4.7", null, "0.1", null, "0.1", null, "42.8", null, "6.1", null, "8.1", null, "3.6", null, "10.5", null, "3.9", null, "2.1", null, "1.7", null, "8.4", null, "3.6", null, "24.2", null, "4.8", null, "34.5", null, "6.6", null, "65.5", null, "6.6", null, "49.6", null, "6.3", null, "50.4", null, "6.3", null, "46.6", null, "6.3", null, "23.3", null, "5.1", null, "1.9", null, "2.1", null, "1.5", null, "1.5", null, "-999999999.0", "N", "-999999999.0", "N", "10.2", null, "3.7", null, "16.3", null, "4.7", null, "32.0", null, "6.2", null, "37.4", null, "5.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.5", null, "6.9", null, "36.7", null, "7.7", null, "44.8", null, "8.1", null, "261839", null, "6103", null, "99312", null, "4253", null, "162527", null, "5041", null, "143677", null, "6023", null, "47027", null, "4476", null, "15468", null, "2877", null, "31559", null, "3607", null, "71135", null, "5395", null, "88141", null, "4403", null, "62632", null, "3561", null, "25133", null, "3245", null, "6579", null, "1693", null, "18554", null, "2982", null, "376", null, "392", null, "173698", null, "6330", null, "81045", null, "5066", null, "21894", null, "3352", null, "8889", null, "2167", null, "13005", null, "2324", null, "70759", null, "5428", null, "21015", null, "2951", null, "240824", null, "6528", null, "63513", null, "4942", null, "198326", null, "6885", null, "152151", null, "5144", null, "37553", null, "3613", null, "2419", null, "882", null, "9136", null, "1716", null, "-999999999", "N", "-999999999", "N", "24096", null, "2599", null, "36484", null, "3456", null, "74359", null, "4403", null, "132572", null, "4548", null, "85293", null, "2543", null, "190704", null, "6532", null, "20441", null, "1943", null, "57099", null, "4225", null, "113164", null, "5837", null, "91.4", null, "1.1", null, "37.9", null, "1.3", null, "62.1", null, "1.3", null, "54.9", null, "2.1", null, "18.0", null, "1.6", null, "5.9", null, "1.1", null, "12.1", null, "1.3", null, "27.2", null, "1.9", null, "33.7", null, "1.6", null, "23.9", null, "1.3", null, "9.6", null, "1.2", null, "2.5", null, "0.6", null, "7.1", null, "1.1", null, "0.1", null, "0.1", null, "66.3", null, "1.6", null, "31.0", null, "1.8", null, "8.4", null, "1.2", null, "3.4", null, "0.8", null, "5.0", null, "0.9", null, "27.0", null, "1.9", null, "8.0", null, "1.1", null, "92.0", null, "1.1", null, "24.3", null, "1.8", null, "75.7", null, "1.8", null, "58.1", null, "1.5", null, "14.3", null, "1.3", null, "0.9", null, "0.3", null, "3.5", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "9.2", null, "1.0", null, "13.9", null, "1.3", null, "28.4", null, "1.5", null, "50.6", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.7", null, "1.0", null, "29.9", null, "2.0", null, "59.3", null, "2.2", null, "48", "06"], ["5001900US4807", "Congressional District 7 (119th Congress), Texas", "312929", null, "8167", null, "91924", null, "5162", null, "221005", null, "7998", null, "124496", null, "5502", null, "52960", null, "4897", null, "14842", null, "2852", null, "38118", null, "4270", null, "135473", null, "6219", null, "87217", null, "6287", null, "56610", null, "4776", null, "29954", null, "4073", null, "5168", null, "1699", null, "24786", null, "3635", null, "653", null, "615", null, "225712", null, "7092", null, "67886", null, "3602", null, "23006", null, "2570", null, "9674", null, "2059", null, "13332", null, "1924", null, "134820", null, "6216", null, "41236", null, "4371", null, "271693", null, "8236", null, "65349", null, "5268", null, "247580", null, "7288", null, "109127", null, "5434", null, "65741", null, "6120", null, "2012", null, "889", null, "56686", null, "3705", null, "-999999999", "N", "-999999999", "N", "24084", null, "3801", null, "54629", null, "4224", null, "87119", null, "5068", null, "93510", null, "4799", null, "75245", null, "3347", null, "177456", null, "7279", null, "15858", null, "2174", null, "59549", null, "5151", null, "102049", null, "6124", null, "-888888888", "(X)", "-888888888", "(X)", "29.4", null, "1.6", null, "70.6", null, "1.6", null, "39.8", null, "1.6", null, "16.9", null, "1.4", null, "4.7", null, "0.9", null, "12.2", null, "1.3", null, "43.3", null, "1.7", null, "27.9", null, "1.7", null, "18.1", null, "1.5", null, "9.6", null, "1.2", null, "1.7", null, "0.5", null, "7.9", null, "1.1", null, "0.2", null, "0.2", null, "72.1", null, "1.7", null, "21.7", null, "1.1", null, "7.4", null, "0.8", null, "3.1", null, "0.7", null, "4.3", null, "0.6", null, "43.1", null, "1.7", null, "13.2", null, "1.4", null, "86.8", null, "1.4", null, "20.9", null, "1.5", null, "79.1", null, "1.5", null, "34.9", null, "1.5", null, "21.0", null, "1.8", null, "0.6", null, "0.3", null, "18.1", null, "1.2", null, "-999999999.0", "N", "-999999999.0", "N", "7.7", null, "1.2", null, "17.5", null, "1.3", null, "27.8", null, "1.6", null, "29.9", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "8.9", null, "1.3", null, "33.6", null, "2.4", null, "57.5", null, "2.4", null, "29023", null, "3899", null, "10123", null, "1998", null, "18900", null, "3289", null, "10079", null, "2302", null, "10687", null, "2457", null, "1869", null, "852", null, "8818", null, "2388", null, "8257", null, "2046", null, "13932", null, "2776", null, "7168", null, "1918", null, "6764", null, "2003", null, "739", null, "593", null, "6025", null, "1906", null, "0", null, "242", null, "15091", null, "2681", null, "2911", null, "1255", null, "3923", null, "1223", null, "1130", null, "583", null, "2793", null, "1137", null, "8257", null, "2046", null, "12763", null, "2406", null, "16260", null, "3008", null, "9905", null, "2341", null, "19118", null, "2931", null, "3398", null, "1368", null, "9122", null, "2546", null, "261", null, "327", null, "7064", null, "1704", null, "-999999999", "N", "-999999999", "N", "3106", null, "1235", null, "5931", null, "1489", null, "10480", null, "2304", null, "2293", null, "1030", null, "35067", null, "6152", null, "20766", null, "3516", null, "2624", null, "1157", null, "9556", null, "2189", null, "8586", null, "2316", null, "9.3", null, "1.2", null, "34.9", null, "6.0", null, "65.1", null, "6.0", null, "34.7", null, "6.4", null, "36.8", null, "6.3", null, "6.4", null, "2.8", null, "30.4", null, "6.6", null, "28.4", null, "6.4", null, "48.0", null, "6.6", null, "24.7", null, "5.8", null, "23.3", null, "5.7", null, "2.5", null, "2.0", null, "20.8", null, "5.6", null, "0.0", null, "0.8", null, "52.0", null, "6.6", null, "10.0", null, "4.0", null, "13.5", null, "3.9", null, "3.9", null, "2.0", null, "9.6", null, "3.6", null, "28.4", null, "6.4", null, "44.0", null, "6.5", null, "56.0", null, "6.5", null, "34.1", null, "6.1", null, "65.9", null, "6.1", null, "11.7", null, "4.2", null, "31.4", null, "6.7", null, "0.9", null, "1.1", null, "24.3", null, "5.5", null, "-999999999.0", "N", "-999999999.0", "N", "10.7", null, "4.1", null, "20.4", null, "5.2", null, "36.1", null, "6.7", null, "7.9", null, "3.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.6", null, "5.3", null, "46.0", null, "7.9", null, "41.3", null, "7.7", null, "283906", null, "7942", null, "81801", null, "5259", null, "202105", null, "7787", null, "114417", null, "5125", null, "42273", null, "4981", null, "12973", null, "2702", null, "29300", null, "4149", null, "127216", null, "5836", null, "73285", null, "5835", null, "49442", null, "4656", null, "23190", null, "3889", null, "4429", null, "1584", null, "18761", null, "3513", null, "653", null, "615", null, "210621", null, "6804", null, "64975", null, "3550", null, "19083", null, "2596", null, "8544", null, "1988", null, "10539", null, "1719", null, "126563", null, "5783", null, "28473", null, "3601", null, "255433", null, "7840", null, "55444", null, "5076", null, "228462", null, "6792", null, "105729", null, "5359", null, "56619", null, "5514", null, "1751", null, "826", null, "49622", null, "3529", null, "-999999999", "N", "-999999999", "N", "20978", null, "3588", null, "48698", null, "4298", null, "76639", null, "5320", null, "91217", null, "4682", null, "80106", null, "3156", null, "156690", null, "6982", null, "13234", null, "1820", null, "49993", null, "5058", null, "93463", null, "5754", null, "90.7", null, "1.2", null, "28.8", null, "1.7", null, "71.2", null, "1.7", null, "40.3", null, "1.6", null, "14.9", null, "1.6", null, "4.6", null, "0.9", null, "10.3", null, "1.3", null, "44.8", null, "1.8", null, "25.8", null, "1.8", null, "17.4", null, "1.6", null, "8.2", null, "1.3", null, "1.6", null, "0.5", null, "6.6", null, "1.2", null, "0.2", null, "0.2", null, "74.2", null, "1.8", null, "22.9", null, "1.2", null, "6.7", null, "0.9", null, "3.0", null, "0.7", null, "3.7", null, "0.6", null, "44.6", null, "1.7", null, "10.0", null, "1.2", null, "90.0", null, "1.2", null, "19.5", null, "1.6", null, "80.5", null, "1.6", null, "37.2", null, "1.6", null, "19.9", null, "1.8", null, "0.6", null, "0.3", null, "17.5", null, "1.3", null, "-999999999.0", "N", "-999999999.0", "N", "7.4", null, "1.2", null, "17.2", null, "1.4", null, "27.0", null, "1.8", null, "32.1", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "8.4", null, "1.2", null, "31.9", null, "2.7", null, "59.6", null, "2.6", null, "48", "07"], ["5001900US4808", "Congressional District 8 (119th Congress), Texas", "329729", null, "10003", null, "121173", null, "5048", null, "208556", null, "10056", null, "189343", null, "7776", null, "60932", null, "6691", null, "19966", null, "3161", null, "40966", null, "5211", null, "79454", null, "5628", null, "130774", null, "8340", null, "89001", null, "6261", null, "41120", null, "6095", null, "13627", null, "2825", null, "27493", null, "4629", null, "653", null, "551", null, "198955", null, "8001", null, "100342", null, "6289", null, "19812", null, "2888", null, "6339", null, "1563", null, "13473", null, "2562", null, "78801", null, "5731", null, "34289", null, "4929", null, "295440", null, "10441", null, "86965", null, "5534", null, "242764", null, "9889", null, "185393", null, "6484", null, "40257", null, "5512", null, "4095", null, "1407", null, "19263", null, "3033", null, "-999999999", "N", "-999999999", "N", "22713", null, "3451", null, "58008", null, "5201", null, "87447", null, "5772", null, "168750", null, "6402", null, "91806", null, "3070", null, "250275", null, "8705", null, "30011", null, "3008", null, "80360", null, "6120", null, "139904", null, "7623", null, "-888888888", "(X)", "-888888888", "(X)", "36.7", null, "1.7", null, "63.3", null, "1.7", null, "57.4", null, "1.9", null, "18.5", null, "1.9", null, "6.1", null, "0.9", null, "12.4", null, "1.5", null, "24.1", null, "1.5", null, "39.7", null, "2.0", null, "27.0", null, "1.6", null, "12.5", null, "1.8", null, "4.1", null, "0.8", null, "8.3", null, "1.4", null, "0.2", null, "0.2", null, "60.3", null, "2.0", null, "30.4", null, "1.9", null, "6.0", null, "0.9", null, "1.9", null, "0.5", null, "4.1", null, "0.8", null, "23.9", null, "1.5", null, "10.4", null, "1.5", null, "89.6", null, "1.5", null, "26.4", null, "1.6", null, "73.6", null, "1.6", null, "56.2", null, "1.6", null, "12.2", null, "1.5", null, "1.2", null, "0.4", null, "5.8", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "6.9", null, "1.0", null, "17.6", null, "1.5", null, "26.5", null, "1.6", null, "51.2", null, "1.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.0", null, "1.2", null, "32.1", null, "2.1", null, "55.9", null, "2.2", null, "24893", null, "3921", null, "9955", null, "1969", null, "14938", null, "3052", null, "9875", null, "2346", null, "10486", null, "2236", null, "2222", null, "1232", null, "8264", null, "1955", null, "4532", null, "1338", null, "15952", null, "3237", null, "7620", null, "2057", null, "8257", null, "2215", null, "2074", null, "1223", null, "6183", null, "1816", null, "75", null, "130", null, "8941", null, "1911", null, "2255", null, "940", null, "2229", null, "919", null, "148", null, "198", null, "2081", null, "881", null, "4457", null, "1317", null, "8127", null, "2228", null, "16766", null, "3122", null, "11825", null, "2704", null, "13068", null, "2847", null, "11570", null, "2328", null, "5067", null, "1542", null, "303", null, "454", null, "1750", null, "1411", null, "-999999999", "N", "-999999999", "N", "1148", null, "668", null, "5055", null, "1615", null, "7842", null, "1946", null, "9120", null, "1937", null, "50311", null, "15896", null, "20361", null, "3427", null, "2562", null, "738", null, "8700", null, "2203", null, "9099", null, "2719", null, "7.5", null, "1.2", null, "40.0", null, "6.1", null, "60.0", null, "6.1", null, "39.7", null, "6.8", null, "42.1", null, "6.4", null, "8.9", null, "4.5", null, "33.2", null, "6.7", null, "18.2", null, "4.6", null, "64.1", null, "6.4", null, "30.6", null, "5.9", null, "33.2", null, "7.1", null, "8.3", null, "4.5", null, "24.8", null, "6.6", null, "0.3", null, "0.5", null, "35.9", null, "6.4", null, "9.1", null, "3.8", null, "9.0", null, "3.6", null, "0.6", null, "0.8", null, "8.4", null, "3.4", null, "17.9", null, "4.5", null, "32.6", null, "7.1", null, "67.4", null, "7.1", null, "47.5", null, "7.9", null, "52.5", null, "7.9", null, "46.5", null, "7.4", null, "20.4", null, "5.4", null, "1.2", null, "1.8", null, "7.0", null, "5.3", null, "-999999999.0", "N", "-999999999.0", "N", "4.6", null, "2.7", null, "20.3", null, "5.4", null, "31.5", null, "5.9", null, "36.6", null, "6.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.6", null, "3.8", null, "42.7", null, "8.9", null, "44.7", null, "9.5", null, "304836", null, "10192", null, "111218", null, "5063", null, "193618", null, "9955", null, "179468", null, "7934", null, "50446", null, "6205", null, "17744", null, "2827", null, "32702", null, "4806", null, "74922", null, "5633", null, "114822", null, "8017", null, "81381", null, "6479", null, "32863", null, "5452", null, "11553", null, "2477", null, "21310", null, "4185", null, "578", null, "535", null, "190014", null, "7893", null, "98087", null, "6289", null, "17583", null, "2775", null, "6191", null, "1574", null, "11392", null, "2394", null, "74344", null, "5740", null, "26162", null, "4162", null, "278674", null, "10618", null, "75140", null, "5084", null, "229696", null, "9869", null, "173823", null, "6592", null, "35190", null, "5410", null, "3792", null, "1345", null, "17513", null, "3499", null, "-999999999", "N", "-999999999", "N", "21565", null, "3491", null, "52953", null, "4748", null, "79605", null, "5695", null, "159630", null, "6867", null, "95281", null, "3643", null, "229914", null, "8739", null, "27449", null, "3030", null, "71660", null, "5382", null, "130805", null, "7585", null, "92.5", null, "1.2", null, "36.5", null, "1.7", null, "63.5", null, "1.7", null, "58.9", null, "1.9", null, "16.5", null, "1.9", null, "5.8", null, "0.9", null, "10.7", null, "1.5", null, "24.6", null, "1.6", null, "37.7", null, "2.1", null, "26.7", null, "1.8", null, "10.8", null, "1.7", null, "3.8", null, "0.8", null, "7.0", null, "1.3", null, "0.2", null, "0.2", null, "62.3", null, "2.1", null, "32.2", null, "2.0", null, "5.8", null, "0.9", null, "2.0", null, "0.5", null, "3.7", null, "0.8", null, "24.4", null, "1.6", null, "8.6", null, "1.4", null, "91.4", null, "1.4", null, "24.6", null, "1.6", null, "75.4", null, "1.6", null, "57.0", null, "1.7", null, "11.5", null, "1.6", null, "1.2", null, "0.4", null, "5.7", null, "1.1", null, "-999999999.0", "N", "-999999999.0", "N", "7.1", null, "1.1", null, "17.4", null, "1.5", null, "26.1", null, "1.7", null, "52.4", null, "2.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.9", null, "1.3", null, "31.2", null, "2.1", null, "56.9", null, "2.2", null, "48", "08"], ["5001900US4809", "Congressional District 9 (119th Congress), Texas", "293613", null, "8953", null, "97195", null, "4714", null, "196418", null, "8158", null, "118611", null, "6176", null, "78653", null, "5915", null, "21349", null, "3925", null, "57304", null, "5126", null, "96349", null, "5473", null, "104923", null, "7603", null, "56123", null, "4944", null, "48615", null, "4866", null, "12534", null, "3012", null, "36081", null, "4096", null, "185", null, "299", null, "188690", null, "7118", null, "62488", null, "4165", null, "30038", null, "3255", null, "8815", null, "2203", null, "21223", null, "2821", null, "96164", null, "5500", null, "60511", null, "4888", null, "233102", null, "7775", null, "74621", null, "5411", null, "218992", null, "7990", null, "58286", null, "3668", null, "118674", null, "6878", null, "2588", null, "1233", null, "28086", null, "2673", null, "-999999999", "N", "-999999999", "N", "30368", null, "4424", null, "55335", null, "4673", null, "97451", null, "6829", null, "43512", null, "3433", null, "62248", null, "2298", null, "197264", null, "8016", null, "22818", null, "3196", null, "73287", null, "6357", null, "101159", null, "6376", null, "-888888888", "(X)", "-888888888", "(X)", "33.1", null, "1.5", null, "66.9", null, "1.5", null, "40.4", null, "1.8", null, "26.8", null, "1.7", null, "7.3", null, "1.3", null, "19.5", null, "1.5", null, "32.8", null, "1.7", null, "35.7", null, "2.1", null, "19.1", null, "1.5", null, "16.6", null, "1.5", null, "4.3", null, "1.0", null, "12.3", null, "1.2", null, "0.1", null, "0.1", null, "64.3", null, "2.1", null, "21.3", null, "1.4", null, "10.2", null, "1.1", null, "3.0", null, "0.8", null, "7.2", null, "0.9", null, "32.8", null, "1.7", null, "20.6", null, "1.5", null, "79.4", null, "1.5", null, "25.4", null, "1.6", null, "74.6", null, "1.6", null, "19.9", null, "1.2", null, "40.4", null, "1.8", null, "0.9", null, "0.4", null, "9.6", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "10.3", null, "1.5", null, "18.8", null, "1.5", null, "33.2", null, "2.1", null, "14.8", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.6", null, "1.6", null, "37.2", null, "2.7", null, "51.3", null, "2.6", null, "51807", null, "5450", null, "16477", null, "2405", null, "35330", null, "4974", null, "13540", null, "2558", null, "27094", null, "3720", null, "4797", null, "1623", null, "22297", null, "3613", null, "11173", null, "2333", null, "29689", null, "4315", null, "9513", null, "2273", null, "19991", null, "3484", null, "3426", null, "1374", null, "16565", null, "3278", null, "185", null, "299", null, "22118", null, "3206", null, "4027", null, "1237", null, "7103", null, "1732", null, "1371", null, "657", null, "5732", null, "1670", null, "10988", null, "2286", null, "24446", null, "3793", null, "27361", null, "3592", null, "23832", null, "3821", null, "27975", null, "4272", null, "5263", null, "1413", null, "27837", null, "4286", null, "222", null, "297", null, "1988", null, "755", null, "-999999999", "N", "-999999999", "N", "6536", null, "2003", null, "9920", null, "2123", null, "18347", null, "3217", null, "2499", null, "887", null, "28835", null, "2940", null, "40634", null, "4683", null, "8380", null, "2290", null, "20054", null, "3386", null, "12200", null, "2344", null, "17.6", null, "1.7", null, "31.8", null, "4.5", null, "68.2", null, "4.5", null, "26.1", null, "4.1", null, "52.3", null, "4.7", null, "9.3", null, "3.1", null, "43.0", null, "5.1", null, "21.6", null, "3.8", null, "57.3", null, "5.0", null, "18.4", null, "3.7", null, "38.6", null, "5.1", null, "6.6", null, "2.6", null, "32.0", null, "5.1", null, "0.4", null, "0.6", null, "42.7", null, "5.0", null, "7.8", null, "2.4", null, "13.7", null, "3.2", null, "2.6", null, "1.3", null, "11.1", null, "3.1", null, "21.2", null, "3.8", null, "47.2", null, "4.8", null, "52.8", null, "4.8", null, "46.0", null, "5.8", null, "54.0", null, "5.8", null, "10.2", null, "2.5", null, "53.7", null, "5.4", null, "0.4", null, "0.6", null, "3.8", null, "1.5", null, "-999999999.0", "N", "-999999999.0", "N", "12.6", null, "3.8", null, "19.1", null, "3.7", null, "35.4", null, "5.3", null, "4.8", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "20.6", null, "5.0", null, "49.4", null, "6.1", null, "30.0", null, "4.7", null, "241806", null, "8529", null, "80718", null, "4566", null, "161088", null, "7637", null, "105071", null, "6173", null, "51559", null, "4849", null, "16552", null, "3214", null, "35007", null, "3649", null, "85176", null, "5834", null, "75234", null, "6425", null, "46610", null, "4723", null, "28624", null, "4143", null, "9108", null, "2557", null, "19516", null, "2919", null, "0", null, "242", null, "166572", null, "7692", null, "58461", null, "3993", null, "22935", null, "3163", null, "7444", null, "2012", null, "15491", null, "2479", null, "85176", null, "5834", null, "36065", null, "4039", null, "205741", null, "7760", null, "50789", null, "3860", null, "191017", null, "7822", null, "53023", null, "3504", null, "90837", null, "6208", null, "2366", null, "1194", null, "26098", null, "2669", null, "-999999999", "N", "-999999999", "N", "23832", null, "3802", null, "45415", null, "4224", null, "79104", null, "5854", null, "41013", null, "3320", null, "71688", null, "3260", null, "156630", null, "7139", null, "14438", null, "2412", null, "53233", null, "5159", null, "88959", null, "5912", null, "82.4", null, "1.7", null, "33.4", null, "1.7", null, "66.6", null, "1.7", null, "43.5", null, "2.2", null, "21.3", null, "1.8", null, "6.8", null, "1.3", null, "14.5", null, "1.4", null, "35.2", null, "2.0", null, "31.1", null, "2.3", null, "19.3", null, "1.8", null, "11.8", null, "1.6", null, "3.8", null, "1.1", null, "8.1", null, "1.1", null, "0.0", null, "0.1", null, "68.9", null, "2.3", null, "24.2", null, "1.6", null, "9.5", null, "1.3", null, "3.1", null, "0.8", null, "6.4", null, "1.0", null, "35.2", null, "2.0", null, "14.9", null, "1.5", null, "85.1", null, "1.5", null, "21.0", null, "1.5", null, "79.0", null, "1.5", null, "21.9", null, "1.4", null, "37.6", null, "1.9", null, "1.0", null, "0.5", null, "10.8", null, "1.1", null, "-999999999.0", "N", "-999999999.0", "N", "9.9", null, "1.5", null, "18.8", null, "1.6", null, "32.7", null, "2.1", null, "17.0", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "9.2", null, "1.5", null, "34.0", null, "2.8", null, "56.8", null, "2.8", null, "48", "09"], ["5001900US4810", "Congressional District 10 (119th Congress), Texas", "313788", null, "5897", null, "119744", null, "4625", null, "194044", null, "4637", null, "168139", null, "6088", null, "45640", null, "4196", null, "13725", null, "2210", null, "31915", null, "3520", null, "100009", null, "6108", null, "100639", null, "4585", null, "73221", null, "4384", null, "26652", null, "3072", null, "8069", null, "1883", null, "18583", null, "2553", null, "766", null, "534", null, "213149", null, "6223", null, "94918", null, "5043", null, "18988", null, "2832", null, "5656", null, "1289", null, "13332", null, "2501", null, "99243", null, "6175", null, "40194", null, "4105", null, "273594", null, "6364", null, "83087", null, "5469", null, "230701", null, "6604", null, "208524", null, "5433", null, "23526", null, "2675", null, "-999999999", "N", "-999999999", "N", "17961", null, "2079", null, "-999999999", "N", "-999999999", "N", "16241", null, "2839", null, "46148", null, "3810", null, "64020", null, "3392", null, "193439", null, "5448", null, "89284", null, "3335", null, "213779", null, "6531", null, "30586", null, "2102", null, "65373", null, "5300", null, "117820", null, "5783", null, "-888888888", "(X)", "-888888888", "(X)", "38.2", null, "1.2", null, "61.8", null, "1.2", null, "53.6", null, "1.9", null, "14.5", null, "1.3", null, "4.4", null, "0.7", null, "10.2", null, "1.1", null, "31.9", null, "1.8", null, "32.1", null, "1.4", null, "23.3", null, "1.4", null, "8.5", null, "0.9", null, "2.6", null, "0.6", null, "5.9", null, "0.8", null, "0.2", null, "0.2", null, "67.9", null, "1.4", null, "30.2", null, "1.6", null, "6.1", null, "0.9", null, "1.8", null, "0.4", null, "4.2", null, "0.8", null, "31.6", null, "1.8", null, "12.8", null, "1.3", null, "87.2", null, "1.3", null, "26.5", null, "1.6", null, "73.5", null, "1.6", null, "66.5", null, "1.3", null, "7.5", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "5.7", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "5.2", null, "0.9", null, "14.7", null, "1.2", null, "20.4", null, "1.0", null, "61.6", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.3", null, "0.9", null, "30.6", null, "2.2", null, "55.1", null, "2.2", null, "21383", null, "3187", null, "6429", null, "1187", null, "14954", null, "2674", null, "7276", null, "2091", null, "9405", null, "1856", null, "2141", null, "921", null, "7264", null, "1745", null, "4702", null, "1375", null, "12803", null, "2669", null, "5245", null, "1874", null, "7386", null, "1854", null, "1964", null, "891", null, "5422", null, "1684", null, "172", null, "249", null, "8580", null, "1677", null, "2031", null, "801", null, "2019", null, "763", null, "177", null, "182", null, "1842", null, "720", null, "4530", null, "1360", null, "8530", null, "2251", null, "12853", null, "2477", null, "8956", null, "2009", null, "12427", null, "2134", null, "8622", null, "1871", null, "5213", null, "1435", null, "-999999999", "N", "-999999999", "N", "376", null, "361", null, "-999999999", "N", "-999999999", "N", "1726", null, "754", null, "5446", null, "1515", null, "7339", null, "1946", null, "7292", null, "1736", null, "38117", null, "12103", null, "16681", null, "2831", null, "3134", null, "1040", null, "6823", null, "1840", null, "6724", null, "1722", null, "6.8", null, "1.0", null, "30.1", null, "4.7", null, "69.9", null, "4.7", null, "34.0", null, "7.7", null, "44.0", null, "6.5", null, "10.0", null, "4.1", null, "34.0", null, "6.8", null, "22.0", null, "5.8", null, "59.9", null, "6.8", null, "24.5", null, "7.2", null, "34.5", null, "6.9", null, "9.2", null, "4.0", null, "25.4", null, "6.7", null, "0.8", null, "1.1", null, "40.1", null, "6.8", null, "9.5", null, "3.7", null, "9.4", null, "3.6", null, "0.8", null, "0.8", null, "8.6", null, "3.5", null, "21.2", null, "5.9", null, "39.9", null, "8.2", null, "60.1", null, "8.2", null, "41.9", null, "6.2", null, "58.1", null, "6.2", null, "40.3", null, "6.7", null, "24.4", null, "5.3", null, "-999999999.0", "N", "-999999999.0", "N", "1.8", null, "1.7", null, "-999999999.0", "N", "-999999999.0", "N", "8.1", null, "3.2", null, "25.5", null, "6.2", null, "34.3", null, "7.1", null, "34.1", null, "6.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.8", null, "6.1", null, "40.9", null, "7.6", null, "40.3", null, "7.5", null, "292405", null, "6278", null, "113315", null, "4515", null, "179090", null, "4923", null, "160863", null, "6126", null, "36235", null, "3725", null, "11584", null, "1974", null, "24651", null, "3070", null, "95307", null, "6162", null, "87836", null, "5056", null, "67976", null, "4520", null, "19266", null, "2618", null, "6105", null, "1598", null, "13161", null, "2036", null, "594", null, "526", null, "204569", null, "6264", null, "92887", null, "5067", null, "16969", null, "2647", null, "5479", null, "1237", null, "11490", null, "2313", null, "94713", null, "6192", null, "31664", null, "3225", null, "260741", null, "6228", null, "74131", null, "5285", null, "218274", null, "6477", null, "199902", null, "5324", null, "18313", null, "2672", null, "-999999999", "N", "-999999999", "N", "17585", null, "2073", null, "-999999999", "N", "-999999999", "N", "14515", null, "2880", null, "40702", null, "3714", null, "56681", null, "3685", null, "186147", null, "5422", null, "94527", null, "5006", null, "197098", null, "6899", null, "27452", null, "1992", null, "58550", null, "4695", null, "111096", null, "5841", null, "93.2", null, "1.0", null, "38.8", null, "1.2", null, "61.2", null, "1.2", null, "55.0", null, "1.9", null, "12.4", null, "1.2", null, "4.0", null, "0.7", null, "8.4", null, "1.0", null, "32.6", null, "1.9", null, "30.0", null, "1.6", null, "23.2", null, "1.5", null, "6.6", null, "0.9", null, "2.1", null, "0.5", null, "4.5", null, "0.7", null, "0.2", null, "0.2", null, "70.0", null, "1.6", null, "31.8", null, "1.7", null, "5.8", null, "0.9", null, "1.9", null, "0.4", null, "3.9", null, "0.8", null, "32.4", null, "2.0", null, "10.8", null, "1.1", null, "89.2", null, "1.1", null, "25.4", null, "1.7", null, "74.6", null, "1.7", null, "68.4", null, "1.4", null, "6.3", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "6.0", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "5.0", null, "1.0", null, "13.9", null, "1.3", null, "19.4", null, "1.2", null, "63.7", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.9", null, "1.0", null, "29.7", null, "2.1", null, "56.4", null, "2.1", null, "48", "10"], ["5001900US4811", "Congressional District 11 (119th Congress), Texas", "316597", null, "4458", null, "108140", null, "3344", null, "208457", null, "4522", null, "148639", null, "6177", null, "65921", null, "4986", null, "18589", null, "3279", null, "47332", null, "3640", null, "102037", null, "6081", null, "109676", null, "5786", null, "68188", null, "4745", null, "41061", null, "4475", null, "8758", null, "2110", null, "32303", null, "3553", null, "427", null, "254", null, "206921", null, "6897", null, "80451", null, "4566", null, "24860", null, "3306", null, "9831", null, "2309", null, "15029", null, "2449", null, "101610", null, "6071", null, "43868", null, "3926", null, "272729", null, "4760", null, "99243", null, "4949", null, "217354", null, "6169", null, "181586", null, "5547", null, "39550", null, "2749", null, "2300", null, "804", null, "5757", null, "830", null, "999", null, "656", null, "24187", null, "3194", null, "62218", null, "4261", null, "115559", null, "3427", null, "146615", null, "4277", null, "71363", null, "1865", null, "214560", null, "6322", null, "27422", null, "2386", null, "77878", null, "5159", null, "109260", null, "5500", null, "-888888888", "(X)", "-888888888", "(X)", "34.2", null, "1.0", null, "65.8", null, "1.0", null, "46.9", null, "1.9", null, "20.8", null, "1.5", null, "5.9", null, "1.0", null, "15.0", null, "1.1", null, "32.2", null, "1.8", null, "34.6", null, "1.8", null, "21.5", null, "1.5", null, "13.0", null, "1.4", null, "2.8", null, "0.7", null, "10.2", null, "1.1", null, "0.1", null, "0.1", null, "65.4", null, "1.8", null, "25.4", null, "1.4", null, "7.9", null, "1.0", null, "3.1", null, "0.7", null, "4.7", null, "0.8", null, "32.1", null, "1.8", null, "13.9", null, "1.2", null, "86.1", null, "1.2", null, "31.3", null, "1.6", null, "68.7", null, "1.6", null, "57.4", null, "1.5", null, "12.5", null, "0.8", null, "0.7", null, "0.3", null, "1.8", null, "0.3", null, "0.3", null, "0.2", null, "7.6", null, "1.0", null, "19.7", null, "1.4", null, "36.5", null, "1.0", null, "46.3", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.8", null, "1.0", null, "36.3", null, "2.1", null, "50.9", null, "2.2", null, "33380", null, "3389", null, "10651", null, "1596", null, "22729", null, "3153", null, "8112", null, "1812", null, "15596", null, "2819", null, "2295", null, "1354", null, "13301", null, "2721", null, "9672", null, "1775", null, "18668", null, "2650", null, "6453", null, "1655", null, "12019", null, "2537", null, "1465", null, "1118", null, "10554", null, "2551", null, "196", null, "202", null, "14712", null, "2298", null, "1659", null, "842", null, "3577", null, "1205", null, "830", null, "682", null, "2747", null, "1026", null, "9476", null, "1745", null, "16227", null, "2701", null, "17153", null, "2659", null, "13276", null, "1924", null, "20104", null, "2964", null, "14279", null, "2640", null, "8283", null, "2136", null, "315", null, "343", null, "729", null, "429", null, "559", null, "564", null, "1896", null, "852", null, "7319", null, "1756", null, "13084", null, "2226", null, "9250", null, "1880", null, "26541", null, "4905", null, "23708", null, "3010", null, "5035", null, "1663", null, "12353", null, "2408", null, "6320", null, "1679", null, "10.5", null, "1.1", null, "31.9", null, "4.7", null, "68.1", null, "4.7", null, "24.3", null, "5.2", null, "46.7", null, "6.3", null, "6.9", null, "4.0", null, "39.8", null, "6.7", null, "29.0", null, "4.8", null, "55.9", null, "5.4", null, "19.3", null, "5.0", null, "36.0", null, "6.0", null, "4.4", null, "3.3", null, "31.6", null, "6.5", null, "0.6", null, "0.6", null, "44.1", null, "5.4", null, "5.0", null, "2.4", null, "10.7", null, "3.5", null, "2.5", null, "2.0", null, "8.2", null, "3.0", null, "28.4", null, "4.7", null, "48.6", null, "6.2", null, "51.4", null, "6.2", null, "39.8", null, "5.1", null, "60.2", null, "5.1", null, "42.8", null, "6.3", null, "24.8", null, "5.6", null, "0.9", null, "1.0", null, "2.2", null, "1.3", null, "1.7", null, "1.7", null, "5.7", null, "2.6", null, "21.9", null, "5.0", null, "39.2", null, "5.5", null, "27.7", null, "5.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "21.2", null, "6.4", null, "52.1", null, "7.7", null, "26.7", null, "6.4", null, "283217", null, "5117", null, "97489", null, "3306", null, "185728", null, "4728", null, "140527", null, "5840", null, "50325", null, "4478", null, "16294", null, "3154", null, "34031", null, "3454", null, "92365", null, "5447", null, "91008", null, "5472", null, "61735", null, "4557", null, "29042", null, "4016", null, "7293", null, "2080", null, "21749", null, "3414", null, "231", null, "165", null, "192209", null, "6480", null, "78792", null, "4480", null, "21283", null, "2998", null, "9001", null, "2118", null, "12282", null, "2112", null, "92134", null, "5455", null, "27641", null, "3094", null, "255576", null, "5108", null, "85967", null, "4578", null, "197250", null, "6652", null, "167307", null, "5430", null, "31267", null, "2744", null, "1985", null, "743", null, "5028", null, "987", null, "440", null, "377", null, "22291", null, "3261", null, "54899", null, "4352", null, "102475", null, "4160", null, "137365", null, "4284", null, "77414", null, "3062", null, "190852", null, "5945", null, "22387", null, "1793", null, "65525", null, "4893", null, "102940", null, "5105", null, "89.5", null, "1.1", null, "34.4", null, "1.1", null, "65.6", null, "1.1", null, "49.6", null, "2.0", null, "17.8", null, "1.5", null, "5.8", null, "1.1", null, "12.0", null, "1.2", null, "32.6", null, "1.8", null, "32.1", null, "1.9", null, "21.8", null, "1.6", null, "10.3", null, "1.4", null, "2.6", null, "0.7", null, "7.7", null, "1.2", null, "0.1", null, "0.1", null, "67.9", null, "1.9", null, "27.8", null, "1.5", null, "7.5", null, "1.0", null, "3.2", null, "0.7", null, "4.3", null, "0.7", null, "32.5", null, "1.8", null, "9.8", null, "1.1", null, "90.2", null, "1.1", null, "30.4", null, "1.7", null, "69.6", null, "1.7", null, "59.1", null, "1.6", null, "11.0", null, "0.9", null, "0.7", null, "0.3", null, "1.8", null, "0.3", null, "0.2", null, "0.1", null, "7.9", null, "1.2", null, "19.4", null, "1.5", null, "36.2", null, "1.3", null, "48.5", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.7", null, "1.0", null, "34.3", null, "2.1", null, "53.9", null, "2.2", null, "48", "11"], ["5001900US4812", "Congressional District 12 (119th Congress), Texas", "313967", null, "6376", null, "108009", null, "4978", null, "205958", null, "6891", null, "151398", null, "5450", null, "49076", null, "5209", null, "13589", null, "2576", null, "35487", null, "4509", null, "113493", null, "6913", null, "97423", null, "6279", null, "68831", null, "4875", null, "27443", null, "3756", null, "7333", null, "2018", null, "20110", null, "3265", null, "1149", null, "875", null, "216544", null, "7742", null, "82567", null, "4818", null, "21633", null, "3023", null, "6256", null, "1431", null, "15377", null, "2559", null, "112344", null, "6975", null, "38558", null, "5012", null, "275409", null, "7292", null, "76553", null, "4651", null, "237414", null, "6321", null, "204414", null, "5896", null, "42714", null, "4358", null, "1939", null, "831", null, "11793", null, "1947", null, "-999999999", "N", "-999999999", "N", "14414", null, "2272", null, "38572", null, "3840", null, "58813", null, "4137", null, "187941", null, "5455", null, "90319", null, "3877", null, "200474", null, "6458", null, "21483", null, "2455", null, "57046", null, "4371", null, "121945", null, "6317", null, "-888888888", "(X)", "-888888888", "(X)", "34.4", null, "1.5", null, "65.6", null, "1.5", null, "48.2", null, "1.8", null, "15.6", null, "1.6", null, "4.3", null, "0.8", null, "11.3", null, "1.4", null, "36.1", null, "1.9", null, "31.0", null, "1.9", null, "21.9", null, "1.5", null, "8.7", null, "1.2", null, "2.3", null, "0.6", null, "6.4", null, "1.0", null, "0.4", null, "0.3", null, "69.0", null, "1.9", null, "26.3", null, "1.6", null, "6.9", null, "0.9", null, "2.0", null, "0.4", null, "4.9", null, "0.8", null, "35.8", null, "1.9", null, "12.3", null, "1.6", null, "87.7", null, "1.6", null, "24.4", null, "1.4", null, "75.6", null, "1.4", null, "65.1", null, "1.5", null, "13.6", null, "1.3", null, "0.6", null, "0.3", null, "3.8", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "4.6", null, "0.7", null, "12.3", null, "1.2", null, "18.7", null, "1.3", null, "59.9", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.7", null, "1.2", null, "28.5", null, "2.1", null, "60.8", null, "2.1", null, "21928", null, "3257", null, "8052", null, "1793", null, "13876", null, "2721", null, "6013", null, "1630", null, "7996", null, "2138", null, "1825", null, "1124", null, "6171", null, "1688", null, "7919", null, "1838", null, "11473", null, "2279", null, "5057", null, "1563", null, "5781", null, "1635", null, "1047", null, "805", null, "4734", null, "1440", null, "635", null, "755", null, "10455", null, "2152", null, "956", null, "486", null, "2215", null, "1131", null, "778", null, "540", null, "1437", null, "955", null, "7284", null, "1729", null, "10092", null, "2291", null, "11836", null, "2465", null, "9641", null, "2134", null, "12287", null, "2710", null, "8922", null, "1918", null, "5659", null, "1758", null, "138", null, "148", null, "846", null, "574", null, "-999999999", "N", "-999999999", "N", "1224", null, "741", null, "5139", null, "1648", null, "6651", null, "1614", null, "7897", null, "1847", null, "30880", null, "8527", null, "14009", null, "2598", null, "2835", null, "1211", null, "5149", null, "1573", null, "6025", null, "1955", null, "7.0", null, "1.0", null, "36.7", null, "6.9", null, "63.3", null, "6.9", null, "27.4", null, "6.6", null, "36.5", null, "7.6", null, "8.3", null, "4.7", null, "28.1", null, "6.7", null, "36.1", null, "6.7", null, "52.3", null, "6.8", null, "23.1", null, "6.5", null, "26.4", null, "6.2", null, "4.8", null, "3.5", null, "21.6", null, "6.0", null, "2.9", null, "3.4", null, "47.7", null, "6.8", null, "4.4", null, "2.2", null, "10.1", null, "4.8", null, "3.5", null, "2.3", null, "6.6", null, "4.2", null, "33.2", null, "6.5", null, "46.0", null, "7.9", null, "54.0", null, "7.9", null, "44.0", null, "8.1", null, "56.0", null, "8.1", null, "40.7", null, "6.6", null, "25.8", null, "6.4", null, "0.6", null, "0.7", null, "3.9", null, "2.7", null, "-999999999.0", "N", "-999999999.0", "N", "5.6", null, "3.3", null, "23.4", null, "6.8", null, "30.3", null, "6.0", null, "36.0", null, "6.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "20.2", null, "8.3", null, "36.8", null, "9.4", null, "43.0", null, "10.4", null, "292039", null, "6768", null, "99957", null, "4491", null, "192082", null, "6857", null, "145385", null, "5099", null, "41080", null, "4656", null, "11764", null, "2294", null, "29316", null, "4116", null, "105574", null, "7133", null, "85950", null, "5514", null, "63774", null, "4386", null, "21662", null, "3336", null, "6286", null, "1769", null, "15376", null, "2993", null, "514", null, "468", null, "206089", null, "7825", null, "81611", null, "4722", null, "19418", null, "2784", null, "5478", null, "1297", null, "13940", null, "2422", null, "105060", null, "7089", null, "28466", null, "3973", null, "263573", null, "7314", null, "66912", null, "4527", null, "225127", null, "6292", null, "195492", null, "5827", null, "37055", null, "4439", null, "1801", null, "827", null, "10947", null, "1926", null, "-999999999", "N", "-999999999", "N", "13190", null, "2459", null, "33433", null, "3694", null, "52162", null, "4026", null, "180044", null, "5442", null, "94779", null, "3623", null, "186465", null, "5954", null, "18648", null, "2292", null, "51897", null, "4197", null, "115920", null, "5893", null, "93.0", null, "1.0", null, "34.2", null, "1.5", null, "65.8", null, "1.5", null, "49.8", null, "1.8", null, "14.1", null, "1.6", null, "4.0", null, "0.8", null, "10.0", null, "1.4", null, "36.2", null, "2.0", null, "29.4", null, "1.9", null, "21.8", null, "1.5", null, "7.4", null, "1.1", null, "2.2", null, "0.6", null, "5.3", null, "1.0", null, "0.2", null, "0.2", null, "70.6", null, "1.9", null, "27.9", null, "1.7", null, "6.6", null, "0.9", null, "1.9", null, "0.4", null, "4.8", null, "0.8", null, "36.0", null, "2.0", null, "9.7", null, "1.3", null, "90.3", null, "1.3", null, "22.9", null, "1.4", null, "77.1", null, "1.4", null, "66.9", null, "1.6", null, "12.7", null, "1.4", null, "0.6", null, "0.3", null, "3.7", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "4.5", null, "0.8", null, "11.4", null, "1.2", null, "17.9", null, "1.3", null, "61.7", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.0", null, "1.2", null, "27.8", null, "2.1", null, "62.2", null, "2.2", null, "48", "12"], ["5001900US4813", "Congressional District 13 (119th Congress), Texas", "301790", null, "4507", null, "115270", null, "3185", null, "186520", null, "4956", null, "140999", null, "5171", null, "54546", null, "3859", null, "16681", null, "2556", null, "37865", null, "3234", null, "106245", null, "4999", null, "96224", null, "4382", null, "60781", null, "3537", null, "34463", null, "3409", null, "10358", null, "2148", null, "24105", null, "2950", null, "980", null, "712", null, "205566", null, "5935", null, "80218", null, "4080", null, "20083", null, "2287", null, "6323", null, "1423", null, "13760", null, "1896", null, "105265", null, "4994", null, "46835", null, "3937", null, "254955", null, "5645", null, "86506", null, "4289", null, "215284", null, "6052", null, "214979", null, "5146", null, "18492", null, "2505", null, "3254", null, "941", null, "5488", null, "1227", null, "-999999999", "N", "-999999999", "N", "15168", null, "2231", null, "44036", null, "3114", null, "70430", null, "3117", null, "195104", null, "4782", null, "69873", null, "2417", null, "195545", null, "4575", null, "24606", null, "1949", null, "65241", null, "4933", null, "105698", null, "4763", null, "-888888888", "(X)", "-888888888", "(X)", "38.2", null, "1.1", null, "61.8", null, "1.1", null, "46.7", null, "1.7", null, "18.1", null, "1.3", null, "5.5", null, "0.8", null, "12.5", null, "1.1", null, "35.2", null, "1.4", null, "31.9", null, "1.5", null, "20.1", null, "1.2", null, "11.4", null, "1.1", null, "3.4", null, "0.7", null, "8.0", null, "1.0", null, "0.3", null, "0.2", null, "68.1", null, "1.5", null, "26.6", null, "1.3", null, "6.7", null, "0.8", null, "2.1", null, "0.5", null, "4.6", null, "0.6", null, "34.9", null, "1.4", null, "15.5", null, "1.3", null, "84.5", null, "1.3", null, "28.7", null, "1.5", null, "71.3", null, "1.5", null, "71.2", null, "1.3", null, "6.1", null, "0.8", null, "1.1", null, "0.3", null, "1.8", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "5.0", null, "0.7", null, "14.6", null, "1.0", null, "23.3", null, "1.0", null, "64.6", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.6", null, "1.0", null, "33.4", null, "2.3", null, "54.1", null, "2.2", null, "31095", null, "3325", null, "10759", null, "1821", null, "20336", null, "2637", null, "7062", null, "1381", null, "14296", null, "2403", null, "2628", null, "871", null, "11668", null, "2145", null, "9737", null, "1971", null, "17156", null, "2452", null, "4954", null, "1333", null, "12139", null, "2139", null, "2140", null, "890", null, "9999", null, "2053", null, "63", null, "102", null, "13939", null, "2369", null, "2108", null, "707", null, "2157", null, "925", null, "488", null, "410", null, "1669", null, "766", null, "9674", null, "1967", null, "16509", null, "2648", null, "14586", null, "2225", null, "14790", null, "2175", null, "16305", null, "2649", null, "18283", null, "2455", null, "3643", null, "1159", null, "384", null, "284", null, "767", null, "642", null, "-999999999", "N", "-999999999", "N", "2676", null, "986", null, "5342", null, "1717", null, "10655", null, "1721", null, "14577", null, "2273", null, "26786", null, "5688", null, "21358", null, "2770", null, "2799", null, "798", null, "12116", null, "2591", null, "6443", null, "1095", null, "10.3", null, "1.1", null, "34.6", null, "4.6", null, "65.4", null, "4.6", null, "22.7", null, "4.0", null, "46.0", null, "5.7", null, "8.5", null, "2.7", null, "37.5", null, "5.3", null, "31.3", null, "5.3", null, "55.2", null, "5.6", null, "15.9", null, "3.9", null, "39.0", null, "5.7", null, "6.9", null, "2.9", null, "32.2", null, "5.6", null, "0.2", null, "0.3", null, "44.8", null, "5.6", null, "6.8", null, "2.3", null, "6.9", null, "2.7", null, "1.6", null, "1.3", null, "5.4", null, "2.3", null, "31.1", null, "5.3", null, "53.1", null, "5.7", null, "46.9", null, "5.7", null, "47.6", null, "5.6", null, "52.4", null, "5.6", null, "58.8", null, "6.1", null, "11.7", null, "3.4", null, "1.2", null, "0.9", null, "2.5", null, "2.0", null, "-999999999.0", "N", "-999999999.0", "N", "8.6", null, "3.1", null, "17.2", null, "5.0", null, "34.3", null, "4.8", null, "46.9", null, "5.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.1", null, "3.7", null, "56.7", null, "6.7", null, "30.2", null, "5.8", null, "270695", null, "5254", null, "104511", null, "3089", null, "166184", null, "5076", null, "133937", null, "5041", null, "40250", null, "3352", null, "14053", null, "2391", null, "26197", null, "2735", null, "96508", null, "4689", null, "79068", null, "4122", null, "55827", null, "3384", null, "22324", null, "2840", null, "8218", null, "1898", null, "14106", null, "2432", null, "917", null, "702", null, "191627", null, "5857", null, "78110", null, "3980", null, "17926", null, "2139", null, "5835", null, "1347", null, "12091", null, "1766", null, "95591", null, "4671", null, "30326", null, "3411", null, "240369", null, "5568", null, "71716", null, "3895", null, "198979", null, "5995", null, "196696", null, "5251", null, "14849", null, "2614", null, "2870", null, "913", null, "4721", null, "1070", null, "-999999999", "N", "-999999999", "N", "12492", null, "2153", null, "38694", null, "3244", null, "59775", null, "3312", null, "180527", null, "4806", null, "75513", null, "3060", null, "174187", null, "4861", null, "21807", null, "1775", null, "53125", null, "4088", null, "99255", null, "4735", null, "89.7", null, "1.1", null, "38.6", null, "1.1", null, "61.4", null, "1.1", null, "49.5", null, "1.7", null, "14.9", null, "1.2", null, "5.2", null, "0.9", null, "9.7", null, "1.0", null, "35.7", null, "1.5", null, "29.2", null, "1.5", null, "20.6", null, "1.3", null, "8.2", null, "1.0", null, "3.0", null, "0.7", null, "5.2", null, "0.9", null, "0.3", null, "0.3", null, "70.8", null, "1.5", null, "28.9", null, "1.4", null, "6.6", null, "0.8", null, "2.2", null, "0.5", null, "4.5", null, "0.7", null, "35.3", null, "1.5", null, "11.2", null, "1.2", null, "88.8", null, "1.2", null, "26.5", null, "1.4", null, "73.5", null, "1.4", null, "72.7", null, "1.5", null, "5.5", null, "0.9", null, "1.1", null, "0.3", null, "1.7", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "4.6", null, "0.8", null, "14.3", null, "1.1", null, "22.1", null, "1.2", null, "66.7", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.5", null, "1.0", null, "30.5", null, "2.2", null, "57.0", null, "2.1", null, "48", "13"], ["5001900US4814", "Congressional District 14 (119th Congress), Texas", "295985", null, "4910", null, "125278", null, "3568", null, "170707", null, "4889", null, "151002", null, "5255", null, "53356", null, "4536", null, "15657", null, "2701", null, "37699", null, "3869", null, "91627", null, "5185", null, "97463", null, "4921", null, "65417", null, "4535", null, "31209", null, "3904", null, "8232", null, "2210", null, "22977", null, "3321", null, "837", null, "550", null, "198522", null, "5738", null, "85585", null, "4111", null, "22147", null, "2529", null, "7425", null, "1644", null, "14722", null, "2121", null, "90790", null, "5186", null, "45545", null, "4156", null, "250440", null, "5144", null, "92130", null, "5056", null, "203855", null, "5584", null, "182694", null, "4503", null, "45161", null, "3285", null, "1512", null, "826", null, "8807", null, "1319", null, "-999999999", "N", "-999999999", "N", "19316", null, "2798", null, "38371", null, "3187", null, "65696", null, "3436", null, "168010", null, "4257", null, "77652", null, "2799", null, "204358", null, "5015", null, "29620", null, "2357", null, "69165", null, "4989", null, "105573", null, "4933", null, "-888888888", "(X)", "-888888888", "(X)", "42.3", null, "1.1", null, "57.7", null, "1.1", null, "51.0", null, "1.8", null, "18.0", null, "1.5", null, "5.3", null, "0.9", null, "12.7", null, "1.3", null, "31.0", null, "1.6", null, "32.9", null, "1.6", null, "22.1", null, "1.5", null, "10.5", null, "1.3", null, "2.8", null, "0.7", null, "7.8", null, "1.1", null, "0.3", null, "0.2", null, "67.1", null, "1.6", null, "28.9", null, "1.4", null, "7.5", null, "0.9", null, "2.5", null, "0.6", null, "5.0", null, "0.7", null, "30.7", null, "1.6", null, "15.4", null, "1.3", null, "84.6", null, "1.3", null, "31.1", null, "1.6", null, "68.9", null, "1.6", null, "61.7", null, "1.3", null, "15.3", null, "1.0", null, "0.5", null, "0.3", null, "3.0", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "6.5", null, "0.9", null, "13.0", null, "1.1", null, "22.2", null, "1.1", null, "56.8", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.5", null, "1.2", null, "33.8", null, "2.1", null, "51.7", null, "2.2", null, "32668", null, "3378", null, "11171", null, "1769", null, "21497", null, "2840", null, "7094", null, "1606", null, "13920", null, "2452", null, "3455", null, "1314", null, "10465", null, "2231", null, "11654", null, "2812", null, "16211", null, "2622", null, "5214", null, "1493", null, "10997", null, "2324", null, "2736", null, "1173", null, "8261", null, "2066", null, "0", null, "242", null, "16457", null, "3011", null, "1880", null, "724", null, "2923", null, "801", null, "719", null, "510", null, "2204", null, "658", null, "11654", null, "2812", null, "17996", null, "2902", null, "14672", null, "2207", null, "15944", null, "2822", null, "16724", null, "2701", null, "13012", null, "2321", null, "12074", null, "2241", null, "340", null, "379", null, "1036", null, "696", null, "-999999999", "N", "-999999999", "N", "1803", null, "751", null, "4347", null, "1427", null, "7062", null, "1819", null, "11350", null, "2246", null, "27730", null, "4163", null, "21014", null, "2752", null, "4269", null, "1217", null, "10555", null, "2214", null, "6190", null, "1590", null, "11.0", null, "1.1", null, "34.2", null, "4.6", null, "65.8", null, "4.6", null, "21.7", null, "4.6", null, "42.6", null, "6.8", null, "10.6", null, "3.9", null, "32.0", null, "6.6", null, "35.7", null, "7.0", null, "49.6", null, "6.9", null, "16.0", null, "4.4", null, "33.7", null, "6.6", null, "8.4", null, "3.5", null, "25.3", null, "6.1", null, "0.0", null, "0.7", null, "50.4", null, "6.9", null, "5.8", null, "2.2", null, "8.9", null, "2.4", null, "2.2", null, "1.5", null, "6.7", null, "2.1", null, "35.7", null, "7.0", null, "55.1", null, "5.9", null, "44.9", null, "5.9", null, "48.8", null, "6.7", null, "51.2", null, "6.7", null, "39.8", null, "6.2", null, "37.0", null, "5.6", null, "1.0", null, "1.2", null, "3.2", null, "2.1", null, "-999999999.0", "N", "-999999999.0", "N", "5.5", null, "2.3", null, "13.3", null, "4.0", null, "21.6", null, "5.2", null, "34.7", null, "6.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "20.3", null, "5.1", null, "50.2", null, "7.2", null, "29.5", null, "7.1", null, "263317", null, "5176", null, "114107", null, "3504", null, "149210", null, "4800", null, "143908", null, "5307", null, "39436", null, "3515", null, "12202", null, "2520", null, "27234", null, "3079", null, "79973", null, "4665", null, "81252", null, "4616", null, "60203", null, "4361", null, "20212", null, "2705", null, "5496", null, "1937", null, "14716", null, "2304", null, "837", null, "550", null, "182065", null, "5566", null, "83705", null, "4138", null, "19224", null, "2280", null, "6706", null, "1584", null, "12518", null, "1997", null, "79136", null, "4598", null, "27549", null, "3094", null, "235768", null, "5331", null, "76186", null, "4177", null, "187131", null, "5528", null, "169682", null, "4144", null, "33087", null, "3385", null, "1172", null, "671", null, "7771", null, "1437", null, "-999999999", "N", "-999999999", "N", "17513", null, "2739", null, "34024", null, "2876", null, "58634", null, "3271", null, "156660", null, "3825", null, "84841", null, "2894", null, "183344", null, "5080", null, "25351", null, "2070", null, "58610", null, "4397", null, "99383", null, "4864", null, "89.0", null, "1.1", null, "43.3", null, "1.2", null, "56.7", null, "1.2", null, "54.7", null, "1.8", null, "15.0", null, "1.3", null, "4.6", null, "1.0", null, "10.3", null, "1.1", null, "30.4", null, "1.6", null, "30.9", null, "1.6", null, "22.9", null, "1.6", null, "7.7", null, "1.0", null, "2.1", null, "0.7", null, "5.6", null, "0.9", null, "0.3", null, "0.2", null, "69.1", null, "1.6", null, "31.8", null, "1.5", null, "7.3", null, "0.9", null, "2.5", null, "0.6", null, "4.8", null, "0.7", null, "30.1", null, "1.6", null, "10.5", null, "1.1", null, "89.5", null, "1.1", null, "28.9", null, "1.5", null, "71.1", null, "1.5", null, "64.4", null, "1.5", null, "12.6", null, "1.2", null, "0.4", null, "0.3", null, "3.0", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "6.7", null, "1.0", null, "12.9", null, "1.1", null, "22.3", null, "1.1", null, "59.5", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.8", null, "1.1", null, "32.0", null, "2.1", null, "54.2", null, "2.3", null, "48", "14"], ["5001900US4815", "Congressional District 15 (119th Congress), Texas", "261920", null, "4726", null, "102915", null, "3983", null, "159005", null, "4990", null, "131224", null, "5187", null, "66224", null, "4182", null, "17309", null, "2253", null, "48915", null, "3208", null, "64472", null, "5276", null, "105896", null, "4768", null, "63990", null, "4010", null, "41491", null, "3931", null, "9502", null, "1985", null, "31989", null, "3061", null, "415", null, "289", null, "156024", null, "5583", null, "67234", null, "4147", null, "24733", null, "2480", null, "7807", null, "1664", null, "16926", null, "2081", null, "64057", null, "5267", null, "52922", null, "4256", null, "208998", null, "5196", null, "84170", null, "4283", null, "177750", null, "5442", null, "93953", null, "4771", null, "3422", null, "1030", null, "-999999999", "N", "-999999999", "N", "3274", null, "865", null, "-999999999", "N", "-999999999", "N", "26721", null, "2885", null, "133141", null, "5021", null, "201638", null, "4465", null, "51258", null, "2500", null, "62554", null, "2493", null, "197448", null, "4888", null, "26211", null, "2521", null, "71902", null, "4185", null, "99335", null, "4907", null, "-888888888", "(X)", "-888888888", "(X)", "39.3", null, "1.4", null, "60.7", null, "1.4", null, "50.1", null, "1.9", null, "25.3", null, "1.6", null, "6.6", null, "0.9", null, "18.7", null, "1.2", null, "24.6", null, "1.8", null, "40.4", null, "1.7", null, "24.4", null, "1.5", null, "15.8", null, "1.5", null, "3.6", null, "0.8", null, "12.2", null, "1.1", null, "0.2", null, "0.1", null, "59.6", null, "1.7", null, "25.7", null, "1.6", null, "9.4", null, "1.0", null, "3.0", null, "0.6", null, "6.5", null, "0.8", null, "24.5", null, "1.8", null, "20.2", null, "1.5", null, "79.8", null, "1.5", null, "32.1", null, "1.6", null, "67.9", null, "1.6", null, "35.9", null, "1.7", null, "1.3", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "1.3", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "10.2", null, "1.1", null, "50.8", null, "1.8", null, "77.0", null, "0.9", null, "19.6", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.3", null, "1.2", null, "36.4", null, "2.0", null, "50.3", null, "2.1", null, "55480", null, "3867", null, "23321", null, "2435", null, "32159", null, "3356", null, "20472", null, "2762", null, "25419", null, "3147", null, "6349", null, "1487", null, "19070", null, "2442", null, "9589", null, "1775", null, "34489", null, "3430", null, "14283", null, "2380", null, "20065", null, "2863", null, "4029", null, "1300", null, "16036", null, "2277", null, "141", null, "219", null, "20991", null, "2227", null, "6189", null, "1367", null, "5354", null, "1333", null, "2320", null, "941", null, "3034", null, "862", null, "9448", null, "1771", null, "27494", null, "2926", null, "27986", null, "3080", null, "26894", null, "2559", null, "28586", null, "2792", null, "12660", null, "2237", null, "696", null, "639", null, "-999999999", "N", "-999999999", "N", "365", null, "505", null, "-999999999", "N", "-999999999", "N", "6303", null, "1425", null, "35312", null, "3253", null, "49242", null, "3801", null, "4682", null, "1443", null, "28381", null, "2094", null, "45891", null, "3962", null, "8164", null, "1523", null, "22545", null, "2578", null, "15182", null, "2163", null, "21.2", null, "1.4", null, "42.0", null, "3.9", null, "58.0", null, "3.9", null, "36.9", null, "4.2", null, "45.8", null, "4.3", null, "11.4", null, "2.4", null, "34.4", null, "3.6", null, "17.3", null, "3.2", null, "62.2", null, "3.6", null, "25.7", null, "3.8", null, "36.2", null, "4.3", null, "7.3", null, "2.2", null, "28.9", null, "3.5", null, "0.3", null, "0.4", null, "37.8", null, "3.6", null, "11.2", null, "2.4", null, "9.7", null, "2.3", null, "4.2", null, "1.6", null, "5.5", null, "1.5", null, "17.0", null, "3.2", null, "49.6", null, "4.1", null, "50.4", null, "4.1", null, "48.5", null, "3.4", null, "51.5", null, "3.4", null, "22.8", null, "3.6", null, "1.3", null, "1.2", null, "-999999999.0", "N", "-999999999.0", "N", "0.7", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "11.4", null, "2.5", null, "63.6", null, "3.7", null, "88.8", null, "2.8", null, "8.4", null, "2.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.8", null, "2.6", null, "49.1", null, "4.2", null, "33.1", null, "3.8", null, "206440", null, "4996", null, "79594", null, "3650", null, "126846", null, "5338", null, "110752", null, "5092", null, "40805", null, "3713", null, "10960", null, "1831", null, "29845", null, "2872", null, "54883", null, "4895", null, "71407", null, "4086", null, "49707", null, "3473", null, "21426", null, "3075", null, "5473", null, "1377", null, "15953", null, "2738", null, "274", null, "190", null, "135033", null, "5195", null, "61045", null, "4059", null, "19379", null, "2265", null, "5487", null, "1405", null, "13892", null, "1850", null, "54609", null, "4920", null, "25428", null, "2864", null, "181012", null, "5000", null, "57276", null, "3746", null, "149164", null, "5410", null, "81293", null, "4525", null, "2726", null, "861", null, "-999999999", "N", "-999999999", "N", "2909", null, "895", null, "-999999999", "N", "-999999999", "N", "20418", null, "2435", null, "97829", null, "5019", null, "152396", null, "4855", null, "46576", null, "2385", null, "71997", null, "2542", null, "151557", null, "5071", null, "18047", null, "2136", null, "49357", null, "3547", null, "84153", null, "4875", null, "78.8", null, "1.4", null, "38.6", null, "1.8", null, "61.4", null, "1.8", null, "53.6", null, "2.3", null, "19.8", null, "1.8", null, "5.3", null, "0.9", null, "14.5", null, "1.4", null, "26.6", null, "2.1", null, "34.6", null, "1.8", null, "24.1", null, "1.7", null, "10.4", null, "1.4", null, "2.7", null, "0.7", null, "7.7", null, "1.3", null, "0.1", null, "0.1", null, "65.4", null, "1.8", null, "29.6", null, "1.8", null, "9.4", null, "1.1", null, "2.7", null, "0.7", null, "6.7", null, "0.9", null, "26.5", null, "2.2", null, "12.3", null, "1.3", null, "87.7", null, "1.3", null, "27.7", null, "1.8", null, "72.3", null, "1.8", null, "39.4", null, "1.9", null, "1.3", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "1.4", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "9.9", null, "1.2", null, "47.4", null, "2.1", null, "73.8", null, "1.2", null, "22.6", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.9", null, "1.3", null, "32.6", null, "2.3", null, "55.5", null, "2.5", null, "48", "15"], ["5001900US4816", "Congressional District 16 (119th Congress), Texas", "274795", null, "3828", null, "105732", null, "3205", null, "169063", null, "4147", null, "122827", null, "5133", null, "71896", null, "4867", null, "17850", null, "2901", null, "54046", null, "4339", null, "80072", null, "5223", null, "95135", null, "4859", null, "55385", null, "4035", null, "39711", null, "4252", null, "7479", null, "2138", null, "32232", null, "3822", null, "39", null, "66", null, "179660", null, "5950", null, "67442", null, "4228", null, "32185", null, "3488", null, "10371", null, "1955", null, "21814", null, "2660", null, "80033", null, "5223", null, "50842", null, "4386", null, "223953", null, "4869", null, "82321", null, "3585", null, "192474", null, "4665", null, "89901", null, "3964", null, "9953", null, "1910", null, "1866", null, "820", null, "4147", null, "1059", null, "166", null, "54", null, "53403", null, "4371", null, "115359", null, "4936", null, "218820", null, "4417", null, "39338", null, "2336", null, "60456", null, "2724", null, "194723", null, "5081", null, "25472", null, "2545", null, "68572", null, "5936", null, "100679", null, "5113", null, "-888888888", "(X)", "-888888888", "(X)", "38.5", null, "1.1", null, "61.5", null, "1.1", null, "44.7", null, "1.8", null, "26.2", null, "1.8", null, "6.5", null, "1.1", null, "19.7", null, "1.6", null, "29.1", null, "1.8", null, "34.6", null, "1.8", null, "20.2", null, "1.5", null, "14.5", null, "1.6", null, "2.7", null, "0.8", null, "11.7", null, "1.4", null, "0.0", null, "0.1", null, "65.4", null, "1.8", null, "24.5", null, "1.5", null, "11.7", null, "1.3", null, "3.8", null, "0.7", null, "7.9", null, "1.0", null, "29.1", null, "1.8", null, "18.5", null, "1.5", null, "81.5", null, "1.5", null, "30.0", null, "1.3", null, "70.0", null, "1.3", null, "32.7", null, "1.4", null, "3.6", null, "0.7", null, "0.7", null, "0.3", null, "1.5", null, "0.4", null, "0.1", null, "0.1", null, "19.4", null, "1.5", null, "42.0", null, "1.7", null, "79.6", null, "1.1", null, "14.3", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.1", null, "1.2", null, "35.2", null, "2.8", null, "51.7", null, "2.6", null, "45422", null, "4067", null, "19891", null, "2392", null, "25531", null, "3255", null, "13496", null, "2515", null, "21061", null, "3345", null, "4450", null, "1623", null, "16611", null, "2786", null, "10865", null, "2082", null, "22913", null, "3025", null, "7636", null, "1993", null, "15277", null, "2707", null, "1920", null, "1115", null, "13357", null, "2533", null, "0", null, "242", null, "22509", null, "2711", null, "5860", null, "1455", null, "5784", null, "1625", null, "2530", null, "1181", null, "3254", null, "897", null, "10865", null, "2082", null, "22088", null, "3254", null, "23334", null, "2650", null, "21007", null, "2890", null, "24415", null, "2992", null, "10291", null, "1968", null, "1427", null, "889", null, "52", null, "68", null, "327", null, "331", null, "0", null, "242", null, "10760", null, "2194", null, "22565", null, "3127", null, "41502", null, "3861", null, "1781", null, "708", null, "25873", null, "2429", null, "34557", null, "3950", null, "7565", null, "1964", null, "15485", null, "2647", null, "11507", null, "2087", null, "16.5", null, "1.5", null, "43.8", null, "4.3", null, "56.2", null, "4.3", null, "29.7", null, "4.9", null, "46.4", null, "5.5", null, "9.8", null, "3.4", null, "36.6", null, "4.8", null, "23.9", null, "4.4", null, "50.4", null, "4.5", null, "16.8", null, "4.0", null, "33.6", null, "5.1", null, "4.2", null, "2.4", null, "29.4", null, "4.8", null, "0.0", null, "0.5", null, "49.6", null, "4.5", null, "12.9", null, "3.1", null, "12.7", null, "3.2", null, "5.6", null, "2.5", null, "7.2", null, "1.7", null, "23.9", null, "4.4", null, "48.6", null, "4.8", null, "51.4", null, "4.8", null, "46.2", null, "4.7", null, "53.8", null, "4.7", null, "22.7", null, "4.0", null, "3.1", null, "2.0", null, "0.1", null, "0.2", null, "0.7", null, "0.7", null, "0.0", null, "0.5", null, "23.7", null, "4.4", null, "49.7", null, "4.8", null, "91.4", null, "2.5", null, "3.9", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "21.9", null, "4.6", null, "44.8", null, "5.4", null, "33.3", null, "5.7", null, "229373", null, "5363", null, "85841", null, "3345", null, "143532", null, "4690", null, "109331", null, "4538", null, "50835", null, "4165", null, "13400", null, "2386", null, "37435", null, "3647", null, "69207", null, "4727", null, "72222", null, "4530", null, "47749", null, "3512", null, "24434", null, "3604", null, "5559", null, "1799", null, "18875", null, "3006", null, "39", null, "66", null, "157151", null, "6104", null, "61582", null, "4136", null, "26401", null, "2980", null, "7841", null, "1543", null, "18560", null, "2505", null, "69168", null, "4728", null, "28754", null, "3448", null, "200619", null, "5398", null, "61314", null, "3428", null, "168059", null, "5276", null, "79610", null, "3416", null, "8526", null, "1707", null, "1814", null, "808", null, "3820", null, "1189", null, "166", null, "54", null, "42643", null, "3760", null, "92794", null, "4985", null, "177318", null, "5409", null, "37557", null, "2429", null, "69272", null, "2842", null, "160166", null, "5165", null, "17907", null, "2160", null, "53087", null, "5693", null, "89172", null, "4981", null, "83.5", null, "1.5", null, "37.4", null, "1.3", null, "62.6", null, "1.3", null, "47.7", null, "1.9", null, "22.2", null, "1.7", null, "5.8", null, "1.0", null, "16.3", null, "1.6", null, "30.2", null, "1.8", null, "31.5", null, "1.9", null, "20.8", null, "1.6", null, "10.7", null, "1.5", null, "2.4", null, "0.8", null, "8.2", null, "1.3", null, "0.0", null, "0.1", null, "68.5", null, "1.9", null, "26.8", null, "1.7", null, "11.5", null, "1.3", null, "3.4", null, "0.7", null, "8.1", null, "1.1", null, "30.2", null, "1.8", null, "12.5", null, "1.4", null, "87.5", null, "1.4", null, "26.7", null, "1.4", null, "73.3", null, "1.4", null, "34.7", null, "1.6", null, "3.7", null, "0.7", null, "0.8", null, "0.4", null, "1.7", null, "0.5", null, "0.1", null, "0.1", null, "18.6", null, "1.5", null, "40.5", null, "1.8", null, "77.3", null, "1.2", null, "16.4", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.2", null, "1.3", null, "33.1", null, "3.2", null, "55.7", null, "3.0", null, "48", "16"], ["5001900US4817", "Congressional District 17 (119th Congress), Texas", "303085", null, "5544", null, "115076", null, "3601", null, "188009", null, "5687", null, "144363", null, "6523", null, "55948", null, "4620", null, "15541", null, "2550", null, "40407", null, "3854", null, "102774", null, "5837", null, "88057", null, "5057", null, "56504", null, "4017", null, "31017", null, "3353", null, "7138", null, "1844", null, "23879", null, "2805", null, "536", null, "361", null, "215028", null, "6273", null, "87859", null, "4738", null, "24931", null, "3062", null, "8403", null, "1781", null, "16528", null, "2523", null, "102238", null, "5844", null, "42475", null, "3778", null, "260610", null, "6339", null, "87893", null, "5145", null, "215192", null, "7516", null, "186729", null, "4980", null, "44945", null, "3151", null, "1210", null, "575", null, "6909", null, "1503", null, "-999999999", "N", "-999999999", "N", "12285", null, "2252", null, "51007", null, "3906", null, "66038", null, "3544", null, "173373", null, "4736", null, "69771", null, "2697", null, "200311", null, "6587", null, "26142", null, "1886", null, "64104", null, "4232", null, "110065", null, "5980", null, "-888888888", "(X)", "-888888888", "(X)", "38.0", null, "1.2", null, "62.0", null, "1.2", null, "47.6", null, "1.9", null, "18.5", null, "1.5", null, "5.1", null, "0.8", null, "13.3", null, "1.3", null, "33.9", null, "1.8", null, "29.1", null, "1.6", null, "18.6", null, "1.3", null, "10.2", null, "1.1", null, "2.4", null, "0.6", null, "7.9", null, "0.9", null, "0.2", null, "0.1", null, "70.9", null, "1.6", null, "29.0", null, "1.5", null, "8.2", null, "1.0", null, "2.8", null, "0.6", null, "5.5", null, "0.8", null, "33.7", null, "1.8", null, "14.0", null, "1.2", null, "86.0", null, "1.2", null, "29.0", null, "1.8", null, "71.0", null, "1.8", null, "61.6", null, "1.3", null, "14.8", null, "1.0", null, "0.4", null, "0.2", null, "2.3", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "4.1", null, "0.7", null, "16.8", null, "1.2", null, "21.8", null, "1.0", null, "57.2", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.1", null, "0.9", null, "32.0", null, "2.0", null, "54.9", null, "2.0", null, "31924", null, "3684", null, "9353", null, "1680", null, "22571", null, "3341", null, "7321", null, "2257", null, "14840", null, "2234", null, "2719", null, "853", null, "12121", null, "2120", null, "9763", null, "1936", null, "15737", null, "2404", null, "4993", null, "1539", null, "10528", null, "1980", null, "1661", null, "716", null, "8867", null, "1794", null, "216", null, "297", null, "16187", null, "2771", null, "2328", null, "1054", null, "4312", null, "1373", null, "1058", null, "502", null, "3254", null, "1229", null, "9547", null, "1914", null, "12669", null, "2584", null, "19255", null, "3046", null, "15410", null, "2236", null, "16514", null, "3000", null, "13754", null, "2066", null, "10933", null, "2012", null, "370", null, "354", null, "46", null, "79", null, "-999999999", "N", "-999999999", "N", "1117", null, "539", null, "5704", null, "1884", null, "6983", null, "2088", null, "12368", null, "1923", null, "35493", null, "10676", null, "22161", null, "3007", null, "2596", null, "773", null, "11292", null, "2457", null, "8273", null, "1905", null, "10.5", null, "1.2", null, "29.3", null, "4.9", null, "70.7", null, "4.9", null, "22.9", null, "5.9", null, "46.5", null, "6.0", null, "8.5", null, "2.8", null, "38.0", null, "5.6", null, "30.6", null, "4.9", null, "49.3", null, "5.7", null, "15.6", null, "4.2", null, "33.0", null, "5.9", null, "5.2", null, "2.3", null, "27.8", null, "5.2", null, "0.7", null, "0.9", null, "50.7", null, "5.7", null, "7.3", null, "3.0", null, "13.5", null, "4.0", null, "3.3", null, "1.6", null, "10.2", null, "3.6", null, "29.9", null, "4.9", null, "39.7", null, "6.6", null, "60.3", null, "6.6", null, "48.3", null, "5.9", null, "51.7", null, "5.9", null, "43.1", null, "4.8", null, "34.2", null, "5.4", null, "1.2", null, "1.1", null, "0.1", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "3.5", null, "1.7", null, "17.9", null, "5.0", null, "21.9", null, "5.1", null, "38.7", null, "4.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.7", null, "3.4", null, "51.0", null, "7.5", null, "37.3", null, "7.5", null, "271161", null, "5777", null, "105723", null, "3702", null, "165438", null, "5220", null, "137042", null, "6210", null, "41108", null, "3985", null, "12822", null, "2250", null, "28286", null, "3287", null, "93011", null, "5430", null, "72320", null, "4896", null, "51511", null, "3926", null, "20489", null, "2933", null, "5477", null, "1587", null, "15012", null, "2522", null, "320", null, "271", null, "198841", null, "5899", null, "85531", null, "4616", null, "20619", null, "2678", null, "7345", null, "1585", null, "13274", null, "2147", null, "92691", null, "5417", null, "29806", null, "3125", null, "241355", null, "6678", null, "72483", null, "4694", null, "198678", null, "7064", null, "172975", null, "4850", null, "34012", null, "3416", null, "840", null, "467", null, "6863", null, "1524", null, "-999999999", "N", "-999999999", "N", "11168", null, "2119", null, "45303", null, "3942", null, "59055", null, "3892", null, "161005", null, "4489", null, "74784", null, "2694", null, "178150", null, "6662", null, "23546", null, "1707", null, "52812", null, "4159", null, "101792", null, "5748", null, "89.5", null, "1.2", null, "39.0", null, "1.2", null, "61.0", null, "1.2", null, "50.5", null, "1.9", null, "15.2", null, "1.4", null, "4.7", null, "0.8", null, "10.4", null, "1.2", null, "34.3", null, "1.9", null, "26.7", null, "1.7", null, "19.0", null, "1.3", null, "7.6", null, "1.1", null, "2.0", null, "0.6", null, "5.5", null, "0.9", null, "0.1", null, "0.1", null, "73.3", null, "1.7", null, "31.5", null, "1.6", null, "7.6", null, "1.0", null, "2.7", null, "0.6", null, "4.9", null, "0.8", null, "34.2", null, "1.9", null, "11.0", null, "1.2", null, "89.0", null, "1.2", null, "26.7", null, "1.8", null, "73.3", null, "1.8", null, "63.8", null, "1.4", null, "12.5", null, "1.2", null, "0.3", null, "0.2", null, "2.5", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "4.1", null, "0.8", null, "16.7", null, "1.4", null, "21.8", null, "1.3", null, "59.4", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.2", null, "0.9", null, "29.6", null, "2.1", null, "57.1", null, "2.1", null, "48", "17"], ["5001900US4818", "Congressional District 18 (119th Congress), Texas", "295814", null, "9659", null, "92699", null, "5373", null, "203115", null, "8686", null, "105141", null, "6452", null, "72397", null, "6288", null, "20278", null, "3252", null, "52119", null, "5448", null, "118276", null, "7210", null, "94177", null, "7154", null, "48931", null, "5517", null, "44368", null, "4953", null, "10829", null, "2449", null, "33539", null, "4440", null, "878", null, "633", null, "201637", null, "8795", null, "56210", null, "4558", null, "28029", null, "3782", null, "9449", null, "2092", null, "18580", null, "2772", null, "117398", null, "7103", null, "56786", null, "5298", null, "239028", null, "8943", null, "72088", null, "4689", null, "223726", null, "8730", null, "82892", null, "5353", null, "101059", null, "6912", null, "3981", null, "1391", null, "13111", null, "1975", null, "-999999999", "N", "-999999999", "N", "35496", null, "3888", null, "59275", null, "5449", null, "112596", null, "6136", null, "62636", null, "4670", null, "66803", null, "3749", null, "177538", null, "8370", null, "17629", null, "2503", null, "67889", null, "5803", null, "92020", null, "6420", null, "-888888888", "(X)", "-888888888", "(X)", "31.3", null, "1.6", null, "68.7", null, "1.6", null, "35.5", null, "1.8", null, "24.5", null, "2.0", null, "6.9", null, "1.1", null, "17.6", null, "1.7", null, "40.0", null, "2.1", null, "31.8", null, "2.1", null, "16.5", null, "1.7", null, "15.0", null, "1.6", null, "3.7", null, "0.8", null, "11.3", null, "1.5", null, "0.3", null, "0.2", null, "68.2", null, "2.1", null, "19.0", null, "1.5", null, "9.5", null, "1.2", null, "3.2", null, "0.7", null, "6.3", null, "0.9", null, "39.7", null, "2.0", null, "19.2", null, "1.6", null, "80.8", null, "1.6", null, "24.4", null, "1.4", null, "75.6", null, "1.4", null, "28.0", null, "1.8", null, "34.2", null, "1.8", null, "1.3", null, "0.5", null, "4.4", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "12.0", null, "1.3", null, "20.0", null, "1.6", null, "38.1", null, "1.8", null, "21.2", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "9.9", null, "1.3", null, "38.2", null, "2.7", null, "51.8", null, "2.8", null, "44359", null, "4211", null, "15784", null, "2196", null, "28575", null, "3701", null, "9074", null, "1938", null, "22270", null, "3297", null, "4270", null, "1693", null, "18000", null, "2929", null, "13015", null, "2063", null, "24659", null, "3524", null, "6339", null, "1776", null, "18320", null, "2966", null, "3105", null, "1482", null, "15215", null, "2864", null, "0", null, "242", null, "19700", null, "2333", null, "2735", null, "1109", null, "3950", null, "1169", null, "1165", null, "682", null, "2785", null, "1041", null, "13015", null, "2063", null, "21129", null, "3218", null, "23230", null, "3172", null, "19881", null, "2902", null, "24478", null, "3444", null, "6002", null, "1500", null, "22192", null, "3181", null, "1104", null, "933", null, "1519", null, "718", null, "-999999999", "N", "-999999999", "N", "4650", null, "1451", null, "8892", null, "2148", null, "16891", null, "2931", null, "2882", null, "1084", null, "32236", null, "3366", null, "31344", null, "3778", null, "5403", null, "1588", null, "17660", null, "3012", null, "8281", null, "1796", null, "15.0", null, "1.5", null, "35.6", null, "4.5", null, "64.4", null, "4.5", null, "20.5", null, "3.9", null, "50.2", null, "4.9", null, "9.6", null, "3.5", null, "40.6", null, "5.3", null, "29.3", null, "4.2", null, "55.6", null, "4.6", null, "14.3", null, "3.6", null, "41.3", null, "4.6", null, "7.0", null, "3.1", null, "34.3", null, "5.4", null, "0.0", null, "0.5", null, "44.4", null, "4.6", null, "6.2", null, "2.6", null, "8.9", null, "2.5", null, "2.6", null, "1.5", null, "6.3", null, "2.3", null, "29.3", null, "4.2", null, "47.6", null, "5.4", null, "52.4", null, "5.4", null, "44.8", null, "5.3", null, "55.2", null, "5.3", null, "13.5", null, "3.2", null, "50.0", null, "5.2", null, "2.5", null, "2.0", null, "3.4", null, "1.6", null, "-999999999.0", "N", "-999999999.0", "N", "10.5", null, "3.2", null, "20.0", null, "4.5", null, "38.1", null, "5.1", null, "6.5", null, "2.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.2", null, "4.8", null, "56.3", null, "6.3", null, "26.4", null, "5.0", null, "251455", null, "10083", null, "76915", null, "5407", null, "174540", null, "8743", null, "96067", null, "6274", null, "50127", null, "5066", null, "16008", null, "2618", null, "34119", null, "4417", null, "105261", null, "7068", null, "69518", null, "6409", null, "42592", null, "5047", null, "26048", null, "3687", null, "7724", null, "1862", null, "18324", null, "3202", null, "878", null, "633", null, "181937", null, "8621", null, "53475", null, "4580", null, "24079", null, "3695", null, "8284", null, "2022", null, "15795", null, "2648", null, "104383", null, "6954", null, "35657", null, "4701", null, "215798", null, "9098", null, "52207", null, "4298", null, "199248", null, "9320", null, "76890", null, "5303", null, "78867", null, "7125", null, "2877", null, "968", null, "11592", null, "1792", null, "-999999999", "N", "-999999999", "N", "30846", null, "3523", null, "50383", null, "5135", null, "95705", null, "6234", null, "59754", null, "4597", null, "75488", null, "3638", null, "146194", null, "7780", null, "12226", null, "2120", null, "50229", null, "5091", null, "83739", null, "6348", null, "85.0", null, "1.5", null, "30.6", null, "1.9", null, "69.4", null, "1.9", null, "38.2", null, "2.1", null, "19.9", null, "1.9", null, "6.4", null, "1.0", null, "13.6", null, "1.6", null, "41.9", null, "2.2", null, "27.6", null, "2.2", null, "16.9", null, "1.8", null, "10.4", null, "1.4", null, "3.1", null, "0.7", null, "7.3", null, "1.2", null, "0.3", null, "0.3", null, "72.4", null, "2.2", null, "21.3", null, "1.8", null, "9.6", null, "1.4", null, "3.3", null, "0.8", null, "6.3", null, "1.0", null, "41.5", null, "2.1", null, "14.2", null, "1.7", null, "85.8", null, "1.7", null, "20.8", null, "1.6", null, "79.2", null, "1.6", null, "30.6", null, "2.0", null, "31.4", null, "2.2", null, "1.1", null, "0.4", null, "4.6", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "12.3", null, "1.4", null, "20.0", null, "1.8", null, "38.1", null, "2.1", null, "23.8", null, "1.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "8.4", null, "1.4", null, "34.4", null, "2.9", null, "57.3", null, "3.2", null, "48", "18"], ["5001900US4819", "Congressional District 19 (119th Congress), Texas", "293930", null, "4489", null, "108831", null, "3031", null, "185099", null, "4241", null, "133827", null, "4369", null, "54101", null, "4650", null, "17885", null, "2529", null, "36216", null, "3658", null, "106002", null, "4219", null, "88259", null, "4368", null, "56103", null, "3197", null, "31312", null, "3418", null, "9236", null, "1958", null, "22076", null, "2657", null, "844", null, "575", null, "205671", null, "5379", null, "77724", null, "3655", null, "22789", null, "2562", null, "8649", null, "1698", null, "14140", null, "2078", null, "105158", null, "4288", null, "46517", null, "3429", null, "247413", null, "4861", null, "90427", null, "3577", null, "203503", null, "4793", null, "192014", null, "5349", null, "15307", null, "1850", null, "2146", null, "926", null, "5698", null, "824", null, "-999999999", "N", "-999999999", "N", "21745", null, "2570", null, "57020", null, "4030", null, "104618", null, "3527", null, "160389", null, "4126", null, "64889", null, "2041", null, "187928", null, "4929", null, "22758", null, "1985", null, "63237", null, "4251", null, "101933", null, "4254", null, "-888888888", "(X)", "-888888888", "(X)", "37.0", null, "0.9", null, "63.0", null, "0.9", null, "45.5", null, "1.5", null, "18.4", null, "1.5", null, "6.1", null, "0.8", null, "12.3", null, "1.2", null, "36.1", null, "1.3", null, "30.0", null, "1.4", null, "19.1", null, "1.1", null, "10.7", null, "1.1", null, "3.1", null, "0.7", null, "7.5", null, "0.9", null, "0.3", null, "0.2", null, "70.0", null, "1.4", null, "26.4", null, "1.2", null, "7.8", null, "0.8", null, "2.9", null, "0.6", null, "4.8", null, "0.7", null, "35.8", null, "1.4", null, "15.8", null, "1.1", null, "84.2", null, "1.1", null, "30.8", null, "1.2", null, "69.2", null, "1.2", null, "65.3", null, "1.3", null, "5.2", null, "0.6", null, "0.7", null, "0.3", null, "1.9", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "7.4", null, "0.9", null, "19.4", null, "1.3", null, "35.6", null, "1.1", null, "54.6", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.1", null, "1.0", null, "33.6", null, "2.0", null, "54.2", null, "1.9", null, "28296", null, "2755", null, "10858", null, "1619", null, "17438", null, "2209", null, "6566", null, "1250", null, "13375", null, "2240", null, "2598", null, "983", null, "10777", null, "2029", null, "8355", null, "1556", null, "15095", null, "2077", null, "4431", null, "1253", null, "10664", null, "2027", null, "1514", null, "699", null, "9150", null, "1954", null, "0", null, "242", null, "13201", null, "2045", null, "2135", null, "711", null, "2711", null, "851", null, "1084", null, "687", null, "1627", null, "560", null, "8355", null, "1556", null, "13230", null, "1748", null, "15066", null, "2255", null, "15364", null, "1989", null, "12932", null, "2047", null, "13004", null, "1802", null, "3164", null, "776", null, "75", null, "87", null, "293", null, "360", null, "-999999999", "N", "-999999999", "N", "4090", null, "1278", null, "7670", null, "1757", null, "16816", null, "2445", null, "7552", null, "1284", null, "29906", null, "4756", null, "19941", null, "2355", null, "3635", null, "1055", null, "9097", null, "1918", null, "7209", null, "1368", null, "9.6", null, "0.9", null, "38.4", null, "4.6", null, "61.6", null, "4.6", null, "23.2", null, "4.2", null, "47.3", null, "5.9", null, "9.2", null, "3.3", null, "38.1", null, "5.8", null, "29.5", null, "4.7", null, "53.3", null, "5.5", null, "15.7", null, "4.4", null, "37.7", null, "5.9", null, "5.4", null, "2.5", null, "32.3", null, "5.8", null, "0.0", null, "0.9", null, "46.7", null, "5.5", null, "7.5", null, "2.4", null, "9.6", null, "2.8", null, "3.8", null, "2.4", null, "5.7", null, "1.9", null, "29.5", null, "4.7", null, "46.8", null, "5.2", null, "53.2", null, "5.2", null, "54.3", null, "5.2", null, "45.7", null, "5.2", null, "46.0", null, "4.7", null, "11.2", null, "2.7", null, "0.3", null, "0.3", null, "1.0", null, "1.3", null, "-999999999.0", "N", "-999999999.0", "N", "14.5", null, "4.3", null, "27.1", null, "5.4", null, "59.4", null, "4.9", null, "26.7", null, "4.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.2", null, "5.2", null, "45.6", null, "7.2", null, "36.2", null, "5.6", null, "265634", null, "4899", null, "97973", null, "2975", null, "167661", null, "4542", null, "127261", null, "4391", null, "40726", null, "4028", null, "15287", null, "2303", null, "25439", null, "3069", null, "97647", null, "4101", null, "73164", null, "3958", null, "51672", null, "2926", null, "20648", null, "2878", null, "7722", null, "1808", null, "12926", null, "2127", null, "844", null, "575", null, "192470", null, "5295", null, "75589", null, "3563", null, "20078", null, "2464", null, "7565", null, "1654", null, "12513", null, "2104", null, "96803", null, "4159", null, "33287", null, "2905", null, "232347", null, "5210", null, "75063", null, "3460", null, "190571", null, "4998", null, "179010", null, "5127", null, "12143", null, "1979", null, "2071", null, "932", null, "5405", null, "762", null, "-999999999", "N", "-999999999", "N", "17655", null, "2435", null, "49350", null, "3714", null, "87802", null, "3863", null, "152837", null, "4053", null, "69858", null, "2719", null, "167987", null, "5097", null, "19123", null, "1654", null, "54140", null, "3863", null, "94724", null, "4349", null, "90.4", null, "0.9", null, "36.9", null, "1.0", null, "63.1", null, "1.0", null, "47.9", null, "1.5", null, "15.3", null, "1.4", null, "5.8", null, "0.8", null, "9.6", null, "1.1", null, "36.8", null, "1.4", null, "27.5", null, "1.4", null, "19.5", null, "1.1", null, "7.8", null, "1.1", null, "2.9", null, "0.7", null, "4.9", null, "0.8", null, "0.3", null, "0.2", null, "72.5", null, "1.4", null, "28.5", null, "1.3", null, "7.6", null, "0.9", null, "2.8", null, "0.6", null, "4.7", null, "0.8", null, "36.4", null, "1.4", null, "12.5", null, "1.1", null, "87.5", null, "1.1", null, "28.3", null, "1.2", null, "71.7", null, "1.2", null, "67.4", null, "1.4", null, "4.6", null, "0.8", null, "0.8", null, "0.4", null, "2.0", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "6.6", null, "0.9", null, "18.6", null, "1.4", null, "33.1", null, "1.2", null, "57.5", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.4", null, "1.0", null, "32.2", null, "2.0", null, "56.4", null, "1.9", null, "48", "19"], ["5001900US4820", "Congressional District 20 (119th Congress), Texas", "280359", null, "9234", null, "90619", null, "4716", null, "189740", null, "8777", null, "106922", null, "6389", null, "70415", null, "5921", null, "19256", null, "3164", null, "51159", null, "4888", null, "103022", null, "6768", null, "90427", null, "7186", null, "49709", null, "4931", null, "38960", null, "5036", null, "8963", null, "2869", null, "29997", null, "3772", null, "1758", null, "1223", null, "189932", null, "8679", null, "57213", null, "4838", null, "31455", null, "3125", null, "10293", null, "2124", null, "21162", null, "2984", null, "101264", null, "6650", null, "48484", null, "4751", null, "231875", null, "9134", null, "93566", null, "5764", null, "186793", null, "8016", null, "113616", null, "6483", null, "20167", null, "3704", null, "5404", null, "1641", null, "9282", null, "2017", null, "-999999999", "N", "-999999999", "N", "36329", null, "4186", null, "95445", null, "6420", null, "182838", null, "7790", null, "62381", null, "5430", null, "62044", null, "2342", null, "177337", null, "7685", null, "17847", null, "3006", null, "64858", null, "5435", null, "94632", null, "5616", null, "-888888888", "(X)", "-888888888", "(X)", "32.3", null, "1.6", null, "67.7", null, "1.6", null, "38.1", null, "2.1", null, "25.1", null, "1.9", null, "6.9", null, "1.1", null, "18.2", null, "1.6", null, "36.7", null, "2.0", null, "32.3", null, "2.3", null, "17.7", null, "1.7", null, "13.9", null, "1.7", null, "3.2", null, "1.0", null, "10.7", null, "1.3", null, "0.6", null, "0.4", null, "67.7", null, "2.3", null, "20.4", null, "1.7", null, "11.2", null, "1.1", null, "3.7", null, "0.8", null, "7.5", null, "1.0", null, "36.1", null, "1.9", null, "17.3", null, "1.6", null, "82.7", null, "1.6", null, "33.4", null, "1.8", null, "66.6", null, "1.8", null, "40.5", null, "1.8", null, "7.2", null, "1.3", null, "1.9", null, "0.6", null, "3.3", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "13.0", null, "1.5", null, "34.0", null, "2.1", null, "65.2", null, "2.0", null, "22.3", null, "1.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.1", null, "1.6", null, "36.6", null, "2.4", null, "53.4", null, "2.4", null, "44198", null, "5019", null, "14798", null, "2530", null, "29400", null, "4159", null, "13059", null, "2659", null, "21415", null, "3442", null, "4307", null, "1262", null, "17108", null, "3198", null, "9724", null, "2093", null, "25336", null, "4086", null, "9676", null, "2167", null, "14558", null, "3284", null, "2053", null, "1066", null, "12505", null, "2808", null, "1102", null, "1051", null, "18862", null, "2861", null, "3383", null, "1332", null, "6857", null, "1681", null, "2254", null, "999", null, "4603", null, "1451", null, "8622", null, "1797", null, "17882", null, "3426", null, "26316", null, "3649", null, "21708", null, "3163", null, "22490", null, "3301", null, "15704", null, "2850", null, "2640", null, "1469", null, "296", null, "345", null, "1128", null, "590", null, "-999999999", "N", "-999999999", "N", "5106", null, "1360", null, "19324", null, "3373", null, "33361", null, "4306", null, "6570", null, "2183", null, "34620", null, "7037", null, "34474", null, "4439", null, "5629", null, "1833", null, "16912", null, "3157", null, "11933", null, "2332", null, "15.8", null, "1.7", null, "33.5", null, "4.8", null, "66.5", null, "4.8", null, "29.5", null, "4.8", null, "48.5", null, "5.6", null, "9.7", null, "2.7", null, "38.7", null, "5.6", null, "22.0", null, "4.2", null, "57.3", null, "5.4", null, "21.9", null, "4.3", null, "32.9", null, "5.8", null, "4.6", null, "2.3", null, "28.3", null, "5.0", null, "2.5", null, "2.3", null, "42.7", null, "5.4", null, "7.7", null, "2.8", null, "15.5", null, "3.9", null, "5.1", null, "2.3", null, "10.4", null, "3.4", null, "19.5", null, "3.7", null, "40.5", null, "5.7", null, "59.5", null, "5.7", null, "49.1", null, "4.6", null, "50.9", null, "4.6", null, "35.5", null, "5.1", null, "6.0", null, "3.2", null, "0.7", null, "0.8", null, "2.6", null, "1.3", null, "-999999999.0", "N", "-999999999.0", "N", "11.6", null, "2.9", null, "43.7", null, "5.8", null, "75.5", null, "5.4", null, "14.9", null, "4.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.3", null, "4.6", null, "49.1", null, "6.4", null, "34.6", null, "5.9", null, "236161", null, "8752", null, "75821", null, "4509", null, "160340", null, "8424", null, "93863", null, "5731", null, "49000", null, "4880", null, "14949", null, "2995", null, "34051", null, "3885", null, "93298", null, "6809", null, "65091", null, "5826", null, "40033", null, "4262", null, "24402", null, "3956", null, "6910", null, "2559", null, "17492", null, "3016", null, "656", null, "602", null, "171070", null, "8304", null, "53830", null, "4467", null, "24598", null, "2939", null, "8039", null, "1900", null, "16559", null, "2601", null, "92642", null, "6746", null, "30602", null, "3634", null, "205559", null, "8520", null, "71858", null, "6028", null, "164303", null, "7319", null, "97912", null, "6024", null, "17527", null, "3483", null, "5108", null, "1674", null, "8154", null, "2050", null, "-999999999", "N", "-999999999", "N", "31223", null, "4044", null, "76121", null, "6003", null, "149477", null, "7388", null, "55811", null, "4986", null, "67913", null, "3030", null, "142863", null, "6690", null, "12218", null, "2066", null, "47946", null, "4596", null, "82699", null, "5280", null, "84.2", null, "1.7", null, "32.1", null, "1.9", null, "67.9", null, "1.9", null, "39.7", null, "2.3", null, "20.7", null, "1.9", null, "6.3", null, "1.2", null, "14.4", null, "1.5", null, "39.5", null, "2.2", null, "27.6", null, "2.3", null, "17.0", null, "1.7", null, "10.3", null, "1.6", null, "2.9", null, "1.1", null, "7.4", null, "1.2", null, "0.3", null, "0.3", null, "72.4", null, "2.3", null, "22.8", null, "1.9", null, "10.4", null, "1.2", null, "3.4", null, "0.8", null, "7.0", null, "1.1", null, "39.2", null, "2.2", null, "13.0", null, "1.5", null, "87.0", null, "1.5", null, "30.4", null, "2.1", null, "69.6", null, "2.1", null, "41.5", null, "1.9", null, "7.4", null, "1.4", null, "2.2", null, "0.7", null, "3.5", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "13.2", null, "1.7", null, "32.2", null, "2.3", null, "63.3", null, "2.2", null, "23.6", null, "1.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "8.6", null, "1.4", null, "33.6", null, "2.6", null, "57.9", null, "2.7", null, "48", "20"], ["5001900US4821", "Congressional District 21 (119th Congress), Texas", "342159", null, "7892", null, "149090", null, "4285", null, "193069", null, "7272", null, "182294", null, "7755", null, "42974", null, "4194", null, "12582", null, "2276", null, "30392", null, "3409", null, "116891", null, "6682", null, "94778", null, "5982", null, "70028", null, "5457", null, "24033", null, "3275", null, "7245", null, "1829", null, "16788", null, "2660", null, "717", null, "408", null, "247381", null, "6688", null, "112266", null, "5295", null, "18941", null, "2877", null, "5337", null, "1345", null, "13604", null, "2600", null, "116174", null, "6729", null, "29959", null, "3739", null, "312200", null, "7617", null, "93888", null, "5227", null, "248271", null, "7260", null, "242699", null, "6784", null, "13602", null, "3033", null, "2786", null, "1102", null, "6794", null, "1465", null, "-999999999", "N", "-999999999", "N", "18776", null, "3508", null, "57450", null, "5775", null, "92915", null, "5813", null, "218427", null, "6488", null, "100260", null, "3081", null, "225268", null, "7591", null, "33794", null, "2453", null, "69796", null, "5686", null, "121678", null, "7088", null, "-888888888", "(X)", "-888888888", "(X)", "43.6", null, "1.2", null, "56.4", null, "1.2", null, "53.3", null, "1.9", null, "12.6", null, "1.2", null, "3.7", null, "0.7", null, "8.9", null, "1.0", null, "34.2", null, "1.7", null, "27.7", null, "1.5", null, "20.5", null, "1.4", null, "7.0", null, "0.9", null, "2.1", null, "0.5", null, "4.9", null, "0.8", null, "0.2", null, "0.1", null, "72.3", null, "1.5", null, "32.8", null, "1.6", null, "5.5", null, "0.8", null, "1.6", null, "0.4", null, "4.0", null, "0.8", null, "34.0", null, "1.7", null, "8.8", null, "1.0", null, "91.2", null, "1.0", null, "27.4", null, "1.4", null, "72.6", null, "1.4", null, "70.9", null, "1.6", null, "4.0", null, "0.9", null, "0.8", null, "0.3", null, "2.0", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "5.5", null, "1.0", null, "16.8", null, "1.6", null, "27.2", null, "1.4", null, "63.8", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.0", null, "1.1", null, "31.0", null, "2.4", null, "54.0", null, "2.3", null, "14623", null, "2824", null, "5972", null, "1548", null, "8651", null, "2290", null, "4058", null, "1703", null, "6379", null, "1955", null, "1798", null, "1272", null, "4581", null, "1303", null, "4186", null, "1204", null, "6906", null, "2095", null, "2985", null, "1580", null, "3788", null, "1373", null, "1097", null, "852", null, "2691", null, "981", null, "133", null, "182", null, "7717", null, "1815", null, "1073", null, "671", null, "2591", null, "1092", null, "701", null, "691", null, "1890", null, "877", null, "4053", null, "1242", null, "4673", null, "1444", null, "9950", null, "2438", null, "7972", null, "2188", null, "6651", null, "1866", null, "7226", null, "1730", null, "1822", null, "1052", null, "380", null, "498", null, "75", null, "102", null, "-999999999", "N", "-999999999", "N", "841", null, "544", null, "4279", null, "1906", null, "5952", null, "2040", null, "5235", null, "1270", null, "46793", null, "21959", null, "10437", null, "2631", null, "951", null, "558", null, "4375", null, "1257", null, "5111", null, "2091", null, "4.3", null, "0.8", null, "40.8", null, "8.8", null, "59.2", null, "8.8", null, "27.8", null, "9.2", null, "43.6", null, "10.0", null, "12.3", null, "7.6", null, "31.3", null, "8.5", null, "28.6", null, "8.1", null, "47.2", null, "9.5", null, "20.4", null, "9.2", null, "25.9", null, "8.0", null, "7.5", null, "5.3", null, "18.4", null, "6.5", null, "0.9", null, "1.2", null, "52.8", null, "9.5", null, "7.3", null, "4.4", null, "17.7", null, "6.4", null, "4.8", null, "4.3", null, "12.9", null, "5.9", null, "27.7", null, "8.4", null, "32.0", null, "8.6", null, "68.0", null, "8.6", null, "54.5", null, "10.2", null, "45.5", null, "10.2", null, "49.4", null, "9.1", null, "12.5", null, "7.2", null, "2.6", null, "3.3", null, "0.5", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "5.8", null, "3.7", null, "29.3", null, "10.0", null, "40.7", null, "9.2", null, "35.8", null, "8.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "9.1", null, "5.3", null, "41.9", null, "11.1", null, "49.0", null, "11.6", null, "327536", null, "7864", null, "143118", null, "4224", null, "184418", null, "7209", null, "178236", null, "7410", null, "36595", null, "3620", null, "10784", null, "2060", null, "25811", null, "3211", null, "112705", null, "6726", null, "87872", null, "5634", null, "67043", null, "5115", null, "20245", null, "3018", null, "6148", null, "1578", null, "14097", null, "2637", null, "584", null, "385", null, "239664", null, "6513", null, "111193", null, "5325", null, "16350", null, "2434", null, "4636", null, "1204", null, "11714", null, "2250", null, "112121", null, "6747", null, "25286", null, "3371", null, "302250", null, "7447", null, "85916", null, "4992", null, "241620", null, "7290", null, "235473", null, "6608", null, "11780", null, "3083", null, "2406", null, "991", null, "6719", null, "1468", null, "-999999999", "N", "-999999999", "N", "17935", null, "3496", null, "53171", null, "5458", null, "86963", null, "5693", null, "213192", null, "6326", null, "102204", null, "2667", null, "214831", null, "7395", null, "32843", null, "2371", null, "65421", null, "5502", null, "116567", null, "6398", null, "95.7", null, "0.8", null, "43.7", null, "1.3", null, "56.3", null, "1.3", null, "54.4", null, "1.9", null, "11.2", null, "1.1", null, "3.3", null, "0.6", null, "7.9", null, "1.0", null, "34.4", null, "1.8", null, "26.8", null, "1.4", null, "20.5", null, "1.4", null, "6.2", null, "0.9", null, "1.9", null, "0.5", null, "4.3", null, "0.8", null, "0.2", null, "0.1", null, "73.2", null, "1.4", null, "33.9", null, "1.6", null, "5.0", null, "0.8", null, "1.4", null, "0.4", null, "3.6", null, "0.7", null, "34.2", null, "1.8", null, "7.7", null, "1.0", null, "92.3", null, "1.0", null, "26.2", null, "1.4", null, "73.8", null, "1.4", null, "71.9", null, "1.6", null, "3.6", null, "0.9", null, "0.7", null, "0.3", null, "2.1", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "5.5", null, "1.0", null, "16.2", null, "1.6", null, "26.6", null, "1.5", null, "65.1", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.3", null, "1.1", null, "30.5", null, "2.3", null, "54.3", null, "2.2", null, "48", "21"], ["5001900US4822", "Congressional District 22 (119th Congress), Texas", "301661", null, "6886", null, "111216", null, "5166", null, "190445", null, "7839", null, "193231", null, "7347", null, "44509", null, "5300", null, "11897", null, "2420", null, "32612", null, "4076", null, "63921", null, "6106", null, "122431", null, "5010", null, "99953", null, "5414", null, "22097", null, "2995", null, "5803", null, "1813", null, "16294", null, "2564", null, "381", null, "325", null, "179230", null, "6919", null, "93278", null, "5052", null, "22412", null, "3927", null, "6094", null, "1316", null, "16318", null, "3192", null, "63540", null, "6143", null, "20720", null, "2878", null, "280941", null, "7566", null, "68119", null, "6046", null, "233542", null, "8155", null, "147136", null, "4464", null, "40694", null, "4370", null, "1616", null, "811", null, "45282", null, "3227", null, "-999999999", "N", "-999999999", "N", "20799", null, "3169", null, "46134", null, "4189", null, "75973", null, "4796", null, "129680", null, "4230", null, "115961", null, "6241", null, "237740", null, "6729", null, "23030", null, "2532", null, "66231", null, "5891", null, "148479", null, "6319", null, "-888888888", "(X)", "-888888888", "(X)", "36.9", null, "1.8", null, "63.1", null, "1.8", null, "64.1", null, "2.3", null, "14.8", null, "1.7", null, "3.9", null, "0.8", null, "10.8", null, "1.4", null, "21.2", null, "1.8", null, "40.6", null, "1.6", null, "33.1", null, "1.7", null, "7.3", null, "1.0", null, "1.9", null, "0.6", null, "5.4", null, "0.9", null, "0.1", null, "0.1", null, "59.4", null, "1.6", null, "30.9", null, "1.6", null, "7.4", null, "1.3", null, "2.0", null, "0.4", null, "5.4", null, "1.0", null, "21.1", null, "1.9", null, "6.9", null, "1.0", null, "93.1", null, "1.0", null, "22.6", null, "2.0", null, "77.4", null, "2.0", null, "48.8", null, "1.5", null, "13.5", null, "1.3", null, "0.5", null, "0.3", null, "15.0", null, "1.0", null, "-999999999.0", "N", "-999999999.0", "N", "6.9", null, "1.0", null, "15.3", null, "1.3", null, "25.2", null, "1.4", null, "43.0", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "9.7", null, "1.1", null, "27.9", null, "2.2", null, "62.5", null, "2.2", null, "17415", null, "3076", null, "6751", null, "1770", null, "10664", null, "2582", null, "7426", null, "1899", null, "7587", null, "1942", null, "2064", null, "1433", null, "5523", null, "1577", null, "2402", null, "988", null, "10853", null, "2746", null, "5740", null, "1810", null, "4993", null, "1798", null, "1514", null, "1320", null, "3479", null, "1367", null, "120", null, "199", null, "6562", null, "1860", null, "1686", null, "853", null, "2594", null, "1159", null, "550", null, "355", null, "2044", null, "1051", null, "2282", null, "987", null, "5327", null, "1387", null, "12088", null, "2751", null, "6643", null, "1854", null, "10772", null, "2573", null, "5104", null, "1295", null, "3859", null, "1615", null, "89", null, "110", null, "2011", null, "1027", null, "-999999999", "N", "-999999999", "N", "2289", null, "1241", null, "4063", null, "1348", null, "8318", null, "1936", null, "2824", null, "863", null, "47076", null, "13788", null, "15013", null, "2913", null, "988", null, "503", null, "8472", null, "2300", null, "5553", null, "1660", null, "5.8", null, "1.0", null, "38.8", null, "8.7", null, "61.2", null, "8.7", null, "42.6", null, "7.7", null, "43.6", null, "7.7", null, "11.9", null, "7.2", null, "31.7", null, "8.7", null, "13.8", null, "5.4", null, "62.3", null, "9.6", null, "33.0", null, "9.0", null, "28.7", null, "7.9", null, "8.7", null, "6.7", null, "20.0", null, "7.5", null, "0.7", null, "1.1", null, "37.7", null, "9.6", null, "9.7", null, "4.4", null, "14.9", null, "6.7", null, "3.2", null, "2.0", null, "11.7", null, "6.1", null, "13.1", null, "5.5", null, "30.6", null, "7.4", null, "69.4", null, "7.4", null, "38.1", null, "9.0", null, "61.9", null, "9.0", null, "29.3", null, "6.0", null, "22.2", null, "8.1", null, "0.5", null, "0.6", null, "11.5", null, "5.1", null, "-999999999.0", "N", "-999999999.0", "N", "13.1", null, "6.4", null, "23.3", null, "7.6", null, "47.8", null, "7.7", null, "16.2", null, "4.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "6.6", null, "3.4", null, "56.4", null, "9.4", null, "37.0", null, "9.0", null, "284246", null, "6924", null, "104465", null, "4933", null, "179781", null, "7534", null, "185805", null, "7225", null, "36922", null, "4837", null, "9833", null, "1801", null, "27089", null, "3982", null, "61519", null, "5850", null, "111578", null, "5469", null, "94213", null, "5467", null, "17104", null, "2656", null, "4289", null, "1310", null, "12815", null, "2323", null, "261", null, "263", null, "172668", null, "6739", null, "91592", null, "4995", null, "19818", null, "3694", null, "5544", null, "1232", null, "14274", null, "3053", null, "61258", null, "5893", null, "15393", null, "2493", null, "268853", null, "7290", null, "61476", null, "5597", null, "222770", null, "7970", null, "142032", null, "4495", null, "36835", null, "4423", null, "1527", null, "800", null, "43271", null, "3185", null, "-999999999", "N", "-999999999", "N", "18510", null, "2945", null, "42071", null, "3826", null, "67655", null, "4601", null, "126856", null, "4262", null, "121735", null, "5307", null, "222727", null, "6683", null, "22042", null, "2439", null, "57759", null, "5440", null, "142926", null, "6184", null, "94.2", null, "1.0", null, "36.8", null, "1.8", null, "63.2", null, "1.8", null, "65.4", null, "2.3", null, "13.0", null, "1.7", null, "3.5", null, "0.6", null, "9.5", null, "1.4", null, "21.6", null, "1.9", null, "39.3", null, "1.7", null, "33.1", null, "1.8", null, "6.0", null, "0.9", null, "1.5", null, "0.5", null, "4.5", null, "0.8", null, "0.1", null, "0.1", null, "60.7", null, "1.7", null, "32.2", null, "1.7", null, "7.0", null, "1.3", null, "2.0", null, "0.4", null, "5.0", null, "1.1", null, "21.6", null, "1.9", null, "5.4", null, "0.9", null, "94.6", null, "0.9", null, "21.6", null, "1.9", null, "78.4", null, "1.9", null, "50.0", null, "1.7", null, "13.0", null, "1.4", null, "0.5", null, "0.3", null, "15.2", null, "1.1", null, "-999999999.0", "N", "-999999999.0", "N", "6.5", null, "1.0", null, "14.8", null, "1.3", null, "23.8", null, "1.4", null, "44.6", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "9.9", null, "1.1", null, "25.9", null, "2.2", null, "64.2", null, "2.3", null, "48", "22"], ["5001900US4823", "Congressional District 23 (119th Congress), Texas", "268467", null, "7262", null, "107284", null, "4921", null, "161183", null, "6336", null, "147492", null, "6071", null, "57991", null, "5412", null, "19856", null, "3795", null, "38135", null, "4161", null, "62984", null, "4860", null, "103488", null, "6017", null, "69558", null, "3962", null, "33405", null, "3868", null, "9689", null, "2629", null, "23716", null, "3593", null, "525", null, "452", null, "164979", null, "6263", null, "77934", null, "4978", null, "24586", null, "3699", null, "10167", null, "3009", null, "14419", null, "2010", null, "62459", null, "4801", null, "36758", null, "4088", null, "231709", null, "7646", null, "83855", null, "5093", null, "184612", null, "7047", null, "127260", null, "6003", null, "10089", null, "2141", null, "2014", null, "752", null, "7591", null, "1741", null, "-999999999", "N", "-999999999", "N", "29160", null, "3402", null, "92188", null, "6313", null, "160157", null, "6837", null, "83102", null, "4617", null, "81908", null, "2578", null, "205483", null, "7414", null, "29166", null, "3284", null, "70955", null, "5122", null, "105362", null, "5830", null, "-888888888", "(X)", "-888888888", "(X)", "40.0", null, "1.6", null, "60.0", null, "1.6", null, "54.9", null, "2.0", null, "21.6", null, "1.8", null, "7.4", null, "1.3", null, "14.2", null, "1.5", null, "23.5", null, "1.7", null, "38.5", null, "1.9", null, "25.9", null, "1.3", null, "12.4", null, "1.3", null, "3.6", null, "1.0", null, "8.8", null, "1.3", null, "0.2", null, "0.2", null, "61.5", null, "1.9", null, "29.0", null, "1.9", null, "9.2", null, "1.3", null, "3.8", null, "1.1", null, "5.4", null, "0.7", null, "23.3", null, "1.7", null, "13.7", null, "1.5", null, "86.3", null, "1.5", null, "31.2", null, "1.8", null, "68.8", null, "1.8", null, "47.4", null, "1.9", null, "3.8", null, "0.8", null, "0.8", null, "0.3", null, "2.8", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "10.9", null, "1.2", null, "34.3", null, "2.1", null, "59.7", null, "1.8", null, "31.0", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.2", null, "1.5", null, "34.5", null, "2.1", null, "51.3", null, "2.3", null, "31601", null, "3508", null, "16444", null, "2241", null, "15157", null, "2891", null, "9064", null, "1508", null, "15471", null, "2907", null, "4736", null, "1913", null, "10735", null, "2109", null, "7066", null, "1434", null, "14798", null, "2627", null, "5443", null, "1384", null, "9294", null, "2226", null, "1928", null, "919", null, "7366", null, "2069", null, "61", null, "108", null, "16803", null, "2453", null, "3621", null, "994", null, "6177", null, "1772", null, "2808", null, "1491", null, "3369", null, "908", null, "7005", null, "1432", null, "12274", null, "2234", null, "19327", null, "3070", null, "18742", null, "2696", null, "12859", null, "2589", null, "9994", null, "2069", null, "931", null, "1007", null, "380", null, "277", null, "325", null, "321", null, "-999999999", "N", "-999999999", "N", "3686", null, "1291", null, "16285", null, "2406", null, "26738", null, "3144", null, "3558", null, "1242", null, "31792", null, "5914", null, "24535", null, "3390", null, "5637", null, "1530", null, "10718", null, "2192", null, "8180", null, "2076", null, "11.8", null, "1.2", null, "52.0", null, "6.1", null, "48.0", null, "6.1", null, "28.7", null, "4.3", null, "49.0", null, "5.7", null, "15.0", null, "5.3", null, "34.0", null, "5.3", null, "22.4", null, "4.5", null, "46.8", null, "5.9", null, "17.2", null, "4.1", null, "29.4", null, "5.6", null, "6.1", null, "2.8", null, "23.3", null, "5.7", null, "0.2", null, "0.3", null, "53.2", null, "5.9", null, "11.5", null, "3.1", null, "19.5", null, "4.8", null, "8.9", null, "4.3", null, "10.7", null, "2.8", null, "22.2", null, "4.5", null, "38.8", null, "6.2", null, "61.2", null, "6.2", null, "59.3", null, "6.3", null, "40.7", null, "6.3", null, "31.6", null, "5.2", null, "2.9", null, "3.1", null, "1.2", null, "0.9", null, "1.0", null, "1.0", null, "-999999999.0", "N", "-999999999.0", "N", "11.7", null, "4.0", null, "51.5", null, "5.7", null, "84.6", null, "4.9", null, "11.3", null, "3.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "23.0", null, "5.7", null, "43.7", null, "6.5", null, "33.3", null, "6.9", null, "236866", null, "6617", null, "90840", null, "4829", null, "146026", null, "5903", null, "138428", null, "5898", null, "42520", null, "4413", null, "15120", null, "3187", null, "27400", null, "3387", null, "55918", null, "4608", null, "88690", null, "5470", null, "64115", null, "4031", null, "24111", null, "3229", null, "7761", null, "2377", null, "16350", null, "2843", null, "464", null, "449", null, "148176", null, "6292", null, "74313", null, "4834", null, "18409", null, "3316", null, "7359", null, "2587", null, "11050", null, "1878", null, "55454", null, "4569", null, "24484", null, "3482", null, "212382", null, "7055", null, "65113", null, "4963", null, "171753", null, "6463", null, "117266", null, "5444", null, "9158", null, "1966", null, "1634", null, "710", null, "7266", null, "1728", null, "-999999999", "N", "-999999999", "N", "25474", null, "3396", null, "75903", null, "5772", null, "133419", null, "6257", null, "79544", null, "4277", null, "91688", null, "3640", null, "180948", null, "6846", null, "23529", null, "3114", null, "60237", null, "4877", null, "97182", null, "5463", null, "88.2", null, "1.2", null, "38.4", null, "1.8", null, "61.6", null, "1.8", null, "58.4", null, "2.1", null, "18.0", null, "1.7", null, "6.4", null, "1.3", null, "11.6", null, "1.4", null, "23.6", null, "1.9", null, "37.4", null, "2.0", null, "27.1", null, "1.5", null, "10.2", null, "1.3", null, "3.3", null, "1.0", null, "6.9", null, "1.2", null, "0.2", null, "0.2", null, "62.6", null, "2.0", null, "31.4", null, "1.9", null, "7.8", null, "1.4", null, "3.1", null, "1.1", null, "4.7", null, "0.8", null, "23.4", null, "1.8", null, "10.3", null, "1.5", null, "89.7", null, "1.5", null, "27.5", null, "1.9", null, "72.5", null, "1.9", null, "49.5", null, "2.1", null, "3.9", null, "0.8", null, "0.7", null, "0.3", null, "3.1", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "10.8", null, "1.4", null, "32.0", null, "2.1", null, "56.3", null, "1.9", null, "33.6", null, "1.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.0", null, "1.5", null, "33.3", null, "2.4", null, "53.7", null, "2.6", null, "48", "23"], ["5001900US4824", "Congressional District 24 (119th Congress), Texas", "289671", null, "7271", null, "113273", null, "4788", null, "176398", null, "6782", null, "164321", null, "5220", null, "35727", null, "4061", null, "11495", null, "2574", null, "24232", null, "2966", null, "89623", null, "5520", null, "94569", null, "4704", null, "73526", null, "3860", null, "20772", null, "3251", null, "5919", null, "2073", null, "14853", null, "2359", null, "271", null, "228", null, "195102", null, "7546", null, "90795", null, "4287", null, "14955", null, "2130", null, "5576", null, "1346", null, "9379", null, "1661", null, "89352", null, "5509", null, "17823", null, "2370", null, "271848", null, "7121", null, "59382", null, "3940", null, "230289", null, "6885", null, "204296", null, "7088", null, "21300", null, "3409", null, "-999999999", "N", "-999999999", "N", "23548", null, "2102", null, "-999999999", "N", "-999999999", "N", "10457", null, "2419", null, "28802", null, "3680", null, "40855", null, "4552", null, "193016", null, "6744", null, "119295", null, "4794", null, "200048", null, "5625", null, "19466", null, "1984", null, "59100", null, "4208", null, "121482", null, "5243", null, "-888888888", "(X)", "-888888888", "(X)", "39.1", null, "1.5", null, "60.9", null, "1.5", null, "56.7", null, "1.7", null, "12.3", null, "1.3", null, "4.0", null, "0.9", null, "8.4", null, "1.0", null, "30.9", null, "1.5", null, "32.6", null, "1.6", null, "25.4", null, "1.4", null, "7.2", null, "1.1", null, "2.0", null, "0.7", null, "5.1", null, "0.8", null, "0.1", null, "0.1", null, "67.4", null, "1.6", null, "31.3", null, "1.3", null, "5.2", null, "0.7", null, "1.9", null, "0.5", null, "3.2", null, "0.6", null, "30.8", null, "1.5", null, "6.2", null, "0.8", null, "93.8", null, "0.8", null, "20.5", null, "1.3", null, "79.5", null, "1.3", null, "70.5", null, "1.6", null, "7.4", null, "1.2", null, "-999999999.0", "N", "-999999999.0", "N", "8.1", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "3.6", null, "0.8", null, "9.9", null, "1.2", null, "14.1", null, "1.5", null, "66.6", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "9.7", null, "1.0", null, "29.5", null, "1.8", null, "60.7", null, "2.0", null, "9850", null, "1886", null, "3979", null, "1044", null, "5871", null, "1457", null, "4009", null, "1189", null, "4505", null, "1267", null, "891", null, "479", null, "3614", null, "1212", null, "1336", null, "716", null, "6526", null, "1533", null, "3271", null, "1217", null, "3255", null, "1187", null, "506", null, "347", null, "2749", null, "1144", null, "0", null, "242", null, "3324", null, "1042", null, "738", null, "373", null, "1250", null, "634", null, "385", null, "355", null, "865", null, "426", null, "1336", null, "716", null, "2517", null, "1105", null, "7333", null, "1526", null, "4136", null, "1158", null, "5714", null, "1266", null, "4405", null, "1210", null, "1765", null, "889", null, "-999999999", "N", "-999999999", "N", "771", null, "462", null, "-999999999", "N", "-999999999", "N", "768", null, "546", null, "1985", null, "910", null, "2987", null, "1014", null, "3884", null, "1101", null, "58934", null, "20359", null, "8514", null, "1608", null, "725", null, "374", null, "3720", null, "1129", null, "4069", null, "1203", null, "3.4", null, "0.7", null, "40.4", null, "8.2", null, "59.6", null, "8.2", null, "40.7", null, "10.2", null, "45.7", null, "9.7", null, "9.0", null, "4.7", null, "36.7", null, "9.9", null, "13.6", null, "6.2", null, "66.3", null, "8.7", null, "33.2", null, "10.8", null, "33.0", null, "10.2", null, "5.1", null, "3.6", null, "27.9", null, "9.9", null, "0.0", null, "2.4", null, "33.7", null, "8.7", null, "7.5", null, "3.9", null, "12.7", null, "6.2", null, "3.9", null, "3.5", null, "8.8", null, "4.3", null, "13.6", null, "6.2", null, "25.6", null, "9.2", null, "74.4", null, "9.2", null, "42.0", null, "7.8", null, "58.0", null, "7.8", null, "44.7", null, "10.2", null, "17.9", null, "8.1", null, "-999999999.0", "N", "-999999999.0", "N", "7.8", null, "4.5", null, "-999999999.0", "N", "-999999999.0", "N", "7.8", null, "5.2", null, "20.2", null, "8.3", null, "30.3", null, "8.3", null, "39.4", null, "9.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "8.5", null, "4.4", null, "43.7", null, "10.2", null, "47.8", null, "10.4", null, "279821", null, "7376", null, "109294", null, "4836", null, "170527", null, "6913", null, "160312", null, "5024", null, "31222", null, "3791", null, "10604", null, "2465", null, "20618", null, "2703", null, "88287", null, "5420", null, "88043", null, "4443", null, "70255", null, "3526", null, "17517", null, "2959", null, "5413", null, "2036", null, "12104", null, "2095", null, "271", null, "228", null, "191778", null, "7431", null, "90057", null, "4327", null, "13705", null, "2015", null, "5191", null, "1282", null, "8514", null, "1579", null, "88016", null, "5415", null, "15306", null, "2250", null, "264515", null, "7305", null, "55246", null, "3825", null, "224575", null, "7024", null, "199891", null, "7099", null, "19535", null, "3187", null, "-999999999", "N", "-999999999", "N", "22777", null, "2023", null, "-999999999", "N", "-999999999", "N", "9689", null, "2398", null, "26817", null, "3659", null, "37868", null, "4569", null, "189132", null, "6749", null, "121549", null, "3438", null, "191534", null, "5551", null, "18741", null, "1951", null, "55380", null, "4083", null, "117413", null, "5065", null, "96.6", null, "0.7", null, "39.1", null, "1.6", null, "60.9", null, "1.6", null, "57.3", null, "1.6", null, "11.2", null, "1.3", null, "3.8", null, "0.8", null, "7.4", null, "1.0", null, "31.6", null, "1.5", null, "31.5", null, "1.6", null, "25.1", null, "1.3", null, "6.3", null, "1.0", null, "1.9", null, "0.7", null, "4.3", null, "0.8", null, "0.1", null, "0.1", null, "68.5", null, "1.6", null, "32.2", null, "1.4", null, "4.9", null, "0.7", null, "1.9", null, "0.4", null, "3.0", null, "0.6", null, "31.5", null, "1.5", null, "5.5", null, "0.8", null, "94.5", null, "0.8", null, "19.7", null, "1.3", null, "80.3", null, "1.3", null, "71.4", null, "1.7", null, "7.0", null, "1.1", null, "-999999999.0", "N", "-999999999.0", "N", "8.1", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "3.5", null, "0.9", null, "9.6", null, "1.2", null, "13.5", null, "1.5", null, "67.6", null, "1.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "9.8", null, "1.0", null, "28.9", null, "1.8", null, "61.3", null, "2.0", null, "48", "24"], ["5001900US4825", "Congressional District 25 (119th Congress), Texas", "298535", null, "5549", null, "125977", null, "4764", null, "172558", null, "5331", null, "156065", null, "5604", null, "52320", null, "4267", null, "15296", null, "2422", null, "37024", null, "3804", null, "90150", null, "5815", null, "93985", null, "5144", null, "65041", null, "4766", null, "28426", null, "3174", null, "7499", null, "1707", null, "20927", null, "2804", null, "518", null, "410", null, "204550", null, "6563", null, "91024", null, "4130", null, "23894", null, "3021", null, "7797", null, "1626", null, "16097", null, "2471", null, "89632", null, "5843", null, "33725", null, "3328", null, "264810", null, "5597", null, "85122", null, "4398", null, "213413", null, "6045", null, "198847", null, "5503", null, "41804", null, "4109", null, "-999999999", "N", "-999999999", "N", "9511", null, "1539", null, "-999999999", "N", "-999999999", "N", "12010", null, "2342", null, "34910", null, "3607", null, "53261", null, "3824", null, "184788", null, "5372", null, "80242", null, "2876", null, "208385", null, "6084", null, "28540", null, "2048", null, "63879", null, "4690", null, "115966", null, "5825", null, "-888888888", "(X)", "-888888888", "(X)", "42.2", null, "1.4", null, "57.8", null, "1.4", null, "52.3", null, "1.7", null, "17.5", null, "1.4", null, "5.1", null, "0.8", null, "12.4", null, "1.3", null, "30.2", null, "1.8", null, "31.5", null, "1.7", null, "21.8", null, "1.5", null, "9.5", null, "1.1", null, "2.5", null, "0.6", null, "7.0", null, "0.9", null, "0.2", null, "0.1", null, "68.5", null, "1.7", null, "30.5", null, "1.3", null, "8.0", null, "1.0", null, "2.6", null, "0.5", null, "5.4", null, "0.8", null, "30.0", null, "1.8", null, "11.3", null, "1.1", null, "88.7", null, "1.1", null, "28.5", null, "1.4", null, "71.5", null, "1.4", null, "66.6", null, "1.6", null, "14.0", null, "1.3", null, "-999999999.0", "N", "-999999999.0", "N", "3.2", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "4.0", null, "0.8", null, "11.7", null, "1.2", null, "17.8", null, "1.3", null, "61.9", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.7", null, "1.0", null, "30.7", null, "2.1", null, "55.6", null, "2.1", null, "28724", null, "3212", null, "12770", null, "2121", null, "15954", null, "2306", null, "7495", null, "1816", null, "12869", null, "2233", null, "2896", null, "1095", null, "9973", null, "1953", null, "8360", null, "1905", null, "14146", null, "2491", null, "4771", null, "1507", null, "9128", null, "1827", null, "2320", null, "1043", null, "6808", null, "1482", null, "247", null, "339", null, "14578", null, "2418", null, "2724", null, "932", null, "3741", null, "1260", null, "576", null, "306", null, "3165", null, "1231", null, "8113", null, "1903", null, "11011", null, "2188", null, "17713", null, "2696", null, "15461", null, "2432", null, "13263", null, "2294", null, "15862", null, "2531", null, "7468", null, "2031", null, "-999999999", "N", "-999999999", "N", "822", null, "564", null, "-999999999", "N", "-999999999", "N", "743", null, "551", null, "3829", null, "1153", null, "6070", null, "1408", null, "14130", null, "2344", null, "34177", null, "3236", null, "20364", null, "2951", null, "3671", null, "1290", null, "10453", null, "1955", null, "6240", null, "1668", null, "9.6", null, "1.1", null, "44.5", null, "5.3", null, "55.5", null, "5.3", null, "26.1", null, "5.3", null, "44.8", null, "6.1", null, "10.1", null, "3.8", null, "34.7", null, "5.5", null, "29.1", null, "6.0", null, "49.2", null, "6.5", null, "16.6", null, "4.7", null, "31.8", null, "5.5", null, "8.1", null, "3.6", null, "23.7", null, "4.5", null, "0.9", null, "1.2", null, "50.8", null, "6.5", null, "9.5", null, "3.0", null, "13.0", null, "4.1", null, "2.0", null, "1.1", null, "11.0", null, "4.0", null, "28.2", null, "6.1", null, "38.3", null, "6.4", null, "61.7", null, "6.4", null, "53.8", null, "6.0", null, "46.2", null, "6.0", null, "55.2", null, "6.7", null, "26.0", null, "5.9", null, "-999999999.0", "N", "-999999999.0", "N", "2.9", null, "1.9", null, "-999999999.0", "N", "-999999999.0", "N", "2.6", null, "1.9", null, "13.3", null, "4.1", null, "21.1", null, "4.6", null, "49.2", null, "6.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.0", null, "5.4", null, "51.3", null, "7.7", null, "30.6", null, "6.6", null, "269811", null, "5883", null, "113207", null, "4959", null, "156604", null, "5499", null, "148570", null, "5481", null, "39451", null, "3652", null, "12400", null, "2044", null, "27051", null, "3289", null, "81790", null, "5374", null, "79839", null, "4833", null, "60270", null, "4656", null, "19298", null, "2869", null, "5179", null, "1417", null, "14119", null, "2420", null, "271", null, "219", null, "189972", null, "6101", null, "88300", null, "3982", null, "20153", null, "2699", null, "7221", null, "1573", null, "12932", null, "2049", null, "81519", null, "5343", null, "22714", null, "2760", null, "247097", null, "5905", null, "69661", null, "4419", null, "200150", null, "6103", null, "182985", null, "5458", null, "34336", null, "4057", null, "-999999999", "N", "-999999999", "N", "8689", null, "1575", null, "-999999999", "N", "-999999999", "N", "11267", null, "2279", null, "31081", null, "3442", null, "47191", null, "3683", null, "170658", null, "5340", null, "85496", null, "3950", null, "188021", null, "5878", null, "24869", null, "1876", null, "53426", null, "4261", null, "109726", null, "5762", null, "90.4", null, "1.1", null, "42.0", null, "1.6", null, "58.0", null, "1.6", null, "55.1", null, "1.8", null, "14.6", null, "1.3", null, "4.6", null, "0.8", null, "10.0", null, "1.2", null, "30.3", null, "1.8", null, "29.6", null, "1.7", null, "22.3", null, "1.6", null, "7.2", null, "1.1", null, "1.9", null, "0.5", null, "5.2", null, "0.9", null, "0.1", null, "0.1", null, "70.4", null, "1.7", null, "32.7", null, "1.5", null, "7.5", null, "1.0", null, "2.7", null, "0.6", null, "4.8", null, "0.7", null, "30.2", null, "1.8", null, "8.4", null, "1.0", null, "91.6", null, "1.0", null, "25.8", null, "1.5", null, "74.2", null, "1.5", null, "67.8", null, "1.6", null, "12.7", null, "1.4", null, "-999999999.0", "N", "-999999999.0", "N", "3.2", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "4.2", null, "0.8", null, "11.5", null, "1.3", null, "17.5", null, "1.3", null, "63.3", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.2", null, "1.0", null, "28.4", null, "2.1", null, "58.4", null, "2.2", null, "48", "25"], ["5001900US4826", "Congressional District 26 (119th Congress), Texas", "324637", null, "4939", null, "111717", null, "4137", null, "212920", null, "4660", null, "200637", null, "5081", null, "41709", null, "4147", null, "12325", null, "1882", null, "29384", null, "3542", null, "82291", null, "5113", null, "114309", null, "5415", null, "90008", null, "4748", null, "24301", null, "3552", null, "6663", null, "1506", null, "17638", null, "3128", null, "0", null, "242", null, "210328", null, "6234", null, "110629", null, "5164", null, "17408", null, "2578", null, "5662", null, "1509", null, "11746", null, "2028", null, "82291", null, "5113", null, "16525", null, "2484", null, "308112", null, "5541", null, "60832", null, "4366", null, "263805", null, "5754", null, "204996", null, "4230", null, "32059", null, "3027", null, "1940", null, "1027", null, "37044", null, "2174", null, "-999999999", "N", "-999999999", "N", "11869", null, "2079", null, "36563", null, "3320", null, "49218", null, "3387", null, "193822", null, "4400", null, "122953", null, "3398", null, "242346", null, "5293", null, "21094", null, "2222", null, "66005", null, "3851", null, "155247", null, "5296", null, "-888888888", "(X)", "-888888888", "(X)", "34.4", null, "1.1", null, "65.6", null, "1.1", null, "61.8", null, "1.4", null, "12.8", null, "1.3", null, "3.8", null, "0.6", null, "9.1", null, "1.1", null, "25.3", null, "1.4", null, "35.2", null, "1.6", null, "27.7", null, "1.4", null, "7.5", null, "1.1", null, "2.1", null, "0.5", null, "5.4", null, "0.9", null, "0.0", null, "0.1", null, "64.8", null, "1.6", null, "34.1", null, "1.5", null, "5.4", null, "0.8", null, "1.7", null, "0.5", null, "3.6", null, "0.6", null, "25.3", null, "1.4", null, "5.1", null, "0.8", null, "94.9", null, "0.8", null, "18.7", null, "1.3", null, "81.3", null, "1.3", null, "63.1", null, "1.1", null, "9.9", null, "0.9", null, "0.6", null, "0.3", null, "11.4", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "3.7", null, "0.6", null, "11.3", null, "1.0", null, "15.2", null, "1.0", null, "59.7", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "8.7", null, "0.9", null, "27.2", null, "1.5", null, "64.1", null, "1.6", null, "10457", null, "2041", null, "3861", null, "1075", null, "6596", null, "1979", null, "3548", null, "1479", null, "5053", null, "1416", null, "1479", null, "889", null, "3574", null, "1157", null, "1856", null, "857", null, "6283", null, "1831", null, "2799", null, "1393", null, "3484", null, "1214", null, "753", null, "503", null, "2731", null, "1125", null, "0", null, "242", null, "4174", null, "1273", null, "749", null, "366", null, "1569", null, "827", null, "726", null, "594", null, "843", null, "494", null, "1856", null, "857", null, "2267", null, "912", null, "8190", null, "1837", null, "5125", null, "1412", null, "5332", null, "1568", null, "4974", null, "1268", null, "2645", null, "1433", null, "103", null, "146", null, "485", null, "384", null, "-999999999", "N", "-999999999", "N", "242", null, "260", null, "2008", null, "836", null, "3180", null, "1023", null, "4054", null, "1075", null, "77001", null, "22677", null, "8601", null, "1999", null, "903", null, "640", null, "4503", null, "1613", null, "3195", null, "1069", null, "3.2", null, "0.6", null, "36.9", null, "10.6", null, "63.1", null, "10.6", null, "33.9", null, "11.4", null, "48.3", null, "10.5", null, "14.1", null, "7.7", null, "34.2", null, "10.4", null, "17.7", null, "8.2", null, "60.1", null, "11.1", null, "26.8", null, "11.1", null, "33.3", null, "10.3", null, "7.2", null, "4.6", null, "26.1", null, "10.1", null, "0.0", null, "2.3", null, "39.9", null, "11.1", null, "7.2", null, "3.6", null, "15.0", null, "7.4", null, "6.9", null, "5.3", null, "8.1", null, "4.9", null, "17.7", null, "8.2", null, "21.7", null, "7.9", null, "78.3", null, "7.9", null, "49.0", null, "10.6", null, "51.0", null, "10.6", null, "47.6", null, "10.2", null, "25.3", null, "11.5", null, "1.0", null, "1.4", null, "4.6", null, "3.8", null, "-999999999.0", "N", "-999999999.0", "N", "2.3", null, "2.5", null, "19.2", null, "7.7", null, "30.4", null, "8.3", null, "38.8", null, "9.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.5", null, "6.8", null, "52.4", null, "12.1", null, "37.1", null, "11.7", null, "314180", null, "5282", null, "107856", null, "4067", null, "206324", null, "5066", null, "197089", null, "4946", null, "36656", null, "3727", null, "10846", null, "1589", null, "25810", null, "3256", null, "80435", null, "5004", null, "108026", null, "5292", null, "87209", null, "4687", null, "20817", null, "3174", null, "5910", null, "1394", null, "14907", null, "2840", null, "0", null, "242", null, "206154", null, "6179", null, "109880", null, "5176", null, "15839", null, "2399", null, "4936", null, "1372", null, "10903", null, "2006", null, "80435", null, "5004", null, "14258", null, "2385", null, "299922", null, "5745", null, "55707", null, "4758", null, "258473", null, "5733", null, "200022", null, "4253", null, "29414", null, "3162", null, "1837", null, "1010", null, "36559", null, "2162", null, "-999999999", "N", "-999999999", "N", "11627", null, "2092", null, "34555", null, "3283", null, "46038", null, "3434", null, "189768", null, "4438", null, "125468", null, "4019", null, "233745", null, "5022", null, "20191", null, "2227", null, "61502", null, "3496", null, "152052", null, "4955", null, "96.8", null, "0.6", null, "34.3", null, "1.2", null, "65.7", null, "1.2", null, "62.7", null, "1.4", null, "11.7", null, "1.2", null, "3.5", null, "0.5", null, "8.2", null, "1.0", null, "25.6", null, "1.4", null, "34.4", null, "1.6", null, "27.8", null, "1.5", null, "6.6", null, "1.0", null, "1.9", null, "0.4", null, "4.7", null, "0.9", null, "0.0", null, "0.1", null, "65.6", null, "1.6", null, "35.0", null, "1.6", null, "5.0", null, "0.8", null, "1.6", null, "0.4", null, "3.5", null, "0.6", null, "25.6", null, "1.4", null, "4.5", null, "0.8", null, "95.5", null, "0.8", null, "17.7", null, "1.4", null, "82.3", null, "1.4", null, "63.7", null, "1.2", null, "9.4", null, "0.9", null, "0.6", null, "0.3", null, "11.6", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "3.7", null, "0.7", null, "11.0", null, "1.0", null, "14.7", null, "1.1", null, "60.4", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "8.6", null, "0.9", null, "26.3", null, "1.5", null, "65.1", null, "1.5", null, "48", "26"], ["5001900US4827", "Congressional District 27 (119th Congress), Texas", "301780", null, "4554", null, "130421", null, "3483", null, "171359", null, "4800", null, "147464", null, "6356", null, "61619", null, "4861", null, "18468", null, "3107", null, "43151", null, "4357", null, "92697", null, "4782", null, "94554", null, "5204", null, "55438", null, "4476", null, "38211", null, "3685", null, "10210", null, "2609", null, "28001", null, "3274", null, "905", null, "573", null, "207226", null, "5446", null, "92026", null, "4524", null, "23408", null, "2923", null, "8258", null, "2119", null, "15150", null, "2231", null, "91792", null, "4735", null, "44625", null, "3981", null, "257155", null, "4700", null, "93949", null, "4216", null, "207831", null, "4706", null, "168127", null, "4740", null, "13826", null, "2167", null, "-999999999", "N", "-999999999", "N", "5411", null, "1015", null, "-999999999", "N", "-999999999", "N", "20708", null, "2856", null, "90370", null, "5072", null, "149321", null, "4606", null, "126005", null, "3509", null, "69138", null, "2512", null, "209083", null, "5866", null, "31843", null, "2340", null, "75309", null, "4531", null, "101931", null, "5537", null, "-888888888", "(X)", "-888888888", "(X)", "43.2", null, "1.1", null, "56.8", null, "1.1", null, "48.9", null, "2.0", null, "20.4", null, "1.6", null, "6.1", null, "1.0", null, "14.3", null, "1.4", null, "30.7", null, "1.6", null, "31.3", null, "1.6", null, "18.4", null, "1.4", null, "12.7", null, "1.2", null, "3.4", null, "0.9", null, "9.3", null, "1.1", null, "0.3", null, "0.2", null, "68.7", null, "1.6", null, "30.5", null, "1.5", null, "7.8", null, "1.0", null, "2.7", null, "0.7", null, "5.0", null, "0.7", null, "30.4", null, "1.5", null, "14.8", null, "1.2", null, "85.2", null, "1.2", null, "31.1", null, "1.3", null, "68.9", null, "1.3", null, "55.7", null, "1.5", null, "4.6", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "1.8", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "6.9", null, "0.9", null, "29.9", null, "1.6", null, "49.5", null, "1.2", null, "41.8", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.2", null, "1.0", null, "36.0", null, "2.1", null, "48.8", null, "2.0", null, "41654", null, "3558", null, "16265", null, "2126", null, "25389", null, "2993", null, "9766", null, "2247", null, "20644", null, "2815", null, "3601", null, "1136", null, "17043", null, "2613", null, "11244", null, "1934", null, "22365", null, "2696", null, "6402", null, "1958", null, "15549", null, "2375", null, "1845", null, "756", null, "13704", null, "2247", null, "414", null, "386", null, "19289", null, "2471", null, "3364", null, "1067", null, "5095", null, "1358", null, "1756", null, "860", null, "3339", null, "1007", null, "10830", null, "1883", null, "18722", null, "2536", null, "22932", null, "3207", null, "18414", null, "2563", null, "23240", null, "2681", null, "17934", null, "2544", null, "3029", null, "1200", null, "-999999999", "N", "-999999999", "N", "269", null, "376", null, "-999999999", "N", "-999999999", "N", "3350", null, "1065", null, "17042", null, "2683", null, "28885", null, "3083", null, "8084", null, "1570", null, "30201", null, "5900", null, "30410", null, "3078", null, "6782", null, "1542", null, "14590", null, "2642", null, "9038", null, "2108", null, "13.8", null, "1.2", null, "39.0", null, "4.3", null, "61.0", null, "4.3", null, "23.4", null, "5.0", null, "49.6", null, "5.4", null, "8.6", null, "2.7", null, "40.9", null, "5.0", null, "27.0", null, "4.0", null, "53.7", null, "4.5", null, "15.4", null, "4.5", null, "37.3", null, "4.7", null, "4.4", null, "1.8", null, "32.9", null, "4.5", null, "1.0", null, "0.9", null, "46.3", null, "4.5", null, "8.1", null, "2.5", null, "12.2", null, "3.1", null, "4.2", null, "2.1", null, "8.0", null, "2.3", null, "26.0", null, "3.9", null, "44.9", null, "5.4", null, "55.1", null, "5.4", null, "44.2", null, "4.7", null, "55.8", null, "4.7", null, "43.1", null, "5.1", null, "7.3", null, "2.8", null, "-999999999.0", "N", "-999999999.0", "N", "0.6", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "8.0", null, "2.6", null, "40.9", null, "5.1", null, "69.3", null, "4.4", null, "19.4", null, "3.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "22.3", null, "4.9", null, "48.0", null, "6.5", null, "29.7", null, "6.5", null, "260126", null, "5240", null, "114156", null, "3511", null, "145970", null, "4804", null, "137698", null, "5938", null, "40975", null, "3863", null, "14867", null, "2878", null, "26108", null, "3379", null, "81453", null, "4799", null, "72189", null, "4886", null, "49036", null, "4178", null, "22662", null, "2928", null, "8365", null, "2343", null, "14297", null, "2358", null, "491", null, "415", null, "187937", null, "5687", null, "88662", null, "4452", null, "18313", null, "2625", null, "6502", null, "1984", null, "11811", null, "1917", null, "80962", null, "4729", null, "25903", null, "3174", null, "234223", null, "5071", null, "75535", null, "4246", null, "184591", null, "4992", null, "150193", null, "5113", null, "10797", null, "2123", null, "-999999999", "N", "-999999999", "N", "5142", null, "878", null, "-999999999", "N", "-999999999", "N", "17358", null, "2853", null, "73328", null, "4584", null, "120436", null, "4632", null, "117921", null, "3766", null, "74383", null, "3385", null, "178673", null, "5871", null, "25061", null, "1859", null, "60719", null, "4018", null, "92893", null, "5111", null, "86.2", null, "1.2", null, "43.9", null, "1.2", null, "56.1", null, "1.2", null, "52.9", null, "2.0", null, "15.8", null, "1.4", null, "5.7", null, "1.1", null, "10.0", null, "1.3", null, "31.3", null, "1.7", null, "27.8", null, "1.7", null, "18.9", null, "1.5", null, "8.7", null, "1.1", null, "3.2", null, "0.9", null, "5.5", null, "0.9", null, "0.2", null, "0.2", null, "72.2", null, "1.7", null, "34.1", null, "1.6", null, "7.0", null, "1.0", null, "2.5", null, "0.8", null, "4.5", null, "0.7", null, "31.1", null, "1.7", null, "10.0", null, "1.2", null, "90.0", null, "1.2", null, "29.0", null, "1.5", null, "71.0", null, "1.5", null, "57.7", null, "1.7", null, "4.2", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "2.0", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "6.7", null, "1.1", null, "28.2", null, "1.7", null, "46.3", null, "1.3", null, "45.3", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.0", null, "1.0", null, "34.0", null, "2.1", null, "52.0", null, "2.0", null, "48", "27"], ["5001900US4828", "Congressional District 28 (119th Congress), Texas", "270255", null, "6218", null, "105121", null, "4006", null, "165134", null, "5384", null, "128007", null, "4868", null, "68797", null, "4098", null, "15161", null, "2305", null, "53636", null, "3767", null, "73451", null, "4714", null, "108554", null, "5405", null, "64643", null, "4555", null, "43743", null, "3552", null, "7795", null, "1577", null, "35948", null, "3273", null, "168", null, "192", null, "161701", null, "6069", null, "63364", null, "3847", null, "25054", null, "2911", null, "7366", null, "1593", null, "17688", null, "2670", null, "73283", null, "4727", null, "52078", null, "3931", null, "218177", null, "6278", null, "94410", null, "5036", null, "175845", null, "5680", null, "106618", null, "4812", null, "15071", null, "2303", null, "3505", null, "1317", null, "3677", null, "1267", null, "-999999999", "N", "-999999999", "N", "34860", null, "3732", null, "106524", null, "4971", null, "186667", null, "5649", null, "60654", null, "4063", null, "64511", null, "3358", null, "196804", null, "5481", null, "23851", null, "2334", null, "69167", null, "4796", null, "103786", null, "4852", null, "-888888888", "(X)", "-888888888", "(X)", "38.9", null, "1.3", null, "61.1", null, "1.3", null, "47.4", null, "1.6", null, "25.5", null, "1.4", null, "5.6", null, "0.9", null, "19.8", null, "1.2", null, "27.2", null, "1.5", null, "40.2", null, "1.8", null, "23.9", null, "1.6", null, "16.2", null, "1.2", null, "2.9", null, "0.6", null, "13.3", null, "1.2", null, "0.1", null, "0.1", null, "59.8", null, "1.8", null, "23.4", null, "1.4", null, "9.3", null, "1.1", null, "2.7", null, "0.6", null, "6.5", null, "1.0", null, "27.1", null, "1.5", null, "19.3", null, "1.4", null, "80.7", null, "1.4", null, "34.9", null, "1.6", null, "65.1", null, "1.6", null, "39.5", null, "1.5", null, "5.6", null, "0.8", null, "1.3", null, "0.5", null, "1.4", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "12.9", null, "1.3", null, "39.4", null, "1.8", null, "69.1", null, "1.6", null, "22.4", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.1", null, "1.2", null, "35.1", null, "2.1", null, "52.7", null, "2.0", null, "45610", null, "3117", null, "17841", null, "2239", null, "27769", null, "3033", null, "12786", null, "2315", null, "21693", null, "2057", null, "3009", null, "922", null, "18684", null, "1911", null, "11131", null, "2008", null, "25815", null, "2609", null, "9186", null, "2089", null, "16629", null, "1930", null, "1742", null, "727", null, "14887", null, "1853", null, "0", null, "242", null, "19795", null, "2276", null, "3600", null, "957", null, "5064", null, "1194", null, "1267", null, "546", null, "3797", null, "1036", null, "11131", null, "2008", null, "24342", null, "2217", null, "21268", null, "2750", null, "24507", null, "2593", null, "21103", null, "2606", null, "12710", null, "1633", null, "2747", null, "1009", null, "621", null, "514", null, "404", null, "352", null, "-999999999", "N", "-999999999", "N", "7364", null, "1660", null, "21764", null, "2889", null, "39557", null, "3113", null, "2712", null, "795", null, "26001", null, "3734", null, "34479", null, "2813", null, "6430", null, "1375", null, "17816", null, "2275", null, "10233", null, "2126", null, "16.9", null, "1.1", null, "39.1", null, "4.6", null, "60.9", null, "4.6", null, "28.0", null, "4.2", null, "47.6", null, "4.4", null, "6.6", null, "2.0", null, "41.0", null, "4.3", null, "24.4", null, "3.9", null, "56.6", null, "4.1", null, "20.1", null, "4.0", null, "36.5", null, "4.1", null, "3.8", null, "1.6", null, "32.6", null, "4.0", null, "0.0", null, "0.5", null, "43.4", null, "4.1", null, "7.9", null, "2.0", null, "11.1", null, "2.7", null, "2.8", null, "1.2", null, "8.3", null, "2.3", null, "24.4", null, "3.9", null, "53.4", null, "4.3", null, "46.6", null, "4.3", null, "53.7", null, "4.6", null, "46.3", null, "4.6", null, "27.9", null, "3.5", null, "6.0", null, "2.2", null, "1.4", null, "1.1", null, "0.9", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "16.1", null, "3.5", null, "47.7", null, "5.0", null, "86.7", null, "2.6", null, "5.9", null, "1.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.6", null, "3.8", null, "51.7", null, "5.4", null, "29.7", null, "5.4", null, "224645", null, "6419", null, "87280", null, "3786", null, "137365", null, "5306", null, "115221", null, "5000", null, "47104", null, "4050", null, "12152", null, "2192", null, "34952", null, "3554", null, "62320", null, "4011", null, "82739", null, "5486", null, "55457", null, "4825", null, "27114", null, "3202", null, "6053", null, "1486", null, "21061", null, "2929", null, "168", null, "192", null, "141906", null, "5332", null, "59764", null, "3623", null, "19990", null, "2696", null, "6099", null, "1564", null, "13891", null, "2398", null, "62152", null, "4010", null, "27736", null, "3317", null, "196909", null, "6279", null, "69903", null, "4485", null, "154742", null, "6143", null, "93908", null, "5000", null, "12324", null, "2180", null, "2884", null, "1137", null, "3273", null, "1249", null, "-999999999", "N", "-999999999", "N", "27496", null, "3221", null, "84760", null, "4538", null, "147110", null, "5591", null, "57942", null, "3993", null, "73190", null, "2918", null, "162325", null, "5470", null, "17421", null, "1803", null, "51351", null, "4041", null, "93553", null, "4550", null, "83.1", null, "1.1", null, "38.9", null, "1.4", null, "61.1", null, "1.4", null, "51.3", null, "1.9", null, "21.0", null, "1.7", null, "5.4", null, "1.0", null, "15.6", null, "1.4", null, "27.7", null, "1.5", null, "36.8", null, "2.0", null, "24.7", null, "1.9", null, "12.1", null, "1.3", null, "2.7", null, "0.7", null, "9.4", null, "1.2", null, "0.1", null, "0.1", null, "63.2", null, "2.0", null, "26.6", null, "1.7", null, "8.9", null, "1.2", null, "2.7", null, "0.7", null, "6.2", null, "1.0", null, "27.7", null, "1.5", null, "12.3", null, "1.4", null, "87.7", null, "1.4", null, "31.1", null, "1.8", null, "68.9", null, "1.8", null, "41.8", null, "1.8", null, "5.5", null, "0.9", null, "1.3", null, "0.5", null, "1.5", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "12.2", null, "1.4", null, "37.7", null, "1.9", null, "65.5", null, "1.8", null, "25.8", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.7", null, "1.1", null, "31.6", null, "2.1", null, "57.6", null, "2.1", null, "48", "28"], ["5001900US4829", "Congressional District 29 (119th Congress), Texas", "247741", null, "7885", null, "88822", null, "5213", null, "158919", null, "7245", null, "97749", null, "5331", null, "71769", null, "5609", null, "27312", null, "3977", null, "44457", null, "4626", null, "78223", null, "5290", null, "94510", null, "6148", null, "48391", null, "4714", null, "45864", null, "4511", null, "14639", null, "3228", null, "31225", null, "3655", null, "255", null, "313", null, "153231", null, "6788", null, "49358", null, "3642", null, "25905", null, "3173", null, "12673", null, "2409", null, "13232", null, "2130", null, "77968", null, "5255", null, "57075", null, "4710", null, "190666", null, "7483", null, "74358", null, "5104", null, "173383", null, "7840", null, "58010", null, "3951", null, "43874", null, "5846", null, "2491", null, "701", null, "6082", null, "1383", null, "-999999999", "N", "-999999999", "N", "48590", null, "4107", null, "88664", null, "5612", null, "169236", null, "6724", null, "24649", null, "2806", null, "54102", null, "3316", null, "169518", null, "7052", null, "20877", null, "3079", null, "64311", null, "5292", null, "84330", null, "5539", null, "-888888888", "(X)", "-888888888", "(X)", "35.9", null, "1.9", null, "64.1", null, "1.9", null, "39.5", null, "1.9", null, "29.0", null, "2.0", null, "11.0", null, "1.5", null, "17.9", null, "1.8", null, "31.6", null, "1.9", null, "38.1", null, "2.1", null, "19.5", null, "1.8", null, "18.5", null, "1.7", null, "5.9", null, "1.3", null, "12.6", null, "1.4", null, "0.1", null, "0.1", null, "61.9", null, "2.1", null, "19.9", null, "1.4", null, "10.5", null, "1.2", null, "5.1", null, "0.9", null, "5.3", null, "0.8", null, "31.5", null, "1.9", null, "23.0", null, "1.8", null, "77.0", null, "1.8", null, "30.0", null, "2.0", null, "70.0", null, "2.0", null, "23.4", null, "1.5", null, "17.7", null, "2.1", null, "1.0", null, "0.3", null, "2.5", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "19.6", null, "1.6", null, "35.8", null, "2.0", null, "68.3", null, "2.0", null, "9.9", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.3", null, "1.7", null, "37.9", null, "2.7", null, "49.7", null, "2.6", null, "46496", null, "4646", null, "16790", null, "2444", null, "29706", null, "3680", null, "11783", null, "2083", null, "21816", null, "3395", null, "6132", null, "1879", null, "15684", null, "2775", null, "12897", null, "2292", null, "26787", null, "3534", null, "8405", null, "1787", null, "18382", null, "3084", null, "4389", null, "1502", null, "13993", null, "2624", null, "0", null, "242", null, "19709", null, "2804", null, "3378", null, "1282", null, "3434", null, "1141", null, "1743", null, "901", null, "1691", null, "793", null, "12897", null, "2292", null, "22790", null, "2932", null, "23706", null, "3555", null, "21964", null, "2929", null, "24532", null, "3155", null, "10467", null, "1930", null, "10205", null, "2348", null, "213", null, "218", null, "370", null, "355", null, "-999999999", "N", "-999999999", "N", "7883", null, "1553", null, "17358", null, "3203", null, "32595", null, "4036", null, "2851", null, "1012", null, "29148", null, "3766", null, "33599", null, "4105", null, "5811", null, "1576", null, "17921", null, "3344", null, "9867", null, "2246", null, "18.8", null, "1.8", null, "36.1", null, "4.2", null, "63.9", null, "4.2", null, "25.3", null, "3.9", null, "46.9", null, "4.9", null, "13.2", null, "3.5", null, "33.7", null, "5.0", null, "27.7", null, "4.4", null, "57.6", null, "4.6", null, "18.1", null, "3.5", null, "39.5", null, "4.9", null, "9.4", null, "2.9", null, "30.1", null, "4.8", null, "0.0", null, "0.5", null, "42.4", null, "4.6", null, "7.3", null, "2.7", null, "7.4", null, "2.3", null, "3.7", null, "1.9", null, "3.6", null, "1.6", null, "27.7", null, "4.4", null, "49.0", null, "4.9", null, "51.0", null, "4.9", null, "47.2", null, "4.2", null, "52.8", null, "4.2", null, "22.5", null, "3.7", null, "21.9", null, "4.5", null, "0.5", null, "0.5", null, "0.8", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "17.0", null, "3.3", null, "37.3", null, "5.1", null, "70.1", null, "4.7", null, "6.1", null, "2.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.3", null, "4.4", null, "53.3", null, "7.3", null, "29.4", null, "5.6", null, "201245", null, "7643", null, "72032", null, "4829", null, "129213", null, "7287", null, "85966", null, "5236", null, "49953", null, "4916", null, "21180", null, "3460", null, "28773", null, "4161", null, "65326", null, "5087", null, "67723", null, "5443", null, "39986", null, "4639", null, "27482", null, "3717", null, "10250", null, "2654", null, "17232", null, "3173", null, "255", null, "313", null, "133522", null, "6633", null, "45980", null, "3312", null, "22471", null, "2955", null, "10930", null, "2192", null, "11541", null, "2098", null, "65071", null, "5052", null, "34285", null, "3814", null, "166960", null, "7125", null, "52394", null, "4016", null, "148851", null, "7546", null, "47543", null, "3516", null, "33669", null, "5462", null, "2278", null, "659", null, "5712", null, "1344", null, "-999999999", "N", "-999999999", "N", "40707", null, "3828", null, "71306", null, "4857", null, "136641", null, "6089", null, "21798", null, "2450", null, "61546", null, "2155", null, "135919", null, "6470", null, "15066", null, "2757", null, "46390", null, "4326", null, "74463", null, "5329", null, "81.2", null, "1.8", null, "35.8", null, "2.2", null, "64.2", null, "2.2", null, "42.7", null, "2.3", null, "24.8", null, "2.1", null, "10.5", null, "1.6", null, "14.3", null, "2.0", null, "32.5", null, "2.1", null, "33.7", null, "2.3", null, "19.9", null, "2.2", null, "13.7", null, "1.7", null, "5.1", null, "1.3", null, "8.6", null, "1.5", null, "0.1", null, "0.2", null, "66.3", null, "2.3", null, "22.8", null, "1.6", null, "11.2", null, "1.4", null, "5.4", null, "1.0", null, "5.7", null, "1.0", null, "32.3", null, "2.1", null, "17.0", null, "1.8", null, "83.0", null, "1.8", null, "26.0", null, "2.0", null, "74.0", null, "2.0", null, "23.6", null, "1.7", null, "16.7", null, "2.4", null, "1.1", null, "0.3", null, "2.8", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "20.2", null, "1.8", null, "35.4", null, "2.1", null, "67.9", null, "2.3", null, "10.8", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.1", null, "1.9", null, "34.1", null, "2.9", null, "54.8", null, "2.8", null, "48", "29"], ["5001900US4830", "Congressional District 30 (119th Congress), Texas", "295734", null, "7926", null, "103491", null, "4615", null, "192243", null, "8185", null, "105300", null, "5113", null, "70106", null, "5420", null, "17114", null, "3224", null, "52992", null, "5020", null, "120328", null, "7746", null, "83194", null, "5496", null, "43621", null, "4237", null, "38977", null, "4405", null, "7687", null, "1973", null, "31290", null, "4008", null, "596", null, "471", null, "212540", null, "7642", null, "61679", null, "4278", null, "31129", null, "3945", null, "9427", null, "2507", null, "21702", null, "3141", null, "119732", null, "7797", null, "39161", null, "5296", null, "256573", null, "8777", null, "79034", null, "5127", null, "216700", null, "8354", null, "86885", null, "5075", null, "121794", null, "6330", null, "2794", null, "1307", null, "14045", null, "2082", null, "-999999999", "N", "-999999999", "N", "24954", null, "4134", null, "45262", null, "4665", null, "82895", null, "5384", null, "66736", null, "4361", null, "77231", null, "3724", null, "175406", null, "6735", null, "20921", null, "3294", null, "57108", null, "5115", null, "97377", null, "5670", null, "-888888888", "(X)", "-888888888", "(X)", "35.0", null, "1.6", null, "65.0", null, "1.6", null, "35.6", null, "1.7", null, "23.7", null, "1.8", null, "5.8", null, "1.1", null, "17.9", null, "1.7", null, "40.7", null, "2.1", null, "28.1", null, "1.7", null, "14.8", null, "1.3", null, "13.2", null, "1.5", null, "2.6", null, "0.7", null, "10.6", null, "1.4", null, "0.2", null, "0.2", null, "71.9", null, "1.7", null, "20.9", null, "1.5", null, "10.5", null, "1.3", null, "3.2", null, "0.8", null, "7.3", null, "1.1", null, "40.5", null, "2.1", null, "13.2", null, "1.8", null, "86.8", null, "1.8", null, "26.7", null, "1.7", null, "73.3", null, "1.7", null, "29.4", null, "1.6", null, "41.2", null, "1.6", null, "0.9", null, "0.4", null, "4.7", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "8.4", null, "1.4", null, "15.3", null, "1.6", null, "28.0", null, "1.8", null, "22.6", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.9", null, "1.8", null, "32.6", null, "2.5", null, "55.5", null, "2.8", null, "35850", null, "3954", null, "13746", null, "2581", null, "22104", null, "3233", null, "8122", null, "1506", null, "19107", null, "3405", null, "3241", null, "1594", null, "15866", null, "3110", null, "8621", null, "2383", null, "19607", null, "3201", null, "6400", null, "1489", null, "13207", null, "2993", null, "1947", null, "1351", null, "11260", null, "2723", null, "0", null, "242", null, "16243", null, "2762", null, "1722", null, "614", null, "5900", null, "1717", null, "1294", null, "808", null, "4606", null, "1509", null, "8621", null, "2383", null, "14577", null, "3079", null, "21273", null, "2827", null, "19199", null, "3321", null, "16651", null, "2846", null, "4222", null, "1443", null, "23681", null, "3480", null, "286", null, "303", null, "500", null, "387", null, "-999999999", "N", "-999999999", "N", "3391", null, "1283", null, "3770", null, "1287", null, "8878", null, "2043", null, "1981", null, "826", null, "32219", null, "9629", null, "27229", null, "3786", null, "7305", null, "2370", null, "11244", null, "2419", null, "8680", null, "1850", null, "12.1", null, "1.3", null, "38.3", null, "5.9", null, "61.7", null, "5.9", null, "22.7", null, "3.5", null, "53.3", null, "7.3", null, "9.0", null, "4.3", null, "44.3", null, "7.0", null, "24.0", null, "6.2", null, "54.7", null, "6.2", null, "17.9", null, "3.7", null, "36.8", null, "7.1", null, "5.4", null, "3.7", null, "31.4", null, "6.7", null, "0.0", null, "0.7", null, "45.3", null, "6.2", null, "4.8", null, "1.7", null, "16.5", null, "4.5", null, "3.6", null, "2.3", null, "12.8", null, "4.0", null, "24.0", null, "6.2", null, "40.7", null, "6.3", null, "59.3", null, "6.3", null, "53.6", null, "6.6", null, "46.4", null, "6.6", null, "11.8", null, "3.8", null, "66.1", null, "5.4", null, "0.8", null, "0.8", null, "1.4", null, "1.1", null, "-999999999.0", "N", "-999999999.0", "N", "9.5", null, "3.6", null, "10.5", null, "3.6", null, "24.8", null, "5.3", null, "5.5", null, "2.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "26.8", null, "7.1", null, "41.3", null, "6.9", null, "31.9", null, "6.3", null, "259884", null, "8376", null, "89745", null, "4515", null, "170139", null, "8304", null, "97178", null, "5041", null, "50999", null, "4189", null, "13873", null, "2842", null, "37126", null, "3933", null, "111707", null, "7383", null, "63587", null, "4854", null, "37221", null, "3759", null, "25770", null, "3139", null, "5740", null, "1337", null, "20030", null, "2962", null, "596", null, "471", null, "196297", null, "7627", null, "59957", null, "4278", null, "25229", null, "3462", null, "8133", null, "2449", null, "17096", null, "2610", null, "111111", null, "7425", null, "24584", null, "3773", null, "235300", null, "9086", null, "59835", null, "4308", null, "200049", null, "8317", null, "82663", null, "5041", null, "98113", null, "6331", null, "2508", null, "1261", null, "13545", null, "2099", null, "-999999999", "N", "-999999999", "N", "21563", null, "4050", null, "41492", null, "4740", null, "74017", null, "5589", null, "64755", null, "4319", null, "81658", null, "1964", null, "148177", null, "6331", null, "13616", null, "2040", null, "45864", null, "4580", null, "88697", null, "5596", null, "87.9", null, "1.3", null, "34.5", null, "1.8", null, "65.5", null, "1.8", null, "37.4", null, "1.8", null, "19.6", null, "1.6", null, "5.3", null, "1.1", null, "14.3", null, "1.5", null, "43.0", null, "2.1", null, "24.5", null, "1.7", null, "14.3", null, "1.3", null, "9.9", null, "1.2", null, "2.2", null, "0.5", null, "7.7", null, "1.1", null, "0.2", null, "0.2", null, "75.5", null, "1.7", null, "23.1", null, "1.7", null, "9.7", null, "1.3", null, "3.1", null, "0.9", null, "6.6", null, "1.0", null, "42.8", null, "2.2", null, "9.5", null, "1.5", null, "90.5", null, "1.5", null, "23.0", null, "1.6", null, "77.0", null, "1.6", null, "31.8", null, "1.9", null, "37.8", null, "1.8", null, "1.0", null, "0.5", null, "5.2", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "8.3", null, "1.5", null, "16.0", null, "1.8", null, "28.5", null, "2.1", null, "24.9", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "9.2", null, "1.3", null, "31.0", null, "2.7", null, "59.9", null, "2.8", null, "48", "30"], ["5001900US4831", "Congressional District 31 (119th Congress), Texas", "323920", null, "5536", null, "121707", null, "4603", null, "202213", null, "5551", null, "183451", null, "5258", null, "49848", null, "3976", null, "16382", null, "2382", null, "33466", null, "3454", null, "90621", null, "4866", null, "121705", null, "4778", null, "90234", null, "4306", null, "30287", null, "3450", null, "8671", null, "1671", null, "21616", null, "3130", null, "1184", null, "841", null, "202215", null, "5720", null, "93217", null, "3532", null, "19561", null, "2544", null, "7711", null, "1757", null, "11850", null, "1948", null, "89437", null, "4856", null, "29416", null, "3784", null, "294504", null, "6409", null, "89184", null, "5291", null, "234736", null, "6853", null, "221298", null, "6053", null, "24211", null, "2594", null, "1872", null, "824", null, "21823", null, "1988", null, "-999999999", "N", "-999999999", "N", "17485", null, "2608", null, "36740", null, "3593", null, "61958", null, "3204", null, "203830", null, "5292", null, "96045", null, "3046", null, "233299", null, "5152", null, "31659", null, "2758", null, "69960", null, "4490", null, "131680", null, "5065", null, "-888888888", "(X)", "-888888888", "(X)", "37.6", null, "1.3", null, "62.4", null, "1.3", null, "56.6", null, "1.4", null, "15.4", null, "1.2", null, "5.1", null, "0.7", null, "10.3", null, "1.1", null, "28.0", null, "1.3", null, "37.6", null, "1.4", null, "27.9", null, "1.3", null, "9.4", null, "1.0", null, "2.7", null, "0.5", null, "6.7", null, "1.0", null, "0.4", null, "0.3", null, "62.4", null, "1.4", null, "28.8", null, "1.0", null, "6.0", null, "0.8", null, "2.4", null, "0.5", null, "3.7", null, "0.6", null, "27.6", null, "1.3", null, "9.1", null, "1.2", null, "90.9", null, "1.2", null, "27.5", null, "1.6", null, "72.5", null, "1.6", null, "68.3", null, "1.4", null, "7.5", null, "0.8", null, "0.6", null, "0.3", null, "6.7", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "5.4", null, "0.8", null, "11.3", null, "1.1", null, "19.1", null, "0.9", null, "62.9", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.6", null, "1.1", null, "30.0", null, "1.8", null, "56.4", null, "1.8", null, "19797", null, "2602", null, "7540", null, "1382", null, "12257", null, "2308", null, "6432", null, "1543", null, "8575", null, "2173", null, "1871", null, "980", null, "6704", null, "1913", null, "4790", null, "1142", null, "10962", null, "2433", null, "4488", null, "1400", null, "6438", null, "2069", null, "1111", null, "773", null, "5327", null, "1905", null, "36", null, "59", null, "8835", null, "1472", null, "1944", null, "644", null, "2137", null, "812", null, "760", null, "509", null, "1377", null, "643", null, "4754", null, "1150", null, "8181", null, "1929", null, "11616", null, "2148", null, "11373", null, "1792", null, "8424", null, "1777", null, "11020", null, "1892", null, "4392", null, "1630", null, "307", null, "326", null, "386", null, "294", null, "-999999999", "N", "-999999999", "N", "1122", null, "507", null, "2570", null, "721", null, "4920", null, "1347", null, "9542", null, "1660", null, "34438", null, "4036", null, "15007", null, "2612", null, "2793", null, "1052", null, "7248", null, "2020", null, "4966", null, "1257", null, "6.1", null, "0.8", null, "38.1", null, "6.4", null, "61.9", null, "6.4", null, "32.5", null, "6.5", null, "43.3", null, "8.1", null, "9.5", null, "4.8", null, "33.9", null, "7.5", null, "24.2", null, "6.0", null, "55.4", null, "7.5", null, "22.7", null, "6.4", null, "32.5", null, "8.2", null, "5.6", null, "3.8", null, "26.9", null, "8.1", null, "0.2", null, "0.3", null, "44.6", null, "7.5", null, "9.8", null, "3.1", null, "10.8", null, "4.2", null, "3.8", null, "2.6", null, "7.0", null, "3.2", null, "24.0", null, "6.0", null, "41.3", null, "7.9", null, "58.7", null, "7.9", null, "57.4", null, "6.2", null, "42.6", null, "6.2", null, "55.7", null, "7.3", null, "22.2", null, "6.9", null, "1.6", null, "1.7", null, "1.9", null, "1.5", null, "-999999999.0", "N", "-999999999.0", "N", "5.7", null, "2.5", null, "13.0", null, "3.6", null, "24.9", null, "5.9", null, "48.2", null, "6.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.6", null, "6.5", null, "48.3", null, "8.9", null, "33.1", null, "7.4", null, "304123", null, "6208", null, "114167", null, "4508", null, "189956", null, "6052", null, "177019", null, "5326", null, "41273", null, "3796", null, "14511", null, "2376", null, "26762", null, "3075", null, "85831", null, "4458", null, "110743", null, "5233", null, "85746", null, "4187", null, "23849", null, "3418", null, "7560", null, "1751", null, "16289", null, "2734", null, "1148", null, "836", null, "193380", null, "5617", null, "91273", null, "3573", null, "17424", null, "2531", null, "6951", null, "1744", null, "10473", null, "1970", null, "84683", null, "4443", null, "21235", null, "3153", null, "282888", null, "6700", null, "77811", null, "4557", null, "226312", null, "7070", null, "210278", null, "6081", null, "19819", null, "2758", null, "1565", null, "758", null, "21437", null, "1933", null, "-999999999", "N", "-999999999", "N", "16363", null, "2568", null, "34170", null, "3507", null, "57038", null, "3329", null, "194288", null, "5412", null, "99982", null, "2486", null, "218292", null, "5504", null, "28866", null, "2774", null, "62712", null, "4367", null, "126714", null, "4872", null, "93.9", null, "0.8", null, "37.5", null, "1.4", null, "62.5", null, "1.4", null, "58.2", null, "1.5", null, "13.6", null, "1.2", null, "4.8", null, "0.8", null, "8.8", null, "1.0", null, "28.2", null, "1.3", null, "36.4", null, "1.5", null, "28.2", null, "1.3", null, "7.8", null, "1.1", null, "2.5", null, "0.6", null, "5.4", null, "0.9", null, "0.4", null, "0.3", null, "63.6", null, "1.5", null, "30.0", null, "1.1", null, "5.7", null, "0.9", null, "2.3", null, "0.6", null, "3.4", null, "0.7", null, "27.8", null, "1.3", null, "7.0", null, "1.0", null, "93.0", null, "1.0", null, "25.6", null, "1.5", null, "74.4", null, "1.5", null, "69.1", null, "1.5", null, "6.5", null, "0.9", null, "0.5", null, "0.2", null, "7.0", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "5.4", null, "0.8", null, "11.2", null, "1.2", null, "18.8", null, "1.0", null, "63.9", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.2", null, "1.2", null, "28.7", null, "1.8", null, "58.0", null, "1.8", null, "48", "31"], ["5001900US4832", "Congressional District 32 (119th Congress), Texas", "322368", null, "9354", null, "86214", null, "5037", null, "236154", null, "9112", null, "109698", null, "6573", null, "52922", null, "5806", null, "13489", null, "3048", null, "39433", null, "4350", null, "159748", null, "8357", null, "79937", null, "6253", null, "50431", null, "4685", null, "27430", null, "4816", null, "5226", null, "1964", null, "22204", null, "4153", null, "2076", null, "1708", null, "242431", null, "9009", null, "59267", null, "4546", null, "25492", null, "3935", null, "8263", null, "2257", null, "17229", null, "3123", null, "157672", null, "8181", null, "43382", null, "4947", null, "278986", null, "9234", null, "58827", null, "5057", null, "263541", null, "10084", null, "136629", null, "6132", null, "74053", null, "6446", null, "2071", null, "1177", null, "28733", null, "3347", null, "-999999999", "N", "-999999999", "N", "25987", null, "3799", null, "54672", null, "5164", null, "82866", null, "6157", null, "124690", null, "6135", null, "72478", null, "2332", null, "162620", null, "7787", null, "13141", null, "1914", null, "49386", null, "4640", null, "100093", null, "5743", null, "-888888888", "(X)", "-888888888", "(X)", "26.7", null, "1.5", null, "73.3", null, "1.5", null, "34.0", null, "2.0", null, "16.4", null, "1.7", null, "4.2", null, "0.9", null, "12.2", null, "1.3", null, "49.6", null, "2.0", null, "24.8", null, "1.8", null, "15.6", null, "1.4", null, "8.5", null, "1.5", null, "1.6", null, "0.6", null, "6.9", null, "1.3", null, "0.6", null, "0.5", null, "75.2", null, "1.8", null, "18.4", null, "1.4", null, "7.9", null, "1.2", null, "2.6", null, "0.7", null, "5.3", null, "1.0", null, "48.9", null, "2.0", null, "13.5", null, "1.5", null, "86.5", null, "1.5", null, "18.2", null, "1.6", null, "81.8", null, "1.6", null, "42.4", null, "1.7", null, "23.0", null, "1.9", null, "0.6", null, "0.4", null, "8.9", null, "1.0", null, "-999999999.0", "N", "-999999999.0", "N", "8.1", null, "1.2", null, "17.0", null, "1.5", null, "25.7", null, "1.7", null, "38.7", null, "1.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "8.1", null, "1.1", null, "30.4", null, "2.2", null, "61.6", null, "2.3", null, "29965", null, "3968", null, "10044", null, "1785", null, "19921", null, "3553", null, "7744", null, "2062", null, "11726", null, "2714", null, "2392", null, "1345", null, "9334", null, "2339", null, "10495", null, "2446", null, "15503", null, "3190", null, "6830", null, "2025", null, "7994", null, "2521", null, "1033", null, "1062", null, "6961", null, "2146", null, "679", null, "999", null, "14462", null, "2417", null, "914", null, "454", null, "3732", null, "1390", null, "1359", null, "956", null, "2373", null, "974", null, "9816", null, "2193", null, "11803", null, "2337", null, "18162", null, "3400", null, "12128", null, "2628", null, "17837", null, "3469", null, "6341", null, "1812", null, "13433", null, "2868", null, "937", null, "1033", null, "1189", null, "655", null, "-999999999", "N", "-999999999", "N", "2513", null, "1205", null, "5552", null, "1811", null, "10748", null, "2554", null, "3945", null, "1276", null, "36657", null, "7060", null, "19470", null, "3204", null, "2017", null, "901", null, "11001", null, "2412", null, "6452", null, "1701", null, "9.3", null, "1.2", null, "33.5", null, "5.7", null, "66.5", null, "5.7", null, "25.8", null, "6.1", null, "39.1", null, "7.4", null, "8.0", null, "4.4", null, "31.1", null, "6.7", null, "35.0", null, "6.6", null, "51.7", null, "6.7", null, "22.8", null, "6.0", null, "26.7", null, "7.1", null, "3.4", null, "3.5", null, "23.2", null, "6.1", null, "2.3", null, "3.3", null, "48.3", null, "6.7", null, "3.1", null, "1.6", null, "12.5", null, "4.8", null, "4.5", null, "3.2", null, "7.9", null, "3.4", null, "32.8", null, "6.1", null, "39.4", null, "6.8", null, "60.6", null, "6.8", null, "40.5", null, "7.7", null, "59.5", null, "7.7", null, "21.2", null, "5.5", null, "44.8", null, "7.3", null, "3.1", null, "3.4", null, "4.0", null, "2.3", null, "-999999999.0", "N", "-999999999.0", "N", "8.4", null, "4.0", null, "18.5", null, "5.3", null, "35.9", null, "6.8", null, "13.2", null, "3.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.4", null, "4.4", null, "56.5", null, "7.7", null, "33.1", null, "7.2", null, "292403", null, "9602", null, "76170", null, "4835", null, "216233", null, "8945", null, "101954", null, "6193", null, "41196", null, "4712", null, "11097", null, "2575", null, "30099", null, "3442", null, "149253", null, "8876", null, "64434", null, "5679", null, "43601", null, "4422", null, "19436", null, "3780", null, "4193", null, "1547", null, "15243", null, "3131", null, "1397", null, "1436", null, "227969", null, "9466", null, "58353", null, "4500", null, "21760", null, "3461", null, "6904", null, "2001", null, "14856", null, "2760", null, "147856", null, "8698", null, "31579", null, "4683", null, "260824", null, "8990", null, "46699", null, "4137", null, "245704", null, "9821", null, "130288", null, "6160", null, "60620", null, "6036", null, "1134", null, "646", null, "27544", null, "3263", null, "-999999999", "N", "-999999999", "N", "23474", null, "3882", null, "49120", null, "4959", null, "72118", null, "6137", null, "120745", null, "6250", null, "76543", null, "2498", null, "143150", null, "7020", null, "11124", null, "1883", null, "38385", null, "4113", null, "93641", null, "5695", null, "90.7", null, "1.2", null, "26.0", null, "1.5", null, "74.0", null, "1.5", null, "34.9", null, "2.1", null, "14.1", null, "1.5", null, "3.8", null, "0.9", null, "10.3", null, "1.2", null, "51.0", null, "2.2", null, "22.0", null, "1.8", null, "14.9", null, "1.5", null, "6.6", null, "1.3", null, "1.4", null, "0.5", null, "5.2", null, "1.1", null, "0.5", null, "0.5", null, "78.0", null, "1.8", null, "20.0", null, "1.5", null, "7.4", null, "1.2", null, "2.4", null, "0.7", null, "5.1", null, "0.9", null, "50.6", null, "2.2", null, "10.8", null, "1.5", null, "89.2", null, "1.5", null, "16.0", null, "1.4", null, "84.0", null, "1.4", null, "44.6", null, "1.8", null, "20.7", null, "2.0", null, "0.4", null, "0.2", null, "9.4", null, "1.1", null, "-999999999.0", "N", "-999999999.0", "N", "8.0", null, "1.3", null, "16.8", null, "1.6", null, "24.7", null, "1.9", null, "41.3", null, "1.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "7.8", null, "1.3", null, "26.8", null, "2.4", null, "65.4", null, "2.5", null, "48", "32"], ["5001900US4833", "Congressional District 33 (119th Congress), Texas", "267204", null, "8198", null, "90240", null, "5216", null, "176964", null, "7545", null, "107196", null, "6040", null, "70011", null, "4507", null, "22928", null, "2839", null, "47083", null, "3870", null, "89997", null, "6113", null, "93269", null, "5436", null, "53585", null, "4639", null, "38642", null, "3932", null, "10649", null, "2040", null, "27993", null, "3419", null, "1042", null, "879", null, "173935", null, "7793", null, "53611", null, "4331", null, "31369", null, "3528", null, "12279", null, "2461", null, "19090", null, "2462", null, "88955", null, "6037", null, "43396", null, "4470", null, "223808", null, "8277", null, "73886", null, "4461", null, "193318", null, "7668", null, "69885", null, "4381", null, "59697", null, "4002", null, "2894", null, "890", null, "22469", null, "2650", null, "-999999999", "N", "-999999999", "N", "48325", null, "4351", null, "63934", null, "4972", null, "129918", null, "5861", null, "46254", null, "3615", null, "66107", null, "2702", null, "177207", null, "6304", null, "15994", null, "2626", null, "59393", null, "4659", null, "101820", null, "6298", null, "-888888888", "(X)", "-888888888", "(X)", "33.8", null, "1.8", null, "66.2", null, "1.8", null, "40.1", null, "1.8", null, "26.2", null, "1.8", null, "8.6", null, "1.1", null, "17.6", null, "1.5", null, "33.7", null, "1.8", null, "34.9", null, "1.9", null, "20.1", null, "1.6", null, "14.5", null, "1.5", null, "4.0", null, "0.8", null, "10.5", null, "1.3", null, "0.4", null, "0.3", null, "65.1", null, "1.9", null, "20.1", null, "1.5", null, "11.7", null, "1.3", null, "4.6", null, "0.9", null, "7.1", null, "0.9", null, "33.3", null, "1.8", null, "16.2", null, "1.6", null, "83.8", null, "1.6", null, "27.7", null, "1.6", null, "72.3", null, "1.6", null, "26.2", null, "1.7", null, "22.3", null, "1.3", null, "1.1", null, "0.3", null, "8.4", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "18.1", null, "1.5", null, "23.9", null, "1.6", null, "48.6", null, "1.6", null, "17.3", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "9.0", null, "1.5", null, "33.5", null, "2.6", null, "57.5", null, "2.5", null, "34099", null, "4341", null, "14236", null, "2406", null, "19863", null, "3310", null, "9728", null, "2243", null, "14374", null, "2190", null, "1800", null, "714", null, "12574", null, "2156", null, "9997", null, "2214", null, "17151", null, "2859", null, "7023", null, "2085", null, "9827", null, "1842", null, "949", null, "607", null, "8878", null, "1760", null, "301", null, "491", null, "16948", null, "2868", null, "2705", null, "930", null, "4547", null, "1514", null, "851", null, "459", null, "3696", null, "1416", null, "9696", null, "2241", null, "15262", null, "2633", null, "18837", null, "3278", null, "17354", null, "2819", null, "16745", null, "2690", null, "6235", null, "1527", null, "13165", null, "2301", null, "640", null, "429", null, "333", null, "257", null, "-999999999", "N", "-999999999", "N", "5250", null, "1778", null, "8476", null, "1892", null, "15959", null, "3152", null, "3048", null, "996", null, "28885", null, "5107", null, "24102", null, "3138", null, "4212", null, "1327", null, "11873", null, "2265", null, "8017", null, "1976", null, "12.8", null, "1.6", null, "41.7", null, "5.4", null, "58.3", null, "5.4", null, "28.5", null, "5.4", null, "42.2", null, "5.0", null, "5.3", null, "2.2", null, "36.9", null, "4.9", null, "29.3", null, "4.6", null, "50.3", null, "5.5", null, "20.6", null, "5.3", null, "28.8", null, "4.4", null, "2.8", null, "1.7", null, "26.0", null, "4.4", null, "0.9", null, "1.4", null, "49.7", null, "5.5", null, "7.9", null, "2.6", null, "13.3", null, "4.4", null, "2.5", null, "1.5", null, "10.8", null, "4.0", null, "28.4", null, "4.8", null, "44.8", null, "5.8", null, "55.2", null, "5.8", null, "50.9", null, "5.0", null, "49.1", null, "5.0", null, "18.3", null, "4.2", null, "38.6", null, "4.9", null, "1.9", null, "1.3", null, "1.0", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "15.4", null, "4.5", null, "24.9", null, "4.3", null, "46.8", null, "5.8", null, "8.9", null, "3.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.5", null, "5.3", null, "49.3", null, "6.9", null, "33.3", null, "6.5", null, "233105", null, "8791", null, "76004", null, "4587", null, "157101", null, "7824", null, "97468", null, "5916", null, "55637", null, "4474", null, "21128", null, "2719", null, "34509", null, "3756", null, "80000", null, "6153", null, "76118", null, "5393", null, "46562", null, "4248", null, "28815", null, "3603", null, "9700", null, "2074", null, "19115", null, "2982", null, "741", null, "740", null, "156987", null, "7661", null, "50906", null, "4191", null, "26822", null, "3381", null, "11428", null, "2439", null, "15394", null, "2332", null, "79259", null, "6103", null, "28134", null, "3728", null, "204971", null, "8415", null, "56532", null, "4480", null, "176573", null, "8034", null, "63650", null, "4380", null, "46532", null, "4322", null, "2254", null, "789", null, "22136", null, "2626", null, "-999999999", "N", "-999999999", "N", "43075", null, "4168", null, "55458", null, "4782", null, "113959", null, "5780", null, "43206", null, "3622", null, "72022", null, "2745", null, "153105", null, "6925", null, "11782", null, "2145", null, "47520", null, "3980", null, "93803", null, "6269", null, "87.2", null, "1.6", null, "32.6", null, "1.8", null, "67.4", null, "1.8", null, "41.8", null, "2.0", null, "23.9", null, "1.9", null, "9.1", null, "1.1", null, "14.8", null, "1.6", null, "34.3", null, "2.1", null, "32.7", null, "2.0", null, "20.0", null, "1.6", null, "12.4", null, "1.5", null, "4.2", null, "0.9", null, "8.2", null, "1.3", null, "0.3", null, "0.3", null, "67.3", null, "2.0", null, "21.8", null, "1.6", null, "11.5", null, "1.4", null, "4.9", null, "1.0", null, "6.6", null, "1.0", null, "34.0", null, "2.1", null, "12.1", null, "1.5", null, "87.9", null, "1.5", null, "24.3", null, "1.8", null, "75.7", null, "1.8", null, "27.3", null, "2.0", null, "20.0", null, "1.6", null, "1.0", null, "0.3", null, "9.5", null, "1.0", null, "-999999999.0", "N", "-999999999.0", "N", "18.5", null, "1.6", null, "23.8", null, "1.8", null, "48.9", null, "1.6", null, "18.5", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "7.7", null, "1.4", null, "31.0", null, "2.4", null, "61.3", null, "2.6", null, "48", "33"], ["5001900US4834", "Congressional District 34 (119th Congress), Texas", "258417", null, "4578", null, "105205", null, "3456", null, "153212", null, "4736", null, "126600", null, "4808", null, "69330", null, "4435", null, "16645", null, "1883", null, "52685", null, "4035", null, "62487", null, "3911", null, "100474", null, "4475", null, "59693", null, "3666", null, "39764", null, "3788", null, "8234", null, "1604", null, "31530", null, "3297", null, "1017", null, "720", null, "157943", null, "5135", null, "66907", null, "4551", null, "29566", null, "2987", null, "8411", null, "1479", null, "21155", null, "2327", null, "61470", null, "3881", null, "62745", null, "4502", null, "195672", null, "5070", null, "82735", null, "4497", null, "175682", null, "5759", null, "85545", null, "4343", null, "-999999999", "N", "-999999999", "N", "1915", null, "769", null, "3083", null, "908", null, "-999999999", "N", "-999999999", "N", "22352", null, "2629", null, "143741", null, "4994", null, "224147", null, "4454", null, "28303", null, "1771", null, "54486", null, "2760", null, "195930", null, "4897", null, "30012", null, "2656", null, "64992", null, "4857", null, "100926", null, "4411", null, "-888888888", "(X)", "-888888888", "(X)", "40.7", null, "1.3", null, "59.3", null, "1.3", null, "49.0", null, "1.7", null, "26.8", null, "1.6", null, "6.4", null, "0.7", null, "20.4", null, "1.5", null, "24.2", null, "1.4", null, "38.9", null, "1.6", null, "23.1", null, "1.4", null, "15.4", null, "1.4", null, "3.2", null, "0.6", null, "12.2", null, "1.2", null, "0.4", null, "0.3", null, "61.1", null, "1.6", null, "25.9", null, "1.7", null, "11.4", null, "1.2", null, "3.3", null, "0.6", null, "8.2", null, "0.9", null, "23.8", null, "1.4", null, "24.3", null, "1.6", null, "75.7", null, "1.6", null, "32.0", null, "1.7", null, "68.0", null, "1.7", null, "33.1", null, "1.6", null, "-999999999.0", "N", "-999999999.0", "N", "0.7", null, "0.3", null, "1.2", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "8.6", null, "1.0", null, "55.6", null, "1.7", null, "86.7", null, "0.7", null, "11.0", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.3", null, "1.2", null, "33.2", null, "2.2", null, "51.5", null, "2.2", null, "62574", null, "3860", null, "28683", null, "2619", null, "33891", null, "3362", null, "20926", null, "2773", null, "26980", null, "3054", null, "4103", null, "1131", null, "22877", null, "2925", null, "14668", null, "2122", null, "33797", null, "3394", null, "14639", null, "2219", null, "18486", null, "2502", null, "2300", null, "832", null, "16186", null, "2461", null, "672", null, "607", null, "28777", null, "2750", null, "6287", null, "1462", null, "8494", null, "1729", null, "1803", null, "810", null, "6691", null, "1481", null, "13996", null, "1987", null, "33630", null, "2852", null, "28944", null, "3075", null, "31023", null, "3075", null, "31551", null, "3345", null, "17410", null, "2592", null, "-999999999", "N", "-999999999", "N", "182", null, "186", null, "0", null, "242", null, "-999999999", "N", "-999999999", "N", "7043", null, "1380", null, "37810", null, "3369", null, "59870", null, "3922", null, "2322", null, "875", null, "23494", null, "2102", null, "47906", null, "3728", null, "10866", null, "1964", null, "20151", null, "2659", null, "16889", null, "2521", null, "24.2", null, "1.5", null, "45.8", null, "3.7", null, "54.2", null, "3.7", null, "33.4", null, "3.9", null, "43.1", null, "3.9", null, "6.6", null, "1.8", null, "36.6", null, "3.9", null, "23.4", null, "3.2", null, "54.0", null, "3.8", null, "23.4", null, "3.1", null, "29.5", null, "3.5", null, "3.7", null, "1.4", null, "25.9", null, "3.4", null, "1.1", null, "1.0", null, "46.0", null, "3.8", null, "10.0", null, "2.3", null, "13.6", null, "2.6", null, "2.9", null, "1.3", null, "10.7", null, "2.3", null, "22.4", null, "3.0", null, "53.7", null, "3.6", null, "46.3", null, "3.6", null, "49.6", null, "4.1", null, "50.4", null, "4.1", null, "27.8", null, "3.8", null, "-999999999.0", "N", "-999999999.0", "N", "0.3", null, "0.3", null, "0.0", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "11.3", null, "2.1", null, "60.4", null, "3.9", null, "95.7", null, "1.5", null, "3.7", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "22.7", null, "3.8", null, "42.1", null, "4.4", null, "35.3", null, "4.4", null, "195843", null, "5260", null, "76522", null, "2854", null, "119321", null, "5003", null, "105674", null, "4416", null, "42350", null, "3299", null, "12542", null, "1866", null, "29808", null, "2947", null, "47819", null, "3746", null, "66677", null, "4308", null, "45054", null, "3375", null, "21278", null, "2968", null, "5934", null, "1428", null, "15344", null, "2452", null, "345", null, "345", null, "129166", null, "5069", null, "60620", null, "4127", null, "21072", null, "2445", null, "6608", null, "1317", null, "14464", null, "1935", null, "47474", null, "3737", null, "29115", null, "3365", null, "166728", null, "5179", null, "51712", null, "3472", null, "144131", null, "5512", null, "68135", null, "3610", null, "-999999999", "N", "-999999999", "N", "1733", null, "795", null, "3083", null, "908", null, "-999999999", "N", "-999999999", "N", "15309", null, "1958", null, "105931", null, "5067", null, "164277", null, "5100", null, "25981", null, "1646", null, "66175", null, "2465", null, "148024", null, "5108", null, "19146", null, "2009", null, "44841", null, "4273", null, "84037", null, "4324", null, "75.8", null, "1.5", null, "39.1", null, "1.5", null, "60.9", null, "1.5", null, "54.0", null, "1.8", null, "21.6", null, "1.6", null, "6.4", null, "1.0", null, "15.2", null, "1.4", null, "24.4", null, "1.8", null, "34.0", null, "2.0", null, "23.0", null, "1.7", null, "10.9", null, "1.4", null, "3.0", null, "0.7", null, "7.8", null, "1.2", null, "0.2", null, "0.2", null, "66.0", null, "2.0", null, "31.0", null, "1.9", null, "10.8", null, "1.3", null, "3.4", null, "0.7", null, "7.4", null, "1.0", null, "24.2", null, "1.7", null, "14.9", null, "1.6", null, "85.1", null, "1.6", null, "26.4", null, "1.7", null, "73.6", null, "1.7", null, "34.8", null, "1.8", null, "-999999999.0", "N", "-999999999.0", "N", "0.9", null, "0.4", null, "1.6", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "7.8", null, "1.0", null, "54.1", null, "1.8", null, "83.9", null, "0.9", null, "13.3", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.9", null, "1.3", null, "30.3", null, "2.5", null, "56.8", null, "2.6", null, "48", "34"], ["5001900US4835", "Congressional District 35 (119th Congress), Texas", "346181", null, "8896", null, "90832", null, "4969", null, "255349", null, "8407", null, "127098", null, "7497", null, "66538", null, "5269", null, "22307", null, "3378", null, "44231", null, "4478", null, "152545", null, "6992", null, "104392", null, "7106", null, "63342", null, "6530", null, "40691", null, "4946", null, "12545", null, "2928", null, "28146", null, "4027", null, "359", null, "251", null, "241789", null, "8052", null, "63756", null, "5006", null, "25847", null, "3149", null, "9762", null, "2077", null, "16085", null, "2523", null, "152186", null, "7020", null, "52228", null, "4893", null, "293953", null, "9661", null, "95801", null, "6086", null, "250380", null, "9084", null, "157831", null, "7753", null, "42245", null, "4320", null, "5409", null, "2024", null, "16233", null, "2847", null, "-999999999", "N", "-999999999", "N", "28983", null, "3802", null, "95119", null, "6624", null, "157212", null, "7168", null, "119213", null, "6930", null, "73298", null, "3664", null, "193636", null, "7271", null, "17808", null, "2927", null, "61729", null, "5825", null, "114099", null, "6868", null, "-888888888", "(X)", "-888888888", "(X)", "26.2", null, "1.3", null, "73.8", null, "1.3", null, "36.7", null, "1.9", null, "19.2", null, "1.5", null, "6.4", null, "1.0", null, "12.8", null, "1.3", null, "44.1", null, "1.6", null, "30.2", null, "1.8", null, "18.3", null, "1.8", null, "11.8", null, "1.4", null, "3.6", null, "0.8", null, "8.1", null, "1.2", null, "0.1", null, "0.1", null, "69.8", null, "1.8", null, "18.4", null, "1.4", null, "7.5", null, "0.9", null, "2.8", null, "0.6", null, "4.6", null, "0.7", null, "44.0", null, "1.6", null, "15.1", null, "1.4", null, "84.9", null, "1.4", null, "27.7", null, "1.7", null, "72.3", null, "1.7", null, "45.6", null, "2.0", null, "12.2", null, "1.2", null, "1.6", null, "0.6", null, "4.7", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "8.4", null, "1.1", null, "27.5", null, "1.7", null, "45.4", null, "1.7", null, "34.4", null, "1.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "9.2", null, "1.5", null, "31.9", null, "2.8", null, "58.9", null, "2.8", null, "39396", null, "4641", null, "13567", null, "2247", null, "25829", null, "3714", null, "9576", null, "2687", null, "18014", null, "3122", null, "3859", null, "1225", null, "14155", null, "2814", null, "11806", null, "2717", null, "20505", null, "3387", null, "6612", null, "2435", null, "13805", null, "2813", null, "2731", null, "1193", null, "11074", null, "2583", null, "88", null, "146", null, "18891", null, "2942", null, "2964", null, "1093", null, "4209", null, "1240", null, "1128", null, "682", null, "3081", null, "1055", null, "11718", null, "2714", null, "17579", null, "3220", null, "21817", null, "3784", null, "21039", null, "2751", null, "18357", null, "3454", null, "11927", null, "2562", null, "8783", null, "2571", null, "643", null, "445", null, "688", null, "622", null, "-999999999", "N", "-999999999", "N", "3782", null, "1392", null, "13573", null, "2374", null, "23843", null, "2929", null, "6100", null, "1839", null, "28030", null, "6078", null, "27590", null, "3663", null, "3924", null, "1452", null, "12779", null, "2344", null, "10887", null, "2795", null, "11.4", null, "1.3", null, "34.4", null, "4.5", null, "65.6", null, "4.5", null, "24.3", null, "6.2", null, "45.7", null, "6.3", null, "9.8", null, "2.9", null, "35.9", null, "6.2", null, "30.0", null, "5.5", null, "52.0", null, "5.5", null, "16.8", null, "5.6", null, "35.0", null, "5.9", null, "6.9", null, "2.9", null, "28.1", null, "5.8", null, "0.2", null, "0.4", null, "48.0", null, "5.5", null, "7.5", null, "2.9", null, "10.7", null, "3.1", null, "2.9", null, "1.7", null, "7.8", null, "2.7", null, "29.7", null, "5.5", null, "44.6", null, "6.6", null, "55.4", null, "6.6", null, "53.4", null, "5.4", null, "46.6", null, "5.4", null, "30.3", null, "5.7", null, "22.3", null, "5.3", null, "1.6", null, "1.1", null, "1.7", null, "1.6", null, "-999999999.0", "N", "-999999999.0", "N", "9.6", null, "3.4", null, "34.5", null, "5.4", null, "60.5", null, "5.9", null, "15.5", null, "4.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.2", null, "4.8", null, "46.3", null, "7.9", null, "39.5", null, "7.5", null, "306785", null, "9195", null, "77265", null, "5249", null, "229520", null, "8949", null, "117522", null, "7523", null, "48524", null, "4870", null, "18448", null, "3113", null, "30076", null, "3857", null, "140739", null, "7089", null, "83887", null, "6634", null, "56730", null, "6177", null, "26886", null, "4182", null, "9814", null, "2440", null, "17072", null, "3250", null, "271", null, "207", null, "222898", null, "8301", null, "60792", null, "4961", null, "21638", null, "2875", null, "8634", null, "1900", null, "13004", null, "2279", null, "140468", null, "7102", null, "34649", null, "4144", null, "272136", null, "9720", null, "74762", null, "5410", null, "232023", null, "8965", null, "145904", null, "7607", null, "33462", null, "4146", null, "4766", null, "1918", null, "15545", null, "2800", null, "-999999999", "N", "-999999999", "N", "25201", null, "3297", null, "81546", null, "6462", null, "133369", null, "6726", null, "113113", null, "6581", null, "80585", null, "3268", null, "166046", null, "7425", null, "13884", null, "2653", null, "48950", null, "5212", null, "103212", null, "7366", null, "88.6", null, "1.3", null, "25.2", null, "1.6", null, "74.8", null, "1.6", null, "38.3", null, "2.1", null, "15.8", null, "1.6", null, "6.0", null, "1.0", null, "9.8", null, "1.3", null, "45.9", null, "1.8", null, "27.3", null, "1.9", null, "18.5", null, "1.9", null, "8.8", null, "1.3", null, "3.2", null, "0.8", null, "5.6", null, "1.1", null, "0.1", null, "0.1", null, "72.7", null, "1.9", null, "19.8", null, "1.5", null, "7.1", null, "0.9", null, "2.8", null, "0.6", null, "4.2", null, "0.7", null, "45.8", null, "1.8", null, "11.3", null, "1.4", null, "88.7", null, "1.4", null, "24.4", null, "1.7", null, "75.6", null, "1.7", null, "47.6", null, "2.0", null, "10.9", null, "1.3", null, "1.6", null, "0.6", null, "5.1", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "8.2", null, "1.1", null, "26.6", null, "1.9", null, "43.5", null, "1.9", null, "36.9", null, "1.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "8.4", null, "1.6", null, "29.5", null, "3.0", null, "62.2", null, "3.0", null, "48", "35"], ["5001900US4836", "Congressional District 36 (119th Congress), Texas", "291467", null, "7808", null, "117890", null, "4699", null, "173577", null, "6917", null, "144667", null, "6853", null, "60120", null, "5923", null, "17087", null, "2906", null, "43033", null, "4706", null, "86680", null, "5894", null, "98840", null, "5894", null, "62131", null, "4777", null, "35857", null, "4608", null, "8764", null, "2106", null, "27093", null, "3998", null, "852", null, "631", null, "192627", null, "7302", null, "82536", null, "5870", null, "24263", null, "3595", null, "8323", null, "2118", null, "15940", null, "2712", null, "85828", null, "5828", null, "40973", null, "4628", null, "250494", null, "7674", null, "87045", null, "5613", null, "204422", null, "7980", null, "165948", null, "6093", null, "38648", null, "4807", null, "2726", null, "1153", null, "10325", null, "2091", null, "-999999999", "N", "-999999999", "N", "22163", null, "3753", null, "51631", null, "4872", null, "82225", null, "4967", null, "148713", null, "5103", null, "76372", null, "2825", null, "204787", null, "6974", null, "28862", null, "3060", null, "69815", null, "5342", null, "106110", null, "6462", null, "-888888888", "(X)", "-888888888", "(X)", "40.4", null, "1.4", null, "59.6", null, "1.4", null, "49.6", null, "2.3", null, "20.6", null, "1.9", null, "5.9", null, "1.0", null, "14.8", null, "1.5", null, "29.7", null, "1.7", null, "33.9", null, "1.8", null, "21.3", null, "1.6", null, "12.3", null, "1.5", null, "3.0", null, "0.7", null, "9.3", null, "1.3", null, "0.3", null, "0.2", null, "66.1", null, "1.8", null, "28.3", null, "2.0", null, "8.3", null, "1.2", null, "2.9", null, "0.7", null, "5.5", null, "0.9", null, "29.4", null, "1.7", null, "14.1", null, "1.5", null, "85.9", null, "1.5", null, "29.9", null, "1.8", null, "70.1", null, "1.8", null, "56.9", null, "1.8", null, "13.3", null, "1.5", null, "0.9", null, "0.4", null, "3.5", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "7.6", null, "1.3", null, "17.7", null, "1.6", null, "28.2", null, "1.6", null, "51.0", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.1", null, "1.5", null, "34.1", null, "2.3", null, "51.8", null, "2.5", null, "40647", null, "4353", null, "13902", null, "2274", null, "26745", null, "3812", null, "10255", null, "1974", null, "19917", null, "3429", null, "2424", null, "1057", null, "17493", null, "3374", null, "10475", null, "2604", null, "22070", null, "3564", null, "7240", null, "1673", null, "14356", null, "3032", null, "1307", null, "756", null, "13049", null, "2983", null, "474", null, "500", null, "18577", null, "2905", null, "3015", null, "909", null, "5561", null, "1642", null, "1117", null, "622", null, "4444", null, "1542", null, "10001", null, "2518", null, "14545", null, "3405", null, "26102", null, "3702", null, "17812", null, "2829", null, "22835", null, "4053", null, "14991", null, "2220", null, "14578", null, "3092", null, "533", null, "500", null, "989", null, "823", null, "-999999999", "N", "-999999999", "N", "2597", null, "1027", null, "6959", null, "1752", null, "12403", null, "2480", null, "11648", null, "1840", null, "39046", null, "5119", null, "30172", null, "4157", null, "4291", null, "1312", null, "15241", null, "2788", null, "10640", null, "2445", null, "13.9", null, "1.4", null, "34.2", null, "5.0", null, "65.8", null, "5.0", null, "25.2", null, "4.7", null, "49.0", null, "5.4", null, "6.0", null, "2.6", null, "43.0", null, "5.7", null, "25.8", null, "6.0", null, "54.3", null, "5.9", null, "17.8", null, "4.1", null, "35.3", null, "5.5", null, "3.2", null, "1.9", null, "32.1", null, "5.7", null, "1.2", null, "1.2", null, "45.7", null, "5.9", null, "7.4", null, "2.2", null, "13.7", null, "3.9", null, "2.7", null, "1.6", null, "10.9", null, "3.6", null, "24.6", null, "5.8", null, "35.8", null, "7.0", null, "64.2", null, "7.0", null, "43.8", null, "6.5", null, "56.2", null, "6.5", null, "36.9", null, "4.8", null, "35.9", null, "5.6", null, "1.3", null, "1.2", null, "2.4", null, "2.0", null, "-999999999.0", "N", "-999999999.0", "N", "6.4", null, "2.5", null, "17.1", null, "4.0", null, "30.5", null, "5.1", null, "28.7", null, "4.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.2", null, "4.1", null, "50.5", null, "6.2", null, "35.3", null, "6.2", null, "250820", null, "7360", null, "103988", null, "4242", null, "146832", null, "6653", null, "134412", null, "6485", null, "40203", null, "4935", null, "14663", null, "2660", null, "25540", null, "3609", null, "76205", null, "4920", null, "76770", null, "5421", null, "54891", null, "4670", null, "21501", null, "3524", null, "7457", null, "1822", null, "14044", null, "2667", null, "378", null, "348", null, "174050", null, "6447", null, "79521", null, "5716", null, "18702", null, "2948", null, "7206", null, "1967", null, "11496", null, "2205", null, "75827", null, "4885", null, "26428", null, "3400", null, "224392", null, "6987", null, "69233", null, "4990", null, "181587", null, "7605", null, "150957", null, "6061", null, "24070", null, "3776", null, "2193", null, "984", null, "9336", null, "1886", null, "-999999999", "N", "-999999999", "N", "19566", null, "3607", null, "44672", null, "4897", null, "69822", null, "4609", null, "137065", null, "5049", null, "83305", null, "3454", null, "174615", null, "6612", null, "24571", null, "2636", null, "54574", null, "4844", null, "95470", null, "5999", null, "86.1", null, "1.4", null, "41.5", null, "1.6", null, "58.5", null, "1.6", null, "53.6", null, "2.3", null, "16.0", null, "1.8", null, "5.8", null, "1.0", null, "10.2", null, "1.4", null, "30.4", null, "1.7", null, "30.6", null, "1.9", null, "21.9", null, "1.7", null, "8.6", null, "1.3", null, "3.0", null, "0.7", null, "5.6", null, "1.0", null, "0.2", null, "0.1", null, "69.4", null, "1.9", null, "31.7", null, "2.3", null, "7.5", null, "1.1", null, "2.9", null, "0.8", null, "4.6", null, "0.9", null, "30.2", null, "1.7", null, "10.5", null, "1.3", null, "89.5", null, "1.3", null, "27.6", null, "1.9", null, "72.4", null, "1.9", null, "60.2", null, "2.1", null, "9.6", null, "1.4", null, "0.9", null, "0.4", null, "3.7", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "7.8", null, "1.5", null, "17.8", null, "1.8", null, "27.8", null, "1.7", null, "54.6", null, "1.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.1", null, "1.5", null, "31.3", null, "2.5", null, "54.7", null, "2.6", null, "48", "36"], ["5001900US4837", "Congressional District 37 (119th Congress), Texas", "383014", null, "7697", null, "92635", null, "4558", null, "290379", null, "7060", null, "139889", null, "6363", null, "41876", null, "5078", null, "16512", null, "3580", null, "25364", null, "3652", null, "201249", null, "8592", null, "81467", null, "5415", null, "57653", null, "4057", null, "22246", null, "4459", null, "7482", null, "2873", null, "14764", null, "3331", null, "1568", null, "1093", null, "301547", null, "9826", null, "82236", null, "6322", null, "19630", null, "3353", null, "9030", null, "2312", null, "10600", null, "2732", null, "199681", null, "8590", null, "38422", null, "4952", null, "344592", null, "7526", null, "59904", null, "4999", null, "323110", null, "8029", null, "237036", null, "6711", null, "29271", null, "4838", null, "1437", null, "780", null, "41216", null, "3603", null, "-999999999", "N", "-999999999", "N", "17825", null, "3906", null, "56055", null, "4669", null, "91477", null, "6557", null, "206687", null, "5831", null, "93776", null, "4082", null, "181765", null, "6625", null, "16997", null, "2392", null, "52247", null, "5207", null, "112521", null, "5620", null, "-888888888", "(X)", "-888888888", "(X)", "24.2", null, "1.1", null, "75.8", null, "1.1", null, "36.5", null, "1.7", null, "10.9", null, "1.3", null, "4.3", null, "0.9", null, "6.6", null, "0.9", null, "52.5", null, "1.7", null, "21.3", null, "1.5", null, "15.1", null, "1.1", null, "5.8", null, "1.2", null, "2.0", null, "0.8", null, "3.9", null, "0.9", null, "0.4", null, "0.3", null, "78.7", null, "1.5", null, "21.5", null, "1.6", null, "5.1", null, "0.9", null, "2.4", null, "0.6", null, "2.8", null, "0.7", null, "52.1", null, "1.7", null, "10.0", null, "1.2", null, "90.0", null, "1.2", null, "15.6", null, "1.3", null, "84.4", null, "1.3", null, "61.9", null, "1.5", null, "7.6", null, "1.2", null, "0.4", null, "0.2", null, "10.8", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "4.7", null, "1.0", null, "14.6", null, "1.2", null, "23.9", null, "1.6", null, "54.0", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "9.4", null, "1.3", null, "28.7", null, "2.5", null, "61.9", null, "2.5", null, "14634", null, "2516", null, "6045", null, "1578", null, "8589", null, "2074", null, "2063", null, "912", null, "6217", null, "1797", null, "1017", null, "661", null, "5200", null, "1831", null, "6354", null, "1797", null, "6013", null, "1881", null, "1026", null, "624", null, "4449", null, "1759", null, "285", null, "300", null, "4164", null, "1733", null, "538", null, "827", null, "8621", null, "1980", null, "1037", null, "607", null, "1768", null, "981", null, "732", null, "656", null, "1036", null, "776", null, "5816", null, "1730", null, "6434", null, "2018", null, "8200", null, "1845", null, "5222", null, "1366", null, "9412", null, "2466", null, "5934", null, "1609", null, "2629", null, "1185", null, "234", null, "309", null, "814", null, "545", null, "-999999999", "N", "-999999999", "N", "756", null, "682", null, "4267", null, "1716", null, "5858", null, "2377", null, "4916", null, "1538", null, "33022", null, "7192", null, "8280", null, "1875", null, "2165", null, "948", null, "3972", null, "1415", null, "2143", null, "1233", null, "3.8", null, "0.7", null, "41.3", null, "9.1", null, "58.7", null, "9.1", null, "14.1", null, "6.5", null, "42.5", null, "9.1", null, "6.9", null, "4.5", null, "35.5", null, "10.1", null, "43.4", null, "9.2", null, "41.1", null, "10.2", null, "7.0", null, "4.3", null, "30.4", null, "10.2", null, "1.9", null, "2.0", null, "28.5", null, "10.1", null, "3.7", null, "5.6", null, "58.9", null, "10.2", null, "7.1", null, "4.3", null, "12.1", null, "6.6", null, "5.0", null, "4.5", null, "7.1", null, "5.2", null, "39.7", null, "9.5", null, "44.0", null, "10.3", null, "56.0", null, "10.3", null, "35.7", null, "9.5", null, "64.3", null, "9.5", null, "40.5", null, "10.1", null, "18.0", null, "7.6", null, "1.6", null, "2.1", null, "5.6", null, "3.8", null, "-999999999.0", "N", "-999999999.0", "N", "5.2", null, "4.5", null, "29.2", null, "9.5", null, "40.0", null, "12.9", null, "33.6", null, "10.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "26.1", null, "11.2", null, "48.0", null, "14.1", null, "25.9", null, "12.1", null, "368380", null, "7904", null, "86590", null, "4482", null, "281790", null, "7244", null, "137826", null, "6320", null, "35659", null, "4662", null, "15495", null, "3655", null, "20164", null, "3199", null, "194895", null, "8380", null, "75454", null, "5321", null, "56627", null, "4027", null, "17797", null, "3881", null, "7197", null, "2894", null, "10600", null, "2606", null, "1030", null, "758", null, "292926", null, "9726", null, "81199", null, "6202", null, "17862", null, "3251", null, "8298", null, "2249", null, "9564", null, "2509", null, "193865", null, "8364", null, "31988", null, "4555", null, "336392", null, "7739", null, "54682", null, "5191", null, "313698", null, "8050", null, "231102", null, "6708", null, "26642", null, "4691", null, "1203", null, "679", null, "40402", null, "3579", null, "-999999999", "N", "-999999999", "N", "17069", null, "3781", null, "51788", null, "4906", null, "85619", null, "6332", null, "201771", null, "5760", null, "97224", null, "4620", null, "173485", null, "6550", null, "14832", null, "2155", null, "48275", null, "4908", null, "110378", null, "5614", null, "96.2", null, "0.7", null, "23.5", null, "1.1", null, "76.5", null, "1.1", null, "37.4", null, "1.7", null, "9.7", null, "1.3", null, "4.2", null, "1.0", null, "5.5", null, "0.9", null, "52.9", null, "1.7", null, "20.5", null, "1.5", null, "15.4", null, "1.1", null, "4.8", null, "1.1", null, "2.0", null, "0.8", null, "2.9", null, "0.7", null, "0.3", null, "0.2", null, "79.5", null, "1.5", null, "22.0", null, "1.6", null, "4.8", null, "0.9", null, "2.3", null, "0.6", null, "2.6", null, "0.7", null, "52.6", null, "1.7", null, "8.7", null, "1.2", null, "91.3", null, "1.2", null, "14.8", null, "1.3", null, "85.2", null, "1.3", null, "62.7", null, "1.6", null, "7.2", null, "1.2", null, "0.3", null, "0.2", null, "11.0", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "4.6", null, "1.0", null, "14.1", null, "1.3", null, "23.2", null, "1.6", null, "54.8", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "8.5", null, "1.2", null, "27.8", null, "2.5", null, "63.6", null, "2.5", null, "48", "37"], ["5001900US4838", "Congressional District 38 (119th Congress), Texas", "306162", null, "9002", null, "111478", null, "4309", null, "194684", null, "8816", null, "159368", null, "7492", null, "46043", null, "4682", null, "14219", null, "3114", null, "31824", null, "4184", null, "100751", null, "6696", null, "101772", null, "6124", null, "72730", null, "6139", null, "28972", null, "3877", null, "8445", null, "2665", null, "20527", null, "3297", null, "70", null, "122", null, "204390", null, "8017", null, "86638", null, "5527", null, "17071", null, "2630", null, "5774", null, "2009", null, "11297", null, "2150", null, "100681", null, "6688", null, "32610", null, "4303", null, "273552", null, "7879", null, "68595", null, "5207", null, "237567", null, "7937", null, "166954", null, "6317", null, "39067", null, "5206", null, "-999999999", "N", "-999999999", "N", "33395", null, "3559", null, "-999999999", "N", "-999999999", "N", "17379", null, "3295", null, "47967", null, "5194", null, "63931", null, "5675", null, "155717", null, "5927", null, "98753", null, "4291", null, "205411", null, "7464", null, "22310", null, "2669", null, "71149", null, "4797", null, "111952", null, "6201", null, "-888888888", "(X)", "-888888888", "(X)", "36.4", null, "1.5", null, "63.6", null, "1.5", null, "52.1", null, "1.9", null, "15.0", null, "1.6", null, "4.6", null, "1.0", null, "10.4", null, "1.4", null, "32.9", null, "1.8", null, "33.2", null, "1.7", null, "23.8", null, "1.9", null, "9.5", null, "1.3", null, "2.8", null, "0.9", null, "6.7", null, "1.1", null, "0.0", null, "0.1", null, "66.8", null, "1.7", null, "28.3", null, "1.6", null, "5.6", null, "0.9", null, "1.9", null, "0.7", null, "3.7", null, "0.7", null, "32.9", null, "1.8", null, "10.7", null, "1.3", null, "89.3", null, "1.3", null, "22.4", null, "1.5", null, "77.6", null, "1.5", null, "54.5", null, "1.9", null, "12.8", null, "1.6", null, "-999999999.0", "N", "-999999999.0", "N", "10.9", null, "1.1", null, "-999999999.0", "N", "-999999999.0", "N", "5.7", null, "1.0", null, "15.7", null, "1.6", null, "20.9", null, "1.8", null, "50.9", null, "1.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.9", null, "1.2", null, "34.6", null, "2.1", null, "54.5", null, "2.2", null, "19488", null, "3199", null, "7314", null, "1677", null, "12174", null, "2987", null, "7160", null, "2470", null, "8400", null, "2202", null, "1878", null, "1153", null, "6522", null, "2136", null, "3928", null, "1243", null, "12626", null, "2593", null, "5327", null, "2118", null, "7299", null, "2177", null, "1214", null, "805", null, "6085", null, "2145", null, "0", null, "242", null, "6862", null, "1778", null, "1833", null, "1096", null, "1101", null, "676", null, "664", null, "636", null, "437", null, "341", null, "3928", null, "1243", null, "8012", null, "1996", null, "11476", null, "2405", null, "8065", null, "1751", null, "11423", null, "2853", null, "5425", null, "1873", null, "3369", null, "1215", null, "-999999999", "N", "-999999999", "N", "2640", null, "1088", null, "-999999999", "N", "-999999999", "N", "1917", null, "954", null, "5917", null, "2184", null, "7962", null, "2005", null, "4381", null, "1465", null, "34951", null, "8745", null, "15560", null, "2985", null, "888", null, "621", null, "9639", null, "2513", null, "5033", null, "1433", null, "6.4", null, "1.0", null, "37.5", null, "8.5", null, "62.5", null, "8.5", null, "36.7", null, "10.5", null, "43.1", null, "9.3", null, "9.6", null, "5.8", null, "33.5", null, "9.7", null, "20.2", null, "6.0", null, "64.8", null, "7.4", null, "27.3", null, "10.0", null, "37.5", null, "9.4", null, "6.2", null, "4.0", null, "31.2", null, "9.8", null, "0.0", null, "1.2", null, "35.2", null, "7.4", null, "9.4", null, "5.1", null, "5.6", null, "3.5", null, "3.4", null, "3.3", null, "2.2", null, "1.8", null, "20.2", null, "6.0", null, "41.1", null, "7.7", null, "58.9", null, "7.7", null, "41.4", null, "8.4", null, "58.6", null, "8.4", null, "27.8", null, "7.4", null, "17.3", null, "6.0", null, "-999999999.0", "N", "-999999999.0", "N", "13.5", null, "5.9", null, "-999999999.0", "N", "-999999999.0", "N", "9.8", null, "5.1", null, "30.4", null, "8.9", null, "40.9", null, "8.1", null, "22.5", null, "5.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "5.7", null, "4.0", null, "61.9", null, "7.9", null, "32.3", null, "8.4", null, "286674", null, "9069", null, "104164", null, "4367", null, "182510", null, "8878", null, "152208", null, "7220", null, "37643", null, "4387", null, "12341", null, "2925", null, "25302", null, "3708", null, "96823", null, "6661", null, "89146", null, "5865", null, "67403", null, "5510", null, "21673", null, "3508", null, "7231", null, "2434", null, "14442", null, "2938", null, "70", null, "122", null, "197528", null, "7865", null, "84805", null, "5464", null, "15970", null, "2663", null, "5110", null, "1896", null, "10860", null, "2141", null, "96753", null, "6654", null, "24598", null, "3701", null, "262076", null, "8030", null, "60530", null, "4839", null, "226144", null, "8029", null, "161529", null, "6414", null, "35698", null, "5259", null, "-999999999", "N", "-999999999", "N", "30755", null, "3402", null, "-999999999", "N", "-999999999", "N", "15462", null, "3245", null, "42050", null, "5082", null, "55969", null, "5166", null, "151336", null, "5988", null, "102504", null, "4657", null, "189851", null, "7564", null, "21422", null, "2558", null, "61510", null, "4439", null, "106919", null, "6247", null, "93.6", null, "1.0", null, "36.3", null, "1.6", null, "63.7", null, "1.6", null, "53.1", null, "1.9", null, "13.1", null, "1.5", null, "4.3", null, "1.0", null, "8.8", null, "1.3", null, "33.8", null, "1.9", null, "31.1", null, "1.8", null, "23.5", null, "1.7", null, "7.6", null, "1.2", null, "2.5", null, "0.8", null, "5.0", null, "1.0", null, "0.0", null, "0.1", null, "68.9", null, "1.8", null, "29.6", null, "1.7", null, "5.6", null, "1.0", null, "1.8", null, "0.7", null, "3.8", null, "0.7", null, "33.8", null, "1.9", null, "8.6", null, "1.2", null, "91.4", null, "1.2", null, "21.1", null, "1.5", null, "78.9", null, "1.5", null, "56.3", null, "2.1", null, "12.5", null, "1.7", null, "-999999999.0", "N", "-999999999.0", "N", "10.7", null, "1.1", null, "-999999999.0", "N", "-999999999.0", "N", "5.4", null, "1.1", null, "14.7", null, "1.7", null, "19.5", null, "1.8", null, "52.8", null, "2.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.3", null, "1.3", null, "32.4", null, "2.1", null, "56.3", null, "2.2", null, "48", "38"], ["5001900US4901", "Congressional District 1 (119th Congress), Utah", "301910", null, "5009", null, "99384", null, "3418", null, "202526", null, "5381", null, "163785", null, "4368", null, "44219", null, "3608", null, "16672", null, "2454", null, "27547", null, "2902", null, "93906", null, "5701", null, "104401", null, "3651", null, "79479", null, "3536", null, "24755", null, "2827", null, "8163", null, "1991", null, "16592", null, "2443", null, "167", null, "146", null, "197509", null, "5630", null, "84306", null, "3146", null, "19464", null, "2739", null, "8509", null, "1687", null, "10955", null, "1813", null, "93739", null, "5683", null, "25979", null, "2962", null, "275931", null, "5175", null, "70774", null, "4186", null, "231136", null, "5991", null, "261148", null, "4700", null, "3501", null, "1070", null, "2261", null, "797", null, "8443", null, "1506", null, "-999999999", "N", "-999999999", "N", "7515", null, "1460", null, "18344", null, "2902", null, "33907", null, "2675", null, "245527", null, "4579", null, "92358", null, "2508", null, "208004", null, "4298", null, "21386", null, "1954", null, "58442", null, "3868", null, "128176", null, "4701", null, "-888888888", "(X)", "-888888888", "(X)", "32.9", null, "1.1", null, "67.1", null, "1.1", null, "54.2", null, "1.5", null, "14.6", null, "1.2", null, "5.5", null, "0.8", null, "9.1", null, "1.0", null, "31.1", null, "1.6", null, "34.6", null, "1.2", null, "26.3", null, "1.2", null, "8.2", null, "0.9", null, "2.7", null, "0.7", null, "5.5", null, "0.8", null, "0.1", null, "0.1", null, "65.4", null, "1.2", null, "27.9", null, "1.0", null, "6.4", null, "0.9", null, "2.8", null, "0.6", null, "3.6", null, "0.6", null, "31.0", null, "1.6", null, "8.6", null, "1.0", null, "91.4", null, "1.0", null, "23.4", null, "1.4", null, "76.6", null, "1.4", null, "86.5", null, "1.1", null, "1.2", null, "0.4", null, "0.7", null, "0.3", null, "2.8", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "2.5", null, "0.5", null, "6.1", null, "0.9", null, "11.2", null, "0.8", null, "81.3", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.3", null, "0.9", null, "28.1", null, "1.7", null, "61.6", null, "1.8", null, "11813", null, "1878", null, "3695", null, "824", null, "8118", null, "1771", null, "2594", null, "811", null, "5440", null, "1450", null, "1188", null, "678", null, "4252", null, "1313", null, "3779", null, "1108", null, "5502", null, "1378", null, "1871", null, "580", null, "3593", null, "1276", null, "450", null, "515", null, "3143", null, "1215", null, "38", null, "63", null, "6311", null, "1367", null, "723", null, "567", null, "1847", null, "809", null, "738", null, "471", null, "1109", null, "613", null, "3741", null, "1107", null, "5356", null, "1607", null, "6457", null, "1223", null, "6398", null, "1268", null, "5415", null, "1400", null, "9284", null, "1554", null, "272", null, "275", null, "71", null, "85", null, "230", null, "273", null, "-999999999", "N", "-999999999", "N", "254", null, "237", null, "1328", null, "800", null, "2313", null, "955", null, "7817", null, "1318", null, "26626", null, "12241", null, "8034", null, "1606", null, "1238", null, "818", null, "3620", null, "1068", null, "3176", null, "1048", null, "3.9", null, "0.6", null, "31.3", null, "7.0", null, "68.7", null, "7.0", null, "22.0", null, "6.3", null, "46.1", null, "9.2", null, "10.1", null, "5.4", null, "36.0", null, "9.3", null, "32.0", null, "8.1", null, "46.6", null, "8.4", null, "15.8", null, "4.9", null, "30.4", null, "8.7", null, "3.8", null, "4.2", null, "26.6", null, "9.0", null, "0.3", null, "0.5", null, "53.4", null, "8.4", null, "6.1", null, "4.6", null, "15.6", null, "6.6", null, "6.2", null, "3.9", null, "9.4", null, "5.1", null, "31.7", null, "8.1", null, "45.3", null, "9.4", null, "54.7", null, "9.4", null, "54.2", null, "8.1", null, "45.8", null, "8.1", null, "78.6", null, "8.0", null, "2.3", null, "2.3", null, "0.6", null, "0.7", null, "1.9", null, "2.3", null, "-999999999.0", "N", "-999999999.0", "N", "2.2", null, "1.9", null, "11.2", null, "6.3", null, "19.6", null, "6.9", null, "66.2", null, "9.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.4", null, "9.0", null, "45.1", null, "10.0", null, "39.5", null, "11.4", null, "290097", null, "5386", null, "95689", null, "3495", null, "194408", null, "5502", null, "161191", null, "4249", null, "38779", null, "3580", null, "15484", null, "2281", null, "23295", null, "2765", null, "90127", null, "5533", null, "98899", null, "3585", null, "77608", null, "3436", null, "21162", null, "2744", null, "7713", null, "1880", null, "13449", null, "2230", null, "129", null, "130", null, "191198", null, "5683", null, "83583", null, "3112", null, "17617", null, "2575", null, "7771", null, "1560", null, "9846", null, "1762", null, "89998", null, "5523", null, "20623", null, "2487", null, "269474", null, "5328", null, "64376", null, "4201", null, "225721", null, "6308", null, "251864", null, "4992", null, "3229", null, "1048", null, "2190", null, "801", null, "8213", null, "1513", null, "-999999999", "N", "-999999999", "N", "7261", null, "1421", null, "17016", null, "2792", null, "31594", null, "2548", null, "237710", null, "4823", null, "95271", null, "2495", null, "199970", null, "4422", null, "20148", null, "1723", null, "54822", null, "3839", null, "125000", null, "4638", null, "96.1", null, "0.6", null, "33.0", null, "1.2", null, "67.0", null, "1.2", null, "55.6", null, "1.5", null, "13.4", null, "1.2", null, "5.3", null, "0.8", null, "8.0", null, "1.0", null, "31.1", null, "1.6", null, "34.1", null, "1.2", null, "26.8", null, "1.2", null, "7.3", null, "0.9", null, "2.7", null, "0.6", null, "4.6", null, "0.8", null, "0.0", null, "0.1", null, "65.9", null, "1.2", null, "28.8", null, "1.1", null, "6.1", null, "0.9", null, "2.7", null, "0.5", null, "3.4", null, "0.6", null, "31.0", null, "1.6", null, "7.1", null, "0.8", null, "92.9", null, "0.8", null, "22.2", null, "1.4", null, "77.8", null, "1.4", null, "86.8", null, "1.2", null, "1.1", null, "0.4", null, "0.8", null, "0.3", null, "2.8", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "2.5", null, "0.5", null, "5.9", null, "0.9", null, "10.9", null, "0.8", null, "81.9", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.1", null, "0.9", null, "27.4", null, "1.8", null, "62.5", null, "1.8", null, "49", "01"], ["5001900US4902", "Congressional District 2 (119th Congress), Utah", "312769", null, "6243", null, "111320", null, "3827", null, "201449", null, "5844", null, "165476", null, "5201", null, "47590", null, "4118", null, "17099", null, "2971", null, "30491", null, "2902", null, "99703", null, "5807", null, "103430", null, "4029", null, "75506", null, "3462", null, "26755", null, "2957", null, "8788", null, "1970", null, "17967", null, "2480", null, "1169", null, "739", null, "209339", null, "6635", null, "89970", null, "4230", null, "20835", null, "3054", null, "8311", null, "2087", null, "12524", null, "1866", null, "98534", null, "5769", null, "30317", null, "3428", null, "282452", null, "5703", null, "82334", null, "4702", null, "230435", null, "6192", null, "244335", null, "5944", null, "4086", null, "1253", null, "3530", null, "989", null, "8338", null, "2093", null, "3754", null, "1242", null, "21397", null, "2990", null, "27329", null, "3572", null, "52267", null, "3937", null, "233281", null, "5758", null, "90523", null, "2641", null, "213066", null, "6071", null, "29703", null, "2360", null, "55484", null, "3216", null, "127879", null, "5367", null, "-888888888", "(X)", "-888888888", "(X)", "35.6", null, "1.1", null, "64.4", null, "1.1", null, "52.9", null, "1.5", null, "15.2", null, "1.3", null, "5.5", null, "0.9", null, "9.7", null, "0.9", null, "31.9", null, "1.6", null, "33.1", null, "1.3", null, "24.1", null, "1.1", null, "8.6", null, "0.9", null, "2.8", null, "0.6", null, "5.7", null, "0.8", null, "0.4", null, "0.2", null, "66.9", null, "1.3", null, "28.8", null, "1.2", null, "6.7", null, "1.0", null, "2.7", null, "0.7", null, "4.0", null, "0.6", null, "31.5", null, "1.6", null, "9.7", null, "1.0", null, "90.3", null, "1.0", null, "26.3", null, "1.4", null, "73.7", null, "1.4", null, "78.1", null, "1.4", null, "1.3", null, "0.4", null, "1.1", null, "0.3", null, "2.7", null, "0.7", null, "1.2", null, "0.4", null, "6.8", null, "1.0", null, "8.7", null, "1.1", null, "16.7", null, "1.2", null, "74.6", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.9", null, "1.0", null, "26.0", null, "1.5", null, "60.0", null, "1.6", null, "17183", null, "2688", null, "6971", null, "1512", null, "10212", null, "2113", null, "5080", null, "1474", null, "7097", null, "1675", null, "1688", null, "821", null, "5409", null, "1394", null, "5006", null, "1495", null, "8677", null, "1975", null, "3397", null, "1294", null, "5210", null, "1562", null, "1020", null, "726", null, "4190", null, "1273", null, "70", null, "113", null, "8506", null, "1798", null, "1683", null, "711", null, "1887", null, "731", null, "668", null, "449", null, "1219", null, "604", null, "4936", null, "1475", null, "7850", null, "1734", null, "9333", null, "1936", null, "8633", null, "1727", null, "8550", null, "2077", null, "12372", null, "2108", null, "1150", null, "714", null, "602", null, "319", null, "129", null, "131", null, "222", null, "285", null, "1020", null, "951", null, "1688", null, "1033", null, "3901", null, "1552", null, "10856", null, "1667", null, "30862", null, "6236", null, "12177", null, "2259", null, "2063", null, "722", null, "5792", null, "1317", null, "4322", null, "1441", null, "5.5", null, "0.9", null, "40.6", null, "7.1", null, "59.4", null, "7.1", null, "29.6", null, "7.2", null, "41.3", null, "7.6", null, "9.8", null, "4.6", null, "31.5", null, "6.7", null, "29.1", null, "7.4", null, "50.5", null, "7.8", null, "19.8", null, "6.7", null, "30.3", null, "7.8", null, "5.9", null, "4.1", null, "24.4", null, "6.5", null, "0.4", null, "0.7", null, "49.5", null, "7.8", null, "9.8", null, "4.0", null, "11.0", null, "4.0", null, "3.9", null, "2.6", null, "7.1", null, "3.4", null, "28.7", null, "7.3", null, "45.7", null, "7.3", null, "54.3", null, "7.3", null, "50.2", null, "8.1", null, "49.8", null, "8.1", null, "72.0", null, "7.9", null, "6.7", null, "4.0", null, "3.5", null, "1.9", null, "0.8", null, "0.7", null, "1.3", null, "1.7", null, "5.9", null, "5.4", null, "9.8", null, "5.7", null, "22.7", null, "6.7", null, "63.2", null, "7.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.9", null, "5.6", null, "47.6", null, "8.2", null, "35.5", null, "7.8", null, "295586", null, "6586", null, "104349", null, "3689", null, "191237", null, "6125", null, "160396", null, "5225", null, "40493", null, "4000", null, "15411", null, "2754", null, "25082", null, "2646", null, "94697", null, "5572", null, "94753", null, "3998", null, "72109", null, "3511", null, "21545", null, "2718", null, "7768", null, "1855", null, "13777", null, "2104", null, "1099", null, "729", null, "200833", null, "6597", null, "88287", null, "4225", null, "18948", null, "2984", null, "7643", null, "2076", null, "11305", null, "1867", null, "93598", null, "5529", null, "22467", null, "3016", null, "273119", null, "6148", null, "73701", null, "4580", null, "221885", null, "6207", null, "231963", null, "6091", null, "2936", null, "1124", null, "2928", null, "1029", null, "8209", null, "2077", null, "3532", null, "1210", null, "20377", null, "2912", null, "25641", null, "3519", null, "48366", null, "3937", null, "222425", null, "6035", null, "92698", null, "3297", null, "200889", null, "6152", null, "27640", null, "2274", null, "49692", null, "3069", null, "123557", null, "5467", null, "94.5", null, "0.9", null, "35.3", null, "1.2", null, "64.7", null, "1.2", null, "54.3", null, "1.5", null, "13.7", null, "1.3", null, "5.2", null, "0.9", null, "8.5", null, "0.9", null, "32.0", null, "1.6", null, "32.1", null, "1.3", null, "24.4", null, "1.1", null, "7.3", null, "0.9", null, "2.6", null, "0.6", null, "4.7", null, "0.7", null, "0.4", null, "0.2", null, "67.9", null, "1.3", null, "29.9", null, "1.3", null, "6.4", null, "1.0", null, "2.6", null, "0.7", null, "3.8", null, "0.6", null, "31.7", null, "1.6", null, "7.6", null, "1.0", null, "92.4", null, "1.0", null, "24.9", null, "1.4", null, "75.1", null, "1.4", null, "78.5", null, "1.4", null, "1.0", null, "0.4", null, "1.0", null, "0.3", null, "2.8", null, "0.7", null, "1.2", null, "0.4", null, "6.9", null, "1.0", null, "8.7", null, "1.1", null, "16.4", null, "1.2", null, "75.2", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.8", null, "1.1", null, "24.7", null, "1.5", null, "61.5", null, "1.6", null, "49", "02"], ["5001900US4903", "Congressional District 3 (119th Congress), Utah", "282895", null, "4704", null, "97195", null, "3591", null, "185700", null, "4317", null, "167495", null, "4703", null, "37278", null, "3449", null, "12157", null, "1955", null, "25121", null, "3102", null, "78122", null, "4339", null, "97958", null, "3675", null, "78203", null, "3666", null, "18872", null, "2382", null, "5798", null, "1497", null, "13074", null, "2095", null, "883", null, "529", null, "184937", null, "5501", null, "89292", null, "4182", null, "18406", null, "2543", null, "6359", null, "1307", null, "12047", null, "2218", null, "77239", null, "4282", null, "28216", null, "2606", null, "254679", null, "5305", null, "65082", null, "3877", null, "217813", null, "5436", null, "235061", null, "4828", null, "1127", null, "701", null, "5107", null, "899", null, "9003", null, "1713", null, "-999999999", "N", "-999999999", "N", "10435", null, "1710", null, "21432", null, "2108", null, "28709", null, "2595", null, "228593", null, "4798", null, "96440", null, "3384", null, "204773", null, "4586", null, "21820", null, "1858", null, "56314", null, "3040", null, "126639", null, "4099", null, "-888888888", "(X)", "-888888888", "(X)", "34.4", null, "1.1", null, "65.6", null, "1.1", null, "59.2", null, "1.5", null, "13.2", null, "1.2", null, "4.3", null, "0.7", null, "8.9", null, "1.1", null, "27.6", null, "1.4", null, "34.6", null, "1.3", null, "27.6", null, "1.4", null, "6.7", null, "0.8", null, "2.0", null, "0.5", null, "4.6", null, "0.7", null, "0.3", null, "0.2", null, "65.4", null, "1.3", null, "31.6", null, "1.3", null, "6.5", null, "0.9", null, "2.2", null, "0.5", null, "4.3", null, "0.8", null, "27.3", null, "1.4", null, "10.0", null, "0.9", null, "90.0", null, "0.9", null, "23.0", null, "1.3", null, "77.0", null, "1.3", null, "83.1", null, "1.2", null, "0.4", null, "0.2", null, "1.8", null, "0.3", null, "3.2", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "3.7", null, "0.6", null, "7.6", null, "0.7", null, "10.1", null, "0.9", null, "80.8", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.7", null, "0.9", null, "27.5", null, "1.3", null, "61.8", null, "1.5", null, "12610", null, "1833", null, "3189", null, "748", null, "9421", null, "1627", null, "5177", null, "1222", null, "4478", null, "1054", null, "1227", null, "564", null, "3251", null, "861", null, "2955", null, "854", null, "6847", null, "1407", null, "3874", null, "1087", null, "2806", null, "773", null, "468", null, "298", null, "2338", null, "764", null, "167", null, "271", null, "5763", null, "1208", null, "1303", null, "583", null, "1672", null, "660", null, "759", null, "430", null, "913", null, "498", null, "2788", null, "806", null, "5423", null, "1093", null, "7187", null, "1450", null, "6396", null, "1384", null, "6214", null, "1225", null, "9151", null, "1501", null, "125", null, "156", null, "1030", null, "408", null, "161", null, "156", null, "-999999999", "N", "-999999999", "N", "418", null, "437", null, "1685", null, "779", null, "1565", null, "743", null, "8721", null, "1484", null, "41278", null, "11017", null, "9655", null, "1633", null, "1622", null, "557", null, "3246", null, "788", null, "4787", null, "1355", null, "4.5", null, "0.6", null, "25.3", null, "5.3", null, "74.7", null, "5.3", null, "41.1", null, "7.2", null, "35.5", null, "6.7", null, "9.7", null, "4.1", null, "25.8", null, "6.1", null, "23.4", null, "6.1", null, "54.3", null, "7.3", null, "30.7", null, "6.9", null, "22.3", null, "5.3", null, "3.7", null, "2.3", null, "18.5", null, "5.6", null, "1.3", null, "2.1", null, "45.7", null, "7.3", null, "10.3", null, "4.4", null, "13.3", null, "4.8", null, "6.0", null, "3.2", null, "7.2", null, "3.9", null, "22.1", null, "5.8", null, "43.0", null, "7.0", null, "57.0", null, "7.0", null, "50.7", null, "7.4", null, "49.3", null, "7.4", null, "72.6", null, "6.7", null, "1.0", null, "1.3", null, "8.2", null, "3.0", null, "1.3", null, "1.3", null, "-999999999.0", "N", "-999999999.0", "N", "3.3", null, "3.3", null, "13.4", null, "5.7", null, "12.4", null, "5.6", null, "69.2", null, "7.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.8", null, "5.8", null, "33.6", null, "7.7", null, "49.6", null, "8.5", null, "270285", null, "4973", null, "94006", null, "3501", null, "176279", null, "4518", null, "162318", null, "4734", null, "32800", null, "3088", null, "10930", null, "1876", null, "21870", null, "2862", null, "75167", null, "4360", null, "91111", null, "3654", null, "74329", null, "3590", null, "16066", null, "2183", null, "5330", null, "1400", null, "10736", null, "1866", null, "716", null, "477", null, "179174", null, "5260", null, "87989", null, "4039", null, "16734", null, "2419", null, "5600", null, "1260", null, "11134", null, "2129", null, "74451", null, "4329", null, "22793", null, "2619", null, "247492", null, "5442", null, "58686", null, "3604", null, "211599", null, "5532", null, "225910", null, "5036", null, "1002", null, "669", null, "4077", null, "807", null, "8842", null, "1697", null, "-999999999", "N", "-999999999", "N", "10017", null, "1707", null, "19747", null, "2143", null, "27144", null, "2665", null, "219872", null, "5073", null, "99094", null, "3133", null, "195118", null, "4646", null, "20198", null, "1743", null, "53068", null, "3006", null, "121852", null, "3964", null, "95.5", null, "0.6", null, "34.8", null, "1.1", null, "65.2", null, "1.1", null, "60.1", null, "1.5", null, "12.1", null, "1.1", null, "4.0", null, "0.7", null, "8.1", null, "1.1", null, "27.8", null, "1.4", null, "33.7", null, "1.3", null, "27.5", null, "1.3", null, "5.9", null, "0.8", null, "2.0", null, "0.5", null, "4.0", null, "0.7", null, "0.3", null, "0.2", null, "66.3", null, "1.3", null, "32.6", null, "1.3", null, "6.2", null, "0.9", null, "2.1", null, "0.5", null, "4.1", null, "0.8", null, "27.5", null, "1.4", null, "8.4", null, "1.0", null, "91.6", null, "1.0", null, "21.7", null, "1.3", null, "78.3", null, "1.3", null, "83.6", null, "1.2", null, "0.4", null, "0.2", null, "1.5", null, "0.3", null, "3.3", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "3.7", null, "0.6", null, "7.3", null, "0.8", null, "10.0", null, "1.0", null, "81.3", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.4", null, "0.8", null, "27.2", null, "1.4", null, "62.5", null, "1.6", null, "49", "03"], ["5001900US4904", "Congressional District 4 (119th Congress), Utah", "286854", null, "5120", null, "83214", null, "3973", null, "203640", null, "5817", null, "182673", null, "5401", null, "40923", null, "3646", null, "14522", null, "2538", null, "26401", null, "2900", null, "63258", null, "4990", null, "121892", null, "4061", null, "98701", null, "4014", null, "22307", null, "2715", null, "7203", null, "1860", null, "15104", null, "2037", null, "884", null, "504", null, "164962", null, "5993", null, "83972", null, "3761", null, "18616", null, "2509", null, "7319", null, "1691", null, "11297", null, "2103", null, "62374", null, "4878", null, "16382", null, "2567", null, "270472", null, "5305", null, "71917", null, "3834", null, "214937", null, "5203", null, "226657", null, "6160", null, "3544", null, "1253", null, "1427", null, "663", null, "8579", null, "1680", null, "1920", null, "746", null, "19367", null, "2646", null, "25360", null, "2788", null, "44541", null, "3374", null, "217155", null, "5807", null, "109469", null, "3532", null, "223596", null, "4873", null, "17108", null, "2130", null, "52331", null, "3561", null, "154157", null, "5093", null, "-888888888", "(X)", "-888888888", "(X)", "29.0", null, "1.4", null, "71.0", null, "1.4", null, "63.7", null, "1.8", null, "14.3", null, "1.3", null, "5.1", null, "0.9", null, "9.2", null, "1.0", null, "22.1", null, "1.6", null, "42.5", null, "1.5", null, "34.4", null, "1.4", null, "7.8", null, "1.0", null, "2.5", null, "0.6", null, "5.3", null, "0.7", null, "0.3", null, "0.2", null, "57.5", null, "1.5", null, "29.3", null, "1.3", null, "6.5", null, "0.9", null, "2.6", null, "0.6", null, "3.9", null, "0.7", null, "21.7", null, "1.5", null, "5.7", null, "0.9", null, "94.3", null, "0.9", null, "25.1", null, "1.3", null, "74.9", null, "1.3", null, "79.0", null, "1.3", null, "1.2", null, "0.4", null, "0.5", null, "0.2", null, "3.0", null, "0.6", null, "0.7", null, "0.3", null, "6.8", null, "0.9", null, "8.8", null, "1.0", null, "15.5", null, "1.1", null, "75.7", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "7.7", null, "0.9", null, "23.4", null, "1.5", null, "68.9", null, "1.8", null, "12404", null, "2139", null, "4178", null, "1403", null, "8226", null, "1620", null, "4278", null, "1338", null, "5631", null, "1533", null, "1448", null, "702", null, "4183", null, "1379", null, "2495", null, "977", null, "7282", null, "1605", null, "3397", null, "1176", null, "3830", null, "1158", null, "772", null, "443", null, "3058", null, "1121", null, "55", null, "99", null, "5122", null, "1386", null, "881", null, "533", null, "1801", null, "787", null, "676", null, "546", null, "1125", null, "616", null, "2440", null, "971", null, "3379", null, "1000", null, "9025", null, "2031", null, "6723", null, "1564", null, "5681", null, "1249", null, "7869", null, "1604", null, "356", null, "344", null, "247", null, "304", null, "424", null, "440", null, "431", null, "480", null, "921", null, "619", null, "2156", null, "1110", null, "2568", null, "1130", null, "7394", null, "1525", null, "60952", null, "8624", null, "9909", null, "2021", null, "1687", null, "736", null, "3358", null, "1065", null, "4864", null, "1583", null, "4.3", null, "0.7", null, "33.7", null, "8.8", null, "66.3", null, "8.8", null, "34.5", null, "8.5", null, "45.4", null, "9.3", null, "11.7", null, "5.3", null, "33.7", null, "9.2", null, "20.1", null, "7.4", null, "58.7", null, "8.4", null, "27.4", null, "8.0", null, "30.9", null, "8.1", null, "6.2", null, "3.6", null, "24.7", null, "7.9", null, "0.4", null, "0.8", null, "41.3", null, "8.4", null, "7.1", null, "4.0", null, "14.5", null, "5.5", null, "5.4", null, "4.1", null, "9.1", null, "4.7", null, "19.7", null, "7.4", null, "27.2", null, "7.9", null, "72.8", null, "7.9", null, "54.2", null, "7.4", null, "45.8", null, "7.4", null, "63.4", null, "9.0", null, "2.9", null, "2.7", null, "2.0", null, "2.5", null, "3.4", null, "3.4", null, "3.5", null, "3.8", null, "7.4", null, "5.1", null, "17.4", null, "7.7", null, "20.7", null, "8.1", null, "59.6", null, "8.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.0", null, "7.1", null, "33.9", null, "9.2", null, "49.1", null, "10.8", null, "274450", null, "5430", null, "79036", null, "3654", null, "195414", null, "5730", null, "178395", null, "5486", null, "35292", null, "3325", null, "13074", null, "2445", null, "22218", null, "2824", null, "60763", null, "5012", null, "114610", null, "4592", null, "95304", null, "4265", null, "18477", null, "2528", null, "6431", null, "1786", null, "12046", null, "1973", null, "829", null, "497", null, "159840", null, "5897", null, "83091", null, "3815", null, "16815", null, "2258", null, "6643", null, "1575", null, "10172", null, "1868", null, "59934", null, "4890", null, "13003", null, "2348", null, "261447", null, "5588", null, "65194", null, "3563", null, "209256", null, "5253", null, "218788", null, "6124", null, "3188", null, "1299", null, "1180", null, "542", null, "8155", null, "1654", null, "1489", null, "669", null, "18446", null, "2671", null, "23204", null, "2685", null, "41973", null, "3261", null, "209761", null, "5816", null, "111593", null, "3277", null, "213687", null, "5254", null, "15421", null, "1989", null, "48973", null, "3145", null, "149293", null, "5027", null, "95.7", null, "0.7", null, "28.8", null, "1.3", null, "71.2", null, "1.3", null, "65.0", null, "1.9", null, "12.9", null, "1.2", null, "4.8", null, "0.9", null, "8.1", null, "1.0", null, "22.1", null, "1.6", null, "41.8", null, "1.6", null, "34.7", null, "1.5", null, "6.7", null, "0.9", null, "2.3", null, "0.6", null, "4.4", null, "0.7", null, "0.3", null, "0.2", null, "58.2", null, "1.6", null, "30.3", null, "1.3", null, "6.1", null, "0.8", null, "2.4", null, "0.6", null, "3.7", null, "0.7", null, "21.8", null, "1.6", null, "4.7", null, "0.8", null, "95.3", null, "0.8", null, "23.8", null, "1.2", null, "76.2", null, "1.2", null, "79.7", null, "1.3", null, "1.2", null, "0.5", null, "0.4", null, "0.2", null, "3.0", null, "0.6", null, "0.5", null, "0.2", null, "6.7", null, "1.0", null, "8.5", null, "1.0", null, "15.3", null, "1.2", null, "76.4", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "7.2", null, "0.9", null, "22.9", null, "1.4", null, "69.9", null, "1.7", null, "49", "04"], ["5001900US5000", "Congressional District (at Large) (119th Congress), Vermont", "285548", null, "2976", null, "135757", null, "2306", null, "149791", null, "3340", null, "128672", null, "4134", null, "36201", null, "2785", null, "12730", null, "2077", null, "23471", null, "2015", null, "120675", null, "4610", null, "64263", null, "3001", null, "43396", null, "2934", null, "20386", null, "2055", null, "6328", null, "1435", null, "14058", null, "1771", null, "481", null, "347", null, "221285", null, "3871", null, "85276", null, "3273", null, "15815", null, "1954", null, "6402", null, "1582", null, "9413", null, "1466", null, "120194", null, "4644", null, "28156", null, "2774", null, "257392", null, "3482", null, "76966", null, "3394", null, "208582", null, "4054", null, "263465", null, "3330", null, "3143", null, "1060", null, "444", null, "283", null, "4437", null, "904", null, "-999999999", "N", "-999999999", "N", "1373", null, "572", null, "12686", null, "1505", null, "5801", null, "934", null, "261100", null, "3284", null, "82730", null, "1846", null, "164873", null, "3890", null, "26789", null, "2105", null, "44942", null, "3432", null, "93142", null, "3345", null, "-888888888", "(X)", "-888888888", "(X)", "47.5", null, "0.8", null, "52.5", null, "0.8", null, "45.1", null, "1.5", null, "12.7", null, "1.0", null, "4.5", null, "0.7", null, "8.2", null, "0.7", null, "42.3", null, "1.4", null, "22.5", null, "1.0", null, "15.2", null, "1.0", null, "7.1", null, "0.7", null, "2.2", null, "0.5", null, "4.9", null, "0.6", null, "0.2", null, "0.1", null, "77.5", null, "1.0", null, "29.9", null, "1.2", null, "5.5", null, "0.7", null, "2.2", null, "0.6", null, "3.3", null, "0.5", null, "42.1", null, "1.4", null, "9.9", null, "0.9", null, "90.1", null, "0.9", null, "27.0", null, "1.2", null, "73.0", null, "1.2", null, "92.3", null, "0.7", null, "1.1", null, "0.4", null, "0.2", null, "0.1", null, "1.6", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "0.5", null, "0.2", null, "4.4", null, "0.5", null, "2.0", null, "0.3", null, "91.4", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.2", null, "1.3", null, "27.3", null, "1.8", null, "56.5", null, "1.8", null, "30142", null, "2640", null, "15491", null, "1755", null, "14651", null, "1930", null, "6224", null, "1167", null, "8072", null, "1553", null, "2851", null, "960", null, "5221", null, "1028", null, "15846", null, "2158", null, "8961", null, "1407", null, "3860", null, "1053", null, "5048", null, "1146", null, "1371", null, "653", null, "3677", null, "957", null, "53", null, "58", null, "21181", null, "2308", null, "2364", null, "612", null, "3024", null, "813", null, "1480", null, "711", null, "1544", null, "447", null, "15793", null, "2159", null, "11381", null, "1656", null, "18761", null, "2207", null, "18170", null, "2495", null, "11972", null, "1563", null, "26129", null, "2238", null, "1113", null, "984", null, "69", null, "76", null, "338", null, "306", null, "-999999999", "N", "-999999999", "N", "393", null, "324", null, "2100", null, "613", null, "636", null, "415", null, "25798", null, "2198", null, "26915", null, "2708", null, "14296", null, "1814", null, "3841", null, "1012", null, "6209", null, "1212", null, "4246", null, "895", null, "10.6", null, "0.9", null, "51.4", null, "4.3", null, "48.6", null, "4.3", null, "20.6", null, "3.8", null, "26.8", null, "4.5", null, "9.5", null, "3.0", null, "17.3", null, "3.2", null, "52.6", null, "4.9", null, "29.7", null, "4.1", null, "12.8", null, "3.4", null, "16.7", null, "3.5", null, "4.5", null, "2.1", null, "12.2", null, "3.0", null, "0.2", null, "0.2", null, "70.3", null, "4.1", null, "7.8", null, "2.1", null, "10.0", null, "2.5", null, "4.9", null, "2.3", null, "5.1", null, "1.5", null, "52.4", null, "4.9", null, "37.8", null, "4.6", null, "62.2", null, "4.6", null, "60.3", null, "5.0", null, "39.7", null, "5.0", null, "86.7", null, "3.4", null, "3.7", null, "3.2", null, "0.2", null, "0.3", null, "1.1", null, "1.0", null, "-999999999.0", "N", "-999999999.0", "N", "1.3", null, "1.1", null, "7.0", null, "1.9", null, "2.1", null, "1.3", null, "85.6", null, "3.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "26.9", null, "6.2", null, "43.4", null, "6.4", null, "29.7", null, "5.1", null, "255406", null, "3525", null, "120266", null, "2526", null, "135140", null, "3463", null, "122448", null, "4052", null, "28129", null, "2548", null, "9879", null, "1838", null, "18250", null, "1999", null, "104829", null, "4229", null, "55302", null, "2788", null, "39536", null, "2660", null, "15338", null, "1931", null, "4957", null, "1261", null, "10381", null, "1643", null, "428", null, "329", null, "200104", null, "3954", null, "82912", null, "3208", null, "12791", null, "1804", null, "4922", null, "1363", null, "7869", null, "1382", null, "104401", null, "4265", null, "16775", null, "2301", null, "238631", null, "3842", null, "58796", null, "2614", null, "196610", null, "3889", null, "237336", null, "3555", null, "2030", null, "898", null, "375", null, "268", null, "4099", null, "1028", null, "-999999999", "N", "-999999999", "N", "980", null, "443", null, "10586", null, "1479", null, "5165", null, "924", null, "235302", null, "3544", null, "87478", null, "1987", null, "150577", null, "3937", null, "22948", null, "1858", null, "38733", null, "3070", null, "88896", null, "3514", null, "89.4", null, "0.9", null, "47.1", null, "1.0", null, "52.9", null, "1.0", null, "47.9", null, "1.5", null, "11.0", null, "1.0", null, "3.9", null, "0.7", null, "7.1", null, "0.8", null, "41.0", null, "1.5", null, "21.7", null, "1.1", null, "15.5", null, "1.0", null, "6.0", null, "0.8", null, "1.9", null, "0.5", null, "4.1", null, "0.6", null, "0.2", null, "0.1", null, "78.3", null, "1.1", null, "32.5", null, "1.2", null, "5.0", null, "0.7", null, "1.9", null, "0.5", null, "3.1", null, "0.5", null, "40.9", null, "1.5", null, "6.6", null, "0.9", null, "93.4", null, "0.9", null, "23.0", null, "1.0", null, "77.0", null, "1.0", null, "92.9", null, "0.7", null, "0.8", null, "0.3", null, "0.1", null, "0.1", null, "1.6", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "0.4", null, "0.2", null, "4.1", null, "0.6", null, "2.0", null, "0.4", null, "92.1", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.2", null, "1.2", null, "25.7", null, "1.8", null, "59.0", null, "1.9", null, "50", "00"], ["5001900US5101", "Congressional District 1 (119th Congress), Virginia", "326377", null, "5014", null, "152949", null, "4297", null, "173428", null, "4783", null, "185695", null, "5678", null, "43738", null, "3863", null, "11576", null, "2069", null, "32162", null, "3328", null, "96944", null, "5194", null, "100751", null, "4219", null, "74958", null, "3511", null, "24963", null, "2673", null, "6564", null, "1594", null, "18399", null, "2581", null, "830", null, "483", null, "225626", null, "5393", null, "110737", null, "4737", null, "18775", null, "3057", null, "5012", null, "1478", null, "13763", null, "2193", null, "96114", null, "5073", null, "25616", null, "3285", null, "300761", null, "5474", null, "82860", null, "4886", null, "243517", null, "6096", null, "243363", null, "4478", null, "41063", null, "2672", null, "-999999999", "N", "-999999999", "N", "16823", null, "1643", null, "-999999999", "N", "-999999999", "N", "4687", null, "1577", null, "18863", null, "2287", null, "14245", null, "1845", null, "240409", null, "4434", null, "100817", null, "3342", null, "229433", null, "6149", null, "38047", null, "2765", null, "65302", null, "3983", null, "126084", null, "4701", null, "-888888888", "(X)", "-888888888", "(X)", "46.9", null, "1.2", null, "53.1", null, "1.2", null, "56.9", null, "1.6", null, "13.4", null, "1.1", null, "3.5", null, "0.6", null, "9.9", null, "1.0", null, "29.7", null, "1.5", null, "30.9", null, "1.2", null, "23.0", null, "1.0", null, "7.6", null, "0.8", null, "2.0", null, "0.5", null, "5.6", null, "0.8", null, "0.3", null, "0.1", null, "69.1", null, "1.2", null, "33.9", null, "1.4", null, "5.8", null, "0.9", null, "1.5", null, "0.4", null, "4.2", null, "0.7", null, "29.4", null, "1.5", null, "7.8", null, "1.0", null, "92.2", null, "1.0", null, "25.4", null, "1.5", null, "74.6", null, "1.5", null, "74.6", null, "1.1", null, "12.6", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "5.2", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "1.4", null, "0.5", null, "5.8", null, "0.7", null, "4.4", null, "0.5", null, "73.7", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.6", null, "1.1", null, "28.5", null, "1.5", null, "55.0", null, "1.6", null, "19170", null, "2240", null, "8218", null, "1476", null, "10952", null, "1785", null, "5122", null, "1155", null, "7774", null, "1554", null, "1261", null, "653", null, "6513", null, "1451", null, "6274", null, "1427", null, "9232", null, "1632", null, "3648", null, "989", null, "5479", null, "1410", null, "769", null, "501", null, "4710", null, "1329", null, "105", null, "110", null, "9938", null, "1768", null, "1474", null, "581", null, "2295", null, "878", null, "492", null, "405", null, "1803", null, "730", null, "6169", null, "1429", null, "7313", null, "1675", null, "11857", null, "1797", null, "9606", null, "1674", null, "9564", null, "1772", null, "11543", null, "1952", null, "5667", null, "1267", null, "-999999999", "N", "-999999999", "N", "290", null, "278", null, "-999999999", "N", "-999999999", "N", "306", null, "281", null, "952", null, "487", null, "504", null, "326", null, "11485", null, "1945", null, "41525", null, "5711", null, "12896", null, "1818", null, "2089", null, "883", null, "5353", null, "1122", null, "5454", null, "1112", null, "5.9", null, "0.7", null, "42.9", null, "6.1", null, "57.1", null, "6.1", null, "26.7", null, "5.6", null, "40.6", null, "6.4", null, "6.6", null, "3.3", null, "34.0", null, "6.2", null, "32.7", null, "6.0", null, "48.2", null, "6.6", null, "19.0", null, "5.0", null, "28.6", null, "6.3", null, "4.0", null, "2.6", null, "24.6", null, "6.1", null, "0.5", null, "0.6", null, "51.8", null, "6.6", null, "7.7", null, "2.9", null, "12.0", null, "4.4", null, "2.6", null, "2.1", null, "9.4", null, "3.7", null, "32.2", null, "6.0", null, "38.1", null, "7.0", null, "61.9", null, "7.0", null, "50.1", null, "6.8", null, "49.9", null, "6.8", null, "60.2", null, "6.6", null, "29.6", null, "5.9", null, "-999999999.0", "N", "-999999999.0", "N", "1.5", null, "1.4", null, "-999999999.0", "N", "-999999999.0", "N", "1.6", null, "1.5", null, "5.0", null, "2.6", null, "2.6", null, "1.7", null, "59.9", null, "6.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.2", null, "6.0", null, "41.5", null, "7.3", null, "42.3", null, "6.8", null, "307207", null, "4947", null, "144731", null, "4262", null, "162476", null, "4643", null, "180573", null, "5716", null, "35964", null, "3671", null, "10315", null, "1877", null, "25649", null, "3048", null, "90670", null, "5044", null, "91519", null, "3930", null, "71310", null, "3406", null, "19484", null, "2339", null, "5795", null, "1416", null, "13689", null, "2281", null, "725", null, "463", null, "215688", null, "5360", null, "109263", null, "4710", null, "16480", null, "2833", null, "4520", null, "1439", null, "11960", null, "1998", null, "89945", null, "4935", null, "18303", null, "2866", null, "288904", null, "5182", null, "73254", null, "4552", null, "233953", null, "5815", null, "231820", null, "4401", null, "35396", null, "2754", null, "-999999999", "N", "-999999999", "N", "16533", null, "1564", null, "-999999999", "N", "-999999999", "N", "4381", null, "1543", null, "17911", null, "2218", null, "13741", null, "1799", null, "228924", null, "4412", null, "105094", null, "4652", null, "216537", null, "6026", null, "35958", null, "2694", null, "59949", null, "3824", null, "120630", null, "4689", null, "94.1", null, "0.7", null, "47.1", null, "1.2", null, "52.9", null, "1.2", null, "58.8", null, "1.6", null, "11.7", null, "1.2", null, "3.4", null, "0.6", null, "8.3", null, "1.0", null, "29.5", null, "1.6", null, "29.8", null, "1.2", null, "23.2", null, "1.1", null, "6.3", null, "0.8", null, "1.9", null, "0.5", null, "4.5", null, "0.7", null, "0.2", null, "0.2", null, "70.2", null, "1.2", null, "35.6", null, "1.4", null, "5.4", null, "0.9", null, "1.5", null, "0.5", null, "3.9", null, "0.6", null, "29.3", null, "1.5", null, "6.0", null, "0.9", null, "94.0", null, "0.9", null, "23.8", null, "1.4", null, "76.2", null, "1.4", null, "75.5", null, "1.1", null, "11.5", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "5.4", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "1.4", null, "0.5", null, "5.8", null, "0.7", null, "4.5", null, "0.6", null, "74.5", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.6", null, "1.2", null, "27.7", null, "1.5", null, "55.7", null, "1.6", null, "51", "01"], ["5001900US5102", "Congressional District 2 (119th Congress), Virginia", "309207", null, "4111", null, "130747", null, "3590", null, "178460", null, "4550", null, "154163", null, "4596", null, "54666", null, "3501", null, "15849", null, "2498", null, "38817", null, "3431", null, "100378", null, "4773", null, "93201", null, "4588", null, "62363", null, "3761", null, "30221", null, "3161", null, "8272", null, "1629", null, "21949", null, "2877", null, "617", null, "358", null, "216006", null, "5491", null, "91800", null, "3745", null, "24445", null, "3105", null, "7577", null, "1857", null, "16868", null, "2468", null, "99761", null, "4776", null, "25311", null, "2365", null, "283896", null, "4523", null, "86209", null, "4495", null, "222998", null, "5041", null, "199952", null, "3517", null, "68557", null, "3034", null, "-999999999", "N", "-999999999", "N", "12659", null, "1698", null, "-999999999", "N", "-999999999", "N", "5269", null, "1228", null, "21709", null, "2252", null, "23160", null, "1886", null, "193701", null, "3565", null, "93827", null, "3084", null, "208829", null, "4782", null, "25862", null, "2212", null, "69271", null, "3964", null, "113696", null, "4463", null, "-888888888", "(X)", "-888888888", "(X)", "42.3", null, "1.1", null, "57.7", null, "1.1", null, "49.9", null, "1.4", null, "17.7", null, "1.1", null, "5.1", null, "0.8", null, "12.6", null, "1.1", null, "32.5", null, "1.4", null, "30.1", null, "1.5", null, "20.2", null, "1.2", null, "9.8", null, "1.0", null, "2.7", null, "0.5", null, "7.1", null, "0.9", null, "0.2", null, "0.1", null, "69.9", null, "1.5", null, "29.7", null, "1.2", null, "7.9", null, "1.0", null, "2.5", null, "0.6", null, "5.5", null, "0.8", null, "32.3", null, "1.4", null, "8.2", null, "0.8", null, "91.8", null, "0.8", null, "27.9", null, "1.4", null, "72.1", null, "1.4", null, "64.7", null, "0.9", null, "22.2", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "4.1", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "1.7", null, "0.4", null, "7.0", null, "0.7", null, "7.5", null, "0.6", null, "62.6", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.4", null, "1.0", null, "33.2", null, "1.7", null, "54.4", null, "1.7", null, "22132", null, "3031", null, "8636", null, "1463", null, "13496", null, "2683", null, "3834", null, "776", null, "11470", null, "2558", null, "1120", null, "782", null, "10350", null, "2379", null, "6828", null, "1306", null, "10586", null, "2403", null, "2717", null, "731", null, "7835", null, "2256", null, "534", null, "345", null, "7301", null, "2197", null, "34", null, "61", null, "11546", null, "1971", null, "1117", null, "472", null, "3635", null, "1345", null, "586", null, "663", null, "3049", null, "1065", null, "6794", null, "1308", null, "7458", null, "1438", null, "14674", null, "2368", null, "12379", null, "2460", null, "9753", null, "1920", null, "8815", null, "1414", null, "10299", null, "1957", null, "-999999999", "N", "-999999999", "N", "325", null, "250", null, "-999999999", "N", "-999999999", "N", "454", null, "361", null, "2211", null, "859", null, "2408", null, "921", null, "8108", null, "1291", null, "32913", null, "3199", null, "15304", null, "2672", null, "2819", null, "1164", null, "8045", null, "1867", null, "4440", null, "948", null, "7.2", null, "1.0", null, "39.0", null, "6.3", null, "61.0", null, "6.3", null, "17.3", null, "3.9", null, "51.8", null, "6.2", null, "5.1", null, "3.4", null, "46.8", null, "6.3", null, "30.9", null, "5.4", null, "47.8", null, "7.3", null, "12.3", null, "3.4", null, "35.4", null, "7.3", null, "2.4", null, "1.6", null, "33.0", null, "7.2", null, "0.2", null, "0.3", null, "52.2", null, "7.3", null, "5.0", null, "2.3", null, "16.4", null, "5.4", null, "2.6", null, "2.9", null, "13.8", null, "4.5", null, "30.7", null, "5.4", null, "33.7", null, "4.9", null, "66.3", null, "4.9", null, "55.9", null, "7.2", null, "44.1", null, "7.2", null, "39.8", null, "5.3", null, "46.5", null, "5.1", null, "-999999999.0", "N", "-999999999.0", "N", "1.5", null, "1.1", null, "-999999999.0", "N", "-999999999.0", "N", "2.1", null, "1.6", null, "10.0", null, "3.5", null, "10.9", null, "3.8", null, "36.6", null, "5.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.4", null, "6.4", null, "52.6", null, "7.0", null, "29.0", null, "5.9", null, "287075", null, "4422", null, "122111", null, "3330", null, "164964", null, "4682", null, "150329", null, "4570", null, "43196", null, "3347", null, "14729", null, "2397", null, "28467", null, "3237", null, "93550", null, "4833", null, "82615", null, "3925", null, "59646", null, "3709", null, "22386", null, "2364", null, "7738", null, "1573", null, "14648", null, "2067", null, "583", null, "352", null, "204460", null, "5200", null, "90683", null, "3716", null, "20810", null, "2765", null, "6991", null, "1702", null, "13819", null, "2174", null, "92967", null, "4831", null, "17853", null, "1927", null, "269222", null, "4698", null, "73830", null, "3906", null, "213245", null, "5428", null, "191137", null, "3570", null, "58258", null, "3385", null, "-999999999", "N", "-999999999", "N", "12334", null, "1663", null, "-999999999", "N", "-999999999", "N", "4815", null, "1217", null, "19498", null, "2099", null, "20752", null, "2037", null, "185593", null, "3644", null, "98779", null, "3909", null, "193525", null, "4683", null, "23043", null, "1952", null, "61226", null, "3929", null, "109256", null, "4427", null, "92.8", null, "1.0", null, "42.5", null, "1.2", null, "57.5", null, "1.2", null, "52.4", null, "1.5", null, "15.0", null, "1.1", null, "5.1", null, "0.8", null, "9.9", null, "1.1", null, "32.6", null, "1.5", null, "28.8", null, "1.3", null, "20.8", null, "1.3", null, "7.8", null, "0.8", null, "2.7", null, "0.6", null, "5.1", null, "0.7", null, "0.2", null, "0.1", null, "71.2", null, "1.3", null, "31.6", null, "1.3", null, "7.2", null, "0.9", null, "2.4", null, "0.6", null, "4.8", null, "0.7", null, "32.4", null, "1.5", null, "6.2", null, "0.7", null, "93.8", null, "0.7", null, "25.7", null, "1.4", null, "74.3", null, "1.4", null, "66.6", null, "1.0", null, "20.3", null, "1.0", null, "-999999999.0", "N", "-999999999.0", "N", "4.3", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "1.7", null, "0.4", null, "6.8", null, "0.8", null, "7.2", null, "0.7", null, "64.6", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.9", null, "1.0", null, "31.6", null, "1.8", null, "56.5", null, "1.9", null, "51", "02"], ["5001900US5103", "Congressional District 3 (119th Congress), Virginia", "318855", null, "4330", null, "122858", null, "3200", null, "195997", null, "4712", null, "107667", null, "5091", null, "75508", null, "4106", null, "17632", null, "2097", null, "57876", null, "4065", null, "135680", null, "5223", null, "91033", null, "4153", null, "43640", null, "3498", null, "46458", null, "3597", null, "10009", null, "1873", null, "36449", null, "3679", null, "935", null, "687", null, "227822", null, "5459", null, "64027", null, "4540", null, "29050", null, "2546", null, "7623", null, "1228", null, "21427", null, "2355", null, "134745", null, "5305", null, "42140", null, "3617", null, "276715", null, "4867", null, "97615", null, "5698", null, "221240", null, "6068", null, "138880", null, "3711", null, "140426", null, "4305", null, "1532", null, "713", null, "8009", null, "1334", null, "-999999999", "N", "-999999999", "N", "8585", null, "1671", null, "21110", null, "2684", null, "22141", null, "1907", null, "133873", null, "3634", null, "67625", null, "2317", null, "183175", null, "5482", null, "23385", null, "2413", null, "71626", null, "4356", null, "88164", null, "4935", null, "-888888888", "(X)", "-888888888", "(X)", "38.5", null, "1.0", null, "61.5", null, "1.0", null, "33.8", null, "1.5", null, "23.7", null, "1.3", null, "5.5", null, "0.7", null, "18.2", null, "1.3", null, "42.6", null, "1.5", null, "28.5", null, "1.3", null, "13.7", null, "1.1", null, "14.6", null, "1.1", null, "3.1", null, "0.6", null, "11.4", null, "1.2", null, "0.3", null, "0.2", null, "71.5", null, "1.3", null, "20.1", null, "1.4", null, "9.1", null, "0.8", null, "2.4", null, "0.4", null, "6.7", null, "0.7", null, "42.3", null, "1.6", null, "13.2", null, "1.1", null, "86.8", null, "1.1", null, "30.6", null, "1.7", null, "69.4", null, "1.7", null, "43.6", null, "1.1", null, "44.0", null, "1.2", null, "0.5", null, "0.2", null, "2.5", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "2.7", null, "0.5", null, "6.6", null, "0.8", null, "6.9", null, "0.6", null, "42.0", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.8", null, "1.3", null, "39.1", null, "2.2", null, "48.1", null, "2.0", null, "53332", null, "4559", null, "19995", null, "2238", null, "33337", null, "4124", null, "10408", null, "2425", null, "26002", null, "2736", null, "3222", null, "992", null, "22780", null, "2701", null, "16922", null, "2555", null, "27610", null, "3238", null, "6927", null, "1929", null, "20032", null, "2478", null, "2408", null, "943", null, "17624", null, "2397", null, "651", null, "633", null, "25722", null, "3035", null, "3481", null, "1144", null, "5970", null, "1293", null, "814", null, "451", null, "5156", null, "1205", null, "16271", null, "2430", null, "20814", null, "2807", null, "32518", null, "3969", null, "25081", null, "3286", null, "28251", null, "3861", null, "12371", null, "2145", null, "33651", null, "3375", null, "204", null, "152", null, "1813", null, "830", null, "-999999999", "N", "-999999999", "N", "1848", null, "940", null, "3445", null, "1069", null, "3628", null, "1214", null, "11885", null, "2218", null, "31736", null, "3998", null, "36410", null, "3717", null, "5698", null, "1375", null, "19239", null, "2803", null, "11473", null, "2432", null, "16.7", null, "1.4", null, "37.5", null, "4.0", null, "62.5", null, "4.0", null, "19.5", null, "3.9", null, "48.8", null, "4.1", null, "6.0", null, "1.7", null, "42.7", null, "4.6", null, "31.7", null, "3.9", null, "51.8", null, "4.0", null, "13.0", null, "3.2", null, "37.6", null, "3.9", null, "4.5", null, "1.7", null, "33.0", null, "4.2", null, "1.2", null, "1.2", null, "48.2", null, "4.0", null, "6.5", null, "2.0", null, "11.2", null, "2.4", null, "1.5", null, "0.8", null, "9.7", null, "2.2", null, "30.5", null, "3.8", null, "39.0", null, "4.6", null, "61.0", null, "4.6", null, "47.0", null, "5.2", null, "53.0", null, "5.2", null, "23.2", null, "3.4", null, "63.1", null, "3.8", null, "0.4", null, "0.3", null, "3.4", null, "1.6", null, "-999999999.0", "N", "-999999999.0", "N", "3.5", null, "1.7", null, "6.5", null, "1.9", null, "6.8", null, "2.1", null, "22.3", null, "3.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.6", null, "3.8", null, "52.8", null, "5.7", null, "31.5", null, "5.4", null, "265523", null, "5683", null, "102863", null, "3421", null, "162660", null, "5332", null, "97259", null, "5298", null, "49506", null, "3455", null, "14410", null, "2056", null, "35096", null, "3172", null, "118758", null, "5305", null, "63423", null, "3748", null, "36713", null, "3387", null, "26426", null, "2759", null, "7601", null, "1701", null, "18825", null, "2593", null, "284", null, "250", null, "202100", null, "5621", null, "60546", null, "4360", null, "23080", null, "2238", null, "6809", null, "1156", null, "16271", null, "2155", null, "118474", null, "5281", null, "21326", null, "2646", null, "244197", null, "5476", null, "72534", null, "5038", null, "192989", null, "5753", null, "126509", null, "4101", null, "106775", null, "4278", null, "1328", null, "687", null, "6196", null, "1344", null, "-999999999", "N", "-999999999", "N", "6737", null, "1477", null, "17665", null, "2680", null, "18513", null, "2098", null, "121988", null, "3822", null, "73767", null, "2666", null, "146765", null, "5426", null, "17687", null, "2118", null, "52387", null, "3579", null, "76691", null, "4471", null, "83.3", null, "1.4", null, "38.7", null, "1.2", null, "61.3", null, "1.2", null, "36.6", null, "1.8", null, "18.6", null, "1.3", null, "5.4", null, "0.8", null, "13.2", null, "1.2", null, "44.7", null, "1.7", null, "23.9", null, "1.3", null, "13.8", null, "1.2", null, "10.0", null, "1.0", null, "2.9", null, "0.6", null, "7.1", null, "1.0", null, "0.1", null, "0.1", null, "76.1", null, "1.3", null, "22.8", null, "1.5", null, "8.7", null, "0.8", null, "2.6", null, "0.4", null, "6.1", null, "0.8", null, "44.6", null, "1.7", null, "8.0", null, "1.0", null, "92.0", null, "1.0", null, "27.3", null, "1.7", null, "72.7", null, "1.7", null, "47.6", null, "1.4", null, "40.2", null, "1.3", null, "0.5", null, "0.3", null, "2.3", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "2.5", null, "0.6", null, "6.7", null, "1.0", null, "7.0", null, "0.8", null, "45.9", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.1", null, "1.4", null, "35.7", null, "2.2", null, "52.3", null, "2.1", null, "51", "03"], ["5001900US5104", "Congressional District 4 (119th Congress), Virginia", "340223", null, "5158", null, "135754", null, "4416", null, "204469", null, "4883", null, "120919", null, "4842", null, "74497", null, "5045", null, "15686", null, "2552", null, "58811", null, "4437", null, "144807", null, "5837", null, "88390", null, "5142", null, "44513", null, "3503", null, "43271", null, "4361", null, "7957", null, "1992", null, "35314", null, "3833", null, "606", null, "361", null, "251833", null, "6015", null, "76406", null, "3662", null, "31226", null, "3064", null, "7729", null, "1560", null, "23497", null, "2640", null, "144201", null, "5747", null, "47730", null, "3567", null, "292493", null, "5869", null, "96385", null, "6285", null, "243838", null, "6834", null, "158125", null, "4315", null, "140341", null, "4628", null, "648", null, "361", null, "6522", null, "1285", null, "-999999999", "N", "-999999999", "N", "11095", null, "2150", null, "23374", null, "2988", null, "24437", null, "2456", null, "154241", null, "4361", null, "69839", null, "2649", null, "195416", null, "6002", null, "26948", null, "3025", null, "66586", null, "4899", null, "101882", null, "5186", null, "-888888888", "(X)", "-888888888", "(X)", "39.9", null, "1.1", null, "60.1", null, "1.1", null, "35.5", null, "1.4", null, "21.9", null, "1.4", null, "4.6", null, "0.7", null, "17.3", null, "1.3", null, "42.6", null, "1.6", null, "26.0", null, "1.4", null, "13.1", null, "1.0", null, "12.7", null, "1.2", null, "2.3", null, "0.6", null, "10.4", null, "1.1", null, "0.2", null, "0.1", null, "74.0", null, "1.4", null, "22.5", null, "1.0", null, "9.2", null, "0.9", null, "2.3", null, "0.5", null, "6.9", null, "0.8", null, "42.4", null, "1.5", null, "14.0", null, "1.0", null, "86.0", null, "1.0", null, "28.3", null, "1.8", null, "71.7", null, "1.8", null, "46.5", null, "1.2", null, "41.2", null, "1.2", null, "0.2", null, "0.1", null, "1.9", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "3.3", null, "0.6", null, "6.9", null, "0.9", null, "7.2", null, "0.7", null, "45.3", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.8", null, "1.4", null, "34.1", null, "2.2", null, "52.1", null, "2.4", null, "48333", null, "4108", null, "18451", null, "2435", null, "29882", null, "3769", null, "9639", null, "1869", null, "23614", null, "3166", null, "2716", null, "999", null, "20898", null, "3028", null, "15080", null, "1920", null, "23653", null, "3275", null, "6023", null, "1575", null, "17384", null, "2829", null, "1770", null, "862", null, "15614", null, "2698", null, "246", null, "251", null, "24680", null, "2624", null, "3616", null, "1107", null, "6230", null, "1338", null, "946", null, "544", null, "5284", null, "1254", null, "14834", null, "1960", null, "20654", null, "2722", null, "27679", null, "3637", null, "23912", null, "3208", null, "24421", null, "3388", null, "12040", null, "1903", null, "30490", null, "2995", null, "87", null, "109", null, "60", null, "101", null, "-999999999", "N", "-999999999", "N", "1188", null, "881", null, "4468", null, "1445", null, "2964", null, "1341", null, "12040", null, "1903", null, "31545", null, "4865", null, "33253", null, "3738", null, "7747", null, "2084", null, "14824", null, "2520", null, "10682", null, "2251", null, "14.2", null, "1.2", null, "38.2", null, "4.7", null, "61.8", null, "4.7", null, "19.9", null, "3.3", null, "48.9", null, "4.6", null, "5.6", null, "2.1", null, "43.2", null, "4.5", null, "31.2", null, "3.8", null, "48.9", null, "4.4", null, "12.5", null, "2.9", null, "36.0", null, "4.5", null, "3.7", null, "1.8", null, "32.3", null, "4.3", null, "0.5", null, "0.5", null, "51.1", null, "4.4", null, "7.5", null, "2.2", null, "12.9", null, "2.6", null, "2.0", null, "1.1", null, "10.9", null, "2.5", null, "30.7", null, "3.8", null, "42.7", null, "4.9", null, "57.3", null, "4.9", null, "49.5", null, "5.4", null, "50.5", null, "5.4", null, "24.9", null, "3.5", null, "63.1", null, "3.9", null, "0.2", null, "0.2", null, "0.1", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "2.5", null, "1.8", null, "9.2", null, "2.8", null, "6.1", null, "2.6", null, "24.9", null, "3.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "23.3", null, "5.8", null, "44.6", null, "5.6", null, "32.1", null, "5.7", null, "291890", null, "5904", null, "117303", null, "4085", null, "174587", null, "5362", null, "111280", null, "4804", null, "50883", null, "4401", null, "12970", null, "2217", null, "37913", null, "3786", null, "129727", null, "5716", null, "64737", null, "4710", null, "38490", null, "3261", null, "25887", null, "3681", null, "6187", null, "1670", null, "19700", null, "3184", null, "360", null, "278", null, "227153", null, "6117", null, "72790", null, "3585", null, "24996", null, "2853", null, "6783", null, "1399", null, "18213", null, "2440", null, "129367", null, "5655", null, "27076", null, "2671", null, "264814", null, "5899", null, "72473", null, "4769", null, "219417", null, "6692", null, "146085", null, "4479", null, "109851", null, "4622", null, "561", null, "325", null, "6462", null, "1276", null, "-999999999", "N", "-999999999", "N", "9907", null, "2032", null, "18906", null, "2656", null, "21473", null, "2320", null, "142201", null, "4445", null, "76986", null, "3836", null, "162163", null, "5883", null, "19201", null, "2022", null, "51762", null, "4721", null, "91200", null, "5088", null, "85.8", null, "1.2", null, "40.2", null, "1.2", null, "59.8", null, "1.2", null, "38.1", null, "1.6", null, "17.4", null, "1.4", null, "4.4", null, "0.8", null, "13.0", null, "1.2", null, "44.4", null, "1.7", null, "22.2", null, "1.5", null, "13.2", null, "1.1", null, "8.9", null, "1.2", null, "2.1", null, "0.6", null, "6.7", null, "1.1", null, "0.1", null, "0.1", null, "77.8", null, "1.5", null, "24.9", null, "1.2", null, "8.6", null, "1.0", null, "2.3", null, "0.5", null, "6.2", null, "0.8", null, "44.3", null, "1.7", null, "9.3", null, "0.9", null, "90.7", null, "0.9", null, "24.8", null, "1.6", null, "75.2", null, "1.6", null, "50.0", null, "1.3", null, "37.6", null, "1.3", null, "0.2", null, "0.1", null, "2.2", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "3.4", null, "0.7", null, "6.5", null, "0.9", null, "7.4", null, "0.8", null, "48.7", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.8", null, "1.2", null, "31.9", null, "2.5", null, "56.2", null, "2.6", null, "51", "04"], ["5001900US5105", "Congressional District 5 (119th Congress), Virginia", "327798", null, "4940", null, "161589", null, "3467", null, "166209", null, "4722", null, "151283", null, "4696", null, "52825", null, "3334", null, "14139", null, "1884", null, "38686", null, "3045", null, "123690", null, "4698", null, "83127", null, "3887", null, "54355", null, "3145", null, "27781", null, "2917", null, "7171", null, "1408", null, "20610", null, "2642", null, "991", null, "512", null, "244671", null, "4927", null, "96928", null, "4254", null, "25044", null, "2431", null, "6968", null, "1341", null, "18076", null, "2307", null, "122699", null, "4657", null, "44608", null, "3530", null, "283190", null, "4929", null, "96981", null, "4357", null, "230817", null, "5119", null, "235603", null, "4055", null, "67157", null, "2921", null, "789", null, "398", null, "-999999999", "N", "-999999999", "N", "-999999999", "N", "-999999999", "N", "3441", null, "879", null, "14674", null, "2252", null, "11260", null, "1481", null, "232898", null, "3814", null, "73090", null, "2342", null, "204108", null, "5179", null, "35909", null, "2335", null, "66838", null, "4266", null, "101361", null, "4615", null, "-888888888", "(X)", "-888888888", "(X)", "49.3", null, "1.0", null, "50.7", null, "1.0", null, "46.2", null, "1.3", null, "16.1", null, "1.0", null, "4.3", null, "0.6", null, "11.8", null, "0.9", null, "37.7", null, "1.3", null, "25.4", null, "1.1", null, "16.6", null, "1.0", null, "8.5", null, "0.8", null, "2.2", null, "0.4", null, "6.3", null, "0.8", null, "0.3", null, "0.2", null, "74.6", null, "1.1", null, "29.6", null, "1.2", null, "7.6", null, "0.8", null, "2.1", null, "0.4", null, "5.5", null, "0.7", null, "37.4", null, "1.3", null, "13.6", null, "1.0", null, "86.4", null, "1.0", null, "29.6", null, "1.2", null, "70.4", null, "1.2", null, "71.9", null, "0.9", null, "20.5", null, "0.8", null, "0.2", null, "0.1", null, "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "1.0", null, "0.3", null, "4.5", null, "0.7", null, "3.4", null, "0.4", null, "71.0", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.6", null, "1.1", null, "32.7", null, "1.8", null, "49.7", null, "2.0", null, "38485", null, "3379", null, "17516", null, "1952", null, "20969", null, "2461", null, "7050", null, "1139", null, "14506", null, "2204", null, "2176", null, "793", null, "12330", null, "1982", null, "16929", null, "2534", null, "14662", null, "2239", null, "4561", null, "972", null, "9572", null, "1780", null, "1515", null, "666", null, "8057", null, "1663", null, "529", null, "413", null, "23823", null, "2928", null, "2489", null, "759", null, "4934", null, "1200", null, "661", null, "373", null, "4273", null, "1141", null, "16400", null, "2490", null, "17438", null, "2145", null, "21047", null, "2380", null, "18757", null, "2129", null, "19728", null, "2666", null, "19520", null, "2035", null, "17053", null, "2442", null, "68", null, "81", null, "-999999999", "N", "-999999999", "N", "-999999999", "N", "-999999999", "N", "370", null, "270", null, "1443", null, "635", null, "1386", null, "696", null, "19096", null, "2027", null, "27106", null, "4260", null, "21556", null, "2613", null, "4245", null, "1055", null, "11557", null, "1898", null, "5754", null, "1173", null, "11.7", null, "1.0", null, "45.5", null, "3.7", null, "54.5", null, "3.7", null, "18.3", null, "2.8", null, "37.7", null, "4.6", null, "5.7", null, "2.0", null, "32.0", null, "4.3", null, "44.0", null, "5.0", null, "38.1", null, "5.0", null, "11.9", null, "2.4", null, "24.9", null, "4.1", null, "3.9", null, "1.7", null, "20.9", null, "3.9", null, "1.4", null, "1.1", null, "61.9", null, "5.0", null, "6.5", null, "1.9", null, "12.8", null, "2.8", null, "1.7", null, "0.9", null, "11.1", null, "2.8", null, "42.6", null, "5.0", null, "45.3", null, "3.9", null, "54.7", null, "3.9", null, "48.7", null, "4.4", null, "51.3", null, "4.4", null, "50.7", null, "4.1", null, "44.3", null, "4.3", null, "0.2", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "1.0", null, "0.7", null, "3.7", null, "1.6", null, "3.6", null, "1.8", null, "49.6", null, "4.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "19.7", null, "4.5", null, "53.6", null, "5.5", null, "26.7", null, "4.3", null, "289313", null, "5404", null, "144073", null, "3209", null, "145240", null, "4556", null, "144233", null, "4564", null, "38319", null, "3108", null, "11963", null, "1846", null, "26356", null, "2757", null, "106761", null, "4406", null, "68465", null, "3471", null, "49794", null, "3130", null, "18209", null, "2330", null, "5656", null, "1325", null, "12553", null, "2079", null, "462", null, "354", null, "220848", null, "5001", null, "94439", null, "4104", null, "20110", null, "2192", null, "6307", null, "1297", null, "13803", null, "1929", null, "106299", null, "4342", null, "27170", null, "2956", null, "262143", null, "5284", null, "78224", null, "4097", null, "211089", null, "5349", null, "216083", null, "4309", null, "50104", null, "3053", null, "721", null, "425", null, "-999999999", "N", "-999999999", "N", "-999999999", "N", "-999999999", "N", "3071", null, "851", null, "13231", null, "2132", null, "9874", null, "1539", null, "213802", null, "4090", null, "80408", null, "1535", null, "182552", null, "4843", null, "31664", null, "1936", null, "55281", null, "3856", null, "95607", null, "4419", null, "88.3", null, "1.0", null, "49.8", null, "1.0", null, "50.2", null, "1.0", null, "49.9", null, "1.4", null, "13.2", null, "1.0", null, "4.1", null, "0.6", null, "9.1", null, "0.9", null, "36.9", null, "1.3", null, "23.7", null, "1.1", null, "17.2", null, "1.1", null, "6.3", null, "0.8", null, "2.0", null, "0.5", null, "4.3", null, "0.7", null, "0.2", null, "0.1", null, "76.3", null, "1.1", null, "32.6", null, "1.3", null, "7.0", null, "0.8", null, "2.2", null, "0.4", null, "4.8", null, "0.7", null, "36.7", null, "1.3", null, "9.4", null, "1.0", null, "90.6", null, "1.0", null, "27.0", null, "1.3", null, "73.0", null, "1.3", null, "74.7", null, "1.1", null, "17.3", null, "0.9", null, "0.2", null, "0.1", null, "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "-999999999.0", "N", "1.1", null, "0.3", null, "4.6", null, "0.7", null, "3.4", null, "0.5", null, "73.9", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.3", null, "1.0", null, "30.3", null, "1.9", null, "52.4", null, "2.0", null, "51", "05"], ["5001900US5106", "Congressional District 6 (119th Congress), Virginia", "322815", null, "4404", null, "151672", null, "3617", null, "171143", null, "4527", null, "151084", null, "5156", null, "51999", null, "3935", null, "15524", null, "2309", null, "36475", null, "3468", null, "119732", null, "4933", null, "84352", null, "4153", null, "54097", null, "3317", null, "29535", null, "3134", null, "9041", null, "2034", null, "20494", null, "2580", null, "720", null, "422", null, "238463", null, "4734", null, "96987", null, "3595", null, "22464", null, "2493", null, "6483", null, "1291", null, "15981", null, "2084", null, "119012", null, "4911", null, "35059", null, "3359", null, "287756", null, "5036", null, "94807", null, "4348", null, "228008", null, "5404", null, "264170", null, "4478", null, "23688", null, "2419", null, "-999999999", "N", "-999999999", "N", "4229", null, "892", null, "-999999999", "N", "-999999999", "N", "8358", null, "1621", null, "19969", null, "2523", null, "20230", null, "2142", null, "261996", null, "4291", null, "74264", null, "2881", null, "203083", null, "5326", null, "34800", null, "1983", null, "62353", null, "4301", null, "105930", null, "4492", null, "-888888888", "(X)", "-888888888", "(X)", "47.0", null, "1.1", null, "53.0", null, "1.1", null, "46.8", null, "1.5", null, "16.1", null, "1.2", null, "4.8", null, "0.7", null, "11.3", null, "1.0", null, "37.1", null, "1.4", null, "26.1", null, "1.2", null, "16.8", null, "1.0", null, "9.1", null, "0.9", null, "2.8", null, "0.6", null, "6.3", null, "0.8", null, "0.2", null, "0.1", null, "73.9", null, "1.2", null, "30.0", null, "1.1", null, "7.0", null, "0.8", null, "2.0", null, "0.4", null, "5.0", null, "0.6", null, "36.9", null, "1.4", null, "10.9", null, "1.0", null, "89.1", null, "1.0", null, "29.4", null, "1.3", null, "70.6", null, "1.3", null, "81.8", null, "0.9", null, "7.3", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "1.3", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "2.6", null, "0.5", null, "6.2", null, "0.8", null, "6.3", null, "0.7", null, "81.2", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.1", null, "0.9", null, "30.7", null, "1.9", null, "52.2", null, "1.8", null, "31685", null, "3449", null, "13281", null, "2268", null, "18404", null, "2431", null, "7911", null, "1838", null, "10968", null, "1737", null, "2520", null, "937", null, "8448", null, "1502", null, "12806", null, "2239", null, "13025", null, "2026", null, "5886", null, "1520", null, "6789", null, "1501", null, "1594", null, "800", null, "5195", null, "1227", null, "350", null, "297", null, "18660", null, "2780", null, "2025", null, "961", null, "4179", null, "1102", null, "926", null, "551", null, "3253", null, "1030", null, "12456", null, "2273", null, "10660", null, "1781", null, "21025", null, "3017", null, "18222", null, "2782", null, "13463", null, "2138", null, "22186", null, "2806", null, "5688", null, "1508", null, "-999999999", "N", "-999999999", "N", "190", null, "207", null, "-999999999", "N", "-999999999", "N", "1438", null, "854", null, "2071", null, "906", null, "3698", null, "1349", null, "21467", null, "2667", null, "31774", null, "3351", null, "18879", null, "2536", null, "3607", null, "985", null, "8715", null, "1996", null, "6557", null, "1447", null, "9.8", null, "1.0", null, "41.9", null, "5.1", null, "58.1", null, "5.1", null, "25.0", null, "4.8", null, "34.6", null, "4.8", null, "8.0", null, "2.9", null, "26.7", null, "4.2", null, "40.4", null, "5.3", null, "41.1", null, "5.3", null, "18.6", null, "4.5", null, "21.4", null, "4.3", null, "5.0", null, "2.5", null, "16.4", null, "3.5", null, "1.1", null, "1.0", null, "58.9", null, "5.3", null, "6.4", null, "2.8", null, "13.2", null, "3.5", null, "2.9", null, "1.8", null, "10.3", null, "3.2", null, "39.3", null, "5.3", null, "33.6", null, "5.0", null, "66.4", null, "5.0", null, "57.5", null, "5.5", null, "42.5", null, "5.5", null, "70.0", null, "5.1", null, "18.0", null, "4.4", null, "-999999999.0", "N", "-999999999.0", "N", "0.6", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "4.5", null, "2.7", null, "6.5", null, "2.6", null, "11.7", null, "3.9", null, "67.8", null, "5.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "19.1", null, "4.8", null, "46.2", null, "7.4", null, "34.7", null, "6.9", null, "291130", null, "4651", null, "138391", null, "3340", null, "152739", null, "4721", null, "143173", null, "4753", null, "41031", null, "3523", null, "13004", null, "1903", null, "28027", null, "3108", null, "106926", null, "4698", null, "71327", null, "4134", null, "48211", null, "3090", null, "22746", null, "2757", null, "7447", null, "1646", null, "15299", null, "2381", null, "370", null, "310", null, "219803", null, "4989", null, "94962", null, "3673", null, "18285", null, "2122", null, "5557", null, "1176", null, "12728", null, "1734", null, "106556", null, "4639", null, "24399", null, "3024", null, "266731", null, "4970", null, "76585", null, "3919", null, "214545", null, "4914", null, "241984", null, "4440", null, "18000", null, "2261", null, "-999999999", "N", "-999999999", "N", "4039", null, "978", null, "-999999999", "N", "-999999999", "N", "6920", null, "1516", null, "17898", null, "2543", null, "16532", null, "2134", null, "240529", null, "4293", null, "79121", null, "2654", null, "184204", null, "4995", null, "31193", null, "1874", null, "53638", null, "3994", null, "99373", null, "4167", null, "90.2", null, "1.0", null, "47.5", null, "1.1", null, "52.5", null, "1.1", null, "49.2", null, "1.6", null, "14.1", null, "1.2", null, "4.5", null, "0.6", null, "9.6", null, "1.0", null, "36.7", null, "1.5", null, "24.5", null, "1.3", null, "16.6", null, "1.0", null, "7.8", null, "0.9", null, "2.6", null, "0.6", null, "5.3", null, "0.8", null, "0.1", null, "0.1", null, "75.5", null, "1.3", null, "32.6", null, "1.3", null, "6.3", null, "0.7", null, "1.9", null, "0.4", null, "4.4", null, "0.6", null, "36.6", null, "1.4", null, "8.4", null, "1.0", null, "91.6", null, "1.0", null, "26.3", null, "1.3", null, "73.7", null, "1.3", null, "83.1", null, "1.0", null, "6.2", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "1.4", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "2.4", null, "0.5", null, "6.1", null, "0.8", null, "5.7", null, "0.7", null, "82.6", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.9", null, "1.0", null, "29.1", null, "1.9", null, "53.9", null, "1.8", null, "51", "06"], ["5001900US5107", "Congressional District 7 (119th Congress), Virginia", "285800", null, "3846", null, "112224", null, "3374", null, "173576", null, "4526", null, "159687", null, "4782", null, "49798", null, "4117", null, "17024", null, "2596", null, "32774", null, "3369", null, "76315", null, "4427", null, "102167", null, "5522", null, "72671", null, "4706", null, "28903", null, "3304", null, "10236", null, "2189", null, "18667", null, "2889", null, "593", null, "528", null, "183633", null, "5579", null, "87016", null, "3912", null, "20895", null, "2855", null, "6788", null, "1919", null, "14107", null, "1993", null, "75722", null, "4399", null, "22669", null, "2732", null, "263131", null, "4282", null, "72877", null, "4496", null, "212923", null, "4842", null, "168689", null, "4315", null, "61248", null, "3490", null, "1114", null, "620", null, "12224", null, "1528", null, "-999999999", "N", "-999999999", "N", "19271", null, "2603", null, "23189", null, "2867", null, "42287", null, "3013", null, "158298", null, "4178", null, "113690", null, "3029", null, "209485", null, "4582", null, "23757", null, "2466", null, "58901", null, "3746", null, "126827", null, "4650", null, "-888888888", "(X)", "-888888888", "(X)", "39.3", null, "1.2", null, "60.7", null, "1.2", null, "55.9", null, "1.6", null, "17.4", null, "1.4", null, "6.0", null, "0.9", null, "11.5", null, "1.2", null, "26.7", null, "1.4", null, "35.7", null, "1.8", null, "25.4", null, "1.6", null, "10.1", null, "1.2", null, "3.6", null, "0.8", null, "6.5", null, "1.0", null, "0.2", null, "0.2", null, "64.3", null, "1.8", null, "30.4", null, "1.4", null, "7.3", null, "1.0", null, "2.4", null, "0.7", null, "4.9", null, "0.7", null, "26.5", null, "1.4", null, "7.9", null, "0.9", null, "92.1", null, "0.9", null, "25.5", null, "1.5", null, "74.5", null, "1.5", null, "59.0", null, "1.3", null, "21.4", null, "1.2", null, "0.4", null, "0.2", null, "4.3", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "6.7", null, "0.9", null, "8.1", null, "1.0", null, "14.8", null, "1.0", null, "55.4", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.3", null, "1.1", null, "28.1", null, "1.8", null, "60.5", null, "1.7", null, "19637", null, "2370", null, "9007", null, "1416", null, "10630", null, "1872", null, "5005", null, "1082", null, "8394", null, "1537", null, "1818", null, "900", null, "6576", null, "1379", null, "6238", null, "1511", null, "8877", null, "1732", null, "2886", null, "774", null, "5871", null, "1595", null, "1242", null, "848", null, "4629", null, "1348", null, "120", null, "201", null, "10760", null, "1938", null, "2119", null, "658", null, "2523", null, "747", null, "576", null, "331", null, "1947", null, "695", null, "6118", null, "1510", null, "6978", null, "1488", null, "12659", null, "2096", null, "10464", null, "1768", null, "9173", null, "1919", null, "8418", null, "1508", null, "6715", null, "1563", null, "71", null, "83", null, "906", null, "539", null, "-999999999", "N", "-999999999", "N", "1775", null, "1046", null, "1752", null, "757", null, "3859", null, "1228", null, "7324", null, "1391", null, "44020", null, "8650", null, "13399", null, "1950", null, "1684", null, "599", null, "6734", null, "1417", null, "4981", null, "936", null, "6.9", null, "0.8", null, "45.9", null, "5.8", null, "54.1", null, "5.8", null, "25.5", null, "4.3", null, "42.7", null, "6.6", null, "9.3", null, "4.3", null, "33.5", null, "6.7", null, "31.8", null, "6.3", null, "45.2", null, "7.0", null, "14.7", null, "3.7", null, "29.9", null, "7.1", null, "6.3", null, "4.1", null, "23.6", null, "6.4", null, "0.6", null, "1.0", null, "54.8", null, "7.0", null, "10.8", null, "2.8", null, "12.8", null, "4.0", null, "2.9", null, "1.7", null, "9.9", null, "3.7", null, "31.2", null, "6.3", null, "35.5", null, "6.6", null, "64.5", null, "6.6", null, "53.3", null, "7.2", null, "46.7", null, "7.2", null, "42.9", null, "6.5", null, "34.2", null, "6.2", null, "0.4", null, "0.4", null, "4.6", null, "2.7", null, "-999999999.0", "N", "-999999999.0", "N", "9.0", null, "5.1", null, "8.9", null, "3.8", null, "19.7", null, "5.8", null, "37.3", null, "6.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.6", null, "4.2", null, "50.3", null, "6.1", null, "37.2", null, "5.9", null, "266163", null, "4352", null, "103217", null, "3225", null, "162946", null, "4763", null, "154682", null, "4914", null, "41404", null, "3874", null, "15206", null, "2743", null, "26198", null, "3139", null, "70077", null, "4297", null, "93290", null, "5253", null, "69785", null, "4800", null, "23032", null, "2816", null, "8994", null, "2068", null, "14038", null, "2500", null, "473", null, "478", null, "172873", null, "5619", null, "84897", null, "4053", null, "18372", null, "2703", null, "6212", null, "1912", null, "12160", null, "1961", null, "69604", null, "4249", null, "15691", null, "2368", null, "250472", null, "4439", null, "62413", null, "4846", null, "203750", null, "4882", null, "160271", null, "4201", null, "54533", null, "3693", null, "1043", null, "614", null, "11318", null, "1456", null, "-999999999", "N", "-999999999", "N", "17496", null, "2404", null, "21437", null, "2887", null, "38428", null, "2835", null, "150974", null, "4070", null, "118297", null, "4511", null, "196086", null, "4562", null, "22073", null, "2407", null, "52167", null, "3500", null, "121846", null, "4711", null, "93.1", null, "0.8", null, "38.8", null, "1.2", null, "61.2", null, "1.2", null, "58.1", null, "1.6", null, "15.6", null, "1.5", null, "5.7", null, "1.0", null, "9.8", null, "1.2", null, "26.3", null, "1.5", null, "35.0", null, "1.9", null, "26.2", null, "1.7", null, "8.7", null, "1.1", null, "3.4", null, "0.8", null, "5.3", null, "0.9", null, "0.2", null, "0.2", null, "65.0", null, "1.9", null, "31.9", null, "1.5", null, "6.9", null, "1.0", null, "2.3", null, "0.7", null, "4.6", null, "0.8", null, "26.2", null, "1.5", null, "5.9", null, "0.9", null, "94.1", null, "0.9", null, "23.4", null, "1.7", null, "76.6", null, "1.7", null, "60.2", null, "1.4", null, "20.5", null, "1.3", null, "0.4", null, "0.2", null, "4.3", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "6.6", null, "0.9", null, "8.1", null, "1.1", null, "14.4", null, "1.0", null, "56.7", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.3", null, "1.1", null, "26.6", null, "1.9", null, "62.1", null, "1.7", null, "51", "07"], ["5001900US5108", "Congressional District 8 (119th Congress), Virginia", "333913", null, "5104", null, "108876", null, "3316", null, "225037", null, "4796", null, "144352", null, "5162", null, "38473", null, "3631", null, "13084", null, "2321", null, "25389", null, "2963", null, "151088", null, "4484", null, "86460", null, "4402", null, "67360", null, "3943", null, "18374", null, "2655", null, "6006", null, "1738", null, "12368", null, "2168", null, "726", null, "464", null, "247453", null, "4932", null, "76992", null, "4044", null, "20099", null, "2566", null, "7078", null, "1501", null, "13021", null, "2152", null, "150362", null, "4466", null, "20854", null, "2626", null, "313059", null, "5646", null, "51468", null, "3244", null, "282445", null, "5705", null, "189871", null, "4009", null, "47466", null, "2860", null, "-999999999", "N", "-999999999", "N", "37247", null, "2702", null, "-999999999", "N", "-999999999", "N", "19361", null, "2706", null, "37848", null, "3211", null, "53088", null, "2981", null, "181817", null, "3789", null, "133323", null, "3451", null, "182825", null, "5494", null, "17553", null, "1906", null, "49374", null, "4092", null, "115898", null, "4879", null, "-888888888", "(X)", "-888888888", "(X)", "32.6", null, "0.9", null, "67.4", null, "0.9", null, "43.2", null, "1.3", null, "11.5", null, "1.1", null, "3.9", null, "0.7", null, "7.6", null, "0.9", null, "45.2", null, "1.3", null, "25.9", null, "1.2", null, "20.2", null, "1.1", null, "5.5", null, "0.8", null, "1.8", null, "0.5", null, "3.7", null, "0.6", null, "0.2", null, "0.1", null, "74.1", null, "1.2", null, "23.1", null, "1.1", null, "6.0", null, "0.8", null, "2.1", null, "0.4", null, "3.9", null, "0.7", null, "45.0", null, "1.3", null, "6.2", null, "0.8", null, "93.8", null, "0.8", null, "15.4", null, "1.0", null, "84.6", null, "1.0", null, "56.9", null, "1.0", null, "14.2", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "11.2", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "5.8", null, "0.8", null, "11.3", null, "0.9", null, "15.9", null, "0.8", null, "54.5", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "9.6", null, "1.0", null, "27.0", null, "2.0", null, "63.4", null, "2.1", null, "16674", null, "2187", null, "7209", null, "1355", null, "9465", null, "1900", null, "6280", null, "1461", null, "5233", null, "1433", null, "798", null, "522", null, "4435", null, "1400", null, "5161", null, "1180", null, "7993", null, "1674", null, "4710", null, "1395", null, "3054", null, "1093", null, "312", null, "280", null, "2742", null, "1067", null, "229", null, "364", null, "8681", null, "1644", null, "1570", null, "655", null, "2179", null, "961", null, "486", null, "387", null, "1693", null, "898", null, "4932", null, "1187", null, "5104", null, "1234", null, "11570", null, "1911", null, "7633", null, "1513", null, "9041", null, "1939", null, "3987", null, "1196", null, "4477", null, "1190", null, "-999999999", "N", "-999999999", "N", "3087", null, "838", null, "-999999999", "N", "-999999999", "N", "2303", null, "1050", null, "2775", null, "1049", null, "4991", null, "1551", null, "3317", null, "962", null, "37111", null, "6586", null, "11513", null, "1834", null, "1371", null, "603", null, "5143", null, "1543", null, "4999", null, "1315", null, "5.0", null, "0.6", null, "43.2", null, "7.2", null, "56.8", null, "7.2", null, "37.7", null, "7.1", null, "31.4", null, "7.6", null, "4.8", null, "3.0", null, "26.6", null, "7.9", null, "31.0", null, "6.0", null, "47.9", null, "7.4", null, "28.2", null, "7.2", null, "18.3", null, "6.4", null, "1.9", null, "1.6", null, "16.4", null, "6.3", null, "1.4", null, "2.2", null, "52.1", null, "7.4", null, "9.4", null, "3.9", null, "13.1", null, "5.4", null, "2.9", null, "2.3", null, "10.2", null, "5.1", null, "29.6", null, "6.3", null, "30.6", null, "6.5", null, "69.4", null, "6.5", null, "45.8", null, "8.0", null, "54.2", null, "8.0", null, "23.9", null, "6.3", null, "26.9", null, "6.2", null, "-999999999.0", "N", "-999999999.0", "N", "18.5", null, "4.8", null, "-999999999.0", "N", "-999999999.0", "N", "13.8", null, "6.1", null, "16.6", null, "5.8", null, "29.9", null, "7.8", null, "19.9", null, "5.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "11.9", null, "5.2", null, "44.7", null, "10.6", null, "43.4", null, "9.8", null, "317239", null, "5265", null, "101667", null, "3487", null, "215572", null, "4803", null, "138072", null, "4749", null, "33240", null, "3085", null, "12286", null, "2212", null, "20954", null, "2518", null, "145927", null, "4628", null, "78467", null, "4201", null, "62650", null, "3647", null, "15320", null, "2364", null, "5694", null, "1670", null, "9626", null, "1813", null, "497", null, "303", null, "238772", null, "5071", null, "75422", null, "3961", null, "17920", null, "2286", null, "6592", null, "1423", null, "11328", null, "1989", null, "145430", null, "4597", null, "15750", null, "2320", null, "301489", null, "5457", null, "43835", null, "2926", null, "273404", null, "5689", null, "185884", null, "3955", null, "42989", null, "2873", null, "-999999999", "N", "-999999999", "N", "34160", null, "2642", null, "-999999999", "N", "-999999999", "N", "17058", null, "2561", null, "35073", null, "3049", null, "48097", null, "3035", null, "178500", null, "3743", null, "137808", null, "4536", null, "171312", null, "5369", null, "16182", null, "1805", null, "44231", null, "3595", null, "110899", null, "4635", null, "95.0", null, "0.6", null, "32.0", null, "1.0", null, "68.0", null, "1.0", null, "43.5", null, "1.3", null, "10.5", null, "0.9", null, "3.9", null, "0.7", null, "6.6", null, "0.8", null, "46.0", null, "1.3", null, "24.7", null, "1.2", null, "19.7", null, "1.1", null, "4.8", null, "0.7", null, "1.8", null, "0.5", null, "3.0", null, "0.6", null, "0.2", null, "0.1", null, "75.3", null, "1.2", null, "23.8", null, "1.2", null, "5.6", null, "0.7", null, "2.1", null, "0.4", null, "3.6", null, "0.6", null, "45.8", null, "1.3", null, "5.0", null, "0.7", null, "95.0", null, "0.7", null, "13.8", null, "0.9", null, "86.2", null, "0.9", null, "58.6", null, "1.0", null, "13.6", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "10.8", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "5.4", null, "0.8", null, "11.1", null, "0.9", null, "15.2", null, "0.9", null, "56.3", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "9.4", null, "1.0", null, "25.8", null, "1.8", null, "64.7", null, "2.0", null, "51", "08"], ["5001900US5109", "Congressional District 9 (119th Congress), Virginia", "326838", null, "5497", null, "160175", null, "3343", null, "166663", null, "5208", null, "154770", null, "4801", null, "50625", null, "3006", null, "15984", null, "2050", null, "34641", null, "2690", null, "121443", null, "5279", null, "76023", null, "3436", null, "47839", null, "3390", null, "27925", null, "2372", null, "9147", null, "1515", null, "18778", null, "2038", null, "259", null, "220", null, "250815", null, "4763", null, "106931", null, "4439", null, "22700", null, "2089", null, "6837", null, "1255", null, "15863", null, "1929", null, "121184", null, "5269", null, "54975", null, "3603", null, "271863", null, "5377", null, "116761", null, "4581", null, "210077", null, "5903", null, "292039", null, "5364", null, "14080", null, "1334", null, "-999999999", "N", "-999999999", "N", "3676", null, "692", null, "-999999999", "N", "-999999999", "N", "4918", null, "1203", null, "11723", null, "1778", null, "8723", null, "1245", null, "290509", null, "5213", null, "59156", null, "2316", null, "205395", null, "5525", null, "50841", null, "2637", null, "65469", null, "4055", null, "89085", null, "4160", null, "-888888888", "(X)", "-888888888", "(X)", "49.0", null, "1.0", null, "51.0", null, "1.0", null, "47.4", null, "1.3", null, "15.5", null, "0.9", null, "4.9", null, "0.6", null, "10.6", null, "0.8", null, "37.2", null, "1.4", null, "23.3", null, "0.9", null, "14.6", null, "1.0", null, "8.5", null, "0.7", null, "2.8", null, "0.5", null, "5.7", null, "0.6", null, "0.1", null, "0.1", null, "76.7", null, "0.9", null, "32.7", null, "1.4", null, "6.9", null, "0.6", null, "2.1", null, "0.4", null, "4.9", null, "0.6", null, "37.1", null, "1.4", null, "16.8", null, "1.0", null, "83.2", null, "1.0", null, "35.7", null, "1.3", null, "64.3", null, "1.3", null, "89.4", null, "0.7", null, "4.3", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "1.1", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "1.5", null, "0.4", null, "3.6", null, "0.5", null, "2.7", null, "0.4", null, "88.9", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "24.8", null, "1.3", null, "31.9", null, "1.7", null, "43.4", null, "1.6", null, "47885", null, "3497", null, "19052", null, "2202", null, "28833", null, "2781", null, "10797", null, "1739", null, "18563", null, "2318", null, "4914", null, "1343", null, "13649", null, "1852", null, "18525", null, "2338", null, "17909", null, "2338", null, "5827", null, "1327", null, "11911", null, "1878", null, "2880", null, "1102", null, "9031", null, "1555", null, "171", null, "184", null, "29976", null, "2931", null, "4970", null, "1066", null, "6652", null, "1324", null, "2034", null, "743", null, "4618", null, "1033", null, "18354", null, "2316", null, "24602", null, "2540", null, "23283", null, "2213", null, "27605", null, "2521", null, "20280", null, "2834", null, "41740", null, "3470", null, "2533", null, "833", null, "-999999999", "N", "-999999999", "N", "158", null, "170", null, "-999999999", "N", "-999999999", "N", "1150", null, "749", null, "2262", null, "706", null, "2184", null, "991", null, "41150", null, "3380", null, "22635", null, "2139", null, "29360", null, "2939", null, "12111", null, "1986", null, "11328", null, "1765", null, "5921", null, "1267", null, "14.7", null, "1.0", null, "39.8", null, "3.7", null, "60.2", null, "3.7", null, "22.5", null, "3.1", null, "38.8", null, "4.0", null, "10.3", null, "2.7", null, "28.5", null, "3.3", null, "38.7", null, "4.1", null, "37.4", null, "4.1", null, "12.2", null, "2.6", null, "24.9", null, "3.5", null, "6.0", null, "2.3", null, "18.9", null, "3.0", null, "0.4", null, "0.4", null, "62.6", null, "4.1", null, "10.4", null, "2.0", null, "13.9", null, "2.6", null, "4.2", null, "1.5", null, "9.6", null, "2.1", null, "38.3", null, "4.1", null, "51.4", null, "3.4", null, "48.6", null, "3.4", null, "57.6", null, "4.3", null, "42.4", null, "4.3", null, "87.2", null, "2.9", null, "5.3", null, "1.8", null, "-999999999.0", "N", "-999999999.0", "N", "0.3", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "2.4", null, "1.5", null, "4.7", null, "1.4", null, "4.6", null, "2.0", null, "85.9", null, "3.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "41.3", null, "5.0", null, "38.6", null, "4.9", null, "20.2", null, "3.9", null, "278953", null, "4837", null, "141123", null, "3235", null, "137830", null, "4830", null, "143973", null, "4747", null, "32062", null, "2542", null, "11070", null, "1691", null, "20992", null, "2372", null, "102918", null, "5070", null, "58114", null, "3336", null, "42012", null, "3219", null, "16014", null, "2016", null, "6267", null, "1328", null, "9747", null, "1498", null, "88", null, "127", null, "220839", null, "4792", null, "101961", null, "4393", null, "16048", null, "1865", null, "4803", null, "1044", null, "11245", null, "1761", null, "102830", null, "5066", null, "30373", null, "2615", null, "248580", null, "4822", null, "89156", null, "4384", null, "189797", null, "5242", null, "250299", null, "4844", null, "11547", null, "1432", null, "-999999999", "N", "-999999999", "N", "3518", null, "681", null, "-999999999", "N", "-999999999", "N", "3768", null, "1033", null, "9461", null, "1702", null, "6539", null, "1103", null, "249359", null, "4753", null, "67161", null, "2916", null, "176035", null, "5320", null, "38730", null, "2265", null, "54141", null, "3314", null, "83164", null, "4294", null, "85.3", null, "1.0", null, "50.6", null, "1.2", null, "49.4", null, "1.2", null, "51.6", null, "1.5", null, "11.5", null, "0.9", null, "4.0", null, "0.6", null, "7.5", null, "0.8", null, "36.9", null, "1.6", null, "20.8", null, "1.1", null, "15.1", null, "1.1", null, "5.7", null, "0.7", null, "2.2", null, "0.5", null, "3.5", null, "0.5", null, "0.0", null, "0.1", null, "79.2", null, "1.1", null, "36.6", null, "1.5", null, "5.8", null, "0.7", null, "1.7", null, "0.4", null, "4.0", null, "0.6", null, "36.9", null, "1.6", null, "10.9", null, "0.9", null, "89.1", null, "0.9", null, "32.0", null, "1.5", null, "68.0", null, "1.5", null, "89.7", null, "0.8", null, "4.1", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "1.3", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "1.4", null, "0.4", null, "3.4", null, "0.6", null, "2.3", null, "0.4", null, "89.4", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "22.0", null, "1.2", null, "30.8", null, "1.7", null, "47.2", null, "1.7", null, "51", "09"], ["5001900US5110", "Congressional District 10 (119th Congress), Virginia", "271496", null, "3558", null, "102748", null, "3040", null, "168748", null, "4130", null, "170765", null, "5039", null, "38007", null, "3399", null, "12242", null, "1661", null, "25765", null, "3122", null, "62724", null, "3763", null, "113161", null, "4212", null, "88280", null, "4050", null, "24075", null, "3140", null, "7120", null, "1452", null, "16955", null, "2669", null, "806", null, "581", null, "158335", null, "4119", null, "82485", null, "3900", null, "13932", null, "1919", null, "5122", null, "1196", null, "8810", null, "1302", null, "61918", null, "3728", null, "14033", null, "2380", null, "257463", null, "3713", null, "51791", null, "3314", null, "219705", null, "4525", null, "163997", null, "3151", null, "25520", null, "2372", null, "-999999999", "N", "-999999999", "N", "38792", null, "2109", null, "-999999999", "N", "-999999999", "N", "13819", null, "2115", null, "27810", null, "2548", null, "37320", null, "2629", null, "157878", null, "3259", null, "157863", null, "5914", null, "208772", null, "4213", null, "18987", null, "2066", null, "50836", null, "3495", null, "138949", null, "4561", null, "-888888888", "(X)", "-888888888", "(X)", "37.8", null, "1.1", null, "62.2", null, "1.1", null, "62.9", null, "1.7", null, "14.0", null, "1.3", null, "4.5", null, "0.6", null, "9.5", null, "1.1", null, "23.1", null, "1.3", null, "41.7", null, "1.4", null, "32.5", null, "1.4", null, "8.9", null, "1.1", null, "2.6", null, "0.5", null, "6.2", null, "1.0", null, "0.3", null, "0.2", null, "58.3", null, "1.4", null, "30.4", null, "1.4", null, "5.1", null, "0.7", null, "1.9", null, "0.4", null, "3.2", null, "0.5", null, "22.8", null, "1.3", null, "5.2", null, "0.9", null, "94.8", null, "0.9", null, "19.1", null, "1.2", null, "80.9", null, "1.2", null, "60.4", null, "1.0", null, "9.4", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "14.3", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "5.1", null, "0.8", null, "10.2", null, "0.9", null, "13.7", null, "0.9", null, "58.2", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "9.1", null, "0.9", null, "24.4", null, "1.7", null, "66.6", null, "1.7", null, "9526", null, "1794", null, "4082", null, "1171", null, "5444", null, "1458", null, "3039", null, "757", null, "4438", null, "1458", null, "804", null, "615", null, "3634", null, "1351", null, "2049", null, "984", null, "6385", null, "1567", null, "2241", null, "706", null, "3860", null, "1402", null, "750", null, "608", null, "3110", null, "1305", null, "284", null, "452", null, "3141", null, "1056", null, "798", null, "402", null, "578", null, "347", null, "54", null, "96", null, "524", null, "330", null, "1765", null, "895", null, "3455", null, "1213", null, "6071", null, "1476", null, "3595", null, "1109", null, "5931", null, "1456", null, "2657", null, "865", null, "2434", null, "933", null, "-999999999", "N", "-999999999", "N", "1861", null, "706", null, "-999999999", "N", "-999999999", "N", "609", null, "572", null, "1965", null, "1102", null, "2278", null, "1227", null, "2454", null, "790", null, "40043", null, "9481", null, "7477", null, "1567", null, "1046", null, "739", null, "2851", null, "1032", null, "3580", null, "1169", null, "3.5", null, "0.7", null, "42.9", null, "9.9", null, "57.1", null, "9.9", null, "31.9", null, "8.6", null, "46.6", null, "10.5", null, "8.4", null, "6.0", null, "38.1", null, "11.0", null, "21.5", null, "9.0", null, "67.0", null, "9.6", null, "23.5", null, "7.9", null, "40.5", null, "10.7", null, "7.9", null, "6.0", null, "32.6", null, "11.1", null, "3.0", null, "4.6", null, "33.0", null, "9.6", null, "8.4", null, "4.2", null, "6.1", null, "3.5", null, "0.6", null, "1.0", null, "5.5", null, "3.3", null, "18.5", null, "8.5", null, "36.3", null, "10.5", null, "63.7", null, "10.5", null, "37.7", null, "9.4", null, "62.3", null, "9.4", null, "27.9", null, "7.5", null, "25.6", null, "8.2", null, "-999999999.0", "N", "-999999999.0", "N", "19.5", null, "8.2", null, "-999999999.0", "N", "-999999999.0", "N", "6.4", null, "5.8", null, "20.6", null, "9.9", null, "23.9", null, "10.9", null, "25.8", null, "7.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.0", null, "9.3", null, "38.1", null, "11.6", null, "47.9", null, "12.4", null, "261970", null, "3695", null, "98666", null, "2732", null, "163304", null, "4132", null, "167726", null, "4977", null, "33569", null, "3021", null, "11438", null, "1641", null, "22131", null, "2776", null, "60675", null, "3699", null, "106776", null, "3898", null, "86039", null, "4025", null, "20215", null, "2694", null, "6370", null, "1412", null, "13845", null, "2280", null, "522", null, "352", null, "155194", null, "4048", null, "81687", null, "3886", null, "13354", null, "1827", null, "5068", null, "1181", null, "8286", null, "1266", null, "60153", null, "3722", null, "10578", null, "2170", null, "251392", null, "4119", null, "48196", null, "3267", null, "213774", null, "4611", null, "161340", null, "3082", null, "23086", null, "2295", null, "-999999999", "N", "-999999999", "N", "36931", null, "2206", null, "-999999999", "N", "-999999999", "N", "13210", null, "2104", null, "25845", null, "2427", null, "35042", null, "2589", null, "155424", null, "3193", null, "161957", null, "4855", null, "201295", null, "4213", null, "17941", null, "1852", null, "47985", null, "3382", null, "135369", null, "4469", null, "96.5", null, "0.7", null, "37.7", null, "1.1", null, "62.3", null, "1.1", null, "64.0", null, "1.7", null, "12.8", null, "1.2", null, "4.4", null, "0.6", null, "8.4", null, "1.1", null, "23.2", null, "1.3", null, "40.8", null, "1.3", null, "32.8", null, "1.4", null, "7.7", null, "1.0", null, "2.4", null, "0.5", null, "5.3", null, "0.9", null, "0.2", null, "0.1", null, "59.2", null, "1.3", null, "31.2", null, "1.4", null, "5.1", null, "0.7", null, "1.9", null, "0.5", null, "3.2", null, "0.5", null, "23.0", null, "1.3", null, "4.0", null, "0.8", null, "96.0", null, "0.8", null, "18.4", null, "1.2", null, "81.6", null, "1.2", null, "61.6", null, "1.1", null, "8.8", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "14.1", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "5.0", null, "0.8", null, "9.9", null, "0.9", null, "13.4", null, "1.0", null, "59.3", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "8.9", null, "0.9", null, "23.8", null, "1.6", null, "67.2", null, "1.7", null, "51", "10"], ["5001900US5111", "Congressional District 11 (119th Congress), Virginia", "285985", null, "4197", null, "109132", null, "3098", null, "176853", null, "4341", null, "164264", null, "5217", null, "36763", null, "3554", null, "9585", null, "1702", null, "27178", null, "3149", null, "84958", null, "4250", null, "95717", null, "3801", null, "78107", null, "3494", null, "17117", null, "2524", null, "3551", null, "1095", null, "13566", null, "2497", null, "493", null, "345", null, "190268", null, "4481", null, "86157", null, "4004", null, "19646", null, "2703", null, "6034", null, "1490", null, "13612", null, "2185", null, "84465", null, "4221", null, "16001", null, "2695", null, "269984", null, "4925", null, "46353", null, "3227", null, "239632", null, "4623", null, "162522", null, "4124", null, "24442", null, "2429", null, "-999999999", "N", "-999999999", "N", "60667", null, "3001", null, "-999999999", "N", "-999999999", "N", "11575", null, "1858", null, "25092", null, "2955", null, "29866", null, "3042", null, "158307", null, "4118", null, "158109", null, "5097", null, "201027", null, "5546", null, "19325", null, "1892", null, "50176", null, "3583", null, "131526", null, "5279", null, "-888888888", "(X)", "-888888888", "(X)", "38.2", null, "1.0", null, "61.8", null, "1.0", null, "57.4", null, "1.5", null, "12.9", null, "1.2", null, "3.4", null, "0.6", null, "9.5", null, "1.1", null, "29.7", null, "1.5", null, "33.5", null, "1.2", null, "27.3", null, "1.1", null, "6.0", null, "0.9", null, "1.2", null, "0.4", null, "4.7", null, "0.9", null, "0.2", null, "0.1", null, "66.5", null, "1.2", null, "30.1", null, "1.3", null, "6.9", null, "0.9", null, "2.1", null, "0.5", null, "4.8", null, "0.7", null, "29.5", null, "1.5", null, "5.6", null, "0.9", null, "94.4", null, "0.9", null, "16.2", null, "1.1", null, "83.8", null, "1.1", null, "56.8", null, "1.2", null, "8.5", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "21.2", null, "1.0", null, "-999999999.0", "N", "-999999999.0", "N", "4.0", null, "0.6", null, "8.8", null, "1.0", null, "10.4", null, "1.0", null, "55.4", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "9.6", null, "0.9", null, "25.0", null, "1.6", null, "65.4", null, "1.8", null, "9968", null, "1864", null, "4804", null, "1120", null, "5164", null, "1493", null, "3854", null, "1144", null, "3966", null, "1271", null, "370", null, "291", null, "3596", null, "1235", null, "2148", null, "919", null, "5130", null, "1438", null, "2678", null, "1084", null, "2452", null, "1045", null, "111", null, "146", null, "2341", null, "1036", null, "0", null, "217", null, "4838", null, "1090", null, "1176", null, "432", null, "1514", null, "630", null, "259", null, "252", null, "1255", null, "571", null, "2148", null, "919", null, "2650", null, "918", null, "7318", null, "1600", null, "4982", null, "1296", null, "4986", null, "1330", null, "2999", null, "803", null, "2411", null, "1198", null, "-999999999", "N", "-999999999", "N", "1972", null, "670", null, "-999999999", "N", "-999999999", "N", "1276", null, "781", null, "1267", null, "739", null, "2041", null, "915", null, "2817", null, "790", null, "64907", null, "21541", null, "7820", null, "1541", null, "1379", null, "569", null, "2503", null, "1051", null, "3938", null, "1132", null, "3.5", null, "0.7", null, "48.2", null, "9.2", null, "51.8", null, "9.2", null, "38.7", null, "10.0", null, "39.8", null, "10.6", null, "3.7", null, "2.9", null, "36.1", null, "10.3", null, "21.5", null, "7.8", null, "51.5", null, "8.7", null, "26.9", null, "9.5", null, "24.6", null, "8.8", null, "1.1", null, "1.5", null, "23.5", null, "8.7", null, "0.0", null, "1.9", null, "48.5", null, "8.7", null, "11.8", null, "4.7", null, "15.2", null, "6.3", null, "2.6", null, "2.5", null, "12.6", null, "5.8", null, "21.5", null, "7.8", null, "26.6", null, "8.0", null, "73.4", null, "8.0", null, "50.0", null, "9.4", null, "50.0", null, "9.4", null, "30.1", null, "8.1", null, "24.2", null, "10.2", null, "-999999999.0", "N", "-999999999.0", "N", "19.8", null, "6.6", null, "-999999999.0", "N", "-999999999.0", "N", "12.8", null, "7.2", null, "12.7", null, "6.6", null, "20.5", null, "8.0", null, "28.3", null, "8.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.6", null, "7.3", null, "32.0", null, "10.7", null, "50.4", null, "11.0", null, "276017", null, "4719", null, "104328", null, "3188", null, "171689", null, "4529", null, "160410", null, "5136", null, "32797", null, "3374", null, "9215", null, "1661", null, "23582", null, "2828", null, "82810", null, "4323", null, "90587", null, "3923", null, "75429", null, "3493", null, "14665", null, "2351", null, "3440", null, "1060", null, "11225", null, "2242", null, "493", null, "345", null, "185430", null, "4644", null, "84981", null, "3937", null, "18132", null, "2693", null, "5775", null, "1452", null, "12357", null, "2204", null, "82317", null, "4300", null, "13351", null, "2478", null, "262666", null, "5058", null, "41371", null, "2960", null, "234646", null, "4679", null, "159523", null, "4263", null, "22031", null, "2374", null, "-999999999", "N", "-999999999", "N", "58695", null, "3089", null, "-999999999", "N", "-999999999", "N", "10299", null, "1758", null, "23825", null, "2912", null, "27825", null, "2993", null, "155490", null, "4303", null, "161559", null, "3623", null, "193207", null, "5616", null, "17946", null, "1723", null, "47673", null, "3201", null, "127588", null, "5232", null, "96.5", null, "0.7", null, "37.8", null, "1.1", null, "62.2", null, "1.1", null, "58.1", null, "1.5", null, "11.9", null, "1.2", null, "3.3", null, "0.6", null, "8.5", null, "1.0", null, "30.0", null, "1.5", null, "32.8", null, "1.3", null, "27.3", null, "1.1", null, "5.3", null, "0.9", null, "1.2", null, "0.4", null, "4.1", null, "0.8", null, "0.2", null, "0.1", null, "67.2", null, "1.3", null, "30.8", null, "1.4", null, "6.6", null, "1.0", null, "2.1", null, "0.5", null, "4.5", null, "0.8", null, "29.8", null, "1.5", null, "4.8", null, "0.9", null, "95.2", null, "0.9", null, "15.0", null, "1.0", null, "85.0", null, "1.0", null, "57.8", null, "1.4", null, "8.0", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "21.3", null, "1.1", null, "-999999999.0", "N", "-999999999.0", "N", "3.7", null, "0.6", null, "8.6", null, "1.0", null, "10.1", null, "1.0", null, "56.3", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "9.3", null, "0.9", null, "24.7", null, "1.5", null, "66.0", null, "1.7", null, "51", "11"], ["5001900US5301", "Congressional District 1 (119th Congress), Washington", "316992", null, "5807", null, "101323", null, "3690", null, "215669", null, "5623", null, "170278", null, "5364", null, "35508", null, "3388", null, "10078", null, "1874", null, "25430", null, "2858", null, "111206", null, "5124", null, "99741", null, "4157", null, "79864", null, "4039", null, "18844", null, "2261", null, "4683", null, "1334", null, "14161", null, "2064", null, "1033", null, "836", null, "217251", null, "5817", null, "90414", null, "3817", null, "16664", null, "2391", null, "5395", null, "1402", null, "11269", null, "1974", null, "110173", null, "5123", null, "22189", null, "3012", null, "294803", null, "6176", null, "65111", null, "3635", null, "251881", null, "6104", null, "199695", null, "5035", null, "6900", null, "1642", null, "1345", null, "570", null, "73097", null, "3816", null, "-999999999", "N", "-999999999", "N", "8066", null, "1400", null, "27111", null, "3184", null, "22737", null, "2862", null, "195000", null, "5159", null, "131159", null, "3834", null, "205786", null, "5329", null, "18312", null, "1553", null, "62749", null, "4636", null, "124725", null, "5227", null, "-888888888", "(X)", "-888888888", "(X)", "32.0", null, "1.1", null, "68.0", null, "1.1", null, "53.7", null, "1.4", null, "11.2", null, "1.1", null, "3.2", null, "0.6", null, "8.0", null, "0.9", null, "35.1", null, "1.4", null, "31.5", null, "1.2", null, "25.2", null, "1.2", null, "5.9", null, "0.7", null, "1.5", null, "0.4", null, "4.5", null, "0.6", null, "0.3", null, "0.3", null, "68.5", null, "1.2", null, "28.5", null, "1.1", null, "5.3", null, "0.8", null, "1.7", null, "0.4", null, "3.6", null, "0.6", null, "34.8", null, "1.4", null, "7.0", null, "0.9", null, "93.0", null, "0.9", null, "20.5", null, "1.1", null, "79.5", null, "1.1", null, "63.0", null, "1.3", null, "2.2", null, "0.5", null, "0.4", null, "0.2", null, "23.1", null, "1.1", null, "-999999999.0", "N", "-999999999.0", "N", "2.5", null, "0.4", null, "8.6", null, "1.0", null, "7.2", null, "0.9", null, "61.5", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "8.9", null, "0.7", null, "30.5", null, "2.1", null, "60.6", null, "2.0", null, "20659", null, "2957", null, "7487", null, "1355", null, "13172", null, "2731", null, "5551", null, "1291", null, "7803", null, "2345", null, "1492", null, "970", null, "6311", null, "1888", null, "7305", null, "1741", null, "9074", null, "2127", null, "3331", null, "1016", null, "5310", null, "1786", null, "530", null, "619", null, "4780", null, "1747", null, "433", null, "566", null, "11585", null, "1900", null, "2220", null, "824", null, "2493", null, "976", null, "962", null, "751", null, "1531", null, "681", null, "6872", null, "1594", null, "7703", null, "1938", null, "12956", null, "2204", null, "10795", null, "1647", null, "9864", null, "2545", null, "13884", null, "2343", null, "1088", null, "829", null, "349", null, "457", null, "3210", null, "1109", null, "-999999999", "N", "-999999999", "N", "289", null, "261", null, "1652", null, "940", null, "1633", null, "955", null, "13789", null, "2343", null, "35100", null, "6455", null, "13354", null, "2681", null, "1745", null, "779", null, "6515", null, "2133", null, "5094", null, "1401", null, "6.5", null, "0.9", null, "36.2", null, "6.7", null, "63.8", null, "6.7", null, "26.9", null, "6.0", null, "37.8", null, "8.3", null, "7.2", null, "4.3", null, "30.5", null, "7.2", null, "35.4", null, "7.7", null, "43.9", null, "6.9", null, "16.1", null, "4.8", null, "25.7", null, "6.9", null, "2.6", null, "3.0", null, "23.1", null, "7.1", null, "2.1", null, "2.7", null, "56.1", null, "6.9", null, "10.7", null, "4.0", null, "12.1", null, "4.0", null, "4.7", null, "3.3", null, "7.4", null, "3.2", null, "33.3", null, "7.4", null, "37.3", null, "7.1", null, "62.7", null, "7.1", null, "52.3", null, "7.7", null, "47.7", null, "7.7", null, "67.2", null, "6.8", null, "5.3", null, "3.8", null, "1.7", null, "2.2", null, "15.5", null, "5.3", null, "-999999999.0", "N", "-999999999.0", "N", "1.4", null, "1.2", null, "8.0", null, "4.4", null, "7.9", null, "4.4", null, "66.7", null, "6.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.1", null, "6.0", null, "48.8", null, "10.1", null, "38.1", null, "8.6", null, "296333", null, "6436", null, "93836", null, "3565", null, "202497", null, "6006", null, "164727", null, "5204", null, "27705", null, "3096", null, "8586", null, "1692", null, "19119", null, "2533", null, "103901", null, "5163", null, "90667", null, "4170", null, "76533", null, "4064", null, "13534", null, "1931", null, "4153", null, "1142", null, "9381", null, "1588", null, "600", null, "611", null, "205666", null, "6295", null, "88194", null, "3749", null, "14171", null, "2402", null, "4433", null, "1194", null, "9738", null, "1983", null, "103301", null, "5147", null, "14486", null, "2408", null, "281847", null, "6513", null, "54316", null, "3496", null, "242017", null, "6381", null, "185811", null, "5059", null, "5812", null, "1423", null, "996", null, "404", null, "69887", null, "3914", null, "-999999999", "N", "-999999999", "N", "7777", null, "1414", null, "25459", null, "3110", null, "21104", null, "2733", null, "181211", null, "5059", null, "137683", null, "4977", null, "192432", null, "5190", null, "16567", null, "1435", null, "56234", null, "4166", null, "119631", null, "5079", null, "93.5", null, "0.9", null, "31.7", null, "1.1", null, "68.3", null, "1.1", null, "55.6", null, "1.5", null, "9.3", null, "1.0", null, "2.9", null, "0.6", null, "6.5", null, "0.9", null, "35.1", null, "1.4", null, "30.6", null, "1.3", null, "25.8", null, "1.3", null, "4.6", null, "0.6", null, "1.4", null, "0.4", null, "3.2", null, "0.5", null, "0.2", null, "0.2", null, "69.4", null, "1.3", null, "29.8", null, "1.1", null, "4.8", null, "0.8", null, "1.5", null, "0.4", null, "3.3", null, "0.7", null, "34.9", null, "1.4", null, "4.9", null, "0.8", null, "95.1", null, "0.8", null, "18.3", null, "1.1", null, "81.7", null, "1.1", null, "62.7", null, "1.3", null, "2.0", null, "0.5", null, "0.3", null, "0.1", null, "23.6", null, "1.2", null, "-999999999.0", "N", "-999999999.0", "N", "2.6", null, "0.5", null, "8.6", null, "1.0", null, "7.1", null, "0.9", null, "61.2", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "8.6", null, "0.7", null, "29.2", null, "2.0", null, "62.2", null, "2.0", null, "53", "01"], ["5001900US5302", "Congressional District 2 (119th Congress), Washington", "325742", null, "4010", null, "146603", null, "3717", null, "179139", null, "4062", null, "155695", null, "5477", null, "39832", null, "3866", null, "13980", null, "2165", null, "25852", null, "3008", null, "130215", null, "5814", null, "79375", null, "4270", null, "55719", null, "3752", null, "22244", null, "3164", null, "7435", null, "1599", null, "14809", null, "2439", null, "1412", null, "930", null, "246367", null, "5078", null, "99976", null, "3721", null, "17588", null, "2025", null, "6545", null, "1215", null, "11043", null, "1602", null, "128803", null, "5693", null, "35037", null, "3454", null, "290705", null, "4887", null, "93611", null, "3544", null, "232131", null, "4465", null, "251359", null, "5235", null, "8177", null, "1493", null, "3668", null, "1205", null, "20570", null, "2457", null, "-999999999", "N", "-999999999", "N", "13252", null, "2067", null, "27811", null, "2676", null, "30097", null, "2395", null, "244813", null, "5119", null, "90998", null, "2449", null, "195527", null, "5760", null, "35068", null, "2612", null, "60574", null, "3848", null, "99885", null, "3876", null, "-888888888", "(X)", "-888888888", "(X)", "45.0", null, "1.0", null, "55.0", null, "1.0", null, "47.8", null, "1.6", null, "12.2", null, "1.2", null, "4.3", null, "0.7", null, "7.9", null, "0.9", null, "40.0", null, "1.7", null, "24.4", null, "1.3", null, "17.1", null, "1.1", null, "6.8", null, "1.0", null, "2.3", null, "0.5", null, "4.5", null, "0.7", null, "0.4", null, "0.3", null, "75.6", null, "1.3", null, "30.7", null, "1.1", null, "5.4", null, "0.6", null, "2.0", null, "0.4", null, "3.4", null, "0.5", null, "39.5", null, "1.6", null, "10.8", null, "1.0", null, "89.2", null, "1.0", null, "28.7", null, "1.0", null, "71.3", null, "1.0", null, "77.2", null, "1.3", null, "2.5", null, "0.5", null, "1.1", null, "0.4", null, "6.3", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "4.1", null, "0.6", null, "8.5", null, "0.8", null, "9.2", null, "0.7", null, "75.2", null, "1.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.9", null, "1.2", null, "31.0", null, "1.6", null, "51.1", null, "1.6", null, "32655", null, "2939", null, "13726", null, "1737", null, "18929", null, "2444", null, "8284", null, "1536", null, "11494", null, "1966", null, "3020", null, "1188", null, "8474", null, "1629", null, "12877", null, "1794", null, "13231", null, "1994", null, "5393", null, "1318", null, "7838", null, "1765", null, "2249", null, "1053", null, "5589", null, "1476", null, "0", null, "218", null, "19424", null, "2346", null, "2891", null, "1060", null, "3656", null, "935", null, "771", null, "431", null, "2885", null, "848", null, "12877", null, "1794", null, "11546", null, "1869", null, "21109", null, "2551", null, "18537", null, "2441", null, "14118", null, "1961", null, "23276", null, "2756", null, "1202", null, "576", null, "729", null, "366", null, "1958", null, "871", null, "-999999999", "N", "-999999999", "N", "1919", null, "881", null, "3571", null, "931", null, "5403", null, "1530", null, "21783", null, "2660", null, "43894", null, "6855", null, "19778", null, "2382", null, "3026", null, "1087", null, "9241", null, "1716", null, "7511", null, "1507", null, "10.0", null, "0.9", null, "42.0", null, "4.5", null, "58.0", null, "4.5", null, "25.4", null, "4.2", null, "35.2", null, "4.8", null, "9.2", null, "3.4", null, "26.0", null, "4.4", null, "39.4", null, "4.5", null, "40.5", null, "4.8", null, "16.5", null, "4.0", null, "24.0", null, "4.7", null, "6.9", null, "3.1", null, "17.1", null, "4.2", null, "0.0", null, "0.6", null, "59.5", null, "4.8", null, "8.9", null, "3.0", null, "11.2", null, "2.7", null, "2.4", null, "1.3", null, "8.8", null, "2.5", null, "39.4", null, "4.5", null, "35.4", null, "4.9", null, "64.6", null, "4.9", null, "56.8", null, "5.0", null, "43.2", null, "5.0", null, "71.3", null, "4.7", null, "3.7", null, "1.7", null, "2.2", null, "1.1", null, "6.0", null, "2.7", null, "-999999999.0", "N", "-999999999.0", "N", "5.9", null, "2.6", null, "10.9", null, "2.8", null, "16.5", null, "4.3", null, "66.7", null, "4.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.3", null, "5.0", null, "46.7", null, "6.9", null, "38.0", null, "6.1", null, "293087", null, "4506", null, "132877", null, "3710", null, "160210", null, "4126", null, "147411", null, "5358", null, "28338", null, "3277", null, "10960", null, "1824", null, "17378", null, "2584", null, "117338", null, "5658", null, "66144", null, "3966", null, "50326", null, "3584", null, "14406", null, "2539", null, "5186", null, "1220", null, "9220", null, "2053", null, "1412", null, "930", null, "226943", null, "4951", null, "97085", null, "3620", null, "13932", null, "1870", null, "5774", null, "1188", null, "8158", null, "1307", null, "115926", null, "5553", null, "23491", null, "3039", null, "269596", null, "4484", null, "75074", null, "3826", null, "218013", null, "4527", null, "228083", null, "4871", null, "6975", null, "1483", null, "2939", null, "1176", null, "18612", null, "2654", null, "-999999999", "N", "-999999999", "N", "11333", null, "1919", null, "24240", null, "2454", null, "24694", null, "2461", null, "223030", null, "4685", null, "95483", null, "2416", null, "175749", null, "5319", null, "32042", null, "2474", null, "51333", null, "3251", null, "92374", null, "3769", null, "90.0", null, "0.9", null, "45.3", null, "1.1", null, "54.7", null, "1.1", null, "50.3", null, "1.8", null, "9.7", null, "1.1", null, "3.7", null, "0.6", null, "5.9", null, "0.9", null, "40.0", null, "1.7", null, "22.6", null, "1.3", null, "17.2", null, "1.2", null, "4.9", null, "0.9", null, "1.8", null, "0.4", null, "3.1", null, "0.7", null, "0.5", null, "0.3", null, "77.4", null, "1.3", null, "33.1", null, "1.3", null, "4.8", null, "0.6", null, "2.0", null, "0.4", null, "2.8", null, "0.4", null, "39.6", null, "1.7", null, "8.0", null, "1.0", null, "92.0", null, "1.0", null, "25.6", null, "1.2", null, "74.4", null, "1.2", null, "77.8", null, "1.4", null, "2.4", null, "0.5", null, "1.0", null, "0.4", null, "6.4", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "3.9", null, "0.7", null, "8.3", null, "0.8", null, "8.4", null, "0.8", null, "76.1", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.2", null, "1.3", null, "29.2", null, "1.5", null, "52.6", null, "1.6", null, "53", "02"], ["5001900US5303", "Congressional District 3 (119th Congress), Washington", "314207", null, "3635", null, "138887", null, "3529", null, "175320", null, "3828", null, "161435", null, "5254", null, "48493", null, "3628", null, "16050", null, "2540", null, "32443", null, "3326", null, "104279", null, "4834", null, "88633", null, "3690", null, "61334", null, "3609", null, "26135", null, "2948", null, "8022", null, "1872", null, "18113", null, "2476", null, "1164", null, "700", null, "225574", null, "4915", null, "100101", null, "4592", null, "22358", null, "2462", null, "8028", null, "1625", null, "14330", null, "2144", null, "103115", null, "4901", null, "26412", null, "2801", null, "287795", null, "4268", null, "96869", null, "3865", null, "217338", null, "4017", null, "257665", null, "3999", null, "5771", null, "1095", null, "4434", null, "1255", null, "10506", null, "1266", null, "2031", null, "879", null, "8413", null, "1674", null, "25387", null, "2404", null, "24470", null, "2026", null, "252798", null, "3755", null, "92354", null, "2802", null, "209928", null, "5176", null, "33082", null, "2396", null, "62930", null, "4034", null, "113916", null, "4316", null, "-888888888", "(X)", "-888888888", "(X)", "44.2", null, "1.0", null, "55.8", null, "1.0", null, "51.4", null, "1.7", null, "15.4", null, "1.1", null, "5.1", null, "0.8", null, "10.3", null, "1.0", null, "33.2", null, "1.5", null, "28.2", null, "1.2", null, "19.5", null, "1.2", null, "8.3", null, "0.9", null, "2.6", null, "0.6", null, "5.8", null, "0.8", null, "0.4", null, "0.2", null, "71.8", null, "1.2", null, "31.9", null, "1.4", null, "7.1", null, "0.8", null, "2.6", null, "0.5", null, "4.6", null, "0.7", null, "32.8", null, "1.5", null, "8.4", null, "0.9", null, "91.6", null, "0.9", null, "30.8", null, "1.1", null, "69.2", null, "1.1", null, "82.0", null, "0.8", null, "1.8", null, "0.3", null, "1.4", null, "0.4", null, "3.3", null, "0.4", null, "0.6", null, "0.3", null, "2.7", null, "0.5", null, "8.1", null, "0.7", null, "7.8", null, "0.6", null, "80.5", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.8", null, "1.1", null, "30.0", null, "1.7", null, "54.3", null, "1.7", null, "36588", null, "3201", null, "16207", null, "2302", null, "20381", null, "2214", null, "10689", null, "1990", null, "13282", null, "2010", null, "3835", null, "1217", null, "9447", null, "1912", null, "12617", null, "1984", null, "15029", null, "2076", null, "6395", null, "1494", null, "8317", null, "1698", null, "1935", null, "847", null, "6382", null, "1554", null, "317", null, "327", null, "21559", null, "2626", null, "4294", null, "1344", null, "4965", null, "1157", null, "1900", null, "777", null, "3065", null, "1112", null, "12300", null, "1950", null, "10985", null, "1938", null, "25603", null, "2756", null, "20205", null, "2095", null, "16383", null, "2349", null, "27482", null, "2556", null, "1220", null, "693", null, "1644", null, "914", null, "1224", null, "736", null, "764", null, "482", null, "343", null, "282", null, "3911", null, "1048", null, "3521", null, "1049", null, "26828", null, "2502", null, "50435", null, "6326", null, "23971", null, "2753", null, "3848", null, "1168", null, "9462", null, "1702", null, "10661", null, "2244", null, "11.6", null, "1.0", null, "44.3", null, "4.4", null, "55.7", null, "4.4", null, "29.2", null, "4.6", null, "36.3", null, "4.6", null, "10.5", null, "3.4", null, "25.8", null, "4.4", null, "34.5", null, "4.7", null, "41.1", null, "4.7", null, "17.5", null, "4.0", null, "22.7", null, "4.1", null, "5.3", null, "2.3", null, "17.4", null, "3.8", null, "0.9", null, "0.9", null, "58.9", null, "4.7", null, "11.7", null, "3.3", null, "13.6", null, "3.1", null, "5.2", null, "2.2", null, "8.4", null, "2.9", null, "33.6", null, "4.5", null, "30.0", null, "4.6", null, "70.0", null, "4.6", null, "55.2", null, "4.4", null, "44.8", null, "4.4", null, "75.1", null, "3.9", null, "3.3", null, "1.9", null, "4.5", null, "2.4", null, "3.3", null, "2.0", null, "2.1", null, "1.3", null, "0.9", null, "0.8", null, "10.7", null, "2.5", null, "9.6", null, "2.7", null, "73.3", null, "3.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.1", null, "4.5", null, "39.5", null, "6.4", null, "44.5", null, "7.2", null, "277619", null, "4576", null, "122680", null, "3543", null, "154939", null, "4130", null, "150746", null, "4984", null, "35211", null, "3311", null, "12215", null, "2106", null, "22996", null, "2954", null, "91662", null, "4450", null, "73604", null, "3877", null, "54939", null, "3458", null, "17818", null, "2515", null, "6087", null, "1625", null, "11731", null, "2115", null, "847", null, "629", null, "204015", null, "4816", null, "95807", null, "4587", null, "17393", null, "2273", null, "6128", null, "1329", null, "11265", null, "1929", null, "90815", null, "4521", null, "15427", null, "2083", null, "262192", null, "4849", null, "76664", null, "4014", null, "200955", null, "4446", null, "230183", null, "4470", null, "4551", null, "1065", null, "2790", null, "895", null, "9282", null, "1338", null, "1267", null, "832", null, "8070", null, "1696", null, "21476", null, "2367", null, "20949", null, "1989", null, "225970", null, "4342", null, "100385", null, "2362", null, "185957", null, "5520", null, "29234", null, "2191", null, "53468", null, "3758", null, "103255", null, "4200", null, "88.4", null, "1.0", null, "44.2", null, "1.1", null, "55.8", null, "1.1", null, "54.3", null, "1.7", null, "12.7", null, "1.1", null, "4.4", null, "0.7", null, "8.3", null, "1.0", null, "33.0", null, "1.6", null, "26.5", null, "1.3", null, "19.8", null, "1.2", null, "6.4", null, "0.9", null, "2.2", null, "0.6", null, "4.2", null, "0.7", null, "0.3", null, "0.2", null, "73.5", null, "1.3", null, "34.5", null, "1.6", null, "6.3", null, "0.8", null, "2.2", null, "0.5", null, "4.1", null, "0.7", null, "32.7", null, "1.6", null, "5.6", null, "0.7", null, "94.4", null, "0.7", null, "27.6", null, "1.3", null, "72.4", null, "1.3", null, "82.9", null, "0.9", null, "1.6", null, "0.4", null, "1.0", null, "0.3", null, "3.3", null, "0.5", null, "0.5", null, "0.3", null, "2.9", null, "0.6", null, "7.7", null, "0.8", null, "7.5", null, "0.7", null, "81.4", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "15.7", null, "1.2", null, "28.8", null, "1.6", null, "55.5", null, "1.8", null, "53", "03"], ["5001900US5304", "Congressional District 4 (119th Congress), Washington", "285454", null, "2934", null, "115623", null, "3388", null, "169831", null, "3699", null, "138919", null, "4964", null, "60093", null, "4760", null, "19864", null, "2584", null, "40229", null, "3677", null, "86442", null, "5058", null, "98876", null, "4397", null, "59653", null, "4129", null, "38494", null, "3894", null, "12055", null, "2132", null, "26439", null, "3239", null, "729", null, "623", null, "186578", null, "5104", null, "79266", null, "3656", null, "21599", null, "2817", null, "7809", null, "1825", null, "13790", null, "1989", null, "85713", null, "5054", null, "42462", null, "3304", null, "242992", null, "4204", null, "88104", null, "5005", null, "197350", null, "5068", null, "181600", null, "3787", null, "3462", null, "838", null, "6526", null, "1205", null, "5891", null, "1086", null, "-999999999", "N", "-999999999", "N", "34350", null, "3072", null, "53448", null, "4364", null, "91890", null, "2697", null, "169490", null, "3235", null, "78605", null, "2773", null, "199012", null, "5227", null, "33679", null, "2625", null, "67695", null, "4209", null, "97638", null, "4404", null, "-888888888", "(X)", "-888888888", "(X)", "40.5", null, "1.1", null, "59.5", null, "1.1", null, "48.7", null, "1.7", null, "21.1", null, "1.6", null, "7.0", null, "0.9", null, "14.1", null, "1.3", null, "30.3", null, "1.7", null, "34.6", null, "1.6", null, "20.9", null, "1.5", null, "13.5", null, "1.4", null, "4.2", null, "0.7", null, "9.3", null, "1.1", null, "0.3", null, "0.2", null, "65.4", null, "1.6", null, "27.8", null, "1.2", null, "7.6", null, "1.0", null, "2.7", null, "0.6", null, "4.8", null, "0.7", null, "30.0", null, "1.7", null, "14.9", null, "1.2", null, "85.1", null, "1.2", null, "30.9", null, "1.7", null, "69.1", null, "1.7", null, "63.6", null, "1.2", null, "1.2", null, "0.3", null, "2.3", null, "0.4", null, "2.1", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "12.0", null, "1.1", null, "18.7", null, "1.5", null, "32.2", null, "0.9", null, "59.4", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.9", null, "1.2", null, "34.0", null, "1.9", null, "49.1", null, "1.9", null, "54169", null, "3752", null, "17454", null, "2215", null, "36715", null, "3133", null, "16432", null, "2450", null, "23405", null, "3385", null, "5856", null, "1696", null, "17549", null, "2840", null, "14332", null, "1901", null, "30571", null, "3385", null, "12177", null, "2286", null, "17959", null, "2825", null, "4453", null, "1564", null, "13506", null, "2453", null, "435", null, "563", null, "23598", null, "2693", null, "4255", null, "1197", null, "5446", null, "1538", null, "1403", null, "564", null, "4043", null, "1291", null, "13897", null, "1985", null, "21767", null, "2571", null, "32402", null, "3338", null, "24208", null, "3217", null, "29961", null, "3268", null, "25789", null, "3012", null, "483", null, "369", null, "1821", null, "682", null, "562", null, "446", null, "-999999999", "N", "-999999999", "N", "11341", null, "2238", null, "14120", null, "2259", null, "27257", null, "2659", null, "23070", null, "2792", null, "38519", null, "6553", null, "39837", null, "3912", null, "5909", null, "1647", null, "17565", null, "2773", null, "16363", null, "2744", null, "19.0", null, "1.3", null, "32.2", null, "3.4", null, "67.8", null, "3.4", null, "30.3", null, "4.1", null, "43.2", null, "4.6", null, "10.8", null, "2.9", null, "32.4", null, "4.2", null, "26.5", null, "3.7", null, "56.4", null, "4.4", null, "22.5", null, "4.0", null, "33.2", null, "4.3", null, "8.2", null, "2.7", null, "24.9", null, "4.0", null, "0.8", null, "1.0", null, "43.6", null, "4.4", null, "7.9", null, "2.2", null, "10.1", null, "2.6", null, "2.6", null, "1.0", null, "7.5", null, "2.2", null, "25.7", null, "3.8", null, "40.2", null, "4.2", null, "59.8", null, "4.2", null, "44.7", null, "4.9", null, "55.3", null, "4.9", null, "47.6", null, "4.2", null, "0.9", null, "0.7", null, "3.4", null, "1.3", null, "1.0", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "20.9", null, "4.1", null, "26.1", null, "3.6", null, "50.3", null, "3.9", null, "42.6", null, "3.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.8", null, "4.0", null, "44.1", null, "5.5", null, "41.1", null, "5.3", null, "231285", null, "4566", null, "98169", null, "3462", null, "133116", null, "4705", null, "122487", null, "4877", null, "36688", null, "3393", null, "14008", null, "2079", null, "22680", null, "2720", null, "72110", null, "4157", null, "68305", null, "3817", null, "47476", null, "3786", null, "20535", null, "2563", null, "7602", null, "1544", null, "12933", null, "2264", null, "294", null, "260", null, "162980", null, "4941", null, "75011", null, "3650", null, "16153", null, "2461", null, "6406", null, "1631", null, "9747", null, "1814", null, "71816", null, "4137", null, "20695", null, "2794", null, "210590", null, "5016", null, "63896", null, "4388", null, "167389", null, "4956", null, "155811", null, "4019", null, "2979", null, "865", null, "4705", null, "1118", null, "5329", null, "1027", null, "-999999999", "N", "-999999999", "N", "23009", null, "2795", null, "39328", null, "4119", null, "64633", null, "3136", null, "146420", null, "3981", null, "89169", null, "2996", null, "159175", null, "5279", null, "27770", null, "2438", null, "50130", null, "3554", null, "81275", null, "4528", null, "81.0", null, "1.3", null, "42.4", null, "1.4", null, "57.6", null, "1.4", null, "53.0", null, "1.8", null, "15.9", null, "1.4", null, "6.1", null, "0.9", null, "9.8", null, "1.1", null, "31.2", null, "1.7", null, "29.5", null, "1.6", null, "20.5", null, "1.6", null, "8.9", null, "1.1", null, "3.3", null, "0.7", null, "5.6", null, "1.0", null, "0.1", null, "0.1", null, "70.5", null, "1.6", null, "32.4", null, "1.5", null, "7.0", null, "1.0", null, "2.8", null, "0.7", null, "4.2", null, "0.8", null, "31.1", null, "1.7", null, "8.9", null, "1.2", null, "91.1", null, "1.2", null, "27.6", null, "1.8", null, "72.4", null, "1.8", null, "67.4", null, "1.5", null, "1.3", null, "0.4", null, "2.0", null, "0.5", null, "2.3", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "9.9", null, "1.2", null, "17.0", null, "1.7", null, "27.9", null, "1.2", null, "63.3", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.4", null, "1.5", null, "31.5", null, "2.1", null, "51.1", null, "2.1", null, "53", "04"], ["5001900US5305", "Congressional District 5 (119th Congress), Washington", "322245", null, "3581", null, "138747", null, "2649", null, "183498", null, "3354", null, "152077", null, "4492", null, "51151", null, "4378", null, "17931", null, "2429", null, "33220", null, "3162", null, "119017", null, "4715", null, "91396", null, "3822", null, "59722", null, "3497", null, "29802", null, "3094", null, "9652", null, "1764", null, "20150", null, "2590", null, "1872", null, "973", null, "230849", null, "3758", null, "92355", null, "3463", null, "21349", null, "2574", null, "8279", null, "1612", null, "13070", null, "1914", null, "117145", null, "4566", null, "41828", null, "3049", null, "280417", null, "3926", null, "104831", null, "4545", null, "217414", null, "4276", null, "277456", null, "4258", null, "4286", null, "1083", null, "3458", null, "581", null, "5410", null, "1244", null, "814", null, "340", null, "6629", null, "1751", null, "24192", null, "2412", null, "20871", null, "1632", null, "271449", null, "3938", null, "80002", null, "2402", null, "203228", null, "5248", null, "34846", null, "2226", null, "65943", null, "3467", null, "102439", null, "4296", null, "-888888888", "(X)", "-888888888", "(X)", "43.1", null, "0.7", null, "56.9", null, "0.7", null, "47.2", null, "1.3", null, "15.9", null, "1.3", null, "5.6", null, "0.8", null, "10.3", null, "1.0", null, "36.9", null, "1.4", null, "28.4", null, "1.1", null, "18.5", null, "1.0", null, "9.2", null, "0.9", null, "3.0", null, "0.5", null, "6.3", null, "0.8", null, "0.6", null, "0.3", null, "71.6", null, "1.1", null, "28.7", null, "1.1", null, "6.6", null, "0.8", null, "2.6", null, "0.5", null, "4.1", null, "0.6", null, "36.4", null, "1.4", null, "13.0", null, "0.9", null, "87.0", null, "0.9", null, "32.5", null, "1.3", null, "67.5", null, "1.3", null, "86.1", null, "0.8", null, "1.3", null, "0.3", null, "1.1", null, "0.2", null, "1.7", null, "0.4", null, "0.3", null, "0.1", null, "2.1", null, "0.5", null, "7.5", null, "0.7", null, "6.5", null, "0.5", null, "84.2", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.1", null, "1.0", null, "32.4", null, "1.5", null, "50.4", null, "1.6", null, "48531", null, "3988", null, "21175", null, "2669", null, "27356", null, "2838", null, "11274", null, "2049", null, "17193", null, "2417", null, "3870", null, "1115", null, "13323", null, "2058", null, "20064", null, "2715", null, "18769", null, "2548", null, "6329", null, "1414", null, "11851", null, "2107", null, "2428", null, "961", null, "9423", null, "1832", null, "589", null, "534", null, "29762", null, "3118", null, "4945", null, "1390", null, "5342", null, "1259", null, "1442", null, "575", null, "3900", null, "994", null, "19475", null, "2677", null, "18541", null, "2592", null, "29990", null, "3122", null, "27538", null, "3046", null, "20993", null, "2670", null, "39584", null, "3618", null, "1266", null, "655", null, "1280", null, "501", null, "548", null, "318", null, "574", null, "326", null, "654", null, "441", null, "4625", null, "1002", null, "3391", null, "963", null, "38324", null, "3544", null, "35206", null, "5179", null, "28467", null, "3030", null, "5039", null, "1193", null, "12865", null, "1873", null, "10563", null, "1883", null, "15.1", null, "1.2", null, "43.6", null, "3.9", null, "56.4", null, "3.9", null, "23.2", null, "3.7", null, "35.4", null, "4.3", null, "8.0", null, "2.3", null, "27.5", null, "3.7", null, "41.3", null, "4.3", null, "38.7", null, "4.1", null, "13.0", null, "2.8", null, "24.4", null, "3.7", null, "5.0", null, "2.0", null, "19.4", null, "3.2", null, "1.2", null, "1.1", null, "61.3", null, "4.1", null, "10.2", null, "2.6", null, "11.0", null, "2.7", null, "3.0", null, "1.2", null, "8.0", null, "2.1", null, "40.1", null, "4.3", null, "38.2", null, "4.2", null, "61.8", null, "4.2", null, "56.7", null, "4.2", null, "43.3", null, "4.2", null, "81.6", null, "2.8", null, "2.6", null, "1.3", null, "2.6", null, "1.0", null, "1.1", null, "0.7", null, "1.2", null, "0.7", null, "1.3", null, "0.9", null, "9.5", null, "2.1", null, "7.0", null, "1.9", null, "79.0", null, "3.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.7", null, "4.0", null, "45.2", null, "4.7", null, "37.1", null, "4.7", null, "273714", null, "4727", null, "117572", null, "3048", null, "156142", null, "3878", null, "140803", null, "4669", null, "33958", null, "3149", null, "14061", null, "2034", null, "19897", null, "2248", null, "98953", null, "5148", null, "72627", null, "3738", null, "53393", null, "3524", null, "17951", null, "2014", null, "7224", null, "1426", null, "10727", null, "1718", null, "1283", null, "790", null, "201087", null, "4595", null, "87410", null, "3544", null, "16007", null, "1995", null, "6837", null, "1415", null, "9170", null, "1593", null, "97670", null, "4949", null, "23287", null, "2231", null, "250427", null, "4111", null, "77293", null, "4069", null, "196421", null, "4863", null, "237872", null, "5177", null, "3020", null, "1076", null, "2178", null, "485", null, "4862", null, "1208", null, "240", null, "267", null, "5975", null, "1614", null, "19567", null, "2192", null, "17480", null, "1799", null, "233125", null, "5014", null, "88524", null, "2533", null, "174761", null, "4754", null, "29807", null, "2180", null, "53078", null, "3291", null, "91876", null, "3970", null, "84.9", null, "1.2", null, "43.0", null, "0.9", null, "57.0", null, "0.9", null, "51.4", null, "1.5", null, "12.4", null, "1.2", null, "5.1", null, "0.7", null, "7.3", null, "0.8", null, "36.2", null, "1.6", null, "26.5", null, "1.2", null, "19.5", null, "1.2", null, "6.6", null, "0.8", null, "2.6", null, "0.5", null, "3.9", null, "0.6", null, "0.5", null, "0.3", null, "73.5", null, "1.2", null, "31.9", null, "1.3", null, "5.8", null, "0.7", null, "2.5", null, "0.5", null, "3.4", null, "0.6", null, "35.7", null, "1.6", null, "8.5", null, "0.8", null, "91.5", null, "0.8", null, "28.2", null, "1.4", null, "71.8", null, "1.4", null, "86.9", null, "0.9", null, "1.1", null, "0.4", null, "0.8", null, "0.2", null, "1.8", null, "0.4", null, "0.1", null, "0.1", null, "2.2", null, "0.6", null, "7.1", null, "0.8", null, "6.4", null, "0.6", null, "85.2", null, "0.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.1", null, "1.2", null, "30.4", null, "1.7", null, "52.6", null, "1.8", null, "53", "05"], ["5001900US5306", "Congressional District 6 (119th Congress), Washington", "335208", null, "5010", null, "157508", null, "3738", null, "177700", null, "4780", null, "162921", null, "5198", null, "51441", null, "4029", null, "16721", null, "2277", null, "34720", null, "3475", null, "120846", null, "4697", null, "83246", null, "3936", null, "53982", null, "3822", null, "27559", null, "3176", null, "8591", null, "1806", null, "18968", null, "2696", null, "1705", null, "963", null, "251962", null, "5447", null, "108939", null, "4615", null, "23882", null, "2797", null, "8130", null, "1506", null, "15752", null, "2385", null, "119141", null, "4538", null, "35270", null, "3065", null, "299938", null, "4880", null, "103715", null, "4479", null, "231493", null, "6149", null, "264717", null, "4976", null, "10300", null, "1925", null, "5653", null, "1055", null, "10260", null, "1420", null, "1023", null, "514", null, "9881", null, "1809", null, "33374", null, "3025", null, "26604", null, "2595", null, "258913", null, "5120", null, "94385", null, "2541", null, "214362", null, "5451", null, "45141", null, "2344", null, "69350", null, "4043", null, "99871", null, "4093", null, "-888888888", "(X)", "-888888888", "(X)", "47.0", null, "1.0", null, "53.0", null, "1.0", null, "48.6", null, "1.3", null, "15.3", null, "1.2", null, "5.0", null, "0.7", null, "10.4", null, "1.1", null, "36.1", null, "1.3", null, "24.8", null, "1.1", null, "16.1", null, "1.1", null, "8.2", null, "0.9", null, "2.6", null, "0.5", null, "5.7", null, "0.8", null, "0.5", null, "0.3", null, "75.2", null, "1.1", null, "32.5", null, "1.3", null, "7.1", null, "0.8", null, "2.4", null, "0.4", null, "4.7", null, "0.7", null, "35.5", null, "1.3", null, "10.5", null, "0.9", null, "89.5", null, "0.9", null, "30.9", null, "1.3", null, "69.1", null, "1.3", null, "79.0", null, "0.9", null, "3.1", null, "0.6", null, "1.7", null, "0.3", null, "3.1", null, "0.4", null, "0.3", null, "0.2", null, "2.9", null, "0.5", null, "10.0", null, "0.9", null, "7.9", null, "0.8", null, "77.2", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "21.1", null, "1.1", null, "32.4", null, "1.6", null, "46.6", null, "1.6", null, "42881", null, "3902", null, "17262", null, "2621", null, "25619", null, "2852", null, "9295", null, "1555", null, "16367", null, "2635", null, "2997", null, "1058", null, "13370", null, "2377", null, "17219", null, "2497", null, "15115", null, "2365", null, "4868", null, "1229", null, "9734", null, "2161", null, "1276", null, "723", null, "8458", null, "2050", null, "513", null, "484", null, "27766", null, "3425", null, "4427", null, "1236", null, "6633", null, "1622", null, "1721", null, "761", null, "4912", null, "1479", null, "16706", null, "2456", null, "17509", null, "2672", null, "25372", null, "3099", null, "26099", null, "3352", null, "16782", null, "2614", null, "29835", null, "3425", null, "1878", null, "985", null, "1362", null, "764", null, "1930", null, "838", null, "216", null, "246", null, "2149", null, "1140", null, "5511", null, "1602", null, "5298", null, "1723", null, "28965", null, "3517", null, "36111", null, "5300", null, "25662", null, "2995", null, "6014", null, "1439", null, "11738", null, "2221", null, "7910", null, "1600", null, "12.8", null, "1.2", null, "40.3", null, "4.5", null, "59.7", null, "4.5", null, "21.7", null, "3.4", null, "38.2", null, "4.7", null, "7.0", null, "2.3", null, "31.2", null, "4.7", null, "40.2", null, "4.5", null, "35.2", null, "4.8", null, "11.4", null, "2.8", null, "22.7", null, "4.6", null, "3.0", null, "1.6", null, "19.7", null, "4.6", null, "1.2", null, "1.1", null, "64.8", null, "4.8", null, "10.3", null, "2.8", null, "15.5", null, "3.3", null, "4.0", null, "1.7", null, "11.5", null, "3.2", null, "39.0", null, "4.3", null, "40.8", null, "5.0", null, "59.2", null, "5.0", null, "60.9", null, "5.2", null, "39.1", null, "5.2", null, "69.6", null, "4.8", null, "4.4", null, "2.3", null, "3.2", null, "1.8", null, "4.5", null, "1.9", null, "0.5", null, "0.6", null, "5.0", null, "2.6", null, "12.9", null, "3.6", null, "12.4", null, "4.0", null, "67.5", null, "5.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "23.4", null, "5.1", null, "45.7", null, "6.1", null, "30.8", null, "5.6", null, "292327", null, "6412", null, "140246", null, "3549", null, "152081", null, "5308", null, "153626", null, "5013", null, "35074", null, "3418", null, "13724", null, "2070", null, "21350", null, "2608", null, "103627", null, "4638", null, "68131", null, "3800", null, "49114", null, "3596", null, "17825", null, "2574", null, "7315", null, "1654", null, "10510", null, "2002", null, "1192", null, "771", null, "224196", null, "6226", null, "104512", null, "4486", null, "17249", null, "2244", null, "6409", null, "1324", null, "10840", null, "1801", null, "102435", null, "4550", null, "17761", null, "2173", null, "274566", null, "5848", null, "77616", null, "3735", null, "214711", null, "6477", null, "234882", null, "5570", null, "8422", null, "1893", null, "4291", null, "853", null, "8330", null, "1300", null, "807", null, "489", null, "7732", null, "1499", null, "27863", null, "2655", null, "21306", null, "2151", null, "229948", null, "5492", null, "102483", null, "2586", null, "188700", null, "5486", null, "39127", null, "2130", null, "57612", null, "3685", null, "91961", null, "4251", null, "87.2", null, "1.2", null, "48.0", null, "1.1", null, "52.0", null, "1.1", null, "52.6", null, "1.4", null, "12.0", null, "1.1", null, "4.7", null, "0.7", null, "7.3", null, "0.9", null, "35.4", null, "1.3", null, "23.3", null, "1.2", null, "16.8", null, "1.2", null, "6.1", null, "0.9", null, "2.5", null, "0.6", null, "3.6", null, "0.7", null, "0.4", null, "0.3", null, "76.7", null, "1.2", null, "35.8", null, "1.3", null, "5.9", null, "0.8", null, "2.2", null, "0.4", null, "3.7", null, "0.6", null, "35.0", null, "1.3", null, "6.1", null, "0.7", null, "93.9", null, "0.7", null, "26.6", null, "1.2", null, "73.4", null, "1.2", null, "80.3", null, "1.1", null, "2.9", null, "0.6", null, "1.5", null, "0.3", null, "2.8", null, "0.4", null, "0.3", null, "0.2", null, "2.6", null, "0.5", null, "9.5", null, "0.9", null, "7.3", null, "0.7", null, "78.7", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "20.7", null, "1.1", null, "30.5", null, "1.6", null, "48.7", null, "1.7", null, "53", "06"], ["5001900US5307", "Congressional District 7 (119th Congress), Washington", "388615", null, "6065", null, "103251", null, "4319", null, "285364", null, "5972", null, "137909", null, "5606", null, "27349", null, "2428", null, "9679", null, "1747", null, "17670", null, "2020", null, "223357", null, "6276", null, "66221", null, "3876", null, "52009", null, "3432", null, "13506", null, "2123", null, "4257", null, "1168", null, "9249", null, "1713", null, "706", null, "511", null, "322394", null, "6962", null, "85900", null, "5116", null, "13843", null, "2096", null, "5422", null, "1392", null, "8421", null, "1711", null, "222651", null, "6257", null, "35239", null, "3237", null, "353376", null, "6516", null, "68783", null, "4425", null, "319832", null, "6775", null, "251900", null, "6434", null, "18047", null, "2905", null, "3017", null, "1179", null, "65035", null, "3777", null, "-999999999", "N", "-999999999", "N", "12053", null, "2253", null, "36940", null, "3800", null, "31468", null, "3374", null, "246369", null, "6584", null, "119340", null, "4523", null, "165258", null, "5943", null, "17441", null, "2000", null, "43216", null, "3670", null, "104601", null, "4906", null, "-888888888", "(X)", "-888888888", "(X)", "26.6", null, "1.0", null, "73.4", null, "1.0", null, "35.5", null, "1.3", null, "7.0", null, "0.6", null, "2.5", null, "0.4", null, "4.5", null, "0.5", null, "57.5", null, "1.4", null, "17.0", null, "1.0", null, "13.4", null, "0.9", null, "3.5", null, "0.6", null, "1.1", null, "0.3", null, "2.4", null, "0.4", null, "0.2", null, "0.1", null, "83.0", null, "1.0", null, "22.1", null, "1.2", null, "3.6", null, "0.5", null, "1.4", null, "0.4", null, "2.2", null, "0.4", null, "57.3", null, "1.4", null, "9.1", null, "0.8", null, "90.9", null, "0.8", null, "17.7", null, "1.1", null, "82.3", null, "1.1", null, "64.8", null, "1.5", null, "4.6", null, "0.7", null, "0.8", null, "0.3", null, "16.7", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "3.1", null, "0.6", null, "9.5", null, "1.0", null, "8.1", null, "0.8", null, "63.4", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.6", null, "1.1", null, "26.2", null, "2.0", null, "63.3", null, "1.9", null, "23848", null, "2725", null, "10666", null, "1480", null, "13182", null, "2432", null, "3003", null, "948", null, "5344", null, "1533", null, "1962", null, "1200", null, "3382", null, "981", null, "15501", null, "2354", null, "4229", null, "1237", null, "1465", null, "797", null, "2633", null, "1005", null, "615", null, "588", null, "2018", null, "785", null, "131", null, "158", null, "19619", null, "2323", null, "1538", null, "443", null, "2711", null, "1279", null, "1347", null, "1005", null, "1364", null, "724", null, "15370", null, "2350", null, "10481", null, "1790", null, "13367", null, "2376", null, "12357", null, "1606", null, "11491", null, "2538", null, "12050", null, "2202", null, "4554", null, "1540", null, "280", null, "282", null, "2578", null, "909", null, "-999999999", "N", "-999999999", "N", "722", null, "387", null, "3556", null, "987", null, "1725", null, "747", null, "11996", null, "2187", null, "22442", null, "7299", null, "8347", null, "1695", null, "1779", null, "720", null, "4439", null, "1521", null, "2129", null, "836", null, "6.1", null, "0.7", null, "44.7", null, "6.0", null, "55.3", null, "6.0", null, "12.6", null, "3.8", null, "22.4", null, "6.0", null, "8.2", null, "4.8", null, "14.2", null, "4.3", null, "65.0", null, "6.1", null, "17.7", null, "4.5", null, "6.1", null, "3.2", null, "11.0", null, "3.9", null, "2.6", null, "2.4", null, "8.5", null, "3.2", null, "0.5", null, "0.7", null, "82.3", null, "4.5", null, "6.4", null, "1.9", null, "11.4", null, "5.4", null, "5.6", null, "4.1", null, "5.7", null, "3.2", null, "64.4", null, "6.2", null, "43.9", null, "6.6", null, "56.1", null, "6.6", null, "51.8", null, "6.9", null, "48.2", null, "6.9", null, "50.5", null, "7.2", null, "19.1", null, "5.9", null, "1.2", null, "1.2", null, "10.8", null, "3.5", null, "-999999999.0", "N", "-999999999.0", "N", "3.0", null, "1.6", null, "14.9", null, "4.2", null, "7.2", null, "3.2", null, "50.3", null, "7.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "21.3", null, "9.4", null, "53.2", null, "11.9", null, "25.5", null, "8.7", null, "364767", null, "6827", null, "92585", null, "4037", null, "272182", null, "6428", null, "134906", null, "5590", null, "22005", null, "2327", null, "7717", null, "1461", null, "14288", null, "2006", null, "207856", null, "6700", null, "61992", null, "3710", null, "50544", null, "3276", null, "10873", null, "1926", null, "3642", null, "1110", null, "7231", null, "1517", null, "575", null, "490", null, "302775", null, "7227", null, "84362", null, "5116", null, "11132", null, "1731", null, "4075", null, "947", null, "7057", null, "1592", null, "207281", null, "6677", null, "24758", null, "3207", null, "340009", null, "6838", null, "56426", null, "4028", null, "308341", null, "7285", null, "239850", null, "6506", null, "13493", null, "2822", null, "2737", null, "1105", null, "62457", null, "3824", null, "-999999999", "N", "-999999999", "N", "11331", null, "2175", null, "33384", null, "3661", null, "29743", null, "3423", null, "234373", null, "6521", null, "126698", null, "5859", null, "156911", null, "6265", null, "15662", null, "1826", null, "38777", null, "3451", null, "102472", null, "5041", null, "93.9", null, "0.7", null, "25.4", null, "1.0", null, "74.6", null, "1.0", null, "37.0", null, "1.3", null, "6.0", null, "0.6", null, "2.1", null, "0.4", null, "3.9", null, "0.6", null, "57.0", null, "1.5", null, "17.0", null, "1.0", null, "13.9", null, "0.9", null, "3.0", null, "0.5", null, "1.0", null, "0.3", null, "2.0", null, "0.4", null, "0.2", null, "0.1", null, "83.0", null, "1.0", null, "23.1", null, "1.3", null, "3.1", null, "0.5", null, "1.1", null, "0.3", null, "1.9", null, "0.4", null, "56.8", null, "1.5", null, "6.8", null, "0.9", null, "93.2", null, "0.9", null, "15.5", null, "1.1", null, "84.5", null, "1.1", null, "65.8", null, "1.5", null, "3.7", null, "0.8", null, "0.8", null, "0.3", null, "17.1", null, "1.0", null, "-999999999.0", "N", "-999999999.0", "N", "3.1", null, "0.6", null, "9.2", null, "1.0", null, "8.2", null, "0.9", null, "64.3", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "10.0", null, "1.1", null, "24.7", null, "1.9", null, "65.3", null, "1.9", null, "53", "07"], ["5001900US5308", "Congressional District 8 (119th Congress), Washington", "285127", null, "5812", null, "116435", null, "4121", null, "168692", null, "5167", null, "181791", null, "5298", null, "33783", null, "3267", null, "12305", null, "2029", null, "21478", null, "2697", null, "69553", null, "3849", null, "100780", null, "5009", null, "81170", null, "4440", null, "18894", null, "2556", null, "7280", null, "1709", null, "11614", null, "1960", null, "716", null, "458", null, "184347", null, "5833", null, "100621", null, "4812", null, "14889", null, "2035", null, "5025", null, "1079", null, "9864", null, "1884", null, "68837", null, "3802", null, "21196", null, "2508", null, "263931", null, "5912", null, "69210", null, "3796", null, "215917", null, "5620", null, "210996", null, "5172", null, "5702", null, "1567", null, "1923", null, "682", null, "31057", null, "2682", null, "-999999999", "N", "-999999999", "N", "8758", null, "1785", null, "25354", null, "2639", null, "24824", null, "2881", null, "206712", null, "5091", null, "130695", null, "3871", null, "215574", null, "5639", null, "30154", null, "2771", null, "58981", null, "3418", null, "126439", null, "5104", null, "-888888888", "(X)", "-888888888", "(X)", "40.8", null, "1.3", null, "59.2", null, "1.3", null, "63.8", null, "1.5", null, "11.8", null, "1.1", null, "4.3", null, "0.7", null, "7.5", null, "0.9", null, "24.4", null, "1.3", null, "35.3", null, "1.6", null, "28.5", null, "1.5", null, "6.6", null, "0.9", null, "2.6", null, "0.6", null, "4.1", null, "0.7", null, "0.3", null, "0.2", null, "64.7", null, "1.6", null, "35.3", null, "1.6", null, "5.2", null, "0.7", null, "1.8", null, "0.4", null, "3.5", null, "0.6", null, "24.1", null, "1.2", null, "7.4", null, "0.9", null, "92.6", null, "0.9", null, "24.3", null, "1.2", null, "75.7", null, "1.2", null, "74.0", null, "1.3", null, "2.0", null, "0.5", null, "0.7", null, "0.2", null, "10.9", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "3.1", null, "0.6", null, "8.9", null, "0.9", null, "8.7", null, "1.0", null, "72.5", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.0", null, "1.2", null, "27.4", null, "1.5", null, "58.7", null, "1.7", null, "21454", null, "2856", null, "9082", null, "1543", null, "12372", null, "2247", null, "8109", null, "1908", null, "7861", null, "1976", null, "2512", null, "1035", null, "5349", null, "1458", null, "5484", null, "1367", null, "9721", null, "1958", null, "5633", null, "1557", null, "4088", null, "1418", null, "1589", null, "921", null, "2499", null, "862", null, "0", null, "218", null, "11733", null, "1999", null, "2476", null, "866", null, "3773", null, "1272", null, "923", null, "514", null, "2850", null, "1219", null, "5484", null, "1367", null, "6372", null, "1529", null, "15082", null, "2255", null, "12357", null, "2067", null, "9097", null, "1969", null, "14083", null, "2229", null, "1099", null, "866", null, "107", null, "96", null, "1572", null, "694", null, "-999999999", "N", "-999999999", "N", "1720", null, "966", null, "2833", null, "1021", null, "4307", null, "1388", null, "13152", null, "2108", null, "53342", null, "8920", null, "15970", null, "2666", null, "2075", null, "959", null, "6082", null, "1589", null, "7813", null, "1743", null, "7.5", null, "1.0", null, "42.3", null, "5.8", null, "57.7", null, "5.8", null, "37.8", null, "7.6", null, "36.6", null, "6.9", null, "11.7", null, "4.2", null, "24.9", null, "5.7", null, "25.6", null, "5.9", null, "45.3", null, "6.4", null, "26.3", null, "6.4", null, "19.1", null, "5.8", null, "7.4", null, "4.0", null, "11.6", null, "3.7", null, "0.0", null, "0.9", null, "54.7", null, "6.4", null, "11.5", null, "3.9", null, "17.6", null, "5.1", null, "4.3", null, "2.3", null, "13.3", null, "5.3", null, "25.6", null, "5.9", null, "29.7", null, "5.6", null, "70.3", null, "5.6", null, "57.6", null, "6.7", null, "42.4", null, "6.7", null, "65.6", null, "6.3", null, "5.1", null, "3.9", null, "0.5", null, "0.4", null, "7.3", null, "3.1", null, "-999999999.0", "N", "-999999999.0", "N", "8.0", null, "4.2", null, "13.2", null, "4.6", null, "20.1", null, "5.6", null, "61.3", null, "6.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.0", null, "5.3", null, "38.1", null, "7.9", null, "48.9", null, "8.0", null, "263673", null, "5877", null, "107353", null, "4169", null, "156320", null, "4985", null, "173682", null, "5000", null, "25922", null, "2860", null, "9793", null, "1833", null, "16129", null, "2143", null, "64069", null, "3957", null, "91059", null, "4398", null, "75537", null, "3969", null, "14806", null, "2475", null, "5691", null, "1584", null, "9115", null, "1785", null, "716", null, "458", null, "172614", null, "6033", null, "98145", null, "4875", null, "11116", null, "1741", null, "4102", null, "971", null, "7014", null, "1423", null, "63353", null, "3892", null, "14824", null, "2173", null, "248849", null, "6008", null, "56853", null, "3464", null, "206820", null, "5229", null, "196913", null, "5418", null, "4603", null, "1266", null, "1816", null, "659", null, "29485", null, "2634", null, "-999999999", "N", "-999999999", "N", "7038", null, "1461", null, "22521", null, "2343", null, "20517", null, "2844", null, "193560", null, "5380", null, "136053", null, "3759", null, "199604", null, "5433", null, "28079", null, "2586", null, "52899", null, "3130", null, "118626", null, "5080", null, "92.5", null, "1.0", null, "40.7", null, "1.3", null, "59.3", null, "1.3", null, "65.9", null, "1.5", null, "9.8", null, "1.0", null, "3.7", null, "0.7", null, "6.1", null, "0.8", null, "24.3", null, "1.4", null, "34.5", null, "1.6", null, "28.6", null, "1.5", null, "5.6", null, "0.9", null, "2.2", null, "0.6", null, "3.5", null, "0.7", null, "0.3", null, "0.2", null, "65.5", null, "1.6", null, "37.2", null, "1.7", null, "4.2", null, "0.6", null, "1.6", null, "0.4", null, "2.7", null, "0.5", null, "24.0", null, "1.3", null, "5.6", null, "0.8", null, "94.4", null, "0.8", null, "21.6", null, "1.2", null, "78.4", null, "1.2", null, "74.7", null, "1.3", null, "1.7", null, "0.5", null, "0.7", null, "0.3", null, "11.2", null, "0.9", null, "-999999999.0", "N", "-999999999.0", "N", "2.7", null, "0.5", null, "8.5", null, "0.9", null, "7.8", null, "1.0", null, "73.4", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.1", null, "1.2", null, "26.5", null, "1.6", null, "59.4", null, "1.8", null, "53", "08"], ["5001900US5309", "Congressional District 9 (119th Congress), Washington", "294055", null, "6919", null, "114712", null, "5135", null, "179343", null, "5565", null, "132104", null, "4800", null, "45961", null, "4022", null, "17275", null, "2801", null, "28686", null, "2978", null, "115990", null, "6614", null, "81858", null, "3646", null, "57863", null, "3607", null, "23038", null, "3309", null, "7445", null, "2208", null, "15593", null, "2428", null, "957", null, "633", null, "212197", null, "7494", null, "74241", null, "4206", null, "22923", null, "2534", null, "9830", null, "1895", null, "13093", null, "2002", null, "115033", null, "6663", null, "29801", null, "3769", null, "264254", null, "6284", null, "73134", null, "5660", null, "220921", null, "7506", null, "138205", null, "5827", null, "37034", null, "3112", null, "2130", null, "920", null, "66629", null, "3440", null, "3523", null, "1025", null, "17002", null, "2367", null, "29532", null, "3105", null, "30534", null, "2941", null, "134986", null, "5970", null, "100731", null, "3844", null, "178065", null, "5336", null, "17394", null, "2414", null, "54404", null, "4148", null, "106267", null, "3939", null, "-888888888", "(X)", "-888888888", "(X)", "39.0", null, "1.4", null, "61.0", null, "1.4", null, "44.9", null, "1.8", null, "15.6", null, "1.3", null, "5.9", null, "0.9", null, "9.8", null, "1.0", null, "39.4", null, "1.7", null, "27.8", null, "1.3", null, "19.7", null, "1.3", null, "7.8", null, "1.1", null, "2.5", null, "0.7", null, "5.3", null, "0.8", null, "0.3", null, "0.2", null, "72.2", null, "1.3", null, "25.2", null, "1.4", null, "7.8", null, "0.8", null, "3.3", null, "0.6", null, "4.5", null, "0.7", null, "39.1", null, "1.8", null, "10.1", null, "1.2", null, "89.9", null, "1.2", null, "24.9", null, "1.8", null, "75.1", null, "1.8", null, "47.0", null, "1.4", null, "12.6", null, "1.0", null, "0.7", null, "0.3", null, "22.7", null, "1.2", null, "1.2", null, "0.3", null, "5.8", null, "0.8", null, "10.0", null, "1.1", null, "10.4", null, "1.0", null, "45.9", null, "1.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "9.8", null, "1.3", null, "30.6", null, "2.0", null, "59.7", null, "2.0", null, "37668", null, "4307", null, "17790", null, "2813", null, "19878", null, "3303", null, "12552", null, "1949", null, "13593", null, "2490", null, "3555", null, "1491", null, "10038", null, "2044", null, "11523", null, "2888", null, "17472", null, "2672", null, "8749", null, "1675", null, "8348", null, "1938", null, "2099", null, "1201", null, "6249", null, "1548", null, "375", null, "489", null, "20196", null, "3353", null, "3803", null, "1110", null, "5245", null, "1440", null, "1456", null, "819", null, "3789", null, "1266", null, "11148", null, "2860", null, "12205", null, "2559", null, "25463", null, "3245", null, "17513", null, "2830", null, "20155", null, "3174", null, "10028", null, "2248", null, "9871", null, "2013", null, "410", null, "371", null, "8951", null, "1808", null, "1722", null, "959", null, "3054", null, "1184", null, "3632", null, "1310", null, "5263", null, "1520", null, "9601", null, "2190", null, "45577", null, "4595", null, "26145", null, "3193", null, "3323", null, "1225", null, "12024", null, "2417", null, "10798", null, "1864", null, "12.8", null, "1.4", null, "47.2", null, "5.8", null, "52.8", null, "5.8", null, "33.3", null, "5.0", null, "36.1", null, "5.2", null, "9.4", null, "3.8", null, "26.6", null, "4.4", null, "30.6", null, "6.0", null, "46.4", null, "5.6", null, "23.2", null, "4.4", null, "22.2", null, "4.3", null, "5.6", null, "3.1", null, "16.6", null, "3.7", null, "1.0", null, "1.3", null, "53.6", null, "5.6", null, "10.1", null, "2.9", null, "13.9", null, "3.6", null, "3.9", null, "2.2", null, "10.1", null, "3.1", null, "29.6", null, "5.9", null, "32.4", null, "5.2", null, "67.6", null, "5.2", null, "46.5", null, "5.6", null, "53.5", null, "5.6", null, "26.6", null, "4.8", null, "26.2", null, "4.4", null, "1.1", null, "1.0", null, "23.8", null, "4.5", null, "4.6", null, "2.5", null, "8.1", null, "3.0", null, "9.6", null, "3.3", null, "14.0", null, "3.9", null, "25.5", null, "4.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "12.7", null, "4.2", null, "46.0", null, "6.5", null, "41.3", null, "6.5", null, "256387", null, "6177", null, "96922", null, "4487", null, "159465", null, "5295", null, "119552", null, "4713", null, "32368", null, "3097", null, "13720", null, "2445", null, "18648", null, "2170", null, "104467", null, "5885", null, "64386", null, "3434", null, "49114", null, "3531", null, "14690", null, "2416", null, "5346", null, "1776", null, "9344", null, "1906", null, "582", null, "452", null, "192001", null, "6830", null, "70438", null, "4211", null, "17678", null, "2287", null, "8374", null, "1860", null, "9304", null, "1449", null, "103885", null, "5837", null, "17596", null, "2620", null, "238791", null, "6117", null, "55621", null, "4310", null, "200766", null, "6327", null, "128177", null, "5231", null, "27163", null, "2883", null, "1720", null, "865", null, "57678", null, "3673", null, "1801", null, "1028", null, "13948", null, "2308", null, "25900", null, "2858", null, "25271", null, "2843", null, "125385", null, "5394", null, "108352", null, "4205", null, "151920", null, "5024", null, "14071", null, "2013", null, "42380", null, "3306", null, "95469", null, "3890", null, "87.2", null, "1.4", null, "37.8", null, "1.5", null, "62.2", null, "1.5", null, "46.6", null, "1.8", null, "12.6", null, "1.2", null, "5.4", null, "0.9", null, "7.3", null, "0.8", null, "40.7", null, "1.8", null, "25.1", null, "1.4", null, "19.2", null, "1.4", null, "5.7", null, "0.9", null, "2.1", null, "0.7", null, "3.6", null, "0.7", null, "0.2", null, "0.2", null, "74.9", null, "1.4", null, "27.5", null, "1.6", null, "6.9", null, "0.8", null, "3.3", null, "0.7", null, "3.6", null, "0.6", null, "40.5", null, "1.8", null, "6.9", null, "1.0", null, "93.1", null, "1.0", null, "21.7", null, "1.6", null, "78.3", null, "1.6", null, "50.0", null, "1.6", null, "10.6", null, "1.1", null, "0.7", null, "0.3", null, "22.5", null, "1.4", null, "0.7", null, "0.4", null, "5.4", null, "0.9", null, "10.1", null, "1.1", null, "9.9", null, "1.1", null, "48.9", null, "1.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "9.3", null, "1.2", null, "27.9", null, "1.9", null, "62.8", null, "1.9", null, "53", "09"], ["5001900US5310", "Congressional District 10 (119th Congress), Washington", "300435", null, "5256", null, "118786", null, "3829", null, "181649", null, "4829", null, "144377", null, "5288", null, "49054", null, "3879", null, "17423", null, "2529", null, "31631", null, "2753", null, "107004", null, "6059", null, "90949", null, "4815", null, "60284", null, "4821", null, "29608", null, "3541", null, "10865", null, "2317", null, "18743", null, "2387", null, "1057", null, "697", null, "209486", null, "5990", null, "84093", null, "3606", null, "19446", null, "2459", null, "6558", null, "1324", null, "12888", null, "1869", null, "105947", null, "6015", null, "26749", null, "2968", null, "273686", null, "4976", null, "89959", null, "5109", null, "210476", null, "6659", null, "206170", null, "5319", null, "23030", null, "3032", null, "2888", null, "853", null, "22091", null, "2171", null, "3858", null, "933", null, "11178", null, "1861", null, "31220", null, "3156", null, "31329", null, "2592", null, "197779", null, "5126", null, "95458", null, "3413", null, "193431", null, "5426", null, "27156", null, "2535", null, "61049", null, "4495", null, "105226", null, "4357", null, "-888888888", "(X)", "-888888888", "(X)", "39.5", null, "1.1", null, "60.5", null, "1.1", null, "48.1", null, "1.7", null, "16.3", null, "1.3", null, "5.8", null, "0.8", null, "10.5", null, "0.9", null, "35.6", null, "1.8", null, "30.3", null, "1.5", null, "20.1", null, "1.5", null, "9.9", null, "1.2", null, "3.6", null, "0.8", null, "6.2", null, "0.8", null, "0.4", null, "0.2", null, "69.7", null, "1.5", null, "28.0", null, "1.3", null, "6.5", null, "0.8", null, "2.2", null, "0.4", null, "4.3", null, "0.6", null, "35.3", null, "1.7", null, "8.9", null, "0.9", null, "91.1", null, "0.9", null, "29.9", null, "1.7", null, "70.1", null, "1.7", null, "68.6", null, "1.3", null, "7.7", null, "1.0", null, "1.0", null, "0.3", null, "7.4", null, "0.7", null, "1.3", null, "0.3", null, "3.7", null, "0.6", null, "10.4", null, "1.1", null, "10.4", null, "0.8", null, "65.8", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.0", null, "1.3", null, "31.6", null, "1.9", null, "54.4", null, "1.9", null, "34762", null, "3354", null, "14331", null, "1781", null, "20431", null, "3134", null, "9821", null, "1960", null, "14632", null, "2282", null, "4066", null, "1300", null, "10566", null, "2133", null, "10309", null, "1763", null, "15025", null, "2320", null, "5567", null, "1370", null, "9254", null, "1961", null, "2072", null, "910", null, "7182", null, "1824", null, "204", null, "249", null, "19737", null, "2670", null, "4254", null, "1298", null, "5378", null, "1381", null, "1994", null, "984", null, "3384", null, "1164", null, "10105", null, "1746", null, "12097", null, "2248", null, "22665", null, "2787", null, "19733", null, "2451", null, "15029", null, "2539", null, "21422", null, "2823", null, "4174", null, "1380", null, "307", null, "242", null, "3130", null, "894", null, "368", null, "269", null, "1003", null, "569", null, "4358", null, "1223", null, "3985", null, "1119", null, "19921", null, "2845", null, "48777", null, "12493", null, "24453", null, "3016", null, "5244", null, "1424", null, "9949", null, "1856", null, "9260", null, "1914", null, "11.6", null, "1.1", null, "41.2", null, "5.2", null, "58.8", null, "5.2", null, "28.3", null, "4.7", null, "42.1", null, "5.0", null, "11.7", null, "3.4", null, "30.4", null, "5.5", null, "29.7", null, "4.6", null, "43.2", null, "5.3", null, "16.0", null, "3.7", null, "26.6", null, "5.0", null, "6.0", null, "2.5", null, "20.7", null, "4.9", null, "0.6", null, "0.7", null, "56.8", null, "5.3", null, "12.2", null, "3.4", null, "15.5", null, "3.6", null, "5.7", null, "2.7", null, "9.7", null, "3.2", null, "29.1", null, "4.5", null, "34.8", null, "5.4", null, "65.2", null, "5.4", null, "56.8", null, "5.4", null, "43.2", null, "5.4", null, "61.6", null, "5.1", null, "12.0", null, "3.8", null, "0.9", null, "0.7", null, "9.0", null, "2.4", null, "1.1", null, "0.8", null, "2.9", null, "1.6", null, "12.5", null, "3.5", null, "11.5", null, "3.1", null, "57.3", null, "5.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "21.4", null, "5.4", null, "40.7", null, "5.8", null, "37.9", null, "5.9", null, "265673", null, "5691", null, "104455", null, "4049", null, "161218", null, "5548", null, "134556", null, "5257", null, "34422", null, "3470", null, "13357", null, "2267", null, "21065", null, "2358", null, "96695", null, "5767", null, "75924", null, "5197", null, "54717", null, "4766", null, "20354", null, "3138", null, "8793", null, "2163", null, "11561", null, "1981", null, "853", null, "648", null, "189749", null, "5774", null, "79839", null, "3649", null, "14068", null, "1848", null, "4564", null, "1076", null, "9504", null, "1470", null, "95842", null, "5712", null, "14652", null, "2390", null, "251021", null, "5644", null, "70226", null, "4790", null, "195447", null, "6667", null, "184748", null, "5505", null, "18856", null, "2558", null, "2581", null, "786", null, "18961", null, "2175", null, "3490", null, "914", null, "10175", null, "1808", null, "26862", null, "2862", null, "27344", null, "2544", null, "177858", null, "5480", null, "100968", null, "2781", null, "168978", null, "5555", null, "21912", null, "1838", null, "51100", null, "4193", null, "95966", null, "4250", null, "88.4", null, "1.1", null, "39.3", null, "1.4", null, "60.7", null, "1.4", null, "50.6", null, "1.7", null, "13.0", null, "1.3", null, "5.0", null, "0.9", null, "7.9", null, "0.9", null, "36.4", null, "1.9", null, "28.6", null, "1.8", null, "20.6", null, "1.6", null, "7.7", null, "1.2", null, "3.3", null, "0.8", null, "4.4", null, "0.7", null, "0.3", null, "0.2", null, "71.4", null, "1.8", null, "30.1", null, "1.4", null, "5.3", null, "0.7", null, "1.7", null, "0.4", null, "3.6", null, "0.6", null, "36.1", null, "1.9", null, "5.5", null, "0.9", null, "94.5", null, "0.9", null, "26.4", null, "1.8", null, "73.6", null, "1.8", null, "69.5", null, "1.4", null, "7.1", null, "0.9", null, "1.0", null, "0.3", null, "7.1", null, "0.8", null, "1.3", null, "0.3", null, "3.8", null, "0.7", null, "10.1", null, "1.1", null, "10.3", null, "1.0", null, "66.9", null, "1.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.0", null, "1.1", null, "30.2", null, "2.0", null, "56.8", null, "1.9", null, "53", "10"], ["5001900US5401", "Congressional District 1 (119th Congress), West Virginia", "361129", null, "5076", null, "179805", null, "3007", null, "181324", null, "5556", null, "171751", null, "5340", null, "60182", null, "3891", null, "17561", null, "2461", null, "42621", null, "3082", null, "129196", null, "5070", null, "94692", null, "4435", null, "58663", null, "3820", null, "34761", null, "3284", null, "10222", null, "2134", null, "24539", null, "2551", null, "1268", null, "941", null, "266437", null, "5634", null, "113088", null, "5047", null, "25421", null, "2257", null, "7339", null, "1490", null, "18082", null, "1777", null, "127928", null, "5093", null, "68063", null, "4972", null, "293066", null, "5784", null, "145128", null, "4900", null, "216001", null, "5803", null, "332908", null, "4848", null, "10533", null, "1310", null, "583", null, "415", null, "1178", null, "410", null, "-999999999", "N", "-999999999", "N", "1342", null, "541", null, "14565", null, "1802", null, "3249", null, "805", null, "331692", null, "4882", null, "56624", null, "2138", null, "231933", null, "5414", null, "58758", null, "3596", null, "76889", null, "4407", null, "96286", null, "5015", null, "-888888888", "(X)", "-888888888", "(X)", "49.8", null, "1.0", null, "50.2", null, "1.0", null, "47.6", null, "1.4", null, "16.7", null, "1.0", null, "4.9", null, "0.7", null, "11.8", null, "0.8", null, "35.8", null, "1.3", null, "26.2", null, "1.2", null, "16.2", null, "1.1", null, "9.6", null, "0.9", null, "2.8", null, "0.6", null, "6.8", null, "0.7", null, "0.4", null, "0.3", null, "73.8", null, "1.2", null, "31.3", null, "1.3", null, "7.0", null, "0.6", null, "2.0", null, "0.4", null, "5.0", null, "0.5", null, "35.4", null, "1.3", null, "18.8", null, "1.3", null, "81.2", null, "1.3", null, "40.2", null, "1.3", null, "59.8", null, "1.3", null, "92.2", null, "0.5", null, "2.9", null, "0.4", null, "0.2", null, "0.1", null, "0.3", null, "0.1", null, "-999999999.0", "N", "-999999999.0", "N", "0.4", null, "0.1", null, "4.0", null, "0.5", null, "0.9", null, "0.2", null, "91.8", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "25.3", null, "1.5", null, "33.2", null, "1.7", null, "41.5", null, "1.8", null, "68639", null, "4030", null, "28174", null, "2653", null, "40465", null, "3887", null, "17203", null, "2199", null, "23950", null, "2580", null, "5826", null, "1403", null, "18124", null, "2090", null, "27486", null, "3074", null, "28291", null, "2787", null, "10784", null, "1815", null, "16807", null, "2320", null, "4063", null, "1268", null, "12744", null, "1971", null, "700", null, "553", null, "40348", null, "3246", null, "6419", null, "1185", null, "7143", null, "1157", null, "1763", null, "722", null, "5380", null, "1011", null, "26786", null, "2987", null, "38108", null, "3689", null, "30531", null, "2752", null, "39154", null, "3262", null, "29485", null, "2716", null, "61652", null, "3815", null, "3045", null, "939", null, "160", null, "154", null, "0", null, "206", null, "-999999999", "N", "-999999999", "N", "234", null, "214", null, "3548", null, "905", null, "736", null, "546", null, "61176", null, "3845", null, "21307", null, "1786", null, "41153", null, "3257", null, "14681", null, "1971", null, "16886", null, "2370", null, "9586", null, "1829", null, "19.0", null, "1.1", null, "41.0", null, "3.7", null, "59.0", null, "3.7", null, "25.1", null, "3.0", null, "34.9", null, "3.2", null, "8.5", null, "1.9", null, "26.4", null, "2.8", null, "40.0", null, "3.6", null, "41.2", null, "3.3", null, "15.7", null, "2.5", null, "24.5", null, "3.1", null, "5.9", null, "1.8", null, "18.6", null, "2.8", null, "1.0", null, "0.8", null, "58.8", null, "3.3", null, "9.4", null, "1.7", null, "10.4", null, "1.6", null, "2.6", null, "1.1", null, "7.8", null, "1.4", null, "39.0", null, "3.5", null, "55.5", null, "3.6", null, "44.5", null, "3.6", null, "57.0", null, "3.2", null, "43.0", null, "3.2", null, "89.8", null, "1.8", null, "4.4", null, "1.3", null, "0.2", null, "0.2", null, "0.0", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "0.3", null, "0.3", null, "5.2", null, "1.3", null, "1.1", null, "0.8", null, "89.1", null, "1.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "35.7", null, "4.2", null, "41.0", null, "4.3", null, "23.3", null, "4.1", null, "292490", null, "5255", null, "151631", null, "3533", null, "140859", null, "4739", null, "154548", null, "5318", null, "36232", null, "3251", null, "11735", null, "2056", null, "24497", null, "2556", null, "101710", null, "4608", null, "66401", null, "4285", null, "47879", null, "3686", null, "17954", null, "2634", null, "6159", null, "1727", null, "11795", null, "1875", null, "568", null, "494", null, "226089", null, "5677", null, "106669", null, "4920", null, "18278", null, "2227", null, "5576", null, "1354", null, "12702", null, "1722", null, "101142", null, "4703", null, "29955", null, "3092", null, "262535", null, "5758", null, "105974", null, "4620", null, "186516", null, "5188", null, "271256", null, "5050", null, "7488", null, "1022", null, "423", null, "388", null, "1178", null, "410", null, "-999999999", "N", "-999999999", "N", "1108", null, "502", null, "11017", null, "1683", null, "2513", null, "628", null, "270516", null, "5171", null, "66388", null, "1978", null, "190780", null, "5222", null, "44077", null, "2845", null, "60003", null, "4060", null, "86700", null, "4988", null, "81.0", null, "1.1", null, "51.8", null, "1.1", null, "48.2", null, "1.1", null, "52.8", null, "1.6", null, "12.4", null, "1.1", null, "4.0", null, "0.7", null, "8.4", null, "0.9", null, "34.8", null, "1.4", null, "22.7", null, "1.4", null, "16.4", null, "1.2", null, "6.1", null, "0.9", null, "2.1", null, "0.6", null, "4.0", null, "0.6", null, "0.2", null, "0.2", null, "77.3", null, "1.4", null, "36.5", null, "1.6", null, "6.2", null, "0.8", null, "1.9", null, "0.5", null, "4.3", null, "0.6", null, "34.6", null, "1.4", null, "10.2", null, "1.0", null, "89.8", null, "1.0", null, "36.2", null, "1.4", null, "63.8", null, "1.4", null, "92.7", null, "0.6", null, "2.6", null, "0.4", null, "0.1", null, "0.1", null, "0.4", null, "0.1", null, "-999999999.0", "N", "-999999999.0", "N", "0.4", null, "0.2", null, "3.8", null, "0.6", null, "0.9", null, "0.2", null, "92.5", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "23.1", null, "1.5", null, "31.5", null, "2.0", null, "45.4", null, "2.0", null, "54", "01"], ["5001900US5402", "Congressional District 2 (119th Congress), West Virginia", "379711", null, "4048", null, "174129", null, "3484", null, "205582", null, "4662", null, "177923", null, "5583", null, "62683", null, "4504", null, "17732", null, "2765", null, "44951", null, "3307", null, "139105", null, "4893", null, "103312", null, "4527", null, "65358", null, "4272", null, "36942", null, "3134", null, "9383", null, "1839", null, "27559", null, "2616", null, "1012", null, "486", null, "276399", null, "4454", null, "112565", null, "4114", null, "25741", null, "3099", null, "8349", null, "1850", null, "17392", null, "2116", null, "138093", null, "4924", null, "61351", null, "3426", null, "318360", null, "4777", null, "118207", null, "4878", null, "261504", null, "5450", null, "345189", null, "4024", null, "9973", null, "1242", null, "673", null, "437", null, "3227", null, "849", null, "-999999999", "N", "-999999999", "N", "5048", null, "1379", null, "15586", null, "1666", null, "10759", null, "1400", null, "343035", null, "3844", null, "64861", null, "2593", null, "240606", null, "5510", null, "49144", null, "2643", null, "79618", null, "4427", null, "111844", null, "4935", null, "-888888888", "(X)", "-888888888", "(X)", "45.9", null, "0.9", null, "54.1", null, "0.9", null, "46.9", null, "1.3", null, "16.5", null, "1.2", null, "4.7", null, "0.7", null, "11.8", null, "0.9", null, "36.6", null, "1.2", null, "27.2", null, "1.1", null, "17.2", null, "1.1", null, "9.7", null, "0.8", null, "2.5", null, "0.5", null, "7.3", null, "0.7", null, "0.3", null, "0.1", null, "72.8", null, "1.1", null, "29.6", null, "1.1", null, "6.8", null, "0.8", null, "2.2", null, "0.5", null, "4.6", null, "0.6", null, "36.4", null, "1.3", null, "16.2", null, "0.9", null, "83.8", null, "0.9", null, "31.1", null, "1.2", null, "68.9", null, "1.2", null, "90.9", null, "0.6", null, "2.6", null, "0.3", null, "0.2", null, "0.1", null, "0.8", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "1.3", null, "0.4", null, "4.1", null, "0.4", null, "2.8", null, "0.4", null, "90.3", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "20.4", null, "1.1", null, "33.1", null, "1.6", null, "46.5", null, "1.6", null, "57383", null, "3902", null, "23359", null, "2606", null, "34024", null, "3299", null, "13334", null, "1783", null, "22484", null, "2913", null, "5613", null, "1436", null, "16871", null, "2424", null, "21565", null, "2501", null, "23916", null, "2663", null, "8382", null, "1608", null, "15142", null, "2212", null, "2632", null, "952", null, "12510", null, "2065", null, "392", null, "350", null, "33467", null, "2858", null, "4952", null, "967", null, "7342", null, "1684", null, "2981", null, "1137", null, "4361", null, "1093", null, "21173", null, "2475", null, "28297", null, "2630", null, "29086", null, "2676", null, "31591", null, "2946", null, "25792", null, "2679", null, "49136", null, "3509", null, "1763", null, "712", null, "455", null, "410", null, "171", null, "226", null, "-999999999", "N", "-999999999", "N", "1726", null, "840", null, "4132", null, "949", null, "2286", null, "953", null, "48793", null, "3482", null, "23974", null, "2035", null, "35818", null, "3437", null, "8679", null, "1287", null, "18972", null, "2802", null, "8167", null, "1511", null, "15.1", null, "1.0", null, "40.7", null, "3.8", null, "59.3", null, "3.8", null, "23.2", null, "2.8", null, "39.2", null, "4.0", null, "9.8", null, "2.2", null, "29.4", null, "3.7", null, "37.6", null, "3.8", null, "41.7", null, "3.4", null, "14.6", null, "2.6", null, "26.4", null, "3.2", null, "4.6", null, "1.6", null, "21.8", null, "3.3", null, "0.7", null, "0.6", null, "58.3", null, "3.4", null, "8.6", null, "1.7", null, "12.8", null, "2.7", null, "5.2", null, "1.9", null, "7.6", null, "1.8", null, "36.9", null, "3.8", null, "49.3", null, "3.1", null, "50.7", null, "3.1", null, "55.1", null, "3.5", null, "44.9", null, "3.5", null, "85.6", null, "2.4", null, "3.1", null, "1.2", null, "0.8", null, "0.7", null, "0.3", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "3.0", null, "1.4", null, "7.2", null, "1.6", null, "4.0", null, "1.6", null, "85.0", null, "2.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "24.2", null, "3.2", null, "53.0", null, "4.8", null, "22.8", null, "3.9", null, "322328", null, "5377", null, "150770", null, "3779", null, "171558", null, "4562", null, "164589", null, "5544", null, "40199", null, "3617", null, "12119", null, "2315", null, "28080", null, "2578", null, "117540", null, "4215", null, "79396", null, "4249", null, "56976", null, "3898", null, "21800", null, "2467", null, "6751", null, "1635", null, "15049", null, "2079", null, "620", null, "408", null, "242932", null, "4617", null, "107613", null, "3976", null, "18399", null, "2421", null, "5368", null, "1371", null, "13031", null, "1815", null, "116920", null, "4171", null, "33054", null, "2883", null, "289274", null, "5124", null, "86616", null, "4016", null, "235712", null, "5561", null, "296053", null, "5039", null, "8210", null, "1296", null, "218", null, "175", null, "3056", null, "871", null, "-999999999", "N", "-999999999", "N", "3322", null, "1298", null, "11454", null, "1462", null, "8473", null, "1588", null, "294242", null, "4926", null, "73776", null, "2946", null, "204788", null, "5976", null, "40465", null, "2513", null, "60646", null, "3792", null, "103677", null, "4932", null, "84.9", null, "1.0", null, "46.8", null, "1.0", null, "53.2", null, "1.0", null, "51.1", null, "1.4", null, "12.5", null, "1.1", null, "3.8", null, "0.7", null, "8.7", null, "0.8", null, "36.5", null, "1.3", null, "24.6", null, "1.1", null, "17.7", null, "1.1", null, "6.8", null, "0.8", null, "2.1", null, "0.5", null, "4.7", null, "0.6", null, "0.2", null, "0.1", null, "75.4", null, "1.1", null, "33.4", null, "1.2", null, "5.7", null, "0.7", null, "1.7", null, "0.4", null, "4.0", null, "0.6", null, "36.3", null, "1.3", null, "10.3", null, "0.8", null, "89.7", null, "0.8", null, "26.9", null, "1.2", null, "73.1", null, "1.2", null, "91.8", null, "0.7", null, "2.5", null, "0.4", null, "0.1", null, "0.1", null, "0.9", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "1.0", null, "0.4", null, "3.6", null, "0.4", null, "2.6", null, "0.5", null, "91.3", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "19.8", null, "1.2", null, "29.6", null, "1.6", null, "50.6", null, "1.7", null, "54", "02"], ["5001900US5501", "Congressional District 1 (119th Congress), Wisconsin", "311598", null, "4040", null, "134932", null, "3587", null, "176666", null, "4731", null, "146886", null, "4688", null, "42619", null, "3503", null, "12335", null, "2031", null, "30284", null, "2964", null, "122093", null, "5403", null, "79856", null, "4244", null, "51551", null, "3271", null, "27565", null, "3131", null, "7494", null, "1776", null, "20071", null, "2751", null, "740", null, "507", null, "231742", null, "5405", null, "95335", null, "4834", null, "15054", null, "2200", null, "4841", null, "1223", null, "10213", null, "1587", null, "121353", null, "5450", null, "30374", null, "3163", null, "281224", null, "4704", null, "78604", null, "4068", null, "232994", null, "4940", null, "255309", null, "4649", null, "19951", null, "2296", null, "-999999999", "N", "-999999999", "N", "5059", null, "1281", null, "-999999999", "N", "-999999999", "N", "8330", null, "1578", null, "21679", null, "2895", null, "31145", null, "2355", null, "244893", null, "4311", null, "79452", null, "3078", null, "189505", null, "5724", null, "30754", null, "2435", null, "54929", null, "3977", null, "103822", null, "3957", null, "-888888888", "(X)", "-888888888", "(X)", "43.3", null, "1.2", null, "56.7", null, "1.2", null, "47.1", null, "1.5", null, "13.7", null, "1.1", null, "4.0", null, "0.6", null, "9.7", null, "0.9", null, "39.2", null, "1.7", null, "25.6", null, "1.4", null, "16.5", null, "1.1", null, "8.8", null, "1.0", null, "2.4", null, "0.6", null, "6.4", null, "0.9", null, "0.2", null, "0.2", null, "74.4", null, "1.4", null, "30.6", null, "1.5", null, "4.8", null, "0.7", null, "1.6", null, "0.4", null, "3.3", null, "0.5", null, "38.9", null, "1.7", null, "9.7", null, "1.0", null, "90.3", null, "1.0", null, "25.2", null, "1.3", null, "74.8", null, "1.3", null, "81.9", null, "1.1", null, "6.4", null, "0.7", null, "-999999999.0", "N", "-999999999.0", "N", "1.6", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "2.7", null, "0.5", null, "7.0", null, "0.9", null, "10.0", null, "0.7", null, "78.6", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.2", null, "1.1", null, "29.0", null, "1.8", null, "54.8", null, "1.7", null, "36376", null, "3143", null, "14539", null, "1954", null, "21837", null, "2784", null, "10077", null, "1976", null, "11428", null, "2094", null, "1916", null, "792", null, "9512", null, "2018", null, "14871", null, "2125", null, "15930", null, "2465", null, "6793", null, "1563", null, "8872", null, "2016", null, "1290", null, "738", null, "7582", null, "1942", null, "265", null, "283", null, "20446", null, "2460", null, "3284", null, "1163", null, "2556", null, "760", null, "626", null, "419", null, "1930", null, "620", null, "14606", null, "2141", null, "11903", null, "2214", null, "24473", null, "3094", null, "18044", null, "2541", null, "18332", null, "2929", null, "23653", null, "2675", null, "6168", null, "1839", null, "-999999999", "N", "-999999999", "N", "603", null, "445", null, "-999999999", "N", "-999999999", "N", "1823", null, "875", null, "4052", null, "1209", null, "5720", null, "1421", null, "22118", null, "2503", null, "36650", null, "7163", null, "21505", null, "2459", null, "3677", null, "1237", null, "10725", null, "1876", null, "7103", null, "1448", null, "11.7", null, "1.0", null, "40.0", null, "4.8", null, "60.0", null, "4.8", null, "27.7", null, "5.0", null, "31.4", null, "5.0", null, "5.3", null, "2.2", null, "26.1", null, "4.8", null, "40.9", null, "4.5", null, "43.8", null, "5.3", null, "18.7", null, "4.0", null, "24.4", null, "5.0", null, "3.5", null, "2.1", null, "20.8", null, "4.8", null, "0.7", null, "0.8", null, "56.2", null, "5.3", null, "9.0", null, "3.2", null, "7.0", null, "2.1", null, "1.7", null, "1.2", null, "5.3", null, "1.7", null, "40.2", null, "4.7", null, "32.7", null, "5.7", null, "67.3", null, "5.7", null, "49.6", null, "6.2", null, "50.4", null, "6.2", null, "65.0", null, "5.8", null, "17.0", null, "4.5", null, "-999999999.0", "N", "-999999999.0", "N", "1.7", null, "1.2", null, "-999999999.0", "N", "-999999999.0", "N", "5.0", null, "2.4", null, "11.1", null, "3.2", null, "15.7", null, "3.7", null, "60.8", null, "5.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.1", null, "5.2", null, "49.9", null, "6.6", null, "33.0", null, "6.1", null, "275222", null, "4538", null, "120393", null, "3776", null, "154829", null, "4533", null, "136809", null, "4794", null, "31191", null, "2957", null, "10419", null, "1760", null, "20772", null, "2410", null, "107222", null, "5038", null, "63926", null, "3574", null, "44758", null, "2925", null, "18693", null, "2510", null, "6204", null, "1576", null, "12489", null, "2172", null, "475", null, "410", null, "211296", null, "5219", null, "92051", null, "4777", null, "12498", null, "1991", null, "4215", null, "1195", null, "8283", null, "1466", null, "106747", null, "5073", null, "18471", null, "2306", null, "256751", null, "4747", null, "60560", null, "3522", null, "214662", null, "4599", null, "231656", null, "4349", null, "13783", null, "2100", null, "-999999999", "N", "-999999999", "N", "4456", null, "1228", null, "-999999999", "N", "-999999999", "N", "6507", null, "1439", null, "17627", null, "2540", null, "25425", null, "2222", null, "222775", null, "4264", null, "85652", null, "2933", null, "168000", null, "5442", null, "27077", null, "2206", null, "44204", null, "3251", null, "96719", null, "4154", null, "88.3", null, "1.0", null, "43.7", null, "1.3", null, "56.3", null, "1.3", null, "49.7", null, "1.6", null, "11.3", null, "1.0", null, "3.8", null, "0.6", null, "7.5", null, "0.9", null, "39.0", null, "1.7", null, "23.2", null, "1.3", null, "16.3", null, "1.1", null, "6.8", null, "0.9", null, "2.3", null, "0.6", null, "4.5", null, "0.8", null, "0.2", null, "0.1", null, "76.8", null, "1.3", null, "33.4", null, "1.6", null, "4.5", null, "0.7", null, "1.5", null, "0.4", null, "3.0", null, "0.5", null, "38.8", null, "1.7", null, "6.7", null, "0.8", null, "93.3", null, "0.8", null, "22.0", null, "1.2", null, "78.0", null, "1.2", null, "84.2", null, "1.1", null, "5.0", null, "0.8", null, "-999999999.0", "N", "-999999999.0", "N", "1.6", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "2.4", null, "0.5", null, "6.4", null, "0.9", null, "9.2", null, "0.8", null, "80.9", null, "1.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.1", null, "1.2", null, "26.3", null, "1.7", null, "57.6", null, "1.7", null, "55", "01"], ["5001900US5502", "Congressional District 2 (119th Congress), Wisconsin", "333721", null, "3542", null, "115938", null, "2268", null, "217783", null, "3655", null, "145993", null, "4417", null, "36203", null, "2870", null, "12238", null, "1843", null, "23965", null, "2416", null, "151525", null, "4310", null, "78106", null, "3215", null, "55024", null, "2716", null, "22487", null, "2478", null, "7049", null, "1575", null, "15438", null, "2211", null, "595", null, "252", null, "255615", null, "4034", null, "90969", null, "3287", null, "13716", null, "1575", null, "5189", null, "1152", null, "8527", null, "1180", null, "150930", null, "4331", null, "34917", null, "3273", null, "298804", null, "4460", null, "65864", null, "3229", null, "267857", null, "4584", null, "277423", null, "4062", null, "10970", null, "1964", null, "449", null, "430", null, "17337", null, "1677", null, "-999999999", "N", "-999999999", "N", "5076", null, "1283", null, "22080", null, "2714", null, "18190", null, "1537", null, "273568", null, "3806", null, "88518", null, "2088", null, "182196", null, "4422", null, "24208", null, "1740", null, "48456", null, "3172", null, "109532", null, "3972", null, "-888888888", "(X)", "-888888888", "(X)", "34.7", null, "0.7", null, "65.3", null, "0.7", null, "43.7", null, "1.3", null, "10.8", null, "0.8", null, "3.7", null, "0.5", null, "7.2", null, "0.7", null, "45.4", null, "1.2", null, "23.4", null, "0.9", null, "16.5", null, "0.8", null, "6.7", null, "0.7", null, "2.1", null, "0.5", null, "4.6", null, "0.7", null, "0.2", null, "0.1", null, "76.6", null, "0.9", null, "27.3", null, "1.0", null, "4.1", null, "0.5", null, "1.6", null, "0.3", null, "2.6", null, "0.4", null, "45.2", null, "1.2", null, "10.5", null, "1.0", null, "89.5", null, "1.0", null, "19.7", null, "1.0", null, "80.3", null, "1.0", null, "83.1", null, "0.8", null, "3.3", null, "0.6", null, "0.1", null, "0.1", null, "5.2", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "1.5", null, "0.4", null, "6.6", null, "0.8", null, "5.5", null, "0.4", null, "82.0", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.3", null, "0.9", null, "26.6", null, "1.6", null, "60.1", null, "1.6", null, "29574", null, "3241", null, "8880", null, "1469", null, "20694", null, "2771", null, "5858", null, "1454", null, "8927", null, "1777", null, "1771", null, "651", null, "7156", null, "1710", null, "14789", null, "2232", null, "10618", null, "2054", null, "3787", null, "1142", null, "6564", null, "1749", null, "768", null, "376", null, "5796", null, "1631", null, "267", null, "206", null, "18956", null, "2577", null, "2071", null, "854", null, "2363", null, "782", null, "1003", null, "562", null, "1360", null, "574", null, "14522", null, "2270", null, "10184", null, "1883", null, "19390", null, "2848", null, "12506", null, "1972", null, "17068", null, "3080", null, "20031", null, "2173", null, "3111", null, "1428", null, "36", null, "34", null, "1390", null, "849", null, "-999999999", "N", "-999999999", "N", "342", null, "244", null, "4664", null, "1395", null, "4166", null, "1343", null, "19119", null, "2208", null, "32009", null, "7117", null, "14785", null, "2230", null, "1310", null, "495", null, "8178", null, "1695", null, "5297", null, "1303", null, "8.9", null, "1.0", null, "30.0", null, "4.3", null, "70.0", null, "4.3", null, "19.8", null, "4.4", null, "30.2", null, "5.0", null, "6.0", null, "2.1", null, "24.2", null, "5.1", null, "50.0", null, "5.2", null, "35.9", null, "5.5", null, "12.8", null, "3.6", null, "22.2", null, "5.1", null, "2.6", null, "1.2", null, "19.6", null, "4.8", null, "0.9", null, "0.7", null, "64.1", null, "5.5", null, "7.0", null, "2.8", null, "8.0", null, "2.7", null, "3.4", null, "1.9", null, "4.6", null, "2.0", null, "49.1", null, "5.3", null, "34.4", null, "5.6", null, "65.6", null, "5.6", null, "42.3", null, "6.5", null, "57.7", null, "6.5", null, "67.7", null, "5.1", null, "10.5", null, "4.4", null, "0.1", null, "0.1", null, "4.7", null, "2.7", null, "-999999999.0", "N", "-999999999.0", "N", "1.2", null, "0.8", null, "15.8", null, "4.3", null, "14.1", null, "4.2", null, "64.6", null, "5.4", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "8.9", null, "3.6", null, "55.3", null, "6.8", null, "35.8", null, "6.6", null, "304147", null, "4443", null, "107058", null, "2263", null, "197089", null, "4350", null, "140135", null, "4627", null, "27276", null, "2482", null, "10467", null, "1714", null, "16809", null, "1766", null, "136736", null, "3908", null, "67488", null, "2919", null, "51237", null, "2707", null, "15923", null, "2129", null, "6281", null, "1493", null, "9642", null, "1622", null, "328", null, "239", null, "236659", null, "4459", null, "88898", null, "3464", null, "11353", null, "1490", null, "4186", null, "1031", null, "7167", null, "1118", null, "136408", null, "3935", null, "24733", null, "2870", null, "279414", null, "4899", null, "53358", null, "2864", null, "250789", null, "4636", null, "257392", null, "4028", null, "7859", null, "1668", null, "413", null, "428", null, "15947", null, "1462", null, "-999999999", "N", "-999999999", "N", "4734", null, "1287", null, "17416", null, "2501", null, "14024", null, "1776", null, "254449", null, "3938", null, "94436", null, "2876", null, "167411", null, "4196", null, "22898", null, "1693", null, "40278", null, "3147", null, "104235", null, "4117", null, "91.1", null, "1.0", null, "35.2", null, "0.8", null, "64.8", null, "0.8", null, "46.1", null, "1.3", null, "9.0", null, "0.8", null, "3.4", null, "0.6", null, "5.5", null, "0.6", null, "45.0", null, "1.1", null, "22.2", null, "0.9", null, "16.8", null, "0.9", null, "5.2", null, "0.7", null, "2.1", null, "0.5", null, "3.2", null, "0.5", null, "0.1", null, "0.1", null, "77.8", null, "0.9", null, "29.2", null, "1.0", null, "3.7", null, "0.5", null, "1.4", null, "0.3", null, "2.4", null, "0.4", null, "44.8", null, "1.1", null, "8.1", null, "0.9", null, "91.9", null, "0.9", null, "17.5", null, "0.9", null, "82.5", null, "0.9", null, "84.6", null, "0.9", null, "2.6", null, "0.5", null, "0.1", null, "0.1", null, "5.2", null, "0.5", null, "-999999999.0", "N", "-999999999.0", "N", "1.6", null, "0.4", null, "5.7", null, "0.8", null, "4.6", null, "0.6", null, "83.7", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.7", null, "1.0", null, "24.1", null, "1.8", null, "62.3", null, "1.7", null, "55", "02"], ["5001900US5503", "Congressional District 3 (119th Congress), Wisconsin", "311126", null, "2969", null, "132808", null, "2290", null, "178318", null, "3270", null, "148951", null, "3520", null, "37882", null, "2773", null, "13586", null, "1483", null, "24296", null, "2332", null, "124293", null, "3700", null, "75130", null, "3052", null, "52721", null, "2559", null, "21547", null, "2147", null, "7579", null, "1168", null, "13968", null, "1767", null, "862", null, "347", null, "235996", null, "3470", null, "96230", null, "2908", null, "16335", null, "1865", null, "6007", null, "881", null, "10328", null, "1517", null, "123431", null, "3728", null, "35423", null, "2432", null, "275703", null, "3482", null, "78671", null, "3537", null, "232455", null, "4275", null, "291274", null, "3241", null, "2325", null, "862", null, "1051", null, "342", null, "3992", null, "887", null, "-999999999", "N", "-999999999", "N", "3288", null, "764", null, "8976", null, "1284", null, "7705", null, "919", null, "288418", null, "3171", null, "73367", null, "2103", null, "186833", null, "3926", null, "34567", null, "1743", null, "48193", null, "3061", null, "104073", null, "3339", null, "-888888888", "(X)", "-888888888", "(X)", "42.7", null, "0.7", null, "57.3", null, "0.7", null, "47.9", null, "1.0", null, "12.2", null, "0.9", null, "4.4", null, "0.5", null, "7.8", null, "0.7", null, "39.9", null, "1.1", null, "24.1", null, "0.9", null, "16.9", null, "0.8", null, "6.9", null, "0.7", null, "2.4", null, "0.4", null, "4.5", null, "0.6", null, "0.3", null, "0.1", null, "75.9", null, "0.9", null, "30.9", null, "0.9", null, "5.3", null, "0.6", null, "1.9", null, "0.3", null, "3.3", null, "0.5", null, "39.7", null, "1.1", null, "11.4", null, "0.8", null, "88.6", null, "0.8", null, "25.3", null, "1.1", null, "74.7", null, "1.1", null, "93.6", null, "0.5", null, "0.7", null, "0.3", null, "0.3", null, "0.1", null, "1.3", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "1.1", null, "0.2", null, "2.9", null, "0.4", null, "2.5", null, "0.3", null, "92.7", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.5", null, "0.8", null, "25.8", null, "1.5", null, "55.7", null, "1.5", null, "34858", null, "2672", null, "13189", null, "1711", null, "21669", null, "2125", null, "7407", null, "1167", null, "11312", null, "1685", null, "2443", null, "811", null, "8869", null, "1619", null, "16139", null, "2239", null, "12628", null, "1526", null, "4940", null, "1008", null, "7577", null, "1292", null, "1455", null, "609", null, "6122", null, "1230", null, "111", null, "87", null, "22230", null, "2429", null, "2467", null, "617", null, "3735", null, "1114", null, "988", null, "479", null, "2747", null, "1058", null, "16028", null, "2244", null, "13370", null, "1572", null, "21488", null, "2031", null, "18093", null, "1832", null, "16765", null, "1719", null, "31797", null, "2356", null, "556", null, "402", null, "255", null, "154", null, "579", null, "466", null, "-999999999", "N", "-999999999", "N", "446", null, "350", null, "1225", null, "458", null, "1056", null, "488", null, "31219", null, "2332", null, "29988", null, "2622", null, "18719", null, "1936", null, "2770", null, "722", null, "9522", null, "1438", null, "6427", null, "1056", null, "11.2", null, "0.9", null, "37.8", null, "3.9", null, "62.2", null, "3.9", null, "21.2", null, "3.3", null, "32.5", null, "4.3", null, "7.0", null, "2.3", null, "25.4", null, "4.3", null, "46.3", null, "4.7", null, "36.2", null, "4.1", null, "14.2", null, "2.9", null, "21.7", null, "3.5", null, "4.2", null, "1.8", null, "17.6", null, "3.4", null, "0.3", null, "0.3", null, "63.8", null, "4.1", null, "7.1", null, "1.8", null, "10.7", null, "3.1", null, "2.8", null, "1.4", null, "7.9", null, "2.9", null, "46.0", null, "4.7", null, "38.4", null, "3.4", null, "61.6", null, "3.4", null, "51.9", null, "3.4", null, "48.1", null, "3.4", null, "91.2", null, "2.4", null, "1.6", null, "1.1", null, "0.7", null, "0.5", null, "1.7", null, "1.3", null, "-999999999.0", "N", "-999999999.0", "N", "1.3", null, "1.0", null, "3.5", null, "1.3", null, "3.0", null, "1.3", null, "89.6", null, "2.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.8", null, "3.6", null, "50.9", null, "5.1", null, "34.3", null, "4.6", null, "276268", null, "3751", null, "119619", null, "2517", null, "156649", null, "3475", null, "141544", null, "3619", null, "26570", null, "2307", null, "11143", null, "1256", null, "15427", null, "1710", null, "108154", null, "3616", null, "62502", null, "2681", null, "47781", null, "2401", null, "13970", null, "1740", null, "6124", null, "1028", null, "7846", null, "1272", null, "751", null, "348", null, "213766", null, "3704", null, "93763", null, "2945", null, "12600", null, "1529", null, "5019", null, "876", null, "7581", null, "1118", null, "107403", null, "3659", null, "22053", null, "2003", null, "254215", null, "3906", null, "60578", null, "3118", null, "215690", null, "4474", null, "259477", null, "3678", null, "1769", null, "697", null, "796", null, "297", null, "3413", null, "1047", null, "-999999999", "N", "-999999999", "N", "2842", null, "652", null, "7751", null, "1216", null, "6649", null, "913", null, "257199", null, "3628", null, "80205", null, "1791", null, "168114", null, "3905", null, "31797", null, "1650", null, "38671", null, "2512", null, "97646", null, "3514", null, "88.8", null, "0.9", null, "43.3", null, "0.8", null, "56.7", null, "0.8", null, "51.2", null, "1.1", null, "9.6", null, "0.8", null, "4.0", null, "0.4", null, "5.6", null, "0.6", null, "39.1", null, "1.2", null, "22.6", null, "0.9", null, "17.3", null, "0.8", null, "5.1", null, "0.6", null, "2.2", null, "0.4", null, "2.8", null, "0.5", null, "0.3", null, "0.1", null, "77.4", null, "0.9", null, "33.9", null, "1.0", null, "4.6", null, "0.6", null, "1.8", null, "0.3", null, "2.7", null, "0.4", null, "38.9", null, "1.2", null, "8.0", null, "0.7", null, "92.0", null, "0.7", null, "21.9", null, "1.1", null, "78.1", null, "1.1", null, "93.9", null, "0.6", null, "0.6", null, "0.3", null, "0.3", null, "0.1", null, "1.2", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "1.0", null, "0.2", null, "2.8", null, "0.4", null, "2.4", null, "0.3", null, "93.1", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.9", null, "0.9", null, "23.0", null, "1.5", null, "58.1", null, "1.5", null, "55", "03"], ["5001900US5504", "Congressional District 4 (119th Congress), Wisconsin", "306628", null, "4665", null, "102257", null, "3643", null, "204371", null, "4501", null, "86644", null, "4005", null, "71233", null, "4098", null, "17414", null, "3049", null, "53819", null, "3149", null, "148751", null, "4798", null, "79764", null, "3880", null, "32050", null, "2426", null, "46934", null, "3651", null, "8843", null, "2060", null, "38091", null, "3218", null, "780", null, "643", null, "226864", null, "6050", null, "54594", null, "2951", null, "24299", null, "3006", null, "8571", null, "1990", null, "15728", null, "2057", null, "147971", null, "4875", null, "53204", null, "4194", null, "253424", null, "5660", null, "79323", null, "4535", null, "227305", null, "5626", null, "153488", null, "3979", null, "96019", null, "3517", null, "2438", null, "832", null, "12174", null, "1298", null, "-999999999", "N", "-999999999", "N", "12422", null, "1672", null, "29897", null, "2520", null, "38845", null, "2192", null, "148269", null, "4123", null, "62083", null, "2393", null, "157877", null, "4425", null, "22156", null, "2369", null, "57794", null, "3747", null, "77927", null, "4149", null, "-888888888", "(X)", "-888888888", "(X)", "33.3", null, "1.1", null, "66.7", null, "1.1", null, "28.3", null, "1.2", null, "23.2", null, "1.4", null, "5.7", null, "1.0", null, "17.6", null, "1.1", null, "48.5", null, "1.3", null, "26.0", null, "1.3", null, "10.5", null, "0.8", null, "15.3", null, "1.2", null, "2.9", null, "0.7", null, "12.4", null, "1.1", null, "0.3", null, "0.2", null, "74.0", null, "1.3", null, "17.8", null, "0.9", null, "7.9", null, "1.0", null, "2.8", null, "0.6", null, "5.1", null, "0.7", null, "48.3", null, "1.3", null, "17.4", null, "1.3", null, "82.6", null, "1.3", null, "25.9", null, "1.4", null, "74.1", null, "1.4", null, "50.1", null, "1.0", null, "31.3", null, "1.0", null, "0.8", null, "0.3", null, "4.0", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "4.1", null, "0.5", null, "9.8", null, "0.8", null, "12.7", null, "0.7", null, "48.4", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.0", null, "1.4", null, "36.6", null, "2.1", null, "49.4", null, "2.4", null, "64804", null, "4118", null, "22168", null, "2693", null, "42636", null, "3421", null, "8953", null, "1770", null, "31845", null, "3137", null, "4349", null, "1425", null, "27496", null, "2919", null, "24006", null, "2508", null, "31215", null, "2989", null, "5679", null, "1348", null, "25303", null, "2661", null, "2511", null, "1185", null, "22792", null, "2473", null, "233", null, "288", null, "33589", null, "3041", null, "3274", null, "1113", null, "6542", null, "1579", null, "1838", null, "845", null, "4704", null, "1160", null, "23773", null, "2464", null, "28535", null, "3520", null, "36269", null, "3639", null, "28440", null, "2660", null, "36364", null, "3534", null, "12948", null, "1935", null, "35595", null, "3066", null, "1191", null, "587", null, "2888", null, "1041", null, "-999999999", "N", "-999999999", "N", "3270", null, "953", null, "8849", null, "1850", null, "11465", null, "1700", null, "11896", null, "1837", null, "29550", null, "3386", null, "40798", null, "3391", null, "6569", null, "1557", null, "23339", null, "2713", null, "10890", null, "2059", null, "21.1", null, "1.4", null, "34.2", null, "3.4", null, "65.8", null, "3.4", null, "13.8", null, "2.5", null, "49.1", null, "3.7", null, "6.7", null, "2.2", null, "42.4", null, "3.7", null, "37.0", null, "3.2", null, "48.2", null, "3.4", null, "8.8", null, "1.9", null, "39.0", null, "3.4", null, "3.9", null, "1.8", null, "35.2", null, "3.2", null, "0.4", null, "0.4", null, "51.8", null, "3.4", null, "5.1", null, "1.7", null, "10.1", null, "2.3", null, "2.8", null, "1.3", null, "7.3", null, "1.7", null, "36.7", null, "3.1", null, "44.0", null, "4.5", null, "56.0", null, "4.5", null, "43.9", null, "3.5", null, "56.1", null, "3.5", null, "20.0", null, "2.7", null, "54.9", null, "3.3", null, "1.8", null, "0.9", null, "4.5", null, "1.6", null, "-999999999.0", "N", "-999999999.0", "N", "5.0", null, "1.4", null, "13.7", null, "2.7", null, "17.7", null, "2.4", null, "18.4", null, "2.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.1", null, "3.6", null, "57.2", null, "5.0", null, "26.7", null, "4.4", null, "241824", null, "6117", null, "80089", null, "3788", null, "161735", null, "4719", null, "77691", null, "3656", null, "39388", null, "3710", null, "13065", null, "2895", null, "26323", null, "2612", null, "124745", null, "4957", null, "48549", null, "3243", null, "26371", null, "2265", null, "21631", null, "2890", null, "6332", null, "1891", null, "15299", null, "2365", null, "547", null, "491", null, "193275", null, "6305", null, "51320", null, "2724", null, "17757", null, "2627", null, "6733", null, "1722", null, "11024", null, "1866", null, "124198", null, "4991", null, "24669", null, "3080", null, "217155", null, "5600", null, "50883", null, "3563", null, "190941", null, "5561", null, "140540", null, "4141", null, "60424", null, "3565", null, "1247", null, "645", null, "9286", null, "1331", null, "-999999999", "N", "-999999999", "N", "9152", null, "1461", null, "21048", null, "2131", null, "27380", null, "2092", null, "136373", null, "4250", null, "73603", null, "2706", null, "117079", null, "4356", null, "15587", null, "1841", null, "34455", null, "3116", null, "67037", null, "3707", null, "78.9", null, "1.4", null, "33.1", null, "1.2", null, "66.9", null, "1.2", null, "32.1", null, "1.3", null, "16.3", null, "1.5", null, "5.4", null, "1.2", null, "10.9", null, "1.1", null, "51.6", null, "1.5", null, "20.1", null, "1.3", null, "10.9", null, "0.9", null, "8.9", null, "1.2", null, "2.6", null, "0.8", null, "6.3", null, "1.0", null, "0.2", null, "0.2", null, "79.9", null, "1.3", null, "21.2", null, "1.1", null, "7.3", null, "1.0", null, "2.8", null, "0.7", null, "4.6", null, "0.7", null, "51.4", null, "1.5", null, "10.2", null, "1.2", null, "89.8", null, "1.2", null, "21.0", null, "1.3", null, "79.0", null, "1.3", null, "58.1", null, "1.2", null, "25.0", null, "1.2", null, "0.5", null, "0.3", null, "3.8", null, "0.6", null, "-999999999.0", "N", "-999999999.0", "N", "3.8", null, "0.6", null, "8.7", null, "0.9", null, "11.3", null, "0.8", null, "56.4", null, "1.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "13.3", null, "1.5", null, "29.4", null, "2.3", null, "57.3", null, "2.4", null, "55", "04"], ["5001900US5505", "Congressional District 5 (119th Congress), Wisconsin", "311371", null, "3399", null, "143857", null, "2872", null, "167514", null, "3512", null, "164093", null, "3924", null, "35494", null, "3238", null, "11928", null, "1997", null, "23566", null, "2286", null, "111784", null, "4349", null, "77834", null, "3153", null, "58317", null, "2805", null, "19284", null, "2368", null, "6687", null, "1378", null, "12597", null, "1852", null, "233", null, "172", null, "233537", null, "3692", null, "105776", null, "3301", null, "16210", null, "2056", null, "5241", null, "1412", null, "10969", null, "1480", null, "111551", null, "4340", null, "23882", null, "2743", null, "287489", null, "4189", null, "71081", null, "3495", null, "240290", null, "4352", null, "282215", null, "3871", null, "3686", null, "979", null, "1185", null, "515", null, "7737", null, "1158", null, "-999999999", "N", "-999999999", "N", "3120", null, "973", null, "13339", null, "1796", null, "15602", null, "1379", null, "276980", null, "3899", null, "91909", null, "2316", null, "199587", null, "4103", null, "33441", null, "2205", null, "51690", null, "3677", null, "114456", null, "3877", null, "-888888888", "(X)", "-888888888", "(X)", "46.2", null, "0.9", null, "53.8", null, "0.9", null, "52.7", null, "1.2", null, "11.4", null, "1.0", null, "3.8", null, "0.6", null, "7.6", null, "0.7", null, "35.9", null, "1.3", null, "25.0", null, "0.9", null, "18.7", null, "0.9", null, "6.2", null, "0.7", null, "2.1", null, "0.4", null, "4.0", null, "0.6", null, "0.1", null, "0.1", null, "75.0", null, "0.9", null, "34.0", null, "1.1", null, "5.2", null, "0.7", null, "1.7", null, "0.5", null, "3.5", null, "0.5", null, "35.8", null, "1.3", null, "7.7", null, "0.9", null, "92.3", null, "0.9", null, "22.8", null, "1.1", null, "77.2", null, "1.1", null, "90.6", null, "0.8", null, "1.2", null, "0.3", null, "0.4", null, "0.2", null, "2.5", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "1.0", null, "0.3", null, "4.3", null, "0.6", null, "5.0", null, "0.4", null, "89.0", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.8", null, "1.1", null, "25.9", null, "1.7", null, "57.3", null, "1.6", null, "18660", null, "2245", null, "7743", null, "1503", null, "10917", null, "1613", null, "3683", null, "858", null, "7713", null, "1685", null, "1378", null, "667", null, "6335", null, "1571", null, "7264", null, "1395", null, "7971", null, "1410", null, "2354", null, "825", null, "5590", null, "1235", null, "1131", null, "618", null, "4459", null, "1133", null, "27", null, "32", null, "10689", null, "1707", null, "1329", null, "465", null, "2123", null, "983", null, "247", null, "209", null, "1876", null, "958", null, "7237", null, "1396", null, "6519", null, "1417", null, "12141", null, "1877", null, "9195", null, "1604", null, "9465", null, "1532", null, "15234", null, "2117", null, "700", null, "489", null, "107", null, "132", null, "449", null, "414", null, "-999999999", "N", "-999999999", "N", "496", null, "416", null, "1674", null, "805", null, "2293", null, "756", null, "14352", null, "1998", null, "36014", null, "11720", null, "11396", null, "1801", null, "1602", null, "503", null, "5646", null, "1454", null, "4148", null, "1121", null, "6.0", null, "0.7", null, "41.5", null, "5.8", null, "58.5", null, "5.8", null, "19.7", null, "4.5", null, "41.3", null, "6.7", null, "7.4", null, "3.5", null, "33.9", null, "6.6", null, "38.9", null, "6.0", null, "42.7", null, "5.8", null, "12.6", null, "4.3", null, "30.0", null, "5.5", null, "6.1", null, "3.3", null, "23.9", null, "5.3", null, "0.1", null, "0.2", null, "57.3", null, "5.8", null, "7.1", null, "2.6", null, "11.4", null, "4.8", null, "1.3", null, "1.1", null, "10.1", null, "4.7", null, "38.8", null, "6.0", null, "34.9", null, "6.4", null, "65.1", null, "6.4", null, "49.3", null, "5.9", null, "50.7", null, "5.9", null, "81.6", null, "5.9", null, "3.8", null, "2.6", null, "0.6", null, "0.7", null, "2.4", null, "2.2", null, "-999999999.0", "N", "-999999999.0", "N", "2.7", null, "2.2", null, "9.0", null, "4.3", null, "12.3", null, "3.9", null, "76.9", null, "5.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.1", null, "4.8", null, "49.5", null, "8.5", null, "36.4", null, "8.2", null, "292711", null, "3997", null, "136114", null, "2725", null, "156597", null, "3627", null, "160410", null, "4051", null, "27781", null, "2739", null, "10550", null, "1779", null, "17231", null, "1932", null, "104520", null, "4039", null, "69863", null, "3132", null, "55963", null, "2818", null, "13694", null, "1916", null, "5556", null, "1217", null, "8138", null, "1474", null, "206", null, "169", null, "222848", null, "3761", null, "104447", null, "3343", null, "14087", null, "1985", null, "4994", null, "1394", null, "9093", null, "1421", null, "104314", null, "4033", null, "17363", null, "2293", null, "275348", null, "4473", null, "61886", null, "3245", null, "230825", null, "4522", null, "266981", null, "3957", null, "2986", null, "978", null, "1078", null, "498", null, "7288", null, "1129", null, "-999999999", "N", "-999999999", "N", "2624", null, "833", null, "11665", null, "1801", null, "13309", null, "1338", null, "262628", null, "4124", null, "96497", null, "2919", null, "188191", null, "4502", null, "31839", null, "2188", null, "46044", null, "3411", null, "110308", null, "4024", null, "94.0", null, "0.7", null, "46.5", null, "0.8", null, "53.5", null, "0.8", null, "54.8", null, "1.2", null, "9.5", null, "0.9", null, "3.6", null, "0.6", null, "5.9", null, "0.7", null, "35.7", null, "1.3", null, "23.9", null, "1.0", null, "19.1", null, "0.9", null, "4.7", null, "0.6", null, "1.9", null, "0.4", null, "2.8", null, "0.5", null, "0.1", null, "0.1", null, "76.1", null, "1.0", null, "35.7", null, "1.1", null, "4.8", null, "0.7", null, "1.7", null, "0.5", null, "3.1", null, "0.5", null, "35.6", null, "1.3", null, "5.9", null, "0.8", null, "94.1", null, "0.8", null, "21.1", null, "1.1", null, "78.9", null, "1.1", null, "91.2", null, "0.8", null, "1.0", null, "0.3", null, "0.4", null, "0.2", null, "2.5", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "0.9", null, "0.3", null, "4.0", null, "0.6", null, "4.5", null, "0.5", null, "89.7", null, "0.8", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.9", null, "1.1", null, "24.5", null, "1.7", null, "58.6", null, "1.6", null, "55", "05"], ["5001900US5506", "Congressional District 6 (119th Congress), Wisconsin", "315142", null, "2906", null, "145542", null, "2524", null, "169600", null, "3173", null, "152741", null, "4371", null, "38781", null, "2978", null, "15210", null, "2061", null, "23571", null, "2237", null, "123620", null, "4608", null, "76600", null, "3659", null, "53167", null, "3176", null, "22197", null, "2100", null, "8411", null, "1706", null, "13786", null, "1538", null, "1236", null, "722", null, "238542", null, "3586", null, "99574", null, "3309", null, "16584", null, "2154", null, "6799", null, "1321", null, "9785", null, "1656", null, "122384", null, "4593", null, "30881", null, "2796", null, "284261", null, "4138", null, "75706", null, "3846", null, "239436", null, "4302", null, "287680", null, "3232", null, "3764", null, "803", null, "1157", null, "406", null, "5442", null, "759", null, "-999999999", "N", "-999999999", "N", "4575", null, "1157", null, "12151", null, "1399", null, "12530", null, "1318", null, "284375", null, "3121", null, "76182", null, "1751", null, "191522", null, "4869", null, "32643", null, "1630", null, "52303", null, "3201", null, "106576", null, "4019", null, "-888888888", "(X)", "-888888888", "(X)", "46.2", null, "0.8", null, "53.8", null, "0.8", null, "48.5", null, "1.3", null, "12.3", null, "0.9", null, "4.8", null, "0.7", null, "7.5", null, "0.7", null, "39.2", null, "1.4", null, "24.3", null, "1.1", null, "16.9", null, "1.0", null, "7.0", null, "0.7", null, "2.7", null, "0.5", null, "4.4", null, "0.5", null, "0.4", null, "0.2", null, "75.7", null, "1.1", null, "31.6", null, "1.1", null, "5.3", null, "0.7", null, "2.2", null, "0.4", null, "3.1", null, "0.5", null, "38.8", null, "1.4", null, "9.8", null, "0.9", null, "90.2", null, "0.9", null, "24.0", null, "1.2", null, "76.0", null, "1.2", null, "91.3", null, "0.5", null, "1.2", null, "0.3", null, "0.4", null, "0.1", null, "1.7", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "1.5", null, "0.4", null, "3.9", null, "0.4", null, "4.0", null, "0.4", null, "90.2", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.0", null, "0.9", null, "27.3", null, "1.5", null, "55.6", null, "1.4", null, "27703", null, "2728", null, "11910", null, "1848", null, "15793", null, "1943", null, "6425", null, "1215", null, "9991", null, "1590", null, "2690", null, "918", null, "7301", null, "1339", null, "11287", null, "1866", null, "11866", null, "1636", null, "4241", null, "1005", null, "7405", null, "1329", null, "1874", null, "804", null, "5531", null, "1066", null, "220", null, "211", null, "15837", null, "2327", null, "2184", null, "653", null, "2586", null, "895", null, "816", null, "446", null, "1770", null, "790", null, "11067", null, "1867", null, "9392", null, "1491", null, "18311", null, "2031", null, "14023", null, "2029", null, "13680", null, "1705", null, "22453", null, "2459", null, "1572", null, "896", null, "239", null, "191", null, "819", null, "408", null, "-999999999", "N", "-999999999", "N", "309", null, "316", null, "2311", null, "823", null, "2310", null, "719", null, "21524", null, "2358", null, "33114", null, "4012", null, "16416", null, "1988", null, "2435", null, "708", null, "7451", null, "1414", null, "6530", null, "1344", null, "8.8", null, "0.8", null, "43.0", null, "4.8", null, "57.0", null, "4.8", null, "23.2", null, "3.6", null, "36.1", null, "5.2", null, "9.7", null, "3.1", null, "26.4", null, "4.8", null, "40.7", null, "5.0", null, "42.8", null, "5.2", null, "15.3", null, "3.4", null, "26.7", null, "4.7", null, "6.8", null, "2.8", null, "20.0", null, "4.0", null, "0.8", null, "0.8", null, "57.2", null, "5.2", null, "7.9", null, "2.1", null, "9.3", null, "3.1", null, "2.9", null, "1.6", null, "6.4", null, "2.8", null, "39.9", null, "5.0", null, "33.9", null, "3.9", null, "66.1", null, "3.9", null, "50.6", null, "4.7", null, "49.4", null, "4.7", null, "81.0", null, "3.8", null, "5.7", null, "3.1", null, "0.9", null, "0.7", null, "3.0", null, "1.5", null, "-999999999.0", "N", "-999999999.0", "N", "1.1", null, "1.2", null, "8.3", null, "2.9", null, "8.3", null, "2.4", null, "77.7", null, "3.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "14.8", null, "3.9", null, "45.4", null, "6.9", null, "39.8", null, "6.5", null, "287439", null, "3412", null, "133632", null, "2285", null, "153807", null, "3343", null, "146316", null, "4162", null, "28790", null, "2546", null, "12520", null, "1684", null, "16270", null, "1956", null, "112333", null, "4435", null, "64734", null, "3374", null, "48926", null, "3033", null, "14792", null, "1630", null, "6537", null, "1311", null, "8255", null, "1102", null, "1016", null, "628", null, "222705", null, "3724", null, "97390", null, "3270", null, "13998", null, "1857", null, "5983", null, "1243", null, "8015", null, "1515", null, "111317", null, "4376", null, "21489", null, "2518", null, "265950", null, "3988", null, "61683", null, "2884", null, "225756", null, "4409", null, "265227", null, "3254", null, "2192", null, "716", null, "918", null, "387", null, "4623", null, "773", null, "-999999999", "N", "-999999999", "N", "4266", null, "1141", null, "9840", null, "1335", null, "10220", null, "1274", null, "262851", null, "3243", null, "81822", null, "1776", null, "175106", null, "4450", null, "30208", null, "1592", null, "44852", null, "2962", null, "100046", null, "3923", null, "91.2", null, "0.8", null, "46.5", null, "0.8", null, "53.5", null, "0.8", null, "50.9", null, "1.4", null, "10.0", null, "0.9", null, "4.4", null, "0.6", null, "5.7", null, "0.7", null, "39.1", null, "1.4", null, "22.5", null, "1.1", null, "17.0", null, "1.0", null, "5.1", null, "0.6", null, "2.3", null, "0.5", null, "2.9", null, "0.4", null, "0.4", null, "0.2", null, "77.5", null, "1.1", null, "33.9", null, "1.2", null, "4.9", null, "0.6", null, "2.1", null, "0.4", null, "2.8", null, "0.5", null, "38.7", null, "1.4", null, "7.5", null, "0.9", null, "92.5", null, "0.9", null, "21.5", null, "1.0", null, "78.5", null, "1.0", null, "92.3", null, "0.6", null, "0.8", null, "0.2", null, "0.3", null, "0.1", null, "1.6", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "1.5", null, "0.4", null, "3.4", null, "0.5", null, "3.6", null, "0.4", null, "91.4", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "17.3", null, "0.9", null, "25.6", null, "1.5", null, "57.1", null, "1.6", null, "55", "06"], ["5001900US5507", "Congressional District 7 (119th Congress), Wisconsin", "331273", null, "3583", null, "164065", null, "2828", null, "167208", null, "2900", null, "171114", null, "3247", null, "40761", null, "2282", null, "15526", null, "1486", null, "25235", null, "1896", null, "119398", null, "3615", null, "79841", null, "2638", null, "53783", null, "2419", null, "25082", null, "1954", null, "8201", null, "1136", null, "16881", null, "1629", null, "976", null, "385", null, "251432", null, "3658", null, "117331", null, "2818", null, "15679", null, "1588", null, "7325", null, "1322", null, "8354", null, "940", null, "118422", null, "3561", null, "35750", null, "2181", null, "295523", null, "3934", null, "85649", null, "3067", null, "245624", null, "3926", null, "306329", null, "3394", null, "1791", null, "1029", null, "5235", null, "821", null, "3626", null, "539", null, "-999999999", "N", "-999999999", "N", "2830", null, "969", null, "11370", null, "1118", null, "6810", null, "934", null, "304507", null, "3391", null, "73003", null, "1683", null, "211875", null, "3483", null, "44176", null, "2032", null, "58389", null, "2475", null, "109310", null, "3013", null, "-888888888", "(X)", "-888888888", "(X)", "49.5", null, "0.7", null, "50.5", null, "0.7", null, "51.7", null, "0.9", null, "12.3", null, "0.7", null, "4.7", null, "0.5", null, "7.6", null, "0.6", null, "36.0", null, "0.9", null, "24.1", null, "0.7", null, "16.2", null, "0.7", null, "7.6", null, "0.6", null, "2.5", null, "0.3", null, "5.1", null, "0.5", null, "0.3", null, "0.1", null, "75.9", null, "0.7", null, "35.4", null, "0.8", null, "4.7", null, "0.5", null, "2.2", null, "0.4", null, "2.5", null, "0.3", null, "35.7", null, "0.9", null, "10.8", null, "0.7", null, "89.2", null, "0.7", null, "25.9", null, "0.9", null, "74.1", null, "0.9", null, "92.5", null, "0.5", null, "0.5", null, "0.3", null, "1.6", null, "0.2", null, "1.1", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "0.9", null, "0.3", null, "3.4", null, "0.3", null, "2.1", null, "0.3", null, "91.9", null, "0.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "20.9", null, "0.9", null, "27.6", null, "1.1", null, "51.6", null, "1.1", null, "37307", null, "2436", null, "14498", null, "1290", null, "22809", null, "2200", null, "7802", null, "1011", null, "12458", null, "1532", null, "3405", null, "977", null, "9053", null, "1254", null, "17047", null, "1826", null, "14476", null, "1426", null, "4917", null, "884", null, "9340", null, "1288", null, "1714", null, "649", null, "7626", null, "1261", null, "219", null, "146", null, "22831", null, "1951", null, "2885", null, "475", null, "3118", null, "880", null, "1691", null, "806", null, "1427", null, "399", null, "16828", null, "1810", null, "16086", null, "1668", null, "21221", null, "1861", null, "19046", null, "1936", null, "18261", null, "1755", null, "32509", null, "2371", null, "384", null, "262", null, "1407", null, "445", null, "532", null, "391", null, "-999999999", "N", "-999999999", "N", "785", null, "701", null, "1646", null, "458", null, "1528", null, "692", null, "32270", null, "2339", null, "27196", null, "2464", null, "20260", null, "1693", null, "4211", null, "642", null, "9108", null, "1290", null, "6941", null, "1289", null, "11.3", null, "0.7", null, "38.9", null, "3.3", null, "61.1", null, "3.3", null, "20.9", null, "2.7", null, "33.4", null, "3.5", null, "9.1", null, "2.5", null, "24.3", null, "3.0", null, "45.7", null, "3.5", null, "38.8", null, "3.1", null, "13.2", null, "2.2", null, "25.0", null, "3.1", null, "4.6", null, "1.7", null, "20.4", null, "3.1", null, "0.6", null, "0.4", null, "61.2", null, "3.1", null, "7.7", null, "1.4", null, "8.4", null, "2.3", null, "4.5", null, "2.1", null, "3.8", null, "1.1", null, "45.1", null, "3.4", null, "43.1", null, "3.4", null, "56.9", null, "3.4", null, "51.1", null, "3.7", null, "48.9", null, "3.7", null, "87.1", null, "2.6", null, "1.0", null, "0.7", null, "3.8", null, "1.2", null, "1.4", null, "1.1", null, "-999999999.0", "N", "-999999999.0", "N", "2.1", null, "1.9", null, "4.4", null, "1.3", null, "4.1", null, "1.8", null, "86.5", null, "2.5", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "20.8", null, "3.4", null, "45.0", null, "5.1", null, "34.3", null, "5.0", null, "293966", null, "4136", null, "149567", null, "2840", null, "144399", null, "3555", null, "163312", null, "3255", null, "28303", null, "2075", null, "12121", null, "1318", null, "16182", null, "1548", null, "102351", null, "3560", null, "65365", null, "2839", null, "48866", null, "2587", null, "15742", null, "1612", null, "6487", null, "982", null, "9255", null, "1171", null, "757", null, "336", null, "228601", null, "3582", null, "114446", null, "2741", null, "12561", null, "1322", null, "5634", null, "924", null, "6927", null, "907", null, "101594", null, "3501", null, "19664", null, "1562", null, "274302", null, "3902", null, "66603", null, "2768", null, "227363", null, "3877", null, "273820", null, "3984", null, "1407", null, "1015", null, "3828", null, "721", null, "3094", null, "586", null, "-999999999", "N", "-999999999", "N", "2045", null, "534", null, "9724", null, "1138", null, "5282", null, "805", null, "272237", null, "4003", null, "79348", null, "1697", null, "191615", null, "3336", null, "39965", null, "1884", null, "49281", null, "2185", null, "102369", null, "2904", null, "88.7", null, "0.7", null, "50.9", null, "0.8", null, "49.1", null, "0.8", null, "55.6", null, "1.1", null, "9.6", null, "0.7", null, "4.1", null, "0.4", null, "5.5", null, "0.5", null, "34.8", null, "1.0", null, "22.2", null, "0.8", null, "16.6", null, "0.8", null, "5.4", null, "0.5", null, "2.2", null, "0.3", null, "3.1", null, "0.4", null, "0.3", null, "0.1", null, "77.8", null, "0.8", null, "38.9", null, "1.0", null, "4.3", null, "0.4", null, "1.9", null, "0.3", null, "2.4", null, "0.3", null, "34.6", null, "1.0", null, "6.7", null, "0.5", null, "93.3", null, "0.5", null, "22.7", null, "0.9", null, "77.3", null, "0.9", null, "93.1", null, "0.6", null, "0.5", null, "0.3", null, "1.3", null, "0.2", null, "1.1", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "0.7", null, "0.2", null, "3.3", null, "0.4", null, "1.8", null, "0.3", null, "92.6", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "20.9", null, "0.9", null, "25.7", null, "1.1", null, "53.4", null, "1.2", null, "55", "07"], ["5001900US5508", "Congressional District 8 (119th Congress), Wisconsin", "314339", null, "3046", null, "137648", null, "2571", null, "176691", null, "3477", null, "158251", null, "4339", null, "42849", null, "3419", null, "17390", null, "2368", null, "25459", null, "2275", null, "113239", null, "4579", null, "83090", null, "3498", null, "56117", null, "3033", null, "25275", null, "2928", null, "11225", null, "2211", null, "14050", null, "2006", null, "1698", null, "745", null, "231249", null, "3570", null, "102134", null, "3202", null, "17574", null, "1930", null, "6165", null, "1157", null, "11409", null, "1464", null, "111541", null, "4549", null, "28825", null, "2454", null, "285514", null, "3629", null, "74650", null, "3688", null, "239689", null, "4057", null, "279207", null, "2818", null, "3820", null, "930", null, "6881", null, "918", null, "5883", null, "715", null, "-999999999", "N", "-999999999", "N", "5871", null, "1118", null, "12643", null, "1892", null, "14128", null, "1069", null, "276528", null, "2722", null, "78966", null, "2504", null, "201100", null, "4902", null, "36355", null, "2087", null, "53453", null, "3395", null, "111292", null, "3420", null, "-888888888", "(X)", "-888888888", "(X)", "43.8", null, "0.8", null, "56.2", null, "0.8", null, "50.3", null, "1.3", null, "13.6", null, "1.1", null, "5.5", null, "0.7", null, "8.1", null, "0.7", null, "36.0", null, "1.4", null, "26.4", null, "1.0", null, "17.9", null, "0.9", null, "8.0", null, "0.9", null, "3.6", null, "0.7", null, "4.5", null, "0.6", null, "0.5", null, "0.2", null, "73.6", null, "1.0", null, "32.5", null, "1.0", null, "5.6", null, "0.6", null, "2.0", null, "0.4", null, "3.6", null, "0.5", null, "35.5", null, "1.4", null, "9.2", null, "0.8", null, "90.8", null, "0.8", null, "23.7", null, "1.1", null, "76.3", null, "1.1", null, "88.8", null, "0.6", null, "1.2", null, "0.3", null, "2.2", null, "0.3", null, "1.9", null, "0.2", null, "-999999999.0", "N", "-999999999.0", "N", "1.9", null, "0.4", null, "4.0", null, "0.6", null, "4.5", null, "0.3", null, "88.0", null, "0.6", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.1", null, "1.0", null, "26.6", null, "1.4", null, "55.3", null, "1.3", null, "29779", null, "2587", null, "11891", null, "1786", null, "17888", null, "2292", null, "6575", null, "1056", null, "9647", null, "1613", null, "2544", null, "842", null, "7103", null, "1404", null, "13557", null, "1952", null, "10568", null, "1642", null, "4180", null, "863", null, "6041", null, "1426", null, "1544", null, "758", null, "4497", null, "1277", null, "347", null, "249", null, "19211", null, "2451", null, "2395", null, "684", null, "3606", null, "1146", null, "1000", null, "499", null, "2606", null, "1020", null, "13210", null, "1968", null, "10903", null, "1535", null, "18876", null, "2309", null, "12500", null, "1711", null, "17279", null, "1950", null, "20965", null, "2066", null, "1874", null, "853", null, "2174", null, "552", null, "1221", null, "492", null, "-999999999", "N", "-999999999", "N", "1099", null, "566", null, "2446", null, "786", null, "2705", null, "845", null, "20723", null, "2051", null, "30373", null, "3260", null, "16222", null, "1974", null, "2730", null, "603", null, "6967", null, "1524", null, "6525", null, "1166", null, "9.5", null, "0.8", null, "39.9", null, "5.2", null, "60.1", null, "5.2", null, "22.1", null, "3.0", null, "32.4", null, "4.8", null, "8.5", null, "2.6", null, "23.9", null, "4.5", null, "45.5", null, "5.0", null, "35.5", null, "5.2", null, "14.0", null, "2.7", null, "20.3", null, "4.7", null, "5.2", null, "2.4", null, "15.1", null, "4.5", null, "1.2", null, "0.8", null, "64.5", null, "5.2", null, "8.0", null, "2.2", null, "12.1", null, "3.6", null, "3.4", null, "1.7", null, "8.8", null, "3.2", null, "44.4", null, "5.0", null, "36.6", null, "4.7", null, "63.4", null, "4.7", null, "42.0", null, "4.4", null, "58.0", null, "4.4", null, "70.4", null, "4.2", null, "6.3", null, "2.7", null, "7.3", null, "2.0", null, "4.1", null, "1.6", null, "-999999999.0", "N", "-999999999.0", "N", "3.7", null, "1.8", null, "8.2", null, "2.4", null, "9.1", null, "2.5", null, "69.6", null, "4.3", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.8", null, "3.7", null, "42.9", null, "6.5", null, "40.2", null, "5.9", null, "284560", null, "3593", null, "125757", null, "2783", null, "158803", null, "3570", null, "151676", null, "4284", null, "33202", null, "3017", null, "14846", null, "2260", null, "18356", null, "1856", null, "99682", null, "4354", null, "72522", null, "3137", null, "51937", null, "2775", null, "19234", null, "2436", null, "9681", null, "1964", null, "9553", null, "1585", null, "1351", null, "754", null, "212038", null, "3779", null, "99739", null, "3277", null, "13968", null, "1745", null, "5165", null, "1190", null, "8803", null, "1324", null, "98331", null, "4267", null, "17922", null, "2111", null, "266638", null, "4095", null, "62150", null, "3057", null, "222410", null, "3948", null, "258242", null, "3348", null, "1946", null, "732", null, "4707", null, "828", null, "4662", null, "734", null, "-999999999", "N", "-999999999", "N", "4772", null, "946", null, "10197", null, "1830", null, "11423", null, "1329", null, "255805", null, "3262", null, "83142", null, "2163", null, "184878", null, "4615", null, "33625", null, "2001", null, "46486", null, "2817", null, "104767", null, "3364", null, "90.5", null, "0.8", null, "44.2", null, "0.9", null, "55.8", null, "0.9", null, "53.3", null, "1.5", null, "11.7", null, "1.0", null, "5.2", null, "0.8", null, "6.5", null, "0.6", null, "35.0", null, "1.4", null, "25.5", null, "1.0", null, "18.3", null, "1.0", null, "6.8", null, "0.8", null, "3.4", null, "0.7", null, "3.4", null, "0.6", null, "0.5", null, "0.3", null, "74.5", null, "1.0", null, "35.1", null, "1.1", null, "4.9", null, "0.6", null, "1.8", null, "0.4", null, "3.1", null, "0.5", null, "34.6", null, "1.4", null, "6.3", null, "0.7", null, "93.7", null, "0.7", null, "21.8", null, "1.0", null, "78.2", null, "1.0", null, "90.8", null, "0.8", null, "0.7", null, "0.3", null, "1.7", null, "0.3", null, "1.6", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "1.7", null, "0.3", null, "3.6", null, "0.6", null, "4.0", null, "0.5", null, "89.9", null, "0.7", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.2", null, "1.0", null, "25.1", null, "1.3", null, "56.7", null, "1.3", null, "55", "08"], ["5001900US5600", "Congressional District (at Large) (119th Congress), Wyoming", "256289", null, "2645", null, "109204", null, "2859", null, "147085", null, "3657", null, "127893", null, "4719", null, "32230", null, "2631", null, "9910", null, "1575", null, "22320", null, "2037", null, "96166", null, "4034", null, "69290", null, "3495", null, "47967", null, "2966", null, "21131", null, "2343", null, "6148", null, "1275", null, "14983", null, "2000", null, "192", null, "172", null, "186999", null, "3784", null, "79926", null, "3873", null, "11099", null, "1282", null, "3762", null, "1040", null, "7337", null, "1045", null, "95974", null, "4029", null, "29029", null, "3371", null, "227260", null, "4142", null, "70626", null, "3580", null, "185663", null, "3947", null, "220294", null, "3572", null, "1719", null, "682", null, "3532", null, "852", null, "2803", null, "888", null, "-999999999", "N", "-999999999", "N", "9092", null, "2068", null, "18243", null, "2190", null, "22236", null, "1912", null, "215632", null, "3370", null, "75532", null, "2468", null, "160123", null, "4510", null, "26406", null, "2264", null, "45587", null, "3089", null, "88130", null, "4004", null, "-888888888", "(X)", "-888888888", "(X)", "42.6", null, "1.1", null, "57.4", null, "1.1", null, "49.9", null, "1.7", null, "12.6", null, "1.0", null, "3.9", null, "0.6", null, "8.7", null, "0.8", null, "37.5", null, "1.6", null, "27.0", null, "1.3", null, "18.7", null, "1.1", null, "8.2", null, "0.9", null, "2.4", null, "0.5", null, "5.8", null, "0.8", null, "0.1", null, "0.1", null, "73.0", null, "1.3", null, "31.2", null, "1.4", null, "4.3", null, "0.5", null, "1.5", null, "0.4", null, "2.9", null, "0.4", null, "37.4", null, "1.6", null, "11.3", null, "1.3", null, "88.7", null, "1.3", null, "27.6", null, "1.4", null, "72.4", null, "1.4", null, "86.0", null, "1.0", null, "0.7", null, "0.3", null, "1.4", null, "0.3", null, "1.1", null, "0.3", null, "-999999999.0", "N", "-999999999.0", "N", "3.5", null, "0.8", null, "7.1", null, "0.8", null, "8.7", null, "0.7", null, "84.1", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.5", null, "1.4", null, "28.5", null, "1.9", null, "55.0", null, "1.7", null, "14323", null, "2039", null, "4222", null, "1235", null, "10101", null, "1645", null, "2250", null, "822", null, "7227", null, "1619", null, "878", null, "461", null, "6349", null, "1608", null, "4846", null, "1341", null, "8019", null, "1588", null, "1909", null, "761", null, "6093", null, "1472", null, "552", null, "375", null, "5541", null, "1478", null, "17", null, "35", null, "6304", null, "1418", null, "341", null, "291", null, "1134", null, "564", null, "326", null, "282", null, "808", null, "491", null, "4829", null, "1342", null, "6609", null, "1739", null, "7714", null, "1693", null, "7495", null, "1478", null, "6828", null, "1456", null, "12181", null, "2145", null, "116", null, "156", null, "767", null, "327", null, "0", null, "213", null, "-999999999", "N", "-999999999", "N", "462", null, "316", null, "797", null, "414", null, "1510", null, "662", null, "11417", null, "2015", null, "27212", null, "3023", null, "9477", null, "1700", null, "1713", null, "813", null, "5202", null, "1485", null, "2562", null, "880", null, "5.6", null, "0.8", null, "29.5", null, "7.0", null, "70.5", null, "7.0", null, "15.7", null, "5.7", null, "50.5", null, "8.4", null, "6.1", null, "3.4", null, "44.3", null, "8.6", null, "33.8", null, "7.9", null, "56.0", null, "7.8", null, "13.3", null, "5.2", null, "42.5", null, "8.0", null, "3.9", null, "2.7", null, "38.7", null, "8.2", null, "0.1", null, "0.3", null, "44.0", null, "7.8", null, "2.4", null, "2.1", null, "7.9", null, "3.8", null, "2.3", null, "2.0", null, "5.6", null, "3.3", null, "33.7", null, "7.8", null, "46.1", null, "9.8", null, "53.9", null, "9.8", null, "52.3", null, "7.4", null, "47.7", null, "7.4", null, "85.0", null, "5.3", null, "0.8", null, "1.1", null, "5.4", null, "2.4", null, "0.0", null, "1.3", null, "-999999999.0", "N", "-999999999.0", "N", "3.2", null, "2.3", null, "5.6", null, "2.9", null, "10.5", null, "4.5", null, "79.7", null, "5.9", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "18.1", null, "8.5", null, "54.9", null, "10.6", null, "27.0", null, "8.7", null, "241966", null, "3295", null, "104982", null, "2746", null, "136984", null, "3985", null, "125643", null, "4661", null, "25003", null, "2352", null, "9032", null, "1576", null, "15971", null, "2054", null, "91320", null, "3950", null, "61271", null, "3549", null, "46058", null, "2883", null, "15038", null, "2063", null, "5596", null, "1290", null, "9442", null, "1768", null, "175", null, "166", null, "180695", null, "3960", null, "79585", null, "3844", null, "9965", null, "1268", null, "3436", null, "1020", null, "6529", null, "1021", null, "91145", null, "3956", null, "22420", null, "2704", null, "219546", null, "4496", null, "63131", null, "3533", null, "178835", null, "4084", null, "208113", null, "3875", null, "1603", null, "660", null, "2765", null, "825", null, "2803", null, "888", null, "-999999999", "N", "-999999999", "N", "8630", null, "2008", null, "17446", null, "2133", null, "20726", null, "1809", null, "204215", null, "3709", null, "78977", null, "3141", null, "150646", null, "4413", null, "24693", null, "2026", null, "40385", null, "2944", null, "85568", null, "3885", null, "94.4", null, "0.8", null, "43.4", null, "1.2", null, "56.6", null, "1.2", null, "51.9", null, "1.7", null, "10.3", null, "1.0", null, "3.7", null, "0.7", null, "6.6", null, "0.8", null, "37.7", null, "1.6", null, "25.3", null, "1.4", null, "19.0", null, "1.1", null, "6.2", null, "0.9", null, "2.3", null, "0.5", null, "3.9", null, "0.7", null, "0.1", null, "0.1", null, "74.7", null, "1.4", null, "32.9", null, "1.5", null, "4.1", null, "0.5", null, "1.4", null, "0.4", null, "2.7", null, "0.4", null, "37.7", null, "1.6", null, "9.3", null, "1.1", null, "90.7", null, "1.1", null, "26.1", null, "1.4", null, "73.9", null, "1.4", null, "86.0", null, "1.1", null, "0.7", null, "0.3", null, "1.1", null, "0.3", null, "1.2", null, "0.4", null, "-999999999.0", "N", "-999999999.0", "N", "3.6", null, "0.8", null, "7.2", null, "0.9", null, "8.6", null, "0.7", null, "84.4", null, "1.0", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "16.4", null, "1.3", null, "26.8", null, "1.9", null, "56.8", null, "1.6", null, "56", "00"], ["5001900US7298", "Resident Commissioner District (at Large) (119th Congress), Puerto Rico", "1242609", null, "10856", null, "668321", null, "6950", null, "574288", null, "9406", null, "419876", null, "8970", null, "344610", null, "9770", null, "80068", null, "5029", null, "264542", null, "8301", null, "478123", null, "10310", null, "269468", null, "8520", null, "106325", null, "5537", null, "162755", null, "7681", null, "33959", null, "3686", null, "128796", null, "6595", null, "388", null, "261", null, "973141", null, "11868", null, "313551", null, "7514", null, "181855", null, "7013", null, "46109", null, "4114", null, "135746", null, "5634", null, "477735", null, "10339", null, "499436", null, "11641", null, "743173", null, "13361", null, "492489", null, "10355", null, "750120", null, "12137", null, "275200", null, "7473", null, "69349", null, "5291", null, "4129", null, "1186", null, "2266", null, "788", null, "-999999999", "N", "-999999999", "N", "405385", null, "9552", null, "486083", null, "10837", null, "1227645", null, "10575", null, "9381", null, "1755", null, "27213", null, "751", null, "764486", null, "11451", null, "247471", null, "7395", null, "279541", null, "9269", null, "237474", null, "8120", null, "-888888888", "(X)", "-888888888", "(X)", "53.8", null, "0.5", null, "46.2", null, "0.5", null, "33.8", null, "0.7", null, "27.7", null, "0.7", null, "6.4", null, "0.4", null, "21.3", null, "0.6", null, "38.5", null, "0.8", null, "21.7", null, "0.7", null, "8.6", null, "0.4", null, "13.1", null, "0.6", null, "2.7", null, "0.3", null, "10.4", null, "0.5", null, "0.0", null, "0.1", null, "78.3", null, "0.7", null, "25.2", null, "0.6", null, "14.6", null, "0.5", null, "3.7", null, "0.3", null, "10.9", null, "0.4", null, "38.4", null, "0.8", null, "40.2", null, "0.9", null, "59.8", null, "0.9", null, "39.6", null, "0.8", null, "60.4", null, "0.8", null, "22.1", null, "0.6", null, "5.6", null, "0.4", null, "0.3", null, "0.1", null, "0.2", null, "0.1", null, "-999999999.0", "N", "-999999999.0", "N", "32.6", null, "0.7", null, "39.1", null, "0.8", null, "98.8", null, "0.2", null, "0.8", null, "0.1", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "32.4", null, "0.9", null, "36.6", null, "1.1", null, "31.1", null, "1.0", null, "559700", null, "10128", null, "328406", null, "6819", null, "231294", null, "7941", null, "141380", null, "6379", null, "210835", null, "7653", null, "40566", null, "3448", null, "170269", null, "6540", null, "207485", null, "6433", null, "142245", null, "6993", null, "34907", null, "3819", null, "107080", null, "6350", null, "17992", null, "2774", null, "89088", null, "5351", null, "258", null, "229", null, "417455", null, "9390", null, "106473", null, "5810", null, "103755", null, "5580", null, "22574", null, "2774", null, "81181", null, "4690", null, "207227", null, "6439", null, "368775", null, "9776", null, "190925", null, "7155", null, "269618", null, "8529", null, "290082", null, "9274", null, "122392", null, "5658", null, "31921", null, "3157", null, "1502", null, "713", null, "1028", null, "481", null, "-999999999", "N", "-999999999", "N", "187122", null, "7715", null, "215576", null, "7972", null, "555509", null, "10085", null, "1836", null, "898", null, "15599", null, "535", null, "352215", null, "8775", null, "141451", null, "6192", null, "147459", null, "6983", null, "63305", null, "4346", null, "45.0", null, "0.8", null, "58.7", null, "1.0", null, "41.3", null, "1.0", null, "25.3", null, "1.1", null, "37.7", null, "1.1", null, "7.2", null, "0.6", null, "30.4", null, "1.0", null, "37.1", null, "1.0", null, "25.4", null, "1.1", null, "6.2", null, "0.7", null, "19.1", null, "1.1", null, "3.2", null, "0.5", null, "15.9", null, "0.9", null, "0.0", null, "0.1", null, "74.6", null, "1.1", null, "19.0", null, "1.0", null, "18.5", null, "0.9", null, "4.0", null, "0.5", null, "14.5", null, "0.8", null, "37.0", null, "1.0", null, "65.9", null, "1.2", null, "34.1", null, "1.2", null, "48.2", null, "1.3", null, "51.8", null, "1.3", null, "21.9", null, "0.9", null, "5.7", null, "0.6", null, "0.3", null, "0.1", null, "0.2", null, "0.1", null, "-999999999.0", "N", "-999999999.0", "N", "33.4", null, "1.3", null, "38.5", null, "1.2", null, "99.3", null, "0.2", null, "0.3", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "40.2", null, "1.5", null, "41.9", null, "1.7", null, "18.0", null, "1.1", null, "682909", null, "12357", null, "339915", null, "8348", null, "342994", null, "9244", null, "278496", null, "7715", null, "133775", null, "6190", null, "39502", null, "3684", null, "94273", null, "5519", null, "270638", null, "9449", null, "127223", null, "6029", null, "71418", null, "5090", null, "55675", null, "4675", null, "15967", null, "2366", null, "39708", null, "4043", null, "130", null, "158", null, "555686", null, "11336", null, "207078", null, "6364", null, "78100", null, "4733", null, "23535", null, "2792", null, "54565", null, "4113", null, "270508", null, "9447", null, "130661", null, "5967", null, "552248", null, "12349", null, "222871", null, "7961", null, "460038", null, "11179", null, "152808", null, "5634", null, "37428", null, "3946", null, "2627", null, "916", null, "1238", null, "612", null, "-999999999", "N", "-999999999", "N", "218263", null, "7879", null, "270507", null, "8654", null, "672136", null, "12412", null, "7545", null, "1641", null, "42005", null, "777", null, "412271", null, "9816", null, "106020", null, "5475", null, "132082", null, "6275", null, "174169", null, "7746", null, "55.0", null, "0.8", null, "49.8", null, "0.9", null, "50.2", null, "0.9", null, "40.8", null, "0.9", null, "19.6", null, "0.8", null, "5.8", null, "0.5", null, "13.8", null, "0.8", null, "39.6", null, "1.1", null, "18.6", null, "0.8", null, "10.5", null, "0.7", null, "8.2", null, "0.7", null, "2.3", null, "0.3", null, "5.8", null, "0.6", null, "0.0", null, "0.1", null, "81.4", null, "0.8", null, "30.3", null, "0.9", null, "11.4", null, "0.7", null, "3.4", null, "0.4", null, "8.0", null, "0.6", null, "39.6", null, "1.1", null, "19.1", null, "0.9", null, "80.9", null, "0.9", null, "32.6", null, "1.0", null, "67.4", null, "1.0", null, "22.4", null, "0.8", null, "5.5", null, "0.6", null, "0.4", null, "0.1", null, "0.2", null, "0.1", null, "-999999999.0", "N", "-999999999.0", "N", "32.0", null, "0.9", null, "39.6", null, "1.0", null, "98.4", null, "0.3", null, "1.1", null, "0.2", null, "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "-888888888", "(X)", "25.7", null, "1.2", null, "32.0", null, "1.4", null, "42.2", null, "1.5", null, "72", "98"]] \ No newline at end of file diff --git a/policyengine_us_data/storage/calibration/raw_inputs/census_docs_2024.json b/policyengine_us_data/storage/calibration/raw_inputs/census_docs_2024.json new file mode 100644 index 00000000..c3f2a358 --- /dev/null +++ b/policyengine_us_data/storage/calibration/raw_inputs/census_docs_2024.json @@ -0,0 +1 @@ +{"variables": {"for": {"label": "Census API FIPS 'for' clause", "concept": "Census API Geography Specification", "predicateType": "fips-for", "group": "N/A", "limit": 0, "predicateOnly": true}, "in": {"label": "Census API FIPS 'in' clause", "concept": "Census API Geography Specification", "predicateType": "fips-in", "group": "N/A", "limit": 0, "predicateOnly": true}, "ucgid": {"label": "Uniform Census Geography Identifier clause", "concept": "Census API Geography Specification", "predicateType": "ucgid", "group": "N/A", "limit": 0, "predicateOnly": true, "hasGeoCollectionSupport": true}, "S0804_C04_068E": {"label": "Estimate!!Public transportation!!Workers 16 years and over who did not work from home!!TIME ARRIVING AT WORK!!5:00 a.m. to 5:29 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_068EA,S0804_C04_068M,S0804_C04_068MA"}, "S0503_C02_078E": {"label": "Estimate!!Foreign-born; Born in Europe!!Civilian employed population 16 years and over!!INDUSTRY!!Retail trade", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_078EA,S0503_C02_078M,S0503_C02_078MA"}, "S2603_C07_076E": {"label": "Estimate!!Military quarters/military ships!!WORLD REGION OF BIRTH OF FOREIGN BORN!!Foreign-born population excluding population born at sea", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C07_076EA,S2603_C07_076M,S2603_C07_076MA"}, "S0701PR_C01_028E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "int", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C01_028EA,S0701PR_C01_028M,S0701PR_C01_028MA"}, "S0804_C04_067E": {"label": "Estimate!!Public transportation!!Workers 16 years and over who did not work from home!!TIME ARRIVING AT WORK!!12:00 a.m. to 4:59 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_067EA,S0804_C04_067M,S0804_C04_067MA"}, "S0503_C02_077E": {"label": "Estimate!!Foreign-born; Born in Europe!!Civilian employed population 16 years and over!!INDUSTRY!!Wholesale trade", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_077EA,S0503_C02_077M,S0503_C02_077MA"}, "S2603_C07_075E": {"label": "Estimate!!Military quarters/military ships!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Entered before 2000", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C07_075EA,S2603_C07_075M,S2603_C07_075MA"}, "S0701PR_C01_029E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "int", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C01_029EA,S0701PR_C01_029M,S0701PR_C01_029MA"}, "S2603_C07_078E": {"label": "Estimate!!Military quarters/military ships!!WORLD REGION OF BIRTH OF FOREIGN BORN!!Foreign-born population excluding population born at sea!!Asia", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C07_078EA,S2603_C07_078M,S2603_C07_078MA"}, "S0503_C02_076E": {"label": "Estimate!!Foreign-born; Born in Europe!!Civilian employed population 16 years and over!!INDUSTRY!!Manufacturing", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_076EA,S0503_C02_076M,S0503_C02_076MA"}, "S0506_C01_120E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_120EA,S0506_C01_120M,S0506_C01_120MA"}, "S0804_C04_069E": {"label": "Estimate!!Public transportation!!Workers 16 years and over who did not work from home!!TIME ARRIVING AT WORK!!5:30 a.m. to 5:59 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_069EA,S0804_C04_069M,S0804_C04_069MA"}, "S2603_C07_077E": {"label": "Estimate!!Military quarters/military ships!!WORLD REGION OF BIRTH OF FOREIGN BORN!!Foreign-born population excluding population born at sea!!Europe", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C07_077EA,S2603_C07_077M,S2603_C07_077MA"}, "S0503_C02_075E": {"label": "Estimate!!Foreign-born; Born in Europe!!Civilian employed population 16 years and over!!INDUSTRY!!Construction", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_075EA,S0503_C02_075M,S0503_C02_075MA"}, "S0506_C01_121E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_121EA,S0506_C01_121M,S0506_C01_121MA"}, "S0804_C04_064E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!CLASS OF WORKER!!Self-employed workers in own not incorporated business", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_064EA,S0804_C04_064M,S0804_C04_064MA"}, "S0503_C02_074E": {"label": "Estimate!!Foreign-born; Born in Europe!!Civilian employed population 16 years and over!!INDUSTRY!!Agriculture, forestry, fishing and hunting, and mining", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_074EA,S0503_C02_074M,S0503_C02_074MA"}, "S2101_C06_004E": {"label": "Estimate!!Percent Nonveterans!!Civilian population 18 years and over!!PERIOD OF SERVICE!!Vietnam War veterans", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C06_004EA,S2101_C06_004M,S2101_C06_004MA"}, "S0506_C01_122E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_122EA,S0506_C01_122M,S0506_C01_122MA"}, "S0506_C01_123E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_123EA,S0506_C01_123M,S0506_C01_123MA"}, "S2603_C07_079E": {"label": "Estimate!!Military quarters/military ships!!WORLD REGION OF BIRTH OF FOREIGN BORN!!Foreign-born population excluding population born at sea!!Latin America", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C07_079EA,S2603_C07_079M,S2603_C07_079MA"}, "S0503_C02_073E": {"label": "Estimate!!Foreign-born; Born in Europe!!Civilian employed population 16 years and over!!OCCUPATION!!Production, transportation, and material moving occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_073EA,S0503_C02_073M,S0503_C02_073MA"}, "S2101_C06_003E": {"label": "Estimate!!Percent Nonveterans!!Civilian population 18 years and over!!PERIOD OF SERVICE!!Gulf War (8/1990 to 8/2001) veterans", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C06_003EA,S2101_C06_003M,S2101_C06_003MA"}, "S0804_C04_063E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!CLASS OF WORKER!!Government workers", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_063EA,S0804_C04_063M,S0804_C04_063MA"}, "S0506_C01_124E": {"label": "Estimate!!Total!!Occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C01_124EA,S0506_C01_124M,S0506_C01_124MA"}, "S0804_C04_066E": {"label": "Estimate!!Public transportation!!Workers 16 years and over who did not work from home", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "int", "group": "S0804", "limit": 0, "attributes": "S0804_C04_066EA,S0804_C04_066M,S0804_C04_066MA"}, "S2101_C06_002E": {"label": "Estimate!!Percent Nonveterans!!Civilian population 18 years and over!!PERIOD OF SERVICE!!Gulf War (9/2001 or later) veterans", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C06_002EA,S2101_C06_002M,S2101_C06_002MA"}, "S0503_C02_072E": {"label": "Estimate!!Foreign-born; Born in Europe!!Civilian employed population 16 years and over!!OCCUPATION!!Natural resources, construction, and maintenance occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_072EA,S0503_C02_072M,S0503_C02_072MA"}, "S0804_C04_065E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!CLASS OF WORKER!!Unpaid family workers", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_065EA,S0804_C04_065M,S0804_C04_065MA"}, "S0506_C01_125E": {"label": "Estimate!!Total!!Occupied housing units!!HOUSING TENURE!!Owner-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_125EA,S0506_C01_125M,S0506_C01_125MA"}, "S1902_C02_028E": {"label": "Estimate!!Percent Distribution!!PER CAPITA INCOME BY RACE AND HISPANIC OR LATINO ORIGIN!!Total population!!White alone, not Hispanic or Latino", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1902", "limit": 0, "attributes": "S1902_C02_028EA,S1902_C02_028M,S1902_C02_028MA"}, "S2101_C06_001E": {"label": "Estimate!!Percent Nonveterans!!Civilian population 18 years and over", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C06_001EA,S2101_C06_001M,S2101_C06_001MA"}, "S0503_C02_071E": {"label": "Estimate!!Foreign-born; Born in Europe!!Civilian employed population 16 years and over!!OCCUPATION!!Sales and office occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_071EA,S0503_C02_071M,S0503_C02_071MA"}, "S0102_C02_046E": {"label": "Estimate!!60 years and over!!RESIDENCE 1 YEAR AGO!!Population 1 year and over", "concept": "Population 60 Years and Over in the United States", "predicateType": "int", "group": "S0102", "limit": 0, "attributes": "S0102_C02_046EA,S0102_C02_046M,S0102_C02_046MA"}, "S2101_C06_008E": {"label": "Estimate!!Percent Nonveterans!!Civilian population 18 years and over!!SEX!!Female", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C06_008EA,S2101_C06_008M,S2101_C06_008MA"}, "S0503_C02_070E": {"label": "Estimate!!Foreign-born; Born in Europe!!Civilian employed population 16 years and over!!OCCUPATION!!Service occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_070EA,S0503_C02_070M,S0503_C02_070MA"}, "S0102_C02_047E": {"label": "Estimate!!60 years and over!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Same house", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_047EA,S0102_C02_047M,S0102_C02_047MA"}, "S2602_C04_079E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C04_079EA,S2602_C04_079M,S2602_C04_079MA"}, "S2101_C06_007E": {"label": "Estimate!!Percent Nonveterans!!Civilian population 18 years and over!!SEX!!Male", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C06_007EA,S2101_C06_007M,S2101_C06_007MA"}, "S0102_C02_044E": {"label": "Estimate!!60 years and over!!DISABILITY STATUS!!Civilian noninstitutionalized population!!With any disability", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_044EA,S0102_C02_044M,S0102_C02_044MA"}, "S2603_C07_070E": {"label": "Estimate!!Military quarters/military ships!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Not a U.S. citizen", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C07_070EA,S2603_C07_070M,S2603_C07_070MA"}, "S2101_C06_006E": {"label": "Estimate!!Percent Nonveterans!!Civilian population 18 years and over!!PERIOD OF SERVICE!!World War II veterans", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C06_006EA,S2101_C06_006M,S2101_C06_006MA"}, "S1811_C02_018E": {"label": "Estimate!!With a Disability!!Employed Population Age 16 and Over!!OCCUPATION!!Production, transportation, and material moving occupations", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C02_018EA,S1811_C02_018M,S1811_C02_018MA"}, "S0102_C02_045E": {"label": "Estimate!!60 years and over!!DISABILITY STATUS!!Civilian noninstitutionalized population!!No disability", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_045EA,S0102_C02_045M,S0102_C02_045MA"}, "S2101_C06_005E": {"label": "Estimate!!Percent Nonveterans!!Civilian population 18 years and over!!PERIOD OF SERVICE!!Korean War veterans", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C06_005EA,S2101_C06_005M,S2101_C06_005MA"}, "S1811_C02_019E": {"label": "Estimate!!With a Disability!!Employed Population Age 16 and Over!!INDUSTRY!!Agriculture, forestry, fishing and hunting, and mining", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C02_019EA,S1811_C02_019M,S1811_C02_019MA"}, "S1201_C03_004E": {"label": "Estimate!!Widowed!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over!!20 to 34 years", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C03_004EA,S1201_C03_004M,S1201_C03_004MA"}, "S2602_C04_076E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English!!Speak English less than \"very well\"", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C04_076EA,S2602_C04_076M,S2602_C04_076MA"}, "S0102_C02_042E": {"label": "Estimate!!60 years and over!!VETERAN STATUS!!Civilian population 18 years and over!!Civilian veteran", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_042EA,S0102_C02_042M,S0102_C02_042MA"}, "S2603_C07_072E": {"label": "Estimate!!Military quarters/military ships!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Not a U.S. citizen!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C07_072EA,S2603_C07_072M,S2603_C07_072MA"}, "S0102PR_C02_012E": {"label": "Estimate!!60 years and over!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_012EA,S0102PR_C02_012M,S0102PR_C02_012MA"}, "S2801_C02_031E": {"label": "Estimate!!Percent!!Total households!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$75,000 or more:!!Without an Internet subscription", "concept": "Types of Computers and Internet Subscriptions", "predicateType": "float", "group": "S2801", "limit": 0, "attributes": "S2801_C02_031EA,S2801_C02_031M,S2801_C02_031MA"}, "S1811_C02_016E": {"label": "Estimate!!With a Disability!!Employed Population Age 16 and Over!!OCCUPATION!!Sales and office occupations", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C02_016EA,S1811_C02_016M,S1811_C02_016MA"}, "S1201_C03_003E": {"label": "Estimate!!Widowed!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over!!15 to 19 years", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C03_003EA,S1201_C03_003M,S1201_C03_003MA"}, "S2602_C04_075E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C04_075EA,S2602_C04_075M,S2602_C04_075MA"}, "S0102_C02_043E": {"label": "Estimate!!60 years and over!!DISABILITY STATUS!!Civilian noninstitutionalized population", "concept": "Population 60 Years and Over in the United States", "predicateType": "int", "group": "S0102", "limit": 0, "attributes": "S0102_C02_043EA,S0102_C02_043M,S0102_C02_043MA"}, "S0102PR_C02_013E": {"label": "Estimate!!60 years and over!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_013EA,S0102PR_C02_013M,S0102PR_C02_013MA"}, "S2603_C07_071E": {"label": "Estimate!!Military quarters/military ships!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Not a U.S. citizen!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C07_071EA,S2603_C07_071M,S2603_C07_071MA"}, "S2801_C02_030E": {"label": "Estimate!!Percent!!Total households!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$75,000 or more:!!With a broadband Internet subscription", "concept": "Types of Computers and Internet Subscriptions", "predicateType": "float", "group": "S2801", "limit": 0, "attributes": "S2801_C02_030EA,S2801_C02_030M,S2801_C02_030MA"}, "S1811_C02_017E": {"label": "Estimate!!With a Disability!!Employed Population Age 16 and Over!!OCCUPATION!!Natural resources, construction, and maintenance occupations", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C02_017EA,S1811_C02_017M,S1811_C02_017MA"}, "S1201_C03_002E": {"label": "Estimate!!Widowed!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C03_002EA,S1201_C03_002M,S1201_C03_002MA"}, "S1811_C02_014E": {"label": "Estimate!!With a Disability!!Employed Population Age 16 and Over!!OCCUPATION!!Management, business, science, and arts occupations", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C02_014EA,S1811_C02_014M,S1811_C02_014MA"}, "S0102_C02_040E": {"label": "Estimate!!60 years and over!!RESPONSIBILITY FOR GRANDCHILDREN UNDER 18 YEARS!!Population 30 years and over!!Living with grandchild(ren)!!Responsible for grandchild(ren)", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_040EA,S0102_C02_040M,S0102_C02_040MA"}, "S2602_C04_078E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C04_078EA,S2602_C04_078M,S2602_C04_078MA"}, "S0102PR_C02_010E": {"label": "Estimate!!60 years and over!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_010EA,S0102PR_C02_010M,S0102PR_C02_010MA"}, "S2603_C07_074E": {"label": "Estimate!!Military quarters/military ships!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Entered 2000 to 2009", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C07_074EA,S2603_C07_074M,S2603_C07_074MA"}, "S1811_C02_015E": {"label": "Estimate!!With a Disability!!Employed Population Age 16 and Over!!OCCUPATION!!Service occupations", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C02_015EA,S1811_C02_015M,S1811_C02_015MA"}, "S1201_C03_001E": {"label": "Estimate!!Widowed!!Population 15 years and over", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C03_001EA,S1201_C03_001M,S1201_C03_001MA"}, "S2101_C06_009E": {"label": "Estimate!!Percent Nonveterans!!Civilian population 18 years and over!!AGE!!18 to 34 years", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C06_009EA,S2101_C06_009M,S2101_C06_009MA"}, "S0102_C02_041E": {"label": "Estimate!!60 years and over!!VETERAN STATUS!!Civilian population 18 years and over", "concept": "Population 60 Years and Over in the United States", "predicateType": "int", "group": "S0102", "limit": 0, "attributes": "S0102_C02_041EA,S0102_C02_041M,S0102_C02_041MA"}, "S2602_C04_077E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!EMPLOYMENT STATUS!!Population 16 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C04_077EA,S2602_C04_077M,S2602_C04_077MA"}, "S0102PR_C02_011E": {"label": "Estimate!!60 years and over!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_011EA,S0102PR_C02_011M,S0102PR_C02_011MA"}, "S2603_C07_073E": {"label": "Estimate!!Military quarters/military ships!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Entered 2010 or later", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C07_073EA,S2603_C07_073M,S2603_C07_073MA"}, "S1811_C02_024E": {"label": "Estimate!!With a Disability!!Employed Population Age 16 and Over!!INDUSTRY!!Transportation and warehousing, and utilities", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C02_024EA,S1811_C02_024M,S1811_C02_024MA"}, "S1201_C03_008E": {"label": "Estimate!!Widowed!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over!!65 years and over", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C03_008EA,S1201_C03_008M,S1201_C03_008MA"}, "S2602_C04_072E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Not a U.S. citizen!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C04_072EA,S2602_C04_072M,S2602_C04_072MA"}, "S0102PR_C02_004E": {"label": "Estimate!!60 years and over!!Total population!!SEX AND AGE!!Median age (years)", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_004EA,S0102PR_C02_004M,S0102PR_C02_004MA"}, "S2704_C01_024E": {"label": "Estimate!!Total!!PUBLIC HEALTH INSURANCE ALONE OR IN COMBINATION!!65 to 74 years", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2704", "limit": 0, "attributes": "S2704_C01_024EA,S2704_C01_024M,S2704_C01_024MA"}, "S2501_C03_036E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!FAMILY TYPE AND PRESENCE OF OWN CHILDREN!!With related children of householder under 18 years!!With own children of householder under 18 years!!6 to 17 years only", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C03_036EA,S2501_C03_036M,S2501_C03_036MA"}, "S1811_C02_025E": {"label": "Estimate!!With a Disability!!Employed Population Age 16 and Over!!INDUSTRY!!Information", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C02_025EA,S1811_C02_025M,S1811_C02_025MA"}, "S1201_C03_007E": {"label": "Estimate!!Widowed!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over!!55 to 64 years", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C03_007EA,S1201_C03_007M,S1201_C03_007MA"}, "S2602_C04_071E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Not a U.S. citizen!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C04_071EA,S2602_C04_071M,S2602_C04_071MA"}, "S2704_C01_023E": {"label": "Estimate!!Total!!PUBLIC HEALTH INSURANCE ALONE OR IN COMBINATION!!55 to 64 years", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2704", "limit": 0, "attributes": "S2704_C01_023EA,S2704_C01_023M,S2704_C01_023MA"}, "S0102PR_C02_005E": {"label": "Estimate!!60 years and over!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_005EA,S0102PR_C02_005M,S0102PR_C02_005MA"}, "S2702PR_C02_105E": {"label": "Estimate!!Total Uninsured!!RATIO OF INCOME TO POVERTY LEVEL IN THE PAST 12 MONTHS!!Civilian noninstitutionalized population for whom poverty status is determined!!At or above 300 percent of the poverty level", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_105EA,S2702PR_C02_105M,S2702PR_C02_105MA"}, "S2501_C03_037E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!FAMILY TYPE AND PRESENCE OF OWN CHILDREN!!With related children of householder under 18 years!!No own children of householder under 18 years", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C03_037EA,S2501_C03_037M,S2501_C03_037MA"}, "S1811_C02_022E": {"label": "Estimate!!With a Disability!!Employed Population Age 16 and Over!!INDUSTRY!!Wholesale trade", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C02_022EA,S1811_C02_022M,S1811_C02_022MA"}, "S1201_C03_006E": {"label": "Estimate!!Widowed!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over!!45 to 54 years", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C03_006EA,S1201_C03_006M,S1201_C03_006MA"}, "S2602_C04_074E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!English only", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C04_074EA,S2602_C04_074M,S2602_C04_074MA"}, "S0102PR_C02_002E": {"label": "Estimate!!60 years and over!!Total population!!SEX AND AGE!!Male", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_002EA,S0102PR_C02_002M,S0102PR_C02_002MA"}, "S2704_C01_022E": {"label": "Estimate!!Total!!PUBLIC HEALTH INSURANCE ALONE OR IN COMBINATION!!45 to 54 years", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2704", "limit": 0, "attributes": "S2704_C01_022EA,S2704_C01_022M,S2704_C01_022MA"}, "S2501_C03_038E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!FAMILY TYPE AND PRESENCE OF OWN CHILDREN!!No related children of householder under 18 years", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C03_038EA,S2501_C03_038M,S2501_C03_038MA"}, "S1811_C02_023E": {"label": "Estimate!!With a Disability!!Employed Population Age 16 and Over!!INDUSTRY!!Retail trade", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C02_023EA,S1811_C02_023M,S1811_C02_023MA"}, "S1201_C03_005E": {"label": "Estimate!!Widowed!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over!!35 to 44 years", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C03_005EA,S1201_C03_005M,S1201_C03_005MA"}, "S2602_C04_073E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C04_073EA,S2602_C04_073M,S2602_C04_073MA"}, "S2704_C01_021E": {"label": "Estimate!!Total!!PUBLIC HEALTH INSURANCE ALONE OR IN COMBINATION!!35 to 44 years", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2704", "limit": 0, "attributes": "S2704_C01_021EA,S2704_C01_021M,S2704_C01_021MA"}, "S0102PR_C02_003E": {"label": "Estimate!!60 years and over!!Total population!!SEX AND AGE!!Female", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_003EA,S0102PR_C02_003M,S0102PR_C02_003MA"}, "S1811_C02_020E": {"label": "Estimate!!With a Disability!!Employed Population Age 16 and Over!!INDUSTRY!!Construction", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C02_020EA,S1811_C02_020M,S1811_C02_020MA"}, "S0102PR_C02_008E": {"label": "Estimate!!60 years and over!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_008EA,S0102PR_C02_008M,S0102PR_C02_008MA"}, "S2704_C01_020E": {"label": "Estimate!!Total!!PUBLIC HEALTH INSURANCE ALONE OR IN COMBINATION!!26 to 34 years", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2704", "limit": 0, "attributes": "S2704_C01_020EA,S2704_C01_020M,S2704_C01_020MA"}, "S1811_C02_021E": {"label": "Estimate!!With a Disability!!Employed Population Age 16 and Over!!INDUSTRY!!Manufacturing", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C02_021EA,S1811_C02_021M,S1811_C02_021MA"}, "S0102PR_C02_009E": {"label": "Estimate!!60 years and over!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_009EA,S0102PR_C02_009M,S0102PR_C02_009MA"}, "S0102_C02_048E": {"label": "Estimate!!60 years and over!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different house in the United States", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_048EA,S0102_C02_048M,S0102_C02_048MA"}, "S2602_C04_070E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Not a U.S. citizen", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C04_070EA,S2602_C04_070M,S2602_C04_070MA"}, "S0701PR_C01_030E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "int", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C01_030EA,S0701PR_C01_030M,S0701PR_C01_030MA"}, "S0102PR_C02_006E": {"label": "Estimate!!60 years and over!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_006EA,S0102PR_C02_006M,S0102PR_C02_006MA"}, "S0102_C02_049E": {"label": "Estimate!!60 years and over!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different house in the United States!!Same county", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_049EA,S0102_C02_049M,S0102_C02_049MA"}, "S0701PR_C01_031E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over!!Divorced or separated", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "int", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C01_031EA,S0701PR_C01_031M,S0701PR_C01_031MA"}, "S0102PR_C02_007E": {"label": "Estimate!!60 years and over!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_007EA,S0102PR_C02_007M,S0102PR_C02_007MA"}, "S1201_C03_009E": {"label": "Estimate!!Widowed!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C03_009EA,S1201_C03_009M,S1201_C03_009MA"}, "S0701PR_C01_032E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "int", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C01_032EA,S0701PR_C01_032M,S0701PR_C01_032MA"}, "S0506_C01_114E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!At or above 200 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_114EA,S0506_C01_114M,S0506_C01_114MA"}, "S0804_C04_060E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!INDUSTRY!!Public administration", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_060EA,S0804_C04_060M,S0804_C04_060MA"}, "S0701PR_C01_033E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "int", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C01_033EA,S0701PR_C01_033M,S0701PR_C01_033MA"}, "S0506_C01_115E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_115EA,S0506_C01_115M,S0506_C01_115MA"}, "S2702PR_C02_100E": {"label": "Estimate!!Total Uninsured!!RATIO OF INCOME TO POVERTY LEVEL IN THE PAST 12 MONTHS!!Civilian noninstitutionalized population for whom poverty status is determined!!Below 50 percent of the poverty level", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_100EA,S2702PR_C02_100M,S2702PR_C02_100MA"}, "S0701PR_C01_034E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than high school graduate", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "int", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C01_034EA,S0701PR_C01_034M,S0701PR_C01_034MA"}, "S2801_C02_029E": {"label": "Estimate!!Percent!!Total households!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$75,000 or more:!!With dial-up Internet subscription alone", "concept": "Types of Computers and Internet Subscriptions", "predicateType": "float", "group": "S2801", "limit": 0, "attributes": "S2801_C02_029EA,S2801_C02_029M,S2801_C02_029MA"}, "S0506_C01_116E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_116EA,S0506_C01_116M,S0506_C01_116MA"}, "S0804_C04_062E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!CLASS OF WORKER!!Private wage and salary workers", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_062EA,S0804_C04_062M,S0804_C04_062MA"}, "S2801_C02_028E": {"label": "Estimate!!Percent!!Total households!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$75,000 or more:", "concept": "Types of Computers and Internet Subscriptions", "predicateType": "int", "group": "S2801", "limit": 0, "attributes": "S2801_C02_028EA,S2801_C02_028M,S2801_C02_028MA"}, "S0701PR_C01_035E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate (includes equivalency)", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "int", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C01_035EA,S0701PR_C01_035M,S0701PR_C01_035MA"}, "S0506_C01_117E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_117EA,S0506_C01_117M,S0506_C01_117MA"}, "S2704_C01_029E": {"label": "Estimate!!Total!!COVERAGE ALONE!!Public health insurance alone!!VA health care coverage alone", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2704", "limit": 0, "attributes": "S2704_C01_029EA,S2704_C01_029M,S2704_C01_029MA"}, "S0804_C04_061E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!INDUSTRY!!Armed forces", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_061EA,S0804_C04_061M,S0804_C04_061MA"}, "S0506_C01_118E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_118EA,S0506_C01_118M,S0506_C01_118MA"}, "S2704_C01_028E": {"label": "Estimate!!Total!!COVERAGE ALONE!!Public health insurance alone!!Medicaid/means tested coverage alone", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2704", "limit": 0, "attributes": "S2704_C01_028EA,S2704_C01_028M,S2704_C01_028MA"}, "S0701PR_C01_036E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college or associate's degree", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "int", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C01_036EA,S0701PR_C01_036M,S0701PR_C01_036MA"}, "S2702PR_C02_102E": {"label": "Estimate!!Total Uninsured!!RATIO OF INCOME TO POVERTY LEVEL IN THE PAST 12 MONTHS!!Civilian noninstitutionalized population for whom poverty status is determined!!100 to 149 percent of the poverty level", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_102EA,S2702PR_C02_102M,S2702PR_C02_102MA"}, "S2702PR_C02_101E": {"label": "Estimate!!Total Uninsured!!RATIO OF INCOME TO POVERTY LEVEL IN THE PAST 12 MONTHS!!Civilian noninstitutionalized population for whom poverty status is determined!!50 to 99 percent of the poverty level", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_101EA,S2702PR_C02_101M,S2702PR_C02_101MA"}, "S0506_C01_119E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_119EA,S0506_C01_119M,S0506_C01_119MA"}, "S2704_C01_027E": {"label": "Estimate!!Total!!COVERAGE ALONE!!Public health insurance alone!!Medicare coverage alone", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2704", "limit": 0, "attributes": "S2704_C01_027EA,S2704_C01_027M,S2704_C01_027MA"}, "S0503_C02_069E": {"label": "Estimate!!Foreign-born; Born in Europe!!Civilian employed population 16 years and over!!OCCUPATION!!Management, business, science, and arts occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_069EA,S0503_C02_069M,S0503_C02_069MA"}, "S0701PR_C01_037E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "int", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C01_037EA,S0701PR_C01_037M,S0701PR_C01_037MA"}, "S2704_C01_026E": {"label": "Estimate!!Total!!COVERAGE ALONE!!Public health insurance alone", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2704", "limit": 0, "attributes": "S2704_C01_026EA,S2704_C01_026M,S2704_C01_026MA"}, "S0503_C02_068E": {"label": "Estimate!!Foreign-born; Born in Europe!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Unpaid family workers", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_068EA,S0503_C02_068M,S0503_C02_068MA"}, "S2702PR_C02_104E": {"label": "Estimate!!Total Uninsured!!RATIO OF INCOME TO POVERTY LEVEL IN THE PAST 12 MONTHS!!Civilian noninstitutionalized population for whom poverty status is determined!!200 to 299 percent of the poverty level", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_104EA,S2702PR_C02_104M,S2702PR_C02_104MA"}, "S0701PR_C01_038E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Graduate or professional degree", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "int", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C01_038EA,S0701PR_C01_038M,S0701PR_C01_038MA"}, "S2704_C01_025E": {"label": "Estimate!!Total!!PUBLIC HEALTH INSURANCE ALONE OR IN COMBINATION!!75 years and over", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2704", "limit": 0, "attributes": "S2704_C01_025EA,S2704_C01_025M,S2704_C01_025MA"}, "S0503_C02_067E": {"label": "Estimate!!Foreign-born; Born in Europe!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Self-employed workers in own not incorporated business", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_067EA,S0503_C02_067M,S0503_C02_067MA"}, "S2702PR_C02_103E": {"label": "Estimate!!Total Uninsured!!RATIO OF INCOME TO POVERTY LEVEL IN THE PAST 12 MONTHS!!Civilian noninstitutionalized population for whom poverty status is determined!!150 to 199 percent of the poverty level", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_103EA,S2702PR_C02_103M,S2702PR_C02_103MA"}, "S0701PR_C01_039E": {"label": "Estimate!!Total!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "int", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C01_039EA,S0701PR_C01_039M,S0701PR_C01_039MA"}, "S2603_C07_088E": {"label": "Estimate!!Military quarters/military ships!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Employed", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C07_088EA,S2603_C07_088M,S2603_C07_088MA"}, "S0102_C02_050E": {"label": "Estimate!!60 years and over!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different house in the United States!!Different county", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_050EA,S0102_C02_050M,S0102_C02_050MA"}, "S2101_C06_012E": {"label": "Estimate!!Percent Nonveterans!!Civilian population 18 years and over!!AGE!!65 to 74 years", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C06_012EA,S2101_C06_012M,S2101_C06_012MA"}, "S2404_C02_025E": {"label": "Estimate!!Male!!Full-time, year-round civilian employed population 16 years and over!!Arts, entertainment, and recreation, and accommodation and food services:!!Accommodation and food services", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C02_025EA,S2404_C02_025M,S2404_C02_025MA"}, "S1501_C02_007E": {"label": "Estimate!!Percent!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than 9th grade", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C02_007EA,S1501_C02_007M,S1501_C02_007MA"}, "S2201_C04_037E": {"label": "Estimate!!Percent households receiving food stamps/SNAP!!WORK STATUS!!Families!!1 worker in past 12 months", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C04_037EA,S2201_C04_037M,S2201_C04_037MA"}, "S2801_C02_023E": {"label": "Estimate!!Percent!!Total households!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Less than $20,000:!!Without an Internet subscription", "concept": "Types of Computers and Internet Subscriptions", "predicateType": "float", "group": "S2801", "limit": 0, "attributes": "S2801_C02_023EA,S2801_C02_023M,S2801_C02_023MA"}, "S0701PR_C01_016E": {"label": "Estimate!!Total!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "int", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C01_016EA,S0701PR_C01_016M,S0701PR_C01_016MA"}, "S0804_C04_079E": {"label": "Estimate!!Public transportation!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!15 to 19 minutes", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_079EA,S0804_C04_079M,S0804_C04_079MA"}, "S0102_C02_051E": {"label": "Estimate!!60 years and over!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different house in the United States!!Different county!!Same state", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_051EA,S0102_C02_051M,S0102_C02_051MA"}, "S2101_C06_011E": {"label": "Estimate!!Percent Nonveterans!!Civilian population 18 years and over!!AGE!!55 to 64 years", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C06_011EA,S2101_C06_011M,S2101_C06_011MA"}, "S0503_C02_089E": {"label": "Estimate!!Foreign-born; Born in Europe!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$10,000 to $14,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_089EA,S0503_C02_089M,S0503_C02_089MA"}, "S2404_C02_026E": {"label": "Estimate!!Male!!Full-time, year-round civilian employed population 16 years and over!!Other services, except public administration", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C02_026EA,S2404_C02_026M,S2404_C02_026MA"}, "S2603_C07_087E": {"label": "Estimate!!Military quarters/military ships!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C07_087EA,S2603_C07_087M,S2603_C07_087MA"}, "S1501_C02_008E": {"label": "Estimate!!Percent!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 years and over!!9th to 12th grade, no diploma", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C02_008EA,S1501_C02_008M,S1501_C02_008MA"}, "S2801_C02_022E": {"label": "Estimate!!Percent!!Total households!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Less than $20,000:!!With a broadband Internet subscription", "concept": "Types of Computers and Internet Subscriptions", "predicateType": "float", "group": "S2801", "limit": 0, "attributes": "S2801_C02_022EA,S2801_C02_022M,S2801_C02_022MA"}, "S2201_C04_036E": {"label": "Estimate!!Percent households receiving food stamps/SNAP!!WORK STATUS!!Families!!No workers in past 12 months", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C04_036EA,S2201_C04_036M,S2201_C04_036MA"}, "S0701PR_C01_017E": {"label": "Estimate!!Total!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "int", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C01_017EA,S0701PR_C01_017M,S0701PR_C01_017MA"}, "S1501_C02_005E": {"label": "Estimate!!Percent!!AGE BY EDUCATIONAL ATTAINMENT!!Population 18 to 24 years!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C02_005EA,S1501_C02_005M,S1501_C02_005MA"}, "S2404_C02_027E": {"label": "Estimate!!Male!!Full-time, year-round civilian employed population 16 years and over!!Public administration", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C02_027EA,S2404_C02_027M,S2404_C02_027MA"}, "S0503_C02_088E": {"label": "Estimate!!Foreign-born; Born in Europe!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$1 to $9,999 or loss", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_088EA,S0503_C02_088M,S0503_C02_088MA"}, "S0701PR_C01_018E": {"label": "Estimate!!Total!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "int", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C01_018EA,S0701PR_C01_018M,S0701PR_C01_018MA"}, "S2801_C02_021E": {"label": "Estimate!!Percent!!Total households!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Less than $20,000:!!With dial-up Internet subscription alone", "concept": "Types of Computers and Internet Subscriptions", "predicateType": "float", "group": "S2801", "limit": 0, "attributes": "S2801_C02_021EA,S2801_C02_021M,S2801_C02_021MA"}, "S2101_C06_010E": {"label": "Estimate!!Percent Nonveterans!!Civilian population 18 years and over!!AGE!!35 to 54 years", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C06_010EA,S2101_C06_010M,S2101_C06_010MA"}, "S1501_C02_006E": {"label": "Estimate!!Percent!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C02_006EA,S1501_C02_006M,S1501_C02_006MA"}, "S2603_C07_089E": {"label": "Estimate!!Military quarters/military ships!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C07_089EA,S2603_C07_089M,S2603_C07_089MA"}, "S0503_C02_087E": {"label": "Estimate!!Foreign-born; Born in Europe!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C02_087EA,S0503_C02_087M,S0503_C02_087MA"}, "S2801_C02_020E": {"label": "Estimate!!Percent!!Total households!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Less than $20,000:", "concept": "Types of Computers and Internet Subscriptions", "predicateType": "int", "group": "S2801", "limit": 0, "attributes": "S2801_C02_020EA,S2801_C02_020M,S2801_C02_020MA"}, "S0701PR_C01_019E": {"label": "Estimate!!Total!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "int", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C01_019EA,S0701PR_C01_019M,S0701PR_C01_019MA"}, "S2201_C04_038E": {"label": "Estimate!!Percent households receiving food stamps/SNAP!!WORK STATUS!!Families!!2 or more workers in past 12 months", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C04_038EA,S2201_C04_038M,S2201_C04_038MA"}, "S0804_C04_076E": {"label": "Estimate!!Public transportation!!Workers 16 years and over who did not work from home!!TIME ARRIVING AT WORK!!9:00 a.m. to 11:59 p.m.", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_076EA,S0804_C04_076M,S0804_C04_076MA"}, "S2801_C02_027E": {"label": "Estimate!!Percent!!Total households!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$20,000 to $74,999:!!Without an Internet subscription", "concept": "Types of Computers and Internet Subscriptions", "predicateType": "float", "group": "S2801", "limit": 0, "attributes": "S2801_C02_027EA,S2801_C02_027M,S2801_C02_027MA"}, "S1501_C02_003E": {"label": "Estimate!!Percent!!AGE BY EDUCATIONAL ATTAINMENT!!Population 18 to 24 years!!High school graduate (includes equivalency)", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C02_003EA,S1501_C02_003M,S1501_C02_003MA"}, "S1902_C02_019E": {"label": "Estimate!!Percent Distribution!!PER CAPITA INCOME BY RACE AND HISPANIC OR LATINO ORIGIN!!Total population", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1902", "limit": 0, "attributes": "S1902_C02_019EA,S1902_C02_019M,S1902_C02_019MA"}, "S2404_C02_021E": {"label": "Estimate!!Male!!Full-time, year-round civilian employed population 16 years and over!!Educational services, and health care and social assistance:!!Educational services", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C02_021EA,S2404_C02_021M,S2404_C02_021MA"}, "S0503_C02_086E": {"label": "Estimate!!Foreign-born; Born in Europe!!Civilian employed population 16 years and over!!INDUSTRY!!Public administration", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_086EA,S0503_C02_086M,S0503_C02_086MA"}, "S2101_C06_016E": {"label": "Estimate!!Percent Nonveterans!!Civilian population 18 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!American Indian and Alaska Native alone", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C06_016EA,S2101_C06_016M,S2101_C06_016MA"}, "S2201_C04_033E": {"label": "Estimate!!Percent households receiving food stamps/SNAP!!Households!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!White alone, not Hispanic or Latino", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C04_033EA,S2201_C04_033M,S2201_C04_033MA"}, "S2701_C04_002E": {"label": "Estimate!!Uninsured!!Civilian noninstitutionalized population!!AGE!!Under 6 years", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C04_002EA,S2701_C04_002M,S2701_C04_002MA"}, "S0506_C01_110E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!Average number of workers per household", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_110EA,S0506_C01_110M,S0506_C01_110MA"}, "S0804_C04_075E": {"label": "Estimate!!Public transportation!!Workers 16 years and over who did not work from home!!TIME ARRIVING AT WORK!!8:30 a.m. to 8:59 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_075EA,S0804_C04_075M,S0804_C04_075MA"}, "S1501_C02_004E": {"label": "Estimate!!Percent!!AGE BY EDUCATIONAL ATTAINMENT!!Population 18 to 24 years!!Some college or associate's degree", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C02_004EA,S1501_C02_004M,S1501_C02_004MA"}, "S1902_C02_018E": {"label": "Estimate!!Percent Distribution!!FAMILY INCOME BY NUMBER OF WORKERS IN FAMILY!!All families!!3 or more workers, other", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1902", "limit": 0, "attributes": "S1902_C02_018EA,S1902_C02_018M,S1902_C02_018MA"}, "S0503_C02_085E": {"label": "Estimate!!Foreign-born; Born in Europe!!Civilian employed population 16 years and over!!INDUSTRY!!Other services (except public administration)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_085EA,S0503_C02_085M,S0503_C02_085MA"}, "S2404_C02_022E": {"label": "Estimate!!Male!!Full-time, year-round civilian employed population 16 years and over!!Educational services, and health care and social assistance:!!Health care and social assistance", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C02_022EA,S2404_C02_022M,S2404_C02_022MA"}, "S2701_C04_001E": {"label": "Estimate!!Uninsured!!Civilian noninstitutionalized population", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C04_001EA,S2701_C04_001M,S2701_C04_001MA"}, "S2101_C06_015E": {"label": "Estimate!!Percent Nonveterans!!Civilian population 18 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Black or African American alone", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C06_015EA,S2101_C06_015M,S2101_C06_015MA"}, "S2201_C04_032E": {"label": "Estimate!!Percent households receiving food stamps/SNAP!!Households!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Hispanic or Latino origin (of any race)", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C04_032EA,S2201_C04_032M,S2201_C04_032MA"}, "S0506_C01_111E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C01_111EA,S0506_C01_111M,S0506_C01_111MA"}, "S2801_C02_026E": {"label": "Estimate!!Percent!!Total households!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$20,000 to $74,999:!!With a broadband Internet subscription", "concept": "Types of Computers and Internet Subscriptions", "predicateType": "float", "group": "S2801", "limit": 0, "attributes": "S2801_C02_026EA,S2801_C02_026M,S2801_C02_026MA"}, "S0506_C01_112E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!Below 100 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_112EA,S0506_C01_112M,S0506_C01_112MA"}, "S0804_C04_078E": {"label": "Estimate!!Public transportation!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!10 to 14 minutes", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_078EA,S0804_C04_078M,S0804_C04_078MA"}, "S1501_C02_001E": {"label": "Estimate!!Percent!!AGE BY EDUCATIONAL ATTAINMENT!!Population 18 to 24 years", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C02_001EA,S1501_C02_001M,S1501_C02_001MA"}, "S2701_C04_004E": {"label": "Estimate!!Uninsured!!Civilian noninstitutionalized population!!AGE!!19 to 25 years", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C04_004EA,S2701_C04_004M,S2701_C04_004MA"}, "S1902_C02_017E": {"label": "Estimate!!Percent Distribution!!FAMILY INCOME BY NUMBER OF WORKERS IN FAMILY!!All families!!3 or more workers, both spouses worked", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1902", "limit": 0, "attributes": "S1902_C02_017EA,S1902_C02_017M,S1902_C02_017MA"}, "S2404_C02_023E": {"label": "Estimate!!Male!!Full-time, year-round civilian employed population 16 years and over!!Arts, entertainment, and recreation, and accommodation and food services:", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C02_023EA,S2404_C02_023M,S2404_C02_023MA"}, "S0503_C02_084E": {"label": "Estimate!!Foreign-born; Born in Europe!!Civilian employed population 16 years and over!!INDUSTRY!!Arts, entertainment, and recreation, and accommodation and food services", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_084EA,S0503_C02_084M,S0503_C02_084MA"}, "S2101_C06_014E": {"label": "Estimate!!Percent Nonveterans!!Civilian population 18 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C06_014EA,S2101_C06_014M,S2101_C06_014MA"}, "S2201_C04_035E": {"label": "Estimate!!Percent households receiving food stamps/SNAP!!WORK STATUS!!Families", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C04_035EA,S2201_C04_035M,S2201_C04_035MA"}, "S2801_C02_025E": {"label": "Estimate!!Percent!!Total households!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$20,000 to $74,999:!!With dial-up Internet subscription alone", "concept": "Types of Computers and Internet Subscriptions", "predicateType": "float", "group": "S2801", "limit": 0, "attributes": "S2801_C02_025EA,S2801_C02_025M,S2801_C02_025MA"}, "S0506_C01_113E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!100 to 199 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_113EA,S0506_C01_113M,S0506_C01_113MA"}, "S1501_C02_002E": {"label": "Estimate!!Percent!!AGE BY EDUCATIONAL ATTAINMENT!!Population 18 to 24 years!!Less than high school graduate", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C02_002EA,S1501_C02_002M,S1501_C02_002MA"}, "S0804_C04_077E": {"label": "Estimate!!Public transportation!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!Less than 10 minutes", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_077EA,S0804_C04_077M,S0804_C04_077MA"}, "S1902_C02_016E": {"label": "Estimate!!Percent Distribution!!FAMILY INCOME BY NUMBER OF WORKERS IN FAMILY!!All families!!2 workers, other", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1902", "limit": 0, "attributes": "S1902_C02_016EA,S1902_C02_016M,S1902_C02_016MA"}, "S2101_C06_013E": {"label": "Estimate!!Percent Nonveterans!!Civilian population 18 years and over!!AGE!!75 years and over", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C06_013EA,S2101_C06_013M,S2101_C06_013MA"}, "S2701_C04_003E": {"label": "Estimate!!Uninsured!!Civilian noninstitutionalized population!!AGE!!6 to 18 years", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C04_003EA,S2701_C04_003M,S2701_C04_003MA"}, "S2404_C02_024E": {"label": "Estimate!!Male!!Full-time, year-round civilian employed population 16 years and over!!Arts, entertainment, and recreation, and accommodation and food services:!!Arts, entertainment, and recreation", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C02_024EA,S2404_C02_024M,S2404_C02_024MA"}, "S2201_C04_034E": {"label": "Estimate!!Percent households receiving food stamps/SNAP!!Households!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Median income (dollars)", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C04_034EA,S2201_C04_034M,S2201_C04_034MA"}, "S2801_C02_024E": {"label": "Estimate!!Percent!!Total households!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$20,000 to $74,999:", "concept": "Types of Computers and Internet Subscriptions", "predicateType": "int", "group": "S2801", "limit": 0, "attributes": "S2801_C02_024EA,S2801_C02_024M,S2801_C02_024MA"}, "S0503_C02_083E": {"label": "Estimate!!Foreign-born; Born in Europe!!Civilian employed population 16 years and over!!INDUSTRY!!Educational services, and health care and social assistance", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_083EA,S0503_C02_083M,S0503_C02_083MA"}, "S0102_C02_058E": {"label": "Estimate!!60 years and over!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Entered 2000 to 2009", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_058EA,S0102_C02_058M,S0102_C02_058MA"}, "S2602_C04_068E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Naturalized U.S. citizen!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C04_068EA,S2602_C04_068M,S2602_C04_068MA"}, "S2603_C07_080E": {"label": "Estimate!!Military quarters/military ships!!WORLD REGION OF BIRTH OF FOREIGN BORN!!Foreign-born population excluding population born at sea!!Other", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C07_080EA,S2603_C07_080M,S2603_C07_080MA"}, "S1811_C02_008E": {"label": "Estimate!!With a Disability!!Employed Population Age 16 and Over!!CLASS OF WORKER!!Private not-for-profit wage and salary workers", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C02_008EA,S1811_C02_008M,S1811_C02_008MA"}, "S0102PR_C02_020E": {"label": "Estimate!!60 years and over!!RELATIONSHIP!!Population in households!!Nonrelatives!!Unmarried partner", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_020EA,S0102PR_C02_020M,S0102PR_C02_020MA"}, "S0503_C02_082E": {"label": "Estimate!!Foreign-born; Born in Europe!!Civilian employed population 16 years and over!!INDUSTRY!!Professional, scientific, and management, and administrative and waste management services", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_082EA,S0503_C02_082M,S0503_C02_082MA"}, "S0102_C02_059E": {"label": "Estimate!!60 years and over!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Entered before 2000", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_059EA,S0102_C02_059M,S0102_C02_059MA"}, "S2101_C06_019E": {"label": "Estimate!!Percent Nonveterans!!Civilian population 18 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Some other race alone", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C06_019EA,S2101_C06_019M,S2101_C06_019MA"}, "S2602_C04_067E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Naturalized U.S. citizen", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C04_067EA,S2602_C04_067M,S2602_C04_067MA"}, "S0102PR_C02_021E": {"label": "Estimate!!60 years and over!!HOUSEHOLDS BY TYPE!!Households", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_021EA,S0102PR_C02_021M,S0102PR_C02_021MA"}, "S1811_C02_009E": {"label": "Estimate!!With a Disability!!Employed Population Age 16 and Over!!CLASS OF WORKER!!Local government workers", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C02_009EA,S1811_C02_009M,S1811_C02_009MA"}, "S0503_C02_081E": {"label": "Estimate!!Foreign-born; Born in Europe!!Civilian employed population 16 years and over!!INDUSTRY!!Finance and insurance, and real estate and rental and leasing", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_081EA,S0503_C02_081M,S0503_C02_081MA"}, "S0102_C02_056E": {"label": "Estimate!!60 years and over!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born", "concept": "Population 60 Years and Over in the United States", "predicateType": "int", "group": "S0102", "limit": 0, "attributes": "S0102_C02_056EA,S0102_C02_056M,S0102_C02_056MA"}, "S2603_C07_082E": {"label": "Estimate!!Military quarters/military ships!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!English only", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C07_082EA,S2603_C07_082M,S2603_C07_082MA"}, "S2101_C06_018E": {"label": "Estimate!!Percent Nonveterans!!Civilian population 18 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Native Hawaiian and Other Pacific Islander alone", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C06_018EA,S2101_C06_018M,S2101_C06_018MA"}, "S0503_C02_080E": {"label": "Estimate!!Foreign-born; Born in Europe!!Civilian employed population 16 years and over!!INDUSTRY!!Information", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_080EA,S0503_C02_080M,S0503_C02_080MA"}, "S1811_C02_006E": {"label": "Estimate!!With a Disability!!Employed Population Age 16 and Over!!CLASS OF WORKER!!Employee of private company workers", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C02_006EA,S1811_C02_006M,S1811_C02_006MA"}, "S0102_C02_057E": {"label": "Estimate!!60 years and over!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Entered 2010 or later", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_057EA,S0102_C02_057M,S0102_C02_057MA"}, "S2602_C04_069E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Naturalized U.S. citizen!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C04_069EA,S2602_C04_069M,S2602_C04_069MA"}, "S2603_C07_081E": {"label": "Estimate!!Military quarters/military ships!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C07_081EA,S2603_C07_081M,S2603_C07_081MA"}, "S2404_C02_020E": {"label": "Estimate!!Male!!Full-time, year-round civilian employed population 16 years and over!!Educational services, and health care and social assistance:", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C02_020EA,S2404_C02_020M,S2404_C02_020MA"}, "S2101_C06_017E": {"label": "Estimate!!Percent Nonveterans!!Civilian population 18 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Asian alone", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C06_017EA,S2101_C06_017M,S2101_C06_017MA"}, "S1811_C02_007E": {"label": "Estimate!!With a Disability!!Employed Population Age 16 and Over!!CLASS OF WORKER!!Self-employed in own incorporated business workers", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C02_007EA,S1811_C02_007M,S1811_C02_007MA"}, "S1811_C02_004E": {"label": "Estimate!!With a Disability!!Employed Population Age 16 and Over", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "int", "group": "S1811", "limit": 0, "attributes": "S1811_C02_004EA,S1811_C02_004M,S1811_C02_004MA"}, "S2602_C04_064E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C04_064EA,S2602_C04_064M,S2602_C04_064MA"}, "S0102_C02_054E": {"label": "Estimate!!60 years and over!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population", "concept": "Population 60 Years and Over in the United States", "predicateType": "int", "group": "S0102", "limit": 0, "attributes": "S0102_C02_054EA,S0102_C02_054M,S0102_C02_054MA"}, "S0102PR_C02_024E": {"label": "Estimate!!60 years and over!!HOUSEHOLDS BY TYPE!!Households!!Family households!!Female householder, no spouse present, family", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_024EA,S0102PR_C02_024M,S0102PR_C02_024MA"}, "S2603_C07_084E": {"label": "Estimate!!Military quarters/military ships!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English!!Speak English less than \"very well\"", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C07_084EA,S2603_C07_084M,S2603_C07_084MA"}, "S2602_C04_063E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Native!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C04_063EA,S2602_C04_063M,S2602_C04_063MA"}, "S0102_C02_055E": {"label": "Estimate!!60 years and over!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Native", "concept": "Population 60 Years and Over in the United States", "predicateType": "int", "group": "S0102", "limit": 0, "attributes": "S0102_C02_055EA,S0102_C02_055M,S0102_C02_055MA"}, "S2603_C07_083E": {"label": "Estimate!!Military quarters/military ships!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C07_083EA,S2603_C07_083M,S2603_C07_083MA"}, "S0102PR_C02_025E": {"label": "Estimate!!60 years and over!!HOUSEHOLDS BY TYPE!!Households!!Nonfamily households", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_025EA,S0102PR_C02_025M,S0102PR_C02_025MA"}, "S1811_C02_005E": {"label": "Estimate!!With a Disability!!Employed Population Age 16 and Over!!CLASS OF WORKER!!Private for-profit wage and salary workers", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C02_005EA,S1811_C02_005M,S1811_C02_005MA"}, "S1811_C02_002E": {"label": "Estimate!!With a Disability!!Population Age 16 and Over!!EMPLOYMENT STATUS!!Employed", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C02_002EA,S1811_C02_002M,S1811_C02_002MA"}, "S0102_C02_052E": {"label": "Estimate!!60 years and over!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different house in the United States!!Different county!!Different state", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_052EA,S0102_C02_052M,S0102_C02_052MA"}, "S2602_C04_066E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C04_066EA,S2602_C04_066M,S2602_C04_066MA"}, "S0102PR_C02_022E": {"label": "Estimate!!60 years and over!!HOUSEHOLDS BY TYPE!!Households!!Family households", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_022EA,S0102PR_C02_022M,S0102PR_C02_022MA"}, "S2603_C07_086E": {"label": "Estimate!!Military quarters/military ships!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C07_086EA,S2603_C07_086M,S2603_C07_086MA"}, "S1811_C02_003E": {"label": "Estimate!!With a Disability!!Population Age 16 and Over!!EMPLOYMENT STATUS!!Not in Labor Force", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C02_003EA,S1811_C02_003M,S1811_C02_003MA"}, "S2602_C04_065E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C04_065EA,S2602_C04_065M,S2602_C04_065MA"}, "S0102_C02_053E": {"label": "Estimate!!60 years and over!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Abroad", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_053EA,S0102_C02_053M,S0102_C02_053MA"}, "S0102PR_C02_023E": {"label": "Estimate!!60 years and over!!HOUSEHOLDS BY TYPE!!Households!!Family households!!Married-couple family", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_023EA,S0102PR_C02_023M,S0102PR_C02_023MA"}, "S2603_C07_085E": {"label": "Estimate!!Military quarters/military ships!!EMPLOYMENT STATUS!!Population 16 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C07_085EA,S2603_C07_085M,S2603_C07_085MA"}, "S1811_C02_012E": {"label": "Estimate!!With a Disability!!Employed Population Age 16 and Over!!CLASS OF WORKER!!Self-employed in own not incorporated business workers", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C02_012EA,S1811_C02_012M,S1811_C02_012MA"}, "S2602_C04_060E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C04_060EA,S2602_C04_060M,S2602_C04_060MA"}, "S0102PR_C02_016E": {"label": "Estimate!!60 years and over!!RELATIONSHIP!!Population in households!!Householder or spouse", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_016EA,S0102PR_C02_016M,S0102PR_C02_016MA"}, "S2405_C05_015E": {"label": "Estimate!!Natural resources, construction, and maintenance occupations!!PERCENT ALLOCATED!!Industry", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2405", "limit": 0, "attributes": "S2405_C05_015EA,S2405_C05_015M,S2405_C05_015MA"}, "S1811_C02_013E": {"label": "Estimate!!With a Disability!!Employed Population Age 16 and Over!!CLASS OF WORKER!!Unpaid family workers", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C02_013EA,S1811_C02_013M,S1811_C02_013MA"}, "S0102PR_C02_017E": {"label": "Estimate!!60 years and over!!RELATIONSHIP!!Population in households!!Parent", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_017EA,S0102PR_C02_017M,S0102PR_C02_017MA"}, "S2405_C05_014E": {"label": "Estimate!!Natural resources, construction, and maintenance occupations!!Civilian employed population 16 years and over!!Public administration", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2405", "limit": 0, "attributes": "S2405_C05_014EA,S2405_C05_014M,S2405_C05_014MA"}, "S1811_C02_010E": {"label": "Estimate!!With a Disability!!Employed Population Age 16 and Over!!CLASS OF WORKER!!State government workers", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C02_010EA,S1811_C02_010M,S1811_C02_010MA"}, "S2602_C04_062E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Native!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C04_062EA,S2602_C04_062M,S2602_C04_062MA"}, "S0102PR_C02_014E": {"label": "Estimate!!60 years and over!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_014EA,S0102PR_C02_014M,S0102PR_C02_014MA"}, "S2405_C05_013E": {"label": "Estimate!!Natural resources, construction, and maintenance occupations!!Civilian employed population 16 years and over!!Other services, except public administration", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2405", "limit": 0, "attributes": "S2405_C05_013EA,S2405_C05_013M,S2405_C05_013MA"}, "S1811_C02_011E": {"label": "Estimate!!With a Disability!!Employed Population Age 16 and Over!!CLASS OF WORKER!!Federal government workers", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C02_011EA,S1811_C02_011M,S1811_C02_011MA"}, "S2602_C04_061E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Native", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C04_061EA,S2602_C04_061M,S2602_C04_061MA"}, "S0102PR_C02_015E": {"label": "Estimate!!60 years and over!!RELATIONSHIP!!Population in households", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_015EA,S0102PR_C02_015M,S0102PR_C02_015MA"}, "S2405_C05_012E": {"label": "Estimate!!Natural resources, construction, and maintenance occupations!!Civilian employed population 16 years and over!!Arts, entertainment, and recreation, and accommodation and food services", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2405", "limit": 0, "attributes": "S2405_C05_012EA,S2405_C05_012M,S2405_C05_012MA"}, "S2405_C05_011E": {"label": "Estimate!!Natural resources, construction, and maintenance occupations!!Civilian employed population 16 years and over!!Educational services, and health care and social assistance", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2405", "limit": 0, "attributes": "S2405_C05_011EA,S2405_C05_011M,S2405_C05_011MA"}, "S0102PR_C02_018E": {"label": "Estimate!!60 years and over!!RELATIONSHIP!!Population in households!!Other relatives", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_018EA,S0102PR_C02_018M,S0102PR_C02_018MA"}, "S2405_C05_010E": {"label": "Estimate!!Natural resources, construction, and maintenance occupations!!Civilian employed population 16 years and over!!Professional, scientific, and management, and administrative and waste management services", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2405", "limit": 0, "attributes": "S2405_C05_010EA,S2405_C05_010M,S2405_C05_010MA"}, "S2603_C07_090E": {"label": "Estimate!!Military quarters/military ships!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed!!Percent of civilian labor force", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C07_090EA,S2603_C07_090M,S2603_C07_090MA"}, "S0102PR_C02_019E": {"label": "Estimate!!60 years and over!!RELATIONSHIP!!Population in households!!Nonrelatives", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_019EA,S0102PR_C02_019M,S0102PR_C02_019MA"}, "S0506_C01_102E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_102EA,S0506_C01_102M,S0506_C01_102MA"}, "S2801_C02_019E": {"label": "Estimate!!Percent!!Total households!!TYPE OF INTERNET SUBSCRIPTIONS!!Without an Internet subscription", "concept": "Types of Computers and Internet Subscriptions", "predicateType": "float", "group": "S2801", "limit": 0, "attributes": "S2801_C02_019EA,S2801_C02_019M,S2801_C02_019MA"}, "S0701PR_C01_020E": {"label": "Estimate!!Total!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "int", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C01_020EA,S0701PR_C01_020M,S0701PR_C01_020MA"}, "S1902_C02_027E": {"label": "Estimate!!Percent Distribution!!PER CAPITA INCOME BY RACE AND HISPANIC OR LATINO ORIGIN!!Total population!!Hispanic or Latino origin (of any race)", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1902", "limit": 0, "attributes": "S1902_C02_027EA,S1902_C02_027M,S1902_C02_027MA"}, "S0804_C04_072E": {"label": "Estimate!!Public transportation!!Workers 16 years and over who did not work from home!!TIME ARRIVING AT WORK!!7:00 a.m. to 7:29 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_072EA,S0804_C04_072M,S0804_C04_072MA"}, "S0701PR_C01_021E": {"label": "Estimate!!Total!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "int", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C01_021EA,S0701PR_C01_021M,S0701PR_C01_021MA"}, "S0506_C01_103E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income!!Mean Supplemental Security Income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C01_103EA,S0506_C01_103M,S0506_C01_103MA"}, "S2801_C02_018E": {"label": "Estimate!!Percent!!Total households!!TYPE OF INTERNET SUBSCRIPTIONS!!With an Internet subscription:!!Broadband of any type!!Satellite Internet service", "concept": "Types of Computers and Internet Subscriptions", "predicateType": "float", "group": "S2801", "limit": 0, "attributes": "S2801_C02_018EA,S2801_C02_018M,S2801_C02_018MA"}, "S1902_C02_026E": {"label": "Estimate!!Percent Distribution!!PER CAPITA INCOME BY RACE AND HISPANIC OR LATINO ORIGIN!!Total population!!Two or more races", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1902", "limit": 0, "attributes": "S1902_C02_026EA,S1902_C02_026M,S1902_C02_026MA"}, "S0804_C04_071E": {"label": "Estimate!!Public transportation!!Workers 16 years and over who did not work from home!!TIME ARRIVING AT WORK!!6:30 a.m. to 6:59 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_071EA,S0804_C04_071M,S0804_C04_071MA"}, "S0701PR_C01_022E": {"label": "Estimate!!Total!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "int", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C01_022EA,S0701PR_C01_022M,S0701PR_C01_022MA"}, "S2801_C02_017E": {"label": "Estimate!!Percent!!Total households!!TYPE OF INTERNET SUBSCRIPTIONS!!With an Internet subscription:!!Broadband of any type!!Broadband such as cable, fiber optic or DSL", "concept": "Types of Computers and Internet Subscriptions", "predicateType": "float", "group": "S2801", "limit": 0, "attributes": "S2801_C02_017EA,S2801_C02_017M,S2801_C02_017MA"}, "S0506_C01_104E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_104EA,S0506_C01_104M,S0506_C01_104MA"}, "S1902_C02_025E": {"label": "Estimate!!Percent Distribution!!PER CAPITA INCOME BY RACE AND HISPANIC OR LATINO ORIGIN!!Total population!!One race--!!Some other race", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1902", "limit": 0, "attributes": "S1902_C02_025EA,S1902_C02_025M,S1902_C02_025MA"}, "S0804_C04_074E": {"label": "Estimate!!Public transportation!!Workers 16 years and over who did not work from home!!TIME ARRIVING AT WORK!!8:00 a.m. to 8:29 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_074EA,S0804_C04_074M,S0804_C04_074MA"}, "S2801_C02_016E": {"label": "Estimate!!Percent!!Total households!!TYPE OF INTERNET SUBSCRIPTIONS!!With an Internet subscription:!!Broadband of any type!!Cellular data plan!!Cellular data plan with no other type of Internet subscription", "concept": "Types of Computers and Internet Subscriptions", "predicateType": "float", "group": "S2801", "limit": 0, "attributes": "S2801_C02_016EA,S2801_C02_016M,S2801_C02_016MA"}, "S0701PR_C01_023E": {"label": "Estimate!!Total!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "int", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C01_023EA,S0701PR_C01_023M,S0701PR_C01_023MA"}, "S0506_C01_105E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income!!Mean cash public assistance income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C01_105EA,S0506_C01_105M,S0506_C01_105MA"}, "S1902_C02_024E": {"label": "Estimate!!Percent Distribution!!PER CAPITA INCOME BY RACE AND HISPANIC OR LATINO ORIGIN!!Total population!!One race--!!Native Hawaiian and Other Pacific Islander", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1902", "limit": 0, "attributes": "S1902_C02_024EA,S1902_C02_024M,S1902_C02_024MA"}, "S0804_C04_073E": {"label": "Estimate!!Public transportation!!Workers 16 years and over who did not work from home!!TIME ARRIVING AT WORK!!7:30 a.m. to 7:59 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_073EA,S0804_C04_073M,S0804_C04_073MA"}, "S0701PR_C01_024E": {"label": "Estimate!!Total!!Population 1 year and over!!NATIVITY AND CITIZENSHIP STATUS!!Native", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "int", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C01_024EA,S0701PR_C01_024M,S0701PR_C01_024MA"}, "S0506_C01_106E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_106EA,S0506_C01_106M,S0506_C01_106MA"}, "S1902_C02_023E": {"label": "Estimate!!Percent Distribution!!PER CAPITA INCOME BY RACE AND HISPANIC OR LATINO ORIGIN!!Total population!!One race--!!Asian", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1902", "limit": 0, "attributes": "S1902_C02_023EA,S1902_C02_023M,S1902_C02_023MA"}, "S2101_C06_020E": {"label": "Estimate!!Percent Nonveterans!!Civilian population 18 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C06_020EA,S2101_C06_020M,S2101_C06_020MA"}, "S0506_C01_107E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income!!Mean retirement income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C01_107EA,S0506_C01_107M,S0506_C01_107MA"}, "S1902_C02_022E": {"label": "Estimate!!Percent Distribution!!PER CAPITA INCOME BY RACE AND HISPANIC OR LATINO ORIGIN!!Total population!!One race--!!American Indian and Alaska Native", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1902", "limit": 0, "attributes": "S1902_C02_022EA,S1902_C02_022M,S1902_C02_022MA"}, "S0701PR_C01_025E": {"label": "Estimate!!Total!!Population 1 year and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "int", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C01_025EA,S0701PR_C01_025M,S0701PR_C01_025MA"}, "S0506_C01_108E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Food Stamp/SNAP benefits", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_108EA,S0506_C01_108M,S0506_C01_108MA"}, "S1902_C02_021E": {"label": "Estimate!!Percent Distribution!!PER CAPITA INCOME BY RACE AND HISPANIC OR LATINO ORIGIN!!Total population!!One race--!!Black or African American", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1902", "limit": 0, "attributes": "S1902_C02_021EA,S1902_C02_021M,S1902_C02_021MA"}, "S0804_C04_070E": {"label": "Estimate!!Public transportation!!Workers 16 years and over who did not work from home!!TIME ARRIVING AT WORK!!6:00 a.m. to 6:29 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_070EA,S0804_C04_070M,S0804_C04_070MA"}, "S1501_C02_009E": {"label": "Estimate!!Percent!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate (includes equivalency)", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C02_009EA,S1501_C02_009M,S1501_C02_009MA"}, "S0701PR_C01_026E": {"label": "Estimate!!Total!!Population 1 year and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born!!Naturalized U.S. citizen", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "int", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C01_026EA,S0701PR_C01_026M,S0701PR_C01_026MA"}, "S0506_C01_109E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!Median Household income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C01_109EA,S0506_C01_109M,S0506_C01_109MA"}, "S1902_C02_020E": {"label": "Estimate!!Percent Distribution!!PER CAPITA INCOME BY RACE AND HISPANIC OR LATINO ORIGIN!!Total population!!One race--!!White", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1902", "limit": 0, "attributes": "S1902_C02_020EA,S1902_C02_020M,S1902_C02_020MA"}, "S0503_C02_079E": {"label": "Estimate!!Foreign-born; Born in Europe!!Civilian employed population 16 years and over!!INDUSTRY!!Transportation and warehousing, and utilities", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_079EA,S0503_C02_079M,S0503_C02_079MA"}, "S0701PR_C01_027E": {"label": "Estimate!!Total!!Population 1 year and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born!!Not a U.S. citizen", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "int", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C01_027EA,S0701PR_C01_027M,S0701PR_C01_027MA"}, "S0902_C01_002E": {"label": "Estimate!!Total!!Population 15 to 19 years!!SCHOOL ENROLLMENT!!Enrolled in school", "concept": "Characteristics of Teenagers 15 to 19 Years Old", "predicateType": "int", "group": "S0902", "limit": 0, "attributes": "S0902_C01_002EA,S0902_C01_002M,S0902_C01_002MA"}, "S0804_C04_044E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!OCCUPATION!!Service occupations", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_044EA,S0804_C04_044M,S0804_C04_044MA"}, "S0505_C01_004E": {"label": "Estimate!!Total!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen!!Entered 2000 to 2009", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_004EA,S0505_C01_004M,S0505_C01_004MA"}, "S0503_C02_054E": {"label": "Estimate!!Foreign-born; Born in Europe!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_054EA,S0503_C02_054M,S0503_C02_054MA"}, "S2701_C04_010E": {"label": "Estimate!!Uninsured!!Civilian noninstitutionalized population!!AGE!!75 years and older", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C04_010EA,S2701_C04_010M,S2701_C04_010MA"}, "S2603_C07_052E": {"label": "Estimate!!Military quarters/military ships!!RESIDENCE 1 YEAR AGO!!Population 1 year and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C07_052EA,S2603_C07_052M,S2603_C07_052MA"}, "S2502_C06_015E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!AGE OF HOUSEHOLDER!!65 to 74 years", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C06_015EA,S2502_C06_015M,S2502_C06_015MA"}, "S1501_C02_019E": {"label": "Estimate!!Percent!!AGE BY EDUCATIONAL ATTAINMENT!!Population 35 to 44 years", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C02_019EA,S1501_C02_019M,S1501_C02_019MA"}, "S2201_C04_025E": {"label": "Estimate!!Percent households receiving food stamps/SNAP!!Households!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!White alone", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C04_025EA,S2201_C04_025M,S2201_C04_025MA"}, "S0506_C01_142E": {"label": "Estimate!!Total!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_142EA,S0506_C01_142M,S0506_C01_142MA"}, "S0804_C04_043E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!OCCUPATION!!Management, business, science, and arts occupations", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_043EA,S0804_C04_043M,S0804_C04_043MA"}, "S0505_C01_005E": {"label": "Estimate!!Total!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen!!Entered before 2000", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_005EA,S0505_C01_005M,S0505_C01_005MA"}, "S0503_C02_053E": {"label": "Estimate!!Foreign-born; Born in Europe!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!English only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_053EA,S0503_C02_053M,S0503_C02_053MA"}, "S2603_C07_051E": {"label": "Estimate!!Military quarters/military ships!!DISABILITY STATUS!!Population 65 years and over!!With a disability", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C07_051EA,S2603_C07_051M,S2603_C07_051MA"}, "S2201_C04_024E": {"label": "Estimate!!Percent households receiving food stamps/SNAP!!Households!!DISABILITY STATUS!!With no persons with a disability", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C04_024EA,S2201_C04_024M,S2201_C04_024MA"}, "S2502_C06_014E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!AGE OF HOUSEHOLDER!!55 to 64 years", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C06_014EA,S2502_C06_014M,S2502_C06_014MA"}, "S0902_C01_001E": {"label": "Estimate!!Total!!Population 15 to 19 years", "concept": "Characteristics of Teenagers 15 to 19 Years Old", "predicateType": "int", "group": "S0902", "limit": 0, "attributes": "S0902_C01_001EA,S0902_C01_001M,S0902_C01_001MA"}, "S0506_C01_143E": {"label": "Estimate!!Total!!Renter-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C01_143EA,S0506_C01_143M,S0506_C01_143MA"}, "S0902_C01_004E": {"label": "Estimate!!Total!!Population 15 to 19 years!!SCHOOL ENROLLMENT!!Enrolled in school!!Private", "concept": "Characteristics of Teenagers 15 to 19 Years Old", "predicateType": "float", "group": "S0902", "limit": 0, "attributes": "S0902_C01_004EA,S0902_C01_004M,S0902_C01_004MA"}, "S0804_C04_046E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!OCCUPATION!!Natural resources, construction, and maintenance occupations", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_046EA,S0804_C04_046M,S0804_C04_046MA"}, "S2502_C06_013E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!AGE OF HOUSEHOLDER!!45 to 54 years", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C06_013EA,S2502_C06_013M,S2502_C06_013MA"}, "S1501_C02_017E": {"label": "Estimate!!Percent!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 to 34 years!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C02_017EA,S1501_C02_017M,S1501_C02_017MA"}, "S0503_C02_052E": {"label": "Estimate!!Foreign-born; Born in Europe!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C02_052EA,S0503_C02_052M,S0503_C02_052MA"}, "S0505_C01_002E": {"label": "Estimate!!Total!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_002EA,S0505_C01_002M,S0505_C01_002MA"}, "S2701_C04_012E": {"label": "Estimate!!Uninsured!!Civilian noninstitutionalized population!!AGE!!19 to 64 years", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C04_012EA,S2701_C04_012M,S2701_C04_012MA"}, "S2603_C07_054E": {"label": "Estimate!!Military quarters/military ships!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the United States", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C07_054EA,S2603_C07_054M,S2603_C07_054MA"}, "S2201_C04_027E": {"label": "Estimate!!Percent households receiving food stamps/SNAP!!Households!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!American Indian and Alaska Native alone", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C04_027EA,S2201_C04_027M,S2201_C04_027MA"}, "S0506_C01_144E": {"label": "Estimate!!Total!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_144EA,S0506_C01_144M,S0506_C01_144MA"}, "S0902_C01_003E": {"label": "Estimate!!Total!!Population 15 to 19 years!!SCHOOL ENROLLMENT!!Enrolled in school!!Public", "concept": "Characteristics of Teenagers 15 to 19 Years Old", "predicateType": "float", "group": "S0902", "limit": 0, "attributes": "S0902_C01_003EA,S0902_C01_003M,S0902_C01_003MA"}, "CD": {"label": "Congressional District", "group": "N/A", "limit": 0}, "S0506_C01_145E": {"label": "Estimate!!Total!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_145EA,S0506_C01_145M,S0506_C01_145MA"}, "S0804_C04_045E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!OCCUPATION!!Sales and office occupations", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_045EA,S0804_C04_045M,S0804_C04_045MA"}, "S2502_C06_012E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!AGE OF HOUSEHOLDER!!35 to 44 years", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C06_012EA,S2502_C06_012M,S2502_C06_012MA"}, "S0505_C01_003E": {"label": "Estimate!!Total!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen!!Entered 2010 or later", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_003EA,S0505_C01_003M,S0505_C01_003MA"}, "S0503_C02_051E": {"label": "Estimate!!Foreign-born; Born in Europe!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Graduate or professional degree", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_051EA,S0503_C02_051M,S0503_C02_051MA"}, "S2701_C04_011E": {"label": "Estimate!!Uninsured!!Civilian noninstitutionalized population!!AGE!!Under 19 years", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C04_011EA,S2701_C04_011M,S2701_C04_011MA"}, "S2603_C07_053E": {"label": "Estimate!!Military quarters/military ships!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Same address", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C07_053EA,S2603_C07_053M,S2603_C07_053MA"}, "S1501_C02_018E": {"label": "Estimate!!Percent!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 to 34 years!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C02_018EA,S1501_C02_018M,S1501_C02_018MA"}, "S2201_C04_026E": {"label": "Estimate!!Percent households receiving food stamps/SNAP!!Households!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Black or African American alone", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C04_026EA,S2201_C04_026M,S2201_C04_026MA"}, "S1501_C02_015E": {"label": "Estimate!!Percent!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C02_015EA,S1501_C02_015M,S1501_C02_015MA"}, "S2603_C07_056E": {"label": "Estimate!!Military quarters/military ships!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the United States!!Different county", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C07_056EA,S2603_C07_056M,S2603_C07_056MA"}, "S2701_C04_014E": {"label": "Estimate!!Uninsured!!Civilian noninstitutionalized population!!SEX!!Male", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C04_014EA,S2701_C04_014M,S2701_C04_014MA"}, "S2201_C04_021E": {"label": "Estimate!!Percent households receiving food stamps/SNAP!!Households!!POVERTY STATUS IN THE PAST 12 MONTHS!!Below poverty level", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C04_021EA,S2201_C04_021M,S2201_C04_021MA"}, "S2502_C06_019E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!EDUCATIONAL ATTAINMENT OF HOUSEHOLDER!!High school graduate (includes equivalency)", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C06_019EA,S2502_C06_019M,S2502_C06_019MA"}, "S0503_C02_050E": {"label": "Estimate!!Foreign-born; Born in Europe!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_050EA,S0503_C02_050M,S0503_C02_050MA"}, "S0804_C04_040E": {"label": "Estimate!!Public transportation!!POVERTY STATUS IN THE PAST 12 MONTHS!!Workers 16 years and over for whom poverty status is determined!!100 to 149 percent of the poverty level", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_040EA,S0804_C04_040M,S0804_C04_040MA"}, "S1501_C02_016E": {"label": "Estimate!!Percent!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 to 34 years", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C02_016EA,S1501_C02_016M,S1501_C02_016MA"}, "S2603_C07_055E": {"label": "Estimate!!Military quarters/military ships!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the United States!!Same county", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C07_055EA,S2603_C07_055M,S2603_C07_055MA"}, "S2602_C04_059E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Abroad", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C04_059EA,S2602_C04_059M,S2602_C04_059MA"}, "S2201_C04_020E": {"label": "Estimate!!Percent households receiving food stamps/SNAP!!Households!!No children under 18 years!!Nonfamily households", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C04_020EA,S2201_C04_020M,S2201_C04_020MA"}, "S0505_C01_001E": {"label": "Estimate!!Total!!Foreign-born population", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C01_001EA,S0505_C01_001M,S0505_C01_001MA"}, "S2701_C04_013E": {"label": "Estimate!!Uninsured!!Civilian noninstitutionalized population!!AGE!!65 years and older", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C04_013EA,S2701_C04_013M,S2701_C04_013MA"}, "S2502_C06_018E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!EDUCATIONAL ATTAINMENT OF HOUSEHOLDER!!Less than high school graduate", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C06_018EA,S2502_C06_018M,S2502_C06_018MA"}, "S0804_C04_042E": {"label": "Estimate!!Public transportation!!Workers 16 years and over", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "int", "group": "S0804", "limit": 0, "attributes": "S0804_C04_042EA,S0804_C04_042M,S0804_C04_042MA"}, "S1501_C02_013E": {"label": "Estimate!!Percent!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Graduate or professional degree", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C02_013EA,S1501_C02_013M,S1501_C02_013MA"}, "S2303_C01_018E": {"label": "Estimate!!Total!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 15 to 34 hours per week!!48 to 49 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C01_018EA,S2303_C01_018M,S2303_C01_018MA"}, "S1603_C06_009E": {"label": "Estimate!!Speak Spanish at home!!Speak a language other than English at home!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population 5 years and over for whom poverty status is determined", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "int", "group": "S1603", "limit": 0, "attributes": "S1603_C06_009EA,S1603_C06_009M,S1603_C06_009MA"}, "S2701_C04_016E": {"label": "Estimate!!Uninsured!!Civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C04_016EA,S2701_C04_016M,S2701_C04_016MA"}, "S2603_C07_058E": {"label": "Estimate!!Military quarters/military ships!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the United States!!Different county!!Different state", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C07_058EA,S2603_C07_058M,S2603_C07_058MA"}, "S2201_C04_023E": {"label": "Estimate!!Percent households receiving food stamps/SNAP!!Households!!DISABILITY STATUS!!With one or more people with a disability", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C04_023EA,S2201_C04_023M,S2201_C04_023MA"}, "S2502_C06_017E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!AGE OF HOUSEHOLDER!!85 years and over", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C06_017EA,S2502_C06_017M,S2502_C06_017MA"}, "S2303_C01_019E": {"label": "Estimate!!Total!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 15 to 34 hours per week!!40 to 47 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C01_019EA,S2303_C01_019M,S2303_C01_019MA"}, "S1501_C02_014E": {"label": "Estimate!!Percent!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C02_014EA,S1501_C02_014M,S1501_C02_014MA"}, "S1603_C06_008E": {"label": "Estimate!!Speak Spanish at home!!Speak a language other than English at home!!Total population 5 years and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born!!Not a U.S. citizen", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "int", "group": "S1603", "limit": 0, "attributes": "S1603_C06_008EA,S1603_C06_008M,S1603_C06_008MA"}, "S2701_C04_015E": {"label": "Estimate!!Uninsured!!Civilian noninstitutionalized population!!SEX!!Female", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C04_015EA,S2701_C04_015M,S2701_C04_015MA"}, "S2603_C07_057E": {"label": "Estimate!!Military quarters/military ships!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the United States!!Different county!!Same state", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C07_057EA,S2603_C07_057M,S2603_C07_057MA"}, "S2704_C01_009E": {"label": "Estimate!!Total!!COVERAGE ALONE OR IN COMBINATION!!Medicaid/means-tested public coverage alone or in combination!!65 years and over", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2704", "limit": 0, "attributes": "S2704_C01_009EA,S2704_C01_009M,S2704_C01_009MA"}, "S2201_C04_022E": {"label": "Estimate!!Percent households receiving food stamps/SNAP!!Households!!POVERTY STATUS IN THE PAST 12 MONTHS!!At or above poverty level", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C04_022EA,S2201_C04_022M,S2201_C04_022MA"}, "S2502_C06_016E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!AGE OF HOUSEHOLDER!!75 to 84 years", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C06_016EA,S2502_C06_016M,S2502_C06_016MA"}, "S0804_C04_041E": {"label": "Estimate!!Public transportation!!POVERTY STATUS IN THE PAST 12 MONTHS!!Workers 16 years and over for whom poverty status is determined!!At or above 150 percent of the poverty level", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_041EA,S0804_C04_041M,S0804_C04_041MA"}, "S1501_C02_011E": {"label": "Estimate!!Percent!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Associate's degree", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C02_011EA,S1501_C02_011M,S1501_C02_011MA"}, "S2303_C01_016E": {"label": "Estimate!!Total!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 15 to 34 hours per week", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C01_016EA,S2303_C01_016M,S2303_C01_016MA"}, "S1001_C02_026E": {"label": "Estimate!!Total!!With grandparent responsible!!Grandchildren under 18 years living with a grandparent householder in occupied housing units!!UNITS IN STRUCTURE!!In 2-or-more-unit structures", "concept": "Grandchildren Characteristics", "predicateType": "float", "group": "S1001", "limit": 0, "attributes": "S1001_C02_026EA,S1001_C02_026M,S1001_C02_026MA"}, "S2602_C04_056E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the United States!!Different county", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C04_056EA,S2602_C04_056M,S2602_C04_056MA"}, "S0102_C02_022E": {"label": "Estimate!!60 years and over!!HOUSEHOLDS BY TYPE!!Households!!Family households", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_022EA,S0102_C02_022M,S0102_C02_022MA"}, "S0102PR_C02_032E": {"label": "Estimate!!60 years and over!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_032EA,S0102PR_C02_032M,S0102PR_C02_032MA"}, "S0102_C02_023E": {"label": "Estimate!!60 years and over!!HOUSEHOLDS BY TYPE!!Households!!Family households!!Married-couple family", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_023EA,S0102_C02_023M,S0102_C02_023MA"}, "S1501_C02_012E": {"label": "Estimate!!Percent!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C02_012EA,S1501_C02_012M,S1501_C02_012MA"}, "S2303_C01_017E": {"label": "Estimate!!Total!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 15 to 34 hours per week!!50 to 52 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C01_017EA,S2303_C01_017M,S2303_C01_017MA"}, "S0902_C01_009E": {"label": "Estimate!!Total!!Population 15 to 19 years!!MARITAL STATUS AND FERTILITY!!Female!!Ever married", "concept": "Characteristics of Teenagers 15 to 19 Years Old", "predicateType": "float", "group": "S0902", "limit": 0, "attributes": "S0902_C01_009EA,S0902_C01_009M,S0902_C01_009MA"}, "S1001_C02_027E": {"label": "Estimate!!Total!!With grandparent responsible!!Grandchildren under 18 years living with a grandparent householder in occupied housing units!!UNITS IN STRUCTURE!!In mobile homes and all other types of units", "concept": "Grandchildren Characteristics", "predicateType": "float", "group": "S1001", "limit": 0, "attributes": "S1001_C02_027EA,S1001_C02_027M,S1001_C02_027MA"}, "S2602_C04_055E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the United States!!Same county", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C04_055EA,S2602_C04_055M,S2602_C04_055MA"}, "S0102PR_C02_033E": {"label": "Estimate!!60 years and over!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_033EA,S0102PR_C02_033M,S0102PR_C02_033MA"}, "S2303_C01_014E": {"label": "Estimate!!Total!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 35 or more hours per week!!14 to 26 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C01_014EA,S2303_C01_014M,S2303_C01_014MA"}, "S1001_C02_024E": {"label": "Estimate!!Total!!With grandparent responsible!!Grandchildren under 18 years living with a grandparent householder in occupied housing units!!HOUSING TENURE!!In renter-occupied housing units", "concept": "Grandchildren Characteristics", "predicateType": "float", "group": "S1001", "limit": 0, "attributes": "S1001_C02_024EA,S1001_C02_024M,S1001_C02_024MA"}, "S0102_C02_020E": {"label": "Estimate!!60 years and over!!RELATIONSHIP!!Population in households!!Nonrelatives!!Unmarried partner", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_020EA,S0102_C02_020M,S0102_C02_020MA"}, "S2602_C04_058E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the United States!!Different county!!Different state", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C04_058EA,S2602_C04_058M,S2602_C04_058MA"}, "S0102PR_C02_030E": {"label": "Estimate!!60 years and over!!MARITAL STATUS!!Population 15 years and over!!Divorced", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_030EA,S0102PR_C02_030M,S0102PR_C02_030MA"}, "S2303_C01_015E": {"label": "Estimate!!Total!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 35 or more hours per week!!1 to 13 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C01_015EA,S2303_C01_015M,S2303_C01_015MA"}, "S1501_C02_010E": {"label": "Estimate!!Percent!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college, no degree", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C02_010EA,S1501_C02_010M,S1501_C02_010MA"}, "S1001_C02_025E": {"label": "Estimate!!Total!!With grandparent responsible!!Grandchildren under 18 years living with a grandparent householder in occupied housing units!!UNITS IN STRUCTURE!!In 1-unit structures", "concept": "Grandchildren Characteristics", "predicateType": "float", "group": "S1001", "limit": 0, "attributes": "S1001_C02_025EA,S1001_C02_025M,S1001_C02_025MA"}, "S0102_C02_021E": {"label": "Estimate!!60 years and over!!HOUSEHOLDS BY TYPE!!Households", "concept": "Population 60 Years and Over in the United States", "predicateType": "int", "group": "S0102", "limit": 0, "attributes": "S0102_C02_021EA,S0102_C02_021M,S0102_C02_021MA"}, "S2602_C04_057E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the United States!!Different county!!Same state", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C04_057EA,S2602_C04_057M,S2602_C04_057MA"}, "S0102PR_C02_031E": {"label": "Estimate!!60 years and over!!MARITAL STATUS!!Population 15 years and over!!Separated", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_031EA,S0102PR_C02_031M,S0102PR_C02_031MA"}, "S2303_C01_012E": {"label": "Estimate!!Total!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 35 or more hours per week!!40 to 47 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C01_012EA,S2303_C01_012M,S2303_C01_012MA"}, "S0502_C01_109E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Food Stamp/SNAP benefits", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_109EA,S0502_C01_109M,S0502_C01_109MA"}, "S2502_C06_011E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!AGE OF HOUSEHOLDER!!Under 35 years", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C06_011EA,S2502_C06_011M,S2502_C06_011MA"}, "S0902_C01_006E": {"label": "Estimate!!Total!!Population 15 to 19 years!!MARITAL STATUS AND FERTILITY!!Male", "concept": "Characteristics of Teenagers 15 to 19 Years Old", "predicateType": "int", "group": "S0902", "limit": 0, "attributes": "S0902_C01_006EA,S0902_C01_006M,S0902_C01_006MA"}, "S0804_C04_048E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!OCCUPATION!!Military specific occupations", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_048EA,S0804_C04_048M,S0804_C04_048MA"}, "S2602_C04_052E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!RESIDENCE 1 YEAR AGO!!Population 1 year and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C04_052EA,S2602_C04_052M,S2602_C04_052MA"}, "S0505_C01_008E": {"label": "Estimate!!Total!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen!!Entered 2000 to 2009", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_008EA,S0505_C01_008M,S0505_C01_008MA"}, "S0102PR_C02_036E": {"label": "Estimate!!60 years and over!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college or associate's degree", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_036EA,S0102PR_C02_036M,S0102PR_C02_036MA"}, "S2201_C04_029E": {"label": "Estimate!!Percent households receiving food stamps/SNAP!!Households!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Native Hawaiian and Other Pacific Islander alone", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C04_029EA,S2201_C04_029M,S2201_C04_029MA"}, "S2303_C01_013E": {"label": "Estimate!!Total!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 35 or more hours per week!!27 to 39 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C01_013EA,S2303_C01_013M,S2303_C01_013MA"}, "S0902_C01_005E": {"label": "Estimate!!Total!!Population 15 to 19 years!!SCHOOL ENROLLMENT!!Not enrolled in school", "concept": "Characteristics of Teenagers 15 to 19 Years Old", "predicateType": "int", "group": "S0902", "limit": 0, "attributes": "S0902_C01_005EA,S0902_C01_005M,S0902_C01_005MA"}, "S0502_C01_108E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income!!Mean retirement income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C01_108EA,S0502_C01_108M,S0502_C01_108MA"}, "S0804_C04_047E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!OCCUPATION!!Production, transportation, and material moving occupations", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_047EA,S0804_C04_047M,S0804_C04_047MA"}, "S2502_C06_010E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!White alone, not Hispanic or Latino", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C06_010EA,S2502_C06_010M,S2502_C06_010MA"}, "S2602_C04_051E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!DISABILITY STATUS!!Population 65 years and over!!With a disability", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C04_051EA,S2602_C04_051M,S2602_C04_051MA"}, "S0505_C01_009E": {"label": "Estimate!!Total!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen!!Entered before 2000", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_009EA,S0505_C01_009M,S0505_C01_009MA"}, "S0102PR_C02_037E": {"label": "Estimate!!60 years and over!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree or higher", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_037EA,S0102PR_C02_037M,S0102PR_C02_037MA"}, "S2201_C04_028E": {"label": "Estimate!!Percent households receiving food stamps/SNAP!!Households!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Asian alone", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C04_028EA,S2201_C04_028M,S2201_C04_028MA"}, "S0502_C01_107E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_107EA,S0502_C01_107M,S0502_C01_107MA"}, "S0902_C01_008E": {"label": "Estimate!!Total!!Population 15 to 19 years!!MARITAL STATUS AND FERTILITY!!Female", "concept": "Characteristics of Teenagers 15 to 19 Years Old", "predicateType": "int", "group": "S0902", "limit": 0, "attributes": "S0902_C01_008EA,S0902_C01_008M,S0902_C01_008MA"}, "S0505_C01_006E": {"label": "Estimate!!Total!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_006EA,S0505_C01_006M,S0505_C01_006MA"}, "S2602_C04_054E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the United States", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C04_054EA,S2602_C04_054M,S2602_C04_054MA"}, "S2303_C01_010E": {"label": "Estimate!!Total!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 35 or more hours per week!!50 to 52 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C01_010EA,S2303_C01_010M,S2303_C01_010MA"}, "S2603_C07_050E": {"label": "Estimate!!Military quarters/military ships!!DISABILITY STATUS!!Population 65 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C07_050EA,S2603_C07_050M,S2603_C07_050MA"}, "S0102PR_C02_034E": {"label": "Estimate!!60 years and over!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than high school graduate", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_034EA,S0102PR_C02_034M,S0102PR_C02_034MA"}, "S0506_C01_140E": {"label": "Estimate!!Total!!Owner-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C01_140EA,S0506_C01_140M,S0506_C01_140MA"}, "S0902_C01_007E": {"label": "Estimate!!Total!!Population 15 to 19 years!!MARITAL STATUS AND FERTILITY!!Male!!Ever married", "concept": "Characteristics of Teenagers 15 to 19 Years Old", "predicateType": "float", "group": "S0902", "limit": 0, "attributes": "S0902_C01_007EA,S0902_C01_007M,S0902_C01_007MA"}, "S0502_C01_106E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income!!Mean cash public assistance income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C01_106EA,S0502_C01_106M,S0502_C01_106MA"}, "S0804_C04_049E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!INDUSTRY!!Agriculture, forestry, fishing and hunting, and mining", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_049EA,S0804_C04_049M,S0804_C04_049MA"}, "S2602_C04_053E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Same address", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C04_053EA,S2602_C04_053M,S2602_C04_053MA"}, "S2303_C01_011E": {"label": "Estimate!!Total!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 35 or more hours per week!!48 to 49 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C01_011EA,S2303_C01_011M,S2303_C01_011MA"}, "S0505_C01_007E": {"label": "Estimate!!Total!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen!!Entered 2010 or later", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_007EA,S0505_C01_007M,S0505_C01_007MA"}, "S0102PR_C02_035E": {"label": "Estimate!!60 years and over!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate, GED, or alternative", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_035EA,S0102PR_C02_035M,S0102PR_C02_035MA"}, "S0506_C01_141E": {"label": "Estimate!!Total!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_141EA,S0506_C01_141M,S0506_C01_141MA"}, "S2405_C05_004E": {"label": "Estimate!!Natural resources, construction, and maintenance occupations!!Civilian employed population 16 years and over!!Manufacturing", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2405", "limit": 0, "attributes": "S2405_C05_004EA,S2405_C05_004M,S2405_C05_004MA"}, "S1603_C06_011E": {"label": "Estimate!!Speak Spanish at home!!Speak a language other than English at home!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population 5 years and over for whom poverty status is determined!!At or above poverty level", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "int", "group": "S1603", "limit": 0, "attributes": "S1603_C06_011EA,S1603_C06_011M,S1603_C06_011MA"}, "S0502_C01_117E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_117EA,S0502_C01_117M,S0502_C01_117MA"}, "S0102PR_C02_028E": {"label": "Estimate!!60 years and over!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_028EA,S0102PR_C02_028M,S0102PR_C02_028MA"}, "S2405_C05_003E": {"label": "Estimate!!Natural resources, construction, and maintenance occupations!!Civilian employed population 16 years and over!!Construction", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2405", "limit": 0, "attributes": "S2405_C05_003EA,S2405_C05_003M,S2405_C05_003MA"}, "S1811_C02_001E": {"label": "Estimate!!With a Disability!!Population Age 16 and Over", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "int", "group": "S1811", "limit": 0, "attributes": "S1811_C02_001EA,S1811_C02_001M,S1811_C02_001MA"}, "S0502_C01_116E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_116EA,S0502_C01_116M,S0502_C01_116MA"}, "S0102PR_C02_029E": {"label": "Estimate!!60 years and over!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_029EA,S0102PR_C02_029M,S0102PR_C02_029MA"}, "S1603_C06_010E": {"label": "Estimate!!Speak Spanish at home!!Speak a language other than English at home!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population 5 years and over for whom poverty status is determined!!Below poverty level", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "int", "group": "S1603", "limit": 0, "attributes": "S1603_C06_010EA,S1603_C06_010M,S1603_C06_010MA"}, "S2405_C05_002E": {"label": "Estimate!!Natural resources, construction, and maintenance occupations!!Civilian employed population 16 years and over!!Agriculture, forestry, fishing and hunting, and mining", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2405", "limit": 0, "attributes": "S2405_C05_002EA,S2405_C05_002M,S2405_C05_002MA"}, "S0102_C02_028E": {"label": "Estimate!!60 years and over!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_028EA,S0102_C02_028M,S0102_C02_028MA"}, "S0701PR_C01_050E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population 1 year and over for whom poverty status is determined!!Below 100 percent of the poverty level", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "int", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C01_050EA,S0701PR_C01_050M,S0701PR_C01_050MA"}, "S2602_C04_050E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!DISABILITY STATUS!!Population 65 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C04_050EA,S2602_C04_050M,S2602_C04_050MA"}, "S0102PR_C02_026E": {"label": "Estimate!!60 years and over!!HOUSEHOLDS BY TYPE!!Households!!Nonfamily households!!Householder living alone", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_026EA,S0102PR_C02_026M,S0102PR_C02_026MA"}, "S0502_C01_115E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!At or above 200 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_115EA,S0502_C01_115M,S0502_C01_115MA"}, "S0701PR_C01_051E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population 1 year and over for whom poverty status is determined!!100 to 149 percent of the poverty level", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "int", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C01_051EA,S0701PR_C01_051M,S0701PR_C01_051MA"}, "S0102_C02_029E": {"label": "Estimate!!60 years and over!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_029EA,S0102_C02_029M,S0102_C02_029MA"}, "S0102PR_C02_027E": {"label": "Estimate!!60 years and over!!MARITAL STATUS!!Population 15 years and over", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_027EA,S0102PR_C02_027M,S0102PR_C02_027MA"}, "S0502_C01_114E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!100 to 199 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_114EA,S0502_C01_114M,S0502_C01_114MA"}, "S2405_C05_001E": {"label": "Estimate!!Natural resources, construction, and maintenance occupations!!Civilian employed population 16 years and over", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2405", "limit": 0, "attributes": "S2405_C05_001EA,S2405_C05_001M,S2405_C05_001MA"}, "S0102_C02_026E": {"label": "Estimate!!60 years and over!!HOUSEHOLDS BY TYPE!!Households!!Nonfamily households!!Householder living alone", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_026EA,S0102_C02_026M,S0102_C02_026MA"}, "S1001_C02_022E": {"label": "Estimate!!Total!!With grandparent responsible!!Grandchildren under 18 years living with a grandparent householder in occupied housing units", "concept": "Grandchildren Characteristics", "predicateType": "int", "group": "S1001", "limit": 0, "attributes": "S1001_C02_022EA,S1001_C02_022M,S1001_C02_022MA"}, "S0701PR_C01_052E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population 1 year and over for whom poverty status is determined!!At or above 150 percent of the poverty level", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "int", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C01_052EA,S0701PR_C01_052M,S0701PR_C01_052MA"}, "UA": {"label": "Urban Area", "group": "N/A", "limit": 0}, "S0502_C01_113E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!Below 100 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_113EA,S0502_C01_113M,S0502_C01_113MA"}, "S1001_C02_023E": {"label": "Estimate!!Total!!With grandparent responsible!!Grandchildren under 18 years living with a grandparent householder in occupied housing units!!HOUSING TENURE!!In owner-occupied housing units", "concept": "Grandchildren Characteristics", "predicateType": "float", "group": "S1001", "limit": 0, "attributes": "S1001_C02_023EA,S1001_C02_023M,S1001_C02_023MA"}, "S0102_C02_027E": {"label": "Estimate!!60 years and over!!MARITAL STATUS!!Population 15 years and over", "concept": "Population 60 Years and Over in the United States", "predicateType": "int", "group": "S0102", "limit": 0, "attributes": "S0102_C02_027EA,S0102_C02_027M,S0102_C02_027MA"}, "S0701PR_C01_053E": {"label": "Estimate!!Total!!HOUSING TENURE!!Population 1 year and over in housing units", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "int", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C01_053EA,S0701PR_C01_053M,S0701PR_C01_053MA"}, "S0502_C01_112E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C01_112EA,S0502_C01_112M,S0502_C01_112MA"}, "S0102_C02_024E": {"label": "Estimate!!60 years and over!!HOUSEHOLDS BY TYPE!!Households!!Family households!!Female householder, no spouse present, family", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_024EA,S0102_C02_024M,S0102_C02_024MA"}, "S0701PR_C01_054E": {"label": "Estimate!!Total!!HOUSING TENURE!!Population 1 year and over in housing units!!Householder lived in owner-occupied housing units", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "int", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C01_054EA,S0701PR_C01_054M,S0701PR_C01_054MA"}, "S1001_C02_020E": {"label": "Estimate!!Total!!With grandparent responsible!!Grandchildren under 18 years living with a grandparent householder!!POVERTY STATUS IN THE PAST 12 MONTHS!!Income in the past 12 months below poverty level", "concept": "Grandchildren Characteristics", "predicateType": "float", "group": "S1001", "limit": 0, "attributes": "S1001_C02_020EA,S1001_C02_020M,S1001_C02_020MA"}, "S0502_C01_111E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!Average number of workers per household", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_111EA,S0502_C01_111M,S0502_C01_111MA"}, "S0701PR_C01_055E": {"label": "Estimate!!Total!!HOUSING TENURE!!Population 1 year and over in housing units!!Householder lived in renter-occupied housing units", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "int", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C01_055EA,S0701PR_C01_055M,S0701PR_C01_055MA"}, "S1001_C02_021E": {"label": "Estimate!!Total!!With grandparent responsible!!Grandchildren under 18 years living with a grandparent householder!!POVERTY STATUS IN THE PAST 12 MONTHS!!Income in the past 12 months at or above poverty level", "concept": "Grandchildren Characteristics", "predicateType": "float", "group": "S1001", "limit": 0, "attributes": "S1001_C02_021EA,S1001_C02_021M,S1001_C02_021MA"}, "S0102_C02_025E": {"label": "Estimate!!60 years and over!!HOUSEHOLDS BY TYPE!!Households!!Nonfamily households", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_025EA,S0102_C02_025M,S0102_C02_025MA"}, "S0502_C01_110E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!Median Household income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C01_110EA,S0502_C01_110M,S0502_C01_110MA"}, "S0701PR_C01_056E": {"label": "Estimate!!Total!!PERCENT ALLOCATED!!Residence 1 year ago", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C01_056EA,S0701PR_C01_056M,S0701PR_C01_056MA"}, "S0506_C01_138E": {"label": "Estimate!!Total!!Occupied housing units!!SELECTED CHARACTERISTICS!!No telephone service available", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_138EA,S0506_C01_138M,S0506_C01_138MA"}, "S1602_C03_004E": {"label": "Estimate!!Limited English-speaking households!!All households!!Households speaking --!!Asian and Pacific Island languages", "concept": "Limited English Speaking Households", "predicateType": "int", "group": "S1602", "limit": 0, "attributes": "S1602_C03_004EA,S1602_C03_004M,S1602_C03_004MA"}, "S2701_C04_006E": {"label": "Estimate!!Uninsured!!Civilian noninstitutionalized population!!AGE!!35 to 44 years", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C04_006EA,S2701_C04_006M,S2701_C04_006MA"}, "S2704_C01_008E": {"label": "Estimate!!Total!!COVERAGE ALONE OR IN COMBINATION!!Medicaid/means-tested public coverage alone or in combination!!19 to 64 years", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2704", "limit": 0, "attributes": "S2704_C01_008EA,S2704_C01_008M,S2704_C01_008MA"}, "S0506_C01_139E": {"label": "Estimate!!Total!!Occupied housing units!!SELECTED CHARACTERISTICS!!Limited English Speaking Households", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_139EA,S0506_C01_139M,S0506_C01_139MA"}, "S2704_C01_007E": {"label": "Estimate!!Total!!COVERAGE ALONE OR IN COMBINATION!!Medicaid/means-tested public coverage alone or in combination!!Under 19", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2704", "limit": 0, "attributes": "S2704_C01_007EA,S2704_C01_007M,S2704_C01_007MA"}, "S2701_C04_005E": {"label": "Estimate!!Uninsured!!Civilian noninstitutionalized population!!AGE!!26 to 34 years", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C04_005EA,S2701_C04_005M,S2701_C04_005MA"}, "S0503_C02_049E": {"label": "Estimate!!Foreign-born; Born in Europe!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college or associate's degree", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_049EA,S0503_C02_049M,S0503_C02_049MA"}, "S1602_C03_005E": {"label": "Estimate!!Limited English-speaking households!!All households!!Households speaking --!!Other languages", "concept": "Limited English Speaking Households", "predicateType": "int", "group": "S1602", "limit": 0, "attributes": "S1602_C03_005EA,S1602_C03_005M,S1602_C03_005MA"}, "S2603_C07_059E": {"label": "Estimate!!Military quarters/military ships!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Abroad", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C07_059EA,S2603_C07_059M,S2603_C07_059MA"}, "S2704_C01_006E": {"label": "Estimate!!Total!!COVERAGE ALONE OR IN COMBINATION!!Medicaid/means-tested public coverage alone or in combination", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2704", "limit": 0, "attributes": "S2704_C01_006EA,S2704_C01_006M,S2704_C01_006MA"}, "S0503_C02_048E": {"label": "Estimate!!Foreign-born; Born in Europe!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate (includes equivalency)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_048EA,S0503_C02_048M,S0503_C02_048MA"}, "S2701_C04_008E": {"label": "Estimate!!Uninsured!!Civilian noninstitutionalized population!!AGE!!55 to 64 years", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C04_008EA,S2701_C04_008M,S2701_C04_008MA"}, "S2201_C04_031E": {"label": "Estimate!!Percent households receiving food stamps/SNAP!!Households!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Two or more races", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C04_031EA,S2201_C04_031M,S2201_C04_031MA"}, "S2502_C06_009E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Hispanic or Latino origin", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C06_009EA,S2502_C06_009M,S2502_C06_009MA"}, "S2405_C05_009E": {"label": "Estimate!!Natural resources, construction, and maintenance occupations!!Civilian employed population 16 years and over!!Finance and insurance, and real estate and rental and leasing", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2405", "limit": 0, "attributes": "S2405_C05_009EA,S2405_C05_009M,S2405_C05_009MA"}, "S1603_C06_016E": {"label": "Estimate!!Speak Spanish at home!!Speak a language other than English at home!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree or higher", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "int", "group": "S1603", "limit": 0, "attributes": "S1603_C06_016EA,S1603_C06_016M,S1603_C06_016MA"}, "S2704_C01_005E": {"label": "Estimate!!Total!!COVERAGE ALONE OR IN COMBINATION!!Medicare coverage alone or in combination!!65 years and over", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2704", "limit": 0, "attributes": "S2704_C01_005EA,S2704_C01_005M,S2704_C01_005MA"}, "S2701_C04_007E": {"label": "Estimate!!Uninsured!!Civilian noninstitutionalized population!!AGE!!45 to 54 years", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C04_007EA,S2701_C04_007M,S2701_C04_007MA"}, "S2201_C04_030E": {"label": "Estimate!!Percent households receiving food stamps/SNAP!!Households!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Some other race alone", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C04_030EA,S2201_C04_030M,S2201_C04_030MA"}, "S0503_C02_047E": {"label": "Estimate!!Foreign-born; Born in Europe!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than high school graduate", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_047EA,S0503_C02_047M,S0503_C02_047MA"}, "S2502_C06_008E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Two or more races", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C06_008EA,S2502_C06_008M,S2502_C06_008MA"}, "S2405_C05_008E": {"label": "Estimate!!Natural resources, construction, and maintenance occupations!!Civilian employed population 16 years and over!!Information", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2405", "limit": 0, "attributes": "S2405_C05_008EA,S2405_C05_008M,S2405_C05_008MA"}, "S1603_C06_015E": {"label": "Estimate!!Speak Spanish at home!!Speak a language other than English at home!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college or associate's degree", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "int", "group": "S1603", "limit": 0, "attributes": "S1603_C06_015EA,S1603_C06_015M,S1603_C06_015MA"}, "S2704_C01_004E": {"label": "Estimate!!Total!!COVERAGE ALONE OR IN COMBINATION!!Medicare coverage alone or in combination!!19 to 64 years", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2704", "limit": 0, "attributes": "S2704_C01_004EA,S2704_C01_004M,S2704_C01_004MA"}, "S0503_C02_046E": {"label": "Estimate!!Foreign-born; Born in Europe!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C02_046EA,S0503_C02_046M,S0503_C02_046MA"}, "S1603_C06_014E": {"label": "Estimate!!Speak Spanish at home!!Speak a language other than English at home!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate (includes equivalency)", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "int", "group": "S1603", "limit": 0, "attributes": "S1603_C06_014EA,S1603_C06_014M,S1603_C06_014MA"}, "S2405_C05_007E": {"label": "Estimate!!Natural resources, construction, and maintenance occupations!!Civilian employed population 16 years and over!!Transportation and warehousing, and utilities", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2405", "limit": 0, "attributes": "S2405_C05_007EA,S2405_C05_007M,S2405_C05_007MA"}, "S2701_C04_009E": {"label": "Estimate!!Uninsured!!Civilian noninstitutionalized population!!AGE!!65 to 74 years", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C04_009EA,S2701_C04_009M,S2701_C04_009MA"}, "S2704_C01_003E": {"label": "Estimate!!Total!!COVERAGE ALONE OR IN COMBINATION!!Medicare coverage alone or in combination!!Under 19", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2704", "limit": 0, "attributes": "S2704_C01_003EA,S2704_C01_003M,S2704_C01_003MA"}, "S0503_C02_045E": {"label": "Estimate!!Foreign-born; Born in Europe!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!College or graduate school", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_045EA,S0503_C02_045M,S0503_C02_045MA"}, "S1602_C03_001E": {"label": "Estimate!!Limited English-speaking households!!All households", "concept": "Limited English Speaking Households", "predicateType": "int", "group": "S1602", "limit": 0, "attributes": "S1602_C03_001EA,S1602_C03_001M,S1602_C03_001MA"}, "S1603_C06_013E": {"label": "Estimate!!Speak Spanish at home!!Speak a language other than English at home!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than high school graduate", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "int", "group": "S1603", "limit": 0, "attributes": "S1603_C06_013EA,S1603_C06_013M,S1603_C06_013MA"}, "S2405_C05_006E": {"label": "Estimate!!Natural resources, construction, and maintenance occupations!!Civilian employed population 16 years and over!!Retail trade", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2405", "limit": 0, "attributes": "S2405_C05_006EA,S2405_C05_006M,S2405_C05_006MA"}, "S2704_C01_002E": {"label": "Estimate!!Total!!COVERAGE ALONE OR IN COMBINATION!!Medicare coverage alone or in combination", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2704", "limit": 0, "attributes": "S2704_C01_002EA,S2704_C01_002M,S2704_C01_002MA"}, "S0503_C02_044E": {"label": "Estimate!!Foreign-born; Born in Europe!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!High school (grades 9-12)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_044EA,S0503_C02_044M,S0503_C02_044MA"}, "S1602_C03_002E": {"label": "Estimate!!Limited English-speaking households!!All households!!Households speaking --!!Spanish", "concept": "Limited English Speaking Households", "predicateType": "int", "group": "S1602", "limit": 0, "attributes": "S1602_C03_002EA,S1602_C03_002M,S1602_C03_002MA"}, "S2405_C05_005E": {"label": "Estimate!!Natural resources, construction, and maintenance occupations!!Civilian employed population 16 years and over!!Wholesale trade", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2405", "limit": 0, "attributes": "S2405_C05_005EA,S2405_C05_005M,S2405_C05_005MA"}, "S1603_C06_012E": {"label": "Estimate!!Speak Spanish at home!!Speak a language other than English at home!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "int", "group": "S1603", "limit": 0, "attributes": "S1603_C06_012EA,S1603_C06_012M,S1603_C06_012MA"}, "S0503_C02_043E": {"label": "Estimate!!Foreign-born; Born in Europe!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Elementary school (grades K-8)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_043EA,S0503_C02_043M,S0503_C02_043MA"}, "S2704_C01_001E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2704", "limit": 0, "attributes": "S2704_C01_001EA,S2704_C01_001M,S2704_C01_001MA"}, "S1602_C03_003E": {"label": "Estimate!!Limited English-speaking households!!All households!!Households speaking --!!Other Indo-European languages", "concept": "Limited English Speaking Households", "predicateType": "int", "group": "S1602", "limit": 0, "attributes": "S1602_C03_003EA,S1602_C03_003M,S1602_C03_003MA"}, "S0804_C04_056E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!INDUSTRY!!Professional, scientific, and management, and administrative and waste management services", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_056EA,S0804_C04_056M,S0804_C04_056MA"}, "S0505_C01_016E": {"label": "Estimate!!Total!!Foreign-born population!!SEX AND AGE!!45 to 54 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_016EA,S0505_C01_016M,S0505_C01_016MA"}, "S0503_C02_066E": {"label": "Estimate!!Foreign-born; Born in Europe!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Government workers", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_066EA,S0503_C02_066M,S0503_C02_066MA"}, "S2701_C04_022E": {"label": "Estimate!!Uninsured!!Civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C04_022EA,S2701_C04_022M,S2701_C04_022MA"}, "S2603_C07_064E": {"label": "Estimate!!Military quarters/military ships!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C07_064EA,S2603_C07_064M,S2603_C07_064MA"}, "S2201_C04_013E": {"label": "Estimate!!Percent households receiving food stamps/SNAP!!Households!!With children under 18 years!!Other family:!!Female householder, no spouse present", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C04_013EA,S2201_C04_013M,S2201_C04_013MA"}, "S2502_C06_027E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!YEAR HOUSEHOLDER MOVED INTO UNIT!!Moved in 1989 or earlier", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C06_027EA,S2502_C06_027M,S2502_C06_027MA"}, "S0506_C01_130E": {"label": "Estimate!!Total!!Occupied housing units!!ROOMS!!2 or 3 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_130EA,S0506_C01_130M,S0506_C01_130MA"}, "S0804_C04_055E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!INDUSTRY!!Information and finance and insurance, and real estate and rental and leasing", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_055EA,S0804_C04_055M,S0804_C04_055MA"}, "S0505_C01_017E": {"label": "Estimate!!Total!!Foreign-born population!!SEX AND AGE!!55 to 64 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_017EA,S0505_C01_017M,S0505_C01_017MA"}, "S0503_C02_065E": {"label": "Estimate!!Foreign-born; Born in Europe!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Private wage and salary workers", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_065EA,S0503_C02_065M,S0503_C02_065MA"}, "S2701_C04_021E": {"label": "Estimate!!Uninsured!!Civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!Some other race alone", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C04_021EA,S2701_C04_021M,S2701_C04_021MA"}, "S2603_C07_063E": {"label": "Estimate!!Military quarters/military ships!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Native!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C07_063EA,S2603_C07_063M,S2603_C07_063MA"}, "S2502_C06_026E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!YEAR HOUSEHOLDER MOVED INTO UNIT!!Moved in 1990 to 1999", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C06_026EA,S2502_C06_026M,S2502_C06_026MA"}, "S2201_C04_012E": {"label": "Estimate!!Percent households receiving food stamps/SNAP!!Households!!With children under 18 years!!Other family:!!Male householder, no spouse present", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C04_012EA,S2201_C04_012M,S2201_C04_012MA"}, "S0506_C01_131E": {"label": "Estimate!!Total!!Occupied housing units!!ROOMS!!4 or 5 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_131EA,S0506_C01_131M,S0506_C01_131MA"}, "S0804_C04_058E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!INDUSTRY!!Arts, entertainment, and recreation, and accommodation and food services", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_058EA,S0804_C04_058M,S0804_C04_058MA"}, "S2603_C07_066E": {"label": "Estimate!!Military quarters/military ships!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C07_066EA,S2603_C07_066M,S2603_C07_066MA"}, "S0505_C01_014E": {"label": "Estimate!!Total!!Foreign-born population!!SEX AND AGE!!18 to 24 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_014EA,S0505_C01_014M,S0505_C01_014MA"}, "S0503_C02_064E": {"label": "Estimate!!Foreign-born; Born in Europe!!Civilian employed population 16 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C02_064EA,S0503_C02_064M,S0503_C02_064MA"}, "S2701_C04_024E": {"label": "Estimate!!Uninsured!!Civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C04_024EA,S2701_C04_024M,S2701_C04_024MA"}, "S1501_C02_029E": {"label": "Estimate!!Percent!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!White alone!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C02_029EA,S1501_C02_029M,S1501_C02_029MA"}, "S2502_C06_025E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!YEAR HOUSEHOLDER MOVED INTO UNIT!!Moved in 2000 to 2009", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C06_025EA,S2502_C06_025M,S2502_C06_025MA"}, "S2201_C04_015E": {"label": "Estimate!!Percent households receiving food stamps/SNAP!!Households!!No children under 18 years", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C04_015EA,S2201_C04_015M,S2201_C04_015MA"}, "S0506_C01_132E": {"label": "Estimate!!Total!!Occupied housing units!!ROOMS!!6 or 7 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_132EA,S0506_C01_132M,S0506_C01_132MA"}, "S0804_C04_057E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!INDUSTRY!!Educational services, and health care and social assistance", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_057EA,S0804_C04_057M,S0804_C04_057MA"}, "S2502_C06_024E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!YEAR HOUSEHOLDER MOVED INTO UNIT!!Moved in 2010 to 2019", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C06_024EA,S2502_C06_024M,S2502_C06_024MA"}, "S0505_C01_015E": {"label": "Estimate!!Total!!Foreign-born population!!SEX AND AGE!!25 to 44 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_015EA,S0505_C01_015M,S0505_C01_015MA"}, "S0503_C02_063E": {"label": "Estimate!!Foreign-born; Born in Europe!!EMPLOYMENT STATUS!!Population 16 years and over!!Not in labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_063EA,S0503_C02_063M,S0503_C02_063MA"}, "S2701_C04_023E": {"label": "Estimate!!Uninsured!!Civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino (of any race)", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C04_023EA,S2701_C04_023M,S2701_C04_023MA"}, "S2603_C07_065E": {"label": "Estimate!!Military quarters/military ships!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C07_065EA,S2603_C07_065M,S2603_C07_065MA"}, "S2201_C04_014E": {"label": "Estimate!!Percent households receiving food stamps/SNAP!!Households!!With children under 18 years!!Nonfamily households", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C04_014EA,S2201_C04_014M,S2201_C04_014MA"}, "S0506_C01_133E": {"label": "Estimate!!Total!!Occupied housing units!!ROOMS!!8 or more rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_133EA,S0506_C01_133M,S0506_C01_133MA"}, "S0506_C01_134E": {"label": "Estimate!!Total!!Occupied housing units!!Median number of rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_134EA,S0506_C01_134M,S0506_C01_134MA"}, "S2303_C01_008E": {"label": "Estimate!!Total!!Population 16 to 64 years!!WEEKS WORKED!!Did not work", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C01_008EA,S2303_C01_008M,S2303_C01_008MA"}, "S1501_C02_027E": {"label": "Estimate!!Percent!!AGE BY EDUCATIONAL ATTAINMENT!!Population 65 years and over!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C02_027EA,S1501_C02_027M,S1501_C02_027MA"}, "S2701_C04_026E": {"label": "Estimate!!Uninsured!!Civilian noninstitutionalized population!!LIVING ARRANGEMENTS!!In family households!!In married couple families", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C04_026EA,S2701_C04_026M,S2701_C04_026MA"}, "S2603_C07_068E": {"label": "Estimate!!Military quarters/military ships!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Naturalized U.S. citizen!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C07_068EA,S2603_C07_068M,S2603_C07_068MA"}, "S2602_C04_048E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!DISABILITY STATUS!!Population 18 to 64 years!!With a disability", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C04_048EA,S2602_C04_048M,S2602_C04_048MA"}, "S0503_C02_062E": {"label": "Estimate!!Foreign-born; Born in Europe!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Armed Forces", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_062EA,S0503_C02_062M,S0503_C02_062MA"}, "S0505_C01_012E": {"label": "Estimate!!Total!!Foreign-born population!!SEX AND AGE!!Under 5 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_012EA,S0505_C01_012M,S0505_C01_012MA"}, "S0102PR_C02_040E": {"label": "Estimate!!60 years and over!!RESPONSIBILITY FOR GRANDCHILDREN UNDER 18 YEARS!!Population 30 years and over!!Living with grandchild(ren)!!Responsible for grandchild(ren)", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_040EA,S0102PR_C02_040M,S0102PR_C02_040MA"}, "S0804_C04_052E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!INDUSTRY!!Wholesale trade", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_052EA,S0804_C04_052M,S0804_C04_052MA"}, "S0506_C01_135E": {"label": "Estimate!!Total!!Occupied housing units!!1.01 or more occupants per room", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_135EA,S0506_C01_135M,S0506_C01_135MA"}, "S1501_C02_028E": {"label": "Estimate!!Percent!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!White alone", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C02_028EA,S1501_C02_028M,S1501_C02_028MA"}, "S2603_C07_067E": {"label": "Estimate!!Military quarters/military ships!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Naturalized U.S. citizen", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C07_067EA,S2603_C07_067M,S2603_C07_067MA"}, "S2602_C04_047E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!DISABILITY STATUS!!Population 18 to 64 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C04_047EA,S2602_C04_047M,S2602_C04_047MA"}, "S0505_C01_013E": {"label": "Estimate!!Total!!Foreign-born population!!SEX AND AGE!!5 to 17 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_013EA,S0505_C01_013M,S0505_C01_013MA"}, "S2701_C04_025E": {"label": "Estimate!!Uninsured!!Civilian noninstitutionalized population!!LIVING ARRANGEMENTS!!In family households", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C04_025EA,S2701_C04_025M,S2701_C04_025MA"}, "S2303_C01_009E": {"label": "Estimate!!Total!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 35 or more hours per week", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C01_009EA,S2303_C01_009M,S2303_C01_009MA"}, "S0503_C02_061E": {"label": "Estimate!!Foreign-born; Born in Europe!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed!!Percent of civilian labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_061EA,S0503_C02_061M,S0503_C02_061MA"}, "S0804_C04_051E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!INDUSTRY!!Manufacturing", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_051EA,S0804_C04_051M,S0804_C04_051MA"}, "S0102PR_C02_041E": {"label": "Estimate!!60 years and over!!VETERAN STATUS!!Civilian population 18 years and over", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_041EA,S0102PR_C02_041M,S0102PR_C02_041MA"}, "S0804_C04_054E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!INDUSTRY!!Transportation and warehousing, and utilities", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_054EA,S0804_C04_054M,S0804_C04_054MA"}, "S0506_C01_136E": {"label": "Estimate!!Total!!Occupied housing units!!VEHICLES AVAILABLE!!None", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_136EA,S0506_C01_136M,S0506_C01_136MA"}, "S1501_C02_025E": {"label": "Estimate!!Percent!!AGE BY EDUCATIONAL ATTAINMENT!!Population 65 years and over", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C02_025EA,S1501_C02_025M,S1501_C02_025MA"}, "S2303_C01_006E": {"label": "Estimate!!Total!!Population 16 to 64 years!!WEEKS WORKED!!Worked 14 to 26 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C01_006EA,S2303_C01_006M,S2303_C01_006MA"}, "S2701_C04_028E": {"label": "Estimate!!Uninsured!!Civilian noninstitutionalized population!!LIVING ARRANGEMENTS!!In family households!!In other families!!Male reference person, no spouse present", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C04_028EA,S2701_C04_028M,S2701_C04_028MA"}, "S2201_C04_011E": {"label": "Estimate!!Percent households receiving food stamps/SNAP!!Households!!With children under 18 years!!Other family:", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C04_011EA,S2201_C04_011M,S2201_C04_011MA"}, "S0505_C01_010E": {"label": "Estimate!!Total!!Foreign-born population!!SEX AND AGE!!Male", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_010EA,S0505_C01_010M,S0505_C01_010MA"}, "S0503_C02_060E": {"label": "Estimate!!Foreign-born; Born in Europe!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_060EA,S0503_C02_060M,S0503_C02_060MA"}, "S0804_C04_053E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!INDUSTRY!!Retail trade", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_053EA,S0804_C04_053M,S0804_C04_053MA"}, "S0506_C01_137E": {"label": "Estimate!!Total!!Occupied housing units!!VEHICLES AVAILABLE!!1 or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_137EA,S0506_C01_137M,S0506_C01_137MA"}, "S1501_C02_026E": {"label": "Estimate!!Percent!!AGE BY EDUCATIONAL ATTAINMENT!!Population 65 years and over!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C02_026EA,S1501_C02_026M,S1501_C02_026MA"}, "S2303_C01_007E": {"label": "Estimate!!Total!!Population 16 to 64 years!!WEEKS WORKED!!Worked 1 to 13 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C01_007EA,S2303_C01_007M,S2303_C01_007MA"}, "S2701_C04_027E": {"label": "Estimate!!Uninsured!!Civilian noninstitutionalized population!!LIVING ARRANGEMENTS!!In family households!!In other families", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C04_027EA,S2701_C04_027M,S2701_C04_027MA"}, "S2603_C07_069E": {"label": "Estimate!!Military quarters/military ships!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Naturalized U.S. citizen!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C07_069EA,S2603_C07_069M,S2603_C07_069MA"}, "S2602_C04_049E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!DISABILITY STATUS!!Population 18 to 64 years!!No disability", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C04_049EA,S2602_C04_049M,S2602_C04_049MA"}, "S0505_C01_011E": {"label": "Estimate!!Total!!Foreign-born population!!SEX AND AGE!!Female", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_011EA,S0505_C01_011M,S0505_C01_011MA"}, "S2201_C04_010E": {"label": "Estimate!!Percent households receiving food stamps/SNAP!!Households!!With children under 18 years!!Married-couple family", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C04_010EA,S2201_C04_010M,S2201_C04_010MA"}, "S2303_C01_004E": {"label": "Estimate!!Total!!Population 16 to 64 years!!WEEKS WORKED!!Worked 40 to 47 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C01_004EA,S2303_C01_004M,S2303_C01_004MA"}, "S0102_C02_034E": {"label": "Estimate!!60 years and over!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than high school graduate", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_034EA,S0102_C02_034M,S0102_C02_034MA"}, "S1501_C02_023E": {"label": "Estimate!!Percent!!AGE BY EDUCATIONAL ATTAINMENT!!Population 45 to 64 years!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C02_023EA,S1501_C02_023M,S1501_C02_023MA"}, "S2602_C04_044E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!VETERAN STATUS!!Civilian population 18 years and over!!Civilian veteran", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C04_044EA,S2602_C04_044M,S2602_C04_044MA"}, "S0102PR_C02_044E": {"label": "Estimate!!60 years and over!!DISABILITY STATUS!!Civilian noninstitutionalized population!!With any disability", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_044EA,S0102PR_C02_044M,S0102PR_C02_044MA"}, "S0102_C02_035E": {"label": "Estimate!!60 years and over!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate, GED, or alternative", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_035EA,S0102_C02_035M,S0102_C02_035MA"}, "S1501_C02_024E": {"label": "Estimate!!Percent!!AGE BY EDUCATIONAL ATTAINMENT!!Population 45 to 64 years!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C02_024EA,S1501_C02_024M,S1501_C02_024MA"}, "S2303_C01_005E": {"label": "Estimate!!Total!!Population 16 to 64 years!!WEEKS WORKED!!Worked 27 to 39 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C01_005EA,S2303_C01_005M,S2303_C01_005MA"}, "S2602_C04_043E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!VETERAN STATUS!!Civilian population 18 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C04_043EA,S2602_C04_043M,S2602_C04_043MA"}, "S0102PR_C02_045E": {"label": "Estimate!!60 years and over!!DISABILITY STATUS!!Civilian noninstitutionalized population!!No disability", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_045EA,S0102PR_C02_045M,S0102PR_C02_045MA"}, "S1501_C02_021E": {"label": "Estimate!!Percent!!AGE BY EDUCATIONAL ATTAINMENT!!Population 35 to 44 years!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C02_021EA,S1501_C02_021M,S1501_C02_021MA"}, "S2303_C01_002E": {"label": "Estimate!!Total!!Population 16 to 64 years!!WEEKS WORKED!!Worked 50 to 52 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C01_002EA,S2303_C01_002M,S2303_C01_002MA"}, "S0102_C02_032E": {"label": "Estimate!!60 years and over!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_032EA,S0102_C02_032M,S0102_C02_032MA"}, "S2602_C04_046E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!DISABILITY STATUS!!Total population!!With a disability", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C04_046EA,S2602_C04_046M,S2602_C04_046MA"}, "S0102PR_C02_042E": {"label": "Estimate!!60 years and over!!VETERAN STATUS!!Civilian population 18 years and over!!Civilian veteran", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_042EA,S0102PR_C02_042M,S0102PR_C02_042MA"}, "S1501_C02_022E": {"label": "Estimate!!Percent!!AGE BY EDUCATIONAL ATTAINMENT!!Population 45 to 64 years", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C02_022EA,S1501_C02_022M,S1501_C02_022MA"}, "S2303_C01_003E": {"label": "Estimate!!Total!!Population 16 to 64 years!!WEEKS WORKED!!Worked 48 to 49 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C01_003EA,S2303_C01_003M,S2303_C01_003MA"}, "S2602_C04_045E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!DISABILITY STATUS!!Total population", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C04_045EA,S2602_C04_045M,S2602_C04_045MA"}, "S0102_C02_033E": {"label": "Estimate!!60 years and over!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Population 60 Years and Over in the United States", "predicateType": "int", "group": "S0102", "limit": 0, "attributes": "S0102_C02_033EA,S0102_C02_033M,S0102_C02_033MA"}, "S0102PR_C02_043E": {"label": "Estimate!!60 years and over!!DISABILITY STATUS!!Civilian noninstitutionalized population", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_043EA,S0102PR_C02_043M,S0102PR_C02_043MA"}, "S2502_C06_023E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!YEAR HOUSEHOLDER MOVED INTO UNIT!!Moved in 2020 to 2022", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C06_023EA,S2502_C06_023M,S2502_C06_023MA"}, "S2602_C04_040E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C04_040EA,S2602_C04_040M,S2602_C04_040MA"}, "S0102_C02_030E": {"label": "Estimate!!60 years and over!!MARITAL STATUS!!Population 15 years and over!!Divorced", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_030EA,S0102_C02_030M,S0102_C02_030MA"}, "S2603_C07_060E": {"label": "Estimate!!Military quarters/military ships!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C07_060EA,S2603_C07_060M,S2603_C07_060MA"}, "S0102PR_C02_048E": {"label": "Estimate!!60 years and over!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different house in Puerto Rico or the United States", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_048EA,S0102PR_C02_048M,S0102PR_C02_048MA"}, "S2201_C04_017E": {"label": "Estimate!!Percent households receiving food stamps/SNAP!!Households!!No children under 18 years!!Other family:", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C04_017EA,S2201_C04_017M,S2201_C04_017MA"}, "S2303_C01_001E": {"label": "Estimate!!Total!!Population 16 to 64 years", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C01_001EA,S2303_C01_001M,S2303_C01_001MA"}, "S2502_C06_022E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!YEAR HOUSEHOLDER MOVED INTO UNIT!!Moved in 2023 or later", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C06_022EA,S2502_C06_022M,S2502_C06_022MA"}, "S0804_C04_059E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!INDUSTRY!!Other services (except public administration)", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_059EA,S0804_C04_059M,S0804_C04_059MA"}, "S0102_C02_031E": {"label": "Estimate!!60 years and over!!MARITAL STATUS!!Population 15 years and over!!Separated", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_031EA,S0102_C02_031M,S0102_C02_031MA"}, "S1501_C02_020E": {"label": "Estimate!!Percent!!AGE BY EDUCATIONAL ATTAINMENT!!Population 35 to 44 years!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C02_020EA,S1501_C02_020M,S1501_C02_020MA"}, "S0102PR_C02_049E": {"label": "Estimate!!60 years and over!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different house in Puerto Rico or the United States!!In Puerto Rico", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_049EA,S0102PR_C02_049M,S0102PR_C02_049MA"}, "S2201_C04_016E": {"label": "Estimate!!Percent households receiving food stamps/SNAP!!Households!!No children under 18 years!!Married-couple family", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C04_016EA,S2201_C04_016M,S2201_C04_016MA"}, "S2502_C06_021E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!EDUCATIONAL ATTAINMENT OF HOUSEHOLDER!!Bachelor's degree or higher", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C06_021EA,S2502_C06_021M,S2502_C06_021MA"}, "S2602_C04_042E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree or higher", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C04_042EA,S2602_C04_042M,S2602_C04_042MA"}, "S0505_C01_018E": {"label": "Estimate!!Total!!Foreign-born population!!SEX AND AGE!!65 to 74 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_018EA,S0505_C01_018M,S0505_C01_018MA"}, "S0102PR_C02_046E": {"label": "Estimate!!60 years and over!!RESIDENCE 1 YEAR AGO!!Population 1 year and over", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_046EA,S0102PR_C02_046M,S0102PR_C02_046MA"}, "S2701_C04_020E": {"label": "Estimate!!Uninsured!!Civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!Native Hawaiian and Other Pacific Islander alone", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C04_020EA,S2701_C04_020M,S2701_C04_020MA"}, "S2603_C07_062E": {"label": "Estimate!!Military quarters/military ships!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Native!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C07_062EA,S2603_C07_062M,S2603_C07_062MA"}, "S2201_C04_019E": {"label": "Estimate!!Percent households receiving food stamps/SNAP!!Households!!No children under 18 years!!Other family:!!Female householder, no spouse present", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C04_019EA,S2201_C04_019M,S2201_C04_019MA"}, "S2502_C06_020E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!EDUCATIONAL ATTAINMENT OF HOUSEHOLDER!!Some college or associate's degree", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C06_020EA,S2502_C06_020M,S2502_C06_020MA"}, "S2602_C04_041E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate or higher", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C04_041EA,S2602_C04_041M,S2602_C04_041MA"}, "S0505_C01_019E": {"label": "Estimate!!Total!!Foreign-born population!!SEX AND AGE!!75 to 84 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_019EA,S0505_C01_019M,S0505_C01_019MA"}, "S2603_C07_061E": {"label": "Estimate!!Military quarters/military ships!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Native", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C07_061EA,S2603_C07_061M,S2603_C07_061MA"}, "S0102PR_C02_047E": {"label": "Estimate!!60 years and over!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Same house", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_047EA,S0102PR_C02_047M,S0102PR_C02_047MA"}, "S2201_C04_018E": {"label": "Estimate!!Percent households receiving food stamps/SNAP!!Households!!No children under 18 years!!Other family:!!Male householder, no spouse present", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C04_018EA,S2201_C04_018M,S2201_C04_018MA"}, "S0502_C01_105E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_105EA,S0502_C01_105M,S0502_C01_105MA"}, "S2704_C01_012E": {"label": "Estimate!!Total!!COVERAGE ALONE OR IN COMBINATION!!VA health care coverage alone or in combination!!19 to 64 years", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2704", "limit": 0, "attributes": "S2704_C01_012EA,S2704_C01_012M,S2704_C01_012MA"}, "S2704_C01_011E": {"label": "Estimate!!Total!!COVERAGE ALONE OR IN COMBINATION!!VA health care coverage alone or in combination!!Under 19", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2704", "limit": 0, "attributes": "S2704_C01_011EA,S2704_C01_011M,S2704_C01_011MA"}, "S0502_C01_104E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income!!Mean Supplemental Security Income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C01_104EA,S0502_C01_104M,S0502_C01_104MA"}, "S2704_C01_010E": {"label": "Estimate!!Total!!COVERAGE ALONE OR IN COMBINATION!!VA health care coverage alone or in combination", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2704", "limit": 0, "attributes": "S2704_C01_010EA,S2704_C01_010M,S2704_C01_010MA"}, "S0102PR_C02_038E": {"label": "Estimate!!60 years and over!!RESPONSIBILITY FOR GRANDCHILDREN UNDER 18 YEARS!!Population 30 years and over", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_038EA,S0102PR_C02_038M,S0102PR_C02_038MA"}, "S0502_C01_103E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_103EA,S0502_C01_103M,S0502_C01_103MA"}, "S0102PR_C02_039E": {"label": "Estimate!!60 years and over!!RESPONSIBILITY FOR GRANDCHILDREN UNDER 18 YEARS!!Population 30 years and over!!Living with grandchild(ren)", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_039EA,S0102PR_C02_039M,S0102PR_C02_039MA"}, "S0502_C01_102E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income!!Mean Social Security income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C01_102EA,S0502_C01_102M,S0502_C01_102MA"}, "S0701PR_C01_040E": {"label": "Estimate!!Total!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$1 to $9,999 or loss", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "int", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C01_040EA,S0701PR_C01_040M,S0701PR_C01_040MA"}, "S0102_C02_038E": {"label": "Estimate!!60 years and over!!RESPONSIBILITY FOR GRANDCHILDREN UNDER 18 YEARS!!Population 30 years and over", "concept": "Population 60 Years and Over in the United States", "predicateType": "int", "group": "S0102", "limit": 0, "attributes": "S0102_C02_038EA,S0102_C02_038M,S0102_C02_038MA"}, "S0502_C01_101E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_101EA,S0502_C01_101M,S0502_C01_101MA"}, "S0102_C02_039E": {"label": "Estimate!!60 years and over!!RESPONSIBILITY FOR GRANDCHILDREN UNDER 18 YEARS!!Population 30 years and over!!Living with grandchild(ren)", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_039EA,S0102_C02_039M,S0102_C02_039MA"}, "S0701PR_C01_041E": {"label": "Estimate!!Total!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$10,000 to $14,999", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "int", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C01_041EA,S0701PR_C01_041M,S0701PR_C01_041MA"}, "S0502_C01_100E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings!!Mean earnings (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C01_100EA,S0502_C01_100M,S0502_C01_100MA"}, "S0102_C02_036E": {"label": "Estimate!!60 years and over!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college or associate's degree", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_036EA,S0102_C02_036M,S0102_C02_036MA"}, "S0701PR_C01_042E": {"label": "Estimate!!Total!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$15,000 to $24,999", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "int", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C01_042EA,S0701PR_C01_042M,S0701PR_C01_042MA"}, "S0701PR_C01_043E": {"label": "Estimate!!Total!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$25,000 to $34,999", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "int", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C01_043EA,S0701PR_C01_043M,S0701PR_C01_043MA"}, "S0102_C02_037E": {"label": "Estimate!!60 years and over!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree or higher", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_037EA,S0102_C02_037M,S0102_C02_037MA"}, "S0701PR_C01_044E": {"label": "Estimate!!Total!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$35,000 to $49,999", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "int", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C01_044EA,S0701PR_C01_044M,S0701PR_C01_044MA"}, "S0506_C01_126E": {"label": "Estimate!!Total!!Occupied housing units!!HOUSING TENURE!!Renter-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_126EA,S0506_C01_126M,S0506_C01_126MA"}, "S2701_C04_018E": {"label": "Estimate!!Uninsured!!Civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!American Indian and Alaska Native alone", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C04_018EA,S2701_C04_018M,S2701_C04_018MA"}, "S0701PR_C01_045E": {"label": "Estimate!!Total!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$50,000 to $64,999", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "int", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C01_045EA,S0701PR_C01_045M,S0701PR_C01_045MA"}, "S0506_C01_127E": {"label": "Estimate!!Total!!Occupied housing units!!HOUSING TENURE!!Average household size of owner-occupied unit", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_127EA,S0506_C01_127M,S0506_C01_127MA"}, "S2701_C04_017E": {"label": "Estimate!!Uninsured!!Civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!Black or African American alone", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C04_017EA,S2701_C04_017M,S2701_C04_017MA"}, "S2704_C01_019E": {"label": "Estimate!!Total!!PUBLIC HEALTH INSURANCE ALONE OR IN COMBINATION!!19 to 25 years", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2704", "limit": 0, "attributes": "S2704_C01_019EA,S2704_C01_019M,S2704_C01_019MA"}, "S0701PR_C01_046E": {"label": "Estimate!!Total!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$65,000 to $74,999", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "int", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C01_046EA,S0701PR_C01_046M,S0701PR_C01_046MA"}, "S0506_C01_128E": {"label": "Estimate!!Total!!Occupied housing units!!HOUSING TENURE!!Average household size of renter-occupied unit", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_128EA,S0506_C01_128M,S0506_C01_128MA"}, "S2704_C01_018E": {"label": "Estimate!!Total!!PUBLIC HEALTH INSURANCE ALONE OR IN COMBINATION!!6 to 18 years", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2704", "limit": 0, "attributes": "S2704_C01_018EA,S2704_C01_018M,S2704_C01_018MA"}, "S0804_C04_050E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!INDUSTRY!!Construction", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_050EA,S0804_C04_050M,S0804_C04_050MA"}, "S0506_C01_129E": {"label": "Estimate!!Total!!Occupied housing units!!ROOMS!!1 room", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_129EA,S0506_C01_129M,S0506_C01_129MA"}, "S2704_C01_017E": {"label": "Estimate!!Total!!PUBLIC HEALTH INSURANCE ALONE OR IN COMBINATION!!Under 6", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2704", "limit": 0, "attributes": "S2704_C01_017EA,S2704_C01_017M,S2704_C01_017MA"}, "S0503_C02_059E": {"label": "Estimate!!Foreign-born; Born in Europe!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Employed", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_059EA,S0503_C02_059M,S0503_C02_059MA"}, "S2701_C04_019E": {"label": "Estimate!!Uninsured!!Civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!Asian alone", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C04_019EA,S2701_C04_019M,S2701_C04_019MA"}, "S0701PR_C01_047E": {"label": "Estimate!!Total!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$75,000 or more", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "int", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C01_047EA,S0701PR_C01_047M,S0701PR_C01_047MA"}, "S2704_C01_016E": {"label": "Estimate!!Total!!PUBLIC HEALTH INSURANCE ALONE OR IN COMBINATION!!Worked full-time, year-round (19-64 years)", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2704", "limit": 0, "attributes": "S2704_C01_016EA,S2704_C01_016M,S2704_C01_016MA"}, "S0503_C02_058E": {"label": "Estimate!!Foreign-born; Born in Europe!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_058EA,S0503_C02_058M,S0503_C02_058MA"}, "S0701PR_C01_048E": {"label": "Estimate!!Total!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!Median income (dollars)", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "int", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C01_048EA,S0701PR_C01_048M,S0701PR_C01_048MA"}, "S2704_C01_015E": {"label": "Estimate!!Total!!PUBLIC HEALTH INSURANCE ALONE OR IN COMBINATION!!At or above 138 percent of the poverty threshold", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2704", "limit": 0, "attributes": "S2704_C01_015EA,S2704_C01_015M,S2704_C01_015MA"}, "S0503_C02_057E": {"label": "Estimate!!Foreign-born; Born in Europe!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_057EA,S0503_C02_057M,S0503_C02_057MA"}, "S0701PR_C01_049E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population 1 year and over for whom poverty status is determined", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "int", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C01_049EA,S0701PR_C01_049M,S0701PR_C01_049MA"}, "S2704_C01_014E": {"label": "Estimate!!Total!!PUBLIC HEALTH INSURANCE ALONE OR IN COMBINATION!!Below 138 percent of the poverty threshold", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2704", "limit": 0, "attributes": "S2704_C01_014EA,S2704_C01_014M,S2704_C01_014MA"}, "S0503_C02_056E": {"label": "Estimate!!Foreign-born; Born in Europe!!EMPLOYMENT STATUS!!Population 16 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C02_056EA,S0503_C02_056M,S0503_C02_056MA"}, "S2704_C01_013E": {"label": "Estimate!!Total!!COVERAGE ALONE OR IN COMBINATION!!VA health care coverage alone or in combination!!65 years and over", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2704", "limit": 0, "attributes": "S2704_C01_013EA,S2704_C01_013M,S2704_C01_013MA"}, "S0503_C02_055E": {"label": "Estimate!!Foreign-born; Born in Europe!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English!!Speak English less than \"very well\"", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_055EA,S0503_C02_055M,S0503_C02_055MA"}, "S0501_C05_134E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_134EA,S0501_C05_134M,S0501_C05_134MA"}, "S2507_C02_023E": {"label": "Estimate!!Percent owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!RATIO OF VALUE TO HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!4.0 or more", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "float", "group": "S2507", "limit": 0, "attributes": "S2507_C02_023EA,S2507_C02_023M,S2507_C02_023MA"}, "S0505_C01_028E": {"label": "Estimate!!Total!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_028EA,S0505_C01_028M,S0505_C01_028MA"}, "S0102_C02_086E": {"label": "Estimate!!60 years and over!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined", "concept": "Population 60 Years and Over in the United States", "predicateType": "int", "group": "S0102", "limit": 0, "attributes": "S0102_C02_086EA,S0102_C02_086M,S0102_C02_086MA"}, "S0503_C02_030E": {"label": "Estimate!!Foreign-born; Born in Europe!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_030EA,S0503_C02_030M,S0503_C02_030MA"}, "S2701_C04_034E": {"label": "Estimate!!Uninsured!!Civilian noninstitutionalized population!!NATIVITY AND U.S. CITIZENSHIP STATUS!!Foreign born!!Not a citizen", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C04_034EA,S2701_C04_034M,S2701_C04_034MA"}, "S2201_C04_001E": {"label": "Estimate!!Percent households receiving food stamps/SNAP!!Households", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C04_001EA,S2201_C04_001M,S2201_C04_001MA"}, "S0501_C05_133E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_133EA,S0501_C05_133M,S0501_C05_133MA"}, "S0505_C01_029E": {"label": "Estimate!!Total!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_029EA,S0505_C01_029M,S0505_C01_029MA"}, "S0102_C02_087E": {"label": "Estimate!!60 years and over!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!Below 100 percent of the poverty level", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_087EA,S0102_C02_087M,S0102_C02_087MA"}, "S2701_C04_033E": {"label": "Estimate!!Uninsured!!Civilian noninstitutionalized population!!NATIVITY AND U.S. CITIZENSHIP STATUS!!Foreign born!!Naturalized", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C04_033EA,S2701_C04_033M,S2701_C04_033MA"}, "S2507_C02_024E": {"label": "Estimate!!Percent owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!RATIO OF VALUE TO HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Not computed", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "float", "group": "S2507", "limit": 0, "attributes": "S2507_C02_024EA,S2507_C02_024M,S2507_C02_024MA"}, "S0501_C05_132E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!Owner-occupied housing units", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C05_132EA,S0501_C05_132M,S0501_C05_132MA"}, "S0505_C01_026E": {"label": "Estimate!!Total!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_026EA,S0505_C01_026M,S0505_C01_026MA"}, "S0102_C02_084E": {"label": "Estimate!!60 years and over!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income!!Mean retirement income (dollars)", "concept": "Population 60 Years and Over in the United States", "predicateType": "int", "group": "S0102", "limit": 0, "attributes": "S0102_C02_084EA,S0102_C02_084M,S0102_C02_084MA"}, "S1001_C02_008E": {"label": "Estimate!!Total!!With grandparent responsible!!Grandchildren under 18 years living with a grandparent householder!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Grandchildren Characteristics", "predicateType": "float", "group": "S1001", "limit": 0, "attributes": "S1001_C02_008EA,S1001_C02_008M,S1001_C02_008MA"}, "S2701_C04_036E": {"label": "Estimate!!Uninsured!!Civilian noninstitutionalized population!!DISABILITY STATUS!!No disability", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C04_036EA,S2701_C04_036M,S2701_C04_036MA"}, "S2201_C04_003E": {"label": "Estimate!!Percent households receiving food stamps/SNAP!!Households!!No people in the household 60 years and over", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C04_003EA,S2201_C04_003M,S2201_C04_003MA"}, "S2507_C02_025E": {"label": "Estimate!!Percent owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!MONTHLY HOUSING COSTS!!Less than $200", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "float", "group": "S2507", "limit": 0, "attributes": "S2507_C02_025EA,S2507_C02_025M,S2507_C02_025MA"}, "S0501_C05_131E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!Occupied housing units!!SELECTED CHARACTERISTICS!!Limited English Speaking Households", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_131EA,S0501_C05_131M,S0501_C05_131MA"}, "S0505_C01_027E": {"label": "Estimate!!Total!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_027EA,S0505_C01_027M,S0505_C01_027MA"}, "S1001_C02_009E": {"label": "Estimate!!Total!!With grandparent responsible!!Grandchildren under 18 years living with a grandparent householder!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Grandchildren Characteristics", "predicateType": "float", "group": "S1001", "limit": 0, "attributes": "S1001_C02_009EA,S1001_C02_009M,S1001_C02_009MA"}, "S0102_C02_085E": {"label": "Estimate!!60 years and over!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Food Stamp/SNAP benefits", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_085EA,S0102_C02_085M,S0102_C02_085MA"}, "S2701_C04_035E": {"label": "Estimate!!Uninsured!!Civilian noninstitutionalized population!!DISABILITY STATUS!!With a disability", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C04_035EA,S2701_C04_035M,S2701_C04_035MA"}, "S2201_C04_002E": {"label": "Estimate!!Percent households receiving food stamps/SNAP!!Households!!With one or more people in the household 60 years and over", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C04_002EA,S2201_C04_002M,S2201_C04_002MA"}, "S2507_C02_026E": {"label": "Estimate!!Percent owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!MONTHLY HOUSING COSTS!!$200 to $399", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "float", "group": "S2507", "limit": 0, "attributes": "S2507_C02_026EA,S2507_C02_026M,S2507_C02_026MA"}, "S1501_C02_039E": {"label": "Estimate!!Percent!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!American Indian or Alaska Native alone!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C02_039EA,S1501_C02_039M,S1501_C02_039MA"}, "S2701_C04_038E": {"label": "Estimate!!Uninsured!!Civilian noninstitutionalized population!!EDUCATIONAL ATTAINMENT!!Civilian noninstitutionalized population 26 years and over!!Less than high school graduate", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C04_038EA,S2701_C04_038M,S2701_C04_038MA"}, "S0102_C02_082E": {"label": "Estimate!!60 years and over!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income!!Mean cash public assistance income (dollars)", "concept": "Population 60 Years and Over in the United States", "predicateType": "int", "group": "S0102", "limit": 0, "attributes": "S0102_C02_082EA,S0102_C02_082M,S0102_C02_082MA"}, "S0505_C01_024E": {"label": "Estimate!!Total!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_024EA,S0505_C01_024M,S0505_C01_024MA"}, "S2507_C02_027E": {"label": "Estimate!!Percent owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!MONTHLY HOUSING COSTS!!$400 to $599", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "float", "group": "S2507", "limit": 0, "attributes": "S2507_C02_027EA,S2507_C02_027M,S2507_C02_027MA"}, "S2701_C04_037E": {"label": "Estimate!!Uninsured!!Civilian noninstitutionalized population!!EDUCATIONAL ATTAINMENT!!Civilian noninstitutionalized population 26 years and over", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C04_037EA,S2701_C04_037M,S2701_C04_037MA"}, "S0505_C01_025E": {"label": "Estimate!!Total!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_025EA,S0505_C01_025M,S0505_C01_025MA"}, "S0102_C02_083E": {"label": "Estimate!!60 years and over!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_083EA,S0102_C02_083M,S0102_C02_083MA"}, "S2507_C02_028E": {"label": "Estimate!!Percent owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!MONTHLY HOUSING COSTS!!$600 to $999", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "float", "group": "S2507", "limit": 0, "attributes": "S2507_C02_028EA,S2507_C02_028M,S2507_C02_028MA"}, "S0501_C05_137E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_137EA,S0501_C05_137M,S0501_C05_137MA"}, "S0601PR_C02_029E": {"label": "Estimate!!Native; born in Puerto Rico!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C02_029EA,S0601PR_C02_029M,S0601PR_C02_029MA"}, "S1501_C02_037E": {"label": "Estimate!!Percent!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!American Indian or Alaska Native alone", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C02_037EA,S1501_C02_037M,S1501_C02_037MA"}, "S0505_C01_022E": {"label": "Estimate!!Total!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_022EA,S0505_C01_022M,S0505_C01_022MA"}, "S2507_C02_029E": {"label": "Estimate!!Percent owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!MONTHLY HOUSING COSTS!!$1,000 to $1,299", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "float", "group": "S2507", "limit": 0, "attributes": "S2507_C02_029EA,S2507_C02_029M,S2507_C02_029MA"}, "S0501_C05_136E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_136EA,S0501_C05_136M,S0501_C05_136MA"}, "S0601PR_C02_028E": {"label": "Estimate!!Native; born in Puerto Rico!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C02_028EA,S0601PR_C02_028M,S0601PR_C02_028MA"}, "S1501_C02_038E": {"label": "Estimate!!Percent!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!American Indian or Alaska Native alone!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C02_038EA,S1501_C02_038M,S1501_C02_038MA"}, "S0102_C02_081E": {"label": "Estimate!!60 years and over!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_081EA,S0102_C02_081M,S0102_C02_081MA"}, "S2701_C04_039E": {"label": "Estimate!!Uninsured!!Civilian noninstitutionalized population!!EDUCATIONAL ATTAINMENT!!Civilian noninstitutionalized population 26 years and over!!High school graduate (includes equivalency)", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C04_039EA,S2701_C04_039M,S2701_C04_039MA"}, "S0505_C01_023E": {"label": "Estimate!!Total!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_023EA,S0505_C01_023M,S0505_C01_023MA"}, "S0102_C02_080E": {"label": "Estimate!!60 years and over!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income!!Mean Supplemental Security Income (dollars)", "concept": "Population 60 Years and Over in the United States", "predicateType": "int", "group": "S0102", "limit": 0, "attributes": "S0102_C02_080EA,S0102_C02_080M,S0102_C02_080MA"}, "S0501_C05_135E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!Renter-occupied housing units", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C05_135EA,S0501_C05_135M,S0501_C05_135MA"}, "S2201_C04_009E": {"label": "Estimate!!Percent households receiving food stamps/SNAP!!Households!!With children under 18 years", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C04_009EA,S2201_C04_009M,S2201_C04_009MA"}, "S1501_C02_035E": {"label": "Estimate!!Percent!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Black alone!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C02_035EA,S1501_C02_035M,S1501_C02_035MA"}, "S1301_C01_001E": {"label": "Estimate!!Total!!Women 15 to 50 years", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C01_001EA,S1301_C01_001M,S1301_C01_001MA"}, "S0601PR_C02_027E": {"label": "Estimate!!Native; born in Puerto Rico!!MARITAL STATUS!!Population 15 years and over", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "int", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C02_027EA,S0601PR_C02_027M,S0601PR_C02_027MA"}, "S1001_C02_002E": {"label": "Estimate!!Total!!With grandparent responsible!!Grandchildren under 18 years living with a grandparent householder!!AGE!!Under 6 years", "concept": "Grandchildren Characteristics", "predicateType": "float", "group": "S1001", "limit": 0, "attributes": "S1001_C02_002EA,S1001_C02_002M,S1001_C02_002MA"}, "S0601PR_C02_026E": {"label": "Estimate!!Native; born in Puerto Rico!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Speak language other than English!!Speak English less than \"very well\"", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C02_026EA,S0601PR_C02_026M,S0601PR_C02_026MA"}, "S1501_C02_036E": {"label": "Estimate!!Percent!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Black alone!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C02_036EA,S1501_C02_036M,S1501_C02_036MA"}, "S1001_C02_003E": {"label": "Estimate!!Total!!With grandparent responsible!!Grandchildren under 18 years living with a grandparent householder!!AGE!!6 to 11 years", "concept": "Grandchildren Characteristics", "predicateType": "float", "group": "S1001", "limit": 0, "attributes": "S1001_C02_003EA,S1001_C02_003M,S1001_C02_003MA"}, "S2201_C04_008E": {"label": "Estimate!!Percent households receiving food stamps/SNAP!!Households!!Nonfamily households", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C04_008EA,S2201_C04_008M,S2201_C04_008MA"}, "S1501_C02_033E": {"label": "Estimate!!Percent!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!White alone, not Hispanic or Latino!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C02_033EA,S1501_C02_033M,S1501_C02_033MA"}, "S0601PR_C02_025E": {"label": "Estimate!!Native; born in Puerto Rico!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Speak language other than English!!Speak English \"very well\"", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C02_025EA,S0601PR_C02_025M,S0601PR_C02_025MA"}, "S1301_C01_003E": {"label": "Estimate!!Total!!Women 15 to 50 years!!20 to 34 years", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C01_003EA,S1301_C01_003M,S1301_C01_003MA"}, "S1101_C05_001E": {"label": "Estimate!!Nonfamily household!!HOUSEHOLDS!!Total households", "concept": "Households and Families", "predicateType": "int", "group": "S1101", "limit": 0, "attributes": "S1101_C05_001EA,S1101_C05_001M,S1101_C05_001MA"}, "S2702_C02_080E": {"label": "Estimate!!Total Uninsured!!Civilian noninstitutionalized workers 16 years and over!!OCCUPATION!!Sales and office occupations", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_080EA,S2702_C02_080M,S2702_C02_080MA"}, "S1501_C02_034E": {"label": "Estimate!!Percent!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Black alone", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C02_034EA,S1501_C02_034M,S1501_C02_034MA"}, "S1001_C02_001E": {"label": "Estimate!!Total!!With grandparent responsible!!Grandchildren under 18 years living with a grandparent householder", "concept": "Grandchildren Characteristics", "predicateType": "int", "group": "S1001", "limit": 0, "attributes": "S1001_C02_001EA,S1001_C02_001M,S1001_C02_001MA"}, "S1301_C01_002E": {"label": "Estimate!!Total!!Women 15 to 50 years!!15 to 19 years", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C01_002EA,S1301_C01_002M,S1301_C01_002MA"}, "S0601PR_C02_024E": {"label": "Estimate!!Native; born in Puerto Rico!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Speak language other than English", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C02_024EA,S0601PR_C02_024M,S0601PR_C02_024MA"}, "S2702_C02_081E": {"label": "Estimate!!Total Uninsured!!Civilian noninstitutionalized workers 16 years and over!!OCCUPATION!!Natural resources, construction, and maintenance occupations", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_081EA,S2702_C02_081M,S2702_C02_081MA"}, "S1001_C02_006E": {"label": "Estimate!!Total!!With grandparent responsible!!Grandchildren under 18 years living with a grandparent householder!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Grandchildren Characteristics", "predicateType": "float", "group": "S1001", "limit": 0, "attributes": "S1001_C02_006EA,S1001_C02_006M,S1001_C02_006MA"}, "S1501_C02_031E": {"label": "Estimate!!Percent!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!White alone, not Hispanic or Latino", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C02_031EA,S1501_C02_031M,S1501_C02_031MA"}, "S2701_C04_030E": {"label": "Estimate!!Uninsured!!Civilian noninstitutionalized population!!LIVING ARRANGEMENTS!!In non-family households and other living arrangements", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C04_030EA,S2701_C04_030M,S2701_C04_030MA"}, "S1101_C05_003E": {"label": "Estimate!!Nonfamily household!!FAMILIES!!Total families", "concept": "Households and Families", "predicateType": "int", "group": "S1101", "limit": 0, "attributes": "S1101_C05_003EA,S1101_C05_003M,S1101_C05_003MA"}, "S0601PR_C02_023E": {"label": "Estimate!!Native; born in Puerto Rico!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "int", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C02_023EA,S0601PR_C02_023M,S0601PR_C02_023MA"}, "S2702_C02_082E": {"label": "Estimate!!Total Uninsured!!Civilian noninstitutionalized workers 16 years and over!!OCCUPATION!!Production, transportation, and material moving occupations", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_082EA,S2702_C02_082M,S2702_C02_082MA"}, "S2201_C04_005E": {"label": "Estimate!!Percent households receiving food stamps/SNAP!!Households!!Other family:", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C04_005EA,S2201_C04_005M,S2201_C04_005MA"}, "S1501_C02_032E": {"label": "Estimate!!Percent!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!White alone, not Hispanic or Latino!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C02_032EA,S1501_C02_032M,S1501_C02_032MA"}, "S1001_C02_007E": {"label": "Estimate!!Total!!With grandparent responsible!!Grandchildren under 18 years living with a grandparent householder!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Grandchildren Characteristics", "predicateType": "float", "group": "S1001", "limit": 0, "attributes": "S1001_C02_007EA,S1001_C02_007M,S1001_C02_007MA"}, "S0601PR_C02_022E": {"label": "Estimate!!Native; born in Puerto Rico!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C02_022EA,S0601PR_C02_022M,S0601PR_C02_022MA"}, "S2201_C04_004E": {"label": "Estimate!!Percent households receiving food stamps/SNAP!!Households!!Married-couple family", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C04_004EA,S2201_C04_004M,S2201_C04_004MA"}, "S1101_C05_002E": {"label": "Estimate!!Nonfamily household!!HOUSEHOLDS!!Average household size", "concept": "Households and Families", "predicateType": "float", "group": "S1101", "limit": 0, "attributes": "S1101_C05_002EA,S1101_C05_002M,S1101_C05_002MA"}, "S2702_C02_083E": {"label": "Estimate!!Total Uninsured!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION ADJUSTED DOLLARS)!!Civilian noninstitutionalized population 16 years and over with earnings", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "int", "group": "S2702", "limit": 0, "attributes": "S2702_C02_083EA,S2702_C02_083M,S2702_C02_083MA"}, "S1001_C02_004E": {"label": "Estimate!!Total!!With grandparent responsible!!Grandchildren under 18 years living with a grandparent householder!!AGE!!12 to 17 years", "concept": "Grandchildren Characteristics", "predicateType": "float", "group": "S1001", "limit": 0, "attributes": "S1001_C02_004EA,S1001_C02_004M,S1001_C02_004MA"}, "S0102_C02_088E": {"label": "Estimate!!60 years and over!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!100 to 149 percent of the poverty level", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_088EA,S0102_C02_088M,S0102_C02_088MA"}, "S2701_C04_032E": {"label": "Estimate!!Uninsured!!Civilian noninstitutionalized population!!NATIVITY AND U.S. CITIZENSHIP STATUS!!Foreign born", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C04_032EA,S2701_C04_032M,S2701_C04_032MA"}, "S0601PR_C02_021E": {"label": "Estimate!!Native; born in Puerto Rico!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C02_021EA,S0601PR_C02_021M,S0601PR_C02_021MA"}, "S1101_C05_005E": {"label": "Estimate!!Nonfamily household!!AGE OF OWN CHILDREN!!Households with own children of the householder under 18 years", "concept": "Households and Families", "predicateType": "int", "group": "S1101", "limit": 0, "attributes": "S1101_C05_005EA,S1101_C05_005M,S1101_C05_005MA"}, "S2702_C02_084E": {"label": "Estimate!!Total Uninsured!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION ADJUSTED DOLLARS)!!Civilian noninstitutionalized population 16 years and over with earnings!!$1 to $4,999 or loss", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_084EA,S2702_C02_084M,S2702_C02_084MA"}, "S2201_C04_007E": {"label": "Estimate!!Percent households receiving food stamps/SNAP!!Households!!Other family:!!Female householder, no spouse present", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C04_007EA,S2201_C04_007M,S2201_C04_007MA"}, "S0102_C02_089E": {"label": "Estimate!!60 years and over!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!At or above 150 percent of the poverty level", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_089EA,S0102_C02_089M,S0102_C02_089MA"}, "S1001_C02_005E": {"label": "Estimate!!Total!!With grandparent responsible!!Grandchildren under 18 years living with a grandparent householder!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Grandchildren Characteristics", "predicateType": "float", "group": "S1001", "limit": 0, "attributes": "S1001_C02_005EA,S1001_C02_005M,S1001_C02_005MA"}, "S1501_C02_030E": {"label": "Estimate!!Percent!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!White alone!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C02_030EA,S1501_C02_030M,S1501_C02_030MA"}, "S2702_C02_085E": {"label": "Estimate!!Total Uninsured!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION ADJUSTED DOLLARS)!!Civilian noninstitutionalized population 16 years and over with earnings!!$5,000 to $14,999", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_085EA,S2702_C02_085M,S2702_C02_085MA"}, "S2701_C04_031E": {"label": "Estimate!!Uninsured!!Civilian noninstitutionalized population!!NATIVITY AND U.S. CITIZENSHIP STATUS!!Native born", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C04_031EA,S2701_C04_031M,S2701_C04_031MA"}, "S2201_C04_006E": {"label": "Estimate!!Percent households receiving food stamps/SNAP!!Households!!Other family:!!Male householder, no spouse present", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C04_006EA,S2201_C04_006M,S2201_C04_006MA"}, "S1101_C05_004E": {"label": "Estimate!!Nonfamily household!!FAMILIES!!Average family size", "concept": "Households and Families", "predicateType": "int", "group": "S1101", "limit": 0, "attributes": "S1101_C05_004EA,S1101_C05_004M,S1101_C05_004MA"}, "S0601PR_C02_020E": {"label": "Estimate!!Native; born in Puerto Rico!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C02_020EA,S0601PR_C02_020M,S0601PR_C02_020MA"}, "S2303_C01_032E": {"label": "Estimate!!Total!!Population 16 to 64 years!!Median age of workers 16 to 64 years", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C01_032EA,S2303_C01_032M,S2303_C01_032MA"}, "S1301_C01_009E": {"label": "Estimate!!Total!!Women 15 to 50 years!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C01_009EA,S1301_C01_009M,S1301_C01_009MA"}, "S2702_C02_086E": {"label": "Estimate!!Total Uninsured!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION ADJUSTED DOLLARS)!!Civilian noninstitutionalized population 16 years and over with earnings!!$15,000 to $24,999", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_086EA,S2702_C02_086M,S2702_C02_086MA"}, "S1101_C05_007E": {"label": "Estimate!!Nonfamily household!!AGE OF OWN CHILDREN!!Households with own children of the householder under 18 years!!Under 6 years and 6 to 17 years", "concept": "Households and Families", "predicateType": "int", "group": "S1101", "limit": 0, "attributes": "S1101_C05_007EA,S1101_C05_007M,S1101_C05_007MA"}, "S2303_C01_033E": {"label": "Estimate!!Total!!Population 16 to 64 years!!Workers 16 to 64 years who worked full-time, year-round", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C01_033EA,S2303_C01_033M,S2303_C01_033MA"}, "S1501_C02_040E": {"label": "Estimate!!Percent!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Asian alone", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C02_040EA,S1501_C02_040M,S1501_C02_040MA"}, "S1301_C01_008E": {"label": "Estimate!!Total!!Women 15 to 50 years!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C01_008EA,S1301_C01_008M,S1301_C01_008MA"}, "S2702_C02_087E": {"label": "Estimate!!Total Uninsured!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION ADJUSTED DOLLARS)!!Civilian noninstitutionalized population 16 years and over with earnings!!$25,000 to $34,999", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_087EA,S2702_C02_087M,S2702_C02_087MA"}, "S1703_C04_035E": {"label": "Estimate!!Less than 125 percent of the poverty level!!WORK STATUS!!Population 16 to 64 years!!Did not work", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C04_035EA,S1703_C04_035M,S1703_C04_035MA"}, "S1101_C05_006E": {"label": "Estimate!!Nonfamily household!!AGE OF OWN CHILDREN!!Households with own children of the householder under 18 years!!Under 6 years only", "concept": "Households and Families", "predicateType": "int", "group": "S1101", "limit": 0, "attributes": "S1101_C05_006EA,S1101_C05_006M,S1101_C05_006MA"}, "S1101_C05_009E": {"label": "Estimate!!Nonfamily household!!Total households", "concept": "Households and Families", "predicateType": "int", "group": "S1101", "limit": 0, "attributes": "S1101_C05_009EA,S1101_C05_009M,S1101_C05_009MA"}, "S0502_C01_139E": {"label": "Estimate!!Total!!Occupied housing units!!SELECTED CHARACTERISTICS!!No telephone service available", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_139EA,S0502_C01_139M,S0502_C01_139MA"}, "S2303_C01_030E": {"label": "Estimate!!Total!!Population 16 to 64 years!!USUAL HOURS WORKED!!Did not work", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C01_030EA,S2303_C01_030M,S2303_C01_030MA"}, "S2702_C02_088E": {"label": "Estimate!!Total Uninsured!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION ADJUSTED DOLLARS)!!Civilian noninstitutionalized population 16 years and over with earnings!!$35,000 to $49,999", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_088EA,S2702_C02_088M,S2702_C02_088MA"}, "S1101_C05_008E": {"label": "Estimate!!Nonfamily household!!AGE OF OWN CHILDREN!!Households with own children of the householder under 18 years!!6 to 17 years only", "concept": "Households and Families", "predicateType": "int", "group": "S1101", "limit": 0, "attributes": "S1101_C05_008EA,S1101_C05_008M,S1101_C05_008MA"}, "S0502_C01_138E": {"label": "Estimate!!Total!!Occupied housing units!!VEHICLES AVAILABLE!!1 or more", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_138EA,S0502_C01_138M,S0502_C01_138MA"}, "S2303_C01_031E": {"label": "Estimate!!Total!!Population 16 to 64 years!!Mean usual hours worked for workers", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C01_031EA,S2303_C01_031M,S2303_C01_031MA"}, "S2702_C02_089E": {"label": "Estimate!!Total Uninsured!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION ADJUSTED DOLLARS)!!Civilian noninstitutionalized population 16 years and over with earnings!!$50,000 to $74,999", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_089EA,S2702_C02_089M,S2702_C02_089MA"}, "S1301_C01_005E": {"label": "Estimate!!Total!!Women 15 to 50 years!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C01_005EA,S1301_C01_005M,S1301_C01_005MA"}, "S0502_C01_137E": {"label": "Estimate!!Total!!Occupied housing units!!VEHICLES AVAILABLE!!None", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_137EA,S0502_C01_137M,S0502_C01_137MA"}, "S0503_C02_029E": {"label": "Estimate!!Foreign-born; Born in Europe!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_029EA,S0503_C02_029M,S0503_C02_029MA"}, "S1301_C01_004E": {"label": "Estimate!!Total!!Women 15 to 50 years!!35 to 50 years", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C01_004EA,S1301_C01_004M,S1301_C01_004MA"}, "S0502_C01_136E": {"label": "Estimate!!Total!!Occupied housing units!!1.01 or more occupants per room", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_136EA,S0502_C01_136M,S0502_C01_136MA"}, "S0503_C02_028E": {"label": "Estimate!!Foreign-born; Born in Europe!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_028EA,S0503_C02_028M,S0503_C02_028MA"}, "S1301_C01_007E": {"label": "Estimate!!Total!!Women 15 to 50 years!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C01_007EA,S1301_C01_007M,S1301_C01_007MA"}, "S0502_C01_135E": {"label": "Estimate!!Total!!Occupied housing units!!Median number of rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_135EA,S0502_C01_135M,S0502_C01_135MA"}, "S0503_C02_027E": {"label": "Estimate!!Foreign-born; Born in Europe!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_027EA,S0503_C02_027M,S0503_C02_027MA"}, "S1301_C01_006E": {"label": "Estimate!!Total!!Women 15 to 50 years!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C01_006EA,S1301_C01_006M,S1301_C01_006MA"}, "S0502_C01_134E": {"label": "Estimate!!Total!!Occupied housing units!!ROOMS!!8 or more rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_134EA,S0502_C01_134M,S0502_C01_134MA"}, "S0503_C02_026E": {"label": "Estimate!!Foreign-born; Born in Europe!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_026EA,S0503_C02_026M,S0503_C02_026MA"}, "S0505_C01_020E": {"label": "Estimate!!Total!!Foreign-born population!!SEX AND AGE!!85 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_020EA,S0505_C01_020M,S0505_C01_020MA"}, "S0502_C01_133E": {"label": "Estimate!!Total!!Occupied housing units!!ROOMS!!6 or 7 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_133EA,S0502_C01_133M,S0502_C01_133MA"}, "S2701_C04_029E": {"label": "Estimate!!Uninsured!!Civilian noninstitutionalized population!!LIVING ARRANGEMENTS!!In family households!!In other families!!Female reference person, no spouse present", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C04_029EA,S2701_C04_029M,S2701_C04_029MA"}, "S0503_C02_025E": {"label": "Estimate!!Foreign-born; Born in Europe!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_025EA,S0503_C02_025M,S0503_C02_025MA"}, "S0505_C01_021E": {"label": "Estimate!!Total!!Foreign-born population!!SEX AND AGE!!Median age (years)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_021EA,S0505_C01_021M,S0505_C01_021MA"}, "S0102_C02_090E": {"label": "Estimate!!60 years and over!!Occupied housing units", "concept": "Population 60 Years and Over in the United States", "predicateType": "int", "group": "S0102", "limit": 0, "attributes": "S0102_C02_090EA,S0102_C02_090M,S0102_C02_090MA"}, "S0502_C01_132E": {"label": "Estimate!!Total!!Occupied housing units!!ROOMS!!4 or 5 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_132EA,S0502_C01_132M,S0502_C01_132MA"}, "S1703_C04_030E": {"label": "Estimate!!Less than 125 percent of the poverty level!!Population for whom poverty status is determined!!DISABILITY STATUS!!With any disability", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C04_030EA,S1703_C04_030M,S1703_C04_030MA"}, "S0503_C02_024E": {"label": "Estimate!!Foreign-born; Born in Europe!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_024EA,S0503_C02_024M,S0503_C02_024MA"}, "S0502_C01_131E": {"label": "Estimate!!Total!!Occupied housing units!!ROOMS!!2 or 3 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_131EA,S0502_C01_131M,S0502_C01_131MA"}, "S0503_C02_023E": {"label": "Estimate!!Foreign-born; Born in Europe!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_023EA,S0503_C02_023M,S0503_C02_023MA"}, "S0502_C01_130E": {"label": "Estimate!!Total!!Occupied housing units!!ROOMS!!1 room", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_130EA,S0502_C01_130M,S0502_C01_130MA"}, "S1703_C04_032E": {"label": "Estimate!!Less than 125 percent of the poverty level!!WORK STATUS!!Population 16 to 64 years", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C04_032EA,S1703_C04_032M,S1703_C04_032MA"}, "S0503_C02_022E": {"label": "Estimate!!Foreign-born; Born in Europe!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_022EA,S0503_C02_022M,S0503_C02_022MA"}, "S2507_C02_020E": {"label": "Estimate!!Percent owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!RATIO OF VALUE TO HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 2.0", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "float", "group": "S2507", "limit": 0, "attributes": "S2507_C02_020EA,S2507_C02_020M,S2507_C02_020MA"}, "S1703_C04_031E": {"label": "Estimate!!Less than 125 percent of the poverty level!!Population for whom poverty status is determined!!DISABILITY STATUS!!No disability", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C04_031EA,S1703_C04_031M,S1703_C04_031MA"}, "S0503_C02_021E": {"label": "Estimate!!Foreign-born; Born in Europe!!Foreign-born population!!SEX AND AGE!!Median age (years)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_021EA,S0503_C02_021M,S0503_C02_021MA"}, "S2507_C02_021E": {"label": "Estimate!!Percent owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!RATIO OF VALUE TO HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!2.0 to 2.9", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "float", "group": "S2507", "limit": 0, "attributes": "S2507_C02_021EA,S2507_C02_021M,S2507_C02_021MA"}, "S0503_C02_020E": {"label": "Estimate!!Foreign-born; Born in Europe!!Foreign-born population!!SEX AND AGE!!85 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_020EA,S0503_C02_020M,S0503_C02_020MA"}, "S1703_C04_034E": {"label": "Estimate!!Less than 125 percent of the poverty level!!WORK STATUS!!Population 16 to 64 years!!Worked less than full-time, year-round", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C04_034EA,S1703_C04_034M,S1703_C04_034MA"}, "S2507_C02_022E": {"label": "Estimate!!Percent owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!RATIO OF VALUE TO HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!3.0 to 3.9", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "float", "group": "S2507", "limit": 0, "attributes": "S2507_C02_022EA,S2507_C02_022M,S2507_C02_022MA"}, "S1703_C04_033E": {"label": "Estimate!!Less than 125 percent of the poverty level!!WORK STATUS!!Population 16 to 64 years!!Worked full-time, year-round", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C04_033EA,S1703_C04_033M,S1703_C04_033MA"}, "S0902_C01_014E": {"label": "Estimate!!Total!!HOUSEHOLD TYPE!!Population 15 to 19 years in households!!In female householder, no spouse present, family households", "concept": "Characteristics of Teenagers 15 to 19 Years Old", "predicateType": "float", "group": "S0902", "limit": 0, "attributes": "S0902_C01_014EA,S0902_C01_014M,S0902_C01_014MA"}, "S0102_C02_098E": {"label": "Estimate!!60 years and over!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_098EA,S0102_C02_098M,S0102_C02_098MA"}, "S0503_C02_042E": {"label": "Estimate!!Foreign-born; Born in Europe!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Nursery school, preschool", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_042EA,S0503_C02_042M,S0503_C02_042MA"}, "S2701_C04_046E": {"label": "Estimate!!Uninsured!!Civilian noninstitutionalized population!!EMPLOYMENT STATUS!!Civilian noninstitutionalized population 19 to 64 years!!Not in labor force", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C04_046EA,S2701_C04_046M,S2701_C04_046MA"}, "S2507_C02_035E": {"label": "Estimate!!Percent owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than $20,000!!20 to 29 percent", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "float", "group": "S2507", "limit": 0, "attributes": "S2507_C02_035EA,S2507_C02_035M,S2507_C02_035MA"}, "S0902_C01_013E": {"label": "Estimate!!Total!!HOUSEHOLD TYPE!!Population 15 to 19 years in households!!In male householder, no spouse present, family households", "concept": "Characteristics of Teenagers 15 to 19 Years Old", "predicateType": "float", "group": "S0902", "limit": 0, "attributes": "S0902_C01_013EA,S0902_C01_013M,S0902_C01_013MA"}, "S0102_C02_099E": {"label": "Estimate!!60 years and over!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_099EA,S0102_C02_099M,S0102_C02_099MA"}, "S0503_C02_041E": {"label": "Estimate!!Foreign-born; Born in Europe!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C02_041EA,S0503_C02_041M,S0503_C02_041MA"}, "S2701_C04_045E": {"label": "Estimate!!Uninsured!!Civilian noninstitutionalized population!!EMPLOYMENT STATUS!!Civilian noninstitutionalized population 19 to 64 years!!In labor force!!Unemployed", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C04_045EA,S2701_C04_045M,S2701_C04_045MA"}, "S2507_C02_036E": {"label": "Estimate!!Percent owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than $20,000!!30 percent or more", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "float", "group": "S2507", "limit": 0, "attributes": "S2507_C02_036EA,S2507_C02_036M,S2507_C02_036MA"}, "S0902_C01_016E": {"label": "Estimate!!Total!!Population 16 to 19 years", "concept": "Characteristics of Teenagers 15 to 19 Years Old", "predicateType": "int", "group": "S0902", "limit": 0, "attributes": "S0902_C01_016EA,S0902_C01_016M,S0902_C01_016MA"}, "S0505_C01_038E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_038EA,S0505_C01_038M,S0505_C01_038MA"}, "S2701_C04_048E": {"label": "Estimate!!Uninsured!!Civilian noninstitutionalized population!!WORK EXPERIENCE!!Civilian noninstitutionalized population 19 to 64 years!!Worked full-time, year round in the past 12 months", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C04_048EA,S2701_C04_048M,S2701_C04_048MA"}, "S0102_C02_096E": {"label": "Estimate!!60 years and over!!Occupied housing units!!SELECTED CHARACTERISTICS!!1.01 or more occupants per room", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_096EA,S0102_C02_096M,S0102_C02_096MA"}, "S0503_C02_040E": {"label": "Estimate!!Foreign-born; Born in Europe!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_040EA,S0503_C02_040M,S0503_C02_040MA"}, "S2507_C02_037E": {"label": "Estimate!!Percent owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$20,000 to $34,999", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "float", "group": "S2507", "limit": 0, "attributes": "S2507_C02_037EA,S2507_C02_037M,S2507_C02_037MA"}, "S0902_C01_015E": {"label": "Estimate!!Total!!HOUSEHOLD TYPE!!Population 15 to 19 years in households!!In nonfamily households", "concept": "Characteristics of Teenagers 15 to 19 Years Old", "predicateType": "float", "group": "S0902", "limit": 0, "attributes": "S0902_C01_015EA,S0902_C01_015M,S0902_C01_015MA"}, "S0505_C01_039E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over!!Divorced or separated", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_039EA,S0505_C01_039M,S0505_C01_039MA"}, "S0102_C02_097E": {"label": "Estimate!!60 years and over!!Owner-occupied housing units", "concept": "Population 60 Years and Over in the United States", "predicateType": "int", "group": "S0102", "limit": 0, "attributes": "S0102_C02_097EA,S0102_C02_097M,S0102_C02_097MA"}, "S2701_C04_047E": {"label": "Estimate!!Uninsured!!Civilian noninstitutionalized population!!WORK EXPERIENCE!!Civilian noninstitutionalized population 19 to 64 years", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C04_047EA,S2701_C04_047M,S2701_C04_047MA"}, "S2507_C02_038E": {"label": "Estimate!!Percent owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$20,000 to $34,999!!Less than 20 percent", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "float", "group": "S2507", "limit": 0, "attributes": "S2507_C02_038EA,S2507_C02_038M,S2507_C02_038MA"}, "S0505_C01_036E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C01_036EA,S0505_C01_036M,S0505_C01_036MA"}, "S0102_C02_094E": {"label": "Estimate!!60 years and over!!Occupied housing units!!HOUSING TENURE!!Average household size of renter-occupied unit", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_094EA,S0102_C02_094M,S0102_C02_094MA"}, "S1201_C03_032E": {"label": "Estimate!!Widowed!!PERCENT ALLOCATED!!Marital status", "concept": "Marital Status", "predicateType": "int", "group": "S1201", "limit": 0, "attributes": "S1201_C03_032EA,S1201_C03_032M,S1201_C03_032MA"}, "S2507_C02_039E": {"label": "Estimate!!Percent owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$20,000 to $34,999!!20 to 29 percent", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "float", "group": "S2507", "limit": 0, "attributes": "S2507_C02_039EA,S2507_C02_039M,S2507_C02_039MA"}, "S0902_C01_010E": {"label": "Estimate!!Total!!Population 15 to 19 years!!MARITAL STATUS AND FERTILITY!!Female!!Female with a birth in the past 12 months", "concept": "Characteristics of Teenagers 15 to 19 Years Old", "predicateType": "float", "group": "S0902", "limit": 0, "attributes": "S0902_C01_010EA,S0902_C01_010M,S0902_C01_010MA"}, "S2701_C04_049E": {"label": "Estimate!!Uninsured!!Civilian noninstitutionalized population!!WORK EXPERIENCE!!Civilian noninstitutionalized population 19 to 64 years!!Worked less than full-time, year round in the past 12 months", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C04_049EA,S2701_C04_049M,S2701_C04_049MA"}, "S0505_C01_037E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_037EA,S0505_C01_037M,S0505_C01_037MA"}, "S0102_C02_095E": {"label": "Estimate!!60 years and over!!Occupied housing units!!SELECTED CHARACTERISTICS!!No telephone service available", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_095EA,S0102_C02_095M,S0102_C02_095MA"}, "S1201_C03_031E": {"label": "Estimate!!Widowed!!SUMMARY INDICATOR!!Ratio of Unmarried Men 15 to 44 years per 100 unmarried women 15 to 44 years", "concept": "Marital Status", "predicateType": "int", "group": "S1201", "limit": 0, "attributes": "S1201_C03_031EA,S1201_C03_031M,S1201_C03_031MA"}, "S1501_C02_049E": {"label": "Estimate!!Percent!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Two or more races", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C02_049EA,S1501_C02_049M,S1501_C02_049MA"}, "S0102_C02_092E": {"label": "Estimate!!60 years and over!!Occupied housing units!!HOUSING TENURE!!Renter-occupied housing units", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_092EA,S0102_C02_092M,S0102_C02_092MA"}, "S1201_C03_030E": {"label": "Estimate!!Widowed!!LABOR FORCE PARTICIPATION!!Females 16 years and over!!In labor force", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C03_030EA,S1201_C03_030M,S1201_C03_030MA"}, "S0505_C01_034E": {"label": "Estimate!!Total!!Foreign-born population!!Average household size", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_034EA,S0505_C01_034M,S0505_C01_034MA"}, "S0102_C02_091E": {"label": "Estimate!!60 years and over!!Occupied housing units!!HOUSING TENURE!!Owner-occupied housing units", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_091EA,S0102_C02_091M,S0102_C02_091MA"}, "S0902_C01_012E": {"label": "Estimate!!Total!!HOUSEHOLD TYPE!!Population 15 to 19 years in households!!In married-couple family households", "concept": "Characteristics of Teenagers 15 to 19 Years Old", "predicateType": "float", "group": "S0902", "limit": 0, "attributes": "S0902_C01_012EA,S0902_C01_012M,S0902_C01_012MA"}, "S0102_C02_093E": {"label": "Estimate!!60 years and over!!Occupied housing units!!HOUSING TENURE!!Average household size of owner-occupied unit", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_093EA,S0102_C02_093M,S0102_C02_093MA"}, "S0505_C01_035E": {"label": "Estimate!!Total!!Foreign-born population!!Average family size", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_035EA,S0505_C01_035M,S0505_C01_035MA"}, "S0902_C01_011E": {"label": "Estimate!!Total!!HOUSEHOLD TYPE!!Population 15 to 19 years in households", "concept": "Characteristics of Teenagers 15 to 19 Years Old", "predicateType": "int", "group": "S0902", "limit": 0, "attributes": "S0902_C01_011EA,S0902_C01_011M,S0902_C01_011MA"}, "S1501_C02_047E": {"label": "Estimate!!Percent!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Some other race alone!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C02_047EA,S1501_C02_047M,S1501_C02_047MA"}, "S2303_C01_028E": {"label": "Estimate!!Total!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 1 to 14 hours per week!!14 to 26 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C01_028EA,S2303_C01_028M,S2303_C01_028MA"}, "S1001_C02_014E": {"label": "Estimate!!Total!!With grandparent responsible!!Grandchildren under 18 years living with a grandparent householder!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Grandchildren Characteristics", "predicateType": "float", "group": "S1001", "limit": 0, "attributes": "S1001_C02_014EA,S1001_C02_014M,S1001_C02_014MA"}, "S0601PR_C02_039E": {"label": "Estimate!!Native; born in Puerto Rico!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$1 to $9,999 or loss", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C02_039EA,S0601PR_C02_039M,S0601PR_C02_039MA"}, "S1301_C01_013E": {"label": "Estimate!!Total!!Women 15 to 50 years!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C01_013EA,S1301_C01_013M,S1301_C01_013MA"}, "S1101_C05_011E": {"label": "Estimate!!Nonfamily household!!Total households!!SELECTED HOUSEHOLDS BY TYPE!!Households with one or more people 60 years and over", "concept": "Households and Families", "predicateType": "float", "group": "S1101", "limit": 0, "attributes": "S1101_C05_011EA,S1101_C05_011M,S1101_C05_011MA"}, "S1501_C02_048E": {"label": "Estimate!!Percent!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Some other race alone!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C02_048EA,S1501_C02_048M,S1501_C02_048MA"}, "S2303_C01_029E": {"label": "Estimate!!Total!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 1 to 14 hours per week!!1 to 13 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C01_029EA,S2303_C01_029M,S2303_C01_029MA"}, "S1301_C01_012E": {"label": "Estimate!!Total!!Women 15 to 50 years!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C01_012EA,S1301_C01_012M,S1301_C01_012MA"}, "S0601PR_C02_038E": {"label": "Estimate!!Native; born in Puerto Rico!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "int", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C02_038EA,S0601PR_C02_038M,S0601PR_C02_038MA"}, "S1001_C02_015E": {"label": "Estimate!!Total!!With grandparent responsible!!Grandchildren under 18 years living with a grandparent householder!!NATIVITY!!Native", "concept": "Grandchildren Characteristics", "predicateType": "float", "group": "S1001", "limit": 0, "attributes": "S1001_C02_015EA,S1001_C02_015M,S1001_C02_015MA"}, "S1101_C05_010E": {"label": "Estimate!!Nonfamily household!!Total households!!SELECTED HOUSEHOLDS BY TYPE!!Households with one or more people under 18 years", "concept": "Households and Families", "predicateType": "float", "group": "S1101", "limit": 0, "attributes": "S1101_C05_010EA,S1101_C05_010M,S1101_C05_010MA"}, "S1703_C04_019E": {"label": "Estimate!!Less than 125 percent of the poverty level!!Population for whom poverty status is determined!!LIVING ARRANGEMENT!!In family households!!In married-couple family", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C04_019EA,S1703_C04_019M,S1703_C04_019MA"}, "S2303_C01_026E": {"label": "Estimate!!Total!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 1 to 14 hours per week!!40 to 47 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C01_026EA,S2303_C01_026M,S2303_C01_026MA"}, "S1501_C02_045E": {"label": "Estimate!!Percent!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Native Hawaiian and Other Pacific Islander alone!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C02_045EA,S1501_C02_045M,S1501_C02_045MA"}, "S0601PR_C02_037E": {"label": "Estimate!!Native; born in Puerto Rico!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Graduate or professional degree", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C02_037EA,S0601PR_C02_037M,S0601PR_C02_037MA"}, "S1001_C02_012E": {"label": "Estimate!!Total!!With grandparent responsible!!Grandchildren under 18 years living with a grandparent householder!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Grandchildren Characteristics", "predicateType": "float", "group": "S1001", "limit": 0, "attributes": "S1001_C02_012EA,S1001_C02_012M,S1001_C02_012MA"}, "S2401_C05_029E": {"label": "Estimate!!Percent Female!!Civilian employed population 16 years and over!!Natural resources, construction, and maintenance occupations:", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2401", "limit": 0, "attributes": "S2401_C05_029EA,S2401_C05_029M,S2401_C05_029MA"}, "S1301_C01_015E": {"label": "Estimate!!Total!!Women 15 to 50 years!!NATIVITY!!Native", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C01_015EA,S1301_C01_015M,S1301_C01_015MA"}, "S2701_C04_040E": {"label": "Estimate!!Uninsured!!Civilian noninstitutionalized population!!EDUCATIONAL ATTAINMENT!!Civilian noninstitutionalized population 26 years and over!!Some college or associate's degree", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C04_040EA,S2701_C04_040M,S2701_C04_040MA"}, "S1101_C05_013E": {"label": "Estimate!!Nonfamily household!!Total households!!SELECTED HOUSEHOLDS BY TYPE!!Householder living alone", "concept": "Households and Families", "predicateType": "float", "group": "S1101", "limit": 0, "attributes": "S1101_C05_013EA,S1101_C05_013M,S1101_C05_013MA"}, "S1501_C02_046E": {"label": "Estimate!!Percent!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Some other race alone", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C02_046EA,S1501_C02_046M,S1501_C02_046MA"}, "S0601PR_C02_036E": {"label": "Estimate!!Native; born in Puerto Rico!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C02_036EA,S0601PR_C02_036M,S0601PR_C02_036MA"}, "S2303_C01_027E": {"label": "Estimate!!Total!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 1 to 14 hours per week!!27 to 39 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C01_027EA,S2303_C01_027M,S2303_C01_027MA"}, "S1001_C02_013E": {"label": "Estimate!!Total!!With grandparent responsible!!Grandchildren under 18 years living with a grandparent householder!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Grandchildren Characteristics", "predicateType": "float", "group": "S1001", "limit": 0, "attributes": "S1001_C02_013EA,S1001_C02_013M,S1001_C02_013MA"}, "S1301_C01_014E": {"label": "Estimate!!Total!!Women 15 to 50 years!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C01_014EA,S1301_C01_014M,S1301_C01_014MA"}, "S1101_C05_012E": {"label": "Estimate!!Nonfamily household!!Total households!!SELECTED HOUSEHOLDS BY TYPE!!Households with one or more people 65 years and over", "concept": "Households and Families", "predicateType": "float", "group": "S1101", "limit": 0, "attributes": "S1101_C05_012EA,S1101_C05_012M,S1101_C05_012MA"}, "S1501_C02_043E": {"label": "Estimate!!Percent!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Native Hawaiian and Other Pacific Islander alone", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C02_043EA,S1501_C02_043M,S1501_C02_043MA"}, "S2303_C01_024E": {"label": "Estimate!!Total!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 1 to 14 hours per week!!50 to 52 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C01_024EA,S2303_C01_024M,S2303_C01_024MA"}, "S0902_C01_018E": {"label": "Estimate!!Total!!Population 16 to 19 years!!LABOR FORCE STATUS!!In the labor force", "concept": "Characteristics of Teenagers 15 to 19 Years Old", "predicateType": "float", "group": "S0902", "limit": 0, "attributes": "S0902_C01_018EA,S0902_C01_018M,S0902_C01_018MA"}, "S1001_C02_018E": {"label": "Estimate!!Total!!With grandparent responsible!!Grandchildren under 18 years living with a grandparent householder", "concept": "Grandchildren Characteristics", "predicateType": "int", "group": "S1001", "limit": 0, "attributes": "S1001_C02_018EA,S1001_C02_018M,S1001_C02_018MA"}, "S2701_C04_042E": {"label": "Estimate!!Uninsured!!Civilian noninstitutionalized population!!EMPLOYMENT STATUS!!Civilian noninstitutionalized population 19 to 64 years", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C04_042EA,S2701_C04_042M,S2701_C04_042MA"}, "S2401_C05_027E": {"label": "Estimate!!Percent Female!!Civilian employed population 16 years and over!!Sales and office occupations:!!Sales and related occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2401", "limit": 0, "attributes": "S2401_C05_027EA,S2401_C05_027M,S2401_C05_027MA"}, "S0601PR_C02_035E": {"label": "Estimate!!Native; born in Puerto Rico!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college or associate's degree", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C02_035EA,S0601PR_C02_035M,S0601PR_C02_035MA"}, "S1101_C05_015E": {"label": "Estimate!!Nonfamily household!!Total households!!UNITS IN STRUCTURE!!1-unit structures", "concept": "Households and Families", "predicateType": "float", "group": "S1101", "limit": 0, "attributes": "S1101_C05_015EA,S1101_C05_015M,S1101_C05_015MA"}, "S2702_C02_070E": {"label": "Estimate!!Total Uninsured!!Civilian noninstitutionalized workers 16 years and over!!INDUSTRY!!Transportation and warehousing, and utilities", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_070EA,S2702_C02_070M,S2702_C02_070MA"}, "S1501_C02_044E": {"label": "Estimate!!Percent!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Native Hawaiian and Other Pacific Islander alone!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C02_044EA,S1501_C02_044M,S1501_C02_044MA"}, "S2303_C01_025E": {"label": "Estimate!!Total!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 1 to 14 hours per week!!48 to 49 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C01_025EA,S2303_C01_025M,S2303_C01_025MA"}, "S0902_C01_017E": {"label": "Estimate!!Total!!Population 16 to 19 years!!IDLENESS!!Not enrolled in school and not in the labor force", "concept": "Characteristics of Teenagers 15 to 19 Years Old", "predicateType": "float", "group": "S0902", "limit": 0, "attributes": "S0902_C01_017EA,S0902_C01_017M,S0902_C01_017MA"}, "S2401_C05_028E": {"label": "Estimate!!Percent Female!!Civilian employed population 16 years and over!!Sales and office occupations:!!Office and administrative support occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2401", "limit": 0, "attributes": "S2401_C05_028EA,S2401_C05_028M,S2401_C05_028MA"}, "S1001_C02_019E": {"label": "Estimate!!Total!!With grandparent responsible!!Grandchildren under 18 years living with a grandparent householder!!PUBLIC ASSISTANCE IN THE PAST 12 MONTHS!!Grandchildren living in households with Supplemental Security Income (SSI), cash public assistance income, or Food Stamp/SNAP benefits", "concept": "Grandchildren Characteristics", "predicateType": "float", "group": "S1001", "limit": 0, "attributes": "S1001_C02_019EA,S1001_C02_019M,S1001_C02_019MA"}, "S2701_C04_041E": {"label": "Estimate!!Uninsured!!Civilian noninstitutionalized population!!EDUCATIONAL ATTAINMENT!!Civilian noninstitutionalized population 26 years and over!!Bachelor's degree or higher", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C04_041EA,S2701_C04_041M,S2701_C04_041MA"}, "S1101_C05_014E": {"label": "Estimate!!Nonfamily household!!Total households!!SELECTED HOUSEHOLDS BY TYPE!!Householder living alone!!65 years and over", "concept": "Households and Families", "predicateType": "float", "group": "S1101", "limit": 0, "attributes": "S1101_C05_014EA,S1101_C05_014M,S1101_C05_014MA"}, "S0601PR_C02_034E": {"label": "Estimate!!Native; born in Puerto Rico!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate (includes equivalency)", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C02_034EA,S0601PR_C02_034M,S0601PR_C02_034MA"}, "S2702_C02_071E": {"label": "Estimate!!Total Uninsured!!Civilian noninstitutionalized workers 16 years and over!!INDUSTRY!!Information", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_071EA,S2702_C02_071M,S2702_C02_071MA"}, "S0502_C01_119E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_119EA,S0502_C01_119M,S0502_C01_119MA"}, "S1301_C01_011E": {"label": "Estimate!!Total!!Women 15 to 50 years!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C01_011EA,S1301_C01_011M,S1301_C01_011MA"}, "S1001_C02_016E": {"label": "Estimate!!Total!!With grandparent responsible!!Grandchildren under 18 years living with a grandparent householder!!NATIVITY!!Foreign born", "concept": "Grandchildren Characteristics", "predicateType": "float", "group": "S1001", "limit": 0, "attributes": "S1001_C02_016EA,S1001_C02_016M,S1001_C02_016MA"}, "S2303_C01_022E": {"label": "Estimate!!Total!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 15 to 34 hours per week!!1 to 13 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C01_022EA,S2303_C01_022M,S2303_C01_022MA"}, "S1501_C02_041E": {"label": "Estimate!!Percent!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Asian alone!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C02_041EA,S1501_C02_041M,S1501_C02_041MA"}, "S2401_C05_025E": {"label": "Estimate!!Percent Female!!Civilian employed population 16 years and over!!Service occupations:!!Personal care and service occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2401", "limit": 0, "attributes": "S2401_C05_025EA,S2401_C05_025M,S2401_C05_025MA"}, "S2701_C04_044E": {"label": "Estimate!!Uninsured!!Civilian noninstitutionalized population!!EMPLOYMENT STATUS!!Civilian noninstitutionalized population 19 to 64 years!!In labor force!!Employed", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C04_044EA,S2701_C04_044M,S2701_C04_044MA"}, "S0601PR_C02_033E": {"label": "Estimate!!Native; born in Puerto Rico!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than high school graduate", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C02_033EA,S0601PR_C02_033M,S0601PR_C02_033MA"}, "S2501_C03_010E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Married-couple family", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C03_010EA,S2501_C03_010M,S2501_C03_010MA"}, "S2702_C02_072E": {"label": "Estimate!!Total Uninsured!!Civilian noninstitutionalized workers 16 years and over!!INDUSTRY!!Finance and insurance, and real estate and rental and leasing", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_072EA,S2702_C02_072M,S2702_C02_072MA"}, "S1101_C05_017E": {"label": "Estimate!!Nonfamily household!!Total households!!UNITS IN STRUCTURE!!Mobile homes and all other types of units", "concept": "Households and Families", "predicateType": "float", "group": "S1101", "limit": 0, "attributes": "S1101_C05_017EA,S1101_C05_017M,S1101_C05_017MA"}, "S2303_C01_023E": {"label": "Estimate!!Total!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 1 to 14 hours per week", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C01_023EA,S2303_C01_023M,S2303_C01_023MA"}, "S1301_C01_010E": {"label": "Estimate!!Total!!Women 15 to 50 years!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C01_010EA,S1301_C01_010M,S1301_C01_010MA"}, "S0502_C01_118E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_118EA,S0502_C01_118M,S0502_C01_118MA"}, "S1001_C02_017E": {"label": "Estimate!!Total!!With grandparent responsible!!Special Subject!!Median income (dollars)", "concept": "Grandchildren Characteristics", "predicateType": "int", "group": "S1001", "limit": 0, "attributes": "S1001_C02_017EA,S1001_C02_017M,S1001_C02_017MA"}, "S1501_C02_042E": {"label": "Estimate!!Percent!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Asian alone!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C02_042EA,S1501_C02_042M,S1501_C02_042MA"}, "S2701_C04_043E": {"label": "Estimate!!Uninsured!!Civilian noninstitutionalized population!!EMPLOYMENT STATUS!!Civilian noninstitutionalized population 19 to 64 years!!In labor force", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C04_043EA,S2701_C04_043M,S2701_C04_043MA"}, "S2401_C05_026E": {"label": "Estimate!!Percent Female!!Civilian employed population 16 years and over!!Sales and office occupations:", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2401", "limit": 0, "attributes": "S2401_C05_026EA,S2401_C05_026M,S2401_C05_026MA"}, "S2501_C03_011E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Married-couple family!!Householder 15 to 34 years", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C03_011EA,S2501_C03_011M,S2501_C03_011MA"}, "S0601PR_C02_032E": {"label": "Estimate!!Native; born in Puerto Rico!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "int", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C02_032EA,S0601PR_C02_032M,S0601PR_C02_032MA"}, "S1101_C05_016E": {"label": "Estimate!!Nonfamily household!!Total households!!UNITS IN STRUCTURE!!2-or-more-unit structures", "concept": "Households and Families", "predicateType": "float", "group": "S1101", "limit": 0, "attributes": "S1101_C05_016EA,S1101_C05_016M,S1101_C05_016MA"}, "S2702_C02_073E": {"label": "Estimate!!Total Uninsured!!Civilian noninstitutionalized workers 16 years and over!!INDUSTRY!!Professional, scientific, and management, and administrative and waste management services", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_073EA,S2702_C02_073M,S2702_C02_073MA"}, "S1101_C05_019E": {"label": "Estimate!!Nonfamily household!!Total households!!HOUSING TENURE!!Renter-occupied housing units", "concept": "Households and Families", "predicateType": "float", "group": "S1101", "limit": 0, "attributes": "S1101_C05_019EA,S1101_C05_019M,S1101_C05_019MA"}, "S0502_C01_129E": {"label": "Estimate!!Total!!Occupied housing units!!HOUSING TENURE!!Average household size of renter-occupied unit", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_129EA,S0502_C01_129M,S0502_C01_129MA"}, "S1501_C02_051E": {"label": "Estimate!!Percent!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Two or more races!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C02_051EA,S1501_C02_051M,S1501_C02_051MA"}, "S2303_C01_020E": {"label": "Estimate!!Total!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 15 to 34 hours per week!!27 to 39 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C01_020EA,S2303_C01_020M,S2303_C01_020MA"}, "S2702_C02_074E": {"label": "Estimate!!Total Uninsured!!Civilian noninstitutionalized workers 16 years and over!!INDUSTRY!!Educational services, and health care and social assistance", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_074EA,S2702_C02_074M,S2702_C02_074MA"}, "S2401_C05_035E": {"label": "Estimate!!Percent Female!!Civilian employed population 16 years and over!!Production, transportation, and material moving occupations:!!Transportation occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2401", "limit": 0, "attributes": "S2401_C05_035EA,S2401_C05_035M,S2401_C05_035MA"}, "S1703_C04_024E": {"label": "Estimate!!Less than 125 percent of the poverty level!!Population for whom poverty status is determined!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate (includes equivalency)", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C04_024EA,S1703_C04_024M,S1703_C04_024MA"}, "S0601PR_C02_031E": {"label": "Estimate!!Native; born in Puerto Rico!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C02_031EA,S0601PR_C02_031M,S0601PR_C02_031MA"}, "S0502_C01_128E": {"label": "Estimate!!Total!!Occupied housing units!!HOUSING TENURE!!Average household size of owner-occupied unit", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_128EA,S0502_C01_128M,S0502_C01_128MA"}, "S2303_C01_021E": {"label": "Estimate!!Total!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 15 to 34 hours per week!!14 to 26 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C01_021EA,S2303_C01_021M,S2303_C01_021MA"}, "S1501_C02_052E": {"label": "Estimate!!Percent!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Hispanic or Latino Origin", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C02_052EA,S1501_C02_052M,S1501_C02_052MA"}, "S2702_C02_075E": {"label": "Estimate!!Total Uninsured!!Civilian noninstitutionalized workers 16 years and over!!INDUSTRY!!Arts, entertainment, and recreation, and accommodation and food services", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_075EA,S2702_C02_075M,S2702_C02_075MA"}, "S2401_C05_036E": {"label": "Estimate!!Percent Female!!Civilian employed population 16 years and over!!Production, transportation, and material moving occupations:!!Material moving occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2401", "limit": 0, "attributes": "S2401_C05_036EA,S2401_C05_036M,S2401_C05_036MA"}, "S1703_C04_023E": {"label": "Estimate!!Less than 125 percent of the poverty level!!Population for whom poverty status is determined!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than high school graduate", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C04_023EA,S1703_C04_023M,S1703_C04_023MA"}, "S2501_C03_001E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C03_001EA,S2501_C03_001M,S2501_C03_001MA"}, "S1101_C05_018E": {"label": "Estimate!!Nonfamily household!!Total households!!HOUSING TENURE!!Owner-occupied housing units", "concept": "Households and Families", "predicateType": "float", "group": "S1101", "limit": 0, "attributes": "S1101_C05_018EA,S1101_C05_018M,S1101_C05_018MA"}, "S0601PR_C02_030E": {"label": "Estimate!!Native; born in Puerto Rico!!MARITAL STATUS!!Population 15 years and over!!Divorced or separated", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C02_030EA,S0601PR_C02_030M,S0601PR_C02_030MA"}, "S0502_C01_127E": {"label": "Estimate!!Total!!Occupied housing units!!HOUSING TENURE!!Renter-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_127EA,S0502_C01_127M,S0502_C01_127MA"}, "S2401_C05_033E": {"label": "Estimate!!Percent Female!!Civilian employed population 16 years and over!!Production, transportation, and material moving occupations:", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2401", "limit": 0, "attributes": "S2401_C05_033EA,S2401_C05_033M,S2401_C05_033MA"}, "S2702_C02_076E": {"label": "Estimate!!Total Uninsured!!Civilian noninstitutionalized workers 16 years and over!!INDUSTRY!!Other services (except public administration)", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_076EA,S2702_C02_076M,S2702_C02_076MA"}, "S2501_C03_002E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!HOUSEHOLD SIZE!!1-person household", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C03_002EA,S2501_C03_002M,S2501_C03_002MA"}, "S1703_C04_026E": {"label": "Estimate!!Less than 125 percent of the poverty level!!Population for whom poverty status is determined!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree or higher", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C04_026EA,S1703_C04_026M,S1703_C04_026MA"}, "S1501_C02_050E": {"label": "Estimate!!Percent!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Two or more races!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C02_050EA,S1501_C02_050M,S1501_C02_050MA"}, "S2401_C05_034E": {"label": "Estimate!!Percent Female!!Civilian employed population 16 years and over!!Production, transportation, and material moving occupations:!!Production occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2401", "limit": 0, "attributes": "S2401_C05_034EA,S2401_C05_034M,S2401_C05_034MA"}, "S2702_C02_077E": {"label": "Estimate!!Total Uninsured!!Civilian noninstitutionalized workers 16 years and over!!INDUSTRY!!Public administration", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_077EA,S2702_C02_077M,S2702_C02_077MA"}, "S0502_C01_126E": {"label": "Estimate!!Total!!Occupied housing units!!HOUSING TENURE!!Owner-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_126EA,S0502_C01_126M,S0502_C01_126MA"}, "S1703_C04_025E": {"label": "Estimate!!Less than 125 percent of the poverty level!!Population for whom poverty status is determined!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college or associate's degree", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C04_025EA,S1703_C04_025M,S1703_C04_025MA"}, "S2501_C03_003E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!HOUSEHOLD SIZE!!2-person household", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C03_003EA,S2501_C03_003M,S2501_C03_003MA"}, "S1001_C02_010E": {"label": "Estimate!!Total!!With grandparent responsible!!Grandchildren under 18 years living with a grandparent householder!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Grandchildren Characteristics", "predicateType": "float", "group": "S1001", "limit": 0, "attributes": "S1001_C02_010EA,S1001_C02_010M,S1001_C02_010MA"}, "S1811_C02_056E": {"label": "Estimate!!With a Disability!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population Age 16 and over for whom poverty status is determined!!At or above 150 percent of the poverty level", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C02_056EA,S1811_C02_056M,S1811_C02_056MA"}, "S1301_C01_017E": {"label": "Estimate!!Total!!Women 15 to 50 years!!EDUCATIONAL ATTAINMENT!!Less than high school graduate", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C01_017EA,S1301_C01_017M,S1301_C01_017MA"}, "S2401_C05_031E": {"label": "Estimate!!Percent Female!!Civilian employed population 16 years and over!!Natural resources, construction, and maintenance occupations:!!Construction and extraction occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2401", "limit": 0, "attributes": "S2401_C05_031EA,S2401_C05_031M,S2401_C05_031MA"}, "S2702_C02_078E": {"label": "Estimate!!Total Uninsured!!Civilian noninstitutionalized workers 16 years and over!!OCCUPATION!!Management, business, science, and arts occupations", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_078EA,S2702_C02_078M,S2702_C02_078MA"}, "S0502_C01_125E": {"label": "Estimate!!Total!!Occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C01_125EA,S0502_C01_125M,S0502_C01_125MA"}, "S1703_C04_028E": {"label": "Estimate!!Less than 125 percent of the poverty level!!Population for whom poverty status is determined!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C04_028EA,S1703_C04_028M,S1703_C04_028MA"}, "S2501_C03_004E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!HOUSEHOLD SIZE!!3-person household", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C03_004EA,S2501_C03_004M,S2501_C03_004MA"}, "S1001_C02_011E": {"label": "Estimate!!Total!!With grandparent responsible!!Grandchildren under 18 years living with a grandparent householder!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Grandchildren Characteristics", "predicateType": "float", "group": "S1001", "limit": 0, "attributes": "S1001_C02_011EA,S1001_C02_011M,S1001_C02_011MA"}, "S1301_C01_016E": {"label": "Estimate!!Total!!Women 15 to 50 years!!NATIVITY!!Foreign born", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C01_016EA,S1301_C01_016M,S1301_C01_016MA"}, "S2401_C05_032E": {"label": "Estimate!!Percent Female!!Civilian employed population 16 years and over!!Natural resources, construction, and maintenance occupations:!!Installation, maintenance, and repair occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2401", "limit": 0, "attributes": "S2401_C05_032EA,S2401_C05_032M,S2401_C05_032MA"}, "S2702_C02_079E": {"label": "Estimate!!Total Uninsured!!Civilian noninstitutionalized workers 16 years and over!!OCCUPATION!!Service occupations", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_079EA,S2702_C02_079M,S2702_C02_079MA"}, "S0502_C01_124E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_124EA,S0502_C01_124M,S0502_C01_124MA"}, "S1703_C04_027E": {"label": "Estimate!!Less than 125 percent of the poverty level!!Population for whom poverty status is determined!!NATIVITY AND CITIZENSHIP STATUS!!Native", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C04_027EA,S1703_C04_027M,S1703_C04_027MA"}, "S2501_C03_005E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!HOUSEHOLD SIZE!!4-or-more-person household", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C03_005EA,S2501_C03_005M,S2501_C03_005MA"}, "S1811_C02_054E": {"label": "Estimate!!With a Disability!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population Age 16 and over for whom poverty status is determined!!Below 100 percent of the poverty level", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C02_054EA,S1811_C02_054M,S1811_C02_054MA"}, "S1301_C01_019E": {"label": "Estimate!!Total!!Women 15 to 50 years!!EDUCATIONAL ATTAINMENT!!Some college or associate's degree", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C01_019EA,S1301_C01_019M,S1301_C01_019MA"}, "S0502_C01_123E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_123EA,S0502_C01_123M,S0502_C01_123MA"}, "S2501_C03_006E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!OCCUPANTS PER ROOM!!1.00 or less occupants per room", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C03_006EA,S2501_C03_006M,S2501_C03_006MA"}, "S2501_C03_007E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!OCCUPANTS PER ROOM!!1.01 to 1.50 occupants per room", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C03_007EA,S2501_C03_007M,S2501_C03_007MA"}, "S1811_C02_055E": {"label": "Estimate!!With a Disability!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population Age 16 and over for whom poverty status is determined!!100 to 149 percent of the poverty level", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C02_055EA,S1811_C02_055M,S1811_C02_055MA"}, "S0503_C02_039E": {"label": "Estimate!!Foreign-born; Born in Europe!!MARITAL STATUS!!Population 15 years and over!!Divorced or separated", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_039EA,S0503_C02_039M,S0503_C02_039MA"}, "S1301_C01_018E": {"label": "Estimate!!Total!!Women 15 to 50 years!!EDUCATIONAL ATTAINMENT!!High school graduate (includes equivalency)", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C01_018EA,S1301_C01_018M,S1301_C01_018MA"}, "S0502_C01_122E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_122EA,S0502_C01_122M,S0502_C01_122MA"}, "S2401_C05_030E": {"label": "Estimate!!Percent Female!!Civilian employed population 16 years and over!!Natural resources, construction, and maintenance occupations:!!Farming, fishing, and forestry occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2401", "limit": 0, "attributes": "S2401_C05_030EA,S2401_C05_030M,S2401_C05_030MA"}, "S1703_C04_029E": {"label": "Estimate!!Less than 125 percent of the poverty level!!Population for whom poverty status is determined!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born!!Naturalized citizen", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C04_029EA,S1703_C04_029M,S1703_C04_029MA"}, "S2501_C03_008E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!OCCUPANTS PER ROOM!!1.51 or more occupants per room", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C03_008EA,S2501_C03_008M,S2501_C03_008MA"}, "S1603_C06_007E": {"label": "Estimate!!Speak Spanish at home!!Speak a language other than English at home!!Total population 5 years and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born!!Naturalized U.S. citizen", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "int", "group": "S1603", "limit": 0, "attributes": "S1603_C06_007EA,S1603_C06_007M,S1603_C06_007MA"}, "S1811_C02_052E": {"label": "Estimate!!With a Disability!!EARNINGS IN PAST 12 MONTHS (IN 2024 INFLATION ADJUSTED DOLLARS)!!Population Age 16 and over with earnings!!Median Earnings", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "int", "group": "S1811", "limit": 0, "attributes": "S1811_C02_052EA,S1811_C02_052M,S1811_C02_052MA"}, "S0503_C02_038E": {"label": "Estimate!!Foreign-born; Born in Europe!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_038EA,S0503_C02_038M,S0503_C02_038MA"}, "S0505_C01_032E": {"label": "Estimate!!Total!!Foreign-born population!!HOUSEHOLD TYPE!!In married-couple family", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_032EA,S0505_C01_032M,S0505_C01_032MA"}, "S0502_C01_121E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_121EA,S0502_C01_121M,S0502_C01_121MA"}, "S2501_C03_009E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C03_009EA,S2501_C03_009M,S2501_C03_009MA"}, "S1811_C02_053E": {"label": "Estimate!!With a Disability!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population Age 16 and over for whom poverty status is determined", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "int", "group": "S1811", "limit": 0, "attributes": "S1811_C02_053EA,S1811_C02_053M,S1811_C02_053MA"}, "S1603_C06_006E": {"label": "Estimate!!Speak Spanish at home!!Speak a language other than English at home!!Total population 5 years and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "int", "group": "S1603", "limit": 0, "attributes": "S1603_C06_006EA,S1603_C06_006M,S1603_C06_006MA"}, "S0503_C02_037E": {"label": "Estimate!!Foreign-born; Born in Europe!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_037EA,S0503_C02_037M,S0503_C02_037MA"}, "S0505_C01_033E": {"label": "Estimate!!Total!!Foreign-born population!!HOUSEHOLD TYPE!!In other households", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_033EA,S0505_C01_033M,S0505_C01_033MA"}, "S0502_C01_120E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_120EA,S0502_C01_120M,S0502_C01_120MA"}, "S1603_C06_005E": {"label": "Estimate!!Speak Spanish at home!!Speak a language other than English at home!!Total population 5 years and over!!NATIVITY AND CITIZENSHIP STATUS!!Native", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "int", "group": "S1603", "limit": 0, "attributes": "S1603_C06_005EA,S1603_C06_005M,S1603_C06_005MA"}, "S1811_C02_050E": {"label": "Estimate!!With a Disability!!EARNINGS IN PAST 12 MONTHS (IN 2024 INFLATION ADJUSTED DOLLARS)!!Population Age 16 and over with earnings!!$50,000 to $74,999", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C02_050EA,S1811_C02_050M,S1811_C02_050MA"}, "S0505_C01_030E": {"label": "Estimate!!Total!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_030EA,S0505_C01_030M,S0505_C01_030MA"}, "S0503_C02_036E": {"label": "Estimate!!Foreign-born; Born in Europe!!MARITAL STATUS!!Population 15 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C02_036EA,S0503_C02_036M,S0503_C02_036MA"}, "S1603_C06_004E": {"label": "Estimate!!Speak Spanish at home!!Speak a language other than English at home!!Total population 5 years and over!!AGE!!65 years and over", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "int", "group": "S1603", "limit": 0, "attributes": "S1603_C06_004EA,S1603_C06_004M,S1603_C06_004MA"}, "S2507_C02_030E": {"label": "Estimate!!Percent owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!MONTHLY HOUSING COSTS!!$1,300 to $1,499", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "float", "group": "S2507", "limit": 0, "attributes": "S2507_C02_030EA,S2507_C02_030M,S2507_C02_030MA"}, "S1811_C02_051E": {"label": "Estimate!!With a Disability!!EARNINGS IN PAST 12 MONTHS (IN 2024 INFLATION ADJUSTED DOLLARS)!!Population Age 16 and over with earnings!!$75,000 or more", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C02_051EA,S1811_C02_051M,S1811_C02_051MA"}, "S0505_C01_031E": {"label": "Estimate!!Total!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_031EA,S0505_C01_031M,S0505_C01_031MA"}, "S0503_C02_035E": {"label": "Estimate!!Foreign-born; Born in Europe!!Foreign-born population!!Average family size", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_035EA,S0503_C02_035M,S0503_C02_035MA"}, "S2507_C02_031E": {"label": "Estimate!!Percent owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!MONTHLY HOUSING COSTS!!$1,500 or more", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "float", "group": "S2507", "limit": 0, "attributes": "S2507_C02_031EA,S2507_C02_031M,S2507_C02_031MA"}, "S1603_C06_003E": {"label": "Estimate!!Speak Spanish at home!!Speak a language other than English at home!!Total population 5 years and over!!AGE!!18 to 64 years", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "int", "group": "S1603", "limit": 0, "attributes": "S1603_C06_003EA,S1603_C06_003M,S1603_C06_003MA"}, "S1703_C04_020E": {"label": "Estimate!!Less than 125 percent of the poverty level!!Population for whom poverty status is determined!!LIVING ARRANGEMENT!!In family households!!In Female householder, no spouse present households", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C04_020EA,S1703_C04_020M,S1703_C04_020MA"}, "S0503_C02_034E": {"label": "Estimate!!Foreign-born; Born in Europe!!Foreign-born population!!Average household size", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_034EA,S0503_C02_034M,S0503_C02_034MA"}, "S2507_C02_032E": {"label": "Estimate!!Percent owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!MONTHLY HOUSING COSTS!!Median (dollars)", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "int", "group": "S2507", "limit": 0, "attributes": "S2507_C02_032EA,S2507_C02_032M,S2507_C02_032MA"}, "S1603_C06_002E": {"label": "Estimate!!Speak Spanish at home!!Speak a language other than English at home!!Total population 5 years and over!!AGE!!5 to 17 years", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "int", "group": "S1603", "limit": 0, "attributes": "S1603_C06_002EA,S1603_C06_002M,S1603_C06_002MA"}, "S0503_C02_033E": {"label": "Estimate!!Foreign-born; Born in Europe!!Foreign-born population!!HOUSEHOLD TYPE!!In other households", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_033EA,S0503_C02_033M,S0503_C02_033MA"}, "S1603_C06_001E": {"label": "Estimate!!Speak Spanish at home!!Speak a language other than English at home!!Total population 5 years and over", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "int", "group": "S1603", "limit": 0, "attributes": "S1603_C06_001EA,S1603_C06_001M,S1603_C06_001MA"}, "S2507_C02_033E": {"label": "Estimate!!Percent owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than $20,000", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "float", "group": "S2507", "limit": 0, "attributes": "S2507_C02_033EA,S2507_C02_033M,S2507_C02_033MA"}, "S1703_C04_022E": {"label": "Estimate!!Less than 125 percent of the poverty level!!Population for whom poverty status is determined!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C04_022EA,S1703_C04_022M,S1703_C04_022MA"}, "S0503_C02_032E": {"label": "Estimate!!Foreign-born; Born in Europe!!Foreign-born population!!HOUSEHOLD TYPE!!In married-couple family", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_032EA,S0503_C02_032M,S0503_C02_032MA"}, "S2507_C02_034E": {"label": "Estimate!!Percent owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than $20,000!!Less than 20 percent", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "float", "group": "S2507", "limit": 0, "attributes": "S2507_C02_034EA,S2507_C02_034M,S2507_C02_034MA"}, "S1703_C04_021E": {"label": "Estimate!!Less than 125 percent of the poverty level!!Population for whom poverty status is determined!!LIVING ARRANGEMENT!!In other living arrangements", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C04_021EA,S1703_C04_021M,S1703_C04_021MA"}, "S0503_C02_031E": {"label": "Estimate!!Foreign-born; Born in Europe!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_031EA,S0503_C02_031M,S0503_C02_031MA"}, "S0501_C05_110E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_110EA,S0501_C05_110M,S0501_C05_110MA"}, "S0802_C03_001E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "int", "group": "S0802", "limit": 0, "attributes": "S0802_C03_001EA,S0802_C03_001M,S0802_C03_001MA"}, "S0102_C02_062E": {"label": "Estimate!!60 years and over!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over", "concept": "Population 60 Years and Over in the United States", "predicateType": "int", "group": "S0102", "limit": 0, "attributes": "S0102_C02_062EA,S0102_C02_062M,S0102_C02_062MA"}, "S2701_C04_058E": {"label": "Estimate!!Uninsured!!Civilian noninstitutionalized population!!RATIO OF INCOME TO POVERTY LEVEL IN THE PAST 12 MONTHS!!Civilian noninstitutionalized population for whom poverty status is determined!!Below 138 percent of the poverty threshold", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C04_058EA,S2701_C04_058M,S2701_C04_058MA"}, "S0701PR_C01_004E": {"label": "Estimate!!Total!!Population 1 year and over!!AGE!!18 to 24 years", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "int", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C01_004EA,S0701PR_C01_004M,S0701PR_C01_004MA"}, "S2603_C07_099E": {"label": "Estimate!!Military quarters/military ships!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C07_099EA,S2603_C07_099M,S2603_C07_099MA"}, "S0102_C02_063E": {"label": "Estimate!!60 years and over!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!English only", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_063EA,S0102_C02_063M,S0102_C02_063MA"}, "S2701_C04_057E": {"label": "Estimate!!Uninsured!!Civilian noninstitutionalized population!!RATIO OF INCOME TO POVERTY LEVEL IN THE PAST 12 MONTHS!!Civilian noninstitutionalized population for whom poverty status is determined", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C04_057EA,S2701_C04_057M,S2701_C04_057MA"}, "S0701PR_C01_005E": {"label": "Estimate!!Total!!Population 1 year and over!!AGE!!25 to 34 years", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "int", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C01_005EA,S0701PR_C01_005M,S0701PR_C01_005MA"}, "S2507_C02_001E": {"label": "Estimate!!Percent owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "int", "group": "S2507", "limit": 0, "attributes": "S2507_C02_001EA,S2507_C02_001M,S2507_C02_001MA"}, "S0102_C02_060E": {"label": "Estimate!!60 years and over!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Naturalized U.S. citizen", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_060EA,S0102_C02_060M,S0102_C02_060MA"}, "S1902_C02_009E": {"label": "Estimate!!Percent Distribution!!HOUSEHOLD INCOME!!All households!!With cash public assistance income or Food Stamps/SNAP!!With cash public assistance", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1902", "limit": 0, "attributes": "S1902_C02_009EA,S1902_C02_009M,S1902_C02_009MA"}, "S0701PR_C01_006E": {"label": "Estimate!!Total!!Population 1 year and over!!AGE!!35 to 44 years", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "int", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C01_006EA,S0701PR_C01_006M,S0701PR_C01_006MA"}, "S2701_C04_059E": {"label": "Estimate!!Uninsured!!Civilian noninstitutionalized population!!RATIO OF INCOME TO POVERTY LEVEL IN THE PAST 12 MONTHS!!Civilian noninstitutionalized population for whom poverty status is determined!!138 to 399 percent of the poverty threshold", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C04_059EA,S2701_C04_059M,S2701_C04_059MA"}, "S0102_C02_061E": {"label": "Estimate!!60 years and over!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Not a U.S. citizen", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_061EA,S0102_C02_061M,S0102_C02_061MA"}, "S1902_C02_008E": {"label": "Estimate!!Percent Distribution!!HOUSEHOLD INCOME!!All households!!With cash public assistance income or Food Stamps/SNAP", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1902", "limit": 0, "attributes": "S1902_C02_008EA,S1902_C02_008M,S1902_C02_008MA"}, "S0701PR_C01_007E": {"label": "Estimate!!Total!!Population 1 year and over!!AGE!!45 to 54 years", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "int", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C01_007EA,S0701PR_C01_007M,S0701PR_C01_007MA"}, "S2507_C02_002E": {"label": "Estimate!!Percent owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!VALUE!!Less than $50,000", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "float", "group": "S2507", "limit": 0, "attributes": "S2507_C02_002EA,S2507_C02_002M,S2507_C02_002MA"}, "S0804_C04_088E": {"label": "Estimate!!Public transportation!!Workers 16 years and over in households!!HOUSING TENURE!!Owner-occupied housing units", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_088EA,S0804_C04_088M,S0804_C04_088MA"}, "S0505_C01_048E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate (includes equivalency)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_048EA,S0505_C01_048M,S0505_C01_048MA"}, "S1201_C03_020E": {"label": "Estimate!!Widowed!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C03_020EA,S1201_C03_020M,S1201_C03_020MA"}, "S1902_C02_007E": {"label": "Estimate!!Percent Distribution!!HOUSEHOLD INCOME!!All households!!With Supplemental Security Income (SSI)", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1902", "limit": 0, "attributes": "S1902_C02_007EA,S1902_C02_007M,S1902_C02_007MA"}, "S0802_C03_005E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!AGE!!45 to 54 years", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_005EA,S0802_C03_005M,S0802_C03_005MA"}, "S0701PR_C01_008E": {"label": "Estimate!!Total!!Population 1 year and over!!AGE!!55 to 64 years", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "int", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C01_008EA,S0701PR_C01_008M,S0701PR_C01_008MA"}, "S2507_C02_003E": {"label": "Estimate!!Percent owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!VALUE!!$50,000 to $99,999", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "float", "group": "S2507", "limit": 0, "attributes": "S2507_C02_003EA,S2507_C02_003M,S2507_C02_003MA"}, "S0501_C05_114E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_114EA,S0501_C05_114M,S0501_C05_114MA"}, "S0804_C04_087E": {"label": "Estimate!!Public transportation!!Workers 16 years and over in households", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "int", "group": "S0804", "limit": 0, "attributes": "S0804_C04_087EA,S0804_C04_087M,S0804_C04_087MA"}, "S0505_C01_049E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college or associate's degree", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_049EA,S0505_C01_049M,S0505_C01_049MA"}, "S0802_C03_004E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!AGE!!25 to 44 years", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_004EA,S0802_C03_004M,S0802_C03_004MA"}, "S1902_C02_006E": {"label": "Estimate!!Percent Distribution!!HOUSEHOLD INCOME!!All households!!With Social Security income", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1902", "limit": 0, "attributes": "S1902_C02_006EA,S1902_C02_006M,S1902_C02_006MA"}, "S0701PR_C01_009E": {"label": "Estimate!!Total!!Population 1 year and over!!AGE!!65 to 74 years", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "int", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C01_009EA,S0701PR_C01_009M,S0701PR_C01_009MA"}, "S0501_C05_113E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_113EA,S0501_C05_113M,S0501_C05_113MA"}, "S2507_C02_004E": {"label": "Estimate!!Percent owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!VALUE!!$100,000 to $199,999", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "float", "group": "S2507", "limit": 0, "attributes": "S2507_C02_004EA,S2507_C02_004M,S2507_C02_004MA"}, "S0501_C05_112E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_112EA,S0501_C05_112M,S0501_C05_112MA"}, "S1902_C02_005E": {"label": "Estimate!!Percent Distribution!!HOUSEHOLD INCOME!!All households!!With interest, dividends, or net rental income", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1902", "limit": 0, "attributes": "S1902_C02_005EA,S1902_C02_005M,S1902_C02_005MA"}, "S0802_C03_003E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!AGE!!20 to 24 years", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_003EA,S0802_C03_003M,S0802_C03_003MA"}, "S0505_C01_046E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C01_046EA,S0505_C01_046M,S0505_C01_046MA"}, "S0506_C01_100E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_100EA,S0506_C01_100M,S0506_C01_100MA"}, "S2507_C02_005E": {"label": "Estimate!!Percent owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!VALUE!!$200,000 to $299,999", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "float", "group": "S2507", "limit": 0, "attributes": "S2507_C02_005EA,S2507_C02_005M,S2507_C02_005MA"}, "S0506_C01_101E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income!!Mean Social Security income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C01_101EA,S0506_C01_101M,S0506_C01_101MA"}, "S0804_C04_089E": {"label": "Estimate!!Public transportation!!Workers 16 years and over in households!!HOUSING TENURE!!Renter-occupied housing units", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_089EA,S0804_C04_089M,S0804_C04_089MA"}, "S0501_C05_111E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_111EA,S0501_C05_111M,S0501_C05_111MA"}, "S0802_C03_002E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!AGE!!16 to 19 years", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_002EA,S0802_C03_002M,S0802_C03_002MA"}, "S0505_C01_047E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than high school graduate", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_047EA,S0505_C01_047M,S0505_C01_047MA"}, "S1902_C02_004E": {"label": "Estimate!!Percent Distribution!!HOUSEHOLD INCOME!!All households!!With earnings!!With self-employment income", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1902", "limit": 0, "attributes": "S1902_C02_004EA,S1902_C02_004M,S1902_C02_004MA"}, "S2507_C02_006E": {"label": "Estimate!!Percent owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!VALUE!!$300,000 to $499,999", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "float", "group": "S2507", "limit": 0, "attributes": "S2507_C02_006EA,S2507_C02_006M,S2507_C02_006MA"}, "S1201_C03_024E": {"label": "Estimate!!Widowed!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C03_024EA,S1201_C03_024M,S1201_C03_024MA"}, "S0802_C03_009E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!SEX!!Male", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_009EA,S0802_C03_009M,S0802_C03_009MA"}, "S1501_C02_059E": {"label": "Estimate!!Percent!!MEDIAN EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 25 years and over with earnings", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C02_059EA,S1501_C02_059M,S1501_C02_059MA"}, "S1301_C01_025E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Women 15 to 50 years for whom poverty status is determined!!200 percent or more above poverty level", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C01_025EA,S1301_C01_025M,S1301_C01_025MA"}, "S2401_C05_019E": {"label": "Estimate!!Percent Female!!Civilian employed population 16 years and over!!Service occupations:!!Healthcare support occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2401", "limit": 0, "attributes": "S2401_C05_019EA,S2401_C05_019M,S2401_C05_019MA"}, "S2603_C07_092E": {"label": "Estimate!!Military quarters/military ships!!EMPLOYMENT STATUS!!Population 16 years and over!!Not in labor force", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C07_092EA,S2603_C07_092M,S2603_C07_092MA"}, "S2507_C02_007E": {"label": "Estimate!!Percent owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!VALUE!!$500,000 to $749,999", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "float", "group": "S2507", "limit": 0, "attributes": "S2507_C02_007EA,S2507_C02_007M,S2507_C02_007MA"}, "S0501_C05_118E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!Occupied housing units!!HOUSING TENURE!!Renter-occupied housing units", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_118EA,S0501_C05_118M,S0501_C05_118MA"}, "S1703_C04_008E": {"label": "Estimate!!Less than 125 percent of the poverty level!!Population for whom poverty status is determined!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C04_008EA,S1703_C04_008M,S1703_C04_008MA"}, "S2701_C04_050E": {"label": "Estimate!!Uninsured!!Civilian noninstitutionalized population!!WORK EXPERIENCE!!Civilian noninstitutionalized population 19 to 64 years!!Did not work", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C04_050EA,S2701_C04_050M,S2701_C04_050MA"}, "S1201_C03_023E": {"label": "Estimate!!Widowed!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C03_023EA,S1201_C03_023M,S1201_C03_023MA"}, "S1301_C01_024E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Women 15 to 50 years for whom poverty status is determined!!100 to 199 percent of poverty level", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C01_024EA,S1301_C01_024M,S1301_C01_024MA"}, "S0802_C03_008E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!AGE!!Median age (years)", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_008EA,S0802_C03_008M,S0802_C03_008MA"}, "S2603_C07_091E": {"label": "Estimate!!Military quarters/military ships!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Armed Forces", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C07_091EA,S2603_C07_091M,S2603_C07_091MA"}, "S0501_C05_117E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!Occupied housing units!!HOUSING TENURE!!Owner-occupied housing units", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_117EA,S0501_C05_117M,S0501_C05_117MA"}, "S2507_C02_008E": {"label": "Estimate!!Percent owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!VALUE!!$750,000 to $999,999", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "float", "group": "S2507", "limit": 0, "attributes": "S2507_C02_008EA,S2507_C02_008M,S2507_C02_008MA"}, "S1703_C04_007E": {"label": "Estimate!!Less than 125 percent of the poverty level!!Population for whom poverty status is determined!!AGE!!65 years and over", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C04_007EA,S1703_C04_007M,S1703_C04_007MA"}, "S0102_C02_068E": {"label": "Estimate!!60 years and over!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_068EA,S0102_C02_068M,S0102_C02_068MA"}, "S1501_C02_057E": {"label": "Estimate!!Percent!!POVERTY RATE FOR THE POPULATION 25 YEARS AND OVER FOR WHOM POVERTY STATUS IS DETERMINED BY EDUCATIONAL ATTAINMENT LEVEL!!Some college or associate's degree", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C02_057EA,S1501_C02_057M,S1501_C02_057MA"}, "S0601PR_C02_049E": {"label": "Estimate!!Native; born in Puerto Rico!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!Below 100 percent of the poverty level", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C02_049EA,S0601PR_C02_049M,S0601PR_C02_049MA"}, "S2401_C05_017E": {"label": "Estimate!!Percent Female!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Healthcare practitioners and technical occupations:!!Health technologists and technicians", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2401", "limit": 0, "attributes": "S2401_C05_017EA,S2401_C05_017M,S2401_C05_017MA"}, "S1301_C01_027E": {"label": "Estimate!!Total!!LABOR FORCE STATUS!!Women 16 to 50 years!!In labor force", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C01_027EA,S1301_C01_027M,S1301_C01_027MA"}, "S1201_C03_022E": {"label": "Estimate!!Widowed!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C03_022EA,S1201_C03_022M,S1201_C03_022MA"}, "S0802_C03_007E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!AGE!!60 years and over", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_007EA,S0802_C03_007M,S0802_C03_007MA"}, "S2701_C04_052E": {"label": "Estimate!!Uninsured!!Civilian noninstitutionalized population!!HOUSEHOLD INCOME (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Total household population!!Under $25,000", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C04_052EA,S2701_C04_052M,S2701_C04_052MA"}, "S2603_C07_094E": {"label": "Estimate!!Military quarters/military ships!!OCCUPATION!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C07_094EA,S2603_C07_094M,S2603_C07_094MA"}, "S2507_C02_009E": {"label": "Estimate!!Percent owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!VALUE!!$1,000,000 or more", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "float", "group": "S2507", "limit": 0, "attributes": "S2507_C02_009EA,S2507_C02_009M,S2507_C02_009MA"}, "S0501_C05_116E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!Occupied housing units", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C05_116EA,S0501_C05_116M,S0501_C05_116MA"}, "S0102_C02_069E": {"label": "Estimate!!60 years and over!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Employed", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_069EA,S0102_C02_069M,S0102_C02_069MA"}, "S0601PR_C02_048E": {"label": "Estimate!!Native; born in Puerto Rico!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "int", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C02_048EA,S0601PR_C02_048M,S0601PR_C02_048MA"}, "S1501_C02_058E": {"label": "Estimate!!Percent!!POVERTY RATE FOR THE POPULATION 25 YEARS AND OVER FOR WHOM POVERTY STATUS IS DETERMINED BY EDUCATIONAL ATTAINMENT LEVEL!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C02_058EA,S1501_C02_058M,S1501_C02_058MA"}, "S2401_C05_018E": {"label": "Estimate!!Percent Female!!Civilian employed population 16 years and over!!Service occupations:", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2401", "limit": 0, "attributes": "S2401_C05_018EA,S2401_C05_018M,S2401_C05_018MA"}, "S1301_C01_026E": {"label": "Estimate!!Total!!LABOR FORCE STATUS!!Women 16 to 50 years", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C01_026EA,S1301_C01_026M,S1301_C01_026MA"}, "S0802_C03_006E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!AGE!!55 to 59 years", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_006EA,S0802_C03_006M,S0802_C03_006MA"}, "S1201_C03_021E": {"label": "Estimate!!Widowed!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C03_021EA,S1201_C03_021M,S1201_C03_021MA"}, "S2701_C04_051E": {"label": "Estimate!!Uninsured!!Civilian noninstitutionalized population!!HOUSEHOLD INCOME (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Total household population", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C04_051EA,S2701_C04_051M,S2701_C04_051MA"}, "S1703_C04_009E": {"label": "Estimate!!Less than 125 percent of the poverty level!!Population for whom poverty status is determined!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C04_009EA,S1703_C04_009M,S1703_C04_009MA"}, "S2603_C07_093E": {"label": "Estimate!!Military quarters/military ships!!OCCUPATION!!Civilian employed population 16 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C07_093EA,S2603_C07_093M,S2603_C07_093MA"}, "S0501_C05_115E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_115EA,S0501_C05_115M,S0501_C05_115MA"}, "S1501_C02_055E": {"label": "Estimate!!Percent!!POVERTY RATE FOR THE POPULATION 25 YEARS AND OVER FOR WHOM POVERTY STATUS IS DETERMINED BY EDUCATIONAL ATTAINMENT LEVEL!!Less than high school graduate", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C02_055EA,S1501_C02_055M,S1501_C02_055MA"}, "S1301_C01_021E": {"label": "Estimate!!Total!!Women 15 to 50 years!!EDUCATIONAL ATTAINMENT!!Graduate or professional degree", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C01_021EA,S1301_C01_021M,S1301_C01_021MA"}, "S1201_C03_028E": {"label": "Estimate!!Widowed!!LABOR FORCE PARTICIPATION!!Males 16 years and over!!In labor force", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C03_028EA,S1201_C03_028M,S1201_C03_028MA"}, "S0601PR_C02_047E": {"label": "Estimate!!Native; born in Puerto Rico!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!Median income (dollars)", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "int", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C02_047EA,S0601PR_C02_047M,S0601PR_C02_047MA"}, "S0102_C02_066E": {"label": "Estimate!!60 years and over!!EMPLOYMENT STATUS!!Population 16 years and over", "concept": "Population 60 Years and Over in the United States", "predicateType": "int", "group": "S0102", "limit": 0, "attributes": "S0102_C02_066EA,S0102_C02_066M,S0102_C02_066MA"}, "S2701_C04_054E": {"label": "Estimate!!Uninsured!!Civilian noninstitutionalized population!!HOUSEHOLD INCOME (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Total household population!!$50,000 to $74,999", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C04_054EA,S2701_C04_054M,S2701_C04_054MA"}, "S2603_C07_096E": {"label": "Estimate!!Military quarters/military ships!!OCCUPATION!!Civilian employed population 16 years and over!!Sales and office occupations", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C07_096EA,S2603_C07_096M,S2603_C07_096MA"}, "S2501_C03_020E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Other family!!Female householder, no spouse present!!Householder 15 to 34 years", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C03_020EA,S2501_C03_020M,S2501_C03_020MA"}, "S2401_C05_015E": {"label": "Estimate!!Percent Female!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Healthcare practitioners and technical occupations:", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2401", "limit": 0, "attributes": "S2401_C05_015EA,S2401_C05_015M,S2401_C05_015MA"}, "S0102_C02_067E": {"label": "Estimate!!60 years and over!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_067EA,S0102_C02_067M,S0102_C02_067MA"}, "S1501_C02_056E": {"label": "Estimate!!Percent!!POVERTY RATE FOR THE POPULATION 25 YEARS AND OVER FOR WHOM POVERTY STATUS IS DETERMINED BY EDUCATIONAL ATTAINMENT LEVEL!!High school graduate (includes equivalency)", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C02_056EA,S1501_C02_056M,S1501_C02_056MA"}, "S1301_C01_020E": {"label": "Estimate!!Total!!Women 15 to 50 years!!EDUCATIONAL ATTAINMENT!!Bachelor's degree", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C01_020EA,S1301_C01_020M,S1301_C01_020MA"}, "S1201_C03_027E": {"label": "Estimate!!Widowed!!LABOR FORCE PARTICIPATION!!Males 16 years and over", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C03_027EA,S1201_C03_027M,S1201_C03_027MA"}, "S2701_C04_053E": {"label": "Estimate!!Uninsured!!Civilian noninstitutionalized population!!HOUSEHOLD INCOME (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Total household population!!$25,000 to $49,999", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C04_053EA,S2701_C04_053M,S2701_C04_053MA"}, "S2603_C07_095E": {"label": "Estimate!!Military quarters/military ships!!OCCUPATION!!Civilian employed population 16 years and over!!Service occupations", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C07_095EA,S2603_C07_095M,S2603_C07_095MA"}, "S2401_C05_016E": {"label": "Estimate!!Percent Female!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Healthcare practitioners and technical occupations:!!Health diagnosing and treating practitioners and other technical occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2401", "limit": 0, "attributes": "S2401_C05_016EA,S2401_C05_016M,S2401_C05_016MA"}, "S2501_C03_021E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Other family!!Female householder, no spouse present!!Householder 35 to 64 years", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C03_021EA,S2501_C03_021M,S2501_C03_021MA"}, "S0601PR_C02_046E": {"label": "Estimate!!Native; born in Puerto Rico!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$75,000 or more", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C02_046EA,S0601PR_C02_046M,S0601PR_C02_046MA"}, "S1201_C03_026E": {"label": "Estimate!!Widowed!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C03_026EA,S1201_C03_026M,S1201_C03_026MA"}, "S1301_C01_023E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Women 15 to 50 years for whom poverty status is determined!!Below 100 percent of poverty level", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C01_023EA,S1301_C01_023M,S1301_C01_023MA"}, "S0102_C02_064E": {"label": "Estimate!!60 years and over!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_064EA,S0102_C02_064M,S0102_C02_064MA"}, "S1501_C02_053E": {"label": "Estimate!!Percent!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Hispanic or Latino Origin!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C02_053EA,S1501_C02_053M,S1501_C02_053MA"}, "S2701_C04_056E": {"label": "Estimate!!Uninsured!!Civilian noninstitutionalized population!!HOUSEHOLD INCOME (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Total household population!!$100,000 and over", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C04_056EA,S2701_C04_056M,S2701_C04_056MA"}, "S2401_C05_013E": {"label": "Estimate!!Percent Female!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:!!Educational instruction, and library occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2401", "limit": 0, "attributes": "S2401_C05_013EA,S2401_C05_013M,S2401_C05_013MA"}, "S2603_C07_098E": {"label": "Estimate!!Military quarters/military ships!!OCCUPATION!!Civilian employed population 16 years and over!!Production, transportation, and material moving occupations", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C07_098EA,S2603_C07_098M,S2603_C07_098MA"}, "S2501_C03_022E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Other family!!Female householder, no spouse present!!Householder 65 years and over", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C03_022EA,S2501_C03_022M,S2501_C03_022MA"}, "S0601PR_C02_045E": {"label": "Estimate!!Native; born in Puerto Rico!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$65,000 to $74,999", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C02_045EA,S0601PR_C02_045M,S0601PR_C02_045MA"}, "S1811_C02_038E": {"label": "Estimate!!With a Disability!!COMMUTING TO WORK!!Workers Age 16 and Over!!Worked from home", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C02_038EA,S1811_C02_038M,S1811_C02_038MA"}, "S1501_C02_054E": {"label": "Estimate!!Percent!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Hispanic or Latino Origin!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C02_054EA,S1501_C02_054M,S1501_C02_054MA"}, "S1201_C03_025E": {"label": "Estimate!!Widowed!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C03_025EA,S1201_C03_025M,S1201_C03_025MA"}, "S1301_C01_022E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Women 15 to 50 years for whom poverty status is determined", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C01_022EA,S1301_C01_022M,S1301_C01_022MA"}, "S0102_C02_065E": {"label": "Estimate!!60 years and over!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English!!Speak English less than \"very well\"", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_065EA,S0102_C02_065M,S0102_C02_065MA"}, "S2401_C05_014E": {"label": "Estimate!!Percent Female!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:!!Arts, design, entertainment, sports, and media occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2401", "limit": 0, "attributes": "S2401_C05_014EA,S2401_C05_014M,S2401_C05_014MA"}, "S2701_C04_055E": {"label": "Estimate!!Uninsured!!Civilian noninstitutionalized population!!HOUSEHOLD INCOME (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Total household population!!$75,000 to $99,999", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C04_055EA,S2701_C04_055M,S2701_C04_055MA"}, "S2603_C07_097E": {"label": "Estimate!!Military quarters/military ships!!OCCUPATION!!Civilian employed population 16 years and over!!Natural resources, construction, extraction, and maintenance occupations", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C07_097EA,S2603_C07_097M,S2603_C07_097MA"}, "S0601PR_C02_044E": {"label": "Estimate!!Native; born in Puerto Rico!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$50,000 to $64,999", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C02_044EA,S0601PR_C02_044M,S0601PR_C02_044MA"}, "S0501_C05_119E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!Occupied housing units!!HOUSING TENURE!!Average household size of owner-occupied unit", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_119EA,S0501_C05_119M,S0501_C05_119MA"}, "S2501_C03_023E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Nonfamily households", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C03_023EA,S2501_C03_023M,S2501_C03_023MA"}, "S1811_C02_039E": {"label": "Estimate!!With a Disability!!EDUCATIONAL ATTAINMENT!!Population Age 25 and Over", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "int", "group": "S1811", "limit": 0, "attributes": "S1811_C02_039EA,S1811_C02_039M,S1811_C02_039MA"}, "S1811_C02_048E": {"label": "Estimate!!With a Disability!!EARNINGS IN PAST 12 MONTHS (IN 2024 INFLATION ADJUSTED DOLLARS)!!Population Age 16 and over with earnings!!$25,000 to $34,999", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C02_048EA,S1811_C02_048M,S1811_C02_048MA"}, "S2418_C02_007E": {"label": "Estimate!!Median earnings (dollars) for male!!Civilian employed population 16 years and over with earnings!!State government workers", "concept": "Class of Worker by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2418", "limit": 0, "attributes": "S2418_C02_007EA,S2418_C02_007M,S2418_C02_007MA"}, "S2602_C04_096E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!EARNINGS AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Median earnings (dollars):!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C04_096EA,S2602_C04_096M,S2602_C04_096MA"}, "S1501_C02_063E": {"label": "Estimate!!Percent!!MEDIAN EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 25 years and over with earnings!!Bachelor's degree", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C02_063EA,S1501_C02_063M,S1501_C02_063MA"}, "S2401_C05_023E": {"label": "Estimate!!Percent Female!!Civilian employed population 16 years and over!!Service occupations:!!Food preparation and serving related occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2401", "limit": 0, "attributes": "S2401_C05_023EA,S2401_C05_023M,S2401_C05_023MA"}, "S0601PR_C02_043E": {"label": "Estimate!!Native; born in Puerto Rico!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$35,000 to $49,999", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C02_043EA,S0601PR_C02_043M,S0601PR_C02_043MA"}, "S1703_C04_012E": {"label": "Estimate!!Less than 125 percent of the poverty level!!Population for whom poverty status is determined!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C04_012EA,S1703_C04_012M,S1703_C04_012MA"}, "S2501_C03_012E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Married-couple family!!Householder 35 to 64 years", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C03_012EA,S2501_C03_012M,S2501_C03_012MA"}, "S2418_C02_008E": {"label": "Estimate!!Median earnings (dollars) for male!!Civilian employed population 16 years and over with earnings!!Federal government workers", "concept": "Class of Worker by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2418", "limit": 0, "attributes": "S2418_C02_008EA,S2418_C02_008M,S2418_C02_008MA"}, "S1703_C04_011E": {"label": "Estimate!!Less than 125 percent of the poverty level!!Population for whom poverty status is determined!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C04_011EA,S1703_C04_011M,S1703_C04_011MA"}, "S2602_C04_095E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!EARNINGS AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Median earnings (dollars):!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C04_095EA,S2602_C04_095M,S2602_C04_095MA"}, "S0503_C02_009E": {"label": "Estimate!!Foreign-born; Born in Europe!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen!!Entered before 2000", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_009EA,S0503_C02_009M,S0503_C02_009MA"}, "S1501_C02_064E": {"label": "Estimate!!Percent!!MEDIAN EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 25 years and over with earnings!!Graduate or professional degree", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C02_064EA,S1501_C02_064M,S1501_C02_064MA"}, "S2401_C05_024E": {"label": "Estimate!!Percent Female!!Civilian employed population 16 years and over!!Service occupations:!!Building and grounds cleaning and maintenance occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2401", "limit": 0, "attributes": "S2401_C05_024EA,S2401_C05_024M,S2401_C05_024MA"}, "S2501_C03_013E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Married-couple family!!Householder 65 years and over", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C03_013EA,S2501_C03_013M,S2501_C03_013MA"}, "S0601PR_C02_042E": {"label": "Estimate!!Native; born in Puerto Rico!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$25,000 to $34,999", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C02_042EA,S0601PR_C02_042M,S0601PR_C02_042MA"}, "S1811_C02_049E": {"label": "Estimate!!With a Disability!!EARNINGS IN PAST 12 MONTHS (IN 2024 INFLATION ADJUSTED DOLLARS)!!Population Age 16 and over with earnings!!$35,000 to $49,999", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C02_049EA,S1811_C02_049M,S1811_C02_049MA"}, "S1811_C02_046E": {"label": "Estimate!!With a Disability!!EARNINGS IN PAST 12 MONTHS (IN 2024 INFLATION ADJUSTED DOLLARS)!!Population Age 16 and over with earnings!!$5,000 to $14,999", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C02_046EA,S1811_C02_046M,S1811_C02_046MA"}, "S2418_C02_009E": {"label": "Estimate!!Median earnings (dollars) for male!!Civilian employed population 16 years and over with earnings!!Self-employed in own not incorporated business workers and unpaid family workers", "concept": "Class of Worker by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2418", "limit": 0, "attributes": "S2418_C02_009EA,S2418_C02_009M,S2418_C02_009MA"}, "S0503_C02_008E": {"label": "Estimate!!Foreign-born; Born in Europe!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen!!Entered 2000 to 2009", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_008EA,S0503_C02_008M,S0503_C02_008MA"}, "S1501_C02_061E": {"label": "Estimate!!Percent!!MEDIAN EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 25 years and over with earnings!!High school graduate (includes equivalency)", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C02_061EA,S1501_C02_061M,S1501_C02_061MA"}, "S2401_C05_021E": {"label": "Estimate!!Percent Female!!Civilian employed population 16 years and over!!Service occupations:!!Protective service occupations:!!Firefighting and prevention, and other protective service workers including supervisors", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2401", "limit": 0, "attributes": "S2401_C05_021EA,S2401_C05_021M,S2401_C05_021MA"}, "S1703_C04_014E": {"label": "Estimate!!Less than 125 percent of the poverty level!!Population for whom poverty status is determined!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C04_014EA,S1703_C04_014M,S1703_C04_014MA"}, "S2501_C03_014E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Other family", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C03_014EA,S2501_C03_014M,S2501_C03_014MA"}, "S0601PR_C02_041E": {"label": "Estimate!!Native; born in Puerto Rico!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$15,000 to $24,999", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C02_041EA,S0601PR_C02_041M,S0601PR_C02_041MA"}, "S1811_C02_047E": {"label": "Estimate!!With a Disability!!EARNINGS IN PAST 12 MONTHS (IN 2024 INFLATION ADJUSTED DOLLARS)!!Population Age 16 and over with earnings!!$15,000 to $24,999", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C02_047EA,S1811_C02_047M,S1811_C02_047MA"}, "S1201_C03_029E": {"label": "Estimate!!Widowed!!LABOR FORCE PARTICIPATION!!Females 16 years and over", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C03_029EA,S1201_C03_029M,S1201_C03_029MA"}, "S0503_C02_007E": {"label": "Estimate!!Foreign-born; Born in Europe!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen!!Entered 2010 or later", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_007EA,S0503_C02_007M,S0503_C02_007MA"}, "S2602_C04_097E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!EARNINGS AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!With Food Stamp/SNAP benefits", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C04_097EA,S2602_C04_097M,S2602_C04_097MA"}, "S1501_C02_062E": {"label": "Estimate!!Percent!!MEDIAN EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 25 years and over with earnings!!Some college or associate's degree", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C02_062EA,S1501_C02_062M,S1501_C02_062MA"}, "S2401_C05_022E": {"label": "Estimate!!Percent Female!!Civilian employed population 16 years and over!!Service occupations:!!Protective service occupations:!!Law enforcement workers including supervisors", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2401", "limit": 0, "attributes": "S2401_C05_022EA,S2401_C05_022M,S2401_C05_022MA"}, "S1703_C04_013E": {"label": "Estimate!!Less than 125 percent of the poverty level!!Population for whom poverty status is determined!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C04_013EA,S1703_C04_013M,S1703_C04_013MA"}, "S2501_C03_015E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Other family!!Male householder, no spouse present", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C03_015EA,S2501_C03_015M,S2501_C03_015MA"}, "S0601PR_C02_040E": {"label": "Estimate!!Native; born in Puerto Rico!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$10,000 to $14,999", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C02_040EA,S0601PR_C02_040M,S0601PR_C02_040MA"}, "S2418_C02_003E": {"label": "Estimate!!Median earnings (dollars) for male!!Civilian employed population 16 years and over with earnings!!Private for-profit wage and salary workers:!!Employee of private company workers", "concept": "Class of Worker by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2418", "limit": 0, "attributes": "S2418_C02_003EA,S2418_C02_003M,S2418_C02_003MA"}, "S1811_C02_044E": {"label": "Estimate!!With a Disability!!EARNINGS IN PAST 12 MONTHS (IN 2024 INFLATION ADJUSTED DOLLARS)!!Population Age 16 and over with earnings", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "int", "group": "S1811", "limit": 0, "attributes": "S1811_C02_044EA,S1811_C02_044M,S1811_C02_044MA"}, "S2602_C04_092E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!EARNINGS AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!With earnings:!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C04_092EA,S2602_C04_092M,S2602_C04_092MA"}, "S0503_C02_006E": {"label": "Estimate!!Foreign-born; Born in Europe!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_006EA,S0503_C02_006M,S0503_C02_006MA"}, "S1301_C01_029E": {"label": "Estimate!!Total!!PUBLIC ASSISTANCE INCOME IN THE PAST 12 MONTHS!!Women 15 to 50 years!!Received public assistance income", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C01_029EA,S1301_C01_029M,S1301_C01_029MA"}, "S1703_C04_016E": {"label": "Estimate!!Less than 125 percent of the poverty level!!Population for whom poverty status is determined!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C04_016EA,S1703_C04_016M,S1703_C04_016MA"}, "S2501_C03_016E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Other family!!Male householder, no spouse present!!Householder 15 to 34 years", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C03_016EA,S2501_C03_016M,S2501_C03_016MA"}, "S2418_C02_004E": {"label": "Estimate!!Median earnings (dollars) for male!!Civilian employed population 16 years and over with earnings!!Private for-profit wage and salary workers:!!Self-employed in own incorporated business workers", "concept": "Class of Worker by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2418", "limit": 0, "attributes": "S2418_C02_004EA,S2418_C02_004M,S2418_C02_004MA"}, "S1811_C02_045E": {"label": "Estimate!!With a Disability!!EARNINGS IN PAST 12 MONTHS (IN 2024 INFLATION ADJUSTED DOLLARS)!!Population Age 16 and over with earnings!!$1 to $4,999 or loss", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C02_045EA,S1811_C02_045M,S1811_C02_045MA"}, "S2602_C04_091E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!EARNINGS AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!With earnings:!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C04_091EA,S2602_C04_091M,S2602_C04_091MA"}, "S0503_C02_005E": {"label": "Estimate!!Foreign-born; Born in Europe!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen!!Entered before 2000", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_005EA,S0503_C02_005M,S0503_C02_005MA"}, "S1501_C02_060E": {"label": "Estimate!!Percent!!MEDIAN EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 25 years and over with earnings!!Less than high school graduate", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C02_060EA,S1501_C02_060M,S1501_C02_060MA"}, "S1301_C01_028E": {"label": "Estimate!!Total!!PUBLIC ASSISTANCE INCOME IN THE PAST 12 MONTHS!!Women 15 to 50 years", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C01_028EA,S1301_C01_028M,S1301_C01_028MA"}, "S2401_C05_020E": {"label": "Estimate!!Percent Female!!Civilian employed population 16 years and over!!Service occupations:!!Protective service occupations:", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2401", "limit": 0, "attributes": "S2401_C05_020EA,S2401_C05_020M,S2401_C05_020MA"}, "S1703_C04_015E": {"label": "Estimate!!Less than 125 percent of the poverty level!!Population for whom poverty status is determined!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C04_015EA,S1703_C04_015M,S1703_C04_015MA"}, "S2501_C03_017E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Other family!!Male householder, no spouse present!!Householder 35 to 64 years", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C03_017EA,S2501_C03_017M,S2501_C03_017MA"}, "S2501_C03_018E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Other family!!Male householder, no spouse present!!Householder 65 years and over", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C03_018EA,S2501_C03_018M,S2501_C03_018MA"}, "S2407_C04_008E": {"label": "Estimate!!Private not-for-profit wage and salary workers!!Civilian employed population 16 years and over!!Information", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2407", "limit": 0, "attributes": "S2407_C04_008EA,S2407_C04_008M,S2407_C04_008MA"}, "S2418_C02_005E": {"label": "Estimate!!Median earnings (dollars) for male!!Civilian employed population 16 years and over with earnings!!Private not-for-profit wage and salary workers", "concept": "Class of Worker by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2418", "limit": 0, "attributes": "S2418_C02_005EA,S2418_C02_005M,S2418_C02_005MA"}, "S1811_C02_042E": {"label": "Estimate!!With a Disability!!EDUCATIONAL ATTAINMENT!!Population Age 25 and Over!!Some college or associate's degree", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C02_042EA,S1811_C02_042M,S1811_C02_042MA"}, "S2602_C04_094E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!EARNINGS AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Mean earnings (dollars):!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C04_094EA,S2602_C04_094M,S2602_C04_094MA"}, "S0503_C02_004E": {"label": "Estimate!!Foreign-born; Born in Europe!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen!!Entered 2000 to 2009", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_004EA,S0503_C02_004M,S0503_C02_004MA"}, "S1703_C04_018E": {"label": "Estimate!!Less than 125 percent of the poverty level!!Population for whom poverty status is determined!!LIVING ARRANGEMENT!!In family households", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C04_018EA,S1703_C04_018M,S1703_C04_018MA"}, "S2501_C03_019E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Other family!!Female householder, no spouse present", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C03_019EA,S2501_C03_019M,S2501_C03_019MA"}, "S2418_C02_006E": {"label": "Estimate!!Median earnings (dollars) for male!!Civilian employed population 16 years and over with earnings!!Local government workers", "concept": "Class of Worker by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2418", "limit": 0, "attributes": "S2418_C02_006EA,S2418_C02_006M,S2418_C02_006MA"}, "S1811_C02_043E": {"label": "Estimate!!With a Disability!!EDUCATIONAL ATTAINMENT!!Population Age 25 and Over!!Bachelor's degree or higher", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C02_043EA,S1811_C02_043M,S1811_C02_043MA"}, "S2602_C04_093E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!EARNINGS AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Mean earnings (dollars):!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C04_093EA,S2602_C04_093M,S2602_C04_093MA"}, "S2407_C04_009E": {"label": "Estimate!!Private not-for-profit wage and salary workers!!Civilian employed population 16 years and over!!Finance and insurance, and real estate and rental and leasing", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2407", "limit": 0, "attributes": "S2407_C04_009EA,S2407_C04_009M,S2407_C04_009MA"}, "S0503_C02_003E": {"label": "Estimate!!Foreign-born; Born in Europe!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen!!Entered 2010 or later", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_003EA,S0503_C02_003M,S0503_C02_003MA"}, "S1703_C04_017E": {"label": "Estimate!!Less than 125 percent of the poverty level!!Population for whom poverty status is determined!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C04_017EA,S1703_C04_017M,S1703_C04_017MA"}, "S2407_C04_006E": {"label": "Estimate!!Private not-for-profit wage and salary workers!!Civilian employed population 16 years and over!!Retail trade", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2407", "limit": 0, "attributes": "S2407_C04_006EA,S2407_C04_006M,S2407_C04_006MA"}, "S1811_C02_040E": {"label": "Estimate!!With a Disability!!EDUCATIONAL ATTAINMENT!!Population Age 25 and Over!!Less than high school graduate", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C02_040EA,S1811_C02_040M,S1811_C02_040MA"}, "S1902_C02_015E": {"label": "Estimate!!Percent Distribution!!FAMILY INCOME BY NUMBER OF WORKERS IN FAMILY!!All families!!2 workers, both spouses worked", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1902", "limit": 0, "attributes": "S1902_C02_015EA,S1902_C02_015M,S1902_C02_015MA"}, "S0505_C01_044E": {"label": "Estimate!!Total!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!High school (grades 9-12)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_044EA,S0505_C01_044M,S0505_C01_044MA"}, "S0503_C02_002E": {"label": "Estimate!!Foreign-born; Born in Europe!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_002EA,S0503_C02_002M,S0503_C02_002MA"}, "S0804_C04_084E": {"label": "Estimate!!Public transportation!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!45 to 59 minutes", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_084EA,S0804_C04_084M,S0804_C04_084MA"}, "S2407_C04_007E": {"label": "Estimate!!Private not-for-profit wage and salary workers!!Civilian employed population 16 years and over!!Transportation and warehousing, and utilities", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2407", "limit": 0, "attributes": "S2407_C04_007EA,S2407_C04_007M,S2407_C04_007MA"}, "S1811_C02_041E": {"label": "Estimate!!With a Disability!!EDUCATIONAL ATTAINMENT!!Population Age 25 and Over!!High school graduate (includes equivalency)", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C02_041EA,S1811_C02_041M,S1811_C02_041MA"}, "S1902_C02_014E": {"label": "Estimate!!Percent Distribution!!FAMILY INCOME BY NUMBER OF WORKERS IN FAMILY!!All families!!1 worker", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1902", "limit": 0, "attributes": "S1902_C02_014EA,S1902_C02_014M,S1902_C02_014MA"}, "S0503_C02_001E": {"label": "Estimate!!Foreign-born; Born in Europe!!Foreign-born population", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C02_001EA,S0503_C02_001M,S0503_C02_001MA"}, "S0505_C01_045E": {"label": "Estimate!!Total!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!College or graduate school", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_045EA,S0505_C01_045M,S0505_C01_045MA"}, "S0804_C04_083E": {"label": "Estimate!!Public transportation!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!35 to 44 minutes", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_083EA,S0804_C04_083M,S0804_C04_083MA"}, "S0701PR_C01_010E": {"label": "Estimate!!Total!!Population 1 year and over!!AGE!!75 years and over", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "int", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C01_010EA,S0701PR_C01_010M,S0701PR_C01_010MA"}, "S0804_C04_086E": {"label": "Estimate!!Public transportation!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!Mean travel time to work (minutes)", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_086EA,S0804_C04_086M,S0804_C04_086MA"}, "S2602_C04_090E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!OCCUPATION!!Civilian employed population 16 years and over!!Production, transportation, and material moving occupations", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C04_090EA,S2602_C04_090M,S2602_C04_090MA"}, "S2407_C04_004E": {"label": "Estimate!!Private not-for-profit wage and salary workers!!Civilian employed population 16 years and over!!Manufacturing", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2407", "limit": 0, "attributes": "S2407_C04_004EA,S2407_C04_004M,S2407_C04_004MA"}, "S1902_C02_013E": {"label": "Estimate!!Percent Distribution!!FAMILY INCOME BY NUMBER OF WORKERS IN FAMILY!!All families!!No workers", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1902", "limit": 0, "attributes": "S1902_C02_013EA,S1902_C02_013M,S1902_C02_013MA"}, "S0505_C01_042E": {"label": "Estimate!!Total!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Nursery school, preschool", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_042EA,S0505_C01_042M,S0505_C01_042MA"}, "S2418_C02_001E": {"label": "Estimate!!Median earnings (dollars) for male!!Civilian employed population 16 years and over with earnings", "concept": "Class of Worker by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2418", "limit": 0, "attributes": "S2418_C02_001EA,S2418_C02_001M,S2418_C02_001MA"}, "S0701PR_C01_011E": {"label": "Estimate!!Total!!Population 1 year and over!!AGE!!Median age (years)", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C01_011EA,S0701PR_C01_011M,S0701PR_C01_011MA"}, "S2407_C04_005E": {"label": "Estimate!!Private not-for-profit wage and salary workers!!Civilian employed population 16 years and over!!Wholesale trade", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2407", "limit": 0, "attributes": "S2407_C04_005EA,S2407_C04_005M,S2407_C04_005MA"}, "S1902_C02_012E": {"label": "Estimate!!Percent Distribution!!FAMILY INCOME BY NUMBER OF WORKERS IN FAMILY!!All families", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1902", "limit": 0, "attributes": "S1902_C02_012EA,S1902_C02_012M,S1902_C02_012MA"}, "S0505_C01_043E": {"label": "Estimate!!Total!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Elementary school (grades K-8)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_043EA,S0505_C01_043M,S0505_C01_043MA"}, "S2418_C02_002E": {"label": "Estimate!!Median earnings (dollars) for male!!Civilian employed population 16 years and over with earnings!!Private for-profit wage and salary workers:", "concept": "Class of Worker by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2418", "limit": 0, "attributes": "S2418_C02_002EA,S2418_C02_002M,S2418_C02_002MA"}, "S0804_C04_085E": {"label": "Estimate!!Public transportation!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!60 or more minutes", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_085EA,S0804_C04_085M,S0804_C04_085MA"}, "S0701PR_C01_012E": {"label": "Estimate!!Total!!Population 1 year and over!!SEX!!Male", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "int", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C01_012EA,S0701PR_C01_012M,S0701PR_C01_012MA"}, "S2407_C04_002E": {"label": "Estimate!!Private not-for-profit wage and salary workers!!Civilian employed population 16 years and over!!Agriculture, forestry, fishing and hunting, and mining", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2407", "limit": 0, "attributes": "S2407_C04_002EA,S2407_C04_002M,S2407_C04_002MA"}, "S0505_C01_040E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_040EA,S0505_C01_040M,S0505_C01_040MA"}, "S1902_C02_011E": {"label": "Estimate!!Percent Distribution!!HOUSEHOLD INCOME!!All households!!With other types of income", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1902", "limit": 0, "attributes": "S1902_C02_011EA,S1902_C02_011M,S1902_C02_011MA"}, "S0804_C04_080E": {"label": "Estimate!!Public transportation!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!20 to 24 minutes", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_080EA,S0804_C04_080M,S0804_C04_080MA"}, "S0701PR_C01_013E": {"label": "Estimate!!Total!!Population 1 year and over!!SEX!!Female", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "int", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C01_013EA,S0701PR_C01_013M,S0701PR_C01_013MA"}, "S2407_C04_003E": {"label": "Estimate!!Private not-for-profit wage and salary workers!!Civilian employed population 16 years and over!!Construction", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2407", "limit": 0, "attributes": "S2407_C04_003EA,S2407_C04_003M,S2407_C04_003MA"}, "S0505_C01_041E": {"label": "Estimate!!Total!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C01_041EA,S0505_C01_041M,S0505_C01_041MA"}, "S1902_C02_010E": {"label": "Estimate!!Percent Distribution!!HOUSEHOLD INCOME!!All households!!With retirement income", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1902", "limit": 0, "attributes": "S1902_C02_010EA,S1902_C02_010M,S1902_C02_010MA"}, "S1703_C04_010E": {"label": "Estimate!!Less than 125 percent of the poverty level!!Population for whom poverty status is determined!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C04_010EA,S1703_C04_010M,S1703_C04_010MA"}, "S0804_C04_082E": {"label": "Estimate!!Public transportation!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!30 to 34 minutes", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_082EA,S0804_C04_082M,S0804_C04_082MA"}, "S0701PR_C01_014E": {"label": "Estimate!!Total!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "int", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C01_014EA,S0701PR_C01_014M,S0701PR_C01_014MA"}, "S2407_C04_001E": {"label": "Estimate!!Private not-for-profit wage and salary workers!!Civilian employed population 16 years and over", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2407", "limit": 0, "attributes": "S2407_C04_001EA,S2407_C04_001M,S2407_C04_001MA"}, "S0804_C04_081E": {"label": "Estimate!!Public transportation!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!25 to 29 minutes", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_081EA,S0804_C04_081M,S0804_C04_081MA"}, "S0701PR_C01_015E": {"label": "Estimate!!Total!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "int", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C01_015EA,S0701PR_C01_015M,S0701PR_C01_015MA"}, "S2507_C02_011E": {"label": "Estimate!!Percent owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Less than $10,000", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "float", "group": "S2507", "limit": 0, "attributes": "S2507_C02_011EA,S2507_C02_011M,S2507_C02_011MA"}, "S0501_C05_122E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!Occupied housing units!!ROOMS!!2 or 3 rooms", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_122EA,S0501_C05_122M,S0501_C05_122MA"}, "S0802_C03_013E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_013EA,S0802_C03_013M,S0802_C03_013MA"}, "S0102_C02_074E": {"label": "Estimate!!60 years and over!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households", "concept": "Population 60 Years and Over in the United States", "predicateType": "int", "group": "S0102", "limit": 0, "attributes": "S0102_C02_074EA,S0102_C02_074M,S0102_C02_074MA"}, "S0501_C05_121E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!Occupied housing units!!ROOMS!!1 room", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_121EA,S0501_C05_121M,S0501_C05_121MA"}, "S2507_C02_012E": {"label": "Estimate!!Percent owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$10,000 to $24,999", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "float", "group": "S2507", "limit": 0, "attributes": "S2507_C02_012EA,S2507_C02_012M,S2507_C02_012MA"}, "S0802_C03_012E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_012EA,S0802_C03_012M,S0802_C03_012MA"}, "S0102_C02_075E": {"label": "Estimate!!60 years and over!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_075EA,S0102_C02_075M,S0102_C02_075MA"}, "S0501_C05_120E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!Occupied housing units!!HOUSING TENURE!!Average household size of renter-occupied unit", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_120EA,S0501_C05_120M,S0501_C05_120MA"}, "S1301_C01_031E": {"label": "Estimate!!Total!!PERCENT ALLOCATED!!Marital status", "concept": "Fertility", "predicateType": "float", "group": "S1301", "limit": 0, "attributes": "S1301_C01_031EA,S1301_C01_031M,S1301_C01_031MA"}, "S0102_C02_072E": {"label": "Estimate!!60 years and over!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Armed forces", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_072EA,S0102_C02_072M,S0102_C02_072MA"}, "S0802_C03_011E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_011EA,S0802_C03_011M,S0802_C03_011MA"}, "S2507_C02_013E": {"label": "Estimate!!Percent owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$25,000 to $34,999", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "float", "group": "S2507", "limit": 0, "attributes": "S2507_C02_013EA,S2507_C02_013M,S2507_C02_013MA"}, "S1301_C01_030E": {"label": "Estimate!!Total!!PUBLIC ASSISTANCE INCOME IN THE PAST 12 MONTHS!!Women 15 to 50 years!!Did not receive public assistance income", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C01_030EA,S1301_C01_030M,S1301_C01_030MA"}, "S0102_C02_073E": {"label": "Estimate!!60 years and over!!EMPLOYMENT STATUS!!Population 16 years and over!!Not in labor force", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_073EA,S0102_C02_073M,S0102_C02_073MA"}, "S0802_C03_010E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!SEX!!Female", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_010EA,S0802_C03_010M,S0802_C03_010MA"}, "S2507_C02_014E": {"label": "Estimate!!Percent owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$35,000 to $49,999", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "float", "group": "S2507", "limit": 0, "attributes": "S2507_C02_014EA,S2507_C02_014M,S2507_C02_014MA"}, "S0102_C02_070E": {"label": "Estimate!!60 years and over!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_070EA,S0102_C02_070M,S0102_C02_070MA"}, "S0802_C03_017E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_017EA,S0802_C03_017M,S0802_C03_017MA"}, "S2507_C02_015E": {"label": "Estimate!!Percent owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$50,000 to $74,999", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "float", "group": "S2507", "limit": 0, "attributes": "S2507_C02_015EA,S2507_C02_015M,S2507_C02_015MA"}, "S0501_C05_126E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!Occupied housing units!!Median number of rooms", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_126EA,S0501_C05_126M,S0501_C05_126MA"}, "S0102_C02_071E": {"label": "Estimate!!60 years and over!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed!!Percent of civilian labor force", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_071EA,S0102_C02_071M,S0102_C02_071MA"}, "S0802_C03_016E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_016EA,S0802_C03_016M,S0802_C03_016MA"}, "S0501_C05_125E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!Occupied housing units!!ROOMS!!8 or more rooms", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_125EA,S0501_C05_125M,S0501_C05_125MA"}, "S2507_C02_016E": {"label": "Estimate!!Percent owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$75,000 to $99,999", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "float", "group": "S2507", "limit": 0, "attributes": "S2507_C02_016EA,S2507_C02_016M,S2507_C02_016MA"}, "S0802_C03_015E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_015EA,S0802_C03_015M,S0802_C03_015MA"}, "S2401_C05_009E": {"label": "Estimate!!Percent Female!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Computer, engineering, and science occupations:!!Life, physical, and social science occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2401", "limit": 0, "attributes": "S2401_C05_009EA,S2401_C05_009M,S2401_C05_009MA"}, "S0505_C01_058E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_058EA,S0505_C01_058M,S0505_C01_058MA"}, "S2507_C02_017E": {"label": "Estimate!!Percent owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$100,000 to $149,999", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "float", "group": "S2507", "limit": 0, "attributes": "S2507_C02_017EA,S2507_C02_017M,S2507_C02_017MA"}, "S0501_C05_124E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!Occupied housing units!!ROOMS!!6 or 7 rooms", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_124EA,S0501_C05_124M,S0501_C05_124MA"}, "S0501_C05_123E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!Occupied housing units!!ROOMS!!4 or 5 rooms", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_123EA,S0501_C05_123M,S0501_C05_123MA"}, "S0505_C01_059E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Employed", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_059EA,S0505_C01_059M,S0505_C01_059MA"}, "S0802_C03_014E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_014EA,S0802_C03_014M,S0802_C03_014MA"}, "S2507_C02_018E": {"label": "Estimate!!Percent owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$150,000 or more", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "float", "group": "S2507", "limit": 0, "attributes": "S2507_C02_018EA,S2507_C02_018M,S2507_C02_018MA"}, "S1201_C03_012E": {"label": "Estimate!!Widowed!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over!!35 to 44 years", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C03_012EA,S1201_C03_012M,S1201_C03_012MA"}, "S2401_C05_007E": {"label": "Estimate!!Percent Female!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Computer, engineering, and science occupations:!!Computer and mathematical occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2401", "limit": 0, "attributes": "S2401_C05_007EA,S2401_C05_007M,S2401_C05_007MA"}, "AIANHH": {"label": "American Indian Area/Alaska Native Area/Hawaiian Home Land", "group": "N/A", "limit": 0}, "S2507_C02_019E": {"label": "Estimate!!Percent owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Median household income (dollars)", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "int", "group": "S2507", "limit": 0, "attributes": "S2507_C02_019EA,S2507_C02_019M,S2507_C02_019MA"}, "S2702_C02_090E": {"label": "Estimate!!Total Uninsured!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION ADJUSTED DOLLARS)!!Civilian noninstitutionalized population 16 years and over with earnings!!$75,000 or more", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_090EA,S2702_C02_090M,S2702_C02_090MA"}, "S2401_C05_008E": {"label": "Estimate!!Percent Female!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Computer, engineering, and science occupations:!!Architecture and engineering occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2401", "limit": 0, "attributes": "S2401_C05_008EA,S2401_C05_008M,S2401_C05_008MA"}, "S1201_C03_011E": {"label": "Estimate!!Widowed!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over!!20 to 34 years", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C03_011EA,S1201_C03_011M,S1201_C03_011MA"}, "S0103_C02_104E": {"label": "Estimate!!65 years and over!!Renter-occupied housing units!!GROSS RENT!!Median gross rent (dollars)", "concept": "Population 65 Years and Over in the United States", "predicateType": "int", "group": "S0103", "limit": 0, "attributes": "S0103_C02_104EA,S0103_C02_104M,S0103_C02_104MA"}, "S0501_C05_129E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!Occupied housing units!!VEHICLES AVAILABLE!!1 or more", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_129EA,S0501_C05_129M,S0501_C05_129MA"}, "S2702_C02_091E": {"label": "Estimate!!Total Uninsured!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION ADJUSTED DOLLARS)!!Civilian noninstitutionalized population 16 years and over with earnings!!Median earnings (dollars)", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "int", "group": "S2702", "limit": 0, "attributes": "S2702_C02_091EA,S2702_C02_091M,S2702_C02_091MA"}, "S2701_C04_061E": {"label": "Estimate!!Uninsured!!Civilian noninstitutionalized population!!RATIO OF INCOME TO POVERTY LEVEL IN THE PAST 12 MONTHS!!Civilian noninstitutionalized population for whom poverty status is determined!!Below 100 percent of the poverty threshold", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C04_061EA,S2701_C04_061M,S2701_C04_061MA"}, "S0802_C03_019E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_019EA,S0802_C03_019M,S0802_C03_019MA"}, "S1201_C03_010E": {"label": "Estimate!!Widowed!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over!!15 to 19 years", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C03_010EA,S1201_C03_010M,S1201_C03_010MA"}, "S2401_C05_005E": {"label": "Estimate!!Percent Female!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Management, business, and financial occupations:!!Business and financial operations occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2401", "limit": 0, "attributes": "S2401_C05_005EA,S2401_C05_005M,S2401_C05_005MA"}, "S2501_C03_030E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Nonfamily households!!Householder not living alone!!Householder 35 to 64 years", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C03_030EA,S2501_C03_030M,S2501_C03_030MA"}, "S0501_C05_128E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!Occupied housing units!!VEHICLES AVAILABLE!!None", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_128EA,S0501_C05_128M,S0501_C05_128MA"}, "S2702_C02_092E": {"label": "Estimate!!Total Uninsured!!HOUSEHOLD INCOME (IN 2024 INFLATION ADJUSTED DOLLARS)!!Total household population", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "int", "group": "S2702", "limit": 0, "attributes": "S2702_C02_092EA,S2702_C02_092M,S2702_C02_092MA"}, "S2401_C05_006E": {"label": "Estimate!!Percent Female!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Computer, engineering, and science occupations:", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2401", "limit": 0, "attributes": "S2401_C05_006EA,S2401_C05_006M,S2401_C05_006MA"}, "S0802_C03_018E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_018EA,S0802_C03_018M,S0802_C03_018MA"}, "S2501_C03_031E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Nonfamily households!!Householder not living alone!!Householder 65 years and over", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C03_031EA,S2501_C03_031M,S2501_C03_031MA"}, "S2702_C02_093E": {"label": "Estimate!!Total Uninsured!!HOUSEHOLD INCOME (IN 2024 INFLATION ADJUSTED DOLLARS)!!Total household population!!Under $25,000", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_093EA,S2702_C02_093M,S2702_C02_093MA"}, "S0501_C05_127E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!Occupied housing units!!1.01 or more occupants per room", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_127EA,S0501_C05_127M,S0501_C05_127MA"}, "S0102_C02_078E": {"label": "Estimate!!60 years and over!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income!!Mean Social Security income (dollars)", "concept": "Population 60 Years and Over in the United States", "predicateType": "int", "group": "S0102", "limit": 0, "attributes": "S0102_C02_078EA,S0102_C02_078M,S0102_C02_078MA"}, "S1201_C03_016E": {"label": "Estimate!!Widowed!!Population 15 years and over", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C03_016EA,S1201_C03_016M,S1201_C03_016MA"}, "S2602_C04_088E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!OCCUPATION!!Civilian employed population 16 years and over!!Sales and office occupations", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C04_088EA,S2602_C04_088M,S2602_C04_088MA"}, "S2401_C05_003E": {"label": "Estimate!!Percent Female!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Management, business, and financial occupations:", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2401", "limit": 0, "attributes": "S2401_C05_003EA,S2401_C05_003M,S2401_C05_003MA"}, "S2501_C03_032E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!FAMILY TYPE AND PRESENCE OF OWN CHILDREN!!With related children of householder under 18 years", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C03_032EA,S2501_C03_032M,S2501_C03_032MA"}, "S1811_C02_028E": {"label": "Estimate!!With a Disability!!Employed Population Age 16 and Over!!INDUSTRY!!Educational services, and health care and social assistance", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C02_028EA,S1811_C02_028M,S1811_C02_028MA"}, "S2702_C02_094E": {"label": "Estimate!!Total Uninsured!!HOUSEHOLD INCOME (IN 2024 INFLATION ADJUSTED DOLLARS)!!Total household population!!$25,000 to $49,999", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_094EA,S2702_C02_094M,S2702_C02_094MA"}, "S0102_C02_079E": {"label": "Estimate!!60 years and over!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_079EA,S0102_C02_079M,S0102_C02_079MA"}, "S1201_C03_015E": {"label": "Estimate!!Widowed!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over!!65 years and over", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C03_015EA,S1201_C03_015M,S1201_C03_015MA"}, "S1301_C01_032E": {"label": "Estimate!!Total!!PERCENT ALLOCATED!!Fertility", "concept": "Fertility", "predicateType": "float", "group": "S1301", "limit": 0, "attributes": "S1301_C01_032EA,S1301_C01_032M,S1301_C01_032MA"}, "S2602_C04_087E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!OCCUPATION!!Civilian employed population 16 years and over!!Service occupations", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C04_087EA,S2602_C04_087M,S2602_C04_087MA"}, "S0102PR_C02_001E": {"label": "Estimate!!60 years and over!!Total population", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_001EA,S0102PR_C02_001M,S0102PR_C02_001MA"}, "S2401_C05_004E": {"label": "Estimate!!Percent Female!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Management, business, and financial occupations:!!Management occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2401", "limit": 0, "attributes": "S2401_C05_004EA,S2401_C05_004M,S2401_C05_004MA"}, "S2501_C03_033E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!FAMILY TYPE AND PRESENCE OF OWN CHILDREN!!With related children of householder under 18 years!!With own children of householder under 18 years", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C03_033EA,S2501_C03_033M,S2501_C03_033MA"}, "S1811_C02_029E": {"label": "Estimate!!With a Disability!!Employed Population Age 16 and Over!!INDUSTRY!!Arts, entertainment, and recreation, and accommodation and food services", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C02_029EA,S1811_C02_029M,S1811_C02_029MA"}, "S2702_C02_095E": {"label": "Estimate!!Total Uninsured!!HOUSEHOLD INCOME (IN 2024 INFLATION ADJUSTED DOLLARS)!!Total household population!!$50,000 to $74,999", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_095EA,S2702_C02_095M,S2702_C02_095MA"}, "S1811_C02_026E": {"label": "Estimate!!With a Disability!!Employed Population Age 16 and Over!!INDUSTRY!!Finance and insurance, and real estate and rental and leasing", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C02_026EA,S1811_C02_026M,S1811_C02_026MA"}, "S1201_C03_014E": {"label": "Estimate!!Widowed!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over!!55 to 64 years", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C03_014EA,S1201_C03_014M,S1201_C03_014MA"}, "S0102_C02_076E": {"label": "Estimate!!60 years and over!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings!!Mean earnings (dollars)", "concept": "Population 60 Years and Over in the United States", "predicateType": "int", "group": "S0102", "limit": 0, "attributes": "S0102_C02_076EA,S0102_C02_076M,S0102_C02_076MA"}, "S2702_C02_096E": {"label": "Estimate!!Total Uninsured!!HOUSEHOLD INCOME (IN 2024 INFLATION ADJUSTED DOLLARS)!!Total household population!!$75,000 to $99,999", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_096EA,S2702_C02_096M,S2702_C02_096MA"}, "S2401_C05_001E": {"label": "Estimate!!Percent Female!!Civilian employed population 16 years and over", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2401", "limit": 0, "attributes": "S2401_C05_001EA,S2401_C05_001M,S2401_C05_001MA"}, "S2501_C03_034E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!FAMILY TYPE AND PRESENCE OF OWN CHILDREN!!With related children of householder under 18 years!!With own children of householder under 18 years!!Under 6 years only", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C03_034EA,S2501_C03_034M,S2501_C03_034MA"}, "S1201_C03_013E": {"label": "Estimate!!Widowed!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over!!45 to 54 years", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C03_013EA,S1201_C03_013M,S1201_C03_013MA"}, "S2602_C04_089E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!OCCUPATION!!Civilian employed population 16 years and over!!Natural resources, construction, extraction, and maintenance occupations", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C04_089EA,S2602_C04_089M,S2602_C04_089MA"}, "S0102_C02_077E": {"label": "Estimate!!60 years and over!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_077EA,S0102_C02_077M,S0102_C02_077MA"}, "S2702_C02_097E": {"label": "Estimate!!Total Uninsured!!HOUSEHOLD INCOME (IN 2024 INFLATION ADJUSTED DOLLARS)!!Total household population!!$100,000 and over", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_097EA,S2702_C02_097M,S2702_C02_097MA"}, "S2401_C05_002E": {"label": "Estimate!!Percent Female!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2401", "limit": 0, "attributes": "S2401_C05_002EA,S2401_C05_002M,S2401_C05_002MA"}, "S2501_C03_035E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!FAMILY TYPE AND PRESENCE OF OWN CHILDREN!!With related children of householder under 18 years!!With own children of householder under 18 years!!Under 6 years and 6 to 17 years", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C03_035EA,S2501_C03_035M,S2501_C03_035MA"}, "S1811_C02_027E": {"label": "Estimate!!With a Disability!!Employed Population Age 16 and Over!!INDUSTRY!!Professional, scientific, and management, and administrative and waste management services", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C02_027EA,S1811_C02_027M,S1811_C02_027MA"}, "S1811_C02_036E": {"label": "Estimate!!With a Disability!!COMMUTING TO WORK!!Workers Age 16 and Over!!Walked", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C02_036EA,S1811_C02_036M,S1811_C02_036MA"}, "S2602_C04_084E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!EMPLOYMENT STATUS!!Population 16 years and over!!Not in labor force", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C04_084EA,S2602_C04_084M,S2602_C04_084MA"}, "S2401_C05_011E": {"label": "Estimate!!Percent Female!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:!!Community and social service occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2401", "limit": 0, "attributes": "S2401_C05_011EA,S2401_C05_011M,S2401_C05_011MA"}, "S2702_C02_098E": {"label": "Estimate!!Total Uninsured!!HOUSEHOLD INCOME (IN 2024 INFLATION ADJUSTED DOLLARS)!!Total household population!!Median household income of householders", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "int", "group": "S2702", "limit": 0, "attributes": "S2702_C02_098EA,S2702_C02_098M,S2702_C02_098MA"}, "S2501_C03_024E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Nonfamily households!!Householder living alone", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C03_024EA,S2501_C03_024M,S2501_C03_024MA"}, "S1811_C02_037E": {"label": "Estimate!!With a Disability!!COMMUTING TO WORK!!Workers Age 16 and Over!!Taxi or ride-hailing services, motorcycle, bicycle, or other means", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C02_037EA,S1811_C02_037M,S1811_C02_037MA"}, "S2602_C04_083E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Armed Forces", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C04_083EA,S2602_C04_083M,S2602_C04_083MA"}, "S1201_C03_019E": {"label": "Estimate!!Widowed!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C03_019EA,S1201_C03_019M,S1201_C03_019MA"}, "S2401_C05_012E": {"label": "Estimate!!Percent Female!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:!!Legal occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2401", "limit": 0, "attributes": "S2401_C05_012EA,S2401_C05_012M,S2401_C05_012MA"}, "S2702_C02_099E": {"label": "Estimate!!Total Uninsured!!RATIO OF INCOME TO POVERTY LEVEL IN THE PAST 12 MONTHS!!Civilian noninstitutionalized population for whom poverty status is determined", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "int", "group": "S2702", "limit": 0, "attributes": "S2702_C02_099EA,S2702_C02_099M,S2702_C02_099MA"}, "S2501_C03_025E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Nonfamily households!!Householder living alone!!Householder 15 to 34 years", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C03_025EA,S2501_C03_025M,S2501_C03_025MA"}, "S1811_C02_034E": {"label": "Estimate!!With a Disability!!COMMUTING TO WORK!!Workers Age 16 and Over!!Car, truck, or van - carpooled", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C02_034EA,S1811_C02_034M,S1811_C02_034MA"}, "S1201_C03_018E": {"label": "Estimate!!Widowed!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C03_018EA,S1201_C03_018M,S1201_C03_018MA"}, "S2602_C04_086E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!OCCUPATION!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C04_086EA,S2602_C04_086M,S2602_C04_086MA"}, "S0804_C04_090E": {"label": "Estimate!!Public transportation!!Workers 16 years and over in households!!VEHICLES AVAILABLE!!No vehicle available", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_090EA,S0804_C04_090M,S0804_C04_090MA"}, "S1703_C04_002E": {"label": "Estimate!!Less than 125 percent of the poverty level!!Population for whom poverty status is determined!!SEX!!Male", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C04_002EA,S1703_C04_002M,S1703_C04_002MA"}, "S2501_C03_026E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Nonfamily households!!Householder living alone!!Householder 35 to 64 years", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C03_026EA,S2501_C03_026M,S2501_C03_026MA"}, "S0601PR_C02_053E": {"label": "Estimate!!Native; born in Puerto Rico!!PERCENT ALLOCATED!!Place of birth", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "int", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C02_053EA,S0601PR_C02_053M,S0601PR_C02_053MA"}, "S1811_C02_035E": {"label": "Estimate!!With a Disability!!COMMUTING TO WORK!!Workers Age 16 and Over!!Public transportation", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C02_035EA,S1811_C02_035M,S1811_C02_035MA"}, "S1201_C03_017E": {"label": "Estimate!!Widowed!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C03_017EA,S1201_C03_017M,S1201_C03_017MA"}, "S2602_C04_085E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!OCCUPATION!!Civilian employed population 16 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C04_085EA,S2602_C04_085M,S2602_C04_085MA"}, "S0503_C02_019E": {"label": "Estimate!!Foreign-born; Born in Europe!!Foreign-born population!!SEX AND AGE!!75 to 84 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_019EA,S0503_C02_019M,S0503_C02_019MA"}, "S2401_C05_010E": {"label": "Estimate!!Percent Female!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2401", "limit": 0, "attributes": "S2401_C05_010EA,S2401_C05_010M,S2401_C05_010MA"}, "S1703_C04_001E": {"label": "Estimate!!Less than 125 percent of the poverty level!!Population for whom poverty status is determined", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C04_001EA,S1703_C04_001M,S1703_C04_001MA"}, "S2501_C03_027E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Nonfamily households!!Householder living alone!!Householder 65 years and over", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C03_027EA,S2501_C03_027M,S2501_C03_027MA"}, "S0601PR_C02_052E": {"label": "Estimate!!Native; born in Puerto Rico!!PERCENT ALLOCATED!!Citizenship status", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "int", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C02_052EA,S0601PR_C02_052M,S0601PR_C02_052MA"}, "S1811_C02_032E": {"label": "Estimate!!With a Disability!!COMMUTING TO WORK!!Workers Age 16 and Over", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "int", "group": "S1811", "limit": 0, "attributes": "S1811_C02_032EA,S1811_C02_032M,S1811_C02_032MA"}, "S2602_C04_080E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Employed", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C04_080EA,S2602_C04_080M,S2602_C04_080MA"}, "S0503_C02_018E": {"label": "Estimate!!Foreign-born; Born in Europe!!Foreign-born population!!SEX AND AGE!!65 to 74 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_018EA,S0503_C02_018M,S0503_C02_018MA"}, "S1703_C04_004E": {"label": "Estimate!!Less than 125 percent of the poverty level!!Population for whom poverty status is determined!!AGE!!Under 18 years", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C04_004EA,S1703_C04_004M,S1703_C04_004MA"}, "S0601PR_C02_051E": {"label": "Estimate!!Native; born in Puerto Rico!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!At or above 150 percent of the poverty level", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C02_051EA,S0601PR_C02_051M,S0601PR_C02_051MA"}, "S2501_C03_028E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Nonfamily households!!Householder not living alone", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C03_028EA,S2501_C03_028M,S2501_C03_028MA"}, "S2501_C03_029E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Nonfamily households!!Householder not living alone!!Householder 15 to 34 years", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C03_029EA,S2501_C03_029M,S2501_C03_029MA"}, "S1811_C02_033E": {"label": "Estimate!!With a Disability!!COMMUTING TO WORK!!Workers Age 16 and Over!!Car, truck, or van - drove alone", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C02_033EA,S1811_C02_033M,S1811_C02_033MA"}, "S0503_C02_017E": {"label": "Estimate!!Foreign-born; Born in Europe!!Foreign-born population!!SEX AND AGE!!55 to 64 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_017EA,S0503_C02_017M,S0503_C02_017MA"}, "S1703_C04_003E": {"label": "Estimate!!Less than 125 percent of the poverty level!!Population for whom poverty status is determined!!SEX!!Female", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C04_003EA,S1703_C04_003M,S1703_C04_003MA"}, "S0601PR_C02_050E": {"label": "Estimate!!Native; born in Puerto Rico!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!100 to 149 percent of the poverty level", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C02_050EA,S0601PR_C02_050M,S0601PR_C02_050MA"}, "S1811_C02_030E": {"label": "Estimate!!With a Disability!!Employed Population Age 16 and Over!!INDUSTRY!!Other services (except public administration)", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C02_030EA,S1811_C02_030M,S1811_C02_030MA"}, "S2602_C04_082E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed!!Percent of civilian labor force", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C04_082EA,S2602_C04_082M,S2602_C04_082MA"}, "S0503_C02_016E": {"label": "Estimate!!Foreign-born; Born in Europe!!Foreign-born population!!SEX AND AGE!!45 to 54 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_016EA,S0503_C02_016M,S0503_C02_016MA"}, "S1703_C04_006E": {"label": "Estimate!!Less than 125 percent of the poverty level!!Population for whom poverty status is determined!!AGE!!18 to 64 years", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C04_006EA,S1703_C04_006M,S1703_C04_006MA"}, "S2701_C04_060E": {"label": "Estimate!!Uninsured!!Civilian noninstitutionalized population!!RATIO OF INCOME TO POVERTY LEVEL IN THE PAST 12 MONTHS!!Civilian noninstitutionalized population for whom poverty status is determined!!At or above 400 percent of the poverty threshold", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C04_060EA,S2701_C04_060M,S2701_C04_060MA"}, "S2602_C04_081E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C04_081EA,S2602_C04_081M,S2602_C04_081MA"}, "S1811_C02_031E": {"label": "Estimate!!With a Disability!!Employed Population Age 16 and Over!!INDUSTRY!!Public administration", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C02_031EA,S1811_C02_031M,S1811_C02_031MA"}, "S0503_C02_015E": {"label": "Estimate!!Foreign-born; Born in Europe!!Foreign-born population!!SEX AND AGE!!25 to 44 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_015EA,S0503_C02_015M,S0503_C02_015MA"}, "S0502_C01_146E": {"label": "Estimate!!Total!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_146EA,S0502_C01_146M,S0502_C01_146MA"}, "S1703_C04_005E": {"label": "Estimate!!Less than 125 percent of the poverty level!!Population for whom poverty status is determined!!AGE!!Under 18 years!!Related children of householder under 18 years", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C04_005EA,S1703_C04_005M,S1703_C04_005MA"}, "S1902_C02_003E": {"label": "Estimate!!Percent Distribution!!HOUSEHOLD INCOME!!All households!!With earnings!!With wages or salary income", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1902", "limit": 0, "attributes": "S1902_C02_003EA,S1902_C02_003M,S1902_C02_003MA"}, "S0505_C01_056E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Population 16 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C01_056EA,S0505_C01_056M,S0505_C01_056MA"}, "S0503_C02_014E": {"label": "Estimate!!Foreign-born; Born in Europe!!Foreign-born population!!SEX AND AGE!!18 to 24 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_014EA,S0503_C02_014M,S0503_C02_014MA"}, "S0502_C01_145E": {"label": "Estimate!!Total!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_145EA,S0502_C01_145M,S0502_C01_145MA"}, "S0804_C04_096E": {"label": "Estimate!!Public transportation!!PERCENT ALLOCATED!!Travel time to work", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "int", "group": "S0804", "limit": 0, "attributes": "S0804_C04_096EA,S0804_C04_096M,S0804_C04_096MA"}, "S1902_C02_002E": {"label": "Estimate!!Percent Distribution!!HOUSEHOLD INCOME!!All households!!With earnings", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1902", "limit": 0, "attributes": "S1902_C02_002EA,S1902_C02_002M,S1902_C02_002MA"}, "S0505_C01_057E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_057EA,S0505_C01_057M,S0505_C01_057MA"}, "S0503_C02_013E": {"label": "Estimate!!Foreign-born; Born in Europe!!Foreign-born population!!SEX AND AGE!!5 to 17 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_013EA,S0503_C02_013M,S0503_C02_013MA"}, "S0502_C01_144E": {"label": "Estimate!!Total!!Renter-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C01_144EA,S0502_C01_144M,S0502_C01_144MA"}, "S0804_C04_095E": {"label": "Estimate!!Public transportation!!PERCENT ALLOCATED!!Time arriving at work from home", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "int", "group": "S0804", "limit": 0, "attributes": "S0804_C04_095EA,S0804_C04_095M,S0804_C04_095MA"}, "S0503_C02_012E": {"label": "Estimate!!Foreign-born; Born in Europe!!Foreign-born population!!SEX AND AGE!!Under 5 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_012EA,S0503_C02_012M,S0503_C02_012MA"}, "S1902_C02_001E": {"label": "Estimate!!Percent Distribution!!HOUSEHOLD INCOME!!All households", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1902", "limit": 0, "attributes": "S1902_C02_001EA,S1902_C02_001M,S1902_C02_001MA"}, "S0505_C01_054E": {"label": "Estimate!!Total!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_054EA,S0505_C01_054M,S0505_C01_054MA"}, "S0502_C01_143E": {"label": "Estimate!!Total!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_143EA,S0502_C01_143M,S0502_C01_143MA"}, "S0804_C04_097E": {"label": "Estimate!!Public transportation!!PERCENT ALLOCATED!!Vehicles available", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "int", "group": "S0804", "limit": 0, "attributes": "S0804_C04_097EA,S0804_C04_097M,S0804_C04_097MA"}, "S0503_C02_011E": {"label": "Estimate!!Foreign-born; Born in Europe!!Foreign-born population!!SEX AND AGE!!Female", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_011EA,S0503_C02_011M,S0503_C02_011MA"}, "S0505_C01_055E": {"label": "Estimate!!Total!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English!!Speak English less than \"very well\"", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_055EA,S0505_C01_055M,S0505_C01_055MA"}, "S0502_C01_142E": {"label": "Estimate!!Total!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_142EA,S0502_C01_142M,S0502_C01_142MA"}, "S0501_C05_130E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!Occupied housing units!!SELECTED CHARACTERISTICS!!No telephone service available", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_130EA,S0501_C05_130M,S0501_C05_130MA"}, "S0505_C01_052E": {"label": "Estimate!!Total!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C01_052EA,S0505_C01_052M,S0505_C01_052MA"}, "S0503_C02_010E": {"label": "Estimate!!Foreign-born; Born in Europe!!Foreign-born population!!SEX AND AGE!!Male", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_010EA,S0503_C02_010M,S0503_C02_010MA"}, "S0802_C03_021E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!NATIVITY AND CITIZENSHIP STATUS!!Native", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_021EA,S0802_C03_021M,S0802_C03_021MA"}, "S0804_C04_092E": {"label": "Estimate!!Public transportation!!Workers 16 years and over in households!!VEHICLES AVAILABLE!!2 vehicles available", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_092EA,S0804_C04_092M,S0804_C04_092MA"}, "S0502_C01_141E": {"label": "Estimate!!Total!!Owner-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C01_141EA,S0502_C01_141M,S0502_C01_141MA"}, "S0701PR_C01_001E": {"label": "Estimate!!Total!!Population 1 year and over", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "int", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C01_001EA,S0701PR_C01_001M,S0701PR_C01_001MA"}, "S0502_C01_140E": {"label": "Estimate!!Total!!Occupied housing units!!SELECTED CHARACTERISTICS!!Limited English Speaking Households", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_140EA,S0502_C01_140M,S0502_C01_140MA"}, "S0505_C01_053E": {"label": "Estimate!!Total!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!English only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_053EA,S0505_C01_053M,S0505_C01_053MA"}, "S0802_C03_020E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_020EA,S0802_C03_020M,S0802_C03_020MA"}, "S0804_C04_091E": {"label": "Estimate!!Public transportation!!Workers 16 years and over in households!!VEHICLES AVAILABLE!!1 vehicle available", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_091EA,S0804_C04_091M,S0804_C04_091MA"}, "S0701PR_C01_002E": {"label": "Estimate!!Total!!Population 1 year and over!!AGE!!1 to 4 years", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "int", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C01_002EA,S0701PR_C01_002M,S0701PR_C01_002MA"}, "S0505_C01_050E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_050EA,S0505_C01_050M,S0505_C01_050MA"}, "S0804_C04_094E": {"label": "Estimate!!Public transportation!!PERCENT ALLOCATED!!Means of transportation to work", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "int", "group": "S0804", "limit": 0, "attributes": "S0804_C04_094EA,S0804_C04_094M,S0804_C04_094MA"}, "S2507_C02_010E": {"label": "Estimate!!Percent owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!VALUE!!Median (dollars)", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "int", "group": "S2507", "limit": 0, "attributes": "S2507_C02_010EA,S2507_C02_010M,S2507_C02_010MA"}, "S0505_C01_051E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Graduate or professional degree", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_051EA,S0505_C01_051M,S0505_C01_051MA"}, "S0701PR_C01_003E": {"label": "Estimate!!Total!!Population 1 year and over!!AGE!!5 to 17 years", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "int", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C01_003EA,S0701PR_C01_003M,S0701PR_C01_003MA"}, "S0804_C04_093E": {"label": "Estimate!!Public transportation!!Workers 16 years and over in households!!VEHICLES AVAILABLE!!3 or more vehicles available", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_093EA,S0804_C04_093M,S0804_C04_093MA"}, "S2412_C02_023E": {"label": "Estimate!!Median earnings (dollars) for male!!Full-time, year-round civilian employed population 16 years and over with earnings!!Service occupations:!!Food preparation and serving related occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C02_023EA,S2412_C02_023M,S2412_C02_023MA"}, "S0802_C03_025E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Speak language other than English", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_025EA,S0802_C03_025M,S0802_C03_025MA"}, "S0501_C03_080E": {"label": "Estimate!!Foreign-born!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$1 to $9,999 or loss", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_080EA,S0501_C03_080M,S0501_C03_080MA"}, "S2412_C02_024E": {"label": "Estimate!!Median earnings (dollars) for male!!Full-time, year-round civilian employed population 16 years and over with earnings!!Service occupations:!!Building and grounds cleaning and maintenance occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C02_024EA,S2412_C02_024M,S2412_C02_024MA"}, "S0802_C03_024E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born!!Not a U.S. citizen", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_024EA,S0802_C03_024M,S0802_C03_024MA"}, "S0501_C03_081E": {"label": "Estimate!!Foreign-born!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$10,000 to $14,999", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_081EA,S0501_C03_081M,S0501_C03_081MA"}, "S0802_C03_023E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born!!Naturalized U.S. citizen", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_023EA,S0802_C03_023M,S0802_C03_023MA"}, "S2412_C02_021E": {"label": "Estimate!!Median earnings (dollars) for male!!Full-time, year-round civilian employed population 16 years and over with earnings!!Service occupations:!!Protective service occupations:!!Firefighting and prevention, and other protective service workers including supervisors", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C02_021EA,S2412_C02_021M,S2412_C02_021MA"}, "S0501_C03_082E": {"label": "Estimate!!Foreign-born!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$15,000 to $24,999", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_082EA,S0501_C03_082M,S0501_C03_082MA"}, "S2412_C02_022E": {"label": "Estimate!!Median earnings (dollars) for male!!Full-time, year-round civilian employed population 16 years and over with earnings!!Service occupations:!!Protective service occupations:!!Law enforcement workers including supervisors", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C02_022EA,S2412_C02_022M,S2412_C02_022MA"}, "S0501_C03_083E": {"label": "Estimate!!Foreign-born!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$25,000 to $34,999", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_083EA,S0501_C03_083M,S0501_C03_083MA"}, "S0802_C03_022E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_022EA,S0802_C03_022M,S0802_C03_022MA"}, "S2601C_C02_099E": {"label": "Estimate!!Total group quarters population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!With earnings for full-time, year-round workers:!!Male", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_099EA,S2601C_C02_099M,S2601C_C02_099MA"}, "S0802_C03_029E": {"label": "Estimate!!Car, truck, or van -- carpooled!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$1 to $9,999 or loss", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_029EA,S0802_C03_029M,S0802_C03_029MA"}, "S0501_C03_084E": {"label": "Estimate!!Foreign-born!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$35,000 to $49,999", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_084EA,S0501_C03_084M,S0501_C03_084MA"}, "S0802_C03_028E": {"label": "Estimate!!Car, truck, or van -- carpooled!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "int", "group": "S0802", "limit": 0, "attributes": "S0802_C03_028EA,S0802_C03_028M,S0802_C03_028MA"}, "S2412_C02_020E": {"label": "Estimate!!Median earnings (dollars) for male!!Full-time, year-round civilian employed population 16 years and over with earnings!!Service occupations:!!Protective service occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C02_020EA,S2412_C02_020M,S2412_C02_020MA"}, "S0501_C03_085E": {"label": "Estimate!!Foreign-born!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$50,000 to $74,999", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_085EA,S0501_C03_085M,S0501_C03_085MA"}, "S0802_C03_027E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Speak language other than English!!Speak English less than \"very well\"", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_027EA,S0802_C03_027M,S0802_C03_027MA"}, "S0501_C03_086E": {"label": "Estimate!!Foreign-born!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$75,000 or more", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_086EA,S0501_C03_086M,S0501_C03_086MA"}, "S0802_C03_026E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Speak language other than English!!Speak English \"very well\"", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_026EA,S0802_C03_026M,S0802_C03_026MA"}, "S0501_C03_087E": {"label": "Estimate!!Foreign-born!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!Median earnings (dollars) for full-time, year-round workers!!Male", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C03_087EA,S0501_C03_087M,S0501_C03_087MA"}, "S1401_C04_034E": {"label": "Estimate!!Percent in public school!!Population 18 to 24 years!!Females 18 to 24 years!!Enrolled in college or graduate school", "concept": "School Enrollment", "predicateType": "float", "group": "S1401", "limit": 0, "attributes": "S1401_C04_034EA,S1401_C04_034M,S1401_C04_034MA"}, "S2001_C03_007E": {"label": "Estimate!!Male!!Population 16 years and over with earnings!!FULL-TIME, YEAR-ROUND WORKERS WITH EARNINGS!!$25,000 to $34,999", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C03_007EA,S2001_C03_007M,S2001_C03_007MA"}, "S1401_C04_030E": {"label": "Estimate!!Percent in public school!!Population 18 to 24 years!!Enrolled in college or graduate school", "concept": "School Enrollment", "predicateType": "float", "group": "S1401", "limit": 0, "attributes": "S1401_C04_030EA,S1401_C04_030M,S1401_C04_030MA"}, "S2001_C03_008E": {"label": "Estimate!!Male!!Population 16 years and over with earnings!!FULL-TIME, YEAR-ROUND WORKERS WITH EARNINGS!!$35,000 to $49,999", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C03_008EA,S2001_C03_008M,S2001_C03_008MA"}, "S1401_C04_031E": {"label": "Estimate!!Percent in public school!!Population 18 to 24 years!!Males 18 to 24 years", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C04_031EA,S1401_C04_031M,S1401_C04_031MA"}, "S2001_C03_009E": {"label": "Estimate!!Male!!Population 16 years and over with earnings!!FULL-TIME, YEAR-ROUND WORKERS WITH EARNINGS!!$50,000 to $64,999", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C03_009EA,S2001_C03_009M,S2001_C03_009MA"}, "S1401_C04_032E": {"label": "Estimate!!Percent in public school!!Population 18 to 24 years!!Males 18 to 24 years!!Enrolled in college or graduate school", "concept": "School Enrollment", "predicateType": "float", "group": "S1401", "limit": 0, "attributes": "S1401_C04_032EA,S1401_C04_032M,S1401_C04_032MA"}, "S1401_C04_033E": {"label": "Estimate!!Percent in public school!!Population 18 to 24 years!!Females 18 to 24 years", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C04_033EA,S1401_C04_033M,S1401_C04_033MA"}, "S2001_C03_003E": {"label": "Estimate!!Male!!Population 16 years and over with earnings!!FULL-TIME, YEAR-ROUND WORKERS WITH EARNINGS", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C03_003EA,S2001_C03_003M,S2001_C03_003MA"}, "S0505_C01_060E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_060EA,S0505_C01_060M,S0505_C01_060MA"}, "S2001_C03_004E": {"label": "Estimate!!Male!!Population 16 years and over with earnings!!FULL-TIME, YEAR-ROUND WORKERS WITH EARNINGS!!$1 to $9,999 or loss", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C03_004EA,S2001_C03_004M,S2001_C03_004MA"}, "S0505_C01_061E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed!!Percent of civilian labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_061EA,S0505_C01_061M,S0505_C01_061MA"}, "S2001_C03_005E": {"label": "Estimate!!Male!!Population 16 years and over with earnings!!FULL-TIME, YEAR-ROUND WORKERS WITH EARNINGS!!$10,000 to $14,999", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C03_005EA,S2001_C03_005M,S2001_C03_005MA"}, "S2001_C03_006E": {"label": "Estimate!!Male!!Population 16 years and over with earnings!!FULL-TIME, YEAR-ROUND WORKERS WITH EARNINGS!!$15,000 to $24,999", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C03_006EA,S2001_C03_006M,S2001_C03_006MA"}, "S2601C_C02_090E": {"label": "Estimate!!Total group quarters population!!EMPLOYMENT STATUS!!Population 16 years and over!!Not in labor force", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_090EA,S2601C_C02_090M,S2601C_C02_090MA"}, "S0103_C02_101E": {"label": "Estimate!!65 years and over!!Renter-occupied housing units", "concept": "Population 65 Years and Over in the United States", "predicateType": "int", "group": "S0103", "limit": 0, "attributes": "S0103_C02_101EA,S0103_C02_101M,S0103_C02_101MA"}, "S0103_C02_100E": {"label": "Estimate!!65 years and over!!Owner-occupied housing units!!OWNER CHARACTERISTICS!!Median selected monthly owner costs without a mortgage (dollars)", "concept": "Population 65 Years and Over in the United States", "predicateType": "int", "group": "S0103", "limit": 0, "attributes": "S0103_C02_100EA,S0103_C02_100M,S0103_C02_100MA"}, "S2001_C03_001E": {"label": "Estimate!!Male!!Population 16 years and over with earnings", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C03_001EA,S2001_C03_001M,S2001_C03_001MA"}, "S0103_C02_103E": {"label": "Estimate!!65 years and over!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C02_103EA,S0103_C02_103M,S0103_C02_103MA"}, "S2001_C03_002E": {"label": "Estimate!!Male!!Population 16 years and over with earnings!!Median earnings (dollars)", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C03_002EA,S2001_C03_002M,S2001_C03_002MA"}, "S0103_C02_102E": {"label": "Estimate!!65 years and over!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C02_102EA,S0103_C02_102M,S0103_C02_102MA"}, "S2601C_C02_095E": {"label": "Estimate!!Total group quarters population!!OCCUPATION!!Civilian employed population 16 years and over!!Natural resources, construction, extraction, and maintenance occupations", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_095EA,S2601C_C02_095M,S2601C_C02_095MA"}, "S0505_C01_068E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Unpaid family workers", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_068EA,S0505_C01_068M,S0505_C01_068MA"}, "S0501_C03_088E": {"label": "Estimate!!Foreign-born!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!Median earnings (dollars) for full-time, year-round workers!!Female", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C03_088EA,S0501_C03_088M,S0501_C03_088MA"}, "S0505_C01_069E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!OCCUPATION!!Management, business, science, and arts occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_069EA,S0505_C01_069M,S0505_C01_069MA"}, "S2601C_C02_096E": {"label": "Estimate!!Total group quarters population!!OCCUPATION!!Civilian employed population 16 years and over!!Production, transportation, and material moving occupations", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_096EA,S2601C_C02_096M,S2601C_C02_096MA"}, "S0501_C03_089E": {"label": "Estimate!!Foreign-born!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C03_089EA,S0501_C03_089M,S0501_C03_089MA"}, "S2412_C02_029E": {"label": "Estimate!!Median earnings (dollars) for male!!Full-time, year-round civilian employed population 16 years and over with earnings!!Natural resources, construction, and maintenance occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C02_029EA,S2412_C02_029M,S2412_C02_029MA"}, "S2601C_C02_097E": {"label": "Estimate!!Total group quarters population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_097EA,S2601C_C02_097M,S2601C_C02_097MA"}, "S0505_C01_066E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Government workers", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_066EA,S0505_C01_066M,S0505_C01_066MA"}, "S2601C_C02_098E": {"label": "Estimate!!Total group quarters population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!Per capita income (dollars)", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_098EA,S2601C_C02_098M,S2601C_C02_098MA"}, "S0505_C01_067E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Self-employed workers in own not incorporated business", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_067EA,S0505_C01_067M,S0505_C01_067MA"}, "S2601C_C02_091E": {"label": "Estimate!!Total group quarters population!!OCCUPATION!!Civilian employed population 16 years and over", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_091EA,S2601C_C02_091M,S2601C_C02_091MA"}, "S2412_C02_027E": {"label": "Estimate!!Median earnings (dollars) for male!!Full-time, year-round civilian employed population 16 years and over with earnings!!Sales and office occupations:!!Sales and related occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C02_027EA,S2412_C02_027M,S2412_C02_027MA"}, "S0505_C01_064E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C01_064EA,S0505_C01_064M,S0505_C01_064MA"}, "S0802_C03_033E": {"label": "Estimate!!Car, truck, or van -- carpooled!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$35,000 to $49,999", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_033EA,S0802_C03_033M,S0802_C03_033MA"}, "S2601C_C02_092E": {"label": "Estimate!!Total group quarters population!!OCCUPATION!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_092EA,S2601C_C02_092M,S2601C_C02_092MA"}, "S2412_C02_028E": {"label": "Estimate!!Median earnings (dollars) for male!!Full-time, year-round civilian employed population 16 years and over with earnings!!Sales and office occupations:!!Office and administrative support occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C02_028EA,S2412_C02_028M,S2412_C02_028MA"}, "S0505_C01_065E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Private wage and salary workers", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_065EA,S0505_C01_065M,S0505_C01_065MA"}, "S0802_C03_032E": {"label": "Estimate!!Car, truck, or van -- carpooled!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$25,000 to $34,999", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_032EA,S0802_C03_032M,S0802_C03_032MA"}, "S2101_C01_040E": {"label": "Estimate!!Total!!DISABILITY STATUS!!Civilian population 18 years and over for whom poverty status is determined!!Without a disability", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C01_040EA,S2101_C01_040M,S2101_C01_040MA"}, "S2601C_C02_093E": {"label": "Estimate!!Total group quarters population!!OCCUPATION!!Civilian employed population 16 years and over!!Service occupations", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_093EA,S2601C_C02_093M,S2601C_C02_093MA"}, "S2412_C02_025E": {"label": "Estimate!!Median earnings (dollars) for male!!Full-time, year-round civilian employed population 16 years and over with earnings!!Service occupations:!!Personal care and service occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C02_025EA,S2412_C02_025M,S2412_C02_025MA"}, "S0505_C01_062E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Armed Forces", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_062EA,S0505_C01_062M,S0505_C01_062MA"}, "S0802_C03_031E": {"label": "Estimate!!Car, truck, or van -- carpooled!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$15,000 to $24,999", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_031EA,S0802_C03_031M,S0802_C03_031MA"}, "S2601C_C02_094E": {"label": "Estimate!!Total group quarters population!!OCCUPATION!!Civilian employed population 16 years and over!!Sales and office occupations", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_094EA,S2601C_C02_094M,S2601C_C02_094MA"}, "S2412_C02_026E": {"label": "Estimate!!Median earnings (dollars) for male!!Full-time, year-round civilian employed population 16 years and over with earnings!!Sales and office occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C02_026EA,S2412_C02_026M,S2412_C02_026MA"}, "S0505_C01_063E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Population 16 years and over!!Not in labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_063EA,S0505_C01_063M,S0505_C01_063MA"}, "S0802_C03_030E": {"label": "Estimate!!Car, truck, or van -- carpooled!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$10,000 to $14,999", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_030EA,S0802_C03_030M,S0802_C03_030MA"}, "S2412_C02_035E": {"label": "Estimate!!Median earnings (dollars) for male!!Full-time, year-round civilian employed population 16 years and over with earnings!!Production, transportation, and material moving occupations:!!Transportation occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C02_035EA,S2412_C02_035M,S2412_C02_035MA"}, "S0802_C03_037E": {"label": "Estimate!!Car, truck, or van -- carpooled!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!Median earnings (dollars)", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "int", "group": "S0802", "limit": 0, "attributes": "S0802_C03_037EA,S0802_C03_037M,S0802_C03_037MA"}, "S2407_C04_010E": {"label": "Estimate!!Private not-for-profit wage and salary workers!!Civilian employed population 16 years and over!!Professional, scientific, and management, and administrative and waste management services", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2407", "limit": 0, "attributes": "S2407_C04_010EA,S2407_C04_010M,S2407_C04_010MA"}, "S2412_C02_036E": {"label": "Estimate!!Median earnings (dollars) for male!!Full-time, year-round civilian employed population 16 years and over with earnings!!Production, transportation, and material moving occupations:!!Material moving occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C02_036EA,S2412_C02_036M,S2412_C02_036MA"}, "S0802_C03_036E": {"label": "Estimate!!Car, truck, or van -- carpooled!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$75,000 or more", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_036EA,S0802_C03_036M,S0802_C03_036MA"}, "S2407_C04_011E": {"label": "Estimate!!Private not-for-profit wage and salary workers!!Civilian employed population 16 years and over!!Educational services, and health care and social assistance", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2407", "limit": 0, "attributes": "S2407_C04_011EA,S2407_C04_011M,S2407_C04_011MA"}, "S0802_C03_035E": {"label": "Estimate!!Car, truck, or van -- carpooled!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$65,000 to $74,999", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_035EA,S0802_C03_035M,S0802_C03_035MA"}, "S2412_C02_033E": {"label": "Estimate!!Median earnings (dollars) for male!!Full-time, year-round civilian employed population 16 years and over with earnings!!Production, transportation, and material moving occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C02_033EA,S2412_C02_033M,S2412_C02_033MA"}, "S0501_C03_070E": {"label": "Estimate!!Foreign-born!!Civilian employed population 16 years and over!!INDUSTRY!!Retail trade", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_070EA,S0501_C03_070M,S0501_C03_070MA"}, "S2412_C02_034E": {"label": "Estimate!!Median earnings (dollars) for male!!Full-time, year-round civilian employed population 16 years and over with earnings!!Production, transportation, and material moving occupations:!!Production occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C02_034EA,S2412_C02_034M,S2412_C02_034MA"}, "S0802_C03_034E": {"label": "Estimate!!Car, truck, or van -- carpooled!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$50,000 to $64,999", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_034EA,S0802_C03_034M,S0802_C03_034MA"}, "S0501_C03_071E": {"label": "Estimate!!Foreign-born!!Civilian employed population 16 years and over!!INDUSTRY!!Transportation and warehousing, and utilities", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_071EA,S0501_C03_071M,S0501_C03_071MA"}, "S2412_C02_031E": {"label": "Estimate!!Median earnings (dollars) for male!!Full-time, year-round civilian employed population 16 years and over with earnings!!Natural resources, construction, and maintenance occupations:!!Construction and extraction occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C02_031EA,S2412_C02_031M,S2412_C02_031MA"}, "S0501_C03_072E": {"label": "Estimate!!Foreign-born!!Civilian employed population 16 years and over!!INDUSTRY!!Information", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_072EA,S0501_C03_072M,S0501_C03_072MA"}, "S0501_C05_102E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!Average number of workers per household", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_102EA,S0501_C05_102M,S0501_C05_102MA"}, "S1401_C04_026E": {"label": "Estimate!!Percent in public school!!Population 25 to 34 years!!25 to 34 year olds enrolled in school", "concept": "School Enrollment", "predicateType": "float", "group": "S1401", "limit": 0, "attributes": "S1401_C04_026EA,S1401_C04_026M,S1401_C04_026MA"}, "S0501_C05_101E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!Median Household income (dollars)", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C05_101EA,S0501_C05_101M,S0501_C05_101MA"}, "S2412_C02_032E": {"label": "Estimate!!Median earnings (dollars) for male!!Full-time, year-round civilian employed population 16 years and over with earnings!!Natural resources, construction, and maintenance occupations:!!Installation, maintenance, and repair occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C02_032EA,S2412_C02_032M,S2412_C02_032MA"}, "S0501_C03_073E": {"label": "Estimate!!Foreign-born!!Civilian employed population 16 years and over!!INDUSTRY!!Finance and insurance, and real estate and rental and leasing", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_073EA,S0501_C03_073M,S0501_C03_073MA"}, "S1401_C04_027E": {"label": "Estimate!!Percent in public school!!Population 35 years and over", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C04_027EA,S1401_C04_027M,S1401_C04_027MA"}, "S1401_C04_028E": {"label": "Estimate!!Percent in public school!!Population 35 years and over!!35 years and over enrolled in school", "concept": "School Enrollment", "predicateType": "float", "group": "S1401", "limit": 0, "attributes": "S1401_C04_028EA,S1401_C04_028M,S1401_C04_028MA"}, "S0501_C05_100E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Food Stamp/SNAP benefits", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_100EA,S0501_C05_100M,S0501_C05_100MA"}, "S0802_C03_039E": {"label": "Estimate!!Car, truck, or van -- carpooled!!POVERTY STATUS IN THE PAST 12 MONTHS!!Workers 16 years and over for whom poverty status is determined!!Below 100 percent of the poverty level", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_039EA,S0802_C03_039M,S0802_C03_039MA"}, "S0501_C03_074E": {"label": "Estimate!!Foreign-born!!Civilian employed population 16 years and over!!INDUSTRY!!Professional, scientific, and management, and administrative and waste management services", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_074EA,S0501_C03_074M,S0501_C03_074MA"}, "S1401_C04_029E": {"label": "Estimate!!Percent in public school!!Population 18 to 24 years", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C04_029EA,S1401_C04_029M,S1401_C04_029MA"}, "S2412_C02_030E": {"label": "Estimate!!Median earnings (dollars) for male!!Full-time, year-round civilian employed population 16 years and over with earnings!!Natural resources, construction, and maintenance occupations:!!Farming, fishing, and forestry occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C02_030EA,S2412_C02_030M,S2412_C02_030MA"}, "S0802_C03_038E": {"label": "Estimate!!Car, truck, or van -- carpooled!!POVERTY STATUS IN THE PAST 12 MONTHS!!Workers 16 years and over for whom poverty status is determined", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "int", "group": "S0802", "limit": 0, "attributes": "S0802_C03_038EA,S0802_C03_038M,S0802_C03_038MA"}, "S0501_C03_075E": {"label": "Estimate!!Foreign-born!!Civilian employed population 16 years and over!!INDUSTRY!!Educational services, and health care and social assistance", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_075EA,S0501_C03_075M,S0501_C03_075MA"}, "S2402_C03_035E": {"label": "Estimate!!Percent Male!!Full-time, year-round civilian employed population 16 years and over!!Production, transportation, and material moving occupations:!!Transportation occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2402", "limit": 0, "attributes": "S2402_C03_035EA,S2402_C03_035M,S2402_C03_035MA"}, "S0501_C05_106E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!At or above 200 percent of the poverty level", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_106EA,S0501_C05_106M,S0501_C05_106MA"}, "S1401_C04_022E": {"label": "Estimate!!Percent in public school!!Population 18 to 19 years!!18 and 19 year olds enrolled in school", "concept": "School Enrollment", "predicateType": "float", "group": "S1401", "limit": 0, "attributes": "S1401_C04_022EA,S1401_C04_022M,S1401_C04_022MA"}, "S2402_C03_034E": {"label": "Estimate!!Percent Male!!Full-time, year-round civilian employed population 16 years and over!!Production, transportation, and material moving occupations:!!Production occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2402", "limit": 0, "attributes": "S2402_C03_034EA,S2402_C03_034M,S2402_C03_034MA"}, "S1401_C04_023E": {"label": "Estimate!!Percent in public school!!Population 20 to 24 years", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C04_023EA,S1401_C04_023M,S1401_C04_023MA"}, "S0501_C05_105E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!100 to 199 percent of the poverty level", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_105EA,S0501_C05_105M,S0501_C05_105MA"}, "S1401_C04_024E": {"label": "Estimate!!Percent in public school!!Population 20 to 24 years!!20 to 24 year olds enrolled in school", "concept": "School Enrollment", "predicateType": "float", "group": "S1401", "limit": 0, "attributes": "S1401_C04_024EA,S1401_C04_024M,S1401_C04_024MA"}, "S0501_C05_104E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!Below 100 percent of the poverty level", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_104EA,S0501_C05_104M,S0501_C05_104MA"}, "S2402_C03_036E": {"label": "Estimate!!Percent Male!!Full-time, year-round civilian employed population 16 years and over!!Production, transportation, and material moving occupations:!!Material moving occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2402", "limit": 0, "attributes": "S2402_C03_036EA,S2402_C03_036M,S2402_C03_036MA"}, "S0501_C05_103E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C05_103EA,S0501_C05_103M,S0501_C05_103MA"}, "S1401_C04_025E": {"label": "Estimate!!Percent in public school!!Population 25 to 34 years", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C04_025EA,S1401_C04_025M,S1401_C04_025MA"}, "S2001_C03_019E": {"label": "Estimate!!Male!!MEDIAN EARNINGS BY EDUCATIONAL ATTAINMENT!!Population 25 years and over with earnings!!Bachelor's degree", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C03_019EA,S2001_C03_019M,S2001_C03_019MA"}, "S2402_C03_031E": {"label": "Estimate!!Percent Male!!Full-time, year-round civilian employed population 16 years and over!!Natural resources, construction, and maintenance occupations:!!Construction and extraction occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2402", "limit": 0, "attributes": "S2402_C03_031EA,S2402_C03_031M,S2402_C03_031MA"}, "S0501_C05_109E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_109EA,S0501_C05_109M,S0501_C05_109MA"}, "S2402_C03_030E": {"label": "Estimate!!Percent Male!!Full-time, year-round civilian employed population 16 years and over!!Natural resources, construction, and maintenance occupations:!!Farming, fishing, and forestry occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2402", "limit": 0, "attributes": "S2402_C03_030EA,S2402_C03_030M,S2402_C03_030MA"}, "S2402_C03_033E": {"label": "Estimate!!Percent Male!!Full-time, year-round civilian employed population 16 years and over!!Production, transportation, and material moving occupations:", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2402", "limit": 0, "attributes": "S2402_C03_033EA,S2402_C03_033M,S2402_C03_033MA"}, "S1401_C04_020E": {"label": "Estimate!!Percent in public school!!Population 15 to 17!!15 to 17 year olds enrolled in school", "concept": "School Enrollment", "predicateType": "float", "group": "S1401", "limit": 0, "attributes": "S1401_C04_020EA,S1401_C04_020M,S1401_C04_020MA"}, "S0501_C05_108E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_108EA,S0501_C05_108M,S0501_C05_108MA"}, "S2402_C03_032E": {"label": "Estimate!!Percent Male!!Full-time, year-round civilian employed population 16 years and over!!Natural resources, construction, and maintenance occupations:!!Installation, maintenance, and repair occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2402", "limit": 0, "attributes": "S2402_C03_032EA,S2402_C03_032M,S2402_C03_032MA"}, "S1401_C04_021E": {"label": "Estimate!!Percent in public school!!Population 18 to 19 years", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C04_021EA,S1401_C04_021M,S1401_C04_021MA"}, "S0501_C05_107E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_107EA,S0501_C05_107M,S0501_C05_107MA"}, "S2001_C03_015E": {"label": "Estimate!!Male!!MEDIAN EARNINGS BY EDUCATIONAL ATTAINMENT!!Population 25 years and over with earnings", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C03_015EA,S2001_C03_015M,S2001_C03_015MA"}, "S0505_C01_072E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!OCCUPATION!!Natural resources, construction, and maintenance occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_072EA,S0505_C01_072M,S0505_C01_072MA"}, "S2001_C03_016E": {"label": "Estimate!!Male!!MEDIAN EARNINGS BY EDUCATIONAL ATTAINMENT!!Population 25 years and over with earnings!!Less than high school graduate", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C03_016EA,S2001_C03_016M,S2001_C03_016MA"}, "S0505_C01_073E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!OCCUPATION!!Production, transportation, and material moving occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_073EA,S0505_C01_073M,S0505_C01_073MA"}, "S2001_C03_017E": {"label": "Estimate!!Male!!MEDIAN EARNINGS BY EDUCATIONAL ATTAINMENT!!Population 25 years and over with earnings!!High school graduate (includes equivalency)", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C03_017EA,S2001_C03_017M,S2001_C03_017MA"}, "S2101_C01_038E": {"label": "Estimate!!Total!!DISABILITY STATUS!!Civilian population 18 years and over for whom poverty status is determined", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C01_038EA,S2101_C01_038M,S2101_C01_038MA"}, "S0505_C01_070E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!OCCUPATION!!Service occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_070EA,S0505_C01_070M,S0505_C01_070MA"}, "S2001_C03_018E": {"label": "Estimate!!Male!!MEDIAN EARNINGS BY EDUCATIONAL ATTAINMENT!!Population 25 years and over with earnings!!Some college or associate's degree", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C03_018EA,S2001_C03_018M,S2001_C03_018MA"}, "S2101_C01_039E": {"label": "Estimate!!Total!!DISABILITY STATUS!!Civilian population 18 years and over for whom poverty status is determined!!With any disability", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C01_039EA,S2101_C01_039M,S2101_C01_039MA"}, "S0505_C01_071E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!OCCUPATION!!Sales and office occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_071EA,S0505_C01_071M,S0505_C01_071MA"}, "S2101_C01_036E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Civilian population 18 years and over for whom poverty status is determined!!Income in the past 12 months below poverty level", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C01_036EA,S2101_C01_036M,S2101_C01_036MA"}, "S2001_C03_011E": {"label": "Estimate!!Male!!Population 16 years and over with earnings!!FULL-TIME, YEAR-ROUND WORKERS WITH EARNINGS!!$75,000 to $99,999", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C03_011EA,S2001_C03_011M,S2001_C03_011MA"}, "S2402_C03_027E": {"label": "Estimate!!Percent Male!!Full-time, year-round civilian employed population 16 years and over!!Sales and office occupations:!!Sales and related occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2402", "limit": 0, "attributes": "S2402_C03_027EA,S2402_C03_027M,S2402_C03_027MA"}, "S0506_C06_096E": {"label": "Estimate!!Foreign-born; Born in South America!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!Median earnings (dollars) for full-time, year-round workers!!Female", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C06_096EA,S0506_C06_096M,S0506_C06_096MA"}, "S2101_C01_037E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Civilian population 18 years and over for whom poverty status is determined!!Income in the past 12 months at or above poverty level", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C01_037EA,S2101_C01_037M,S2101_C01_037MA"}, "S2001_C03_012E": {"label": "Estimate!!Male!!Population 16 years and over with earnings!!FULL-TIME, YEAR-ROUND WORKERS WITH EARNINGS!!$100,000 or more", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C03_012EA,S2001_C03_012M,S2001_C03_012MA"}, "S2402_C03_026E": {"label": "Estimate!!Percent Male!!Full-time, year-round civilian employed population 16 years and over!!Sales and office occupations:", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2402", "limit": 0, "attributes": "S2402_C03_026EA,S2402_C03_026M,S2402_C03_026MA"}, "S0506_C06_097E": {"label": "Estimate!!Foreign-born; Born in South America!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C06_097EA,S0506_C06_097M,S0506_C06_097MA"}, "S2101_C01_034E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Civilian labor force 18 to 64 years!!Unemployment rate", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C01_034EA,S2101_C01_034M,S2101_C01_034MA"}, "S2402_C03_029E": {"label": "Estimate!!Percent Male!!Full-time, year-round civilian employed population 16 years and over!!Natural resources, construction, and maintenance occupations:", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2402", "limit": 0, "attributes": "S2402_C03_029EA,S2402_C03_029M,S2402_C03_029MA"}, "S2001_C03_013E": {"label": "Estimate!!Male!!Population 16 years and over with earnings!!FULL-TIME, YEAR-ROUND WORKERS WITH EARNINGS!!Median earnings (dollars) for full-time, year-round workers with earnings", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C03_013EA,S2001_C03_013M,S2001_C03_013MA"}, "S0506_C06_098E": {"label": "Estimate!!Foreign-born; Born in South America!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_098EA,S0506_C06_098M,S0506_C06_098MA"}, "S2101_C01_035E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Civilian population 18 years and over for whom poverty status is determined", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C01_035EA,S2101_C01_035M,S2101_C01_035MA"}, "S2001_C03_014E": {"label": "Estimate!!Male!!Population 16 years and over with earnings!!FULL-TIME, YEAR-ROUND WORKERS WITH EARNINGS!!Mean earnings (dollars) for full-time, year-round workers with earnings", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C03_014EA,S2001_C03_014M,S2001_C03_014MA"}, "S2402_C03_028E": {"label": "Estimate!!Percent Male!!Full-time, year-round civilian employed population 16 years and over!!Sales and office occupations:!!Office and administrative support occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2402", "limit": 0, "attributes": "S2402_C03_028EA,S2402_C03_028M,S2402_C03_028MA"}, "S0506_C06_099E": {"label": "Estimate!!Foreign-born; Born in South America!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings!!Mean earnings (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C06_099EA,S0506_C06_099M,S0506_C06_099MA"}, "S2101_C01_032E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Civilian population 18 to 64 years!!Labor force participation rate", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C01_032EA,S2101_C01_032M,S2101_C01_032MA"}, "S0506_C06_092E": {"label": "Estimate!!Foreign-born; Born in South America!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$35,000 to $49,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_092EA,S0506_C06_092M,S0506_C06_092MA"}, "S2603_C02_101E": {"label": "Estimate!!Total group quarters population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!With earnings:!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C02_101EA,S2603_C02_101M,S2603_C02_101MA"}, "S0802_C03_041E": {"label": "Estimate!!Car, truck, or van -- carpooled!!POVERTY STATUS IN THE PAST 12 MONTHS!!Workers 16 years and over for whom poverty status is determined!!At or above 150 percent of the poverty level", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_041EA,S0802_C03_041M,S0802_C03_041MA"}, "S0501_C03_076E": {"label": "Estimate!!Foreign-born!!Civilian employed population 16 years and over!!INDUSTRY!!Arts, entertainment, and recreation, and accommodation and food services", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_076EA,S0501_C03_076M,S0501_C03_076MA"}, "S2101_C01_033E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Civilian labor force 18 to 64 years", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C01_033EA,S2101_C01_033M,S2101_C01_033MA"}, "S0506_C06_093E": {"label": "Estimate!!Foreign-born; Born in South America!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$50,000 to $74,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_093EA,S0506_C06_093M,S0506_C06_093MA"}, "S2603_C02_102E": {"label": "Estimate!!Total group quarters population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!With earnings:!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C02_102EA,S2603_C02_102M,S2603_C02_102MA"}, "S0802_C03_040E": {"label": "Estimate!!Car, truck, or van -- carpooled!!POVERTY STATUS IN THE PAST 12 MONTHS!!Workers 16 years and over for whom poverty status is determined!!100 to 149 percent of the poverty level", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_040EA,S0802_C03_040M,S0802_C03_040MA"}, "S0501_C03_077E": {"label": "Estimate!!Foreign-born!!Civilian employed population 16 years and over!!INDUSTRY!!Other services (except public administration)", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_077EA,S0501_C03_077M,S0501_C03_077MA"}, "S2101_C01_030E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Civilian population 25 years and over!!Bachelor's degree or higher", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C01_030EA,S2101_C01_030M,S2101_C01_030MA"}, "S0506_C06_094E": {"label": "Estimate!!Foreign-born; Born in South America!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$75,000 or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_094EA,S0506_C06_094M,S0506_C06_094MA"}, "S2603_C02_103E": {"label": "Estimate!!Total group quarters population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!Mean earnings (dollars):!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C02_103EA,S2603_C02_103M,S2603_C02_103MA"}, "S0505_C01_078E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Retail trade", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_078EA,S0505_C01_078M,S0505_C01_078MA"}, "S0501_C03_078E": {"label": "Estimate!!Foreign-born!!Civilian employed population 16 years and over!!INDUSTRY!!Public administration", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_078EA,S0501_C03_078M,S0501_C03_078MA"}, "S2101_C01_031E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Civilian population 18 to 64 years", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C01_031EA,S2101_C01_031M,S2101_C01_031MA"}, "S0506_C06_095E": {"label": "Estimate!!Foreign-born; Born in South America!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!Median earnings (dollars) for full-time, year-round workers!!Male", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C06_095EA,S0506_C06_095M,S0506_C06_095MA"}, "S2001_C03_010E": {"label": "Estimate!!Male!!Population 16 years and over with earnings!!FULL-TIME, YEAR-ROUND WORKERS WITH EARNINGS!!$65,000 to $74,999", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C03_010EA,S2001_C03_010M,S2001_C03_010MA"}, "S2603_C02_104E": {"label": "Estimate!!Total group quarters population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!Mean earnings (dollars):!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C02_104EA,S2603_C02_104M,S2603_C02_104MA"}, "S0505_C01_079E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Transportation and warehousing, and utilities", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_079EA,S0505_C01_079M,S0505_C01_079MA"}, "S0501_C03_079E": {"label": "Estimate!!Foreign-born!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C03_079EA,S0501_C03_079M,S0501_C03_079MA"}, "S2407_C04_014E": {"label": "Estimate!!Private not-for-profit wage and salary workers!!Civilian employed population 16 years and over!!Public administration", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2407", "limit": 0, "attributes": "S2407_C04_014EA,S2407_C04_014M,S2407_C04_014MA"}, "S0802_C03_045E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!OCCUPATION!!Sales and office occupations", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_045EA,S0802_C03_045M,S0802_C03_045MA"}, "S0505_C01_076E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Manufacturing", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_076EA,S0505_C01_076M,S0505_C01_076MA"}, "S2407_C04_015E": {"label": "Estimate!!Private not-for-profit wage and salary workers!!PERCENT ALLOCATED!!Industry", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2407", "limit": 0, "attributes": "S2407_C04_015EA,S2407_C04_015M,S2407_C04_015MA"}, "S0505_C01_077E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Wholesale trade", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_077EA,S0505_C01_077M,S0505_C01_077MA"}, "S0802_C03_044E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!OCCUPATION!!Service occupations", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_044EA,S0802_C03_044M,S0802_C03_044MA"}, "S0506_C06_090E": {"label": "Estimate!!Foreign-born; Born in South America!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$15,000 to $24,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_090EA,S0506_C06_090M,S0506_C06_090MA"}, "S2407_C04_012E": {"label": "Estimate!!Private not-for-profit wage and salary workers!!Civilian employed population 16 years and over!!Arts, entertainment, and recreation, and accommodation and food services", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2407", "limit": 0, "attributes": "S2407_C04_012EA,S2407_C04_012M,S2407_C04_012MA"}, "S0505_C01_074E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Agriculture, forestry, fishing and hunting, and mining", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_074EA,S0505_C01_074M,S0505_C01_074MA"}, "S0802_C03_043E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!OCCUPATION!!Management, business, science, and arts occupations", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_043EA,S0802_C03_043M,S0802_C03_043MA"}, "S0506_C06_091E": {"label": "Estimate!!Foreign-born; Born in South America!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$25,000 to $34,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_091EA,S0506_C06_091M,S0506_C06_091MA"}, "S2407_C04_013E": {"label": "Estimate!!Private not-for-profit wage and salary workers!!Civilian employed population 16 years and over!!Other services, except public administration", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2407", "limit": 0, "attributes": "S2407_C04_013EA,S2407_C04_013M,S2407_C04_013MA"}, "S2603_C02_100E": {"label": "Estimate!!Total group quarters population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!Per capita income (dollars)", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C02_100EA,S2603_C02_100M,S2603_C02_100MA"}, "S0505_C01_075E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Construction", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_075EA,S0505_C01_075M,S0505_C01_075MA"}, "S0802_C03_042E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "int", "group": "S0802", "limit": 0, "attributes": "S0802_C03_042EA,S0802_C03_042M,S0802_C03_042MA"}, "S1401_C04_018E": {"label": "Estimate!!Percent in public school!!Population 10 to 14 years!!10 to 14 year olds enrolled in school", "concept": "School Enrollment", "predicateType": "float", "group": "S1401", "limit": 0, "attributes": "S1401_C04_018EA,S1401_C04_018M,S1401_C04_018MA"}, "S2408_C02_006E": {"label": "Estimate!!Male!!Civilian employed population 16 years and over!!Local government workers", "concept": "Class of Worker by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2408", "limit": 0, "attributes": "S2408_C02_006EA,S2408_C02_006M,S2408_C02_006MA"}, "S2601C_C02_079E": {"label": "Estimate!!Total group quarters population!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_079EA,S2601C_C02_079M,S2601C_C02_079MA"}, "S1901_C04_003E": {"label": "Estimate!!Nonfamily households!!Total!!$10,000 to $14,999", "concept": "Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1901", "limit": 0, "attributes": "S1901_C04_003EA,S1901_C04_003M,S1901_C04_003MA"}, "S0802_C03_049E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!INDUSTRY!!Agriculture, forestry, fishing and hunting, and mining", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_049EA,S0802_C03_049M,S0802_C03_049MA"}, "S2507_C02_047E": {"label": "Estimate!!Percent owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$50,000 to $74,999!!20 to 29 percent", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "float", "group": "S2507", "limit": 0, "attributes": "S2507_C02_047EA,S2507_C02_047M,S2507_C02_047MA"}, "S1401_C04_019E": {"label": "Estimate!!Percent in public school!!Population 15 to 17", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C04_019EA,S1401_C04_019M,S1401_C04_019MA"}, "S2408_C02_005E": {"label": "Estimate!!Male!!Civilian employed population 16 years and over!!Private not-for-profit wage and salary workers", "concept": "Class of Worker by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2408", "limit": 0, "attributes": "S2408_C02_005EA,S2408_C02_005M,S2408_C02_005MA"}, "S1901_C04_004E": {"label": "Estimate!!Nonfamily households!!Total!!$15,000 to $24,999", "concept": "Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1901", "limit": 0, "attributes": "S1901_C04_004EA,S1901_C04_004M,S1901_C04_004MA"}, "S0802_C03_048E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!OCCUPATION!!Military specific occupations", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_048EA,S0802_C03_048M,S0802_C03_048MA"}, "S1702_C01_010E": {"label": "Estimate!!Total!!All families!!Families!!RACE AND HISPANIC OR LATINO ORIGIN!!Families with a householder who is--!!Native Hawaiian and Other Pacific Islander alone", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C01_010EA,S1702_C01_010M,S1702_C01_010MA"}, "S2507_C02_048E": {"label": "Estimate!!Percent owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$50,000 to $74,999!!30 percent or more", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "float", "group": "S2507", "limit": 0, "attributes": "S2507_C02_048EA,S2507_C02_048M,S2507_C02_048MA"}, "S2408_C02_008E": {"label": "Estimate!!Male!!Civilian employed population 16 years and over!!Federal government workers", "concept": "Class of Worker by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2408", "limit": 0, "attributes": "S2408_C02_008EA,S2408_C02_008M,S2408_C02_008MA"}, "S0802_C03_047E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!OCCUPATION!!Production, transportation, and material moving occupations", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_047EA,S0802_C03_047M,S0802_C03_047MA"}, "S1901_C04_005E": {"label": "Estimate!!Nonfamily households!!Total!!$25,000 to $34,999", "concept": "Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1901", "limit": 0, "attributes": "S1901_C04_005EA,S1901_C04_005M,S1901_C04_005MA"}, "S2507_C02_049E": {"label": "Estimate!!Percent owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$75,000 or more", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "float", "group": "S2507", "limit": 0, "attributes": "S2507_C02_049EA,S2507_C02_049M,S2507_C02_049MA"}, "S2408_C02_007E": {"label": "Estimate!!Male!!Civilian employed population 16 years and over!!State government workers", "concept": "Class of Worker by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2408", "limit": 0, "attributes": "S2408_C02_007EA,S2408_C02_007M,S2408_C02_007MA"}, "S0802_C03_046E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!OCCUPATION!!Natural resources, construction, and maintenance occupations", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_046EA,S0802_C03_046M,S0802_C03_046MA"}, "S1901_C04_006E": {"label": "Estimate!!Nonfamily households!!Total!!$35,000 to $49,999", "concept": "Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1901", "limit": 0, "attributes": "S1901_C04_006EA,S1901_C04_006M,S1901_C04_006MA"}, "S2408_C02_002E": {"label": "Estimate!!Male!!Civilian employed population 16 years and over!!Private for-profit wage and salary workers:", "concept": "Class of Worker by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2408", "limit": 0, "attributes": "S2408_C02_002EA,S2408_C02_002M,S2408_C02_002MA"}, "S2601C_C02_075E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Not a U.S. citizen!!Female", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_075EA,S2601C_C02_075M,S2601C_C02_075MA"}, "S1901_C04_007E": {"label": "Estimate!!Nonfamily households!!Total!!$50,000 to $74,999", "concept": "Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1901", "limit": 0, "attributes": "S1901_C04_007EA,S1901_C04_007M,S1901_C04_007MA"}, "S2603_C02_105E": {"label": "Estimate!!Total group quarters population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!Median earnings (dollars):!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C02_105EA,S2603_C02_105M,S2603_C02_105MA"}, "S1401_C04_014E": {"label": "Estimate!!Percent in public school!!Population 3 to 4 years!!3 to 4 year olds enrolled in school", "concept": "School Enrollment", "predicateType": "float", "group": "S1401", "limit": 0, "attributes": "S1401_C04_014EA,S1401_C04_014M,S1401_C04_014MA"}, "S0701_C02_008E": {"label": "Estimate!!Moved; within same county!!Population 1 year and over!!AGE!!55 to 64 years", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C02_008EA,S0701_C02_008M,S0701_C02_008MA"}, "S2601C_C02_076E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Entered 2010 or later", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_076EA,S2601C_C02_076M,S2601C_C02_076MA"}, "S1901_C04_008E": {"label": "Estimate!!Nonfamily households!!Total!!$75,000 to $99,999", "concept": "Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1901", "limit": 0, "attributes": "S1901_C04_008EA,S1901_C04_008M,S1901_C04_008MA"}, "S2603_C02_106E": {"label": "Estimate!!Total group quarters population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!Median earnings (dollars):!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C02_106EA,S2603_C02_106M,S2603_C02_106MA"}, "S2408_C02_001E": {"label": "Estimate!!Male!!Civilian employed population 16 years and over", "concept": "Class of Worker by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2408", "limit": 0, "attributes": "S2408_C02_001EA,S2408_C02_001M,S2408_C02_001MA"}, "S0701_C02_007E": {"label": "Estimate!!Moved; within same county!!Population 1 year and over!!AGE!!45 to 54 years", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C02_007EA,S0701_C02_007M,S0701_C02_007MA"}, "S1401_C04_015E": {"label": "Estimate!!Percent in public school!!Population 5 to 9 years", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C04_015EA,S1401_C04_015M,S1401_C04_015MA"}, "S1901_C04_009E": {"label": "Estimate!!Nonfamily households!!Total!!$100,000 to $149,999", "concept": "Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1901", "limit": 0, "attributes": "S1901_C04_009EA,S1901_C04_009M,S1901_C04_009MA"}, "S2408_C02_004E": {"label": "Estimate!!Male!!Civilian employed population 16 years and over!!Private for-profit wage and salary workers:!!Self-employed in own incorporated business workers", "concept": "Class of Worker by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2408", "limit": 0, "attributes": "S2408_C02_004EA,S2408_C02_004M,S2408_C02_004MA"}, "S2601C_C02_077E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Entered 2000 to 2009", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_077EA,S2601C_C02_077M,S2601C_C02_077MA"}, "S2603_C02_107E": {"label": "Estimate!!Total group quarters population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!With Food Stamp/SNAP benefits", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C02_107EA,S2603_C02_107M,S2603_C02_107MA"}, "S1401_C04_016E": {"label": "Estimate!!Percent in public school!!Population 5 to 9 years!!5 to 9 year olds enrolled in school", "concept": "School Enrollment", "predicateType": "float", "group": "S1401", "limit": 0, "attributes": "S1401_C04_016EA,S1401_C04_016M,S1401_C04_016MA"}, "S1401_C04_017E": {"label": "Estimate!!Percent in public school!!Population 10 to 14 years", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C04_017EA,S1401_C04_017M,S1401_C04_017MA"}, "S2408_C02_003E": {"label": "Estimate!!Male!!Civilian employed population 16 years and over!!Private for-profit wage and salary workers:!!Employee of private company workers", "concept": "Class of Worker by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2408", "limit": 0, "attributes": "S2408_C02_003EA,S2408_C02_003M,S2408_C02_003MA"}, "S2601C_C02_078E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Entered before 2000", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_078EA,S2601C_C02_078M,S2601C_C02_078MA"}, "S0101_C04_019E": {"label": "Estimate!!Percent Male!!Total population!!AGE!!85 years and over", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C04_019EA,S0101_C04_019M,S0101_C04_019MA"}, "S0701_C02_009E": {"label": "Estimate!!Moved; within same county!!Population 1 year and over!!AGE!!65 to 74 years", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C02_009EA,S0701_C02_009M,S0701_C02_009MA"}, "S0101_C04_018E": {"label": "Estimate!!Percent Male!!Total population!!AGE!!80 to 84 years", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C04_018EA,S0101_C04_018M,S0101_C04_018MA"}, "S2402_C03_023E": {"label": "Estimate!!Percent Male!!Full-time, year-round civilian employed population 16 years and over!!Service occupations:!!Food preparation and serving related occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2402", "limit": 0, "attributes": "S2402_C03_023EA,S2402_C03_023M,S2402_C03_023MA"}, "S1401_C04_010E": {"label": "Estimate!!Percent in public school!!Population enrolled in college or graduate school", "concept": "School Enrollment", "predicateType": "float", "group": "S1401", "limit": 0, "attributes": "S1401_C04_010EA,S1401_C04_010M,S1401_C04_010MA"}, "S2409_C05_001E": {"label": "Estimate!!Percent Female!!Full-time, year-round civilian employed population 16 years and over", "concept": "Class of Worker by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2409", "limit": 0, "attributes": "S2409_C05_001EA,S2409_C05_001M,S2409_C05_001MA"}, "S0101_C04_017E": {"label": "Estimate!!Percent Male!!Total population!!AGE!!75 to 79 years", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C04_017EA,S0101_C04_017M,S0101_C04_017MA"}, "S2402_C03_022E": {"label": "Estimate!!Percent Male!!Full-time, year-round civilian employed population 16 years and over!!Service occupations:!!Protective service occupations:!!Law enforcement workers including supervisors", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2402", "limit": 0, "attributes": "S2402_C03_022EA,S2402_C03_022M,S2402_C03_022MA"}, "S2409_C05_002E": {"label": "Estimate!!Percent Female!!Full-time, year-round civilian employed population 16 years and over!!Private for-profit wage and salary workers:", "concept": "Class of Worker by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2409", "limit": 0, "attributes": "S2409_C05_002EA,S2409_C05_002M,S2409_C05_002MA"}, "S1401_C04_011E": {"label": "Estimate!!Percent in public school!!Population enrolled in college or graduate school!!Males enrolled in college or graduate school", "concept": "School Enrollment", "predicateType": "float", "group": "S1401", "limit": 0, "attributes": "S1401_C04_011EA,S1401_C04_011M,S1401_C04_011MA"}, "S0101_C04_016E": {"label": "Estimate!!Percent Male!!Total population!!AGE!!70 to 74 years", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C04_016EA,S0101_C04_016M,S0101_C04_016MA"}, "S2402_C03_025E": {"label": "Estimate!!Percent Male!!Full-time, year-round civilian employed population 16 years and over!!Service occupations:!!Personal care and service occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2402", "limit": 0, "attributes": "S2402_C03_025EA,S2402_C03_025M,S2402_C03_025MA"}, "S2409_C05_003E": {"label": "Estimate!!Percent Female!!Full-time, year-round civilian employed population 16 years and over!!Private for-profit wage and salary workers:!!Employee of private company workers", "concept": "Class of Worker by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2409", "limit": 0, "attributes": "S2409_C05_003EA,S2409_C05_003M,S2409_C05_003MA"}, "S1401_C04_012E": {"label": "Estimate!!Percent in public school!!Population enrolled in college or graduate school!!Females enrolled in college or graduate school", "concept": "School Enrollment", "predicateType": "float", "group": "S1401", "limit": 0, "attributes": "S1401_C04_012EA,S1401_C04_012M,S1401_C04_012MA"}, "S0101_C04_015E": {"label": "Estimate!!Percent Male!!Total population!!AGE!!65 to 69 years", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C04_015EA,S0101_C04_015M,S0101_C04_015MA"}, "S2402_C03_024E": {"label": "Estimate!!Percent Male!!Full-time, year-round civilian employed population 16 years and over!!Service occupations:!!Building and grounds cleaning and maintenance occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2402", "limit": 0, "attributes": "S2402_C03_024EA,S2402_C03_024M,S2402_C03_024MA"}, "S2409_C05_004E": {"label": "Estimate!!Percent Female!!Full-time, year-round civilian employed population 16 years and over!!Private for-profit wage and salary workers:!!Self-employed in own incorporated business workers", "concept": "Class of Worker by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2409", "limit": 0, "attributes": "S2409_C05_004EA,S2409_C05_004M,S2409_C05_004MA"}, "S1401_C04_013E": {"label": "Estimate!!Percent in public school!!Population 3 to 4 years", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C04_013EA,S1401_C04_013M,S1401_C04_013MA"}, "S0101_C04_014E": {"label": "Estimate!!Percent Male!!Total population!!AGE!!60 to 64 years", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C04_014EA,S0101_C04_014M,S0101_C04_014MA"}, "S2409_C05_005E": {"label": "Estimate!!Percent Female!!Full-time, year-round civilian employed population 16 years and over!!Private not-for-profit wage and salary workers", "concept": "Class of Worker by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2409", "limit": 0, "attributes": "S2409_C05_005EA,S2409_C05_005M,S2409_C05_005MA"}, "S2408_C02_009E": {"label": "Estimate!!Male!!Civilian employed population 16 years and over!!Self-employed in own not incorporated business workers and unpaid family workers", "concept": "Class of Worker by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2408", "limit": 0, "attributes": "S2408_C02_009EA,S2408_C02_009M,S2408_C02_009MA"}, "S0101_C04_013E": {"label": "Estimate!!Percent Male!!Total population!!AGE!!55 to 59 years", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C04_013EA,S0101_C04_013M,S0101_C04_013MA"}, "S2409_C05_006E": {"label": "Estimate!!Percent Female!!Full-time, year-round civilian employed population 16 years and over!!Local government workers", "concept": "Class of Worker by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2409", "limit": 0, "attributes": "S2409_C05_006EA,S2409_C05_006M,S2409_C05_006MA"}, "S0101_C04_012E": {"label": "Estimate!!Percent Male!!Total population!!AGE!!50 to 54 years", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C04_012EA,S0101_C04_012M,S0101_C04_012MA"}, "S0505_C03_100E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_100EA,S0505_C03_100M,S0505_C03_100MA"}, "S2402_C03_021E": {"label": "Estimate!!Percent Male!!Full-time, year-round civilian employed population 16 years and over!!Service occupations:!!Protective service occupations:!!Firefighting and prevention, and other protective service workers including supervisors", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2402", "limit": 0, "attributes": "S2402_C03_021EA,S2402_C03_021M,S2402_C03_021MA"}, "S2409_C05_007E": {"label": "Estimate!!Percent Female!!Full-time, year-round civilian employed population 16 years and over!!State government workers", "concept": "Class of Worker by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2409", "limit": 0, "attributes": "S2409_C05_007EA,S2409_C05_007M,S2409_C05_007MA"}, "S0101_C04_011E": {"label": "Estimate!!Percent Male!!Total population!!AGE!!45 to 49 years", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C04_011EA,S0101_C04_011M,S0101_C04_011MA"}, "S2409_C05_008E": {"label": "Estimate!!Percent Female!!Full-time, year-round civilian employed population 16 years and over!!Federal government workers", "concept": "Class of Worker by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2409", "limit": 0, "attributes": "S2409_C05_008EA,S2409_C05_008M,S2409_C05_008MA"}, "S2402_C03_020E": {"label": "Estimate!!Percent Male!!Full-time, year-round civilian employed population 16 years and over!!Service occupations:!!Protective service occupations:", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2402", "limit": 0, "attributes": "S2402_C03_020EA,S2402_C03_020M,S2402_C03_020MA"}, "S0503_C04_140E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Owner-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C04_140EA,S0503_C04_140M,S0503_C04_140MA"}, "S2402_C03_019E": {"label": "Estimate!!Percent Male!!Full-time, year-round civilian employed population 16 years and over!!Service occupations:!!Healthcare support occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2402", "limit": 0, "attributes": "S2402_C03_019EA,S2402_C03_019M,S2402_C03_019MA"}, "S2101_C01_028E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Civilian population 25 years and over!!High school graduate (includes equivalency)", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C01_028EA,S2101_C01_028M,S2101_C01_028MA"}, "S0101_C04_010E": {"label": "Estimate!!Percent Male!!Total population!!AGE!!40 to 44 years", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C04_010EA,S0101_C04_010M,S0101_C04_010MA"}, "S0505_C01_084E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Arts, entertainment, and recreation, and accommodation and food services", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_084EA,S0505_C01_084M,S0505_C01_084MA"}, "S2409_C05_009E": {"label": "Estimate!!Percent Female!!Full-time, year-round civilian employed population 16 years and over!!Self-employed in own not incorporated business workers and unpaid family workers", "concept": "Class of Worker by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2409", "limit": 0, "attributes": "S2409_C05_009EA,S2409_C05_009M,S2409_C05_009MA"}, "S0506_C06_088E": {"label": "Estimate!!Foreign-born; Born in South America!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$1 to $9,999 or loss", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_088EA,S0506_C06_088M,S0506_C06_088MA"}, "S0503_C04_141E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_141EA,S0503_C04_141M,S0503_C04_141MA"}, "S2402_C03_018E": {"label": "Estimate!!Percent Male!!Full-time, year-round civilian employed population 16 years and over!!Service occupations:", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2402", "limit": 0, "attributes": "S2402_C03_018EA,S2402_C03_018M,S2402_C03_018MA"}, "S2101_C01_029E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Civilian population 25 years and over!!Some college or associate's degree", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C01_029EA,S2101_C01_029M,S2101_C01_029MA"}, "S0505_C01_085E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Other services (except public administration)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_085EA,S0505_C01_085M,S0505_C01_085MA"}, "S0506_C06_089E": {"label": "Estimate!!Foreign-born; Born in South America!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$10,000 to $14,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_089EA,S0506_C06_089M,S0506_C06_089MA"}, "S2101_C01_026E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Civilian population 25 years and over", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C01_026EA,S2101_C01_026M,S2101_C01_026MA"}, "S0505_C01_082E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Professional, scientific, and management, and administrative and waste management services", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_082EA,S0505_C01_082M,S0505_C01_082MA"}, "S2101_C01_027E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Civilian population 25 years and over!!Less than high school graduate", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C01_027EA,S2101_C01_027M,S2101_C01_027MA"}, "S0505_C01_083E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Educational services, and health care and social assistance", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_083EA,S0505_C01_083M,S0505_C01_083MA"}, "S0503_C04_144E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_144EA,S0503_C04_144M,S0503_C04_144MA"}, "S2101_C01_024E": {"label": "Estimate!!Total!!MEDIAN INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Civilian population 18 years and over with income!!Male", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C01_024EA,S2101_C01_024M,S2101_C01_024MA"}, "S1702_C01_009E": {"label": "Estimate!!Total!!All families!!Families!!RACE AND HISPANIC OR LATINO ORIGIN!!Families with a householder who is--!!Asian alone", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C01_009EA,S1702_C01_009M,S1702_C01_009MA"}, "S0506_C06_084E": {"label": "Estimate!!Foreign-born; Born in South America!!Civilian employed population 16 years and over!!INDUSTRY!!Arts, entertainment, and recreation, and accommodation and food services", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_084EA,S0506_C06_084M,S0506_C06_084MA"}, "S1251_C01_009E": {"label": "Estimate!!Population 15 years and over!!Total!!POVERTY STATUS IN PAST 12 MONTHS!!Population for whom poverty status is determined!!Below poverty", "concept": "Characteristics of People With a Marital Event in the Last 12 Months", "predicateType": "float", "group": "S1251", "limit": 0, "attributes": "S1251_C01_009EA,S1251_C01_009M,S1251_C01_009MA"}, "S2402_C03_015E": {"label": "Estimate!!Percent Male!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Healthcare practitioners and technical occupations:", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2402", "limit": 0, "attributes": "S2402_C03_015EA,S2402_C03_015M,S2402_C03_015MA"}, "S0505_C01_080E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Information", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_080EA,S0505_C01_080M,S0505_C01_080MA"}, "S2101_C01_025E": {"label": "Estimate!!Total!!MEDIAN INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Civilian population 18 years and over with income!!Female", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C01_025EA,S2101_C01_025M,S2101_C01_025MA"}, "S2402_C03_014E": {"label": "Estimate!!Percent Male!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:!!Arts, design, entertainment, sports, and media occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2402", "limit": 0, "attributes": "S2402_C03_014EA,S2402_C03_014M,S2402_C03_014MA"}, "S0506_C06_085E": {"label": "Estimate!!Foreign-born; Born in South America!!Civilian employed population 16 years and over!!INDUSTRY!!Other services (except public administration)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_085EA,S0506_C06_085M,S0506_C06_085MA"}, "S0505_C01_081E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Finance and insurance, and real estate and rental and leasing", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_081EA,S0505_C01_081M,S0505_C01_081MA"}, "S0503_C04_145E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_145EA,S0503_C04_145M,S0503_C04_145MA"}, "S0503_C04_142E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_142EA,S0503_C04_142M,S0503_C04_142MA"}, "S2101_C01_022E": {"label": "Estimate!!Total!!Civilian population 18 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C01_022EA,S2101_C01_022M,S2101_C01_022MA"}, "S1702_C01_007E": {"label": "Estimate!!Total!!All families!!Families!!RACE AND HISPANIC OR LATINO ORIGIN!!Families with a householder who is--!!Black or African American alone", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C01_007EA,S1702_C01_007M,S1702_C01_007MA"}, "S2402_C03_017E": {"label": "Estimate!!Percent Male!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Healthcare practitioners and technical occupations:!!Health technologists and technicians", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2402", "limit": 0, "attributes": "S2402_C03_017EA,S2402_C03_017M,S2402_C03_017MA"}, "S0506_C06_086E": {"label": "Estimate!!Foreign-born; Born in South America!!Civilian employed population 16 years and over!!INDUSTRY!!Public administration", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_086EA,S0506_C06_086M,S0506_C06_086MA"}, "S0503_C04_143E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Renter-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C04_143EA,S0503_C04_143M,S0503_C04_143MA"}, "S1702_C01_008E": {"label": "Estimate!!Total!!All families!!Families!!RACE AND HISPANIC OR LATINO ORIGIN!!Families with a householder who is--!!American Indian and Alaska Native alone", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C01_008EA,S1702_C01_008M,S1702_C01_008MA"}, "S2101_C01_023E": {"label": "Estimate!!Total!!MEDIAN INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Civilian population 18 years and over with income", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C01_023EA,S2101_C01_023M,S2101_C01_023MA"}, "S2402_C03_016E": {"label": "Estimate!!Percent Male!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Healthcare practitioners and technical occupations:!!Health diagnosing and treating practitioners and other technical occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2402", "limit": 0, "attributes": "S2402_C03_016EA,S2402_C03_016M,S2402_C03_016MA"}, "S0506_C06_087E": {"label": "Estimate!!Foreign-born; Born in South America!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C06_087EA,S0506_C06_087M,S0506_C06_087MA"}, "S2101_C01_020E": {"label": "Estimate!!Total!!Civilian population 18 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C01_020EA,S2101_C01_020M,S2101_C01_020MA"}, "S2601C_C02_071E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Naturalized U.S. citizen!!Male", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_071EA,S2601C_C02_071M,S2601C_C02_071MA"}, "S1702_C01_005E": {"label": "Estimate!!Total!!All families!!Families!!With related children of householder under 18 years!!With related children of householder 5 to 17 years", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C01_005EA,S1702_C01_005M,S1702_C01_005MA"}, "S0506_C06_080E": {"label": "Estimate!!Foreign-born; Born in South America!!Civilian employed population 16 years and over!!INDUSTRY!!Information", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_080EA,S0506_C06_080M,S0506_C06_080MA"}, "S0802_C03_053E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!INDUSTRY!!Retail trade", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_053EA,S0802_C03_053M,S0802_C03_053MA"}, "S0701_C02_004E": {"label": "Estimate!!Moved; within same county!!Population 1 year and over!!AGE!!18 to 24 years", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C02_004EA,S0701_C02_004M,S0701_C02_004MA"}, "S1251_C01_005E": {"label": "Estimate!!Population 15 years and over!!Total!!LABOR FORCE PARTICIPATION!!Population 16 years and over", "concept": "Characteristics of People With a Marital Event in the Last 12 Months", "predicateType": "int", "group": "S1251", "limit": 0, "attributes": "S1251_C01_005EA,S1251_C01_005M,S1251_C01_005MA"}, "S2601C_C02_072E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Naturalized U.S. citizen!!Female", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_072EA,S2601C_C02_072M,S2601C_C02_072MA"}, "S1702_C01_006E": {"label": "Estimate!!Total!!All families!!Families!!RACE AND HISPANIC OR LATINO ORIGIN!!Families with a householder who is--!!White alone", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C01_006EA,S1702_C01_006M,S1702_C01_006MA"}, "S2101_C01_021E": {"label": "Estimate!!Total!!Civilian population 18 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino (of any race)", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C01_021EA,S2101_C01_021M,S2101_C01_021MA"}, "S0506_C06_081E": {"label": "Estimate!!Foreign-born; Born in South America!!Civilian employed population 16 years and over!!INDUSTRY!!Finance and insurance, and real estate and rental and leasing", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_081EA,S0506_C06_081M,S0506_C06_081MA"}, "S0701_C02_003E": {"label": "Estimate!!Moved; within same county!!Population 1 year and over!!AGE!!5 to 17 years", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C02_003EA,S0701_C02_003M,S0701_C02_003MA"}, "S2507_C02_040E": {"label": "Estimate!!Percent owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$20,000 to $34,999!!30 percent or more", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "float", "group": "S2507", "limit": 0, "attributes": "S2507_C02_040EA,S2507_C02_040M,S2507_C02_040MA"}, "S0802_C03_052E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!INDUSTRY!!Wholesale trade", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_052EA,S0802_C03_052M,S0802_C03_052MA"}, "S1251_C01_006E": {"label": "Estimate!!Population 15 years and over!!Total!!LABOR FORCE PARTICIPATION!!Population 16 years and over!!In labor force", "concept": "Characteristics of People With a Marital Event in the Last 12 Months", "predicateType": "float", "group": "S1251", "limit": 0, "attributes": "S1251_C01_006EA,S1251_C01_006M,S1251_C01_006MA"}, "S0506_C06_082E": {"label": "Estimate!!Foreign-born; Born in South America!!Civilian employed population 16 years and over!!INDUSTRY!!Professional, scientific, and management, and administrative and waste management services", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_082EA,S0506_C06_082M,S0506_C06_082MA"}, "S2507_C02_041E": {"label": "Estimate!!Percent owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$35,000 to $49,999", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "float", "group": "S2507", "limit": 0, "attributes": "S2507_C02_041EA,S2507_C02_041M,S2507_C02_041MA"}, "S2601C_C02_073E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Not a U.S. citizen", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_073EA,S2601C_C02_073M,S2601C_C02_073MA"}, "S0802_C03_051E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!INDUSTRY!!Manufacturing", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_051EA,S0802_C03_051M,S0802_C03_051MA"}, "S0701_C02_006E": {"label": "Estimate!!Moved; within same county!!Population 1 year and over!!AGE!!35 to 44 years", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C02_006EA,S0701_C02_006M,S0701_C02_006MA"}, "S1251_C01_007E": {"label": "Estimate!!Population 15 years and over!!Total!!LABOR FORCE PARTICIPATION!!Population 16 years and over!!Not in labor force", "concept": "Characteristics of People With a Marital Event in the Last 12 Months", "predicateType": "float", "group": "S1251", "limit": 0, "attributes": "S1251_C01_007EA,S1251_C01_007M,S1251_C01_007MA"}, "S1702_C01_003E": {"label": "Estimate!!Total!!All families!!Families!!With related children of householder under 18 years!!With related children of householder under 5 years", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C01_003EA,S1702_C01_003M,S1702_C01_003MA"}, "S2507_C02_042E": {"label": "Estimate!!Percent owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$35,000 to $49,999!!Less than 20 percent", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "float", "group": "S2507", "limit": 0, "attributes": "S2507_C02_042EA,S2507_C02_042M,S2507_C02_042MA"}, "S0506_C06_083E": {"label": "Estimate!!Foreign-born; Born in South America!!Civilian employed population 16 years and over!!INDUSTRY!!Educational services, and health care and social assistance", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_083EA,S0506_C06_083M,S0506_C06_083MA"}, "S2601C_C02_074E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Not a U.S. citizen!!Male", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_074EA,S2601C_C02_074M,S2601C_C02_074MA"}, "S1251_C01_008E": {"label": "Estimate!!Population 15 years and over!!Total!!POVERTY STATUS IN PAST 12 MONTHS!!Population for whom poverty status is determined", "concept": "Characteristics of People With a Marital Event in the Last 12 Months", "predicateType": "int", "group": "S1251", "limit": 0, "attributes": "S1251_C01_008EA,S1251_C01_008M,S1251_C01_008MA"}, "S0802_C03_050E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!INDUSTRY!!Construction", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_050EA,S0802_C03_050M,S0802_C03_050MA"}, "S1901_C04_010E": {"label": "Estimate!!Nonfamily households!!Total!!$150,000 to $199,999", "concept": "Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1901", "limit": 0, "attributes": "S1901_C04_010EA,S1901_C04_010M,S1901_C04_010MA"}, "S0701_C02_005E": {"label": "Estimate!!Moved; within same county!!Population 1 year and over!!AGE!!25 to 34 years", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C02_005EA,S0701_C02_005M,S0701_C02_005MA"}, "S1702_C01_004E": {"label": "Estimate!!Total!!All families!!Families!!With related children of householder under 18 years!!With related children of householder under 5 years and 5 to 17 years", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C01_004EA,S1702_C01_004M,S1702_C01_004MA"}, "S2507_C02_043E": {"label": "Estimate!!Percent owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$35,000 to $49,999!!20 to 29 percent", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "float", "group": "S2507", "limit": 0, "attributes": "S2507_C02_043EA,S2507_C02_043M,S2507_C02_043MA"}, "S0802_C03_057E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!INDUSTRY!!Educational services, and health care and social assistance", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_057EA,S0802_C03_057M,S0802_C03_057MA"}, "S0505_C01_088E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$1 to $9,999 or loss", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_088EA,S0505_C01_088M,S0505_C01_088MA"}, "S1901_C04_011E": {"label": "Estimate!!Nonfamily households!!Total!!$200,000 or more", "concept": "Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1901", "limit": 0, "attributes": "S1901_C04_011EA,S1901_C04_011M,S1901_C04_011MA"}, "S1251_C01_001E": {"label": "Estimate!!Population 15 years and over!!Total!!Population 15 years and over", "concept": "Characteristics of People With a Marital Event in the Last 12 Months", "predicateType": "int", "group": "S1251", "limit": 0, "attributes": "S1251_C01_001EA,S1251_C01_001M,S1251_C01_001MA"}, "S1702_C01_001E": {"label": "Estimate!!Total!!All families!!Families", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C01_001EA,S1702_C01_001M,S1702_C01_001MA"}, "S2507_C02_044E": {"label": "Estimate!!Percent owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$35,000 to $49,999!!30 percent or more", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "float", "group": "S2507", "limit": 0, "attributes": "S2507_C02_044EA,S2507_C02_044M,S2507_C02_044MA"}, "S1901_C04_012E": {"label": "Estimate!!Nonfamily households!!Median income (dollars)", "concept": "Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1901", "limit": 0, "attributes": "S1901_C04_012EA,S1901_C04_012M,S1901_C04_012MA"}, "S0802_C03_056E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!INDUSTRY!!Professional, scientific, management, and administrative and waste management services", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_056EA,S0802_C03_056M,S0802_C03_056MA"}, "S0505_C01_089E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$10,000 to $14,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_089EA,S0505_C01_089M,S0505_C01_089MA"}, "S1251_C01_002E": {"label": "Estimate!!Population 15 years and over!!Total!!Population 15 years and over!!AGE!!Median age", "concept": "Characteristics of People With a Marital Event in the Last 12 Months", "predicateType": "float", "group": "S1251", "limit": 0, "attributes": "S1251_C01_002EA,S1251_C01_002M,S1251_C01_002MA"}, "S1702_C01_002E": {"label": "Estimate!!Total!!All families!!Families!!With related children of householder under 18 years", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C01_002EA,S1702_C01_002M,S1702_C01_002MA"}, "S2507_C02_045E": {"label": "Estimate!!Percent owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$50,000 to $74,999", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "float", "group": "S2507", "limit": 0, "attributes": "S2507_C02_045EA,S2507_C02_045M,S2507_C02_045MA"}, "S0701_C02_002E": {"label": "Estimate!!Moved; within same county!!Population 1 year and over!!AGE!!1 to 4 years", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C02_002EA,S0701_C02_002M,S0701_C02_002MA"}, "S1901_C04_013E": {"label": "Estimate!!Nonfamily households!!Mean income (dollars)", "concept": "Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1901", "limit": 0, "attributes": "S1901_C04_013EA,S1901_C04_013M,S1901_C04_013MA"}, "S0505_C01_086E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Public administration", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_086EA,S0505_C01_086M,S0505_C01_086MA"}, "S0802_C03_055E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!INDUSTRY!!Information and finance and insurance, and real estate and rental and leasing", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_055EA,S0802_C03_055M,S0802_C03_055MA"}, "S1251_C01_003E": {"label": "Estimate!!Population 15 years and over!!Total!!EDUCATIONAL ATTAINMENT!!Population 18 years and over", "concept": "Characteristics of People With a Marital Event in the Last 12 Months", "predicateType": "int", "group": "S1251", "limit": 0, "attributes": "S1251_C01_003EA,S1251_C01_003M,S1251_C01_003MA"}, "S2601C_C02_070E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Naturalized U.S. citizen", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_070EA,S2601C_C02_070M,S2601C_C02_070MA"}, "S0701_C02_001E": {"label": "Estimate!!Moved; within same county!!Population 1 year and over", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C02_001EA,S0701_C02_001M,S0701_C02_001MA"}, "S1901_C04_014E": {"label": "Estimate!!Nonfamily households!!PERCENT ALLOCATED!!Household income in the past 12 months", "concept": "Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1901", "limit": 0, "attributes": "S1901_C04_014EA,S1901_C04_014M,S1901_C04_014MA"}, "S0505_C01_087E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C01_087EA,S0505_C01_087M,S0505_C01_087MA"}, "S0802_C03_054E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!INDUSTRY!!Transportation and warehousing, and utilities", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_054EA,S0802_C03_054M,S0802_C03_054MA"}, "S2507_C02_046E": {"label": "Estimate!!Percent owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$50,000 to $74,999!!Less than 20 percent", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "float", "group": "S2507", "limit": 0, "attributes": "S2507_C02_046EA,S2507_C02_046M,S2507_C02_046MA"}, "S1251_C01_004E": {"label": "Estimate!!Population 15 years and over!!Total!!EDUCATIONAL ATTAINMENT!!Population 18 years and over!!Bachelor's degree or higher", "concept": "Characteristics of People With a Marital Event in the Last 12 Months", "predicateType": "float", "group": "S1251", "limit": 0, "attributes": "S1251_C01_004EA,S1251_C01_004M,S1251_C01_004MA"}, "S1401_C04_006E": {"label": "Estimate!!Percent in public school!!Population 3 years and over enrolled in school!!Kindergarten to 12th grade!!Elementary: grade 5 to grade 8", "concept": "School Enrollment", "predicateType": "float", "group": "S1401", "limit": 0, "attributes": "S1401_C04_006EA,S1401_C04_006M,S1401_C04_006MA"}, "S0501_C03_092E": {"label": "Estimate!!Foreign-born!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_092EA,S0501_C03_092M,S0501_C03_092MA"}, "S1702_C01_021E": {"label": "Estimate!!Total!!All families!!Families!!EDUCATIONAL ATTAINMENT OF HOUSEHOLDER!!High school graduate (includes equivalency)", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C01_021EA,S1702_C01_021M,S1702_C01_021MA"}, "S1401_C04_007E": {"label": "Estimate!!Percent in public school!!Population 3 years and over enrolled in school!!Kindergarten to 12th grade!!High school: grade 9 to grade 12", "concept": "School Enrollment", "predicateType": "float", "group": "S1401", "limit": 0, "attributes": "S1401_C04_007EA,S1401_C04_007M,S1401_C04_007MA"}, "S0501_C03_093E": {"label": "Estimate!!Foreign-born!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income!!Mean Social Security income (dollars)", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C03_093EA,S0501_C03_093M,S0501_C03_093MA"}, "S1702_C01_022E": {"label": "Estimate!!Total!!All families!!Families!!EDUCATIONAL ATTAINMENT OF HOUSEHOLDER!!Some college, associate's degree", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C01_022EA,S1702_C01_022M,S1702_C01_022MA"}, "S1401_C04_008E": {"label": "Estimate!!Percent in public school!!Population 3 years and over enrolled in school!!College, undergraduate", "concept": "School Enrollment", "predicateType": "float", "group": "S1401", "limit": 0, "attributes": "S1401_C04_008EA,S1401_C04_008M,S1401_C04_008MA"}, "S1251_C01_010E": {"label": "Estimate!!Population 15 years and over!!Total!!PRESENCE OF OWN CHILD UNDER 18 YEARS!!Population in households", "concept": "Characteristics of People With a Marital Event in the Last 12 Months", "predicateType": "int", "group": "S1251", "limit": 0, "attributes": "S1251_C01_010EA,S1251_C01_010M,S1251_C01_010MA"}, "S0802_C03_059E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!INDUSTRY!!Other services (except public administration)", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_059EA,S0802_C03_059M,S0802_C03_059MA"}, "S0501_C03_094E": {"label": "Estimate!!Foreign-born!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_094EA,S0501_C03_094M,S0501_C03_094MA"}, "S1251_C01_011E": {"label": "Estimate!!Population 15 years and over!!Total!!PRESENCE OF OWN CHILD UNDER 18 YEARS!!Population in households!!With an own child of the householder under 18 years", "concept": "Characteristics of People With a Marital Event in the Last 12 Months", "predicateType": "float", "group": "S1251", "limit": 0, "attributes": "S1251_C01_011EA,S1251_C01_011M,S1251_C01_011MA"}, "S1401_C04_009E": {"label": "Estimate!!Percent in public school!!Population 3 years and over enrolled in school!!Graduate, professional school", "concept": "School Enrollment", "predicateType": "float", "group": "S1401", "limit": 0, "attributes": "S1401_C04_009EA,S1401_C04_009M,S1401_C04_009MA"}, "S0802_C03_058E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!INDUSTRY!!Arts, entertainment, and recreation, and accommodation and food services", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_058EA,S0802_C03_058M,S0802_C03_058MA"}, "S0501_C03_095E": {"label": "Estimate!!Foreign-born!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income!!Mean Supplemental Security Income (dollars)", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C03_095EA,S0501_C03_095M,S0501_C03_095MA"}, "S1702_C01_020E": {"label": "Estimate!!Total!!All families!!Families!!EDUCATIONAL ATTAINMENT OF HOUSEHOLDER!!Less than high school graduate", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C01_020EA,S1702_C01_020M,S1702_C01_020MA"}, "S1251_C01_012E": {"label": "Estimate!!Population 15 years and over!!Total!!HOUSING TENURE!!Population 15 years and over in occupied housing units", "concept": "Characteristics of People With a Marital Event in the Last 12 Months", "predicateType": "int", "group": "S1251", "limit": 0, "attributes": "S1251_C01_012EA,S1251_C01_012M,S1251_C01_012MA"}, "S2601C_C02_087E": {"label": "Estimate!!Total group quarters population!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_087EA,S2601C_C02_087M,S2601C_C02_087MA"}, "S1401_C04_002E": {"label": "Estimate!!Percent in public school!!Population 3 years and over enrolled in school!!Nursery school, preschool", "concept": "School Enrollment", "predicateType": "float", "group": "S1401", "limit": 0, "attributes": "S1401_C04_002EA,S1401_C04_002M,S1401_C04_002MA"}, "S0501_C03_096E": {"label": "Estimate!!Foreign-born!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_096EA,S0501_C03_096M,S0501_C03_096MA"}, "S2601C_C02_088E": {"label": "Estimate!!Total group quarters population!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed!!Percent of civilian labor force", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_088EA,S2601C_C02_088M,S2601C_C02_088MA"}, "S0101_C04_009E": {"label": "Estimate!!Percent Male!!Total population!!AGE!!35 to 39 years", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C04_009EA,S0101_C04_009M,S0101_C04_009MA"}, "S1401_C04_003E": {"label": "Estimate!!Percent in public school!!Population 3 years and over enrolled in school!!Kindergarten to 12th grade", "concept": "School Enrollment", "predicateType": "float", "group": "S1401", "limit": 0, "attributes": "S1401_C04_003EA,S1401_C04_003M,S1401_C04_003MA"}, "S0701_C02_019E": {"label": "Estimate!!Moved; within same county!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C02_019EA,S0701_C02_019M,S0701_C02_019MA"}, "S0501_C03_097E": {"label": "Estimate!!Foreign-born!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income!!Mean cash public assistance income (dollars)", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C03_097EA,S0501_C03_097M,S0501_C03_097MA"}, "S2601C_C02_089E": {"label": "Estimate!!Total group quarters population!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Armed Forces", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_089EA,S2601C_C02_089M,S2601C_C02_089MA"}, "S0101_C04_008E": {"label": "Estimate!!Percent Male!!Total population!!AGE!!30 to 34 years", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C04_008EA,S0101_C04_008M,S0101_C04_008MA"}, "S0501_C03_098E": {"label": "Estimate!!Foreign-born!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_098EA,S0501_C03_098M,S0501_C03_098MA"}, "S1401_C04_004E": {"label": "Estimate!!Percent in public school!!Population 3 years and over enrolled in school!!Kindergarten to 12th grade!!Kindergarten", "concept": "School Enrollment", "predicateType": "float", "group": "S1401", "limit": 0, "attributes": "S1401_C04_004EA,S1401_C04_004M,S1401_C04_004MA"}, "S0101_C04_007E": {"label": "Estimate!!Percent Male!!Total population!!AGE!!25 to 29 years", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C04_007EA,S0101_C04_007M,S0101_C04_007MA"}, "S0501_C03_099E": {"label": "Estimate!!Foreign-born!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income!!Mean retirement income (dollars)", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C03_099EA,S0501_C03_099M,S0501_C03_099MA"}, "S1401_C04_005E": {"label": "Estimate!!Percent in public school!!Population 3 years and over enrolled in school!!Kindergarten to 12th grade!!Elementary: grade 1 to grade 4", "concept": "School Enrollment", "predicateType": "float", "group": "S1401", "limit": 0, "attributes": "S1401_C04_005EA,S1401_C04_005M,S1401_C04_005MA"}, "S0101_C04_006E": {"label": "Estimate!!Percent Male!!Total population!!AGE!!20 to 24 years", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C04_006EA,S0101_C04_006M,S0101_C04_006MA"}, "S2402_C03_011E": {"label": "Estimate!!Percent Male!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:!!Community and social service occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2402", "limit": 0, "attributes": "S2402_C03_011EA,S2402_C03_011M,S2402_C03_011MA"}, "S0503_C04_136E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Occupied housing units!!VEHICLES AVAILABLE!!None", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_136EA,S0503_C04_136M,S0503_C04_136MA"}, "S0101_C04_005E": {"label": "Estimate!!Percent Male!!Total population!!AGE!!15 to 19 years", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C04_005EA,S0101_C04_005M,S0101_C04_005MA"}, "S2402_C03_010E": {"label": "Estimate!!Percent Male!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2402", "limit": 0, "attributes": "S2402_C03_010EA,S2402_C03_010M,S2402_C03_010MA"}, "S0503_C04_137E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Occupied housing units!!VEHICLES AVAILABLE!!1 or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_137EA,S0503_C04_137M,S0503_C04_137MA"}, "S0101_C04_004E": {"label": "Estimate!!Percent Male!!Total population!!AGE!!10 to 14 years", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C04_004EA,S0101_C04_004M,S0101_C04_004MA"}, "S2402_C03_013E": {"label": "Estimate!!Percent Male!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:!!Educational instruction, and library occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2402", "limit": 0, "attributes": "S2402_C03_013EA,S2402_C03_013M,S2402_C03_013MA"}, "S0503_C04_134E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Occupied housing units!!Median number of rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_134EA,S0503_C04_134M,S0503_C04_134MA"}, "S0101_C04_003E": {"label": "Estimate!!Percent Male!!Total population!!AGE!!5 to 9 years", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C04_003EA,S0101_C04_003M,S0101_C04_003MA"}, "S2402_C03_012E": {"label": "Estimate!!Percent Male!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:!!Legal occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2402", "limit": 0, "attributes": "S2402_C03_012EA,S2402_C03_012M,S2402_C03_012MA"}, "S1401_C04_001E": {"label": "Estimate!!Percent in public school!!Population 3 years and over enrolled in school", "concept": "School Enrollment", "predicateType": "float", "group": "S1401", "limit": 0, "attributes": "S1401_C04_001EA,S1401_C04_001M,S1401_C04_001MA"}, "S0503_C04_135E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Occupied housing units!!1.01 or more occupants per room", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_135EA,S0503_C04_135M,S0503_C04_135MA"}, "S0101_C04_002E": {"label": "Estimate!!Percent Male!!Total population!!AGE!!Under 5 years", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C04_002EA,S0101_C04_002M,S0101_C04_002MA"}, "S0101_C04_001E": {"label": "Estimate!!Percent Male!!Total population", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C04_001EA,S0101_C04_001M,S0101_C04_001MA"}, "S2101_C01_018E": {"label": "Estimate!!Total!!Civilian population 18 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Native Hawaiian and Other Pacific Islander alone", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C01_018EA,S2101_C01_018M,S2101_C01_018MA"}, "S0501_C03_090E": {"label": "Estimate!!Foreign-born!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_090EA,S0501_C03_090M,S0501_C03_090MA"}, "S0503_C04_138E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Occupied housing units!!SELECTED CHARACTERISTICS!!No telephone service available", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_138EA,S0503_C04_138M,S0503_C04_138MA"}, "S2101_C01_019E": {"label": "Estimate!!Total!!Civilian population 18 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Some other race alone", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C01_019EA,S2101_C01_019M,S2101_C01_019MA"}, "S0501_C03_091E": {"label": "Estimate!!Foreign-born!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings!!Mean earnings (dollars)", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C03_091EA,S0501_C03_091M,S0501_C03_091MA"}, "S0503_C04_139E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Occupied housing units!!SELECTED CHARACTERISTICS!!Limited English Speaking Households", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_139EA,S0503_C04_139M,S0503_C04_139MA"}, "S2402_C03_007E": {"label": "Estimate!!Percent Male!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Computer, engineering, and science occupations:!!Computer and mathematical occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2402", "limit": 0, "attributes": "S2402_C03_007EA,S2402_C03_007M,S2402_C03_007MA"}, "S2101_C01_016E": {"label": "Estimate!!Total!!Civilian population 18 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!American Indian and Alaska Native alone", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C01_016EA,S2101_C01_016M,S2101_C01_016MA"}, "S0505_C01_096E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!Median earnings (dollars) for full-time, year-round workers!!Female", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C01_096EA,S0505_C01_096M,S0505_C01_096MA"}, "S0506_C06_076E": {"label": "Estimate!!Foreign-born; Born in South America!!Civilian employed population 16 years and over!!INDUSTRY!!Manufacturing", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_076EA,S0506_C06_076M,S0506_C06_076MA"}, "S2101_C01_017E": {"label": "Estimate!!Total!!Civilian population 18 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Asian alone", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C01_017EA,S2101_C01_017M,S2101_C01_017MA"}, "S0505_C01_097E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C01_097EA,S0505_C01_097M,S0505_C01_097MA"}, "S2402_C03_006E": {"label": "Estimate!!Percent Male!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Computer, engineering, and science occupations:", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2402", "limit": 0, "attributes": "S2402_C03_006EA,S2402_C03_006M,S2402_C03_006MA"}, "S0506_C06_077E": {"label": "Estimate!!Foreign-born; Born in South America!!Civilian employed population 16 years and over!!INDUSTRY!!Wholesale trade", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_077EA,S0506_C06_077M,S0506_C06_077MA"}, "S0701_C02_010E": {"label": "Estimate!!Moved; within same county!!Population 1 year and over!!AGE!!75 years and over", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C02_010EA,S0701_C02_010M,S0701_C02_010MA"}, "S2101_C01_014E": {"label": "Estimate!!Total!!Civilian population 18 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C01_014EA,S2101_C01_014M,S2101_C01_014MA"}, "S2402_C03_009E": {"label": "Estimate!!Percent Male!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Computer, engineering, and science occupations:!!Life, physical, and social science occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2402", "limit": 0, "attributes": "S2402_C03_009EA,S2402_C03_009M,S2402_C03_009MA"}, "S0505_C01_094E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$75,000 or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_094EA,S0505_C01_094M,S0505_C01_094MA"}, "S0506_C06_078E": {"label": "Estimate!!Foreign-born; Born in South America!!Civilian employed population 16 years and over!!INDUSTRY!!Retail trade", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_078EA,S0506_C06_078M,S0506_C06_078MA"}, "S2101_C01_015E": {"label": "Estimate!!Total!!Civilian population 18 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Black or African American alone", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C01_015EA,S2101_C01_015M,S2101_C01_015MA"}, "S2402_C03_008E": {"label": "Estimate!!Percent Male!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Computer, engineering, and science occupations:!!Architecture and engineering occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2402", "limit": 0, "attributes": "S2402_C03_008EA,S2402_C03_008M,S2402_C03_008MA"}, "S0505_C01_095E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!Median earnings (dollars) for full-time, year-round workers!!Male", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C01_095EA,S0505_C01_095M,S0505_C01_095MA"}, "S0506_C06_079E": {"label": "Estimate!!Foreign-born; Born in South America!!Civilian employed population 16 years and over!!INDUSTRY!!Transportation and warehousing, and utilities", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_079EA,S0506_C06_079M,S0506_C06_079MA"}, "S0503_C04_132E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Occupied housing units!!ROOMS!!6 or 7 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_132EA,S0503_C04_132M,S0503_C04_132MA"}, "S2101_C01_012E": {"label": "Estimate!!Total!!Civilian population 18 years and over!!AGE!!65 to 74 years", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C01_012EA,S2101_C01_012M,S2101_C01_012MA"}, "S0506_C06_072E": {"label": "Estimate!!Foreign-born; Born in South America!!Civilian employed population 16 years and over!!OCCUPATION!!Natural resources, construction, and maintenance occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_072EA,S0506_C06_072M,S0506_C06_072MA"}, "S0802_C03_061E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!INDUSTRY!!Armed forces", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_061EA,S0802_C03_061M,S0802_C03_061MA"}, "S2402_C03_003E": {"label": "Estimate!!Percent Male!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Management, business, and financial occupations:", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2402", "limit": 0, "attributes": "S2402_C03_003EA,S2402_C03_003M,S2402_C03_003MA"}, "S0505_C01_092E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$35,000 to $49,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_092EA,S0505_C01_092M,S0505_C01_092MA"}, "S0503_C04_133E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Occupied housing units!!ROOMS!!8 or more rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_133EA,S0503_C04_133M,S0503_C04_133MA"}, "S2101_C01_013E": {"label": "Estimate!!Total!!Civilian population 18 years and over!!AGE!!75 years and over", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C01_013EA,S2101_C01_013M,S2101_C01_013MA"}, "S0506_C06_073E": {"label": "Estimate!!Foreign-born; Born in South America!!Civilian employed population 16 years and over!!OCCUPATION!!Production, transportation, and material moving occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_073EA,S0506_C06_073M,S0506_C06_073MA"}, "S0802_C03_060E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!INDUSTRY!!Public administration", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_060EA,S0802_C03_060M,S0802_C03_060MA"}, "S2402_C03_002E": {"label": "Estimate!!Percent Male!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2402", "limit": 0, "attributes": "S2402_C03_002EA,S2402_C03_002M,S2402_C03_002MA"}, "S0505_C01_093E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$50,000 to $74,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_093EA,S0505_C01_093M,S0505_C01_093MA"}, "S1702_C01_019E": {"label": "Estimate!!Total!!All families!!Families!!Family received --!!Social security income in the past 12 months", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C01_019EA,S1702_C01_019M,S1702_C01_019MA"}, "S0503_C04_130E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Occupied housing units!!ROOMS!!2 or 3 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_130EA,S0503_C04_130M,S0503_C04_130MA"}, "S2101_C01_010E": {"label": "Estimate!!Total!!Civilian population 18 years and over!!AGE!!35 to 54 years", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C01_010EA,S2101_C01_010M,S2101_C01_010MA"}, "S2402_C03_005E": {"label": "Estimate!!Percent Male!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Management, business, and financial occupations:!!Business and financial operations occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2402", "limit": 0, "attributes": "S2402_C03_005EA,S2402_C03_005M,S2402_C03_005MA"}, "S0506_C06_074E": {"label": "Estimate!!Foreign-born; Born in South America!!Civilian employed population 16 years and over!!INDUSTRY!!Agriculture, forestry, fishing and hunting, and mining", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_074EA,S0506_C06_074M,S0506_C06_074MA"}, "S0505_C01_090E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$15,000 to $24,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_090EA,S0505_C01_090M,S0505_C01_090MA"}, "S0503_C04_131E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Occupied housing units!!ROOMS!!4 or 5 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_131EA,S0503_C04_131M,S0503_C04_131MA"}, "S2101_C01_011E": {"label": "Estimate!!Total!!Civilian population 18 years and over!!AGE!!55 to 64 years", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C01_011EA,S2101_C01_011M,S2101_C01_011MA"}, "S2507_C02_050E": {"label": "Estimate!!Percent owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$75,000 or more!!Less than 20 percent", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "float", "group": "S2507", "limit": 0, "attributes": "S2507_C02_050EA,S2507_C02_050M,S2507_C02_050MA"}, "S2402_C03_004E": {"label": "Estimate!!Percent Male!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Management, business, and financial occupations:!!Management occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2402", "limit": 0, "attributes": "S2402_C03_004EA,S2402_C03_004M,S2402_C03_004MA"}, "S0506_C06_075E": {"label": "Estimate!!Foreign-born; Born in South America!!Civilian employed population 16 years and over!!INDUSTRY!!Construction", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_075EA,S0506_C06_075M,S0506_C06_075MA"}, "S0505_C01_091E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$25,000 to $34,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_091EA,S0505_C01_091M,S0505_C01_091MA"}, "S2601C_C02_083E": {"label": "Estimate!!Total group quarters population!!EMPLOYMENT STATUS!!Population 16 years and over", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_083EA,S2601C_C02_083M,S2601C_C02_083MA"}, "S1702_C01_017E": {"label": "Estimate!!Total!!All families!!Families!!Householder 65 years and over", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C01_017EA,S1702_C01_017M,S1702_C01_017MA"}, "S2507_C02_051E": {"label": "Estimate!!Percent owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$75,000 or more!!20 to 29 percent", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "float", "group": "S2507", "limit": 0, "attributes": "S2507_C02_051EA,S2507_C02_051M,S2507_C02_051MA"}, "S2406_C01_003E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Service occupations", "concept": "Occupation by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2406", "limit": 0, "attributes": "S2406_C01_003EA,S2406_C01_003M,S2406_C01_003MA"}, "S0802_C03_065E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!CLASS OF WORKER!!Unpaid family workers", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_065EA,S0802_C03_065M,S0802_C03_065MA"}, "S0701_C02_016E": {"label": "Estimate!!Moved; within same county!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C02_016EA,S0701_C02_016M,S0701_C02_016MA"}, "S1702_C01_018E": {"label": "Estimate!!Total!!All families!!Families!!Family received --!!Supplemental Security Income (SSI) and/or cash public assistance income in the past 12 months", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C01_018EA,S1702_C01_018M,S1702_C01_018MA"}, "S2507_C02_052E": {"label": "Estimate!!Percent owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$75,000 or more!!30 percent or more", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "float", "group": "S2507", "limit": 0, "attributes": "S2507_C02_052EA,S2507_C02_052M,S2507_C02_052MA"}, "S2601C_C02_084E": {"label": "Estimate!!Total group quarters population!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_084EA,S2601C_C02_084M,S2601C_C02_084MA"}, "S2406_C01_002E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations", "concept": "Occupation by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2406", "limit": 0, "attributes": "S2406_C01_002EA,S2406_C01_002M,S2406_C01_002MA"}, "S0802_C03_064E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!CLASS OF WORKER!!Self-employed workers in own not incorporated business", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_064EA,S0802_C03_064M,S0802_C03_064MA"}, "S0701_C02_015E": {"label": "Estimate!!Moved; within same county!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C02_015EA,S0701_C02_015M,S0701_C02_015MA"}, "S2507_C02_053E": {"label": "Estimate!!Percent owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Zero or negative income", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "float", "group": "S2507", "limit": 0, "attributes": "S2507_C02_053EA,S2507_C02_053M,S2507_C02_053MA"}, "S0506_C06_070E": {"label": "Estimate!!Foreign-born; Born in South America!!Civilian employed population 16 years and over!!OCCUPATION!!Service occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_070EA,S0506_C06_070M,S0506_C06_070MA"}, "S2601C_C02_085E": {"label": "Estimate!!Total group quarters population!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_085EA,S2601C_C02_085M,S2601C_C02_085MA"}, "S2406_C01_001E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over", "concept": "Occupation by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2406", "limit": 0, "attributes": "S2406_C01_001EA,S2406_C01_001M,S2406_C01_001MA"}, "S0802_C03_063E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!CLASS OF WORKER!!Government workers", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_063EA,S0802_C03_063M,S0802_C03_063MA"}, "S0701_C02_018E": {"label": "Estimate!!Moved; within same county!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C02_018EA,S0701_C02_018M,S0701_C02_018MA"}, "S1702_C01_015E": {"label": "Estimate!!Total!!All families!!Families!!Householder worked", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C01_015EA,S1702_C01_015M,S1702_C01_015MA"}, "S2507_C02_054E": {"label": "Estimate!!Percent owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!REAL ESTATE TAXES!!Less than $800", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "float", "group": "S2507", "limit": 0, "attributes": "S2507_C02_054EA,S2507_C02_054M,S2507_C02_054MA"}, "S1702_C01_016E": {"label": "Estimate!!Total!!All families!!Families!!Householder worked!!Householder worked full-time, year-round in the past 12 months", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C01_016EA,S1702_C01_016M,S1702_C01_016MA"}, "S0506_C06_071E": {"label": "Estimate!!Foreign-born; Born in South America!!Civilian employed population 16 years and over!!OCCUPATION!!Sales and office occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_071EA,S0506_C06_071M,S0506_C06_071MA"}, "S2601C_C02_086E": {"label": "Estimate!!Total group quarters population!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Employed", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_086EA,S2601C_C02_086M,S2601C_C02_086MA"}, "S0802_C03_062E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!CLASS OF WORKER!!Private wage and salary workers", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_062EA,S0802_C03_062M,S0802_C03_062MA"}, "S0701_C02_017E": {"label": "Estimate!!Moved; within same county!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C02_017EA,S0701_C02_017M,S0701_C02_017MA"}, "S2507_C02_055E": {"label": "Estimate!!Percent owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!REAL ESTATE TAXES!!$800 to $1,499", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "float", "group": "S2507", "limit": 0, "attributes": "S2507_C02_055EA,S2507_C02_055M,S2507_C02_055MA"}, "S0701_C02_012E": {"label": "Estimate!!Moved; within same county!!Population 1 year and over!!SEX!!Male", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C02_012EA,S0701_C02_012M,S0701_C02_012MA"}, "S0802_C03_069E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!PLACE OF WORK!!Worked outside state of residence", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_069EA,S0802_C03_069M,S0802_C03_069MA"}, "S2406_C01_007E": {"label": "Estimate!!Total!!PERCENT ALLOCATED!!Occupation", "concept": "Occupation by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2406", "limit": 0, "attributes": "S2406_C01_007EA,S2406_C01_007M,S2406_C01_007MA"}, "S1251_C01_013E": {"label": "Estimate!!Population 15 years and over!!Total!!HOUSING TENURE!!Population 15 years and over in occupied housing units!!Owner-occupied housing units", "concept": "Characteristics of People With a Marital Event in the Last 12 Months", "predicateType": "float", "group": "S1251", "limit": 0, "attributes": "S1251_C01_013EA,S1251_C01_013M,S1251_C01_013MA"}, "S1702_C01_013E": {"label": "Estimate!!Total!!All families!!Families!!RACE AND HISPANIC OR LATINO ORIGIN!!Families with a householder who is--!!Hispanic or Latino origin (of any race)", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C01_013EA,S1702_C01_013M,S1702_C01_013MA"}, "S2507_C02_056E": {"label": "Estimate!!Percent owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!REAL ESTATE TAXES!!$1,500 or more", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "float", "group": "S2507", "limit": 0, "attributes": "S2507_C02_056EA,S2507_C02_056M,S2507_C02_056MA"}, "S2601C_C02_080E": {"label": "Estimate!!Total group quarters population!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!English only", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_080EA,S2601C_C02_080M,S2601C_C02_080MA"}, "S0701_C02_011E": {"label": "Estimate!!Moved; within same county!!Population 1 year and over!!AGE!!Median age (years)", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C02_011EA,S0701_C02_011M,S0701_C02_011MA"}, "S0802_C03_068E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!PLACE OF WORK!!Worked in state of residence!!Worked outside county of residence", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_068EA,S0802_C03_068M,S0802_C03_068MA"}, "S2406_C01_006E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Production, transportation, and material moving occupations", "concept": "Occupation by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2406", "limit": 0, "attributes": "S2406_C01_006EA,S2406_C01_006M,S2406_C01_006MA"}, "S1251_C01_014E": {"label": "Estimate!!Population 15 years and over!!Total!!HOUSING TENURE!!Population 15 years and over in occupied housing units!!Renter-occupied housing units", "concept": "Characteristics of People With a Marital Event in the Last 12 Months", "predicateType": "float", "group": "S1251", "limit": 0, "attributes": "S1251_C01_014EA,S1251_C01_014M,S1251_C01_014MA"}, "S1702_C01_014E": {"label": "Estimate!!Total!!All families!!Families!!RACE AND HISPANIC OR LATINO ORIGIN!!Families with a householder who is--!!White alone, not Hispanic or Latino", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C01_014EA,S1702_C01_014M,S1702_C01_014MA"}, "S2601C_C02_081E": {"label": "Estimate!!Total group quarters population!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_081EA,S2601C_C02_081M,S2601C_C02_081MA"}, "S0701_C02_014E": {"label": "Estimate!!Moved; within same county!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C02_014EA,S0701_C02_014M,S0701_C02_014MA"}, "S1901_C04_001E": {"label": "Estimate!!Nonfamily households!!Total", "concept": "Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1901", "limit": 0, "attributes": "S1901_C04_001EA,S1901_C04_001M,S1901_C04_001MA"}, "S0802_C03_067E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!PLACE OF WORK!!Worked in state of residence!!Worked in county of residence", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_067EA,S0802_C03_067M,S0802_C03_067MA"}, "S2406_C01_005E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Natural resources, construction, and maintenance occupations", "concept": "Occupation by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2406", "limit": 0, "attributes": "S2406_C01_005EA,S2406_C01_005M,S2406_C01_005MA"}, "S0505_C01_098E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_098EA,S0505_C01_098M,S0505_C01_098MA"}, "S1702_C01_011E": {"label": "Estimate!!Total!!All families!!Families!!RACE AND HISPANIC OR LATINO ORIGIN!!Families with a householder who is--!!Some other race alone", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C01_011EA,S1702_C01_011M,S1702_C01_011MA"}, "S2507_C02_057E": {"label": "Estimate!!Percent owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!REAL ESTATE TAXES!!No real estate taxes paid", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "float", "group": "S2507", "limit": 0, "attributes": "S2507_C02_057EA,S2507_C02_057M,S2507_C02_057MA"}, "S2601C_C02_082E": {"label": "Estimate!!Total group quarters population!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English!!Speak English less than \"very well\"", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_082EA,S2601C_C02_082M,S2601C_C02_082MA"}, "S0701_C02_013E": {"label": "Estimate!!Moved; within same county!!Population 1 year and over!!SEX!!Female", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C02_013EA,S0701_C02_013M,S0701_C02_013MA"}, "S1901_C04_002E": {"label": "Estimate!!Nonfamily households!!Total!!Less than $10,000", "concept": "Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1901", "limit": 0, "attributes": "S1901_C04_002EA,S1901_C04_002M,S1901_C04_002MA"}, "S2406_C01_004E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Sales and office occupations", "concept": "Occupation by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2406", "limit": 0, "attributes": "S2406_C01_004EA,S2406_C01_004M,S2406_C01_004MA"}, "S0505_C01_099E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings!!Mean earnings (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C01_099EA,S0505_C01_099M,S0505_C01_099MA"}, "S0802_C03_066E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!PLACE OF WORK!!Worked in state of residence", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_066EA,S0802_C03_066M,S0802_C03_066MA"}, "S2507_C02_058E": {"label": "Estimate!!Percent owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!REAL ESTATE TAXES!!Median (dollars)", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "int", "group": "S2507", "limit": 0, "attributes": "S2507_C02_058EA,S2507_C02_058M,S2507_C02_058MA"}, "S1702_C01_012E": {"label": "Estimate!!Total!!All families!!Families!!RACE AND HISPANIC OR LATINO ORIGIN!!Families with a householder who is--!!Two or more races", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C01_012EA,S1702_C01_012M,S1702_C01_012MA"}, "S0804_C04_020E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino origin", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_020EA,S0804_C04_020M,S0804_C04_020MA"}, "S1702_C01_033E": {"label": "Estimate!!Total!!All families!!Families!!NUMBER OF PEOPLE IN FAMILY!!3 or 4 people", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C01_033EA,S1702_C01_033M,S1702_C01_033MA"}, "S1702_C01_034E": {"label": "Estimate!!Total!!All families!!Families!!NUMBER OF PEOPLE IN FAMILY!!5 or 6 people", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C01_034EA,S1702_C01_034M,S1702_C01_034MA"}, "S0804_C04_022E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_022EA,S0804_C04_022M,S0804_C04_022MA"}, "S1702_C01_031E": {"label": "Estimate!!Total!!All families!!Families!!NUMBER OF OWN CHILDREN OF THE HOUSEHOLDER UNDER 18 YEARS!!5 or more own children of the householder", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C01_031EA,S1702_C01_031M,S1702_C01_031MA"}, "S0804_C04_021E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!NATIVITY AND CITIZENSHIP STATUS!!Native", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_021EA,S0804_C04_021M,S0804_C04_021MA"}, "S1702_C01_032E": {"label": "Estimate!!Total!!All families!!Families!!NUMBER OF PEOPLE IN FAMILY!!2 people", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C01_032EA,S1702_C01_032M,S1702_C01_032MA"}, "S1702_C01_030E": {"label": "Estimate!!Total!!All families!!Families!!NUMBER OF OWN CHILDREN OF THE HOUSEHOLDER UNDER 18 YEARS!!3 or 4 own children of the householder", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C01_030EA,S1702_C01_030M,S1702_C01_030MA"}, "S0804_C04_028E": {"label": "Estimate!!Public transportation!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "int", "group": "S0804", "limit": 0, "attributes": "S0804_C04_028EA,S0804_C04_028M,S0804_C04_028MA"}, "S0503_C04_124E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C04_124EA,S0503_C04_124M,S0503_C04_124MA"}, "S0804_C04_027E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Speak language other than English!!Speak English less than \"very well\"", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_027EA,S0804_C04_027M,S0804_C04_027MA"}, "S0503_C04_125E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Occupied housing units!!HOUSING TENURE!!Owner-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_125EA,S0503_C04_125M,S0503_C04_125MA"}, "S0503_C04_122E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_122EA,S0503_C04_122M,S0503_C04_122MA"}, "S2402_C03_001E": {"label": "Estimate!!Percent Male!!Full-time, year-round civilian employed population 16 years and over", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2402", "limit": 0, "attributes": "S2402_C03_001EA,S2402_C03_001M,S2402_C03_001MA"}, "S0505_C03_120E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_120EA,S0505_C03_120M,S0505_C03_120MA"}, "S0804_C04_029E": {"label": "Estimate!!Public transportation!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$1 to $9,999 or loss", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_029EA,S0804_C04_029M,S0804_C04_029MA"}, "S0503_C04_123E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_123EA,S0503_C04_123M,S0503_C04_123MA"}, "S0505_C03_122E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_122EA,S0505_C03_122M,S0505_C03_122MA"}, "S0804_C04_024E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born!!Not a U.S. citizen", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_024EA,S0804_C04_024M,S0804_C04_024MA"}, "S0503_C04_128E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Occupied housing units!!HOUSING TENURE!!Average household size of renter-occupied unit", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_128EA,S0503_C04_128M,S0503_C04_128MA"}, "S0506_C06_068E": {"label": "Estimate!!Foreign-born; Born in South America!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Unpaid family workers", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_068EA,S0506_C06_068M,S0506_C06_068MA"}, "S2503_C04_040E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$50,000 to $74,999!!30 percent or more", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C04_040EA,S2503_C04_040M,S2503_C04_040MA"}, "S0804_C04_023E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born!!Naturalized U.S. citizen", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_023EA,S0804_C04_023M,S0804_C04_023MA"}, "S0503_C04_129E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Occupied housing units!!ROOMS!!1 room", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_129EA,S0503_C04_129M,S0503_C04_129MA"}, "S0505_C03_121E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_121EA,S0505_C03_121M,S0505_C03_121MA"}, "S0506_C06_069E": {"label": "Estimate!!Foreign-born; Born in South America!!Civilian employed population 16 years and over!!OCCUPATION!!Management, business, science, and arts occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_069EA,S0506_C06_069M,S0506_C06_069MA"}, "S0505_C03_124E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C03_124EA,S0505_C03_124M,S0505_C03_124MA"}, "S0804_C04_026E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Speak language other than English!!Speak English \"very well\"", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_026EA,S0804_C04_026M,S0804_C04_026MA"}, "S0503_C04_126E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Occupied housing units!!HOUSING TENURE!!Renter-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_126EA,S0503_C04_126M,S0503_C04_126MA"}, "S0505_C03_123E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_123EA,S0505_C03_123M,S0505_C03_123MA"}, "S0804_C04_025E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Speak language other than English", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_025EA,S0804_C04_025M,S0804_C04_025MA"}, "S0503_C04_127E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Occupied housing units!!HOUSING TENURE!!Average household size of owner-occupied unit", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_127EA,S0503_C04_127M,S0503_C04_127MA"}, "S2503_C04_043E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$75,000 or more!!20 to 29 percent", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C04_043EA,S2503_C04_043M,S2503_C04_043MA"}, "S0505_C03_114E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!At or above 200 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_114EA,S0505_C03_114M,S0505_C03_114MA"}, "S0701_C02_020E": {"label": "Estimate!!Moved; within same county!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C02_020EA,S0701_C02_020M,S0701_C02_020MA"}, "S0501_C03_048E": {"label": "Estimate!!Foreign-born!!EMPLOYMENT STATUS!!Population 16 years and over", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C03_048EA,S0501_C03_048M,S0501_C03_048MA"}, "S0506_C06_064E": {"label": "Estimate!!Foreign-born; Born in South America!!Civilian employed population 16 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C06_064EA,S0506_C06_064M,S0506_C06_064MA"}, "S0505_C03_113E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!100 to 199 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_113EA,S0505_C03_113M,S0505_C03_113MA"}, "S2503_C04_044E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$75,000 or more!!30 percent or more", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C04_044EA,S2503_C04_044M,S2503_C04_044MA"}, "S0501_C03_049E": {"label": "Estimate!!Foreign-born!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_049EA,S0501_C03_049M,S0501_C03_049MA"}, "S0506_C06_065E": {"label": "Estimate!!Foreign-born; Born in South America!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Private wage and salary workers", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_065EA,S0506_C06_065M,S0506_C06_065MA"}, "S2503_C04_041E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$75,000 or more", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C04_041EA,S2503_C04_041M,S2503_C04_041MA"}, "S0505_C03_116E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_116EA,S0505_C03_116M,S0505_C03_116MA"}, "S0701_C02_022E": {"label": "Estimate!!Moved; within same county!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C02_022EA,S0701_C02_022M,S0701_C02_022MA"}, "S0506_C06_066E": {"label": "Estimate!!Foreign-born; Born in South America!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Government workers", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_066EA,S0506_C06_066M,S0506_C06_066MA"}, "S0701_C02_021E": {"label": "Estimate!!Moved; within same county!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C02_021EA,S0701_C02_021M,S0701_C02_021MA"}, "S2503_C04_042E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$75,000 or more!!Less than 20 percent", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C04_042EA,S2503_C04_042M,S2503_C04_042MA"}, "S0505_C03_115E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_115EA,S0505_C03_115M,S0505_C03_115MA"}, "METDIV": {"label": "Metropolitan Division", "group": "N/A", "limit": 0}, "S0506_C06_067E": {"label": "Estimate!!Foreign-born; Born in South America!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Self-employed workers in own not incorporated business", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_067EA,S0506_C06_067M,S0506_C06_067MA"}, "S0503_C04_120E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_120EA,S0503_C04_120M,S0503_C04_120MA"}, "S0506_C06_060E": {"label": "Estimate!!Foreign-born; Born in South America!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_060EA,S0506_C06_060M,S0506_C06_060MA"}, "S0505_C03_118E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_118EA,S0505_C03_118M,S0505_C03_118MA"}, "S2703_C03_020E": {"label": "Estimate!!Percent Private Coverage!!Civilian noninstitutionalized population!!PRIVATE HEALTH INSURANCE ALONE OR IN COMBINATION!!26 to 34 years", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "float", "group": "S2703", "limit": 0, "attributes": "S2703_C03_020EA,S2703_C03_020M,S2703_C03_020MA"}, "S0802_C03_073E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!5:30 a.m. to 5:59 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_073EA,S0802_C03_073M,S0802_C03_073MA"}, "S0503_C04_121E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_121EA,S0503_C04_121M,S0503_C04_121MA"}, "S0506_C06_061E": {"label": "Estimate!!Foreign-born; Born in South America!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed!!Percent of civilian labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_061EA,S0506_C06_061M,S0506_C06_061MA"}, "S0505_C03_117E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_117EA,S0505_C03_117M,S0505_C03_117MA"}, "S0804_C04_019E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_019EA,S0804_C04_019M,S0804_C04_019MA"}, "S0802_C03_072E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!5:00 a.m. to 5:29 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_072EA,S0802_C03_072M,S0802_C03_072MA"}, "S2703_C03_021E": {"label": "Estimate!!Percent Private Coverage!!Civilian noninstitutionalized population!!PRIVATE HEALTH INSURANCE ALONE OR IN COMBINATION!!35 to 44 years", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "float", "group": "S2703", "limit": 0, "attributes": "S2703_C03_021EA,S2703_C03_021M,S2703_C03_021MA"}, "S2503_C04_045E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Zero or negative income", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C04_045EA,S2503_C04_045M,S2503_C04_045MA"}, "S0506_C06_062E": {"label": "Estimate!!Foreign-born; Born in South America!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Armed Forces", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_062EA,S0506_C06_062M,S0506_C06_062MA"}, "S0802_C03_071E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!12:00 a.m. to 4:59 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_071EA,S0802_C03_071M,S0802_C03_071MA"}, "S2703_C03_022E": {"label": "Estimate!!Percent Private Coverage!!Civilian noninstitutionalized population!!PRIVATE HEALTH INSURANCE ALONE OR IN COMBINATION!!45 to 54 years", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "float", "group": "S2703", "limit": 0, "attributes": "S2703_C03_022EA,S2703_C03_022M,S2703_C03_022MA"}, "S2503_C04_046E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!No cash rent", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C04_046EA,S2503_C04_046M,S2503_C04_046MA"}, "S0505_C03_119E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_119EA,S0505_C03_119M,S0505_C03_119MA"}, "S0802_C03_070E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over who did not work from home", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "int", "group": "S0802", "limit": 0, "attributes": "S0802_C03_070EA,S0802_C03_070M,S0802_C03_070MA"}, "S2703_C03_023E": {"label": "Estimate!!Percent Private Coverage!!Civilian noninstitutionalized population!!PRIVATE HEALTH INSURANCE ALONE OR IN COMBINATION!!55 to 64 years", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "float", "group": "S2703", "limit": 0, "attributes": "S2703_C03_023EA,S2703_C03_023M,S2703_C03_023MA"}, "S0506_C06_063E": {"label": "Estimate!!Foreign-born; Born in South America!!EMPLOYMENT STATUS!!Population 16 years and over!!Not in labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_063EA,S0506_C06_063M,S0506_C06_063MA"}, "S1702_C01_029E": {"label": "Estimate!!Total!!All families!!Families!!NUMBER OF OWN CHILDREN OF THE HOUSEHOLDER UNDER 18 YEARS!!1 or 2 own children of the householder", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C01_029EA,S1702_C01_029M,S1702_C01_029MA"}, "S0501_C03_040E": {"label": "Estimate!!Foreign-born!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate (includes equivalency)", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_040EA,S0501_C03_040M,S0501_C03_040MA"}, "S2703_C03_024E": {"label": "Estimate!!Percent Private Coverage!!Civilian noninstitutionalized population!!PRIVATE HEALTH INSURANCE ALONE OR IN COMBINATION!!65 to 74 years", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "float", "group": "S2703", "limit": 0, "attributes": "S2703_C03_024EA,S2703_C03_024M,S2703_C03_024MA"}, "S0802_C03_077E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!7:30 a.m. to 7:59 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_077EA,S0802_C03_077M,S0802_C03_077MA"}, "S0701_C02_028E": {"label": "Estimate!!Moved; within same county!!MARITAL STATUS!!Population 15 years and over", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C02_028EA,S0701_C02_028M,S0701_C02_028MA"}, "S2703_C03_025E": {"label": "Estimate!!Percent Private Coverage!!Civilian noninstitutionalized population!!PRIVATE HEALTH INSURANCE ALONE OR IN COMBINATION!!75 years and over", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "float", "group": "S2703", "limit": 0, "attributes": "S2703_C03_025EA,S2703_C03_025M,S2703_C03_025MA"}, "S0802_C03_076E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!7:00 a.m. to 7:29 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_076EA,S0802_C03_076M,S0802_C03_076MA"}, "S0701_C02_027E": {"label": "Estimate!!Moved; within same county!!Population 1 year and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born!!Not a U.S. citizen", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C02_027EA,S0701_C02_027M,S0701_C02_027MA"}, "S0501_C03_041E": {"label": "Estimate!!Foreign-born!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college or associate's degree", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_041EA,S0501_C03_041M,S0501_C03_041MA"}, "S1702_C01_027E": {"label": "Estimate!!Total!!All families!!Families!!NUMBER OF RELATED CHILDREN OF THE HOUSEHOLDER UNDER 18 YEARS!!5 or more children", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C01_027EA,S1702_C01_027M,S1702_C01_027MA"}, "S2703_C03_026E": {"label": "Estimate!!Percent Private Coverage!!Civilian noninstitutionalized population!!COVERAGE ALONE!!Private health insurance alone", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "float", "group": "S2703", "limit": 0, "attributes": "S2703_C03_026EA,S2703_C03_026M,S2703_C03_026MA"}, "S0802_C03_075E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!6:30 a.m. to 6:59 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_075EA,S0802_C03_075M,S0802_C03_075MA"}, "S0501_C03_042E": {"label": "Estimate!!Foreign-born!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_042EA,S0501_C03_042M,S0501_C03_042MA"}, "S1702_C01_028E": {"label": "Estimate!!Total!!All families!!Families!!NUMBER OF OWN CHILDREN OF THE HOUSEHOLDER UNDER 18 YEARS!!No own child of the householder", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C01_028EA,S1702_C01_028M,S1702_C01_028MA"}, "S2703_C03_027E": {"label": "Estimate!!Percent Private Coverage!!Civilian noninstitutionalized population!!COVERAGE ALONE!!Private health insurance alone!!Employer-based health insurance alone", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "float", "group": "S2703", "limit": 0, "attributes": "S2703_C03_027EA,S2703_C03_027M,S2703_C03_027MA"}, "S0802_C03_074E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!6:00 a.m. to 6:29 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_074EA,S0802_C03_074M,S0802_C03_074MA"}, "S0701_C02_029E": {"label": "Estimate!!Moved; within same county!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C02_029EA,S0701_C02_029M,S0701_C02_029MA"}, "S0501_C03_043E": {"label": "Estimate!!Foreign-born!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Graduate or professional degree", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_043EA,S0501_C03_043M,S0501_C03_043MA"}, "S0701_C02_024E": {"label": "Estimate!!Moved; within same county!!Population 1 year and over!!NATIVITY AND CITIZENSHIP STATUS!!Native", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C02_024EA,S0701_C02_024M,S0701_C02_024MA"}, "S2703_C03_028E": {"label": "Estimate!!Percent Private Coverage!!Civilian noninstitutionalized population!!COVERAGE ALONE!!Private health insurance alone!!Direct-purchase health insurance alone", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "float", "group": "S2703", "limit": 0, "attributes": "S2703_C03_028EA,S2703_C03_028M,S2703_C03_028MA"}, "S0501_C03_044E": {"label": "Estimate!!Foreign-born!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C03_044EA,S0501_C03_044M,S0501_C03_044MA"}, "S1702_C01_025E": {"label": "Estimate!!Total!!All families!!Families!!NUMBER OF RELATED CHILDREN OF THE HOUSEHOLDER UNDER 18 YEARS!!1 or 2 children", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C01_025EA,S1702_C01_025M,S1702_C01_025MA"}, "S0701_C02_023E": {"label": "Estimate!!Moved; within same county!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C02_023EA,S0701_C02_023M,S0701_C02_023MA"}, "S2703_C03_029E": {"label": "Estimate!!Percent Private Coverage!!Civilian noninstitutionalized population!!COVERAGE ALONE!!Private health insurance alone!!Tricare/military health coverage alone", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "float", "group": "S2703", "limit": 0, "attributes": "S2703_C03_029EA,S2703_C03_029M,S2703_C03_029MA"}, "S0501_C03_045E": {"label": "Estimate!!Foreign-born!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!English only", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_045EA,S0501_C03_045M,S0501_C03_045MA"}, "S1702_C01_026E": {"label": "Estimate!!Total!!All families!!Families!!NUMBER OF RELATED CHILDREN OF THE HOUSEHOLDER UNDER 18 YEARS!!3 or 4 children", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C01_026EA,S1702_C01_026M,S1702_C01_026MA"}, "S0802_C03_079E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!8:30 a.m. to 8:59 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_079EA,S0802_C03_079M,S0802_C03_079MA"}, "S0701_C02_026E": {"label": "Estimate!!Moved; within same county!!Population 1 year and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born!!Naturalized U.S. citizen", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C02_026EA,S0701_C02_026M,S0701_C02_026MA"}, "S0501_C03_046E": {"label": "Estimate!!Foreign-born!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_046EA,S0501_C03_046M,S0501_C03_046MA"}, "S1702_C01_023E": {"label": "Estimate!!Total!!All families!!Families!!EDUCATIONAL ATTAINMENT OF HOUSEHOLDER!!Bachelor's degree or higher", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C01_023EA,S1702_C01_023M,S1702_C01_023MA"}, "S0701_C02_025E": {"label": "Estimate!!Moved; within same county!!Population 1 year and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C02_025EA,S0701_C02_025M,S0701_C02_025MA"}, "S0802_C03_078E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!8:00 a.m. to 8:29 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_078EA,S0802_C03_078M,S0802_C03_078MA"}, "S0501_C03_047E": {"label": "Estimate!!Foreign-born!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English!!Speak English less than \"very well\"", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_047EA,S0501_C03_047M,S0501_C03_047MA"}, "S1702_C01_024E": {"label": "Estimate!!Total!!All families!!Families!!NUMBER OF RELATED CHILDREN OF THE HOUSEHOLDER UNDER 18 YEARS!!No child", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C01_024EA,S1702_C01_024M,S1702_C01_024MA"}, "S0804_C04_032E": {"label": "Estimate!!Public transportation!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$25,000 to $34,999", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_032EA,S0804_C04_032M,S0804_C04_032MA"}, "S1901_C04_015E": {"label": "Estimate!!Nonfamily households!!PERCENT ALLOCATED!!Family income in the past 12 months", "concept": "Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1901", "limit": 0, "attributes": "S1901_C04_015EA,S1901_C04_015M,S1901_C04_015MA"}, "S1702_C01_045E": {"label": "Estimate!!Total!!All families!!Families!!ALL FAMILIES WITH INCOME BELOW THE FOLLOWING POVERTY RATIOS!!150 percent of poverty level", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C01_045EA,S1702_C01_045M,S1702_C01_045MA"}, "S0804_C04_031E": {"label": "Estimate!!Public transportation!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$15,000 to $24,999", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_031EA,S0804_C04_031M,S0804_C04_031MA"}, "S1901_C04_016E": {"label": "Estimate!!Nonfamily households!!PERCENT ALLOCATED!!Nonfamily income in the past 12 months", "concept": "Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1901", "limit": 0, "attributes": "S1901_C04_016EA,S1901_C04_016M,S1901_C04_016MA"}, "S1702_C01_046E": {"label": "Estimate!!Total!!All families!!Families!!ALL FAMILIES WITH INCOME BELOW THE FOLLOWING POVERTY RATIOS!!185 percent of poverty level", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C01_046EA,S1702_C01_046M,S1702_C01_046MA"}, "S0804_C04_034E": {"label": "Estimate!!Public transportation!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$50,000 to $64,999", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_034EA,S0804_C04_034M,S0804_C04_034MA"}, "S0503_C04_118E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_118EA,S0503_C04_118M,S0503_C04_118MA"}, "S1702_C01_043E": {"label": "Estimate!!Total!!All families!!Families!!ALL FAMILIES WITH INCOME BELOW THE FOLLOWING POVERTY RATIOS!!50 percent of poverty level", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C01_043EA,S1702_C01_043M,S1702_C01_043MA"}, "S0804_C04_033E": {"label": "Estimate!!Public transportation!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$35,000 to $49,999", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_033EA,S0804_C04_033M,S0804_C04_033MA"}, "S0503_C04_119E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_119EA,S0503_C04_119M,S0503_C04_119MA"}, "S1702_C01_044E": {"label": "Estimate!!Total!!All families!!Families!!ALL FAMILIES WITH INCOME BELOW THE FOLLOWING POVERTY RATIOS!!125 percent of poverty level", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C01_044EA,S1702_C01_044M,S1702_C01_044MA"}, "S1702_C01_041E": {"label": "Estimate!!Total!!All families!!Families!!TENURE!!Owner occupied", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C01_041EA,S1702_C01_041M,S1702_C01_041MA"}, "S1702_C01_042E": {"label": "Estimate!!Total!!All families!!Families!!TENURE!!Renter Occupied", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C01_042EA,S1702_C01_042M,S1702_C01_042MA"}, "S0804_C04_030E": {"label": "Estimate!!Public transportation!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$10,000 to $14,999", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_030EA,S0804_C04_030M,S0804_C04_030MA"}, "S1702_C01_040E": {"label": "Estimate!!Total!!All families!!Families!!INCOME DEFICIT!!Mean income deficit for families (dollars)", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C01_040EA,S1702_C01_040M,S1702_C01_040MA"}, "S0502PR_C04_138E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Occupied housing units!!VEHICLES AVAILABLE!!1 or more", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_138EA,S0502PR_C04_138M,S0502PR_C04_138MA"}, "S0503_C04_112E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!Below 100 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_112EA,S0503_C04_112M,S0503_C04_112MA"}, "S0502PR_C04_137E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Occupied housing units!!VEHICLES AVAILABLE!!None", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_137EA,S0502PR_C04_137M,S0502PR_C04_137MA"}, "S0804_C04_039E": {"label": "Estimate!!Public transportation!!POVERTY STATUS IN THE PAST 12 MONTHS!!Workers 16 years and over for whom poverty status is determined!!Below 100 percent of the poverty level", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_039EA,S0804_C04_039M,S0804_C04_039MA"}, "S0503_C04_113E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!100 to 199 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_113EA,S0503_C04_113M,S0503_C04_113MA"}, "S0503_C04_110E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!Average number of workers per household", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_110EA,S0503_C04_110M,S0503_C04_110MA"}, "S0503_C04_111E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C04_111EA,S0503_C04_111M,S0503_C04_111MA"}, "S0502PR_C04_139E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Occupied housing units!!SELECTED CHARACTERISTICS!!No telephone service available", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_139EA,S0502PR_C04_139M,S0502PR_C04_139MA"}, "S0804_C04_036E": {"label": "Estimate!!Public transportation!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$75,000 or more", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_036EA,S0804_C04_036M,S0804_C04_036MA"}, "S0503_C04_116E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_116EA,S0503_C04_116M,S0503_C04_116MA"}, "S0506_C06_056E": {"label": "Estimate!!Foreign-born; Born in South America!!EMPLOYMENT STATUS!!Population 16 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C06_056EA,S0506_C06_056M,S0506_C06_056MA"}, "S0505_C03_110E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!Average number of workers per household", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_110EA,S0505_C03_110M,S0505_C03_110MA"}, "S0804_C04_035E": {"label": "Estimate!!Public transportation!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$65,000 to $74,999", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_035EA,S0804_C04_035M,S0804_C04_035MA"}, "S0503_C04_117E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_117EA,S0503_C04_117M,S0503_C04_117MA"}, "S0506_C06_057E": {"label": "Estimate!!Foreign-born; Born in South America!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_057EA,S0506_C06_057M,S0506_C06_057MA"}, "S0505_C03_112E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!Below 100 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_112EA,S0505_C03_112M,S0505_C03_112MA"}, "S0804_C04_038E": {"label": "Estimate!!Public transportation!!POVERTY STATUS IN THE PAST 12 MONTHS!!Workers 16 years and over for whom poverty status is determined", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "int", "group": "S0804", "limit": 0, "attributes": "S0804_C04_038EA,S0804_C04_038M,S0804_C04_038MA"}, "S0503_C04_114E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!At or above 200 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_114EA,S0503_C04_114M,S0503_C04_114MA"}, "S0506_C06_058E": {"label": "Estimate!!Foreign-born; Born in South America!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_058EA,S0506_C06_058M,S0506_C06_058MA"}, "S0505_C03_111E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C03_111EA,S0505_C03_111M,S0505_C03_111MA"}, "S0804_C04_037E": {"label": "Estimate!!Public transportation!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!Median earnings (dollars)", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "int", "group": "S0804", "limit": 0, "attributes": "S0804_C04_037EA,S0804_C04_037M,S0804_C04_037MA"}, "S0503_C04_115E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_115EA,S0503_C04_115M,S0503_C04_115MA"}, "S0506_C06_059E": {"label": "Estimate!!Foreign-born; Born in South America!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Employed", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_059EA,S0506_C06_059M,S0506_C06_059MA"}, "S0701_C02_032E": {"label": "Estimate!!Moved; within same county!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C02_032EA,S0701_C02_032M,S0701_C02_032MA"}, "S2503_C04_031E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$20,000 to $34,999!!20 to 29 percent", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C04_031EA,S2503_C04_031M,S2503_C04_031MA"}, "S0505_C03_102E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_102EA,S0505_C03_102M,S0505_C03_102MA"}, "S0802_C03_081E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!Less than 10 minutes", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_081EA,S0802_C03_081M,S0802_C03_081MA"}, "S2802_C05_002E": {"label": "Estimate!!Percent without an Internet Subscription!!With a computer!!Total population in households!!AGE!!Under 18 years", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "float", "group": "S2802", "limit": 0, "attributes": "S2802_C05_002EA,S2802_C05_002M,S2802_C05_002MA"}, "S0501_C03_036E": {"label": "Estimate!!Foreign-born!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!High school (grades 9-12)", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_036EA,S0501_C03_036M,S0501_C03_036MA"}, "S0502PR_C04_142E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_142EA,S0502PR_C04_142M,S0502PR_C04_142MA"}, "S0506_C06_052E": {"label": "Estimate!!Foreign-born; Born in South America!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C06_052EA,S0506_C06_052M,S0506_C06_052MA"}, "S0505_C03_101E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income!!Mean Social Security income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C03_101EA,S0505_C03_101M,S0505_C03_101MA"}, "S2503_C04_032E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$20,000 to $34,999!!30 percent or more", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C04_032EA,S2503_C04_032M,S2503_C04_032MA"}, "S0701_C02_031E": {"label": "Estimate!!Moved; within same county!!MARITAL STATUS!!Population 15 years and over!!Divorced or separated", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C02_031EA,S0701_C02_031M,S0701_C02_031MA"}, "S0501_C03_037E": {"label": "Estimate!!Foreign-born!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!College or graduate school", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_037EA,S0501_C03_037M,S0501_C03_037MA"}, "S0506_C06_053E": {"label": "Estimate!!Foreign-born; Born in South America!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!English only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_053EA,S0506_C06_053M,S0506_C06_053MA"}, "S0502PR_C04_141E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Owner-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_141EA,S0502PR_C04_141M,S0502PR_C04_141MA"}, "S2802_C05_003E": {"label": "Estimate!!Percent without an Internet Subscription!!With a computer!!Total population in households!!AGE!!18 to 64 years", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "float", "group": "S2802", "limit": 0, "attributes": "S2802_C05_003EA,S2802_C05_003M,S2802_C05_003MA"}, "S0802_C03_080E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!9:00 a.m. to 11:59 p.m.", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_080EA,S0802_C03_080M,S0802_C03_080MA"}, "S0701_C02_034E": {"label": "Estimate!!Moved; within same county!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than high school graduate", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C02_034EA,S0701_C02_034M,S0701_C02_034MA"}, "S0505_C03_104E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_104EA,S0505_C03_104M,S0505_C03_104MA"}, "S0502PR_C04_144E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Renter-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_144EA,S0502PR_C04_144M,S0502PR_C04_144MA"}, "S0501_C03_038E": {"label": "Estimate!!Foreign-born!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C03_038EA,S0501_C03_038M,S0501_C03_038MA"}, "S2703_C03_030E": {"label": "Estimate!!Percent Private Coverage!!Civilian noninstitutionalized population!!COVERAGE ALONE!!Private health insurance alone!!Subsidized market place coverage alone", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "float", "group": "S2703", "limit": 0, "attributes": "S2703_C03_030EA,S2703_C03_030M,S2703_C03_030MA"}, "S0506_C06_054E": {"label": "Estimate!!Foreign-born; Born in South America!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_054EA,S0506_C06_054M,S0506_C06_054MA"}, "S2503_C04_030E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$20,000 to $34,999!!Less than 20 percent", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C04_030EA,S2503_C04_030M,S2503_C04_030MA"}, "S0505_C03_103E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income!!Mean Supplemental Security Income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C03_103EA,S0505_C03_103M,S0505_C03_103MA"}, "S0701_C02_033E": {"label": "Estimate!!Moved; within same county!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C02_033EA,S0701_C02_033M,S0701_C02_033MA"}, "S0501_C03_039E": {"label": "Estimate!!Foreign-born!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than high school graduate", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_039EA,S0501_C03_039M,S0501_C03_039MA"}, "S0502PR_C04_143E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_143EA,S0502PR_C04_143M,S0502PR_C04_143MA"}, "S2802_C05_001E": {"label": "Estimate!!Percent without an Internet Subscription!!With a computer!!Total population in households", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "float", "group": "S2802", "limit": 0, "attributes": "S2802_C05_001EA,S2802_C05_001M,S2802_C05_001MA"}, "S0506_C06_055E": {"label": "Estimate!!Foreign-born; Born in South America!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English!!Speak English less than \"very well\"", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_055EA,S0506_C06_055M,S0506_C06_055MA"}, "S0502PR_C04_146E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_146EA,S0502PR_C04_146M,S0502PR_C04_146MA"}, "S0505_C03_106E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_106EA,S0505_C03_106M,S0505_C03_106MA"}, "S2503_C04_035E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$35,000 to $49,999!!20 to 29 percent", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C04_035EA,S2503_C04_035M,S2503_C04_035MA"}, "S0802_C03_085E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!25 to 29 minutes", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_085EA,S0802_C03_085M,S0802_C03_085MA"}, "S0505_C03_105E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income!!Mean cash public assistance income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C03_105EA,S0505_C03_105M,S0505_C03_105MA"}, "S0502PR_C04_145E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_145EA,S0502PR_C04_145M,S0502PR_C04_145MA"}, "S2503_C04_036E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$35,000 to $49,999!!30 percent or more", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C04_036EA,S2503_C04_036M,S2503_C04_036MA"}, "S0802_C03_084E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!20 to 24 minutes", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_084EA,S0802_C03_084M,S0802_C03_084MA"}, "S0701_C02_030E": {"label": "Estimate!!Moved; within same county!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C02_030EA,S0701_C02_030M,S0701_C02_030MA"}, "S2503_C04_033E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$35,000 to $49,999", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C04_033EA,S2503_C04_033M,S2503_C04_033MA"}, "S0506_C06_050E": {"label": "Estimate!!Foreign-born; Born in South America!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_050EA,S0506_C06_050M,S0506_C06_050MA"}, "S0505_C03_108E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Food Stamp/SNAP benefits", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_108EA,S0505_C03_108M,S0505_C03_108MA"}, "S0802_C03_083E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!15 to 19 minutes", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_083EA,S0802_C03_083M,S0802_C03_083MA"}, "S2503_C04_034E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$35,000 to $49,999!!Less than 20 percent", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C04_034EA,S2503_C04_034M,S2503_C04_034MA"}, "S0505_C03_107E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income!!Mean retirement income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C03_107EA,S0505_C03_107M,S0505_C03_107MA"}, "S0506_C06_051E": {"label": "Estimate!!Foreign-born; Born in South America!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Graduate or professional degree", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_051EA,S0506_C06_051M,S0506_C06_051MA"}, "S0802_C03_082E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!10 to 14 minutes", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_082EA,S0802_C03_082M,S0802_C03_082MA"}, "S0802_C03_089E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!60 or more minutes", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_089EA,S0802_C03_089M,S0802_C03_089MA"}, "S2503_C04_039E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$50,000 to $74,999!!20 to 29 percent", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C04_039EA,S2503_C04_039M,S2503_C04_039MA"}, "S0505_C03_109E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!Median Household income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C03_109EA,S0505_C03_109M,S0505_C03_109MA"}, "S0802_C03_088E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!45 to 59 minutes", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_088EA,S0802_C03_088M,S0802_C03_088MA"}, "S0701_C02_039E": {"label": "Estimate!!Moved; within same county!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C02_039EA,S0701_C02_039M,S0701_C02_039MA"}, "S1702_C01_039E": {"label": "Estimate!!Total!!All families!!Families!!NUMBER OF WORKERS IN FAMILY!!3 or more workers", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C01_039EA,S1702_C01_039M,S1702_C01_039MA"}, "S0802_C03_087E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!35 to 44 minutes", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_087EA,S0802_C03_087M,S0802_C03_087MA"}, "S2503_C04_037E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$50,000 to $74,999", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C04_037EA,S2503_C04_037M,S2503_C04_037MA"}, "S2802_C05_008E": {"label": "Estimate!!Percent without an Internet Subscription!!With a computer!!Total population in households!!RACE AND HISPANIC OR LATINO ORIGIN!!Asian alone", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "float", "group": "S2802", "limit": 0, "attributes": "S2802_C05_008EA,S2802_C05_008M,S2802_C05_008MA"}, "S0501_C03_030E": {"label": "Estimate!!Foreign-born!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_030EA,S0501_C03_030M,S0501_C03_030MA"}, "S2802_C05_009E": {"label": "Estimate!!Percent without an Internet Subscription!!With a computer!!Total population in households!!RACE AND HISPANIC OR LATINO ORIGIN!!Native Hawaiian and Other Pacific Islander alone", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "float", "group": "S2802", "limit": 0, "attributes": "S2802_C05_009EA,S2802_C05_009M,S2802_C05_009MA"}, "S0802_C03_086E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!30 to 34 minutes", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_086EA,S0802_C03_086M,S0802_C03_086MA"}, "S2503_C04_038E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$50,000 to $74,999!!Less than 20 percent", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C04_038EA,S2503_C04_038M,S2503_C04_038MA"}, "S0501_C03_031E": {"label": "Estimate!!Foreign-born!!MARITAL STATUS!!Population 15 years and over!!Divorced or separated", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_031EA,S0501_C03_031M,S0501_C03_031MA"}, "S0701_C02_036E": {"label": "Estimate!!Moved; within same county!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college or associate's degree", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C02_036EA,S0701_C02_036M,S0701_C02_036MA"}, "S2802_C05_006E": {"label": "Estimate!!Percent without an Internet Subscription!!With a computer!!Total population in households!!RACE AND HISPANIC OR LATINO ORIGIN!!Black or African American alone", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "float", "group": "S2802", "limit": 0, "attributes": "S2802_C05_006EA,S2802_C05_006M,S2802_C05_006MA"}, "S0501_C03_032E": {"label": "Estimate!!Foreign-born!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_032EA,S0501_C03_032M,S0501_C03_032MA"}, "S1702_C01_037E": {"label": "Estimate!!Total!!All families!!Families!!NUMBER OF WORKERS IN FAMILY!!1 worker", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C01_037EA,S1702_C01_037M,S1702_C01_037MA"}, "S1702_C01_038E": {"label": "Estimate!!Total!!All families!!Families!!NUMBER OF WORKERS IN FAMILY!!2 workers", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C01_038EA,S1702_C01_038M,S1702_C01_038MA"}, "S0701_C02_035E": {"label": "Estimate!!Moved; within same county!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate (includes equivalency)", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C02_035EA,S0701_C02_035M,S0701_C02_035MA"}, "S0501_C03_033E": {"label": "Estimate!!Foreign-born!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C03_033EA,S0501_C03_033M,S0501_C03_033MA"}, "S2802_C05_007E": {"label": "Estimate!!Percent without an Internet Subscription!!With a computer!!Total population in households!!RACE AND HISPANIC OR LATINO ORIGIN!!American Indian and Alaska Native alone", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "float", "group": "S2802", "limit": 0, "attributes": "S2802_C05_007EA,S2802_C05_007M,S2802_C05_007MA"}, "S0701_C02_038E": {"label": "Estimate!!Moved; within same county!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Graduate or professional degree", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C02_038EA,S0701_C02_038M,S0701_C02_038MA"}, "S2802_C05_004E": {"label": "Estimate!!Percent without an Internet Subscription!!With a computer!!Total population in households!!AGE!!65 years and over", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "float", "group": "S2802", "limit": 0, "attributes": "S2802_C05_004EA,S2802_C05_004M,S2802_C05_004MA"}, "S0502PR_C04_140E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Occupied housing units!!SELECTED CHARACTERISTICS!!Limited English Speaking Households", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_140EA,S0502PR_C04_140M,S0502PR_C04_140MA"}, "S0501_C03_034E": {"label": "Estimate!!Foreign-born!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Nursery school, preschool", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_034EA,S0501_C03_034M,S0501_C03_034MA"}, "S1702_C01_035E": {"label": "Estimate!!Total!!All families!!Families!!NUMBER OF PEOPLE IN FAMILY!!7 or more people", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C01_035EA,S1702_C01_035M,S1702_C01_035MA"}, "S0701_C02_037E": {"label": "Estimate!!Moved; within same county!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C02_037EA,S0701_C02_037M,S0701_C02_037MA"}, "S0501_C03_035E": {"label": "Estimate!!Foreign-born!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Elementary school (grades K-8)", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_035EA,S0501_C03_035M,S0501_C03_035MA"}, "S2802_C05_005E": {"label": "Estimate!!Percent without an Internet Subscription!!With a computer!!Total population in households!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "float", "group": "S2802", "limit": 0, "attributes": "S2802_C05_005EA,S2802_C05_005M,S2802_C05_005MA"}, "S1702_C01_036E": {"label": "Estimate!!Total!!All families!!Families!!NUMBER OF WORKERS IN FAMILY!!No workers", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C01_036EA,S1702_C01_036M,S1702_C01_036MA"}, "S2601A_C02_106E": {"label": "Estimate!!Total group quarters population!!POVERTY RATES FOR PEOPLE FOR WHOM POVERTY STATUS IS DETERMINED!!All people", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_106EA,S2601A_C02_106M,S2601A_C02_106MA"}, "S2703_C03_008E": {"label": "Estimate!!Percent Private Coverage!!Civilian noninstitutionalized population!!COVERAGE ALONE OR IN COMBINATION!!Direct-purchase health insurance alone or in combination!!19 to 64 years", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "float", "group": "S2703", "limit": 0, "attributes": "S2703_C03_008EA,S2703_C03_008M,S2703_C03_008MA"}, "S2404_C02_013E": {"label": "Estimate!!Male!!Full-time, year-round civilian employed population 16 years and over!!Finance and insurance, and real estate and rental and leasing:", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C02_013EA,S2404_C02_013M,S2404_C02_013MA"}, "S2603_C05_006E": {"label": "Estimate!!Juvenile Facilities!!Total population!!SEX AND AGE!!18 to 24 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C05_006EA,S2603_C05_006M,S2603_C05_006MA"}, "S0503_C04_108E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Food Stamp/SNAP benefits", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_108EA,S0503_C04_108M,S0503_C04_108MA"}, "S2801_C02_011E": {"label": "Estimate!!Percent!!Total households!!TYPES OF COMPUTER!!No computer", "concept": "Types of Computers and Internet Subscriptions", "predicateType": "float", "group": "S2801", "limit": 0, "attributes": "S2801_C02_011EA,S2801_C02_011M,S2801_C02_011MA"}, "S2414_C04_027E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Full-time, year-round civilian employed population 16 years and over with earnings!!Public administration", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2414", "limit": 0, "attributes": "S2414_C04_027EA,S2414_C04_027M,S2414_C04_027MA"}, "S2601A_C02_105E": {"label": "Estimate!!Total group quarters population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!With Food Stamp/SNAP benefits", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_105EA,S2601A_C02_105M,S2601A_C02_105MA"}, "S2703_C03_009E": {"label": "Estimate!!Percent Private Coverage!!Civilian noninstitutionalized population!!COVERAGE ALONE OR IN COMBINATION!!Direct-purchase health insurance alone or in combination!!65 years and over", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "float", "group": "S2703", "limit": 0, "attributes": "S2703_C03_009EA,S2703_C03_009M,S2703_C03_009MA"}, "S2603_C05_005E": {"label": "Estimate!!Juvenile Facilities!!Total population!!SEX AND AGE!!15 to 17 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C05_005EA,S2603_C05_005M,S2603_C05_005MA"}, "S2404_C02_014E": {"label": "Estimate!!Male!!Full-time, year-round civilian employed population 16 years and over!!Finance and insurance, and real estate and rental and leasing:!!Finance and insurance", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C02_014EA,S2404_C02_014M,S2404_C02_014MA"}, "S2601A_C02_104E": {"label": "Estimate!!Total group quarters population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!Median earnings (dollars):!!Female", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_104EA,S2601A_C02_104M,S2601A_C02_104MA"}, "S0503_C04_109E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!Median Household income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C04_109EA,S0503_C04_109M,S0503_C04_109MA"}, "S2801_C02_010E": {"label": "Estimate!!Percent!!Total households!!TYPES OF COMPUTER!!Has one or more types of computing devices:!!Other computer!!Other computer with no other type of computing device", "concept": "Types of Computers and Internet Subscriptions", "predicateType": "float", "group": "S2801", "limit": 0, "attributes": "S2801_C02_010EA,S2801_C02_010M,S2801_C02_010MA"}, "S2414_C04_025E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Full-time, year-round civilian employed population 16 years and over with earnings!!Arts, entertainment, and recreation, and accommodation and food services:!!Accommodation and food services", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2414", "limit": 0, "attributes": "S2414_C04_025EA,S2414_C04_025M,S2414_C04_025MA"}, "S2603_C05_008E": {"label": "Estimate!!Juvenile Facilities!!Total population!!SEX AND AGE!!35 to 44 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C05_008EA,S2603_C05_008M,S2603_C05_008MA"}, "S2404_C02_015E": {"label": "Estimate!!Male!!Full-time, year-round civilian employed population 16 years and over!!Finance and insurance, and real estate and rental and leasing:!!Real estate and rental and leasing", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C02_015EA,S2404_C02_015M,S2404_C02_015MA"}, "S2601A_C02_103E": {"label": "Estimate!!Total group quarters population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!Median earnings (dollars):!!Male", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_103EA,S2601A_C02_103M,S2601A_C02_103MA"}, "S0503_C04_106E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_106EA,S0503_C04_106M,S0503_C04_106MA"}, "S2414_C04_026E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Full-time, year-round civilian employed population 16 years and over with earnings!!Other services, except public administration", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2414", "limit": 0, "attributes": "S2414_C04_026EA,S2414_C04_026M,S2414_C04_026MA"}, "S2404_C02_016E": {"label": "Estimate!!Male!!Full-time, year-round civilian employed population 16 years and over!!Professional, scientific, and management, and administrative and waste management services:", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C02_016EA,S2404_C02_016M,S2404_C02_016MA"}, "S2601A_C02_102E": {"label": "Estimate!!Total group quarters population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!Mean earnings (dollars):!!Female", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_102EA,S2601A_C02_102M,S2601A_C02_102MA"}, "S0503_C02_099E": {"label": "Estimate!!Foreign-born; Born in Europe!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings!!Mean earnings (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C02_099EA,S0503_C02_099M,S0503_C02_099MA"}, "S2603_C05_007E": {"label": "Estimate!!Juvenile Facilities!!Total population!!SEX AND AGE!!25 to 34 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C05_007EA,S2603_C05_007M,S2603_C05_007MA"}, "S0503_C04_107E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income!!Mean retirement income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C04_107EA,S0503_C04_107M,S0503_C04_107MA"}, "S2414_C04_023E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Full-time, year-round civilian employed population 16 years and over with earnings!!Arts, entertainment, and recreation, and accommodation and food services:", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2414", "limit": 0, "attributes": "S2414_C04_023EA,S2414_C04_023M,S2414_C04_023MA"}, "S1502_C05_010E": {"label": "Estimate!!Female!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!25 to 39 years!!Business", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C05_010EA,S1502_C05_010M,S1502_C05_010MA"}, "S0501_C03_060E": {"label": "Estimate!!Foreign-born!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Unpaid family workers", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_060EA,S0501_C03_060M,S0501_C03_060MA"}, "S0503_C02_098E": {"label": "Estimate!!Foreign-born; Born in Europe!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_098EA,S0503_C02_098M,S0503_C02_098MA"}, "S2603_C05_002E": {"label": "Estimate!!Juvenile Facilities!!Total population!!SEX AND AGE!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C05_002EA,S2603_C05_002M,S2603_C05_002MA"}, "S2601A_C02_101E": {"label": "Estimate!!Total group quarters population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!Mean earnings (dollars):!!Male", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_101EA,S2601A_C02_101M,S2601A_C02_101MA"}, "S2801_C02_015E": {"label": "Estimate!!Percent!!Total households!!TYPE OF INTERNET SUBSCRIPTIONS!!With an Internet subscription:!!Broadband of any type!!Cellular data plan", "concept": "Types of Computers and Internet Subscriptions", "predicateType": "float", "group": "S2801", "limit": 0, "attributes": "S2801_C02_015EA,S2801_C02_015M,S2801_C02_015MA"}, "S2414_C04_024E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Full-time, year-round civilian employed population 16 years and over with earnings!!Arts, entertainment, and recreation, and accommodation and food services:!!Arts, entertainment, and recreation", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2414", "limit": 0, "attributes": "S2414_C04_024EA,S2414_C04_024M,S2414_C04_024MA"}, "S2603_C05_001E": {"label": "Estimate!!Juvenile Facilities!!Total population", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C05_001EA,S2603_C05_001M,S2603_C05_001MA"}, "S0501_C03_061E": {"label": "Estimate!!Foreign-born!!Civilian employed population 16 years and over!!OCCUPATION!!Management, business, science, and arts occupations", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_061EA,S0501_C03_061M,S0501_C03_061MA"}, "S2404_C02_010E": {"label": "Estimate!!Male!!Full-time, year-round civilian employed population 16 years and over!!Transportation and warehousing, and utilities:!!Transportation and warehousing", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C02_010EA,S2404_C02_010M,S2404_C02_010MA"}, "S2601A_C02_100E": {"label": "Estimate!!Total group quarters population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!With earnings:!!Female", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_100EA,S2601A_C02_100M,S2601A_C02_100MA"}, "S0503_C02_097E": {"label": "Estimate!!Foreign-born; Born in Europe!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C02_097EA,S0503_C02_097M,S0503_C02_097MA"}, "S2801_C02_014E": {"label": "Estimate!!Percent!!Total households!!TYPE OF INTERNET SUBSCRIPTIONS!!With an Internet subscription:!!Broadband of any type", "concept": "Types of Computers and Internet Subscriptions", "predicateType": "float", "group": "S2801", "limit": 0, "attributes": "S2801_C02_014EA,S2801_C02_014M,S2801_C02_014MA"}, "S2414_C04_021E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Full-time, year-round civilian employed population 16 years and over with earnings!!Educational services, and health care and social assistance:!!Educational services", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2414", "limit": 0, "attributes": "S2414_C04_021EA,S2414_C04_021M,S2414_C04_021MA"}, "S1502_C05_012E": {"label": "Estimate!!Female!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!25 to 39 years!!Arts, Humanities, and Others", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C05_012EA,S1502_C05_012M,S1502_C05_012MA"}, "S0501_C03_062E": {"label": "Estimate!!Foreign-born!!Civilian employed population 16 years and over!!OCCUPATION!!Service occupations", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_062EA,S0501_C03_062M,S0501_C03_062MA"}, "S0503_C02_096E": {"label": "Estimate!!Foreign-born; Born in Europe!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!Median earnings (dollars) for full-time, year-round workers!!Female", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C02_096EA,S0503_C02_096M,S0503_C02_096MA"}, "S2404_C02_011E": {"label": "Estimate!!Male!!Full-time, year-round civilian employed population 16 years and over!!Transportation and warehousing, and utilities:!!Utilities", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C02_011EA,S2404_C02_011M,S2404_C02_011MA"}, "S2603_C05_004E": {"label": "Estimate!!Juvenile Facilities!!Total population!!SEX AND AGE!!Under 15 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C05_004EA,S2603_C05_004M,S2603_C05_004MA"}, "S2801_C02_013E": {"label": "Estimate!!Percent!!Total households!!TYPE OF INTERNET SUBSCRIPTIONS!!With an Internet subscription:!!Dial-up with no other type of Internet subscription", "concept": "Types of Computers and Internet Subscriptions", "predicateType": "float", "group": "S2801", "limit": 0, "attributes": "S2801_C02_013EA,S2801_C02_013M,S2801_C02_013MA"}, "S0505_C03_140E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Owner-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C03_140EA,S0505_C03_140M,S0505_C03_140MA"}, "S2414_C04_022E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Full-time, year-round civilian employed population 16 years and over with earnings!!Educational services, and health care and social assistance:!!Health care and social assistance", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2414", "limit": 0, "attributes": "S2414_C04_022EA,S2414_C04_022M,S2414_C04_022MA"}, "S1502_C05_011E": {"label": "Estimate!!Female!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!25 to 39 years!!Education", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C05_011EA,S1502_C05_011M,S1502_C05_011MA"}, "S2404_C02_012E": {"label": "Estimate!!Male!!Full-time, year-round civilian employed population 16 years and over!!Information", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C02_012EA,S2404_C02_012M,S2404_C02_012MA"}, "S0503_C02_095E": {"label": "Estimate!!Foreign-born; Born in Europe!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!Median earnings (dollars) for full-time, year-round workers!!Male", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C02_095EA,S0503_C02_095M,S0503_C02_095MA"}, "S2603_C05_003E": {"label": "Estimate!!Juvenile Facilities!!Total population!!SEX AND AGE!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C05_003EA,S2603_C05_003M,S2603_C05_003MA"}, "S2801_C02_012E": {"label": "Estimate!!Percent!!Total households!!TYPE OF INTERNET SUBSCRIPTIONS!!With an Internet subscription:", "concept": "Types of Computers and Internet Subscriptions", "predicateType": "float", "group": "S2801", "limit": 0, "attributes": "S2801_C02_012EA,S2801_C02_012M,S2801_C02_012MA"}, "S0501_C03_063E": {"label": "Estimate!!Foreign-born!!Civilian employed population 16 years and over!!OCCUPATION!!Sales and office occupations", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_063EA,S0501_C03_063M,S0501_C03_063MA"}, "S0503_C04_100E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_100EA,S0503_C04_100M,S0503_C04_100MA"}, "S0502PR_C04_126E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Occupied housing units!!HOUSING TENURE!!Owner-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_126EA,S0502PR_C04_126M,S0502PR_C04_126MA"}, "S0804_C04_004E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!AGE!!25 to 44 years", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_004EA,S0804_C04_004M,S0804_C04_004MA"}, "S0506_C06_048E": {"label": "Estimate!!Foreign-born; Born in South America!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate (includes equivalency)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_048EA,S0506_C06_048M,S0506_C06_048MA"}, "S0503_C02_094E": {"label": "Estimate!!Foreign-born; Born in Europe!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$75,000 or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_094EA,S0503_C02_094M,S0503_C02_094MA"}, "S0505_C03_142E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_142EA,S0505_C03_142M,S0505_C03_142MA"}, "S0502PR_C04_125E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_125EA,S0502PR_C04_125M,S0502PR_C04_125MA"}, "S2414_C04_020E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Full-time, year-round civilian employed population 16 years and over with earnings!!Educational services, and health care and social assistance:", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2414", "limit": 0, "attributes": "S2414_C04_020EA,S2414_C04_020M,S2414_C04_020MA"}, "S0804_C04_003E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!AGE!!20 to 24 years", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_003EA,S0804_C04_003M,S0804_C04_003MA"}, "S0506_C06_049E": {"label": "Estimate!!Foreign-born; Born in South America!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college or associate's degree", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_049EA,S0506_C06_049M,S0506_C06_049MA"}, "S1702_C01_050E": {"label": "Estimate!!Total!!All families!!Families!!ALL FAMILIES WITH INCOME BELOW THE FOLLOWING POVERTY RATIOS!!500 percent of poverty level", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C01_050EA,S1702_C01_050M,S1702_C01_050MA"}, "S0505_C03_141E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_141EA,S0505_C03_141M,S0505_C03_141MA"}, "S0503_C04_101E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income!!Mean Social Security income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C04_101EA,S0503_C04_101M,S0503_C04_101MA"}, "S0503_C02_093E": {"label": "Estimate!!Foreign-born; Born in Europe!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$50,000 to $74,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_093EA,S0503_C02_093M,S0503_C02_093MA"}, "S0502PR_C04_128E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Occupied housing units!!HOUSING TENURE!!Average household size of owner-occupied unit", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_128EA,S0502PR_C04_128M,S0502PR_C04_128MA"}, "S0505_C03_144E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_144EA,S0505_C03_144M,S0505_C03_144MA"}, "S0804_C04_006E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!AGE!!55 to 59 years", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_006EA,S0804_C04_006M,S0804_C04_006MA"}, "S0701_C02_050E": {"label": "Estimate!!Moved; within same county!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population 1 year and over for whom poverty status is determined!!Below 100 percent of the poverty level", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C02_050EA,S0701_C02_050M,S0701_C02_050MA"}, "S0503_C02_092E": {"label": "Estimate!!Foreign-born; Born in Europe!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$35,000 to $49,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_092EA,S0503_C02_092M,S0503_C02_092MA"}, "S0502PR_C04_127E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Occupied housing units!!HOUSING TENURE!!Renter-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_127EA,S0502PR_C04_127M,S0502PR_C04_127MA"}, "S0804_C04_005E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!AGE!!45 to 54 years", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_005EA,S0804_C04_005M,S0804_C04_005MA"}, "S0503_C02_091E": {"label": "Estimate!!Foreign-born; Born in Europe!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$25,000 to $34,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_091EA,S0503_C02_091M,S0503_C02_091MA"}, "S0505_C03_143E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Renter-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C03_143EA,S0505_C03_143M,S0505_C03_143MA"}, "S0506_C06_044E": {"label": "Estimate!!Foreign-born; Born in South America!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!High school (grades 9-12)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_044EA,S0506_C06_044M,S0506_C06_044MA"}, "S0503_C02_090E": {"label": "Estimate!!Foreign-born; Born in Europe!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$15,000 to $24,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_090EA,S0503_C02_090M,S0503_C02_090MA"}, "S0503_C04_104E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_104EA,S0503_C04_104M,S0503_C04_104MA"}, "S0502PR_C04_129E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Occupied housing units!!HOUSING TENURE!!Average household size of renter-occupied unit", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_129EA,S0502PR_C04_129M,S0502PR_C04_129MA"}, "S0505_C03_145E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_145EA,S0505_C03_145M,S0505_C03_145MA"}, "S0503_C04_105E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income!!Mean cash public assistance income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C04_105EA,S0503_C04_105M,S0503_C04_105MA"}, "S0506_C06_045E": {"label": "Estimate!!Foreign-born; Born in South America!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!College or graduate school", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_045EA,S0506_C06_045M,S0506_C06_045MA"}, "S0804_C04_002E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!AGE!!16 to 19 years", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_002EA,S0804_C04_002M,S0804_C04_002MA"}, "S0506_C06_046E": {"label": "Estimate!!Foreign-born; Born in South America!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C06_046EA,S0506_C06_046M,S0506_C06_046MA"}, "S0503_C04_102E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_102EA,S0503_C04_102M,S0503_C04_102MA"}, "S0804_C04_001E": {"label": "Estimate!!Public transportation!!Workers 16 years and over", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "int", "group": "S0804", "limit": 0, "attributes": "S0804_C04_001EA,S0804_C04_001M,S0804_C04_001MA"}, "S0503_C04_103E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income!!Mean Supplemental Security Income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C04_103EA,S0503_C04_103M,S0503_C04_103MA"}, "S0506_C06_047E": {"label": "Estimate!!Foreign-born; Born in South America!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than high school graduate", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_047EA,S0506_C06_047M,S0506_C06_047MA"}, "S0505_C03_138E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Occupied housing units!!SELECTED CHARACTERISTICS!!No telephone service available", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_138EA,S0505_C03_138M,S0505_C03_138MA"}, "S0701_C02_044E": {"label": "Estimate!!Moved; within same county!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$35,000 to $49,999", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C02_044EA,S0701_C02_044M,S0701_C02_044MA"}, "S0506_C06_040E": {"label": "Estimate!!Foreign-born; Born in South America!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_040EA,S0506_C06_040M,S0506_C06_040MA"}, "S0802_C03_093E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over in households!!HOUSING TENURE!!Renter-occupied housing units", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_093EA,S0802_C03_093M,S0802_C03_093MA"}, "S0502PR_C04_130E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Occupied housing units!!ROOMS!!1 room", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_130EA,S0502PR_C04_130M,S0502PR_C04_130MA"}, "S2802_C05_014E": {"label": "Estimate!!Percent without an Internet Subscription!!With a computer!!Total population in households!!EDUCATIONAL ATTAINMENT!!Household population 25 years and over", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "float", "group": "S2802", "limit": 0, "attributes": "S2802_C05_014EA,S2802_C05_014M,S2802_C05_014MA"}, "S0701_C02_043E": {"label": "Estimate!!Moved; within same county!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$25,000 to $34,999", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C02_043EA,S0701_C02_043M,S0701_C02_043MA"}, "S2503_C04_020E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS!!$2,000 to $2,499", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C04_020EA,S2503_C04_020M,S2503_C04_020MA"}, "S0505_C03_137E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Occupied housing units!!VEHICLES AVAILABLE!!1 or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_137EA,S0505_C03_137M,S0505_C03_137MA"}, "S0802_C03_092E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over in households!!HOUSING TENURE!!Owner-occupied housing units", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_092EA,S0802_C03_092M,S0802_C03_092MA"}, "S1502_C05_009E": {"label": "Estimate!!Female!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!25 to 39 years!!Science and Engineering Related Fields", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C05_009EA,S1502_C05_009M,S1502_C05_009MA"}, "S0506_C06_041E": {"label": "Estimate!!Foreign-born; Born in South America!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C06_041EA,S0506_C06_041M,S0506_C06_041MA"}, "S2802_C05_015E": {"label": "Estimate!!Percent without an Internet Subscription!!With a computer!!Total population in households!!EDUCATIONAL ATTAINMENT!!Household population 25 years and over!!Less than high school graduate or equivalency", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "float", "group": "S2802", "limit": 0, "attributes": "S2802_C05_015EA,S2802_C05_015M,S2802_C05_015MA"}, "S0701_C02_046E": {"label": "Estimate!!Moved; within same county!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$65,000 to $74,999", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C02_046EA,S0701_C02_046M,S0701_C02_046MA"}, "S0502PR_C04_132E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Occupied housing units!!ROOMS!!4 or 5 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_132EA,S0502PR_C04_132M,S0502PR_C04_132MA"}, "S0506_C06_042E": {"label": "Estimate!!Foreign-born; Born in South America!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Nursery school, preschool", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_042EA,S0506_C06_042M,S0506_C06_042MA"}, "S2802_C05_012E": {"label": "Estimate!!Percent without an Internet Subscription!!With a computer!!Total population in households!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "float", "group": "S2802", "limit": 0, "attributes": "S2802_C05_012EA,S2802_C05_012M,S2802_C05_012MA"}, "S0802_C03_091E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over in households", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "int", "group": "S0802", "limit": 0, "attributes": "S0802_C03_091EA,S0802_C03_091M,S0802_C03_091MA"}, "S0701_C02_045E": {"label": "Estimate!!Moved; within same county!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$50,000 to $64,999", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C02_045EA,S0701_C02_045M,S0701_C02_045MA"}, "S0505_C03_139E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Occupied housing units!!SELECTED CHARACTERISTICS!!Limited English Speaking Households", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_139EA,S0505_C03_139M,S0505_C03_139MA"}, "S2802_C05_013E": {"label": "Estimate!!Percent without an Internet Subscription!!With a computer!!Total population in households!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "float", "group": "S2802", "limit": 0, "attributes": "S2802_C05_013EA,S2802_C05_013M,S2802_C05_013MA"}, "S0502PR_C04_131E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Occupied housing units!!ROOMS!!2 or 3 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_131EA,S0502PR_C04_131M,S0502PR_C04_131MA"}, "S0506_C06_043E": {"label": "Estimate!!Foreign-born; Born in South America!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Elementary school (grades K-8)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_043EA,S0506_C06_043M,S0506_C06_043MA"}, "S0802_C03_090E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!Mean travel time to work (minutes)", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_090EA,S0802_C03_090M,S0802_C03_090MA"}, "S0701_C02_040E": {"label": "Estimate!!Moved; within same county!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$1 to $9,999 or loss", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C02_040EA,S0701_C02_040M,S0701_C02_040MA"}, "S2503_C04_023E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS!!No cash rent", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C04_023EA,S2503_C04_023M,S2503_C04_023MA"}, "S0502PR_C04_134E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Occupied housing units!!ROOMS!!8 or more rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_134EA,S0502PR_C04_134M,S0502PR_C04_134MA"}, "S2802_C05_010E": {"label": "Estimate!!Percent without an Internet Subscription!!With a computer!!Total population in households!!RACE AND HISPANIC OR LATINO ORIGIN!!Some other race alone", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "float", "group": "S2802", "limit": 0, "attributes": "S2802_C05_010EA,S2802_C05_010M,S2802_C05_010MA"}, "S0802_C03_097E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over in households!!VEHICLES AVAILABLE!!3 or more vehicles available", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_097EA,S0802_C03_097M,S0802_C03_097MA"}, "S2802_C05_011E": {"label": "Estimate!!Percent without an Internet Subscription!!With a computer!!Total population in households!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "float", "group": "S2802", "limit": 0, "attributes": "S2802_C05_011EA,S2802_C05_011M,S2802_C05_011MA"}, "S0502PR_C04_133E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Occupied housing units!!ROOMS!!6 or 7 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_133EA,S0502PR_C04_133M,S0502PR_C04_133MA"}, "S2503_C04_024E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS!!Median (dollars)", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C04_024EA,S2503_C04_024M,S2503_C04_024MA"}, "S0802_C03_096E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over in households!!VEHICLES AVAILABLE!!2 vehicles available", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_096EA,S0802_C03_096M,S0802_C03_096MA"}, "S2503_C04_021E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS!!$2,500 to $2,999", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C04_021EA,S2503_C04_021M,S2503_C04_021MA"}, "S0701_C02_042E": {"label": "Estimate!!Moved; within same county!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$15,000 to $24,999", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C02_042EA,S0701_C02_042M,S0701_C02_042MA"}, "S0502PR_C04_136E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Occupied housing units!!1.01 or more occupants per room", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_136EA,S0502PR_C04_136M,S0502PR_C04_136MA"}, "S0802_C03_095E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over in households!!VEHICLES AVAILABLE!!1 vehicle available", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_095EA,S0802_C03_095M,S0802_C03_095MA"}, "S2412_C02_009E": {"label": "Estimate!!Median earnings (dollars) for male!!Full-time, year-round civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Computer, engineering, and science occupations:!!Life, physical, and social science occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C02_009EA,S2412_C02_009M,S2412_C02_009MA"}, "S0701_C02_041E": {"label": "Estimate!!Moved; within same county!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$10,000 to $14,999", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C02_041EA,S0701_C02_041M,S0701_C02_041MA"}, "S0502PR_C04_135E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Occupied housing units!!Median number of rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_135EA,S0502PR_C04_135M,S0502PR_C04_135MA"}, "S2503_C04_022E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS!!$3,000 or more", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C04_022EA,S2503_C04_022M,S2503_C04_022MA"}, "S0802_C03_094E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over in households!!VEHICLES AVAILABLE!!No vehicle available", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C03_094EA,S0802_C03_094M,S0802_C03_094MA"}, "S2801_C02_007E": {"label": "Estimate!!Percent!!Total households!!TYPES OF COMPUTER!!Has one or more types of computing devices:!!Tablet or other portable wireless computer", "concept": "Types of Computers and Internet Subscriptions", "predicateType": "float", "group": "S2801", "limit": 0, "attributes": "S2801_C02_007EA,S2801_C02_007M,S2801_C02_007MA"}, "S2412_C02_007E": {"label": "Estimate!!Median earnings (dollars) for male!!Full-time, year-round civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Computer, engineering, and science occupations:!!Computer and mathematical occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C02_007EA,S2412_C02_007M,S2412_C02_007MA"}, "S1502_C05_002E": {"label": "Estimate!!Female!!Total population 25 years and over with a Bachelor's degree or higher!!Science and Engineering", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C05_002EA,S1502_C05_002M,S1502_C05_002MA"}, "S2503_C04_027E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than $20,000!!20 to 29 percent", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C04_027EA,S2503_C04_027M,S2503_C04_027MA"}, "S0501_C03_064E": {"label": "Estimate!!Foreign-born!!Civilian employed population 16 years and over!!OCCUPATION!!Natural resources, construction, and maintenance occupations", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_064EA,S0501_C03_064M,S0501_C03_064MA"}, "S2801_C02_006E": {"label": "Estimate!!Percent!!Total households!!TYPES OF COMPUTER!!Has one or more types of computing devices:!!Smartphone!!Smartphone with no other type of computing device", "concept": "Types of Computers and Internet Subscriptions", "predicateType": "float", "group": "S2801", "limit": 0, "attributes": "S2801_C02_006EA,S2801_C02_006M,S2801_C02_006MA"}, "S2412_C02_008E": {"label": "Estimate!!Median earnings (dollars) for male!!Full-time, year-round civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Computer, engineering, and science occupations:!!Architecture and engineering occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C02_008EA,S2412_C02_008M,S2412_C02_008MA"}, "S2001_C03_020E": {"label": "Estimate!!Male!!MEDIAN EARNINGS BY EDUCATIONAL ATTAINMENT!!Population 25 years and over with earnings!!Graduate or professional degree", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C03_020EA,S2001_C03_020M,S2001_C03_020MA"}, "S1502_C05_001E": {"label": "Estimate!!Female!!Total population 25 years and over with a Bachelor's degree or higher", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C05_001EA,S1502_C05_001M,S1502_C05_001MA"}, "S2703_C03_001E": {"label": "Estimate!!Percent Private Coverage!!Civilian noninstitutionalized population", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "float", "group": "S2703", "limit": 0, "attributes": "S2703_C03_001EA,S2703_C03_001M,S2703_C03_001MA"}, "S2503_C04_028E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than $20,000!!30 percent or more", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C04_028EA,S2503_C04_028M,S2503_C04_028MA"}, "S0501_C03_065E": {"label": "Estimate!!Foreign-born!!Civilian employed population 16 years and over!!OCCUPATION!!Production, transportation, and material moving occupations", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_065EA,S0501_C03_065M,S0501_C03_065MA"}, "S2801_C02_005E": {"label": "Estimate!!Percent!!Total households!!TYPES OF COMPUTER!!Has one or more types of computing devices:!!Smartphone", "concept": "Types of Computers and Internet Subscriptions", "predicateType": "float", "group": "S2801", "limit": 0, "attributes": "S2801_C02_005EA,S2801_C02_005M,S2801_C02_005MA"}, "S2412_C02_005E": {"label": "Estimate!!Median earnings (dollars) for male!!Full-time, year-round civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Management, business, and financial occupations:!!Business and financial operations occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C02_005EA,S2412_C02_005M,S2412_C02_005MA"}, "S2503_C04_025E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than $20,000", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C04_025EA,S2503_C04_025M,S2503_C04_025MA"}, "S1502_C05_004E": {"label": "Estimate!!Female!!Total population 25 years and over with a Bachelor's degree or higher!!Business", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C05_004EA,S1502_C05_004M,S1502_C05_004MA"}, "S2703_C03_002E": {"label": "Estimate!!Percent Private Coverage!!Civilian noninstitutionalized population!!COVERAGE ALONE OR IN COMBINATION!!Employer-based health insurance alone or in combination", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "float", "group": "S2703", "limit": 0, "attributes": "S2703_C03_002EA,S2703_C03_002M,S2703_C03_002MA"}, "S0802_C03_099E": {"label": "Estimate!!Car, truck, or van -- carpooled!!PERCENT ALLOCATED!!Time of departure to go to work", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "int", "group": "S0802", "limit": 0, "attributes": "S0802_C03_099EA,S0802_C03_099M,S0802_C03_099MA"}, "S0501_C03_066E": {"label": "Estimate!!Foreign-born!!Civilian employed population 16 years and over!!INDUSTRY!!Agriculture, forestry, fishing and hunting, and mining", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_066EA,S0501_C03_066M,S0501_C03_066MA"}, "S2412_C02_006E": {"label": "Estimate!!Median earnings (dollars) for male!!Full-time, year-round civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Computer, engineering, and science occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C02_006EA,S2412_C02_006M,S2412_C02_006MA"}, "S2703_C03_003E": {"label": "Estimate!!Percent Private Coverage!!Civilian noninstitutionalized population!!COVERAGE ALONE OR IN COMBINATION!!Employer-based health insurance alone or in combination!!Under 19", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "float", "group": "S2703", "limit": 0, "attributes": "S2703_C03_003EA,S2703_C03_003M,S2703_C03_003MA"}, "S1502_C05_003E": {"label": "Estimate!!Female!!Total population 25 years and over with a Bachelor's degree or higher!!Science and Engineering Related Fields", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C05_003EA,S1502_C05_003M,S1502_C05_003MA"}, "S0802_C03_098E": {"label": "Estimate!!Car, truck, or van -- carpooled!!PERCENT ALLOCATED!!Means of transportation to work", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "int", "group": "S0802", "limit": 0, "attributes": "S0802_C03_098EA,S0802_C03_098M,S0802_C03_098MA"}, "S2503_C04_026E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than $20,000!!Less than 20 percent", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C04_026EA,S2503_C04_026M,S2503_C04_026MA"}, "S0501_C03_067E": {"label": "Estimate!!Foreign-born!!Civilian employed population 16 years and over!!INDUSTRY!!Construction", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_067EA,S0501_C03_067M,S0501_C03_067MA"}, "S2801_C02_004E": {"label": "Estimate!!Percent!!Total households!!TYPES OF COMPUTER!!Has one or more types of computing devices:!!Desktop or laptop!!Desktop or laptop with no other type of computing device", "concept": "Types of Computers and Internet Subscriptions", "predicateType": "float", "group": "S2801", "limit": 0, "attributes": "S2801_C02_004EA,S2801_C02_004M,S2801_C02_004MA"}, "S1702_C01_049E": {"label": "Estimate!!Total!!All families!!Families!!ALL FAMILIES WITH INCOME BELOW THE FOLLOWING POVERTY RATIOS!!400 percent of poverty level", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C01_049EA,S1702_C01_049M,S1702_C01_049MA"}, "S2412_C02_003E": {"label": "Estimate!!Median earnings (dollars) for male!!Full-time, year-round civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Management, business, and financial occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C02_003EA,S2412_C02_003M,S2412_C02_003MA"}, "S2703_C03_004E": {"label": "Estimate!!Percent Private Coverage!!Civilian noninstitutionalized population!!COVERAGE ALONE OR IN COMBINATION!!Employer-based health insurance alone or in combination!!19 to 64 years", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "float", "group": "S2703", "limit": 0, "attributes": "S2703_C03_004EA,S2703_C03_004M,S2703_C03_004MA"}, "S2404_C02_017E": {"label": "Estimate!!Male!!Full-time, year-round civilian employed population 16 years and over!!Professional, scientific, and management, and administrative and waste management services:!!Professional, scientific, and technical services", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C02_017EA,S2404_C02_017M,S2404_C02_017MA"}, "S1502_C05_006E": {"label": "Estimate!!Female!!Total population 25 years and over with a Bachelor's degree or higher!!Arts, Humanities, and Others", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C05_006EA,S1502_C05_006M,S1502_C05_006MA"}, "S0701_C02_048E": {"label": "Estimate!!Moved; within same county!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!Median income (dollars)", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "int", "group": "S0701", "limit": 0, "attributes": "S0701_C02_048EA,S0701_C02_048M,S0701_C02_048MA"}, "S0501_C03_068E": {"label": "Estimate!!Foreign-born!!Civilian employed population 16 years and over!!INDUSTRY!!Manufacturing", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_068EA,S0501_C03_068M,S0501_C03_068MA"}, "S2802_C05_018E": {"label": "Estimate!!Percent without an Internet Subscription!!With a computer!!Total population in households!!EMPLOYMENT STATUS!!Civilian population 16 years and over", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "float", "group": "S2802", "limit": 0, "attributes": "S2802_C05_018EA,S2802_C05_018M,S2802_C05_018MA"}, "S2412_C02_004E": {"label": "Estimate!!Median earnings (dollars) for male!!Full-time, year-round civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Management, business, and financial occupations:!!Management occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C02_004EA,S2412_C02_004M,S2412_C02_004MA"}, "S0701_C02_047E": {"label": "Estimate!!Moved; within same county!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$75,000 or more", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C02_047EA,S0701_C02_047M,S0701_C02_047MA"}, "S2703_C03_005E": {"label": "Estimate!!Percent Private Coverage!!Civilian noninstitutionalized population!!COVERAGE ALONE OR IN COMBINATION!!Employer-based health insurance alone or in combination!!65 years and over", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "float", "group": "S2703", "limit": 0, "attributes": "S2703_C03_005EA,S2703_C03_005M,S2703_C03_005MA"}, "S2404_C02_018E": {"label": "Estimate!!Male!!Full-time, year-round civilian employed population 16 years and over!!Professional, scientific, and management, and administrative and waste management services:!!Management of companies and enterprises", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C02_018EA,S2404_C02_018M,S2404_C02_018MA"}, "S2601A_C02_109E": {"label": "Estimate!!Total group quarters population!!POVERTY RATES FOR PEOPLE FOR WHOM POVERTY STATUS IS DETERMINED!!All people!!65 years and over", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_109EA,S2601A_C02_109M,S2601A_C02_109MA"}, "S1502_C05_005E": {"label": "Estimate!!Female!!Total population 25 years and over with a Bachelor's degree or higher!!Education", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C05_005EA,S1502_C05_005M,S1502_C05_005MA"}, "S2603_C05_009E": {"label": "Estimate!!Juvenile Facilities!!Total population!!SEX AND AGE!!45 to 54 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C05_009EA,S2603_C05_009M,S2603_C05_009MA"}, "S0501_C03_069E": {"label": "Estimate!!Foreign-born!!Civilian employed population 16 years and over!!INDUSTRY!!Wholesale trade", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_069EA,S0501_C03_069M,S0501_C03_069MA"}, "S2802_C05_019E": {"label": "Estimate!!Percent without an Internet Subscription!!With a computer!!Total population in households!!EMPLOYMENT STATUS!!Civilian population 16 years and over!!In labor force", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "float", "group": "S2802", "limit": 0, "attributes": "S2802_C05_019EA,S2802_C05_019M,S2802_C05_019MA"}, "S2412_C02_001E": {"label": "Estimate!!Median earnings (dollars) for male!!Full-time, year-round civilian employed population 16 years and over with earnings", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C02_001EA,S2412_C02_001M,S2412_C02_001MA"}, "S2801_C02_009E": {"label": "Estimate!!Percent!!Total households!!TYPES OF COMPUTER!!Has one or more types of computing devices:!!Other computer", "concept": "Types of Computers and Internet Subscriptions", "predicateType": "float", "group": "S2801", "limit": 0, "attributes": "S2801_C02_009EA,S2801_C02_009M,S2801_C02_009MA"}, "S2703_C03_006E": {"label": "Estimate!!Percent Private Coverage!!Civilian noninstitutionalized population!!COVERAGE ALONE OR IN COMBINATION!!Direct-purchase health insurance alone or in combination", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "float", "group": "S2703", "limit": 0, "attributes": "S2703_C03_006EA,S2703_C03_006M,S2703_C03_006MA"}, "S2404_C02_019E": {"label": "Estimate!!Male!!Full-time, year-round civilian employed population 16 years and over!!Professional, scientific, and management, and administrative and waste management services:!!Administrative and support and waste management services", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C02_019EA,S2404_C02_019M,S2404_C02_019MA"}, "S2601A_C02_108E": {"label": "Estimate!!Total group quarters population!!POVERTY RATES FOR PEOPLE FOR WHOM POVERTY STATUS IS DETERMINED!!All people!!18 to 64 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_108EA,S2601A_C02_108M,S2601A_C02_108MA"}, "S1502_C05_008E": {"label": "Estimate!!Female!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!25 to 39 years!!Science and Engineering", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C05_008EA,S1502_C05_008M,S1502_C05_008MA"}, "S2503_C04_029E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$20,000 to $34,999", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C04_029EA,S2503_C04_029M,S2503_C04_029MA"}, "S2802_C05_016E": {"label": "Estimate!!Percent without an Internet Subscription!!With a computer!!Total population in households!!EDUCATIONAL ATTAINMENT!!Household population 25 years and over!!High school graduate (includes equivalency), some college or associate's degree", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "float", "group": "S2802", "limit": 0, "attributes": "S2802_C05_016EA,S2802_C05_016M,S2802_C05_016MA"}, "S1702_C01_047E": {"label": "Estimate!!Total!!All families!!Families!!ALL FAMILIES WITH INCOME BELOW THE FOLLOWING POVERTY RATIOS!!200 percent of poverty level", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C01_047EA,S1702_C01_047M,S1702_C01_047MA"}, "S2412_C02_002E": {"label": "Estimate!!Median earnings (dollars) for male!!Full-time, year-round civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C02_002EA,S2412_C02_002M,S2412_C02_002MA"}, "S2801_C02_008E": {"label": "Estimate!!Percent!!Total households!!TYPES OF COMPUTER!!Has one or more types of computing devices:!!Tablet or other portable wireless computer!!Tablet or other portable wireless computer with no other type of computing device", "concept": "Types of Computers and Internet Subscriptions", "predicateType": "float", "group": "S2801", "limit": 0, "attributes": "S2801_C02_008EA,S2801_C02_008M,S2801_C02_008MA"}, "S2601A_C02_107E": {"label": "Estimate!!Total group quarters population!!POVERTY RATES FOR PEOPLE FOR WHOM POVERTY STATUS IS DETERMINED!!All people!!18 years and over", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_107EA,S2601A_C02_107M,S2601A_C02_107MA"}, "S2703_C03_007E": {"label": "Estimate!!Percent Private Coverage!!Civilian noninstitutionalized population!!COVERAGE ALONE OR IN COMBINATION!!Direct-purchase health insurance alone or in combination!!Under 19", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "float", "group": "S2703", "limit": 0, "attributes": "S2703_C03_007EA,S2703_C03_007M,S2703_C03_007MA"}, "S1502_C05_007E": {"label": "Estimate!!Female!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!25 to 39 years", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C05_007EA,S1502_C05_007M,S1502_C05_007MA"}, "S0701_C02_049E": {"label": "Estimate!!Moved; within same county!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population 1 year and over for whom poverty status is determined", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C02_049EA,S0701_C02_049M,S0701_C02_049MA"}, "S2802_C05_017E": {"label": "Estimate!!Percent without an Internet Subscription!!With a computer!!Total population in households!!EDUCATIONAL ATTAINMENT!!Household population 25 years and over!!Bachelor's degree or higher", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "float", "group": "S2802", "limit": 0, "attributes": "S2802_C05_017EA,S2802_C05_017M,S2802_C05_017MA"}, "S1702_C01_048E": {"label": "Estimate!!Total!!All families!!Families!!ALL FAMILIES WITH INCOME BELOW THE FOLLOWING POVERTY RATIOS!!300 percent of poverty level", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C01_048EA,S1702_C01_048M,S1702_C01_048MA"}, "S2414_C04_015E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Full-time, year-round civilian employed population 16 years and over with earnings!!Finance and insurance, and real estate and rental and leasing:!!Real estate and rental and leasing", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2414", "limit": 0, "attributes": "S2414_C04_015EA,S2414_C04_015M,S2414_C04_015MA"}, "S2412_C02_011E": {"label": "Estimate!!Median earnings (dollars) for male!!Full-time, year-round civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:!!Community and social service occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C02_011EA,S2412_C02_011M,S2412_C02_011MA"}, "S2404_C02_001E": {"label": "Estimate!!Male!!Full-time, year-round civilian employed population 16 years and over", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C02_001EA,S2404_C02_001M,S2404_C02_001MA"}, "S2412_C02_012E": {"label": "Estimate!!Median earnings (dollars) for male!!Full-time, year-round civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:!!Legal occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C02_012EA,S2412_C02_012M,S2412_C02_012MA"}, "S2404_C02_002E": {"label": "Estimate!!Male!!Full-time, year-round civilian employed population 16 years and over!!Agriculture, forestry, fishing and hunting, and mining:", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C02_002EA,S2404_C02_002M,S2404_C02_002MA"}, "S2414_C04_016E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Full-time, year-round civilian employed population 16 years and over with earnings!!Professional, scientific, and management, and administrative and waste management services:", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2414", "limit": 0, "attributes": "S2414_C04_016EA,S2414_C04_016M,S2414_C04_016MA"}, "S0804_C04_010E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!SEX!!Female", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_010EA,S0804_C04_010M,S0804_C04_010MA"}, "S2414_C04_013E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Full-time, year-round civilian employed population 16 years and over with earnings!!Finance and insurance, and real estate and rental and leasing:", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2414", "limit": 0, "attributes": "S2414_C04_013EA,S2414_C04_013M,S2414_C04_013MA"}, "S1502_C05_020E": {"label": "Estimate!!Female!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!65 years and over!!Science and Engineering", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C05_020EA,S1502_C05_020M,S1502_C05_020MA"}, "S2404_C02_003E": {"label": "Estimate!!Male!!Full-time, year-round civilian employed population 16 years and over!!Agriculture, forestry, fishing and hunting, and mining:!!Agriculture, forestry, fishing and hunting", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C02_003EA,S2404_C02_003M,S2404_C02_003MA"}, "S2503_C04_009E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$50,000 to $74,999", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C04_009EA,S2503_C04_009M,S2503_C04_009MA"}, "S2414_C04_014E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Full-time, year-round civilian employed population 16 years and over with earnings!!Finance and insurance, and real estate and rental and leasing:!!Finance and insurance", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2414", "limit": 0, "attributes": "S2414_C04_014EA,S2414_C04_014M,S2414_C04_014MA"}, "S2412_C02_010E": {"label": "Estimate!!Median earnings (dollars) for male!!Full-time, year-round civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C02_010EA,S2412_C02_010M,S2412_C02_010MA"}, "S2404_C02_004E": {"label": "Estimate!!Male!!Full-time, year-round civilian employed population 16 years and over!!Agriculture, forestry, fishing and hunting, and mining:!!Mining, quarrying, and oil and gas extraction", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C02_004EA,S2404_C02_004M,S2404_C02_004MA"}, "S2414_C04_011E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Full-time, year-round civilian employed population 16 years and over with earnings!!Transportation and warehousing, and utilities:!!Utilities", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2414", "limit": 0, "attributes": "S2414_C04_011EA,S2414_C04_011M,S2414_C04_011MA"}, "S1502_C05_022E": {"label": "Estimate!!Female!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!65 years and over!!Business", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C05_022EA,S1502_C05_022M,S1502_C05_022MA"}, "S2801_C02_003E": {"label": "Estimate!!Percent!!Total households!!TYPES OF COMPUTER!!Has one or more types of computing devices:!!Desktop or laptop", "concept": "Types of Computers and Internet Subscriptions", "predicateType": "float", "group": "S2801", "limit": 0, "attributes": "S2801_C02_003EA,S2801_C02_003M,S2801_C02_003MA"}, "S2414_C04_012E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Full-time, year-round civilian employed population 16 years and over with earnings!!Information", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2414", "limit": 0, "attributes": "S2414_C04_012EA,S2414_C04_012M,S2414_C04_012MA"}, "S1502_C05_021E": {"label": "Estimate!!Female!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!65 years and over!!Science and Engineering Related Fields", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C05_021EA,S1502_C05_021M,S1502_C05_021MA"}, "S2801_C02_002E": {"label": "Estimate!!Percent!!Total households!!TYPES OF COMPUTER!!Has one or more types of computing devices:", "concept": "Types of Computers and Internet Subscriptions", "predicateType": "float", "group": "S2801", "limit": 0, "attributes": "S2801_C02_002EA,S2801_C02_002M,S2801_C02_002MA"}, "S1502_C05_024E": {"label": "Estimate!!Female!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!65 years and over!!Arts, Humanities, and Others", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C05_024EA,S1502_C05_024M,S1502_C05_024MA"}, "S0501_C03_050E": {"label": "Estimate!!Foreign-born!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_050EA,S0501_C03_050M,S0501_C03_050MA"}, "S2801_C02_001E": {"label": "Estimate!!Percent!!Total households", "concept": "Types of Computers and Internet Subscriptions", "predicateType": "int", "group": "S2801", "limit": 0, "attributes": "S2801_C02_001EA,S2801_C02_001M,S2801_C02_001MA"}, "S2414_C04_010E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Full-time, year-round civilian employed population 16 years and over with earnings!!Transportation and warehousing, and utilities:!!Transportation and warehousing", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2414", "limit": 0, "attributes": "S2414_C04_010EA,S2414_C04_010M,S2414_C04_010MA"}, "S1502_C05_023E": {"label": "Estimate!!Female!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!65 years and over!!Education", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C05_023EA,S1502_C05_023M,S1502_C05_023MA"}, "S0501_C03_051E": {"label": "Estimate!!Foreign-born!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Employed", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_051EA,S0501_C03_051M,S0501_C03_051MA"}, "S0502PR_C04_114E": {"label": "Estimate!!Foreign-born; Entered before 2000!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!100 to 199 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_114EA,S0502PR_C04_114M,S0502PR_C04_114MA"}, "S0804_C04_016E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_016EA,S0804_C04_016M,S0804_C04_016MA"}, "S0505_C03_130E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Occupied housing units!!ROOMS!!2 or 3 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_130EA,S0505_C03_130M,S0505_C03_130MA"}, "S0506_C06_036E": {"label": "Estimate!!Foreign-born; Born in South America!!MARITAL STATUS!!Population 15 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C06_036EA,S0506_C06_036M,S0506_C06_036MA"}, "S0502PR_C04_113E": {"label": "Estimate!!Foreign-born; Entered before 2000!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!Below 100 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_113EA,S0502PR_C04_113M,S0502PR_C04_113MA"}, "S0804_C04_015E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_015EA,S0804_C04_015M,S0804_C04_015MA"}, "S0506_C06_037E": {"label": "Estimate!!Foreign-born; Born in South America!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_037EA,S0506_C06_037M,S0506_C06_037MA"}, "S0502PR_C04_116E": {"label": "Estimate!!Foreign-born; Entered before 2000!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_116EA,S0502PR_C04_116M,S0502PR_C04_116MA"}, "S0804_C04_018E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_018EA,S0804_C04_018M,S0804_C04_018MA"}, "S0506_C06_038E": {"label": "Estimate!!Foreign-born; Born in South America!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_038EA,S0506_C06_038M,S0506_C06_038MA"}, "S0505_C03_132E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Occupied housing units!!ROOMS!!6 or 7 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_132EA,S0505_C03_132M,S0505_C03_132MA"}, "S0502PR_C04_115E": {"label": "Estimate!!Foreign-born; Entered before 2000!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!At or above 200 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_115EA,S0502PR_C04_115M,S0502PR_C04_115MA"}, "S0804_C04_017E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_017EA,S0804_C04_017M,S0804_C04_017MA"}, "S0506_C06_039E": {"label": "Estimate!!Foreign-born; Born in South America!!MARITAL STATUS!!Population 15 years and over!!Divorced or separated", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_039EA,S0506_C06_039M,S0506_C06_039MA"}, "S0505_C03_131E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Occupied housing units!!ROOMS!!4 or 5 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_131EA,S0505_C03_131M,S0505_C03_131MA"}, "S0502PR_C04_118E": {"label": "Estimate!!Foreign-born; Entered before 2000!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_118EA,S0502PR_C04_118M,S0502PR_C04_118MA"}, "S0505_C03_134E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Occupied housing units!!Median number of rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_134EA,S0505_C03_134M,S0505_C03_134MA"}, "S0804_C04_012E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_012EA,S0804_C04_012M,S0804_C04_012MA"}, "S0506_C06_032E": {"label": "Estimate!!Foreign-born; Born in South America!!Foreign-born population!!HOUSEHOLD TYPE!!In married-couple family", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_032EA,S0506_C06_032M,S0506_C06_032MA"}, "S0502PR_C04_117E": {"label": "Estimate!!Foreign-born; Entered before 2000!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_117EA,S0502PR_C04_117M,S0502PR_C04_117MA"}, "S0505_C03_133E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Occupied housing units!!ROOMS!!8 or more rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_133EA,S0505_C03_133M,S0505_C03_133MA"}, "S0804_C04_011E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_011EA,S0804_C04_011M,S0804_C04_011MA"}, "S0506_C06_033E": {"label": "Estimate!!Foreign-born; Born in South America!!Foreign-born population!!HOUSEHOLD TYPE!!In other households", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_033EA,S0506_C06_033M,S0506_C06_033MA"}, "S0505_C03_136E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Occupied housing units!!VEHICLES AVAILABLE!!None", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_136EA,S0505_C03_136M,S0505_C03_136MA"}, "S0804_C04_014E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_014EA,S0804_C04_014M,S0804_C04_014MA"}, "S0802_C05_101E": {"label": "Estimate!!Worked from home!!PERCENT ALLOCATED!!Vehicles available", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "int", "group": "S0802", "limit": 0, "attributes": "S0802_C05_101EA,S0802_C05_101M,S0802_C05_101MA"}, "S0506_C06_034E": {"label": "Estimate!!Foreign-born; Born in South America!!Foreign-born population!!Average household size", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_034EA,S0506_C06_034M,S0506_C06_034MA"}, "S0505_C03_135E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Occupied housing units!!1.01 or more occupants per room", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_135EA,S0505_C03_135M,S0505_C03_135MA"}, "S0804_C04_013E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_013EA,S0804_C04_013M,S0804_C04_013MA"}, "S0502PR_C04_119E": {"label": "Estimate!!Foreign-born; Entered before 2000!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_119EA,S0502PR_C04_119M,S0502PR_C04_119MA"}, "S0506_C06_035E": {"label": "Estimate!!Foreign-born; Born in South America!!Foreign-born population!!Average family size", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_035EA,S0506_C06_035M,S0506_C06_035MA"}, "S0701_C02_056E": {"label": "Estimate!!Moved; within same county!!PERCENT ALLOCATED!!Residence 1 year ago", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "int", "group": "S0701", "limit": 0, "attributes": "S0701_C02_056EA,S0701_C02_056M,S0701_C02_056MA"}, "S0505_C03_126E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Occupied housing units!!HOUSING TENURE!!Renter-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_126EA,S0505_C03_126M,S0505_C03_126MA"}, "S0505_C03_125E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Occupied housing units!!HOUSING TENURE!!Owner-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_125EA,S0505_C03_125M,S0505_C03_125MA"}, "S0701_C02_055E": {"label": "Estimate!!Moved; within same county!!HOUSING TENURE!!Population 1 year and over in housing units!!Householder lived in renter-occupied housing units", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C02_055EA,S0701_C02_055M,S0701_C02_055MA"}, "S0802_C05_100E": {"label": "Estimate!!Worked from home!!PERCENT ALLOCATED!!Travel time to work", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "int", "group": "S0802", "limit": 0, "attributes": "S0802_C05_100EA,S0802_C05_100M,S0802_C05_100MA"}, "S0505_C03_128E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Occupied housing units!!HOUSING TENURE!!Average household size of renter-occupied unit", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_128EA,S0505_C03_128M,S0505_C03_128MA"}, "S0502PR_C04_120E": {"label": "Estimate!!Foreign-born; Entered before 2000!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_120EA,S0502PR_C04_120M,S0502PR_C04_120MA"}, "S0506_C06_030E": {"label": "Estimate!!Foreign-born; Born in South America!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_030EA,S0506_C06_030M,S0506_C06_030MA"}, "S0505_C03_127E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Occupied housing units!!HOUSING TENURE!!Average household size of owner-occupied unit", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_127EA,S0505_C03_127M,S0505_C03_127MA"}, "S0506_C06_031E": {"label": "Estimate!!Foreign-born; Born in South America!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_031EA,S0506_C06_031M,S0506_C06_031MA"}, "S0701_C02_052E": {"label": "Estimate!!Moved; within same county!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population 1 year and over for whom poverty status is determined!!At or above 150 percent of the poverty level", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C02_052EA,S0701_C02_052M,S0701_C02_052MA"}, "S2503_C04_011E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$100,000 to $149,999", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C04_011EA,S2503_C04_011M,S2503_C04_011MA"}, "S2802_C05_022E": {"label": "Estimate!!Percent without an Internet Subscription!!With a computer!!Total population in households!!EMPLOYMENT STATUS!!Civilian population 16 years and over!!Not in labor force", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "float", "group": "S2802", "limit": 0, "attributes": "S2802_C05_022EA,S2802_C05_022M,S2802_C05_022MA"}, "S0502PR_C04_122E": {"label": "Estimate!!Foreign-born; Entered before 2000!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_122EA,S0502PR_C04_122M,S0502PR_C04_122MA"}, "S0804_C04_008E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!AGE!!Median age (years)", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_008EA,S0804_C04_008M,S0804_C04_008MA"}, "S0701_C02_051E": {"label": "Estimate!!Moved; within same county!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population 1 year and over for whom poverty status is determined!!100 to 149 percent of the poverty level", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C02_051EA,S0701_C02_051M,S0701_C02_051MA"}, "S2503_C04_012E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$150,000 or more", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C04_012EA,S2503_C04_012M,S2503_C04_012MA"}, "S0505_C03_129E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Occupied housing units!!ROOMS!!1 room", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_129EA,S0505_C03_129M,S0505_C03_129MA"}, "S0804_C04_007E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!AGE!!60 years and over", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_007EA,S0804_C04_007M,S0804_C04_007MA"}, "S0502PR_C04_121E": {"label": "Estimate!!Foreign-born; Entered before 2000!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_121EA,S0502PR_C04_121M,S0502PR_C04_121MA"}, "S0701_C02_054E": {"label": "Estimate!!Moved; within same county!!HOUSING TENURE!!Population 1 year and over in housing units!!Householder lived in owner-occupied housing units", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C02_054EA,S0701_C02_054M,S0701_C02_054MA"}, "S2802_C05_020E": {"label": "Estimate!!Percent without an Internet Subscription!!With a computer!!Total population in households!!EMPLOYMENT STATUS!!Civilian population 16 years and over!!In labor force!!Employed", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "float", "group": "S2802", "limit": 0, "attributes": "S2802_C05_020EA,S2802_C05_020M,S2802_C05_020MA"}, "S0502PR_C04_124E": {"label": "Estimate!!Foreign-born; Entered before 2000!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_124EA,S0502PR_C04_124M,S0502PR_C04_124MA"}, "S2703_C03_010E": {"label": "Estimate!!Percent Private Coverage!!Civilian noninstitutionalized population!!COVERAGE ALONE OR IN COMBINATION!!Tricare/military health insurance alone or in combination", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "float", "group": "S2703", "limit": 0, "attributes": "S2703_C03_010EA,S2703_C03_010M,S2703_C03_010MA"}, "S2503_C04_010E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$75,000 to $99,999", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C04_010EA,S2503_C04_010M,S2503_C04_010MA"}, "S0701_C02_053E": {"label": "Estimate!!Moved; within same county!!HOUSING TENURE!!Population 1 year and over in housing units", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C02_053EA,S0701_C02_053M,S0701_C02_053MA"}, "S0502PR_C04_123E": {"label": "Estimate!!Foreign-born; Entered before 2000!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_123EA,S0502PR_C04_123M,S0502PR_C04_123MA"}, "S2802_C05_021E": {"label": "Estimate!!Percent without an Internet Subscription!!With a computer!!Total population in households!!EMPLOYMENT STATUS!!Civilian population 16 years and over!!In labor force!!Unemployed", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "float", "group": "S2802", "limit": 0, "attributes": "S2802_C05_021EA,S2802_C05_021M,S2802_C05_021MA"}, "S0804_C04_009E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!SEX!!Male", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C04_009EA,S0804_C04_009M,S0804_C04_009MA"}, "S2703_C03_011E": {"label": "Estimate!!Percent Private Coverage!!Civilian noninstitutionalized population!!COVERAGE ALONE OR IN COMBINATION!!Tricare/military health insurance alone or in combination!!Under 19", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "float", "group": "S2703", "limit": 0, "attributes": "S2703_C03_011EA,S2703_C03_011M,S2703_C03_011MA"}, "S2412_C02_019E": {"label": "Estimate!!Median earnings (dollars) for male!!Full-time, year-round civilian employed population 16 years and over with earnings!!Service occupations:!!Healthcare support occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C02_019EA,S2412_C02_019M,S2412_C02_019MA"}, "S2404_C02_009E": {"label": "Estimate!!Male!!Full-time, year-round civilian employed population 16 years and over!!Transportation and warehousing, and utilities:", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C02_009EA,S2404_C02_009M,S2404_C02_009MA"}, "S1502_C05_014E": {"label": "Estimate!!Female!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!40 to 64 years!!Science and Engineering", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C05_014EA,S1502_C05_014M,S1502_C05_014MA"}, "S2703_C03_012E": {"label": "Estimate!!Percent Private Coverage!!Civilian noninstitutionalized population!!COVERAGE ALONE OR IN COMBINATION!!Tricare/military health insurance alone or in combination!!19 to 64 years", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "float", "group": "S2703", "limit": 0, "attributes": "S2703_C03_012EA,S2703_C03_012M,S2703_C03_012MA"}, "S2503_C04_015E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS!!$300 to $499", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C04_015EA,S2503_C04_015M,S2503_C04_015MA"}, "S0501_C03_052E": {"label": "Estimate!!Foreign-born!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_052EA,S0501_C03_052M,S0501_C03_052MA"}, "S1502_C05_013E": {"label": "Estimate!!Female!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!40 to 64 years", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C05_013EA,S1502_C05_013M,S1502_C05_013MA"}, "S2703_C03_013E": {"label": "Estimate!!Percent Private Coverage!!Civilian noninstitutionalized population!!COVERAGE ALONE OR IN COMBINATION!!Tricare/military health insurance alone or in combination!!65 years and over", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "float", "group": "S2703", "limit": 0, "attributes": "S2703_C03_013EA,S2703_C03_013M,S2703_C03_013MA"}, "S2503_C04_016E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS!!$500 to $799", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C04_016EA,S2503_C04_016M,S2503_C04_016MA"}, "S0501_C03_053E": {"label": "Estimate!!Foreign-born!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed!!Percent of civilian labor force", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_053EA,S0501_C03_053M,S0501_C03_053MA"}, "S2412_C02_017E": {"label": "Estimate!!Median earnings (dollars) for male!!Full-time, year-round civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Healthcare practitioners and technical occupations:!!Health technologists and technicians", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C02_017EA,S2412_C02_017M,S2412_C02_017MA"}, "S2503_C04_013E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Median household income (dollars)", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C04_013EA,S2503_C04_013M,S2503_C04_013MA"}, "S2703_C03_014E": {"label": "Estimate!!Percent Private Coverage!!Civilian noninstitutionalized population!!PRIVATE HEALTH INSURANCE ALONE OR IN COMBINATION!!Below 138 percent of the poverty threshold", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "float", "group": "S2703", "limit": 0, "attributes": "S2703_C03_014EA,S2703_C03_014M,S2703_C03_014MA"}, "S1502_C05_016E": {"label": "Estimate!!Female!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!40 to 64 years!!Business", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C05_016EA,S1502_C05_016M,S1502_C05_016MA"}, "S0501_C03_054E": {"label": "Estimate!!Foreign-born!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Armed Forces", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_054EA,S0501_C03_054M,S0501_C03_054MA"}, "S2503_C04_014E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS!!Less than $300", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C04_014EA,S2503_C04_014M,S2503_C04_014MA"}, "S2412_C02_018E": {"label": "Estimate!!Median earnings (dollars) for male!!Full-time, year-round civilian employed population 16 years and over with earnings!!Service occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C02_018EA,S2412_C02_018M,S2412_C02_018MA"}, "S2703_C03_015E": {"label": "Estimate!!Percent Private Coverage!!Civilian noninstitutionalized population!!PRIVATE HEALTH INSURANCE ALONE OR IN COMBINATION!!At or above 138 percent of the poverty threshold", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "float", "group": "S2703", "limit": 0, "attributes": "S2703_C03_015EA,S2703_C03_015M,S2703_C03_015MA"}, "S1502_C05_015E": {"label": "Estimate!!Female!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!40 to 64 years!!Science and Engineering Related Fields", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C05_015EA,S1502_C05_015M,S1502_C05_015MA"}, "S0501_C03_055E": {"label": "Estimate!!Foreign-born!!EMPLOYMENT STATUS!!Population 16 years and over!!Not in labor force", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_055EA,S0501_C03_055M,S0501_C03_055MA"}, "S2412_C02_015E": {"label": "Estimate!!Median earnings (dollars) for male!!Full-time, year-round civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Healthcare practitioners and technical occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C02_015EA,S2412_C02_015M,S2412_C02_015MA"}, "S2703_C03_016E": {"label": "Estimate!!Percent Private Coverage!!Civilian noninstitutionalized population!!PRIVATE HEALTH INSURANCE ALONE OR IN COMBINATION!!Worked full-time, year-round (19-64 years)", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "float", "group": "S2703", "limit": 0, "attributes": "S2703_C03_016EA,S2703_C03_016M,S2703_C03_016MA"}, "S2404_C02_005E": {"label": "Estimate!!Male!!Full-time, year-round civilian employed population 16 years and over!!Construction", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C02_005EA,S2404_C02_005M,S2404_C02_005MA"}, "S1502_C05_018E": {"label": "Estimate!!Female!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!40 to 64 years!!Arts, Humanities, and Others", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C05_018EA,S1502_C05_018M,S1502_C05_018MA"}, "S0501_C03_056E": {"label": "Estimate!!Foreign-born!!Civilian employed population 16 years and over", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C03_056EA,S0501_C03_056M,S0501_C03_056MA"}, "S2503_C04_019E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS!!$1,500 to $1,999", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C04_019EA,S2503_C04_019M,S2503_C04_019MA"}, "S2414_C04_019E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Full-time, year-round civilian employed population 16 years and over with earnings!!Professional, scientific, and management, and administrative and waste management services:!!Administrative and support and waste management services", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2414", "limit": 0, "attributes": "S2414_C04_019EA,S2414_C04_019M,S2414_C04_019MA"}, "S2412_C02_016E": {"label": "Estimate!!Median earnings (dollars) for male!!Full-time, year-round civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Healthcare practitioners and technical occupations:!!Health diagnosing and treating practitioners and other technical occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C02_016EA,S2412_C02_016M,S2412_C02_016MA"}, "S2703_C03_017E": {"label": "Estimate!!Percent Private Coverage!!Civilian noninstitutionalized population!!PRIVATE HEALTH INSURANCE ALONE OR IN COMBINATION!!Under 6", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "float", "group": "S2703", "limit": 0, "attributes": "S2703_C03_017EA,S2703_C03_017M,S2703_C03_017MA"}, "S2404_C02_006E": {"label": "Estimate!!Male!!Full-time, year-round civilian employed population 16 years and over!!Manufacturing", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C02_006EA,S2404_C02_006M,S2404_C02_006MA"}, "S1502_C05_017E": {"label": "Estimate!!Female!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!40 to 64 years!!Education", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C05_017EA,S1502_C05_017M,S1502_C05_017MA"}, "S0501_C03_057E": {"label": "Estimate!!Foreign-born!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Private wage and salary workers", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_057EA,S0501_C03_057M,S0501_C03_057MA"}, "S2412_C02_013E": {"label": "Estimate!!Median earnings (dollars) for male!!Full-time, year-round civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:!!Educational instruction, and library occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C02_013EA,S2412_C02_013M,S2412_C02_013MA"}, "S2404_C02_007E": {"label": "Estimate!!Male!!Full-time, year-round civilian employed population 16 years and over!!Wholesale trade", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C02_007EA,S2404_C02_007M,S2404_C02_007MA"}, "S2703_C03_018E": {"label": "Estimate!!Percent Private Coverage!!Civilian noninstitutionalized population!!PRIVATE HEALTH INSURANCE ALONE OR IN COMBINATION!!6 to 18 years", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "float", "group": "S2703", "limit": 0, "attributes": "S2703_C03_018EA,S2703_C03_018M,S2703_C03_018MA"}, "S0501_C03_058E": {"label": "Estimate!!Foreign-born!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Government workers", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_058EA,S0501_C03_058M,S0501_C03_058MA"}, "S2503_C04_017E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS!!$800 to $999", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C04_017EA,S2503_C04_017M,S2503_C04_017MA"}, "S2414_C04_017E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Full-time, year-round civilian employed population 16 years and over with earnings!!Professional, scientific, and management, and administrative and waste management services:!!Professional, scientific, and technical services", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2414", "limit": 0, "attributes": "S2414_C04_017EA,S2414_C04_017M,S2414_C04_017MA"}, "S2412_C02_014E": {"label": "Estimate!!Median earnings (dollars) for male!!Full-time, year-round civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:!!Arts, design, entertainment, sports, and media occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C02_014EA,S2412_C02_014M,S2412_C02_014MA"}, "S2404_C02_008E": {"label": "Estimate!!Male!!Full-time, year-round civilian employed population 16 years and over!!Retail trade", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C02_008EA,S2404_C02_008M,S2404_C02_008MA"}, "S2703_C03_019E": {"label": "Estimate!!Percent Private Coverage!!Civilian noninstitutionalized population!!PRIVATE HEALTH INSURANCE ALONE OR IN COMBINATION!!19 to 25 years", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "float", "group": "S2703", "limit": 0, "attributes": "S2703_C03_019EA,S2703_C03_019M,S2703_C03_019MA"}, "S1502_C05_019E": {"label": "Estimate!!Female!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!65 years and over", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C05_019EA,S1502_C05_019M,S1502_C05_019MA"}, "S0501_C03_059E": {"label": "Estimate!!Foreign-born!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Self-employed workers in own not incorporated business", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_059EA,S0501_C03_059M,S0501_C03_059MA"}, "S2503_C04_018E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS!!$1,000 to $1,499", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C04_018EA,S2503_C04_018M,S2503_C04_018MA"}, "S2414_C04_018E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Full-time, year-round civilian employed population 16 years and over with earnings!!Professional, scientific, and management, and administrative and waste management services:!!Management of companies and enterprises", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2414", "limit": 0, "attributes": "S2414_C04_018EA,S2414_C04_018M,S2414_C04_018MA"}, "S2414_C04_003E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Full-time, year-round civilian employed population 16 years and over with earnings!!Agriculture, forestry, fishing and hunting, and mining:!!Agriculture, forestry, fishing and hunting", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2414", "limit": 0, "attributes": "S2414_C04_003EA,S2414_C04_003M,S2414_C04_003MA"}, "S2506_C01_033E": {"label": "Estimate!!Owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!MONTHLY HOUSING COSTS!!$600 to $799", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "int", "group": "S2506", "limit": 0, "attributes": "S2506_C01_033EA,S2506_C01_033M,S2506_C01_033MA"}, "S2002_C01_055E": {"label": "Estimate!!Total!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Educational services", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C01_055EA,S2002_C01_055M,S2002_C01_055MA"}, "S0504_C03_020E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Foreign-born population!!SEX AND AGE!!85 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_020EA,S0504_C03_020M,S0504_C03_020MA"}, "S1703_C02_023E": {"label": "Estimate!!Less than 50 percent of the poverty level!!Population for whom poverty status is determined!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than high school graduate", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C02_023EA,S1703_C02_023M,S1703_C02_023MA"}, "S2414_C04_004E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Full-time, year-round civilian employed population 16 years and over with earnings!!Agriculture, forestry, fishing and hunting, and mining:!!Mining, quarrying, and oil and gas extraction", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2414", "limit": 0, "attributes": "S2414_C04_004EA,S2414_C04_004M,S2414_C04_004MA"}, "S2506_C01_034E": {"label": "Estimate!!Owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!MONTHLY HOUSING COSTS!!$800 to $999", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "int", "group": "S2506", "limit": 0, "attributes": "S2506_C01_034EA,S2506_C01_034M,S2506_C01_034MA"}, "S2002_C01_054E": {"label": "Estimate!!Total!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Administrative and support and waste management services", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C01_054EA,S2002_C01_054M,S2002_C01_054MA"}, "S2603_C05_029E": {"label": "Estimate!!Juvenile Facilities!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!Hispanic or Latino (of any race)", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C05_029EA,S2603_C05_029M,S2603_C05_029MA"}, "S1703_C02_024E": {"label": "Estimate!!Less than 50 percent of the poverty level!!Population for whom poverty status is determined!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate (includes equivalency)", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C02_024EA,S1703_C02_024M,S1703_C02_024MA"}, "S2414_C04_001E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Full-time, year-round civilian employed population 16 years and over with earnings", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2414", "limit": 0, "attributes": "S2414_C04_001EA,S2414_C04_001M,S2414_C04_001MA"}, "S2506_C01_035E": {"label": "Estimate!!Owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!MONTHLY HOUSING COSTS!!$1,000 to $1,499", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "int", "group": "S2506", "limit": 0, "attributes": "S2506_C01_035EA,S2506_C01_035M,S2506_C01_035MA"}, "S2002_C01_053E": {"label": "Estimate!!Total!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Management of companies and enterprises", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C01_053EA,S2002_C01_053M,S2002_C01_053MA"}, "S1703_C02_021E": {"label": "Estimate!!Less than 50 percent of the poverty level!!Population for whom poverty status is determined!!LIVING ARRANGEMENT!!In other living arrangements", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C02_021EA,S1703_C02_021M,S1703_C02_021MA"}, "S2414_C04_002E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Full-time, year-round civilian employed population 16 years and over with earnings!!Agriculture, forestry, fishing and hunting, and mining:", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2414", "limit": 0, "attributes": "S2414_C04_002EA,S2414_C04_002M,S2414_C04_002MA"}, "S2506_C01_036E": {"label": "Estimate!!Owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!MONTHLY HOUSING COSTS!!$1,500 to $1,999", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "int", "group": "S2506", "limit": 0, "attributes": "S2506_C01_036EA,S2506_C01_036M,S2506_C01_036MA"}, "S2002_C01_052E": {"label": "Estimate!!Total!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Professional, scientific, and technical services", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C01_052EA,S2002_C01_052M,S2002_C01_052MA"}, "S2601C_C02_010E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!55 to 64 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_010EA,S2601C_C02_010M,S2601C_C02_010MA"}, "S2002_C01_051E": {"label": "Estimate!!Total!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Real estate and rental and leasing", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C01_051EA,S2002_C01_051M,S2002_C01_051MA"}, "S1703_C02_022E": {"label": "Estimate!!Less than 50 percent of the poverty level!!Population for whom poverty status is determined!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C02_022EA,S1703_C02_022M,S1703_C02_022MA"}, "S2002_C01_059E": {"label": "Estimate!!Total!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Other services (except public administration)", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C01_059EA,S2002_C01_059M,S2002_C01_059MA"}, "S0506_C06_028E": {"label": "Estimate!!Foreign-born; Born in South America!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_028EA,S0506_C06_028M,S0506_C06_028MA"}, "S2603_C05_026E": {"label": "Estimate!!Juvenile Facilities!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C05_026EA,S2603_C05_026M,S2603_C05_026MA"}, "S2506_C01_037E": {"label": "Estimate!!Owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!MONTHLY HOUSING COSTS!!$2,000 to $2,499", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "int", "group": "S2506", "limit": 0, "attributes": "S2506_C01_037EA,S2506_C01_037M,S2506_C01_037MA"}, "S2002_C01_058E": {"label": "Estimate!!Total!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Accommodation and food services", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C01_058EA,S2002_C01_058M,S2002_C01_058MA"}, "S2603_C05_025E": {"label": "Estimate!!Juvenile Facilities!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Asian", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C05_025EA,S2603_C05_025M,S2603_C05_025MA"}, "S0506_C06_029E": {"label": "Estimate!!Foreign-born; Born in South America!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_029EA,S0506_C06_029M,S0506_C06_029MA"}, "S1703_C02_020E": {"label": "Estimate!!Less than 50 percent of the poverty level!!Population for whom poverty status is determined!!LIVING ARRANGEMENT!!In family households!!In Female householder, no spouse present households", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C02_020EA,S1703_C02_020M,S1703_C02_020MA"}, "S2506_C01_038E": {"label": "Estimate!!Owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!MONTHLY HOUSING COSTS!!$2,500 to $2,999", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "int", "group": "S2506", "limit": 0, "attributes": "S2506_C01_038EA,S2506_C01_038M,S2506_C01_038MA"}, "S2002_C01_057E": {"label": "Estimate!!Total!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Arts, entertainment, and recreation", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C01_057EA,S2002_C01_057M,S2002_C01_057MA"}, "S2603_C05_028E": {"label": "Estimate!!Juvenile Facilities!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!Two or more races", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C05_028EA,S2603_C05_028M,S2603_C05_028MA"}, "S2506_C01_039E": {"label": "Estimate!!Owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!MONTHLY HOUSING COSTS!!$3,000 or more", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "int", "group": "S2506", "limit": 0, "attributes": "S2506_C01_039EA,S2506_C01_039M,S2506_C01_039MA"}, "S2002_C01_056E": {"label": "Estimate!!Total!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Health care and social assistance", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C01_056EA,S2002_C01_056M,S2002_C01_056MA"}, "S2603_C05_027E": {"label": "Estimate!!Juvenile Facilities!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Some other race", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C05_027EA,S2603_C05_027M,S2603_C05_027MA"}, "S2602_C02_031E": {"label": "Estimate!!Total group quarters population!!MARITAL STATUS!!Population 15 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C02_031EA,S2602_C02_031M,S2602_C02_031MA"}, "S0501_C03_129E": {"label": "Estimate!!Foreign-born!!Occupied housing units!!VEHICLES AVAILABLE!!1 or more", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_129EA,S0501_C03_129M,S0501_C03_129MA"}, "S0505_C06_019E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Foreign-born population!!SEX AND AGE!!75 to 84 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_019EA,S0505_C06_019M,S0505_C06_019MA"}, "S2603_C05_022E": {"label": "Estimate!!Juvenile Facilities!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!White", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C05_022EA,S2603_C05_022M,S2603_C05_022MA"}, "S0804_C02_015E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_015EA,S0804_C02_015M,S0804_C02_015MA"}, "S2601C_C02_016E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!Under 18 years!!Female", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_016EA,S2601C_C02_016M,S2601C_C02_016MA"}, "S0506_C06_024E": {"label": "Estimate!!Foreign-born; Born in South America!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_024EA,S0506_C06_024M,S0506_C06_024MA"}, "S2602_C02_032E": {"label": "Estimate!!Total group quarters population!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C02_032EA,S2602_C02_032M,S2602_C02_032MA"}, "S0804_C02_016E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_016EA,S0804_C02_016M,S0804_C02_016MA"}, "S2603_C05_021E": {"label": "Estimate!!Juvenile Facilities!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C05_021EA,S2603_C05_021M,S2603_C05_021MA"}, "S2601C_C02_017E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!65 years and over", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_017EA,S2601C_C02_017M,S2601C_C02_017MA"}, "S0506_C06_025E": {"label": "Estimate!!Foreign-born; Born in South America!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_025EA,S0506_C06_025M,S0506_C06_025MA"}, "S0804_C02_013E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_013EA,S0804_C02_013M,S0804_C02_013MA"}, "S0505_C06_017E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Foreign-born population!!SEX AND AGE!!55 to 64 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_017EA,S0505_C06_017M,S0505_C06_017MA"}, "S2603_C05_024E": {"label": "Estimate!!Juvenile Facilities!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C05_024EA,S2603_C05_024M,S2603_C05_024MA"}, "S2601C_C02_018E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!65 years and over!!Male", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_018EA,S2601C_C02_018M,S2601C_C02_018MA"}, "S0506_C06_026E": {"label": "Estimate!!Foreign-born; Born in South America!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_026EA,S0506_C06_026M,S0506_C06_026MA"}, "S0804_C02_014E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_014EA,S0804_C02_014M,S0804_C02_014MA"}, "S0505_C06_018E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Foreign-born population!!SEX AND AGE!!65 to 74 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_018EA,S0505_C06_018M,S0505_C06_018MA"}, "S2602_C02_030E": {"label": "Estimate!!Total group quarters population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!White alone, Not Hispanic or Latino", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C02_030EA,S2602_C02_030M,S2602_C02_030MA"}, "S2603_C05_023E": {"label": "Estimate!!Juvenile Facilities!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C05_023EA,S2603_C05_023M,S2603_C05_023MA"}, "S0506_C06_027E": {"label": "Estimate!!Foreign-born; Born in South America!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_027EA,S0506_C06_027M,S0506_C06_027MA"}, "S2601C_C02_019E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!65 years and over!!Female", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_019EA,S2601C_C02_019M,S2601C_C02_019MA"}, "S0804_C02_019E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_019EA,S0804_C02_019M,S0804_C02_019MA"}, "S2602_C02_035E": {"label": "Estimate!!Total group quarters population!!MARITAL STATUS!!Population 15 years and over!!Separated", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C02_035EA,S2602_C02_035M,S2602_C02_035MA"}, "S2601C_C02_011E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!65 to 74 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_011EA,S2601C_C02_011M,S2601C_C02_011MA"}, "S0506_C06_020E": {"label": "Estimate!!Foreign-born; Born in South America!!Foreign-born population!!SEX AND AGE!!85 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_020EA,S0506_C06_020M,S0506_C06_020MA"}, "S2602_C02_036E": {"label": "Estimate!!Total group quarters population!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C02_036EA,S2602_C02_036M,S2602_C02_036MA"}, "S2601C_C02_012E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!75 to 84 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_012EA,S2601C_C02_012M,S2601C_C02_012MA"}, "S0506_C06_021E": {"label": "Estimate!!Foreign-born; Born in South America!!Foreign-born population!!SEX AND AGE!!Median age (years)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_021EA,S0506_C06_021M,S0506_C06_021MA"}, "S2602_C02_033E": {"label": "Estimate!!Total group quarters population!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C02_033EA,S2602_C02_033M,S2602_C02_033MA"}, "S2601C_C02_013E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!85 years and over", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_013EA,S2601C_C02_013M,S2601C_C02_013MA"}, "S0804_C02_017E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_017EA,S0804_C02_017M,S0804_C02_017MA"}, "S2603_C05_020E": {"label": "Estimate!!Juvenile Facilities!!Total population!!SEX AND AGE!!Median age (years)", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C05_020EA,S2603_C05_020M,S2603_C05_020MA"}, "S0506_C06_022E": {"label": "Estimate!!Foreign-born; Born in South America!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_022EA,S0506_C06_022M,S0506_C06_022MA"}, "S2602_C02_034E": {"label": "Estimate!!Total group quarters population!!MARITAL STATUS!!Population 15 years and over!!Divorced", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C02_034EA,S2602_C02_034M,S2602_C02_034MA"}, "S2601C_C02_014E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!Under 18 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_014EA,S2601C_C02_014M,S2601C_C02_014MA"}, "S0804_C02_018E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_018EA,S0804_C02_018M,S0804_C02_018MA"}, "S2601C_C02_015E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!Under 18 years!!Male", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_015EA,S2601C_C02_015M,S2601C_C02_015MA"}, "S0506_C06_023E": {"label": "Estimate!!Foreign-born; Born in South America!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_023EA,S0506_C06_023M,S0506_C06_023MA"}, "S0505_C06_011E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Foreign-born population!!SEX AND AGE!!Female", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_011EA,S0505_C06_011M,S0505_C06_011MA"}, "S0501_C03_133E": {"label": "Estimate!!Foreign-born!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_133EA,S0501_C03_133M,S0501_C03_133MA"}, "S2602_C02_039E": {"label": "Estimate!!Total group quarters population!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!College or graduate school", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C02_039EA,S2602_C02_039M,S2602_C02_039MA"}, "S0505_C06_012E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Foreign-born population!!SEX AND AGE!!Under 5 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_012EA,S0505_C06_012M,S0505_C06_012MA"}, "S0501_C03_134E": {"label": "Estimate!!Foreign-born!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_134EA,S0501_C03_134M,S0501_C03_134MA"}, "S2602_C02_037E": {"label": "Estimate!!Total group quarters population!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C02_037EA,S2602_C02_037M,S2602_C02_037MA"}, "S1810_C01_068E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With an independent living difficulty!!Population 65 years and over!!Population 65 to 74 years", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C01_068EA,S1810_C01_068M,S1810_C01_068MA"}, "S0501_C03_135E": {"label": "Estimate!!Foreign-born!!Renter-occupied housing units", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C03_135EA,S0501_C03_135M,S0501_C03_135MA"}, "S1810_C01_069E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With an independent living difficulty!!Population 65 years and over!!Population 75 years and over", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C01_069EA,S1810_C01_069M,S1810_C01_069MA"}, "S0505_C06_010E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Foreign-born population!!SEX AND AGE!!Male", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_010EA,S0505_C06_010M,S0505_C06_010MA"}, "S2602_C02_038E": {"label": "Estimate!!Total group quarters population!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Nursery school through 12th grade", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C02_038EA,S2602_C02_038M,S2602_C02_038MA"}, "S0501_C03_136E": {"label": "Estimate!!Foreign-born!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_136EA,S0501_C03_136M,S0501_C03_136MA"}, "S1810_C01_066E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With an independent living difficulty!!Population 18 to 64 years!!Population 35 to 64 years", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C01_066EA,S1810_C01_066M,S1810_C01_066MA"}, "S0505_C06_015E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Foreign-born population!!SEX AND AGE!!25 to 44 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_015EA,S0505_C06_015M,S0505_C06_015MA"}, "S0501_C03_137E": {"label": "Estimate!!Foreign-born!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_137EA,S0501_C03_137M,S0501_C03_137MA"}, "S0804_C02_011E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_011EA,S0804_C02_011M,S0804_C02_011MA"}, "S2601C_C02_008E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!35 to 44 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_008EA,S2601C_C02_008M,S2601C_C02_008MA"}, "S0601_C04_023E": {"label": "Estimate!!Native; born outside U.S.!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "int", "group": "S0601", "limit": 0, "attributes": "S0601_C04_023EA,S0601_C04_023M,S0601_C04_023MA"}, "S0505_C06_016E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Foreign-born population!!SEX AND AGE!!45 to 54 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_016EA,S0505_C06_016M,S0505_C06_016MA"}, "S1810_C01_067E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With an independent living difficulty!!Population 65 years and over", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C01_067EA,S1810_C01_067M,S1810_C01_067MA"}, "S0804_C02_012E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_012EA,S0804_C02_012M,S0804_C02_012MA"}, "S2601C_C02_009E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!45 to 54 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_009EA,S2601C_C02_009M,S2601C_C02_009MA"}, "S0601_C04_022E": {"label": "Estimate!!Native; born outside U.S.!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C04_022EA,S0601_C04_022M,S0601_C04_022MA"}, "S0505_C06_013E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Foreign-born population!!SEX AND AGE!!5 to 17 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_013EA,S0505_C06_013M,S0505_C06_013MA"}, "S1810_C01_064E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With an independent living difficulty!!Population 18 to 64 years", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C01_064EA,S1810_C01_064M,S1810_C01_064MA"}, "S0601_C04_021E": {"label": "Estimate!!Native; born outside U.S.!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C04_021EA,S0601_C04_021M,S0601_C04_021MA"}, "S1810_C01_065E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With an independent living difficulty!!Population 18 to 64 years!!Population 18 to 34 years", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C01_065EA,S1810_C01_065M,S1810_C01_065MA"}, "S0505_C06_014E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Foreign-born population!!SEX AND AGE!!18 to 24 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_014EA,S0505_C06_014M,S0505_C06_014MA"}, "S0504_C03_029E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_029EA,S0504_C03_029M,S0504_C03_029MA"}, "S0804_C02_010E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!SEX!!Female", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_010EA,S0804_C02_010M,S0804_C02_010MA"}, "S0601_C04_020E": {"label": "Estimate!!Native; born outside U.S.!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C04_020EA,S0601_C04_020M,S0601_C04_020MA"}, "S0601_C04_027E": {"label": "Estimate!!Native; born outside U.S.!!MARITAL STATUS!!Population 15 years and over", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "int", "group": "S0601", "limit": 0, "attributes": "S0601_C04_027EA,S0601_C04_027M,S0601_C04_027MA"}, "S2503_C04_003E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$5,000 to $9,999", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C04_003EA,S2503_C04_003M,S2503_C04_003MA"}, "S1810_C01_062E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a self-care difficulty!!Population 65 years and over!!Population 75 years and over", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C01_062EA,S1810_C01_062M,S1810_C01_062MA"}, "S0504_C03_028E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_028EA,S0504_C03_028M,S0504_C03_028MA"}, "S0601_C04_026E": {"label": "Estimate!!Native; born outside U.S.!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Speak language other than English!!Speak English less than \"very well\"", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C04_026EA,S0601_C04_026M,S0601_C04_026MA"}, "S0504_C03_027E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_027EA,S0504_C03_027M,S0504_C03_027MA"}, "S1810_C01_063E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With an independent living difficulty", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C01_063EA,S1810_C01_063M,S1810_C01_063MA"}, "S2503_C04_004E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$10,000 to $14,999", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C04_004EA,S2503_C04_004M,S2503_C04_004MA"}, "S0601_C04_025E": {"label": "Estimate!!Native; born outside U.S.!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Speak language other than English!!Speak English \"very well\"", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C04_025EA,S0601_C04_025M,S0601_C04_025MA"}, "S2503_C04_001E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C04_001EA,S2503_C04_001M,S2503_C04_001MA"}, "S1703_C02_029E": {"label": "Estimate!!Less than 50 percent of the poverty level!!Population for whom poverty status is determined!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born!!Naturalized citizen", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C02_029EA,S1703_C02_029M,S1703_C02_029MA"}, "S0504_C03_026E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_026EA,S0504_C03_026M,S0504_C03_026MA"}, "S1810_C01_060E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a self-care difficulty!!Population 65 years and over", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C01_060EA,S1810_C01_060M,S1810_C01_060MA"}, "S2414_C04_009E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Full-time, year-round civilian employed population 16 years and over with earnings!!Transportation and warehousing, and utilities:", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2414", "limit": 0, "attributes": "S2414_C04_009EA,S2414_C04_009M,S2414_C04_009MA"}, "S2506_C01_040E": {"label": "Estimate!!Owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!MONTHLY HOUSING COSTS!!Median (dollars)", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "int", "group": "S2506", "limit": 0, "attributes": "S2506_C01_040EA,S2506_C01_040M,S2506_C01_040MA"}, "S2503_C04_002E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Less than $5,000", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C04_002EA,S2503_C04_002M,S2503_C04_002MA"}, "S1810_C01_061E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a self-care difficulty!!Population 65 years and over!!Population 65 to 74 years", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C01_061EA,S1810_C01_061M,S1810_C01_061MA"}, "S0504_C03_025E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_025EA,S0504_C03_025M,S0504_C03_025MA"}, "S0601_C04_024E": {"label": "Estimate!!Native; born outside U.S.!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Speak language other than English", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C04_024EA,S0601_C04_024M,S0601_C04_024MA"}, "S1703_C02_027E": {"label": "Estimate!!Less than 50 percent of the poverty level!!Population for whom poverty status is determined!!NATIVITY AND CITIZENSHIP STATUS!!Native", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C02_027EA,S1703_C02_027M,S1703_C02_027MA"}, "S2506_C01_041E": {"label": "Estimate!!Owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than $20,000", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "int", "group": "S2506", "limit": 0, "attributes": "S2506_C01_041EA,S2506_C01_041M,S2506_C01_041MA"}, "S2002_C01_063E": {"label": "Estimate!!Total!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!CLASS OF WORKER!!Private not-for-profit wage and salary workers", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C01_063EA,S2002_C01_063M,S2002_C01_063MA"}, "S0504_C03_024E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_024EA,S0504_C03_024M,S0504_C03_024MA"}, "S2002_C01_062E": {"label": "Estimate!!Total!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!CLASS OF WORKER!!Self employed in own incorporated business workers", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C01_062EA,S2002_C01_062M,S2002_C01_062MA"}, "S2503_C04_007E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$25,000 to $34,999", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C04_007EA,S2503_C04_007M,S2503_C04_007MA"}, "S2414_C04_007E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Full-time, year-round civilian employed population 16 years and over with earnings!!Wholesale trade", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2414", "limit": 0, "attributes": "S2414_C04_007EA,S2414_C04_007M,S2414_C04_007MA"}, "S1703_C02_028E": {"label": "Estimate!!Less than 50 percent of the poverty level!!Population for whom poverty status is determined!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C02_028EA,S1703_C02_028M,S1703_C02_028MA"}, "S2506_C01_042E": {"label": "Estimate!!Owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than $20,000!!Less than 20 percent", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "int", "group": "S2506", "limit": 0, "attributes": "S2506_C01_042EA,S2506_C01_042M,S2506_C01_042MA"}, "S0504_C03_023E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_023EA,S0504_C03_023M,S0504_C03_023MA"}, "S2002_C01_061E": {"label": "Estimate!!Total!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!CLASS OF WORKER!!Employee of private company workers", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C01_061EA,S2002_C01_061M,S2002_C01_061MA"}, "S2503_C04_008E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$35,000 to $49,999", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C04_008EA,S2503_C04_008M,S2503_C04_008MA"}, "S0501_C03_130E": {"label": "Estimate!!Foreign-born!!Occupied housing units!!SELECTED CHARACTERISTICS!!No telephone service available", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_130EA,S0501_C03_130M,S0501_C03_130MA"}, "S2414_C04_008E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Full-time, year-round civilian employed population 16 years and over with earnings!!Retail trade", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2414", "limit": 0, "attributes": "S2414_C04_008EA,S2414_C04_008M,S2414_C04_008MA"}, "S2506_C01_043E": {"label": "Estimate!!Owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than $20,000!!20 to 29 percent", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "int", "group": "S2506", "limit": 0, "attributes": "S2506_C01_043EA,S2506_C01_043M,S2506_C01_043MA"}, "S1703_C02_025E": {"label": "Estimate!!Less than 50 percent of the poverty level!!Population for whom poverty status is determined!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college or associate's degree", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C02_025EA,S1703_C02_025M,S1703_C02_025MA"}, "S0601_C04_029E": {"label": "Estimate!!Native; born outside U.S.!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C04_029EA,S0601_C04_029M,S0601_C04_029MA"}, "S2002_C01_060E": {"label": "Estimate!!Total!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Public administration", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C01_060EA,S2002_C01_060M,S2002_C01_060MA"}, "S0504_C03_022E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_022EA,S0504_C03_022M,S0504_C03_022MA"}, "S2503_C04_005E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$15,000 to $19,999", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C04_005EA,S2503_C04_005M,S2503_C04_005MA"}, "S0501_C03_131E": {"label": "Estimate!!Foreign-born!!Occupied housing units!!SELECTED CHARACTERISTICS!!Limited English Speaking Households", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_131EA,S0501_C03_131M,S0501_C03_131MA"}, "S2414_C04_005E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Full-time, year-round civilian employed population 16 years and over with earnings!!Construction", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2414", "limit": 0, "attributes": "S2414_C04_005EA,S2414_C04_005M,S2414_C04_005MA"}, "S1703_C02_026E": {"label": "Estimate!!Less than 50 percent of the poverty level!!Population for whom poverty status is determined!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree or higher", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C02_026EA,S1703_C02_026M,S1703_C02_026MA"}, "S0601_C04_028E": {"label": "Estimate!!Native; born outside U.S.!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C04_028EA,S0601_C04_028M,S0601_C04_028MA"}, "S2506_C01_044E": {"label": "Estimate!!Owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than $20,000!!30 percent or more", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "int", "group": "S2506", "limit": 0, "attributes": "S2506_C01_044EA,S2506_C01_044M,S2506_C01_044MA"}, "S0504_C03_021E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Foreign-born population!!SEX AND AGE!!Median age (years)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_021EA,S0504_C03_021M,S0504_C03_021MA"}, "S2503_C04_006E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$20,000 to $24,999", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C04_006EA,S2503_C04_006M,S2503_C04_006MA"}, "S0501_C03_132E": {"label": "Estimate!!Foreign-born!!Owner-occupied housing units", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C03_132EA,S0501_C03_132M,S0501_C03_132MA"}, "S2414_C04_006E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Full-time, year-round civilian employed population 16 years and over with earnings!!Manufacturing", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2414", "limit": 0, "attributes": "S2414_C04_006EA,S2414_C04_006M,S2414_C04_006MA"}, "S2506_C01_021E": {"label": "Estimate!!Owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$75,000 to $99,999", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "int", "group": "S2506", "limit": 0, "attributes": "S2506_C01_021EA,S2506_C01_021M,S2506_C01_021MA"}, "S2002_C01_043E": {"label": "Estimate!!Total!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Construction", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C01_043EA,S2002_C01_043M,S2002_C01_043MA"}, "S2409_C03_008E": {"label": "Estimate!!Percent Male!!Full-time, year-round civilian employed population 16 years and over!!Federal government workers", "concept": "Class of Worker by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2409", "limit": 0, "attributes": "S2409_C03_008EA,S2409_C03_008M,S2409_C03_008MA"}, "S2603_C05_018E": {"label": "Estimate!!Juvenile Facilities!!Total population!!SEX AND AGE!!65 years and over!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C05_018EA,S2603_C05_018M,S2603_C05_018MA"}, "S0504_C03_032E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Foreign-born population!!HOUSEHOLD TYPE!!In married-couple family", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_032EA,S0504_C03_032M,S0504_C03_032MA"}, "S1703_C02_035E": {"label": "Estimate!!Less than 50 percent of the poverty level!!WORK STATUS!!Population 16 to 64 years!!Did not work", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C02_035EA,S1703_C02_035M,S1703_C02_035MA"}, "S2409_C03_007E": {"label": "Estimate!!Percent Male!!Full-time, year-round civilian employed population 16 years and over!!State government workers", "concept": "Class of Worker by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2409", "limit": 0, "attributes": "S2409_C03_007EA,S2409_C03_007M,S2409_C03_007MA"}, "S2506_C01_022E": {"label": "Estimate!!Owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$100,000 to $149,999", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "int", "group": "S2506", "limit": 0, "attributes": "S2506_C01_022EA,S2506_C01_022M,S2506_C01_022MA"}, "S2002_C01_042E": {"label": "Estimate!!Total!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Mining, quarrying, and oil and gas extraction", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C01_042EA,S2002_C01_042M,S2002_C01_042MA"}, "S2601C_C02_020E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!Median age (years)", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_020EA,S2601C_C02_020M,S2601C_C02_020MA"}, "S2603_C05_017E": {"label": "Estimate!!Juvenile Facilities!!Total population!!SEX AND AGE!!65 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C05_017EA,S2603_C05_017M,S2603_C05_017MA"}, "S0504_C03_031E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_031EA,S0504_C03_031M,S0504_C03_031MA"}, "S0804_C02_009E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!SEX!!Male", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_009EA,S0804_C02_009M,S0804_C02_009MA"}, "S2506_C01_023E": {"label": "Estimate!!Owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$150,000 or more", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "int", "group": "S2506", "limit": 0, "attributes": "S2506_C01_023EA,S2506_C01_023M,S2506_C01_023MA"}, "S2002_C01_041E": {"label": "Estimate!!Total!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Agriculture, forestry, fishing and hunting", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C01_041EA,S2002_C01_041M,S2002_C01_041MA"}, "S2601C_C02_021E": {"label": "Estimate!!Total group quarters population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_021EA,S2601C_C02_021M,S2601C_C02_021MA"}, "S0504_C03_030E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_030EA,S0504_C03_030M,S0504_C03_030MA"}, "S2002_C01_040E": {"label": "Estimate!!Total!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Material moving occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C01_040EA,S2002_C01_040M,S2002_C01_040MA"}, "S1703_C02_033E": {"label": "Estimate!!Less than 50 percent of the poverty level!!WORK STATUS!!Population 16 to 64 years!!Worked full-time, year-round", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C02_033EA,S1703_C02_033M,S1703_C02_033MA"}, "S2506_C01_024E": {"label": "Estimate!!Owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Median household income (dollars)", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "int", "group": "S2506", "limit": 0, "attributes": "S2506_C01_024EA,S2506_C01_024M,S2506_C01_024MA"}, "S2601C_C02_022E": {"label": "Estimate!!Total group quarters population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!White", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_022EA,S2601C_C02_022M,S2601C_C02_022MA"}, "S2409_C03_009E": {"label": "Estimate!!Percent Male!!Full-time, year-round civilian employed population 16 years and over!!Self-employed in own not incorporated business workers and unpaid family workers", "concept": "Class of Worker by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2409", "limit": 0, "attributes": "S2409_C03_009EA,S2409_C03_009M,S2409_C03_009MA"}, "S2603_C05_019E": {"label": "Estimate!!Juvenile Facilities!!Total population!!SEX AND AGE!!65 years and over!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C05_019EA,S2603_C05_019M,S2603_C05_019MA"}, "S1703_C02_034E": {"label": "Estimate!!Less than 50 percent of the poverty level!!WORK STATUS!!Population 16 to 64 years!!Worked less than full-time, year-round", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C02_034EA,S1703_C02_034M,S1703_C02_034MA"}, "S2409_C03_004E": {"label": "Estimate!!Percent Male!!Full-time, year-round civilian employed population 16 years and over!!Private for-profit wage and salary workers:!!Self-employed in own incorporated business workers", "concept": "Class of Worker by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2409", "limit": 0, "attributes": "S2409_C03_004EA,S2409_C03_004M,S2409_C03_004MA"}, "S2506_C01_025E": {"label": "Estimate!!Owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!RATIO OF VALUE TO HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 2.0", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "int", "group": "S2506", "limit": 0, "attributes": "S2506_C01_025EA,S2506_C01_025M,S2506_C01_025MA"}, "S0801_C02_003E": {"label": "Estimate!!Male!!Workers 16 years and over!!MEANS OF TRANSPORTATION TO WORK!!Car, truck, or van!!Drove alone", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C02_003EA,S0801_C02_003M,S0801_C02_003MA"}, "S2002_C01_047E": {"label": "Estimate!!Total!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Transportation and warehousing", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C01_047EA,S2002_C01_047M,S2002_C01_047MA"}, "S0506_C06_016E": {"label": "Estimate!!Foreign-born; Born in South America!!Foreign-born population!!SEX AND AGE!!45 to 54 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_016EA,S0506_C06_016M,S0506_C06_016MA"}, "S2603_C05_014E": {"label": "Estimate!!Juvenile Facilities!!Total population!!SEX AND AGE!!Under 18 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C05_014EA,S2603_C05_014M,S2603_C05_014MA"}, "S1703_C02_031E": {"label": "Estimate!!Less than 50 percent of the poverty level!!Population for whom poverty status is determined!!DISABILITY STATUS!!No disability", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C02_031EA,S1703_C02_031M,S1703_C02_031MA"}, "S2409_C03_003E": {"label": "Estimate!!Percent Male!!Full-time, year-round civilian employed population 16 years and over!!Private for-profit wage and salary workers:!!Employee of private company workers", "concept": "Class of Worker by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2409", "limit": 0, "attributes": "S2409_C03_003EA,S2409_C03_003M,S2409_C03_003MA"}, "S2002_C01_046E": {"label": "Estimate!!Total!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Retail trade", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C01_046EA,S2002_C01_046M,S2002_C01_046MA"}, "S0506_C06_017E": {"label": "Estimate!!Foreign-born; Born in South America!!Foreign-born population!!SEX AND AGE!!55 to 64 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_017EA,S0506_C06_017M,S0506_C06_017MA"}, "S2603_C05_013E": {"label": "Estimate!!Juvenile Facilities!!Total population!!SEX AND AGE!!85 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C05_013EA,S2603_C05_013M,S2603_C05_013MA"}, "S0801_C02_002E": {"label": "Estimate!!Male!!Workers 16 years and over!!MEANS OF TRANSPORTATION TO WORK!!Car, truck, or van", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C02_002EA,S0801_C02_002M,S0801_C02_002MA"}, "S2506_C01_026E": {"label": "Estimate!!Owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!RATIO OF VALUE TO HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!2.0 to 2.9", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "int", "group": "S2506", "limit": 0, "attributes": "S2506_C01_026EA,S2506_C01_026M,S2506_C01_026MA"}, "S1703_C02_032E": {"label": "Estimate!!Less than 50 percent of the poverty level!!WORK STATUS!!Population 16 to 64 years", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C02_032EA,S1703_C02_032M,S1703_C02_032MA"}, "S2409_C03_006E": {"label": "Estimate!!Percent Male!!Full-time, year-round civilian employed population 16 years and over!!Local government workers", "concept": "Class of Worker by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2409", "limit": 0, "attributes": "S2409_C03_006EA,S2409_C03_006M,S2409_C03_006MA"}, "S2002_C01_045E": {"label": "Estimate!!Total!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Wholesale trade", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C01_045EA,S2002_C01_045M,S2002_C01_045MA"}, "S2603_C05_016E": {"label": "Estimate!!Juvenile Facilities!!Total population!!SEX AND AGE!!Under 18 years!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C05_016EA,S2603_C05_016M,S2603_C05_016MA"}, "S0506_C06_018E": {"label": "Estimate!!Foreign-born; Born in South America!!Foreign-born population!!SEX AND AGE!!65 to 74 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_018EA,S0506_C06_018M,S0506_C06_018MA"}, "S0801_C02_001E": {"label": "Estimate!!Male!!Workers 16 years and over", "concept": "Commuting Characteristics by Sex", "predicateType": "int", "group": "S0801", "limit": 0, "attributes": "S0801_C02_001EA,S0801_C02_001M,S0801_C02_001MA"}, "S2506_C01_027E": {"label": "Estimate!!Owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!RATIO OF VALUE TO HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!3.0 to 3.9", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "int", "group": "S2506", "limit": 0, "attributes": "S2506_C01_027EA,S2506_C01_027M,S2506_C01_027MA"}, "S2409_C03_005E": {"label": "Estimate!!Percent Male!!Full-time, year-round civilian employed population 16 years and over!!Private not-for-profit wage and salary workers", "concept": "Class of Worker by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2409", "limit": 0, "attributes": "S2409_C03_005EA,S2409_C03_005M,S2409_C03_005MA"}, "S2002_C01_044E": {"label": "Estimate!!Total!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Manufacturing", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C01_044EA,S2002_C01_044M,S2002_C01_044MA"}, "S2603_C05_015E": {"label": "Estimate!!Juvenile Facilities!!Total population!!SEX AND AGE!!Under 18 years!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C05_015EA,S2603_C05_015M,S2603_C05_015MA"}, "S0506_C06_019E": {"label": "Estimate!!Foreign-born; Born in South America!!Foreign-born population!!SEX AND AGE!!75 to 84 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_019EA,S0506_C06_019M,S0506_C06_019MA"}, "S2506_C01_028E": {"label": "Estimate!!Owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!RATIO OF VALUE TO HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!4.0 or more", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "int", "group": "S2506", "limit": 0, "attributes": "S2506_C01_028EA,S2506_C01_028M,S2506_C01_028MA"}, "S1703_C02_030E": {"label": "Estimate!!Less than 50 percent of the poverty level!!Population for whom poverty status is determined!!DISABILITY STATUS!!With any disability", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C02_030EA,S1703_C02_030M,S1703_C02_030MA"}, "S0801_C02_007E": {"label": "Estimate!!Male!!Workers 16 years and over!!MEANS OF TRANSPORTATION TO WORK!!Car, truck, or van!!Carpooled!!In 4-or-more person carpool", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C02_007EA,S0801_C02_007M,S0801_C02_007MA"}, "S0501_C03_117E": {"label": "Estimate!!Foreign-born!!Occupied housing units!!HOUSING TENURE!!Owner-occupied housing units", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_117EA,S0501_C03_117M,S0501_C03_117MA"}, "S0804_C02_003E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!AGE!!20 to 24 years", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_003EA,S0804_C02_003M,S0804_C02_003MA"}, "S2603_C05_010E": {"label": "Estimate!!Juvenile Facilities!!Total population!!SEX AND AGE!!55 to 64 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C05_010EA,S2603_C05_010M,S2603_C05_010MA"}, "S2601C_C02_028E": {"label": "Estimate!!Total group quarters population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!Two or more races", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_028EA,S2601C_C02_028M,S2601C_C02_028MA"}, "S2506_C01_029E": {"label": "Estimate!!Owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!RATIO OF VALUE TO HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Not computed", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "int", "group": "S2506", "limit": 0, "attributes": "S2506_C01_029EA,S2506_C01_029M,S2506_C01_029MA"}, "S0506_C06_012E": {"label": "Estimate!!Foreign-born; Born in South America!!Foreign-born population!!SEX AND AGE!!Under 5 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_012EA,S0506_C06_012M,S0506_C06_012MA"}, "S2602_C02_020E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!Median age (years)", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C02_020EA,S2602_C02_020M,S2602_C02_020MA"}, "S0501_C03_118E": {"label": "Estimate!!Foreign-born!!Occupied housing units!!HOUSING TENURE!!Renter-occupied housing units", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_118EA,S0501_C03_118M,S0501_C03_118MA"}, "S0801_C02_006E": {"label": "Estimate!!Male!!Workers 16 years and over!!MEANS OF TRANSPORTATION TO WORK!!Car, truck, or van!!Carpooled!!In 3-person carpool", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C02_006EA,S0801_C02_006M,S0801_C02_006MA"}, "S0804_C02_004E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!AGE!!25 to 44 years", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_004EA,S0804_C02_004M,S0804_C02_004MA"}, "S2601C_C02_029E": {"label": "Estimate!!Total group quarters population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!Hispanic or Latino (of any race)", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_029EA,S2601C_C02_029M,S2601C_C02_029MA"}, "S0506_C06_013E": {"label": "Estimate!!Foreign-born; Born in South America!!Foreign-born population!!SEX AND AGE!!5 to 17 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_013EA,S0506_C06_013M,S0506_C06_013MA"}, "S2002_C01_049E": {"label": "Estimate!!Total!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Information", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C01_049EA,S2002_C01_049M,S2002_C01_049MA"}, "S0501_C03_119E": {"label": "Estimate!!Foreign-born!!Occupied housing units!!HOUSING TENURE!!Average household size of owner-occupied unit", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_119EA,S0501_C03_119M,S0501_C03_119MA"}, "S0801_C02_005E": {"label": "Estimate!!Male!!Workers 16 years and over!!MEANS OF TRANSPORTATION TO WORK!!Car, truck, or van!!Carpooled!!In 2-person carpool", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C02_005EA,S0801_C02_005M,S0801_C02_005MA"}, "S0804_C02_001E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "int", "group": "S0804", "limit": 0, "attributes": "S0804_C02_001EA,S0804_C02_001M,S0804_C02_001MA"}, "S0505_C06_029E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_029EA,S0505_C06_029M,S0505_C06_029MA"}, "S2603_C05_012E": {"label": "Estimate!!Juvenile Facilities!!Total population!!SEX AND AGE!!75 to 84 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C05_012EA,S2603_C05_012M,S2603_C05_012MA"}, "S0506_C06_014E": {"label": "Estimate!!Foreign-born; Born in South America!!Foreign-born population!!SEX AND AGE!!18 to 24 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_014EA,S0506_C06_014M,S0506_C06_014MA"}, "S0801_C02_004E": {"label": "Estimate!!Male!!Workers 16 years and over!!MEANS OF TRANSPORTATION TO WORK!!Car, truck, or van!!Carpooled", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C02_004EA,S0801_C02_004M,S0801_C02_004MA"}, "S0804_C02_002E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!AGE!!16 to 19 years", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_002EA,S0804_C02_002M,S0804_C02_002MA"}, "S2603_C05_011E": {"label": "Estimate!!Juvenile Facilities!!Total population!!SEX AND AGE!!65 to 74 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C05_011EA,S2603_C05_011M,S2603_C05_011MA"}, "S2002_C01_048E": {"label": "Estimate!!Total!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Utilities", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C01_048EA,S2002_C01_048M,S2002_C01_048MA"}, "S0506_C06_015E": {"label": "Estimate!!Foreign-born; Born in South America!!Foreign-born population!!SEX AND AGE!!25 to 44 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_015EA,S0506_C06_015M,S0506_C06_015MA"}, "S2602_C02_023E": {"label": "Estimate!!Total group quarters population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C02_023EA,S2602_C02_023M,S2602_C02_023MA"}, "S2601C_C02_023E": {"label": "Estimate!!Total group quarters population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_023EA,S2601C_C02_023M,S2601C_C02_023MA"}, "S0804_C02_007E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!AGE!!60 years and over", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_007EA,S0804_C02_007M,S0804_C02_007MA"}, "S0804_C02_008E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!AGE!!Median age (years)", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_008EA,S0804_C02_008M,S0804_C02_008MA"}, "S2602_C02_024E": {"label": "Estimate!!Total group quarters population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C02_024EA,S2602_C02_024M,S2602_C02_024MA"}, "S2601C_C02_024E": {"label": "Estimate!!Total group quarters population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_024EA,S2601C_C02_024M,S2601C_C02_024MA"}, "S0801_C02_009E": {"label": "Estimate!!Male!!Workers 16 years and over!!MEANS OF TRANSPORTATION TO WORK!!Public transportation", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C02_009EA,S0801_C02_009M,S0801_C02_009MA"}, "S2602_C02_021E": {"label": "Estimate!!Total group quarters population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C02_021EA,S2602_C02_021M,S2602_C02_021MA"}, "S2601C_C02_025E": {"label": "Estimate!!Total group quarters population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Asian", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_025EA,S2601C_C02_025M,S2601C_C02_025MA"}, "S0804_C02_005E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!AGE!!45 to 54 years", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_005EA,S0804_C02_005M,S0804_C02_005MA"}, "S2601C_C02_026E": {"label": "Estimate!!Total group quarters population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_026EA,S2601C_C02_026M,S2601C_C02_026MA"}, "S0506_C06_010E": {"label": "Estimate!!Foreign-born; Born in South America!!Foreign-born population!!SEX AND AGE!!Male", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_010EA,S0506_C06_010M,S0506_C06_010MA"}, "S2602_C02_022E": {"label": "Estimate!!Total group quarters population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!White", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C02_022EA,S2602_C02_022M,S2602_C02_022MA"}, "S0801_C02_008E": {"label": "Estimate!!Male!!Workers 16 years and over!!MEANS OF TRANSPORTATION TO WORK!!Car, truck, or van!!Workers per car, truck, or van", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C02_008EA,S0801_C02_008M,S0801_C02_008MA"}, "S0804_C02_006E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!AGE!!55 to 59 years", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_006EA,S0804_C02_006M,S0804_C02_006MA"}, "S2601C_C02_027E": {"label": "Estimate!!Total group quarters population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Some other race", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_027EA,S2601C_C02_027M,S2601C_C02_027MA"}, "S0506_C06_011E": {"label": "Estimate!!Foreign-born; Born in South America!!Foreign-born population!!SEX AND AGE!!Female", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_011EA,S0506_C06_011M,S0506_C06_011MA"}, "S2502_C04_001E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C04_001EA,S2502_C04_001M,S2502_C04_001MA"}, "S0505_C06_023E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_023EA,S0505_C06_023M,S0505_C06_023MA"}, "S1810_C01_058E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a self-care difficulty!!Population 18 to 64 years!!Population 18 to 34 years", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C01_058EA,S1810_C01_058M,S1810_C01_058MA"}, "S2602_C02_027E": {"label": "Estimate!!Total group quarters population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Some other race", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C02_027EA,S2602_C02_027M,S2602_C02_027MA"}, "S0501_C03_121E": {"label": "Estimate!!Foreign-born!!Occupied housing units!!ROOMS!!1 room", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_121EA,S0501_C03_121M,S0501_C03_121MA"}, "S2502_C04_002E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!One race --!!White", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C04_002EA,S2502_C04_002M,S2502_C04_002MA"}, "S1810_C01_059E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a self-care difficulty!!Population 18 to 64 years!!Population 35 to 64 years", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C01_059EA,S1810_C01_059M,S1810_C01_059MA"}, "S0505_C06_024E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_024EA,S0505_C06_024M,S0505_C06_024MA"}, "S0501_C03_122E": {"label": "Estimate!!Foreign-born!!Occupied housing units!!ROOMS!!2 or 3 rooms", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_122EA,S0501_C03_122M,S0501_C03_122MA"}, "S2602_C02_028E": {"label": "Estimate!!Total group quarters population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!Two or more races", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C02_028EA,S2602_C02_028M,S2602_C02_028MA"}, "S2502_C04_003E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!One race --!!Black or African American", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C04_003EA,S2502_C04_003M,S2502_C04_003MA"}, "S0505_C06_021E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Foreign-born population!!SEX AND AGE!!Median age (years)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_021EA,S0505_C06_021M,S0505_C06_021MA"}, "S2602_C02_025E": {"label": "Estimate!!Total group quarters population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Asian", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C02_025EA,S2602_C02_025M,S2602_C02_025MA"}, "S1810_C01_056E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a self-care difficulty!!Population under 18 years", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C01_056EA,S1810_C01_056M,S1810_C01_056MA"}, "S2407_C06_001E": {"label": "Estimate!!Self-employed in own not incorporated business workers and unpaid family workers!!Civilian employed population 16 years and over", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2407", "limit": 0, "attributes": "S2407_C06_001EA,S2407_C06_001M,S2407_C06_001MA"}, "S0501_C03_123E": {"label": "Estimate!!Foreign-born!!Occupied housing units!!ROOMS!!4 or 5 rooms", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_123EA,S0501_C03_123M,S0501_C03_123MA"}, "S2502_C04_004E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!One race --!!American Indian and Alaska Native", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C04_004EA,S2502_C04_004M,S2502_C04_004MA"}, "S0505_C06_022E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_022EA,S0505_C06_022M,S0505_C06_022MA"}, "S2502_C04_005E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!One race --!!Asian", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C04_005EA,S2502_C04_005M,S2502_C04_005MA"}, "S2602_C02_026E": {"label": "Estimate!!Total group quarters population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C02_026EA,S2602_C02_026M,S2602_C02_026MA"}, "S1810_C01_057E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a self-care difficulty!!Population 18 to 64 years", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C01_057EA,S1810_C01_057M,S1810_C01_057MA"}, "S0501_C03_124E": {"label": "Estimate!!Foreign-born!!Occupied housing units!!ROOMS!!6 or 7 rooms", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_124EA,S0501_C03_124M,S0501_C03_124MA"}, "S2502_C04_006E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!One race --!!Native Hawaiian and Other Pacific Islander", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C04_006EA,S2502_C04_006M,S2502_C04_006MA"}, "S0505_C06_027E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_027EA,S0505_C06_027M,S0505_C06_027MA"}, "S1810_C01_054E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With an ambulatory difficulty!!Population 65 years and over!!Population 75 years and over", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C01_054EA,S1810_C01_054M,S1810_C01_054MA"}, "S0501_C03_125E": {"label": "Estimate!!Foreign-born!!Occupied housing units!!ROOMS!!8 or more rooms", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_125EA,S0501_C03_125M,S0501_C03_125MA"}, "S0601_C04_011E": {"label": "Estimate!!Native; born outside U.S.!!Total population!!SEX!!Male", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C04_011EA,S0601_C04_011M,S0601_C04_011MA"}, "S2407_C06_003E": {"label": "Estimate!!Self-employed in own not incorporated business workers and unpaid family workers!!Civilian employed population 16 years and over!!Construction", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2407", "limit": 0, "attributes": "S2407_C06_003EA,S2407_C06_003M,S2407_C06_003MA"}, "S2502_C04_007E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!One race --!!Some other race", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C04_007EA,S2502_C04_007M,S2502_C04_007MA"}, "S1810_C01_055E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a self-care difficulty", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C01_055EA,S1810_C01_055M,S1810_C01_055MA"}, "S0501_C03_126E": {"label": "Estimate!!Foreign-born!!Occupied housing units!!Median number of rooms", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_126EA,S0501_C03_126M,S0501_C03_126MA"}, "S0505_C06_028E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_028EA,S0505_C06_028M,S0505_C06_028MA"}, "S2407_C06_002E": {"label": "Estimate!!Self-employed in own not incorporated business workers and unpaid family workers!!Civilian employed population 16 years and over!!Agriculture, forestry, fishing and hunting, and mining", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2407", "limit": 0, "attributes": "S2407_C06_002EA,S2407_C06_002M,S2407_C06_002MA"}, "S0601_C04_010E": {"label": "Estimate!!Native; born outside U.S.!!Total population!!AGE!!Median age (years)", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C04_010EA,S0601_C04_010M,S0601_C04_010MA"}, "S2502_C04_008E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Two or more races", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C04_008EA,S2502_C04_008M,S2502_C04_008MA"}, "S0501_C03_127E": {"label": "Estimate!!Foreign-born!!Occupied housing units!!1.01 or more occupants per room", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_127EA,S0501_C03_127M,S0501_C03_127MA"}, "S0505_C06_025E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_025EA,S0505_C06_025M,S0505_C06_025MA"}, "S1810_C01_052E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With an ambulatory difficulty!!Population 65 years and over", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C01_052EA,S1810_C01_052M,S1810_C01_052MA"}, "S2602_C02_029E": {"label": "Estimate!!Total group quarters population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!Hispanic or Latino (of any race)", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C02_029EA,S2602_C02_029M,S2602_C02_029MA"}, "S2407_C06_005E": {"label": "Estimate!!Self-employed in own not incorporated business workers and unpaid family workers!!Civilian employed population 16 years and over!!Wholesale trade", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2407", "limit": 0, "attributes": "S2407_C06_005EA,S2407_C06_005M,S2407_C06_005MA"}, "S0501_C03_128E": {"label": "Estimate!!Foreign-born!!Occupied housing units!!VEHICLES AVAILABLE!!None", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_128EA,S0501_C03_128M,S0501_C03_128MA"}, "S0505_C06_026E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_026EA,S0505_C06_026M,S0505_C06_026MA"}, "S2502_C04_009E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Hispanic or Latino origin", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C04_009EA,S2502_C04_009M,S2502_C04_009MA"}, "S1810_C01_053E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With an ambulatory difficulty!!Population 65 years and over!!Population 65 to 74 years", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C01_053EA,S1810_C01_053M,S1810_C01_053MA"}, "S2407_C06_004E": {"label": "Estimate!!Self-employed in own not incorporated business workers and unpaid family workers!!Civilian employed population 16 years and over!!Manufacturing", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2407", "limit": 0, "attributes": "S2407_C06_004EA,S2407_C06_004M,S2407_C06_004MA"}, "S0601_C04_015E": {"label": "Estimate!!Native; born outside U.S.!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C04_015EA,S0601_C04_015M,S0601_C04_015MA"}, "S1810_C01_050E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With an ambulatory difficulty!!Population 18 to 64 years!!Population 18 to 34 years", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C01_050EA,S1810_C01_050M,S1810_C01_050MA"}, "S0601_C04_014E": {"label": "Estimate!!Native; born outside U.S.!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C04_014EA,S0601_C04_014M,S0601_C04_014MA"}, "S1810_C01_051E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With an ambulatory difficulty!!Population 18 to 64 years!!Population 35 to 64 years", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C01_051EA,S1810_C01_051M,S1810_C01_051MA"}, "S0504_C03_039E": {"label": "Estimate!!Foreign-born; Born in Northern America!!MARITAL STATUS!!Population 15 years and over!!Divorced or separated", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_039EA,S0504_C03_039M,S0504_C03_039MA"}, "S0701PR_C03_056E": {"label": "Estimate!!Moved; from different municipio!!PERCENT ALLOCATED!!Residence 1 year ago", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "int", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C03_056EA,S0701PR_C03_056M,S0701PR_C03_056MA"}, "S0504_C03_038E": {"label": "Estimate!!Foreign-born; Born in Northern America!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_038EA,S0504_C03_038M,S0504_C03_038MA"}, "S0701PR_C03_055E": {"label": "Estimate!!Moved; from different municipio!!HOUSING TENURE!!Population 1 year and over in housing units!!Householder lived in renter-occupied housing units", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C03_055EA,S0701PR_C03_055M,S0701PR_C03_055MA"}, "S0601_C04_013E": {"label": "Estimate!!Native; born outside U.S.!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C04_013EA,S0601_C04_013M,S0601_C04_013MA"}, "S0504_C03_037E": {"label": "Estimate!!Foreign-born; Born in Northern America!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_037EA,S0504_C03_037M,S0504_C03_037MA"}, "S0701PR_C03_054E": {"label": "Estimate!!Moved; from different municipio!!HOUSING TENURE!!Population 1 year and over in housing units!!Householder lived in owner-occupied housing units", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C03_054EA,S0701PR_C03_054M,S0701PR_C03_054MA"}, "S0601_C04_012E": {"label": "Estimate!!Native; born outside U.S.!!Total population!!SEX!!Female", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C04_012EA,S0601_C04_012M,S0601_C04_012MA"}, "S0601_C04_019E": {"label": "Estimate!!Native; born outside U.S.!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C04_019EA,S0601_C04_019M,S0601_C04_019MA"}, "S0504_C03_036E": {"label": "Estimate!!Foreign-born; Born in Northern America!!MARITAL STATUS!!Population 15 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C03_036EA,S0504_C03_036M,S0504_C03_036MA"}, "S2002_C01_050E": {"label": "Estimate!!Total!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Finance and insurance", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C01_050EA,S2002_C01_050M,S2002_C01_050MA"}, "S2506_C01_030E": {"label": "Estimate!!Owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!MONTHLY HOUSING COSTS!!Less than $200", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "int", "group": "S2506", "limit": 0, "attributes": "S2506_C01_030EA,S2506_C01_030M,S2506_C01_030MA"}, "S0505_C06_020E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Foreign-born population!!SEX AND AGE!!85 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_020EA,S0505_C06_020M,S0505_C06_020MA"}, "S0601_C04_018E": {"label": "Estimate!!Native; born outside U.S.!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C04_018EA,S0601_C04_018M,S0601_C04_018MA"}, "S0504_C03_035E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Foreign-born population!!Average family size", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_035EA,S0504_C03_035M,S0504_C03_035MA"}, "S2506_C01_031E": {"label": "Estimate!!Owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!MONTHLY HOUSING COSTS!!$200 to $399", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "int", "group": "S2506", "limit": 0, "attributes": "S2506_C01_031EA,S2506_C01_031M,S2506_C01_031MA"}, "S0601_C04_017E": {"label": "Estimate!!Native; born outside U.S.!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C04_017EA,S0601_C04_017M,S0601_C04_017MA"}, "S0504_C03_034E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Foreign-born population!!Average household size", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_034EA,S0504_C03_034M,S0504_C03_034MA"}, "S2506_C01_032E": {"label": "Estimate!!Owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!MONTHLY HOUSING COSTS!!$400 to $599", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "int", "group": "S2506", "limit": 0, "attributes": "S2506_C01_032EA,S2506_C01_032M,S2506_C01_032MA"}, "S0601_C04_016E": {"label": "Estimate!!Native; born outside U.S.!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C04_016EA,S0601_C04_016M,S0601_C04_016MA"}, "S0504_C03_033E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Foreign-born population!!HOUSEHOLD TYPE!!In other households", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_033EA,S0504_C03_033M,S0504_C03_033MA"}, "S0501_C03_120E": {"label": "Estimate!!Foreign-born!!Occupied housing units!!HOUSING TENURE!!Average household size of renter-occupied unit", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_120EA,S0501_C03_120M,S0501_C03_120MA"}, "S2506_C01_057E": {"label": "Estimate!!Owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$75,000 or more", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "int", "group": "S2506", "limit": 0, "attributes": "S2506_C01_057EA,S2506_C01_057M,S2506_C01_057MA"}, "S2002_C01_031E": {"label": "Estimate!!Total!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Building and grounds cleaning and maintenance occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C01_031EA,S2002_C01_031M,S2002_C01_031MA"}, "S2303_C03_021E": {"label": "Estimate!!Male!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 15 to 34 hours per week!!14 to 26 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C03_021EA,S2303_C03_021M,S2303_C03_021MA"}, "S0502_C04_094E": {"label": "Estimate!!Foreign-born; Entered before 2000!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$50,000 to $74,999", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_094EA,S0502_C04_094M,S0502_C04_094MA"}, "S0506_C06_008E": {"label": "Estimate!!Foreign-born; Born in South America!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen!!Entered 2000 to 2009", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_008EA,S0506_C06_008M,S0506_C06_008MA"}, "S0504_C03_044E": {"label": "Estimate!!Foreign-born; Born in Northern America!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!High school (grades 9-12)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_044EA,S0504_C03_044M,S0504_C03_044MA"}, "S2702_C02_103E": {"label": "Estimate!!Total Uninsured!!RATIO OF INCOME TO POVERTY LEVEL IN THE PAST 12 MONTHS!!Civilian noninstitutionalized population for whom poverty status is determined!!150 to 199 percent of the poverty level", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_103EA,S2702_C02_103M,S2702_C02_103MA"}, "S2506_C01_058E": {"label": "Estimate!!Owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$75,000 or more!!Less than 20 percent", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "int", "group": "S2506", "limit": 0, "attributes": "S2506_C01_058EA,S2506_C01_058M,S2506_C01_058MA"}, "S2303_C03_020E": {"label": "Estimate!!Male!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 15 to 34 hours per week!!27 to 39 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C03_020EA,S2303_C03_020M,S2303_C03_020MA"}, "S2002_C01_030E": {"label": "Estimate!!Total!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Food preparation and serving related occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C01_030EA,S2002_C01_030M,S2002_C01_030MA"}, "S2702_C02_104E": {"label": "Estimate!!Total Uninsured!!RATIO OF INCOME TO POVERTY LEVEL IN THE PAST 12 MONTHS!!Civilian noninstitutionalized population for whom poverty status is determined!!200 to 299 percent of the poverty level", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_104EA,S2702_C02_104M,S2702_C02_104MA"}, "S0502_C04_095E": {"label": "Estimate!!Foreign-born; Entered before 2000!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$75,000 or more", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_095EA,S0502_C04_095M,S0502_C04_095MA"}, "S0506_C06_009E": {"label": "Estimate!!Foreign-born; Born in South America!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen!!Entered before 2000", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_009EA,S0506_C06_009M,S0506_C06_009MA"}, "S0504_C03_043E": {"label": "Estimate!!Foreign-born; Born in Northern America!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Elementary school (grades K-8)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_043EA,S0504_C03_043M,S0504_C03_043MA"}, "S0601_C04_009E": {"label": "Estimate!!Native; born outside U.S.!!Total population!!AGE!!75 years and over", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C04_009EA,S0601_C04_009M,S0601_C04_009MA"}, "S2702_C02_105E": {"label": "Estimate!!Total Uninsured!!RATIO OF INCOME TO POVERTY LEVEL IN THE PAST 12 MONTHS!!Civilian noninstitutionalized population for whom poverty status is determined!!At or above 300 percent of the poverty level", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_105EA,S2702_C02_105M,S2702_C02_105MA"}, "S2303_C03_023E": {"label": "Estimate!!Male!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 1 to 14 hours per week", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C03_023EA,S2303_C03_023M,S2303_C03_023MA"}, "S0502_C04_096E": {"label": "Estimate!!Foreign-born; Entered before 2000!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!Median earnings (dollars) for full-time, year-round workers!!Male", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C04_096EA,S0502_C04_096M,S0502_C04_096MA"}, "S0504_C03_042E": {"label": "Estimate!!Foreign-born; Born in Northern America!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Nursery school, preschool", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_042EA,S0504_C03_042M,S0504_C03_042MA"}, "S2506_C01_059E": {"label": "Estimate!!Owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$75,000 or more!!20 to 29 percent", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "int", "group": "S2506", "limit": 0, "attributes": "S2506_C01_059EA,S2506_C01_059M,S2506_C01_059MA"}, "S0601_C04_008E": {"label": "Estimate!!Native; born outside U.S.!!Total population!!AGE!!65 to 74 years", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C04_008EA,S0601_C04_008M,S0601_C04_008MA"}, "S2303_C03_022E": {"label": "Estimate!!Male!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 15 to 34 hours per week!!1 to 13 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C03_022EA,S2303_C03_022M,S2303_C03_022MA"}, "S0504_C03_041E": {"label": "Estimate!!Foreign-born; Born in Northern America!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C03_041EA,S0504_C03_041M,S0504_C03_041MA"}, "S0502_C04_097E": {"label": "Estimate!!Foreign-born; Entered before 2000!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!Median earnings (dollars) for full-time, year-round workers!!Female", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C04_097EA,S0502_C04_097M,S0502_C04_097MA"}, "S1603_C04_001E": {"label": "Estimate!!Total!!Speak a language other than English at home!!Total population 5 years and over", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "int", "group": "S1603", "limit": 0, "attributes": "S1603_C04_001EA,S1603_C04_001M,S1603_C04_001MA"}, "S2002_C01_035E": {"label": "Estimate!!Total!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Farming, fishing, and forestry occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C01_035EA,S2002_C01_035M,S2002_C01_035MA"}, "S2303_C03_025E": {"label": "Estimate!!Male!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 1 to 14 hours per week!!48 to 49 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C03_025EA,S2303_C03_025M,S2303_C03_025MA"}, "S0504_C03_040E": {"label": "Estimate!!Foreign-born; Born in Northern America!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_040EA,S0504_C03_040M,S0504_C03_040MA"}, "S0502_C04_098E": {"label": "Estimate!!Foreign-born; Entered before 2000!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C04_098EA,S0502_C04_098M,S0502_C04_098MA"}, "S0506_C06_004E": {"label": "Estimate!!Foreign-born; Born in South America!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen!!Entered 2000 to 2009", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_004EA,S0506_C06_004M,S0506_C06_004MA"}, "S2303_C03_024E": {"label": "Estimate!!Male!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 1 to 14 hours per week!!50 to 52 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C03_024EA,S2303_C03_024M,S2303_C03_024MA"}, "S2002_C01_034E": {"label": "Estimate!!Total!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Office and administrative support occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C01_034EA,S2002_C01_034M,S2002_C01_034MA"}, "S2603_C05_049E": {"label": "Estimate!!Juvenile Facilities!!DISABILITY STATUS!!Population 18 to 64 years!!No disability", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C05_049EA,S2603_C05_049M,S2603_C05_049MA"}, "S0506_C06_005E": {"label": "Estimate!!Foreign-born; Born in South America!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen!!Entered before 2000", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_005EA,S0506_C06_005M,S0506_C06_005MA"}, "S0502_C04_099E": {"label": "Estimate!!Foreign-born; Entered before 2000!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_099EA,S0502_C04_099M,S0502_C04_099MA"}, "S2002_C01_033E": {"label": "Estimate!!Total!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Sales and related occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C01_033EA,S2002_C01_033M,S2002_C01_033MA"}, "S2303_C03_027E": {"label": "Estimate!!Male!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 1 to 14 hours per week!!27 to 39 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C03_027EA,S2303_C03_027M,S2303_C03_027MA"}, "S0506_C06_006E": {"label": "Estimate!!Foreign-born; Born in South America!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_006EA,S0506_C06_006M,S0506_C06_006MA"}, "S2002_C01_032E": {"label": "Estimate!!Total!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Personal care and service occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C01_032EA,S2002_C01_032M,S2002_C01_032MA"}, "S2303_C03_026E": {"label": "Estimate!!Male!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 1 to 14 hours per week!!40 to 47 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C03_026EA,S2303_C03_026M,S2303_C03_026MA"}, "S0506_C06_007E": {"label": "Estimate!!Foreign-born; Born in South America!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen!!Entered 2010 or later", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_007EA,S0506_C06_007M,S0506_C06_007MA"}, "S2002_C01_039E": {"label": "Estimate!!Total!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Transportation occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C01_039EA,S2002_C01_039M,S2002_C01_039MA"}, "S0804_C02_039E": {"label": "Estimate!!Car, truck, or van -- drove alone!!POVERTY STATUS IN THE PAST 12 MONTHS!!Workers 16 years and over for whom poverty status is determined!!Below 100 percent of the poverty level", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_039EA,S0804_C02_039M,S0804_C02_039MA"}, "S2603_C05_046E": {"label": "Estimate!!Juvenile Facilities!!DISABILITY STATUS!!Total population!!With a disability", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C05_046EA,S2603_C05_046M,S2603_C05_046MA"}, "S2002_C01_038E": {"label": "Estimate!!Total!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Production occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C01_038EA,S2002_C01_038M,S2002_C01_038MA"}, "S2603_C05_045E": {"label": "Estimate!!Juvenile Facilities!!DISABILITY STATUS!!Total population", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C05_045EA,S2603_C05_045M,S2603_C05_045MA"}, "S0506_C06_001E": {"label": "Estimate!!Foreign-born; Born in South America!!Foreign-born population", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C06_001EA,S0506_C06_001M,S0506_C06_001MA"}, "S2002_C01_037E": {"label": "Estimate!!Total!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Installation, maintenance, and repair occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C01_037EA,S2002_C01_037M,S2002_C01_037MA"}, "S0804_C02_037E": {"label": "Estimate!!Car, truck, or van -- drove alone!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!Median earnings (dollars)", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "int", "group": "S0804", "limit": 0, "attributes": "S0804_C02_037EA,S0804_C02_037M,S0804_C02_037MA"}, "S2603_C05_048E": {"label": "Estimate!!Juvenile Facilities!!DISABILITY STATUS!!Population 18 to 64 years!!With a disability", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C05_048EA,S2603_C05_048M,S2603_C05_048MA"}, "S0802_C05_008E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!AGE!!Median age (years)", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C05_008EA,S0802_C05_008M,S0802_C05_008MA"}, "S0506_C06_002E": {"label": "Estimate!!Foreign-born; Born in South America!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_002EA,S0506_C06_002M,S0506_C06_002MA"}, "S0902_C03_010E": {"label": "Estimate!!Black or African American!!Population 15 to 19 years!!MARITAL STATUS AND FERTILITY!!Female!!Female with a birth in the past 12 months", "concept": "Characteristics of Teenagers 15 to 19 Years Old", "predicateType": "float", "group": "S0902", "limit": 0, "attributes": "S0902_C03_010EA,S0902_C03_010M,S0902_C03_010MA"}, "S0804_C02_038E": {"label": "Estimate!!Car, truck, or van -- drove alone!!POVERTY STATUS IN THE PAST 12 MONTHS!!Workers 16 years and over for whom poverty status is determined", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "int", "group": "S0804", "limit": 0, "attributes": "S0804_C02_038EA,S0804_C02_038M,S0804_C02_038MA"}, "S2002_C01_036E": {"label": "Estimate!!Total!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Construction and extraction occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C01_036EA,S2002_C01_036M,S2002_C01_036MA"}, "S2603_C05_047E": {"label": "Estimate!!Juvenile Facilities!!DISABILITY STATUS!!Population 18 to 64 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C05_047EA,S2603_C05_047M,S2603_C05_047MA"}, "S0802_C05_009E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!SEX!!Male", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C05_009EA,S0802_C05_009M,S0802_C05_009MA"}, "S0506_C06_003E": {"label": "Estimate!!Foreign-born; Born in South America!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen!!Entered 2010 or later", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_003EA,S0506_C06_003M,S0506_C06_003MA"}, "S2602_C02_011E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!65 to 74 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C02_011EA,S2602_C02_011M,S2602_C02_011MA"}, "S2603_C05_042E": {"label": "Estimate!!Juvenile Facilities!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree or higher", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C05_042EA,S2603_C05_042M,S2603_C05_042MA"}, "S0902_C03_011E": {"label": "Estimate!!Black or African American!!HOUSEHOLD TYPE!!Population 15 to 19 years in households", "concept": "Characteristics of Teenagers 15 to 19 Years Old", "predicateType": "int", "group": "S0902", "limit": 0, "attributes": "S0902_C03_011EA,S0902_C03_011M,S0902_C03_011MA"}, "S0802_C05_006E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!AGE!!55 to 59 years", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C05_006EA,S0802_C05_006M,S0802_C05_006MA"}, "S0502_C04_090E": {"label": "Estimate!!Foreign-born; Entered before 2000!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$10,000 to $14,999", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_090EA,S0502_C04_090M,S0502_C04_090MA"}, "S2602_C02_012E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!75 to 84 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C02_012EA,S2602_C02_012M,S2602_C02_012MA"}, "S2603_C05_041E": {"label": "Estimate!!Juvenile Facilities!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate or higher", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C05_041EA,S2603_C05_041M,S2603_C05_041MA"}, "S0902_C03_012E": {"label": "Estimate!!Black or African American!!HOUSEHOLD TYPE!!Population 15 to 19 years in households!!In married-couple family households", "concept": "Characteristics of Teenagers 15 to 19 Years Old", "predicateType": "float", "group": "S0902", "limit": 0, "attributes": "S0902_C03_012EA,S0902_C03_012M,S0902_C03_012MA"}, "S0802_C05_007E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!AGE!!60 years and over", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C05_007EA,S0802_C05_007M,S0802_C05_007MA"}, "S0502_C04_091E": {"label": "Estimate!!Foreign-born; Entered before 2000!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$15,000 to $24,999", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_091EA,S0502_C04_091M,S0502_C04_091MA"}, "S2603_C05_044E": {"label": "Estimate!!Juvenile Facilities!!VETERAN STATUS!!Civilian population 18 years and over!!Civilian veteran", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C05_044EA,S2603_C05_044M,S2603_C05_044MA"}, "S0902_C03_013E": {"label": "Estimate!!Black or African American!!HOUSEHOLD TYPE!!Population 15 to 19 years in households!!In male householder, no spouse present, family households", "concept": "Characteristics of Teenagers 15 to 19 Years Old", "predicateType": "float", "group": "S0902", "limit": 0, "attributes": "S0902_C03_013EA,S0902_C03_013M,S0902_C03_013MA"}, "S0802_C05_004E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!AGE!!25 to 44 years", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C05_004EA,S0802_C05_004M,S0802_C05_004MA"}, "S0502_C04_092E": {"label": "Estimate!!Foreign-born; Entered before 2000!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$25,000 to $34,999", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_092EA,S0502_C04_092M,S0502_C04_092MA"}, "S2602_C02_010E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!55 to 64 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C02_010EA,S2602_C02_010M,S2602_C02_010MA"}, "S2603_C05_043E": {"label": "Estimate!!Juvenile Facilities!!VETERAN STATUS!!Civilian population 18 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C05_043EA,S2603_C05_043M,S2603_C05_043MA"}, "S0902_C03_014E": {"label": "Estimate!!Black or African American!!HOUSEHOLD TYPE!!Population 15 to 19 years in households!!In female householder, no spouse present, family households", "concept": "Characteristics of Teenagers 15 to 19 Years Old", "predicateType": "float", "group": "S0902", "limit": 0, "attributes": "S0902_C03_014EA,S0902_C03_014M,S0902_C03_014MA"}, "S0802_C05_005E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!AGE!!45 to 54 years", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C05_005EA,S0802_C05_005M,S0802_C05_005MA"}, "S0502_C04_093E": {"label": "Estimate!!Foreign-born; Entered before 2000!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$35,000 to $49,999", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_093EA,S0502_C04_093M,S0502_C04_093MA"}, "S2602_C02_015E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!Under 18 years!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C02_015EA,S2602_C02_015M,S2602_C02_015MA"}, "S2411_C04_007E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Computer, engineering, and science occupations:!!Computer and mathematical occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2411", "limit": 0, "attributes": "S2411_C04_007EA,S2411_C04_007M,S2411_C04_007MA"}, "S2603_C05_050E": {"label": "Estimate!!Juvenile Facilities!!DISABILITY STATUS!!Population 65 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C05_050EA,S2603_C05_050M,S2603_C05_050MA"}, "S0902_C03_015E": {"label": "Estimate!!Black or African American!!HOUSEHOLD TYPE!!Population 15 to 19 years in households!!In nonfamily households", "concept": "Characteristics of Teenagers 15 to 19 Years Old", "predicateType": "float", "group": "S0902", "limit": 0, "attributes": "S0902_C03_015EA,S0902_C03_015M,S0902_C03_015MA"}, "S0804_C02_031E": {"label": "Estimate!!Car, truck, or van -- drove alone!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$15,000 to $24,999", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_031EA,S0804_C02_031M,S0804_C02_031MA"}, "S0506_C03_143E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Renter-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C03_143EA,S0506_C03_143M,S0506_C03_143MA"}, "S0802_C05_002E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!AGE!!16 to 19 years", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C05_002EA,S0802_C05_002M,S0802_C05_002MA"}, "S2602_C02_016E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!Under 18 years!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C02_016EA,S2602_C02_016M,S2602_C02_016MA"}, "S2411_C04_006E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Computer, engineering, and science occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2411", "limit": 0, "attributes": "S2411_C04_006EA,S2411_C04_006M,S2411_C04_006MA"}, "S0506_C03_142E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_142EA,S0506_C03_142M,S0506_C03_142MA"}, "S0902_C03_016E": {"label": "Estimate!!Black or African American!!Population 16 to 19 years", "concept": "Characteristics of Teenagers 15 to 19 Years Old", "predicateType": "int", "group": "S0902", "limit": 0, "attributes": "S0902_C03_016EA,S0902_C03_016M,S0902_C03_016MA"}, "S0804_C02_032E": {"label": "Estimate!!Car, truck, or van -- drove alone!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$25,000 to $34,999", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_032EA,S0804_C02_032M,S0804_C02_032MA"}, "S0802_C05_003E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!AGE!!20 to 24 years", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C05_003EA,S0802_C05_003M,S0802_C05_003MA"}, "S2411_C04_005E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Management, business, and financial occupations:!!Business and financial operations occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2411", "limit": 0, "attributes": "S2411_C04_005EA,S2411_C04_005M,S2411_C04_005MA"}, "S2602_C02_013E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!85 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C02_013EA,S2602_C02_013M,S2602_C02_013MA"}, "S2603_C05_052E": {"label": "Estimate!!Juvenile Facilities!!RESIDENCE 1 YEAR AGO!!Population 1 year and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C05_052EA,S2603_C05_052M,S2603_C05_052MA"}, "S0506_C03_141E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_141EA,S0506_C03_141M,S0506_C03_141MA"}, "S0902_C03_017E": {"label": "Estimate!!Black or African American!!Population 16 to 19 years!!IDLENESS!!Not enrolled in school and not in the labor force", "concept": "Characteristics of Teenagers 15 to 19 Years Old", "predicateType": "float", "group": "S0902", "limit": 0, "attributes": "S0902_C03_017EA,S0902_C03_017M,S0902_C03_017MA"}, "S2411_C04_004E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Management, business, and financial occupations:!!Management occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2411", "limit": 0, "attributes": "S2411_C04_004EA,S2411_C04_004M,S2411_C04_004MA"}, "S2602_C02_014E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!Under 18 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C02_014EA,S2602_C02_014M,S2602_C02_014MA"}, "S2603_C05_051E": {"label": "Estimate!!Juvenile Facilities!!DISABILITY STATUS!!Population 65 years and over!!With a disability", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C05_051EA,S2603_C05_051M,S2603_C05_051MA"}, "S0506_C03_140E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Owner-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C03_140EA,S0506_C03_140M,S0506_C03_140MA"}, "S0902_C03_018E": {"label": "Estimate!!Black or African American!!Population 16 to 19 years!!LABOR FORCE STATUS!!In the labor force", "concept": "Characteristics of Teenagers 15 to 19 Years Old", "predicateType": "float", "group": "S0902", "limit": 0, "attributes": "S0902_C03_018EA,S0902_C03_018M,S0902_C03_018MA"}, "S0804_C02_030E": {"label": "Estimate!!Car, truck, or van -- drove alone!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$10,000 to $14,999", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_030EA,S0804_C02_030M,S0804_C02_030MA"}, "S0802_C05_001E": {"label": "Estimate!!Worked from home!!Workers 16 years and over", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "int", "group": "S0802", "limit": 0, "attributes": "S0802_C05_001EA,S0802_C05_001M,S0802_C05_001MA"}, "S2411_C04_003E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Management, business, and financial occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2411", "limit": 0, "attributes": "S2411_C04_003EA,S2411_C04_003M,S2411_C04_003MA"}, "S0804_C02_035E": {"label": "Estimate!!Car, truck, or van -- drove alone!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$65,000 to $74,999", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_035EA,S0804_C02_035M,S0804_C02_035MA"}, "S2602_C02_019E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!65 years and over!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C02_019EA,S2602_C02_019M,S2602_C02_019MA"}, "S2601CPR_C02_102E": {"label": "Estimate!!Total group quarters population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!Mean earnings (dollars) for full-time, year-round workers:!!Female", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "int", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_102EA,S2601CPR_C02_102M,S2601CPR_C02_102MA"}, "S2601CPR_C02_100E": {"label": "Estimate!!Total group quarters population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!With earnings for full-time, year-round workers:!!Female", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "int", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_100EA,S2601CPR_C02_100M,S2601CPR_C02_100MA"}, "S2411_C04_002E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2411", "limit": 0, "attributes": "S2411_C04_002EA,S2411_C04_002M,S2411_C04_002MA"}, "S0804_C02_036E": {"label": "Estimate!!Car, truck, or van -- drove alone!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$75,000 or more", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_036EA,S0804_C02_036M,S0804_C02_036MA"}, "S2601CPR_C02_101E": {"label": "Estimate!!Total group quarters population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!Mean earnings (dollars) for full-time, year-round workers:!!Male", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "int", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_101EA,S2601CPR_C02_101M,S2601CPR_C02_101MA"}, "S2411_C04_001E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Civilian employed population 16 years and over with earnings", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2411", "limit": 0, "attributes": "S2411_C04_001EA,S2411_C04_001M,S2411_C04_001MA"}, "S1703_C02_009E": {"label": "Estimate!!Less than 50 percent of the poverty level!!Population for whom poverty status is determined!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C02_009EA,S1703_C02_009M,S1703_C02_009MA"}, "S0804_C02_033E": {"label": "Estimate!!Car, truck, or van -- drove alone!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$35,000 to $49,999", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_033EA,S0804_C02_033M,S0804_C02_033MA"}, "S0506_C03_145E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_145EA,S0506_C03_145M,S0506_C03_145MA"}, "S2602_C02_017E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!65 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C02_017EA,S2602_C02_017M,S2602_C02_017MA"}, "S2601CPR_C02_104E": {"label": "Estimate!!Total group quarters population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!Median earnings (dollars) full-time, year-round workers:!!Female", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "int", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_104EA,S2601CPR_C02_104M,S2601CPR_C02_104MA"}, "S0804_C02_034E": {"label": "Estimate!!Car, truck, or van -- drove alone!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$50,000 to $64,999", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_034EA,S0804_C02_034M,S0804_C02_034MA"}, "S2506_C01_060E": {"label": "Estimate!!Owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$75,000 or more!!30 percent or more", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "int", "group": "S2506", "limit": 0, "attributes": "S2506_C01_060EA,S2506_C01_060M,S2506_C01_060MA"}, "S0506_C03_144E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_144EA,S0506_C03_144M,S0506_C03_144MA"}, "S2602_C02_018E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!65 years and over!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C02_018EA,S2602_C02_018M,S2602_C02_018MA"}, "S2601CPR_C02_103E": {"label": "Estimate!!Total group quarters population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!Median earnings (dollars) full-time, year-round workers:!!Male", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "int", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_103EA,S2601CPR_C02_103M,S2601CPR_C02_103MA"}, "S0601_C04_003E": {"label": "Estimate!!Native; born outside U.S.!!Total population!!AGE!!5 to 17 years", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C04_003EA,S0601_C04_003M,S0601_C04_003MA"}, "S1703_C02_007E": {"label": "Estimate!!Less than 50 percent of the poverty level!!Population for whom poverty status is determined!!AGE!!65 years and over", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C02_007EA,S1703_C02_007M,S1703_C02_007MA"}, "S2506_C01_061E": {"label": "Estimate!!Owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Zero or negative income", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "int", "group": "S2506", "limit": 0, "attributes": "S2506_C01_061EA,S2506_C01_061M,S2506_C01_061MA"}, "S2303_C03_017E": {"label": "Estimate!!Male!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 15 to 34 hours per week!!50 to 52 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C03_017EA,S2303_C03_017M,S2303_C03_017MA"}, "S1603_C04_006E": {"label": "Estimate!!Total!!Speak a language other than English at home!!Total population 5 years and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "int", "group": "S1603", "limit": 0, "attributes": "S1603_C04_006EA,S1603_C04_006M,S1603_C04_006MA"}, "S2601CPR_C02_106E": {"label": "Estimate!!Total group quarters population!!POVERTY RATES FOR PEOPLE FOR WHOM POVERTY STATUS IS DETERMINED!!All people", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_106EA,S2601CPR_C02_106M,S2601CPR_C02_106MA"}, "S2506_C01_062E": {"label": "Estimate!!Owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!REAL ESTATE TAXES!!Less than $800", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "int", "group": "S2506", "limit": 0, "attributes": "S2506_C01_062EA,S2506_C01_062M,S2506_C01_062MA"}, "S1703_C02_008E": {"label": "Estimate!!Less than 50 percent of the poverty level!!Population for whom poverty status is determined!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C02_008EA,S1703_C02_008M,S1703_C02_008MA"}, "S1603_C04_007E": {"label": "Estimate!!Total!!Speak a language other than English at home!!Total population 5 years and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born!!Naturalized U.S. citizen", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "int", "group": "S1603", "limit": 0, "attributes": "S1603_C04_007EA,S1603_C04_007M,S1603_C04_007MA"}, "S2303_C03_016E": {"label": "Estimate!!Male!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 15 to 34 hours per week", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C03_016EA,S2303_C03_016M,S2303_C03_016MA"}, "S2601CPR_C02_105E": {"label": "Estimate!!Total group quarters population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!With Food Stamp/SNAP benefits", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "int", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_105EA,S2601CPR_C02_105M,S2601CPR_C02_105MA"}, "S0601_C04_002E": {"label": "Estimate!!Native; born outside U.S.!!Total population!!AGE!!Under 5 years", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C04_002EA,S0601_C04_002M,S0601_C04_002MA"}, "S1703_C02_005E": {"label": "Estimate!!Less than 50 percent of the poverty level!!Population for whom poverty status is determined!!AGE!!Under 18 years!!Related children of householder under 18 years", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C02_005EA,S1703_C02_005M,S1703_C02_005MA"}, "S2506_C01_063E": {"label": "Estimate!!Owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!REAL ESTATE TAXES!!$800 to $1,499", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "int", "group": "S2506", "limit": 0, "attributes": "S2506_C01_063EA,S2506_C01_063M,S2506_C01_063MA"}, "S2409_C03_002E": {"label": "Estimate!!Percent Male!!Full-time, year-round civilian employed population 16 years and over!!Private for-profit wage and salary workers:", "concept": "Class of Worker by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2409", "limit": 0, "attributes": "S2409_C03_002EA,S2409_C03_002M,S2409_C03_002MA"}, "S1603_C04_008E": {"label": "Estimate!!Total!!Speak a language other than English at home!!Total population 5 years and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born!!Not a U.S. citizen", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "int", "group": "S1603", "limit": 0, "attributes": "S1603_C04_008EA,S1603_C04_008M,S1603_C04_008MA"}, "S2303_C03_019E": {"label": "Estimate!!Male!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 15 to 34 hours per week!!40 to 47 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C03_019EA,S2303_C03_019M,S2303_C03_019MA"}, "S2601CPR_C02_108E": {"label": "Estimate!!Total group quarters population!!POVERTY RATES FOR PEOPLE FOR WHOM POVERTY STATUS IS DETERMINED!!All people!!18 to 64 years", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_108EA,S2601CPR_C02_108M,S2601CPR_C02_108MA"}, "S0601_C04_001E": {"label": "Estimate!!Native; born outside U.S.!!Total population", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "int", "group": "S0601", "limit": 0, "attributes": "S0601_C04_001EA,S0601_C04_001M,S0601_C04_001MA"}, "S1703_C02_006E": {"label": "Estimate!!Less than 50 percent of the poverty level!!Population for whom poverty status is determined!!AGE!!18 to 64 years", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C02_006EA,S1703_C02_006M,S1703_C02_006MA"}, "S2506_C01_064E": {"label": "Estimate!!Owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!REAL ESTATE TAXES!!$1,500 or more", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "int", "group": "S2506", "limit": 0, "attributes": "S2506_C01_064EA,S2506_C01_064M,S2506_C01_064MA"}, "S2409_C03_001E": {"label": "Estimate!!Percent Male!!Full-time, year-round civilian employed population 16 years and over", "concept": "Class of Worker by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2409", "limit": 0, "attributes": "S2409_C03_001EA,S2409_C03_001M,S2409_C03_001MA"}, "S0504_C03_049E": {"label": "Estimate!!Foreign-born; Born in Northern America!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college or associate's degree", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_049EA,S0504_C03_049M,S0504_C03_049MA"}, "S1603_C04_009E": {"label": "Estimate!!Total!!Speak a language other than English at home!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population 5 years and over for whom poverty status is determined", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "int", "group": "S1603", "limit": 0, "attributes": "S1603_C04_009EA,S1603_C04_009M,S1603_C04_009MA"}, "S2303_C03_018E": {"label": "Estimate!!Male!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 15 to 34 hours per week!!48 to 49 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C03_018EA,S2303_C03_018M,S2303_C03_018MA"}, "S2601CPR_C02_107E": {"label": "Estimate!!Total group quarters population!!POVERTY RATES FOR PEOPLE FOR WHOM POVERTY STATUS IS DETERMINED!!All people!!18 years and over", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_107EA,S2601CPR_C02_107M,S2601CPR_C02_107MA"}, "S2506_C01_065E": {"label": "Estimate!!Owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!REAL ESTATE TAXES!!No real estate taxes paid", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "int", "group": "S2506", "limit": 0, "attributes": "S2506_C01_065EA,S2506_C01_065M,S2506_C01_065MA"}, "S1703_C02_003E": {"label": "Estimate!!Less than 50 percent of the poverty level!!Population for whom poverty status is determined!!SEX!!Female", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C02_003EA,S1703_C02_003M,S1703_C02_003MA"}, "S0601_C04_007E": {"label": "Estimate!!Native; born outside U.S.!!Total population!!AGE!!55 to 64 years", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C04_007EA,S0601_C04_007M,S0601_C04_007MA"}, "S0504_C03_048E": {"label": "Estimate!!Foreign-born; Born in Northern America!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate (includes equivalency)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_048EA,S0504_C03_048M,S0504_C03_048MA"}, "S1603_C04_002E": {"label": "Estimate!!Total!!Speak a language other than English at home!!Total population 5 years and over!!AGE!!5 to 17 years", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "int", "group": "S1603", "limit": 0, "attributes": "S1603_C04_002EA,S1603_C04_002M,S1603_C04_002MA"}, "S1703_C02_004E": {"label": "Estimate!!Less than 50 percent of the poverty level!!Population for whom poverty status is determined!!AGE!!Under 18 years", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C02_004EA,S1703_C02_004M,S1703_C02_004MA"}, "S0601_C04_006E": {"label": "Estimate!!Native; born outside U.S.!!Total population!!AGE!!45 to 54 years", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C04_006EA,S0601_C04_006M,S0601_C04_006MA"}, "S2506_C01_066E": {"label": "Estimate!!Owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!REAL ESTATE TAXES!!Median (dollars)", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "int", "group": "S2506", "limit": 0, "attributes": "S2506_C01_066EA,S2506_C01_066M,S2506_C01_066MA"}, "S1603_C04_003E": {"label": "Estimate!!Total!!Speak a language other than English at home!!Total population 5 years and over!!AGE!!18 to 64 years", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "int", "group": "S1603", "limit": 0, "attributes": "S1603_C04_003EA,S1603_C04_003M,S1603_C04_003MA"}, "S0504_C03_047E": {"label": "Estimate!!Foreign-born; Born in Northern America!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than high school graduate", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_047EA,S0504_C03_047M,S0504_C03_047MA"}, "S2601CPR_C02_109E": {"label": "Estimate!!Total group quarters population!!POVERTY RATES FOR PEOPLE FOR WHOM POVERTY STATUS IS DETERMINED!!All people!!65 years and over", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_109EA,S2601CPR_C02_109M,S2601CPR_C02_109MA"}, "S0601_C04_005E": {"label": "Estimate!!Native; born outside U.S.!!Total population!!AGE!!25 to 44 years", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C04_005EA,S0601_C04_005M,S0601_C04_005MA"}, "S1603_C04_004E": {"label": "Estimate!!Total!!Speak a language other than English at home!!Total population 5 years and over!!AGE!!65 years and over", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "int", "group": "S1603", "limit": 0, "attributes": "S1603_C04_004EA,S1603_C04_004M,S1603_C04_004MA"}, "S0504_C03_046E": {"label": "Estimate!!Foreign-born; Born in Northern America!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C03_046EA,S0504_C03_046M,S0504_C03_046MA"}, "S2411_C04_009E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Computer, engineering, and science occupations:!!Life, physical, and social science occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2411", "limit": 0, "attributes": "S2411_C04_009EA,S2411_C04_009M,S2411_C04_009MA"}, "S1703_C02_001E": {"label": "Estimate!!Less than 50 percent of the poverty level!!Population for whom poverty status is determined", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C02_001EA,S1703_C02_001M,S1703_C02_001MA"}, "S0601_C04_004E": {"label": "Estimate!!Native; born outside U.S.!!Total population!!AGE!!18 to 24 years", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C04_004EA,S0601_C04_004M,S0601_C04_004MA"}, "S1603_C04_005E": {"label": "Estimate!!Total!!Speak a language other than English at home!!Total population 5 years and over!!NATIVITY AND CITIZENSHIP STATUS!!Native", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "int", "group": "S1603", "limit": 0, "attributes": "S1603_C04_005EA,S1603_C04_005M,S1603_C04_005MA"}, "S0504_C03_045E": {"label": "Estimate!!Foreign-born; Born in Northern America!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!College or graduate school", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_045EA,S0504_C03_045M,S0504_C03_045MA"}, "S2411_C04_008E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Computer, engineering, and science occupations:!!Architecture and engineering occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2411", "limit": 0, "attributes": "S2411_C04_008EA,S2411_C04_008M,S2411_C04_008MA"}, "S1703_C02_002E": {"label": "Estimate!!Less than 50 percent of the poverty level!!Population for whom poverty status is determined!!SEX!!Male", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C02_002EA,S1703_C02_002M,S1703_C02_002MA"}, "S2506_C01_045E": {"label": "Estimate!!Owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$20,000 to $34,999", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "int", "group": "S2506", "limit": 0, "attributes": "S2506_C01_045EA,S2506_C01_045M,S2506_C01_045MA"}, "S2303_C03_033E": {"label": "Estimate!!Male!!Population 16 to 64 years!!Workers 16 to 64 years who worked full-time, year-round", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C03_033EA,S2303_C03_033M,S2303_C03_033MA"}, "S2418_C04_008E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Civilian employed population 16 years and over with earnings!!Federal government workers", "concept": "Class of Worker by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2418", "limit": 0, "attributes": "S2418_C04_008EA,S2418_C04_008M,S2418_C04_008MA"}, "S0504_C03_056E": {"label": "Estimate!!Foreign-born; Born in Northern America!!EMPLOYMENT STATUS!!Population 16 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C03_056EA,S0504_C03_056M,S0504_C03_056MA"}, "S1703_C02_011E": {"label": "Estimate!!Less than 50 percent of the poverty level!!Population for whom poverty status is determined!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C02_011EA,S1703_C02_011M,S1703_C02_011MA"}, "S2506_C01_046E": {"label": "Estimate!!Owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$20,000 to $34,999!!Less than 20 percent", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "int", "group": "S2506", "limit": 0, "attributes": "S2506_C01_046EA,S2506_C01_046M,S2506_C01_046MA"}, "S2303_C03_032E": {"label": "Estimate!!Male!!Population 16 to 64 years!!Median age of workers 16 to 64 years", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C03_032EA,S2303_C03_032M,S2303_C03_032MA"}, "S2418_C04_007E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Civilian employed population 16 years and over with earnings!!State government workers", "concept": "Class of Worker by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2418", "limit": 0, "attributes": "S2418_C04_007EA,S2418_C04_007M,S2418_C04_007MA"}, "S0504_C03_055E": {"label": "Estimate!!Foreign-born; Born in Northern America!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English!!Speak English less than \"very well\"", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_055EA,S0504_C03_055M,S0504_C03_055MA"}, "S1703_C02_012E": {"label": "Estimate!!Less than 50 percent of the poverty level!!Population for whom poverty status is determined!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C02_012EA,S1703_C02_012M,S1703_C02_012MA"}, "S2506_C01_047E": {"label": "Estimate!!Owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$20,000 to $34,999!!20 to 29 percent", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "int", "group": "S2506", "limit": 0, "attributes": "S2506_C01_047EA,S2506_C01_047M,S2506_C01_047MA"}, "S2418_C04_006E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Civilian employed population 16 years and over with earnings!!Local government workers", "concept": "Class of Worker by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2418", "limit": 0, "attributes": "S2418_C04_006EA,S2418_C04_006M,S2418_C04_006MA"}, "S0504_C03_054E": {"label": "Estimate!!Foreign-born; Born in Northern America!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_054EA,S0504_C03_054M,S0504_C03_054MA"}, "S2418_C04_005E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Civilian employed population 16 years and over with earnings!!Private not-for-profit wage and salary workers", "concept": "Class of Worker by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2418", "limit": 0, "attributes": "S2418_C04_005EA,S2418_C04_005M,S2418_C04_005MA"}, "S0504_C03_053E": {"label": "Estimate!!Foreign-born; Born in Northern America!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!English only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_053EA,S0504_C03_053M,S0504_C03_053MA"}, "S2506_C01_048E": {"label": "Estimate!!Owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$20,000 to $34,999!!30 percent or more", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "int", "group": "S2506", "limit": 0, "attributes": "S2506_C01_048EA,S2506_C01_048M,S2506_C01_048MA"}, "S1703_C02_010E": {"label": "Estimate!!Less than 50 percent of the poverty level!!Population for whom poverty status is determined!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C02_010EA,S1703_C02_010M,S1703_C02_010MA"}, "S2002_C01_023E": {"label": "Estimate!!Total!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Community and social services occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C01_023EA,S2002_C01_023M,S2002_C01_023MA"}, "S2603_C05_038E": {"label": "Estimate!!Juvenile Facilities!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Nursery school through 12th grade", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C05_038EA,S2603_C05_038M,S2603_C05_038MA"}, "S0504_C03_052E": {"label": "Estimate!!Foreign-born; Born in Northern America!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C03_052EA,S0504_C03_052M,S0504_C03_052MA"}, "S2418_C04_004E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Civilian employed population 16 years and over with earnings!!Private for-profit wage and salary workers:!!Self-employed in own incorporated business workers", "concept": "Class of Worker by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2418", "limit": 0, "attributes": "S2418_C04_004EA,S2418_C04_004M,S2418_C04_004MA"}, "S2506_C01_049E": {"label": "Estimate!!Owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$35,000 to $49,999", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "int", "group": "S2506", "limit": 0, "attributes": "S2506_C01_049EA,S2506_C01_049M,S2506_C01_049MA"}, "S2002_C01_022E": {"label": "Estimate!!Total!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Life, physical, and social science occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C01_022EA,S2002_C01_022M,S2002_C01_022MA"}, "S0504_C03_051E": {"label": "Estimate!!Foreign-born; Born in Northern America!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Graduate or professional degree", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_051EA,S0504_C03_051M,S0504_C03_051MA"}, "S2603_C05_037E": {"label": "Estimate!!Juvenile Facilities!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C05_037EA,S2603_C05_037M,S2603_C05_037MA"}, "S2418_C04_003E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Civilian employed population 16 years and over with earnings!!Private for-profit wage and salary workers:!!Employee of private company workers", "concept": "Class of Worker by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2418", "limit": 0, "attributes": "S2418_C04_003EA,S2418_C04_003M,S2418_C04_003MA"}, "S2002_C01_021E": {"label": "Estimate!!Total!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Architecture and engineering occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C01_021EA,S2002_C01_021M,S2002_C01_021MA"}, "S0504_C03_050E": {"label": "Estimate!!Foreign-born; Born in Northern America!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_050EA,S0504_C03_050M,S0504_C03_050MA"}, "S2418_C04_002E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Civilian employed population 16 years and over with earnings!!Private for-profit wage and salary workers:", "concept": "Class of Worker by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2418", "limit": 0, "attributes": "S2418_C04_002EA,S2418_C04_002M,S2418_C04_002MA"}, "S2002_C01_020E": {"label": "Estimate!!Total!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Computer and mathematical occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C01_020EA,S2002_C01_020M,S2002_C01_020MA"}, "S2418_C04_001E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Civilian employed population 16 years and over with earnings", "concept": "Class of Worker by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2418", "limit": 0, "attributes": "S2418_C04_001EA,S2418_C04_001M,S2418_C04_001MA"}, "S2603_C05_039E": {"label": "Estimate!!Juvenile Facilities!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!College or graduate school", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C05_039EA,S2603_C05_039M,S2603_C05_039MA"}, "S2002_C01_027E": {"label": "Estimate!!Total!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Healthcare practitioner and technical occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C01_027EA,S2002_C01_027M,S2002_C01_027MA"}, "S2411_C04_011E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:!!Community and social service occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2411", "limit": 0, "attributes": "S2411_C04_011EA,S2411_C04_011M,S2411_C04_011MA"}, "S2601C_C02_003E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!Female", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_003EA,S2601C_C02_003M,S2601C_C02_003MA"}, "S0505_C06_007E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen!!Entered 2010 or later", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_007EA,S0505_C06_007M,S0505_C06_007MA"}, "S2603_C05_034E": {"label": "Estimate!!Juvenile Facilities!!MARITAL STATUS!!Population 15 years and over!!Divorced", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C05_034EA,S2603_C05_034M,S2603_C05_034MA"}, "S0804_C02_027E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Speak language other than English!!Speak English less than \"very well\"", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_027EA,S0804_C02_027M,S0804_C02_027MA"}, "S2601C_C02_004E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!Under 15 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_004EA,S2601C_C02_004M,S2601C_C02_004MA"}, "S0505_C06_008E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen!!Entered 2000 to 2009", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_008EA,S0505_C06_008M,S0505_C06_008MA"}, "S0804_C02_028E": {"label": "Estimate!!Car, truck, or van -- drove alone!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "int", "group": "S0804", "limit": 0, "attributes": "S0804_C02_028EA,S0804_C02_028M,S0804_C02_028MA"}, "S2603_C05_033E": {"label": "Estimate!!Juvenile Facilities!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C05_033EA,S2603_C05_033M,S2603_C05_033MA"}, "S2411_C04_010E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2411", "limit": 0, "attributes": "S2411_C04_010EA,S2411_C04_010M,S2411_C04_010MA"}, "S2002_C01_026E": {"label": "Estimate!!Total!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Arts, design, entertainment, sports, and media occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C01_026EA,S2002_C01_026M,S2002_C01_026MA"}, "S2601C_C02_005E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!15 to 17 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_005EA,S2601C_C02_005M,S2601C_C02_005MA"}, "S0505_C06_005E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen!!Entered before 2000", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_005EA,S0505_C06_005M,S0505_C06_005MA"}, "S0804_C02_025E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Speak language other than English", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_025EA,S0804_C02_025M,S0804_C02_025MA"}, "S2002_C01_025E": {"label": "Estimate!!Total!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Education, training, and library occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C01_025EA,S2002_C01_025M,S2002_C01_025MA"}, "S2603_C05_036E": {"label": "Estimate!!Juvenile Facilities!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C05_036EA,S2603_C05_036M,S2603_C05_036MA"}, "S2601C_C02_006E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!18 to 24 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_006EA,S2601C_C02_006M,S2601C_C02_006MA"}, "S0505_C06_006E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_006EA,S0505_C06_006M,S0505_C06_006MA"}, "S2002_C01_024E": {"label": "Estimate!!Total!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Legal occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C01_024EA,S2002_C01_024M,S2002_C01_024MA"}, "S0804_C02_026E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Speak language other than English!!Speak English \"very well\"", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_026EA,S0804_C02_026M,S0804_C02_026MA"}, "S2603_C05_035E": {"label": "Estimate!!Juvenile Facilities!!MARITAL STATUS!!Population 15 years and over!!Separated", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C05_035EA,S2603_C05_035M,S2603_C05_035MA"}, "S2601C_C02_007E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!25 to 34 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_007EA,S2601C_C02_007M,S2601C_C02_007MA"}, "S2603_C05_030E": {"label": "Estimate!!Juvenile Facilities!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!White alone, Not Hispanic or Latino", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C05_030EA,S2603_C05_030M,S2603_C05_030MA"}, "S0802_C05_018E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C05_018EA,S0802_C05_018M,S0802_C05_018MA"}, "S0802_C05_019E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C05_019EA,S0802_C05_019M,S0802_C05_019MA"}, "S2002_C01_029E": {"label": "Estimate!!Total!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Protective service occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C01_029EA,S2002_C01_029M,S2002_C01_029MA"}, "S2303_C03_031E": {"label": "Estimate!!Male!!Population 16 to 64 years!!Mean usual hours worked for workers", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C03_031EA,S2303_C03_031M,S2303_C03_031MA"}, "S0505_C06_009E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen!!Entered before 2000", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_009EA,S0505_C06_009M,S0505_C06_009MA"}, "S2601C_C02_001E": {"label": "Estimate!!Total group quarters population!!Total population", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_001EA,S2601C_C02_001M,S2601C_C02_001MA"}, "S0804_C02_029E": {"label": "Estimate!!Car, truck, or van -- drove alone!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$1 to $9,999 or loss", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_029EA,S0804_C02_029M,S0804_C02_029MA"}, "S2603_C05_032E": {"label": "Estimate!!Juvenile Facilities!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C05_032EA,S2603_C05_032M,S2603_C05_032MA"}, "S0802_C05_016E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C05_016EA,S0802_C05_016M,S0802_C05_016MA"}, "S2002_C01_028E": {"label": "Estimate!!Total!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Healthcare support occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C01_028EA,S2002_C01_028M,S2002_C01_028MA"}, "S2303_C03_030E": {"label": "Estimate!!Male!!Population 16 to 64 years!!USUAL HOURS WORKED!!Did not work", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C03_030EA,S2303_C03_030M,S2303_C03_030MA"}, "S2601C_C02_002E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!Male", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_002EA,S2601C_C02_002M,S2601C_C02_002MA"}, "S2603_C05_031E": {"label": "Estimate!!Juvenile Facilities!!MARITAL STATUS!!Population 15 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C05_031EA,S2603_C05_031M,S2603_C05_031MA"}, "S0802_C05_017E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C05_017EA,S0802_C05_017M,S0802_C05_017MA"}, "S2418_C04_009E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Civilian employed population 16 years and over with earnings!!Self-employed in own not incorporated business workers and unpaid family workers", "concept": "Class of Worker by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2418", "limit": 0, "attributes": "S2418_C04_009EA,S2418_C04_009M,S2418_C04_009MA"}, "S2602_C02_003E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C02_003EA,S2602_C02_003M,S2602_C02_003MA"}, "S2411_C04_019E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Civilian employed population 16 years and over with earnings!!Service occupations:!!Healthcare support occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2411", "limit": 0, "attributes": "S2411_C04_019EA,S2411_C04_019M,S2411_C04_019MA"}, "S0802_C05_014E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C05_014EA,S0802_C05_014M,S0802_C05_014MA"}, "S2602_C02_004E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!Under 15 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C02_004EA,S2602_C02_004M,S2602_C02_004MA"}, "S2411_C04_018E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Civilian employed population 16 years and over with earnings!!Service occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2411", "limit": 0, "attributes": "S2411_C04_018EA,S2411_C04_018M,S2411_C04_018MA"}, "S0804_C02_020E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino origin", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_020EA,S0804_C02_020M,S0804_C02_020MA"}, "S0802_C05_015E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C05_015EA,S0802_C05_015M,S0802_C05_015MA"}, "S2602_C02_001E": {"label": "Estimate!!Total group quarters population!!Total population", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C02_001EA,S2602_C02_001M,S2602_C02_001MA"}, "S2411_C04_017E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Healthcare practitioners and technical occupations:!!Health technologists and technicians", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2411", "limit": 0, "attributes": "S2411_C04_017EA,S2411_C04_017M,S2411_C04_017MA"}, "S2603_C05_040E": {"label": "Estimate!!Juvenile Facilities!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C05_040EA,S2603_C05_040M,S2603_C05_040MA"}, "S0802_C05_012E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C05_012EA,S0802_C05_012M,S0802_C05_012MA"}, "S2411_C04_016E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Healthcare practitioners and technical occupations:!!Health diagnosing and treating practitioners and other technical occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2411", "limit": 0, "attributes": "S2411_C04_016EA,S2411_C04_016M,S2411_C04_016MA"}, "S2602_C02_002E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C02_002EA,S2602_C02_002M,S2602_C02_002MA"}, "S0802_C05_013E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C05_013EA,S0802_C05_013M,S0802_C05_013MA"}, "S2411_C04_015E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Healthcare practitioners and technical occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2411", "limit": 0, "attributes": "S2411_C04_015EA,S2411_C04_015M,S2411_C04_015MA"}, "S0505_C06_003E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen!!Entered 2010 or later", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_003EA,S0505_C06_003M,S0505_C06_003MA"}, "S0804_C02_023E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born!!Naturalized U.S. citizen", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_023EA,S0804_C02_023M,S0804_C02_023MA"}, "S2602_C02_007E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!25 to 34 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C02_007EA,S2602_C02_007M,S2602_C02_007MA"}, "S0802_C05_010E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!SEX!!Female", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C05_010EA,S0802_C05_010M,S0802_C05_010MA"}, "S2411_C04_014E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:!!Arts, design, entertainment, sports, and media occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2411", "limit": 0, "attributes": "S2411_C04_014EA,S2411_C04_014M,S2411_C04_014MA"}, "S0505_C06_004E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen!!Entered 2000 to 2009", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_004EA,S0505_C06_004M,S0505_C06_004MA"}, "S0804_C02_024E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born!!Not a U.S. citizen", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_024EA,S0804_C02_024M,S0804_C02_024MA"}, "S2602_C02_008E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!35 to 44 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C02_008EA,S2602_C02_008M,S2602_C02_008MA"}, "S0802_C05_011E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C05_011EA,S0802_C05_011M,S0802_C05_011MA"}, "S0505_C06_001E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Foreign-born population", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C06_001EA,S0505_C06_001M,S0505_C06_001MA"}, "S2411_C04_013E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:!!Educational instruction, and library occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2411", "limit": 0, "attributes": "S2411_C04_013EA,S2411_C04_013M,S2411_C04_013MA"}, "S2602_C02_005E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!15 to 17 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C02_005EA,S2602_C02_005M,S2602_C02_005MA"}, "S0804_C02_021E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!NATIVITY AND CITIZENSHIP STATUS!!Native", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_021EA,S0804_C02_021M,S0804_C02_021MA"}, "S2411_C04_012E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:!!Legal occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2411", "limit": 0, "attributes": "S2411_C04_012EA,S2411_C04_012M,S2411_C04_012MA"}, "S0505_C06_002E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_002EA,S0505_C06_002M,S0505_C06_002MA"}, "S0804_C02_022E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_022EA,S0804_C02_022M,S0804_C02_022MA"}, "S2602_C02_006E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!18 to 24 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C02_006EA,S2602_C02_006M,S2602_C02_006MA"}, "S1703_C02_019E": {"label": "Estimate!!Less than 50 percent of the poverty level!!Population for whom poverty status is determined!!LIVING ARRANGEMENT!!In family households!!In married-couple family", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C02_019EA,S1703_C02_019M,S1703_C02_019MA"}, "S2303_C03_029E": {"label": "Estimate!!Male!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 1 to 14 hours per week!!1 to 13 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C03_029EA,S2303_C03_029M,S2303_C03_029MA"}, "S2506_C01_050E": {"label": "Estimate!!Owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$35,000 to $49,999!!Less than 20 percent", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "int", "group": "S2506", "limit": 0, "attributes": "S2506_C01_050EA,S2506_C01_050M,S2506_C01_050MA"}, "S2303_C03_028E": {"label": "Estimate!!Male!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 1 to 14 hours per week!!14 to 26 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C03_028EA,S2303_C03_028M,S2303_C03_028MA"}, "S1703_C02_017E": {"label": "Estimate!!Less than 50 percent of the poverty level!!Population for whom poverty status is determined!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C02_017EA,S1703_C02_017M,S1703_C02_017MA"}, "S2506_C01_051E": {"label": "Estimate!!Owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$35,000 to $49,999!!20 to 29 percent", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "int", "group": "S2506", "limit": 0, "attributes": "S2506_C01_051EA,S2506_C01_051M,S2506_C01_051MA"}, "S2602_C02_009E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!45 to 54 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C02_009EA,S2602_C02_009M,S2602_C02_009MA"}, "S2506_C01_052E": {"label": "Estimate!!Owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$35,000 to $49,999!!30 percent or more", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "int", "group": "S2506", "limit": 0, "attributes": "S2506_C01_052EA,S2506_C01_052M,S2506_C01_052MA"}, "S1703_C02_018E": {"label": "Estimate!!Less than 50 percent of the poverty level!!Population for whom poverty status is determined!!LIVING ARRANGEMENT!!In family households", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C02_018EA,S1703_C02_018M,S1703_C02_018MA"}, "S2506_C01_053E": {"label": "Estimate!!Owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$50,000 to $74,999", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "int", "group": "S2506", "limit": 0, "attributes": "S2506_C01_053EA,S2506_C01_053M,S2506_C01_053MA"}, "S1703_C02_015E": {"label": "Estimate!!Less than 50 percent of the poverty level!!Population for whom poverty status is determined!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C02_015EA,S1703_C02_015M,S1703_C02_015MA"}, "S2506_C01_054E": {"label": "Estimate!!Owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$50,000 to $74,999!!Less than 20 percent", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "int", "group": "S2506", "limit": 0, "attributes": "S2506_C01_054EA,S2506_C01_054M,S2506_C01_054MA"}, "S1703_C02_016E": {"label": "Estimate!!Less than 50 percent of the poverty level!!Population for whom poverty status is determined!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C02_016EA,S1703_C02_016M,S1703_C02_016MA"}, "S0504_C03_059E": {"label": "Estimate!!Foreign-born; Born in Northern America!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Employed", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_059EA,S0504_C03_059M,S0504_C03_059MA"}, "S2702_C02_100E": {"label": "Estimate!!Total Uninsured!!RATIO OF INCOME TO POVERTY LEVEL IN THE PAST 12 MONTHS!!Civilian noninstitutionalized population for whom poverty status is determined!!Below 50 percent of the poverty level", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_100EA,S2702_C02_100M,S2702_C02_100MA"}, "S2506_C01_055E": {"label": "Estimate!!Owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$50,000 to $74,999!!20 to 29 percent", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "int", "group": "S2506", "limit": 0, "attributes": "S2506_C01_055EA,S2506_C01_055M,S2506_C01_055MA"}, "S0504_C03_058E": {"label": "Estimate!!Foreign-born; Born in Northern America!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_058EA,S0504_C03_058M,S0504_C03_058MA"}, "S2702_C02_101E": {"label": "Estimate!!Total Uninsured!!RATIO OF INCOME TO POVERTY LEVEL IN THE PAST 12 MONTHS!!Civilian noninstitutionalized population for whom poverty status is determined!!50 to 99 percent of the poverty level", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_101EA,S2702_C02_101M,S2702_C02_101MA"}, "S1703_C02_013E": {"label": "Estimate!!Less than 50 percent of the poverty level!!Population for whom poverty status is determined!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C02_013EA,S1703_C02_013M,S1703_C02_013MA"}, "S1703_C02_014E": {"label": "Estimate!!Less than 50 percent of the poverty level!!Population for whom poverty status is determined!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C02_014EA,S1703_C02_014M,S1703_C02_014MA"}, "S2506_C01_056E": {"label": "Estimate!!Owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$50,000 to $74,999!!30 percent or more", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "int", "group": "S2506", "limit": 0, "attributes": "S2506_C01_056EA,S2506_C01_056M,S2506_C01_056MA"}, "S0504_C03_057E": {"label": "Estimate!!Foreign-born; Born in Northern America!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_057EA,S0504_C03_057M,S0504_C03_057MA"}, "S2702_C02_102E": {"label": "Estimate!!Total Uninsured!!RATIO OF INCOME TO POVERTY LEVEL IN THE PAST 12 MONTHS!!Civilian noninstitutionalized population for whom poverty status is determined!!100 to 149 percent of the poverty level", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_102EA,S2702_C02_102M,S2702_C02_102MA"}, "S2601C_C02_055E": {"label": "Estimate!!Total group quarters population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_055EA,S2601C_C02_055M,S2601C_C02_055MA"}, "S2602_C02_071E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Not a U.S. citizen!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C02_071EA,S2602_C02_071M,S2602_C02_071MA"}, "S2501_C01_035E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!FAMILY TYPE AND PRESENCE OF OWN CHILDREN!!With related children of householder under 18 years!!With own children of householder under 18 years!!Under 6 years and 6 to 17 years", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C01_035EA,S2501_C01_035M,S2501_C01_035MA"}, "S0801_C02_035E": {"label": "Estimate!!Male!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!8:30 a.m. to 8:59 a.m.", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C02_035EA,S0801_C02_035M,S0801_C02_035MA"}, "S2601C_C02_056E": {"label": "Estimate!!Total group quarters population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Same address", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_056EA,S2601C_C02_056M,S2601C_C02_056MA"}, "S2602_C02_072E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Not a U.S. citizen!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C02_072EA,S2602_C02_072M,S2602_C02_072MA"}, "S2501_C01_034E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!FAMILY TYPE AND PRESENCE OF OWN CHILDREN!!With related children of householder under 18 years!!With own children of householder under 18 years!!Under 6 years only", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C01_034EA,S2501_C01_034M,S2501_C01_034MA"}, "S0801_C02_034E": {"label": "Estimate!!Male!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!8:00 a.m. to 8:29 a.m.", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C02_034EA,S0801_C02_034M,S0801_C02_034MA"}, "S2601C_C02_057E": {"label": "Estimate!!Total group quarters population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the U.S.", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_057EA,S2601C_C02_057M,S2601C_C02_057MA"}, "S2501_C01_037E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!FAMILY TYPE AND PRESENCE OF OWN CHILDREN!!With related children of householder under 18 years!!No own children of householder under 18 years", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C01_037EA,S2501_C01_037M,S2501_C01_037MA"}, "S0801_C02_033E": {"label": "Estimate!!Male!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!7:30 a.m. to 7:59 a.m.", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C02_033EA,S0801_C02_033M,S0801_C02_033MA"}, "S2602_C02_070E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Not a U.S. citizen", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C02_070EA,S2602_C02_070M,S2602_C02_070MA"}, "S2601C_C02_058E": {"label": "Estimate!!Total group quarters population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the U.S.!!Same county", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_058EA,S2601C_C02_058M,S2601C_C02_058MA"}, "S2501_C01_036E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!FAMILY TYPE AND PRESENCE OF OWN CHILDREN!!With related children of householder under 18 years!!With own children of householder under 18 years!!6 to 17 years only", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C01_036EA,S2501_C01_036M,S2501_C01_036MA"}, "S2601C_C02_059E": {"label": "Estimate!!Total group quarters population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the U.S.!!Different county", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_059EA,S2601C_C02_059M,S2601C_C02_059MA"}, "S0801_C02_032E": {"label": "Estimate!!Male!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!7:00 a.m. to 7:29 a.m.", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C02_032EA,S0801_C02_032M,S0801_C02_032MA"}, "S2602_C02_075E": {"label": "Estimate!!Total group quarters population!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C02_075EA,S2602_C02_075M,S2602_C02_075MA"}, "S0801_C02_039E": {"label": "Estimate!!Male!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!15 to 19 minutes", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C02_039EA,S0801_C02_039M,S0801_C02_039MA"}, "S2002_C01_011E": {"label": "Estimate!!Total!!Median earnings (dollars)!!EDUCATIONAL ATTAINMENT!!Population 25 years and over with earnings", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C01_011EA,S2002_C01_011M,S2002_C01_011MA"}, "S0501_C01_078E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Public administration", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_078EA,S0501_C01_078M,S0501_C01_078MA"}, "S2601C_C02_051E": {"label": "Estimate!!Total group quarters population!!DISABILITY STATUS!!Population 18 to 64 years!!With a disability", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_051EA,S2601C_C02_051M,S2601C_C02_051MA"}, "S2501_C01_031E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Nonfamily households!!Householder not living alone!!Householder 65 years and over", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C01_031EA,S2501_C01_031M,S2501_C01_031MA"}, "S2602_C02_076E": {"label": "Estimate!!Total group quarters population!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English!!Speak English less than \"very well\"", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C02_076EA,S2602_C02_076M,S2602_C02_076MA"}, "S0801_C02_038E": {"label": "Estimate!!Male!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!10 to 14 minutes", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C02_038EA,S0801_C02_038M,S0801_C02_038MA"}, "S0501_C01_079E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C01_079EA,S0501_C01_079M,S0501_C01_079MA"}, "S2002_C01_010E": {"label": "Estimate!!Total!!Median earnings (dollars)!!Full-time, year-round workers 16 years and over with earnings!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C01_010EA,S2002_C01_010M,S2002_C01_010MA"}, "S2601C_C02_052E": {"label": "Estimate!!Total group quarters population!!DISABILITY STATUS!!Population 18 to 64 years!!No disability", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_052EA,S2601C_C02_052M,S2601C_C02_052MA"}, "S0505_C06_060E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_060EA,S0505_C06_060M,S0505_C06_060MA"}, "S2501_C01_030E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Nonfamily households!!Householder not living alone!!Householder 35 to 64 years", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C01_030EA,S2501_C01_030M,S2501_C01_030MA"}, "S1903_C03_019E": {"label": "Estimate!!Median income (dollars)!!FAMILIES!!Families!!Married-couple families!!With own children under 18 years", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C03_019EA,S1903_C03_019M,S1903_C03_019MA"}, "S0801_C02_037E": {"label": "Estimate!!Male!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!Less than 10 minutes", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C02_037EA,S0801_C02_037M,S0801_C02_037MA"}, "S2602_C02_073E": {"label": "Estimate!!Total group quarters population!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C02_073EA,S2602_C02_073M,S2602_C02_073MA"}, "S2601C_C02_053E": {"label": "Estimate!!Total group quarters population!!DISABILITY STATUS!!Population 65 years and over", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_053EA,S2601C_C02_053M,S2601C_C02_053MA"}, "S2501_C01_033E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!FAMILY TYPE AND PRESENCE OF OWN CHILDREN!!With related children of householder under 18 years!!With own children of householder under 18 years", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C01_033EA,S2501_C01_033M,S2501_C01_033MA"}, "S0801_C02_036E": {"label": "Estimate!!Male!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!9:00 a.m. to 11:59 p.m.", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C02_036EA,S0801_C02_036M,S0801_C02_036MA"}, "S2602_C02_074E": {"label": "Estimate!!Total group quarters population!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!English only", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C02_074EA,S2602_C02_074M,S2602_C02_074MA"}, "S1903_C03_018E": {"label": "Estimate!!Median income (dollars)!!FAMILIES!!Families!!Married-couple families", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C03_018EA,S1903_C03_018M,S1903_C03_018MA"}, "S2601C_C02_054E": {"label": "Estimate!!Total group quarters population!!DISABILITY STATUS!!Population 65 years and over!!With a disability", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_054EA,S2601C_C02_054M,S2601C_C02_054MA"}, "S2501_C01_032E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!FAMILY TYPE AND PRESENCE OF OWN CHILDREN!!With related children of householder under 18 years", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C01_032EA,S2501_C01_032M,S2501_C01_032MA"}, "S2411_C04_023E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Civilian employed population 16 years and over with earnings!!Service occupations:!!Food preparation and serving related occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2411", "limit": 0, "attributes": "S2411_C04_023EA,S2411_C04_023M,S2411_C04_023MA"}, "S2602_C02_079E": {"label": "Estimate!!Total group quarters population!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C02_079EA,S2602_C02_079M,S2602_C02_079MA"}, "S0501_C01_074E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Professional, scientific, and management, and administrative and waste management services", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_074EA,S0501_C01_074M,S0501_C01_074MA"}, "S2002_C01_015E": {"label": "Estimate!!Total!!Median earnings (dollars)!!EDUCATIONAL ATTAINMENT!!Population 25 years and over with earnings!!Bachelor's degree", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C01_015EA,S2002_C01_015M,S2002_C01_015MA"}, "S2411_C04_022E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Civilian employed population 16 years and over with earnings!!Service occupations:!!Protective service occupations:!!Law enforcement workers including supervisors", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2411", "limit": 0, "attributes": "S2411_C04_022EA,S2411_C04_022M,S2411_C04_022MA"}, "S0501_C01_075E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Educational services, and health care and social assistance", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_075EA,S0501_C01_075M,S0501_C01_075MA"}, "S2002_C01_014E": {"label": "Estimate!!Total!!Median earnings (dollars)!!EDUCATIONAL ATTAINMENT!!Population 25 years and over with earnings!!Some college or associate's degree", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C01_014EA,S2002_C01_014M,S2002_C01_014MA"}, "S2603_C05_069E": {"label": "Estimate!!Juvenile Facilities!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Naturalized U.S. citizen!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C05_069EA,S2603_C05_069M,S2603_C05_069MA"}, "S2602_C02_077E": {"label": "Estimate!!Total group quarters population!!EMPLOYMENT STATUS!!Population 16 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C02_077EA,S2602_C02_077M,S2602_C02_077MA"}, "S1810_C01_028E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a hearing difficulty!!Population 65 years and over!!Population 75 years and over", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C01_028EA,S1810_C01_028M,S1810_C01_028MA"}, "S0501_C01_076E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Arts, entertainment, and recreation, and accommodation and food services", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_076EA,S0501_C01_076M,S0501_C01_076MA"}, "S2002_C01_013E": {"label": "Estimate!!Total!!Median earnings (dollars)!!EDUCATIONAL ATTAINMENT!!Population 25 years and over with earnings!!High school graduate (includes equivalency)", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C01_013EA,S2002_C01_013M,S2002_C01_013MA"}, "S2411_C04_021E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Civilian employed population 16 years and over with earnings!!Service occupations:!!Protective service occupations:!!Firefighting and prevention, and other protective service workers including supervisors", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2411", "limit": 0, "attributes": "S2411_C04_021EA,S2411_C04_021M,S2411_C04_021MA"}, "S2602_C02_078E": {"label": "Estimate!!Total group quarters population!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C02_078EA,S2602_C02_078M,S2602_C02_078MA"}, "S0501_C01_077E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Other services (except public administration)", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_077EA,S0501_C01_077M,S0501_C01_077MA"}, "S2002_C01_012E": {"label": "Estimate!!Total!!Median earnings (dollars)!!EDUCATIONAL ATTAINMENT!!Population 25 years and over with earnings!!Less than high school graduate", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C01_012EA,S2002_C01_012M,S2002_C01_012MA"}, "S2411_C04_020E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Civilian employed population 16 years and over with earnings!!Service occupations:!!Protective service occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2411", "limit": 0, "attributes": "S2411_C04_020EA,S2411_C04_020M,S2411_C04_020MA"}, "S1810_C01_029E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a vision difficulty", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C01_029EA,S1810_C01_029M,S1810_C01_029MA"}, "S1810_C01_026E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a hearing difficulty!!Population 65 years and over", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C01_026EA,S1810_C01_026M,S1810_C01_026MA"}, "S2002_C01_019E": {"label": "Estimate!!Total!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Business and financial operations occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C01_019EA,S2002_C01_019M,S2002_C01_019MA"}, "S0501_C01_070E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Retail trade", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_070EA,S0501_C01_070M,S0501_C01_070MA"}, "S0101_C04_038E": {"label": "Estimate!!Percent Male!!Total population!!PERCENT ALLOCATED!!Age", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C04_038EA,S0101_C04_038M,S0101_C04_038MA"}, "S2101_C01_008E": {"label": "Estimate!!Total!!Civilian population 18 years and over!!SEX!!Female", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C01_008EA,S2101_C01_008M,S2101_C01_008MA"}, "S2603_C05_066E": {"label": "Estimate!!Juvenile Facilities!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C05_066EA,S2603_C05_066M,S2603_C05_066MA"}, "S0501_C01_071E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Transportation and warehousing, and utilities", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_071EA,S0501_C01_071M,S0501_C01_071MA"}, "S2002_C01_018E": {"label": "Estimate!!Total!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Management occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C01_018EA,S2002_C01_018M,S2002_C01_018MA"}, "S1810_C01_027E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a hearing difficulty!!Population 65 years and over!!Population 65 to 74 years", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C01_027EA,S1810_C01_027M,S1810_C01_027MA"}, "S0101_C04_037E": {"label": "Estimate!!Percent Male!!Total population!!PERCENT ALLOCATED!!Sex", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C04_037EA,S0101_C04_037M,S0101_C04_037MA"}, "S2101_C01_009E": {"label": "Estimate!!Total!!Civilian population 18 years and over!!AGE!!18 to 34 years", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C01_009EA,S2101_C01_009M,S2101_C01_009MA"}, "S2603_C05_065E": {"label": "Estimate!!Juvenile Facilities!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C05_065EA,S2603_C05_065M,S2603_C05_065MA"}, "S2501_C01_038E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!FAMILY TYPE AND PRESENCE OF OWN CHILDREN!!No related children of householder under 18 years", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C01_038EA,S2501_C01_038M,S2501_C01_038MA"}, "S2002_C01_017E": {"label": "Estimate!!Total!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C01_017EA,S2002_C01_017M,S2002_C01_017MA"}, "S0101_C04_036E": {"label": "Estimate!!Percent Male!!Total population!!SUMMARY INDICATORS!!Child dependency ratio", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C04_036EA,S0101_C04_036M,S0101_C04_036MA"}, "S0501_C01_072E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Information", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_072EA,S0501_C01_072M,S0501_C01_072MA"}, "S1810_C01_024E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a hearing difficulty!!Population 18 to 64 years!!Population 18 to 34 years", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C01_024EA,S1810_C01_024M,S1810_C01_024MA"}, "S2101_C01_006E": {"label": "Estimate!!Total!!Civilian population 18 years and over!!PERIOD OF SERVICE!!World War II veterans", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C01_006EA,S2101_C01_006M,S2101_C01_006MA"}, "S2603_C05_068E": {"label": "Estimate!!Juvenile Facilities!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Naturalized U.S. citizen!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C05_068EA,S2603_C05_068M,S2603_C05_068MA"}, "S0802_C05_028E": {"label": "Estimate!!Worked from home!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "int", "group": "S0802", "limit": 0, "attributes": "S0802_C05_028EA,S0802_C05_028M,S0802_C05_028MA"}, "S2002_C01_016E": {"label": "Estimate!!Total!!Median earnings (dollars)!!EDUCATIONAL ATTAINMENT!!Population 25 years and over with earnings!!Graduate or professional degree", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C01_016EA,S2002_C01_016M,S2002_C01_016MA"}, "S1810_C01_025E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a hearing difficulty!!Population 18 to 64 years!!Population 35 to 64 years", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C01_025EA,S1810_C01_025M,S1810_C01_025MA"}, "S0101_C04_035E": {"label": "Estimate!!Percent Male!!Total population!!SUMMARY INDICATORS!!Old-age dependency ratio", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C04_035EA,S0101_C04_035M,S0101_C04_035MA"}, "S0501_C01_073E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Finance and insurance, and real estate and rental and leasing", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_073EA,S0501_C01_073M,S0501_C01_073MA"}, "S2101_C01_007E": {"label": "Estimate!!Total!!Civilian population 18 years and over!!SEX!!Male", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C01_007EA,S2101_C01_007M,S2101_C01_007MA"}, "S2603_C05_067E": {"label": "Estimate!!Juvenile Facilities!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Naturalized U.S. citizen", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C05_067EA,S2603_C05_067M,S2603_C05_067MA"}, "S0802_C05_029E": {"label": "Estimate!!Worked from home!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$1 to $9,999 or loss", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C05_029EA,S0802_C05_029M,S0802_C05_029MA"}, "S0101_C04_034E": {"label": "Estimate!!Percent Male!!Total population!!SUMMARY INDICATORS!!Age dependency ratio", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C04_034EA,S0101_C04_034M,S0101_C04_034MA"}, "S1810_C01_022E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a hearing difficulty!!Population under 18 years!!Population 5 to 17 years", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C01_022EA,S1810_C01_022M,S1810_C01_022MA"}, "S0505_C06_059E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Employed", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_059EA,S0505_C06_059M,S0505_C06_059MA"}, "S2101_C01_004E": {"label": "Estimate!!Total!!Civilian population 18 years and over!!PERIOD OF SERVICE!!Vietnam War veterans", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C01_004EA,S2101_C01_004M,S2101_C01_004MA"}, "S2603_C05_074E": {"label": "Estimate!!Juvenile Facilities!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Entered 2000 to 2009", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C05_074EA,S2603_C05_074M,S2603_C05_074MA"}, "S0804_C02_055E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!INDUSTRY!!Information and finance and insurance, and real estate and rental and leasing", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_055EA,S0804_C02_055M,S0804_C02_055MA"}, "S0701PR_C03_029E": {"label": "Estimate!!Moved; from different municipio!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C03_029EA,S0701PR_C03_029M,S0701PR_C03_029MA"}, "S0802_C05_026E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Speak language other than English!!Speak English \"very well\"", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C05_026EA,S0802_C05_026M,S0802_C05_026MA"}, "S0101_C04_033E": {"label": "Estimate!!Percent Male!!Total population!!SUMMARY INDICATORS!!Sex ratio (males per 100 females)", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C04_033EA,S0101_C04_033M,S0101_C04_033MA"}, "S1810_C01_023E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a hearing difficulty!!Population 18 to 64 years", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C01_023EA,S1810_C01_023M,S1810_C01_023MA"}, "S2603_C05_073E": {"label": "Estimate!!Juvenile Facilities!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Entered 2010 or later", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C05_073EA,S2603_C05_073M,S2603_C05_073MA"}, "S2101_C01_005E": {"label": "Estimate!!Total!!Civilian population 18 years and over!!PERIOD OF SERVICE!!Korean War veterans", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C01_005EA,S2101_C01_005M,S2101_C01_005MA"}, "S0804_C02_056E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!INDUSTRY!!Professional, scientific, and management, and administrative and waste management services", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_056EA,S0804_C02_056M,S0804_C02_056MA"}, "S0701PR_C03_028E": {"label": "Estimate!!Moved; from different municipio!!MARITAL STATUS!!Population 15 years and over", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C03_028EA,S0701PR_C03_028M,S0701PR_C03_028MA"}, "S0802_C05_027E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Speak language other than English!!Speak English less than \"very well\"", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C05_027EA,S0802_C05_027M,S0802_C05_027MA"}, "S0501_C01_080E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$1 to $9,999 or loss", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_080EA,S0501_C01_080M,S0501_C01_080MA"}, "S2101_C01_002E": {"label": "Estimate!!Total!!Civilian population 18 years and over!!PERIOD OF SERVICE!!Gulf War (9/2001 or later) veterans", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C01_002EA,S2101_C01_002M,S2101_C01_002MA"}, "S2411_C04_029E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Civilian employed population 16 years and over with earnings!!Natural resources, construction, and maintenance occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2411", "limit": 0, "attributes": "S2411_C04_029EA,S2411_C04_029M,S2411_C04_029MA"}, "S0505_C06_057E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_057EA,S0505_C06_057M,S0505_C06_057MA"}, "S1810_C01_020E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a hearing difficulty!!Population under 18 years", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C01_020EA,S1810_C01_020M,S1810_C01_020MA"}, "S2603_C05_076E": {"label": "Estimate!!Juvenile Facilities!!WORLD REGION OF BIRTH OF FOREIGN BORN!!Foreign-born population excluding population born at sea", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C05_076EA,S2603_C05_076M,S2603_C05_076MA"}, "S0101_C04_032E": {"label": "Estimate!!Percent Male!!Total population!!SUMMARY INDICATORS!!Median age (years)", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C04_032EA,S0101_C04_032M,S0101_C04_032MA"}, "S0804_C02_053E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!INDUSTRY!!Retail trade", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_053EA,S0804_C02_053M,S0804_C02_053MA"}, "S0701PR_C03_027E": {"label": "Estimate!!Moved; from different municipio!!Population 1 year and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born!!Not a U.S. citizen", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C03_027EA,S0701PR_C03_027M,S0701PR_C03_027MA"}, "S0802_C05_024E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born!!Not a U.S. citizen", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C05_024EA,S0802_C05_024M,S0802_C05_024MA"}, "S0501_C01_081E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$10,000 to $14,999", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_081EA,S0501_C01_081M,S0501_C01_081MA"}, "S1810_C01_021E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a hearing difficulty!!Population under 18 years!!Population under 5 years", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C01_021EA,S1810_C01_021M,S1810_C01_021MA"}, "S0505_C06_058E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_058EA,S0505_C06_058M,S0505_C06_058MA"}, "S2101_C01_003E": {"label": "Estimate!!Total!!Civilian population 18 years and over!!PERIOD OF SERVICE!!Gulf War (8/1990 to 8/2001) veterans", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C01_003EA,S2101_C01_003M,S2101_C01_003MA"}, "S2411_C04_028E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Civilian employed population 16 years and over with earnings!!Sales and office occupations:!!Office and administrative support occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2411", "limit": 0, "attributes": "S2411_C04_028EA,S2411_C04_028M,S2411_C04_028MA"}, "S2603_C05_075E": {"label": "Estimate!!Juvenile Facilities!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Entered before 2000", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C05_075EA,S2603_C05_075M,S2603_C05_075MA"}, "S0101_C04_031E": {"label": "Estimate!!Percent Male!!Total population!!SELECTED AGE CATEGORIES!!75 years and over", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C04_031EA,S0101_C04_031M,S0101_C04_031MA"}, "S0701PR_C03_026E": {"label": "Estimate!!Moved; from different municipio!!Population 1 year and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born!!Naturalized U.S. citizen", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C03_026EA,S0701PR_C03_026M,S0701PR_C03_026MA"}, "S0804_C02_054E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!INDUSTRY!!Transportation and warehousing, and utilities", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_054EA,S0804_C02_054M,S0804_C02_054MA"}, "S0802_C05_025E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Speak language other than English", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C05_025EA,S0802_C05_025M,S0802_C05_025MA"}, "S2603_C05_070E": {"label": "Estimate!!Juvenile Facilities!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Not a U.S. citizen", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C05_070EA,S2603_C05_070M,S2603_C05_070MA"}, "S2411_C04_027E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Civilian employed population 16 years and over with earnings!!Sales and office occupations:!!Sales and related occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2411", "limit": 0, "attributes": "S2411_C04_027EA,S2411_C04_027M,S2411_C04_027MA"}, "S0101_C04_030E": {"label": "Estimate!!Percent Male!!Total population!!SELECTED AGE CATEGORIES!!65 years and over", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C04_030EA,S0101_C04_030M,S0101_C04_030MA"}, "S0804_C02_059E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!INDUSTRY!!Other services (except public administration)", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_059EA,S0804_C02_059M,S0804_C02_059MA"}, "S0506_C03_123E": {"label": "Estimate!!Foreign-born; Born in Mexico!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_123EA,S0506_C03_123M,S0506_C03_123MA"}, "S0802_C05_022E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C05_022EA,S0802_C05_022M,S0802_C05_022MA"}, "S2101_C01_001E": {"label": "Estimate!!Total!!Civilian population 18 years and over", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C01_001EA,S2101_C01_001M,S2101_C01_001MA"}, "S2411_C04_026E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Civilian employed population 16 years and over with earnings!!Sales and office occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2411", "limit": 0, "attributes": "S2411_C04_026EA,S2411_C04_026M,S2411_C04_026MA"}, "S0506_C03_122E": {"label": "Estimate!!Foreign-born; Born in Mexico!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_122EA,S0506_C03_122M,S0506_C03_122MA"}, "S0802_C05_023E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born!!Naturalized U.S. citizen", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C05_023EA,S0802_C05_023M,S0802_C05_023MA"}, "S0802_C05_020E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C05_020EA,S0802_C05_020M,S0802_C05_020MA"}, "S2411_C04_025E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Civilian employed population 16 years and over with earnings!!Service occupations:!!Personal care and service occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2411", "limit": 0, "attributes": "S2411_C04_025EA,S2411_C04_025M,S2411_C04_025MA"}, "S0804_C02_057E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!INDUSTRY!!Educational services, and health care and social assistance", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_057EA,S0804_C02_057M,S0804_C02_057MA"}, "S2603_C05_072E": {"label": "Estimate!!Juvenile Facilities!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Not a U.S. citizen!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C05_072EA,S2603_C05_072M,S2603_C05_072MA"}, "S0506_C03_121E": {"label": "Estimate!!Foreign-born; Born in Mexico!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_121EA,S0506_C03_121M,S0506_C03_121MA"}, "S2411_C04_024E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Civilian employed population 16 years and over with earnings!!Service occupations:!!Building and grounds cleaning and maintenance occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2411", "limit": 0, "attributes": "S2411_C04_024EA,S2411_C04_024M,S2411_C04_024MA"}, "S0804_C02_058E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!INDUSTRY!!Arts, entertainment, and recreation, and accommodation and food services", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_058EA,S0804_C02_058M,S0804_C02_058MA"}, "S0506_C03_120E": {"label": "Estimate!!Foreign-born; Born in Mexico!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_120EA,S0506_C03_120M,S0506_C03_120MA"}, "S2603_C05_071E": {"label": "Estimate!!Juvenile Facilities!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Not a U.S. citizen!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C05_071EA,S2603_C05_071M,S2603_C05_071MA"}, "S0802_C05_021E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!NATIVITY AND CITIZENSHIP STATUS!!Native", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C05_021EA,S0802_C05_021M,S0802_C05_021MA"}, "S1903_C03_017E": {"label": "Estimate!!Median income (dollars)!!FAMILIES!!Families!!With no own children of householder under 18 years", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C03_017EA,S1903_C03_017M,S1903_C03_017MA"}, "S0701PR_C03_021E": {"label": "Estimate!!Moved; from different municipio!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C03_021EA,S0701PR_C03_021M,S0701PR_C03_021MA"}, "S0506_C03_127E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Occupied housing units!!HOUSING TENURE!!Average household size of owner-occupied unit", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_127EA,S0506_C03_127M,S0506_C03_127MA"}, "S0505_C06_051E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Graduate or professional degree", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_051EA,S0505_C06_051M,S0505_C06_051MA"}, "S1903_C03_016E": {"label": "Estimate!!Median income (dollars)!!FAMILIES!!Families!!With own children of householder under 18 years", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C03_016EA,S1903_C03_016M,S1903_C03_016MA"}, "S0701PR_C03_020E": {"label": "Estimate!!Moved; from different municipio!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C03_020EA,S0701PR_C03_020M,S0701PR_C03_020MA"}, "S0506_C03_126E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Occupied housing units!!HOUSING TENURE!!Renter-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_126EA,S0506_C03_126M,S0506_C03_126MA"}, "S0505_C06_052E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C06_052EA,S0505_C06_052M,S0505_C06_052MA"}, "S1903_C03_015E": {"label": "Estimate!!Median income (dollars)!!FAMILIES!!Families", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C03_015EA,S1903_C03_015M,S1903_C03_015MA"}, "S0506_C03_125E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Occupied housing units!!HOUSING TENURE!!Owner-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_125EA,S0506_C03_125M,S0506_C03_125MA"}, "S2601C_C02_050E": {"label": "Estimate!!Total group quarters population!!DISABILITY STATUS!!Population 18 to 64 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_050EA,S2601C_C02_050M,S2601C_C02_050MA"}, "S1903_C03_014E": {"label": "Estimate!!Median income (dollars)!!HOUSEHOLD INCOME BY AGE OF HOUSEHOLDER!!65 years and over", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C03_014EA,S1903_C03_014M,S1903_C03_014MA"}, "S0506_C03_124E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C03_124EA,S0506_C03_124M,S0506_C03_124MA"}, "S0505_C06_050E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_050EA,S0505_C06_050M,S0505_C06_050MA"}, "S0505_C06_055E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English!!Speak English less than \"very well\"", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_055EA,S0505_C06_055M,S0505_C06_055MA"}, "S1903_C03_013E": {"label": "Estimate!!Median income (dollars)!!HOUSEHOLD INCOME BY AGE OF HOUSEHOLDER!!45 to 64 years", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C03_013EA,S1903_C03_013M,S1903_C03_013MA"}, "S0701PR_C03_025E": {"label": "Estimate!!Moved; from different municipio!!Population 1 year and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C03_025EA,S0701PR_C03_025M,S0701PR_C03_025MA"}, "S0804_C02_051E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!INDUSTRY!!Manufacturing", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_051EA,S0804_C02_051M,S0804_C02_051MA"}, "S0801_C02_031E": {"label": "Estimate!!Male!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!6:30 a.m. to 6:59 a.m.", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C02_031EA,S0801_C02_031M,S0801_C02_031MA"}, "S0505_C06_056E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!EMPLOYMENT STATUS!!Population 16 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C06_056EA,S0505_C06_056M,S0505_C06_056MA"}, "S2602_C02_080E": {"label": "Estimate!!Total group quarters population!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Employed", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C02_080EA,S2602_C02_080M,S2602_C02_080MA"}, "S1903_C03_012E": {"label": "Estimate!!Median income (dollars)!!HOUSEHOLD INCOME BY AGE OF HOUSEHOLDER!!25 to 44 years", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C03_012EA,S1903_C03_012M,S1903_C03_012MA"}, "S0701PR_C03_024E": {"label": "Estimate!!Moved; from different municipio!!Population 1 year and over!!NATIVITY AND CITIZENSHIP STATUS!!Native", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C03_024EA,S0701PR_C03_024M,S0701PR_C03_024MA"}, "S0804_C02_052E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!INDUSTRY!!Wholesale trade", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_052EA,S0804_C02_052M,S0804_C02_052MA"}, "S0801_C02_030E": {"label": "Estimate!!Male!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!6:00 a.m. to 6:29 a.m.", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C02_030EA,S0801_C02_030M,S0801_C02_030MA"}, "S0505_C06_053E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!English only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_053EA,S0505_C06_053M,S0505_C06_053MA"}, "S1903_C03_011E": {"label": "Estimate!!Median income (dollars)!!HOUSEHOLD INCOME BY AGE OF HOUSEHOLDER!!15 to 24 years", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C03_011EA,S1903_C03_011M,S1903_C03_011MA"}, "S0701PR_C03_023E": {"label": "Estimate!!Moved; from different municipio!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C03_023EA,S0701PR_C03_023M,S0701PR_C03_023MA"}, "S0506_C03_129E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Occupied housing units!!ROOMS!!1 room", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_129EA,S0506_C03_129M,S0506_C03_129MA"}, "S0505_C06_054E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_054EA,S0505_C06_054M,S0505_C06_054MA"}, "S0701PR_C03_022E": {"label": "Estimate!!Moved; from different municipio!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C03_022EA,S0701PR_C03_022M,S0701PR_C03_022MA"}, "S0804_C02_050E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!INDUSTRY!!Construction", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_050EA,S0804_C02_050M,S0804_C02_050MA"}, "S0506_C03_128E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Occupied housing units!!HOUSING TENURE!!Average household size of renter-occupied unit", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_128EA,S0506_C03_128M,S0506_C03_128MA"}, "S1903_C03_010E": {"label": "Estimate!!Median income (dollars)!!HOUSEHOLD INCOME BY RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Households!!White alone, not Hispanic or Latino", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C03_010EA,S1903_C03_010M,S1903_C03_010MA"}, "S2704_C03_025E": {"label": "Estimate!!Percent Public Coverage!!PUBLIC HEALTH INSURANCE ALONE OR IN COMBINATION!!75 years and over", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "float", "group": "S2704", "limit": 0, "attributes": "S2704_C03_025EA,S2704_C03_025M,S2704_C03_025MA"}, "S0801_C02_047E": {"label": "Estimate!!Male!!VEHICLES AVAILABLE!!Workers 16 years and over in households", "concept": "Commuting Characteristics by Sex", "predicateType": "int", "group": "S0801", "limit": 0, "attributes": "S0801_C02_047EA,S0801_C02_047M,S0801_C02_047MA"}, "S2601C_C02_067E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_067EA,S2601C_C02_067M,S2601C_C02_067MA"}, "S2501_C01_023E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Nonfamily households", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C01_023EA,S2501_C01_023M,S2501_C01_023MA"}, "S1201_C01_007E": {"label": "Estimate!!Total!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over!!55 to 64 years", "concept": "Marital Status", "predicateType": "int", "group": "S1201", "limit": 0, "attributes": "S1201_C01_007EA,S1201_C01_007M,S1201_C01_007MA"}, "S2704_C03_026E": {"label": "Estimate!!Percent Public Coverage!!COVERAGE ALONE!!Public health insurance alone", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "float", "group": "S2704", "limit": 0, "attributes": "S2704_C03_026EA,S2704_C03_026M,S2704_C03_026MA"}, "S2601C_C02_068E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Male", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_068EA,S2601C_C02_068M,S2601C_C02_068MA"}, "S2602_C02_060E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C02_060EA,S2602_C02_060M,S2602_C02_060MA"}, "S0801_C02_046E": {"label": "Estimate!!Male!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!Mean travel time to work (minutes)", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C02_046EA,S0801_C02_046M,S0801_C02_046MA"}, "S2501_C01_022E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Other family!!Female householder, no spouse present!!Householder 65 years and over", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C01_022EA,S2501_C01_022M,S2501_C01_022MA"}, "S1201_C01_008E": {"label": "Estimate!!Total!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over!!65 years and over", "concept": "Marital Status", "predicateType": "int", "group": "S1201", "limit": 0, "attributes": "S1201_C01_008EA,S1201_C01_008M,S1201_C01_008MA"}, "S2601C_C02_069E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Female", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_069EA,S2601C_C02_069M,S2601C_C02_069MA"}, "S2501_C01_025E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Nonfamily households!!Householder living alone!!Householder 15 to 34 years", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C01_025EA,S2501_C01_025M,S2501_C01_025MA"}, "S0801_C02_045E": {"label": "Estimate!!Male!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!60 or more minutes", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C02_045EA,S0801_C02_045M,S0801_C02_045MA"}, "S1201_C01_009E": {"label": "Estimate!!Total!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over", "concept": "Marital Status", "predicateType": "int", "group": "S1201", "limit": 0, "attributes": "S1201_C01_009EA,S1201_C01_009M,S1201_C01_009MA"}, "S2704_C03_023E": {"label": "Estimate!!Percent Public Coverage!!PUBLIC HEALTH INSURANCE ALONE OR IN COMBINATION!!55 to 64 years", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "float", "group": "S2704", "limit": 0, "attributes": "S2704_C03_023EA,S2704_C03_023M,S2704_C03_023MA"}, "S2704_C03_024E": {"label": "Estimate!!Percent Public Coverage!!PUBLIC HEALTH INSURANCE ALONE OR IN COMBINATION!!65 to 74 years", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "float", "group": "S2704", "limit": 0, "attributes": "S2704_C03_024EA,S2704_C03_024M,S2704_C03_024MA"}, "S2501_C01_024E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Nonfamily households!!Householder living alone", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C01_024EA,S2501_C01_024M,S2501_C01_024MA"}, "S0801_C02_044E": {"label": "Estimate!!Male!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!45 to 59 minutes", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C02_044EA,S0801_C02_044M,S0801_C02_044MA"}, "S2704_C03_029E": {"label": "Estimate!!Percent Public Coverage!!COVERAGE ALONE!!Public health insurance alone!!VA health care coverage alone", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "float", "group": "S2704", "limit": 0, "attributes": "S2704_C03_029EA,S2704_C03_029M,S2704_C03_029MA"}, "S2401_C03_001E": {"label": "Estimate!!Percent Male!!Civilian employed population 16 years and over", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2401", "limit": 0, "attributes": "S2401_C03_001EA,S2401_C03_001M,S2401_C03_001MA"}, "S2602_C02_063E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Native!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C02_063EA,S2602_C02_063M,S2602_C02_063MA"}, "S2601C_C02_063E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_063EA,S2601C_C02_063M,S2601C_C02_063MA"}, "S0505_C06_071E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Civilian employed population 16 years and over!!OCCUPATION!!Sales and office occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_071EA,S0505_C06_071M,S0505_C06_071MA"}, "S2602_C02_064E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C02_064EA,S2602_C02_064M,S2602_C02_064MA"}, "S2401_C03_002E": {"label": "Estimate!!Percent Male!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2401", "limit": 0, "attributes": "S2401_C03_002EA,S2401_C03_002M,S2401_C03_002MA"}, "S2601C_C02_064E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Native", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_064EA,S2601C_C02_064M,S2601C_C02_064MA"}, "S0505_C06_072E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Civilian employed population 16 years and over!!OCCUPATION!!Natural resources, construction, and maintenance occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_072EA,S0505_C06_072M,S0505_C06_072MA"}, "S2704_C03_027E": {"label": "Estimate!!Percent Public Coverage!!COVERAGE ALONE!!Public health insurance alone!!Medicare coverage alone", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "float", "group": "S2704", "limit": 0, "attributes": "S2704_C03_027EA,S2704_C03_027M,S2704_C03_027MA"}, "S0801_C02_049E": {"label": "Estimate!!Male!!VEHICLES AVAILABLE!!Workers 16 years and over in households!!1 vehicle available", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C02_049EA,S0801_C02_049M,S0801_C02_049MA"}, "S2601C_C02_065E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Native!!Male", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_065EA,S2601C_C02_065M,S2601C_C02_065MA"}, "S2602_C02_061E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Native", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C02_061EA,S2602_C02_061M,S2602_C02_061MA"}, "S2501_C01_021E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Other family!!Female householder, no spouse present!!Householder 35 to 64 years", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C01_021EA,S2501_C01_021M,S2501_C01_021MA"}, "S2704_C03_028E": {"label": "Estimate!!Percent Public Coverage!!COVERAGE ALONE!!Public health insurance alone!!Medicaid/means tested coverage alone", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "float", "group": "S2704", "limit": 0, "attributes": "S2704_C03_028EA,S2704_C03_028M,S2704_C03_028MA"}, "S0801_C02_048E": {"label": "Estimate!!Male!!VEHICLES AVAILABLE!!Workers 16 years and over in households!!No vehicle available", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C02_048EA,S0801_C02_048M,S0801_C02_048MA"}, "S2601C_C02_066E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Native!!Female", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_066EA,S2601C_C02_066M,S2601C_C02_066MA"}, "S2602_C02_062E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Native!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C02_062EA,S2602_C02_062M,S2602_C02_062MA"}, "S0505_C06_070E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Civilian employed population 16 years and over!!OCCUPATION!!Service occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_070EA,S0505_C06_070M,S0505_C06_070MA"}, "S2501_C01_020E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Other family!!Female householder, no spouse present!!Householder 15 to 34 years", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C01_020EA,S2501_C01_020M,S2501_C01_020MA"}, "S2602_C02_067E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Naturalized U.S. citizen", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C02_067EA,S2602_C02_067M,S2602_C02_067MA"}, "S2411_C04_035E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Civilian employed population 16 years and over with earnings!!Production, transportation, and material moving occupations:!!Transportation occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2411", "limit": 0, "attributes": "S2411_C04_035EA,S2411_C04_035M,S2411_C04_035MA"}, "S0501_C01_086E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$75,000 or more", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_086EA,S0501_C01_086M,S0501_C01_086MA"}, "S2401_C03_005E": {"label": "Estimate!!Percent Male!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Management, business, and financial occupations:!!Business and financial operations occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2401", "limit": 0, "attributes": "S2401_C03_005EA,S2401_C03_005M,S2401_C03_005MA"}, "S2002_C01_003E": {"label": "Estimate!!Total!!Median earnings (dollars)!!Full-time, year-round workers 16 years and over with earnings!!RACE AND HISPANIC OR LATINO ORIGIN!!One race--!!Black or African American", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C01_003EA,S2002_C01_003M,S2002_C01_003MA"}, "S2603_C05_058E": {"label": "Estimate!!Juvenile Facilities!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the United States!!Different county!!Different state", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C05_058EA,S2603_C05_058M,S2603_C05_058MA"}, "S1810_C01_018E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!AGE!!75 years and over", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C01_018EA,S1810_C01_018M,S1810_C01_018MA"}, "S2411_C04_034E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Civilian employed population 16 years and over with earnings!!Production, transportation, and material moving occupations:!!Production occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2411", "limit": 0, "attributes": "S2411_C04_034EA,S2411_C04_034M,S2411_C04_034MA"}, "S0101_C04_029E": {"label": "Estimate!!Percent Male!!Total population!!SELECTED AGE CATEGORIES!!62 years and over", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C04_029EA,S0101_C04_029M,S0101_C04_029MA"}, "S2602_C02_068E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Naturalized U.S. citizen!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C02_068EA,S2602_C02_068M,S2602_C02_068MA"}, "S0501_C01_087E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!Median earnings (dollars) for full-time, year-round workers!!Male", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C01_087EA,S0501_C01_087M,S0501_C01_087MA"}, "S2002_C01_002E": {"label": "Estimate!!Total!!Median earnings (dollars)!!Full-time, year-round workers 16 years and over with earnings!!RACE AND HISPANIC OR LATINO ORIGIN!!One race--!!White", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C01_002EA,S2002_C01_002M,S2002_C01_002MA"}, "S2401_C03_006E": {"label": "Estimate!!Percent Male!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Computer, engineering, and science occupations:", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2401", "limit": 0, "attributes": "S2401_C03_006EA,S2401_C03_006M,S2401_C03_006MA"}, "S2603_C05_057E": {"label": "Estimate!!Juvenile Facilities!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the United States!!Different county!!Same state", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C05_057EA,S2603_C05_057M,S2603_C05_057MA"}, "S1810_C01_019E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a hearing difficulty", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C01_019EA,S1810_C01_019M,S1810_C01_019MA"}, "S2411_C04_033E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Civilian employed population 16 years and over with earnings!!Production, transportation, and material moving occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2411", "limit": 0, "attributes": "S2411_C04_033EA,S2411_C04_033M,S2411_C04_033MA"}, "S2602_C02_065E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C02_065EA,S2602_C02_065M,S2602_C02_065MA"}, "S1810_C01_016E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!AGE!!35 to 64 years", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C01_016EA,S1810_C01_016M,S1810_C01_016MA"}, "S0101_C04_028E": {"label": "Estimate!!Percent Male!!Total population!!SELECTED AGE CATEGORIES!!60 years and over", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C04_028EA,S0101_C04_028M,S0101_C04_028MA"}, "S2401_C03_003E": {"label": "Estimate!!Percent Male!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Management, business, and financial occupations:", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2401", "limit": 0, "attributes": "S2401_C03_003EA,S2401_C03_003M,S2401_C03_003MA"}, "S0501_C01_088E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!Median earnings (dollars) for full-time, year-round workers!!Female", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C01_088EA,S0501_C01_088M,S0501_C01_088MA"}, "S2002_C01_001E": {"label": "Estimate!!Total!!Median earnings (dollars)!!Full-time, year-round workers 16 years and over with earnings", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C01_001EA,S2002_C01_001M,S2002_C01_001MA"}, "S0804_C02_049E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!INDUSTRY!!Agriculture, forestry, fishing and hunting, and mining", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_049EA,S0804_C02_049M,S0804_C02_049MA"}, "S1201_C01_001E": {"label": "Estimate!!Total!!Population 15 years and over", "concept": "Marital Status", "predicateType": "int", "group": "S1201", "limit": 0, "attributes": "S1201_C01_001EA,S1201_C01_001M,S1201_C01_001MA"}, "S2602_C02_066E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C02_066EA,S2602_C02_066M,S2602_C02_066MA"}, "S1810_C01_017E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!AGE!!65 to 74 years", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C01_017EA,S1810_C01_017M,S1810_C01_017MA"}, "S0101_C04_027E": {"label": "Estimate!!Percent Male!!Total population!!SELECTED AGE CATEGORIES!!21 years and over", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C04_027EA,S0101_C04_027M,S0101_C04_027MA"}, "S0501_C01_089E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C01_089EA,S0501_C01_089M,S0501_C01_089MA"}, "S2411_C04_032E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Civilian employed population 16 years and over with earnings!!Natural resources, construction, and maintenance occupations:!!Installation, maintenance, and repair occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2411", "limit": 0, "attributes": "S2411_C04_032EA,S2411_C04_032M,S2411_C04_032MA"}, "S2401_C03_004E": {"label": "Estimate!!Percent Male!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Management, business, and financial occupations:!!Management occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2401", "limit": 0, "attributes": "S2401_C03_004EA,S2401_C03_004M,S2401_C03_004MA"}, "S2603_C05_059E": {"label": "Estimate!!Juvenile Facilities!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Abroad", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C05_059EA,S2603_C05_059M,S2603_C05_059MA"}, "S1201_C01_002E": {"label": "Estimate!!Total!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over", "concept": "Marital Status", "predicateType": "int", "group": "S1201", "limit": 0, "attributes": "S1201_C01_002EA,S1201_C01_002M,S1201_C01_002MA"}, "S1810_C01_014E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!AGE!!5 to 17 years", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C01_014EA,S1810_C01_014M,S1810_C01_014MA"}, "S0501_C01_082E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$15,000 to $24,999", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_082EA,S0501_C01_082M,S0501_C01_082MA"}, "S2002_C01_007E": {"label": "Estimate!!Total!!Median earnings (dollars)!!Full-time, year-round workers 16 years and over with earnings!!RACE AND HISPANIC OR LATINO ORIGIN!!One race--!!Some other race", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C01_007EA,S2002_C01_007M,S2002_C01_007MA"}, "S0101_C04_026E": {"label": "Estimate!!Percent Male!!Total population!!SELECTED AGE CATEGORIES!!18 years and over", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C04_026EA,S0101_C04_026M,S0101_C04_026MA"}, "S2603_C05_054E": {"label": "Estimate!!Juvenile Facilities!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the United States", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C05_054EA,S2603_C05_054M,S2603_C05_054MA"}, "S2411_C04_031E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Civilian employed population 16 years and over with earnings!!Natural resources, construction, and maintenance occupations:!!Construction and extraction occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2411", "limit": 0, "attributes": "S2411_C04_031EA,S2411_C04_031M,S2411_C04_031MA"}, "S2401_C03_009E": {"label": "Estimate!!Percent Male!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Computer, engineering, and science occupations:!!Life, physical, and social science occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2401", "limit": 0, "attributes": "S2401_C03_009EA,S2401_C03_009M,S2401_C03_009MA"}, "S2501_C01_027E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Nonfamily households!!Householder living alone!!Householder 65 years and over", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C01_027EA,S2501_C01_027M,S2501_C01_027MA"}, "S1201_C01_003E": {"label": "Estimate!!Total!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over!!15 to 19 years", "concept": "Marital Status", "predicateType": "int", "group": "S1201", "limit": 0, "attributes": "S1201_C01_003EA,S1201_C01_003M,S1201_C01_003MA"}, "S1810_C01_015E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!AGE!!18 to 34 years", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C01_015EA,S1810_C01_015M,S1810_C01_015MA"}, "S2002_C01_006E": {"label": "Estimate!!Total!!Median earnings (dollars)!!Full-time, year-round workers 16 years and over with earnings!!RACE AND HISPANIC OR LATINO ORIGIN!!One race--!!Native Hawaiian and Other Pacific Islander", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C01_006EA,S2002_C01_006M,S2002_C01_006MA"}, "S0101_C04_025E": {"label": "Estimate!!Percent Male!!Total population!!SELECTED AGE CATEGORIES!!16 years and over", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C04_025EA,S0101_C04_025M,S0101_C04_025MA"}, "S0501_C01_083E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$25,000 to $34,999", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_083EA,S0501_C01_083M,S0501_C01_083MA"}, "S2411_C04_030E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Civilian employed population 16 years and over with earnings!!Natural resources, construction, and maintenance occupations:!!Farming, fishing, and forestry occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2411", "limit": 0, "attributes": "S2411_C04_030EA,S2411_C04_030M,S2411_C04_030MA"}, "S2603_C05_053E": {"label": "Estimate!!Juvenile Facilities!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Same address", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C05_053EA,S2603_C05_053M,S2603_C05_053MA"}, "S2501_C01_026E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Nonfamily households!!Householder living alone!!Householder 35 to 64 years", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C01_026EA,S2501_C01_026M,S2501_C01_026MA"}, "S1201_C01_004E": {"label": "Estimate!!Total!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over!!20 to 34 years", "concept": "Marital Status", "predicateType": "int", "group": "S1201", "limit": 0, "attributes": "S1201_C01_004EA,S1201_C01_004M,S1201_C01_004MA"}, "S2002_C01_005E": {"label": "Estimate!!Total!!Median earnings (dollars)!!Full-time, year-round workers 16 years and over with earnings!!RACE AND HISPANIC OR LATINO ORIGIN!!One race--!!Asian", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C01_005EA,S2002_C01_005M,S2002_C01_005MA"}, "S0101_C04_024E": {"label": "Estimate!!Percent Male!!Total population!!SELECTED AGE CATEGORIES!!15 to 44 years", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C04_024EA,S0101_C04_024M,S0101_C04_024MA"}, "S0501_C01_084E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$35,000 to $49,999", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_084EA,S0501_C01_084M,S0501_C01_084MA"}, "S2602_C02_069E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Naturalized U.S. citizen!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C02_069EA,S2602_C02_069M,S2602_C02_069MA"}, "S1810_C01_012E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino (of any race)", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C01_012EA,S1810_C01_012M,S1810_C01_012MA"}, "S2603_C05_056E": {"label": "Estimate!!Juvenile Facilities!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the United States!!Different county", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C05_056EA,S2603_C05_056M,S2603_C05_056MA"}, "S2401_C03_007E": {"label": "Estimate!!Percent Male!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Computer, engineering, and science occupations:!!Computer and mathematical occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2401", "limit": 0, "attributes": "S2401_C03_007EA,S2401_C03_007M,S2401_C03_007MA"}, "S2501_C01_029E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Nonfamily households!!Householder not living alone!!Householder 15 to 34 years", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C01_029EA,S2501_C01_029M,S2501_C01_029MA"}, "S1201_C01_005E": {"label": "Estimate!!Total!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over!!35 to 44 years", "concept": "Marital Status", "predicateType": "int", "group": "S1201", "limit": 0, "attributes": "S1201_C01_005EA,S1201_C01_005M,S1201_C01_005MA"}, "S0101_C04_023E": {"label": "Estimate!!Percent Male!!Total population!!SELECTED AGE CATEGORIES!!18 to 24 years", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C04_023EA,S0101_C04_023M,S0101_C04_023MA"}, "S1810_C01_013E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!AGE!!Under 5 years", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C01_013EA,S1810_C01_013M,S1810_C01_013MA"}, "S0501_C01_085E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$50,000 to $74,999", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_085EA,S0501_C01_085M,S0501_C01_085MA"}, "S2603_C05_055E": {"label": "Estimate!!Juvenile Facilities!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the United States!!Same county", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C05_055EA,S2603_C05_055M,S2603_C05_055MA"}, "S2002_C01_004E": {"label": "Estimate!!Total!!Median earnings (dollars)!!Full-time, year-round workers 16 years and over with earnings!!RACE AND HISPANIC OR LATINO ORIGIN!!One race--!!American Indian and Alaska Native", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C01_004EA,S2002_C01_004M,S2002_C01_004MA"}, "S2401_C03_008E": {"label": "Estimate!!Percent Male!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Computer, engineering, and science occupations:!!Architecture and engineering occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2401", "limit": 0, "attributes": "S2401_C03_008EA,S2401_C03_008M,S2401_C03_008MA"}, "S2501_C01_028E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Nonfamily households!!Householder not living alone", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C01_028EA,S2501_C01_028M,S2501_C01_028MA"}, "S1201_C01_006E": {"label": "Estimate!!Total!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over!!45 to 54 years", "concept": "Marital Status", "predicateType": "int", "group": "S1201", "limit": 0, "attributes": "S1201_C01_006EA,S1201_C01_006M,S1201_C01_006MA"}, "S0101_C04_022E": {"label": "Estimate!!Percent Male!!Total population!!SELECTED AGE CATEGORIES!!Under 18 years", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C04_022EA,S0101_C04_022M,S0101_C04_022MA"}, "S0501_C01_090E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_090EA,S0501_C01_090M,S0501_C01_090MA"}, "S1810_C01_010E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C01_010EA,S1810_C01_010M,S1810_C01_010MA"}, "S0506_C03_131E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Occupied housing units!!ROOMS!!4 or 5 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_131EA,S0506_C03_131M,S0506_C03_131MA"}, "S2603_C05_062E": {"label": "Estimate!!Juvenile Facilities!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Native!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C05_062EA,S2603_C05_062M,S2603_C05_062MA"}, "S0804_C02_043E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!OCCUPATION!!Management, business, science, and arts occupations", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_043EA,S0804_C02_043M,S0804_C02_043MA"}, "S1903_C03_021E": {"label": "Estimate!!Median income (dollars)!!FAMILIES!!Families!!Female householder, no spouse present!!With own children under 18 years", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C03_021EA,S1903_C03_021M,S1903_C03_021MA"}, "S0701PR_C03_017E": {"label": "Estimate!!Moved; from different municipio!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C03_017EA,S0701PR_C03_017M,S0701PR_C03_017MA"}, "S0802_C05_038E": {"label": "Estimate!!Worked from home!!POVERTY STATUS IN THE PAST 12 MONTHS!!Workers 16 years and over for whom poverty status is determined", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "int", "group": "S0802", "limit": 0, "attributes": "S0802_C05_038EA,S0802_C05_038M,S0802_C05_038MA"}, "S0501_C01_091E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings!!Mean earnings (dollars)", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C01_091EA,S0501_C01_091M,S0501_C01_091MA"}, "S1810_C01_011E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C01_011EA,S1810_C01_011M,S1810_C01_011MA"}, "S0506_C03_130E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Occupied housing units!!ROOMS!!2 or 3 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_130EA,S0506_C03_130M,S0506_C03_130MA"}, "S2603_C05_061E": {"label": "Estimate!!Juvenile Facilities!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Native", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C05_061EA,S2603_C05_061M,S2603_C05_061MA"}, "S0804_C02_044E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!OCCUPATION!!Service occupations", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_044EA,S0804_C02_044M,S0804_C02_044MA"}, "S0101_C04_021E": {"label": "Estimate!!Percent Male!!Total population!!SELECTED AGE CATEGORIES!!15 to 17 years", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C04_021EA,S0101_C04_021M,S0101_C04_021MA"}, "S1903_C03_020E": {"label": "Estimate!!Median income (dollars)!!FAMILIES!!Families!!Female householder, no spouse present", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C03_020EA,S1903_C03_020M,S1903_C03_020MA"}, "S0701PR_C03_016E": {"label": "Estimate!!Moved; from different municipio!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C03_016EA,S0701PR_C03_016M,S0701PR_C03_016MA"}, "S0802_C05_039E": {"label": "Estimate!!Worked from home!!POVERTY STATUS IN THE PAST 12 MONTHS!!Workers 16 years and over for whom poverty status is determined!!Below 100 percent of the poverty level", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C05_039EA,S0802_C05_039M,S0802_C05_039MA"}, "S0501_C01_092E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_092EA,S0501_C01_092M,S0501_C01_092MA"}, "S2002_C01_009E": {"label": "Estimate!!Total!!Median earnings (dollars)!!Full-time, year-round workers 16 years and over with earnings!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C01_009EA,S2002_C01_009M,S2002_C01_009MA"}, "S0505_C06_069E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Civilian employed population 16 years and over!!OCCUPATION!!Management, business, science, and arts occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_069EA,S0505_C06_069M,S0505_C06_069MA"}, "S2603_C05_064E": {"label": "Estimate!!Juvenile Facilities!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C05_064EA,S2603_C05_064M,S2603_C05_064MA"}, "S0101_C04_020E": {"label": "Estimate!!Percent Male!!Total population!!SELECTED AGE CATEGORIES!!5 to 14 years", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C04_020EA,S0101_C04_020M,S0101_C04_020MA"}, "S0701PR_C03_015E": {"label": "Estimate!!Moved; from different municipio!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C03_015EA,S0701PR_C03_015M,S0701PR_C03_015MA"}, "S0804_C02_041E": {"label": "Estimate!!Car, truck, or van -- drove alone!!POVERTY STATUS IN THE PAST 12 MONTHS!!Workers 16 years and over for whom poverty status is determined!!At or above 150 percent of the poverty level", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_041EA,S0804_C02_041M,S0804_C02_041MA"}, "S0802_C05_036E": {"label": "Estimate!!Worked from home!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$75,000 or more", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C05_036EA,S0802_C05_036M,S0802_C05_036MA"}, "S0501_C01_093E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income!!Mean Social Security income (dollars)", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C01_093EA,S0501_C01_093M,S0501_C01_093MA"}, "S2002_C01_008E": {"label": "Estimate!!Total!!Median earnings (dollars)!!Full-time, year-round workers 16 years and over with earnings!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C01_008EA,S2002_C01_008M,S2002_C01_008MA"}, "S2603_C05_063E": {"label": "Estimate!!Juvenile Facilities!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Native!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C05_063EA,S2603_C05_063M,S2603_C05_063MA"}, "S0701PR_C03_014E": {"label": "Estimate!!Moved; from different municipio!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C03_014EA,S0701PR_C03_014M,S0701PR_C03_014MA"}, "S0804_C02_042E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "int", "group": "S0804", "limit": 0, "attributes": "S0804_C02_042EA,S0804_C02_042M,S0804_C02_042MA"}, "S0802_C05_037E": {"label": "Estimate!!Worked from home!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!Median earnings (dollars)", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "int", "group": "S0802", "limit": 0, "attributes": "S0802_C05_037EA,S0802_C05_037M,S0802_C05_037MA"}, "S0804_C02_047E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!OCCUPATION!!Production, transportation, and material moving occupations", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_047EA,S0804_C02_047M,S0804_C02_047MA"}, "S0506_C03_135E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Occupied housing units!!1.01 or more occupants per room", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_135EA,S0506_C03_135M,S0506_C03_135MA"}, "S0802_C05_034E": {"label": "Estimate!!Worked from home!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$50,000 to $64,999", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C05_034EA,S0802_C05_034M,S0802_C05_034MA"}, "S0804_C02_048E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!OCCUPATION!!Military specific occupations", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_048EA,S0804_C02_048M,S0804_C02_048MA"}, "S0506_C03_134E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Occupied housing units!!Median number of rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_134EA,S0506_C03_134M,S0506_C03_134MA"}, "S0802_C05_035E": {"label": "Estimate!!Worked from home!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$65,000 to $74,999", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C05_035EA,S0802_C05_035M,S0802_C05_035MA"}, "S0804_C02_045E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!OCCUPATION!!Sales and office occupations", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_045EA,S0804_C02_045M,S0804_C02_045MA"}, "S2603_C05_060E": {"label": "Estimate!!Juvenile Facilities!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C05_060EA,S2603_C05_060M,S2603_C05_060MA"}, "S0701PR_C03_019E": {"label": "Estimate!!Moved; from different municipio!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C03_019EA,S0701PR_C03_019M,S0701PR_C03_019MA"}, "S0506_C03_133E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Occupied housing units!!ROOMS!!8 or more rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_133EA,S0506_C03_133M,S0506_C03_133MA"}, "S0802_C05_032E": {"label": "Estimate!!Worked from home!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$25,000 to $34,999", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C05_032EA,S0802_C05_032M,S0802_C05_032MA"}, "S2411_C04_036E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Civilian employed population 16 years and over with earnings!!Production, transportation, and material moving occupations:!!Material moving occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2411", "limit": 0, "attributes": "S2411_C04_036EA,S2411_C04_036M,S2411_C04_036MA"}, "S0804_C02_046E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!OCCUPATION!!Natural resources, construction, and maintenance occupations", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_046EA,S0804_C02_046M,S0804_C02_046MA"}, "S0701PR_C03_018E": {"label": "Estimate!!Moved; from different municipio!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C03_018EA,S0701PR_C03_018M,S0701PR_C03_018MA"}, "S1201_C01_010E": {"label": "Estimate!!Total!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over!!15 to 19 years", "concept": "Marital Status", "predicateType": "int", "group": "S1201", "limit": 0, "attributes": "S1201_C01_010EA,S1201_C01_010M,S1201_C01_010MA"}, "S0506_C03_132E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Occupied housing units!!ROOMS!!6 or 7 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_132EA,S0506_C03_132M,S0506_C03_132MA"}, "S0802_C05_033E": {"label": "Estimate!!Worked from home!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$35,000 to $49,999", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C05_033EA,S0802_C05_033M,S0802_C05_033MA"}, "S0802_C05_030E": {"label": "Estimate!!Worked from home!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$10,000 to $14,999", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C05_030EA,S0802_C05_030M,S0802_C05_030MA"}, "S1903_C03_029E": {"label": "Estimate!!Median income (dollars)!!FAMILY INCOME BY FAMILY SIZE!!7-or-more person families", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C03_029EA,S1903_C03_029M,S1903_C03_029MA"}, "S0506_C03_139E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Occupied housing units!!SELECTED CHARACTERISTICS!!Limited English Speaking Households", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_139EA,S0506_C03_139M,S0506_C03_139MA"}, "S0505_C06_063E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!EMPLOYMENT STATUS!!Population 16 years and over!!Not in labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_063EA,S0505_C06_063M,S0505_C06_063MA"}, "S0802_C05_031E": {"label": "Estimate!!Worked from home!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$15,000 to $24,999", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C05_031EA,S0802_C05_031M,S0802_C05_031MA"}, "S2601C_C02_060E": {"label": "Estimate!!Total group quarters population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the U.S.!!Different county!!Same state", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_060EA,S2601C_C02_060M,S2601C_C02_060MA"}, "S0505_C06_064E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Civilian employed population 16 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C06_064EA,S0505_C06_064M,S0505_C06_064MA"}, "S1903_C03_028E": {"label": "Estimate!!Median income (dollars)!!FAMILY INCOME BY FAMILY SIZE!!6-person families", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C03_028EA,S1903_C03_028M,S1903_C03_028MA"}, "S0506_C03_138E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Occupied housing units!!SELECTED CHARACTERISTICS!!No telephone service available", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_138EA,S0506_C03_138M,S0506_C03_138MA"}, "S2601C_C02_061E": {"label": "Estimate!!Total group quarters population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the U.S.!!Different county!!Different state", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_061EA,S2601C_C02_061M,S2601C_C02_061MA"}, "S1903_C03_027E": {"label": "Estimate!!Median income (dollars)!!FAMILY INCOME BY FAMILY SIZE!!5-person families", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C03_027EA,S1903_C03_027M,S1903_C03_027MA"}, "S0506_C03_137E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Occupied housing units!!VEHICLES AVAILABLE!!1 or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_137EA,S0506_C03_137M,S0506_C03_137MA"}, "S0505_C06_061E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed!!Percent of civilian labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_061EA,S0505_C06_061M,S0505_C06_061MA"}, "S1903_C03_026E": {"label": "Estimate!!Median income (dollars)!!FAMILY INCOME BY FAMILY SIZE!!4-person families", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C03_026EA,S1903_C03_026M,S1903_C03_026MA"}, "S2601C_C02_062E": {"label": "Estimate!!Total group quarters population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Abroad", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_062EA,S2601C_C02_062M,S2601C_C02_062MA"}, "S0506_C03_136E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Occupied housing units!!VEHICLES AVAILABLE!!None", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_136EA,S0506_C03_136M,S0506_C03_136MA"}, "S0505_C06_062E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Armed Forces", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_062EA,S0505_C06_062M,S0505_C06_062MA"}, "S0505_C06_067E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Self-employed workers in own not incorporated business", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_067EA,S0505_C06_067M,S0505_C06_067MA"}, "S1903_C03_025E": {"label": "Estimate!!Median income (dollars)!!FAMILY INCOME BY FAMILY SIZE!!3-person families", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C03_025EA,S1903_C03_025M,S1903_C03_025MA"}, "S0701PR_C03_013E": {"label": "Estimate!!Moved; from different municipio!!Population 1 year and over!!SEX!!Female", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C03_013EA,S0701PR_C03_013M,S0701PR_C03_013MA"}, "S0801_C02_043E": {"label": "Estimate!!Male!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!35 to 44 minutes", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C02_043EA,S0801_C02_043M,S0801_C02_043MA"}, "S2704_C03_021E": {"label": "Estimate!!Percent Public Coverage!!PUBLIC HEALTH INSURANCE ALONE OR IN COMBINATION!!35 to 44 years", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "float", "group": "S2704", "limit": 0, "attributes": "S2704_C03_021EA,S2704_C03_021M,S2704_C03_021MA"}, "S0505_C06_068E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Unpaid family workers", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_068EA,S0505_C06_068M,S0505_C06_068MA"}, "S1903_C03_024E": {"label": "Estimate!!Median income (dollars)!!FAMILY INCOME BY FAMILY SIZE!!2-person families", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C03_024EA,S1903_C03_024M,S1903_C03_024MA"}, "S0701PR_C03_012E": {"label": "Estimate!!Moved; from different municipio!!Population 1 year and over!!SEX!!Male", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C03_012EA,S0701PR_C03_012M,S0701PR_C03_012MA"}, "S0804_C02_040E": {"label": "Estimate!!Car, truck, or van -- drove alone!!POVERTY STATUS IN THE PAST 12 MONTHS!!Workers 16 years and over for whom poverty status is determined!!100 to 149 percent of the poverty level", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_040EA,S0804_C02_040M,S0804_C02_040MA"}, "S0801_C02_042E": {"label": "Estimate!!Male!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!30 to 34 minutes", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C02_042EA,S0801_C02_042M,S0801_C02_042MA"}, "S2704_C03_022E": {"label": "Estimate!!Percent Public Coverage!!PUBLIC HEALTH INSURANCE ALONE OR IN COMBINATION!!45 to 54 years", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "float", "group": "S2704", "limit": 0, "attributes": "S2704_C03_022EA,S2704_C03_022M,S2704_C03_022MA"}, "S0505_C06_065E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Private wage and salary workers", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_065EA,S0505_C06_065M,S0505_C06_065MA"}, "S1903_C03_023E": {"label": "Estimate!!Median income (dollars)!!FAMILIES!!Families!!Male householder, no spouse present!!With own children under 18 years", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C03_023EA,S1903_C03_023M,S1903_C03_023MA"}, "S0701PR_C03_011E": {"label": "Estimate!!Moved; from different municipio!!Population 1 year and over!!AGE!!Median age (years)", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C03_011EA,S0701PR_C03_011M,S0701PR_C03_011MA"}, "S0801_C02_041E": {"label": "Estimate!!Male!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!25 to 29 minutes", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C02_041EA,S0801_C02_041M,S0801_C02_041MA"}, "S0505_C06_066E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Government workers", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_066EA,S0505_C06_066M,S0505_C06_066MA"}, "S1903_C03_022E": {"label": "Estimate!!Median income (dollars)!!FAMILIES!!Families!!Male householder, no spouse present", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C03_022EA,S1903_C03_022M,S1903_C03_022MA"}, "S0701PR_C03_010E": {"label": "Estimate!!Moved; from different municipio!!Population 1 year and over!!AGE!!75 years and over", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C03_010EA,S0701PR_C03_010M,S0701PR_C03_010MA"}, "S2704_C03_020E": {"label": "Estimate!!Percent Public Coverage!!PUBLIC HEALTH INSURANCE ALONE OR IN COMBINATION!!26 to 34 years", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "float", "group": "S2704", "limit": 0, "attributes": "S2704_C03_020EA,S2704_C03_020M,S2704_C03_020MA"}, "S0801_C02_040E": {"label": "Estimate!!Male!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!20 to 24 minutes", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C02_040EA,S0801_C02_040M,S0801_C02_040MA"}, "S2704_C03_013E": {"label": "Estimate!!Percent Public Coverage!!COVERAGE ALONE OR IN COMBINATION!!VA health care coverage alone or in combination!!65 years and over", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "float", "group": "S2704", "limit": 0, "attributes": "S2704_C03_013EA,S2704_C03_013M,S2704_C03_013MA"}, "S2601C_C02_031E": {"label": "Estimate!!Total group quarters population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!White alone, Not Hispanic or Latino", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_031EA,S2601C_C02_031M,S2601C_C02_031MA"}, "S0701_C04_010E": {"label": "Estimate!!Moved; from different state!!Population 1 year and over!!AGE!!75 years and over", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C04_010EA,S0701_C04_010M,S0701_C04_010MA"}, "S0801_C02_011E": {"label": "Estimate!!Male!!Workers 16 years and over!!MEANS OF TRANSPORTATION TO WORK!!Bicycle", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C02_011EA,S0801_C02_011M,S0801_C02_011MA"}, "S2501_C01_011E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Married-couple family!!Householder 15 to 34 years", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C01_011EA,S2501_C01_011M,S2501_C01_011MA"}, "S2506_C01_010E": {"label": "Estimate!!Owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!MORTGAGE STATUS!!With a mortgage and either a second mortgage or home equity loan", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "int", "group": "S2506", "limit": 0, "attributes": "S2506_C01_010EA,S2506_C01_010M,S2506_C01_010MA"}, "S2704_C03_014E": {"label": "Estimate!!Percent Public Coverage!!PUBLIC HEALTH INSURANCE ALONE OR IN COMBINATION!!Below 138 percent of the poverty threshold", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "float", "group": "S2704", "limit": 0, "attributes": "S2704_C03_014EA,S2704_C03_014M,S2704_C03_014MA"}, "S2601C_C02_032E": {"label": "Estimate!!Total group quarters population!!MARITAL STATUS!!Population 15 years and over", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_032EA,S2601C_C02_032M,S2601C_C02_032MA"}, "S0801_C02_010E": {"label": "Estimate!!Male!!Workers 16 years and over!!MEANS OF TRANSPORTATION TO WORK!!Walked", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C02_010EA,S0801_C02_010M,S0801_C02_010MA"}, "S2501_C01_010E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Married-couple family", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C01_010EA,S2501_C01_010M,S2501_C01_010MA"}, "S2506_C01_011E": {"label": "Estimate!!Owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!MORTGAGE STATUS!!With a mortgage and either a second mortgage or home equity loan!!Only Second mortgage", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "int", "group": "S2506", "limit": 0, "attributes": "S2506_C01_011EA,S2506_C01_011M,S2506_C01_011MA"}, "S2601C_C02_033E": {"label": "Estimate!!Total group quarters population!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_033EA,S2601C_C02_033M,S2601C_C02_033MA"}, "S0701_C04_012E": {"label": "Estimate!!Moved; from different state!!Population 1 year and over!!SEX!!Male", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C04_012EA,S0701_C04_012M,S0701_C04_012MA"}, "S0702_C05_001E": {"label": "Estimate!!West!!Region of Current Residence!!Population 1 year and over", "concept": "Movers Between Regions", "predicateType": "int", "group": "S0702", "limit": 0, "attributes": "S0702_C05_001EA,S0702_C05_001M,S0702_C05_001MA"}, "S2501_C01_013E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Married-couple family!!Householder 65 years and over", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C01_013EA,S2501_C01_013M,S2501_C01_013MA"}, "S0506_C03_109E": {"label": "Estimate!!Foreign-born; Born in Mexico!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!Median Household income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C03_109EA,S0506_C03_109M,S0506_C03_109MA"}, "S2704_C03_011E": {"label": "Estimate!!Percent Public Coverage!!COVERAGE ALONE OR IN COMBINATION!!VA health care coverage alone or in combination!!Under 19", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "float", "group": "S2704", "limit": 0, "attributes": "S2704_C03_011EA,S2704_C03_011M,S2704_C03_011MA"}, "S2506_C01_012E": {"label": "Estimate!!Owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!MORTGAGE STATUS!!With a mortgage and either a second mortgage or home equity loan!!Only Home equity loan", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "int", "group": "S2506", "limit": 0, "attributes": "S2506_C01_012EA,S2506_C01_012M,S2506_C01_012MA"}, "S2601C_C02_034E": {"label": "Estimate!!Total group quarters population!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_034EA,S2601C_C02_034M,S2601C_C02_034MA"}, "S0701_C04_011E": {"label": "Estimate!!Moved; from different state!!Population 1 year and over!!AGE!!Median age (years)", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C04_011EA,S0701_C04_011M,S0701_C04_011MA"}, "S2501_C01_012E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Married-couple family!!Householder 35 to 64 years", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C01_012EA,S2501_C01_012M,S2501_C01_012MA"}, "S0702_C05_002E": {"label": "Estimate!!West!!Region of Current Residence!!Population 1 year and over!!Same residence (non-movers)", "concept": "Movers Between Regions", "predicateType": "int", "group": "S0702", "limit": 0, "attributes": "S0702_C05_002EA,S0702_C05_002M,S0702_C05_002MA"}, "S0506_C03_108E": {"label": "Estimate!!Foreign-born; Born in Mexico!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Food Stamp/SNAP benefits", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_108EA,S0506_C03_108M,S0506_C03_108MA"}, "S2704_C03_012E": {"label": "Estimate!!Percent Public Coverage!!COVERAGE ALONE OR IN COMBINATION!!VA health care coverage alone or in combination!!19 to 64 years", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "float", "group": "S2704", "limit": 0, "attributes": "S2704_C03_012EA,S2704_C03_012M,S2704_C03_012MA"}, "S2506_C01_013E": {"label": "Estimate!!Owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!MORTGAGE STATUS!!With a mortgage and either a second mortgage or home equity loan!!Both second mortgage and home equity loan", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "int", "group": "S2506", "limit": 0, "attributes": "S2506_C01_013EA,S2506_C01_013M,S2506_C01_013MA"}, "S2704_C03_017E": {"label": "Estimate!!Percent Public Coverage!!PUBLIC HEALTH INSURANCE ALONE OR IN COMBINATION!!Under 6", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "float", "group": "S2704", "limit": 0, "attributes": "S2704_C03_017EA,S2704_C03_017M,S2704_C03_017MA"}, "S0801_C02_015E": {"label": "Estimate!!Male!!Workers 16 years and over!!PLACE OF WORK!!Worked in state of residence!!Worked in county of residence", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C02_015EA,S0801_C02_015M,S0801_C02_015MA"}, "S2602_C02_051E": {"label": "Estimate!!Total group quarters population!!DISABILITY STATUS!!Population 65 years and over!!With a disability", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C02_051EA,S2602_C02_051M,S2602_C02_051MA"}, "S0701PR_C03_053E": {"label": "Estimate!!Moved; from different municipio!!HOUSING TENURE!!Population 1 year and over in housing units", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C03_053EA,S0701PR_C03_053M,S0701PR_C03_053MA"}, "S0701_C04_014E": {"label": "Estimate!!Moved; from different state!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C04_014EA,S0701_C04_014M,S0701_C04_014MA"}, "S0702_C05_003E": {"label": "Estimate!!West!!Region of Current Residence!!Population 1 year and over!!Movers within same region", "concept": "Movers Between Regions", "predicateType": "int", "group": "S0702", "limit": 0, "attributes": "S0702_C05_003EA,S0702_C05_003M,S0702_C05_003MA"}, "S2506_C01_014E": {"label": "Estimate!!Owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!MORTGAGE STATUS!!No second mortgage and no home equity loan", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "int", "group": "S2506", "limit": 0, "attributes": "S2506_C01_014EA,S2506_C01_014M,S2506_C01_014MA"}, "S2704_C03_018E": {"label": "Estimate!!Percent Public Coverage!!PUBLIC HEALTH INSURANCE ALONE OR IN COMBINATION!!6 to 18 years", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "float", "group": "S2704", "limit": 0, "attributes": "S2704_C03_018EA,S2704_C03_018M,S2704_C03_018MA"}, "S0801_C02_014E": {"label": "Estimate!!Male!!Workers 16 years and over!!PLACE OF WORK!!Worked in state of residence", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C02_014EA,S0801_C02_014M,S0801_C02_014MA"}, "S2602_C02_052E": {"label": "Estimate!!Total group quarters population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C02_052EA,S2602_C02_052M,S2602_C02_052MA"}, "S0701_C04_013E": {"label": "Estimate!!Moved; from different state!!Population 1 year and over!!SEX!!Female", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C04_013EA,S0701_C04_013M,S0701_C04_013MA"}, "S0701PR_C03_052E": {"label": "Estimate!!Moved; from different municipio!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population 1 year and over for whom poverty status is determined!!At or above 150 percent of the poverty level", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C03_052EA,S0701PR_C03_052M,S0701PR_C03_052MA"}, "S0804_C02_080E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!20 to 24 minutes", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_080EA,S0804_C02_080M,S0804_C02_080MA"}, "S0702_C05_004E": {"label": "Estimate!!West!!Region of Current Residence!!Population 1 year and over!!Movers between regions by region of residence 1 year ago", "concept": "Movers Between Regions", "predicateType": "int", "group": "S0702", "limit": 0, "attributes": "S0702_C05_004EA,S0702_C05_004M,S0702_C05_004MA"}, "S2704_C03_015E": {"label": "Estimate!!Percent Public Coverage!!PUBLIC HEALTH INSURANCE ALONE OR IN COMBINATION!!At or above 138 percent of the poverty threshold", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "float", "group": "S2704", "limit": 0, "attributes": "S2704_C03_015EA,S2704_C03_015M,S2704_C03_015MA"}, "S0701PR_C03_051E": {"label": "Estimate!!Moved; from different municipio!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population 1 year and over for whom poverty status is determined!!100 to 149 percent of the poverty level", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C03_051EA,S0701PR_C03_051M,S0701PR_C03_051MA"}, "S0701_C04_016E": {"label": "Estimate!!Moved; from different state!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C04_016EA,S0701_C04_016M,S0701_C04_016MA"}, "S0702_C05_005E": {"label": "Estimate!!West!!Region of Current Residence!!Population 1 year and over!!Movers between regions by region of residence 1 year ago!!Northeast", "concept": "Movers Between Regions", "predicateType": "int", "group": "S0702", "limit": 0, "attributes": "S0702_C05_005EA,S0702_C05_005M,S0702_C05_005MA"}, "S0801_C02_013E": {"label": "Estimate!!Male!!Workers 16 years and over!!MEANS OF TRANSPORTATION TO WORK!!Worked from home", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C02_013EA,S0801_C02_013M,S0801_C02_013MA"}, "S2506_C01_015E": {"label": "Estimate!!Owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!MORTGAGE STATUS!!Home equity loan without a primary mortgage", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "int", "group": "S2506", "limit": 0, "attributes": "S2506_C01_015EA,S2506_C01_015M,S2506_C01_015MA"}, "S2704_C03_016E": {"label": "Estimate!!Percent Public Coverage!!PUBLIC HEALTH INSURANCE ALONE OR IN COMBINATION!!Worked full-time, year-round (19-64 years)", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "float", "group": "S2704", "limit": 0, "attributes": "S2704_C03_016EA,S2704_C03_016M,S2704_C03_016MA"}, "S0701PR_C03_050E": {"label": "Estimate!!Moved; from different municipio!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population 1 year and over for whom poverty status is determined!!Below 100 percent of the poverty level", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C03_050EA,S0701PR_C03_050M,S0701PR_C03_050MA"}, "S0701_C04_015E": {"label": "Estimate!!Moved; from different state!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C04_015EA,S0701_C04_015M,S0701_C04_015MA"}, "S2602_C02_050E": {"label": "Estimate!!Total group quarters population!!DISABILITY STATUS!!Population 65 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C02_050EA,S2602_C02_050M,S2602_C02_050MA"}, "S2601C_C02_030E": {"label": "Estimate!!Total group quarters population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!Not Hispanic or Latino", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_030EA,S2601C_C02_030M,S2601C_C02_030MA"}, "S0702_C05_006E": {"label": "Estimate!!West!!Region of Current Residence!!Population 1 year and over!!Movers between regions by region of residence 1 year ago!!Midwest", "concept": "Movers Between Regions", "predicateType": "int", "group": "S0702", "limit": 0, "attributes": "S0702_C05_006EA,S0702_C05_006M,S0702_C05_006MA"}, "S0801_C02_012E": {"label": "Estimate!!Male!!Workers 16 years and over!!MEANS OF TRANSPORTATION TO WORK!!Taxi or ride-hailing services, motorcycle, or other means", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C02_012EA,S0801_C02_012M,S0801_C02_012MA"}, "S2506_C01_016E": {"label": "Estimate!!Owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Less than $10,000", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "int", "group": "S2506", "limit": 0, "attributes": "S2506_C01_016EA,S2506_C01_016M,S2506_C01_016MA"}, "S2602_C02_055E": {"label": "Estimate!!Total group quarters population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the United States!!Same county", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C02_055EA,S2602_C02_055M,S2602_C02_055MA"}, "S0801_C02_019E": {"label": "Estimate!!Male!!Workers 16 years and over!!PLACE OF WORK!!Living in a place!!Worked in place of residence", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C02_019EA,S0801_C02_019M,S0801_C02_019MA"}, "S0501_C03_105E": {"label": "Estimate!!Foreign-born!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!100 to 199 percent of the poverty level", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_105EA,S0501_C03_105M,S0501_C03_105MA"}, "S0501_C01_098E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_098EA,S0501_C01_098M,S0501_C01_098MA"}, "S0701_C04_018E": {"label": "Estimate!!Moved; from different state!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C04_018EA,S0701_C04_018M,S0701_C04_018MA"}, "S2407_C06_007E": {"label": "Estimate!!Self-employed in own not incorporated business workers and unpaid family workers!!Civilian employed population 16 years and over!!Transportation and warehousing, and utilities", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2407", "limit": 0, "attributes": "S2407_C06_007EA,S2407_C06_007M,S2407_C06_007MA"}, "S2501_C01_019E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Other family!!Female householder, no spouse present", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C01_019EA,S2501_C01_019M,S2501_C01_019MA"}, "S0702_C05_007E": {"label": "Estimate!!West!!Region of Current Residence!!Population 1 year and over!!Movers between regions by region of residence 1 year ago!!South", "concept": "Movers Between Regions", "predicateType": "int", "group": "S0702", "limit": 0, "attributes": "S0702_C05_007EA,S0702_C05_007M,S0702_C05_007MA"}, "S2506_C01_017E": {"label": "Estimate!!Owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$10,000 to $24,999", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "int", "group": "S2506", "limit": 0, "attributes": "S2506_C01_017EA,S2506_C01_017M,S2506_C01_017MA"}, "S2602_C02_056E": {"label": "Estimate!!Total group quarters population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the United States!!Different county", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C02_056EA,S2602_C02_056M,S2602_C02_056MA"}, "S0801_C02_018E": {"label": "Estimate!!Male!!Workers 16 years and over!!PLACE OF WORK!!Living in a place", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C02_018EA,S0801_C02_018M,S0801_C02_018MA"}, "S0501_C03_106E": {"label": "Estimate!!Foreign-born!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!At or above 200 percent of the poverty level", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_106EA,S0501_C03_106M,S0501_C03_106MA"}, "S0501_C01_099E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income!!Mean retirement income (dollars)", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C01_099EA,S0501_C01_099M,S0501_C01_099MA"}, "S0701_C04_017E": {"label": "Estimate!!Moved; from different state!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C04_017EA,S0701_C04_017M,S0701_C04_017MA"}, "S2501_C01_018E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Other family!!Male householder, no spouse present!!Householder 65 years and over", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C01_018EA,S2501_C01_018M,S2501_C01_018MA"}, "S2506_C01_018E": {"label": "Estimate!!Owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$25,000 to $34,999", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "int", "group": "S2506", "limit": 0, "attributes": "S2506_C01_018EA,S2506_C01_018M,S2506_C01_018MA"}, "S0702_C05_008E": {"label": "Estimate!!West!!Region of Current Residence!!Population 1 year and over!!Movers between regions by region of residence 1 year ago!!West", "concept": "Movers Between Regions", "predicateType": "int", "group": "S0702", "limit": 0, "attributes": "S0702_C05_008EA,S0702_C05_008M,S0702_C05_008MA"}, "S2407_C06_006E": {"label": "Estimate!!Self-employed in own not incorporated business workers and unpaid family workers!!Civilian employed population 16 years and over!!Retail trade", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2407", "limit": 0, "attributes": "S2407_C06_006EA,S2407_C06_006M,S2407_C06_006MA"}, "S2602_C02_053E": {"label": "Estimate!!Total group quarters population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Same address", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C02_053EA,S2602_C02_053M,S2602_C02_053MA"}, "S0501_C03_107E": {"label": "Estimate!!Foreign-born!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_107EA,S0501_C03_107M,S0501_C03_107MA"}, "S0801_C02_017E": {"label": "Estimate!!Male!!Workers 16 years and over!!PLACE OF WORK!!Worked outside state of residence", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C02_017EA,S0801_C02_017M,S0801_C02_017MA"}, "S2704_C03_019E": {"label": "Estimate!!Percent Public Coverage!!PUBLIC HEALTH INSURANCE ALONE OR IN COMBINATION!!19 to 25 years", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "float", "group": "S2704", "limit": 0, "attributes": "S2704_C03_019EA,S2704_C03_019M,S2704_C03_019MA"}, "S2407_C06_009E": {"label": "Estimate!!Self-employed in own not incorporated business workers and unpaid family workers!!Civilian employed population 16 years and over!!Finance and insurance, and real estate and rental and leasing", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2407", "limit": 0, "attributes": "S2407_C06_009EA,S2407_C06_009M,S2407_C06_009MA"}, "S0702_C05_009E": {"label": "Estimate!!West!!Region of Current Residence!!Population 1 year and over!!Movers from abroad", "concept": "Movers Between Regions", "predicateType": "int", "group": "S0702", "limit": 0, "attributes": "S0702_C05_009EA,S0702_C05_009M,S0702_C05_009MA"}, "S2506_C01_019E": {"label": "Estimate!!Owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$35,000 to $49,999", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "int", "group": "S2506", "limit": 0, "attributes": "S2506_C01_019EA,S2506_C01_019M,S2506_C01_019MA"}, "S2602_C02_054E": {"label": "Estimate!!Total group quarters population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the United States", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C02_054EA,S2602_C02_054M,S2602_C02_054MA"}, "S0501_C03_108E": {"label": "Estimate!!Foreign-born!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_108EA,S0501_C03_108M,S0501_C03_108MA"}, "S0801_C02_016E": {"label": "Estimate!!Male!!Workers 16 years and over!!PLACE OF WORK!!Worked in state of residence!!Worked outside county of residence", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C02_016EA,S0801_C02_016M,S0801_C02_016MA"}, "S0701_C04_019E": {"label": "Estimate!!Moved; from different state!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C04_019EA,S0701_C04_019M,S0701_C04_019MA"}, "S2407_C06_008E": {"label": "Estimate!!Self-employed in own not incorporated business workers and unpaid family workers!!Civilian employed population 16 years and over!!Information", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2407", "limit": 0, "attributes": "S2407_C06_008EA,S2407_C06_008M,S2407_C06_008MA"}, "S0501_C03_109E": {"label": "Estimate!!Foreign-born!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_109EA,S0501_C03_109M,S0501_C03_109MA"}, "S2602_C02_059E": {"label": "Estimate!!Total group quarters population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Abroad", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C02_059EA,S2602_C02_059M,S2602_C02_059MA"}, "S0501_C01_094E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_094EA,S0501_C01_094M,S0501_C01_094MA"}, "S2601C_C02_035E": {"label": "Estimate!!Total group quarters population!!MARITAL STATUS!!Population 15 years and over!!Divorced", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_035EA,S2601C_C02_035M,S2601C_C02_035MA"}, "S2501_C01_015E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Other family!!Male householder, no spouse present", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C01_015EA,S2501_C01_015M,S2501_C01_015MA"}, "S2502_C04_010E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!White alone, not Hispanic or Latino", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C04_010EA,S2502_C04_010M,S2502_C04_010MA"}, "S0501_C01_095E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income!!Mean Supplemental Security Income (dollars)", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C01_095EA,S0501_C01_095M,S0501_C01_095MA"}, "S2601C_C02_036E": {"label": "Estimate!!Total group quarters population!!MARITAL STATUS!!Population 15 years and over!!Separated", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_036EA,S2601C_C02_036M,S2601C_C02_036MA"}, "S2603_C05_089E": {"label": "Estimate!!Juvenile Facilities!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C05_089EA,S2603_C05_089M,S2603_C05_089MA"}, "S2501_C01_014E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Other family", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C01_014EA,S2501_C01_014M,S2501_C01_014MA"}, "S2601C_C02_037E": {"label": "Estimate!!Total group quarters population!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_037EA,S2601C_C02_037M,S2601C_C02_037MA"}, "S2502_C04_011E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!AGE OF HOUSEHOLDER!!Under 35 years", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C04_011EA,S2502_C04_011M,S2502_C04_011MA"}, "S1810_C01_048E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With an ambulatory difficulty!!Population under 18 years", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C01_048EA,S1810_C01_048M,S1810_C01_048MA"}, "S2602_C02_057E": {"label": "Estimate!!Total group quarters population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the United States!!Different county!!Same state", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C02_057EA,S2602_C02_057M,S2602_C02_057MA"}, "S0501_C01_096E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_096EA,S0501_C01_096M,S0501_C01_096MA"}, "S2501_C01_017E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Other family!!Male householder, no spouse present!!Householder 35 to 64 years", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C01_017EA,S2501_C01_017M,S2501_C01_017MA"}, "S2601C_C02_038E": {"label": "Estimate!!Total group quarters population!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_038EA,S2601C_C02_038M,S2601C_C02_038MA"}, "S2502_C04_012E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!AGE OF HOUSEHOLDER!!35 to 44 years", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C04_012EA,S2502_C04_012M,S2502_C04_012MA"}, "S1810_C01_049E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With an ambulatory difficulty!!Population 18 to 64 years", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C01_049EA,S1810_C01_049M,S1810_C01_049MA"}, "S2602_C02_058E": {"label": "Estimate!!Total group quarters population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the United States!!Different county!!Different state", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C02_058EA,S2602_C02_058M,S2602_C02_058MA"}, "S0501_C01_097E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income!!Mean cash public assistance income (dollars)", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C01_097EA,S0501_C01_097M,S0501_C01_097MA"}, "S2601C_C02_039E": {"label": "Estimate!!Total group quarters population!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Nursery school through 12th grade", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_039EA,S2601C_C02_039M,S2601C_C02_039MA"}, "S2501_C01_016E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Other family!!Male householder, no spouse present!!Householder 15 to 34 years", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C01_016EA,S2501_C01_016M,S2501_C01_016MA"}, "S2502_C04_013E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!AGE OF HOUSEHOLDER!!45 to 54 years", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C04_013EA,S2502_C04_013M,S2502_C04_013MA"}, "S1810_C01_046E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a cognitive difficulty!!Population 65 years and over!!Population 75 years and over", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C01_046EA,S1810_C01_046M,S1810_C01_046MA"}, "S0505_C06_035E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Foreign-born population!!Average family size", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_035EA,S0505_C06_035M,S0505_C06_035MA"}, "S0804_C02_079E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!15 to 19 minutes", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_079EA,S0804_C02_079M,S0804_C02_079MA"}, "S2603_C05_098E": {"label": "Estimate!!Juvenile Facilities!!OCCUPATION!!Civilian employed population 16 years and over!!Production, transportation, and material moving occupations", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C05_098EA,S2603_C05_098M,S2603_C05_098MA"}, "S2407_C06_011E": {"label": "Estimate!!Self-employed in own not incorporated business workers and unpaid family workers!!Civilian employed population 16 years and over!!Educational services, and health care and social assistance", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2407", "limit": 0, "attributes": "S2407_C06_011EA,S2407_C06_011M,S2407_C06_011MA"}, "S2502_C04_014E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!AGE OF HOUSEHOLDER!!55 to 64 years", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C04_014EA,S2502_C04_014M,S2502_C04_014MA"}, "S1810_C01_047E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With an ambulatory difficulty", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C01_047EA,S1810_C01_047M,S1810_C01_047MA"}, "S0505_C06_036E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!MARITAL STATUS!!Population 15 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C06_036EA,S0505_C06_036M,S0505_C06_036MA"}, "S2603_C05_097E": {"label": "Estimate!!Juvenile Facilities!!OCCUPATION!!Civilian employed population 16 years and over!!Natural resources, construction, extraction, and maintenance occupations", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C05_097EA,S2603_C05_097M,S2603_C05_097MA"}, "S2407_C06_010E": {"label": "Estimate!!Self-employed in own not incorporated business workers and unpaid family workers!!Civilian employed population 16 years and over!!Professional, scientific, and management, and administrative and waste management services", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2407", "limit": 0, "attributes": "S2407_C06_010EA,S2407_C06_010M,S2407_C06_010MA"}, "S0501_C03_110E": {"label": "Estimate!!Foreign-born!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_110EA,S0501_C03_110M,S0501_C03_110MA"}, "S2502_C04_015E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!AGE OF HOUSEHOLDER!!65 to 74 years", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C04_015EA,S2502_C04_015M,S2502_C04_015MA"}, "S0505_C06_033E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Foreign-born population!!HOUSEHOLD TYPE!!In other households", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_033EA,S0505_C06_033M,S0505_C06_033MA"}, "S2502_C04_016E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!AGE OF HOUSEHOLDER!!75 to 84 years", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C04_016EA,S2502_C04_016M,S2502_C04_016MA"}, "S1810_C01_044E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a cognitive difficulty!!Population 65 years and over", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C01_044EA,S1810_C01_044M,S1810_C01_044MA"}, "S0804_C02_077E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!Less than 10 minutes", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_077EA,S0804_C02_077M,S0804_C02_077MA"}, "S2407_C06_013E": {"label": "Estimate!!Self-employed in own not incorporated business workers and unpaid family workers!!Civilian employed population 16 years and over!!Other services, except public administration", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2407", "limit": 0, "attributes": "S2407_C06_013EA,S2407_C06_013M,S2407_C06_013MA"}, "S0802_C05_048E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!OCCUPATION!!Military specific occupations", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C05_048EA,S0802_C05_048M,S0802_C05_048MA"}, "S0501_C03_111E": {"label": "Estimate!!Foreign-born!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_111EA,S0501_C03_111M,S0501_C03_111MA"}, "S0505_C06_034E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Foreign-born population!!Average household size", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_034EA,S0505_C06_034M,S0505_C06_034MA"}, "S2502_C04_017E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!AGE OF HOUSEHOLDER!!85 years and over", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C04_017EA,S2502_C04_017M,S2502_C04_017MA"}, "S1810_C01_045E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a cognitive difficulty!!Population 65 years and over!!Population 65 to 74 years", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C01_045EA,S1810_C01_045M,S1810_C01_045MA"}, "S0804_C02_078E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!10 to 14 minutes", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_078EA,S0804_C02_078M,S0804_C02_078MA"}, "S0504_C03_009E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen!!Entered before 2000", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_009EA,S0504_C03_009M,S0504_C03_009MA"}, "S2603_C05_099E": {"label": "Estimate!!Juvenile Facilities!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C05_099EA,S2603_C05_099M,S2603_C05_099MA"}, "S0802_C05_049E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!INDUSTRY!!Agriculture, forestry, fishing and hunting, and mining", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C05_049EA,S0802_C05_049M,S0802_C05_049MA"}, "S2407_C06_012E": {"label": "Estimate!!Self-employed in own not incorporated business workers and unpaid family workers!!Civilian employed population 16 years and over!!Arts, entertainment, and recreation, and accommodation and food services", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2407", "limit": 0, "attributes": "S2407_C06_012EA,S2407_C06_012M,S2407_C06_012MA"}, "S0501_C03_112E": {"label": "Estimate!!Foreign-born!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_112EA,S0501_C03_112M,S0501_C03_112MA"}, "S2502_C04_018E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!EDUCATIONAL ATTAINMENT OF HOUSEHOLDER!!Less than high school graduate", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C04_018EA,S2502_C04_018M,S2502_C04_018MA"}, "S2603_C05_094E": {"label": "Estimate!!Juvenile Facilities!!OCCUPATION!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C05_094EA,S2603_C05_094M,S2603_C05_094MA"}, "S1810_C01_042E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a cognitive difficulty!!Population 18 to 64 years!!Population 18 to 34 years", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C01_042EA,S1810_C01_042M,S1810_C01_042MA"}, "S0505_C06_039E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!MARITAL STATUS!!Population 15 years and over!!Divorced or separated", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_039EA,S0505_C06_039M,S0505_C06_039MA"}, "S0504_C03_008E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen!!Entered 2000 to 2009", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_008EA,S0504_C03_008M,S0504_C03_008MA"}, "S0501_C03_113E": {"label": "Estimate!!Foreign-born!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_113EA,S0501_C03_113M,S0501_C03_113MA"}, "S0802_C05_046E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!OCCUPATION!!Natural resources, construction, and maintenance occupations", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C05_046EA,S0802_C05_046M,S0802_C05_046MA"}, "S2407_C06_015E": {"label": "Estimate!!Self-employed in own not incorporated business workers and unpaid family workers!!PERCENT ALLOCATED!!Industry", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2407", "limit": 0, "attributes": "S2407_C06_015EA,S2407_C06_015M,S2407_C06_015MA"}, "S2502_C04_019E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!EDUCATIONAL ATTAINMENT OF HOUSEHOLDER!!High school graduate (includes equivalency)", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C04_019EA,S2502_C04_019M,S2502_C04_019MA"}, "S1810_C01_043E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a cognitive difficulty!!Population 18 to 64 years!!Population 35 to 64 years", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C01_043EA,S1810_C01_043M,S1810_C01_043MA"}, "S2603_C05_093E": {"label": "Estimate!!Juvenile Facilities!!OCCUPATION!!Civilian employed population 16 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C05_093EA,S2603_C05_093M,S2603_C05_093MA"}, "S0504_C03_007E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen!!Entered 2010 or later", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_007EA,S0504_C03_007M,S0504_C03_007MA"}, "S0501_C03_114E": {"label": "Estimate!!Foreign-born!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_114EA,S0501_C03_114M,S0501_C03_114MA"}, "S0802_C05_047E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!OCCUPATION!!Production, transportation, and material moving occupations", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C05_047EA,S0802_C05_047M,S0802_C05_047MA"}, "S2407_C06_014E": {"label": "Estimate!!Self-employed in own not incorporated business workers and unpaid family workers!!Civilian employed population 16 years and over!!Public administration", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2407", "limit": 0, "attributes": "S2407_C06_014EA,S2407_C06_014M,S2407_C06_014MA"}, "S2406_C03_006E": {"label": "Estimate!!Self-employed in own incorporated business workers!!Civilian employed population 16 years and over!!Production, transportation, and material moving occupations", "concept": "Occupation by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2406", "limit": 0, "attributes": "S2406_C03_006EA,S2406_C03_006M,S2406_C03_006MA"}, "S0505_C06_037E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_037EA,S0505_C06_037M,S0505_C06_037MA"}, "S0501_C03_115E": {"label": "Estimate!!Foreign-born!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_115EA,S0501_C03_115M,S0501_C03_115MA"}, "S2603_C05_096E": {"label": "Estimate!!Juvenile Facilities!!OCCUPATION!!Civilian employed population 16 years and over!!Sales and office occupations", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C05_096EA,S2603_C05_096M,S2603_C05_096MA"}, "S1810_C01_040E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a cognitive difficulty!!Population under 18 years", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C01_040EA,S1810_C01_040M,S1810_C01_040MA"}, "S0504_C03_006E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_006EA,S0504_C03_006M,S0504_C03_006MA"}, "S0802_C05_044E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!OCCUPATION!!Service occupations", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C05_044EA,S0802_C05_044M,S0802_C05_044MA"}, "S0505_C06_038E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_038EA,S0505_C06_038M,S0505_C06_038MA"}, "S0501_C03_116E": {"label": "Estimate!!Foreign-born!!Occupied housing units", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C03_116EA,S0501_C03_116M,S0501_C03_116MA"}, "S2406_C03_007E": {"label": "Estimate!!Self-employed in own incorporated business workers!!PERCENT ALLOCATED!!Occupation", "concept": "Occupation by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2406", "limit": 0, "attributes": "S2406_C03_007EA,S2406_C03_007M,S2406_C03_007MA"}, "S0504_C03_005E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen!!Entered before 2000", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_005EA,S0504_C03_005M,S0504_C03_005MA"}, "S2603_C05_095E": {"label": "Estimate!!Juvenile Facilities!!OCCUPATION!!Civilian employed population 16 years and over!!Service occupations", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C05_095EA,S2603_C05_095M,S2603_C05_095MA"}, "S1810_C01_041E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a cognitive difficulty!!Population 18 to 64 years", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C01_041EA,S1810_C01_041M,S1810_C01_041MA"}, "S0802_C05_045E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!OCCUPATION!!Sales and office occupations", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C05_045EA,S0802_C05_045M,S0802_C05_045MA"}, "S0802_C05_042E": {"label": "Estimate!!Worked from home!!Workers 16 years and over", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "int", "group": "S0802", "limit": 0, "attributes": "S0802_C05_042EA,S0802_C05_042M,S0802_C05_042MA"}, "S2406_C03_004E": {"label": "Estimate!!Self-employed in own incorporated business workers!!Civilian employed population 16 years and over!!Sales and office occupations", "concept": "Occupation by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2406", "limit": 0, "attributes": "S2406_C03_004EA,S2406_C03_004M,S2406_C03_004MA"}, "S2603_C05_090E": {"label": "Estimate!!Juvenile Facilities!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed!!Percent of civilian labor force", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C05_090EA,S2603_C05_090M,S2603_C05_090MA"}, "S0504_C03_004E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen!!Entered 2000 to 2009", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_004EA,S0504_C03_004M,S0504_C03_004MA"}, "S0804_C02_071E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over who did not work from home!!TIME ARRIVING AT WORK!!6:30 a.m. to 6:59 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_071EA,S0804_C02_071M,S0804_C02_071MA"}, "S0506_C03_103E": {"label": "Estimate!!Foreign-born; Born in Mexico!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income!!Mean Supplemental Security Income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C03_103EA,S0506_C03_103M,S0506_C03_103MA"}, "S0701PR_C03_045E": {"label": "Estimate!!Moved; from different municipio!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$50,000 to $64,999", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C03_045EA,S0701PR_C03_045M,S0701PR_C03_045MA"}, "S2406_C03_005E": {"label": "Estimate!!Self-employed in own incorporated business workers!!Civilian employed population 16 years and over!!Natural resources, construction, and maintenance occupations", "concept": "Occupation by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2406", "limit": 0, "attributes": "S2406_C03_005EA,S2406_C03_005M,S2406_C03_005MA"}, "S0504_C03_003E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen!!Entered 2010 or later", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_003EA,S0504_C03_003M,S0504_C03_003MA"}, "S0701PR_C03_044E": {"label": "Estimate!!Moved; from different municipio!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$35,000 to $49,999", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C03_044EA,S0701PR_C03_044M,S0701PR_C03_044MA"}, "S0804_C02_072E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over who did not work from home!!TIME ARRIVING AT WORK!!7:00 a.m. to 7:29 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_072EA,S0804_C02_072M,S0804_C02_072MA"}, "S0506_C03_102E": {"label": "Estimate!!Foreign-born; Born in Mexico!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_102EA,S0506_C03_102M,S0506_C03_102MA"}, "S0802_C05_043E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!OCCUPATION!!Management, business, science, and arts occupations", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C05_043EA,S0802_C05_043M,S0802_C05_043MA"}, "S0802_C05_040E": {"label": "Estimate!!Worked from home!!POVERTY STATUS IN THE PAST 12 MONTHS!!Workers 16 years and over for whom poverty status is determined!!100 to 149 percent of the poverty level", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C05_040EA,S0802_C05_040M,S0802_C05_040MA"}, "S2603_C05_092E": {"label": "Estimate!!Juvenile Facilities!!EMPLOYMENT STATUS!!Population 16 years and over!!Not in labor force", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C05_092EA,S2603_C05_092M,S2603_C05_092MA"}, "S0504_C03_002E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_002EA,S0504_C03_002M,S0504_C03_002MA"}, "S0701PR_C03_043E": {"label": "Estimate!!Moved; from different municipio!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$25,000 to $34,999", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C03_043EA,S0701PR_C03_043M,S0701PR_C03_043MA"}, "S0506_C03_101E": {"label": "Estimate!!Foreign-born; Born in Mexico!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income!!Mean Social Security income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C03_101EA,S0506_C03_101M,S0506_C03_101MA"}, "S2406_C03_002E": {"label": "Estimate!!Self-employed in own incorporated business workers!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations", "concept": "Occupation by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2406", "limit": 0, "attributes": "S2406_C03_002EA,S2406_C03_002M,S2406_C03_002MA"}, "S0802_C05_041E": {"label": "Estimate!!Worked from home!!POVERTY STATUS IN THE PAST 12 MONTHS!!Workers 16 years and over for whom poverty status is determined!!At or above 150 percent of the poverty level", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C05_041EA,S0802_C05_041M,S0802_C05_041MA"}, "S2406_C03_003E": {"label": "Estimate!!Self-employed in own incorporated business workers!!Civilian employed population 16 years and over!!Service occupations", "concept": "Occupation by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2406", "limit": 0, "attributes": "S2406_C03_003EA,S2406_C03_003M,S2406_C03_003MA"}, "S2603_C05_091E": {"label": "Estimate!!Juvenile Facilities!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Armed Forces", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C05_091EA,S2603_C05_091M,S2603_C05_091MA"}, "S0701PR_C03_042E": {"label": "Estimate!!Moved; from different municipio!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$15,000 to $24,999", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C03_042EA,S0701PR_C03_042M,S0701PR_C03_042MA"}, "S0804_C02_070E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over who did not work from home!!TIME ARRIVING AT WORK!!6:00 a.m. to 6:29 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_070EA,S0804_C02_070M,S0804_C02_070MA"}, "S0504_C03_001E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Foreign-born population", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C03_001EA,S0504_C03_001M,S0504_C03_001MA"}, "S0506_C03_100E": {"label": "Estimate!!Foreign-born; Born in Mexico!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_100EA,S0506_C03_100M,S0506_C03_100MA"}, "S0505_C06_031E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_031EA,S0505_C06_031M,S0505_C06_031MA"}, "S0804_C02_075E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over who did not work from home!!TIME ARRIVING AT WORK!!8:30 a.m. to 8:59 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_075EA,S0804_C02_075M,S0804_C02_075MA"}, "S0701PR_C03_049E": {"label": "Estimate!!Moved; from different municipio!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population 1 year and over for whom poverty status is determined", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C03_049EA,S0701PR_C03_049M,S0701PR_C03_049MA"}, "S0506_C03_107E": {"label": "Estimate!!Foreign-born; Born in Mexico!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income!!Mean retirement income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C03_107EA,S0506_C03_107M,S0506_C03_107MA"}, "S0505_C06_032E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Foreign-born population!!HOUSEHOLD TYPE!!In married-couple family", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_032EA,S0505_C06_032M,S0505_C06_032MA"}, "S0701PR_C03_048E": {"label": "Estimate!!Moved; from different municipio!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!Median income (dollars)", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "int", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C03_048EA,S0701PR_C03_048M,S0701PR_C03_048MA"}, "S0506_C03_106E": {"label": "Estimate!!Foreign-born; Born in Mexico!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_106EA,S0506_C03_106M,S0506_C03_106MA"}, "S0804_C02_076E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over who did not work from home!!TIME ARRIVING AT WORK!!9:00 a.m. to 11:59 p.m.", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_076EA,S0804_C02_076M,S0804_C02_076MA"}, "S2704_C03_010E": {"label": "Estimate!!Percent Public Coverage!!COVERAGE ALONE OR IN COMBINATION!!VA health care coverage alone or in combination", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "float", "group": "S2704", "limit": 0, "attributes": "S2704_C03_010EA,S2704_C03_010M,S2704_C03_010MA"}, "S2406_C03_001E": {"label": "Estimate!!Self-employed in own incorporated business workers!!Civilian employed population 16 years and over", "concept": "Occupation by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2406", "limit": 0, "attributes": "S2406_C03_001EA,S2406_C03_001M,S2406_C03_001MA"}, "S0506_C03_105E": {"label": "Estimate!!Foreign-born; Born in Mexico!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income!!Mean cash public assistance income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C03_105EA,S0506_C03_105M,S0506_C03_105MA"}, "S0701PR_C03_047E": {"label": "Estimate!!Moved; from different municipio!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$75,000 or more", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C03_047EA,S0701PR_C03_047M,S0701PR_C03_047MA"}, "S0804_C02_073E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over who did not work from home!!TIME ARRIVING AT WORK!!7:30 a.m. to 7:59 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_073EA,S0804_C02_073M,S0804_C02_073MA"}, "S2506_C01_020E": {"label": "Estimate!!Owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$50,000 to $74,999", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "int", "group": "S2506", "limit": 0, "attributes": "S2506_C01_020EA,S2506_C01_020M,S2506_C01_020MA"}, "S0702_C05_010E": {"label": "Estimate!!West!!Region of Current Residence!!PERCENT ALLOCATED!!Residence 1 year ago", "concept": "Movers Between Regions", "predicateType": "int", "group": "S0702", "limit": 0, "attributes": "S0702_C05_010EA,S0702_C05_010M,S0702_C05_010MA"}, "S0506_C03_104E": {"label": "Estimate!!Foreign-born; Born in Mexico!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_104EA,S0506_C03_104M,S0506_C03_104MA"}, "S0701PR_C03_046E": {"label": "Estimate!!Moved; from different municipio!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$65,000 to $74,999", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C03_046EA,S0701PR_C03_046M,S0701PR_C03_046MA"}, "S0804_C02_074E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over who did not work from home!!TIME ARRIVING AT WORK!!8:00 a.m. to 8:29 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_074EA,S0804_C02_074M,S0804_C02_074MA"}, "S0505_C06_030E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_030EA,S0505_C06_030M,S0505_C06_030MA"}, "S2601C_C02_043E": {"label": "Estimate!!Total group quarters population!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree or higher", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_043EA,S2601C_C02_043M,S2601C_C02_043MA"}, "S0801_C02_023E": {"label": "Estimate!!Male!!Workers 16 years and over!!PLACE OF WORK!!Living in 12 selected states!!Worked in minor civil division of residence", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C02_023EA,S0801_C02_023M,S0801_C02_023MA"}, "S2704_C03_001E": {"label": "Estimate!!Percent Public Coverage!!Civilian noninstitutionalized population", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "float", "group": "S2704", "limit": 0, "attributes": "S2704_C03_001EA,S2704_C03_001M,S2704_C03_001MA"}, "S2704_C03_002E": {"label": "Estimate!!Percent Public Coverage!!COVERAGE ALONE OR IN COMBINATION!!Medicare coverage alone or in combination", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "float", "group": "S2704", "limit": 0, "attributes": "S2704_C03_002EA,S2704_C03_002M,S2704_C03_002MA"}, "S2601C_C02_044E": {"label": "Estimate!!Total group quarters population!!VETERAN STATUS!!Civilian population 18 years and over", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_044EA,S2601C_C02_044M,S2601C_C02_044MA"}, "S0801_C02_022E": {"label": "Estimate!!Male!!Workers 16 years and over!!PLACE OF WORK!!Living in 12 selected states", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C02_022EA,S0801_C02_022M,S0801_C02_022MA"}, "S2601C_C02_045E": {"label": "Estimate!!Total group quarters population!!VETERAN STATUS!!Civilian population 18 years and over!!Civilian veteran", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_045EA,S2601C_C02_045M,S2601C_C02_045MA"}, "S2501_C01_001E": {"label": "Estimate!!Occupied housing units!!Occupied housing units", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C01_001EA,S2501_C01_001M,S2501_C01_001MA"}, "S0801_C02_021E": {"label": "Estimate!!Male!!Workers 16 years and over!!PLACE OF WORK!!Not living in a place", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C02_021EA,S0801_C02_021M,S0801_C02_021MA"}, "S2601C_C02_046E": {"label": "Estimate!!Total group quarters population!!DISABILITY STATUS!!Total population", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_046EA,S2601C_C02_046M,S2601C_C02_046MA"}, "S0801_C02_020E": {"label": "Estimate!!Male!!Workers 16 years and over!!PLACE OF WORK!!Living in a place!!Worked outside place of residence", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C02_020EA,S0801_C02_020M,S0801_C02_020MA"}, "S1903_C03_009E": {"label": "Estimate!!Median income (dollars)!!HOUSEHOLD INCOME BY RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Households!!Hispanic or Latino origin (of any race)", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C03_009EA,S1903_C03_009M,S1903_C03_009MA"}, "S2704_C03_005E": {"label": "Estimate!!Percent Public Coverage!!COVERAGE ALONE OR IN COMBINATION!!Medicare coverage alone or in combination!!65 years and over", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "float", "group": "S2704", "limit": 0, "attributes": "S2704_C03_005EA,S2704_C03_005M,S2704_C03_005MA"}, "S0801_C02_027E": {"label": "Estimate!!Male!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!12:00 a.m. to 4:59 a.m.", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C02_027EA,S0801_C02_027M,S0801_C02_027MA"}, "S2506_C01_001E": {"label": "Estimate!!Owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "int", "group": "S2506", "limit": 0, "attributes": "S2506_C01_001EA,S2506_C01_001M,S2506_C01_001MA"}, "S0701PR_C03_041E": {"label": "Estimate!!Moved; from different municipio!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$10,000 to $14,999", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C03_041EA,S0701PR_C03_041M,S0701PR_C03_041MA"}, "S0701_C04_002E": {"label": "Estimate!!Moved; from different state!!Population 1 year and over!!AGE!!1 to 4 years", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C04_002EA,S0701_C04_002M,S0701_C04_002MA"}, "S1903_C03_008E": {"label": "Estimate!!Median income (dollars)!!HOUSEHOLD INCOME BY RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Households!!Two or more races", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C03_008EA,S1903_C03_008M,S1903_C03_008MA"}, "S2506_C01_002E": {"label": "Estimate!!Owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!VALUE!!Less than $50,000", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "int", "group": "S2506", "limit": 0, "attributes": "S2506_C01_002EA,S2506_C01_002M,S2506_C01_002MA"}, "S2704_C03_006E": {"label": "Estimate!!Percent Public Coverage!!COVERAGE ALONE OR IN COMBINATION!!Medicaid/means-tested public coverage alone or in combination", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "float", "group": "S2704", "limit": 0, "attributes": "S2704_C03_006EA,S2704_C03_006M,S2704_C03_006MA"}, "S0801_C02_026E": {"label": "Estimate!!Male!!Workers 16 years and over who did not work from home", "concept": "Commuting Characteristics by Sex", "predicateType": "int", "group": "S0801", "limit": 0, "attributes": "S0801_C02_026EA,S0801_C02_026M,S0801_C02_026MA"}, "S0701PR_C03_040E": {"label": "Estimate!!Moved; from different municipio!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$1 to $9,999 or loss", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C03_040EA,S0701PR_C03_040M,S0701PR_C03_040MA"}, "S2602_C02_040E": {"label": "Estimate!!Total group quarters population!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C02_040EA,S2602_C02_040M,S2602_C02_040MA"}, "S2601C_C02_040E": {"label": "Estimate!!Total group quarters population!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!College or graduate school", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_040EA,S2601C_C02_040M,S2601C_C02_040MA"}, "S0701_C04_001E": {"label": "Estimate!!Moved; from different state!!Population 1 year and over", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C04_001EA,S0701_C04_001M,S0701_C04_001MA"}, "S2704_C03_003E": {"label": "Estimate!!Percent Public Coverage!!COVERAGE ALONE OR IN COMBINATION!!Medicare coverage alone or in combination!!Under 19", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "float", "group": "S2704", "limit": 0, "attributes": "S2704_C03_003EA,S2704_C03_003M,S2704_C03_003MA"}, "S2506_C01_003E": {"label": "Estimate!!Owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!VALUE!!$50,000 to $99,999", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "int", "group": "S2506", "limit": 0, "attributes": "S2506_C01_003EA,S2506_C01_003M,S2506_C01_003MA"}, "S0801_C02_025E": {"label": "Estimate!!Male!!Workers 16 years and over!!PLACE OF WORK!!Not living in 12 selected states", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C02_025EA,S0801_C02_025M,S0801_C02_025MA"}, "S1903_C03_007E": {"label": "Estimate!!Median income (dollars)!!HOUSEHOLD INCOME BY RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Households!!One race--!!Some other race", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C03_007EA,S1903_C03_007M,S1903_C03_007MA"}, "S0701_C04_004E": {"label": "Estimate!!Moved; from different state!!Population 1 year and over!!AGE!!18 to 24 years", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C04_004EA,S0701_C04_004M,S0701_C04_004MA"}, "S2601C_C02_041E": {"label": "Estimate!!Total group quarters population!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_041EA,S2601C_C02_041M,S2601C_C02_041MA"}, "S2704_C03_004E": {"label": "Estimate!!Percent Public Coverage!!COVERAGE ALONE OR IN COMBINATION!!Medicare coverage alone or in combination!!19 to 64 years", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "float", "group": "S2704", "limit": 0, "attributes": "S2704_C03_004EA,S2704_C03_004M,S2704_C03_004MA"}, "S1903_C03_006E": {"label": "Estimate!!Median income (dollars)!!HOUSEHOLD INCOME BY RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Households!!One race--!!Native Hawaiian and Other Pacific Islander", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C03_006EA,S1903_C03_006M,S1903_C03_006MA"}, "S2601C_C02_042E": {"label": "Estimate!!Total group quarters population!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate or higher", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_042EA,S2601C_C02_042M,S2601C_C02_042MA"}, "S0701_C04_003E": {"label": "Estimate!!Moved; from different state!!Population 1 year and over!!AGE!!5 to 17 years", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C04_003EA,S0701_C04_003M,S0701_C04_003MA"}, "S0801_C02_024E": {"label": "Estimate!!Male!!Workers 16 years and over!!PLACE OF WORK!!Living in 12 selected states!!Worked outside minor civil division of residence", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C02_024EA,S0801_C02_024M,S0801_C02_024MA"}, "S2506_C01_004E": {"label": "Estimate!!Owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!VALUE!!$100,000 to $299,999", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "int", "group": "S2506", "limit": 0, "attributes": "S2506_C01_004EA,S2506_C01_004M,S2506_C01_004MA"}, "S2602_C02_043E": {"label": "Estimate!!Total group quarters population!!VETERAN STATUS!!Civilian population 18 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C02_043EA,S2602_C02_043M,S2602_C02_043MA"}, "S2704_C03_009E": {"label": "Estimate!!Percent Public Coverage!!COVERAGE ALONE OR IN COMBINATION!!Medicaid/means-tested public coverage alone or in combination!!65 years and over", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "float", "group": "S2704", "limit": 0, "attributes": "S2704_C03_009EA,S2704_C03_009M,S2704_C03_009MA"}, "S0701_C04_006E": {"label": "Estimate!!Moved; from different state!!Population 1 year and over!!AGE!!35 to 44 years", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C04_006EA,S0701_C04_006M,S0701_C04_006MA"}, "S2501_C01_007E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!OCCUPANTS PER ROOM!!1.01 to 1.50 occupants per room", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C01_007EA,S2501_C01_007M,S2501_C01_007MA"}, "S2506_C01_005E": {"label": "Estimate!!Owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!VALUE!!$300,000 to $499,999", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "int", "group": "S2506", "limit": 0, "attributes": "S2506_C01_005EA,S2506_C01_005M,S2506_C01_005MA"}, "S2602_C02_044E": {"label": "Estimate!!Total group quarters population!!VETERAN STATUS!!Civilian population 18 years and over!!Civilian veteran", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C02_044EA,S2602_C02_044M,S2602_C02_044MA"}, "S0701_C04_005E": {"label": "Estimate!!Moved; from different state!!Population 1 year and over!!AGE!!25 to 34 years", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C04_005EA,S0701_C04_005M,S0701_C04_005MA"}, "S2501_C01_006E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!OCCUPANTS PER ROOM!!1.00 or less occupants per room", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C01_006EA,S2501_C01_006M,S2501_C01_006MA"}, "S2506_C01_006E": {"label": "Estimate!!Owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!VALUE!!$500,000 to $749,999", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "int", "group": "S2506", "limit": 0, "attributes": "S2506_C01_006EA,S2506_C01_006M,S2506_C01_006MA"}, "S0801_C02_029E": {"label": "Estimate!!Male!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!5:30 a.m. to 5:59 a.m.", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C02_029EA,S0801_C02_029M,S0801_C02_029MA"}, "S2704_C03_007E": {"label": "Estimate!!Percent Public Coverage!!COVERAGE ALONE OR IN COMBINATION!!Medicaid/means-tested public coverage alone or in combination!!Under 19", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "float", "group": "S2704", "limit": 0, "attributes": "S2704_C03_007EA,S2704_C03_007M,S2704_C03_007MA"}, "S0701_C04_008E": {"label": "Estimate!!Moved; from different state!!Population 1 year and over!!AGE!!55 to 64 years", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C04_008EA,S0701_C04_008M,S0701_C04_008MA"}, "S2501_C01_009E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C01_009EA,S2501_C01_009M,S2501_C01_009MA"}, "S2602_C02_041E": {"label": "Estimate!!Total group quarters population!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate or higher", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C02_041EA,S2602_C02_041M,S2602_C02_041MA"}, "S2506_C01_007E": {"label": "Estimate!!Owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!VALUE!!$750,000 to $999,999", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "int", "group": "S2506", "limit": 0, "attributes": "S2506_C01_007EA,S2506_C01_007M,S2506_C01_007MA"}, "S2502_C04_020E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!EDUCATIONAL ATTAINMENT OF HOUSEHOLDER!!Some college or associate's degree", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C04_020EA,S2502_C04_020M,S2502_C04_020MA"}, "S2602_C02_042E": {"label": "Estimate!!Total group quarters population!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree or higher", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C02_042EA,S2602_C02_042M,S2602_C02_042MA"}, "S0801_C02_028E": {"label": "Estimate!!Male!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!5:00 a.m. to 5:29 a.m.", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C02_028EA,S0801_C02_028M,S0801_C02_028MA"}, "S2704_C03_008E": {"label": "Estimate!!Percent Public Coverage!!COVERAGE ALONE OR IN COMBINATION!!Medicaid/means-tested public coverage alone or in combination!!19 to 64 years", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "float", "group": "S2704", "limit": 0, "attributes": "S2704_C03_008EA,S2704_C03_008M,S2704_C03_008MA"}, "S0701_C04_007E": {"label": "Estimate!!Moved; from different state!!Population 1 year and over!!AGE!!45 to 54 years", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C04_007EA,S0701_C04_007M,S0701_C04_007MA"}, "S2501_C01_008E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!OCCUPANTS PER ROOM!!1.51 or more occupants per room", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C01_008EA,S2501_C01_008M,S2501_C01_008MA"}, "S2502_C04_021E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!EDUCATIONAL ATTAINMENT OF HOUSEHOLDER!!Bachelor's degree or higher", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C04_021EA,S2502_C04_021M,S2502_C04_021MA"}, "S2506_C01_008E": {"label": "Estimate!!Owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!VALUE!!$1,000,000 or more", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "int", "group": "S2506", "limit": 0, "attributes": "S2506_C01_008EA,S2506_C01_008M,S2506_C01_008MA"}, "S1810_C01_038E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a vision difficulty!!Population 65 years and over!!Population 75 years and over", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C01_038EA,S1810_C01_038M,S1810_C01_038MA"}, "S2602_C02_047E": {"label": "Estimate!!Total group quarters population!!DISABILITY STATUS!!Population 18 to 64 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C02_047EA,S2602_C02_047M,S2602_C02_047MA"}, "S2601C_C02_047E": {"label": "Estimate!!Total group quarters population!!DISABILITY STATUS!!Total population!!With a disability", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_047EA,S2601C_C02_047M,S2601C_C02_047MA"}, "S2603_C05_078E": {"label": "Estimate!!Juvenile Facilities!!WORLD REGION OF BIRTH OF FOREIGN BORN!!Foreign-born population excluding population born at sea!!Asia", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C05_078EA,S2603_C05_078M,S2603_C05_078MA"}, "S2501_C01_003E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!HOUSEHOLD SIZE!!2-person household", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C01_003EA,S2501_C01_003M,S2501_C01_003MA"}, "S2601C_C02_048E": {"label": "Estimate!!Total group quarters population!!DISABILITY STATUS!!Population under 18 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_048EA,S2601C_C02_048M,S2601C_C02_048MA"}, "S2502_C04_022E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!YEAR HOUSEHOLDER MOVED INTO UNIT!!Moved in 2023 or later", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C04_022EA,S2502_C04_022M,S2502_C04_022MA"}, "S2506_C01_009E": {"label": "Estimate!!Owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!VALUE!!Median (dollars)", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "int", "group": "S2506", "limit": 0, "attributes": "S2506_C01_009EA,S2506_C01_009M,S2506_C01_009MA"}, "S1810_C01_039E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a cognitive difficulty", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C01_039EA,S1810_C01_039M,S1810_C01_039MA"}, "S2602_C02_048E": {"label": "Estimate!!Total group quarters population!!DISABILITY STATUS!!Population 18 to 64 years!!With a disability", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C02_048EA,S2602_C02_048M,S2602_C02_048MA"}, "S0701_C04_009E": {"label": "Estimate!!Moved; from different state!!Population 1 year and over!!AGE!!65 to 74 years", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C04_009EA,S0701_C04_009M,S0701_C04_009MA"}, "S2603_C05_077E": {"label": "Estimate!!Juvenile Facilities!!WORLD REGION OF BIRTH OF FOREIGN BORN!!Foreign-born population excluding population born at sea!!Europe", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C05_077EA,S2603_C05_077M,S2603_C05_077MA"}, "S2501_C01_002E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!HOUSEHOLD SIZE!!1-person household", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C01_002EA,S2501_C01_002M,S2501_C01_002MA"}, "S2601C_C02_049E": {"label": "Estimate!!Total group quarters population!!DISABILITY STATUS!!Population under 18 years!!With a disability", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_049EA,S2601C_C02_049M,S2601C_C02_049MA"}, "S2502_C04_023E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!YEAR HOUSEHOLDER MOVED INTO UNIT!!Moved in 2020 to 2022", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C04_023EA,S2502_C04_023M,S2502_C04_023MA"}, "S2602_C02_045E": {"label": "Estimate!!Total group quarters population!!DISABILITY STATUS!!Total population", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C02_045EA,S2602_C02_045M,S2602_C02_045MA"}, "S1810_C01_036E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a vision difficulty!!Population 65 years and over", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C01_036EA,S1810_C01_036M,S1810_C01_036MA"}, "S2501_C01_005E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!HOUSEHOLD SIZE!!4-or-more-person household", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C01_005EA,S2501_C01_005M,S2501_C01_005MA"}, "S2502_C04_024E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!YEAR HOUSEHOLDER MOVED INTO UNIT!!Moved in 2010 to 2019", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C04_024EA,S2502_C04_024M,S2502_C04_024MA"}, "S1810_C01_037E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a vision difficulty!!Population 65 years and over!!Population 65 to 74 years", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C01_037EA,S1810_C01_037M,S1810_C01_037MA"}, "S2602_C02_046E": {"label": "Estimate!!Total group quarters population!!DISABILITY STATUS!!Total population!!With a disability", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C02_046EA,S2602_C02_046M,S2602_C02_046MA"}, "S2501_C01_004E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!HOUSEHOLD SIZE!!3-person household", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C01_004EA,S2501_C01_004M,S2501_C01_004MA"}, "S2603_C05_079E": {"label": "Estimate!!Juvenile Facilities!!WORLD REGION OF BIRTH OF FOREIGN BORN!!Foreign-born population excluding population born at sea!!Latin America", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C05_079EA,S2603_C05_079M,S2603_C05_079MA"}, "S2502_C04_025E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!YEAR HOUSEHOLDER MOVED INTO UNIT!!Moved in 2000 to 2009", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C04_025EA,S2502_C04_025M,S2502_C04_025MA"}, "S0505_C06_047E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than high school graduate", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_047EA,S0505_C06_047M,S0505_C06_047MA"}, "S1810_C01_034E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a vision difficulty!!Population 18 to 64 years!!Population 18 to 34 years", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C01_034EA,S1810_C01_034M,S1810_C01_034MA"}, "S0804_C02_067E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over who did not work from home!!TIME ARRIVING AT WORK!!12:00 a.m. to 4:59 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_067EA,S0804_C02_067M,S0804_C02_067MA"}, "S2603_C05_086E": {"label": "Estimate!!Juvenile Facilities!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C05_086EA,S2603_C05_086M,S2603_C05_086MA"}, "S2502_C04_026E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!YEAR HOUSEHOLDER MOVED INTO UNIT!!Moved in 1990 to 1999", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C04_026EA,S2502_C04_026M,S2502_C04_026MA"}, "S2502_C04_027E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!YEAR HOUSEHOLDER MOVED INTO UNIT!!Moved in 1989 or earlier", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C04_027EA,S2502_C04_027M,S2502_C04_027MA"}, "S0505_C06_048E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate (includes equivalency)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_048EA,S0505_C06_048M,S0505_C06_048MA"}, "S1810_C01_035E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a vision difficulty!!Population 18 to 64 years!!Population 35 to 64 years", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C01_035EA,S1810_C01_035M,S1810_C01_035MA"}, "S2603_C05_085E": {"label": "Estimate!!Juvenile Facilities!!EMPLOYMENT STATUS!!Population 16 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C05_085EA,S2603_C05_085M,S2603_C05_085MA"}, "S0804_C02_068E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over who did not work from home!!TIME ARRIVING AT WORK!!5:00 a.m. to 5:29 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_068EA,S0804_C02_068M,S0804_C02_068MA"}, "S0505_C06_045E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!College or graduate school", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_045EA,S0505_C06_045M,S0505_C06_045MA"}, "S2602_C02_049E": {"label": "Estimate!!Total group quarters population!!DISABILITY STATUS!!Population 18 to 64 years!!No disability", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C02_049EA,S2602_C02_049M,S2602_C02_049MA"}, "S1810_C01_032E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a vision difficulty!!Population under 18 years!!Population 5 to 17 years", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C01_032EA,S1810_C01_032M,S1810_C01_032MA"}, "S2603_C05_088E": {"label": "Estimate!!Juvenile Facilities!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Employed", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C05_088EA,S2603_C05_088M,S2603_C05_088MA"}, "S0804_C02_065E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!CLASS OF WORKER!!Unpaid family workers", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_065EA,S0804_C02_065M,S0804_C02_065MA"}, "S0701PR_C03_039E": {"label": "Estimate!!Moved; from different municipio!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C03_039EA,S0701PR_C03_039M,S0701PR_C03_039MA"}, "S1810_C01_033E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a vision difficulty!!Population 18 to 64 years", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C01_033EA,S1810_C01_033M,S1810_C01_033MA"}, "S0505_C06_046E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C06_046EA,S0505_C06_046M,S0505_C06_046MA"}, "S0804_C02_066E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over who did not work from home", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "int", "group": "S0804", "limit": 0, "attributes": "S0804_C02_066EA,S0804_C02_066M,S0804_C02_066MA"}, "S2603_C05_087E": {"label": "Estimate!!Juvenile Facilities!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C05_087EA,S2603_C05_087M,S2603_C05_087MA"}, "S0701PR_C03_038E": {"label": "Estimate!!Moved; from different municipio!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Graduate or professional degree", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C03_038EA,S0701PR_C03_038M,S0701PR_C03_038MA"}, "S0501_C03_100E": {"label": "Estimate!!Foreign-born!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Food Stamp/SNAP benefits", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_100EA,S0501_C03_100M,S0501_C03_100MA"}, "S2603_C05_082E": {"label": "Estimate!!Juvenile Facilities!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!English only", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C05_082EA,S2603_C05_082M,S2603_C05_082MA"}, "S1810_C01_030E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a vision difficulty!!Population under 18 years", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C01_030EA,S1810_C01_030M,S1810_C01_030MA"}, "S0506_C03_111E": {"label": "Estimate!!Foreign-born; Born in Mexico!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C03_111EA,S0506_C03_111M,S0506_C03_111MA"}, "S0501_C03_101E": {"label": "Estimate!!Foreign-born!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!Median Household income (dollars)", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C03_101EA,S0501_C03_101M,S0501_C03_101MA"}, "S0802_C05_058E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!INDUSTRY!!Arts, entertainment, and recreation, and accommodation and food services", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C05_058EA,S0802_C05_058M,S0802_C05_058MA"}, "S2603_C05_081E": {"label": "Estimate!!Juvenile Facilities!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C05_081EA,S2603_C05_081M,S2603_C05_081MA"}, "S1810_C01_031E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a vision difficulty!!Population under 18 years!!Population under 5 years", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C01_031EA,S1810_C01_031M,S1810_C01_031MA"}, "S0504_C03_019E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Foreign-born population!!SEX AND AGE!!75 to 84 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_019EA,S0504_C03_019M,S0504_C03_019MA"}, "S0506_C03_110E": {"label": "Estimate!!Foreign-born; Born in Mexico!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!Average number of workers per household", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_110EA,S0506_C03_110M,S0506_C03_110MA"}, "S0501_C03_102E": {"label": "Estimate!!Foreign-born!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!Average number of workers per household", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_102EA,S0501_C03_102M,S0501_C03_102MA"}, "S0802_C05_059E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!INDUSTRY!!Other services (except public administration)", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C05_059EA,S0802_C05_059M,S0802_C05_059MA"}, "S0505_C06_049E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college or associate's degree", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_049EA,S0505_C06_049M,S0505_C06_049MA"}, "S0804_C02_069E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over who did not work from home!!TIME ARRIVING AT WORK!!5:30 a.m. to 5:59 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_069EA,S0804_C02_069M,S0804_C02_069MA"}, "S2603_C05_084E": {"label": "Estimate!!Juvenile Facilities!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English!!Speak English less than \"very well\"", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C05_084EA,S2603_C05_084M,S2603_C05_084MA"}, "S0504_C03_018E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Foreign-born population!!SEX AND AGE!!65 to 74 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_018EA,S0504_C03_018M,S0504_C03_018MA"}, "S0501_C03_103E": {"label": "Estimate!!Foreign-born!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C03_103EA,S0501_C03_103M,S0501_C03_103MA"}, "S0802_C05_056E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!INDUSTRY!!Professional, scientific, management, and administrative and waste management services", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C05_056EA,S0802_C05_056M,S0802_C05_056MA"}, "S0501_C03_104E": {"label": "Estimate!!Foreign-born!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!Below 100 percent of the poverty level", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_104EA,S0501_C03_104M,S0501_C03_104MA"}, "S2603_C05_083E": {"label": "Estimate!!Juvenile Facilities!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C05_083EA,S2603_C05_083M,S2603_C05_083MA"}, "S0504_C03_017E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Foreign-born population!!SEX AND AGE!!55 to 64 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_017EA,S0504_C03_017M,S0504_C03_017MA"}, "S0802_C05_057E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!INDUSTRY!!Educational services, and health care and social assistance", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C05_057EA,S0802_C05_057M,S0802_C05_057MA"}, "S0504_C03_016E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Foreign-born population!!SEX AND AGE!!45 to 54 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_016EA,S0504_C03_016M,S0504_C03_016MA"}, "S0701PR_C03_033E": {"label": "Estimate!!Moved; from different municipio!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C03_033EA,S0701PR_C03_033M,S0701PR_C03_033MA"}, "S1903_C03_005E": {"label": "Estimate!!Median income (dollars)!!HOUSEHOLD INCOME BY RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Households!!One race--!!Asian", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C03_005EA,S1903_C03_005M,S1903_C03_005MA"}, "S0506_C03_115E": {"label": "Estimate!!Foreign-born; Born in Mexico!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_115EA,S0506_C03_115M,S0506_C03_115MA"}, "S0802_C05_054E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!INDUSTRY!!Transportation and warehousing, and utilities", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C05_054EA,S0802_C05_054M,S0802_C05_054MA"}, "S0504_C03_015E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Foreign-born population!!SEX AND AGE!!25 to 44 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_015EA,S0504_C03_015M,S0504_C03_015MA"}, "S0701PR_C03_032E": {"label": "Estimate!!Moved; from different municipio!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C03_032EA,S0701PR_C03_032M,S0701PR_C03_032MA"}, "S1903_C03_004E": {"label": "Estimate!!Median income (dollars)!!HOUSEHOLD INCOME BY RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Households!!One race--!!American Indian and Alaska Native", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C03_004EA,S1903_C03_004M,S1903_C03_004MA"}, "S0804_C02_060E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!INDUSTRY!!Public administration", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_060EA,S0804_C02_060M,S0804_C02_060MA"}, "S0506_C03_114E": {"label": "Estimate!!Foreign-born; Born in Mexico!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!At or above 200 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_114EA,S0506_C03_114M,S0506_C03_114MA"}, "S0505_C06_040E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_040EA,S0505_C06_040M,S0505_C06_040MA"}, "S0802_C05_055E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!INDUSTRY!!Information and finance and insurance, and real estate and rental and leasing", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C05_055EA,S0802_C05_055M,S0802_C05_055MA"}, "S0802_C05_052E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!INDUSTRY!!Wholesale trade", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C05_052EA,S0802_C05_052M,S0802_C05_052MA"}, "S2603_C05_080E": {"label": "Estimate!!Juvenile Facilities!!WORLD REGION OF BIRTH OF FOREIGN BORN!!Foreign-born population excluding population born at sea!!Other", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C05_080EA,S2603_C05_080M,S2603_C05_080MA"}, "S1903_C03_003E": {"label": "Estimate!!Median income (dollars)!!HOUSEHOLD INCOME BY RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Households!!One race--!!Black or African American", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C03_003EA,S1903_C03_003M,S1903_C03_003MA"}, "S0504_C03_014E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Foreign-born population!!SEX AND AGE!!18 to 24 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_014EA,S0504_C03_014M,S0504_C03_014MA"}, "S0701PR_C03_031E": {"label": "Estimate!!Moved; from different municipio!!MARITAL STATUS!!Population 15 years and over!!Divorced or separated", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C03_031EA,S0701PR_C03_031M,S0701PR_C03_031MA"}, "S0506_C03_113E": {"label": "Estimate!!Foreign-born; Born in Mexico!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!100 to 199 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_113EA,S0506_C03_113M,S0506_C03_113MA"}, "S0802_C05_053E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!INDUSTRY!!Retail trade", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C05_053EA,S0802_C05_053M,S0802_C05_053MA"}, "S1903_C03_002E": {"label": "Estimate!!Median income (dollars)!!HOUSEHOLD INCOME BY RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Households!!One race--!!White", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C03_002EA,S1903_C03_002M,S1903_C03_002MA"}, "S0504_C03_013E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Foreign-born population!!SEX AND AGE!!5 to 17 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_013EA,S0504_C03_013M,S0504_C03_013MA"}, "S0701PR_C03_030E": {"label": "Estimate!!Moved; from different municipio!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C03_030EA,S0701PR_C03_030M,S0701PR_C03_030MA"}, "S0506_C03_112E": {"label": "Estimate!!Foreign-born; Born in Mexico!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!Below 100 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_112EA,S0506_C03_112M,S0506_C03_112MA"}, "S0505_C06_043E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Elementary school (grades K-8)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_043EA,S0505_C06_043M,S0505_C06_043MA"}, "S0802_C05_050E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!INDUSTRY!!Construction", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C05_050EA,S0802_C05_050M,S0802_C05_050MA"}, "S1903_C03_001E": {"label": "Estimate!!Median income (dollars)!!HOUSEHOLD INCOME BY RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Households", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C03_001EA,S1903_C03_001M,S1903_C03_001MA"}, "S0701PR_C03_037E": {"label": "Estimate!!Moved; from different municipio!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C03_037EA,S0701PR_C03_037M,S0701PR_C03_037MA"}, "S0504_C03_012E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Foreign-born population!!SEX AND AGE!!Under 5 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_012EA,S0504_C03_012M,S0504_C03_012MA"}, "S0804_C02_063E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!CLASS OF WORKER!!Government workers", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_063EA,S0804_C02_063M,S0804_C02_063MA"}, "S0506_C03_119E": {"label": "Estimate!!Foreign-born; Born in Mexico!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_119EA,S0506_C03_119M,S0506_C03_119MA"}, "S0505_C06_044E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!High school (grades 9-12)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_044EA,S0505_C06_044M,S0505_C06_044MA"}, "S0802_C05_051E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!INDUSTRY!!Manufacturing", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C05_051EA,S0802_C05_051M,S0802_C05_051MA"}, "S0701PR_C03_036E": {"label": "Estimate!!Moved; from different municipio!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college or associate's degree", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C03_036EA,S0701PR_C03_036M,S0701PR_C03_036MA"}, "S0504_C03_011E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Foreign-born population!!SEX AND AGE!!Female", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_011EA,S0504_C03_011M,S0504_C03_011MA"}, "S0804_C02_064E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!CLASS OF WORKER!!Self-employed workers in own not incorporated business", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_064EA,S0804_C02_064M,S0804_C02_064MA"}, "S0506_C03_118E": {"label": "Estimate!!Foreign-born; Born in Mexico!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_118EA,S0506_C03_118M,S0506_C03_118MA"}, "S0506_C03_117E": {"label": "Estimate!!Foreign-born; Born in Mexico!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_117EA,S0506_C03_117M,S0506_C03_117MA"}, "S0804_C02_061E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!INDUSTRY!!Armed forces", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_061EA,S0804_C02_061M,S0804_C02_061MA"}, "S0701PR_C03_035E": {"label": "Estimate!!Moved; from different municipio!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate (includes equivalency)", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C03_035EA,S0701PR_C03_035M,S0701PR_C03_035MA"}, "S0504_C03_010E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Foreign-born population!!SEX AND AGE!!Male", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_010EA,S0504_C03_010M,S0504_C03_010MA"}, "S0505_C06_041E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C06_041EA,S0505_C06_041M,S0505_C06_041MA"}, "S0505_C06_042E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Nursery school, preschool", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_042EA,S0505_C06_042M,S0505_C06_042MA"}, "S0506_C03_116E": {"label": "Estimate!!Foreign-born; Born in Mexico!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_116EA,S0506_C03_116M,S0506_C03_116MA"}, "S0701PR_C03_034E": {"label": "Estimate!!Moved; from different municipio!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than high school graduate", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C03_034EA,S0701PR_C03_034M,S0701PR_C03_034MA"}, "S0804_C02_062E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!CLASS OF WORKER!!Private wage and salary workers", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_062EA,S0804_C02_062M,S0804_C02_062MA"}, "S0802_C05_070E": {"label": "Estimate!!Worked from home!!Workers 16 years and over who did not work from home", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "int", "group": "S0802", "limit": 0, "attributes": "S0802_C05_070EA,S0802_C05_070M,S0802_C05_070MA"}, "S2401_C03_033E": {"label": "Estimate!!Percent Male!!Civilian employed population 16 years and over!!Production, transportation, and material moving occupations:", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2401", "limit": 0, "attributes": "S2401_C03_033EA,S2401_C03_033M,S2401_C03_033MA"}, "S0502PR_C02_140E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Occupied housing units!!SELECTED CHARACTERISTICS!!Limited English Speaking Households", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_140EA,S0502PR_C02_140M,S0502PR_C02_140MA"}, "S0501_C01_034E": {"label": "Estimate!!Total!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Nursery school, preschool", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_034EA,S0501_C01_034M,S0501_C01_034MA"}, "S0701_C04_034E": {"label": "Estimate!!Moved; from different state!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than high school graduate", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C04_034EA,S0701_C04_034M,S0701_C04_034MA"}, "S0102PR_C02_096E": {"label": "Estimate!!60 years and over!!Occupied housing units!!SELECTED CHARACTERISTICS!!1.01 or more occupants per room", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_096EA,S0102PR_C02_096M,S0102PR_C02_096MA"}, "S0802_C05_071E": {"label": "Estimate!!Worked from home!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!12:00 a.m. to 4:59 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "int", "group": "S0802", "limit": 0, "attributes": "S0802_C05_071EA,S0802_C05_071M,S0802_C05_071MA"}, "S2401_C03_034E": {"label": "Estimate!!Percent Male!!Civilian employed population 16 years and over!!Production, transportation, and material moving occupations:!!Production occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2401", "limit": 0, "attributes": "S2401_C03_034EA,S2401_C03_034M,S2401_C03_034MA"}, "S0501_C01_035E": {"label": "Estimate!!Total!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Elementary school (grades K-8)", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_035EA,S0501_C01_035M,S0501_C01_035MA"}, "S0701_C04_033E": {"label": "Estimate!!Moved; from different state!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C04_033EA,S0701_C04_033M,S0701_C04_033MA"}, "S0102PR_C02_097E": {"label": "Estimate!!60 years and over!!Owner-occupied housing units", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_097EA,S0102PR_C02_097M,S0102PR_C02_097MA"}, "S2401_C03_031E": {"label": "Estimate!!Percent Male!!Civilian employed population 16 years and over!!Natural resources, construction, and maintenance occupations:!!Construction and extraction occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2401", "limit": 0, "attributes": "S2401_C03_031EA,S2401_C03_031M,S2401_C03_031MA"}, "S0502PR_C02_142E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_142EA,S0502PR_C02_142M,S0502PR_C02_142MA"}, "S0501_C01_036E": {"label": "Estimate!!Total!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!High school (grades 9-12)", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_036EA,S0501_C01_036M,S0501_C01_036MA"}, "S0701_C04_036E": {"label": "Estimate!!Moved; from different state!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college or associate's degree", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C04_036EA,S0701_C04_036M,S0701_C04_036MA"}, "S2403_C01_001E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C01_001EA,S2403_C01_001M,S2403_C01_001MA"}, "S0102PR_C02_094E": {"label": "Estimate!!60 years and over!!Occupied housing units!!HOUSING TENURE!!Average household size of renter-occupied unit", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_094EA,S0102PR_C02_094M,S0102PR_C02_094MA"}, "S2401_C03_032E": {"label": "Estimate!!Percent Male!!Civilian employed population 16 years and over!!Natural resources, construction, and maintenance occupations:!!Installation, maintenance, and repair occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2401", "limit": 0, "attributes": "S2401_C03_032EA,S2401_C03_032M,S2401_C03_032MA"}, "S0502PR_C02_141E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Owner-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_141EA,S0502PR_C02_141M,S0502PR_C02_141MA"}, "S0501_C01_037E": {"label": "Estimate!!Total!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!College or graduate school", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_037EA,S0501_C01_037M,S0501_C01_037MA"}, "S0701_C04_035E": {"label": "Estimate!!Moved; from different state!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate (includes equivalency)", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C04_035EA,S0701_C04_035M,S0701_C04_035MA"}, "S2403_C01_002E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Agriculture, forestry, fishing and hunting, and mining:", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C01_002EA,S2403_C01_002M,S2403_C01_002MA"}, "S0102PR_C02_095E": {"label": "Estimate!!60 years and over!!Occupied housing units!!SELECTED CHARACTERISTICS!!No telephone service available", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_095EA,S0102PR_C02_095M,S0102PR_C02_095MA"}, "S0501_C01_030E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_030EA,S0501_C01_030M,S0501_C01_030MA"}, "S0701_C04_038E": {"label": "Estimate!!Moved; from different state!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Graduate or professional degree", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C04_038EA,S0701_C04_038M,S0701_C04_038MA"}, "S0501_C01_031E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over!!Divorced or separated", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_031EA,S0501_C01_031M,S0501_C01_031MA"}, "S0701_C04_037E": {"label": "Estimate!!Moved; from different state!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C04_037EA,S0701_C04_037M,S0701_C04_037MA"}, "S2401_C03_035E": {"label": "Estimate!!Percent Male!!Civilian employed population 16 years and over!!Production, transportation, and material moving occupations:!!Transportation occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2401", "limit": 0, "attributes": "S2401_C03_035EA,S2401_C03_035M,S2401_C03_035MA"}, "S0501_C01_032E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_032EA,S0501_C01_032M,S0501_C01_032MA"}, "S0102PR_C02_098E": {"label": "Estimate!!60 years and over!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_098EA,S0102PR_C02_098M,S0102PR_C02_098MA"}, "S2401_C03_036E": {"label": "Estimate!!Percent Male!!Civilian employed population 16 years and over!!Production, transportation, and material moving occupations:!!Material moving occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2401", "limit": 0, "attributes": "S2401_C03_036EA,S2401_C03_036M,S2401_C03_036MA"}, "S0501_C01_033E": {"label": "Estimate!!Total!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C01_033EA,S0501_C01_033M,S0501_C01_033MA"}, "S0701_C04_039E": {"label": "Estimate!!Moved; from different state!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C04_039EA,S0701_C04_039M,S0701_C04_039MA"}, "S0102PR_C02_099E": {"label": "Estimate!!60 years and over!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_099EA,S0102PR_C02_099M,S0102PR_C02_099MA"}, "S2701_C02_028E": {"label": "Estimate!!Insured!!Civilian noninstitutionalized population!!LIVING ARRANGEMENTS!!In family households!!In other families!!Male reference person, no spouse present", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C02_028EA,S2701_C02_028M,S2701_C02_028MA"}, "S0506_C01_073E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!OCCUPATION!!Production, transportation, and material moving occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_073EA,S0506_C01_073M,S0506_C01_073MA"}, "S1701_C03_033E": {"label": "Estimate!!Percent below poverty level!!Population for whom poverty status is determined!!EMPLOYMENT STATUS!!Civilian labor force 16 years and over!!Unemployed!!Female", "concept": "Poverty Status in the Past 12 Months", "predicateType": "float", "group": "S1701", "limit": 0, "attributes": "S1701_C03_033EA,S1701_C03_033M,S1701_C03_033MA"}, "S2701_C02_027E": {"label": "Estimate!!Insured!!Civilian noninstitutionalized population!!LIVING ARRANGEMENTS!!In family households!!In other families", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C02_027EA,S2701_C02_027M,S2701_C02_027MA"}, "S0506_C01_074E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Agriculture, forestry, fishing and hunting, and mining", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_074EA,S0506_C01_074M,S0506_C01_074MA"}, "S1701_C03_032E": {"label": "Estimate!!Percent below poverty level!!Population for whom poverty status is determined!!EMPLOYMENT STATUS!!Civilian labor force 16 years and over!!Unemployed!!Male", "concept": "Poverty Status in the Past 12 Months", "predicateType": "float", "group": "S1701", "limit": 0, "attributes": "S1701_C03_032EA,S1701_C03_032M,S1701_C03_032MA"}, "S1502_C03_023E": {"label": "Estimate!!Male!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!65 years and over!!Education", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C03_023EA,S1502_C03_023M,S1502_C03_023MA"}, "S1701_C03_031E": {"label": "Estimate!!Percent below poverty level!!Population for whom poverty status is determined!!EMPLOYMENT STATUS!!Civilian labor force 16 years and over!!Unemployed", "concept": "Poverty Status in the Past 12 Months", "predicateType": "float", "group": "S1701", "limit": 0, "attributes": "S1701_C03_031EA,S1701_C03_031M,S1701_C03_031MA"}, "S0506_C01_075E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Construction", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_075EA,S0506_C01_075M,S0506_C01_075MA"}, "S1502_C03_024E": {"label": "Estimate!!Male!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!65 years and over!!Arts, Humanities, and Others", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C03_024EA,S1502_C03_024M,S1502_C03_024MA"}, "S2701_C02_029E": {"label": "Estimate!!Insured!!Civilian noninstitutionalized population!!LIVING ARRANGEMENTS!!In family households!!In other families!!Female reference person, no spouse present", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C02_029EA,S2701_C02_029M,S2701_C02_029MA"}, "S1701_C03_030E": {"label": "Estimate!!Percent below poverty level!!Population for whom poverty status is determined!!EMPLOYMENT STATUS!!Civilian labor force 16 years and over!!Employed!!Female", "concept": "Poverty Status in the Past 12 Months", "predicateType": "float", "group": "S1701", "limit": 0, "attributes": "S1701_C03_030EA,S1701_C03_030M,S1701_C03_030MA"}, "S0506_C01_076E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Manufacturing", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_076EA,S0506_C01_076M,S0506_C01_076MA"}, "S1502_C03_021E": {"label": "Estimate!!Male!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!65 years and over!!Science and Engineering Related Fields", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C03_021EA,S1502_C03_021M,S1502_C03_021MA"}, "S2701_C02_024E": {"label": "Estimate!!Insured!!Civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C02_024EA,S2701_C02_024M,S2701_C02_024MA"}, "S0506_C01_077E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Wholesale trade", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_077EA,S0506_C01_077M,S0506_C01_077MA"}, "S1502_C03_022E": {"label": "Estimate!!Male!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!65 years and over!!Business", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C03_022EA,S1502_C03_022M,S1502_C03_022MA"}, "S2701_C02_023E": {"label": "Estimate!!Insured!!Civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino (of any race)", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C02_023EA,S2701_C02_023M,S2701_C02_023MA"}, "S0506_C01_078E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Retail trade", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_078EA,S0506_C01_078M,S0506_C01_078MA"}, "S0506_C01_079E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Transportation and warehousing, and utilities", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_079EA,S0506_C01_079M,S0506_C01_079MA"}, "S2701_C02_026E": {"label": "Estimate!!Insured!!Civilian noninstitutionalized population!!LIVING ARRANGEMENTS!!In family households!!In married couple families", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C02_026EA,S2701_C02_026M,S2701_C02_026MA"}, "S1502_C03_020E": {"label": "Estimate!!Male!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!65 years and over!!Science and Engineering", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C03_020EA,S1502_C03_020M,S1502_C03_020MA"}, "S2701_C02_025E": {"label": "Estimate!!Insured!!Civilian noninstitutionalized population!!LIVING ARRANGEMENTS!!In family households", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C02_025EA,S2701_C02_025M,S2701_C02_025MA"}, "S1701_C03_029E": {"label": "Estimate!!Percent below poverty level!!Population for whom poverty status is determined!!EMPLOYMENT STATUS!!Civilian labor force 16 years and over!!Employed!!Male", "concept": "Poverty Status in the Past 12 Months", "predicateType": "float", "group": "S1701", "limit": 0, "attributes": "S1701_C03_029EA,S1701_C03_029M,S1701_C03_029MA"}, "S0502_C04_026E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_026EA,S0502_C04_026M,S0502_C04_026MA"}, "S2701_C02_020E": {"label": "Estimate!!Insured!!Civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!Native Hawaiian and Other Pacific Islander alone", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C02_020EA,S2701_C02_020M,S2701_C02_020MA"}, "S0503_C02_119E": {"label": "Estimate!!Foreign-born; Born in Europe!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_119EA,S0503_C02_119M,S0503_C02_119MA"}, "S2404_C04_002E": {"label": "Estimate!!Female!!Full-time, year-round civilian employed population 16 years and over!!Agriculture, forestry, fishing and hunting, and mining:", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C04_002EA,S2404_C04_002M,S2404_C04_002MA"}, "S1701_C03_028E": {"label": "Estimate!!Percent below poverty level!!Population for whom poverty status is determined!!EMPLOYMENT STATUS!!Civilian labor force 16 years and over!!Employed", "concept": "Poverty Status in the Past 12 Months", "predicateType": "float", "group": "S1701", "limit": 0, "attributes": "S1701_C03_028EA,S1701_C03_028M,S1701_C03_028MA"}, "S0502_C04_027E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_027EA,S0502_C04_027M,S0502_C04_027MA"}, "S0503_C02_118E": {"label": "Estimate!!Foreign-born; Born in Europe!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_118EA,S0503_C02_118M,S0503_C02_118MA"}, "S2404_C04_001E": {"label": "Estimate!!Female!!Full-time, year-round civilian employed population 16 years and over", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C04_001EA,S2404_C04_001M,S2404_C04_001MA"}, "S1701_C03_027E": {"label": "Estimate!!Percent below poverty level!!Population for whom poverty status is determined!!EMPLOYMENT STATUS!!Civilian labor force 16 years and over", "concept": "Poverty Status in the Past 12 Months", "predicateType": "float", "group": "S1701", "limit": 0, "attributes": "S1701_C03_027EA,S1701_C03_027M,S1701_C03_027MA"}, "S2701_C02_022E": {"label": "Estimate!!Insured!!Civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C02_022EA,S2701_C02_022M,S2701_C02_022MA"}, "S0503_C02_117E": {"label": "Estimate!!Foreign-born; Born in Europe!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_117EA,S0503_C02_117M,S0503_C02_117MA"}, "S0502_C04_028E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_028EA,S0502_C04_028M,S0502_C04_028MA"}, "S1701_C03_026E": {"label": "Estimate!!Percent below poverty level!!Population for whom poverty status is determined!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree or higher", "concept": "Poverty Status in the Past 12 Months", "predicateType": "float", "group": "S1701", "limit": 0, "attributes": "S1701_C03_026EA,S1701_C03_026M,S1701_C03_026MA"}, "S2701_C02_021E": {"label": "Estimate!!Insured!!Civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!Some other race alone", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C02_021EA,S2701_C02_021M,S2701_C02_021MA"}, "S0503_C02_116E": {"label": "Estimate!!Foreign-born; Born in Europe!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_116EA,S0503_C02_116M,S0503_C02_116MA"}, "S0502_C04_029E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_029EA,S0502_C04_029M,S0502_C04_029MA"}, "S1702_C06_032E": {"label": "Estimate!!Percent below poverty level!!Female householder, no spouse present!!Families!!NUMBER OF PEOPLE IN FAMILY!!2 people", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C06_032EA,S1702_C06_032M,S1702_C06_032MA"}, "S0503_C02_115E": {"label": "Estimate!!Foreign-born; Born in Europe!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_115EA,S0503_C02_115M,S0503_C02_115MA"}, "S1701_C03_025E": {"label": "Estimate!!Percent below poverty level!!Population for whom poverty status is determined!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college, associate's degree", "concept": "Poverty Status in the Past 12 Months", "predicateType": "float", "group": "S1701", "limit": 0, "attributes": "S1701_C03_025EA,S1701_C03_025M,S1701_C03_025MA"}, "S0503_C02_114E": {"label": "Estimate!!Foreign-born; Born in Europe!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!At or above 200 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_114EA,S0503_C02_114M,S0503_C02_114MA"}, "S0506_C01_070E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!OCCUPATION!!Service occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_070EA,S0506_C01_070M,S0506_C01_070MA"}, "S1702_C06_033E": {"label": "Estimate!!Percent below poverty level!!Female householder, no spouse present!!Families!!NUMBER OF PEOPLE IN FAMILY!!3 or 4 people", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C06_033EA,S1702_C06_033M,S1702_C06_033MA"}, "S1701_C03_024E": {"label": "Estimate!!Percent below poverty level!!Population for whom poverty status is determined!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate (includes equivalency)", "concept": "Poverty Status in the Past 12 Months", "predicateType": "float", "group": "S1701", "limit": 0, "attributes": "S1701_C03_024EA,S1701_C03_024M,S1701_C03_024MA"}, "S1702_C06_030E": {"label": "Estimate!!Percent below poverty level!!Female householder, no spouse present!!Families!!NUMBER OF OWN CHILDREN OF THE HOUSEHOLDER UNDER 18 YEARS!!3 or 4 own children of the householder", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C06_030EA,S1702_C06_030M,S1702_C06_030MA"}, "S0503_C02_113E": {"label": "Estimate!!Foreign-born; Born in Europe!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!100 to 199 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_113EA,S0503_C02_113M,S0503_C02_113MA"}, "S0506_C01_071E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!OCCUPATION!!Sales and office occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_071EA,S0506_C01_071M,S0506_C01_071MA"}, "S0802_C05_068E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!PLACE OF WORK!!Worked in state of residence!!Worked outside county of residence", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "int", "group": "S0802", "limit": 0, "attributes": "S0802_C05_068EA,S0802_C05_068M,S0802_C05_068MA"}, "S1701_C03_023E": {"label": "Estimate!!Percent below poverty level!!Population for whom poverty status is determined!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than high school graduate", "concept": "Poverty Status in the Past 12 Months", "predicateType": "float", "group": "S1701", "limit": 0, "attributes": "S1701_C03_023EA,S1701_C03_023M,S1701_C03_023MA"}, "S1702_C06_031E": {"label": "Estimate!!Percent below poverty level!!Female householder, no spouse present!!Families!!NUMBER OF OWN CHILDREN OF THE HOUSEHOLDER UNDER 18 YEARS!!5 or more own children of the householder", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C06_031EA,S1702_C06_031M,S1702_C06_031MA"}, "S0503_C02_112E": {"label": "Estimate!!Foreign-born; Born in Europe!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!Below 100 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_112EA,S0503_C02_112M,S0503_C02_112MA"}, "S0506_C01_072E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!OCCUPATION!!Natural resources, construction, and maintenance occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_072EA,S0506_C01_072M,S0506_C01_072MA"}, "S0802_C05_069E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!PLACE OF WORK!!Worked outside state of residence", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "int", "group": "S0802", "limit": 0, "attributes": "S0802_C05_069EA,S0802_C05_069M,S0802_C05_069MA"}, "S1701_C03_022E": {"label": "Estimate!!Percent below poverty level!!Population for whom poverty status is determined!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Poverty Status in the Past 12 Months", "predicateType": "float", "group": "S1701", "limit": 0, "attributes": "S1701_C03_022EA,S1701_C03_022M,S1701_C03_022MA"}, "S0505_C06_099E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings!!Mean earnings (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C06_099EA,S0505_C06_099M,S0505_C06_099MA"}, "S0503_C02_111E": {"label": "Estimate!!Foreign-born; Born in Europe!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C02_111EA,S0503_C02_111M,S0503_C02_111MA"}, "S1702_C06_036E": {"label": "Estimate!!Percent below poverty level!!Female householder, no spouse present!!Families!!NUMBER OF WORKERS IN FAMILY!!No workers", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C06_036EA,S1702_C06_036M,S1702_C06_036MA"}, "S0802_C05_066E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!PLACE OF WORK!!Worked in state of residence", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C05_066EA,S0802_C05_066M,S0802_C05_066MA"}, "S2404_C04_009E": {"label": "Estimate!!Female!!Full-time, year-round civilian employed population 16 years and over!!Transportation and warehousing, and utilities:", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C04_009EA,S2404_C04_009M,S2404_C04_009MA"}, "S0503_C02_110E": {"label": "Estimate!!Foreign-born; Born in Europe!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!Average number of workers per household", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_110EA,S0503_C02_110M,S0503_C02_110MA"}, "S0802_C05_067E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!PLACE OF WORK!!Worked in state of residence!!Worked in county of residence", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C05_067EA,S0802_C05_067M,S0802_C05_067MA"}, "S1702_C06_037E": {"label": "Estimate!!Percent below poverty level!!Female householder, no spouse present!!Families!!NUMBER OF WORKERS IN FAMILY!!1 worker", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C06_037EA,S1702_C06_037M,S1702_C06_037MA"}, "S0802_C05_064E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!CLASS OF WORKER!!Self-employed workers in own not incorporated business", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C05_064EA,S0802_C05_064M,S0802_C05_064MA"}, "S0505_C06_097E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C06_097EA,S0505_C06_097M,S0505_C06_097MA"}, "S2404_C04_008E": {"label": "Estimate!!Female!!Full-time, year-round civilian employed population 16 years and over!!Retail trade", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C04_008EA,S2404_C04_008M,S2404_C04_008MA"}, "S0502_C04_020E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Foreign-born population!!SEX AND AGE!!75 to 84 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_020EA,S0502_C04_020M,S0502_C04_020MA"}, "S1702_C06_034E": {"label": "Estimate!!Percent below poverty level!!Female householder, no spouse present!!Families!!NUMBER OF PEOPLE IN FAMILY!!5 or 6 people", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C06_034EA,S1702_C06_034M,S1702_C06_034MA"}, "S0505_C06_098E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_098EA,S0505_C06_098M,S0505_C06_098MA"}, "S2404_C04_007E": {"label": "Estimate!!Female!!Full-time, year-round civilian employed population 16 years and over!!Wholesale trade", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C04_007EA,S2404_C04_007M,S2404_C04_007MA"}, "S0502_C04_021E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Foreign-born population!!SEX AND AGE!!85 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_021EA,S0502_C04_021M,S0502_C04_021MA"}, "S1702_C06_035E": {"label": "Estimate!!Percent below poverty level!!Female householder, no spouse present!!Families!!NUMBER OF PEOPLE IN FAMILY!!7 or more people", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C06_035EA,S1702_C06_035M,S1702_C06_035MA"}, "S0802_C05_065E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!CLASS OF WORKER!!Unpaid family workers", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C05_065EA,S0802_C05_065M,S0802_C05_065MA"}, "S0802_C05_062E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!CLASS OF WORKER!!Private wage and salary workers", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C05_062EA,S0802_C05_062M,S0802_C05_062MA"}, "S2404_C04_006E": {"label": "Estimate!!Female!!Full-time, year-round civilian employed population 16 years and over!!Manufacturing", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C04_006EA,S2404_C04_006M,S2404_C04_006MA"}, "S0502PR_C02_144E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Renter-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_144EA,S0502PR_C02_144M,S0502PR_C02_144MA"}, "S0501_C01_038E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C01_038EA,S0501_C01_038M,S0501_C01_038MA"}, "S0701_C04_030E": {"label": "Estimate!!Moved; from different state!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C04_030EA,S0701_C04_030M,S0701_C04_030MA"}, "S0502_C04_022E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Foreign-born population!!SEX AND AGE!!Median age (years)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_022EA,S0502_C04_022M,S0502_C04_022MA"}, "S0102PR_C02_092E": {"label": "Estimate!!60 years and over!!Occupied housing units!!HOUSING TENURE!!Renter-occupied housing units", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_092EA,S0102PR_C02_092M,S0102PR_C02_092MA"}, "S2404_C04_005E": {"label": "Estimate!!Female!!Full-time, year-round civilian employed population 16 years and over!!Construction", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C04_005EA,S2404_C04_005M,S2404_C04_005MA"}, "S0802_C05_063E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!CLASS OF WORKER!!Government workers", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C05_063EA,S0802_C05_063M,S0802_C05_063MA"}, "S2401_C03_030E": {"label": "Estimate!!Percent Male!!Civilian employed population 16 years and over!!Natural resources, construction, and maintenance occupations:!!Farming, fishing, and forestry occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2401", "limit": 0, "attributes": "S2401_C03_030EA,S2401_C03_030M,S2401_C03_030MA"}, "S0502PR_C02_143E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_143EA,S0502PR_C02_143M,S0502PR_C02_143MA"}, "S0501_C01_039E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than high school graduate", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_039EA,S0501_C01_039M,S0501_C01_039MA"}, "S0502_C04_023E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_023EA,S0502_C04_023M,S0502_C04_023MA"}, "S0102PR_C02_093E": {"label": "Estimate!!60 years and over!!Occupied housing units!!HOUSING TENURE!!Average household size of owner-occupied unit", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_093EA,S0102PR_C02_093M,S0102PR_C02_093MA"}, "S2404_C04_004E": {"label": "Estimate!!Female!!Full-time, year-round civilian employed population 16 years and over!!Agriculture, forestry, fishing and hunting, and mining:!!Mining, quarrying, and oil and gas extraction", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C04_004EA,S2404_C04_004M,S2404_C04_004MA"}, "S0802_C05_060E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!INDUSTRY!!Public administration", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C05_060EA,S0802_C05_060M,S0802_C05_060MA"}, "S0502PR_C02_146E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_146EA,S0502PR_C02_146M,S0502PR_C02_146MA"}, "S0701_C04_032E": {"label": "Estimate!!Moved; from different state!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C04_032EA,S0701_C04_032M,S0701_C04_032MA"}, "S0502_C04_024E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_024EA,S0502_C04_024M,S0502_C04_024MA"}, "S0102PR_C02_090E": {"label": "Estimate!!60 years and over!!Occupied housing units", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_090EA,S0102PR_C02_090M,S0102PR_C02_090MA"}, "S1702_C06_038E": {"label": "Estimate!!Percent below poverty level!!Female householder, no spouse present!!Families!!NUMBER OF WORKERS IN FAMILY!!2 workers", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C06_038EA,S1702_C06_038M,S1702_C06_038MA"}, "S0802_C05_061E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!INDUSTRY!!Armed forces", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C05_061EA,S0802_C05_061M,S0802_C05_061MA"}, "S0502_C04_025E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_025EA,S0502_C04_025M,S0502_C04_025MA"}, "S0502PR_C02_145E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_145EA,S0502PR_C02_145M,S0502PR_C02_145MA"}, "S0701_C04_031E": {"label": "Estimate!!Moved; from different state!!MARITAL STATUS!!Population 15 years and over!!Divorced or separated", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C04_031EA,S0701_C04_031M,S0701_C04_031MA"}, "S0102PR_C02_091E": {"label": "Estimate!!60 years and over!!Occupied housing units!!HOUSING TENURE!!Owner-occupied housing units", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_091EA,S0102PR_C02_091M,S0102PR_C02_091MA"}, "S2404_C04_003E": {"label": "Estimate!!Female!!Full-time, year-round civilian employed population 16 years and over!!Agriculture, forestry, fishing and hunting, and mining:!!Agriculture, forestry, fishing and hunting", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C04_003EA,S2404_C04_003M,S2404_C04_003MA"}, "S1702_C06_039E": {"label": "Estimate!!Percent below poverty level!!Female householder, no spouse present!!Families!!NUMBER OF WORKERS IN FAMILY!!3 or more workers", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C06_039EA,S1702_C06_039M,S1702_C06_039MA"}, "S0506_C01_069E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!OCCUPATION!!Management, business, science, and arts occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_069EA,S0506_C01_069M,S0506_C01_069MA"}, "S0802_C05_082E": {"label": "Estimate!!Worked from home!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!10 to 14 minutes", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "int", "group": "S0802", "limit": 0, "attributes": "S0802_C05_082EA,S0802_C05_082M,S0802_C05_082MA"}, "S0501_C01_046E": {"label": "Estimate!!Total!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_046EA,S0501_C01_046M,S0501_C01_046MA"}, "S0701_C04_022E": {"label": "Estimate!!Moved; from different state!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C04_022EA,S0701_C04_022M,S0701_C04_022MA"}, "S0802_C05_083E": {"label": "Estimate!!Worked from home!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!15 to 19 minutes", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "int", "group": "S0802", "limit": 0, "attributes": "S0802_C05_083EA,S0802_C05_083M,S0802_C05_083MA"}, "S0501_C01_047E": {"label": "Estimate!!Total!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English!!Speak English less than \"very well\"", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_047EA,S0501_C01_047M,S0501_C01_047MA"}, "S0701_C04_021E": {"label": "Estimate!!Moved; from different state!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C04_021EA,S0701_C04_021M,S0701_C04_021MA"}, "S0802_C05_080E": {"label": "Estimate!!Worked from home!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!9:00 a.m. to 11:59 p.m.", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "int", "group": "S0802", "limit": 0, "attributes": "S0802_C05_080EA,S0802_C05_080M,S0802_C05_080MA"}, "S0501_C01_048E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Population 16 years and over", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C01_048EA,S0501_C01_048M,S0501_C01_048MA"}, "S0701_C04_024E": {"label": "Estimate!!Moved; from different state!!Population 1 year and over!!NATIVITY AND CITIZENSHIP STATUS!!Native", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C04_024EA,S0701_C04_024M,S0701_C04_024MA"}, "S1502_C03_019E": {"label": "Estimate!!Male!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!65 years and over", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C03_019EA,S1502_C03_019M,S1502_C03_019MA"}, "S1702_C06_018E": {"label": "Estimate!!Percent below poverty level!!Female householder, no spouse present!!Families!!Family received --!!Supplemental Security Income (SSI) and/or cash public assistance income in the past 12 months", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C06_018EA,S1702_C06_018M,S1702_C06_018MA"}, "S0802_C05_081E": {"label": "Estimate!!Worked from home!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!Less than 10 minutes", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "int", "group": "S0802", "limit": 0, "attributes": "S0802_C05_081EA,S0802_C05_081M,S0802_C05_081MA"}, "S0501_C01_049E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_049EA,S0501_C01_049M,S0501_C01_049MA"}, "S0701_C04_023E": {"label": "Estimate!!Moved; from different state!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C04_023EA,S0701_C04_023M,S0701_C04_023MA"}, "S1702_C06_019E": {"label": "Estimate!!Percent below poverty level!!Female householder, no spouse present!!Families!!Family received --!!Social security income in the past 12 months", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C06_019EA,S1702_C06_019M,S1702_C06_019MA"}, "S0501_C01_042E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_042EA,S0501_C01_042M,S0501_C01_042MA"}, "S0701_C04_026E": {"label": "Estimate!!Moved; from different state!!Population 1 year and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born!!Naturalized U.S. citizen", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C04_026EA,S0701_C04_026M,S0701_C04_026MA"}, "S1502_C03_017E": {"label": "Estimate!!Male!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!40 to 64 years!!Education", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C03_017EA,S1502_C03_017M,S1502_C03_017MA"}, "S0501_C01_043E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Graduate or professional degree", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_043EA,S0501_C01_043M,S0501_C01_043MA"}, "S0701_C04_025E": {"label": "Estimate!!Moved; from different state!!Population 1 year and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C04_025EA,S0701_C04_025M,S0701_C04_025MA"}, "S2701_C02_019E": {"label": "Estimate!!Insured!!Civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!Asian alone", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C02_019EA,S2701_C02_019M,S2701_C02_019MA"}, "S1502_C03_018E": {"label": "Estimate!!Male!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!40 to 64 years!!Arts, Humanities, and Others", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C03_018EA,S1502_C03_018M,S1502_C03_018MA"}, "S1502_C03_015E": {"label": "Estimate!!Male!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!40 to 64 years!!Science and Engineering Related Fields", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C03_015EA,S1502_C03_015M,S1502_C03_015MA"}, "S0501_C01_044E": {"label": "Estimate!!Total!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C01_044EA,S0501_C01_044M,S0501_C01_044MA"}, "S0701_C04_028E": {"label": "Estimate!!Moved; from different state!!MARITAL STATUS!!Population 15 years and over", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C04_028EA,S0701_C04_028M,S0701_C04_028MA"}, "S0502_C04_040E": {"label": "Estimate!!Foreign-born; Entered before 2000!!MARITAL STATUS!!Population 15 years and over!!Divorced or separated", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_040EA,S0502_C04_040M,S0502_C04_040MA"}, "S0501_C01_045E": {"label": "Estimate!!Total!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!English only", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_045EA,S0501_C01_045M,S0501_C01_045MA"}, "S0701_C04_027E": {"label": "Estimate!!Moved; from different state!!Population 1 year and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born!!Not a U.S. citizen", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C04_027EA,S0701_C04_027M,S0701_C04_027MA"}, "S0502_C04_041E": {"label": "Estimate!!Foreign-born; Entered before 2000!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_041EA,S0502_C04_041M,S0502_C04_041MA"}, "S1502_C03_016E": {"label": "Estimate!!Male!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!40 to 64 years!!Business", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C03_016EA,S1502_C03_016M,S1502_C03_016MA"}, "S1502_C03_013E": {"label": "Estimate!!Male!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!40 to 64 years", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C03_013EA,S1502_C03_013M,S1502_C03_013MA"}, "S2701_C02_016E": {"label": "Estimate!!Insured!!Civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C02_016EA,S2701_C02_016M,S2701_C02_016MA"}, "S0506_C01_061E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed!!Percent of civilian labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_061EA,S0506_C01_061M,S0506_C01_061MA"}, "S1701_C03_045E": {"label": "Estimate!!Percent below poverty level!!Population for whom poverty status is determined!!ALL INDIVIDUALS WITH INCOME BELOW THE FOLLOWING POVERTY RATIOS!!500 percent of poverty level", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C03_045EA,S1701_C03_045M,S1701_C03_045MA"}, "S1502_C03_014E": {"label": "Estimate!!Male!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!40 to 64 years!!Science and Engineering", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C03_014EA,S1502_C03_014M,S1502_C03_014MA"}, "S0701_C04_029E": {"label": "Estimate!!Moved; from different state!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C04_029EA,S0701_C04_029M,S0701_C04_029MA"}, "S2701_C02_015E": {"label": "Estimate!!Insured!!Civilian noninstitutionalized population!!SEX!!Female", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C02_015EA,S2701_C02_015M,S2701_C02_015MA"}, "S0506_C01_062E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Armed Forces", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_062EA,S0506_C01_062M,S0506_C01_062MA"}, "S1701_C03_044E": {"label": "Estimate!!Percent below poverty level!!Population for whom poverty status is determined!!ALL INDIVIDUALS WITH INCOME BELOW THE FOLLOWING POVERTY RATIOS!!400 percent of poverty level", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C03_044EA,S1701_C03_044M,S1701_C03_044MA"}, "S1502_C03_011E": {"label": "Estimate!!Male!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!25 to 39 years!!Education", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C03_011EA,S1502_C03_011M,S1502_C03_011MA"}, "S0501_C01_040E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate (includes equivalency)", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_040EA,S0501_C01_040M,S0501_C01_040MA"}, "S2701_C02_018E": {"label": "Estimate!!Insured!!Civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!American Indian and Alaska Native alone", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C02_018EA,S2701_C02_018M,S2701_C02_018MA"}, "S0506_C01_063E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Population 16 years and over!!Not in labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_063EA,S0506_C01_063M,S0506_C01_063MA"}, "S1701_C03_043E": {"label": "Estimate!!Percent below poverty level!!Population for whom poverty status is determined!!ALL INDIVIDUALS WITH INCOME BELOW THE FOLLOWING POVERTY RATIOS!!300 percent of poverty level", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C03_043EA,S1701_C03_043M,S1701_C03_043MA"}, "S1502_C03_012E": {"label": "Estimate!!Male!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!25 to 39 years!!Arts, Humanities, and Others", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C03_012EA,S1502_C03_012M,S1502_C03_012MA"}, "S0501_C01_041E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college or associate's degree", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_041EA,S0501_C01_041M,S0501_C01_041MA"}, "S2701_C02_017E": {"label": "Estimate!!Insured!!Civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!Black or African American alone", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C02_017EA,S2701_C02_017M,S2701_C02_017MA"}, "S1701_C03_042E": {"label": "Estimate!!Percent below poverty level!!Population for whom poverty status is determined!!ALL INDIVIDUALS WITH INCOME BELOW THE FOLLOWING POVERTY RATIOS!!200 percent of poverty level", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C03_042EA,S1701_C03_042M,S1701_C03_042MA"}, "S0506_C01_064E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C01_064EA,S0506_C01_064M,S0506_C01_064MA"}, "S2701_C02_012E": {"label": "Estimate!!Insured!!Civilian noninstitutionalized population!!AGE!!19 to 64 years", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C02_012EA,S2701_C02_012M,S2701_C02_012MA"}, "S1401_C02_001E": {"label": "Estimate!!Percent!!Population 3 years and over enrolled in school", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C02_001EA,S1401_C02_001M,S1401_C02_001MA"}, "S1701_C03_041E": {"label": "Estimate!!Percent below poverty level!!Population for whom poverty status is determined!!ALL INDIVIDUALS WITH INCOME BELOW THE FOLLOWING POVERTY RATIOS!!185 percent of poverty level", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C03_041EA,S1701_C03_041M,S1701_C03_041MA"}, "S0506_C01_065E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Private wage and salary workers", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_065EA,S0506_C01_065M,S0506_C01_065MA"}, "S1502_C03_010E": {"label": "Estimate!!Male!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!25 to 39 years!!Business", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C03_010EA,S1502_C03_010M,S1502_C03_010MA"}, "S2701_C02_011E": {"label": "Estimate!!Insured!!Civilian noninstitutionalized population!!AGE!!Under 19 years", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C02_011EA,S2701_C02_011M,S2701_C02_011MA"}, "S1701_C03_040E": {"label": "Estimate!!Percent below poverty level!!Population for whom poverty status is determined!!ALL INDIVIDUALS WITH INCOME BELOW THE FOLLOWING POVERTY RATIOS!!150 percent of poverty level", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C03_040EA,S1701_C03_040M,S1701_C03_040MA"}, "S0506_C01_066E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Government workers", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_066EA,S0506_C01_066M,S0506_C01_066MA"}, "S2701_C02_014E": {"label": "Estimate!!Insured!!Civilian noninstitutionalized population!!SEX!!Male", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C02_014EA,S2701_C02_014M,S2701_C02_014MA"}, "S1401_C02_003E": {"label": "Estimate!!Percent!!Population 3 years and over enrolled in school!!Kindergarten to 12th grade", "concept": "School Enrollment", "predicateType": "float", "group": "S1401", "limit": 0, "attributes": "S1401_C02_003EA,S1401_C02_003M,S1401_C02_003MA"}, "S0506_C01_067E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Self-employed workers in own not incorporated business", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_067EA,S0506_C01_067M,S0506_C01_067MA"}, "S0506_C01_068E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Unpaid family workers", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_068EA,S0506_C01_068M,S0506_C01_068MA"}, "S2701_C02_013E": {"label": "Estimate!!Insured!!Civilian noninstitutionalized population!!AGE!!65 years and older", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C02_013EA,S2701_C02_013M,S2701_C02_013MA"}, "S1401_C02_002E": {"label": "Estimate!!Percent!!Population 3 years and over enrolled in school!!Nursery school, preschool", "concept": "School Enrollment", "predicateType": "float", "group": "S1401", "limit": 0, "attributes": "S1401_C02_002EA,S1401_C02_002M,S1401_C02_002MA"}, "S0102_C02_103E": {"label": "Estimate!!60 years and over!!Renter-occupied housing units", "concept": "Population 60 Years and Over in the United States", "predicateType": "int", "group": "S0102", "limit": 0, "attributes": "S0102_C02_103EA,S0102_C02_103M,S0102_C02_103MA"}, "S0502_C04_038E": {"label": "Estimate!!Foreign-born; Entered before 2000!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_038EA,S0502_C04_038M,S0502_C04_038MA"}, "S2404_C04_014E": {"label": "Estimate!!Female!!Full-time, year-round civilian employed population 16 years and over!!Finance and insurance, and real estate and rental and leasing:!!Finance and insurance", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C04_014EA,S2404_C04_014M,S2404_C04_014MA"}, "S0102_C02_104E": {"label": "Estimate!!60 years and over!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_104EA,S0102_C02_104M,S0102_C02_104MA"}, "S0502_C04_039E": {"label": "Estimate!!Foreign-born; Entered before 2000!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_039EA,S0502_C04_039M,S0502_C04_039MA"}, "S2504_C02_038E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!HOUSE HEATING FUEL!!No fuel used", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C02_038EA,S2504_C02_038M,S2504_C02_038MA"}, "S2404_C04_013E": {"label": "Estimate!!Female!!Full-time, year-round civilian employed population 16 years and over!!Finance and insurance, and real estate and rental and leasing:", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C04_013EA,S2404_C04_013M,S2404_C04_013MA"}, "S0102_C02_101E": {"label": "Estimate!!60 years and over!!Owner-occupied housing units!!OWNER CHARACTERISTICS!!Median selected monthly owner costs with a mortgage (dollars)", "concept": "Population 60 Years and Over in the United States", "predicateType": "int", "group": "S0102", "limit": 0, "attributes": "S0102_C02_101EA,S0102_C02_101M,S0102_C02_101MA"}, "S1701_C03_039E": {"label": "Estimate!!Percent below poverty level!!Population for whom poverty status is determined!!ALL INDIVIDUALS WITH INCOME BELOW THE FOLLOWING POVERTY RATIOS!!125 percent of poverty level", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C03_039EA,S1701_C03_039M,S1701_C03_039MA"}, "S2701_C02_010E": {"label": "Estimate!!Insured!!Civilian noninstitutionalized population!!AGE!!75 years and older", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C02_010EA,S2701_C02_010M,S2701_C02_010MA"}, "S0503_C02_129E": {"label": "Estimate!!Foreign-born; Born in Europe!!Occupied housing units!!ROOMS!!1 room", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_129EA,S0503_C02_129M,S0503_C02_129MA"}, "S2404_C04_012E": {"label": "Estimate!!Female!!Full-time, year-round civilian employed population 16 years and over!!Information", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C04_012EA,S2404_C04_012M,S2404_C04_012MA"}, "S1701_C03_038E": {"label": "Estimate!!Percent below poverty level!!Population for whom poverty status is determined!!ALL INDIVIDUALS WITH INCOME BELOW THE FOLLOWING POVERTY RATIOS!!50 percent of poverty level", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C03_038EA,S1701_C03_038M,S1701_C03_038MA"}, "S0102_C02_102E": {"label": "Estimate!!60 years and over!!Owner-occupied housing units!!OWNER CHARACTERISTICS!!Median selected monthly owner costs without a mortgage (dollars)", "concept": "Population 60 Years and Over in the United States", "predicateType": "int", "group": "S0102", "limit": 0, "attributes": "S0102_C02_102EA,S0102_C02_102M,S0102_C02_102MA"}, "S0503_C02_128E": {"label": "Estimate!!Foreign-born; Born in Europe!!Occupied housing units!!HOUSING TENURE!!Average household size of renter-occupied unit", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_128EA,S0503_C02_128M,S0503_C02_128MA"}, "S2404_C04_011E": {"label": "Estimate!!Female!!Full-time, year-round civilian employed population 16 years and over!!Transportation and warehousing, and utilities:!!Utilities", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C04_011EA,S2404_C04_011M,S2404_C04_011MA"}, "S1701_C03_037E": {"label": "Estimate!!Percent below poverty level!!Population for whom poverty status is determined!!WORK EXPERIENCE!!Population 16 years and over!!Did not work", "concept": "Poverty Status in the Past 12 Months", "predicateType": "float", "group": "S1701", "limit": 0, "attributes": "S1701_C03_037EA,S1701_C03_037M,S1701_C03_037MA"}, "S1702_C06_020E": {"label": "Estimate!!Percent below poverty level!!Female householder, no spouse present!!Families!!EDUCATIONAL ATTAINMENT OF HOUSEHOLDER!!Less than high school graduate", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C06_020EA,S1702_C06_020M,S1702_C06_020MA"}, "S0503_C02_127E": {"label": "Estimate!!Foreign-born; Born in Europe!!Occupied housing units!!HOUSING TENURE!!Average household size of owner-occupied unit", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_127EA,S0503_C02_127M,S0503_C02_127MA"}, "S2404_C04_010E": {"label": "Estimate!!Female!!Full-time, year-round civilian employed population 16 years and over!!Transportation and warehousing, and utilities:!!Transportation and warehousing", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C04_010EA,S2404_C04_010M,S2404_C04_010MA"}, "S0102_C02_100E": {"label": "Estimate!!60 years and over!!Owner-occupied housing units!!OWNER CHARACTERISTICS!!Median value (dollars)", "concept": "Population 60 Years and Over in the United States", "predicateType": "int", "group": "S0102", "limit": 0, "attributes": "S0102_C02_100EA,S0102_C02_100M,S0102_C02_100MA"}, "S1702_C06_021E": {"label": "Estimate!!Percent below poverty level!!Female householder, no spouse present!!Families!!EDUCATIONAL ATTAINMENT OF HOUSEHOLDER!!High school graduate (includes equivalency)", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C06_021EA,S1702_C06_021M,S1702_C06_021MA"}, "S0503_C02_126E": {"label": "Estimate!!Foreign-born; Born in Europe!!Occupied housing units!!HOUSING TENURE!!Renter-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_126EA,S0503_C02_126M,S0503_C02_126MA"}, "S1701_C03_036E": {"label": "Estimate!!Percent below poverty level!!Population for whom poverty status is determined!!WORK EXPERIENCE!!Population 16 years and over!!Worked part-time or part-year in the past 12 months", "concept": "Poverty Status in the Past 12 Months", "predicateType": "float", "group": "S1701", "limit": 0, "attributes": "S1701_C03_036EA,S1701_C03_036M,S1701_C03_036MA"}, "S0503_C02_125E": {"label": "Estimate!!Foreign-born; Born in Europe!!Occupied housing units!!HOUSING TENURE!!Owner-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_125EA,S0503_C02_125M,S0503_C02_125MA"}, "S1701_C03_035E": {"label": "Estimate!!Percent below poverty level!!Population for whom poverty status is determined!!WORK EXPERIENCE!!Population 16 years and over!!Worked full-time, year-round in the past 12 months", "concept": "Poverty Status in the Past 12 Months", "predicateType": "float", "group": "S1701", "limit": 0, "attributes": "S1701_C03_035EA,S1701_C03_035M,S1701_C03_035MA"}, "S0503_C02_124E": {"label": "Estimate!!Foreign-born; Born in Europe!!Occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C02_124EA,S0503_C02_124M,S0503_C02_124MA"}, "S0506_C01_060E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_060EA,S0506_C01_060M,S0506_C01_060MA"}, "S1701_C03_034E": {"label": "Estimate!!Percent below poverty level!!Population for whom poverty status is determined!!WORK EXPERIENCE!!Population 16 years and over", "concept": "Poverty Status in the Past 12 Months", "predicateType": "float", "group": "S1701", "limit": 0, "attributes": "S1701_C03_034EA,S1701_C03_034M,S1701_C03_034MA"}, "S2504_C02_031E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!TELEPHONE SERVICE AVAILABLE!!With telephone service", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C02_031EA,S2504_C02_031M,S2504_C02_031MA"}, "S0502_C04_030E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_030EA,S0502_C04_030M,S0502_C04_030MA"}, "S0503_C02_123E": {"label": "Estimate!!Foreign-born; Born in Europe!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_123EA,S0503_C02_123M,S0503_C02_123MA"}, "S1702_C06_024E": {"label": "Estimate!!Percent below poverty level!!Female householder, no spouse present!!Families!!NUMBER OF RELATED CHILDREN OF THE HOUSEHOLDER UNDER 18 YEARS!!No child", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C06_024EA,S1702_C06_024M,S1702_C06_024MA"}, "S0802_C05_078E": {"label": "Estimate!!Worked from home!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!8:00 a.m. to 8:29 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "int", "group": "S0802", "limit": 0, "attributes": "S0802_C05_078EA,S0802_C05_078M,S0802_C05_078MA"}, "S2504_C02_030E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!VEHICLES AVAILABLE!!3 or more vehicles available", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C02_030EA,S2504_C02_030M,S2504_C02_030MA"}, "S0502_C04_031E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_031EA,S0502_C04_031M,S0502_C04_031MA"}, "S0503_C02_122E": {"label": "Estimate!!Foreign-born; Born in Europe!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_122EA,S0503_C02_122M,S0503_C02_122MA"}, "S1702_C06_025E": {"label": "Estimate!!Percent below poverty level!!Female householder, no spouse present!!Families!!NUMBER OF RELATED CHILDREN OF THE HOUSEHOLDER UNDER 18 YEARS!!1 or 2 children", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C06_025EA,S1702_C06_025M,S1702_C06_025MA"}, "S0802_C05_079E": {"label": "Estimate!!Worked from home!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!8:30 a.m. to 8:59 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "int", "group": "S0802", "limit": 0, "attributes": "S0802_C05_079EA,S0802_C05_079M,S0802_C05_079MA"}, "S2504_C02_033E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!HOUSE HEATING FUEL!!Bottled or tank gas (propane, butane, etc.)", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C02_033EA,S2504_C02_033M,S2504_C02_033MA"}, "S0503_C02_121E": {"label": "Estimate!!Foreign-born; Born in Europe!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_121EA,S0503_C02_121M,S0503_C02_121MA"}, "S0502_C04_032E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_032EA,S0502_C04_032M,S0502_C04_032MA"}, "S1702_C06_022E": {"label": "Estimate!!Percent below poverty level!!Female householder, no spouse present!!Families!!EDUCATIONAL ATTAINMENT OF HOUSEHOLDER!!Some college, associate's degree", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C06_022EA,S1702_C06_022M,S1702_C06_022MA"}, "S0802_C05_076E": {"label": "Estimate!!Worked from home!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!7:00 a.m. to 7:29 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "int", "group": "S0802", "limit": 0, "attributes": "S0802_C05_076EA,S0802_C05_076M,S0802_C05_076MA"}, "S2504_C02_032E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!HOUSE HEATING FUEL!!Utility gas", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C02_032EA,S2504_C02_032M,S2504_C02_032MA"}, "S2404_C04_019E": {"label": "Estimate!!Female!!Full-time, year-round civilian employed population 16 years and over!!Professional, scientific, and management, and administrative and waste management services:!!Administrative and support and waste management services", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C04_019EA,S2404_C04_019M,S2404_C04_019MA"}, "S0503_C02_120E": {"label": "Estimate!!Foreign-born; Born in Europe!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_120EA,S0503_C02_120M,S0503_C02_120MA"}, "S0502_C04_033E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Foreign-born population!!HOUSEHOLD TYPE!!In married-couple family", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_033EA,S0502_C04_033M,S0502_C04_033MA"}, "S1702_C06_023E": {"label": "Estimate!!Percent below poverty level!!Female householder, no spouse present!!Families!!EDUCATIONAL ATTAINMENT OF HOUSEHOLDER!!Bachelor's degree or higher", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C06_023EA,S1702_C06_023M,S1702_C06_023MA"}, "S0802_C05_077E": {"label": "Estimate!!Worked from home!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!7:30 a.m. to 7:59 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "int", "group": "S0802", "limit": 0, "attributes": "S0802_C05_077EA,S0802_C05_077M,S0802_C05_077MA"}, "S0802_C05_074E": {"label": "Estimate!!Worked from home!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!6:00 a.m. to 6:29 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "int", "group": "S0802", "limit": 0, "attributes": "S0802_C05_074EA,S0802_C05_074M,S0802_C05_074MA"}, "S2404_C04_018E": {"label": "Estimate!!Female!!Full-time, year-round civilian employed population 16 years and over!!Professional, scientific, and management, and administrative and waste management services:!!Management of companies and enterprises", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C04_018EA,S2404_C04_018M,S2404_C04_018MA"}, "S2504_C02_035E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!HOUSE HEATING FUEL!!Fuel oil, kerosene, etc.", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C02_035EA,S2504_C02_035M,S2504_C02_035MA"}, "S0502_C04_034E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Foreign-born population!!HOUSEHOLD TYPE!!In other households", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_034EA,S0502_C04_034M,S0502_C04_034MA"}, "S1702_C06_028E": {"label": "Estimate!!Percent below poverty level!!Female householder, no spouse present!!Families!!NUMBER OF OWN CHILDREN OF THE HOUSEHOLDER UNDER 18 YEARS!!No own child of the householder", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C06_028EA,S1702_C06_028M,S1702_C06_028MA"}, "S0802_C05_075E": {"label": "Estimate!!Worked from home!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!6:30 a.m. to 6:59 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "int", "group": "S0802", "limit": 0, "attributes": "S0802_C05_075EA,S0802_C05_075M,S0802_C05_075MA"}, "S2404_C04_017E": {"label": "Estimate!!Female!!Full-time, year-round civilian employed population 16 years and over!!Professional, scientific, and management, and administrative and waste management services:!!Professional, scientific, and technical services", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C04_017EA,S2404_C04_017M,S2404_C04_017MA"}, "S2504_C02_034E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!HOUSE HEATING FUEL!!Electricity", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C02_034EA,S2504_C02_034M,S2504_C02_034MA"}, "S0502_C04_035E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Foreign-born population!!Average household size", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_035EA,S0502_C04_035M,S0502_C04_035MA"}, "S1702_C06_029E": {"label": "Estimate!!Percent below poverty level!!Female householder, no spouse present!!Families!!NUMBER OF OWN CHILDREN OF THE HOUSEHOLDER UNDER 18 YEARS!!1 or 2 own children of the householder", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C06_029EA,S1702_C06_029M,S1702_C06_029MA"}, "S2404_C04_016E": {"label": "Estimate!!Female!!Full-time, year-round civilian employed population 16 years and over!!Professional, scientific, and management, and administrative and waste management services:", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C04_016EA,S2404_C04_016M,S2404_C04_016MA"}, "S0802_C05_072E": {"label": "Estimate!!Worked from home!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!5:00 a.m. to 5:29 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "int", "group": "S0802", "limit": 0, "attributes": "S0802_C05_072EA,S0802_C05_072M,S0802_C05_072MA"}, "S0102_C02_105E": {"label": "Estimate!!60 years and over!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_105EA,S0102_C02_105M,S0102_C02_105MA"}, "S2504_C02_037E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!HOUSE HEATING FUEL!!All other fuels", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C02_037EA,S2504_C02_037M,S2504_C02_037MA"}, "S0502_C04_036E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Foreign-born population!!Average family size", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_036EA,S0502_C04_036M,S0502_C04_036MA"}, "S0701_C04_020E": {"label": "Estimate!!Moved; from different state!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C04_020EA,S0701_C04_020M,S0701_C04_020MA"}, "S1702_C06_026E": {"label": "Estimate!!Percent below poverty level!!Female householder, no spouse present!!Families!!NUMBER OF RELATED CHILDREN OF THE HOUSEHOLDER UNDER 18 YEARS!!3 or 4 children", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C06_026EA,S1702_C06_026M,S1702_C06_026MA"}, "S2404_C04_015E": {"label": "Estimate!!Female!!Full-time, year-round civilian employed population 16 years and over!!Finance and insurance, and real estate and rental and leasing:!!Real estate and rental and leasing", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C04_015EA,S2404_C04_015M,S2404_C04_015MA"}, "S0802_C05_073E": {"label": "Estimate!!Worked from home!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!5:30 a.m. to 5:59 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "int", "group": "S0802", "limit": 0, "attributes": "S0802_C05_073EA,S0802_C05_073M,S0802_C05_073MA"}, "S2504_C02_036E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!HOUSE HEATING FUEL!!Coal or coke", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C02_036EA,S2504_C02_036M,S2504_C02_036MA"}, "S0102_C02_106E": {"label": "Estimate!!60 years and over!!Renter-occupied housing units!!GROSS RENT!!Median gross rent (dollars)", "concept": "Population 60 Years and Over in the United States", "predicateType": "int", "group": "S0102", "limit": 0, "attributes": "S0102_C02_106EA,S0102_C02_106M,S0102_C02_106MA"}, "S0502_C04_037E": {"label": "Estimate!!Foreign-born; Entered before 2000!!MARITAL STATUS!!Population 15 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C04_037EA,S0502_C04_037M,S0502_C04_037MA"}, "S1702_C06_027E": {"label": "Estimate!!Percent below poverty level!!Female householder, no spouse present!!Families!!NUMBER OF RELATED CHILDREN OF THE HOUSEHOLDER UNDER 18 YEARS!!5 or more children", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C06_027EA,S1702_C06_027M,S1702_C06_027MA"}, "S0802_C05_094E": {"label": "Estimate!!Worked from home!!Workers 16 years and over in households!!VEHICLES AVAILABLE!!No vehicle available", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C05_094EA,S0802_C05_094M,S0802_C05_094MA"}, "S2602_C02_095E": {"label": "Estimate!!Total group quarters population!!EARNINGS AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Median earnings (dollars):!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C02_095EA,S2602_C02_095M,S2602_C02_095MA"}, "S0501_C01_058E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Government workers", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_058EA,S0501_C01_058M,S0501_C01_058MA"}, "S1702_C06_008E": {"label": "Estimate!!Percent below poverty level!!Female householder, no spouse present!!Families!!RACE AND HISPANIC OR LATINO ORIGIN!!Families with a householder who is--!!American Indian and Alaska Native alone", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C06_008EA,S1702_C06_008M,S1702_C06_008MA"}, "S1101_C03_018E": {"label": "Estimate!!Male householder, no spouse present, family household!!Total households!!HOUSING TENURE!!Owner-occupied housing units", "concept": "Households and Families", "predicateType": "float", "group": "S1101", "limit": 0, "attributes": "S1101_C03_018EA,S1101_C03_018M,S1101_C03_018MA"}, "S1201_C01_019E": {"label": "Estimate!!Total!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Marital Status", "predicateType": "int", "group": "S1201", "limit": 0, "attributes": "S1201_C01_019EA,S1201_C01_019M,S1201_C01_019MA"}, "S0802_C05_095E": {"label": "Estimate!!Worked from home!!Workers 16 years and over in households!!VEHICLES AVAILABLE!!1 vehicle available", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C05_095EA,S0802_C05_095M,S0802_C05_095MA"}, "S2401_C03_010E": {"label": "Estimate!!Percent Male!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2401", "limit": 0, "attributes": "S2401_C03_010EA,S2401_C03_010M,S2401_C03_010MA"}, "S2602_C02_096E": {"label": "Estimate!!Total group quarters population!!EARNINGS AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Median earnings (dollars):!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C02_096EA,S2602_C02_096M,S2602_C02_096MA"}, "S0501_C01_059E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Self-employed workers in own not incorporated business", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_059EA,S0501_C01_059M,S0501_C01_059MA"}, "S1702_C06_009E": {"label": "Estimate!!Percent below poverty level!!Female householder, no spouse present!!Families!!RACE AND HISPANIC OR LATINO ORIGIN!!Families with a householder who is--!!Asian alone", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C06_009EA,S1702_C06_009M,S1702_C06_009MA"}, "S1101_C03_019E": {"label": "Estimate!!Male householder, no spouse present, family household!!Total households!!HOUSING TENURE!!Renter-occupied housing units", "concept": "Households and Families", "predicateType": "float", "group": "S1101", "limit": 0, "attributes": "S1101_C03_019EA,S1101_C03_019M,S1101_C03_019MA"}, "S0505_C06_080E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Civilian employed population 16 years and over!!INDUSTRY!!Information", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_080EA,S0505_C06_080M,S0505_C06_080MA"}, "S0802_C05_092E": {"label": "Estimate!!Worked from home!!Workers 16 years and over in households!!HOUSING TENURE!!Owner-occupied housing units", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C05_092EA,S0802_C05_092M,S0802_C05_092MA"}, "S2602_C02_093E": {"label": "Estimate!!Total group quarters population!!EARNINGS AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Mean earnings (dollars):!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C02_093EA,S2602_C02_093M,S2602_C02_093MA"}, "S1101_C03_016E": {"label": "Estimate!!Male householder, no spouse present, family household!!Total households!!UNITS IN STRUCTURE!!2-or-more-unit structures", "concept": "Households and Families", "predicateType": "float", "group": "S1101", "limit": 0, "attributes": "S1101_C03_016EA,S1101_C03_016M,S1101_C03_016MA"}, "S0801_C02_057E": {"label": "Estimate!!Male!!PERCENT ALLOCATED!!Vehicles available", "concept": "Commuting Characteristics by Sex", "predicateType": "int", "group": "S0801", "limit": 0, "attributes": "S0801_C02_057EA,S0801_C02_057M,S0801_C02_057MA"}, "S1702_C06_006E": {"label": "Estimate!!Percent below poverty level!!Female householder, no spouse present!!Families!!RACE AND HISPANIC OR LATINO ORIGIN!!Families with a householder who is--!!White alone", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C06_006EA,S1702_C06_006M,S1702_C06_006MA"}, "S0802_C05_093E": {"label": "Estimate!!Worked from home!!Workers 16 years and over in households!!HOUSING TENURE!!Renter-occupied housing units", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C05_093EA,S0802_C05_093M,S0802_C05_093MA"}, "S2602_C02_094E": {"label": "Estimate!!Total group quarters population!!EARNINGS AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Mean earnings (dollars):!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C02_094EA,S2602_C02_094M,S2602_C02_094MA"}, "S1101_C03_017E": {"label": "Estimate!!Male householder, no spouse present, family household!!Total households!!UNITS IN STRUCTURE!!Mobile homes and all other types of units", "concept": "Households and Families", "predicateType": "float", "group": "S1101", "limit": 0, "attributes": "S1101_C03_017EA,S1101_C03_017M,S1101_C03_017MA"}, "S0801_C02_056E": {"label": "Estimate!!Male!!PERCENT ALLOCATED!!Travel time to work", "concept": "Commuting Characteristics by Sex", "predicateType": "int", "group": "S0801", "limit": 0, "attributes": "S0801_C02_056EA,S0801_C02_056M,S0801_C02_056MA"}, "S1702_C06_007E": {"label": "Estimate!!Percent below poverty level!!Female householder, no spouse present!!Families!!RACE AND HISPANIC OR LATINO ORIGIN!!Families with a householder who is--!!Black or African American alone", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C06_007EA,S1702_C06_007M,S1702_C06_007MA"}, "S0802_C05_090E": {"label": "Estimate!!Worked from home!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!Mean travel time to work (minutes)", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "int", "group": "S0802", "limit": 0, "attributes": "S0802_C05_090EA,S0802_C05_090M,S0802_C05_090MA"}, "S2401_C03_013E": {"label": "Estimate!!Percent Male!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:!!Educational instruction, and library occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2401", "limit": 0, "attributes": "S2401_C03_013EA,S2401_C03_013M,S2401_C03_013MA"}, "S0501_C01_054E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Armed Forces", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_054EA,S0501_C01_054M,S0501_C01_054MA"}, "S2701_C02_008E": {"label": "Estimate!!Insured!!Civilian noninstitutionalized population!!AGE!!55 to 64 years", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C02_008EA,S2701_C02_008M,S2701_C02_008MA"}, "S1101_C03_014E": {"label": "Estimate!!Male householder, no spouse present, family household!!Total households!!SELECTED HOUSEHOLDS BY TYPE!!Householder living alone!!65 years and over", "concept": "Households and Families", "predicateType": "int", "group": "S1101", "limit": 0, "attributes": "S1101_C03_014EA,S1101_C03_014M,S1101_C03_014MA"}, "S0505_C06_083E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Civilian employed population 16 years and over!!INDUSTRY!!Educational services, and health care and social assistance", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_083EA,S0505_C06_083M,S0505_C06_083MA"}, "S0802_C05_091E": {"label": "Estimate!!Worked from home!!Workers 16 years and over in households", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "int", "group": "S0802", "limit": 0, "attributes": "S0802_C05_091EA,S0802_C05_091M,S0802_C05_091MA"}, "S2401_C03_014E": {"label": "Estimate!!Percent Male!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:!!Arts, design, entertainment, sports, and media occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2401", "limit": 0, "attributes": "S2401_C03_014EA,S2401_C03_014M,S2401_C03_014MA"}, "S0501_C01_055E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Population 16 years and over!!Not in labor force", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_055EA,S0501_C01_055M,S0501_C01_055MA"}, "S1101_C03_015E": {"label": "Estimate!!Male householder, no spouse present, family household!!Total households!!UNITS IN STRUCTURE!!1-unit structures", "concept": "Households and Families", "predicateType": "float", "group": "S1101", "limit": 0, "attributes": "S1101_C03_015EA,S1101_C03_015M,S1101_C03_015MA"}, "S2701_C02_007E": {"label": "Estimate!!Insured!!Civilian noninstitutionalized population!!AGE!!45 to 54 years", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C02_007EA,S2701_C02_007M,S2701_C02_007MA"}, "S0505_C06_084E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Civilian employed population 16 years and over!!INDUSTRY!!Arts, entertainment, and recreation, and accommodation and food services", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_084EA,S0505_C06_084M,S0505_C06_084MA"}, "S2602_C02_097E": {"label": "Estimate!!Total group quarters population!!EARNINGS AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!With Food Stamp/SNAP benefits", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C02_097EA,S2602_C02_097M,S2602_C02_097MA"}, "S2401_C03_011E": {"label": "Estimate!!Percent Male!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:!!Community and social service occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2401", "limit": 0, "attributes": "S2401_C03_011EA,S2401_C03_011M,S2401_C03_011MA"}, "S0501_C01_056E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C01_056EA,S0501_C01_056M,S0501_C01_056MA"}, "S0505_C06_081E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Civilian employed population 16 years and over!!INDUSTRY!!Finance and insurance, and real estate and rental and leasing", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_081EA,S0505_C06_081M,S0505_C06_081MA"}, "S1101_C03_012E": {"label": "Estimate!!Male householder, no spouse present, family household!!Total households!!SELECTED HOUSEHOLDS BY TYPE!!Households with one or more people 65 years and over", "concept": "Households and Families", "predicateType": "int", "group": "S1101", "limit": 0, "attributes": "S1101_C03_012EA,S1101_C03_012M,S1101_C03_012MA"}, "S2401_C03_012E": {"label": "Estimate!!Percent Male!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:!!Legal occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2401", "limit": 0, "attributes": "S2401_C03_012EA,S2401_C03_012M,S2401_C03_012MA"}, "S0501_C01_057E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Private wage and salary workers", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_057EA,S0501_C01_057M,S0501_C01_057MA"}, "S2701_C02_009E": {"label": "Estimate!!Insured!!Civilian noninstitutionalized population!!AGE!!65 to 74 years", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C02_009EA,S2701_C02_009M,S2701_C02_009MA"}, "S1101_C03_013E": {"label": "Estimate!!Male householder, no spouse present, family household!!Total households!!SELECTED HOUSEHOLDS BY TYPE!!Householder living alone", "concept": "Households and Families", "predicateType": "int", "group": "S1101", "limit": 0, "attributes": "S1101_C03_013EA,S1101_C03_013M,S1101_C03_013MA"}, "S0505_C06_082E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Civilian employed population 16 years and over!!INDUSTRY!!Professional, scientific, and management, and administrative and waste management services", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_082EA,S0505_C06_082M,S0505_C06_082MA"}, "S0501_C01_050E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_050EA,S0501_C01_050M,S0501_C01_050MA"}, "S2701_C02_004E": {"label": "Estimate!!Insured!!Civilian noninstitutionalized population!!AGE!!19 to 25 years", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C02_004EA,S2701_C02_004M,S2701_C02_004MA"}, "S2401_C03_017E": {"label": "Estimate!!Percent Male!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Healthcare practitioners and technical occupations:!!Health technologists and technicians", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2401", "limit": 0, "attributes": "S2401_C03_017EA,S2401_C03_017M,S2401_C03_017MA"}, "S1201_C01_011E": {"label": "Estimate!!Total!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over!!20 to 34 years", "concept": "Marital Status", "predicateType": "int", "group": "S1201", "limit": 0, "attributes": "S1201_C01_011EA,S1201_C01_011M,S1201_C01_011MA"}, "S0506_C01_097E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C01_097EA,S0506_C01_097M,S0506_C01_097MA"}, "S1701_C03_057E": {"label": "Estimate!!Percent below poverty level!!UNRELATED INDIVIDUALS FOR WHOM POVERTY STATUS IS DETERMINED!!75 years and over", "concept": "Poverty Status in the Past 12 Months", "predicateType": "float", "group": "S1701", "limit": 0, "attributes": "S1701_C03_057EA,S1701_C03_057M,S1701_C03_057MA"}, "S0501_C01_051E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Employed", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_051EA,S0501_C01_051M,S0501_C01_051MA"}, "S2401_C03_018E": {"label": "Estimate!!Percent Male!!Civilian employed population 16 years and over!!Service occupations:", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2401", "limit": 0, "attributes": "S2401_C03_018EA,S2401_C03_018M,S2401_C03_018MA"}, "S2701_C02_003E": {"label": "Estimate!!Insured!!Civilian noninstitutionalized population!!AGE!!6 to 18 years", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C02_003EA,S2701_C02_003M,S2701_C02_003MA"}, "S1201_C01_012E": {"label": "Estimate!!Total!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over!!35 to 44 years", "concept": "Marital Status", "predicateType": "int", "group": "S1201", "limit": 0, "attributes": "S1201_C01_012EA,S1201_C01_012M,S1201_C01_012MA"}, "S1701_C03_056E": {"label": "Estimate!!Percent below poverty level!!UNRELATED INDIVIDUALS FOR WHOM POVERTY STATUS IS DETERMINED!!65 to 74 years", "concept": "Poverty Status in the Past 12 Months", "predicateType": "float", "group": "S1701", "limit": 0, "attributes": "S1701_C03_056EA,S1701_C03_056M,S1701_C03_056MA"}, "S0506_C01_098E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_098EA,S0506_C01_098M,S0506_C01_098MA"}, "S0501_C01_052E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_052EA,S0501_C01_052M,S0501_C01_052MA"}, "S2401_C03_015E": {"label": "Estimate!!Percent Male!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Healthcare practitioners and technical occupations:", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2401", "limit": 0, "attributes": "S2401_C03_015EA,S2401_C03_015M,S2401_C03_015MA"}, "S2701_C02_006E": {"label": "Estimate!!Insured!!Civilian noninstitutionalized population!!AGE!!35 to 44 years", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C02_006EA,S2701_C02_006M,S2701_C02_006MA"}, "S1201_C01_013E": {"label": "Estimate!!Total!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over!!45 to 54 years", "concept": "Marital Status", "predicateType": "int", "group": "S1201", "limit": 0, "attributes": "S1201_C01_013EA,S1201_C01_013M,S1201_C01_013MA"}, "S1701_C03_055E": {"label": "Estimate!!Percent below poverty level!!UNRELATED INDIVIDUALS FOR WHOM POVERTY STATUS IS DETERMINED!!55 to 64 years", "concept": "Poverty Status in the Past 12 Months", "predicateType": "float", "group": "S1701", "limit": 0, "attributes": "S1701_C03_055EA,S1701_C03_055M,S1701_C03_055MA"}, "S0506_C01_099E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings!!Mean earnings (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C01_099EA,S0506_C01_099M,S0506_C01_099MA"}, "S0501_C01_053E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed!!Percent of civilian labor force", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_053EA,S0501_C01_053M,S0501_C01_053MA"}, "S2701_C02_005E": {"label": "Estimate!!Insured!!Civilian noninstitutionalized population!!AGE!!26 to 34 years", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C02_005EA,S2701_C02_005M,S2701_C02_005MA"}, "S2401_C03_016E": {"label": "Estimate!!Percent Male!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Healthcare practitioners and technical occupations:!!Health diagnosing and treating practitioners and other technical occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2401", "limit": 0, "attributes": "S2401_C03_016EA,S2401_C03_016M,S2401_C03_016MA"}, "S1701_C03_054E": {"label": "Estimate!!Percent below poverty level!!UNRELATED INDIVIDUALS FOR WHOM POVERTY STATUS IS DETERMINED!!45 to 54 years", "concept": "Poverty Status in the Past 12 Months", "predicateType": "float", "group": "S1701", "limit": 0, "attributes": "S1701_C03_054EA,S1701_C03_054M,S1701_C03_054MA"}, "S1201_C01_014E": {"label": "Estimate!!Total!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over!!55 to 64 years", "concept": "Marital Status", "predicateType": "int", "group": "S1201", "limit": 0, "attributes": "S1201_C01_014EA,S1201_C01_014M,S1201_C01_014MA"}, "S1201_C01_015E": {"label": "Estimate!!Total!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over!!65 years and over", "concept": "Marital Status", "predicateType": "int", "group": "S1201", "limit": 0, "attributes": "S1201_C01_015EA,S1201_C01_015M,S1201_C01_015MA"}, "S1701_C03_053E": {"label": "Estimate!!Percent below poverty level!!UNRELATED INDIVIDUALS FOR WHOM POVERTY STATUS IS DETERMINED!!35 to 44 years", "concept": "Poverty Status in the Past 12 Months", "predicateType": "float", "group": "S1701", "limit": 0, "attributes": "S1701_C03_053EA,S1701_C03_053M,S1701_C03_053MA"}, "S1701_C03_052E": {"label": "Estimate!!Percent below poverty level!!UNRELATED INDIVIDUALS FOR WHOM POVERTY STATUS IS DETERMINED!!25 to 34 years", "concept": "Poverty Status in the Past 12 Months", "predicateType": "float", "group": "S1701", "limit": 0, "attributes": "S1701_C03_052EA,S1701_C03_052M,S1701_C03_052MA"}, "S1201_C01_016E": {"label": "Estimate!!Total!!Population 15 years and over", "concept": "Marital Status", "predicateType": "int", "group": "S1201", "limit": 0, "attributes": "S1201_C01_016EA,S1201_C01_016M,S1201_C01_016MA"}, "S2701_C02_002E": {"label": "Estimate!!Insured!!Civilian noninstitutionalized population!!AGE!!Under 6 years", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C02_002EA,S2701_C02_002M,S2701_C02_002MA"}, "S2401_C03_019E": {"label": "Estimate!!Percent Male!!Civilian employed population 16 years and over!!Service occupations:!!Healthcare support occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2401", "limit": 0, "attributes": "S2401_C03_019EA,S2401_C03_019M,S2401_C03_019MA"}, "S1201_C01_017E": {"label": "Estimate!!Total!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Marital Status", "predicateType": "int", "group": "S1201", "limit": 0, "attributes": "S1201_C01_017EA,S1201_C01_017M,S1201_C01_017MA"}, "S1701_C03_051E": {"label": "Estimate!!Percent below poverty level!!UNRELATED INDIVIDUALS FOR WHOM POVERTY STATUS IS DETERMINED!!18 to 24 years", "concept": "Poverty Status in the Past 12 Months", "predicateType": "float", "group": "S1701", "limit": 0, "attributes": "S1701_C03_051EA,S1701_C03_051M,S1701_C03_051MA"}, "S2701_C02_001E": {"label": "Estimate!!Insured!!Civilian noninstitutionalized population", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C02_001EA,S2701_C02_001M,S2701_C02_001MA"}, "S1701_C03_050E": {"label": "Estimate!!Percent below poverty level!!UNRELATED INDIVIDUALS FOR WHOM POVERTY STATUS IS DETERMINED!!16 to 17 years", "concept": "Poverty Status in the Past 12 Months", "predicateType": "float", "group": "S1701", "limit": 0, "attributes": "S1701_C03_050EA,S1701_C03_050M,S1701_C03_050MA"}, "S1201_C01_018E": {"label": "Estimate!!Total!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Marital Status", "predicateType": "int", "group": "S1201", "limit": 0, "attributes": "S1201_C01_018EA,S1201_C01_018M,S1201_C01_018MA"}, "S2603_C07_105E": {"label": "Estimate!!Military quarters/military ships!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!Median earnings (dollars):!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C07_105EA,S2603_C07_105M,S2603_C07_105MA"}, "S0502_C04_002E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Foreign-born population!!CITIZENSHIP!!Naturalized citizen", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_002EA,S0502_C04_002M,S0502_C04_002MA"}, "S0701PR_C03_005E": {"label": "Estimate!!Moved; from different municipio!!Population 1 year and over!!AGE!!25 to 34 years", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C03_005EA,S0701PR_C03_005M,S0701PR_C03_005MA"}, "S2504_C02_027E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!VEHICLES AVAILABLE!!No vehicle available", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C02_027EA,S2504_C02_027M,S2504_C02_027MA"}, "S2504_C02_026E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!COMPLETE FACILITIES!!With complete kitchen facilities", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C02_026EA,S2504_C02_026M,S2504_C02_026MA"}, "S0502_C04_003E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Foreign-born population!!CITIZENSHIP!!Not a citizen", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_003EA,S0502_C04_003M,S0502_C04_003MA"}, "S2603_C07_104E": {"label": "Estimate!!Military quarters/military ships!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!Mean earnings (dollars):!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C07_104EA,S2603_C07_104M,S2603_C07_104MA"}, "S0701PR_C03_004E": {"label": "Estimate!!Moved; from different municipio!!Population 1 year and over!!AGE!!18 to 24 years", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C03_004EA,S0701PR_C03_004M,S0701PR_C03_004MA"}, "S0506_C01_090E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$15,000 to $24,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_090EA,S0506_C01_090M,S0506_C01_090MA"}, "S2603_C07_107E": {"label": "Estimate!!Military quarters/military ships!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!With Food Stamp/SNAP benefits", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C07_107EA,S2603_C07_107M,S2603_C07_107MA"}, "S0502_C04_004E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Foreign-born population!!WORLD REGION OF BIRTH OF FOREIGN-BORN!!Foreign-born population excluding population born at sea", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C04_004EA,S0502_C04_004M,S0502_C04_004MA"}, "S0701PR_C03_003E": {"label": "Estimate!!Moved; from different municipio!!Population 1 year and over!!AGE!!5 to 17 years", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C03_003EA,S0701PR_C03_003M,S0701PR_C03_003MA"}, "S0506_C01_091E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$25,000 to $34,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_091EA,S0506_C01_091M,S0506_C01_091MA"}, "S2504_C02_029E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!VEHICLES AVAILABLE!!2 vehicles available", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C02_029EA,S2504_C02_029M,S2504_C02_029MA"}, "S0502_C04_005E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Foreign-born population!!WORLD REGION OF BIRTH OF FOREIGN-BORN!!Europe", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_005EA,S0502_C04_005M,S0502_C04_005MA"}, "S2603_C07_106E": {"label": "Estimate!!Military quarters/military ships!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!Median earnings (dollars):!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C07_106EA,S2603_C07_106M,S2603_C07_106MA"}, "S0701PR_C03_002E": {"label": "Estimate!!Moved; from different municipio!!Population 1 year and over!!AGE!!1 to 4 years", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C03_002EA,S0701PR_C03_002M,S0701PR_C03_002MA"}, "S0506_C01_092E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$35,000 to $49,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_092EA,S0506_C01_092M,S0506_C01_092MA"}, "S2504_C02_028E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!VEHICLES AVAILABLE!!1 vehicle available", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C02_028EA,S2504_C02_028M,S2504_C02_028MA"}, "S1701_C03_049E": {"label": "Estimate!!Percent below poverty level!!UNRELATED INDIVIDUALS FOR WHOM POVERTY STATUS IS DETERMINED!!15 years", "concept": "Poverty Status in the Past 12 Months", "predicateType": "float", "group": "S1701", "limit": 0, "attributes": "S1701_C03_049EA,S1701_C03_049M,S1701_C03_049MA"}, "S0502_C04_006E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Foreign-born population!!WORLD REGION OF BIRTH OF FOREIGN-BORN!!Asia", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_006EA,S0502_C04_006M,S0502_C04_006MA"}, "S0502PR_C02_128E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Occupied housing units!!HOUSING TENURE!!Average household size of owner-occupied unit", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_128EA,S0502PR_C02_128M,S0502PR_C02_128MA"}, "S0506_C01_093E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$50,000 to $74,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_093EA,S0506_C01_093M,S0506_C01_093MA"}, "S0701PR_C03_009E": {"label": "Estimate!!Moved; from different municipio!!Population 1 year and over!!AGE!!65 to 74 years", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C03_009EA,S0701PR_C03_009M,S0701PR_C03_009MA"}, "S1701_C03_048E": {"label": "Estimate!!Percent below poverty level!!UNRELATED INDIVIDUALS FOR WHOM POVERTY STATUS IS DETERMINED!!Female", "concept": "Poverty Status in the Past 12 Months", "predicateType": "float", "group": "S1701", "limit": 0, "attributes": "S1701_C03_048EA,S1701_C03_048M,S1701_C03_048MA"}, "S0502_C04_007E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Foreign-born population!!WORLD REGION OF BIRTH OF FOREIGN-BORN!!Africa", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_007EA,S0502_C04_007M,S0502_C04_007MA"}, "S1201_C01_020E": {"label": "Estimate!!Total!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Marital Status", "predicateType": "int", "group": "S1201", "limit": 0, "attributes": "S1201_C01_020EA,S1201_C01_020M,S1201_C01_020MA"}, "S0502PR_C02_127E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Occupied housing units!!HOUSING TENURE!!Renter-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_127EA,S0502PR_C02_127M,S0502PR_C02_127MA"}, "S0701PR_C03_008E": {"label": "Estimate!!Moved; from different municipio!!Population 1 year and over!!AGE!!55 to 64 years", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C03_008EA,S0701PR_C03_008M,S0701PR_C03_008MA"}, "S0506_C01_094E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$75,000 or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_094EA,S0506_C01_094M,S0506_C01_094MA"}, "S0502_C04_008E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Foreign-born population!!WORLD REGION OF BIRTH OF FOREIGN-BORN!!Oceania", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_008EA,S0502_C04_008M,S0502_C04_008MA"}, "S0701PR_C03_007E": {"label": "Estimate!!Moved; from different municipio!!Population 1 year and over!!AGE!!45 to 54 years", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C03_007EA,S0701PR_C03_007M,S0701PR_C03_007MA"}, "S1201_C01_021E": {"label": "Estimate!!Total!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Marital Status", "predicateType": "int", "group": "S1201", "limit": 0, "attributes": "S1201_C01_021EA,S1201_C01_021M,S1201_C01_021MA"}, "S0506_C01_095E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!Median earnings (dollars) for full-time, year-round workers!!Male", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C01_095EA,S0506_C01_095M,S0506_C01_095MA"}, "S1701_C03_047E": {"label": "Estimate!!Percent below poverty level!!UNRELATED INDIVIDUALS FOR WHOM POVERTY STATUS IS DETERMINED!!Male", "concept": "Poverty Status in the Past 12 Months", "predicateType": "float", "group": "S1701", "limit": 0, "attributes": "S1701_C03_047EA,S1701_C03_047M,S1701_C03_047MA"}, "S0502_C04_009E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Foreign-born population!!WORLD REGION OF BIRTH OF FOREIGN-BORN!!Latin America", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_009EA,S0502_C04_009M,S0502_C04_009MA"}, "S0502PR_C02_129E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Occupied housing units!!HOUSING TENURE!!Average household size of renter-occupied unit", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_129EA,S0502PR_C02_129M,S0502PR_C02_129MA"}, "S1201_C01_022E": {"label": "Estimate!!Total!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Marital Status", "predicateType": "int", "group": "S1201", "limit": 0, "attributes": "S1201_C01_022EA,S1201_C01_022M,S1201_C01_022MA"}, "S0701PR_C03_006E": {"label": "Estimate!!Moved; from different municipio!!Population 1 year and over!!AGE!!35 to 44 years", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C03_006EA,S0701PR_C03_006M,S0701PR_C03_006MA"}, "S0506_C01_096E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!Median earnings (dollars) for full-time, year-round workers!!Female", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C01_096EA,S0506_C01_096M,S0506_C01_096MA"}, "S1701_C03_046E": {"label": "Estimate!!Percent below poverty level!!UNRELATED INDIVIDUALS FOR WHOM POVERTY STATUS IS DETERMINED", "concept": "Poverty Status in the Past 12 Months", "predicateType": "float", "group": "S1701", "limit": 0, "attributes": "S1701_C03_046EA,S1701_C03_046M,S1701_C03_046MA"}, "S0505_C06_075E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Civilian employed population 16 years and over!!INDUSTRY!!Construction", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_075EA,S0505_C06_075M,S0505_C06_075MA"}, "S0502PR_C02_124E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_124EA,S0502PR_C02_124M,S0502PR_C02_124MA"}, "S0701_C04_050E": {"label": "Estimate!!Moved; from different state!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population 1 year and over for whom poverty status is determined!!Below 100 percent of the poverty level", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C04_050EA,S0701_C04_050M,S0701_C04_050MA"}, "S1702_C06_012E": {"label": "Estimate!!Percent below poverty level!!Female householder, no spouse present!!Families!!RACE AND HISPANIC OR LATINO ORIGIN!!Families with a householder who is--!!Two or more races", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C06_012EA,S1702_C06_012M,S1702_C06_012MA"}, "S0801_C02_051E": {"label": "Estimate!!Male!!VEHICLES AVAILABLE!!Workers 16 years and over in households!!3 or more vehicles available", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C02_051EA,S0801_C02_051M,S0801_C02_051MA"}, "S0505_C06_076E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Civilian employed population 16 years and over!!INDUSTRY!!Manufacturing", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_076EA,S0505_C06_076M,S0505_C06_076MA"}, "S0502PR_C02_123E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_123EA,S0502PR_C02_123M,S0502PR_C02_123MA"}, "S1702_C06_013E": {"label": "Estimate!!Percent below poverty level!!Female householder, no spouse present!!Families!!RACE AND HISPANIC OR LATINO ORIGIN!!Families with a householder who is--!!Hispanic or Latino origin (of any race)", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C06_013EA,S1702_C06_013M,S1702_C06_013MA"}, "S0801_C02_050E": {"label": "Estimate!!Male!!VEHICLES AVAILABLE!!Workers 16 years and over in households!!2 vehicles available", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C02_050EA,S0801_C02_050M,S0801_C02_050MA"}, "S2504_C02_021E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!BEDROOMS!!No bedroom", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C02_021EA,S2504_C02_021M,S2504_C02_021MA"}, "S1702_C06_010E": {"label": "Estimate!!Percent below poverty level!!Female householder, no spouse present!!Families!!RACE AND HISPANIC OR LATINO ORIGIN!!Families with a householder who is--!!Native Hawaiian and Other Pacific Islander alone", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C06_010EA,S1702_C06_010M,S1702_C06_010MA"}, "S0502PR_C02_126E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Occupied housing units!!HOUSING TENURE!!Owner-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_126EA,S0502PR_C02_126M,S0502PR_C02_126MA"}, "S0701_C04_052E": {"label": "Estimate!!Moved; from different state!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population 1 year and over for whom poverty status is determined!!At or above 150 percent of the poverty level", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C04_052EA,S0701_C04_052M,S0701_C04_052MA"}, "S0505_C06_073E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Civilian employed population 16 years and over!!OCCUPATION!!Production, transportation, and material moving occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_073EA,S0505_C06_073M,S0505_C06_073MA"}, "S0802_C05_088E": {"label": "Estimate!!Worked from home!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!45 to 59 minutes", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "int", "group": "S0802", "limit": 0, "attributes": "S0802_C05_088EA,S0802_C05_088M,S0802_C05_088MA"}, "S2504_C02_020E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!ROOMS!!8 or more rooms", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C02_020EA,S2504_C02_020M,S2504_C02_020MA"}, "S0502PR_C02_125E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_125EA,S0502PR_C02_125M,S0502PR_C02_125MA"}, "S0701_C04_051E": {"label": "Estimate!!Moved; from different state!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population 1 year and over for whom poverty status is determined!!100 to 149 percent of the poverty level", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C04_051EA,S0701_C04_051M,S0701_C04_051MA"}, "S1702_C06_011E": {"label": "Estimate!!Percent below poverty level!!Female householder, no spouse present!!Families!!RACE AND HISPANIC OR LATINO ORIGIN!!Families with a householder who is--!!Some other race alone", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C06_011EA,S1702_C06_011M,S1702_C06_011MA"}, "S0505_C06_074E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Civilian employed population 16 years and over!!INDUSTRY!!Agriculture, forestry, fishing and hunting, and mining", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_074EA,S0505_C06_074M,S0505_C06_074MA"}, "S0802_C05_089E": {"label": "Estimate!!Worked from home!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!60 or more minutes", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "int", "group": "S0802", "limit": 0, "attributes": "S0802_C05_089EA,S0802_C05_089M,S0802_C05_089MA"}, "S0802_C05_086E": {"label": "Estimate!!Worked from home!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!30 to 34 minutes", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "int", "group": "S0802", "limit": 0, "attributes": "S0802_C05_086EA,S0802_C05_086M,S0802_C05_086MA"}, "S2504_C02_023E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!BEDROOMS!!2 or 3 bedrooms", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C02_023EA,S2504_C02_023M,S2504_C02_023MA"}, "S0505_C06_079E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Civilian employed population 16 years and over!!INDUSTRY!!Transportation and warehousing, and utilities", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_079EA,S0505_C06_079M,S0505_C06_079MA"}, "S2603_C07_101E": {"label": "Estimate!!Military quarters/military ships!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!With earnings:!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C07_101EA,S2603_C07_101M,S2603_C07_101MA"}, "S0502PR_C02_120E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_120EA,S0502PR_C02_120M,S0502PR_C02_120MA"}, "S0701_C04_054E": {"label": "Estimate!!Moved; from different state!!HOUSING TENURE!!Population 1 year and over in housing units!!Householder lived in owner-occupied housing units", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C04_054EA,S0701_C04_054M,S0701_C04_054MA"}, "S0701PR_C03_001E": {"label": "Estimate!!Moved; from different municipio!!Population 1 year and over", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C03_001EA,S0701PR_C03_001M,S0701PR_C03_001MA"}, "S0801_C02_055E": {"label": "Estimate!!Male!!PERCENT ALLOCATED!!Time of departure to go to work", "concept": "Commuting Characteristics by Sex", "predicateType": "int", "group": "S0801", "limit": 0, "attributes": "S0801_C02_055EA,S0801_C02_055M,S0801_C02_055MA"}, "S1702_C06_016E": {"label": "Estimate!!Percent below poverty level!!Female householder, no spouse present!!Families!!Householder worked!!Householder worked full-time, year-round in the past 12 months", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C06_016EA,S1702_C06_016M,S1702_C06_016MA"}, "S2504_C02_022E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!BEDROOMS!!1 bedroom", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C02_022EA,S2504_C02_022M,S2504_C02_022MA"}, "S2603_C07_100E": {"label": "Estimate!!Military quarters/military ships!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!Per capita income (dollars)", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C07_100EA,S2603_C07_100M,S2603_C07_100MA"}, "S0701_C04_053E": {"label": "Estimate!!Moved; from different state!!HOUSING TENURE!!Population 1 year and over in housing units", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C04_053EA,S0701_C04_053M,S0701_C04_053MA"}, "S0801_C02_054E": {"label": "Estimate!!Male!!PERCENT ALLOCATED!!Place of work", "concept": "Commuting Characteristics by Sex", "predicateType": "int", "group": "S0801", "limit": 0, "attributes": "S0801_C02_054EA,S0801_C02_054M,S0801_C02_054MA"}, "S0802_C05_087E": {"label": "Estimate!!Worked from home!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!35 to 44 minutes", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "int", "group": "S0802", "limit": 0, "attributes": "S0802_C05_087EA,S0802_C05_087M,S0802_C05_087MA"}, "S1702_C06_017E": {"label": "Estimate!!Percent below poverty level!!Female householder, no spouse present!!Families!!Householder 65 years and over", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C06_017EA,S1702_C06_017M,S1702_C06_017MA"}, "S0505_C06_077E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Civilian employed population 16 years and over!!INDUSTRY!!Wholesale trade", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_077EA,S0505_C06_077M,S0505_C06_077MA"}, "S0802_C05_084E": {"label": "Estimate!!Worked from home!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!20 to 24 minutes", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "int", "group": "S0802", "limit": 0, "attributes": "S0802_C05_084EA,S0802_C05_084M,S0802_C05_084MA"}, "S2504_C02_025E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!COMPLETE FACILITIES!!With complete plumbing facilities", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C02_025EA,S2504_C02_025M,S2504_C02_025MA"}, "S2603_C07_103E": {"label": "Estimate!!Military quarters/military ships!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!Mean earnings (dollars):!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C07_103EA,S2603_C07_103M,S2603_C07_103MA"}, "S0502PR_C02_122E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_122EA,S0502PR_C02_122M,S0502PR_C02_122MA"}, "S0701_C04_056E": {"label": "Estimate!!Moved; from different state!!PERCENT ALLOCATED!!Residence 1 year ago", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "int", "group": "S0701", "limit": 0, "attributes": "S0701_C04_056EA,S0701_C04_056M,S0701_C04_056MA"}, "S1702_C06_014E": {"label": "Estimate!!Percent below poverty level!!Female householder, no spouse present!!Families!!RACE AND HISPANIC OR LATINO ORIGIN!!Families with a householder who is--!!White alone, not Hispanic or Latino", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C06_014EA,S1702_C06_014M,S1702_C06_014MA"}, "S0801_C02_053E": {"label": "Estimate!!Male!!PERCENT ALLOCATED!!Private vehicle occupancy", "concept": "Commuting Characteristics by Sex", "predicateType": "int", "group": "S0801", "limit": 0, "attributes": "S0801_C02_053EA,S0801_C02_053M,S0801_C02_053MA"}, "S0505_C06_078E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Civilian employed population 16 years and over!!INDUSTRY!!Retail trade", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_078EA,S0505_C06_078M,S0505_C06_078MA"}, "S0802_C05_085E": {"label": "Estimate!!Worked from home!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!25 to 29 minutes", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "int", "group": "S0802", "limit": 0, "attributes": "S0802_C05_085EA,S0802_C05_085M,S0802_C05_085MA"}, "S2504_C02_024E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!BEDROOMS!!4 or more bedrooms", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C02_024EA,S2504_C02_024M,S2504_C02_024MA"}, "S2603_C07_102E": {"label": "Estimate!!Military quarters/military ships!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!With earnings:!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C07_102EA,S2603_C07_102M,S2603_C07_102MA"}, "S0502PR_C02_121E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_121EA,S0502PR_C02_121M,S0502PR_C02_121MA"}, "S0701_C04_055E": {"label": "Estimate!!Moved; from different state!!HOUSING TENURE!!Population 1 year and over in housing units!!Householder lived in renter-occupied housing units", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C04_055EA,S0701_C04_055M,S0701_C04_055MA"}, "S0502_C04_001E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Foreign-born population", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C04_001EA,S0502_C04_001M,S0502_C04_001MA"}, "S0801_C02_052E": {"label": "Estimate!!Male!!PERCENT ALLOCATED!!Means of transportation to work", "concept": "Commuting Characteristics by Sex", "predicateType": "int", "group": "S0801", "limit": 0, "attributes": "S0801_C02_052EA,S0801_C02_052M,S0801_C02_052MA"}, "S1702_C06_015E": {"label": "Estimate!!Percent below poverty level!!Female householder, no spouse present!!Families!!Householder worked", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C06_015EA,S1702_C06_015M,S1702_C06_015MA"}, "S2401_C03_021E": {"label": "Estimate!!Percent Male!!Civilian employed population 16 years and over!!Service occupations:!!Protective service occupations:!!Firefighting and prevention, and other protective service workers including supervisors", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2401", "limit": 0, "attributes": "S2401_C03_021EA,S2401_C03_021M,S2401_C03_021MA"}, "S2602_C02_083E": {"label": "Estimate!!Total group quarters population!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Armed Forces", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C02_083EA,S2602_C02_083M,S2602_C02_083MA"}, "S0701_C04_046E": {"label": "Estimate!!Moved; from different state!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$65,000 to $74,999", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C04_046EA,S0701_C04_046M,S0701_C04_046MA"}, "S1701_C03_061E": {"label": "Estimate!!Percent below poverty level!!UNRELATED INDIVIDUALS FOR WHOM POVERTY STATUS IS DETERMINED!!Did not work", "concept": "Poverty Status in the Past 12 Months", "predicateType": "float", "group": "S1701", "limit": 0, "attributes": "S1701_C03_061EA,S1701_C03_061M,S1701_C03_061MA"}, "S1101_C03_006E": {"label": "Estimate!!Male householder, no spouse present, family household!!AGE OF OWN CHILDREN!!Households with own children of the householder under 18 years!!Under 6 years only", "concept": "Households and Families", "predicateType": "float", "group": "S1101", "limit": 0, "attributes": "S1101_C03_006EA,S1101_C03_006M,S1101_C03_006MA"}, "S0505_C06_091E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$25,000 to $34,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_091EA,S0505_C06_091M,S0505_C06_091MA"}, "S2401_C03_022E": {"label": "Estimate!!Percent Male!!Civilian employed population 16 years and over!!Service occupations:!!Protective service occupations:!!Law enforcement workers including supervisors", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2401", "limit": 0, "attributes": "S2401_C03_022EA,S2401_C03_022M,S2401_C03_022MA"}, "S2602_C02_084E": {"label": "Estimate!!Total group quarters population!!EMPLOYMENT STATUS!!Population 16 years and over!!Not in labor force", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C02_084EA,S2602_C02_084M,S2602_C02_084MA"}, "S0701_C04_045E": {"label": "Estimate!!Moved; from different state!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$50,000 to $64,999", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C04_045EA,S0701_C04_045M,S0701_C04_045MA"}, "S1101_C03_007E": {"label": "Estimate!!Male householder, no spouse present, family household!!AGE OF OWN CHILDREN!!Households with own children of the householder under 18 years!!Under 6 years and 6 to 17 years", "concept": "Households and Families", "predicateType": "float", "group": "S1101", "limit": 0, "attributes": "S1101_C03_007EA,S1101_C03_007M,S1101_C03_007MA"}, "S1701_C03_060E": {"label": "Estimate!!Percent below poverty level!!UNRELATED INDIVIDUALS FOR WHOM POVERTY STATUS IS DETERMINED!!Worked less than full-time, year-round in the past 12 months", "concept": "Poverty Status in the Past 12 Months", "predicateType": "float", "group": "S1701", "limit": 0, "attributes": "S1701_C03_060EA,S1701_C03_060M,S1701_C03_060MA"}, "S0505_C06_092E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$35,000 to $49,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_092EA,S0505_C06_092M,S0505_C06_092MA"}, "S2602_C02_081E": {"label": "Estimate!!Total group quarters population!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C02_081EA,S2602_C02_081M,S2602_C02_081MA"}, "S0502PR_C02_130E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Occupied housing units!!ROOMS!!1 room", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_130EA,S0502PR_C02_130M,S0502PR_C02_130MA"}, "S0701_C04_048E": {"label": "Estimate!!Moved; from different state!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!Median income (dollars)", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "int", "group": "S0701", "limit": 0, "attributes": "S0701_C04_048EA,S0701_C04_048M,S0701_C04_048MA"}, "S1101_C03_004E": {"label": "Estimate!!Male householder, no spouse present, family household!!FAMILIES!!Average family size", "concept": "Households and Families", "predicateType": "float", "group": "S1101", "limit": 0, "attributes": "S1101_C03_004EA,S1101_C03_004M,S1101_C03_004MA"}, "S2401_C03_020E": {"label": "Estimate!!Percent Male!!Civilian employed population 16 years and over!!Service occupations:!!Protective service occupations:", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2401", "limit": 0, "attributes": "S2401_C03_020EA,S2401_C03_020M,S2401_C03_020MA"}, "S0701_C04_047E": {"label": "Estimate!!Moved; from different state!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$75,000 or more", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C04_047EA,S0701_C04_047M,S0701_C04_047MA"}, "S2602_C02_082E": {"label": "Estimate!!Total group quarters population!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed!!Percent of civilian labor force", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C02_082EA,S2602_C02_082M,S2602_C02_082MA"}, "S1101_C03_005E": {"label": "Estimate!!Male householder, no spouse present, family household!!AGE OF OWN CHILDREN!!Households with own children of the householder under 18 years", "concept": "Households and Families", "predicateType": "int", "group": "S1101", "limit": 0, "attributes": "S1101_C03_005EA,S1101_C03_005M,S1101_C03_005MA"}, "S0505_C06_090E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$15,000 to $24,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_090EA,S0505_C06_090M,S0505_C06_090MA"}, "S2602_C02_087E": {"label": "Estimate!!Total group quarters population!!OCCUPATION!!Civilian employed population 16 years and over!!Service occupations", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C02_087EA,S2602_C02_087M,S2602_C02_087MA"}, "S2401_C03_025E": {"label": "Estimate!!Percent Male!!Civilian employed population 16 years and over!!Service occupations:!!Personal care and service occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2401", "limit": 0, "attributes": "S2401_C03_025EA,S2401_C03_025M,S2401_C03_025MA"}, "S0501_C01_066E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Agriculture, forestry, fishing and hunting, and mining", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_066EA,S0501_C01_066M,S0501_C01_066MA"}, "S1101_C03_002E": {"label": "Estimate!!Male householder, no spouse present, family household!!HOUSEHOLDS!!Average household size", "concept": "Households and Families", "predicateType": "float", "group": "S1101", "limit": 0, "attributes": "S1101_C03_002EA,S1101_C03_002M,S1101_C03_002MA"}, "S0505_C06_095E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!Median earnings (dollars) for full-time, year-round workers!!Male", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C06_095EA,S0505_C06_095M,S0505_C06_095MA"}, "S2602_C02_088E": {"label": "Estimate!!Total group quarters population!!OCCUPATION!!Civilian employed population 16 years and over!!Sales and office occupations", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C02_088EA,S2602_C02_088M,S2602_C02_088MA"}, "S0501_C01_067E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Construction", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_067EA,S0501_C01_067M,S0501_C01_067MA"}, "S0701_C04_049E": {"label": "Estimate!!Moved; from different state!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population 1 year and over for whom poverty status is determined", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C04_049EA,S0701_C04_049M,S0701_C04_049MA"}, "S2401_C03_026E": {"label": "Estimate!!Percent Male!!Civilian employed population 16 years and over!!Sales and office occupations:", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2401", "limit": 0, "attributes": "S2401_C03_026EA,S2401_C03_026M,S2401_C03_026MA"}, "S1101_C03_003E": {"label": "Estimate!!Male householder, no spouse present, family household!!FAMILIES!!Total families", "concept": "Households and Families", "predicateType": "int", "group": "S1101", "limit": 0, "attributes": "S1101_C03_003EA,S1101_C03_003M,S1101_C03_003MA"}, "S0505_C06_096E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!Median earnings (dollars) for full-time, year-round workers!!Female", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C06_096EA,S0505_C06_096M,S0505_C06_096MA"}, "S2401_C03_023E": {"label": "Estimate!!Percent Male!!Civilian employed population 16 years and over!!Service occupations:!!Food preparation and serving related occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2401", "limit": 0, "attributes": "S2401_C03_023EA,S2401_C03_023M,S2401_C03_023MA"}, "S0501_C01_068E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Manufacturing", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_068EA,S0501_C01_068M,S0501_C01_068MA"}, "S2602_C02_085E": {"label": "Estimate!!Total group quarters population!!OCCUPATION!!Civilian employed population 16 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C02_085EA,S2602_C02_085M,S2602_C02_085MA"}, "S0505_C06_093E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$50,000 to $74,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_093EA,S0505_C06_093M,S0505_C06_093MA"}, "S2602_C02_086E": {"label": "Estimate!!Total group quarters population!!OCCUPATION!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C02_086EA,S2602_C02_086M,S2602_C02_086MA"}, "S2401_C03_024E": {"label": "Estimate!!Percent Male!!Civilian employed population 16 years and over!!Service occupations:!!Building and grounds cleaning and maintenance occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2401", "limit": 0, "attributes": "S2401_C03_024EA,S2401_C03_024M,S2401_C03_024MA"}, "S0501_C01_069E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Wholesale trade", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_069EA,S0501_C01_069M,S0501_C01_069MA"}, "S1101_C03_001E": {"label": "Estimate!!Male householder, no spouse present, family household!!HOUSEHOLDS!!Total households", "concept": "Households and Families", "predicateType": "int", "group": "S1101", "limit": 0, "attributes": "S1101_C03_001EA,S1101_C03_001M,S1101_C03_001MA"}, "S0505_C06_094E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$75,000 or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_094EA,S0505_C06_094M,S0505_C06_094MA"}, "S0501_C01_062E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!OCCUPATION!!Service occupations", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_062EA,S0501_C01_062M,S0501_C01_062MA"}, "S2401_C03_029E": {"label": "Estimate!!Percent Male!!Civilian employed population 16 years and over!!Natural resources, construction, and maintenance occupations:", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2401", "limit": 0, "attributes": "S2401_C03_029EA,S2401_C03_029M,S2401_C03_029MA"}, "S1201_C01_023E": {"label": "Estimate!!Total!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Marital Status", "predicateType": "int", "group": "S1201", "limit": 0, "attributes": "S1201_C01_023EA,S1201_C01_023M,S1201_C01_023MA"}, "S0506_C01_085E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Other services (except public administration)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_085EA,S0506_C01_085M,S0506_C01_085MA"}, "S0501_C01_063E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!OCCUPATION!!Sales and office occupations", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_063EA,S0501_C01_063M,S0501_C01_063MA"}, "S1201_C01_024E": {"label": "Estimate!!Total!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Marital Status", "predicateType": "int", "group": "S1201", "limit": 0, "attributes": "S1201_C01_024EA,S1201_C01_024M,S1201_C01_024MA"}, "S0506_C01_086E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Public administration", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_086EA,S0506_C01_086M,S0506_C01_086MA"}, "S2602_C02_089E": {"label": "Estimate!!Total group quarters population!!OCCUPATION!!Civilian employed population 16 years and over!!Natural resources, construction, extraction, and maintenance occupations", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C02_089EA,S2602_C02_089M,S2602_C02_089MA"}, "S0501_C01_064E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!OCCUPATION!!Natural resources, construction, and maintenance occupations", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_064EA,S0501_C01_064M,S0501_C01_064MA"}, "S2401_C03_027E": {"label": "Estimate!!Percent Male!!Civilian employed population 16 years and over!!Sales and office occupations:!!Sales and related occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2401", "limit": 0, "attributes": "S2401_C03_027EA,S2401_C03_027M,S2401_C03_027MA"}, "S1201_C01_025E": {"label": "Estimate!!Total!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Marital Status", "predicateType": "int", "group": "S1201", "limit": 0, "attributes": "S1201_C01_025EA,S1201_C01_025M,S1201_C01_025MA"}, "S0506_C01_087E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C01_087EA,S0506_C01_087M,S0506_C01_087MA"}, "S0501_C01_065E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!OCCUPATION!!Production, transportation, and material moving occupations", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_065EA,S0501_C01_065M,S0501_C01_065MA"}, "S2401_C03_028E": {"label": "Estimate!!Percent Male!!Civilian employed population 16 years and over!!Sales and office occupations:!!Office and administrative support occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2401", "limit": 0, "attributes": "S2401_C03_028EA,S2401_C03_028M,S2401_C03_028MA"}, "S1201_C01_026E": {"label": "Estimate!!Total!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Marital Status", "predicateType": "int", "group": "S1201", "limit": 0, "attributes": "S1201_C01_026EA,S1201_C01_026M,S1201_C01_026MA"}, "S0506_C01_088E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$1 to $9,999 or loss", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_088EA,S0506_C01_088M,S0506_C01_088MA"}, "S1201_C01_027E": {"label": "Estimate!!Total!!LABOR FORCE PARTICIPATION!!Males 16 years and over", "concept": "Marital Status", "predicateType": "int", "group": "S1201", "limit": 0, "attributes": "S1201_C01_027EA,S1201_C01_027M,S1201_C01_027MA"}, "S0506_C01_089E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$10,000 to $14,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_089EA,S0506_C01_089M,S0506_C01_089MA"}, "S1201_C01_028E": {"label": "Estimate!!Total!!LABOR FORCE PARTICIPATION!!Males 16 years and over!!In labor force", "concept": "Marital Status", "predicateType": "int", "group": "S1201", "limit": 0, "attributes": "S1201_C01_028EA,S1201_C01_028M,S1201_C01_028MA"}, "S0501_C01_060E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Unpaid family workers", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_060EA,S0501_C01_060M,S0501_C01_060MA"}, "S0503_C02_109E": {"label": "Estimate!!Foreign-born; Born in Europe!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!Median Household income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C02_109EA,S0503_C02_109M,S0503_C02_109MA"}, "S1101_C03_008E": {"label": "Estimate!!Male householder, no spouse present, family household!!AGE OF OWN CHILDREN!!Households with own children of the householder under 18 years!!6 to 17 years only", "concept": "Households and Families", "predicateType": "float", "group": "S1101", "limit": 0, "attributes": "S1101_C03_008EA,S1101_C03_008M,S1101_C03_008MA"}, "S1201_C01_029E": {"label": "Estimate!!Total!!LABOR FORCE PARTICIPATION!!Females 16 years and over", "concept": "Marital Status", "predicateType": "int", "group": "S1201", "limit": 0, "attributes": "S1201_C01_029EA,S1201_C01_029M,S1201_C01_029MA"}, "S0501_C01_061E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!OCCUPATION!!Management, business, science, and arts occupations", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_061EA,S0501_C01_061M,S0501_C01_061MA"}, "S0503_C02_108E": {"label": "Estimate!!Foreign-born; Born in Europe!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Food Stamp/SNAP benefits", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_108EA,S0503_C02_108M,S0503_C02_108MA"}, "S1101_C03_009E": {"label": "Estimate!!Male householder, no spouse present, family household!!Total households", "concept": "Households and Families", "predicateType": "int", "group": "S1101", "limit": 0, "attributes": "S1101_C03_009EA,S1101_C03_009M,S1101_C03_009MA"}, "S1701_C03_062E": {"label": "Estimate!!Percent below poverty level!!UNRELATED INDIVIDUALS FOR WHOM POVERTY STATUS IS DETERMINED!!Population in housing units for whom poverty status is determined", "concept": "Poverty Status in the Past 12 Months", "predicateType": "float", "group": "S1701", "limit": 0, "attributes": "S1701_C03_062EA,S1701_C03_062M,S1701_C03_062MA"}, "S2504_C02_015E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!YEAR STRUCTURE BUILT!!1939 or earlier", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C02_015EA,S2504_C02_015M,S2504_C02_015MA"}, "S0502_C04_014E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Foreign-born population!!SEX AND AGE!!5 to 17 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_014EA,S0502_C04_014M,S0502_C04_014MA"}, "S0503_C02_107E": {"label": "Estimate!!Foreign-born; Born in Europe!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income!!Mean retirement income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C02_107EA,S0503_C02_107M,S0503_C02_107MA"}, "S2504_C02_014E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!YEAR STRUCTURE BUILT!!1940 to 1959", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C02_014EA,S2504_C02_014M,S2504_C02_014MA"}, "S0502_C04_015E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Foreign-born population!!SEX AND AGE!!18 to 24 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_015EA,S0502_C04_015M,S0502_C04_015MA"}, "S0503_C02_106E": {"label": "Estimate!!Foreign-born; Born in Europe!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_106EA,S0503_C02_106M,S0503_C02_106MA"}, "S0502_C04_016E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Foreign-born population!!SEX AND AGE!!25 to 44 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_016EA,S0502_C04_016M,S0502_C04_016MA"}, "S0503_C02_105E": {"label": "Estimate!!Foreign-born; Born in Europe!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income!!Mean cash public assistance income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C02_105EA,S0503_C02_105M,S0503_C02_105MA"}, "S2504_C02_017E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!ROOMS!!2 or 3 rooms", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C02_017EA,S2504_C02_017M,S2504_C02_017MA"}, "S0503_C02_104E": {"label": "Estimate!!Foreign-born; Born in Europe!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_104EA,S0503_C02_104M,S0503_C02_104MA"}, "S0502_C04_017E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Foreign-born population!!SEX AND AGE!!45 to 54 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_017EA,S0502_C04_017M,S0502_C04_017MA"}, "S1201_C01_030E": {"label": "Estimate!!Total!!LABOR FORCE PARTICIPATION!!Females 16 years and over!!In labor force", "concept": "Marital Status", "predicateType": "int", "group": "S1201", "limit": 0, "attributes": "S1201_C01_030EA,S1201_C01_030M,S1201_C01_030MA"}, "S0506_C01_080E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Information", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_080EA,S0506_C01_080M,S0506_C01_080MA"}, "S2504_C02_016E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!ROOMS!!1 room", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C02_016EA,S2504_C02_016M,S2504_C02_016MA"}, "S0503_C02_103E": {"label": "Estimate!!Foreign-born; Born in Europe!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income!!Mean Supplemental Security Income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C02_103EA,S0503_C02_103M,S0503_C02_103MA"}, "S0502_C04_018E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Foreign-born population!!SEX AND AGE!!55 to 64 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_018EA,S0502_C04_018M,S0502_C04_018MA"}, "S1201_C01_031E": {"label": "Estimate!!Total!!SUMMARY INDICATOR!!Ratio of Unmarried Men 15 to 44 years per 100 unmarried women 15 to 44 years", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C01_031EA,S1201_C01_031M,S1201_C01_031MA"}, "S0506_C01_081E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Finance and insurance, and real estate and rental and leasing", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_081EA,S0506_C01_081M,S0506_C01_081MA"}, "S2504_C02_019E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!ROOMS!!6 or 7 rooms", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C02_019EA,S2504_C02_019M,S2504_C02_019MA"}, "S0502_C04_019E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Foreign-born population!!SEX AND AGE!!65 to 74 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_019EA,S0502_C04_019M,S0502_C04_019MA"}, "S0502PR_C02_139E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Occupied housing units!!SELECTED CHARACTERISTICS!!No telephone service available", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_139EA,S0502PR_C02_139M,S0502PR_C02_139MA"}, "S0503_C02_102E": {"label": "Estimate!!Foreign-born; Born in Europe!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_102EA,S0503_C02_102M,S0503_C02_102MA"}, "S1201_C01_032E": {"label": "Estimate!!Total!!PERCENT ALLOCATED!!Marital status", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C01_032EA,S1201_C01_032M,S1201_C01_032MA"}, "S0506_C01_082E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Professional, scientific, and management, and administrative and waste management services", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_082EA,S0506_C01_082M,S0506_C01_082MA"}, "S2504_C02_018E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!ROOMS!!4 or 5 rooms", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C02_018EA,S2504_C02_018M,S2504_C02_018MA"}, "S1701_C03_059E": {"label": "Estimate!!Percent below poverty level!!UNRELATED INDIVIDUALS FOR WHOM POVERTY STATUS IS DETERMINED!!Worked full-time, year-round in the past 12 months", "concept": "Poverty Status in the Past 12 Months", "predicateType": "float", "group": "S1701", "limit": 0, "attributes": "S1701_C03_059EA,S1701_C03_059M,S1701_C03_059MA"}, "S0503_C02_101E": {"label": "Estimate!!Foreign-born; Born in Europe!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income!!Mean Social Security income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C02_101EA,S0503_C02_101M,S0503_C02_101MA"}, "S0506_C01_083E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Educational services, and health care and social assistance", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_083EA,S0506_C01_083M,S0506_C01_083MA"}, "S0503_C02_100E": {"label": "Estimate!!Foreign-born; Born in Europe!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_100EA,S0503_C02_100M,S0503_C02_100MA"}, "S2001_C05_020E": {"label": "Estimate!!Female!!MEDIAN EARNINGS BY EDUCATIONAL ATTAINMENT!!Population 25 years and over with earnings!!Graduate or professional degree", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C05_020EA,S2001_C05_020M,S2001_C05_020MA"}, "S0506_C01_084E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Arts, entertainment, and recreation, and accommodation and food services", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_084EA,S0506_C01_084M,S0506_C01_084MA"}, "S1701_C03_058E": {"label": "Estimate!!Percent below poverty level!!UNRELATED INDIVIDUALS FOR WHOM POVERTY STATUS IS DETERMINED!!Mean income deficit for unrelated individuals (dollars)", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C03_058EA,S1701_C03_058M,S1701_C03_058MA"}, "S0505_C06_087E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C06_087EA,S0505_C06_087M,S0505_C06_087MA"}, "S0502PR_C02_136E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Occupied housing units!!1.01 or more occupants per room", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_136EA,S0502PR_C02_136M,S0502PR_C02_136MA"}, "S1101_C03_010E": {"label": "Estimate!!Male householder, no spouse present, family household!!Total households!!SELECTED HOUSEHOLDS BY TYPE!!Households with one or more people under 18 years", "concept": "Households and Families", "predicateType": "float", "group": "S1101", "limit": 0, "attributes": "S1101_C03_010EA,S1101_C03_010M,S1101_C03_010MA"}, "S0505_C06_088E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$1 to $9,999 or loss", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_088EA,S0505_C06_088M,S0505_C06_088MA"}, "S0502PR_C02_135E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Occupied housing units!!Median number of rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_135EA,S0502PR_C02_135M,S0502PR_C02_135MA"}, "S1702_C06_001E": {"label": "Estimate!!Percent below poverty level!!Female householder, no spouse present!!Families", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C06_001EA,S1702_C06_001M,S1702_C06_001MA"}, "S1101_C03_011E": {"label": "Estimate!!Male householder, no spouse present, family household!!Total households!!SELECTED HOUSEHOLDS BY TYPE!!Households with one or more people 60 years and over", "concept": "Households and Families", "predicateType": "float", "group": "S1101", "limit": 0, "attributes": "S1101_C03_011EA,S1101_C03_011M,S1101_C03_011MA"}, "S0502PR_C02_138E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Occupied housing units!!VEHICLES AVAILABLE!!1 or more", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_138EA,S0502PR_C02_138M,S0502PR_C02_138MA"}, "S0701_C04_040E": {"label": "Estimate!!Moved; from different state!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$1 to $9,999 or loss", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C04_040EA,S0701_C04_040M,S0701_C04_040MA"}, "S0505_C06_085E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Civilian employed population 16 years and over!!INDUSTRY!!Other services (except public administration)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_085EA,S0505_C06_085M,S0505_C06_085MA"}, "S0505_C06_086E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Civilian employed population 16 years and over!!INDUSTRY!!Public administration", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_086EA,S0505_C06_086M,S0505_C06_086MA"}, "S0502PR_C02_137E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Occupied housing units!!VEHICLES AVAILABLE!!None", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_137EA,S0502PR_C02_137M,S0502PR_C02_137MA"}, "S2504_C02_011E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!YEAR STRUCTURE BUILT!!2000 to 2009", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C02_011EA,S2504_C02_011M,S2504_C02_011MA"}, "S2602_C02_091E": {"label": "Estimate!!Total group quarters population!!EARNINGS AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!With earnings:!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C02_091EA,S2602_C02_091M,S2602_C02_091MA"}, "S0502PR_C02_132E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Occupied housing units!!ROOMS!!4 or 5 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_132EA,S0502PR_C02_132M,S0502PR_C02_132MA"}, "S0701_C04_042E": {"label": "Estimate!!Moved; from different state!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$15,000 to $24,999", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C04_042EA,S0701_C04_042M,S0701_C04_042MA"}, "S0502_C04_010E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Foreign-born population!!WORLD REGION OF BIRTH OF FOREIGN-BORN!!Northern America", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_010EA,S0502_C04_010M,S0502_C04_010MA"}, "S1702_C06_004E": {"label": "Estimate!!Percent below poverty level!!Female householder, no spouse present!!Families!!With related children of householder under 18 years!!With related children of householder under 5 years and 5 to 17 years", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C06_004EA,S1702_C06_004M,S1702_C06_004MA"}, "S0802_C05_098E": {"label": "Estimate!!Worked from home!!PERCENT ALLOCATED!!Means of transportation to work", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "int", "group": "S0802", "limit": 0, "attributes": "S0802_C05_098EA,S0802_C05_098M,S0802_C05_098MA"}, "S2504_C02_010E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!YEAR STRUCTURE BUILT!!2010 to 2019", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C02_010EA,S2504_C02_010M,S2504_C02_010MA"}, "S2602_C02_092E": {"label": "Estimate!!Total group quarters population!!EARNINGS AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!With earnings:!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C02_092EA,S2602_C02_092M,S2602_C02_092MA"}, "S0502PR_C02_131E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Occupied housing units!!ROOMS!!2 or 3 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_131EA,S0502PR_C02_131M,S0502PR_C02_131MA"}, "S0701_C04_041E": {"label": "Estimate!!Moved; from different state!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$10,000 to $14,999", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C04_041EA,S0701_C04_041M,S0701_C04_041MA"}, "S0502_C04_011E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Foreign-born population!!SEX AND AGE!!Male", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_011EA,S0502_C04_011M,S0502_C04_011MA"}, "S1702_C06_005E": {"label": "Estimate!!Percent below poverty level!!Female householder, no spouse present!!Families!!With related children of householder under 18 years!!With related children of householder 5 to 17 years", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C06_005EA,S1702_C06_005M,S1702_C06_005MA"}, "S0802_C05_099E": {"label": "Estimate!!Worked from home!!PERCENT ALLOCATED!!Time of departure to go to work", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "int", "group": "S0802", "limit": 0, "attributes": "S0802_C05_099EA,S0802_C05_099M,S0802_C05_099MA"}, "S0505_C06_089E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$10,000 to $14,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_089EA,S0505_C06_089M,S0505_C06_089MA"}, "S0802_C05_096E": {"label": "Estimate!!Worked from home!!Workers 16 years and over in households!!VEHICLES AVAILABLE!!2 vehicles available", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C05_096EA,S0802_C05_096M,S0802_C05_096MA"}, "S2504_C02_013E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!YEAR STRUCTURE BUILT!!1960 to 1979", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C02_013EA,S2504_C02_013M,S2504_C02_013MA"}, "S0502PR_C02_134E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Occupied housing units!!ROOMS!!8 or more rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_134EA,S0502PR_C02_134M,S0502PR_C02_134MA"}, "S0701_C04_044E": {"label": "Estimate!!Moved; from different state!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$35,000 to $49,999", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C04_044EA,S0701_C04_044M,S0701_C04_044MA"}, "S0502_C04_012E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Foreign-born population!!SEX AND AGE!!Female", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_012EA,S0502_C04_012M,S0502_C04_012MA"}, "S1702_C06_002E": {"label": "Estimate!!Percent below poverty level!!Female householder, no spouse present!!Families!!With related children of householder under 18 years", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C06_002EA,S1702_C06_002M,S1702_C06_002MA"}, "S0802_C05_097E": {"label": "Estimate!!Worked from home!!Workers 16 years and over in households!!VEHICLES AVAILABLE!!3 or more vehicles available", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C05_097EA,S0802_C05_097M,S0802_C05_097MA"}, "S2504_C02_012E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!YEAR STRUCTURE BUILT!!1980 to 1999", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C02_012EA,S2504_C02_012M,S2504_C02_012MA"}, "S2602_C02_090E": {"label": "Estimate!!Total group quarters population!!OCCUPATION!!Civilian employed population 16 years and over!!Production, transportation, and material moving occupations", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C02_090EA,S2602_C02_090M,S2602_C02_090MA"}, "S0502PR_C02_133E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Occupied housing units!!ROOMS!!6 or 7 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_133EA,S0502PR_C02_133M,S0502PR_C02_133MA"}, "S0701_C04_043E": {"label": "Estimate!!Moved; from different state!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$25,000 to $34,999", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C04_043EA,S0701_C04_043M,S0701_C04_043MA"}, "S0502_C04_013E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Foreign-born population!!SEX AND AGE!!Under 5 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C04_013EA,S0502_C04_013M,S0502_C04_013MA"}, "S1702_C06_003E": {"label": "Estimate!!Percent below poverty level!!Female householder, no spouse present!!Families!!With related children of householder under 18 years!!With related children of householder under 5 years", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C06_003EA,S1702_C06_003M,S1702_C06_003MA"}, "S2413_C03_013E": {"label": "Estimate!!Median earnings (dollars) for female!!Civilian employed population 16 years and over with earnings!!Finance and insurance, and real estate and rental and leasing:", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C03_013EA,S2413_C03_013M,S2413_C03_013MA"}, "S0103PR_C02_103E": {"label": "Estimate!!65 years and over!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_103EA,S0103PR_C02_103M,S0103PR_C02_103MA"}, "S0504_C03_068E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Unpaid family workers", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_068EA,S0504_C03_068M,S0504_C03_068MA"}, "S0103_C02_092E": {"label": "Estimate!!65 years and over!!Occupied housing units!!HOUSING TENURE!!Average household size of renter-occupied unit", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C02_092EA,S0103_C02_092M,S0103_C02_092MA"}, "S0502_C04_070E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Civilian employed population 16 years and over!!OCCUPATION!!Management, business, science, and arts occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_070EA,S0502_C04_070M,S0502_C04_070MA"}, "S0506_C01_033E": {"label": "Estimate!!Total!!Foreign-born population!!HOUSEHOLD TYPE!!In other households", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_033EA,S0506_C01_033M,S0506_C01_033MA"}, "S0103_C02_090E": {"label": "Estimate!!65 years and over!!Occupied housing units!!HOUSING TENURE!!Renter-occupied housing units", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C02_090EA,S0103_C02_090M,S0103_C02_090MA"}, "S2413_C03_014E": {"label": "Estimate!!Median earnings (dollars) for female!!Civilian employed population 16 years and over with earnings!!Finance and insurance, and real estate and rental and leasing:!!Finance and insurance", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C03_014EA,S2413_C03_014M,S2413_C03_014MA"}, "S0103PR_C02_102E": {"label": "Estimate!!65 years and over!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_102EA,S0103PR_C02_102M,S0103PR_C02_102MA"}, "S0504_C03_067E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Self-employed workers in own not incorporated business", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_067EA,S0504_C03_067M,S0504_C03_067MA"}, "S0502_C04_071E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Civilian employed population 16 years and over!!OCCUPATION!!Service occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_071EA,S0502_C04_071M,S0502_C04_071MA"}, "S0506_C01_034E": {"label": "Estimate!!Total!!Foreign-born population!!Average household size", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_034EA,S0506_C01_034M,S0506_C01_034MA"}, "S0103_C02_091E": {"label": "Estimate!!65 years and over!!Occupied housing units!!HOUSING TENURE!!Average household size of owner-occupied unit", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C02_091EA,S0103_C02_091M,S0103_C02_091MA"}, "S0506_C01_035E": {"label": "Estimate!!Total!!Foreign-born population!!Average family size", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_035EA,S0506_C01_035M,S0506_C01_035MA"}, "S2413_C03_011E": {"label": "Estimate!!Median earnings (dollars) for female!!Civilian employed population 16 years and over with earnings!!Transportation and warehousing, and utilities:!!Utilities", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C03_011EA,S2413_C03_011M,S2413_C03_011MA"}, "S0103PR_C02_101E": {"label": "Estimate!!65 years and over!!Renter-occupied housing units", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_101EA,S0103PR_C02_101M,S0103PR_C02_101MA"}, "S0502_C04_072E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Civilian employed population 16 years and over!!OCCUPATION!!Sales and office occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_072EA,S0502_C04_072M,S0502_C04_072MA"}, "S0504_C03_066E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Government workers", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_066EA,S0504_C03_066M,S0504_C03_066MA"}, "S0103_C02_094E": {"label": "Estimate!!65 years and over!!Occupied housing units!!SELECTED CHARACTERISTICS!!1.01 or more occupants per room", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C02_094EA,S0103_C02_094M,S0103_C02_094MA"}, "S0506_C01_036E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C01_036EA,S0506_C01_036M,S0506_C01_036MA"}, "S2413_C03_012E": {"label": "Estimate!!Median earnings (dollars) for female!!Civilian employed population 16 years and over with earnings!!Information", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C03_012EA,S2413_C03_012M,S2413_C03_012MA"}, "S0103PR_C02_100E": {"label": "Estimate!!65 years and over!!Owner-occupied housing units!!OWNER CHARACTERISTICS!!Median selected monthly owner costs without a mortgage (dollars)", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_100EA,S0103PR_C02_100M,S0103PR_C02_100MA"}, "S0502_C04_073E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Civilian employed population 16 years and over!!OCCUPATION!!Natural resources, construction, and maintenance occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_073EA,S0502_C04_073M,S0502_C04_073MA"}, "S0504_C03_065E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Private wage and salary workers", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_065EA,S0504_C03_065M,S0504_C03_065MA"}, "S0103_C02_093E": {"label": "Estimate!!65 years and over!!Occupied housing units!!SELECTED CHARACTERISTICS!!No telephone service available", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C02_093EA,S0103_C02_093M,S0103_C02_093MA"}, "S2802_C03_022E": {"label": "Estimate!!Percent Broadband Internet Subscription!!With a computer!!Total population in households!!EMPLOYMENT STATUS!!Civilian population 16 years and over!!Not in labor force", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "float", "group": "S2802", "limit": 0, "attributes": "S2802_C03_022EA,S2802_C03_022M,S2802_C03_022MA"}, "S0506_C01_037E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_037EA,S0506_C01_037M,S0506_C01_037MA"}, "S2303_C03_001E": {"label": "Estimate!!Male!!Population 16 to 64 years", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C03_001EA,S2303_C03_001M,S2303_C03_001MA"}, "S0502_C04_074E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Civilian employed population 16 years and over!!OCCUPATION!!Production, transportation, and material moving occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_074EA,S0502_C04_074M,S0502_C04_074MA"}, "S0504_C03_064E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Civilian employed population 16 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C03_064EA,S0504_C03_064M,S0504_C03_064MA"}, "S0103_C02_096E": {"label": "Estimate!!65 years and over!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C02_096EA,S0103_C02_096M,S0103_C02_096MA"}, "S0102PR_C02_052E": {"label": "Estimate!!60 years and over!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different house in Puerto Rico or the United States!!In the United States", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_052EA,S0102PR_C02_052M,S0102PR_C02_052MA"}, "S0506_C01_038E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_038EA,S0506_C01_038M,S0506_C01_038MA"}, "S2413_C03_010E": {"label": "Estimate!!Median earnings (dollars) for female!!Civilian employed population 16 years and over with earnings!!Transportation and warehousing, and utilities:!!Transportation and warehousing", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C03_010EA,S2413_C03_010M,S2413_C03_010MA"}, "S0504_C03_063E": {"label": "Estimate!!Foreign-born; Born in Northern America!!EMPLOYMENT STATUS!!Population 16 years and over!!Not in labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_063EA,S0504_C03_063M,S0504_C03_063MA"}, "S0502_C04_075E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Civilian employed population 16 years and over!!INDUSTRY!!Agriculture, forestry, fishing and hunting, and mining", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_075EA,S0502_C04_075M,S0502_C04_075MA"}, "S0103_C02_095E": {"label": "Estimate!!65 years and over!!Owner-occupied housing units", "concept": "Population 65 Years and Over in the United States", "predicateType": "int", "group": "S0103", "limit": 0, "attributes": "S0103_C02_095EA,S0103_C02_095M,S0103_C02_095MA"}, "S0102PR_C02_053E": {"label": "Estimate!!60 years and over!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Elsewhere", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_053EA,S0102PR_C02_053M,S0102PR_C02_053MA"}, "S0506_C01_039E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over!!Divorced or separated", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_039EA,S0506_C01_039M,S0506_C01_039MA"}, "S2303_C03_003E": {"label": "Estimate!!Male!!Population 16 to 64 years!!WEEKS WORKED!!Worked 48 to 49 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C03_003EA,S2303_C03_003M,S2303_C03_003MA"}, "S0504_C03_062E": {"label": "Estimate!!Foreign-born; Born in Northern America!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Armed Forces", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_062EA,S0504_C03_062M,S0504_C03_062MA"}, "S0502_C04_076E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Civilian employed population 16 years and over!!INDUSTRY!!Construction", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_076EA,S0502_C04_076M,S0502_C04_076MA"}, "S0103_C02_098E": {"label": "Estimate!!65 years and over!!Owner-occupied housing units!!OWNER CHARACTERISTICS!!Median value (dollars)", "concept": "Population 65 Years and Over in the United States", "predicateType": "int", "group": "S0103", "limit": 0, "attributes": "S0103_C02_098EA,S0103_C02_098M,S0103_C02_098MA"}, "S0102PR_C02_050E": {"label": "Estimate!!60 years and over!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different house in Puerto Rico or the United States!!In Puerto Rico!!Same municipio", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_050EA,S0102PR_C02_050M,S0102PR_C02_050MA"}, "S2303_C03_002E": {"label": "Estimate!!Male!!Population 16 to 64 years!!WEEKS WORKED!!Worked 50 to 52 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C03_002EA,S2303_C03_002M,S2303_C03_002MA"}, "S0504_C03_061E": {"label": "Estimate!!Foreign-born; Born in Northern America!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed!!Percent of civilian labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_061EA,S0504_C03_061M,S0504_C03_061MA"}, "S0502_C04_077E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Civilian employed population 16 years and over!!INDUSTRY!!Manufacturing", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_077EA,S0502_C04_077M,S0502_C04_077MA"}, "S0103_C02_097E": {"label": "Estimate!!65 years and over!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C02_097EA,S0103_C02_097M,S0103_C02_097MA"}, "S0102PR_C02_051E": {"label": "Estimate!!60 years and over!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different house in Puerto Rico or the United States!!In Puerto Rico!!Different municipio", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_051EA,S0102PR_C02_051M,S0102PR_C02_051MA"}, "S0504_C03_060E": {"label": "Estimate!!Foreign-born; Born in Northern America!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_060EA,S0504_C03_060M,S0504_C03_060MA"}, "S0102PR_C02_056E": {"label": "Estimate!!60 years and over!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_056EA,S0102PR_C02_056M,S0102PR_C02_056MA"}, "S0102PR_C02_057E": {"label": "Estimate!!60 years and over!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Entered 2010 or later", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_057EA,S0102PR_C02_057M,S0102PR_C02_057MA"}, "S0102PR_C02_054E": {"label": "Estimate!!60 years and over!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_054EA,S0102PR_C02_054M,S0102PR_C02_054MA"}, "S0102PR_C02_055E": {"label": "Estimate!!60 years and over!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Native", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_055EA,S0102PR_C02_055M,S0102PR_C02_055MA"}, "S2802_C03_021E": {"label": "Estimate!!Percent Broadband Internet Subscription!!With a computer!!Total population in households!!EMPLOYMENT STATUS!!Civilian population 16 years and over!!In labor force!!Unemployed", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "float", "group": "S2802", "limit": 0, "attributes": "S2802_C03_021EA,S2802_C03_021M,S2802_C03_021MA"}, "S2802_C03_020E": {"label": "Estimate!!Percent Broadband Internet Subscription!!With a computer!!Total population in households!!EMPLOYMENT STATUS!!Civilian population 16 years and over!!In labor force!!Employed", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "float", "group": "S2802", "limit": 0, "attributes": "S2802_C03_020EA,S2802_C03_020M,S2802_C03_020MA"}, "S0506_C01_030E": {"label": "Estimate!!Total!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_030EA,S0506_C01_030M,S0506_C01_030MA"}, "S0102PR_C02_058E": {"label": "Estimate!!60 years and over!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Entered 2000 to 2009", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_058EA,S0102PR_C02_058M,S0102PR_C02_058MA"}, "S0506_C01_031E": {"label": "Estimate!!Total!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_031EA,S0506_C01_031M,S0506_C01_031MA"}, "S0102PR_C02_059E": {"label": "Estimate!!60 years and over!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Entered before 2000", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_059EA,S0102PR_C02_059M,S0102PR_C02_059MA"}, "S0506_C01_032E": {"label": "Estimate!!Total!!Foreign-born population!!HOUSEHOLD TYPE!!In married-couple family", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_032EA,S0506_C01_032M,S0506_C01_032MA"}, "S0502PR_C02_108E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income!!Mean retirement income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_108EA,S0502PR_C02_108M,S0502PR_C02_108MA"}, "S0502PR_C02_107E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_107EA,S0502PR_C02_107M,S0502PR_C02_107MA"}, "S0502PR_C02_109E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Food Stamp/SNAP benefits", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_109EA,S0502PR_C02_109M,S0502PR_C02_109MA"}, "S0502PR_C02_104E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income!!Mean Supplemental Security Income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_104EA,S0502PR_C02_104M,S0502PR_C02_104MA"}, "S1601_C05_024E": {"label": "Estimate!!Speak English less than \"very well\"!!Percent of specified language speakers!!CITIZENS 18 YEARS AND OVER!!All citizens 18 years old and over!!Speak a language other than English!!Other languages", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C05_024EA,S1601_C05_024M,S1601_C05_024MA"}, "S0502PR_C02_103E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_103EA,S0502PR_C02_103M,S0502PR_C02_103MA"}, "S1601_C05_023E": {"label": "Estimate!!Speak English less than \"very well\"!!Percent of specified language speakers!!CITIZENS 18 YEARS AND OVER!!All citizens 18 years old and over!!Speak a language other than English!!Spanish", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C05_023EA,S1601_C05_023M,S1601_C05_023MA"}, "S0502PR_C02_106E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income!!Mean cash public assistance income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_106EA,S0502PR_C02_106M,S0502PR_C02_106MA"}, "S0502PR_C02_105E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_105EA,S0502PR_C02_105M,S0502PR_C02_105MA"}, "S0506_C01_029E": {"label": "Estimate!!Total!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_029EA,S0506_C01_029M,S0506_C01_029MA"}, "S0502PR_C02_100E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings!!Mean earnings (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_100EA,S0502PR_C02_100M,S0502PR_C02_100MA"}, "S0502_C04_066E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Private wage and salary workers", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_066EA,S0502_C04_066M,S0502_C04_066MA"}, "S2413_C03_009E": {"label": "Estimate!!Median earnings (dollars) for female!!Civilian employed population 16 years and over with earnings!!Transportation and warehousing, and utilities:", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C03_009EA,S2413_C03_009M,S2413_C03_009MA"}, "S0103_C02_099E": {"label": "Estimate!!65 years and over!!Owner-occupied housing units!!OWNER CHARACTERISTICS!!Median selected monthly owner costs with a mortgage (dollars)", "concept": "Population 65 Years and Over in the United States", "predicateType": "int", "group": "S0103", "limit": 0, "attributes": "S0103_C02_099EA,S0103_C02_099M,S0103_C02_099MA"}, "S0502_C04_067E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Government workers", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_067EA,S0502_C04_067M,S0502_C04_067MA"}, "S0502PR_C02_102E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income!!Mean Social Security income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_102EA,S0502PR_C02_102M,S0502PR_C02_102MA"}, "S0502_C04_068E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Self-employed workers in own not incorporated business", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_068EA,S0502_C04_068M,S0502_C04_068MA"}, "S2413_C03_007E": {"label": "Estimate!!Median earnings (dollars) for female!!Civilian employed population 16 years and over with earnings!!Wholesale trade", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C03_007EA,S2413_C03_007M,S2413_C03_007MA"}, "S0502_C04_069E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Unpaid family workers", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_069EA,S0502_C04_069M,S0502_C04_069MA"}, "S0502PR_C02_101E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_101EA,S0502PR_C02_101M,S0502PR_C02_101MA"}, "S2413_C03_008E": {"label": "Estimate!!Median earnings (dollars) for female!!Civilian employed population 16 years and over with earnings!!Retail trade", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C03_008EA,S2413_C03_008M,S2413_C03_008MA"}, "S2413_C03_005E": {"label": "Estimate!!Median earnings (dollars) for female!!Civilian employed population 16 years and over with earnings!!Construction", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C03_005EA,S2413_C03_005M,S2413_C03_005MA"}, "S2413_C03_006E": {"label": "Estimate!!Median earnings (dollars) for female!!Civilian employed population 16 years and over with earnings!!Manufacturing", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C03_006EA,S2413_C03_006M,S2413_C03_006MA"}, "S2413_C03_003E": {"label": "Estimate!!Median earnings (dollars) for female!!Civilian employed population 16 years and over with earnings!!Agriculture, forestry, fishing and hunting, and mining:!!Agriculture, forestry, fishing and hunting", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C03_003EA,S2413_C03_003M,S2413_C03_003MA"}, "S2413_C03_004E": {"label": "Estimate!!Median earnings (dollars) for female!!Civilian employed population 16 years and over with earnings!!Agriculture, forestry, fishing and hunting, and mining:!!Mining, quarrying, and oil and gas extraction", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C03_004EA,S2413_C03_004M,S2413_C03_004MA"}, "S0103PR_C02_104E": {"label": "Estimate!!65 years and over!!Renter-occupied housing units!!GROSS RENT!!Median gross rent (dollars)", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_104EA,S0103PR_C02_104M,S0103PR_C02_104MA"}, "S0504_C03_069E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Civilian employed population 16 years and over!!OCCUPATION!!Management, business, science, and arts occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_069EA,S0504_C03_069M,S0504_C03_069MA"}, "S2413_C03_001E": {"label": "Estimate!!Median earnings (dollars) for female!!Civilian employed population 16 years and over with earnings", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C03_001EA,S2413_C03_001M,S2413_C03_001MA"}, "S1603_C04_010E": {"label": "Estimate!!Total!!Speak a language other than English at home!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population 5 years and over for whom poverty status is determined!!Below poverty level", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "int", "group": "S1603", "limit": 0, "attributes": "S1603_C04_010EA,S1603_C04_010M,S1603_C04_010MA"}, "S0102PR_C02_060E": {"label": "Estimate!!60 years and over!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Naturalized U.S. citizen", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_060EA,S0102PR_C02_060M,S0102PR_C02_060MA"}, "S2802_C03_013E": {"label": "Estimate!!Percent Broadband Internet Subscription!!With a computer!!Total population in households!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "float", "group": "S2802", "limit": 0, "attributes": "S2802_C03_013EA,S2802_C03_013M,S2802_C03_013MA"}, "S0506_C01_021E": {"label": "Estimate!!Total!!Foreign-born population!!SEX AND AGE!!Median age (years)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_021EA,S0506_C01_021M,S0506_C01_021MA"}, "S0502_C04_082E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Civilian employed population 16 years and over!!INDUSTRY!!Finance and insurance, and real estate and rental and leasing", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_082EA,S0502_C04_082M,S0502_C04_082MA"}, "S0103_C02_080E": {"label": "Estimate!!65 years and over!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income!!Mean cash public assistance income (dollars)", "concept": "Population 65 Years and Over in the United States", "predicateType": "int", "group": "S0103", "limit": 0, "attributes": "S0103_C02_080EA,S0103_C02_080M,S0103_C02_080MA"}, "S2413_C03_002E": {"label": "Estimate!!Median earnings (dollars) for female!!Civilian employed population 16 years and over with earnings!!Agriculture, forestry, fishing and hunting, and mining:", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C03_002EA,S2413_C03_002M,S2413_C03_002MA"}, "S0504_C03_079E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Civilian employed population 16 years and over!!INDUSTRY!!Transportation and warehousing, and utilities", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_079EA,S0504_C03_079M,S0504_C03_079MA"}, "S0502_C04_083E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Civilian employed population 16 years and over!!INDUSTRY!!Professional, scientific, and management, and administrative and waste management services", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_083EA,S0502_C04_083M,S0502_C04_083MA"}, "S1603_C04_011E": {"label": "Estimate!!Total!!Speak a language other than English at home!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population 5 years and over for whom poverty status is determined!!At or above poverty level", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "int", "group": "S1603", "limit": 0, "attributes": "S1603_C04_011EA,S1603_C04_011M,S1603_C04_011MA"}, "S2802_C03_012E": {"label": "Estimate!!Percent Broadband Internet Subscription!!With a computer!!Total population in households!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "float", "group": "S2802", "limit": 0, "attributes": "S2802_C03_012EA,S2802_C03_012M,S2802_C03_012MA"}, "S0102PR_C02_061E": {"label": "Estimate!!60 years and over!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Not a U.S. citizen", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_061EA,S0102PR_C02_061M,S0102PR_C02_061MA"}, "S0506_C01_022E": {"label": "Estimate!!Total!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_022EA,S0506_C01_022M,S0506_C01_022MA"}, "S2303_C03_011E": {"label": "Estimate!!Male!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 35 or more hours per week!!48 to 49 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C03_011EA,S2303_C03_011M,S2303_C03_011MA"}, "S0502_C04_084E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Civilian employed population 16 years and over!!INDUSTRY!!Educational services, and health care and social assistance", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_084EA,S0502_C04_084M,S0502_C04_084MA"}, "S0504_C03_078E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Civilian employed population 16 years and over!!INDUSTRY!!Retail trade", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_078EA,S0504_C03_078M,S0504_C03_078MA"}, "S1603_C04_012E": {"label": "Estimate!!Total!!Speak a language other than English at home!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "int", "group": "S1603", "limit": 0, "attributes": "S1603_C04_012EA,S1603_C04_012M,S1603_C04_012MA"}, "S0103_C02_082E": {"label": "Estimate!!65 years and over!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income!!Mean retirement income (dollars)", "concept": "Population 65 Years and Over in the United States", "predicateType": "int", "group": "S0103", "limit": 0, "attributes": "S0103_C02_082EA,S0103_C02_082M,S0103_C02_082MA"}, "S2802_C03_011E": {"label": "Estimate!!Percent Broadband Internet Subscription!!With a computer!!Total population in households!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "float", "group": "S2802", "limit": 0, "attributes": "S2802_C03_011EA,S2802_C03_011M,S2802_C03_011MA"}, "S0506_C01_023E": {"label": "Estimate!!Total!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_023EA,S0506_C01_023M,S0506_C01_023MA"}, "S0506_C01_024E": {"label": "Estimate!!Total!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_024EA,S0506_C01_024M,S0506_C01_024MA"}, "S2303_C03_010E": {"label": "Estimate!!Male!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 35 or more hours per week!!50 to 52 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C03_010EA,S2303_C03_010M,S2303_C03_010MA"}, "S1603_C04_013E": {"label": "Estimate!!Total!!Speak a language other than English at home!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than high school graduate", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "int", "group": "S1603", "limit": 0, "attributes": "S1603_C04_013EA,S1603_C04_013M,S1603_C04_013MA"}, "S0501_C01_001E": {"label": "Estimate!!Total!!Total population", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C01_001EA,S0501_C01_001M,S0501_C01_001MA"}, "S0502_C04_085E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Civilian employed population 16 years and over!!INDUSTRY!!Arts, entertainment, and recreation, and accommodation and food services", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_085EA,S0502_C04_085M,S0502_C04_085MA"}, "S0504_C03_077E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Civilian employed population 16 years and over!!INDUSTRY!!Wholesale trade", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_077EA,S0504_C03_077M,S0504_C03_077MA"}, "S0103_C02_081E": {"label": "Estimate!!65 years and over!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C02_081EA,S0103_C02_081M,S0103_C02_081MA"}, "S2802_C03_010E": {"label": "Estimate!!Percent Broadband Internet Subscription!!With a computer!!Total population in households!!RACE AND HISPANIC OR LATINO ORIGIN!!Some other race alone", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "float", "group": "S2802", "limit": 0, "attributes": "S2802_C03_010EA,S2802_C03_010M,S2802_C03_010MA"}, "S2802_C03_017E": {"label": "Estimate!!Percent Broadband Internet Subscription!!With a computer!!Total population in households!!EDUCATIONAL ATTAINMENT!!Household population 25 years and over!!Bachelor's degree or higher", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "float", "group": "S2802", "limit": 0, "attributes": "S2802_C03_017EA,S2802_C03_017M,S2802_C03_017MA"}, "S0506_C01_025E": {"label": "Estimate!!Total!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_025EA,S0506_C01_025M,S0506_C01_025MA"}, "S2303_C03_013E": {"label": "Estimate!!Male!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 35 or more hours per week!!27 to 39 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C03_013EA,S2303_C03_013M,S2303_C03_013MA"}, "S0502_C04_086E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Civilian employed population 16 years and over!!INDUSTRY!!Other services (except public administration)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_086EA,S0502_C04_086M,S0502_C04_086MA"}, "S0504_C03_076E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Civilian employed population 16 years and over!!INDUSTRY!!Manufacturing", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_076EA,S0504_C03_076M,S0504_C03_076MA"}, "S0103_C02_084E": {"label": "Estimate!!65 years and over!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined", "concept": "Population 65 Years and Over in the United States", "predicateType": "int", "group": "S0103", "limit": 0, "attributes": "S0103_C02_084EA,S0103_C02_084M,S0103_C02_084MA"}, "S0102PR_C02_064E": {"label": "Estimate!!60 years and over!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_064EA,S0102PR_C02_064M,S0102PR_C02_064MA"}, "S2802_C03_016E": {"label": "Estimate!!Percent Broadband Internet Subscription!!With a computer!!Total population in households!!EDUCATIONAL ATTAINMENT!!Household population 25 years and over!!High school graduate (includes equivalency), some college or associate's degree", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "float", "group": "S2802", "limit": 0, "attributes": "S2802_C03_016EA,S2802_C03_016M,S2802_C03_016MA"}, "S0506_C01_026E": {"label": "Estimate!!Total!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_026EA,S0506_C01_026M,S0506_C01_026MA"}, "S2303_C03_012E": {"label": "Estimate!!Male!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 35 or more hours per week!!40 to 47 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C03_012EA,S2303_C03_012M,S2303_C03_012MA"}, "S0102PR_C02_065E": {"label": "Estimate!!60 years and over!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English!!Speak English less than \"very well\"", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_065EA,S0102PR_C02_065M,S0102PR_C02_065MA"}, "S0502_C04_087E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Civilian employed population 16 years and over!!INDUSTRY!!Public administration", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_087EA,S0502_C04_087M,S0502_C04_087MA"}, "S0504_C03_075E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Civilian employed population 16 years and over!!INDUSTRY!!Construction", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_075EA,S0504_C03_075M,S0504_C03_075MA"}, "S0103_C02_083E": {"label": "Estimate!!65 years and over!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Food Stamp/SNAP benefits", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C02_083EA,S0103_C02_083M,S0103_C02_083MA"}, "S2802_C03_015E": {"label": "Estimate!!Percent Broadband Internet Subscription!!With a computer!!Total population in households!!EDUCATIONAL ATTAINMENT!!Household population 25 years and over!!Less than high school graduate or equivalency", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "float", "group": "S2802", "limit": 0, "attributes": "S2802_C03_015EA,S2802_C03_015M,S2802_C03_015MA"}, "S0506_C01_027E": {"label": "Estimate!!Total!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_027EA,S0506_C01_027M,S0506_C01_027MA"}, "S2303_C03_015E": {"label": "Estimate!!Male!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 35 or more hours per week!!1 to 13 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C03_015EA,S2303_C03_015M,S2303_C03_015MA"}, "S0504_C03_074E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Civilian employed population 16 years and over!!INDUSTRY!!Agriculture, forestry, fishing and hunting, and mining", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_074EA,S0504_C03_074M,S0504_C03_074MA"}, "S0502_C04_088E": {"label": "Estimate!!Foreign-born; Entered before 2000!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C04_088EA,S0502_C04_088M,S0502_C04_088MA"}, "S0103_C02_086E": {"label": "Estimate!!65 years and over!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!100 to 149 percent of the poverty level", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C02_086EA,S0103_C02_086M,S0103_C02_086MA"}, "S0102PR_C02_062E": {"label": "Estimate!!60 years and over!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_062EA,S0102PR_C02_062M,S0102PR_C02_062MA"}, "S2802_C03_014E": {"label": "Estimate!!Percent Broadband Internet Subscription!!With a computer!!Total population in households!!EDUCATIONAL ATTAINMENT!!Household population 25 years and over", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "float", "group": "S2802", "limit": 0, "attributes": "S2802_C03_014EA,S2802_C03_014M,S2802_C03_014MA"}, "S0506_C01_028E": {"label": "Estimate!!Total!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_028EA,S0506_C01_028M,S0506_C01_028MA"}, "S2303_C03_014E": {"label": "Estimate!!Male!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 35 or more hours per week!!14 to 26 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C03_014EA,S2303_C03_014M,S2303_C03_014MA"}, "S0504_C03_073E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Civilian employed population 16 years and over!!OCCUPATION!!Production, transportation, and material moving occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_073EA,S0504_C03_073M,S0504_C03_073MA"}, "S0502_C04_089E": {"label": "Estimate!!Foreign-born; Entered before 2000!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$1 to $9,999 or loss", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_089EA,S0502_C04_089M,S0502_C04_089MA"}, "S0103_C02_085E": {"label": "Estimate!!65 years and over!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!Below 100 percent of the poverty level", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C02_085EA,S0103_C02_085M,S0103_C02_085MA"}, "S0102PR_C02_063E": {"label": "Estimate!!60 years and over!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!English only", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_063EA,S0102PR_C02_063M,S0102PR_C02_063MA"}, "S0504_C03_072E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Civilian employed population 16 years and over!!OCCUPATION!!Natural resources, construction, and maintenance occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_072EA,S0504_C03_072M,S0504_C03_072MA"}, "S1601_C05_020E": {"label": "Estimate!!Speak English less than \"very well\"!!Percent of specified language speakers!!CITIZENS 18 YEARS AND OVER!!All citizens 18 years old and over", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C05_020EA,S1601_C05_020M,S1601_C05_020MA"}, "S0102PR_C02_068E": {"label": "Estimate!!60 years and over!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_068EA,S0102PR_C02_068M,S0102PR_C02_068MA"}, "S0504_C03_071E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Civilian employed population 16 years and over!!OCCUPATION!!Sales and office occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_071EA,S0504_C03_071M,S0504_C03_071MA"}, "S0102PR_C02_069E": {"label": "Estimate!!60 years and over!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Employed", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_069EA,S0102PR_C02_069M,S0102PR_C02_069MA"}, "S0102PR_C02_066E": {"label": "Estimate!!60 years and over!!EMPLOYMENT STATUS!!Population 16 years and over", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_066EA,S0102PR_C02_066M,S0102PR_C02_066MA"}, "S1601_C05_022E": {"label": "Estimate!!Speak English less than \"very well\"!!Percent of specified language speakers!!CITIZENS 18 YEARS AND OVER!!All citizens 18 years old and over!!Speak a language other than English", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C05_022EA,S1601_C05_022M,S1601_C05_022MA"}, "S0504_C03_070E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Civilian employed population 16 years and over!!OCCUPATION!!Service occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_070EA,S0504_C03_070M,S0504_C03_070MA"}, "S0102PR_C02_067E": {"label": "Estimate!!60 years and over!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_067EA,S0102PR_C02_067M,S0102PR_C02_067MA"}, "S1601_C05_021E": {"label": "Estimate!!Speak English less than \"very well\"!!Percent of specified language speakers!!CITIZENS 18 YEARS AND OVER!!All citizens 18 years old and over!!Speak only English", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C05_021EA,S1601_C05_021M,S1601_C05_021MA"}, "S0502_C04_080E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Civilian employed population 16 years and over!!INDUSTRY!!Transportation and warehousing, and utilities", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_080EA,S0502_C04_080M,S0502_C04_080MA"}, "S0506_C01_020E": {"label": "Estimate!!Total!!Foreign-born population!!SEX AND AGE!!85 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_020EA,S0506_C01_020M,S0506_C01_020MA"}, "S0502_C04_081E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Civilian employed population 16 years and over!!INDUSTRY!!Information", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_081EA,S0502_C04_081M,S0502_C04_081MA"}, "S1601_C05_016E": {"label": "Estimate!!Speak English less than \"very well\"!!Percent of specified language speakers!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Other languages", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C05_016EA,S1601_C05_016M,S1601_C05_016MA"}, "S1601_C05_015E": {"label": "Estimate!!Speak English less than \"very well\"!!Percent of specified language speakers!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Asian and Pacific Island languages!!65 years old and over", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C05_015EA,S1601_C05_015M,S1601_C05_015MA"}, "S0502PR_C02_119E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_119EA,S0502PR_C02_119M,S0502PR_C02_119MA"}, "S1601_C05_018E": {"label": "Estimate!!Speak English less than \"very well\"!!Percent of specified language speakers!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Other languages!!18 to 64 years old", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C05_018EA,S1601_C05_018M,S1601_C05_018MA"}, "S1601_C05_017E": {"label": "Estimate!!Speak English less than \"very well\"!!Percent of specified language speakers!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Other languages!!5 to 17 years old", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C05_017EA,S1601_C05_017M,S1601_C05_017MA"}, "S0502PR_C02_116E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_116EA,S0502PR_C02_116M,S0502PR_C02_116MA"}, "S1601_C05_012E": {"label": "Estimate!!Speak English less than \"very well\"!!Percent of specified language speakers!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Asian and Pacific Island languages", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C05_012EA,S1601_C05_012M,S1601_C05_012MA"}, "S0502PR_C02_115E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!At or above 200 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_115EA,S0502PR_C02_115M,S0502PR_C02_115MA"}, "S1601_C05_011E": {"label": "Estimate!!Speak English less than \"very well\"!!Percent of specified language speakers!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Other Indo-European languages!!65 years old and over", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C05_011EA,S1601_C05_011M,S1601_C05_011MA"}, "S1601_C05_014E": {"label": "Estimate!!Speak English less than \"very well\"!!Percent of specified language speakers!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Asian and Pacific Island languages!!18 to 64 years old", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C05_014EA,S1601_C05_014M,S1601_C05_014MA"}, "S0502PR_C02_118E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_118EA,S0502PR_C02_118M,S0502PR_C02_118MA"}, "S0502PR_C02_117E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_117EA,S0502PR_C02_117M,S0502PR_C02_117MA"}, "S1601_C05_013E": {"label": "Estimate!!Speak English less than \"very well\"!!Percent of specified language speakers!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Asian and Pacific Island languages!!5 to 17 years old", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C05_013EA,S1601_C05_013M,S1601_C05_013MA"}, "S0506_C01_017E": {"label": "Estimate!!Total!!Foreign-born population!!SEX AND AGE!!55 to 64 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_017EA,S0506_C01_017M,S0506_C01_017MA"}, "S0501_C01_006E": {"label": "Estimate!!Total!!Total population!!SEX AND AGE!!18 to 24 years", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_006EA,S0501_C01_006M,S0501_C01_006MA"}, "S0502PR_C02_112E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_112EA,S0502PR_C02_112M,S0502PR_C02_112MA"}, "S2303_C03_005E": {"label": "Estimate!!Male!!Population 16 to 64 years!!WEEKS WORKED!!Worked 27 to 39 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C03_005EA,S2303_C03_005M,S2303_C03_005MA"}, "S0103_C02_088E": {"label": "Estimate!!65 years and over!!Occupied housing units", "concept": "Population 65 Years and Over in the United States", "predicateType": "int", "group": "S0103", "limit": 0, "attributes": "S0103_C02_088EA,S0103_C02_088M,S0103_C02_088MA"}, "S0502_C04_078E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Civilian employed population 16 years and over!!INDUSTRY!!Wholesale trade", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_078EA,S0502_C04_078M,S0502_C04_078MA"}, "S0506_C01_018E": {"label": "Estimate!!Total!!Foreign-born population!!SEX AND AGE!!65 to 74 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_018EA,S0506_C01_018M,S0506_C01_018MA"}, "S2303_C03_004E": {"label": "Estimate!!Male!!Population 16 to 64 years!!WEEKS WORKED!!Worked 40 to 47 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C03_004EA,S2303_C03_004M,S2303_C03_004MA"}, "S0502PR_C02_111E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!Average number of workers per household", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_111EA,S0502PR_C02_111M,S0502PR_C02_111MA"}, "S0501_C01_007E": {"label": "Estimate!!Total!!Total population!!SEX AND AGE!!25 to 44 years", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_007EA,S0501_C01_007M,S0501_C01_007MA"}, "S0502_C04_079E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Civilian employed population 16 years and over!!INDUSTRY!!Retail trade", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_079EA,S0502_C04_079M,S0502_C04_079MA"}, "S0103_C02_087E": {"label": "Estimate!!65 years and over!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!At or above 150 percent of the poverty level", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C02_087EA,S0103_C02_087M,S0103_C02_087MA"}, "S2802_C03_019E": {"label": "Estimate!!Percent Broadband Internet Subscription!!With a computer!!Total population in households!!EMPLOYMENT STATUS!!Civilian population 16 years and over!!In labor force", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "float", "group": "S2802", "limit": 0, "attributes": "S2802_C03_019EA,S2802_C03_019M,S2802_C03_019MA"}, "S0506_C01_019E": {"label": "Estimate!!Total!!Foreign-born population!!SEX AND AGE!!75 to 84 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_019EA,S0506_C01_019M,S0506_C01_019MA"}, "S0501_C01_008E": {"label": "Estimate!!Total!!Total population!!SEX AND AGE!!45 to 54 years", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_008EA,S0501_C01_008M,S0501_C01_008MA"}, "S0502PR_C02_114E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!100 to 199 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_114EA,S0502PR_C02_114M,S0502PR_C02_114MA"}, "S2303_C03_007E": {"label": "Estimate!!Male!!Population 16 to 64 years!!WEEKS WORKED!!Worked 1 to 13 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C03_007EA,S2303_C03_007M,S2303_C03_007MA"}, "S2802_C03_018E": {"label": "Estimate!!Percent Broadband Internet Subscription!!With a computer!!Total population in households!!EMPLOYMENT STATUS!!Civilian population 16 years and over", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "float", "group": "S2802", "limit": 0, "attributes": "S2802_C03_018EA,S2802_C03_018M,S2802_C03_018MA"}, "S2303_C03_006E": {"label": "Estimate!!Male!!Population 16 to 64 years!!WEEKS WORKED!!Worked 14 to 26 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C03_006EA,S2303_C03_006M,S2303_C03_006MA"}, "S0502PR_C02_113E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!Below 100 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_113EA,S0502PR_C02_113M,S0502PR_C02_113MA"}, "S0501_C01_009E": {"label": "Estimate!!Total!!Total population!!SEX AND AGE!!55 to 64 years", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_009EA,S0501_C01_009M,S0501_C01_009MA"}, "S0103_C02_089E": {"label": "Estimate!!65 years and over!!Occupied housing units!!HOUSING TENURE!!Owner-occupied housing units", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C02_089EA,S0103_C02_089M,S0103_C02_089MA"}, "S1603_C04_014E": {"label": "Estimate!!Total!!Speak a language other than English at home!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate (includes equivalency)", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "int", "group": "S1603", "limit": 0, "attributes": "S1603_C04_014EA,S1603_C04_014M,S1603_C04_014MA"}, "S0501_C01_002E": {"label": "Estimate!!Total!!Total population!!SEX AND AGE!!Male", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_002EA,S0501_C01_002M,S0501_C01_002MA"}, "S2303_C03_009E": {"label": "Estimate!!Male!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 35 or more hours per week", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C03_009EA,S2303_C03_009M,S2303_C03_009MA"}, "S2403_C01_027E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Public administration", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C01_027EA,S2403_C01_027M,S2403_C01_027MA"}, "S1603_C04_015E": {"label": "Estimate!!Total!!Speak a language other than English at home!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college or associate's degree", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "int", "group": "S1603", "limit": 0, "attributes": "S1603_C04_015EA,S1603_C04_015M,S1603_C04_015MA"}, "S1601_C05_019E": {"label": "Estimate!!Speak English less than \"very well\"!!Percent of specified language speakers!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Other languages!!65 years old and over", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C05_019EA,S1601_C05_019M,S1601_C05_019MA"}, "S0501_C01_003E": {"label": "Estimate!!Total!!Total population!!SEX AND AGE!!Female", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_003EA,S0501_C01_003M,S0501_C01_003MA"}, "S2303_C03_008E": {"label": "Estimate!!Male!!Population 16 to 64 years!!WEEKS WORKED!!Did not work", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C03_008EA,S2303_C03_008M,S2303_C03_008MA"}, "S1603_C04_016E": {"label": "Estimate!!Total!!Speak a language other than English at home!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree or higher", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "int", "group": "S1603", "limit": 0, "attributes": "S1603_C04_016EA,S1603_C04_016M,S1603_C04_016MA"}, "S0501_C01_004E": {"label": "Estimate!!Total!!Total population!!SEX AND AGE!!Under 5 years", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_004EA,S0501_C01_004M,S0501_C01_004MA"}, "S0502PR_C02_110E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!Median Household income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_110EA,S0502PR_C02_110M,S0502PR_C02_110MA"}, "S0501_C01_005E": {"label": "Estimate!!Total!!Total population!!SEX AND AGE!!5 to 17 years", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_005EA,S0501_C01_005M,S0501_C01_005MA"}, "S0506_C01_057E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_057EA,S0506_C01_057M,S0506_C01_057MA"}, "S0501_C01_010E": {"label": "Estimate!!Total!!Total population!!SEX AND AGE!!65 to 74 years", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_010EA,S0501_C01_010M,S0501_C01_010MA"}, "S2403_C01_023E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Arts, entertainment, and recreation, and accommodation and food services:", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C01_023EA,S2403_C01_023M,S2403_C01_023MA"}, "S2802_C03_001E": {"label": "Estimate!!Percent Broadband Internet Subscription!!With a computer!!Total population in households", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "float", "group": "S2802", "limit": 0, "attributes": "S2802_C03_001EA,S2802_C03_001M,S2802_C03_001MA"}, "S0102PR_C02_072E": {"label": "Estimate!!60 years and over!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Armed forces", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_072EA,S0102PR_C02_072M,S0102PR_C02_072MA"}, "S1502_C03_009E": {"label": "Estimate!!Male!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!25 to 39 years!!Science and Engineering Related Fields", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C03_009EA,S1502_C03_009M,S1502_C03_009MA"}, "S0506_C01_058E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_058EA,S0506_C01_058M,S0506_C01_058MA"}, "S0501_C01_011E": {"label": "Estimate!!Total!!Total population!!SEX AND AGE!!75 to 84 years", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_011EA,S0501_C01_011M,S0501_C01_011MA"}, "S2403_C01_024E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Arts, entertainment, and recreation, and accommodation and food services:!!Arts, entertainment, and recreation", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C01_024EA,S2403_C01_024M,S2403_C01_024MA"}, "S0102PR_C02_073E": {"label": "Estimate!!60 years and over!!EMPLOYMENT STATUS!!Population 16 years and over!!Not in labor force", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_073EA,S0102PR_C02_073M,S0102PR_C02_073MA"}, "S0506_C01_059E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Employed", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_059EA,S0506_C01_059M,S0506_C01_059MA"}, "S0501_C01_012E": {"label": "Estimate!!Total!!Total population!!SEX AND AGE!!85 years and over", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_012EA,S0501_C01_012M,S0501_C01_012MA"}, "S2403_C01_025E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Arts, entertainment, and recreation, and accommodation and food services:!!Accommodation and food services", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C01_025EA,S2403_C01_025M,S2403_C01_025MA"}, "S1502_C03_007E": {"label": "Estimate!!Male!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!25 to 39 years", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C03_007EA,S1502_C03_007M,S1502_C03_007MA"}, "S0102PR_C02_070E": {"label": "Estimate!!60 years and over!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_070EA,S0102PR_C02_070M,S0102PR_C02_070MA"}, "S0103_C02_070E": {"label": "Estimate!!65 years and over!!EMPLOYMENT STATUS!!Civilian population 16 years and over!!In labor force!!Unemployed!!Percent of civilian labor force", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C02_070EA,S0103_C02_070M,S0103_C02_070MA"}, "S0501_C01_013E": {"label": "Estimate!!Total!!Total population!!SEX AND AGE!!Median age (years)", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_013EA,S0501_C01_013M,S0501_C01_013MA"}, "S0504_C03_089E": {"label": "Estimate!!Foreign-born; Born in Northern America!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$10,000 to $14,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_089EA,S0504_C03_089M,S0504_C03_089MA"}, "S2403_C01_026E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Other services, except public administration", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C01_026EA,S2403_C01_026M,S2403_C01_026MA"}, "S1502_C03_008E": {"label": "Estimate!!Male!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!25 to 39 years!!Science and Engineering", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C03_008EA,S1502_C03_008M,S1502_C03_008MA"}, "S0102PR_C02_071E": {"label": "Estimate!!60 years and over!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed!!Percent of civilian labor force", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_071EA,S0102PR_C02_071M,S0102PR_C02_071MA"}, "S2802_C03_005E": {"label": "Estimate!!Percent Broadband Internet Subscription!!With a computer!!Total population in households!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "float", "group": "S2802", "limit": 0, "attributes": "S2802_C03_005EA,S2802_C03_005M,S2802_C03_005MA"}, "S0102PR_C02_076E": {"label": "Estimate!!60 years and over!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings!!Mean earnings (dollars)", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_076EA,S0102PR_C02_076M,S0102PR_C02_076MA"}, "S0502_C04_050E": {"label": "Estimate!!Foreign-born; Entered before 2000!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college or associate's degree", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_050EA,S0502_C04_050M,S0502_C04_050MA"}, "S0504_C03_088E": {"label": "Estimate!!Foreign-born; Born in Northern America!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$1 to $9,999 or loss", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_088EA,S0504_C03_088M,S0504_C03_088MA"}, "S1502_C03_005E": {"label": "Estimate!!Male!!Total population 25 years and over with a Bachelor's degree or higher!!Education", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C03_005EA,S1502_C03_005M,S1502_C03_005MA"}, "S0103_C02_072E": {"label": "Estimate!!65 years and over!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households", "concept": "Population 65 Years and Over in the United States", "predicateType": "int", "group": "S0103", "limit": 0, "attributes": "S0103_C02_072EA,S0103_C02_072M,S0103_C02_072MA"}, "S2802_C03_004E": {"label": "Estimate!!Percent Broadband Internet Subscription!!With a computer!!Total population in households!!AGE!!65 years and over", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "float", "group": "S2802", "limit": 0, "attributes": "S2802_C03_004EA,S2802_C03_004M,S2802_C03_004MA"}, "S0502_C04_051E": {"label": "Estimate!!Foreign-born; Entered before 2000!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_051EA,S0502_C04_051M,S0502_C04_051MA"}, "S0102PR_C02_077E": {"label": "Estimate!!60 years and over!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_077EA,S0102PR_C02_077M,S0102PR_C02_077MA"}, "S0504_C03_087E": {"label": "Estimate!!Foreign-born; Born in Northern America!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C03_087EA,S0504_C03_087M,S0504_C03_087MA"}, "S1502_C03_006E": {"label": "Estimate!!Male!!Total population 25 years and over with a Bachelor's degree or higher!!Arts, Humanities, and Others", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C03_006EA,S1502_C03_006M,S1502_C03_006MA"}, "S1251_C03_009E": {"label": "Estimate!!Female!!Married in the last 12 months!!POVERTY STATUS IN PAST 12 MONTHS!!Population for whom poverty status is determined!!Below poverty", "concept": "Characteristics of People With a Marital Event in the Last 12 Months", "predicateType": "float", "group": "S1251", "limit": 0, "attributes": "S1251_C03_009EA,S1251_C03_009M,S1251_C03_009MA"}, "S0103_C02_071E": {"label": "Estimate!!65 years and over!!EMPLOYMENT STATUS!!Civilian population 16 years and over!!Not in labor force", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C02_071EA,S0103_C02_071M,S0103_C02_071MA"}, "S2403_C01_020E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Educational services, and health care and social assistance:", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C01_020EA,S2403_C01_020M,S2403_C01_020MA"}, "S2802_C03_003E": {"label": "Estimate!!Percent Broadband Internet Subscription!!With a computer!!Total population in households!!AGE!!18 to 64 years", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "float", "group": "S2802", "limit": 0, "attributes": "S2802_C03_003EA,S2802_C03_003M,S2802_C03_003MA"}, "S1502_C03_003E": {"label": "Estimate!!Male!!Total population 25 years and over with a Bachelor's degree or higher!!Science and Engineering Related Fields", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C03_003EA,S1502_C03_003M,S1502_C03_003MA"}, "S0502_C04_052E": {"label": "Estimate!!Foreign-born; Entered before 2000!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Graduate or professional degree", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_052EA,S0502_C04_052M,S0502_C04_052MA"}, "S0504_C03_086E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Civilian employed population 16 years and over!!INDUSTRY!!Public administration", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_086EA,S0504_C03_086M,S0504_C03_086MA"}, "S0103_C02_074E": {"label": "Estimate!!65 years and over!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings!!Mean earnings (dollars)", "concept": "Population 65 Years and Over in the United States", "predicateType": "int", "group": "S0103", "limit": 0, "attributes": "S0103_C02_074EA,S0103_C02_074M,S0103_C02_074MA"}, "S1251_C03_008E": {"label": "Estimate!!Female!!Married in the last 12 months!!POVERTY STATUS IN PAST 12 MONTHS!!Population for whom poverty status is determined", "concept": "Characteristics of People With a Marital Event in the Last 12 Months", "predicateType": "int", "group": "S1251", "limit": 0, "attributes": "S1251_C03_008EA,S1251_C03_008M,S1251_C03_008MA"}, "S2403_C01_021E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Educational services, and health care and social assistance:!!Educational services", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C01_021EA,S2403_C01_021M,S2403_C01_021MA"}, "S0102PR_C02_074E": {"label": "Estimate!!60 years and over!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_074EA,S0102PR_C02_074M,S0102PR_C02_074MA"}, "S1502_C03_004E": {"label": "Estimate!!Male!!Total population 25 years and over with a Bachelor's degree or higher!!Business", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C03_004EA,S1502_C03_004M,S1502_C03_004MA"}, "S0504_C03_085E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Civilian employed population 16 years and over!!INDUSTRY!!Other services (except public administration)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_085EA,S0504_C03_085M,S0504_C03_085MA"}, "S2403_C01_022E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Educational services, and health care and social assistance:!!Health care and social assistance", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C01_022EA,S2403_C01_022M,S2403_C01_022MA"}, "S0502_C04_053E": {"label": "Estimate!!Foreign-born; Entered before 2000!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C04_053EA,S0502_C04_053M,S0502_C04_053MA"}, "S1251_C03_007E": {"label": "Estimate!!Female!!Married in the last 12 months!!LABOR FORCE PARTICIPATION!!Population 16 years and over!!Not in labor force", "concept": "Characteristics of People With a Marital Event in the Last 12 Months", "predicateType": "float", "group": "S1251", "limit": 0, "attributes": "S1251_C03_007EA,S1251_C03_007M,S1251_C03_007MA"}, "S0103_C02_073E": {"label": "Estimate!!65 years and over!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C02_073EA,S0103_C02_073M,S0103_C02_073MA"}, "S2802_C03_002E": {"label": "Estimate!!Percent Broadband Internet Subscription!!With a computer!!Total population in households!!AGE!!Under 18 years", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "float", "group": "S2802", "limit": 0, "attributes": "S2802_C03_002EA,S2802_C03_002M,S2802_C03_002MA"}, "S0102PR_C02_075E": {"label": "Estimate!!60 years and over!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_075EA,S0102PR_C02_075M,S0102PR_C02_075MA"}, "S1502_C03_001E": {"label": "Estimate!!Male!!Total population 25 years and over with a Bachelor's degree or higher", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C03_001EA,S1502_C03_001M,S1502_C03_001MA"}, "S0504_C03_084E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Civilian employed population 16 years and over!!INDUSTRY!!Arts, entertainment, and recreation, and accommodation and food services", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_084EA,S0504_C03_084M,S0504_C03_084MA"}, "S1502_C03_002E": {"label": "Estimate!!Male!!Total population 25 years and over with a Bachelor's degree or higher!!Science and Engineering", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C03_002EA,S1502_C03_002M,S1502_C03_002MA"}, "S0504_C03_083E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Civilian employed population 16 years and over!!INDUSTRY!!Educational services, and health care and social assistance", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_083EA,S0504_C03_083M,S0504_C03_083MA"}, "S0506_C01_050E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_050EA,S0506_C01_050M,S0506_C01_050MA"}, "S0504_C03_082E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Civilian employed population 16 years and over!!INDUSTRY!!Professional, scientific, and management, and administrative and waste management services", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_082EA,S0504_C03_082M,S0504_C03_082MA"}, "S0102PR_C02_078E": {"label": "Estimate!!60 years and over!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income!!Mean Social Security income (dollars)", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_078EA,S0102PR_C02_078M,S0102PR_C02_078MA"}, "S1601_C05_010E": {"label": "Estimate!!Speak English less than \"very well\"!!Percent of specified language speakers!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Other Indo-European languages!!18 to 64 years old", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C05_010EA,S1601_C05_010M,S1601_C05_010MA"}, "S0506_C01_051E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Graduate or professional degree", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_051EA,S0506_C01_051M,S0506_C01_051MA"}, "S2703_C01_001E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2703", "limit": 0, "attributes": "S2703_C01_001EA,S2703_C01_001M,S2703_C01_001MA"}, "S0102PR_C02_079E": {"label": "Estimate!!60 years and over!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_079EA,S0102PR_C02_079M,S0102PR_C02_079MA"}, "S0506_C01_052E": {"label": "Estimate!!Total!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C01_052EA,S0506_C01_052M,S0506_C01_052MA"}, "S0504_C03_081E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Civilian employed population 16 years and over!!INDUSTRY!!Finance and insurance, and real estate and rental and leasing", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_081EA,S0504_C03_081M,S0504_C03_081MA"}, "S0504_C03_080E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Civilian employed population 16 years and over!!INDUSTRY!!Information", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_080EA,S0504_C03_080M,S0504_C03_080MA"}, "S0506_C01_053E": {"label": "Estimate!!Total!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!English only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_053EA,S0506_C01_053M,S0506_C01_053MA"}, "S0506_C01_054E": {"label": "Estimate!!Total!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_054EA,S0506_C01_054M,S0506_C01_054MA"}, "S0506_C01_055E": {"label": "Estimate!!Total!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English!!Speak English less than \"very well\"", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_055EA,S0506_C01_055M,S0506_C01_055MA"}, "S0506_C01_056E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Population 16 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C01_056EA,S0506_C01_056M,S0506_C01_056MA"}, "S1701_C03_005E": {"label": "Estimate!!Percent below poverty level!!Population for whom poverty status is determined!!AGE!!Under 18 years!!Related children of householder under 18 years", "concept": "Poverty Status in the Past 12 Months", "predicateType": "float", "group": "S1701", "limit": 0, "attributes": "S1701_C03_005EA,S1701_C03_005M,S1701_C03_005MA"}, "S2404_C04_026E": {"label": "Estimate!!Female!!Full-time, year-round civilian employed population 16 years and over!!Other services, except public administration", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C04_026EA,S2404_C04_026M,S2404_C04_026MA"}, "S1601_C05_004E": {"label": "Estimate!!Speak English less than \"very well\"!!Percent of specified language speakers!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Spanish", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C05_004EA,S1601_C05_004M,S1601_C05_004MA"}, "S1251_C03_010E": {"label": "Estimate!!Female!!Married in the last 12 months!!PRESENCE OF OWN CHILD UNDER 18 YEARS!!Population in households", "concept": "Characteristics of People With a Marital Event in the Last 12 Months", "predicateType": "int", "group": "S1251", "limit": 0, "attributes": "S1251_C03_010EA,S1251_C03_010M,S1251_C03_010MA"}, "S1701_C03_004E": {"label": "Estimate!!Percent below poverty level!!Population for whom poverty status is determined!!AGE!!Under 18 years!!5 to 17 years", "concept": "Poverty Status in the Past 12 Months", "predicateType": "float", "group": "S1701", "limit": 0, "attributes": "S1701_C03_004EA,S1701_C03_004M,S1701_C03_004MA"}, "S1601_C05_003E": {"label": "Estimate!!Speak English less than \"very well\"!!Percent of specified language speakers!!Population 5 years and over!!Speak a language other than English", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C05_003EA,S1601_C05_003M,S1601_C05_003MA"}, "S2404_C04_025E": {"label": "Estimate!!Female!!Full-time, year-round civilian employed population 16 years and over!!Arts, entertainment, and recreation, and accommodation and food services:!!Accommodation and food services", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C04_025EA,S2404_C04_025M,S2404_C04_025MA"}, "S1702_C06_050E": {"label": "Estimate!!Percent below poverty level!!Female householder, no spouse present!!Families!!ALL FAMILIES WITH INCOME BELOW THE FOLLOWING POVERTY RATIOS!!500 percent of poverty level", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C06_050EA,S1702_C06_050M,S1702_C06_050MA"}, "S1601_C05_006E": {"label": "Estimate!!Speak English less than \"very well\"!!Percent of specified language speakers!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Spanish!!18 to 64 years old", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C05_006EA,S1601_C05_006M,S1601_C05_006MA"}, "S1701_C03_003E": {"label": "Estimate!!Percent below poverty level!!Population for whom poverty status is determined!!AGE!!Under 18 years!!Under 5 years", "concept": "Poverty Status in the Past 12 Months", "predicateType": "float", "group": "S1701", "limit": 0, "attributes": "S1701_C03_003EA,S1701_C03_003M,S1701_C03_003MA"}, "S2404_C04_024E": {"label": "Estimate!!Female!!Full-time, year-round civilian employed population 16 years and over!!Arts, entertainment, and recreation, and accommodation and food services:!!Arts, entertainment, and recreation", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C04_024EA,S2404_C04_024M,S2404_C04_024MA"}, "S1601_C05_005E": {"label": "Estimate!!Speak English less than \"very well\"!!Percent of specified language speakers!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Spanish!!5 to 17 years old", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C05_005EA,S1601_C05_005M,S1601_C05_005MA"}, "S2404_C04_023E": {"label": "Estimate!!Female!!Full-time, year-round civilian employed population 16 years and over!!Arts, entertainment, and recreation, and accommodation and food services:", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C04_023EA,S2404_C04_023M,S2404_C04_023MA"}, "S1701_C03_002E": {"label": "Estimate!!Percent below poverty level!!Population for whom poverty status is determined!!AGE!!Under 18 years", "concept": "Poverty Status in the Past 12 Months", "predicateType": "float", "group": "S1701", "limit": 0, "attributes": "S1701_C03_002EA,S1701_C03_002M,S1701_C03_002MA"}, "S1701_C03_001E": {"label": "Estimate!!Percent below poverty level!!Population for whom poverty status is determined", "concept": "Poverty Status in the Past 12 Months", "predicateType": "float", "group": "S1701", "limit": 0, "attributes": "S1701_C03_001EA,S1701_C03_001M,S1701_C03_001MA"}, "S2404_C04_022E": {"label": "Estimate!!Female!!Full-time, year-round civilian employed population 16 years and over!!Educational services, and health care and social assistance:!!Health care and social assistance", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C04_022EA,S2404_C04_022M,S2404_C04_022MA"}, "S2404_C04_021E": {"label": "Estimate!!Female!!Full-time, year-round civilian employed population 16 years and over!!Educational services, and health care and social assistance:!!Educational services", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C04_021EA,S2404_C04_021M,S2404_C04_021MA"}, "S1601_C05_002E": {"label": "Estimate!!Speak English less than \"very well\"!!Percent of specified language speakers!!Population 5 years and over!!Speak only English", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C05_002EA,S1601_C05_002M,S1601_C05_002MA"}, "S2404_C04_020E": {"label": "Estimate!!Female!!Full-time, year-round civilian employed population 16 years and over!!Educational services, and health care and social assistance:", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C04_020EA,S2404_C04_020M,S2404_C04_020MA"}, "S1601_C05_001E": {"label": "Estimate!!Speak English less than \"very well\"!!Percent of specified language speakers!!Population 5 years and over", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C05_001EA,S1601_C05_001M,S1601_C05_001MA"}, "S2802_C03_009E": {"label": "Estimate!!Percent Broadband Internet Subscription!!With a computer!!Total population in households!!RACE AND HISPANIC OR LATINO ORIGIN!!Native Hawaiian and Other Pacific Islander alone", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "float", "group": "S2802", "limit": 0, "attributes": "S2802_C03_009EA,S2802_C03_009M,S2802_C03_009MA"}, "S2403_C01_019E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Professional, scientific, and management, and administrative and waste management services:!!Administrative and support and waste management services", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C01_019EA,S2403_C01_019M,S2403_C01_019MA"}, "S0501_C01_018E": {"label": "Estimate!!Total!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_018EA,S0501_C01_018M,S0501_C01_018MA"}, "S0502_C04_042E": {"label": "Estimate!!Foreign-born; Entered before 2000!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C04_042EA,S0502_C04_042M,S0502_C04_042MA"}, "S0103_C02_076E": {"label": "Estimate!!65 years and over!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income!!Mean Social Security income (dollars)", "concept": "Population 65 Years and Over in the United States", "predicateType": "int", "group": "S0103", "limit": 0, "attributes": "S0103_C02_076EA,S0103_C02_076M,S0103_C02_076MA"}, "S2802_C03_008E": {"label": "Estimate!!Percent Broadband Internet Subscription!!With a computer!!Total population in households!!RACE AND HISPANIC OR LATINO ORIGIN!!Asian alone", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "float", "group": "S2802", "limit": 0, "attributes": "S2802_C03_008EA,S2802_C03_008M,S2802_C03_008MA"}, "S0501_C01_019E": {"label": "Estimate!!Total!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_019EA,S0501_C01_019M,S0501_C01_019MA"}, "S0502_C04_043E": {"label": "Estimate!!Foreign-born; Entered before 2000!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Nursery school, preschool", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_043EA,S0502_C04_043M,S0502_C04_043MA"}, "S0103_C02_075E": {"label": "Estimate!!65 years and over!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C02_075EA,S0103_C02_075M,S0103_C02_075MA"}, "S2802_C03_007E": {"label": "Estimate!!Percent Broadband Internet Subscription!!With a computer!!Total population in households!!RACE AND HISPANIC OR LATINO ORIGIN!!American Indian and Alaska Native alone", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "float", "group": "S2802", "limit": 0, "attributes": "S2802_C03_007EA,S2802_C03_007M,S2802_C03_007MA"}, "S0502_C04_044E": {"label": "Estimate!!Foreign-born; Entered before 2000!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Elementary school (grades K-8)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_044EA,S0502_C04_044M,S0502_C04_044MA"}, "S0103_C02_078E": {"label": "Estimate!!65 years and over!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income!!Mean Supplemental Security Income (dollars)", "concept": "Population 65 Years and Over in the United States", "predicateType": "int", "group": "S0103", "limit": 0, "attributes": "S0103_C02_078EA,S0103_C02_078M,S0103_C02_078MA"}, "S2802_C03_006E": {"label": "Estimate!!Percent Broadband Internet Subscription!!With a computer!!Total population in households!!RACE AND HISPANIC OR LATINO ORIGIN!!Black or African American alone", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "float", "group": "S2802", "limit": 0, "attributes": "S2802_C03_006EA,S2802_C03_006M,S2802_C03_006MA"}, "S0103_C02_077E": {"label": "Estimate!!65 years and over!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C02_077EA,S0103_C02_077M,S0103_C02_077MA"}, "S0502_C04_045E": {"label": "Estimate!!Foreign-born; Entered before 2000!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!High school (grades 9-12)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_045EA,S0502_C04_045M,S0502_C04_045MA"}, "S1701_C03_009E": {"label": "Estimate!!Percent below poverty level!!Population for whom poverty status is determined!!AGE!!60 years and over", "concept": "Poverty Status in the Past 12 Months", "predicateType": "float", "group": "S1701", "limit": 0, "attributes": "S1701_C03_009EA,S1701_C03_009M,S1701_C03_009MA"}, "S1601_C05_008E": {"label": "Estimate!!Speak English less than \"very well\"!!Percent of specified language speakers!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Other Indo-European languages", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C05_008EA,S1601_C05_008M,S1601_C05_008MA"}, "S0501_C01_014E": {"label": "Estimate!!Total!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_014EA,S0501_C01_014M,S0501_C01_014MA"}, "S1251_C03_014E": {"label": "Estimate!!Female!!Married in the last 12 months!!HOUSING TENURE!!Population 15 years and over in occupied housing units!!Renter-occupied housing units", "concept": "Characteristics of People With a Marital Event in the Last 12 Months", "predicateType": "float", "group": "S1251", "limit": 0, "attributes": "S1251_C03_014EA,S1251_C03_014M,S1251_C03_014MA"}, "S2403_C01_015E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Finance and insurance, and real estate and rental and leasing:!!Real estate and rental and leasing", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C01_015EA,S2403_C01_015M,S2403_C01_015MA"}, "S0502_C04_046E": {"label": "Estimate!!Foreign-born; Entered before 2000!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!College or graduate school", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_046EA,S0502_C04_046M,S0502_C04_046MA"}, "S1701_C03_008E": {"label": "Estimate!!Percent below poverty level!!Population for whom poverty status is determined!!AGE!!18 to 64 years!!35 to 64 years", "concept": "Poverty Status in the Past 12 Months", "predicateType": "float", "group": "S1701", "limit": 0, "attributes": "S1701_C03_008EA,S1701_C03_008M,S1701_C03_008MA"}, "S0502_C04_047E": {"label": "Estimate!!Foreign-born; Entered before 2000!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C04_047EA,S0502_C04_047M,S0502_C04_047MA"}, "S0501_C01_015E": {"label": "Estimate!!Total!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_015EA,S0501_C01_015M,S0501_C01_015MA"}, "S1601_C05_007E": {"label": "Estimate!!Speak English less than \"very well\"!!Percent of specified language speakers!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Spanish!!65 years old and over", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C05_007EA,S1601_C05_007M,S1601_C05_007MA"}, "S2403_C01_016E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Professional, scientific, and management, and administrative and waste management services:", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C01_016EA,S2403_C01_016M,S2403_C01_016MA"}, "S0103_C02_079E": {"label": "Estimate!!65 years and over!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C02_079EA,S0103_C02_079M,S0103_C02_079MA"}, "S1251_C03_013E": {"label": "Estimate!!Female!!Married in the last 12 months!!HOUSING TENURE!!Population 15 years and over in occupied housing units!!Owner-occupied housing units", "concept": "Characteristics of People With a Marital Event in the Last 12 Months", "predicateType": "float", "group": "S1251", "limit": 0, "attributes": "S1251_C03_013EA,S1251_C03_013M,S1251_C03_013MA"}, "S1701_C03_007E": {"label": "Estimate!!Percent below poverty level!!Population for whom poverty status is determined!!AGE!!18 to 64 years!!18 to 34 years", "concept": "Poverty Status in the Past 12 Months", "predicateType": "float", "group": "S1701", "limit": 0, "attributes": "S1701_C03_007EA,S1701_C03_007M,S1701_C03_007MA"}, "S2413_C03_027E": {"label": "Estimate!!Median earnings (dollars) for female!!Civilian employed population 16 years and over with earnings!!Public administration", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C03_027EA,S2413_C03_027M,S2413_C03_027MA"}, "S0502_C04_048E": {"label": "Estimate!!Foreign-born; Entered before 2000!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than high school graduate", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_048EA,S0502_C04_048M,S0502_C04_048MA"}, "S0501_C01_016E": {"label": "Estimate!!Total!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_016EA,S0501_C01_016M,S0501_C01_016MA"}, "S1251_C03_012E": {"label": "Estimate!!Female!!Married in the last 12 months!!HOUSING TENURE!!Population 15 years and over in occupied housing units", "concept": "Characteristics of People With a Marital Event in the Last 12 Months", "predicateType": "int", "group": "S1251", "limit": 0, "attributes": "S1251_C03_012EA,S1251_C03_012M,S1251_C03_012MA"}, "S2403_C01_017E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Professional, scientific, and management, and administrative and waste management services:!!Professional, scientific, and technical services", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C01_017EA,S2403_C01_017M,S2403_C01_017MA"}, "S2404_C04_027E": {"label": "Estimate!!Female!!Full-time, year-round civilian employed population 16 years and over!!Public administration", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C04_027EA,S2404_C04_027M,S2404_C04_027MA"}, "S1701_C03_006E": {"label": "Estimate!!Percent below poverty level!!Population for whom poverty status is determined!!AGE!!18 to 64 years", "concept": "Poverty Status in the Past 12 Months", "predicateType": "float", "group": "S1701", "limit": 0, "attributes": "S1701_C03_006EA,S1701_C03_006M,S1701_C03_006MA"}, "S0502_C04_049E": {"label": "Estimate!!Foreign-born; Entered before 2000!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate (includes equivalency)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_049EA,S0502_C04_049M,S0502_C04_049MA"}, "S0501_C01_017E": {"label": "Estimate!!Total!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_017EA,S0501_C01_017M,S0501_C01_017MA"}, "S1601_C05_009E": {"label": "Estimate!!Speak English less than \"very well\"!!Percent of specified language speakers!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Other Indo-European languages!!5 to 17 years old", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C05_009EA,S1601_C05_009M,S1601_C05_009MA"}, "S1251_C03_011E": {"label": "Estimate!!Female!!Married in the last 12 months!!PRESENCE OF OWN CHILD UNDER 18 YEARS!!Population in households!!With an own child of the householder under 18 years", "concept": "Characteristics of People With a Marital Event in the Last 12 Months", "predicateType": "float", "group": "S1251", "limit": 0, "attributes": "S1251_C03_011EA,S1251_C03_011M,S1251_C03_011MA"}, "S2403_C01_018E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Professional, scientific, and management, and administrative and waste management services:!!Management of companies and enterprises", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C01_018EA,S2403_C01_018M,S2403_C01_018MA"}, "S2413_C03_025E": {"label": "Estimate!!Median earnings (dollars) for female!!Civilian employed population 16 years and over with earnings!!Arts, entertainment, and recreation, and accommodation and food services:!!Accommodation and food services", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C03_025EA,S2413_C03_025M,S2413_C03_025MA"}, "S0501_C01_022E": {"label": "Estimate!!Total!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_022EA,S0501_C01_022M,S0501_C01_022MA"}, "S2002_C01_067E": {"label": "Estimate!!Total!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!CLASS OF WORKER!!Self employed in own not incorporated business workers and unpaid family workers", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C01_067EA,S2002_C01_067M,S2002_C01_067MA"}, "S2403_C01_011E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Transportation and warehousing, and utilities:!!Utilities", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C01_011EA,S2403_C01_011M,S2403_C01_011MA"}, "S0505_C01_101E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income!!Mean Social Security income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C01_101EA,S0505_C01_101M,S0505_C01_101MA"}, "S0102PR_C02_084E": {"label": "Estimate!!60 years and over!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income!!Mean retirement income (dollars)", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_084EA,S0102PR_C02_084M,S0102PR_C02_084MA"}, "S0506_C01_045E": {"label": "Estimate!!Total!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!College or graduate school", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_045EA,S0506_C01_045M,S0506_C01_045MA"}, "S0506_C01_046E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C01_046EA,S0506_C01_046M,S0506_C01_046MA"}, "S2413_C03_026E": {"label": "Estimate!!Median earnings (dollars) for female!!Civilian employed population 16 years and over with earnings!!Other services, except public administration", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C03_026EA,S2413_C03_026M,S2413_C03_026MA"}, "S2002_C01_066E": {"label": "Estimate!!Total!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!CLASS OF WORKER!!Federal government workers", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C01_066EA,S2002_C01_066M,S2002_C01_066MA"}, "S0505_C01_102E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_102EA,S0505_C01_102M,S0505_C01_102MA"}, "S0501_C01_023E": {"label": "Estimate!!Total!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_023EA,S0501_C01_023M,S0501_C01_023MA"}, "S2403_C01_012E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Information", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C01_012EA,S2403_C01_012M,S2403_C01_012MA"}, "S0102PR_C02_085E": {"label": "Estimate!!60 years and over!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Food Stamp/SNAP benefits", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_085EA,S0102PR_C02_085M,S0102PR_C02_085MA"}, "S0506_C01_047E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than high school graduate", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_047EA,S0506_C01_047M,S0506_C01_047MA"}, "S2413_C03_023E": {"label": "Estimate!!Median earnings (dollars) for female!!Civilian employed population 16 years and over with earnings!!Arts, entertainment, and recreation, and accommodation and food services:", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C03_023EA,S2413_C03_023M,S2413_C03_023MA"}, "S0501_C01_024E": {"label": "Estimate!!Total!!Total population!!HOUSEHOLD TYPE!!In married-couple family", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_024EA,S0501_C01_024M,S0501_C01_024MA"}, "S2002_C01_065E": {"label": "Estimate!!Total!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!CLASS OF WORKER!!State government workers", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C01_065EA,S2002_C01_065M,S2002_C01_065MA"}, "S2403_C01_013E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Finance and insurance, and real estate and rental and leasing:", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C01_013EA,S2403_C01_013M,S2403_C01_013MA"}, "S0102PR_C02_082E": {"label": "Estimate!!60 years and over!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income!!Mean cash public assistance income (dollars)", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_082EA,S0102PR_C02_082M,S0102PR_C02_082MA"}, "S0502_C04_060E": {"label": "Estimate!!Foreign-born; Entered before 2000!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Employed", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_060EA,S0502_C04_060M,S0502_C04_060MA"}, "S2413_C03_024E": {"label": "Estimate!!Median earnings (dollars) for female!!Civilian employed population 16 years and over with earnings!!Arts, entertainment, and recreation, and accommodation and food services:!!Arts, entertainment, and recreation", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C03_024EA,S2413_C03_024M,S2413_C03_024MA"}, "S0506_C01_048E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate (includes equivalency)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_048EA,S0506_C01_048M,S0506_C01_048MA"}, "S2002_C01_064E": {"label": "Estimate!!Total!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!CLASS OF WORKER!!Local government workers", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C01_064EA,S2002_C01_064M,S2002_C01_064MA"}, "S0501_C01_025E": {"label": "Estimate!!Total!!Total population!!HOUSEHOLD TYPE!!In other households", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_025EA,S0501_C01_025M,S0501_C01_025MA"}, "S0502_C04_061E": {"label": "Estimate!!Foreign-born; Entered before 2000!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_061EA,S0502_C04_061M,S0502_C04_061MA"}, "S2403_C01_014E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Finance and insurance, and real estate and rental and leasing:!!Finance and insurance", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C01_014EA,S2403_C01_014M,S2403_C01_014MA"}, "S0505_C01_100E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_100EA,S0505_C01_100M,S0505_C01_100MA"}, "S0102PR_C02_083E": {"label": "Estimate!!60 years and over!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_083EA,S0102PR_C02_083M,S0102PR_C02_083MA"}, "S0506_C01_049E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college or associate's degree", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_049EA,S0506_C01_049M,S0506_C01_049MA"}, "S2413_C03_021E": {"label": "Estimate!!Median earnings (dollars) for female!!Civilian employed population 16 years and over with earnings!!Educational services, and health care and social assistance:!!Educational services", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C03_021EA,S2413_C03_021M,S2413_C03_021MA"}, "S0102PR_C02_088E": {"label": "Estimate!!60 years and over!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!100 to 149 percent of the poverty level", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_088EA,S0102PR_C02_088M,S0102PR_C02_088MA"}, "S0502_C04_062E": {"label": "Estimate!!Foreign-born; Entered before 2000!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed!!Percent of civilian labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_062EA,S0502_C04_062M,S0502_C04_062MA"}, "S0103_C02_060E": {"label": "Estimate!!65 years and over!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Naturalized U.S. citizen", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C02_060EA,S0103_C02_060M,S0103_C02_060MA"}, "S2413_C03_022E": {"label": "Estimate!!Median earnings (dollars) for female!!Civilian employed population 16 years and over with earnings!!Educational services, and health care and social assistance:!!Health care and social assistance", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C03_022EA,S2413_C03_022M,S2413_C03_022MA"}, "S0502_C04_063E": {"label": "Estimate!!Foreign-born; Entered before 2000!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Armed Forces", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_063EA,S0502_C04_063M,S0502_C04_063MA"}, "S0102PR_C02_089E": {"label": "Estimate!!60 years and over!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!At or above 150 percent of the poverty level", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_089EA,S0102PR_C02_089M,S0102PR_C02_089MA"}, "S0504_C03_099E": {"label": "Estimate!!Foreign-born; Born in Northern America!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings!!Mean earnings (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C03_099EA,S0504_C03_099M,S0504_C03_099MA"}, "S0501_C01_020E": {"label": "Estimate!!Total!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_020EA,S0501_C01_020M,S0501_C01_020MA"}, "S2002_C01_069E": {"label": "Estimate!!Total!!Median earnings (dollars)!!PERCENT ALLOCATED!!Race", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "float", "group": "S2002", "limit": 0, "attributes": "S2002_C01_069EA,S2002_C01_069M,S2002_C01_069MA"}, "S0502_C04_064E": {"label": "Estimate!!Foreign-born; Entered before 2000!!EMPLOYMENT STATUS!!Population 16 years and over!!Not in labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_064EA,S0502_C04_064M,S0502_C04_064MA"}, "S0504_C03_098E": {"label": "Estimate!!Foreign-born; Born in Northern America!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_098EA,S0504_C03_098M,S0504_C03_098MA"}, "S0103_C02_062E": {"label": "Estimate!!65 years and over!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over", "concept": "Population 65 Years and Over in the United States", "predicateType": "int", "group": "S0103", "limit": 0, "attributes": "S0103_C02_062EA,S0103_C02_062M,S0103_C02_062MA"}, "S0102PR_C02_086E": {"label": "Estimate!!60 years and over!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_086EA,S0102PR_C02_086M,S0102PR_C02_086MA"}, "S0501_C01_021E": {"label": "Estimate!!Total!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_021EA,S0501_C01_021M,S0501_C01_021MA"}, "S2413_C03_020E": {"label": "Estimate!!Median earnings (dollars) for female!!Civilian employed population 16 years and over with earnings!!Educational services, and health care and social assistance:", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C03_020EA,S2413_C03_020M,S2413_C03_020MA"}, "S2002_C01_068E": {"label": "Estimate!!Total!!Median earnings (dollars)!!PERCENT ALLOCATED!!Earnings in the past 12 months", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "float", "group": "S2002", "limit": 0, "attributes": "S2002_C01_068EA,S2002_C01_068M,S2002_C01_068MA"}, "S0102PR_C02_087E": {"label": "Estimate!!60 years and over!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!Below 100 percent of the poverty level", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_087EA,S0102PR_C02_087M,S0102PR_C02_087MA"}, "S0502_C04_065E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Civilian employed population 16 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C04_065EA,S0502_C04_065M,S0502_C04_065MA"}, "S0504_C03_097E": {"label": "Estimate!!Foreign-born; Born in Northern America!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C03_097EA,S0504_C03_097M,S0504_C03_097MA"}, "S0103_C02_061E": {"label": "Estimate!!65 years and over!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Not a U.S. citizen", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C02_061EA,S0103_C02_061M,S0103_C02_061MA"}, "S2403_C01_010E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Transportation and warehousing, and utilities:!!Transportation and warehousing", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C01_010EA,S2403_C01_010M,S2403_C01_010MA"}, "S0505_C01_109E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!Median Household income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C01_109EA,S0505_C01_109M,S0505_C01_109MA"}, "S0504_C03_096E": {"label": "Estimate!!Foreign-born; Born in Northern America!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!Median earnings (dollars) for full-time, year-round workers!!Female", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C03_096EA,S0504_C03_096M,S0504_C03_096MA"}, "S1701_C03_021E": {"label": "Estimate!!Percent below poverty level!!Population for whom poverty status is determined!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Poverty Status in the Past 12 Months", "predicateType": "float", "group": "S1701", "limit": 0, "attributes": "S1701_C03_021EA,S1701_C03_021M,S1701_C03_021MA"}, "S0504_C03_095E": {"label": "Estimate!!Foreign-born; Born in Northern America!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!Median earnings (dollars) for full-time, year-round workers!!Male", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C03_095EA,S0504_C03_095M,S0504_C03_095MA"}, "S1701_C03_020E": {"label": "Estimate!!Percent below poverty level!!Population for whom poverty status is determined!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Poverty Status in the Past 12 Months", "predicateType": "float", "group": "S1701", "limit": 0, "attributes": "S1701_C03_020EA,S1701_C03_020M,S1701_C03_020MA"}, "S0505_C01_107E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income!!Mean retirement income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C01_107EA,S0505_C01_107M,S0505_C01_107MA"}, "S0504_C03_094E": {"label": "Estimate!!Foreign-born; Born in Northern America!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$75,000 or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_094EA,S0504_C03_094M,S0504_C03_094MA"}, "S0505_C01_108E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Food Stamp/SNAP benefits", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_108EA,S0505_C01_108M,S0505_C01_108MA"}, "S0504_C03_093E": {"label": "Estimate!!Foreign-born; Born in Northern America!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$50,000 to $74,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_093EA,S0504_C03_093M,S0504_C03_093MA"}, "S0506_C01_040E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_040EA,S0506_C01_040M,S0506_C01_040MA"}, "S0505_C01_105E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income!!Mean cash public assistance income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C01_105EA,S0505_C01_105M,S0505_C01_105MA"}, "S0506_C01_041E": {"label": "Estimate!!Total!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C01_041EA,S0506_C01_041M,S0506_C01_041MA"}, "S0504_C03_092E": {"label": "Estimate!!Foreign-born; Born in Northern America!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$35,000 to $49,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_092EA,S0504_C03_092M,S0504_C03_092MA"}, "S0505_C01_106E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_106EA,S0505_C01_106M,S0505_C01_106MA"}, "S0504_C03_091E": {"label": "Estimate!!Foreign-born; Born in Northern America!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$25,000 to $34,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_091EA,S0504_C03_091M,S0504_C03_091MA"}, "S0506_C01_042E": {"label": "Estimate!!Total!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Nursery school, preschool", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_042EA,S0506_C01_042M,S0506_C01_042MA"}, "S0505_C01_103E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income!!Mean Supplemental Security Income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C01_103EA,S0505_C01_103M,S0505_C01_103MA"}, "S0506_C01_043E": {"label": "Estimate!!Total!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Elementary school (grades K-8)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_043EA,S0506_C01_043M,S0506_C01_043MA"}, "S0504_C03_090E": {"label": "Estimate!!Foreign-born; Born in Northern America!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$15,000 to $24,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_090EA,S0504_C03_090M,S0504_C03_090MA"}, "S0505_C01_104E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_104EA,S0505_C01_104M,S0505_C01_104MA"}, "S0506_C01_044E": {"label": "Estimate!!Total!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!High school (grades 9-12)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_044EA,S0506_C01_044M,S0506_C01_044MA"}, "S1701_C03_017E": {"label": "Estimate!!Percent below poverty level!!Population for whom poverty status is determined!!RACE AND HISPANIC OR LATINO ORIGIN!!Native Hawaiian and Other Pacific Islander alone", "concept": "Poverty Status in the Past 12 Months", "predicateType": "float", "group": "S1701", "limit": 0, "attributes": "S1701_C03_017EA,S1701_C03_017M,S1701_C03_017MA"}, "S1702_C06_040E": {"label": "Estimate!!Percent below poverty level!!Female householder, no spouse present!!Families!!INCOME DEFICIT!!Mean income deficit for families (dollars)", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C06_040EA,S1702_C06_040M,S1702_C06_040MA"}, "S1701_C03_016E": {"label": "Estimate!!Percent below poverty level!!Population for whom poverty status is determined!!RACE AND HISPANIC OR LATINO ORIGIN!!Asian alone", "concept": "Poverty Status in the Past 12 Months", "predicateType": "float", "group": "S1701", "limit": 0, "attributes": "S1701_C03_016EA,S1701_C03_016M,S1701_C03_016MA"}, "S1702_C06_041E": {"label": "Estimate!!Percent below poverty level!!Female householder, no spouse present!!Families!!TENURE!!Owner occupied", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C06_041EA,S1702_C06_041M,S1702_C06_041MA"}, "S1701_C03_015E": {"label": "Estimate!!Percent below poverty level!!Population for whom poverty status is determined!!RACE AND HISPANIC OR LATINO ORIGIN!!American Indian and Alaska Native alone", "concept": "Poverty Status in the Past 12 Months", "predicateType": "float", "group": "S1701", "limit": 0, "attributes": "S1701_C03_015EA,S1701_C03_015M,S1701_C03_015MA"}, "S1701_C03_014E": {"label": "Estimate!!Percent below poverty level!!Population for whom poverty status is determined!!RACE AND HISPANIC OR LATINO ORIGIN!!Black or African American alone", "concept": "Poverty Status in the Past 12 Months", "predicateType": "float", "group": "S1701", "limit": 0, "attributes": "S1701_C03_014EA,S1701_C03_014M,S1701_C03_014MA"}, "S1702_C06_044E": {"label": "Estimate!!Percent below poverty level!!Female householder, no spouse present!!Families!!ALL FAMILIES WITH INCOME BELOW THE FOLLOWING POVERTY RATIOS!!125 percent of poverty level", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C06_044EA,S1702_C06_044M,S1702_C06_044MA"}, "S1701_C03_013E": {"label": "Estimate!!Percent below poverty level!!Population for whom poverty status is determined!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone", "concept": "Poverty Status in the Past 12 Months", "predicateType": "float", "group": "S1701", "limit": 0, "attributes": "S1701_C03_013EA,S1701_C03_013M,S1701_C03_013MA"}, "S1702_C06_045E": {"label": "Estimate!!Percent below poverty level!!Female householder, no spouse present!!Families!!ALL FAMILIES WITH INCOME BELOW THE FOLLOWING POVERTY RATIOS!!150 percent of poverty level", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C06_045EA,S1702_C06_045M,S1702_C06_045MA"}, "S1701_C03_012E": {"label": "Estimate!!Percent below poverty level!!Population for whom poverty status is determined!!SEX!!Female", "concept": "Poverty Status in the Past 12 Months", "predicateType": "float", "group": "S1701", "limit": 0, "attributes": "S1701_C03_012EA,S1701_C03_012M,S1701_C03_012MA"}, "S1702_C06_042E": {"label": "Estimate!!Percent below poverty level!!Female householder, no spouse present!!Families!!TENURE!!Renter Occupied", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C06_042EA,S1702_C06_042M,S1702_C06_042MA"}, "S1701_C03_011E": {"label": "Estimate!!Percent below poverty level!!Population for whom poverty status is determined!!SEX!!Male", "concept": "Poverty Status in the Past 12 Months", "predicateType": "float", "group": "S1701", "limit": 0, "attributes": "S1701_C03_011EA,S1701_C03_011M,S1701_C03_011MA"}, "S1702_C06_043E": {"label": "Estimate!!Percent below poverty level!!Female householder, no spouse present!!Families!!ALL FAMILIES WITH INCOME BELOW THE FOLLOWING POVERTY RATIOS!!50 percent of poverty level", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C06_043EA,S1702_C06_043M,S1702_C06_043MA"}, "S1602_C01_001E": {"label": "Estimate!!Total!!All households", "concept": "Limited English Speaking Households", "predicateType": "int", "group": "S1602", "limit": 0, "attributes": "S1602_C01_001EA,S1602_C01_001M,S1602_C01_001MA"}, "S1701_C03_010E": {"label": "Estimate!!Percent below poverty level!!Population for whom poverty status is determined!!AGE!!65 years and over", "concept": "Poverty Status in the Past 12 Months", "predicateType": "float", "group": "S1701", "limit": 0, "attributes": "S1701_C03_010EA,S1701_C03_010M,S1701_C03_010MA"}, "S1602_C01_002E": {"label": "Estimate!!Total!!All households!!Households speaking --!!Spanish", "concept": "Limited English Speaking Households", "predicateType": "int", "group": "S1602", "limit": 0, "attributes": "S1602_C01_002EA,S1602_C01_002M,S1602_C01_002MA"}, "S0502_C04_054E": {"label": "Estimate!!Foreign-born; Entered before 2000!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!English only", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_054EA,S0502_C04_054M,S0502_C04_054MA"}, "S2002_C01_070E": {"label": "Estimate!!Total!!Median earnings (dollars)!!PERCENT ALLOCATED!!Hispanic or Latino origin", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "float", "group": "S2002", "limit": 0, "attributes": "S2002_C01_070EA,S2002_C01_070M,S2002_C01_070MA"}, "S2403_C01_007E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Wholesale trade", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C01_007EA,S2403_C01_007M,S2403_C01_007MA"}, "S0103_C02_064E": {"label": "Estimate!!65 years and over!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C02_064EA,S0103_C02_064M,S0103_C02_064MA"}, "S1251_C03_006E": {"label": "Estimate!!Female!!Married in the last 12 months!!LABOR FORCE PARTICIPATION!!Population 16 years and over!!In labor force", "concept": "Characteristics of People With a Marital Event in the Last 12 Months", "predicateType": "float", "group": "S1251", "limit": 0, "attributes": "S1251_C03_006EA,S1251_C03_006M,S1251_C03_006MA"}, "S1702_C06_048E": {"label": "Estimate!!Percent below poverty level!!Female householder, no spouse present!!Families!!ALL FAMILIES WITH INCOME BELOW THE FOLLOWING POVERTY RATIOS!!300 percent of poverty level", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C06_048EA,S1702_C06_048M,S1702_C06_048MA"}, "S2403_C01_008E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Retail trade", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C01_008EA,S2403_C01_008M,S2403_C01_008MA"}, "S1602_C01_003E": {"label": "Estimate!!Total!!All households!!Households speaking --!!Other Indo-European languages", "concept": "Limited English Speaking Households", "predicateType": "int", "group": "S1602", "limit": 0, "attributes": "S1602_C01_003EA,S1602_C01_003M,S1602_C01_003MA"}, "S0502_C04_055E": {"label": "Estimate!!Foreign-born; Entered before 2000!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_055EA,S0502_C04_055M,S0502_C04_055MA"}, "S1251_C03_005E": {"label": "Estimate!!Female!!Married in the last 12 months!!LABOR FORCE PARTICIPATION!!Population 16 years and over", "concept": "Characteristics of People With a Marital Event in the Last 12 Months", "predicateType": "int", "group": "S1251", "limit": 0, "attributes": "S1251_C03_005EA,S1251_C03_005M,S1251_C03_005MA"}, "S0103_C02_063E": {"label": "Estimate!!65 years and over!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!English only", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C02_063EA,S0103_C02_063M,S0103_C02_063MA"}, "S1702_C06_049E": {"label": "Estimate!!Percent below poverty level!!Female householder, no spouse present!!Families!!ALL FAMILIES WITH INCOME BELOW THE FOLLOWING POVERTY RATIOS!!400 percent of poverty level", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C06_049EA,S1702_C06_049M,S1702_C06_049MA"}, "S2403_C01_009E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Transportation and warehousing, and utilities:", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C01_009EA,S2403_C01_009M,S2403_C01_009MA"}, "S1602_C01_004E": {"label": "Estimate!!Total!!All households!!Households speaking --!!Asian and Pacific Island languages", "concept": "Limited English Speaking Households", "predicateType": "int", "group": "S1602", "limit": 0, "attributes": "S1602_C01_004EA,S1602_C01_004M,S1602_C01_004MA"}, "S0103_C02_066E": {"label": "Estimate!!65 years and over!!EMPLOYMENT STATUS!!Civilian population 16 years and over", "concept": "Population 65 Years and Over in the United States", "predicateType": "int", "group": "S0103", "limit": 0, "attributes": "S0103_C02_066EA,S0103_C02_066M,S0103_C02_066MA"}, "S1251_C03_004E": {"label": "Estimate!!Female!!Married in the last 12 months!!EDUCATIONAL ATTAINMENT!!Population 18 years and over!!Bachelor's degree or higher", "concept": "Characteristics of People With a Marital Event in the Last 12 Months", "predicateType": "float", "group": "S1251", "limit": 0, "attributes": "S1251_C03_004EA,S1251_C03_004M,S1251_C03_004MA"}, "S0502_C04_056E": {"label": "Estimate!!Foreign-born; Entered before 2000!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English!!Speak English less than \"very well\"", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_056EA,S0502_C04_056M,S0502_C04_056MA"}, "S2413_C03_019E": {"label": "Estimate!!Median earnings (dollars) for female!!Civilian employed population 16 years and over with earnings!!Professional, scientific, and management, and administrative and waste management services:!!Administrative and support and waste management services", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C03_019EA,S2413_C03_019M,S2413_C03_019MA"}, "S1702_C06_046E": {"label": "Estimate!!Percent below poverty level!!Female householder, no spouse present!!Families!!ALL FAMILIES WITH INCOME BELOW THE FOLLOWING POVERTY RATIOS!!185 percent of poverty level", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C06_046EA,S1702_C06_046M,S1702_C06_046MA"}, "S1602_C01_005E": {"label": "Estimate!!Total!!All households!!Households speaking --!!Other languages", "concept": "Limited English Speaking Households", "predicateType": "int", "group": "S1602", "limit": 0, "attributes": "S1602_C01_005EA,S1602_C01_005M,S1602_C01_005MA"}, "S1251_C03_003E": {"label": "Estimate!!Female!!Married in the last 12 months!!EDUCATIONAL ATTAINMENT!!Population 18 years and over", "concept": "Characteristics of People With a Marital Event in the Last 12 Months", "predicateType": "int", "group": "S1251", "limit": 0, "attributes": "S1251_C03_003EA,S1251_C03_003M,S1251_C03_003MA"}, "S0502_C04_057E": {"label": "Estimate!!Foreign-born; Entered before 2000!!EMPLOYMENT STATUS!!Population 16 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C04_057EA,S0502_C04_057M,S0502_C04_057MA"}, "S0103_C02_065E": {"label": "Estimate!!65 years and over!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English!!Speak English less than \"very well\"", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C02_065EA,S0103_C02_065M,S0103_C02_065MA"}, "S1702_C06_047E": {"label": "Estimate!!Percent below poverty level!!Female householder, no spouse present!!Families!!ALL FAMILIES WITH INCOME BELOW THE FOLLOWING POVERTY RATIOS!!200 percent of poverty level", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C06_047EA,S1702_C06_047M,S1702_C06_047MA"}, "S2413_C03_017E": {"label": "Estimate!!Median earnings (dollars) for female!!Civilian employed population 16 years and over with earnings!!Professional, scientific, and management, and administrative and waste management services:!!Professional, scientific, and technical services", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C03_017EA,S2413_C03_017M,S2413_C03_017MA"}, "S0502_C04_058E": {"label": "Estimate!!Foreign-born; Entered before 2000!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_058EA,S0502_C04_058M,S0502_C04_058MA"}, "S0501_C01_026E": {"label": "Estimate!!Total!!Total population!!Average household size", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_026EA,S0501_C01_026M,S0501_C01_026MA"}, "S2403_C01_003E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Agriculture, forestry, fishing and hunting, and mining:!!Agriculture, forestry, fishing and hunting", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C01_003EA,S2403_C01_003M,S2403_C01_003MA"}, "S0103_C02_068E": {"label": "Estimate!!65 years and over!!EMPLOYMENT STATUS!!Civilian population 16 years and over!!In labor force!!Employed", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C02_068EA,S0103_C02_068M,S0103_C02_068MA"}, "S1251_C03_002E": {"label": "Estimate!!Female!!Married in the last 12 months!!Population 15 years and over!!AGE!!Median age", "concept": "Characteristics of People With a Marital Event in the Last 12 Months", "predicateType": "float", "group": "S1251", "limit": 0, "attributes": "S1251_C03_002EA,S1251_C03_002M,S1251_C03_002MA"}, "S0102PR_C02_080E": {"label": "Estimate!!60 years and over!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income!!Mean Supplemental Security Income (dollars)", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_080EA,S0102PR_C02_080M,S0102PR_C02_080MA"}, "S0502_C04_059E": {"label": "Estimate!!Foreign-born; Entered before 2000!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_059EA,S0502_C04_059M,S0502_C04_059MA"}, "S2002_C01_074E": {"label": "Estimate!!Total!!Median earnings (dollars)!!PERCENT ALLOCATED!!Class of worker", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "float", "group": "S2002", "limit": 0, "attributes": "S2002_C01_074EA,S2002_C01_074M,S2002_C01_074MA"}, "S0501_C01_027E": {"label": "Estimate!!Total!!Total population!!Average family size", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_027EA,S0501_C01_027M,S0501_C01_027MA"}, "S1251_C03_001E": {"label": "Estimate!!Female!!Married in the last 12 months!!Population 15 years and over", "concept": "Characteristics of People With a Marital Event in the Last 12 Months", "predicateType": "int", "group": "S1251", "limit": 0, "attributes": "S1251_C03_001EA,S1251_C03_001M,S1251_C03_001MA"}, "S2403_C01_004E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Agriculture, forestry, fishing and hunting, and mining:!!Mining, quarrying, and oil and gas extraction", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C01_004EA,S2403_C01_004M,S2403_C01_004MA"}, "S0103_C02_067E": {"label": "Estimate!!65 years and over!!EMPLOYMENT STATUS!!Civilian population 16 years and over!!In labor force", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C02_067EA,S0103_C02_067M,S0103_C02_067MA"}, "S2002_C01_073E": {"label": "Estimate!!Total!!Median earnings (dollars)!!PERCENT ALLOCATED!!Industry", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "float", "group": "S2002", "limit": 0, "attributes": "S2002_C01_073EA,S2002_C01_073M,S2002_C01_073MA"}, "S2413_C03_018E": {"label": "Estimate!!Median earnings (dollars) for female!!Civilian employed population 16 years and over with earnings!!Professional, scientific, and management, and administrative and waste management services:!!Management of companies and enterprises", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C03_018EA,S2413_C03_018M,S2413_C03_018MA"}, "S0102PR_C02_081E": {"label": "Estimate!!60 years and over!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_081EA,S0102PR_C02_081M,S0102PR_C02_081MA"}, "S1701_C03_019E": {"label": "Estimate!!Percent below poverty level!!Population for whom poverty status is determined!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Poverty Status in the Past 12 Months", "predicateType": "float", "group": "S1701", "limit": 0, "attributes": "S1701_C03_019EA,S1701_C03_019M,S1701_C03_019MA"}, "S2413_C03_015E": {"label": "Estimate!!Median earnings (dollars) for female!!Civilian employed population 16 years and over with earnings!!Finance and insurance, and real estate and rental and leasing:!!Real estate and rental and leasing", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C03_015EA,S2413_C03_015M,S2413_C03_015MA"}, "S0501_C01_028E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C01_028EA,S0501_C01_028M,S0501_C01_028MA"}, "S2403_C01_005E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Construction", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C01_005EA,S2403_C01_005M,S2403_C01_005MA"}, "S2002_C01_072E": {"label": "Estimate!!Total!!Median earnings (dollars)!!PERCENT ALLOCATED!!Occupation", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "float", "group": "S2002", "limit": 0, "attributes": "S2002_C01_072EA,S2002_C01_072M,S2002_C01_072MA"}, "S1701_C03_018E": {"label": "Estimate!!Percent below poverty level!!Population for whom poverty status is determined!!RACE AND HISPANIC OR LATINO ORIGIN!!Some other race alone", "concept": "Poverty Status in the Past 12 Months", "predicateType": "float", "group": "S1701", "limit": 0, "attributes": "S1701_C03_018EA,S1701_C03_018M,S1701_C03_018MA"}, "S2413_C03_016E": {"label": "Estimate!!Median earnings (dollars) for female!!Civilian employed population 16 years and over with earnings!!Professional, scientific, and management, and administrative and waste management services:", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C03_016EA,S2413_C03_016M,S2413_C03_016MA"}, "S0501_C01_029E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_029EA,S0501_C01_029M,S0501_C01_029MA"}, "S0103_C02_069E": {"label": "Estimate!!65 years and over!!EMPLOYMENT STATUS!!Civilian population 16 years and over!!In labor force!!Unemployed", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C02_069EA,S0103_C02_069M,S0103_C02_069MA"}, "S2002_C01_071E": {"label": "Estimate!!Total!!Median earnings (dollars)!!PERCENT ALLOCATED!!Educational attainment", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "float", "group": "S2002", "limit": 0, "attributes": "S2002_C01_071EA,S2002_C01_071M,S2002_C01_071MA"}, "S2403_C01_006E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Manufacturing", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C01_006EA,S2403_C01_006M,S2403_C01_006MA"}, "S0504_C02_083E": {"label": "Estimate!!Foreign-born; Born in Africa!!Civilian employed population 16 years and over!!INDUSTRY!!Educational services, and health care and social assistance", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_083EA,S0504_C02_083M,S0504_C02_083MA"}, "S1502_C02_001E": {"label": "Estimate!!Percent!!Total population 25 years and over with a Bachelor's degree or higher", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C02_001EA,S1502_C02_001M,S1502_C02_001MA"}, "S2601CPR_C01_008E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!35 to 44 years", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_008EA,S2601CPR_C01_008M,S2601CPR_C01_008MA"}, "S2701_C01_004E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!AGE!!19 to 25 years", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C01_004EA,S2701_C01_004M,S2701_C01_004MA"}, "S2402_C05_008E": {"label": "Estimate!!Percent Female!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Computer, engineering, and science occupations:!!Architecture and engineering occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2402", "limit": 0, "attributes": "S2402_C05_008EA,S2402_C05_008M,S2402_C05_008MA"}, "S0501_C05_049E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_049EA,S0501_C05_049M,S0501_C05_049MA"}, "S0504_C02_082E": {"label": "Estimate!!Foreign-born; Born in Africa!!Civilian employed population 16 years and over!!INDUSTRY!!Professional, scientific, and management, and administrative and waste management services", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_082EA,S0504_C02_082M,S0504_C02_082MA"}, "S2601CPR_C01_007E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!25 to 34 years", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_007EA,S2601CPR_C01_007M,S2601CPR_C01_007MA"}, "S2701_C01_005E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!AGE!!26 to 34 years", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C01_005EA,S2701_C01_005M,S2701_C01_005MA"}, "S0502PR_C03_039E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_039EA,S0502PR_C03_039M,S0502PR_C03_039MA"}, "S1903_C02_039E": {"label": "Estimate!!Percent Distribution!!NONFAMILY HOUSEHOLDS!!Nonfamily households!!Male householder!!Living alone", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1903", "limit": 0, "attributes": "S1903_C02_039EA,S1903_C02_039M,S1903_C02_039MA"}, "S2402_C05_009E": {"label": "Estimate!!Percent Female!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Computer, engineering, and science occupations:!!Life, physical, and social science occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2402", "limit": 0, "attributes": "S2402_C05_009EA,S2402_C05_009M,S2402_C05_009MA"}, "S0501_C05_048E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!EMPLOYMENT STATUS!!Population 16 years and over", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C05_048EA,S0501_C05_048M,S0501_C05_048MA"}, "S0504_C02_085E": {"label": "Estimate!!Foreign-born; Born in Africa!!Civilian employed population 16 years and over!!INDUSTRY!!Other services (except public administration)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_085EA,S0504_C02_085M,S0504_C02_085MA"}, "S2601CPR_C01_006E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!18 to 24 years", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_006EA,S2601CPR_C01_006M,S2601CPR_C01_006MA"}, "S2404_C05_021E": {"label": "Estimate!!Percent Female!!Full-time, year-round civilian employed population 16 years and over!!Educational services, and health care and social assistance:!!Educational services", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2404", "limit": 0, "attributes": "S2404_C05_021EA,S2404_C05_021M,S2404_C05_021MA"}, "S1502_C02_003E": {"label": "Estimate!!Percent!!Total population 25 years and over with a Bachelor's degree or higher!!Science and Engineering Related Fields", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "float", "group": "S1502", "limit": 0, "attributes": "S1502_C02_003EA,S1502_C02_003M,S1502_C02_003MA"}, "S2701_C01_006E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!AGE!!35 to 44 years", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C01_006EA,S2701_C01_006M,S2701_C01_006MA"}, "S0501_C05_047E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English!!Speak English less than \"very well\"", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_047EA,S0501_C05_047M,S0501_C05_047MA"}, "S0502PR_C03_038E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_038EA,S0502PR_C03_038M,S0502PR_C03_038MA"}, "S0501_C05_046E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_046EA,S0501_C05_046M,S0501_C05_046MA"}, "S0504_C02_084E": {"label": "Estimate!!Foreign-born; Born in Africa!!Civilian employed population 16 years and over!!INDUSTRY!!Arts, entertainment, and recreation, and accommodation and food services", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_084EA,S0504_C02_084M,S0504_C02_084MA"}, "S2701_C01_007E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!AGE!!45 to 54 years", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C01_007EA,S2701_C01_007M,S2701_C01_007MA"}, "S2601CPR_C01_005E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!15 to 17 years", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_005EA,S2601CPR_C01_005M,S2601CPR_C01_005MA"}, "S1502_C02_002E": {"label": "Estimate!!Percent!!Total population 25 years and over with a Bachelor's degree or higher!!Science and Engineering", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "float", "group": "S1502", "limit": 0, "attributes": "S1502_C02_002EA,S1502_C02_002M,S1502_C02_002MA"}, "S2404_C05_020E": {"label": "Estimate!!Percent Female!!Full-time, year-round civilian employed population 16 years and over!!Educational services, and health care and social assistance:", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2404", "limit": 0, "attributes": "S2404_C05_020EA,S2404_C05_020M,S2404_C05_020MA"}, "S0502PR_C03_037E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!MARITAL STATUS!!Population 15 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_037EA,S0502PR_C03_037M,S0502PR_C03_037MA"}, "S0504_C02_087E": {"label": "Estimate!!Foreign-born; Born in Africa!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C02_087EA,S0504_C02_087M,S0504_C02_087MA"}, "S2701_C01_008E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!AGE!!55 to 64 years", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C01_008EA,S2701_C01_008M,S2701_C01_008MA"}, "S1502_C02_005E": {"label": "Estimate!!Percent!!Total population 25 years and over with a Bachelor's degree or higher!!Education", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "float", "group": "S1502", "limit": 0, "attributes": "S1502_C02_005EA,S1502_C02_005M,S1502_C02_005MA"}, "S0504_C02_086E": {"label": "Estimate!!Foreign-born; Born in Africa!!Civilian employed population 16 years and over!!INDUSTRY!!Public administration", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_086EA,S0504_C02_086M,S0504_C02_086MA"}, "S2701_C01_009E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!AGE!!65 to 74 years", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C01_009EA,S2701_C01_009M,S2701_C01_009MA"}, "S1502_C02_004E": {"label": "Estimate!!Percent!!Total population 25 years and over with a Bachelor's degree or higher!!Business", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "float", "group": "S1502", "limit": 0, "attributes": "S1502_C02_004EA,S1502_C02_004M,S1502_C02_004MA"}, "S0504_C02_089E": {"label": "Estimate!!Foreign-born; Born in Africa!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$10,000 to $14,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_089EA,S0504_C02_089M,S0504_C02_089MA"}, "S1502_C02_007E": {"label": "Estimate!!Percent!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!25 to 39 years", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C02_007EA,S1502_C02_007M,S1502_C02_007MA"}, "S0504_C02_088E": {"label": "Estimate!!Foreign-born; Born in Africa!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$1 to $9,999 or loss", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_088EA,S0504_C02_088M,S0504_C02_088MA"}, "S1502_C02_006E": {"label": "Estimate!!Percent!!Total population 25 years and over with a Bachelor's degree or higher!!Arts, Humanities, and Others", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "float", "group": "S1502", "limit": 0, "attributes": "S1502_C02_006EA,S1502_C02_006M,S1502_C02_006MA"}, "S2601CPR_C01_009E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!45 to 54 years", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_009EA,S2601CPR_C01_009M,S2601CPR_C01_009MA"}, "S0502PR_C03_032E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_032EA,S0502PR_C03_032M,S0502PR_C03_032MA"}, "S1903_C02_032E": {"label": "Estimate!!Percent Distribution!!FAMILY INCOME BY NUMBER OF EARNERS!!2 earners", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1903", "limit": 0, "attributes": "S1903_C02_032EA,S1903_C02_032M,S1903_C02_032MA"}, "S1502_C02_009E": {"label": "Estimate!!Percent!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!25 to 39 years!!Science and Engineering Related Fields", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "float", "group": "S1502", "limit": 0, "attributes": "S1502_C02_009EA,S1502_C02_009M,S1502_C02_009MA"}, "S2404_C05_027E": {"label": "Estimate!!Percent Female!!Full-time, year-round civilian employed population 16 years and over!!Public administration", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2404", "limit": 0, "attributes": "S2404_C05_027EA,S2404_C05_027M,S2404_C05_027MA"}, "S2403_C02_023E": {"label": "Estimate!!Male!!Civilian employed population 16 years and over!!Arts, entertainment, and recreation, and accommodation and food services:", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C02_023EA,S2403_C02_023M,S2403_C02_023MA"}, "S2602_C01_095E": {"label": "Estimate!!Total population!!EARNINGS AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Median earnings (dollars):!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C01_095EA,S2602_C01_095M,S2602_C01_095MA"}, "S0804_C01_078E": {"label": "Estimate!!Total!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!10 to 14 minutes", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_078EA,S0804_C01_078M,S0804_C01_078MA"}, "S0502PR_C03_031E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_031EA,S0502PR_C03_031M,S0502PR_C03_031MA"}, "S1903_C02_031E": {"label": "Estimate!!Percent Distribution!!FAMILY INCOME BY NUMBER OF EARNERS!!1 earner", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1903", "limit": 0, "attributes": "S1903_C02_031EA,S1903_C02_031M,S1903_C02_031MA"}, "S2404_C05_026E": {"label": "Estimate!!Percent Female!!Full-time, year-round civilian employed population 16 years and over!!Other services, except public administration", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2404", "limit": 0, "attributes": "S2404_C05_026EA,S2404_C05_026M,S2404_C05_026MA"}, "S2403_C02_022E": {"label": "Estimate!!Male!!Civilian employed population 16 years and over!!Educational services, and health care and social assistance:!!Health care and social assistance", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C02_022EA,S2403_C02_022M,S2403_C02_022MA"}, "S1502_C02_008E": {"label": "Estimate!!Percent!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!25 to 39 years!!Science and Engineering", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "float", "group": "S1502", "limit": 0, "attributes": "S1502_C02_008EA,S1502_C02_008M,S1502_C02_008MA"}, "S2602_C01_094E": {"label": "Estimate!!Total population!!EARNINGS AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Mean earnings (dollars):!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C01_094EA,S2602_C01_094M,S2602_C01_094MA"}, "S0804_C01_079E": {"label": "Estimate!!Total!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!15 to 19 minutes", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_079EA,S0804_C01_079M,S0804_C01_079MA"}, "S0506_C04_110E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!Average number of workers per household", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_110EA,S0506_C04_110M,S0506_C04_110MA"}, "S0502PR_C03_030E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_030EA,S0502PR_C03_030M,S0502PR_C03_030MA"}, "S2403_C02_025E": {"label": "Estimate!!Male!!Civilian employed population 16 years and over!!Arts, entertainment, and recreation, and accommodation and food services:!!Accommodation and food services", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C02_025EA,S2403_C02_025M,S2403_C02_025MA"}, "S2401_C02_011E": {"label": "Estimate!!Male!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:!!Community and social service occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C02_011EA,S2401_C02_011M,S2401_C02_011MA"}, "S2602_C01_097E": {"label": "Estimate!!Total population!!EARNINGS AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!With Food Stamp/SNAP benefits", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C01_097EA,S2602_C01_097M,S2602_C01_097MA"}, "S1903_C02_034E": {"label": "Estimate!!Percent Distribution!!NONFAMILY HOUSEHOLDS!!Nonfamily households", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C02_034EA,S1903_C02_034M,S1903_C02_034MA"}, "S1903_C02_033E": {"label": "Estimate!!Percent Distribution!!FAMILY INCOME BY NUMBER OF EARNERS!!3 or more earners", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1903", "limit": 0, "attributes": "S1903_C02_033EA,S1903_C02_033M,S1903_C02_033MA"}, "S2403_C02_024E": {"label": "Estimate!!Male!!Civilian employed population 16 years and over!!Arts, entertainment, and recreation, and accommodation and food services:!!Arts, entertainment, and recreation", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C02_024EA,S2403_C02_024M,S2403_C02_024MA"}, "S2401_C02_010E": {"label": "Estimate!!Male!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C02_010EA,S2401_C02_010M,S2401_C02_010MA"}, "S2602_C01_096E": {"label": "Estimate!!Total population!!EARNINGS AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Median earnings (dollars):!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C01_096EA,S2602_C01_096M,S2602_C01_096MA"}, "S0506_C04_112E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!Below 100 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_112EA,S0506_C04_112M,S0506_C04_112MA"}, "S0804_C01_074E": {"label": "Estimate!!Total!!Workers 16 years and over who did not work from home!!TIME ARRIVING AT WORK!!8:00 a.m. to 8:29 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_074EA,S0804_C01_074M,S0804_C01_074MA"}, "S2403_C02_027E": {"label": "Estimate!!Male!!Civilian employed population 16 years and over!!Public administration", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C02_027EA,S2403_C02_027M,S2403_C02_027MA"}, "S2404_C05_023E": {"label": "Estimate!!Percent Female!!Full-time, year-round civilian employed population 16 years and over!!Arts, entertainment, and recreation, and accommodation and food services:", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2404", "limit": 0, "attributes": "S2404_C05_023EA,S2404_C05_023M,S2404_C05_023MA"}, "S0505_C05_078E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Civilian employed population 16 years and over!!INDUSTRY!!Retail trade", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_078EA,S0505_C05_078M,S0505_C05_078MA"}, "S0502PR_C03_036E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Foreign-born population!!Average family size", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_036EA,S0502PR_C03_036M,S0502PR_C03_036MA"}, "S1903_C02_036E": {"label": "Estimate!!Percent Distribution!!NONFAMILY HOUSEHOLDS!!Nonfamily households!!Female householder!!Living alone", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1903", "limit": 0, "attributes": "S1903_C02_036EA,S1903_C02_036M,S1903_C02_036MA"}, "S2602_C01_091E": {"label": "Estimate!!Total population!!EARNINGS AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!With earnings:!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C01_091EA,S2602_C01_091M,S2602_C01_091MA"}, "S0506_C04_111E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C04_111EA,S0506_C04_111M,S0506_C04_111MA"}, "S0804_C01_075E": {"label": "Estimate!!Total!!Workers 16 years and over who did not work from home!!TIME ARRIVING AT WORK!!8:30 a.m. to 8:59 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_075EA,S0804_C01_075M,S0804_C01_075MA"}, "S2403_C02_026E": {"label": "Estimate!!Male!!Civilian employed population 16 years and over!!Other services, except public administration", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C02_026EA,S2403_C02_026M,S2403_C02_026MA"}, "S2404_C05_022E": {"label": "Estimate!!Percent Female!!Full-time, year-round civilian employed population 16 years and over!!Educational services, and health care and social assistance:!!Health care and social assistance", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2404", "limit": 0, "attributes": "S2404_C05_022EA,S2404_C05_022M,S2404_C05_022MA"}, "S0505_C05_079E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Civilian employed population 16 years and over!!INDUSTRY!!Transportation and warehousing, and utilities", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_079EA,S0505_C05_079M,S0505_C05_079MA"}, "S0502PR_C03_035E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Foreign-born population!!Average household size", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_035EA,S0502PR_C03_035M,S0502PR_C03_035MA"}, "S1903_C02_035E": {"label": "Estimate!!Percent Distribution!!NONFAMILY HOUSEHOLDS!!Nonfamily households!!Female householder", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1903", "limit": 0, "attributes": "S1903_C02_035EA,S1903_C02_035M,S1903_C02_035MA"}, "S2602_C01_090E": {"label": "Estimate!!Total population!!OCCUPATION!!Civilian employed population 16 years and over!!Production, transportation, and material moving occupations", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C01_090EA,S2602_C01_090M,S2602_C01_090MA"}, "S0804_C01_076E": {"label": "Estimate!!Total!!Workers 16 years and over who did not work from home!!TIME ARRIVING AT WORK!!9:00 a.m. to 11:59 p.m.", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_076EA,S0804_C01_076M,S0804_C01_076MA"}, "S0502PR_C03_034E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Foreign-born population!!HOUSEHOLD TYPE!!In other households", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_034EA,S0502PR_C03_034M,S0502PR_C03_034MA"}, "S0506_C04_114E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!At or above 200 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_114EA,S0506_C04_114M,S0506_C04_114MA"}, "S2404_C05_025E": {"label": "Estimate!!Percent Female!!Full-time, year-round civilian employed population 16 years and over!!Arts, entertainment, and recreation, and accommodation and food services:!!Accommodation and food services", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2404", "limit": 0, "attributes": "S2404_C05_025EA,S2404_C05_025M,S2404_C05_025MA"}, "S1903_C02_038E": {"label": "Estimate!!Percent Distribution!!NONFAMILY HOUSEHOLDS!!Nonfamily households!!Male householder", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1903", "limit": 0, "attributes": "S1903_C02_038EA,S1903_C02_038M,S1903_C02_038MA"}, "S2602_C01_093E": {"label": "Estimate!!Total population!!EARNINGS AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Mean earnings (dollars):!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C01_093EA,S2602_C01_093M,S2602_C01_093MA"}, "S0804_C01_077E": {"label": "Estimate!!Total!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!Less than 10 minutes", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_077EA,S0804_C01_077M,S0804_C01_077MA"}, "S0502PR_C03_033E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Foreign-born population!!HOUSEHOLD TYPE!!In married-couple family", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_033EA,S0502PR_C03_033M,S0502PR_C03_033MA"}, "S0506_C04_113E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!100 to 199 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_113EA,S0506_C04_113M,S0506_C04_113MA"}, "S2404_C05_024E": {"label": "Estimate!!Percent Female!!Full-time, year-round civilian employed population 16 years and over!!Arts, entertainment, and recreation, and accommodation and food services:!!Arts, entertainment, and recreation", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2404", "limit": 0, "attributes": "S2404_C05_024EA,S2404_C05_024M,S2404_C05_024MA"}, "S1903_C02_037E": {"label": "Estimate!!Percent Distribution!!NONFAMILY HOUSEHOLDS!!Nonfamily households!!Female householder!!Not living alone", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1903", "limit": 0, "attributes": "S1903_C02_037EA,S1903_C02_037M,S1903_C02_037MA"}, "S2602_C01_092E": {"label": "Estimate!!Total population!!EARNINGS AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!With earnings:!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C01_092EA,S2602_C01_092M,S2602_C01_092MA"}, "S0506_C04_116E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_116EA,S0506_C04_116M,S0506_C04_116MA"}, "S0804_C01_082E": {"label": "Estimate!!Total!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!30 to 34 minutes", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_082EA,S0804_C01_082M,S0804_C01_082MA"}, "S0505_C05_086E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Civilian employed population 16 years and over!!INDUSTRY!!Public administration", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_086EA,S0505_C05_086M,S0505_C05_086MA"}, "S1810_C02_019E": {"label": "Estimate!!With a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a hearing difficulty", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C02_019EA,S1810_C02_019M,S1810_C02_019MA"}, "S2603_C04_090E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed!!Percent of civilian labor force", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C04_090EA,S2603_C04_090M,S2603_C04_090MA"}, "S2401_C02_017E": {"label": "Estimate!!Male!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Healthcare practitioners and technical occupations:!!Health technologists and technicians", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C02_017EA,S2401_C02_017M,S2401_C02_017MA"}, "S0506_C04_115E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_115EA,S0506_C04_115M,S0506_C04_115MA"}, "S0804_C01_083E": {"label": "Estimate!!Total!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!35 to 44 minutes", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_083EA,S0804_C01_083M,S0804_C01_083MA"}, "S2603_C04_091E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Armed Forces", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C04_091EA,S2603_C04_091M,S2603_C04_091MA"}, "S0505_C05_087E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C05_087EA,S0505_C05_087M,S0505_C05_087MA"}, "S2401_C02_016E": {"label": "Estimate!!Male!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Healthcare practitioners and technical occupations:!!Health diagnosing and treating practitioners and other technical occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C02_016EA,S2401_C02_016M,S2401_C02_016MA"}, "S0804_C01_084E": {"label": "Estimate!!Total!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!45 to 59 minutes", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_084EA,S0804_C01_084M,S0804_C01_084MA"}, "S0506_C04_118E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_118EA,S0506_C04_118M,S0506_C04_118MA"}, "S2603_C04_092E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!EMPLOYMENT STATUS!!Population 16 years and over!!Not in labor force", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C04_092EA,S2603_C04_092M,S2603_C04_092MA"}, "S0505_C05_088E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$1 to $9,999 or loss", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_088EA,S0505_C05_088M,S0505_C05_088MA"}, "S2401_C02_019E": {"label": "Estimate!!Male!!Civilian employed population 16 years and over!!Service occupations:!!Healthcare support occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C02_019EA,S2401_C02_019M,S2401_C02_019MA"}, "S0804_C01_085E": {"label": "Estimate!!Total!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!60 or more minutes", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_085EA,S0804_C01_085M,S0804_C01_085MA"}, "S0506_C04_117E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_117EA,S0506_C04_117M,S0506_C04_117MA"}, "S2603_C04_093E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!OCCUPATION!!Civilian employed population 16 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C04_093EA,S2603_C04_093M,S2603_C04_093MA"}, "S0505_C05_089E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$10,000 to $14,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_089EA,S0505_C05_089M,S0505_C05_089MA"}, "S2401_C02_018E": {"label": "Estimate!!Male!!Civilian employed population 16 years and over!!Service occupations:", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C02_018EA,S2401_C02_018M,S2401_C02_018MA"}, "S1903_C02_040E": {"label": "Estimate!!Percent Distribution!!NONFAMILY HOUSEHOLDS!!Nonfamily households!!Male householder!!Not living alone", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1903", "limit": 0, "attributes": "S1903_C02_040EA,S1903_C02_040M,S1903_C02_040MA"}, "S2404_C05_019E": {"label": "Estimate!!Percent Female!!Full-time, year-round civilian employed population 16 years and over!!Professional, scientific, and management, and administrative and waste management services:!!Administrative and support and waste management services", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2404", "limit": 0, "attributes": "S2404_C05_019EA,S2404_C05_019M,S2404_C05_019MA"}, "S0505_C05_082E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Civilian employed population 16 years and over!!INDUSTRY!!Professional, scientific, and management, and administrative and waste management services", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_082EA,S0505_C05_082M,S0505_C05_082MA"}, "S2602_C01_087E": {"label": "Estimate!!Total population!!OCCUPATION!!Civilian employed population 16 years and over!!Service occupations", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C01_087EA,S2602_C01_087M,S2602_C01_087MA"}, "S1810_C02_015E": {"label": "Estimate!!With a disability!!Total civilian noninstitutionalized population!!AGE!!18 to 34 years", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C02_015EA,S1810_C02_015M,S1810_C02_015MA"}, "S2401_C02_013E": {"label": "Estimate!!Male!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:!!Educational instruction, and library occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C02_013EA,S2401_C02_013M,S2401_C02_013MA"}, "S2603_C04_094E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!OCCUPATION!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C04_094EA,S2603_C04_094M,S2603_C04_094MA"}, "S0506_C04_119E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_119EA,S0506_C04_119M,S0506_C04_119MA"}, "S2404_C05_018E": {"label": "Estimate!!Percent Female!!Full-time, year-round civilian employed population 16 years and over!!Professional, scientific, and management, and administrative and waste management services:!!Management of companies and enterprises", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2404", "limit": 0, "attributes": "S2404_C05_018EA,S2404_C05_018M,S2404_C05_018MA"}, "S0505_C05_083E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Civilian employed population 16 years and over!!INDUSTRY!!Educational services, and health care and social assistance", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_083EA,S0505_C05_083M,S0505_C05_083MA"}, "S1810_C02_016E": {"label": "Estimate!!With a disability!!Total civilian noninstitutionalized population!!AGE!!35 to 64 years", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C02_016EA,S1810_C02_016M,S1810_C02_016MA"}, "S2602_C01_086E": {"label": "Estimate!!Total population!!OCCUPATION!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C01_086EA,S2602_C01_086M,S2602_C01_086MA"}, "S2603_C04_095E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!OCCUPATION!!Civilian employed population 16 years and over!!Service occupations", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C04_095EA,S2603_C04_095M,S2603_C04_095MA"}, "S2401_C02_012E": {"label": "Estimate!!Male!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:!!Legal occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C02_012EA,S2401_C02_012M,S2401_C02_012MA"}, "S0804_C01_080E": {"label": "Estimate!!Total!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!20 to 24 minutes", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_080EA,S0804_C01_080M,S0804_C01_080MA"}, "S1810_C02_017E": {"label": "Estimate!!With a disability!!Total civilian noninstitutionalized population!!AGE!!65 to 74 years", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C02_017EA,S1810_C02_017M,S1810_C02_017MA"}, "S0505_C05_084E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Civilian employed population 16 years and over!!INDUSTRY!!Arts, entertainment, and recreation, and accommodation and food services", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_084EA,S0505_C05_084M,S0505_C05_084MA"}, "S2602_C01_089E": {"label": "Estimate!!Total population!!OCCUPATION!!Civilian employed population 16 years and over!!Natural resources, construction, extraction, and maintenance occupations", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C01_089EA,S2602_C01_089M,S2602_C01_089MA"}, "S2401_C02_015E": {"label": "Estimate!!Male!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Healthcare practitioners and technical occupations:", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C02_015EA,S2401_C02_015M,S2401_C02_015MA"}, "S2603_C04_096E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!OCCUPATION!!Civilian employed population 16 years and over!!Sales and office occupations", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C04_096EA,S2603_C04_096M,S2603_C04_096MA"}, "S0804_C01_081E": {"label": "Estimate!!Total!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!25 to 29 minutes", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_081EA,S0804_C01_081M,S0804_C01_081MA"}, "S1810_C02_018E": {"label": "Estimate!!With a disability!!Total civilian noninstitutionalized population!!AGE!!75 years and over", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C02_018EA,S1810_C02_018M,S1810_C02_018MA"}, "S0505_C05_085E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Civilian employed population 16 years and over!!INDUSTRY!!Other services (except public administration)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_085EA,S0505_C05_085M,S0505_C05_085MA"}, "S2602_C01_088E": {"label": "Estimate!!Total population!!OCCUPATION!!Civilian employed population 16 years and over!!Sales and office occupations", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C01_088EA,S2602_C01_088M,S2602_C01_088MA"}, "S2603_C04_097E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!OCCUPATION!!Civilian employed population 16 years and over!!Natural resources, construction, extraction, and maintenance occupations", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C04_097EA,S2603_C04_097M,S2603_C04_097MA"}, "S2401_C02_014E": {"label": "Estimate!!Male!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:!!Arts, design, entertainment, sports, and media occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C02_014EA,S2401_C02_014M,S2401_C02_014MA"}, "S0501_C05_053E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed!!Percent of civilian labor force", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_053EA,S0501_C05_053M,S0501_C05_053MA"}, "S1810_C02_011E": {"label": "Estimate!!With a disability!!Total civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C02_011EA,S1810_C02_011M,S1810_C02_011MA"}, "S2603_C04_098E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!OCCUPATION!!Civilian employed population 16 years and over!!Production, transportation, and material moving occupations", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C04_098EA,S2603_C04_098M,S2603_C04_098MA"}, "S2402_C05_001E": {"label": "Estimate!!Percent Female!!Full-time, year-round civilian employed population 16 years and over", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2402", "limit": 0, "attributes": "S2402_C05_001EA,S2402_C05_001M,S2402_C05_001MA"}, "S0501_C05_052E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_052EA,S0501_C05_052M,S0501_C05_052MA"}, "S1810_C02_012E": {"label": "Estimate!!With a disability!!Total civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino (of any race)", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C02_012EA,S1810_C02_012M,S1810_C02_012MA"}, "S2603_C04_099E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C04_099EA,S2603_C04_099M,S2603_C04_099MA"}, "S2402_C05_002E": {"label": "Estimate!!Percent Female!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2402", "limit": 0, "attributes": "S2402_C05_002EA,S2402_C05_002M,S2402_C05_002MA"}, "S0501_C05_051E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Employed", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_051EA,S0501_C05_051M,S0501_C05_051MA"}, "S0505_C05_080E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Civilian employed population 16 years and over!!INDUSTRY!!Information", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_080EA,S0505_C05_080M,S0505_C05_080MA"}, "S1810_C02_013E": {"label": "Estimate!!With a disability!!Total civilian noninstitutionalized population!!AGE!!Under 5 years", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C02_013EA,S1810_C02_013M,S1810_C02_013MA"}, "S2402_C05_003E": {"label": "Estimate!!Percent Female!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Management, business, and financial occupations:", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2402", "limit": 0, "attributes": "S2402_C05_003EA,S2402_C05_003M,S2402_C05_003MA"}, "S0501_C05_050E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_050EA,S0501_C05_050M,S0501_C05_050MA"}, "S0505_C05_081E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Civilian employed population 16 years and over!!INDUSTRY!!Finance and insurance, and real estate and rental and leasing", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_081EA,S0505_C05_081M,S0505_C05_081MA"}, "S1810_C02_014E": {"label": "Estimate!!With a disability!!Total civilian noninstitutionalized population!!AGE!!5 to 17 years", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C02_014EA,S1810_C02_014M,S1810_C02_014MA"}, "S2402_C05_004E": {"label": "Estimate!!Percent Female!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Management, business, and financial occupations:!!Management occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2402", "limit": 0, "attributes": "S2402_C05_004EA,S2402_C05_004M,S2402_C05_004MA"}, "S0501_C05_057E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Private wage and salary workers", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_057EA,S0501_C05_057M,S0501_C05_057MA"}, "S0504_C02_091E": {"label": "Estimate!!Foreign-born; Born in Africa!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$25,000 to $34,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_091EA,S0504_C02_091M,S0504_C02_091MA"}, "S2601CPR_C01_004E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!Under 15 years", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_004EA,S2601CPR_C01_004M,S2601CPR_C01_004MA"}, "S0501_C05_056E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!Civilian employed population 16 years and over", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C05_056EA,S0501_C05_056M,S0501_C05_056MA"}, "S0504_C02_090E": {"label": "Estimate!!Foreign-born; Born in Africa!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$15,000 to $24,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_090EA,S0504_C02_090M,S0504_C02_090MA"}, "S2601CPR_C01_002E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!Male", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_002EA,S2601CPR_C01_002M,S2601CPR_C01_002MA"}, "S2601CPR_C01_003E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!Female", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_003EA,S2601CPR_C01_003M,S2601CPR_C01_003MA"}, "S2701_C01_001E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C01_001EA,S2701_C01_001M,S2701_C01_001MA"}, "S2402_C05_005E": {"label": "Estimate!!Percent Female!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Management, business, and financial occupations:!!Business and financial operations occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2402", "limit": 0, "attributes": "S2402_C05_005EA,S2402_C05_005M,S2402_C05_005MA"}, "S0501_C05_055E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!EMPLOYMENT STATUS!!Population 16 years and over!!Not in labor force", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_055EA,S0501_C05_055M,S0501_C05_055MA"}, "S0504_C02_093E": {"label": "Estimate!!Foreign-born; Born in Africa!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$50,000 to $74,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_093EA,S0504_C02_093M,S0504_C02_093MA"}, "S2601CPR_C01_001E": {"label": "Estimate!!Total population!!Total population", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "int", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_001EA,S2601CPR_C01_001M,S2601CPR_C01_001MA"}, "S2701_C01_002E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!AGE!!Under 6 years", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C01_002EA,S2701_C01_002M,S2701_C01_002MA"}, "S2402_C05_006E": {"label": "Estimate!!Percent Female!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Computer, engineering, and science occupations:", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2402", "limit": 0, "attributes": "S2402_C05_006EA,S2402_C05_006M,S2402_C05_006MA"}, "S0501_C05_054E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Armed Forces", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_054EA,S0501_C05_054M,S0501_C05_054MA"}, "S0504_C02_092E": {"label": "Estimate!!Foreign-born; Born in Africa!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$35,000 to $49,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_092EA,S0504_C02_092M,S0504_C02_092MA"}, "S1810_C02_010E": {"label": "Estimate!!With a disability!!Total civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C02_010EA,S1810_C02_010M,S1810_C02_010MA"}, "S2701_C01_003E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!AGE!!6 to 18 years", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C01_003EA,S2701_C01_003M,S2701_C01_003MA"}, "S2402_C05_007E": {"label": "Estimate!!Percent Female!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Computer, engineering, and science occupations:!!Computer and mathematical occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2402", "limit": 0, "attributes": "S2402_C05_007EA,S2402_C05_007M,S2402_C05_007MA"}, "S0504_C02_095E": {"label": "Estimate!!Foreign-born; Born in Africa!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!Median earnings (dollars) for full-time, year-round workers!!Male", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C02_095EA,S0504_C02_095M,S0504_C02_095MA"}, "S0504_C04_101E": {"label": "Estimate!!Foreign-born; Born in Oceania!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income!!Mean Social Security income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C04_101EA,S0504_C04_101M,S0504_C04_101MA"}, "S0504_C02_094E": {"label": "Estimate!!Foreign-born; Born in Africa!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$75,000 or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_094EA,S0504_C02_094M,S0504_C02_094MA"}, "S0504_C04_102E": {"label": "Estimate!!Foreign-born; Born in Oceania!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_102EA,S0504_C04_102M,S0504_C04_102MA"}, "S0504_C02_097E": {"label": "Estimate!!Foreign-born; Born in Africa!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C02_097EA,S0504_C02_097M,S0504_C02_097MA"}, "S0504_C04_103E": {"label": "Estimate!!Foreign-born; Born in Oceania!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income!!Mean Supplemental Security Income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C04_103EA,S0504_C04_103M,S0504_C04_103MA"}, "S0501_C05_059E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Self-employed workers in own not incorporated business", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_059EA,S0501_C05_059M,S0501_C05_059MA"}, "S0504_C02_096E": {"label": "Estimate!!Foreign-born; Born in Africa!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!Median earnings (dollars) for full-time, year-round workers!!Female", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C02_096EA,S0504_C02_096M,S0504_C02_096MA"}, "S0504_C04_104E": {"label": "Estimate!!Foreign-born; Born in Oceania!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_104EA,S0504_C04_104M,S0504_C04_104MA"}, "S0501_C05_058E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Government workers", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_058EA,S0501_C05_058M,S0501_C05_058MA"}, "S0502PR_C03_049E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate (includes equivalency)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_049EA,S0502PR_C03_049M,S0502PR_C03_049MA"}, "S0504_C02_099E": {"label": "Estimate!!Foreign-born; Born in Africa!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings!!Mean earnings (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C02_099EA,S0504_C02_099M,S0504_C02_099MA"}, "S0504_C02_098E": {"label": "Estimate!!Foreign-born; Born in Africa!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_098EA,S0504_C02_098M,S0504_C02_098MA"}, "S0504_C04_100E": {"label": "Estimate!!Foreign-born; Born in Oceania!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_100EA,S0504_C04_100M,S0504_C04_100MA"}, "S0804_C01_066E": {"label": "Estimate!!Total!!Workers 16 years and over who did not work from home", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "int", "group": "S0804", "limit": 0, "attributes": "S0804_C01_066EA,S0804_C01_066M,S0804_C01_066MA"}, "S0502PR_C03_044E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Elementary school (grades K-8)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_044EA,S0502PR_C03_044M,S0502PR_C03_044MA"}, "S2401_C02_021E": {"label": "Estimate!!Male!!Civilian employed population 16 years and over!!Service occupations:!!Protective service occupations:!!Firefighting and prevention, and other protective service workers including supervisors", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C02_021EA,S2401_C02_021M,S2401_C02_021MA"}, "S0502PR_C03_043E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Nursery school, preschool", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_043EA,S0502PR_C03_043M,S0502PR_C03_043MA"}, "S2401_C02_020E": {"label": "Estimate!!Male!!Civilian employed population 16 years and over!!Service occupations:!!Protective service occupations:", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C02_020EA,S2401_C02_020M,S2401_C02_020MA"}, "S0804_C01_067E": {"label": "Estimate!!Total!!Workers 16 years and over who did not work from home!!TIME ARRIVING AT WORK!!12:00 a.m. to 4:59 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_067EA,S0804_C01_067M,S0804_C01_067MA"}, "S0502PR_C03_042E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_042EA,S0502PR_C03_042M,S0502PR_C03_042MA"}, "S0804_C01_068E": {"label": "Estimate!!Total!!Workers 16 years and over who did not work from home!!TIME ARRIVING AT WORK!!5:00 a.m. to 5:29 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_068EA,S0804_C01_068M,S0804_C01_068MA"}, "S2401_C02_023E": {"label": "Estimate!!Male!!Civilian employed population 16 years and over!!Service occupations:!!Food preparation and serving related occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C02_023EA,S2401_C02_023M,S2401_C02_023MA"}, "S0502PR_C03_041E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_041EA,S0502PR_C03_041M,S0502PR_C03_041MA"}, "S2401_C02_022E": {"label": "Estimate!!Male!!Civilian employed population 16 years and over!!Service occupations:!!Protective service occupations:!!Law enforcement workers including supervisors", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C02_022EA,S2401_C02_022M,S2401_C02_022MA"}, "S0804_C01_069E": {"label": "Estimate!!Total!!Workers 16 years and over who did not work from home!!TIME ARRIVING AT WORK!!5:30 a.m. to 5:59 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_069EA,S0804_C01_069M,S0804_C01_069MA"}, "S0506_C04_100E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_100EA,S0506_C04_100M,S0506_C04_100MA"}, "S0804_C01_062E": {"label": "Estimate!!Total!!Workers 16 years and over!!CLASS OF WORKER!!Private wage and salary workers", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_062EA,S0804_C01_062M,S0804_C01_062MA"}, "S0502PR_C03_048E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than high school graduate", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_048EA,S0502PR_C03_048M,S0502PR_C03_048MA"}, "S0804_C01_063E": {"label": "Estimate!!Total!!Workers 16 years and over!!CLASS OF WORKER!!Government workers", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_063EA,S0804_C01_063M,S0804_C01_063MA"}, "S0502PR_C03_047E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_047EA,S0502PR_C03_047M,S0502PR_C03_047MA"}, "S0804_C01_064E": {"label": "Estimate!!Total!!Workers 16 years and over!!CLASS OF WORKER!!Self-employed workers in own not incorporated business", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_064EA,S0804_C01_064M,S0804_C01_064MA"}, "S0506_C04_102E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_102EA,S0506_C04_102M,S0506_C04_102MA"}, "S0502PR_C03_046E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!College or graduate school", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_046EA,S0502PR_C03_046M,S0502PR_C03_046MA"}, "S0506_C04_101E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income!!Mean Social Security income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C04_101EA,S0506_C04_101M,S0506_C04_101MA"}, "S0804_C01_065E": {"label": "Estimate!!Total!!Workers 16 years and over!!CLASS OF WORKER!!Unpaid family workers", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_065EA,S0804_C01_065M,S0804_C01_065MA"}, "S0502PR_C03_045E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!High school (grades 9-12)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_045EA,S0502PR_C03_045M,S0502PR_C03_045MA"}, "S0506_C04_104E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_104EA,S0506_C04_104M,S0506_C04_104MA"}, "S0804_C01_070E": {"label": "Estimate!!Total!!Workers 16 years and over who did not work from home!!TIME ARRIVING AT WORK!!6:00 a.m. to 6:29 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_070EA,S0804_C01_070M,S0804_C01_070MA"}, "S0505_C05_098E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_098EA,S0505_C05_098M,S0505_C05_098MA"}, "S2401_C02_029E": {"label": "Estimate!!Male!!Civilian employed population 16 years and over!!Natural resources, construction, and maintenance occupations:", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C02_029EA,S2401_C02_029M,S2401_C02_029MA"}, "S0506_C04_103E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income!!Mean Supplemental Security Income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C04_103EA,S0506_C04_103M,S0506_C04_103MA"}, "S0804_C01_071E": {"label": "Estimate!!Total!!Workers 16 years and over who did not work from home!!TIME ARRIVING AT WORK!!6:30 a.m. to 6:59 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_071EA,S0804_C01_071M,S0804_C01_071MA"}, "S0505_C05_099E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings!!Mean earnings (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C05_099EA,S0505_C05_099M,S0505_C05_099MA"}, "S2401_C02_028E": {"label": "Estimate!!Male!!Civilian employed population 16 years and over!!Sales and office occupations:!!Office and administrative support occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C02_028EA,S2401_C02_028M,S2401_C02_028MA"}, "S0503_C01_100E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_100EA,S0503_C01_100M,S0503_C01_100MA"}, "S0804_C01_072E": {"label": "Estimate!!Total!!Workers 16 years and over who did not work from home!!TIME ARRIVING AT WORK!!7:00 a.m. to 7:29 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_072EA,S0804_C01_072M,S0804_C01_072MA"}, "S0506_C04_106E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_106EA,S0506_C04_106M,S0506_C04_106MA"}, "S2603_C04_080E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!WORLD REGION OF BIRTH OF FOREIGN BORN!!Foreign-born population excluding population born at sea!!Other", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C04_080EA,S2603_C04_080M,S2603_C04_080MA"}, "S0506_C04_105E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income!!Mean cash public assistance income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C04_105EA,S0506_C04_105M,S0506_C04_105MA"}, "S0804_C01_073E": {"label": "Estimate!!Total!!Workers 16 years and over who did not work from home!!TIME ARRIVING AT WORK!!7:30 a.m. to 7:59 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_073EA,S0804_C01_073M,S0804_C01_073MA"}, "S2603_C04_081E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C04_081EA,S2603_C04_081M,S2603_C04_081MA"}, "S0503_C01_102E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_102EA,S0503_C01_102M,S0503_C01_102MA"}, "S0501_C05_061E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!Civilian employed population 16 years and over!!OCCUPATION!!Management, business, science, and arts occupations", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_061EA,S0501_C05_061M,S0501_C05_061MA"}, "S0502PR_C03_040E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!MARITAL STATUS!!Population 15 years and over!!Divorced or separated", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_040EA,S0502PR_C03_040M,S0502PR_C03_040MA"}, "S0506_C04_108E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Food Stamp/SNAP benefits", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_108EA,S0506_C04_108M,S0506_C04_108MA"}, "S0505_C05_094E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$75,000 or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_094EA,S0505_C05_094M,S0505_C05_094MA"}, "S2603_C04_082E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!English only", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C04_082EA,S2603_C04_082M,S2603_C04_082MA"}, "S1810_C02_027E": {"label": "Estimate!!With a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a hearing difficulty!!Population 65 years and over!!Population 65 to 74 years", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C02_027EA,S1810_C02_027M,S1810_C02_027MA"}, "S2401_C02_025E": {"label": "Estimate!!Male!!Civilian employed population 16 years and over!!Service occupations:!!Personal care and service occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C02_025EA,S2401_C02_025M,S2401_C02_025MA"}, "S0503_C01_101E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income!!Mean Social Security income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C01_101EA,S0503_C01_101M,S0503_C01_101MA"}, "S1810_C02_028E": {"label": "Estimate!!With a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a hearing difficulty!!Population 65 years and over!!Population 75 years and over", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C02_028EA,S1810_C02_028M,S1810_C02_028MA"}, "S0505_C05_095E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!Median earnings (dollars) for full-time, year-round workers!!Male", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C05_095EA,S0505_C05_095M,S0505_C05_095MA"}, "S0506_C04_107E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income!!Mean retirement income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C04_107EA,S0506_C04_107M,S0506_C04_107MA"}, "S0501_C05_060E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Unpaid family workers", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_060EA,S0501_C05_060M,S0501_C05_060MA"}, "S2401_C02_024E": {"label": "Estimate!!Male!!Civilian employed population 16 years and over!!Service occupations:!!Building and grounds cleaning and maintenance occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C02_024EA,S2401_C02_024M,S2401_C02_024MA"}, "S2603_C04_083E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C04_083EA,S2603_C04_083M,S2603_C04_083MA"}, "S2402_C05_010E": {"label": "Estimate!!Percent Female!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2402", "limit": 0, "attributes": "S2402_C05_010EA,S2402_C05_010M,S2402_C05_010MA"}, "S1810_C02_029E": {"label": "Estimate!!With a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a vision difficulty", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C02_029EA,S1810_C02_029M,S1810_C02_029MA"}, "S0505_C05_096E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!Median earnings (dollars) for full-time, year-round workers!!Female", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C05_096EA,S0505_C05_096M,S0505_C05_096MA"}, "S2401_C02_027E": {"label": "Estimate!!Male!!Civilian employed population 16 years and over!!Sales and office occupations:!!Sales and related occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C02_027EA,S2401_C02_027M,S2401_C02_027MA"}, "S0503_C01_104E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_104EA,S0503_C01_104M,S0503_C01_104MA"}, "S2603_C04_084E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English!!Speak English less than \"very well\"", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C04_084EA,S2603_C04_084M,S2603_C04_084MA"}, "S0503_C01_103E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income!!Mean Supplemental Security Income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C01_103EA,S0503_C01_103M,S0503_C01_103MA"}, "S2402_C05_011E": {"label": "Estimate!!Percent Female!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:!!Community and social service occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2402", "limit": 0, "attributes": "S2402_C05_011EA,S2402_C05_011M,S2402_C05_011MA"}, "S0506_C04_109E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!Median Household income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C04_109EA,S0506_C04_109M,S0506_C04_109MA"}, "S0505_C05_097E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C05_097EA,S0505_C05_097M,S0505_C05_097MA"}, "S2401_C02_026E": {"label": "Estimate!!Male!!Civilian employed population 16 years and over!!Sales and office occupations:", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C02_026EA,S2401_C02_026M,S2401_C02_026MA"}, "S2603_C04_085E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!EMPLOYMENT STATUS!!Population 16 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C04_085EA,S2603_C04_085M,S2603_C04_085MA"}, "S0501_C05_065E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!Civilian employed population 16 years and over!!OCCUPATION!!Production, transportation, and material moving occupations", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_065EA,S0501_C05_065M,S0501_C05_065MA"}, "S2402_C05_012E": {"label": "Estimate!!Percent Female!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:!!Legal occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2402", "limit": 0, "attributes": "S2402_C05_012EA,S2402_C05_012M,S2402_C05_012MA"}, "S0505_C05_090E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$15,000 to $24,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_090EA,S0505_C05_090M,S0505_C05_090MA"}, "S1810_C02_023E": {"label": "Estimate!!With a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a hearing difficulty!!Population 18 to 64 years", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C02_023EA,S1810_C02_023M,S1810_C02_023MA"}, "S2603_C04_086E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C04_086EA,S2603_C04_086M,S2603_C04_086MA"}, "S0503_C01_106E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_106EA,S0503_C01_106M,S0503_C01_106MA"}, "S2402_C05_013E": {"label": "Estimate!!Percent Female!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:!!Educational instruction, and library occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2402", "limit": 0, "attributes": "S2402_C05_013EA,S2402_C05_013M,S2402_C05_013MA"}, "S0501_C05_064E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!Civilian employed population 16 years and over!!OCCUPATION!!Natural resources, construction, and maintenance occupations", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_064EA,S0501_C05_064M,S0501_C05_064MA"}, "S0505_C05_091E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$25,000 to $34,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_091EA,S0505_C05_091M,S0505_C05_091MA"}, "S1810_C02_024E": {"label": "Estimate!!With a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a hearing difficulty!!Population 18 to 64 years!!Population 18 to 34 years", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C02_024EA,S1810_C02_024M,S1810_C02_024MA"}, "S2603_C04_087E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C04_087EA,S2603_C04_087M,S2603_C04_087MA"}, "S0503_C01_105E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income!!Mean cash public assistance income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C01_105EA,S0503_C01_105M,S0503_C01_105MA"}, "S2402_C05_014E": {"label": "Estimate!!Percent Female!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:!!Arts, design, entertainment, sports, and media occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2402", "limit": 0, "attributes": "S2402_C05_014EA,S2402_C05_014M,S2402_C05_014MA"}, "S0501_C05_063E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!Civilian employed population 16 years and over!!OCCUPATION!!Sales and office occupations", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_063EA,S0501_C05_063M,S0501_C05_063MA"}, "S0505_C05_092E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$35,000 to $49,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_092EA,S0505_C05_092M,S0505_C05_092MA"}, "S1810_C02_025E": {"label": "Estimate!!With a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a hearing difficulty!!Population 18 to 64 years!!Population 35 to 64 years", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C02_025EA,S1810_C02_025M,S1810_C02_025MA"}, "S0503_C01_108E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Food Stamp/SNAP benefits", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_108EA,S0503_C01_108M,S0503_C01_108MA"}, "S2603_C04_088E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Employed", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C04_088EA,S2603_C04_088M,S2603_C04_088MA"}, "S2402_C05_015E": {"label": "Estimate!!Percent Female!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Healthcare practitioners and technical occupations:", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2402", "limit": 0, "attributes": "S2402_C05_015EA,S2402_C05_015M,S2402_C05_015MA"}, "S0501_C05_062E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!Civilian employed population 16 years and over!!OCCUPATION!!Service occupations", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_062EA,S0501_C05_062M,S0501_C05_062MA"}, "S0505_C05_093E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$50,000 to $74,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_093EA,S0505_C05_093M,S0505_C05_093MA"}, "S1810_C02_026E": {"label": "Estimate!!With a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a hearing difficulty!!Population 65 years and over", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C02_026EA,S1810_C02_026M,S1810_C02_026MA"}, "S2603_C04_089E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C04_089EA,S2603_C04_089M,S2603_C04_089MA"}, "S0503_C01_107E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income!!Mean retirement income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C01_107EA,S0503_C01_107M,S0503_C01_107MA"}, "S0501_C05_069E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!Civilian employed population 16 years and over!!INDUSTRY!!Wholesale trade", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_069EA,S0501_C05_069M,S0501_C05_069MA"}, "S2402_C05_016E": {"label": "Estimate!!Percent Female!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Healthcare practitioners and technical occupations:!!Health diagnosing and treating practitioners and other technical occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2402", "limit": 0, "attributes": "S2402_C05_016EA,S2402_C05_016M,S2402_C05_016MA"}, "S0501_C05_068E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!Civilian employed population 16 years and over!!INDUSTRY!!Manufacturing", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_068EA,S0501_C05_068M,S0501_C05_068MA"}, "S1810_C02_020E": {"label": "Estimate!!With a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a hearing difficulty!!Population under 18 years", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C02_020EA,S1810_C02_020M,S1810_C02_020MA"}, "S0503_C01_109E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!Median Household income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C01_109EA,S0503_C01_109M,S0503_C01_109MA"}, "S2402_C05_017E": {"label": "Estimate!!Percent Female!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Healthcare practitioners and technical occupations:!!Health technologists and technicians", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2402", "limit": 0, "attributes": "S2402_C05_017EA,S2402_C05_017M,S2402_C05_017MA"}, "S0501_C05_067E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!Civilian employed population 16 years and over!!INDUSTRY!!Construction", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_067EA,S0501_C05_067M,S0501_C05_067MA"}, "S1810_C02_021E": {"label": "Estimate!!With a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a hearing difficulty!!Population under 18 years!!Population under 5 years", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C02_021EA,S1810_C02_021M,S1810_C02_021MA"}, "S2402_C05_018E": {"label": "Estimate!!Percent Female!!Full-time, year-round civilian employed population 16 years and over!!Service occupations:", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2402", "limit": 0, "attributes": "S2402_C05_018EA,S2402_C05_018M,S2402_C05_018MA"}, "S0501_C05_066E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!Civilian employed population 16 years and over!!INDUSTRY!!Agriculture, forestry, fishing and hunting, and mining", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_066EA,S0501_C05_066M,S0501_C05_066MA"}, "S1810_C02_022E": {"label": "Estimate!!With a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a hearing difficulty!!Population under 18 years!!Population 5 to 17 years", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C02_022EA,S1810_C02_022M,S1810_C02_022MA"}, "S2402_C05_019E": {"label": "Estimate!!Percent Female!!Full-time, year-round civilian employed population 16 years and over!!Service occupations:!!Healthcare support occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2402", "limit": 0, "attributes": "S2402_C05_019EA,S2402_C05_019M,S2402_C05_019MA"}, "S0504_C04_113E": {"label": "Estimate!!Foreign-born; Born in Oceania!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!100 to 199 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_113EA,S0504_C04_113M,S0504_C04_113MA"}, "S1903_C02_016E": {"label": "Estimate!!Percent Distribution!!FAMILIES!!Families!!With own children of householder under 18 years", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1903", "limit": 0, "attributes": "S1903_C02_016EA,S1903_C02_016M,S1903_C02_016MA"}, "S0501_C05_025E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!Total population!!HOUSEHOLD TYPE!!In other households", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_025EA,S0501_C05_025M,S0501_C05_025MA"}, "S0502PR_C03_016E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Foreign-born population!!SEX AND AGE!!25 to 44 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_016EA,S0502PR_C03_016M,S0502PR_C03_016MA"}, "S0501_C05_024E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!Total population!!HOUSEHOLD TYPE!!In married-couple family", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_024EA,S0501_C05_024M,S0501_C05_024MA"}, "S1502_C02_024E": {"label": "Estimate!!Percent!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!65 years and over!!Arts, Humanities, and Others", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "float", "group": "S1502", "limit": 0, "attributes": "S1502_C02_024EA,S1502_C02_024M,S1502_C02_024MA"}, "S0504_C04_114E": {"label": "Estimate!!Foreign-born; Born in Oceania!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!At or above 200 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_114EA,S0504_C04_114M,S0504_C04_114MA"}, "S1903_C02_015E": {"label": "Estimate!!Percent Distribution!!FAMILIES!!Families", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C02_015EA,S1903_C02_015M,S1903_C02_015MA"}, "S0502PR_C03_015E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Foreign-born population!!SEX AND AGE!!18 to 24 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_015EA,S0502PR_C03_015M,S0502PR_C03_015MA"}, "S0501_C05_023E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_023EA,S0501_C05_023M,S0501_C05_023MA"}, "S0504_C04_115E": {"label": "Estimate!!Foreign-born; Born in Oceania!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_115EA,S0504_C04_115M,S0504_C04_115MA"}, "S1903_C02_018E": {"label": "Estimate!!Percent Distribution!!FAMILIES!!Families!!Married-couple families", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1903", "limit": 0, "attributes": "S1903_C02_018EA,S1903_C02_018M,S1903_C02_018MA"}, "S0502PR_C03_014E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Foreign-born population!!SEX AND AGE!!5 to 17 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_014EA,S0502PR_C03_014M,S0502PR_C03_014MA"}, "S0501_C05_022E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_022EA,S0501_C05_022M,S0501_C05_022MA"}, "S0504_C04_116E": {"label": "Estimate!!Foreign-born; Born in Oceania!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_116EA,S0504_C04_116M,S0504_C04_116MA"}, "S1903_C02_017E": {"label": "Estimate!!Percent Distribution!!FAMILIES!!Families!!With no own children of householder under 18 years", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1903", "limit": 0, "attributes": "S1903_C02_017EA,S1903_C02_017M,S1903_C02_017MA"}, "S0502PR_C03_013E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Foreign-born population!!SEX AND AGE!!Under 5 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_013EA,S0502PR_C03_013M,S0502PR_C03_013MA"}, "S0501_C05_029E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_029EA,S0501_C05_029M,S0501_C05_029MA"}, "S0504_C04_110E": {"label": "Estimate!!Foreign-born; Born in Oceania!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!Average number of workers per household", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_110EA,S0504_C04_110M,S0504_C04_110MA"}, "S1903_C02_019E": {"label": "Estimate!!Percent Distribution!!FAMILIES!!Families!!Married-couple families!!With own children under 18 years", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1903", "limit": 0, "attributes": "S1903_C02_019EA,S1903_C02_019M,S1903_C02_019MA"}, "S0502PR_C03_019E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Foreign-born population!!SEX AND AGE!!65 to 74 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_019EA,S0502PR_C03_019M,S0502PR_C03_019MA"}, "S0501_C05_028E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!MARITAL STATUS!!Population 15 years and over", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C05_028EA,S0501_C05_028M,S0501_C05_028MA"}, "S0504_C04_111E": {"label": "Estimate!!Foreign-born; Born in Oceania!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C04_111EA,S0504_C04_111M,S0504_C04_111MA"}, "S0502PR_C03_018E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Foreign-born population!!SEX AND AGE!!55 to 64 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_018EA,S0502PR_C03_018M,S0502PR_C03_018MA"}, "S0501_C05_027E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!Total population!!Average family size", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_027EA,S0501_C05_027M,S0501_C05_027MA"}, "S0504_C04_112E": {"label": "Estimate!!Foreign-born; Born in Oceania!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!Below 100 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_112EA,S0504_C04_112M,S0504_C04_112MA"}, "S0502PR_C03_017E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Foreign-born population!!SEX AND AGE!!45 to 54 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_017EA,S0502PR_C03_017M,S0502PR_C03_017MA"}, "S0501_C05_026E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!Total population!!Average household size", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_026EA,S0501_C05_026M,S0501_C05_026MA"}, "S2404_C05_003E": {"label": "Estimate!!Percent Female!!Full-time, year-round civilian employed population 16 years and over!!Agriculture, forestry, fishing and hunting, and mining:!!Agriculture, forestry, fishing and hunting", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2404", "limit": 0, "attributes": "S2404_C05_003EA,S2404_C05_003M,S2404_C05_003MA"}, "S0505_C05_058E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_058EA,S0505_C05_058M,S0505_C05_058MA"}, "S2602_C01_071E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Not a U.S. citizen!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C01_071EA,S2602_C01_071M,S2602_C01_071MA"}, "S0505_C05_059E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Employed", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_059EA,S0505_C05_059M,S0505_C05_059MA"}, "S2404_C05_002E": {"label": "Estimate!!Percent Female!!Full-time, year-round civilian employed population 16 years and over!!Agriculture, forestry, fishing and hunting, and mining:", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2404", "limit": 0, "attributes": "S2404_C05_002EA,S2404_C05_002M,S2404_C05_002MA"}, "S2602_C01_070E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Not a U.S. citizen", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C01_070EA,S2602_C01_070M,S2602_C01_070MA"}, "S1903_C02_010E": {"label": "Estimate!!Percent Distribution!!HOUSEHOLD INCOME BY RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Households!!White alone, not Hispanic or Latino", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1903", "limit": 0, "attributes": "S1903_C02_010EA,S1903_C02_010M,S1903_C02_010MA"}, "S2404_C05_005E": {"label": "Estimate!!Percent Female!!Full-time, year-round civilian employed population 16 years and over!!Construction", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2404", "limit": 0, "attributes": "S2404_C05_005EA,S2404_C05_005M,S2404_C05_005MA"}, "S2602_C01_073E": {"label": "Estimate!!Total population!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C01_073EA,S2602_C01_073M,S2602_C01_073MA"}, "S2404_C05_004E": {"label": "Estimate!!Percent Female!!Full-time, year-round civilian employed population 16 years and over!!Agriculture, forestry, fishing and hunting, and mining:!!Mining, quarrying, and oil and gas extraction", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2404", "limit": 0, "attributes": "S2404_C05_004EA,S2404_C05_004M,S2404_C05_004MA"}, "S2602_C01_072E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Not a U.S. citizen!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C01_072EA,S2602_C01_072M,S2602_C01_072MA"}, "S0502PR_C03_012E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Foreign-born population!!SEX AND AGE!!Female", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_012EA,S0502PR_C03_012M,S0502PR_C03_012MA"}, "S0505_C05_054E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_054EA,S0505_C05_054M,S0505_C05_054MA"}, "S2302_C01_007E": {"label": "Estimate!!Total!!Families!!EMPLOYMENT STATUS CHARACTERISTICS!!Other families", "concept": "Employment Characteristics of Families", "predicateType": "int", "group": "S2302", "limit": 0, "attributes": "S2302_C01_007EA,S2302_C01_007M,S2302_C01_007MA"}, "S1903_C02_012E": {"label": "Estimate!!Percent Distribution!!HOUSEHOLD INCOME BY AGE OF HOUSEHOLDER!!25 to 44 years", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1903", "limit": 0, "attributes": "S1903_C02_012EA,S1903_C02_012M,S1903_C02_012MA"}, "S1903_C02_011E": {"label": "Estimate!!Percent Distribution!!HOUSEHOLD INCOME BY AGE OF HOUSEHOLDER!!15 to 24 years", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1903", "limit": 0, "attributes": "S1903_C02_011EA,S1903_C02_011M,S1903_C02_011MA"}, "S0502PR_C03_011E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Foreign-born population!!SEX AND AGE!!Male", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_011EA,S0502PR_C03_011M,S0502PR_C03_011MA"}, "S0505_C05_055E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English!!Speak English less than \"very well\"", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_055EA,S0505_C05_055M,S0505_C05_055MA"}, "S2302_C01_008E": {"label": "Estimate!!Total!!Families!!EMPLOYMENT STATUS CHARACTERISTICS!!Other families!!Female householder, no spouse present", "concept": "Employment Characteristics of Families", "predicateType": "int", "group": "S2302", "limit": 0, "attributes": "S2302_C01_008EA,S2302_C01_008M,S2302_C01_008MA"}, "S0502PR_C03_010E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Foreign-born population!!WORLD REGION OF BIRTH OF FOREIGN-BORN!!Northern America", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_010EA,S0502PR_C03_010M,S0502PR_C03_010MA"}, "S2404_C05_001E": {"label": "Estimate!!Percent Female!!Full-time, year-round civilian employed population 16 years and over", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2404", "limit": 0, "attributes": "S2404_C05_001EA,S2404_C05_001M,S2404_C05_001MA"}, "S0505_C05_056E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!EMPLOYMENT STATUS!!Population 16 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C05_056EA,S0505_C05_056M,S0505_C05_056MA"}, "S2302_C01_009E": {"label": "Estimate!!Total!!Families!!EMPLOYMENT STATUS CHARACTERISTICS!!Other families!!Female householder, no spouse present!!In labor force", "concept": "Employment Characteristics of Families", "predicateType": "int", "group": "S2302", "limit": 0, "attributes": "S2302_C01_009EA,S2302_C01_009M,S2302_C01_009MA"}, "S1903_C02_014E": {"label": "Estimate!!Percent Distribution!!HOUSEHOLD INCOME BY AGE OF HOUSEHOLDER!!65 years and over", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1903", "limit": 0, "attributes": "S1903_C02_014EA,S1903_C02_014M,S1903_C02_014MA"}, "S0505_C05_057E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_057EA,S0505_C05_057M,S0505_C05_057MA"}, "S1903_C02_013E": {"label": "Estimate!!Percent Distribution!!HOUSEHOLD INCOME BY AGE OF HOUSEHOLDER!!45 to 64 years", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1903", "limit": 0, "attributes": "S1903_C02_013EA,S1903_C02_013M,S1903_C02_013MA"}, "S0505_C05_062E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Armed Forces", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_062EA,S0505_C05_062M,S0505_C05_062MA"}, "S0506_C02_086E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Civilian employed population 16 years and over!!INDUSTRY!!Public administration", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_086EA,S0506_C02_086M,S0506_C02_086MA"}, "S2602_C01_067E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Naturalized U.S. citizen", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C01_067EA,S2602_C01_067M,S2602_C01_067MA"}, "S2302_C01_003E": {"label": "Estimate!!Total!!Families!!EMPLOYMENT STATUS CHARACTERISTICS!!Opposite-sex married-couple families!!Both husband and wife in labor force", "concept": "Employment Characteristics of Families", "predicateType": "int", "group": "S2302", "limit": 0, "attributes": "S2302_C01_003EA,S2302_C01_003M,S2302_C01_003MA"}, "S0505_C05_063E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!EMPLOYMENT STATUS!!Population 16 years and over!!Not in labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_063EA,S0505_C05_063M,S0505_C05_063MA"}, "S2802_C02_019E": {"label": "Estimate!!Broadband Internet Subscription!!With a computer!!Total population in households!!EMPLOYMENT STATUS!!Civilian population 16 years and over!!In labor force", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C02_019EA,S2802_C02_019M,S2802_C02_019MA"}, "S0506_C02_087E": {"label": "Estimate!!Foreign-born; Born in Latin America!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C02_087EA,S0506_C02_087M,S0506_C02_087MA"}, "S2602_C01_066E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C01_066EA,S2602_C01_066M,S2602_C01_066MA"}, "S2302_C01_004E": {"label": "Estimate!!Total!!Families!!EMPLOYMENT STATUS CHARACTERISTICS!!Opposite-sex married-couple families!!Husband in labor force, wife not in labor force", "concept": "Employment Characteristics of Families", "predicateType": "int", "group": "S2302", "limit": 0, "attributes": "S2302_C01_004EA,S2302_C01_004M,S2302_C01_004MA"}, "S0505_C05_064E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Civilian employed population 16 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C05_064EA,S0505_C05_064M,S0505_C05_064MA"}, "S2602_C01_069E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Naturalized U.S. citizen!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C01_069EA,S2602_C01_069M,S2602_C01_069MA"}, "S0506_C02_084E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Civilian employed population 16 years and over!!INDUSTRY!!Arts, entertainment, and recreation, and accommodation and food services", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_084EA,S0506_C02_084M,S0506_C02_084MA"}, "S2302_C01_005E": {"label": "Estimate!!Total!!Families!!EMPLOYMENT STATUS CHARACTERISTICS!!Opposite-sex married-couple families!!Wife in labor force, husband not in labor force", "concept": "Employment Characteristics of Families", "predicateType": "int", "group": "S2302", "limit": 0, "attributes": "S2302_C01_005EA,S2302_C01_005M,S2302_C01_005MA"}, "S0506_C02_085E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Civilian employed population 16 years and over!!INDUSTRY!!Other services (except public administration)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_085EA,S0506_C02_085M,S0506_C02_085MA"}, "S2602_C01_068E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Naturalized U.S. citizen!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C01_068EA,S2602_C01_068M,S2602_C01_068MA"}, "S0505_C05_065E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Private wage and salary workers", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_065EA,S0505_C05_065M,S0505_C05_065MA"}, "S2302_C01_006E": {"label": "Estimate!!Total!!Families!!EMPLOYMENT STATUS CHARACTERISTICS!!Opposite-sex married-couple families!!Both husband and wife not in labor force", "concept": "Employment Characteristics of Families", "predicateType": "int", "group": "S2302", "limit": 0, "attributes": "S2302_C01_006EA,S2302_C01_006M,S2302_C01_006MA"}, "S2402_C05_020E": {"label": "Estimate!!Percent Female!!Full-time, year-round civilian employed population 16 years and over!!Service occupations:!!Protective service occupations:", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2402", "limit": 0, "attributes": "S2402_C05_020EA,S2402_C05_020M,S2402_C05_020MA"}, "S0506_C02_082E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Civilian employed population 16 years and over!!INDUSTRY!!Professional, scientific, and management, and administrative and waste management services", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_082EA,S0506_C02_082M,S0506_C02_082MA"}, "S2802_C02_016E": {"label": "Estimate!!Broadband Internet Subscription!!With a computer!!Total population in households!!EDUCATIONAL ATTAINMENT!!Household population 25 years and over!!High school graduate (includes equivalency), some college or associate's degree", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C02_016EA,S2802_C02_016M,S2802_C02_016MA"}, "S2602_C01_063E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Native!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C01_063EA,S2602_C01_063M,S2602_C01_063MA"}, "S2402_C05_021E": {"label": "Estimate!!Percent Female!!Full-time, year-round civilian employed population 16 years and over!!Service occupations:!!Protective service occupations:!!Firefighting and prevention, and other protective service workers including supervisors", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2402", "limit": 0, "attributes": "S2402_C05_021EA,S2402_C05_021M,S2402_C05_021MA"}, "S2802_C02_015E": {"label": "Estimate!!Broadband Internet Subscription!!With a computer!!Total population in households!!EDUCATIONAL ATTAINMENT!!Household population 25 years and over!!Less than high school graduate or equivalency", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C02_015EA,S2802_C02_015M,S2802_C02_015MA"}, "S0506_C02_083E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Civilian employed population 16 years and over!!INDUSTRY!!Educational services, and health care and social assistance", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_083EA,S0506_C02_083M,S0506_C02_083MA"}, "S2602_C01_062E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Native!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C01_062EA,S2602_C01_062M,S2602_C01_062MA"}, "S2402_C05_022E": {"label": "Estimate!!Percent Female!!Full-time, year-round civilian employed population 16 years and over!!Service occupations:!!Protective service occupations:!!Law enforcement workers including supervisors", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2402", "limit": 0, "attributes": "S2402_C05_022EA,S2402_C05_022M,S2402_C05_022MA"}, "S0505_C05_060E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_060EA,S0505_C05_060M,S0505_C05_060MA"}, "S2302_C01_001E": {"label": "Estimate!!Total!!Families", "concept": "Employment Characteristics of Families", "predicateType": "int", "group": "S2302", "limit": 0, "attributes": "S2302_C01_001EA,S2302_C01_001M,S2302_C01_001MA"}, "S2802_C02_018E": {"label": "Estimate!!Broadband Internet Subscription!!With a computer!!Total population in households!!EMPLOYMENT STATUS!!Civilian population 16 years and over", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C02_018EA,S2802_C02_018M,S2802_C02_018MA"}, "S2602_C01_065E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C01_065EA,S2602_C01_065M,S2602_C01_065MA"}, "S0506_C02_080E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Civilian employed population 16 years and over!!INDUSTRY!!Information", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_080EA,S0506_C02_080M,S0506_C02_080MA"}, "S2402_C05_023E": {"label": "Estimate!!Percent Female!!Full-time, year-round civilian employed population 16 years and over!!Service occupations:!!Food preparation and serving related occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2402", "limit": 0, "attributes": "S2402_C05_023EA,S2402_C05_023M,S2402_C05_023MA"}, "S0505_C05_061E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed!!Percent of civilian labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_061EA,S0505_C05_061M,S0505_C05_061MA"}, "S2802_C02_017E": {"label": "Estimate!!Broadband Internet Subscription!!With a computer!!Total population in households!!EDUCATIONAL ATTAINMENT!!Household population 25 years and over!!Bachelor's degree or higher", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C02_017EA,S2802_C02_017M,S2802_C02_017MA"}, "S0506_C02_081E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Civilian employed population 16 years and over!!INDUSTRY!!Finance and insurance, and real estate and rental and leasing", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_081EA,S0506_C02_081M,S0506_C02_081MA"}, "S2602_C01_064E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C01_064EA,S2602_C01_064M,S2602_C01_064MA"}, "S2302_C01_002E": {"label": "Estimate!!Total!!Families!!EMPLOYMENT STATUS CHARACTERISTICS!!Opposite-sex married-couple families", "concept": "Employment Characteristics of Families", "predicateType": "int", "group": "S2302", "limit": 0, "attributes": "S2302_C01_002EA,S2302_C01_002M,S2302_C01_002MA"}, "S2402_C05_024E": {"label": "Estimate!!Percent Female!!Full-time, year-round civilian employed population 16 years and over!!Service occupations:!!Building and grounds cleaning and maintenance occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2402", "limit": 0, "attributes": "S2402_C05_024EA,S2402_C05_024M,S2402_C05_024MA"}, "S2802_C02_012E": {"label": "Estimate!!Broadband Internet Subscription!!With a computer!!Total population in households!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C02_012EA,S2802_C02_012M,S2802_C02_012MA"}, "S0504_C04_109E": {"label": "Estimate!!Foreign-born; Born in Oceania!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!Median Household income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C04_109EA,S0504_C04_109M,S0504_C04_109MA"}, "S2402_C05_025E": {"label": "Estimate!!Percent Female!!Full-time, year-round civilian employed population 16 years and over!!Service occupations:!!Personal care and service occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2402", "limit": 0, "attributes": "S2402_C05_025EA,S2402_C05_025M,S2402_C05_025MA"}, "S2802_C02_011E": {"label": "Estimate!!Broadband Internet Subscription!!With a computer!!Total population in households!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C02_011EA,S2802_C02_011M,S2802_C02_011MA"}, "S2402_C05_026E": {"label": "Estimate!!Percent Female!!Full-time, year-round civilian employed population 16 years and over!!Sales and office occupations:", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2402", "limit": 0, "attributes": "S2402_C05_026EA,S2402_C05_026M,S2402_C05_026MA"}, "S2802_C02_014E": {"label": "Estimate!!Broadband Internet Subscription!!With a computer!!Total population in households!!EDUCATIONAL ATTAINMENT!!Household population 25 years and over", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C02_014EA,S2802_C02_014M,S2802_C02_014MA"}, "S2802_C02_013E": {"label": "Estimate!!Broadband Internet Subscription!!With a computer!!Total population in households!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C02_013EA,S2802_C02_013M,S2802_C02_013MA"}, "S0502PR_C03_009E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Foreign-born population!!WORLD REGION OF BIRTH OF FOREIGN-BORN!!Latin America", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_009EA,S0502PR_C03_009M,S0502PR_C03_009MA"}, "S2402_C05_027E": {"label": "Estimate!!Percent Female!!Full-time, year-round civilian employed population 16 years and over!!Sales and office occupations:!!Sales and related occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2402", "limit": 0, "attributes": "S2402_C05_027EA,S2402_C05_027M,S2402_C05_027MA"}, "S0501_C05_033E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C05_033EA,S0501_C05_033M,S0501_C05_033MA"}, "S0504_C04_105E": {"label": "Estimate!!Foreign-born; Born in Oceania!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income!!Mean cash public assistance income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C04_105EA,S0504_C04_105M,S0504_C04_105MA"}, "S1502_C02_021E": {"label": "Estimate!!Percent!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!65 years and over!!Science and Engineering Related Fields", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "float", "group": "S1502", "limit": 0, "attributes": "S1502_C02_021EA,S1502_C02_021M,S1502_C02_021MA"}, "S2402_C05_028E": {"label": "Estimate!!Percent Female!!Full-time, year-round civilian employed population 16 years and over!!Sales and office occupations:!!Office and administrative support occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2402", "limit": 0, "attributes": "S2402_C05_028EA,S2402_C05_028M,S2402_C05_028MA"}, "S0501_C05_032E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_032EA,S0501_C05_032M,S0501_C05_032MA"}, "S0504_C04_106E": {"label": "Estimate!!Foreign-born; Born in Oceania!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_106EA,S0504_C04_106M,S0504_C04_106MA"}, "S1502_C02_020E": {"label": "Estimate!!Percent!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!65 years and over!!Science and Engineering", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "float", "group": "S1502", "limit": 0, "attributes": "S1502_C02_020EA,S1502_C02_020M,S1502_C02_020MA"}, "S2402_C05_029E": {"label": "Estimate!!Percent Female!!Full-time, year-round civilian employed population 16 years and over!!Natural resources, construction, and maintenance occupations:", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2402", "limit": 0, "attributes": "S2402_C05_029EA,S2402_C05_029M,S2402_C05_029MA"}, "S0501_C05_031E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!MARITAL STATUS!!Population 15 years and over!!Divorced or separated", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_031EA,S0501_C05_031M,S0501_C05_031MA"}, "S2802_C02_010E": {"label": "Estimate!!Broadband Internet Subscription!!With a computer!!Total population in households!!RACE AND HISPANIC OR LATINO ORIGIN!!Some other race alone", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C02_010EA,S2802_C02_010M,S2802_C02_010MA"}, "S0506_C02_088E": {"label": "Estimate!!Foreign-born; Born in Latin America!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$1 to $9,999 or loss", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_088EA,S0506_C02_088M,S0506_C02_088MA"}, "S0504_C04_107E": {"label": "Estimate!!Foreign-born; Born in Oceania!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income!!Mean retirement income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C04_107EA,S0504_C04_107M,S0504_C04_107MA"}, "S1502_C02_023E": {"label": "Estimate!!Percent!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!65 years and over!!Education", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "float", "group": "S1502", "limit": 0, "attributes": "S1502_C02_023EA,S1502_C02_023M,S1502_C02_023MA"}, "S0501_C05_030E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_030EA,S0501_C05_030M,S0501_C05_030MA"}, "S0506_C02_089E": {"label": "Estimate!!Foreign-born; Born in Latin America!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$10,000 to $14,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_089EA,S0506_C02_089M,S0506_C02_089MA"}, "S1502_C02_022E": {"label": "Estimate!!Percent!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!65 years and over!!Business", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "float", "group": "S1502", "limit": 0, "attributes": "S1502_C02_022EA,S1502_C02_022M,S1502_C02_022MA"}, "S0504_C04_108E": {"label": "Estimate!!Foreign-born; Born in Oceania!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Food Stamp/SNAP benefits", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_108EA,S0504_C04_108M,S0504_C04_108MA"}, "S1502_C02_013E": {"label": "Estimate!!Percent!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!40 to 64 years", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C02_013EA,S1502_C02_013M,S1502_C02_013MA"}, "S0504_C04_125E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Occupied housing units!!HOUSING TENURE!!Owner-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_125EA,S0504_C04_125M,S0504_C04_125MA"}, "S0502PR_C03_028E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_028EA,S0502PR_C03_028M,S0502PR_C03_028MA"}, "S1903_C02_028E": {"label": "Estimate!!Percent Distribution!!FAMILY INCOME BY FAMILY SIZE!!6-person families", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1903", "limit": 0, "attributes": "S1903_C02_028EA,S1903_C02_028M,S1903_C02_028MA"}, "S0501_C05_037E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!College or graduate school", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_037EA,S0501_C05_037M,S0501_C05_037MA"}, "S2504_C03_032E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!HOUSE HEATING FUEL!!Utility gas", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C03_032EA,S2504_C03_032M,S2504_C03_032MA"}, "S0504_C04_126E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Occupied housing units!!HOUSING TENURE!!Renter-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_126EA,S0504_C04_126M,S0504_C04_126MA"}, "S1502_C02_012E": {"label": "Estimate!!Percent!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!25 to 39 years!!Arts, Humanities, and Others", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "float", "group": "S1502", "limit": 0, "attributes": "S1502_C02_012EA,S1502_C02_012M,S1502_C02_012MA"}, "S1903_C02_027E": {"label": "Estimate!!Percent Distribution!!FAMILY INCOME BY FAMILY SIZE!!5-person families", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1903", "limit": 0, "attributes": "S1903_C02_027EA,S1903_C02_027M,S1903_C02_027MA"}, "S0501_C05_036E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!High school (grades 9-12)", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_036EA,S0501_C05_036M,S0501_C05_036MA"}, "S0502PR_C03_027E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_027EA,S0502PR_C03_027M,S0502PR_C03_027MA"}, "S2504_C03_031E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!TELEPHONE SERVICE AVAILABLE!!With telephone service", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C03_031EA,S2504_C03_031M,S2504_C03_031MA"}, "S0501_C05_035E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Elementary school (grades K-8)", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_035EA,S0501_C05_035M,S0501_C05_035MA"}, "S0504_C04_127E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Occupied housing units!!HOUSING TENURE!!Average household size of owner-occupied unit", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_127EA,S0504_C04_127M,S0504_C04_127MA"}, "S1502_C02_015E": {"label": "Estimate!!Percent!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!40 to 64 years!!Science and Engineering Related Fields", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "float", "group": "S1502", "limit": 0, "attributes": "S1502_C02_015EA,S1502_C02_015M,S1502_C02_015MA"}, "S2504_C03_030E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!VEHICLES AVAILABLE!!3 or more vehicles available", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C03_030EA,S2504_C03_030M,S2504_C03_030MA"}, "S0502PR_C03_026E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_026EA,S0502PR_C03_026M,S0502PR_C03_026MA"}, "S0501_C05_034E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Nursery school, preschool", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_034EA,S0501_C05_034M,S0501_C05_034MA"}, "S1502_C02_014E": {"label": "Estimate!!Percent!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!40 to 64 years!!Science and Engineering", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "float", "group": "S1502", "limit": 0, "attributes": "S1502_C02_014EA,S1502_C02_014M,S1502_C02_014MA"}, "S0504_C04_128E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Occupied housing units!!HOUSING TENURE!!Average household size of renter-occupied unit", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_128EA,S0504_C04_128M,S0504_C04_128MA"}, "S1903_C02_029E": {"label": "Estimate!!Percent Distribution!!FAMILY INCOME BY FAMILY SIZE!!7-or-more person families", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1903", "limit": 0, "attributes": "S1903_C02_029EA,S1903_C02_029M,S1903_C02_029MA"}, "S0502PR_C03_025E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_025EA,S0502PR_C03_025M,S0502PR_C03_025MA"}, "S1101_C02_001E": {"label": "Estimate!!Married-couple family household!!HOUSEHOLDS!!Total households", "concept": "Households and Families", "predicateType": "int", "group": "S1101", "limit": 0, "attributes": "S1101_C02_001EA,S1101_C02_001M,S1101_C02_001MA"}, "S0504_C04_121E": {"label": "Estimate!!Foreign-born; Born in Oceania!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_121EA,S0504_C04_121M,S0504_C04_121MA"}, "S1502_C02_017E": {"label": "Estimate!!Percent!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!40 to 64 years!!Education", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "float", "group": "S1502", "limit": 0, "attributes": "S1502_C02_017EA,S1502_C02_017M,S1502_C02_017MA"}, "S1101_C02_002E": {"label": "Estimate!!Married-couple family household!!HOUSEHOLDS!!Average household size", "concept": "Households and Families", "predicateType": "float", "group": "S1101", "limit": 0, "attributes": "S1101_C02_002EA,S1101_C02_002M,S1101_C02_002MA"}, "S1502_C02_016E": {"label": "Estimate!!Percent!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!40 to 64 years!!Business", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "float", "group": "S1502", "limit": 0, "attributes": "S1502_C02_016EA,S1502_C02_016M,S1502_C02_016MA"}, "S0504_C04_122E": {"label": "Estimate!!Foreign-born; Born in Oceania!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_122EA,S0504_C04_122M,S0504_C04_122MA"}, "S1101_C02_003E": {"label": "Estimate!!Married-couple family household!!FAMILIES!!Total families", "concept": "Households and Families", "predicateType": "int", "group": "S1101", "limit": 0, "attributes": "S1101_C02_003EA,S1101_C02_003M,S1101_C02_003MA"}, "S1502_C02_019E": {"label": "Estimate!!Percent!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!65 years and over", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C02_019EA,S1502_C02_019M,S1502_C02_019MA"}, "S0504_C04_123E": {"label": "Estimate!!Foreign-born; Born in Oceania!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_123EA,S0504_C04_123M,S0504_C04_123MA"}, "S0501_C05_039E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than high school graduate", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_039EA,S0501_C05_039M,S0501_C05_039MA"}, "S1101_C02_004E": {"label": "Estimate!!Married-couple family household!!FAMILIES!!Average family size", "concept": "Households and Families", "predicateType": "float", "group": "S1101", "limit": 0, "attributes": "S1101_C02_004EA,S1101_C02_004M,S1101_C02_004MA"}, "S1502_C02_018E": {"label": "Estimate!!Percent!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!40 to 64 years!!Arts, Humanities, and Others", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "float", "group": "S1502", "limit": 0, "attributes": "S1502_C02_018EA,S1502_C02_018M,S1502_C02_018MA"}, "S0504_C04_124E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C04_124EA,S0504_C04_124M,S0504_C04_124MA"}, "S0502PR_C03_029E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_029EA,S0502PR_C03_029M,S0502PR_C03_029MA"}, "S0501_C05_038E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C05_038EA,S0501_C05_038M,S0501_C05_038MA"}, "S0502PR_C03_020E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Foreign-born population!!SEX AND AGE!!75 to 84 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_020EA,S0502PR_C03_020M,S0502PR_C03_020MA"}, "S1903_C02_020E": {"label": "Estimate!!Percent Distribution!!FAMILIES!!Families!!Female householder, no spouse present", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1903", "limit": 0, "attributes": "S1903_C02_020EA,S1903_C02_020M,S1903_C02_020MA"}, "S2404_C05_015E": {"label": "Estimate!!Percent Female!!Full-time, year-round civilian employed population 16 years and over!!Finance and insurance, and real estate and rental and leasing:!!Real estate and rental and leasing", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2404", "limit": 0, "attributes": "S2404_C05_015EA,S2404_C05_015M,S2404_C05_015MA"}, "S2603_C06_104E": {"label": "Estimate!!College/university housing!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!Mean earnings (dollars):!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C06_104EA,S2603_C06_104M,S2603_C06_104MA"}, "S2602_C01_083E": {"label": "Estimate!!Total population!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Armed Forces", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C01_083EA,S2602_C01_083M,S2602_C01_083MA"}, "S0506_C02_090E": {"label": "Estimate!!Foreign-born; Born in Latin America!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$15,000 to $24,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_090EA,S0506_C02_090M,S0506_C02_090MA"}, "S2404_C05_014E": {"label": "Estimate!!Percent Female!!Full-time, year-round civilian employed population 16 years and over!!Finance and insurance, and real estate and rental and leasing:!!Finance and insurance", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2404", "limit": 0, "attributes": "S2404_C05_014EA,S2404_C05_014M,S2404_C05_014MA"}, "S0506_C02_091E": {"label": "Estimate!!Foreign-born; Born in Latin America!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$25,000 to $34,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_091EA,S0506_C02_091M,S0506_C02_091MA"}, "S2602_C01_082E": {"label": "Estimate!!Total population!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed!!Percent of civilian labor force", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C01_082EA,S2602_C01_082M,S2602_C01_082MA"}, "S2603_C06_103E": {"label": "Estimate!!College/university housing!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!Mean earnings (dollars):!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C06_103EA,S2603_C06_103M,S2603_C06_103MA"}, "S1903_C02_022E": {"label": "Estimate!!Percent Distribution!!FAMILIES!!Families!!Male householder, no spouse present", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1903", "limit": 0, "attributes": "S1903_C02_022EA,S1903_C02_022M,S1903_C02_022MA"}, "S2504_C03_038E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!HOUSE HEATING FUEL!!No fuel used", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C03_038EA,S2504_C03_038M,S2504_C03_038MA"}, "S2404_C05_017E": {"label": "Estimate!!Percent Female!!Full-time, year-round civilian employed population 16 years and over!!Professional, scientific, and management, and administrative and waste management services:!!Professional, scientific, and technical services", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2404", "limit": 0, "attributes": "S2404_C05_017EA,S2404_C05_017M,S2404_C05_017MA"}, "S2602_C01_085E": {"label": "Estimate!!Total population!!OCCUPATION!!Civilian employed population 16 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C01_085EA,S2602_C01_085M,S2602_C01_085MA"}, "S2603_C06_102E": {"label": "Estimate!!College/university housing!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!With earnings:!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C06_102EA,S2603_C06_102M,S2603_C06_102MA"}, "S1903_C02_021E": {"label": "Estimate!!Percent Distribution!!FAMILIES!!Families!!Female householder, no spouse present!!With own children under 18 years", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1903", "limit": 0, "attributes": "S1903_C02_021EA,S1903_C02_021M,S1903_C02_021MA"}, "S2504_C03_037E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!HOUSE HEATING FUEL!!All other fuels", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C03_037EA,S2504_C03_037M,S2504_C03_037MA"}, "S0504_C04_120E": {"label": "Estimate!!Foreign-born; Born in Oceania!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_120EA,S0504_C04_120M,S0504_C04_120MA"}, "S2404_C05_016E": {"label": "Estimate!!Percent Female!!Full-time, year-round civilian employed population 16 years and over!!Professional, scientific, and management, and administrative and waste management services:", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2404", "limit": 0, "attributes": "S2404_C05_016EA,S2404_C05_016M,S2404_C05_016MA"}, "S2602_C01_084E": {"label": "Estimate!!Total population!!EMPLOYMENT STATUS!!Population 16 years and over!!Not in labor force", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C01_084EA,S2602_C01_084M,S2602_C01_084MA"}, "S2603_C06_101E": {"label": "Estimate!!College/university housing!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!With earnings:!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C06_101EA,S2603_C06_101M,S2603_C06_101MA"}, "S0804_C01_086E": {"label": "Estimate!!Total!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!Mean travel time to work (minutes)", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_086EA,S0804_C01_086M,S0804_C01_086MA"}, "S2404_C05_011E": {"label": "Estimate!!Percent Female!!Full-time, year-round civilian employed population 16 years and over!!Transportation and warehousing, and utilities:!!Utilities", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2404", "limit": 0, "attributes": "S2404_C05_011EA,S2404_C05_011M,S2404_C05_011MA"}, "S0505_C05_066E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Government workers", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_066EA,S0505_C05_066M,S0505_C05_066MA"}, "S2504_C03_036E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!HOUSE HEATING FUEL!!Coal or coke", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C03_036EA,S2504_C03_036M,S2504_C03_036MA"}, "S2302_C01_019E": {"label": "Estimate!!Total!!WORK STATUS CHARACTERISTICS!!Married-couple families!!Householder worked full-time, year-round in the past 12 months:", "concept": "Employment Characteristics of Families", "predicateType": "int", "group": "S2302", "limit": 0, "attributes": "S2302_C01_019EA,S2302_C01_019M,S2302_C01_019MA"}, "S0502PR_C03_024E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_024EA,S0502PR_C03_024M,S0502PR_C03_024MA"}, "S1903_C02_024E": {"label": "Estimate!!Percent Distribution!!FAMILY INCOME BY FAMILY SIZE!!2-person families", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1903", "limit": 0, "attributes": "S1903_C02_024EA,S1903_C02_024M,S1903_C02_024MA"}, "S0804_C01_087E": {"label": "Estimate!!Total!!Workers 16 years and over in households", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "int", "group": "S0804", "limit": 0, "attributes": "S0804_C01_087EA,S0804_C01_087M,S0804_C01_087MA"}, "S0502PR_C03_023E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_023EA,S0502PR_C03_023M,S0502PR_C03_023MA"}, "S2404_C05_010E": {"label": "Estimate!!Percent Female!!Full-time, year-round civilian employed population 16 years and over!!Transportation and warehousing, and utilities:!!Transportation and warehousing", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2404", "limit": 0, "attributes": "S2404_C05_010EA,S2404_C05_010M,S2404_C05_010MA"}, "S0505_C05_067E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Self-employed workers in own not incorporated business", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_067EA,S0505_C05_067M,S0505_C05_067MA"}, "S2603_C06_107E": {"label": "Estimate!!College/university housing!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!With Food Stamp/SNAP benefits", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C06_107EA,S2603_C06_107M,S2603_C06_107MA"}, "S2504_C03_035E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!HOUSE HEATING FUEL!!Fuel oil, kerosene, etc.", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C03_035EA,S2504_C03_035M,S2504_C03_035MA"}, "S1903_C02_023E": {"label": "Estimate!!Percent Distribution!!FAMILIES!!Families!!Male householder, no spouse present!!With own children under 18 years", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1903", "limit": 0, "attributes": "S1903_C02_023EA,S1903_C02_023M,S1903_C02_023MA"}, "S0804_C01_088E": {"label": "Estimate!!Total!!Workers 16 years and over in households!!HOUSING TENURE!!Owner-occupied housing units", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_088EA,S0804_C01_088M,S0804_C01_088MA"}, "S0502PR_C03_022E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Foreign-born population!!SEX AND AGE!!Median age (years)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_022EA,S0502PR_C03_022M,S0502PR_C03_022MA"}, "S2404_C05_013E": {"label": "Estimate!!Percent Female!!Full-time, year-round civilian employed population 16 years and over!!Finance and insurance, and real estate and rental and leasing:", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2404", "limit": 0, "attributes": "S2404_C05_013EA,S2404_C05_013M,S2404_C05_013MA"}, "S0505_C05_068E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Unpaid family workers", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_068EA,S0505_C05_068M,S0505_C05_068MA"}, "S2504_C03_034E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!HOUSE HEATING FUEL!!Electricity", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C03_034EA,S2504_C03_034M,S2504_C03_034MA"}, "S2603_C06_106E": {"label": "Estimate!!College/university housing!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!Median earnings (dollars):!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C06_106EA,S2603_C06_106M,S2603_C06_106MA"}, "S1903_C02_026E": {"label": "Estimate!!Percent Distribution!!FAMILY INCOME BY FAMILY SIZE!!4-person families", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1903", "limit": 0, "attributes": "S1903_C02_026EA,S1903_C02_026M,S1903_C02_026MA"}, "S2602_C01_081E": {"label": "Estimate!!Total population!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C01_081EA,S2602_C01_081M,S2602_C01_081MA"}, "S0502PR_C03_021E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Foreign-born population!!SEX AND AGE!!85 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_021EA,S0502PR_C03_021M,S0502PR_C03_021MA"}, "S0505_C05_069E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Civilian employed population 16 years and over!!OCCUPATION!!Management, business, science, and arts occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_069EA,S0505_C05_069M,S0505_C05_069MA"}, "S2404_C05_012E": {"label": "Estimate!!Percent Female!!Full-time, year-round civilian employed population 16 years and over!!Information", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2404", "limit": 0, "attributes": "S2404_C05_012EA,S2404_C05_012M,S2404_C05_012MA"}, "S2603_C06_105E": {"label": "Estimate!!College/university housing!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!Median earnings (dollars):!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C06_105EA,S2603_C06_105M,S2603_C06_105MA"}, "S2504_C03_033E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!HOUSE HEATING FUEL!!Bottled or tank gas (propane, butane, etc.)", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C03_033EA,S2504_C03_033M,S2504_C03_033MA"}, "S1903_C02_025E": {"label": "Estimate!!Percent Distribution!!FAMILY INCOME BY FAMILY SIZE!!3-person families", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1903", "limit": 0, "attributes": "S1903_C02_025EA,S1903_C02_025M,S1903_C02_025MA"}, "S2602_C01_080E": {"label": "Estimate!!Total population!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Employed", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C01_080EA,S2602_C01_080M,S2602_C01_080MA"}, "S0804_C01_089E": {"label": "Estimate!!Total!!Workers 16 years and over in households!!HOUSING TENURE!!Renter-occupied housing units", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_089EA,S0804_C01_089M,S0804_C01_089MA"}, "S0804_C01_094E": {"label": "Estimate!!Total!!PERCENT ALLOCATED!!Means of transportation to work", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_094EA,S0804_C01_094M,S0804_C01_094MA"}, "S1810_C02_007E": {"label": "Estimate!!With a disability!!Total civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!Asian alone", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C02_007EA,S1810_C02_007M,S1810_C02_007MA"}, "S0505_C05_074E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Civilian employed population 16 years and over!!INDUSTRY!!Agriculture, forestry, fishing and hunting, and mining", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_074EA,S0505_C05_074M,S0505_C05_074MA"}, "S0506_C02_098E": {"label": "Estimate!!Foreign-born; Born in Latin America!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_098EA,S0506_C02_098M,S0506_C02_098MA"}, "S2602_C01_079E": {"label": "Estimate!!Total population!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C01_079EA,S2602_C01_079M,S2602_C01_079MA"}, "S2702PR_C02_009E": {"label": "Estimate!!Total Uninsured!!Total civilian noninstitutionalized population!!AGE!!19 to 64 years!!45 to 54 years", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_009EA,S2702PR_C02_009M,S2702PR_C02_009MA"}, "S2401_C02_005E": {"label": "Estimate!!Male!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Management, business, and financial occupations:!!Business and financial operations occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C02_005EA,S2401_C02_005M,S2401_C02_005MA"}, "S2302_C01_015E": {"label": "Estimate!!Total!!WORK STATUS CHARACTERISTICS!!Families!!No workers in the past 12 months", "concept": "Employment Characteristics of Families", "predicateType": "int", "group": "S2302", "limit": 0, "attributes": "S2302_C01_015EA,S2302_C01_015M,S2302_C01_015MA"}, "S0804_C01_095E": {"label": "Estimate!!Total!!PERCENT ALLOCATED!!Time arriving at work from home", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_095EA,S0804_C01_095M,S0804_C01_095MA"}, "S0505_C05_075E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Civilian employed population 16 years and over!!INDUSTRY!!Construction", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_075EA,S0505_C05_075M,S0505_C05_075MA"}, "S1810_C02_008E": {"label": "Estimate!!With a disability!!Total civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!Native Hawaiian and Other Pacific Islander alone", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C02_008EA,S1810_C02_008M,S1810_C02_008MA"}, "S0506_C02_099E": {"label": "Estimate!!Foreign-born; Born in Latin America!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings!!Mean earnings (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C02_099EA,S0506_C02_099M,S0506_C02_099MA"}, "S2602_C01_078E": {"label": "Estimate!!Total population!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C01_078EA,S2602_C01_078M,S2602_C01_078MA"}, "S2702PR_C02_008E": {"label": "Estimate!!Total Uninsured!!Total civilian noninstitutionalized population!!AGE!!19 to 64 years!!35 to 44 years", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_008EA,S2702PR_C02_008M,S2702PR_C02_008MA"}, "S2401_C02_004E": {"label": "Estimate!!Male!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Management, business, and financial occupations:!!Management occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C02_004EA,S2401_C02_004M,S2401_C02_004MA"}, "S2302_C01_016E": {"label": "Estimate!!Total!!WORK STATUS CHARACTERISTICS!!Families!!1 worker in the past 12 months", "concept": "Employment Characteristics of Families", "predicateType": "int", "group": "S2302", "limit": 0, "attributes": "S2302_C01_016EA,S2302_C01_016M,S2302_C01_016MA"}, "S0804_C01_096E": {"label": "Estimate!!Total!!PERCENT ALLOCATED!!Travel time to work", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_096EA,S0804_C01_096M,S0804_C01_096MA"}, "S2402_C05_030E": {"label": "Estimate!!Percent Female!!Full-time, year-round civilian employed population 16 years and over!!Natural resources, construction, and maintenance occupations:!!Farming, fishing, and forestry occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2402", "limit": 0, "attributes": "S2402_C05_030EA,S2402_C05_030M,S2402_C05_030MA"}, "S1810_C02_009E": {"label": "Estimate!!With a disability!!Total civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!Some other race alone", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C02_009EA,S1810_C02_009M,S1810_C02_009MA"}, "S0506_C02_096E": {"label": "Estimate!!Foreign-born; Born in Latin America!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!Median earnings (dollars) for full-time, year-round workers!!Female", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C02_096EA,S0506_C02_096M,S0506_C02_096MA"}, "S0505_C05_076E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Civilian employed population 16 years and over!!INDUSTRY!!Manufacturing", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_076EA,S0505_C05_076M,S0505_C05_076MA"}, "S2401_C02_007E": {"label": "Estimate!!Male!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Computer, engineering, and science occupations:!!Computer and mathematical occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C02_007EA,S2401_C02_007M,S2401_C02_007MA"}, "S2302_C01_017E": {"label": "Estimate!!Total!!WORK STATUS CHARACTERISTICS!!Families!!2 or more workers in the past 12 months", "concept": "Employment Characteristics of Families", "predicateType": "int", "group": "S2302", "limit": 0, "attributes": "S2302_C01_017EA,S2302_C01_017M,S2302_C01_017MA"}, "S0804_C01_097E": {"label": "Estimate!!Total!!PERCENT ALLOCATED!!Vehicles available", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_097EA,S0804_C01_097M,S0804_C01_097MA"}, "S2402_C05_031E": {"label": "Estimate!!Percent Female!!Full-time, year-round civilian employed population 16 years and over!!Natural resources, construction, and maintenance occupations:!!Construction and extraction occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2402", "limit": 0, "attributes": "S2402_C05_031EA,S2402_C05_031M,S2402_C05_031MA"}, "S0506_C02_097E": {"label": "Estimate!!Foreign-born; Born in Latin America!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C02_097EA,S0506_C02_097M,S0506_C02_097MA"}, "S0505_C05_077E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Civilian employed population 16 years and over!!INDUSTRY!!Wholesale trade", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_077EA,S0505_C05_077M,S0505_C05_077MA"}, "S2302_C01_018E": {"label": "Estimate!!Total!!WORK STATUS CHARACTERISTICS!!Married-couple families", "concept": "Employment Characteristics of Families", "predicateType": "int", "group": "S2302", "limit": 0, "attributes": "S2302_C01_018EA,S2302_C01_018M,S2302_C01_018MA"}, "S2401_C02_006E": {"label": "Estimate!!Male!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Computer, engineering, and science occupations:", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C02_006EA,S2401_C02_006M,S2401_C02_006MA"}, "S2402_C05_032E": {"label": "Estimate!!Percent Female!!Full-time, year-round civilian employed population 16 years and over!!Natural resources, construction, and maintenance occupations:!!Installation, maintenance, and repair occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2402", "limit": 0, "attributes": "S2402_C05_032EA,S2402_C05_032M,S2402_C05_032MA"}, "S0804_C01_090E": {"label": "Estimate!!Total!!Workers 16 years and over in households!!VEHICLES AVAILABLE!!No vehicle available", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_090EA,S0804_C01_090M,S0804_C01_090MA"}, "S2404_C05_007E": {"label": "Estimate!!Percent Female!!Full-time, year-round civilian employed population 16 years and over!!Wholesale trade", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2404", "limit": 0, "attributes": "S2404_C05_007EA,S2404_C05_007M,S2404_C05_007MA"}, "S0505_C05_070E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Civilian employed population 16 years and over!!OCCUPATION!!Service occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_070EA,S0505_C05_070M,S0505_C05_070MA"}, "S2302_C01_011E": {"label": "Estimate!!Total!!Families!!EMPLOYMENT STATUS CHARACTERISTICS!!Other families!!Male householder, no spouse present", "concept": "Employment Characteristics of Families", "predicateType": "int", "group": "S2302", "limit": 0, "attributes": "S2302_C01_011EA,S2302_C01_011M,S2302_C01_011MA"}, "S1810_C02_003E": {"label": "Estimate!!With a disability!!Total civilian noninstitutionalized population!!SEX!!Female", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C02_003EA,S1810_C02_003M,S1810_C02_003MA"}, "S0506_C02_094E": {"label": "Estimate!!Foreign-born; Born in Latin America!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$75,000 or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_094EA,S0506_C02_094M,S0506_C02_094MA"}, "S2602_C01_075E": {"label": "Estimate!!Total population!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C01_075EA,S2602_C01_075M,S2602_C01_075MA"}, "S2603_C06_100E": {"label": "Estimate!!College/university housing!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!Per capita income (dollars)", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C06_100EA,S2603_C06_100M,S2603_C06_100MA"}, "S2401_C02_001E": {"label": "Estimate!!Male!!Civilian employed population 16 years and over", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C02_001EA,S2401_C02_001M,S2401_C02_001MA"}, "S2402_C05_033E": {"label": "Estimate!!Percent Female!!Full-time, year-round civilian employed population 16 years and over!!Production, transportation, and material moving occupations:", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2402", "limit": 0, "attributes": "S2402_C05_033EA,S2402_C05_033M,S2402_C05_033MA"}, "S0804_C01_091E": {"label": "Estimate!!Total!!Workers 16 years and over in households!!VEHICLES AVAILABLE!!1 vehicle available", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_091EA,S0804_C01_091M,S0804_C01_091MA"}, "S0505_C05_071E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Civilian employed population 16 years and over!!OCCUPATION!!Sales and office occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_071EA,S0505_C05_071M,S0505_C05_071MA"}, "S2404_C05_006E": {"label": "Estimate!!Percent Female!!Full-time, year-round civilian employed population 16 years and over!!Manufacturing", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2404", "limit": 0, "attributes": "S2404_C05_006EA,S2404_C05_006M,S2404_C05_006MA"}, "S2302_C01_012E": {"label": "Estimate!!Total!!Families!!EMPLOYMENT STATUS CHARACTERISTICS!!Other families!!Male householder, no spouse present!!In labor force", "concept": "Employment Characteristics of Families", "predicateType": "int", "group": "S2302", "limit": 0, "attributes": "S2302_C01_012EA,S2302_C01_012M,S2302_C01_012MA"}, "S0506_C02_095E": {"label": "Estimate!!Foreign-born; Born in Latin America!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!Median earnings (dollars) for full-time, year-round workers!!Male", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C02_095EA,S0506_C02_095M,S0506_C02_095MA"}, "S1810_C02_004E": {"label": "Estimate!!With a disability!!Total civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C02_004EA,S1810_C02_004M,S1810_C02_004MA"}, "S2602_C01_074E": {"label": "Estimate!!Total population!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!English only", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C01_074EA,S2602_C01_074M,S2602_C01_074MA"}, "S1903_C02_030E": {"label": "Estimate!!Percent Distribution!!FAMILY INCOME BY NUMBER OF EARNERS!!No earners", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1903", "limit": 0, "attributes": "S1903_C02_030EA,S1903_C02_030M,S1903_C02_030MA"}, "S2402_C05_034E": {"label": "Estimate!!Percent Female!!Full-time, year-round civilian employed population 16 years and over!!Production, transportation, and material moving occupations:!!Production occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2402", "limit": 0, "attributes": "S2402_C05_034EA,S2402_C05_034M,S2402_C05_034MA"}, "S0804_C01_092E": {"label": "Estimate!!Total!!Workers 16 years and over in households!!VEHICLES AVAILABLE!!2 vehicles available", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_092EA,S0804_C01_092M,S0804_C01_092MA"}, "S0505_C05_072E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Civilian employed population 16 years and over!!OCCUPATION!!Natural resources, construction, and maintenance occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_072EA,S0505_C05_072M,S0505_C05_072MA"}, "S2404_C05_009E": {"label": "Estimate!!Percent Female!!Full-time, year-round civilian employed population 16 years and over!!Transportation and warehousing, and utilities:", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2404", "limit": 0, "attributes": "S2404_C05_009EA,S2404_C05_009M,S2404_C05_009MA"}, "S0506_C02_092E": {"label": "Estimate!!Foreign-born; Born in Latin America!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$35,000 to $49,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_092EA,S0506_C02_092M,S0506_C02_092MA"}, "S2602_C01_077E": {"label": "Estimate!!Total population!!EMPLOYMENT STATUS!!Population 16 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C01_077EA,S2602_C01_077M,S2602_C01_077MA"}, "S1810_C02_005E": {"label": "Estimate!!With a disability!!Total civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!Black or African American alone", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C02_005EA,S1810_C02_005M,S1810_C02_005MA"}, "S2401_C02_003E": {"label": "Estimate!!Male!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Management, business, and financial occupations:", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C02_003EA,S2401_C02_003M,S2401_C02_003MA"}, "S2302_C01_013E": {"label": "Estimate!!Total!!Families!!EMPLOYMENT STATUS CHARACTERISTICS!!Other families!!Male householder, no spouse present!!Not in labor force", "concept": "Employment Characteristics of Families", "predicateType": "int", "group": "S2302", "limit": 0, "attributes": "S2302_C01_013EA,S2302_C01_013M,S2302_C01_013MA"}, "S2402_C05_035E": {"label": "Estimate!!Percent Female!!Full-time, year-round civilian employed population 16 years and over!!Production, transportation, and material moving occupations:!!Transportation occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2402", "limit": 0, "attributes": "S2402_C05_035EA,S2402_C05_035M,S2402_C05_035MA"}, "S0804_C01_093E": {"label": "Estimate!!Total!!Workers 16 years and over in households!!VEHICLES AVAILABLE!!3 or more vehicles available", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_093EA,S0804_C01_093M,S0804_C01_093MA"}, "S2504_C03_029E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!VEHICLES AVAILABLE!!2 vehicles available", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C03_029EA,S2504_C03_029M,S2504_C03_029MA"}, "S2404_C05_008E": {"label": "Estimate!!Percent Female!!Full-time, year-round civilian employed population 16 years and over!!Retail trade", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2404", "limit": 0, "attributes": "S2404_C05_008EA,S2404_C05_008M,S2404_C05_008MA"}, "S1810_C02_006E": {"label": "Estimate!!With a disability!!Total civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!American Indian and Alaska Native alone", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C02_006EA,S1810_C02_006M,S1810_C02_006MA"}, "S0505_C05_073E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Civilian employed population 16 years and over!!OCCUPATION!!Production, transportation, and material moving occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_073EA,S0505_C05_073M,S0505_C05_073MA"}, "S0506_C02_093E": {"label": "Estimate!!Foreign-born; Born in Latin America!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$50,000 to $74,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_093EA,S0506_C02_093M,S0506_C02_093MA"}, "S2602_C01_076E": {"label": "Estimate!!Total population!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English!!Speak English less than \"very well\"", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C01_076EA,S2602_C01_076M,S2602_C01_076MA"}, "S2302_C01_014E": {"label": "Estimate!!Total!!WORK STATUS CHARACTERISTICS!!Families", "concept": "Employment Characteristics of Families", "predicateType": "int", "group": "S2302", "limit": 0, "attributes": "S2302_C01_014EA,S2302_C01_014M,S2302_C01_014MA"}, "S2401_C02_002E": {"label": "Estimate!!Male!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C02_002EA,S2401_C02_002M,S2401_C02_002MA"}, "S2402_C05_036E": {"label": "Estimate!!Percent Female!!Full-time, year-round civilian employed population 16 years and over!!Production, transportation, and material moving occupations:!!Material moving occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2402", "limit": 0, "attributes": "S2402_C05_036EA,S2402_C05_036M,S2402_C05_036MA"}, "S2702PR_C02_001E": {"label": "Estimate!!Total Uninsured!!Total civilian noninstitutionalized population", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "int", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_001EA,S2702PR_C02_001M,S2702PR_C02_001MA"}, "S0501_C05_041E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college or associate's degree", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_041EA,S0501_C05_041M,S0501_C05_041MA"}, "S0501_C05_040E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate (includes equivalency)", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_040EA,S0501_C05_040M,S0501_C05_040MA"}, "S1810_C02_001E": {"label": "Estimate!!With a disability!!Total civilian noninstitutionalized population", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C02_001EA,S1810_C02_001M,S1810_C02_001MA"}, "S2702PR_C02_003E": {"label": "Estimate!!Total Uninsured!!Total civilian noninstitutionalized population!!AGE!!Under 19 years!!Under 6 years", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_003EA,S2702PR_C02_003M,S2702PR_C02_003MA"}, "S2702PR_C02_002E": {"label": "Estimate!!Total Uninsured!!Total civilian noninstitutionalized population!!AGE!!Under 19 years", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_002EA,S2702PR_C02_002M,S2702PR_C02_002MA"}, "S2302_C01_010E": {"label": "Estimate!!Total!!Families!!EMPLOYMENT STATUS CHARACTERISTICS!!Other families!!Female householder, no spouse present!!Not in labor force", "concept": "Employment Characteristics of Families", "predicateType": "int", "group": "S2302", "limit": 0, "attributes": "S2302_C01_010EA,S2302_C01_010M,S2302_C01_010MA"}, "S1810_C02_002E": {"label": "Estimate!!With a disability!!Total civilian noninstitutionalized population!!SEX!!Male", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C02_002EA,S1810_C02_002M,S1810_C02_002MA"}, "S0501_C05_045E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!English only", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_045EA,S0501_C05_045M,S0501_C05_045MA"}, "S2401_C02_009E": {"label": "Estimate!!Male!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Computer, engineering, and science occupations:!!Life, physical, and social science occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C02_009EA,S2401_C02_009M,S2401_C02_009MA"}, "S2802_C02_020E": {"label": "Estimate!!Broadband Internet Subscription!!With a computer!!Total population in households!!EMPLOYMENT STATUS!!Civilian population 16 years and over!!In labor force!!Employed", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C02_020EA,S2802_C02_020M,S2802_C02_020MA"}, "S0504_C04_117E": {"label": "Estimate!!Foreign-born; Born in Oceania!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_117EA,S0504_C04_117M,S0504_C04_117MA"}, "S2702PR_C02_005E": {"label": "Estimate!!Total Uninsured!!Total civilian noninstitutionalized population!!AGE!!19 to 64 years", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_005EA,S2702PR_C02_005M,S2702PR_C02_005MA"}, "S0501_C05_044E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C05_044EA,S0501_C05_044M,S0501_C05_044MA"}, "S0504_C04_118E": {"label": "Estimate!!Foreign-born; Born in Oceania!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_118EA,S0504_C04_118M,S0504_C04_118MA"}, "S2401_C02_008E": {"label": "Estimate!!Male!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Computer, engineering, and science occupations:!!Architecture and engineering occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C02_008EA,S2401_C02_008M,S2401_C02_008MA"}, "S2702PR_C02_004E": {"label": "Estimate!!Total Uninsured!!Total civilian noninstitutionalized population!!AGE!!Under 19 years!!6 to 18 years", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_004EA,S2702PR_C02_004M,S2702PR_C02_004MA"}, "S0501_C05_043E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Graduate or professional degree", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_043EA,S0501_C05_043M,S0501_C05_043MA"}, "S2802_C02_022E": {"label": "Estimate!!Broadband Internet Subscription!!With a computer!!Total population in households!!EMPLOYMENT STATUS!!Civilian population 16 years and over!!Not in labor force", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C02_022EA,S2802_C02_022M,S2802_C02_022MA"}, "S1502_C02_011E": {"label": "Estimate!!Percent!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!25 to 39 years!!Education", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "float", "group": "S1502", "limit": 0, "attributes": "S1502_C02_011EA,S1502_C02_011M,S1502_C02_011MA"}, "S2702PR_C02_007E": {"label": "Estimate!!Total Uninsured!!Total civilian noninstitutionalized population!!AGE!!19 to 64 years!!26 to 34 years", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_007EA,S2702PR_C02_007M,S2702PR_C02_007MA"}, "S0504_C04_119E": {"label": "Estimate!!Foreign-born; Born in Oceania!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_119EA,S0504_C04_119M,S0504_C04_119MA"}, "S0501_C05_042E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_042EA,S0501_C05_042M,S0501_C05_042MA"}, "S2802_C02_021E": {"label": "Estimate!!Broadband Internet Subscription!!With a computer!!Total population in households!!EMPLOYMENT STATUS!!Civilian population 16 years and over!!In labor force!!Unemployed", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C02_021EA,S2802_C02_021M,S2802_C02_021MA"}, "S1502_C02_010E": {"label": "Estimate!!Percent!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!25 to 39 years!!Business", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "float", "group": "S1502", "limit": 0, "attributes": "S1502_C02_010EA,S1502_C02_010M,S1502_C02_010MA"}, "S2702PR_C02_006E": {"label": "Estimate!!Total Uninsured!!Total civilian noninstitutionalized population!!AGE!!19 to 64 years!!19 to 25 years", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_006EA,S2702PR_C02_006M,S2702PR_C02_006MA"}, "S0501_C05_001E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!Total population", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C05_001EA,S0501_C05_001M,S0501_C05_001MA"}, "S1101_C02_010E": {"label": "Estimate!!Married-couple family household!!Total households!!SELECTED HOUSEHOLDS BY TYPE!!Households with one or more people under 18 years", "concept": "Households and Families", "predicateType": "float", "group": "S1101", "limit": 0, "attributes": "S1101_C02_010EA,S1101_C02_010M,S1101_C02_010MA"}, "S0601_C03_049E": {"label": "Estimate!!Native; born in other state in the U.S.!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!Below 100 percent of the poverty level", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C03_049EA,S0601_C03_049M,S0601_C03_049MA"}, "S2303_C04_029E": {"label": "Estimate!!Percent Male!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 1 to 14 hours per week!!1 to 13 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C04_029EA,S2303_C04_029M,S2303_C04_029MA"}, "S1101_C02_011E": {"label": "Estimate!!Married-couple family household!!Total households!!SELECTED HOUSEHOLDS BY TYPE!!Households with one or more people 60 years and over", "concept": "Households and Families", "predicateType": "float", "group": "S1101", "limit": 0, "attributes": "S1101_C02_011EA,S1101_C02_011M,S1101_C02_011MA"}, "S2303_C04_028E": {"label": "Estimate!!Percent Male!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 1 to 14 hours per week!!14 to 26 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C04_028EA,S2303_C04_028M,S2303_C04_028MA"}, "S2303_C04_027E": {"label": "Estimate!!Percent Male!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 1 to 14 hours per week!!27 to 39 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C04_027EA,S2303_C04_027M,S2303_C04_027MA"}, "S1101_C02_012E": {"label": "Estimate!!Married-couple family household!!Total households!!SELECTED HOUSEHOLDS BY TYPE!!Households with one or more people 65 years and over", "concept": "Households and Families", "predicateType": "int", "group": "S1101", "limit": 0, "attributes": "S1101_C02_012EA,S1101_C02_012M,S1101_C02_012MA"}, "S2303_C04_026E": {"label": "Estimate!!Percent Male!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 1 to 14 hours per week!!40 to 47 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C04_026EA,S2303_C04_026M,S2303_C04_026MA"}, "S1101_C02_013E": {"label": "Estimate!!Married-couple family household!!Total households!!SELECTED HOUSEHOLDS BY TYPE!!Householder living alone", "concept": "Households and Families", "predicateType": "int", "group": "S1101", "limit": 0, "attributes": "S1101_C02_013EA,S1101_C02_013M,S1101_C02_013MA"}, "S0601_C03_046E": {"label": "Estimate!!Native; born in other state in the U.S.!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$75,000 or more", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C03_046EA,S0601_C03_046M,S0601_C03_046MA"}, "S0501_C05_005E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!Total population!!SEX AND AGE!!5 to 17 years", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_005EA,S0501_C05_005M,S0501_C05_005MA"}, "S2303_C04_025E": {"label": "Estimate!!Percent Male!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 1 to 14 hours per week!!48 to 49 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C04_025EA,S2303_C04_025M,S2303_C04_025MA"}, "S1101_C02_014E": {"label": "Estimate!!Married-couple family household!!Total households!!SELECTED HOUSEHOLDS BY TYPE!!Householder living alone!!65 years and over", "concept": "Households and Families", "predicateType": "int", "group": "S1101", "limit": 0, "attributes": "S1101_C02_014EA,S1101_C02_014M,S1101_C02_014MA"}, "S0601_C03_045E": {"label": "Estimate!!Native; born in other state in the U.S.!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$65,000 to $74,999", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C03_045EA,S0601_C03_045M,S0601_C03_045MA"}, "S0501_C05_004E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!Total population!!SEX AND AGE!!Under 5 years", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_004EA,S0501_C05_004M,S0501_C05_004MA"}, "S2303_C04_024E": {"label": "Estimate!!Percent Male!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 1 to 14 hours per week!!50 to 52 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C04_024EA,S2303_C04_024M,S2303_C04_024MA"}, "S0504_C02_041E": {"label": "Estimate!!Foreign-born; Born in Africa!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C02_041EA,S0504_C02_041M,S0504_C02_041MA"}, "S1101_C02_015E": {"label": "Estimate!!Married-couple family household!!Total households!!UNITS IN STRUCTURE!!1-unit structures", "concept": "Households and Families", "predicateType": "float", "group": "S1101", "limit": 0, "attributes": "S1101_C02_015EA,S1101_C02_015M,S1101_C02_015MA"}, "S0601_C03_048E": {"label": "Estimate!!Native; born in other state in the U.S.!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "int", "group": "S0601", "limit": 0, "attributes": "S0601_C03_048EA,S0601_C03_048M,S0601_C03_048MA"}, "S0501_C05_003E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!Total population!!SEX AND AGE!!Female", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_003EA,S0501_C05_003M,S0501_C05_003MA"}, "S0501_C05_002E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!Total population!!SEX AND AGE!!Male", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_002EA,S0501_C05_002M,S0501_C05_002MA"}, "S1101_C02_016E": {"label": "Estimate!!Married-couple family household!!Total households!!UNITS IN STRUCTURE!!2-or-more-unit structures", "concept": "Households and Families", "predicateType": "float", "group": "S1101", "limit": 0, "attributes": "S1101_C02_016EA,S1101_C02_016M,S1101_C02_016MA"}, "S0504_C02_040E": {"label": "Estimate!!Foreign-born; Born in Africa!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_040EA,S0504_C02_040M,S0504_C02_040MA"}, "S2303_C04_023E": {"label": "Estimate!!Percent Male!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 1 to 14 hours per week", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C04_023EA,S2303_C04_023M,S2303_C04_023MA"}, "S0601_C03_047E": {"label": "Estimate!!Native; born in other state in the U.S.!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!Median income (dollars)", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "int", "group": "S0601", "limit": 0, "attributes": "S0601_C03_047EA,S0601_C03_047M,S0601_C03_047MA"}, "S2702_C01_102E": {"label": "Estimate!!Total!!RATIO OF INCOME TO POVERTY LEVEL IN THE PAST 12 MONTHS!!Civilian noninstitutionalized population for whom poverty status is determined!!100 to 149 percent of the poverty level", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_102EA,S2702_C01_102M,S2702_C01_102MA"}, "S0504_C02_043E": {"label": "Estimate!!Foreign-born; Born in Africa!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Elementary school (grades K-8)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_043EA,S0504_C02_043M,S0504_C02_043MA"}, "S0102_C01_103E": {"label": "Estimate!!Total!!Renter-occupied housing units", "concept": "Population 60 Years and Over in the United States", "predicateType": "int", "group": "S0102", "limit": 0, "attributes": "S0102_C01_103EA,S0102_C01_103M,S0102_C01_103MA"}, "S0501_C05_009E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!Total population!!SEX AND AGE!!55 to 64 years", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_009EA,S0501_C05_009M,S0501_C05_009MA"}, "S1251_C04_011E": {"label": "Estimate!!Male!!Divorced in the last 12 months!!PRESENCE OF OWN CHILD UNDER 18 YEARS!!Population in households!!With an own child of the householder under 18 years", "concept": "Characteristics of People With a Marital Event in the Last 12 Months", "predicateType": "float", "group": "S1251", "limit": 0, "attributes": "S1251_C04_011EA,S1251_C04_011M,S1251_C04_011MA"}, "S2702_C01_103E": {"label": "Estimate!!Total!!RATIO OF INCOME TO POVERTY LEVEL IN THE PAST 12 MONTHS!!Civilian noninstitutionalized population for whom poverty status is determined!!150 to 199 percent of the poverty level", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_103EA,S2702_C01_103M,S2702_C01_103MA"}, "S0504_C02_042E": {"label": "Estimate!!Foreign-born; Born in Africa!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Nursery school, preschool", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_042EA,S0504_C02_042M,S0504_C02_042MA"}, "S0102_C01_102E": {"label": "Estimate!!Total!!Owner-occupied housing units!!OWNER CHARACTERISTICS!!Median selected monthly owner costs without a mortgage (dollars)", "concept": "Population 60 Years and Over in the United States", "predicateType": "int", "group": "S0102", "limit": 0, "attributes": "S0102_C01_102EA,S0102_C01_102M,S0102_C01_102MA"}, "S0501_C05_008E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!Total population!!SEX AND AGE!!45 to 54 years", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_008EA,S0501_C05_008M,S0501_C05_008MA"}, "S1251_C04_010E": {"label": "Estimate!!Male!!Divorced in the last 12 months!!PRESENCE OF OWN CHILD UNDER 18 YEARS!!Population in households", "concept": "Characteristics of People With a Marital Event in the Last 12 Months", "predicateType": "int", "group": "S1251", "limit": 0, "attributes": "S1251_C04_010EA,S1251_C04_010M,S1251_C04_010MA"}, "S0504_C02_045E": {"label": "Estimate!!Foreign-born; Born in Africa!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!College or graduate school", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_045EA,S0504_C02_045M,S0504_C02_045MA"}, "S2702_C01_100E": {"label": "Estimate!!Total!!RATIO OF INCOME TO POVERTY LEVEL IN THE PAST 12 MONTHS!!Civilian noninstitutionalized population for whom poverty status is determined!!Below 50 percent of the poverty level", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_100EA,S2702_C01_100M,S2702_C01_100MA"}, "S0102_C01_105E": {"label": "Estimate!!Total!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_105EA,S0102_C01_105M,S0102_C01_105MA"}, "S1251_C04_013E": {"label": "Estimate!!Male!!Divorced in the last 12 months!!HOUSING TENURE!!Population 15 years and over in occupied housing units!!Owner-occupied housing units", "concept": "Characteristics of People With a Marital Event in the Last 12 Months", "predicateType": "float", "group": "S1251", "limit": 0, "attributes": "S1251_C04_013EA,S1251_C04_013M,S1251_C04_013MA"}, "S0501_C05_007E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!Total population!!SEX AND AGE!!25 to 44 years", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_007EA,S0501_C05_007M,S0501_C05_007MA"}, "S2702_C01_101E": {"label": "Estimate!!Total!!RATIO OF INCOME TO POVERTY LEVEL IN THE PAST 12 MONTHS!!Civilian noninstitutionalized population for whom poverty status is determined!!50 to 99 percent of the poverty level", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_101EA,S2702_C01_101M,S2702_C01_101MA"}, "S0504_C02_044E": {"label": "Estimate!!Foreign-born; Born in Africa!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!High school (grades 9-12)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_044EA,S0504_C02_044M,S0504_C02_044MA"}, "S0102_C01_104E": {"label": "Estimate!!Total!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_104EA,S0102_C01_104M,S0102_C01_104MA"}, "S1251_C04_012E": {"label": "Estimate!!Male!!Divorced in the last 12 months!!HOUSING TENURE!!Population 15 years and over in occupied housing units", "concept": "Characteristics of People With a Marital Event in the Last 12 Months", "predicateType": "int", "group": "S1251", "limit": 0, "attributes": "S1251_C04_012EA,S1251_C04_012M,S1251_C04_012MA"}, "S0501_C05_006E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!Total population!!SEX AND AGE!!18 to 24 years", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_006EA,S0501_C05_006M,S0501_C05_006MA"}, "S2301_C04_012E": {"label": "Estimate!!Unemployment rate!!Population 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C04_012EA,S2301_C04_012M,S2301_C04_012MA"}, "S0504_C02_047E": {"label": "Estimate!!Foreign-born; Born in Africa!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than high school graduate", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_047EA,S0504_C02_047M,S0504_C02_047MA"}, "S0504_C02_046E": {"label": "Estimate!!Foreign-born; Born in Africa!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C02_046EA,S0504_C02_046M,S0504_C02_046MA"}, "S0102_C01_106E": {"label": "Estimate!!Total!!Renter-occupied housing units!!GROSS RENT!!Median gross rent (dollars)", "concept": "Population 60 Years and Over in the United States", "predicateType": "int", "group": "S0102", "limit": 0, "attributes": "S0102_C01_106EA,S0102_C01_106M,S0102_C01_106MA"}, "S2301_C04_011E": {"label": "Estimate!!Unemployment rate!!Population 16 years and over!!AGE!!75 years and over", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C04_011EA,S2301_C04_011M,S2301_C04_011MA"}, "S2702_C01_104E": {"label": "Estimate!!Total!!RATIO OF INCOME TO POVERTY LEVEL IN THE PAST 12 MONTHS!!Civilian noninstitutionalized population for whom poverty status is determined!!200 to 299 percent of the poverty level", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_104EA,S2702_C01_104M,S2702_C01_104MA"}, "S2301_C04_010E": {"label": "Estimate!!Unemployment rate!!Population 16 years and over!!AGE!!65 to 74 years", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C04_010EA,S2301_C04_010M,S2301_C04_010MA"}, "S0504_C02_049E": {"label": "Estimate!!Foreign-born; Born in Africa!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college or associate's degree", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_049EA,S0504_C02_049M,S0504_C02_049MA"}, "S2702_C01_105E": {"label": "Estimate!!Total!!RATIO OF INCOME TO POVERTY LEVEL IN THE PAST 12 MONTHS!!Civilian noninstitutionalized population for whom poverty status is determined!!At or above 300 percent of the poverty level", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_105EA,S2702_C01_105M,S2702_C01_105MA"}, "S0504_C02_048E": {"label": "Estimate!!Foreign-born; Born in Africa!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate (includes equivalency)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_048EA,S0504_C02_048M,S0504_C02_048MA"}, "S0502_C01_008E": {"label": "Estimate!!Total!!Foreign-born population!!WORLD REGION OF BIRTH OF FOREIGN-BORN!!Oceania", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_008EA,S0502_C01_008M,S0502_C01_008MA"}, "S2301_C04_016E": {"label": "Estimate!!Unemployment rate!!Population 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Native Hawaiian and Other Pacific Islander alone", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C04_016EA,S2301_C04_016M,S2301_C04_016MA"}, "S0506_C02_062E": {"label": "Estimate!!Foreign-born; Born in Latin America!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Armed Forces", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_062EA,S0506_C02_062M,S0506_C02_062MA"}, "S1251_C04_007E": {"label": "Estimate!!Male!!Divorced in the last 12 months!!LABOR FORCE PARTICIPATION!!Population 16 years and over!!Not in labor force", "concept": "Characteristics of People With a Marital Event in the Last 12 Months", "predicateType": "float", "group": "S1251", "limit": 0, "attributes": "S1251_C04_007EA,S1251_C04_007M,S1251_C04_007MA"}, "S0901_C02_037E": {"label": "Estimate!!In married-couple family household!!HOUSING TENURE!!Children under 18 years in occupied housing units!!In renter-occupied housing units", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C02_037EA,S0901_C02_037M,S0901_C02_037MA"}, "S0502_C01_007E": {"label": "Estimate!!Total!!Foreign-born population!!WORLD REGION OF BIRTH OF FOREIGN-BORN!!Africa", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_007EA,S0502_C01_007M,S0502_C01_007MA"}, "S0506_C02_063E": {"label": "Estimate!!Foreign-born; Born in Latin America!!EMPLOYMENT STATUS!!Population 16 years and over!!Not in labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_063EA,S0506_C02_063M,S0506_C02_063MA"}, "S2301_C04_015E": {"label": "Estimate!!Unemployment rate!!Population 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Asian alone", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C04_015EA,S2301_C04_015M,S2301_C04_015MA"}, "S1251_C04_006E": {"label": "Estimate!!Male!!Divorced in the last 12 months!!LABOR FORCE PARTICIPATION!!Population 16 years and over!!In labor force", "concept": "Characteristics of People With a Marital Event in the Last 12 Months", "predicateType": "float", "group": "S1251", "limit": 0, "attributes": "S1251_C04_006EA,S1251_C04_006M,S1251_C04_006MA"}, "S0502_C01_006E": {"label": "Estimate!!Total!!Foreign-born population!!WORLD REGION OF BIRTH OF FOREIGN-BORN!!Asia", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_006EA,S0502_C01_006M,S0502_C01_006MA"}, "S1251_C04_009E": {"label": "Estimate!!Male!!Divorced in the last 12 months!!POVERTY STATUS IN PAST 12 MONTHS!!Population for whom poverty status is determined!!Below poverty", "concept": "Characteristics of People With a Marital Event in the Last 12 Months", "predicateType": "float", "group": "S1251", "limit": 0, "attributes": "S1251_C04_009EA,S1251_C04_009M,S1251_C04_009MA"}, "S2301_C04_014E": {"label": "Estimate!!Unemployment rate!!Population 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!American Indian and Alaska Native alone", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C04_014EA,S2301_C04_014M,S2301_C04_014MA"}, "S0506_C02_060E": {"label": "Estimate!!Foreign-born; Born in Latin America!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_060EA,S0506_C02_060M,S0506_C02_060MA"}, "S2301_C04_013E": {"label": "Estimate!!Unemployment rate!!Population 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Black or African American alone", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C04_013EA,S2301_C04_013M,S2301_C04_013MA"}, "S1251_C04_008E": {"label": "Estimate!!Male!!Divorced in the last 12 months!!POVERTY STATUS IN PAST 12 MONTHS!!Population for whom poverty status is determined", "concept": "Characteristics of People With a Marital Event in the Last 12 Months", "predicateType": "int", "group": "S1251", "limit": 0, "attributes": "S1251_C04_008EA,S1251_C04_008M,S1251_C04_008MA"}, "S0506_C02_061E": {"label": "Estimate!!Foreign-born; Born in Latin America!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed!!Percent of civilian labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_061EA,S0506_C02_061M,S0506_C02_061MA"}, "S0502_C01_005E": {"label": "Estimate!!Total!!Foreign-born population!!WORLD REGION OF BIRTH OF FOREIGN-BORN!!Europe", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_005EA,S0502_C01_005M,S0502_C01_005MA"}, "S2601CPR_C01_043E": {"label": "Estimate!!Total population!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree or higher", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_043EA,S2601CPR_C01_043M,S2601CPR_C01_043MA"}, "S0502_C01_004E": {"label": "Estimate!!Total!!Foreign-born population!!WORLD REGION OF BIRTH OF FOREIGN-BORN!!Foreign-born population excluding population born at sea", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C01_004EA,S0502_C01_004M,S0502_C01_004MA"}, "S1251_C04_003E": {"label": "Estimate!!Male!!Divorced in the last 12 months!!EDUCATIONAL ATTAINMENT!!Population 18 years and over", "concept": "Characteristics of People With a Marital Event in the Last 12 Months", "predicateType": "int", "group": "S1251", "limit": 0, "attributes": "S1251_C04_003EA,S1251_C04_003M,S1251_C04_003MA"}, "S2601CPR_C01_042E": {"label": "Estimate!!Total population!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate or higher", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_042EA,S2601CPR_C01_042M,S2601CPR_C01_042MA"}, "S2301_C04_019E": {"label": "Estimate!!Unemployment rate!!Population 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C04_019EA,S2301_C04_019M,S2301_C04_019MA"}, "S1251_C04_002E": {"label": "Estimate!!Male!!Divorced in the last 12 months!!Population 15 years and over!!AGE!!Median age", "concept": "Characteristics of People With a Marital Event in the Last 12 Months", "predicateType": "float", "group": "S1251", "limit": 0, "attributes": "S1251_C04_002EA,S1251_C04_002M,S1251_C04_002MA"}, "S0502_C01_003E": {"label": "Estimate!!Total!!Foreign-born population!!CITIZENSHIP!!Not a citizen", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_003EA,S0502_C01_003M,S0502_C01_003MA"}, "S2601CPR_C01_041E": {"label": "Estimate!!Total population!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "int", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_041EA,S2601CPR_C01_041M,S2601CPR_C01_041MA"}, "S2301_C04_018E": {"label": "Estimate!!Unemployment rate!!Population 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C04_018EA,S2301_C04_018M,S2301_C04_018MA"}, "S0102_C01_101E": {"label": "Estimate!!Total!!Owner-occupied housing units!!OWNER CHARACTERISTICS!!Median selected monthly owner costs with a mortgage (dollars)", "concept": "Population 60 Years and Over in the United States", "predicateType": "int", "group": "S0102", "limit": 0, "attributes": "S0102_C01_101EA,S0102_C01_101M,S0102_C01_101MA"}, "S1251_C04_005E": {"label": "Estimate!!Male!!Divorced in the last 12 months!!LABOR FORCE PARTICIPATION!!Population 16 years and over", "concept": "Characteristics of People With a Marital Event in the Last 12 Months", "predicateType": "int", "group": "S1251", "limit": 0, "attributes": "S1251_C04_005EA,S1251_C04_005M,S1251_C04_005MA"}, "S0502_C01_002E": {"label": "Estimate!!Total!!Foreign-born population!!CITIZENSHIP!!Naturalized citizen", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_002EA,S0502_C01_002M,S0502_C01_002MA"}, "S2601CPR_C01_040E": {"label": "Estimate!!Total population!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!College or graduate school", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_040EA,S2601CPR_C01_040M,S2601CPR_C01_040MA"}, "S2301_C04_017E": {"label": "Estimate!!Unemployment rate!!Population 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Some other race alone", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C04_017EA,S2301_C04_017M,S2301_C04_017MA"}, "S1251_C04_004E": {"label": "Estimate!!Male!!Divorced in the last 12 months!!EDUCATIONAL ATTAINMENT!!Population 18 years and over!!Bachelor's degree or higher", "concept": "Characteristics of People With a Marital Event in the Last 12 Months", "predicateType": "float", "group": "S1251", "limit": 0, "attributes": "S1251_C04_004EA,S1251_C04_004M,S1251_C04_004MA"}, "S0102_C01_100E": {"label": "Estimate!!Total!!Owner-occupied housing units!!OWNER CHARACTERISTICS!!Median value (dollars)", "concept": "Population 60 Years and Over in the United States", "predicateType": "int", "group": "S0102", "limit": 0, "attributes": "S0102_C01_100EA,S0102_C01_100M,S0102_C01_100MA"}, "S0502_C01_001E": {"label": "Estimate!!Total!!Foreign-born population", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C01_001EA,S0502_C01_001M,S0502_C01_001MA"}, "S1101_C02_005E": {"label": "Estimate!!Married-couple family household!!AGE OF OWN CHILDREN!!Households with own children of the householder under 18 years", "concept": "Households and Families", "predicateType": "int", "group": "S1101", "limit": 0, "attributes": "S1101_C02_005EA,S1101_C02_005M,S1101_C02_005MA"}, "S2408_C05_008E": {"label": "Estimate!!Percent Female!!Civilian employed population 16 years and over!!Federal government workers", "concept": "Class of Worker by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2408", "limit": 0, "attributes": "S2408_C05_008EA,S2408_C05_008M,S2408_C05_008MA"}, "S2601CPR_C01_048E": {"label": "Estimate!!Total population!!DISABILITY STATUS!!Population under 18 years", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "int", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_048EA,S2601CPR_C01_048M,S2601CPR_C01_048MA"}, "S1101_C02_006E": {"label": "Estimate!!Married-couple family household!!AGE OF OWN CHILDREN!!Households with own children of the householder under 18 years!!Under 6 years only", "concept": "Households and Families", "predicateType": "float", "group": "S1101", "limit": 0, "attributes": "S1101_C02_006EA,S1101_C02_006M,S1101_C02_006MA"}, "S2303_C04_033E": {"label": "Estimate!!Percent Male!!Population 16 to 64 years!!Workers 16 to 64 years who worked full-time, year-round", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C04_033EA,S2303_C04_033M,S2303_C04_033MA"}, "S2601CPR_C01_046E": {"label": "Estimate!!Total population!!DISABILITY STATUS!!Total population", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "int", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_046EA,S2601CPR_C01_046M,S2601CPR_C01_046MA"}, "S2408_C05_009E": {"label": "Estimate!!Percent Female!!Civilian employed population 16 years and over!!Self-employed in own not incorporated business workers and unpaid family workers", "concept": "Class of Worker by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2408", "limit": 0, "attributes": "S2408_C05_009EA,S2408_C05_009M,S2408_C05_009MA"}, "S0601_C03_053E": {"label": "Estimate!!Native; born in other state in the U.S.!!PERCENT ALLOCATED!!Place of birth", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "int", "group": "S0601", "limit": 0, "attributes": "S0601_C03_053EA,S0601_C03_053M,S0601_C03_053MA"}, "S2601CPR_C01_047E": {"label": "Estimate!!Total population!!DISABILITY STATUS!!Total population!!With a disability", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_047EA,S2601CPR_C01_047M,S2601CPR_C01_047MA"}, "S2408_C05_006E": {"label": "Estimate!!Percent Female!!Civilian employed population 16 years and over!!Local government workers", "concept": "Class of Worker by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2408", "limit": 0, "attributes": "S2408_C05_006EA,S2408_C05_006M,S2408_C05_006MA"}, "S1101_C02_007E": {"label": "Estimate!!Married-couple family household!!AGE OF OWN CHILDREN!!Households with own children of the householder under 18 years!!Under 6 years and 6 to 17 years", "concept": "Households and Families", "predicateType": "float", "group": "S1101", "limit": 0, "attributes": "S1101_C02_007EA,S1101_C02_007M,S1101_C02_007MA"}, "S2303_C04_032E": {"label": "Estimate!!Percent Male!!Population 16 to 64 years!!Median age of workers 16 to 64 years", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C04_032EA,S2303_C04_032M,S2303_C04_032MA"}, "S0506_C02_068E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Unpaid family workers", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_068EA,S0506_C02_068M,S0506_C02_068MA"}, "S2601CPR_C01_045E": {"label": "Estimate!!Total population!!VETERAN STATUS!!Civilian population 18 years and over!!Civilian veteran", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_045EA,S2601CPR_C01_045M,S2601CPR_C01_045MA"}, "S1101_C02_008E": {"label": "Estimate!!Married-couple family household!!AGE OF OWN CHILDREN!!Households with own children of the householder under 18 years!!6 to 17 years only", "concept": "Households and Families", "predicateType": "float", "group": "S1101", "limit": 0, "attributes": "S1101_C02_008EA,S1101_C02_008M,S1101_C02_008MA"}, "S2303_C04_031E": {"label": "Estimate!!Percent Male!!Population 16 to 64 years!!Mean usual hours worked for workers", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C04_031EA,S2303_C04_031M,S2303_C04_031MA"}, "S2601CPR_C01_044E": {"label": "Estimate!!Total population!!VETERAN STATUS!!Civilian population 18 years and over", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "int", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_044EA,S2601CPR_C01_044M,S2601CPR_C01_044MA"}, "S2408_C05_007E": {"label": "Estimate!!Percent Female!!Civilian employed population 16 years and over!!State government workers", "concept": "Class of Worker by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2408", "limit": 0, "attributes": "S2408_C05_007EA,S2408_C05_007M,S2408_C05_007MA"}, "S0506_C02_069E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Civilian employed population 16 years and over!!OCCUPATION!!Management, business, science, and arts occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_069EA,S0506_C02_069M,S0506_C02_069MA"}, "S1101_C02_009E": {"label": "Estimate!!Married-couple family household!!Total households", "concept": "Households and Families", "predicateType": "int", "group": "S1101", "limit": 0, "attributes": "S1101_C02_009EA,S1101_C02_009M,S1101_C02_009MA"}, "S2408_C05_004E": {"label": "Estimate!!Percent Female!!Civilian employed population 16 years and over!!Private for-profit wage and salary workers:!!Self-employed in own incorporated business workers", "concept": "Class of Worker by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2408", "limit": 0, "attributes": "S2408_C05_004EA,S2408_C05_004M,S2408_C05_004MA"}, "S0601_C03_050E": {"label": "Estimate!!Native; born in other state in the U.S.!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!100 to 149 percent of the poverty level", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C03_050EA,S0601_C03_050M,S0601_C03_050MA"}, "S2303_C04_030E": {"label": "Estimate!!Percent Male!!Population 16 to 64 years!!USUAL HOURS WORKED!!Did not work", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C04_030EA,S2303_C04_030M,S2303_C04_030MA"}, "S0506_C02_066E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Government workers", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_066EA,S0506_C02_066M,S0506_C02_066MA"}, "S2408_C05_005E": {"label": "Estimate!!Percent Female!!Civilian employed population 16 years and over!!Private not-for-profit wage and salary workers", "concept": "Class of Worker by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2408", "limit": 0, "attributes": "S2408_C05_005EA,S2408_C05_005M,S2408_C05_005MA"}, "S0506_C02_067E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Self-employed workers in own not incorporated business", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_067EA,S0506_C02_067M,S0506_C02_067MA"}, "S2408_C05_002E": {"label": "Estimate!!Percent Female!!Civilian employed population 16 years and over!!Private for-profit wage and salary workers:", "concept": "Class of Worker by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2408", "limit": 0, "attributes": "S2408_C05_002EA,S2408_C05_002M,S2408_C05_002MA"}, "S0601_C03_052E": {"label": "Estimate!!Native; born in other state in the U.S.!!PERCENT ALLOCATED!!Citizenship status", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "int", "group": "S0601", "limit": 0, "attributes": "S0601_C03_052EA,S0601_C03_052M,S0601_C03_052MA"}, "S0506_C02_064E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Civilian employed population 16 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C02_064EA,S0506_C02_064M,S0506_C02_064MA"}, "S2408_C05_003E": {"label": "Estimate!!Percent Female!!Civilian employed population 16 years and over!!Private for-profit wage and salary workers:!!Employee of private company workers", "concept": "Class of Worker by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2408", "limit": 0, "attributes": "S2408_C05_003EA,S2408_C05_003M,S2408_C05_003MA"}, "S0601_C03_051E": {"label": "Estimate!!Native; born in other state in the U.S.!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!At or above 150 percent of the poverty level", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C03_051EA,S0601_C03_051M,S0601_C03_051MA"}, "S2601CPR_C01_049E": {"label": "Estimate!!Total population!!DISABILITY STATUS!!Population under 18 years!!With a disability", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_049EA,S2601CPR_C01_049M,S2601CPR_C01_049MA"}, "S0506_C02_065E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Private wage and salary workers", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_065EA,S0506_C02_065M,S0506_C02_065MA"}, "S0501_C05_013E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!Total population!!SEX AND AGE!!Median age (years)", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_013EA,S0501_C05_013M,S0501_C05_013MA"}, "S0601_C03_038E": {"label": "Estimate!!Native; born in other state in the U.S.!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "int", "group": "S0601", "limit": 0, "attributes": "S0601_C03_038EA,S0601_C03_038M,S0601_C03_038MA"}, "S2303_C04_018E": {"label": "Estimate!!Percent Male!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 15 to 34 hours per week!!48 to 49 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C04_018EA,S2303_C04_018M,S2303_C04_018MA"}, "S0502PR_C03_004E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Foreign-born population!!WORLD REGION OF BIRTH OF FOREIGN-BORN!!Foreign-born population excluding population born at sea", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_004EA,S0502PR_C03_004M,S0502PR_C03_004MA"}, "S0501_C05_012E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!Total population!!SEX AND AGE!!85 years and over", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_012EA,S0501_C05_012M,S0501_C05_012MA"}, "S0601_C03_037E": {"label": "Estimate!!Native; born in other state in the U.S.!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Graduate or professional degree", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C03_037EA,S0601_C03_037M,S0601_C03_037MA"}, "S0502PR_C03_003E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Foreign-born population!!CITIZENSHIP!!Not a citizen", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_003EA,S0502PR_C03_003M,S0502PR_C03_003MA"}, "S2303_C04_017E": {"label": "Estimate!!Percent Male!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 15 to 34 hours per week!!50 to 52 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C04_017EA,S2303_C04_017M,S2303_C04_017MA"}, "S0501_C05_011E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!Total population!!SEX AND AGE!!75 to 84 years", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_011EA,S0501_C05_011M,S0501_C05_011MA"}, "S2303_C04_016E": {"label": "Estimate!!Percent Male!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 15 to 34 hours per week", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C04_016EA,S2303_C04_016M,S2303_C04_016MA"}, "S0502PR_C03_002E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Foreign-born population!!CITIZENSHIP!!Naturalized citizen", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_002EA,S0502PR_C03_002M,S0502PR_C03_002MA"}, "S0501_C05_010E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!Total population!!SEX AND AGE!!65 to 74 years", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_010EA,S0501_C05_010M,S0501_C05_010MA"}, "S0502PR_C03_001E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Foreign-born population", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_001EA,S0502PR_C03_001M,S0502PR_C03_001MA"}, "S2303_C04_015E": {"label": "Estimate!!Percent Male!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 35 or more hours per week!!1 to 13 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C04_015EA,S2303_C04_015M,S2303_C04_015MA"}, "S0601_C03_039E": {"label": "Estimate!!Native; born in other state in the U.S.!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$1 to $9,999 or loss", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C03_039EA,S0601_C03_039M,S0601_C03_039MA"}, "S2303_C04_014E": {"label": "Estimate!!Percent Male!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 35 or more hours per week!!14 to 26 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C04_014EA,S2303_C04_014M,S2303_C04_014MA"}, "S0504_C02_051E": {"label": "Estimate!!Foreign-born; Born in Africa!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Graduate or professional degree", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_051EA,S0504_C02_051M,S0504_C02_051MA"}, "S0601_C03_034E": {"label": "Estimate!!Native; born in other state in the U.S.!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate (includes equivalency)", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C03_034EA,S0601_C03_034M,S0601_C03_034MA"}, "S0502PR_C03_008E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Foreign-born population!!WORLD REGION OF BIRTH OF FOREIGN-BORN!!Oceania", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_008EA,S0502PR_C03_008M,S0502PR_C03_008MA"}, "S0501_C05_017E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_017EA,S0501_C05_017M,S0501_C05_017MA"}, "S2303_C04_013E": {"label": "Estimate!!Percent Male!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 35 or more hours per week!!27 to 39 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C04_013EA,S2303_C04_013M,S2303_C04_013MA"}, "S0504_C02_050E": {"label": "Estimate!!Foreign-born; Born in Africa!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_050EA,S0504_C02_050M,S0504_C02_050MA"}, "S0601_C03_033E": {"label": "Estimate!!Native; born in other state in the U.S.!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than high school graduate", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C03_033EA,S0601_C03_033M,S0601_C03_033MA"}, "S0502PR_C03_007E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Foreign-born population!!WORLD REGION OF BIRTH OF FOREIGN-BORN!!Africa", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_007EA,S0502PR_C03_007M,S0502PR_C03_007MA"}, "S0501_C05_016E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_016EA,S0501_C05_016M,S0501_C05_016MA"}, "S0504_C02_053E": {"label": "Estimate!!Foreign-born; Born in Africa!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!English only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_053EA,S0504_C02_053M,S0504_C02_053MA"}, "S2303_C04_012E": {"label": "Estimate!!Percent Male!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 35 or more hours per week!!40 to 47 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C04_012EA,S2303_C04_012M,S2303_C04_012MA"}, "S0601_C03_036E": {"label": "Estimate!!Native; born in other state in the U.S.!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C03_036EA,S0601_C03_036M,S0601_C03_036MA"}, "S0502PR_C03_006E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Foreign-born population!!WORLD REGION OF BIRTH OF FOREIGN-BORN!!Asia", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_006EA,S0502PR_C03_006M,S0502PR_C03_006MA"}, "S0501_C05_015E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_015EA,S0501_C05_015M,S0501_C05_015MA"}, "S0504_C02_052E": {"label": "Estimate!!Foreign-born; Born in Africa!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C02_052EA,S0504_C02_052M,S0504_C02_052MA"}, "S2303_C04_011E": {"label": "Estimate!!Percent Male!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 35 or more hours per week!!48 to 49 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C04_011EA,S2303_C04_011M,S2303_C04_011MA"}, "S0601_C03_035E": {"label": "Estimate!!Native; born in other state in the U.S.!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college or associate's degree", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C03_035EA,S0601_C03_035M,S0601_C03_035MA"}, "S0501_C05_014E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_014EA,S0501_C05_014M,S0501_C05_014MA"}, "S0502PR_C03_005E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Foreign-born population!!WORLD REGION OF BIRTH OF FOREIGN-BORN!!Europe", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_005EA,S0502PR_C03_005M,S0502PR_C03_005MA"}, "S0504_C02_055E": {"label": "Estimate!!Foreign-born; Born in Africa!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English!!Speak English less than \"very well\"", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_055EA,S0504_C02_055M,S0504_C02_055MA"}, "S0504_C02_054E": {"label": "Estimate!!Foreign-born; Born in Africa!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_054EA,S0504_C02_054M,S0504_C02_054MA"}, "S0504_C02_057E": {"label": "Estimate!!Foreign-born; Born in Africa!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_057EA,S0504_C02_057M,S0504_C02_057MA"}, "S0501_C05_019E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_019EA,S0501_C05_019M,S0501_C05_019MA"}, "S1251_C04_001E": {"label": "Estimate!!Male!!Divorced in the last 12 months!!Population 15 years and over", "concept": "Characteristics of People With a Marital Event in the Last 12 Months", "predicateType": "int", "group": "S1251", "limit": 0, "attributes": "S1251_C04_001EA,S1251_C04_001M,S1251_C04_001MA"}, "S0504_C02_056E": {"label": "Estimate!!Foreign-born; Born in Africa!!EMPLOYMENT STATUS!!Population 16 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C02_056EA,S0504_C02_056M,S0504_C02_056MA"}, "S0501_C05_018E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_018EA,S0501_C05_018M,S0501_C05_018MA"}, "S1603_C03_009E": {"label": "Estimate!!Percent speak only English at home!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population 5 years and over for whom poverty status is determined", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "int", "group": "S1603", "limit": 0, "attributes": "S1603_C03_009EA,S1603_C03_009M,S1603_C03_009MA"}, "S0504_C02_059E": {"label": "Estimate!!Foreign-born; Born in Africa!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Employed", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_059EA,S0504_C02_059M,S0504_C02_059MA"}, "S0504_C02_058E": {"label": "Estimate!!Foreign-born; Born in Africa!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_058EA,S0504_C02_058M,S0504_C02_058MA"}, "S1603_C03_007E": {"label": "Estimate!!Percent speak only English at home!!Total population 5 years and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born!!Naturalized U.S. citizen", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "float", "group": "S1603", "limit": 0, "attributes": "S1603_C03_007EA,S1603_C03_007M,S1603_C03_007MA"}, "S1603_C03_008E": {"label": "Estimate!!Percent speak only English at home!!Total population 5 years and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born!!Not a U.S. citizen", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "float", "group": "S1603", "limit": 0, "attributes": "S1603_C03_008EA,S1603_C03_008M,S1603_C03_008MA"}, "S2303_C04_019E": {"label": "Estimate!!Percent Male!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 15 to 34 hours per week!!40 to 47 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C04_019EA,S2303_C04_019M,S2303_C04_019MA"}, "S0506_C02_074E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Civilian employed population 16 years and over!!INDUSTRY!!Agriculture, forestry, fishing and hunting, and mining", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_074EA,S0506_C02_074M,S0506_C02_074MA"}, "S2802_C02_008E": {"label": "Estimate!!Broadband Internet Subscription!!With a computer!!Total population in households!!RACE AND HISPANIC OR LATINO ORIGIN!!Asian alone", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C02_008EA,S2802_C02_008M,S2802_C02_008MA"}, "S2301_C04_004E": {"label": "Estimate!!Unemployment rate!!Population 16 years and over!!AGE!!25 to 29 years", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C04_004EA,S2301_C04_004M,S2301_C04_004MA"}, "S1603_C03_005E": {"label": "Estimate!!Percent speak only English at home!!Total population 5 years and over!!NATIVITY AND CITIZENSHIP STATUS!!Native", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "float", "group": "S1603", "limit": 0, "attributes": "S1603_C03_005EA,S1603_C03_005M,S1603_C03_005MA"}, "S0506_C02_075E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Civilian employed population 16 years and over!!INDUSTRY!!Construction", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_075EA,S0506_C02_075M,S0506_C02_075MA"}, "S2301_C04_003E": {"label": "Estimate!!Unemployment rate!!Population 16 years and over!!AGE!!20 to 24 years", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C04_003EA,S2301_C04_003M,S2301_C04_003MA"}, "S2802_C02_007E": {"label": "Estimate!!Broadband Internet Subscription!!With a computer!!Total population in households!!RACE AND HISPANIC OR LATINO ORIGIN!!American Indian and Alaska Native alone", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C02_007EA,S2802_C02_007M,S2802_C02_007MA"}, "S1603_C03_006E": {"label": "Estimate!!Percent speak only English at home!!Total population 5 years and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "float", "group": "S1603", "limit": 0, "attributes": "S1603_C03_006EA,S1603_C03_006M,S1603_C03_006MA"}, "S2301_C04_002E": {"label": "Estimate!!Unemployment rate!!Population 16 years and over!!AGE!!16 to 19 years", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C04_002EA,S2301_C04_002M,S2301_C04_002MA"}, "S0506_C02_072E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Civilian employed population 16 years and over!!OCCUPATION!!Natural resources, construction, and maintenance occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_072EA,S0506_C02_072M,S0506_C02_072MA"}, "S1603_C03_003E": {"label": "Estimate!!Percent speak only English at home!!Total population 5 years and over!!AGE!!18 to 64 years", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "float", "group": "S1603", "limit": 0, "attributes": "S1603_C03_003EA,S1603_C03_003M,S1603_C03_003MA"}, "S2802_C02_009E": {"label": "Estimate!!Broadband Internet Subscription!!With a computer!!Total population in households!!RACE AND HISPANIC OR LATINO ORIGIN!!Native Hawaiian and Other Pacific Islander alone", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C02_009EA,S2802_C02_009M,S2802_C02_009MA"}, "S2301_C04_001E": {"label": "Estimate!!Unemployment rate!!Population 16 years and over", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C04_001EA,S2301_C04_001M,S2301_C04_001MA"}, "S0506_C02_073E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Civilian employed population 16 years and over!!OCCUPATION!!Production, transportation, and material moving occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_073EA,S0506_C02_073M,S0506_C02_073MA"}, "S1603_C03_004E": {"label": "Estimate!!Percent speak only English at home!!Total population 5 years and over!!AGE!!65 years and over", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "float", "group": "S1603", "limit": 0, "attributes": "S1603_C03_004EA,S1603_C03_004M,S1603_C03_004MA"}, "S1603_C03_001E": {"label": "Estimate!!Percent speak only English at home!!Total population 5 years and over", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "int", "group": "S1603", "limit": 0, "attributes": "S1603_C03_001EA,S1603_C03_001M,S1603_C03_001MA"}, "S2601CPR_C01_031E": {"label": "Estimate!!Total population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!White alone, Not Hispanic or Latino", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_031EA,S2601CPR_C01_031M,S2601CPR_C01_031MA"}, "S2301_C04_008E": {"label": "Estimate!!Unemployment rate!!Population 16 years and over!!AGE!!55 to 59 years", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C04_008EA,S2301_C04_008M,S2301_C04_008MA"}, "S0506_C02_070E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Civilian employed population 16 years and over!!OCCUPATION!!Service occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_070EA,S0506_C02_070M,S0506_C02_070MA"}, "S2802_C02_004E": {"label": "Estimate!!Broadband Internet Subscription!!With a computer!!Total population in households!!AGE!!65 years and over", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C02_004EA,S2802_C02_004M,S2802_C02_004MA"}, "S1603_C03_002E": {"label": "Estimate!!Percent speak only English at home!!Total population 5 years and over!!AGE!!5 to 17 years", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "float", "group": "S1603", "limit": 0, "attributes": "S1603_C03_002EA,S1603_C03_002M,S1603_C03_002MA"}, "S2802_C02_003E": {"label": "Estimate!!Broadband Internet Subscription!!With a computer!!Total population in households!!AGE!!18 to 64 years", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C02_003EA,S2802_C02_003M,S2802_C02_003MA"}, "S2601CPR_C01_030E": {"label": "Estimate!!Total population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!Not Hispanic or Latino", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_030EA,S2601CPR_C01_030M,S2601CPR_C01_030MA"}, "S2301_C04_007E": {"label": "Estimate!!Unemployment rate!!Population 16 years and over!!AGE!!45 to 54 years", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C04_007EA,S2301_C04_007M,S2301_C04_007MA"}, "S0506_C02_071E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Civilian employed population 16 years and over!!OCCUPATION!!Sales and office occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_071EA,S0506_C02_071M,S0506_C02_071MA"}, "S2301_C04_006E": {"label": "Estimate!!Unemployment rate!!Population 16 years and over!!AGE!!35 to 44 years", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C04_006EA,S2301_C04_006M,S2301_C04_006MA"}, "S2802_C02_006E": {"label": "Estimate!!Broadband Internet Subscription!!With a computer!!Total population in households!!RACE AND HISPANIC OR LATINO ORIGIN!!Black or African American alone", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C02_006EA,S2802_C02_006M,S2802_C02_006MA"}, "S2301_C04_005E": {"label": "Estimate!!Unemployment rate!!Population 16 years and over!!AGE!!30 to 34 years", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C04_005EA,S2301_C04_005M,S2301_C04_005MA"}, "S2802_C02_005E": {"label": "Estimate!!Broadband Internet Subscription!!With a computer!!Total population in households!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C02_005EA,S2802_C02_005M,S2802_C02_005MA"}, "S1101_C02_017E": {"label": "Estimate!!Married-couple family household!!Total households!!UNITS IN STRUCTURE!!Mobile homes and all other types of units", "concept": "Households and Families", "predicateType": "float", "group": "S1101", "limit": 0, "attributes": "S1101_C02_017EA,S1101_C02_017M,S1101_C02_017MA"}, "S2303_C04_022E": {"label": "Estimate!!Percent Male!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 15 to 34 hours per week!!1 to 13 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C04_022EA,S2303_C04_022M,S2303_C04_022MA"}, "S2601CPR_C01_035E": {"label": "Estimate!!Total population!!MARITAL STATUS!!Population 15 years and over!!Divorced", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_035EA,S2601CPR_C01_035M,S2601CPR_C01_035MA"}, "S0601_C03_042E": {"label": "Estimate!!Native; born in other state in the U.S.!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$25,000 to $34,999", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C03_042EA,S0601_C03_042M,S0601_C03_042MA"}, "S2601CPR_C01_036E": {"label": "Estimate!!Total population!!MARITAL STATUS!!Population 15 years and over!!Separated", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_036EA,S2601CPR_C01_036M,S2601CPR_C01_036MA"}, "S1101_C02_018E": {"label": "Estimate!!Married-couple family household!!Total households!!HOUSING TENURE!!Owner-occupied housing units", "concept": "Households and Families", "predicateType": "float", "group": "S1101", "limit": 0, "attributes": "S1101_C02_018EA,S1101_C02_018M,S1101_C02_018MA"}, "S2303_C04_021E": {"label": "Estimate!!Percent Male!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 15 to 34 hours per week!!14 to 26 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C04_021EA,S2303_C04_021M,S2303_C04_021MA"}, "S0601_C03_041E": {"label": "Estimate!!Native; born in other state in the U.S.!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$15,000 to $24,999", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C03_041EA,S0601_C03_041M,S0601_C03_041MA"}, "S2601CPR_C01_034E": {"label": "Estimate!!Total population!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_034EA,S2601CPR_C01_034M,S2601CPR_C01_034MA"}, "S1101_C02_019E": {"label": "Estimate!!Married-couple family household!!Total households!!HOUSING TENURE!!Renter-occupied housing units", "concept": "Households and Families", "predicateType": "float", "group": "S1101", "limit": 0, "attributes": "S1101_C02_019EA,S1101_C02_019M,S1101_C02_019MA"}, "S2303_C04_020E": {"label": "Estimate!!Percent Male!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 15 to 34 hours per week!!27 to 39 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C04_020EA,S2303_C04_020M,S2303_C04_020MA"}, "S2802_C02_002E": {"label": "Estimate!!Broadband Internet Subscription!!With a computer!!Total population in households!!AGE!!Under 18 years", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C02_002EA,S2802_C02_002M,S2802_C02_002MA"}, "S0601_C03_044E": {"label": "Estimate!!Native; born in other state in the U.S.!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$50,000 to $64,999", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C03_044EA,S0601_C03_044M,S0601_C03_044MA"}, "S2601CPR_C01_033E": {"label": "Estimate!!Total population!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_033EA,S2601CPR_C01_033M,S2601CPR_C01_033MA"}, "S2802_C02_001E": {"label": "Estimate!!Broadband Internet Subscription!!With a computer!!Total population in households", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C02_001EA,S2802_C02_001M,S2802_C02_001MA"}, "S2301_C04_009E": {"label": "Estimate!!Unemployment rate!!Population 16 years and over!!AGE!!60 to 64 years", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C04_009EA,S2301_C04_009M,S2301_C04_009MA"}, "S0601_C03_043E": {"label": "Estimate!!Native; born in other state in the U.S.!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$35,000 to $49,999", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C03_043EA,S0601_C03_043M,S0601_C03_043MA"}, "S2601CPR_C01_032E": {"label": "Estimate!!Total population!!MARITAL STATUS!!Population 15 years and over", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "int", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_032EA,S2601CPR_C01_032M,S2601CPR_C01_032MA"}, "S0501_C05_021E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_021EA,S0501_C05_021M,S0501_C05_021MA"}, "S0506_C02_078E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Civilian employed population 16 years and over!!INDUSTRY!!Retail trade", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_078EA,S0506_C02_078M,S0506_C02_078MA"}, "S0501_C05_020E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_020EA,S0501_C05_020M,S0501_C05_020MA"}, "S0506_C02_079E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Civilian employed population 16 years and over!!INDUSTRY!!Transportation and warehousing, and utilities", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_079EA,S0506_C02_079M,S0506_C02_079MA"}, "S2601CPR_C01_039E": {"label": "Estimate!!Total population!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Nursery school through 12th grade", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_039EA,S2601CPR_C01_039M,S2601CPR_C01_039MA"}, "S0601_C03_040E": {"label": "Estimate!!Native; born in other state in the U.S.!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$10,000 to $14,999", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C03_040EA,S0601_C03_040M,S0601_C03_040MA"}, "S2601CPR_C01_038E": {"label": "Estimate!!Total population!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "int", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_038EA,S2601CPR_C01_038M,S2601CPR_C01_038MA"}, "S0506_C02_076E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Civilian employed population 16 years and over!!INDUSTRY!!Manufacturing", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_076EA,S0506_C02_076M,S0506_C02_076MA"}, "S2601CPR_C01_037E": {"label": "Estimate!!Total population!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_037EA,S2601CPR_C01_037M,S2601CPR_C01_037MA"}, "S0506_C02_077E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Civilian employed population 16 years and over!!INDUSTRY!!Wholesale trade", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_077EA,S0506_C02_077M,S0506_C02_077MA"}, "S2403_C02_007E": {"label": "Estimate!!Male!!Civilian employed population 16 years and over!!Wholesale trade", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C02_007EA,S2403_C02_007M,S2403_C02_007MA"}, "S0601_C03_026E": {"label": "Estimate!!Native; born in other state in the U.S.!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Speak language other than English!!Speak English less than \"very well\"", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C03_026EA,S0601_C03_026M,S0601_C03_026MA"}, "S2303_C04_006E": {"label": "Estimate!!Percent Male!!Population 16 to 64 years!!WEEKS WORKED!!Worked 14 to 26 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C04_006EA,S2303_C04_006M,S2303_C04_006MA"}, "S2303_C04_005E": {"label": "Estimate!!Percent Male!!Population 16 to 64 years!!WEEKS WORKED!!Worked 27 to 39 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C04_005EA,S2303_C04_005M,S2303_C04_005MA"}, "S0601_C03_025E": {"label": "Estimate!!Native; born in other state in the U.S.!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Speak language other than English!!Speak English \"very well\"", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C03_025EA,S0601_C03_025M,S0601_C03_025MA"}, "S2403_C02_006E": {"label": "Estimate!!Male!!Civilian employed population 16 years and over!!Manufacturing", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C02_006EA,S2403_C02_006M,S2403_C02_006MA"}, "S2303_C04_004E": {"label": "Estimate!!Percent Male!!Population 16 to 64 years!!WEEKS WORKED!!Worked 40 to 47 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C04_004EA,S2303_C04_004M,S2303_C04_004MA"}, "S0504_C02_061E": {"label": "Estimate!!Foreign-born; Born in Africa!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed!!Percent of civilian labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_061EA,S0504_C02_061M,S0504_C02_061MA"}, "S2403_C02_009E": {"label": "Estimate!!Male!!Civilian employed population 16 years and over!!Transportation and warehousing, and utilities:", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C02_009EA,S2403_C02_009M,S2403_C02_009MA"}, "S0601_C03_028E": {"label": "Estimate!!Native; born in other state in the U.S.!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C03_028EA,S0601_C03_028M,S0601_C03_028MA"}, "S2303_C04_003E": {"label": "Estimate!!Percent Male!!Population 16 to 64 years!!WEEKS WORKED!!Worked 48 to 49 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C04_003EA,S2303_C04_003M,S2303_C04_003MA"}, "S0504_C02_060E": {"label": "Estimate!!Foreign-born; Born in Africa!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_060EA,S0504_C02_060M,S0504_C02_060MA"}, "S2403_C02_008E": {"label": "Estimate!!Male!!Civilian employed population 16 years and over!!Retail trade", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C02_008EA,S2403_C02_008M,S2403_C02_008MA"}, "S0601_C03_027E": {"label": "Estimate!!Native; born in other state in the U.S.!!MARITAL STATUS!!Population 15 years and over", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "int", "group": "S0601", "limit": 0, "attributes": "S0601_C03_027EA,S0601_C03_027M,S0601_C03_027MA"}, "S2601CPR_C01_029E": {"label": "Estimate!!Total population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!Hispanic or Latino (of any race)", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_029EA,S2601CPR_C01_029M,S2601CPR_C01_029MA"}, "S2303_C04_002E": {"label": "Estimate!!Percent Male!!Population 16 to 64 years!!WEEKS WORKED!!Worked 50 to 52 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C04_002EA,S2303_C04_002M,S2303_C04_002MA"}, "S0504_C02_063E": {"label": "Estimate!!Foreign-born; Born in Africa!!EMPLOYMENT STATUS!!Population 16 years and over!!Not in labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_063EA,S0504_C02_063M,S0504_C02_063MA"}, "S0601_C03_022E": {"label": "Estimate!!Native; born in other state in the U.S.!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C03_022EA,S0601_C03_022M,S0601_C03_022MA"}, "S0506_C02_038E": {"label": "Estimate!!Foreign-born; Born in Latin America!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_038EA,S0506_C02_038M,S0506_C02_038MA"}, "S0504_C02_062E": {"label": "Estimate!!Foreign-born; Born in Africa!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Armed Forces", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_062EA,S0504_C02_062M,S0504_C02_062MA"}, "S2303_C04_001E": {"label": "Estimate!!Percent Male!!Population 16 to 64 years", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C04_001EA,S2303_C04_001M,S2303_C04_001MA"}, "S0506_C02_039E": {"label": "Estimate!!Foreign-born; Born in Latin America!!MARITAL STATUS!!Population 15 years and over!!Divorced or separated", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_039EA,S0506_C02_039M,S0506_C02_039MA"}, "S0601_C03_021E": {"label": "Estimate!!Native; born in other state in the U.S.!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C03_021EA,S0601_C03_021M,S0601_C03_021MA"}, "S0504_C02_065E": {"label": "Estimate!!Foreign-born; Born in Africa!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Private wage and salary workers", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_065EA,S0504_C02_065M,S0504_C02_065MA"}, "S0601_C03_024E": {"label": "Estimate!!Native; born in other state in the U.S.!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Speak language other than English", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C03_024EA,S0601_C03_024M,S0601_C03_024MA"}, "S1703_C01_020E": {"label": "Estimate!!Total!!Population for whom poverty status is determined!!LIVING ARRANGEMENT!!In family households!!In Female householder, no spouse present households", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "int", "group": "S1703", "limit": 0, "attributes": "S1703_C01_020EA,S1703_C01_020M,S1703_C01_020MA"}, "S0506_C02_036E": {"label": "Estimate!!Foreign-born; Born in Latin America!!MARITAL STATUS!!Population 15 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C02_036EA,S0506_C02_036M,S0506_C02_036MA"}, "S0504_C02_064E": {"label": "Estimate!!Foreign-born; Born in Africa!!Civilian employed population 16 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C02_064EA,S0504_C02_064M,S0504_C02_064MA"}, "S0601_C03_023E": {"label": "Estimate!!Native; born in other state in the U.S.!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "int", "group": "S0601", "limit": 0, "attributes": "S0601_C03_023EA,S0601_C03_023M,S0601_C03_023MA"}, "S1703_C01_021E": {"label": "Estimate!!Total!!Population for whom poverty status is determined!!LIVING ARRANGEMENT!!In other living arrangements", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "int", "group": "S1703", "limit": 0, "attributes": "S1703_C01_021EA,S1703_C01_021M,S1703_C01_021MA"}, "S0506_C02_037E": {"label": "Estimate!!Foreign-born; Born in Latin America!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_037EA,S0506_C02_037M,S0506_C02_037MA"}, "S0504_C02_067E": {"label": "Estimate!!Foreign-born; Born in Africa!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Self-employed workers in own not incorporated business", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_067EA,S0504_C02_067M,S0504_C02_067MA"}, "S1703_C01_022E": {"label": "Estimate!!Total!!Population for whom poverty status is determined!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "int", "group": "S1703", "limit": 0, "attributes": "S1703_C01_022EA,S1703_C01_022M,S1703_C01_022MA"}, "S2401_C02_033E": {"label": "Estimate!!Male!!Civilian employed population 16 years and over!!Production, transportation, and material moving occupations:", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C02_033EA,S2401_C02_033M,S2401_C02_033MA"}, "S1702_C03_018E": {"label": "Estimate!!Total!!Married-couple families!!Families!!Family received --!!Supplemental Security Income (SSI) and/or cash public assistance income in the past 12 months", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C03_018EA,S1702_C03_018M,S1702_C03_018MA"}, "S2301_C04_032E": {"label": "Estimate!!Unemployment rate!!EDUCATIONAL ATTAINMENT!!Population 25 to 64 years!!Less than high school graduate", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C04_032EA,S2301_C04_032M,S2301_C04_032MA"}, "S0504_C02_066E": {"label": "Estimate!!Foreign-born; Born in Africa!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Government workers", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_066EA,S0504_C02_066M,S0504_C02_066MA"}, "S1703_C01_023E": {"label": "Estimate!!Total!!Population for whom poverty status is determined!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than high school graduate", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "int", "group": "S1703", "limit": 0, "attributes": "S1703_C01_023EA,S1703_C01_023M,S1703_C01_023MA"}, "S2401_C02_032E": {"label": "Estimate!!Male!!Civilian employed population 16 years and over!!Natural resources, construction, and maintenance occupations:!!Installation, maintenance, and repair occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C02_032EA,S2401_C02_032M,S2401_C02_032MA"}, "S1702_C03_017E": {"label": "Estimate!!Total!!Married-couple families!!Families!!Householder 65 years and over", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C03_017EA,S1702_C03_017M,S1702_C03_017MA"}, "S2301_C04_031E": {"label": "Estimate!!Unemployment rate!!EDUCATIONAL ATTAINMENT!!Population 25 to 64 years", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C04_031EA,S2301_C04_031M,S2301_C04_031MA"}, "S1703_C01_024E": {"label": "Estimate!!Total!!Population for whom poverty status is determined!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate (includes equivalency)", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "int", "group": "S1703", "limit": 0, "attributes": "S1703_C01_024EA,S1703_C01_024M,S1703_C01_024MA"}, "S2403_C02_001E": {"label": "Estimate!!Male!!Civilian employed population 16 years and over", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C02_001EA,S2403_C02_001M,S2403_C02_001MA"}, "S2301_C04_030E": {"label": "Estimate!!Unemployment rate!!Population 20 to 64 years!!DISABILITY STATUS!!With any disability", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C04_030EA,S2301_C04_030M,S2301_C04_030MA"}, "S2401_C02_035E": {"label": "Estimate!!Male!!Civilian employed population 16 years and over!!Production, transportation, and material moving occupations:!!Transportation occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C02_035EA,S2401_C02_035M,S2401_C02_035MA"}, "S0504_C02_069E": {"label": "Estimate!!Foreign-born; Born in Africa!!Civilian employed population 16 years and over!!OCCUPATION!!Management, business, science, and arts occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_069EA,S0504_C02_069M,S0504_C02_069MA"}, "S0504_C02_068E": {"label": "Estimate!!Foreign-born; Born in Africa!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Unpaid family workers", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_068EA,S0504_C02_068M,S0504_C02_068MA"}, "S1703_C01_025E": {"label": "Estimate!!Total!!Population for whom poverty status is determined!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college or associate's degree", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "int", "group": "S1703", "limit": 0, "attributes": "S1703_C01_025EA,S1703_C01_025M,S1703_C01_025MA"}, "S1702_C03_019E": {"label": "Estimate!!Total!!Married-couple families!!Families!!Family received --!!Social security income in the past 12 months", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C03_019EA,S1702_C03_019M,S1702_C03_019MA"}, "S2401_C02_034E": {"label": "Estimate!!Male!!Civilian employed population 16 years and over!!Production, transportation, and material moving occupations:!!Production occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C02_034EA,S2401_C02_034M,S2401_C02_034MA"}, "S2403_C02_003E": {"label": "Estimate!!Male!!Civilian employed population 16 years and over!!Agriculture, forestry, fishing and hunting, and mining:!!Agriculture, forestry, fishing and hunting", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C02_003EA,S2403_C02_003M,S2403_C02_003MA"}, "S1703_C01_026E": {"label": "Estimate!!Total!!Population for whom poverty status is determined!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree or higher", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "int", "group": "S1703", "limit": 0, "attributes": "S1703_C01_026EA,S1703_C01_026M,S1703_C01_026MA"}, "S2403_C02_002E": {"label": "Estimate!!Male!!Civilian employed population 16 years and over!!Agriculture, forestry, fishing and hunting, and mining:", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C02_002EA,S2403_C02_002M,S2403_C02_002MA"}, "S2301_C04_035E": {"label": "Estimate!!Unemployment rate!!EDUCATIONAL ATTAINMENT!!Population 25 to 64 years!!Bachelor's degree or higher", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C04_035EA,S2301_C04_035M,S2301_C04_035MA"}, "S1703_C01_027E": {"label": "Estimate!!Total!!Population for whom poverty status is determined!!NATIVITY AND CITIZENSHIP STATUS!!Native", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "int", "group": "S1703", "limit": 0, "attributes": "S1703_C01_027EA,S1703_C01_027M,S1703_C01_027MA"}, "S0601_C03_029E": {"label": "Estimate!!Native; born in other state in the U.S.!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C03_029EA,S0601_C03_029M,S0601_C03_029MA"}, "S2303_C04_009E": {"label": "Estimate!!Percent Male!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 35 or more hours per week", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C04_009EA,S2303_C04_009M,S2303_C04_009MA"}, "S2403_C02_005E": {"label": "Estimate!!Male!!Civilian employed population 16 years and over!!Construction", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C02_005EA,S2403_C02_005M,S2403_C02_005MA"}, "S2401_C02_031E": {"label": "Estimate!!Male!!Civilian employed population 16 years and over!!Natural resources, construction, and maintenance occupations:!!Construction and extraction occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C02_031EA,S2401_C02_031M,S2401_C02_031MA"}, "S1703_C01_028E": {"label": "Estimate!!Total!!Population for whom poverty status is determined!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "int", "group": "S1703", "limit": 0, "attributes": "S1703_C01_028EA,S1703_C01_028M,S1703_C01_028MA"}, "S2301_C04_034E": {"label": "Estimate!!Unemployment rate!!EDUCATIONAL ATTAINMENT!!Population 25 to 64 years!!Some college or associate's degree", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C04_034EA,S2301_C04_034M,S2301_C04_034MA"}, "S2303_C04_008E": {"label": "Estimate!!Percent Male!!Population 16 to 64 years!!WEEKS WORKED!!Did not work", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C04_008EA,S2303_C04_008M,S2303_C04_008MA"}, "S2403_C02_004E": {"label": "Estimate!!Male!!Civilian employed population 16 years and over!!Agriculture, forestry, fishing and hunting, and mining:!!Mining, quarrying, and oil and gas extraction", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C02_004EA,S2403_C02_004M,S2403_C02_004MA"}, "S2401_C02_030E": {"label": "Estimate!!Male!!Civilian employed population 16 years and over!!Natural resources, construction, and maintenance occupations:!!Farming, fishing, and forestry occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C02_030EA,S2401_C02_030M,S2401_C02_030MA"}, "S1703_C01_029E": {"label": "Estimate!!Total!!Population for whom poverty status is determined!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born!!Naturalized citizen", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "int", "group": "S1703", "limit": 0, "attributes": "S1703_C01_029EA,S1703_C01_029M,S1703_C01_029MA"}, "S2301_C04_033E": {"label": "Estimate!!Unemployment rate!!EDUCATIONAL ATTAINMENT!!Population 25 to 64 years!!High school graduate (includes equivalency)", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C04_033EA,S2301_C04_033M,S2301_C04_033MA"}, "S2303_C04_007E": {"label": "Estimate!!Percent Male!!Population 16 to 64 years!!WEEKS WORKED!!Worked 1 to 13 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C04_007EA,S2303_C04_007M,S2303_C04_007MA"}, "S1702_C03_010E": {"label": "Estimate!!Total!!Married-couple families!!Families!!RACE AND HISPANIC OR LATINO ORIGIN!!Families with a householder who is--!!Native Hawaiian and Other Pacific Islander alone", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C03_010EA,S1702_C03_010M,S1702_C03_010MA"}, "S0701PR_C05_051E": {"label": "Estimate!!Moved; from outside Puerto Rico and the U.S.!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population 1 year and over for whom poverty status is determined!!100 to 149 percent of the poverty level", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C05_051EA,S0701PR_C05_051M,S0701PR_C05_051MA"}, "S0701PR_C05_050E": {"label": "Estimate!!Moved; from outside Puerto Rico and the U.S.!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population 1 year and over for whom poverty status is determined!!Below 100 percent of the poverty level", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C05_050EA,S0701PR_C05_050M,S0701PR_C05_050MA"}, "S1702_C03_012E": {"label": "Estimate!!Total!!Married-couple families!!Families!!RACE AND HISPANIC OR LATINO ORIGIN!!Families with a householder who is--!!Two or more races", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C03_012EA,S1702_C03_012M,S1702_C03_012MA"}, "S1603_C03_015E": {"label": "Estimate!!Percent speak only English at home!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college or associate's degree", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "float", "group": "S1603", "limit": 0, "attributes": "S1603_C03_015EA,S1603_C03_015M,S1603_C03_015MA"}, "S0502_C01_029E": {"label": "Estimate!!Total!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_029EA,S0502_C01_029M,S0502_C01_029MA"}, "S1702_C03_011E": {"label": "Estimate!!Total!!Married-couple families!!Families!!RACE AND HISPANIC OR LATINO ORIGIN!!Families with a householder who is--!!Some other race alone", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C03_011EA,S1702_C03_011M,S1702_C03_011MA"}, "S1603_C03_016E": {"label": "Estimate!!Percent speak only English at home!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree or higher", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "float", "group": "S1603", "limit": 0, "attributes": "S1603_C03_016EA,S1603_C03_016M,S1603_C03_016MA"}, "S1603_C03_013E": {"label": "Estimate!!Percent speak only English at home!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than high school graduate", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "float", "group": "S1603", "limit": 0, "attributes": "S1603_C03_013EA,S1603_C03_013M,S1603_C03_013MA"}, "S0502_C01_028E": {"label": "Estimate!!Total!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_028EA,S0502_C01_028M,S0502_C01_028MA"}, "S1702_C03_014E": {"label": "Estimate!!Total!!Married-couple families!!Families!!RACE AND HISPANIC OR LATINO ORIGIN!!Families with a householder who is--!!White alone, not Hispanic or Latino", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C03_014EA,S1702_C03_014M,S1702_C03_014MA"}, "S1702_C03_013E": {"label": "Estimate!!Total!!Married-couple families!!Families!!RACE AND HISPANIC OR LATINO ORIGIN!!Families with a householder who is--!!Hispanic or Latino origin (of any race)", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C03_013EA,S1702_C03_013M,S1702_C03_013MA"}, "S0502_C01_027E": {"label": "Estimate!!Total!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_027EA,S0502_C01_027M,S0502_C01_027MA"}, "S2401_C02_036E": {"label": "Estimate!!Male!!Civilian employed population 16 years and over!!Production, transportation, and material moving occupations:!!Material moving occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C02_036EA,S2401_C02_036M,S2401_C02_036MA"}, "S1603_C03_014E": {"label": "Estimate!!Percent speak only English at home!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate (includes equivalency)", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "float", "group": "S1603", "limit": 0, "attributes": "S1603_C03_014EA,S1603_C03_014M,S1603_C03_014MA"}, "S1603_C03_011E": {"label": "Estimate!!Percent speak only English at home!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population 5 years and over for whom poverty status is determined!!At or above poverty level", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "float", "group": "S1603", "limit": 0, "attributes": "S1603_C03_011EA,S1603_C03_011M,S1603_C03_011MA"}, "S1702_C03_016E": {"label": "Estimate!!Total!!Married-couple families!!Families!!Householder worked!!Householder worked full-time, year-round in the past 12 months", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C03_016EA,S1702_C03_016M,S1702_C03_016MA"}, "S0502_C01_026E": {"label": "Estimate!!Total!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_026EA,S0502_C01_026M,S0502_C01_026MA"}, "S1603_C03_012E": {"label": "Estimate!!Percent speak only English at home!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "int", "group": "S1603", "limit": 0, "attributes": "S1603_C03_012EA,S1603_C03_012M,S1603_C03_012MA"}, "S1702_C03_015E": {"label": "Estimate!!Total!!Married-couple families!!Families!!Householder worked", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C03_015EA,S1702_C03_015M,S1702_C03_015MA"}, "S0502_C01_025E": {"label": "Estimate!!Total!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_025EA,S0502_C01_025M,S0502_C01_025MA"}, "S2303_C04_010E": {"label": "Estimate!!Percent Male!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 35 or more hours per week!!50 to 52 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C04_010EA,S2303_C04_010M,S2303_C04_010MA"}, "S0506_C02_046E": {"label": "Estimate!!Foreign-born; Born in Latin America!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C02_046EA,S0506_C02_046M,S0506_C02_046MA"}, "S0601_C03_030E": {"label": "Estimate!!Native; born in other state in the U.S.!!MARITAL STATUS!!Population 15 years and over!!Divorced or separated", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C03_030EA,S0601_C03_030M,S0601_C03_030MA"}, "S2601CPR_C01_023E": {"label": "Estimate!!Total population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_023EA,S2601CPR_C01_023M,S2601CPR_C01_023MA"}, "S0502_C01_024E": {"label": "Estimate!!Total!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_024EA,S0502_C01_024M,S0502_C01_024MA"}, "S1603_C03_010E": {"label": "Estimate!!Percent speak only English at home!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population 5 years and over for whom poverty status is determined!!Below poverty level", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "float", "group": "S1603", "limit": 0, "attributes": "S1603_C03_010EA,S1603_C03_010M,S1603_C03_010MA"}, "S2601CPR_C01_022E": {"label": "Estimate!!Total population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!White", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_022EA,S2601CPR_C01_022M,S2601CPR_C01_022MA"}, "S0506_C02_047E": {"label": "Estimate!!Foreign-born; Born in Latin America!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than high school graduate", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_047EA,S0506_C02_047M,S0506_C02_047MA"}, "S0502_C01_023E": {"label": "Estimate!!Total!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_023EA,S0502_C01_023M,S0502_C01_023MA"}, "S0601_C03_032E": {"label": "Estimate!!Native; born in other state in the U.S.!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "int", "group": "S0601", "limit": 0, "attributes": "S0601_C03_032EA,S0601_C03_032M,S0601_C03_032MA"}, "S2601CPR_C01_021E": {"label": "Estimate!!Total population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "int", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_021EA,S2601CPR_C01_021M,S2601CPR_C01_021MA"}, "S0506_C02_044E": {"label": "Estimate!!Foreign-born; Born in Latin America!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!High school (grades 9-12)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_044EA,S0506_C02_044M,S0506_C02_044MA"}, "S0502_C01_022E": {"label": "Estimate!!Total!!Foreign-born population!!SEX AND AGE!!Median age (years)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_022EA,S0502_C01_022M,S0502_C01_022MA"}, "S2601CPR_C01_020E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!Median age (years)", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_020EA,S2601CPR_C01_020M,S2601CPR_C01_020MA"}, "S0701PR_C05_056E": {"label": "Estimate!!Moved; from outside Puerto Rico and the U.S.!!PERCENT ALLOCATED!!Residence 1 year ago", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "int", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C05_056EA,S0701PR_C05_056M,S0701PR_C05_056MA"}, "S0506_C02_045E": {"label": "Estimate!!Foreign-born; Born in Latin America!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!College or graduate school", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_045EA,S0506_C02_045M,S0506_C02_045MA"}, "S0601_C03_031E": {"label": "Estimate!!Native; born in other state in the U.S.!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C03_031EA,S0601_C03_031M,S0601_C03_031MA"}, "S0502_C01_021E": {"label": "Estimate!!Total!!Foreign-born population!!SEX AND AGE!!85 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_021EA,S0502_C01_021M,S0502_C01_021MA"}, "S0701PR_C05_055E": {"label": "Estimate!!Moved; from outside Puerto Rico and the U.S.!!HOUSING TENURE!!Population 1 year and over in housing units!!Householder lived in renter-occupied housing units", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C05_055EA,S0701PR_C05_055M,S0701PR_C05_055MA"}, "S2601CPR_C01_028E": {"label": "Estimate!!Total population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!Two or more races", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "int", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_028EA,S2601CPR_C01_028M,S2601CPR_C01_028MA"}, "S0506_C02_042E": {"label": "Estimate!!Foreign-born; Born in Latin America!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Nursery school, preschool", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_042EA,S0506_C02_042M,S0506_C02_042MA"}, "S0502_C01_020E": {"label": "Estimate!!Total!!Foreign-born population!!SEX AND AGE!!75 to 84 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_020EA,S0502_C01_020M,S0502_C01_020MA"}, "S0701PR_C05_054E": {"label": "Estimate!!Moved; from outside Puerto Rico and the U.S.!!HOUSING TENURE!!Population 1 year and over in housing units!!Householder lived in owner-occupied housing units", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C05_054EA,S0701PR_C05_054M,S0701PR_C05_054MA"}, "S2601CPR_C01_027E": {"label": "Estimate!!Total population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Some other race", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_027EA,S2601CPR_C01_027M,S2601CPR_C01_027MA"}, "S0506_C02_043E": {"label": "Estimate!!Foreign-born; Born in Latin America!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Elementary school (grades K-8)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_043EA,S0506_C02_043M,S0506_C02_043MA"}, "S2601CPR_C01_026E": {"label": "Estimate!!Total population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_026EA,S2601CPR_C01_026M,S2601CPR_C01_026MA"}, "S0506_C02_040E": {"label": "Estimate!!Foreign-born; Born in Latin America!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_040EA,S0506_C02_040M,S0506_C02_040MA"}, "S0701PR_C05_053E": {"label": "Estimate!!Moved; from outside Puerto Rico and the U.S.!!HOUSING TENURE!!Population 1 year and over in housing units", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C05_053EA,S0701PR_C05_053M,S0701PR_C05_053MA"}, "S2601CPR_C01_024E": {"label": "Estimate!!Total population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_024EA,S2601CPR_C01_024M,S2601CPR_C01_024MA"}, "S0506_C02_041E": {"label": "Estimate!!Foreign-born; Born in Latin America!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C02_041EA,S0506_C02_041M,S0506_C02_041MA"}, "S2601CPR_C01_025E": {"label": "Estimate!!Total population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Asian", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_025EA,S2601CPR_C01_025M,S2601CPR_C01_025MA"}, "S0701PR_C05_052E": {"label": "Estimate!!Moved; from outside Puerto Rico and the U.S.!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population 1 year and over for whom poverty status is determined!!At or above 150 percent of the poverty level", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C05_052EA,S0701PR_C05_052M,S0701PR_C05_052MA"}, "S0504_C02_071E": {"label": "Estimate!!Foreign-born; Born in Africa!!Civilian employed population 16 years and over!!OCCUPATION!!Sales and office occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_071EA,S0504_C02_071M,S0504_C02_071MA"}, "S0601_C03_014E": {"label": "Estimate!!Native; born in other state in the U.S.!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C03_014EA,S0601_C03_014M,S0601_C03_014MA"}, "S2403_C02_019E": {"label": "Estimate!!Male!!Civilian employed population 16 years and over!!Professional, scientific, and management, and administrative and waste management services:!!Administrative and support and waste management services", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C02_019EA,S2403_C02_019M,S2403_C02_019MA"}, "S0802_C02_099E": {"label": "Estimate!!Car, truck, or van -- drove alone!!PERCENT ALLOCATED!!Time of departure to go to work", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "int", "group": "S0802", "limit": 0, "attributes": "S0802_C02_099EA,S0802_C02_099M,S0802_C02_099MA"}, "S2408_C05_001E": {"label": "Estimate!!Percent Female!!Civilian employed population 16 years and over", "concept": "Class of Worker by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2408", "limit": 0, "attributes": "S2408_C05_001EA,S2408_C05_001M,S2408_C05_001MA"}, "S0504_C02_070E": {"label": "Estimate!!Foreign-born; Born in Africa!!Civilian employed population 16 years and over!!OCCUPATION!!Service occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_070EA,S0504_C02_070M,S0504_C02_070MA"}, "S0601_C03_013E": {"label": "Estimate!!Native; born in other state in the U.S.!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C03_013EA,S0601_C03_013M,S0601_C03_013MA"}, "S2403_C02_018E": {"label": "Estimate!!Male!!Civilian employed population 16 years and over!!Professional, scientific, and management, and administrative and waste management services:!!Management of companies and enterprises", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C02_018EA,S2403_C02_018M,S2403_C02_018MA"}, "S2601CPR_C01_019E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!65 years and over!!Female", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_019EA,S2601CPR_C01_019M,S2601CPR_C01_019MA"}, "S0504_C02_073E": {"label": "Estimate!!Foreign-born; Born in Africa!!Civilian employed population 16 years and over!!OCCUPATION!!Production, transportation, and material moving occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_073EA,S0504_C02_073M,S0504_C02_073MA"}, "S0601_C03_016E": {"label": "Estimate!!Native; born in other state in the U.S.!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C03_016EA,S0601_C03_016M,S0601_C03_016MA"}, "S2601CPR_C01_018E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!65 years and over!!Male", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_018EA,S2601CPR_C01_018M,S2601CPR_C01_018MA"}, "S0504_C02_072E": {"label": "Estimate!!Foreign-born; Born in Africa!!Civilian employed population 16 years and over!!OCCUPATION!!Natural resources, construction, and maintenance occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_072EA,S0504_C02_072M,S0504_C02_072MA"}, "S2601CPR_C01_017E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!65 years and over", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "int", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_017EA,S2601CPR_C01_017M,S2601CPR_C01_017MA"}, "S0601_C03_015E": {"label": "Estimate!!Native; born in other state in the U.S.!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C03_015EA,S0601_C03_015M,S0601_C03_015MA"}, "S0504_C02_075E": {"label": "Estimate!!Foreign-born; Born in Africa!!Civilian employed population 16 years and over!!INDUSTRY!!Construction", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_075EA,S0504_C02_075M,S0504_C02_075MA"}, "S0802_C02_096E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over in households!!VEHICLES AVAILABLE!!2 vehicles available", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_096EA,S0802_C02_096M,S0802_C02_096MA"}, "S1703_C01_030E": {"label": "Estimate!!Total!!Population for whom poverty status is determined!!DISABILITY STATUS!!With any disability", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "int", "group": "S1703", "limit": 0, "attributes": "S1703_C01_030EA,S1703_C01_030M,S1703_C01_030MA"}, "S0601_C03_010E": {"label": "Estimate!!Native; born in other state in the U.S.!!Total population!!AGE!!Median age (years)", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C03_010EA,S0601_C03_010M,S0601_C03_010MA"}, "S0504_C02_074E": {"label": "Estimate!!Foreign-born; Born in Africa!!Civilian employed population 16 years and over!!INDUSTRY!!Agriculture, forestry, fishing and hunting, and mining", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_074EA,S0504_C02_074M,S0504_C02_074MA"}, "S0802_C02_095E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over in households!!VEHICLES AVAILABLE!!1 vehicle available", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_095EA,S0802_C02_095M,S0802_C02_095MA"}, "S1703_C01_031E": {"label": "Estimate!!Total!!Population for whom poverty status is determined!!DISABILITY STATUS!!No disability", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "int", "group": "S1703", "limit": 0, "attributes": "S1703_C01_031EA,S1703_C01_031M,S1703_C01_031MA"}, "S0802_C02_098E": {"label": "Estimate!!Car, truck, or van -- drove alone!!PERCENT ALLOCATED!!Means of transportation to work", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "int", "group": "S0802", "limit": 0, "attributes": "S0802_C02_098EA,S0802_C02_098M,S0802_C02_098MA"}, "S0504_C02_077E": {"label": "Estimate!!Foreign-born; Born in Africa!!Civilian employed population 16 years and over!!INDUSTRY!!Wholesale trade", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_077EA,S0504_C02_077M,S0504_C02_077MA"}, "S0601_C03_012E": {"label": "Estimate!!Native; born in other state in the U.S.!!Total population!!SEX!!Female", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C03_012EA,S0601_C03_012M,S0601_C03_012MA"}, "S1703_C01_032E": {"label": "Estimate!!Total!!WORK STATUS!!Population 16 to 64 years", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "int", "group": "S1703", "limit": 0, "attributes": "S1703_C01_032EA,S1703_C01_032M,S1703_C01_032MA"}, "S0506_C02_048E": {"label": "Estimate!!Foreign-born; Born in Latin America!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate (includes equivalency)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_048EA,S0506_C02_048M,S0506_C02_048MA"}, "S0802_C02_097E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over in households!!VEHICLES AVAILABLE!!3 or more vehicles available", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_097EA,S0802_C02_097M,S0802_C02_097MA"}, "S0504_C02_076E": {"label": "Estimate!!Foreign-born; Born in Africa!!Civilian employed population 16 years and over!!INDUSTRY!!Manufacturing", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_076EA,S0504_C02_076M,S0504_C02_076MA"}, "S0601_C03_011E": {"label": "Estimate!!Native; born in other state in the U.S.!!Total population!!SEX!!Male", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C03_011EA,S0601_C03_011M,S0601_C03_011MA"}, "S0506_C02_049E": {"label": "Estimate!!Foreign-born; Born in Latin America!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college or associate's degree", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_049EA,S0506_C02_049M,S0506_C02_049MA"}, "S1703_C01_033E": {"label": "Estimate!!Total!!WORK STATUS!!Population 16 to 64 years!!Worked full-time, year-round", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "int", "group": "S1703", "limit": 0, "attributes": "S1703_C01_033EA,S1703_C01_033M,S1703_C01_033MA"}, "S0504_C02_079E": {"label": "Estimate!!Foreign-born; Born in Africa!!Civilian employed population 16 years and over!!INDUSTRY!!Transportation and warehousing, and utilities", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_079EA,S0504_C02_079M,S0504_C02_079MA"}, "S1703_C01_034E": {"label": "Estimate!!Total!!WORK STATUS!!Population 16 to 64 years!!Worked less than full-time, year-round", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "int", "group": "S1703", "limit": 0, "attributes": "S1703_C01_034EA,S1703_C01_034M,S1703_C01_034MA"}, "S2403_C02_011E": {"label": "Estimate!!Male!!Civilian employed population 16 years and over!!Transportation and warehousing, and utilities:!!Utilities", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C02_011EA,S2403_C02_011M,S2403_C02_011MA"}, "S1702_C03_006E": {"label": "Estimate!!Total!!Married-couple families!!Families!!RACE AND HISPANIC OR LATINO ORIGIN!!Families with a householder who is--!!White alone", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C03_006EA,S1702_C03_006M,S1702_C03_006MA"}, "S2301_C04_020E": {"label": "Estimate!!Unemployment rate!!Population 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C04_020EA,S2301_C04_020M,S2301_C04_020MA"}, "S0504_C02_078E": {"label": "Estimate!!Foreign-born; Born in Africa!!Civilian employed population 16 years and over!!INDUSTRY!!Retail trade", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_078EA,S0504_C02_078M,S0504_C02_078MA"}, "S1703_C01_035E": {"label": "Estimate!!Total!!WORK STATUS!!Population 16 to 64 years!!Did not work", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "int", "group": "S1703", "limit": 0, "attributes": "S1703_C01_035EA,S1703_C01_035M,S1703_C01_035MA"}, "S2403_C02_010E": {"label": "Estimate!!Male!!Civilian employed population 16 years and over!!Transportation and warehousing, and utilities:!!Transportation and warehousing", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C02_010EA,S2403_C02_010M,S2403_C02_010MA"}, "S2601A_C03_009E": {"label": "Estimate!!Institutionalized group quarters population!!Total population!!SEX AND AGE!!45 to 54 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_009EA,S2601A_C03_009M,S2601A_C03_009MA"}, "S1702_C03_005E": {"label": "Estimate!!Total!!Married-couple families!!Families!!With related children of householder under 18 years!!With related children of householder 5 to 17 years", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C03_005EA,S1702_C03_005M,S1702_C03_005MA"}, "S2403_C02_013E": {"label": "Estimate!!Male!!Civilian employed population 16 years and over!!Finance and insurance, and real estate and rental and leasing:", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C02_013EA,S2403_C02_013M,S2403_C02_013MA"}, "S1702_C03_008E": {"label": "Estimate!!Total!!Married-couple families!!Families!!RACE AND HISPANIC OR LATINO ORIGIN!!Families with a householder who is--!!American Indian and Alaska Native alone", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C03_008EA,S1702_C03_008M,S1702_C03_008MA"}, "S2403_C02_012E": {"label": "Estimate!!Male!!Civilian employed population 16 years and over!!Information", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C02_012EA,S2403_C02_012M,S2403_C02_012MA"}, "S1702_C03_007E": {"label": "Estimate!!Total!!Married-couple families!!Families!!RACE AND HISPANIC OR LATINO ORIGIN!!Families with a householder who is--!!Black or African American alone", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C03_007EA,S1702_C03_007M,S1702_C03_007MA"}, "S2403_C02_015E": {"label": "Estimate!!Male!!Civilian employed population 16 years and over!!Finance and insurance, and real estate and rental and leasing:!!Real estate and rental and leasing", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C02_015EA,S2403_C02_015M,S2403_C02_015MA"}, "S2601A_C03_006E": {"label": "Estimate!!Institutionalized group quarters population!!Total population!!SEX AND AGE!!18 to 24 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_006EA,S2601A_C03_006M,S2601A_C03_006MA"}, "S2301_C04_024E": {"label": "Estimate!!Unemployment rate!!Population 20 to 64 years!!SEX!!Female!!With own children under 18 years", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C04_024EA,S2301_C04_024M,S2301_C04_024MA"}, "S0601_C03_018E": {"label": "Estimate!!Native; born in other state in the U.S.!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C03_018EA,S0601_C03_018M,S0601_C03_018MA"}, "S2403_C02_014E": {"label": "Estimate!!Male!!Civilian employed population 16 years and over!!Finance and insurance, and real estate and rental and leasing:!!Finance and insurance", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C02_014EA,S2403_C02_014M,S2403_C02_014MA"}, "S2601A_C03_004E": {"label": "Estimate!!Institutionalized group quarters population!!Total population!!SEX AND AGE!!Under 15 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_004EA,S2601A_C03_004M,S2601A_C03_004MA"}, "S1702_C03_009E": {"label": "Estimate!!Total!!Married-couple families!!Families!!RACE AND HISPANIC OR LATINO ORIGIN!!Families with a householder who is--!!Asian alone", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C03_009EA,S1702_C03_009M,S1702_C03_009MA"}, "S2601A_C03_005E": {"label": "Estimate!!Institutionalized group quarters population!!Total population!!SEX AND AGE!!15 to 17 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_005EA,S2601A_C03_005M,S2601A_C03_005MA"}, "S2301_C04_023E": {"label": "Estimate!!Unemployment rate!!Population 20 to 64 years!!SEX!!Female", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C04_023EA,S2301_C04_023M,S2301_C04_023MA"}, "S0601_C03_017E": {"label": "Estimate!!Native; born in other state in the U.S.!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C03_017EA,S0601_C03_017M,S0601_C03_017MA"}, "S2403_C02_017E": {"label": "Estimate!!Male!!Civilian employed population 16 years and over!!Professional, scientific, and management, and administrative and waste management services:!!Professional, scientific, and technical services", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C02_017EA,S2403_C02_017M,S2403_C02_017MA"}, "S2601A_C03_008E": {"label": "Estimate!!Institutionalized group quarters population!!Total population!!SEX AND AGE!!35 to 44 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_008EA,S2601A_C03_008M,S2601A_C03_008MA"}, "S2301_C04_022E": {"label": "Estimate!!Unemployment rate!!Population 20 to 64 years!!SEX!!Male", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C04_022EA,S2301_C04_022M,S2301_C04_022MA"}, "S0502_C01_009E": {"label": "Estimate!!Total!!Foreign-born population!!WORLD REGION OF BIRTH OF FOREIGN-BORN!!Latin America", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_009EA,S0502_C01_009M,S0502_C01_009MA"}, "S2403_C02_016E": {"label": "Estimate!!Male!!Civilian employed population 16 years and over!!Professional, scientific, and management, and administrative and waste management services:", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C02_016EA,S2403_C02_016M,S2403_C02_016MA"}, "S2201_C06_001E": {"label": "Estimate!!Percent households not receiving food stamps/SNAP!!Households", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C06_001EA,S2201_C06_001M,S2201_C06_001MA"}, "S0601_C03_019E": {"label": "Estimate!!Native; born in other state in the U.S.!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C03_019EA,S0601_C03_019M,S0601_C03_019MA"}, "S2601A_C03_007E": {"label": "Estimate!!Institutionalized group quarters population!!Total population!!SEX AND AGE!!25 to 34 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_007EA,S2601A_C03_007M,S2601A_C03_007MA"}, "S2301_C04_021E": {"label": "Estimate!!Unemployment rate!!Population 20 to 64 years", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C04_021EA,S2301_C04_021M,S2301_C04_021MA"}, "S2601A_C03_001E": {"label": "Estimate!!Institutionalized group quarters population!!Total population", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_001EA,S2601A_C03_001M,S2601A_C03_001MA"}, "S2201_C06_002E": {"label": "Estimate!!Percent households not receiving food stamps/SNAP!!Households!!With one or more people in the household 60 years and over", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C06_002EA,S2201_C06_002M,S2201_C06_002MA"}, "S2301_C04_028E": {"label": "Estimate!!Unemployment rate!!Population 20 to 64 years!!POVERTY STATUS IN THE PAST 12 MONTHS!!Below poverty level", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C04_028EA,S2301_C04_028M,S2301_C04_028MA"}, "S2409_C01_006E": {"label": "Estimate!!Total!!Full-time, year-round civilian employed population 16 years and over!!Local government workers", "concept": "Class of Worker by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2409", "limit": 0, "attributes": "S2409_C01_006EA,S2409_C01_006M,S2409_C01_006MA"}, "S0506_C02_050E": {"label": "Estimate!!Foreign-born; Born in Latin America!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_050EA,S0506_C02_050M,S0506_C02_050MA"}, "S0502_C01_019E": {"label": "Estimate!!Total!!Foreign-born population!!SEX AND AGE!!65 to 74 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_019EA,S0502_C01_019M,S0502_C01_019MA"}, "S2201_C06_003E": {"label": "Estimate!!Percent households not receiving food stamps/SNAP!!Households!!No people in the household 60 years and over", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C06_003EA,S2201_C06_003M,S2201_C06_003MA"}, "S2301_C04_027E": {"label": "Estimate!!Unemployment rate!!Population 20 to 64 years!!SEX!!Female!!With own children under 18 years!!With own children 6 to 17 years only", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C04_027EA,S2301_C04_027M,S2301_C04_027MA"}, "S2409_C01_005E": {"label": "Estimate!!Total!!Full-time, year-round civilian employed population 16 years and over!!Private not-for-profit wage and salary workers", "concept": "Class of Worker by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2409", "limit": 0, "attributes": "S2409_C01_005EA,S2409_C01_005M,S2409_C01_005MA"}, "S0506_C02_051E": {"label": "Estimate!!Foreign-born; Born in Latin America!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Graduate or professional degree", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_051EA,S0506_C02_051M,S0506_C02_051MA"}, "S0502_C01_018E": {"label": "Estimate!!Total!!Foreign-born population!!SEX AND AGE!!55 to 64 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_018EA,S0502_C01_018M,S0502_C01_018MA"}, "S2201_C06_004E": {"label": "Estimate!!Percent households not receiving food stamps/SNAP!!Households!!Married-couple family", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C06_004EA,S2201_C06_004M,S2201_C06_004MA"}, "S2601A_C03_003E": {"label": "Estimate!!Institutionalized group quarters population!!Total population!!SEX AND AGE!!Female", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_003EA,S2601A_C03_003M,S2601A_C03_003MA"}, "S2301_C04_026E": {"label": "Estimate!!Unemployment rate!!Population 20 to 64 years!!SEX!!Female!!With own children under 18 years!!With own children under 6 years and 6 to 17 years", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C04_026EA,S2301_C04_026M,S2301_C04_026MA"}, "S2409_C01_008E": {"label": "Estimate!!Total!!Full-time, year-round civilian employed population 16 years and over!!Federal government workers", "concept": "Class of Worker by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2409", "limit": 0, "attributes": "S2409_C01_008EA,S2409_C01_008M,S2409_C01_008MA"}, "S0502_C01_017E": {"label": "Estimate!!Total!!Foreign-born population!!SEX AND AGE!!45 to 54 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_017EA,S0502_C01_017M,S0502_C01_017MA"}, "S2601A_C03_002E": {"label": "Estimate!!Institutionalized group quarters population!!Total population!!SEX AND AGE!!Male", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_002EA,S2601A_C03_002M,S2601A_C03_002MA"}, "S2201_C06_005E": {"label": "Estimate!!Percent households not receiving food stamps/SNAP!!Households!!Other family:", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C06_005EA,S2201_C06_005M,S2201_C06_005MA"}, "S2301_C04_025E": {"label": "Estimate!!Unemployment rate!!Population 20 to 64 years!!SEX!!Female!!With own children under 18 years!!With own children under 6 years only", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C04_025EA,S2301_C04_025M,S2301_C04_025MA"}, "S2409_C01_007E": {"label": "Estimate!!Total!!Full-time, year-round civilian employed population 16 years and over!!State government workers", "concept": "Class of Worker by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2409", "limit": 0, "attributes": "S2409_C01_007EA,S2409_C01_007M,S2409_C01_007MA"}, "S1702_C03_002E": {"label": "Estimate!!Total!!Married-couple families!!Families!!With related children of householder under 18 years", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C03_002EA,S1702_C03_002M,S1702_C03_002MA"}, "S2201_C06_006E": {"label": "Estimate!!Percent households not receiving food stamps/SNAP!!Households!!Other family:!!Male householder, no spouse present", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C06_006EA,S2201_C06_006M,S2201_C06_006MA"}, "S0502_C01_016E": {"label": "Estimate!!Total!!Foreign-born population!!SEX AND AGE!!25 to 44 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_016EA,S0502_C01_016M,S0502_C01_016MA"}, "S1702_C03_001E": {"label": "Estimate!!Total!!Married-couple families!!Families", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C03_001EA,S1702_C03_001M,S1702_C03_001MA"}, "S2409_C01_009E": {"label": "Estimate!!Total!!Full-time, year-round civilian employed population 16 years and over!!Self-employed in own not incorporated business workers and unpaid family workers", "concept": "Class of Worker by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2409", "limit": 0, "attributes": "S2409_C01_009EA,S2409_C01_009M,S2409_C01_009MA"}, "S2201_C06_007E": {"label": "Estimate!!Percent households not receiving food stamps/SNAP!!Households!!Other family:!!Female householder, no spouse present", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C06_007EA,S2201_C06_007M,S2201_C06_007MA"}, "S0502_C01_015E": {"label": "Estimate!!Total!!Foreign-born population!!SEX AND AGE!!18 to 24 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_015EA,S0502_C01_015M,S0502_C01_015MA"}, "S1251_C04_014E": {"label": "Estimate!!Male!!Divorced in the last 12 months!!HOUSING TENURE!!Population 15 years and over in occupied housing units!!Renter-occupied housing units", "concept": "Characteristics of People With a Marital Event in the Last 12 Months", "predicateType": "float", "group": "S1251", "limit": 0, "attributes": "S1251_C04_014EA,S1251_C04_014M,S1251_C04_014MA"}, "S2403_C02_021E": {"label": "Estimate!!Male!!Civilian employed population 16 years and over!!Educational services, and health care and social assistance:!!Educational services", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C02_021EA,S2403_C02_021M,S2403_C02_021MA"}, "S1702_C03_004E": {"label": "Estimate!!Total!!Married-couple families!!Families!!With related children of householder under 18 years!!With related children of householder under 5 years and 5 to 17 years", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C03_004EA,S1702_C03_004M,S1702_C03_004MA"}, "S2201_C06_008E": {"label": "Estimate!!Percent households not receiving food stamps/SNAP!!Households!!Nonfamily households", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C06_008EA,S2201_C06_008M,S2201_C06_008MA"}, "S0502_C01_014E": {"label": "Estimate!!Total!!Foreign-born population!!SEX AND AGE!!5 to 17 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_014EA,S0502_C01_014M,S0502_C01_014MA"}, "S2403_C02_020E": {"label": "Estimate!!Male!!Civilian employed population 16 years and over!!Educational services, and health care and social assistance:", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C02_020EA,S2403_C02_020M,S2403_C02_020MA"}, "S2301_C04_029E": {"label": "Estimate!!Unemployment rate!!Population 20 to 64 years!!POVERTY STATUS IN THE PAST 12 MONTHS!!At or above the poverty level", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C04_029EA,S2301_C04_029M,S2301_C04_029MA"}, "S2201_C06_009E": {"label": "Estimate!!Percent households not receiving food stamps/SNAP!!Households!!With children under 18 years", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C06_009EA,S2201_C06_009M,S2201_C06_009MA"}, "S1702_C03_003E": {"label": "Estimate!!Total!!Married-couple families!!Families!!With related children of householder under 18 years!!With related children of householder under 5 years", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C03_003EA,S1702_C03_003M,S1702_C03_003MA"}, "S0502_C01_013E": {"label": "Estimate!!Total!!Foreign-born population!!SEX AND AGE!!Under 5 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_013EA,S0502_C01_013M,S0502_C01_013MA"}, "S0802_C02_092E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over in households!!HOUSING TENURE!!Owner-occupied housing units", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_092EA,S0802_C02_092M,S0802_C02_092MA"}, "S2601CPR_C01_011E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!65 to 74 years", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_011EA,S2601CPR_C01_011M,S2601CPR_C01_011MA"}, "S0506_C02_058E": {"label": "Estimate!!Foreign-born; Born in Latin America!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_058EA,S0506_C02_058M,S0506_C02_058MA"}, "S0502_C01_012E": {"label": "Estimate!!Total!!Foreign-born population!!SEX AND AGE!!Female", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_012EA,S0502_C01_012M,S0502_C01_012MA"}, "S0802_C02_091E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over in households", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "int", "group": "S0802", "limit": 0, "attributes": "S0802_C02_091EA,S0802_C02_091M,S0802_C02_091MA"}, "S0506_C02_059E": {"label": "Estimate!!Foreign-born; Born in Latin America!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Employed", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_059EA,S0506_C02_059M,S0506_C02_059MA"}, "S2601CPR_C01_010E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!55 to 64 years", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_010EA,S2601CPR_C01_010M,S2601CPR_C01_010MA"}, "S0502_C01_011E": {"label": "Estimate!!Total!!Foreign-born population!!SEX AND AGE!!Male", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_011EA,S0502_C01_011M,S0502_C01_011MA"}, "S0802_C02_094E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over in households!!VEHICLES AVAILABLE!!No vehicle available", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_094EA,S0802_C02_094M,S0802_C02_094MA"}, "S0506_C02_056E": {"label": "Estimate!!Foreign-born; Born in Latin America!!EMPLOYMENT STATUS!!Population 16 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C02_056EA,S0506_C02_056M,S0506_C02_056MA"}, "S0601_C03_020E": {"label": "Estimate!!Native; born in other state in the U.S.!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C03_020EA,S0601_C03_020M,S0601_C03_020MA"}, "S0502_C01_010E": {"label": "Estimate!!Total!!Foreign-born population!!WORLD REGION OF BIRTH OF FOREIGN-BORN!!Northern America", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_010EA,S0502_C01_010M,S0502_C01_010MA"}, "S0802_C02_093E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over in households!!HOUSING TENURE!!Renter-occupied housing units", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_093EA,S0802_C02_093M,S0802_C02_093MA"}, "S0506_C02_057E": {"label": "Estimate!!Foreign-born; Born in Latin America!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_057EA,S0506_C02_057M,S0506_C02_057MA"}, "S2601CPR_C01_016E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!Under 18 years!!Female", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_016EA,S2601CPR_C01_016M,S2601CPR_C01_016MA"}, "S2409_C01_002E": {"label": "Estimate!!Total!!Full-time, year-round civilian employed population 16 years and over!!Private for-profit wage and salary workers:", "concept": "Class of Worker by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2409", "limit": 0, "attributes": "S2409_C01_002EA,S2409_C01_002M,S2409_C01_002MA"}, "S0506_C02_054E": {"label": "Estimate!!Foreign-born; Born in Latin America!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_054EA,S0506_C02_054M,S0506_C02_054MA"}, "S2409_C01_001E": {"label": "Estimate!!Total!!Full-time, year-round civilian employed population 16 years and over", "concept": "Class of Worker by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2409", "limit": 0, "attributes": "S2409_C01_001EA,S2409_C01_001M,S2409_C01_001MA"}, "S2601CPR_C01_015E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!Under 18 years!!Male", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_015EA,S2601CPR_C01_015M,S2601CPR_C01_015MA"}, "S0506_C02_055E": {"label": "Estimate!!Foreign-born; Born in Latin America!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English!!Speak English less than \"very well\"", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_055EA,S0506_C02_055M,S0506_C02_055MA"}, "S0802_C02_090E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!Mean travel time to work (minutes)", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_090EA,S0802_C02_090M,S0802_C02_090MA"}, "S0504_C02_081E": {"label": "Estimate!!Foreign-born; Born in Africa!!Civilian employed population 16 years and over!!INDUSTRY!!Finance and insurance, and real estate and rental and leasing", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_081EA,S0504_C02_081M,S0504_C02_081MA"}, "S2601CPR_C01_013E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!85 years and over", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_013EA,S2601CPR_C01_013M,S2601CPR_C01_013MA"}, "S0506_C02_052E": {"label": "Estimate!!Foreign-born; Born in Latin America!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C02_052EA,S0506_C02_052M,S0506_C02_052MA"}, "S2601CPR_C01_014E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!Under 18 years", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "int", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_014EA,S2601CPR_C01_014M,S2601CPR_C01_014MA"}, "S2409_C01_004E": {"label": "Estimate!!Total!!Full-time, year-round civilian employed population 16 years and over!!Private for-profit wage and salary workers:!!Self-employed in own incorporated business workers", "concept": "Class of Worker by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2409", "limit": 0, "attributes": "S2409_C01_004EA,S2409_C01_004M,S2409_C01_004MA"}, "S0504_C02_080E": {"label": "Estimate!!Foreign-born; Born in Africa!!Civilian employed population 16 years and over!!INDUSTRY!!Information", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_080EA,S0504_C02_080M,S0504_C02_080MA"}, "S2601CPR_C01_012E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!75 to 84 years", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_012EA,S2601CPR_C01_012M,S2601CPR_C01_012MA"}, "S2409_C01_003E": {"label": "Estimate!!Total!!Full-time, year-round civilian employed population 16 years and over!!Private for-profit wage and salary workers:!!Employee of private company workers", "concept": "Class of Worker by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2409", "limit": 0, "attributes": "S2409_C01_003EA,S2409_C01_003M,S2409_C01_003MA"}, "S0506_C02_053E": {"label": "Estimate!!Foreign-born; Born in Latin America!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!English only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_053EA,S0506_C02_053M,S0506_C02_053MA"}, "S0802_C02_088E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!45 to 59 minutes", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_088EA,S0802_C02_088M,S0802_C02_088MA"}, "S0501_C02_104E": {"label": "Estimate!!Native!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!Below 100 percent of the poverty level", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_104EA,S0501_C02_104M,S0501_C02_104MA"}, "S2501_C05_001E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C05_001EA,S2501_C05_001M,S2501_C05_001MA"}, "S0601_C03_002E": {"label": "Estimate!!Native; born in other state in the U.S.!!Total population!!AGE!!Under 5 years", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C03_002EA,S0601_C03_002M,S0601_C03_002MA"}, "S0506_C02_018E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Foreign-born population!!SEX AND AGE!!65 to 74 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_018EA,S0506_C02_018M,S0506_C02_018MA"}, "S2411_C02_018E": {"label": "Estimate!!Median earnings (dollars) for male!!Civilian employed population 16 years and over with earnings!!Service occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C02_018EA,S2411_C02_018M,S2411_C02_018MA"}, "S0802_C02_087E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!35 to 44 minutes", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_087EA,S0802_C02_087M,S0802_C02_087MA"}, "S1501_C06_009E": {"label": "Estimate!!Percent Female!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate (includes equivalency)", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C06_009EA,S1501_C06_009M,S1501_C06_009MA"}, "S0601_C03_001E": {"label": "Estimate!!Native; born in other state in the U.S.!!Total population", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "int", "group": "S0601", "limit": 0, "attributes": "S0601_C03_001EA,S0601_C03_001M,S0601_C03_001MA"}, "S0506_C02_019E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Foreign-born population!!SEX AND AGE!!75 to 84 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_019EA,S0506_C02_019M,S0506_C02_019MA"}, "S0501_C02_105E": {"label": "Estimate!!Native!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!100 to 199 percent of the poverty level", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_105EA,S0501_C02_105M,S0501_C02_105MA"}, "S2411_C02_019E": {"label": "Estimate!!Median earnings (dollars) for male!!Civilian employed population 16 years and over with earnings!!Service occupations:!!Healthcare support occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C02_019EA,S2411_C02_019M,S2411_C02_019MA"}, "S0501_C02_102E": {"label": "Estimate!!Native!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!Average number of workers per household", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_102EA,S0501_C02_102M,S0501_C02_102MA"}, "S0506_C02_016E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Foreign-born population!!SEX AND AGE!!45 to 54 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_016EA,S0506_C02_016M,S0506_C02_016MA"}, "S0601_C03_004E": {"label": "Estimate!!Native; born in other state in the U.S.!!Total population!!AGE!!18 to 24 years", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C03_004EA,S0601_C03_004M,S0601_C03_004MA"}, "S0802_C02_089E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!60 or more minutes", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_089EA,S0802_C02_089M,S0802_C02_089MA"}, "S0501_C02_103E": {"label": "Estimate!!Native!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C02_103EA,S0501_C02_103M,S0501_C02_103MA"}, "S0506_C02_017E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Foreign-born population!!SEX AND AGE!!55 to 64 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_017EA,S0506_C02_017M,S0506_C02_017MA"}, "S0601_C03_003E": {"label": "Estimate!!Native; born in other state in the U.S.!!Total population!!AGE!!5 to 17 years", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C03_003EA,S0601_C03_003M,S0601_C03_003MA"}, "S1501_C06_006E": {"label": "Estimate!!Percent Female!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C06_006EA,S1501_C06_006M,S1501_C06_006MA"}, "S0802_C02_084E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!20 to 24 minutes", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_084EA,S0802_C02_084M,S0802_C02_084MA"}, "S0701PR_C05_039E": {"label": "Estimate!!Moved; from outside Puerto Rico and the U.S.!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C05_039EA,S0701PR_C05_039M,S0701PR_C05_039MA"}, "S0506_C02_014E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Foreign-born population!!SEX AND AGE!!18 to 24 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_014EA,S0506_C02_014M,S0506_C02_014MA"}, "S2501_C05_005E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!HOUSEHOLD SIZE!!4-or-more-person household", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C05_005EA,S2501_C05_005M,S2501_C05_005MA"}, "S0501_C02_108E": {"label": "Estimate!!Native!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_108EA,S0501_C02_108M,S0501_C02_108MA"}, "S2411_C02_014E": {"label": "Estimate!!Median earnings (dollars) for male!!Civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:!!Arts, design, entertainment, sports, and media occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C02_014EA,S2411_C02_014M,S2411_C02_014MA"}, "S0802_C02_083E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!15 to 19 minutes", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_083EA,S0802_C02_083M,S0802_C02_083MA"}, "S1501_C06_005E": {"label": "Estimate!!Percent Female!!AGE BY EDUCATIONAL ATTAINMENT!!Population 18 to 24 years!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C06_005EA,S1501_C06_005M,S1501_C06_005MA"}, "S2501_C05_004E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!HOUSEHOLD SIZE!!3-person household", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C05_004EA,S2501_C05_004M,S2501_C05_004MA"}, "S0502_C03_090E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$10,000 to $14,999", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_090EA,S0502_C03_090M,S0502_C03_090MA"}, "S0506_C02_015E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Foreign-born population!!SEX AND AGE!!25 to 44 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_015EA,S0506_C02_015M,S0506_C02_015MA"}, "S0701PR_C05_038E": {"label": "Estimate!!Moved; from outside Puerto Rico and the U.S.!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Graduate or professional degree", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C05_038EA,S0701PR_C05_038M,S0701PR_C05_038MA"}, "S2411_C02_015E": {"label": "Estimate!!Median earnings (dollars) for male!!Civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Healthcare practitioners and technical occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C02_015EA,S2411_C02_015M,S2411_C02_015MA"}, "S0501_C02_109E": {"label": "Estimate!!Native!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_109EA,S0501_C02_109M,S0501_C02_109MA"}, "S1501_C06_008E": {"label": "Estimate!!Percent Female!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 years and over!!9th to 12th grade, no diploma", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C06_008EA,S1501_C06_008M,S1501_C06_008MA"}, "S0802_C02_086E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!30 to 34 minutes", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_086EA,S0802_C02_086M,S0802_C02_086MA"}, "S2501_C05_003E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!HOUSEHOLD SIZE!!2-person household", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C05_003EA,S2501_C05_003M,S2501_C05_003MA"}, "S0701PR_C05_037E": {"label": "Estimate!!Moved; from outside Puerto Rico and the U.S.!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C05_037EA,S0701PR_C05_037M,S0701PR_C05_037MA"}, "S0506_C02_012E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Foreign-born population!!SEX AND AGE!!Under 5 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_012EA,S0506_C02_012M,S0506_C02_012MA"}, "S2411_C02_016E": {"label": "Estimate!!Median earnings (dollars) for male!!Civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Healthcare practitioners and technical occupations:!!Health diagnosing and treating practitioners and other technical occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C02_016EA,S2411_C02_016M,S2411_C02_016MA"}, "S0501_C02_106E": {"label": "Estimate!!Native!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!At or above 200 percent of the poverty level", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_106EA,S0501_C02_106M,S0501_C02_106MA"}, "S1501_C06_007E": {"label": "Estimate!!Percent Female!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than 9th grade", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C06_007EA,S1501_C06_007M,S1501_C06_007MA"}, "S0802_C02_085E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!25 to 29 minutes", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_085EA,S0802_C02_085M,S0802_C02_085MA"}, "S2501_C05_002E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!HOUSEHOLD SIZE!!1-person household", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C05_002EA,S2501_C05_002M,S2501_C05_002MA"}, "S0506_C02_013E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Foreign-born population!!SEX AND AGE!!5 to 17 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_013EA,S0506_C02_013M,S0506_C02_013MA"}, "S0701PR_C05_036E": {"label": "Estimate!!Moved; from outside Puerto Rico and the U.S.!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college or associate's degree", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C05_036EA,S0701PR_C05_036M,S0701PR_C05_036MA"}, "S0501_C02_107E": {"label": "Estimate!!Native!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_107EA,S0501_C02_107M,S0501_C02_107MA"}, "S2411_C02_017E": {"label": "Estimate!!Median earnings (dollars) for male!!Civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Healthcare practitioners and technical occupations:!!Health technologists and technicians", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C02_017EA,S2411_C02_017M,S2411_C02_017MA"}, "S2506_C02_058E": {"label": "Estimate!!Percent owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$75,000 or more!!Less than 20 percent", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "float", "group": "S2506", "limit": 0, "attributes": "S2506_C02_058EA,S2506_C02_058M,S2506_C02_058MA"}, "S2411_C02_010E": {"label": "Estimate!!Median earnings (dollars) for male!!Civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C02_010EA,S2411_C02_010M,S2411_C02_010MA"}, "S0503_C04_039E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!MARITAL STATUS!!Population 15 years and over!!Divorced or separated", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_039EA,S0503_C04_039M,S0503_C04_039MA"}, "S2506_C02_059E": {"label": "Estimate!!Percent owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$75,000 or more!!20 to 29 percent", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "float", "group": "S2506", "limit": 0, "attributes": "S2506_C02_059EA,S2506_C02_059M,S2506_C02_059MA"}, "S0601_C03_009E": {"label": "Estimate!!Native; born in other state in the U.S.!!Total population!!AGE!!75 years and over", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C03_009EA,S0601_C03_009M,S0601_C03_009MA"}, "S2411_C02_011E": {"label": "Estimate!!Median earnings (dollars) for male!!Civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:!!Community and social service occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C02_011EA,S2411_C02_011M,S2411_C02_011MA"}, "S2411_C02_012E": {"label": "Estimate!!Median earnings (dollars) for male!!Civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:!!Legal occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C02_012EA,S2411_C02_012M,S2411_C02_012MA"}, "S2506_C02_056E": {"label": "Estimate!!Percent owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$50,000 to $74,999!!30 percent or more", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "float", "group": "S2506", "limit": 0, "attributes": "S2506_C02_056EA,S2506_C02_056M,S2506_C02_056MA"}, "S0503_C04_037E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_037EA,S0503_C04_037M,S0503_C04_037MA"}, "S2506_C02_057E": {"label": "Estimate!!Percent owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$75,000 or more", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "float", "group": "S2506", "limit": 0, "attributes": "S2506_C02_057EA,S2506_C02_057M,S2506_C02_057MA"}, "S2411_C02_013E": {"label": "Estimate!!Median earnings (dollars) for male!!Civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:!!Educational instruction, and library occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C02_013EA,S2411_C02_013M,S2411_C02_013MA"}, "S0503_C04_038E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_038EA,S0503_C04_038M,S0503_C04_038MA"}, "S0501_C02_100E": {"label": "Estimate!!Native!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Food Stamp/SNAP benefits", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_100EA,S0501_C02_100M,S0501_C02_100MA"}, "S2201_C06_010E": {"label": "Estimate!!Percent households not receiving food stamps/SNAP!!Households!!With children under 18 years!!Married-couple family", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C06_010EA,S2201_C06_010M,S2201_C06_010MA"}, "S2601A_C03_018E": {"label": "Estimate!!Institutionalized group quarters population!!Total population!!SEX AND AGE!!65 years and over!!Male", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_018EA,S2601A_C03_018M,S2601A_C03_018MA"}, "S0601_C03_006E": {"label": "Estimate!!Native; born in other state in the U.S.!!Total population!!AGE!!45 to 54 years", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C03_006EA,S0601_C03_006M,S0601_C03_006MA"}, "S2506_C02_054E": {"label": "Estimate!!Percent owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$50,000 to $74,999!!Less than 20 percent", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "float", "group": "S2506", "limit": 0, "attributes": "S2506_C02_054EA,S2506_C02_054M,S2506_C02_054MA"}, "S0501_C02_101E": {"label": "Estimate!!Native!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!Median Household income (dollars)", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C02_101EA,S0501_C02_101M,S0501_C02_101MA"}, "S2201_C06_011E": {"label": "Estimate!!Percent households not receiving food stamps/SNAP!!Households!!With children under 18 years!!Other family:", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C06_011EA,S2201_C06_011M,S2201_C06_011MA"}, "S2601A_C03_017E": {"label": "Estimate!!Institutionalized group quarters population!!Total population!!SEX AND AGE!!65 years and over", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_017EA,S2601A_C03_017M,S2601A_C03_017MA"}, "S0601_C03_005E": {"label": "Estimate!!Native; born in other state in the U.S.!!Total population!!AGE!!25 to 44 years", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C03_005EA,S0601_C03_005M,S0601_C03_005MA"}, "S2506_C02_055E": {"label": "Estimate!!Percent owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$50,000 to $74,999!!20 to 29 percent", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "float", "group": "S2506", "limit": 0, "attributes": "S2506_C02_055EA,S2506_C02_055M,S2506_C02_055MA"}, "S2201_C06_012E": {"label": "Estimate!!Percent households not receiving food stamps/SNAP!!Households!!With children under 18 years!!Other family:!!Male householder, no spouse present", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C06_012EA,S2201_C06_012M,S2201_C06_012MA"}, "S0601_C03_008E": {"label": "Estimate!!Native; born in other state in the U.S.!!Total population!!AGE!!65 to 74 years", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C03_008EA,S0601_C03_008M,S0601_C03_008MA"}, "S2506_C02_052E": {"label": "Estimate!!Percent owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$35,000 to $49,999!!30 percent or more", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "float", "group": "S2506", "limit": 0, "attributes": "S2506_C02_052EA,S2506_C02_052M,S2506_C02_052MA"}, "S2201_C06_013E": {"label": "Estimate!!Percent households not receiving food stamps/SNAP!!Households!!With children under 18 years!!Other family:!!Female householder, no spouse present", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C06_013EA,S2201_C06_013M,S2201_C06_013MA"}, "S0601_C03_007E": {"label": "Estimate!!Native; born in other state in the U.S.!!Total population!!AGE!!55 to 64 years", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C03_007EA,S0601_C03_007M,S0601_C03_007MA"}, "S2601A_C03_019E": {"label": "Estimate!!Institutionalized group quarters population!!Total population!!SEX AND AGE!!65 years and over!!Female", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_019EA,S2601A_C03_019M,S2601A_C03_019MA"}, "S2506_C02_053E": {"label": "Estimate!!Percent owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$50,000 to $74,999", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "float", "group": "S2506", "limit": 0, "attributes": "S2506_C02_053EA,S2506_C02_053M,S2506_C02_053MA"}, "S0503_C04_031E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_031EA,S0503_C04_031M,S0503_C04_031MA"}, "S2601A_C03_013E": {"label": "Estimate!!Institutionalized group quarters population!!Total population!!SEX AND AGE!!85 years and over", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_013EA,S2601A_C03_013M,S2601A_C03_013MA"}, "S2201_C06_014E": {"label": "Estimate!!Percent households not receiving food stamps/SNAP!!Households!!With children under 18 years!!Nonfamily households", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C06_014EA,S2201_C06_014M,S2201_C06_014MA"}, "S2002_C02_071E": {"label": "Estimate!!Male!!Median earnings (dollars)!!PERCENT ALLOCATED!!Educational attainment", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C02_071EA,S2002_C02_071M,S2002_C02_071MA"}, "S0101_C01_004E": {"label": "Estimate!!Total!!Total population!!AGE!!10 to 14 years", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C01_004EA,S0101_C01_004M,S0101_C01_004MA"}, "S2506_C02_062E": {"label": "Estimate!!Percent owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!REAL ESTATE TAXES!!Less than $800", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "float", "group": "S2506", "limit": 0, "attributes": "S2506_C02_062EA,S2506_C02_062M,S2506_C02_062MA"}, "S0503_C04_032E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Foreign-born population!!HOUSEHOLD TYPE!!In married-couple family", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_032EA,S0503_C04_032M,S0503_C04_032MA"}, "S2002_C02_070E": {"label": "Estimate!!Male!!Median earnings (dollars)!!PERCENT ALLOCATED!!Hispanic or Latino origin", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C02_070EA,S2002_C02_070M,S2002_C02_070MA"}, "S2601A_C03_012E": {"label": "Estimate!!Institutionalized group quarters population!!Total population!!SEX AND AGE!!75 to 84 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_012EA,S2601A_C03_012M,S2601A_C03_012MA"}, "S2201_C06_015E": {"label": "Estimate!!Percent households not receiving food stamps/SNAP!!Households!!No children under 18 years", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C06_015EA,S2201_C06_015M,S2201_C06_015MA"}, "S0101_C01_005E": {"label": "Estimate!!Total!!Total population!!AGE!!15 to 19 years", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C01_005EA,S0101_C01_005M,S0101_C01_005MA"}, "S2506_C02_063E": {"label": "Estimate!!Percent owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!REAL ESTATE TAXES!!$800 to $1,499", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "float", "group": "S2506", "limit": 0, "attributes": "S2506_C02_063EA,S2506_C02_063M,S2506_C02_063MA"}, "S0101_C01_002E": {"label": "Estimate!!Total!!Total population!!AGE!!Under 5 years", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C01_002EA,S0101_C01_002M,S0101_C01_002MA"}, "S0502_C03_099E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_099EA,S0502_C03_099M,S0502_C03_099MA"}, "S2201_C06_016E": {"label": "Estimate!!Percent households not receiving food stamps/SNAP!!Households!!No children under 18 years!!Married-couple family", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C06_016EA,S2201_C06_016M,S2201_C06_016MA"}, "S2601A_C03_015E": {"label": "Estimate!!Institutionalized group quarters population!!Total population!!SEX AND AGE!!Under 18 years!!Male", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_015EA,S2601A_C03_015M,S2601A_C03_015MA"}, "S2506_C02_060E": {"label": "Estimate!!Percent owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$75,000 or more!!30 percent or more", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "float", "group": "S2506", "limit": 0, "attributes": "S2506_C02_060EA,S2506_C02_060M,S2506_C02_060MA"}, "S2002_C02_074E": {"label": "Estimate!!Male!!Median earnings (dollars)!!PERCENT ALLOCATED!!Class of worker", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C02_074EA,S2002_C02_074M,S2002_C02_074MA"}, "S2601A_C03_016E": {"label": "Estimate!!Institutionalized group quarters population!!Total population!!SEX AND AGE!!Under 18 years!!Female", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_016EA,S2601A_C03_016M,S2601A_C03_016MA"}, "S0503_C04_030E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_030EA,S0503_C04_030M,S0503_C04_030MA"}, "S2201_C06_017E": {"label": "Estimate!!Percent households not receiving food stamps/SNAP!!Households!!No children under 18 years!!Other family:", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C06_017EA,S2201_C06_017M,S2201_C06_017MA"}, "S2002_C02_072E": {"label": "Estimate!!Male!!Median earnings (dollars)!!PERCENT ALLOCATED!!Occupation", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C02_072EA,S2002_C02_072M,S2002_C02_072MA"}, "S2601A_C03_014E": {"label": "Estimate!!Institutionalized group quarters population!!Total population!!SEX AND AGE!!Under 18 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_014EA,S2601A_C03_014M,S2601A_C03_014MA"}, "S0101_C01_003E": {"label": "Estimate!!Total!!Total population!!AGE!!5 to 9 years", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C01_003EA,S0101_C01_003M,S0101_C01_003MA"}, "S2002_C02_073E": {"label": "Estimate!!Male!!Median earnings (dollars)!!PERCENT ALLOCATED!!Industry", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C02_073EA,S2002_C02_073M,S2002_C02_073MA"}, "S2506_C02_061E": {"label": "Estimate!!Percent owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Zero or negative income", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "float", "group": "S2506", "limit": 0, "attributes": "S2506_C02_061EA,S2506_C02_061M,S2506_C02_061MA"}, "S2201_C06_018E": {"label": "Estimate!!Percent households not receiving food stamps/SNAP!!Households!!No children under 18 years!!Other family:!!Male householder, no spouse present", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C06_018EA,S2201_C06_018M,S2201_C06_018MA"}, "S1301_C03_011E": {"label": "Estimate!!Percent Distribution!!Women with births in the past 12 months!!Women 15 to 50 years!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Fertility", "predicateType": "float", "group": "S1301", "limit": 0, "attributes": "S1301_C03_011EA,S1301_C03_011M,S1301_C03_011MA"}, "S0503_C04_035E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Foreign-born population!!Average family size", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_035EA,S0503_C04_035M,S0503_C04_035MA"}, "S0101_C01_001E": {"label": "Estimate!!Total!!Total population", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C01_001EA,S0101_C01_001M,S0101_C01_001MA"}, "S1301_C03_010E": {"label": "Estimate!!Percent Distribution!!Women with births in the past 12 months!!Women 15 to 50 years!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Fertility", "predicateType": "float", "group": "S1301", "limit": 0, "attributes": "S1301_C03_010EA,S1301_C03_010M,S1301_C03_010MA"}, "S2201_C06_019E": {"label": "Estimate!!Percent households not receiving food stamps/SNAP!!Households!!No children under 18 years!!Other family:!!Female householder, no spouse present", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C06_019EA,S2201_C06_019M,S2201_C06_019MA"}, "S0503_C04_036E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!MARITAL STATUS!!Population 15 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C04_036EA,S0503_C04_036M,S0503_C04_036MA"}, "S2101_C04_040E": {"label": "Estimate!!Percent Veterans!!DISABILITY STATUS!!Civilian population 18 years and over for whom poverty status is determined!!Without a disability", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C04_040EA,S2101_C04_040M,S2101_C04_040MA"}, "S0503_C04_033E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Foreign-born population!!HOUSEHOLD TYPE!!In other households", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_033EA,S0503_C04_033M,S0503_C04_033MA"}, "S2601A_C03_011E": {"label": "Estimate!!Institutionalized group quarters population!!Total population!!SEX AND AGE!!65 to 74 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_011EA,S2601A_C03_011M,S2601A_C03_011MA"}, "S1301_C03_013E": {"label": "Estimate!!Percent Distribution!!Women with births in the past 12 months!!Women 15 to 50 years!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Fertility", "predicateType": "float", "group": "S1301", "limit": 0, "attributes": "S1301_C03_013EA,S1301_C03_013M,S1301_C03_013MA"}, "S0503_C04_034E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Foreign-born population!!Average household size", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_034EA,S0503_C04_034M,S0503_C04_034MA"}, "S2601A_C03_010E": {"label": "Estimate!!Institutionalized group quarters population!!Total population!!SEX AND AGE!!55 to 64 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_010EA,S2601A_C03_010M,S2601A_C03_010MA"}, "S1301_C03_012E": {"label": "Estimate!!Percent Distribution!!Women with births in the past 12 months!!Women 15 to 50 years!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Fertility", "predicateType": "float", "group": "S1301", "limit": 0, "attributes": "S1301_C03_012EA,S1301_C03_012M,S1301_C03_012MA"}, "S1501_C06_014E": {"label": "Estimate!!Percent Female!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C06_014EA,S1501_C06_014M,S1501_C06_014MA"}, "S2001_C06_005E": {"label": "Estimate!!Percent Female!!Population 16 years and over with earnings!!FULL-TIME, YEAR-ROUND WORKERS WITH EARNINGS!!$10,000 to $14,999", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S2001", "limit": 0, "attributes": "S2001_C06_005EA,S2001_C06_005M,S2001_C06_005MA"}, "S0701PR_C05_035E": {"label": "Estimate!!Moved; from outside Puerto Rico and the U.S.!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate (includes equivalency)", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C05_035EA,S0701PR_C05_035M,S0701PR_C05_035MA"}, "S0502_C03_093E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$35,000 to $49,999", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_093EA,S0502_C03_093M,S0502_C03_093MA"}, "S0802_C02_080E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!9:00 a.m. to 11:59 p.m.", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_080EA,S0802_C02_080M,S0802_C02_080MA"}, "S0506_C02_022E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_022EA,S0506_C02_022M,S0506_C02_022MA"}, "S2501_C05_009E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C05_009EA,S2501_C05_009M,S2501_C05_009MA"}, "S1301_C03_015E": {"label": "Estimate!!Percent Distribution!!Women with births in the past 12 months!!Women 15 to 50 years!!NATIVITY!!Native", "concept": "Fertility", "predicateType": "float", "group": "S1301", "limit": 0, "attributes": "S1301_C03_015EA,S1301_C03_015M,S1301_C03_015MA"}, "S2001_C06_004E": {"label": "Estimate!!Percent Female!!Population 16 years and over with earnings!!FULL-TIME, YEAR-ROUND WORKERS WITH EARNINGS!!$1 to $9,999 or loss", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S2001", "limit": 0, "attributes": "S2001_C06_004EA,S2001_C06_004M,S2001_C06_004MA"}, "S0502_C03_094E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$50,000 to $74,999", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_094EA,S0502_C03_094M,S0502_C03_094MA"}, "S0701PR_C05_034E": {"label": "Estimate!!Moved; from outside Puerto Rico and the U.S.!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than high school graduate", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C05_034EA,S0701PR_C05_034M,S0701PR_C05_034MA"}, "S0506_C02_023E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_023EA,S0506_C02_023M,S0506_C02_023MA"}, "S2501_C05_008E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!OCCUPANTS PER ROOM!!1.51 or more occupants per room", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C05_008EA,S2501_C05_008M,S2501_C05_008MA"}, "S1501_C06_013E": {"label": "Estimate!!Percent Female!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Graduate or professional degree", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C06_013EA,S1501_C06_013M,S1501_C06_013MA"}, "S1301_C03_014E": {"label": "Estimate!!Percent Distribution!!Women with births in the past 12 months!!Women 15 to 50 years!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Fertility", "predicateType": "float", "group": "S1301", "limit": 0, "attributes": "S1301_C03_014EA,S1301_C03_014M,S1301_C03_014MA"}, "S2001_C06_007E": {"label": "Estimate!!Percent Female!!Population 16 years and over with earnings!!FULL-TIME, YEAR-ROUND WORKERS WITH EARNINGS!!$25,000 to $34,999", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S2001", "limit": 0, "attributes": "S2001_C06_007EA,S2001_C06_007M,S2001_C06_007MA"}, "S0802_C02_082E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!10 to 14 minutes", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_082EA,S0802_C02_082M,S0802_C02_082MA"}, "S1501_C06_016E": {"label": "Estimate!!Percent Female!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 to 34 years", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C06_016EA,S1501_C06_016M,S1501_C06_016MA"}, "S0701PR_C05_033E": {"label": "Estimate!!Moved; from outside Puerto Rico and the U.S.!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C05_033EA,S0701PR_C05_033M,S0701PR_C05_033MA"}, "S0502_C03_091E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$15,000 to $24,999", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_091EA,S0502_C03_091M,S0502_C03_091MA"}, "S0506_C02_020E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Foreign-born population!!SEX AND AGE!!85 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_020EA,S0506_C02_020M,S0506_C02_020MA"}, "S2501_C05_007E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!OCCUPANTS PER ROOM!!1.01 to 1.50 occupants per room", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C05_007EA,S2501_C05_007M,S2501_C05_007MA"}, "S1301_C03_017E": {"label": "Estimate!!Percent Distribution!!Women with births in the past 12 months!!Women 15 to 50 years!!EDUCATIONAL ATTAINMENT!!Less than high school graduate", "concept": "Fertility", "predicateType": "float", "group": "S1301", "limit": 0, "attributes": "S1301_C03_017EA,S1301_C03_017M,S1301_C03_017MA"}, "S1501_C06_015E": {"label": "Estimate!!Percent Female!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C06_015EA,S1501_C06_015M,S1501_C06_015MA"}, "S2001_C06_006E": {"label": "Estimate!!Percent Female!!Population 16 years and over with earnings!!FULL-TIME, YEAR-ROUND WORKERS WITH EARNINGS!!$15,000 to $24,999", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S2001", "limit": 0, "attributes": "S2001_C06_006EA,S2001_C06_006M,S2001_C06_006MA"}, "S0502_C03_092E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$25,000 to $34,999", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_092EA,S0502_C03_092M,S0502_C03_092MA"}, "S0701PR_C05_032E": {"label": "Estimate!!Moved; from outside Puerto Rico and the U.S.!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C05_032EA,S0701PR_C05_032M,S0701PR_C05_032MA"}, "S0802_C02_081E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!Less than 10 minutes", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_081EA,S0802_C02_081M,S0802_C02_081MA"}, "S0506_C02_021E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Foreign-born population!!SEX AND AGE!!Median age (years)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_021EA,S0506_C02_021M,S0506_C02_021MA"}, "S2501_C05_006E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!OCCUPANTS PER ROOM!!1.00 or less occupants per room", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C05_006EA,S2501_C05_006M,S2501_C05_006MA"}, "S1301_C03_016E": {"label": "Estimate!!Percent Distribution!!Women with births in the past 12 months!!Women 15 to 50 years!!NATIVITY!!Foreign born", "concept": "Fertility", "predicateType": "float", "group": "S1301", "limit": 0, "attributes": "S1301_C03_016EA,S1301_C03_016M,S1301_C03_016MA"}, "S2001_C06_001E": {"label": "Estimate!!Percent Female!!Population 16 years and over with earnings", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C06_001EA,S2001_C06_001M,S2001_C06_001MA"}, "S1301_C03_019E": {"label": "Estimate!!Percent Distribution!!Women with births in the past 12 months!!Women 15 to 50 years!!EDUCATIONAL ATTAINMENT!!Some college or associate's degree", "concept": "Fertility", "predicateType": "float", "group": "S1301", "limit": 0, "attributes": "S1301_C03_019EA,S1301_C03_019M,S1301_C03_019MA"}, "S0502_C03_097E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!Median earnings (dollars) for full-time, year-round workers!!Female", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C03_097EA,S0502_C03_097M,S0502_C03_097MA"}, "S0101_C01_008E": {"label": "Estimate!!Total!!Total population!!AGE!!30 to 34 years", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C01_008EA,S0101_C01_008M,S0101_C01_008MA"}, "S0701PR_C05_031E": {"label": "Estimate!!Moved; from outside Puerto Rico and the U.S.!!MARITAL STATUS!!Population 15 years and over!!Divorced or separated", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C05_031EA,S0701PR_C05_031M,S0701PR_C05_031MA"}, "S1501_C06_010E": {"label": "Estimate!!Percent Female!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college, no degree", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C06_010EA,S1501_C06_010M,S1501_C06_010MA"}, "S0502_C03_098E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C03_098EA,S0502_C03_098M,S0502_C03_098MA"}, "S0101_C01_009E": {"label": "Estimate!!Total!!Total population!!AGE!!35 to 39 years", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C01_009EA,S0101_C01_009M,S0101_C01_009MA"}, "S0701PR_C05_030E": {"label": "Estimate!!Moved; from outside Puerto Rico and the U.S.!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C05_030EA,S0701PR_C05_030M,S0701PR_C05_030MA"}, "S1301_C03_018E": {"label": "Estimate!!Percent Distribution!!Women with births in the past 12 months!!Women 15 to 50 years!!EDUCATIONAL ATTAINMENT!!High school graduate (includes equivalency)", "concept": "Fertility", "predicateType": "float", "group": "S1301", "limit": 0, "attributes": "S1301_C03_018EA,S1301_C03_018M,S1301_C03_018MA"}, "S2001_C06_003E": {"label": "Estimate!!Percent Female!!Population 16 years and over with earnings!!FULL-TIME, YEAR-ROUND WORKERS WITH EARNINGS", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C06_003EA,S2001_C06_003M,S2001_C06_003MA"}, "S0502_C03_095E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$75,000 or more", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_095EA,S0502_C03_095M,S0502_C03_095MA"}, "S0101_C01_006E": {"label": "Estimate!!Total!!Total population!!AGE!!20 to 24 years", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C01_006EA,S0101_C01_006M,S0101_C01_006MA"}, "S1501_C06_012E": {"label": "Estimate!!Percent Female!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C06_012EA,S1501_C06_012M,S1501_C06_012MA"}, "S2001_C06_002E": {"label": "Estimate!!Percent Female!!Population 16 years and over with earnings!!Median earnings (dollars)", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C06_002EA,S2001_C06_002M,S2001_C06_002MA"}, "S0502_C03_096E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!Median earnings (dollars) for full-time, year-round workers!!Male", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C03_096EA,S0502_C03_096M,S0502_C03_096MA"}, "S0101_C01_007E": {"label": "Estimate!!Total!!Total population!!AGE!!25 to 29 years", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C01_007EA,S0101_C01_007M,S0101_C01_007MA"}, "S1501_C06_011E": {"label": "Estimate!!Percent Female!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Associate's degree", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C06_011EA,S1501_C06_011M,S1501_C06_011MA"}, "S0802_C02_076E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!7:00 a.m. to 7:29 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_076EA,S0802_C02_076M,S0802_C02_076MA"}, "S0501_C02_116E": {"label": "Estimate!!Native!!Occupied housing units", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C02_116EA,S0501_C02_116M,S0501_C02_116MA"}, "S2411_C02_006E": {"label": "Estimate!!Median earnings (dollars) for male!!Civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Computer, engineering, and science occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C02_006EA,S2411_C02_006M,S2411_C02_006MA"}, "S0802_C02_075E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!6:30 a.m. to 6:59 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_075EA,S0802_C02_075M,S0802_C02_075MA"}, "S0501_C02_117E": {"label": "Estimate!!Native!!Occupied housing units!!HOUSING TENURE!!Owner-occupied housing units", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_117EA,S0501_C02_117M,S0501_C02_117MA"}, "S2411_C02_007E": {"label": "Estimate!!Median earnings (dollars) for male!!Civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Computer, engineering, and science occupations:!!Computer and mathematical occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C02_007EA,S2411_C02_007M,S2411_C02_007MA"}, "S0802_C02_078E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!8:00 a.m. to 8:29 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_078EA,S0802_C02_078M,S0802_C02_078MA"}, "S0501_C02_114E": {"label": "Estimate!!Native!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_114EA,S0501_C02_114M,S0501_C02_114MA"}, "S0506_C02_028E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_028EA,S0506_C02_028M,S0506_C02_028MA"}, "S2411_C02_008E": {"label": "Estimate!!Median earnings (dollars) for male!!Civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Computer, engineering, and science occupations:!!Architecture and engineering occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C02_008EA,S2411_C02_008M,S2411_C02_008MA"}, "S0802_C02_077E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!7:30 a.m. to 7:59 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_077EA,S0802_C02_077M,S0802_C02_077MA"}, "S0501_C02_115E": {"label": "Estimate!!Native!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_115EA,S0501_C02_115M,S0501_C02_115MA"}, "S0506_C02_029E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_029EA,S0506_C02_029M,S0506_C02_029MA"}, "S2411_C02_009E": {"label": "Estimate!!Median earnings (dollars) for male!!Civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Computer, engineering, and science occupations:!!Life, physical, and social science occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C02_009EA,S2411_C02_009M,S2411_C02_009MA"}, "S1501_C06_018E": {"label": "Estimate!!Percent Female!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 to 34 years!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C06_018EA,S1501_C06_018M,S1501_C06_018MA"}, "S0802_C02_072E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!5:00 a.m. to 5:29 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_072EA,S0802_C02_072M,S0802_C02_072MA"}, "S0506_C02_026E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_026EA,S0506_C02_026M,S0506_C02_026MA"}, "S2001_C06_009E": {"label": "Estimate!!Percent Female!!Population 16 years and over with earnings!!FULL-TIME, YEAR-ROUND WORKERS WITH EARNINGS!!$50,000 to $64,999", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S2001", "limit": 0, "attributes": "S2001_C06_009EA,S2001_C06_009M,S2001_C06_009MA"}, "S2411_C02_002E": {"label": "Estimate!!Median earnings (dollars) for male!!Civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C02_002EA,S2411_C02_002M,S2411_C02_002MA"}, "S2001_C06_008E": {"label": "Estimate!!Percent Female!!Population 16 years and over with earnings!!FULL-TIME, YEAR-ROUND WORKERS WITH EARNINGS!!$35,000 to $49,999", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S2001", "limit": 0, "attributes": "S2001_C06_008EA,S2001_C06_008M,S2001_C06_008MA"}, "S0802_C02_071E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!12:00 a.m. to 4:59 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_071EA,S0802_C02_071M,S0802_C02_071MA"}, "S1501_C06_017E": {"label": "Estimate!!Percent Female!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 to 34 years!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C06_017EA,S1501_C06_017M,S1501_C06_017MA"}, "S0506_C02_027E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_027EA,S0506_C02_027M,S0506_C02_027MA"}, "S2411_C02_003E": {"label": "Estimate!!Median earnings (dollars) for male!!Civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Management, business, and financial occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C02_003EA,S2411_C02_003M,S2411_C02_003MA"}, "S2506_C02_048E": {"label": "Estimate!!Percent owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$20,000 to $34,999!!30 percent or more", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "float", "group": "S2506", "limit": 0, "attributes": "S2506_C02_048EA,S2506_C02_048M,S2506_C02_048MA"}, "S0802_C02_074E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!6:00 a.m. to 6:29 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_074EA,S0802_C02_074M,S0802_C02_074MA"}, "S0506_C02_024E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_024EA,S0506_C02_024M,S0506_C02_024MA"}, "S0701PR_C05_049E": {"label": "Estimate!!Moved; from outside Puerto Rico and the U.S.!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population 1 year and over for whom poverty status is determined", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C05_049EA,S0701PR_C05_049M,S0701PR_C05_049MA"}, "S2411_C02_004E": {"label": "Estimate!!Median earnings (dollars) for male!!Civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Management, business, and financial occupations:!!Management occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C02_004EA,S2411_C02_004M,S2411_C02_004MA"}, "S0501_C02_118E": {"label": "Estimate!!Native!!Occupied housing units!!HOUSING TENURE!!Renter-occupied housing units", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_118EA,S0501_C02_118M,S0501_C02_118MA"}, "S1501_C06_019E": {"label": "Estimate!!Percent Female!!AGE BY EDUCATIONAL ATTAINMENT!!Population 35 to 44 years", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C06_019EA,S1501_C06_019M,S1501_C06_019MA"}, "S2506_C02_049E": {"label": "Estimate!!Percent owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$35,000 to $49,999", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "float", "group": "S2506", "limit": 0, "attributes": "S2506_C02_049EA,S2506_C02_049M,S2506_C02_049MA"}, "S0802_C02_073E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!5:30 a.m. to 5:59 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_073EA,S0802_C02_073M,S0802_C02_073MA"}, "S0701PR_C05_048E": {"label": "Estimate!!Moved; from outside Puerto Rico and the U.S.!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!Median income (dollars)", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "int", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C05_048EA,S0701PR_C05_048M,S0701PR_C05_048MA"}, "S0506_C02_025E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_025EA,S0506_C02_025M,S0506_C02_025MA"}, "S0501_C02_119E": {"label": "Estimate!!Native!!Occupied housing units!!HOUSING TENURE!!Average household size of owner-occupied unit", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_119EA,S0501_C02_119M,S0501_C02_119MA"}, "S2411_C02_005E": {"label": "Estimate!!Median earnings (dollars) for male!!Civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Management, business, and financial occupations:!!Business and financial operations occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C02_005EA,S2411_C02_005M,S2411_C02_005MA"}, "S0101_C01_020E": {"label": "Estimate!!Total!!Total population!!SELECTED AGE CATEGORIES!!5 to 14 years", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C01_020EA,S0101_C01_020M,S0101_C01_020MA"}, "S2506_C02_046E": {"label": "Estimate!!Percent owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$20,000 to $34,999!!Less than 20 percent", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "float", "group": "S2506", "limit": 0, "attributes": "S2506_C02_046EA,S2506_C02_046M,S2506_C02_046MA"}, "S0503_C04_027E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_027EA,S0503_C04_027M,S0503_C04_027MA"}, "S0101_C01_021E": {"label": "Estimate!!Total!!Total population!!SELECTED AGE CATEGORIES!!15 to 17 years", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C01_021EA,S0101_C01_021M,S0101_C01_021MA"}, "S2506_C02_047E": {"label": "Estimate!!Percent owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$20,000 to $34,999!!20 to 29 percent", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "float", "group": "S2506", "limit": 0, "attributes": "S2506_C02_047EA,S2506_C02_047M,S2506_C02_047MA"}, "S0503_C04_028E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_028EA,S0503_C04_028M,S0503_C04_028MA"}, "S2201_C06_020E": {"label": "Estimate!!Percent households not receiving food stamps/SNAP!!Households!!No children under 18 years!!Nonfamily households", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C06_020EA,S2201_C06_020M,S2201_C06_020MA"}, "S2506_C02_044E": {"label": "Estimate!!Percent owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than $20,000!!30 percent or more", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "float", "group": "S2506", "limit": 0, "attributes": "S2506_C02_044EA,S2506_C02_044M,S2506_C02_044MA"}, "S0503_C04_025E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_025EA,S0503_C04_025M,S0503_C04_025MA"}, "S2201_C06_021E": {"label": "Estimate!!Percent households not receiving food stamps/SNAP!!Households!!POVERTY STATUS IN THE PAST 12 MONTHS!!Below poverty level", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C06_021EA,S2201_C06_021M,S2201_C06_021MA"}, "S2411_C02_001E": {"label": "Estimate!!Median earnings (dollars) for male!!Civilian employed population 16 years and over with earnings", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C02_001EA,S2411_C02_001M,S2411_C02_001MA"}, "S2506_C02_045E": {"label": "Estimate!!Percent owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$20,000 to $34,999", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "float", "group": "S2506", "limit": 0, "attributes": "S2506_C02_045EA,S2506_C02_045M,S2506_C02_045MA"}, "S0503_C04_026E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_026EA,S0503_C04_026M,S0503_C04_026MA"}, "S0501_C02_112E": {"label": "Estimate!!Native!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_112EA,S0501_C02_112M,S0501_C02_112MA"}, "S2201_C06_022E": {"label": "Estimate!!Percent households not receiving food stamps/SNAP!!Households!!POVERTY STATUS IN THE PAST 12 MONTHS!!At or above poverty level", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C06_022EA,S2201_C06_022M,S2201_C06_022MA"}, "S2506_C02_042E": {"label": "Estimate!!Percent owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than $20,000!!Less than 20 percent", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "float", "group": "S2506", "limit": 0, "attributes": "S2506_C02_042EA,S2506_C02_042M,S2506_C02_042MA"}, "S0501_C02_113E": {"label": "Estimate!!Native!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_113EA,S0501_C02_113M,S0501_C02_113MA"}, "S2201_C06_023E": {"label": "Estimate!!Percent households not receiving food stamps/SNAP!!Households!!DISABILITY STATUS!!With one or more people with a disability", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C06_023EA,S2201_C06_023M,S2201_C06_023MA"}, "S2601A_C03_029E": {"label": "Estimate!!Institutionalized group quarters population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!Hispanic or Latino (of any race)", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_029EA,S2601A_C03_029M,S2601A_C03_029MA"}, "S2506_C02_043E": {"label": "Estimate!!Percent owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than $20,000!!20 to 29 percent", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "float", "group": "S2506", "limit": 0, "attributes": "S2506_C02_043EA,S2506_C02_043M,S2506_C02_043MA"}, "S0802_C02_079E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!8:30 a.m. to 8:59 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_079EA,S0802_C02_079M,S0802_C02_079MA"}, "S0501_C02_110E": {"label": "Estimate!!Native!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_110EA,S0501_C02_110M,S0501_C02_110MA"}, "S2201_C06_024E": {"label": "Estimate!!Percent households not receiving food stamps/SNAP!!Households!!DISABILITY STATUS!!With no persons with a disability", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C06_024EA,S2201_C06_024M,S2201_C06_024MA"}, "S0503_C04_029E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_029EA,S0503_C04_029M,S0503_C04_029MA"}, "S2506_C02_040E": {"label": "Estimate!!Percent owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!MONTHLY HOUSING COSTS!!Median (dollars)", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "int", "group": "S2506", "limit": 0, "attributes": "S2506_C02_040EA,S2506_C02_040M,S2506_C02_040MA"}, "S0501_C02_111E": {"label": "Estimate!!Native!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_111EA,S0501_C02_111M,S0501_C02_111MA"}, "S2201_C06_025E": {"label": "Estimate!!Percent households not receiving food stamps/SNAP!!Households!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!White alone", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C06_025EA,S2201_C06_025M,S2201_C06_025MA"}, "S2506_C02_041E": {"label": "Estimate!!Percent owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than $20,000", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "float", "group": "S2506", "limit": 0, "attributes": "S2506_C02_041EA,S2506_C02_041M,S2506_C02_041MA"}, "S2101_C04_034E": {"label": "Estimate!!Percent Veterans!!EMPLOYMENT STATUS!!Civilian labor force 18 to 64 years!!Unemployment rate", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C04_034EA,S2101_C04_034M,S2101_C04_034MA"}, "S2201_C06_026E": {"label": "Estimate!!Percent households not receiving food stamps/SNAP!!Households!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Black or African American alone", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C06_026EA,S2201_C06_026M,S2201_C06_026MA"}, "S2601A_C03_025E": {"label": "Estimate!!Institutionalized group quarters population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Asian", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_025EA,S2601A_C03_025M,S2601A_C03_025MA"}, "S0101_C01_016E": {"label": "Estimate!!Total!!Total population!!AGE!!70 to 74 years", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C01_016EA,S0101_C01_016M,S0101_C01_016MA"}, "S2506_C02_050E": {"label": "Estimate!!Percent owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$35,000 to $49,999!!Less than 20 percent", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "float", "group": "S2506", "limit": 0, "attributes": "S2506_C02_050EA,S2506_C02_050M,S2506_C02_050MA"}, "S0503_C04_020E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Foreign-born population!!SEX AND AGE!!85 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_020EA,S0503_C04_020M,S0503_C04_020MA"}, "S2101_C04_033E": {"label": "Estimate!!Percent Veterans!!EMPLOYMENT STATUS!!Civilian labor force 18 to 64 years", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C04_033EA,S2101_C04_033M,S2101_C04_033MA"}, "S2601A_C03_024E": {"label": "Estimate!!Institutionalized group quarters population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_024EA,S2601A_C03_024M,S2601A_C03_024MA"}, "S2201_C06_027E": {"label": "Estimate!!Percent households not receiving food stamps/SNAP!!Households!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!American Indian and Alaska Native alone", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C06_027EA,S2201_C06_027M,S2201_C06_027MA"}, "S0101_C01_017E": {"label": "Estimate!!Total!!Total population!!AGE!!75 to 79 years", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C01_017EA,S0101_C01_017M,S0101_C01_017MA"}, "S2506_C02_051E": {"label": "Estimate!!Percent owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$35,000 to $49,999!!20 to 29 percent", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "float", "group": "S2506", "limit": 0, "attributes": "S2506_C02_051EA,S2506_C02_051M,S2506_C02_051MA"}, "S2101_C04_032E": {"label": "Estimate!!Percent Veterans!!EMPLOYMENT STATUS!!Civilian population 18 to 64 years!!Labor force participation rate", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C04_032EA,S2101_C04_032M,S2101_C04_032MA"}, "S2201_C06_028E": {"label": "Estimate!!Percent households not receiving food stamps/SNAP!!Households!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Asian alone", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C06_028EA,S2201_C06_028M,S2201_C06_028MA"}, "S2002_C02_061E": {"label": "Estimate!!Male!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!CLASS OF WORKER!!Employee of private company workers", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C02_061EA,S2002_C02_061M,S2002_C02_061MA"}, "S2001_C06_011E": {"label": "Estimate!!Percent Female!!Population 16 years and over with earnings!!FULL-TIME, YEAR-ROUND WORKERS WITH EARNINGS!!$75,000 to $99,999", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S2001", "limit": 0, "attributes": "S2001_C06_011EA,S2001_C06_011M,S2001_C06_011MA"}, "S0101_C01_014E": {"label": "Estimate!!Total!!Total population!!AGE!!60 to 64 years", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C01_014EA,S0101_C01_014M,S0101_C01_014MA"}, "S2601A_C03_028E": {"label": "Estimate!!Institutionalized group quarters population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!Two or more races", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_028EA,S2601A_C03_028M,S2601A_C03_028MA"}, "S2002_C02_062E": {"label": "Estimate!!Male!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!CLASS OF WORKER!!Self employed in own incorporated business workers", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C02_062EA,S2002_C02_062M,S2002_C02_062MA"}, "S1501_C06_020E": {"label": "Estimate!!Percent Female!!AGE BY EDUCATIONAL ATTAINMENT!!Population 35 to 44 years!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C06_020EA,S1501_C06_020M,S1501_C06_020MA"}, "S2101_C04_031E": {"label": "Estimate!!Percent Veterans!!EMPLOYMENT STATUS!!Civilian population 18 to 64 years", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C04_031EA,S2101_C04_031M,S2101_C04_031MA"}, "S2601A_C03_026E": {"label": "Estimate!!Institutionalized group quarters population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_026EA,S2601A_C03_026M,S2601A_C03_026MA"}, "S2002_C02_060E": {"label": "Estimate!!Male!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Public administration", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C02_060EA,S2002_C02_060M,S2002_C02_060MA"}, "S2001_C06_010E": {"label": "Estimate!!Percent Female!!Population 16 years and over with earnings!!FULL-TIME, YEAR-ROUND WORKERS WITH EARNINGS!!$65,000 to $74,999", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S2001", "limit": 0, "attributes": "S2001_C06_010EA,S2001_C06_010M,S2001_C06_010MA"}, "S0101_C01_015E": {"label": "Estimate!!Total!!Total population!!AGE!!65 to 69 years", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C01_015EA,S0101_C01_015M,S0101_C01_015MA"}, "S2601A_C03_027E": {"label": "Estimate!!Institutionalized group quarters population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Some other race", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_027EA,S2601A_C03_027M,S2601A_C03_027MA"}, "S2201_C06_029E": {"label": "Estimate!!Percent households not receiving food stamps/SNAP!!Households!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Native Hawaiian and Other Pacific Islander alone", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C06_029EA,S2201_C06_029M,S2201_C06_029MA"}, "S2101_C04_030E": {"label": "Estimate!!Percent Veterans!!EDUCATIONAL ATTAINMENT!!Civilian population 25 years and over!!Bachelor's degree or higher", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C04_030EA,S2101_C04_030M,S2101_C04_030MA"}, "S0503_C04_023E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_023EA,S0503_C04_023M,S0503_C04_023MA"}, "S0101_C01_012E": {"label": "Estimate!!Total!!Total population!!AGE!!50 to 54 years", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C01_012EA,S0101_C01_012M,S0101_C01_012MA"}, "S2601A_C03_021E": {"label": "Estimate!!Institutionalized group quarters population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_021EA,S2601A_C03_021M,S2601A_C03_021MA"}, "S2002_C02_064E": {"label": "Estimate!!Male!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!CLASS OF WORKER!!Local government workers", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C02_064EA,S2002_C02_064M,S2002_C02_064MA"}, "S0101_C01_013E": {"label": "Estimate!!Total!!Total population!!AGE!!55 to 59 years", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C01_013EA,S0101_C01_013M,S0101_C01_013MA"}, "S2601A_C03_020E": {"label": "Estimate!!Institutionalized group quarters population!!Total population!!SEX AND AGE!!Median age (years)", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_020EA,S2601A_C03_020M,S2601A_C03_020MA"}, "S2002_C02_063E": {"label": "Estimate!!Male!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!CLASS OF WORKER!!Private not-for-profit wage and salary workers", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C02_063EA,S2002_C02_063M,S2002_C02_063MA"}, "S0503_C04_024E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_024EA,S0503_C04_024M,S0503_C04_024MA"}, "S0503_C04_021E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Foreign-born population!!SEX AND AGE!!Median age (years)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_021EA,S0503_C04_021M,S0503_C04_021MA"}, "S0101_C01_010E": {"label": "Estimate!!Total!!Total population!!AGE!!40 to 44 years", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C01_010EA,S0101_C01_010M,S0101_C01_010MA"}, "S2601A_C03_023E": {"label": "Estimate!!Institutionalized group quarters population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_023EA,S2601A_C03_023M,S2601A_C03_023MA"}, "S2002_C02_066E": {"label": "Estimate!!Male!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!CLASS OF WORKER!!Federal government workers", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C02_066EA,S2002_C02_066M,S2002_C02_066MA"}, "S1301_C03_001E": {"label": "Estimate!!Percent Distribution!!Women with births in the past 12 months!!Women 15 to 50 years", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C03_001EA,S1301_C03_001M,S1301_C03_001MA"}, "S0503_C04_022E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_022EA,S0503_C04_022M,S0503_C04_022MA"}, "S0101_C01_011E": {"label": "Estimate!!Total!!Total population!!AGE!!45 to 49 years", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C01_011EA,S0101_C01_011M,S0101_C01_011MA"}, "S2601A_C03_022E": {"label": "Estimate!!Institutionalized group quarters population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!White", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_022EA,S2601A_C03_022M,S2601A_C03_022MA"}, "S2002_C02_065E": {"label": "Estimate!!Male!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!CLASS OF WORKER!!State government workers", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C02_065EA,S2002_C02_065M,S2002_C02_065MA"}, "S1501_C06_026E": {"label": "Estimate!!Percent Female!!AGE BY EDUCATIONAL ATTAINMENT!!Population 65 years and over!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C06_026EA,S1501_C06_026M,S1501_C06_026MA"}, "S2001_C06_017E": {"label": "Estimate!!Percent Female!!MEDIAN EARNINGS BY EDUCATIONAL ATTAINMENT!!Population 25 years and over with earnings!!High school graduate (includes equivalency)", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C06_017EA,S2001_C06_017M,S2001_C06_017MA"}, "S0701PR_C05_047E": {"label": "Estimate!!Moved; from outside Puerto Rico and the U.S.!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$75,000 or more", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C05_047EA,S0701PR_C05_047M,S0701PR_C05_047MA"}, "S0506_C02_034E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Foreign-born population!!Average household size", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_034EA,S0506_C02_034M,S0506_C02_034MA"}, "S2002_C02_068E": {"label": "Estimate!!Male!!Median earnings (dollars)!!PERCENT ALLOCATED!!Earnings in the past 12 months", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C02_068EA,S2002_C02_068M,S2002_C02_068MA"}, "S1301_C03_003E": {"label": "Estimate!!Percent Distribution!!Women with births in the past 12 months!!Women 15 to 50 years!!20 to 34 years", "concept": "Fertility", "predicateType": "float", "group": "S1301", "limit": 0, "attributes": "S1301_C03_003EA,S1301_C03_003M,S1301_C03_003MA"}, "S1501_C06_025E": {"label": "Estimate!!Percent Female!!AGE BY EDUCATIONAL ATTAINMENT!!Population 65 years and over", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C06_025EA,S1501_C06_025M,S1501_C06_025MA"}, "S2001_C06_016E": {"label": "Estimate!!Percent Female!!MEDIAN EARNINGS BY EDUCATIONAL ATTAINMENT!!Population 25 years and over with earnings!!Less than high school graduate", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C06_016EA,S2001_C06_016M,S2001_C06_016MA"}, "S0701PR_C05_046E": {"label": "Estimate!!Moved; from outside Puerto Rico and the U.S.!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$65,000 to $74,999", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C05_046EA,S0701PR_C05_046M,S0701PR_C05_046MA"}, "S0506_C02_035E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Foreign-born population!!Average family size", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_035EA,S0506_C02_035M,S0506_C02_035MA"}, "S2002_C02_067E": {"label": "Estimate!!Male!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!CLASS OF WORKER!!Self employed in own not incorporated business workers and unpaid family workers", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C02_067EA,S2002_C02_067M,S2002_C02_067MA"}, "S1301_C03_002E": {"label": "Estimate!!Percent Distribution!!Women with births in the past 12 months!!Women 15 to 50 years!!15 to 19 years", "concept": "Fertility", "predicateType": "float", "group": "S1301", "limit": 0, "attributes": "S1301_C03_002EA,S1301_C03_002M,S1301_C03_002MA"}, "S2001_C06_019E": {"label": "Estimate!!Percent Female!!MEDIAN EARNINGS BY EDUCATIONAL ATTAINMENT!!Population 25 years and over with earnings!!Bachelor's degree", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C06_019EA,S2001_C06_019M,S2001_C06_019MA"}, "S1501_C06_028E": {"label": "Estimate!!Percent Female!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!White alone", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C06_028EA,S1501_C06_028M,S1501_C06_028MA"}, "S0802_C02_070E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over who did not work from home", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "int", "group": "S0802", "limit": 0, "attributes": "S0802_C02_070EA,S0802_C02_070M,S0802_C02_070MA"}, "S0701PR_C05_045E": {"label": "Estimate!!Moved; from outside Puerto Rico and the U.S.!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$50,000 to $64,999", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C05_045EA,S0701PR_C05_045M,S0701PR_C05_045MA"}, "S0506_C02_032E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Foreign-born population!!HOUSEHOLD TYPE!!In married-couple family", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_032EA,S0506_C02_032M,S0506_C02_032MA"}, "S1301_C03_005E": {"label": "Estimate!!Percent Distribution!!Women with births in the past 12 months!!Women 15 to 50 years!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Fertility", "predicateType": "float", "group": "S1301", "limit": 0, "attributes": "S1301_C03_005EA,S1301_C03_005M,S1301_C03_005MA"}, "S2001_C06_018E": {"label": "Estimate!!Percent Female!!MEDIAN EARNINGS BY EDUCATIONAL ATTAINMENT!!Population 25 years and over with earnings!!Some college or associate's degree", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C06_018EA,S2001_C06_018M,S2001_C06_018MA"}, "S1501_C06_027E": {"label": "Estimate!!Percent Female!!AGE BY EDUCATIONAL ATTAINMENT!!Population 65 years and over!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C06_027EA,S1501_C06_027M,S1501_C06_027MA"}, "S0701PR_C05_044E": {"label": "Estimate!!Moved; from outside Puerto Rico and the U.S.!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$35,000 to $49,999", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C05_044EA,S0701PR_C05_044M,S0701PR_C05_044MA"}, "S2101_C04_039E": {"label": "Estimate!!Percent Veterans!!DISABILITY STATUS!!Civilian population 18 years and over for whom poverty status is determined!!With any disability", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C04_039EA,S2101_C04_039M,S2101_C04_039MA"}, "S0506_C02_033E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Foreign-born population!!HOUSEHOLD TYPE!!In other households", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_033EA,S0506_C02_033M,S0506_C02_033MA"}, "S2002_C02_069E": {"label": "Estimate!!Male!!Median earnings (dollars)!!PERCENT ALLOCATED!!Race", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C02_069EA,S2002_C02_069M,S2002_C02_069MA"}, "S1301_C03_004E": {"label": "Estimate!!Percent Distribution!!Women with births in the past 12 months!!Women 15 to 50 years!!35 to 50 years", "concept": "Fertility", "predicateType": "float", "group": "S1301", "limit": 0, "attributes": "S1301_C03_004EA,S1301_C03_004M,S1301_C03_004MA"}, "S2001_C06_013E": {"label": "Estimate!!Percent Female!!Population 16 years and over with earnings!!FULL-TIME, YEAR-ROUND WORKERS WITH EARNINGS!!Median earnings (dollars) for full-time, year-round workers with earnings", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C06_013EA,S2001_C06_013M,S2001_C06_013MA"}, "S2101_C04_038E": {"label": "Estimate!!Percent Veterans!!DISABILITY STATUS!!Civilian population 18 years and over for whom poverty status is determined", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C04_038EA,S2101_C04_038M,S2101_C04_038MA"}, "S0701PR_C05_043E": {"label": "Estimate!!Moved; from outside Puerto Rico and the U.S.!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$25,000 to $34,999", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C05_043EA,S0701PR_C05_043M,S0701PR_C05_043MA"}, "S0506_C02_030E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_030EA,S0506_C02_030M,S0506_C02_030MA"}, "S1301_C03_007E": {"label": "Estimate!!Percent Distribution!!Women with births in the past 12 months!!Women 15 to 50 years!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Fertility", "predicateType": "float", "group": "S1301", "limit": 0, "attributes": "S1301_C03_007EA,S1301_C03_007M,S1301_C03_007MA"}, "S1501_C06_022E": {"label": "Estimate!!Percent Female!!AGE BY EDUCATIONAL ATTAINMENT!!Population 45 to 64 years", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C06_022EA,S1501_C06_022M,S1501_C06_022MA"}, "S2001_C06_012E": {"label": "Estimate!!Percent Female!!Population 16 years and over with earnings!!FULL-TIME, YEAR-ROUND WORKERS WITH EARNINGS!!$100,000 or more", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S2001", "limit": 0, "attributes": "S2001_C06_012EA,S2001_C06_012M,S2001_C06_012MA"}, "S2101_C04_037E": {"label": "Estimate!!Percent Veterans!!POVERTY STATUS IN THE PAST 12 MONTHS!!Civilian population 18 years and over for whom poverty status is determined!!Income in the past 12 months at or above poverty level", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C04_037EA,S2101_C04_037M,S2101_C04_037MA"}, "S0506_C02_031E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_031EA,S0506_C02_031M,S0506_C02_031MA"}, "S0701PR_C05_042E": {"label": "Estimate!!Moved; from outside Puerto Rico and the U.S.!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$15,000 to $24,999", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C05_042EA,S0701PR_C05_042M,S0701PR_C05_042MA"}, "S1301_C03_006E": {"label": "Estimate!!Percent Distribution!!Women with births in the past 12 months!!Women 15 to 50 years!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Fertility", "predicateType": "float", "group": "S1301", "limit": 0, "attributes": "S1301_C03_006EA,S1301_C03_006M,S1301_C03_006MA"}, "S1501_C06_021E": {"label": "Estimate!!Percent Female!!AGE BY EDUCATIONAL ATTAINMENT!!Population 35 to 44 years!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C06_021EA,S1501_C06_021M,S1501_C06_021MA"}, "S2001_C06_015E": {"label": "Estimate!!Percent Female!!MEDIAN EARNINGS BY EDUCATIONAL ATTAINMENT!!Population 25 years and over with earnings", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C06_015EA,S2001_C06_015M,S2001_C06_015MA"}, "S1301_C03_009E": {"label": "Estimate!!Percent Distribution!!Women with births in the past 12 months!!Women 15 to 50 years!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Fertility", "predicateType": "float", "group": "S1301", "limit": 0, "attributes": "S1301_C03_009EA,S1301_C03_009M,S1301_C03_009MA"}, "S2101_C04_036E": {"label": "Estimate!!Percent Veterans!!POVERTY STATUS IN THE PAST 12 MONTHS!!Civilian population 18 years and over for whom poverty status is determined!!Income in the past 12 months below poverty level", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C04_036EA,S2101_C04_036M,S2101_C04_036MA"}, "S0101_C01_018E": {"label": "Estimate!!Total!!Total population!!AGE!!80 to 84 years", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C01_018EA,S0101_C01_018M,S0101_C01_018MA"}, "S0701PR_C05_041E": {"label": "Estimate!!Moved; from outside Puerto Rico and the U.S.!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$10,000 to $14,999", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C05_041EA,S0701PR_C05_041M,S0701PR_C05_041MA"}, "S1501_C06_024E": {"label": "Estimate!!Percent Female!!AGE BY EDUCATIONAL ATTAINMENT!!Population 45 to 64 years!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C06_024EA,S1501_C06_024M,S1501_C06_024MA"}, "S2001_C06_014E": {"label": "Estimate!!Percent Female!!Population 16 years and over with earnings!!FULL-TIME, YEAR-ROUND WORKERS WITH EARNINGS!!Mean earnings (dollars) for full-time, year-round workers with earnings", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C06_014EA,S2001_C06_014M,S2001_C06_014MA"}, "S1301_C03_008E": {"label": "Estimate!!Percent Distribution!!Women with births in the past 12 months!!Women 15 to 50 years!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Fertility", "predicateType": "float", "group": "S1301", "limit": 0, "attributes": "S1301_C03_008EA,S1301_C03_008M,S1301_C03_008MA"}, "S0101_C01_019E": {"label": "Estimate!!Total!!Total population!!AGE!!85 years and over", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C01_019EA,S0101_C01_019M,S0101_C01_019MA"}, "S2101_C04_035E": {"label": "Estimate!!Percent Veterans!!POVERTY STATUS IN THE PAST 12 MONTHS!!Civilian population 18 years and over for whom poverty status is determined", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C04_035EA,S2101_C04_035M,S2101_C04_035MA"}, "S0701PR_C05_040E": {"label": "Estimate!!Moved; from outside Puerto Rico and the U.S.!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$1 to $9,999 or loss", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C05_040EA,S0701PR_C05_040M,S0701PR_C05_040MA"}, "S1501_C06_023E": {"label": "Estimate!!Percent Female!!AGE BY EDUCATIONAL ATTAINMENT!!Population 45 to 64 years!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C06_023EA,S1501_C06_023M,S1501_C06_023MA"}, "S0701PR_C05_019E": {"label": "Estimate!!Moved; from outside Puerto Rico and the U.S.!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C05_019EA,S0701PR_C05_019M,S0701PR_C05_019MA"}, "S0802_C02_064E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!CLASS OF WORKER!!Self-employed workers in own not incorporated business", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_064EA,S0802_C02_064M,S0802_C02_064MA"}, "S2501_C05_025E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Nonfamily households!!Householder living alone!!Householder 15 to 34 years", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C05_025EA,S2501_C05_025M,S2501_C05_025MA"}, "S0501_C02_128E": {"label": "Estimate!!Native!!Occupied housing units!!VEHICLES AVAILABLE!!None", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_128EA,S0501_C02_128M,S0501_C02_128MA"}, "S0804_C01_014E": {"label": "Estimate!!Total!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_014EA,S0804_C01_014M,S0804_C01_014MA"}, "S0701PR_C05_018E": {"label": "Estimate!!Moved; from outside Puerto Rico and the U.S.!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C05_018EA,S0701PR_C05_018M,S0701PR_C05_018MA"}, "S0802_C02_063E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!CLASS OF WORKER!!Government workers", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_063EA,S0802_C02_063M,S0802_C02_063MA"}, "S2501_C05_024E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Nonfamily households!!Householder living alone", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C05_024EA,S2501_C05_024M,S2501_C05_024MA"}, "S0501_C02_129E": {"label": "Estimate!!Native!!Occupied housing units!!VEHICLES AVAILABLE!!1 or more", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_129EA,S0501_C02_129M,S0501_C02_129MA"}, "S0804_C01_015E": {"label": "Estimate!!Total!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_015EA,S0804_C01_015M,S0804_C01_015MA"}, "S0802_C02_066E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!PLACE OF WORK!!Worked in state of residence", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_066EA,S0802_C02_066M,S0802_C02_066MA"}, "S0501_C02_126E": {"label": "Estimate!!Native!!Occupied housing units!!Median number of rooms", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_126EA,S0501_C02_126M,S0501_C02_126MA"}, "S2501_C05_023E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Nonfamily households", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C05_023EA,S2501_C05_023M,S2501_C05_023MA"}, "S0701PR_C05_017E": {"label": "Estimate!!Moved; from outside Puerto Rico and the U.S.!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C05_017EA,S0701PR_C05_017M,S0701PR_C05_017MA"}, "S0804_C01_016E": {"label": "Estimate!!Total!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_016EA,S0804_C01_016M,S0804_C01_016MA"}, "S0802_C02_065E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!CLASS OF WORKER!!Unpaid family workers", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_065EA,S0802_C02_065M,S0802_C02_065MA"}, "S2501_C05_022E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Other family!!Female householder, no spouse present!!Householder 65 years and over", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C05_022EA,S2501_C05_022M,S2501_C05_022MA"}, "S0701PR_C05_016E": {"label": "Estimate!!Moved; from outside Puerto Rico and the U.S.!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C05_016EA,S0701PR_C05_016M,S0701PR_C05_016MA"}, "S0804_C01_017E": {"label": "Estimate!!Total!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_017EA,S0804_C01_017M,S0804_C01_017MA"}, "S0501_C02_127E": {"label": "Estimate!!Native!!Occupied housing units!!1.01 or more occupants per room", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_127EA,S0501_C02_127M,S0501_C02_127MA"}, "S0804_C01_010E": {"label": "Estimate!!Total!!Workers 16 years and over!!SEX!!Female", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_010EA,S0804_C01_010M,S0804_C01_010MA"}, "S0802_C02_060E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!INDUSTRY!!Public administration", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_060EA,S0802_C02_060M,S0802_C02_060MA"}, "S0701PR_C05_015E": {"label": "Estimate!!Moved; from outside Puerto Rico and the U.S.!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C05_015EA,S0701PR_C05_015M,S0701PR_C05_015MA"}, "S2501_C05_029E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Nonfamily households!!Householder not living alone!!Householder 15 to 34 years", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C05_029EA,S2501_C05_029M,S2501_C05_029MA"}, "S0804_C01_011E": {"label": "Estimate!!Total!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_011EA,S0804_C01_011M,S0804_C01_011MA"}, "S0701PR_C05_014E": {"label": "Estimate!!Moved; from outside Puerto Rico and the U.S.!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C05_014EA,S0701PR_C05_014M,S0701PR_C05_014MA"}, "S2501_C05_028E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Nonfamily households!!Householder not living alone", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C05_028EA,S2501_C05_028M,S2501_C05_028MA"}, "S0802_C02_062E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!CLASS OF WORKER!!Private wage and salary workers", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_062EA,S0802_C02_062M,S0802_C02_062MA"}, "S0701PR_C05_013E": {"label": "Estimate!!Moved; from outside Puerto Rico and the U.S.!!Population 1 year and over!!SEX!!Female", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C05_013EA,S0701PR_C05_013M,S0701PR_C05_013MA"}, "S2501_C05_027E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Nonfamily households!!Householder living alone!!Householder 65 years and over", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C05_027EA,S2501_C05_027M,S2501_C05_027MA"}, "S0804_C01_012E": {"label": "Estimate!!Total!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_012EA,S0804_C01_012M,S0804_C01_012MA"}, "S0802_C02_061E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!INDUSTRY!!Armed forces", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_061EA,S0802_C02_061M,S0802_C02_061MA"}, "S2501_C05_026E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Nonfamily households!!Householder living alone!!Householder 35 to 64 years", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C05_026EA,S2501_C05_026M,S2501_C05_026MA"}, "S0701PR_C05_012E": {"label": "Estimate!!Moved; from outside Puerto Rico and the U.S.!!Population 1 year and over!!SEX!!Male", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C05_012EA,S0701PR_C05_012M,S0701PR_C05_012MA"}, "S0804_C01_013E": {"label": "Estimate!!Total!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_013EA,S0804_C01_013M,S0804_C01_013MA"}, "S2201_C06_030E": {"label": "Estimate!!Percent households not receiving food stamps/SNAP!!Households!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Some other race alone", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C06_030EA,S2201_C06_030M,S2201_C06_030MA"}, "S0501_C02_120E": {"label": "Estimate!!Native!!Occupied housing units!!HOUSING TENURE!!Average household size of renter-occupied unit", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_120EA,S0501_C02_120M,S0501_C02_120MA"}, "S0101_C01_032E": {"label": "Estimate!!Total!!Total population!!SUMMARY INDICATORS!!Median age (years)", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C01_032EA,S0101_C01_032M,S0101_C01_032MA"}, "S0503_C04_015E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Foreign-born population!!SEX AND AGE!!25 to 44 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_015EA,S0503_C04_015M,S0503_C04_015MA"}, "S2201_C06_031E": {"label": "Estimate!!Percent households not receiving food stamps/SNAP!!Households!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Two or more races", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C06_031EA,S2201_C06_031M,S2201_C06_031MA"}, "S0501_C02_121E": {"label": "Estimate!!Native!!Occupied housing units!!ROOMS!!1 room", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_121EA,S0501_C02_121M,S0501_C02_121MA"}, "S0101_C01_033E": {"label": "Estimate!!Total!!Total population!!SUMMARY INDICATORS!!Sex ratio (males per 100 females)", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C01_033EA,S0101_C01_033M,S0101_C01_033MA"}, "S0503_C04_016E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Foreign-born population!!SEX AND AGE!!45 to 54 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_016EA,S0503_C04_016M,S0503_C04_016MA"}, "S0101_C01_030E": {"label": "Estimate!!Total!!Total population!!SELECTED AGE CATEGORIES!!65 years and over", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C01_030EA,S0101_C01_030M,S0101_C01_030MA"}, "S2201_C06_032E": {"label": "Estimate!!Percent households not receiving food stamps/SNAP!!Households!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Hispanic or Latino origin (of any race)", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C06_032EA,S2201_C06_032M,S2201_C06_032MA"}, "S0503_C04_013E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Foreign-born population!!SEX AND AGE!!5 to 17 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_013EA,S0503_C04_013M,S0503_C04_013MA"}, "S0101_C01_031E": {"label": "Estimate!!Total!!Total population!!SELECTED AGE CATEGORIES!!75 years and over", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C01_031EA,S0101_C01_031M,S0101_C01_031MA"}, "S2201_C06_033E": {"label": "Estimate!!Percent households not receiving food stamps/SNAP!!Households!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!White alone, not Hispanic or Latino", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C06_033EA,S2201_C06_033M,S2201_C06_033MA"}, "S0503_C04_014E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Foreign-born population!!SEX AND AGE!!18 to 24 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_014EA,S0503_C04_014M,S0503_C04_014MA"}, "S0501_C02_124E": {"label": "Estimate!!Native!!Occupied housing units!!ROOMS!!6 or 7 rooms", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_124EA,S0501_C02_124M,S0501_C02_124MA"}, "S2201_C06_034E": {"label": "Estimate!!Percent households not receiving food stamps/SNAP!!Households!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Median income (dollars)", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C06_034EA,S2201_C06_034M,S2201_C06_034MA"}, "S2501_C05_021E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Other family!!Female householder, no spouse present!!Householder 35 to 64 years", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C05_021EA,S2501_C05_021M,S2501_C05_021MA"}, "S0503_C04_019E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Foreign-born population!!SEX AND AGE!!75 to 84 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_019EA,S0503_C04_019M,S0503_C04_019MA"}, "S0802_C02_068E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!PLACE OF WORK!!Worked in state of residence!!Worked outside county of residence", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_068EA,S0802_C02_068M,S0802_C02_068MA"}, "S0802_C02_067E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!PLACE OF WORK!!Worked in state of residence!!Worked in county of residence", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_067EA,S0802_C02_067M,S0802_C02_067MA"}, "S0501_C02_125E": {"label": "Estimate!!Native!!Occupied housing units!!ROOMS!!8 or more rooms", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_125EA,S0501_C02_125M,S0501_C02_125MA"}, "S2201_C06_035E": {"label": "Estimate!!Percent households not receiving food stamps/SNAP!!WORK STATUS!!Families", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C06_035EA,S2201_C06_035M,S2201_C06_035MA"}, "S2501_C05_020E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Other family!!Female householder, no spouse present!!Householder 15 to 34 years", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C05_020EA,S2501_C05_020M,S2501_C05_020MA"}, "S0501_C02_122E": {"label": "Estimate!!Native!!Occupied housing units!!ROOMS!!2 or 3 rooms", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_122EA,S0501_C02_122M,S0501_C02_122MA"}, "S2201_C06_036E": {"label": "Estimate!!Percent households not receiving food stamps/SNAP!!WORK STATUS!!Families!!No workers in past 12 months", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C06_036EA,S2201_C06_036M,S2201_C06_036MA"}, "S0503_C04_017E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Foreign-born population!!SEX AND AGE!!55 to 64 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_017EA,S0503_C04_017M,S0503_C04_017MA"}, "S0501_C02_123E": {"label": "Estimate!!Native!!Occupied housing units!!ROOMS!!4 or 5 rooms", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_123EA,S0501_C02_123M,S0501_C02_123MA"}, "S2201_C06_037E": {"label": "Estimate!!Percent households not receiving food stamps/SNAP!!WORK STATUS!!Families!!1 worker in past 12 months", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C06_037EA,S2201_C06_037M,S2201_C06_037MA"}, "S0503_C04_018E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Foreign-born population!!SEX AND AGE!!65 to 74 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_018EA,S0503_C04_018M,S0503_C04_018MA"}, "S0802_C02_069E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!PLACE OF WORK!!Worked outside state of residence", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_069EA,S0802_C02_069M,S0802_C02_069MA"}, "S0502_C03_077E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Civilian employed population 16 years and over!!INDUSTRY!!Manufacturing", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_077EA,S0502_C03_077M,S0502_C03_077MA"}, "S2201_C06_038E": {"label": "Estimate!!Percent households not receiving food stamps/SNAP!!WORK STATUS!!Families!!2 or more workers in past 12 months", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C06_038EA,S2201_C06_038M,S2201_C06_038MA"}, "S1401_C01_032E": {"label": "Estimate!!Total!!Population 18 to 24 years!!Males 18 to 24 years!!Enrolled in college or graduate school", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C01_032EA,S1401_C01_032M,S1401_C01_032MA"}, "S2601A_C03_037E": {"label": "Estimate!!Institutionalized group quarters population!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_037EA,S2601A_C03_037M,S2601A_C03_037MA"}, "S0101_C01_028E": {"label": "Estimate!!Total!!Total population!!SELECTED AGE CATEGORIES!!60 years and over", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C01_028EA,S0101_C01_028M,S0101_C01_028MA"}, "S2405_C01_001E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2405", "limit": 0, "attributes": "S2405_C01_001EA,S2405_C01_001M,S2405_C01_001MA"}, "S1301_C03_031E": {"label": "Estimate!!Percent Distribution!!Women with births in the past 12 months!!PERCENT ALLOCATED!!Marital status", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C03_031EA,S1301_C03_031M,S1301_C03_031MA"}, "S2701_C01_060E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!RATIO OF INCOME TO POVERTY LEVEL IN THE PAST 12 MONTHS!!Civilian noninstitutionalized population for whom poverty status is determined!!At or above 400 percent of the poverty threshold", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C01_060EA,S2701_C01_060M,S2701_C01_060MA"}, "S2601A_C03_038E": {"label": "Estimate!!Institutionalized group quarters population!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_038EA,S2601A_C03_038M,S2601A_C03_038MA"}, "S0502_C03_078E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Civilian employed population 16 years and over!!INDUSTRY!!Wholesale trade", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_078EA,S0502_C03_078M,S0502_C03_078MA"}, "S1401_C01_031E": {"label": "Estimate!!Total!!Population 18 to 24 years!!Males 18 to 24 years", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C01_031EA,S1401_C01_031M,S1401_C01_031MA"}, "S2405_C01_002E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Agriculture, forestry, fishing and hunting, and mining", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2405", "limit": 0, "attributes": "S2405_C01_002EA,S2405_C01_002M,S2405_C01_002MA"}, "S0101_C01_029E": {"label": "Estimate!!Total!!Total population!!SELECTED AGE CATEGORIES!!62 years and over", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C01_029EA,S0101_C01_029M,S0101_C01_029MA"}, "S2601A_C03_036E": {"label": "Estimate!!Institutionalized group quarters population!!MARITAL STATUS!!Population 15 years and over!!Separated", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_036EA,S2601A_C03_036M,S2601A_C03_036MA"}, "S2001_C06_020E": {"label": "Estimate!!Percent Female!!MEDIAN EARNINGS BY EDUCATIONAL ATTAINMENT!!Population 25 years and over with earnings!!Graduate or professional degree", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C06_020EA,S2001_C06_020M,S2001_C06_020MA"}, "S1301_C03_030E": {"label": "Estimate!!Percent Distribution!!Women with births in the past 12 months!!PUBLIC ASSISTANCE INCOME IN THE PAST 12 MONTHS!!Women 15 to 50 years!!Did not receive public assistance income", "concept": "Fertility", "predicateType": "float", "group": "S1301", "limit": 0, "attributes": "S1301_C03_030EA,S1301_C03_030M,S1301_C03_030MA"}, "S2701_C01_061E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!RATIO OF INCOME TO POVERTY LEVEL IN THE PAST 12 MONTHS!!Civilian noninstitutionalized population for whom poverty status is determined!!Below 100 percent of the poverty threshold", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C01_061EA,S2701_C01_061M,S2701_C01_061MA"}, "S2601C_C01_100E": {"label": "Estimate!!Total population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!With earnings for full-time, year-round workers:!!Female", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_100EA,S2601C_C01_100M,S2601C_C01_100MA"}, "S0502_C03_075E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Civilian employed population 16 years and over!!INDUSTRY!!Agriculture, forestry, fishing and hunting, and mining", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_075EA,S0502_C03_075M,S0502_C03_075MA"}, "S2405_C01_003E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Construction", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2405", "limit": 0, "attributes": "S2405_C01_003EA,S2405_C01_003M,S2405_C01_003MA"}, "S1401_C01_030E": {"label": "Estimate!!Total!!Population 18 to 24 years!!Enrolled in college or graduate school", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C01_030EA,S1401_C01_030M,S1401_C01_030MA"}, "S0101_C01_026E": {"label": "Estimate!!Total!!Total population!!SELECTED AGE CATEGORIES!!18 years and over", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C01_026EA,S0101_C01_026M,S0101_C01_026MA"}, "S0502_C03_076E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Civilian employed population 16 years and over!!INDUSTRY!!Construction", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_076EA,S0502_C03_076M,S0502_C03_076MA"}, "S2405_C01_004E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Manufacturing", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2405", "limit": 0, "attributes": "S2405_C01_004EA,S2405_C01_004M,S2405_C01_004MA"}, "S0101_C01_027E": {"label": "Estimate!!Total!!Total population!!SELECTED AGE CATEGORIES!!21 years and over", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C01_027EA,S0101_C01_027M,S0101_C01_027MA"}, "S1301_C03_032E": {"label": "Estimate!!Percent Distribution!!Women with births in the past 12 months!!PERCENT ALLOCATED!!Fertility", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C03_032EA,S1301_C03_032M,S1301_C03_032MA"}, "S2601A_C03_039E": {"label": "Estimate!!Institutionalized group quarters population!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Nursery school through 12th grade", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_039EA,S2601A_C03_039M,S2601A_C03_039MA"}, "S0101_C01_024E": {"label": "Estimate!!Total!!Total population!!SELECTED AGE CATEGORIES!!15 to 44 years", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C01_024EA,S0101_C01_024M,S0101_C01_024MA"}, "S0503_C04_011E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Foreign-born population!!SEX AND AGE!!Female", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_011EA,S0503_C04_011M,S0503_C04_011MA"}, "S2405_C01_005E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Wholesale trade", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2405", "limit": 0, "attributes": "S2405_C01_005EA,S2405_C01_005M,S2405_C01_005MA"}, "S2601A_C03_033E": {"label": "Estimate!!Institutionalized group quarters population!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_033EA,S2601A_C03_033M,S2601A_C03_033MA"}, "S2002_C02_052E": {"label": "Estimate!!Male!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Professional, scientific, and technical services", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C02_052EA,S2002_C02_052M,S2002_C02_052MA"}, "S0503_C04_012E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Foreign-born population!!SEX AND AGE!!Under 5 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_012EA,S0503_C04_012M,S0503_C04_012MA"}, "S2002_C02_050E": {"label": "Estimate!!Male!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Finance and insurance", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C02_050EA,S2002_C02_050M,S2002_C02_050MA"}, "S0101_C01_025E": {"label": "Estimate!!Total!!Total population!!SELECTED AGE CATEGORIES!!16 years and over", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C01_025EA,S0101_C01_025M,S0101_C01_025MA"}, "S2601A_C03_032E": {"label": "Estimate!!Institutionalized group quarters population!!MARITAL STATUS!!Population 15 years and over", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_032EA,S2601A_C03_032M,S2601A_C03_032MA"}, "S2002_C02_051E": {"label": "Estimate!!Male!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Real estate and rental and leasing", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C02_051EA,S2002_C02_051M,S2002_C02_051MA"}, "S2405_C01_006E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Retail trade", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2405", "limit": 0, "attributes": "S2405_C01_006EA,S2405_C01_006M,S2405_C01_006MA"}, "S0101_C01_022E": {"label": "Estimate!!Total!!Total population!!SELECTED AGE CATEGORIES!!Under 18 years", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C01_022EA,S0101_C01_022M,S0101_C01_022MA"}, "S0502_C03_079E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Civilian employed population 16 years and over!!INDUSTRY!!Retail trade", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_079EA,S0502_C03_079M,S0502_C03_079MA"}, "S1401_C01_034E": {"label": "Estimate!!Total!!Population 18 to 24 years!!Females 18 to 24 years!!Enrolled in college or graduate school", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C01_034EA,S1401_C01_034M,S1401_C01_034MA"}, "S2601A_C03_035E": {"label": "Estimate!!Institutionalized group quarters population!!MARITAL STATUS!!Population 15 years and over!!Divorced", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_035EA,S2601A_C03_035M,S2601A_C03_035MA"}, "S2405_C01_007E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Transportation and warehousing, and utilities", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2405", "limit": 0, "attributes": "S2405_C01_007EA,S2405_C01_007M,S2405_C01_007MA"}, "S2002_C02_054E": {"label": "Estimate!!Male!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Administrative and support and waste management services", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C02_054EA,S2002_C02_054M,S2002_C02_054MA"}, "S0101_C01_023E": {"label": "Estimate!!Total!!Total population!!SELECTED AGE CATEGORIES!!18 to 24 years", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C01_023EA,S0101_C01_023M,S0101_C01_023MA"}, "S0503_C04_010E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Foreign-born population!!SEX AND AGE!!Male", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_010EA,S0503_C04_010M,S0503_C04_010MA"}, "S1401_C01_033E": {"label": "Estimate!!Total!!Population 18 to 24 years!!Females 18 to 24 years", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C01_033EA,S1401_C01_033M,S1401_C01_033MA"}, "S2601A_C03_034E": {"label": "Estimate!!Institutionalized group quarters population!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_034EA,S2601A_C03_034M,S2601A_C03_034MA"}, "S2405_C01_008E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Information", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2405", "limit": 0, "attributes": "S2405_C01_008EA,S2405_C01_008M,S2405_C01_008MA"}, "S2002_C02_053E": {"label": "Estimate!!Male!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Management of companies and enterprises", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C02_053EA,S2002_C02_053M,S2002_C02_053MA"}, "S0701PR_C05_011E": {"label": "Estimate!!Moved; from outside Puerto Rico and the U.S.!!Population 1 year and over!!AGE!!Median age (years)", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C05_011EA,S0701PR_C05_011M,S0701PR_C05_011MA"}, "S2601C_C01_108E": {"label": "Estimate!!Total population!!POVERTY RATES FOR PEOPLE FOR WHOM POVERTY STATUS IS DETERMINED!!All people!!18 to 64 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_108EA,S2601C_C01_108M,S2601C_C01_108MA"}, "S2002_C02_056E": {"label": "Estimate!!Male!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Health care and social assistance", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C02_056EA,S2002_C02_056M,S2002_C02_056MA"}, "S2405_C01_009E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Finance and insurance, and real estate and rental and leasing", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2405", "limit": 0, "attributes": "S2405_C01_009EA,S2405_C01_009M,S2405_C01_009MA"}, "S0502_C03_070E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Civilian employed population 16 years and over!!OCCUPATION!!Management, business, science, and arts occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_070EA,S0502_C03_070M,S0502_C03_070MA"}, "S0701PR_C05_010E": {"label": "Estimate!!Moved; from outside Puerto Rico and the U.S.!!Population 1 year and over!!AGE!!75 years and over", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C05_010EA,S0701PR_C05_010M,S0701PR_C05_010MA"}, "S2601C_C01_109E": {"label": "Estimate!!Total population!!POVERTY RATES FOR PEOPLE FOR WHOM POVERTY STATUS IS DETERMINED!!All people!!65 years and over", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_109EA,S2601C_C01_109M,S2601C_C01_109MA"}, "S2002_C02_055E": {"label": "Estimate!!Male!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Educational services", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C02_055EA,S2002_C02_055M,S2002_C02_055MA"}, "S2601C_C01_106E": {"label": "Estimate!!Total population!!POVERTY RATES FOR PEOPLE FOR WHOM POVERTY STATUS IS DETERMINED!!All people", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_106EA,S2601C_C01_106M,S2601C_C01_106MA"}, "S2601A_C03_031E": {"label": "Estimate!!Institutionalized group quarters population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!White alone, Not Hispanic or Latino", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_031EA,S2601A_C03_031M,S2601A_C03_031MA"}, "S2002_C02_058E": {"label": "Estimate!!Male!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Accommodation and food services", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C02_058EA,S2002_C02_058M,S2002_C02_058MA"}, "S2601C_C01_107E": {"label": "Estimate!!Total population!!POVERTY RATES FOR PEOPLE FOR WHOM POVERTY STATUS IS DETERMINED!!All people!!18 years and over", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_107EA,S2601C_C01_107M,S2601C_C01_107MA"}, "S2601A_C03_030E": {"label": "Estimate!!Institutionalized group quarters population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!Not Hispanic or Latino", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_030EA,S2601A_C03_030M,S2601A_C03_030MA"}, "S2002_C02_057E": {"label": "Estimate!!Male!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Arts, entertainment, and recreation", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C02_057EA,S2002_C02_057M,S2002_C02_057MA"}, "S0502_C03_073E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Civilian employed population 16 years and over!!OCCUPATION!!Natural resources, construction, and maintenance occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_073EA,S0502_C03_073M,S0502_C03_073MA"}, "S2601C_C01_104E": {"label": "Estimate!!Total population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!Median earnings (dollars) full-time, year-round workers:!!Female", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_104EA,S2601C_C01_104M,S2601C_C01_104MA"}, "S2601C_C01_103E": {"label": "Estimate!!Total population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!Median earnings (dollars) full-time, year-round workers:!!Male", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_103EA,S2601C_C01_103M,S2601C_C01_103MA"}, "S0804_C01_018E": {"label": "Estimate!!Total!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_018EA,S0804_C01_018M,S0804_C01_018MA"}, "S0502_C03_074E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Civilian employed population 16 years and over!!OCCUPATION!!Production, transportation, and material moving occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_074EA,S0502_C03_074M,S0502_C03_074MA"}, "S2601C_C01_105E": {"label": "Estimate!!Total population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!With Food Stamp/SNAP benefits", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_105EA,S2601C_C01_105M,S2601C_C01_105MA"}, "S0804_C01_019E": {"label": "Estimate!!Total!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_019EA,S0804_C01_019M,S0804_C01_019MA"}, "S2002_C02_059E": {"label": "Estimate!!Male!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Other services (except public administration)", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C02_059EA,S2002_C02_059M,S2002_C02_059MA"}, "S0502_C03_071E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Civilian employed population 16 years and over!!OCCUPATION!!Service occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_071EA,S0502_C03_071M,S0502_C03_071MA"}, "S2601C_C01_101E": {"label": "Estimate!!Total population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!Mean earnings (dollars) for full-time, year-round workers:!!Male", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_101EA,S2601C_C01_101M,S2601C_C01_101MA"}, "S0502_C03_072E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Civilian employed population 16 years and over!!OCCUPATION!!Sales and office occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_072EA,S0502_C03_072M,S0502_C03_072MA"}, "S2601C_C01_102E": {"label": "Estimate!!Total population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!Mean earnings (dollars) for full-time, year-round workers:!!Female", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_102EA,S2601C_C01_102M,S2601C_C01_102MA"}, "S0802_C02_052E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!INDUSTRY!!Wholesale trade", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_052EA,S0802_C02_052M,S0802_C02_052MA"}, "S0506_C02_006E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_006EA,S0506_C02_006M,S0506_C02_006MA"}, "S2501_C05_013E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Married-couple family!!Householder 65 years and over", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C05_013EA,S2501_C05_013M,S2501_C05_013MA"}, "S0804_C01_002E": {"label": "Estimate!!Total!!Workers 16 years and over!!AGE!!16 to 19 years", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_002EA,S0804_C01_002M,S0804_C01_002MA"}, "S0802_C02_051E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!INDUSTRY!!Manufacturing", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_051EA,S0802_C02_051M,S0802_C02_051MA"}, "S2501_C05_012E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Married-couple family!!Householder 35 to 64 years", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C05_012EA,S2501_C05_012M,S2501_C05_012MA"}, "S0506_C02_007E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen!!Entered 2010 or later", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_007EA,S0506_C02_007M,S0506_C02_007MA"}, "S0804_C01_003E": {"label": "Estimate!!Total!!Workers 16 years and over!!AGE!!20 to 24 years", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_003EA,S0804_C01_003M,S0804_C01_003MA"}, "S0802_C02_054E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!INDUSTRY!!Transportation and warehousing, and utilities", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_054EA,S0802_C02_054M,S0802_C02_054MA"}, "S0701PR_C05_029E": {"label": "Estimate!!Moved; from outside Puerto Rico and the U.S.!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C05_029EA,S0701PR_C05_029M,S0701PR_C05_029MA"}, "S2501_C05_011E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Married-couple family!!Householder 15 to 34 years", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C05_011EA,S2501_C05_011M,S2501_C05_011MA"}, "S0506_C02_004E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen!!Entered 2000 to 2009", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_004EA,S0506_C02_004M,S0506_C02_004MA"}, "S0503_C04_009E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen!!Entered before 2000", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_009EA,S0503_C04_009M,S0503_C04_009MA"}, "S0804_C01_004E": {"label": "Estimate!!Total!!Workers 16 years and over!!AGE!!25 to 44 years", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_004EA,S0804_C01_004M,S0804_C01_004MA"}, "S0802_C02_053E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!INDUSTRY!!Retail trade", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_053EA,S0802_C02_053M,S0802_C02_053MA"}, "S0506_C02_005E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen!!Entered before 2000", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_005EA,S0506_C02_005M,S0506_C02_005MA"}, "S2501_C05_010E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Married-couple family", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C05_010EA,S2501_C05_010M,S2501_C05_010MA"}, "S0701PR_C05_028E": {"label": "Estimate!!Moved; from outside Puerto Rico and the U.S.!!MARITAL STATUS!!Population 15 years and over", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C05_028EA,S0701PR_C05_028M,S0701PR_C05_028MA"}, "S0804_C01_005E": {"label": "Estimate!!Total!!Workers 16 years and over!!AGE!!45 to 54 years", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_005EA,S0804_C01_005M,S0804_C01_005MA"}, "S0506_C02_002E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_002EA,S0506_C02_002M,S0506_C02_002MA"}, "S0701PR_C05_027E": {"label": "Estimate!!Moved; from outside Puerto Rico and the U.S.!!Population 1 year and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born!!Not a U.S. citizen", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C05_027EA,S0701PR_C05_027M,S0701PR_C05_027MA"}, "S2501_C05_017E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Other family!!Male householder, no spouse present!!Householder 35 to 64 years", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C05_017EA,S2501_C05_017M,S2501_C05_017MA"}, "S1601_C04_019E": {"label": "Estimate!!Percent speak English only or speak English \"very well\"!!Percent of specified language speakers!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Other languages!!65 years old and over", "concept": "Language Spoken at Home", "predicateType": "float", "group": "S1601", "limit": 0, "attributes": "S1601_C04_019EA,S1601_C04_019M,S1601_C04_019MA"}, "S0701PR_C05_026E": {"label": "Estimate!!Moved; from outside Puerto Rico and the U.S.!!Population 1 year and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born!!Naturalized U.S. citizen", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C05_026EA,S0701PR_C05_026M,S0701PR_C05_026MA"}, "S0506_C02_003E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen!!Entered 2010 or later", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_003EA,S0506_C02_003M,S0506_C02_003MA"}, "S2501_C05_016E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Other family!!Male householder, no spouse present!!Householder 15 to 34 years", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C05_016EA,S2501_C05_016M,S2501_C05_016MA"}, "S1601_C04_018E": {"label": "Estimate!!Percent speak English only or speak English \"very well\"!!Percent of specified language speakers!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Other languages!!18 to 64 years old", "concept": "Language Spoken at Home", "predicateType": "float", "group": "S1601", "limit": 0, "attributes": "S1601_C04_018EA,S1601_C04_018M,S1601_C04_018MA"}, "S0802_C02_050E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!INDUSTRY!!Construction", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_050EA,S0802_C02_050M,S0802_C02_050MA"}, "S2501_C05_015E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Other family!!Male householder, no spouse present", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C05_015EA,S2501_C05_015M,S2501_C05_015MA"}, "S0701PR_C05_025E": {"label": "Estimate!!Moved; from outside Puerto Rico and the U.S.!!Population 1 year and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C05_025EA,S0701PR_C05_025M,S0701PR_C05_025MA"}, "S1601_C04_017E": {"label": "Estimate!!Percent speak English only or speak English \"very well\"!!Percent of specified language speakers!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Other languages!!5 to 17 years old", "concept": "Language Spoken at Home", "predicateType": "float", "group": "S1601", "limit": 0, "attributes": "S1601_C04_017EA,S1601_C04_017M,S1601_C04_017MA"}, "S2501_C05_014E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Other family", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C05_014EA,S2501_C05_014M,S2501_C05_014MA"}, "S0701PR_C05_024E": {"label": "Estimate!!Moved; from outside Puerto Rico and the U.S.!!Population 1 year and over!!NATIVITY AND CITIZENSHIP STATUS!!Native", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C05_024EA,S0701PR_C05_024M,S0701PR_C05_024MA"}, "S0506_C02_001E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Foreign-born population", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C02_001EA,S0506_C02_001M,S0506_C02_001MA"}, "S1601_C04_016E": {"label": "Estimate!!Percent speak English only or speak English \"very well\"!!Percent of specified language speakers!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Other languages", "concept": "Language Spoken at Home", "predicateType": "float", "group": "S1601", "limit": 0, "attributes": "S1601_C04_016EA,S1601_C04_016M,S1601_C04_016MA"}, "S0804_C01_001E": {"label": "Estimate!!Total!!Workers 16 years and over", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "int", "group": "S0804", "limit": 0, "attributes": "S0804_C01_001EA,S0804_C01_001M,S0804_C01_001MA"}, "S0501_C02_132E": {"label": "Estimate!!Native!!Owner-occupied housing units", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C02_132EA,S0501_C02_132M,S0501_C02_132MA"}, "S0503_C04_003E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen!!Entered 2010 or later", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_003EA,S0503_C04_003M,S0503_C04_003MA"}, "S0501_C02_133E": {"label": "Estimate!!Native!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_133EA,S0501_C02_133M,S0501_C02_133MA"}, "S0503_C04_004E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen!!Entered 2000 to 2009", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_004EA,S0503_C04_004M,S0503_C04_004MA"}, "S0802_C02_059E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!INDUSTRY!!Other services (except public administration)", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_059EA,S0802_C02_059M,S0802_C02_059MA"}, "S0503_C04_001E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Foreign-born population", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C04_001EA,S0503_C04_001M,S0503_C04_001MA"}, "S0501_C02_130E": {"label": "Estimate!!Native!!Occupied housing units!!SELECTED CHARACTERISTICS!!No telephone service available", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_130EA,S0501_C02_130M,S0501_C02_130MA"}, "S0501_C02_131E": {"label": "Estimate!!Native!!Occupied housing units!!SELECTED CHARACTERISTICS!!Limited English Speaking Households", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_131EA,S0501_C02_131M,S0501_C02_131MA"}, "S0503_C04_002E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_002EA,S0503_C04_002M,S0503_C04_002MA"}, "S0802_C02_056E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!INDUSTRY!!Professional, scientific, management, and administrative and waste management services", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_056EA,S0802_C02_056M,S0802_C02_056MA"}, "S0501_C02_136E": {"label": "Estimate!!Native!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_136EA,S0501_C02_136M,S0501_C02_136MA"}, "S2506_C02_066E": {"label": "Estimate!!Percent owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!REAL ESTATE TAXES!!Median (dollars)", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "int", "group": "S2506", "limit": 0, "attributes": "S2506_C02_066EA,S2506_C02_066M,S2506_C02_066MA"}, "S0503_C04_007E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen!!Entered 2010 or later", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_007EA,S0503_C04_007M,S0503_C04_007MA"}, "S0802_C02_055E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!INDUSTRY!!Information and finance and insurance, and real estate and rental and leasing", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_055EA,S0802_C02_055M,S0802_C02_055MA"}, "S0501_C02_137E": {"label": "Estimate!!Native!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_137EA,S0501_C02_137M,S0501_C02_137MA"}, "S2405_C01_010E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Professional, scientific, and management, and administrative and waste management services", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2405", "limit": 0, "attributes": "S2405_C01_010EA,S2405_C01_010M,S2405_C01_010MA"}, "S0503_C04_008E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen!!Entered 2000 to 2009", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_008EA,S0503_C04_008M,S0503_C04_008MA"}, "S0501_C02_134E": {"label": "Estimate!!Native!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_134EA,S0501_C02_134M,S0501_C02_134MA"}, "S0506_C02_008E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen!!Entered 2000 to 2009", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_008EA,S0506_C02_008M,S0506_C02_008MA"}, "S2405_C01_011E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Educational services, and health care and social assistance", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2405", "limit": 0, "attributes": "S2405_C01_011EA,S2405_C01_011M,S2405_C01_011MA"}, "S2506_C02_064E": {"label": "Estimate!!Percent owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!REAL ESTATE TAXES!!$1,500 or more", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "float", "group": "S2506", "limit": 0, "attributes": "S2506_C02_064EA,S2506_C02_064M,S2506_C02_064MA"}, "S0503_C04_005E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen!!Entered before 2000", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_005EA,S0503_C04_005M,S0503_C04_005MA"}, "S0802_C02_058E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!INDUSTRY!!Arts, entertainment, and recreation, and accommodation and food services", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_058EA,S0802_C02_058M,S0802_C02_058MA"}, "S0506_C02_009E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen!!Entered before 2000", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_009EA,S0506_C02_009M,S0506_C02_009MA"}, "S0501_C02_135E": {"label": "Estimate!!Native!!Renter-occupied housing units", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C02_135EA,S0501_C02_135M,S0501_C02_135MA"}, "S2405_C01_012E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Arts, entertainment, and recreation, and accommodation and food services", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2405", "limit": 0, "attributes": "S2405_C01_012EA,S2405_C01_012M,S2405_C01_012MA"}, "S2506_C02_065E": {"label": "Estimate!!Percent owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!REAL ESTATE TAXES!!No real estate taxes paid", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "float", "group": "S2506", "limit": 0, "attributes": "S2506_C02_065EA,S2506_C02_065M,S2506_C02_065MA"}, "S0503_C04_006E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_006EA,S0503_C04_006M,S0503_C04_006MA"}, "S0802_C02_057E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!INDUSTRY!!Educational services, and health care and social assistance", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_057EA,S0802_C02_057M,S0802_C02_057MA"}, "S0502_C03_089E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$1 to $9,999 or loss", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_089EA,S0502_C03_089M,S0502_C03_089MA"}, "S2405_C01_013E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Other services, except public administration", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2405", "limit": 0, "attributes": "S2405_C01_013EA,S2405_C01_013M,S2405_C01_013MA"}, "S2405_C01_014E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Public administration", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2405", "limit": 0, "attributes": "S2405_C01_014EA,S2405_C01_014M,S2405_C01_014MA"}, "S2601A_C03_048E": {"label": "Estimate!!Institutionalized group quarters population!!DISABILITY STATUS!!Population under 18 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_048EA,S2601A_C03_048M,S2601A_C03_048MA"}, "S2601A_C03_049E": {"label": "Estimate!!Institutionalized group quarters population!!DISABILITY STATUS!!Population under 18 years!!With a disability", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_049EA,S2601A_C03_049M,S2601A_C03_049MA"}, "S0502_C03_087E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Civilian employed population 16 years and over!!INDUSTRY!!Public administration", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_087EA,S0502_C03_087M,S0502_C03_087MA"}, "S2405_C01_015E": {"label": "Estimate!!Total!!PERCENT ALLOCATED!!Industry", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2405", "limit": 0, "attributes": "S2405_C01_015EA,S2405_C01_015M,S2405_C01_015MA"}, "S0101_C01_038E": {"label": "Estimate!!Total!!Total population!!PERCENT ALLOCATED!!Age", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C01_038EA,S0101_C01_038M,S0101_C01_038MA"}, "S1301_C03_021E": {"label": "Estimate!!Percent Distribution!!Women with births in the past 12 months!!Women 15 to 50 years!!EDUCATIONAL ATTAINMENT!!Graduate or professional degree", "concept": "Fertility", "predicateType": "float", "group": "S1301", "limit": 0, "attributes": "S1301_C03_021EA,S1301_C03_021M,S1301_C03_021MA"}, "S2701_C01_050E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!WORK EXPERIENCE!!Civilian noninstitutionalized population 19 to 64 years!!Did not work", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C01_050EA,S2701_C01_050M,S2701_C01_050MA"}, "S0502_C03_088E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C03_088EA,S0502_C03_088M,S0502_C03_088MA"}, "S1301_C03_020E": {"label": "Estimate!!Percent Distribution!!Women with births in the past 12 months!!Women 15 to 50 years!!EDUCATIONAL ATTAINMENT!!Bachelor's degree", "concept": "Fertility", "predicateType": "float", "group": "S1301", "limit": 0, "attributes": "S1301_C03_020EA,S1301_C03_020M,S1301_C03_020MA"}, "S2701_C01_051E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!HOUSEHOLD INCOME (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Total household population", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C01_051EA,S2701_C01_051M,S2701_C01_051MA"}, "S2601A_C03_045E": {"label": "Estimate!!Institutionalized group quarters population!!VETERAN STATUS!!Civilian population 18 years and over!!Civilian veteran", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_045EA,S2601A_C03_045M,S2601A_C03_045MA"}, "S0101_C01_036E": {"label": "Estimate!!Total!!Total population!!SUMMARY INDICATORS!!Child dependency ratio", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C01_036EA,S0101_C01_036M,S0101_C01_036MA"}, "S2701_C01_052E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!HOUSEHOLD INCOME (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Total household population!!Under $25,000", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C01_052EA,S2701_C01_052M,S2701_C01_052MA"}, "S2002_C02_040E": {"label": "Estimate!!Male!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Material moving occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C02_040EA,S2002_C02_040M,S2002_C02_040MA"}, "S1301_C03_023E": {"label": "Estimate!!Percent Distribution!!Women with births in the past 12 months!!POVERTY STATUS IN THE PAST 12 MONTHS!!Women 15 to 50 years for whom poverty status is determined!!Below 100 percent of poverty level", "concept": "Fertility", "predicateType": "float", "group": "S1301", "limit": 0, "attributes": "S1301_C03_023EA,S1301_C03_023M,S1301_C03_023MA"}, "S0101_C01_037E": {"label": "Estimate!!Total!!Total population!!PERCENT ALLOCATED!!Sex", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C01_037EA,S0101_C01_037M,S0101_C01_037MA"}, "S2601A_C03_044E": {"label": "Estimate!!Institutionalized group quarters population!!VETERAN STATUS!!Civilian population 18 years and over", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_044EA,S2601A_C03_044M,S2601A_C03_044MA"}, "S2701_C01_053E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!HOUSEHOLD INCOME (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Total household population!!$25,000 to $49,999", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C01_053EA,S2701_C01_053M,S2701_C01_053MA"}, "S1301_C03_022E": {"label": "Estimate!!Percent Distribution!!Women with births in the past 12 months!!POVERTY STATUS IN THE PAST 12 MONTHS!!Women 15 to 50 years for whom poverty status is determined", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C03_022EA,S1301_C03_022M,S1301_C03_022MA"}, "S0101_C01_034E": {"label": "Estimate!!Total!!Total population!!SUMMARY INDICATORS!!Age dependency ratio", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C01_034EA,S0101_C01_034M,S0101_C01_034MA"}, "S2601A_C03_047E": {"label": "Estimate!!Institutionalized group quarters population!!DISABILITY STATUS!!Total population!!With a disability", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_047EA,S2601A_C03_047M,S2601A_C03_047MA"}, "S2002_C02_042E": {"label": "Estimate!!Male!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Mining, quarrying, and oil and gas extraction", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C02_042EA,S2002_C02_042M,S2002_C02_042MA"}, "S1301_C03_025E": {"label": "Estimate!!Percent Distribution!!Women with births in the past 12 months!!POVERTY STATUS IN THE PAST 12 MONTHS!!Women 15 to 50 years for whom poverty status is determined!!200 percent or more above poverty level", "concept": "Fertility", "predicateType": "float", "group": "S1301", "limit": 0, "attributes": "S1301_C03_025EA,S1301_C03_025M,S1301_C03_025MA"}, "S2701_C01_054E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!HOUSEHOLD INCOME (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Total household population!!$50,000 to $74,999", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C01_054EA,S2701_C01_054M,S2701_C01_054MA"}, "S0101_C01_035E": {"label": "Estimate!!Total!!Total population!!SUMMARY INDICATORS!!Old-age dependency ratio", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C01_035EA,S0101_C01_035M,S0101_C01_035MA"}, "S2601A_C03_046E": {"label": "Estimate!!Institutionalized group quarters population!!DISABILITY STATUS!!Total population", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_046EA,S2601A_C03_046M,S2601A_C03_046MA"}, "S2002_C02_041E": {"label": "Estimate!!Male!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Agriculture, forestry, fishing and hunting", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C02_041EA,S2002_C02_041M,S2002_C02_041MA"}, "S1301_C03_024E": {"label": "Estimate!!Percent Distribution!!Women with births in the past 12 months!!POVERTY STATUS IN THE PAST 12 MONTHS!!Women 15 to 50 years for whom poverty status is determined!!100 to 199 percent of poverty level", "concept": "Fertility", "predicateType": "float", "group": "S1301", "limit": 0, "attributes": "S1301_C03_024EA,S1301_C03_024M,S1301_C03_024MA"}, "S2701_C01_055E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!HOUSEHOLD INCOME (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Total household population!!$75,000 to $99,999", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C01_055EA,S2701_C01_055M,S2701_C01_055MA"}, "S0502_C03_081E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Civilian employed population 16 years and over!!INDUSTRY!!Information", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_081EA,S0502_C03_081M,S0502_C03_081MA"}, "S0701PR_C05_023E": {"label": "Estimate!!Moved; from outside Puerto Rico and the U.S.!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C05_023EA,S0701PR_C05_023M,S0701PR_C05_023MA"}, "S2601A_C03_041E": {"label": "Estimate!!Institutionalized group quarters population!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_041EA,S2601A_C03_041M,S2601A_C03_041MA"}, "S2002_C02_044E": {"label": "Estimate!!Male!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Manufacturing", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C02_044EA,S2002_C02_044M,S2002_C02_044MA"}, "S0506_C02_010E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Foreign-born population!!SEX AND AGE!!Male", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_010EA,S0506_C02_010M,S0506_C02_010MA"}, "S1301_C03_027E": {"label": "Estimate!!Percent Distribution!!Women with births in the past 12 months!!LABOR FORCE STATUS!!Women 16 to 50 years!!In labor force", "concept": "Fertility", "predicateType": "float", "group": "S1301", "limit": 0, "attributes": "S1301_C03_027EA,S1301_C03_027M,S1301_C03_027MA"}, "S1501_C06_002E": {"label": "Estimate!!Percent Female!!AGE BY EDUCATIONAL ATTAINMENT!!Population 18 to 24 years!!Less than high school graduate", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C06_002EA,S1501_C06_002M,S1501_C06_002MA"}, "S2701_C01_056E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!HOUSEHOLD INCOME (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Total household population!!$100,000 and over", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C01_056EA,S2701_C01_056M,S2701_C01_056MA"}, "S2601A_C03_040E": {"label": "Estimate!!Institutionalized group quarters population!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!College or graduate school", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_040EA,S2601A_C03_040M,S2601A_C03_040MA"}, "S0701PR_C05_022E": {"label": "Estimate!!Moved; from outside Puerto Rico and the U.S.!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C05_022EA,S0701PR_C05_022M,S0701PR_C05_022MA"}, "S0502_C03_082E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Civilian employed population 16 years and over!!INDUSTRY!!Finance and insurance, and real estate and rental and leasing", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_082EA,S0502_C03_082M,S0502_C03_082MA"}, "S0506_C02_011E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Foreign-born population!!SEX AND AGE!!Female", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_011EA,S0506_C02_011M,S0506_C02_011MA"}, "S2002_C02_043E": {"label": "Estimate!!Male!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Construction", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C02_043EA,S2002_C02_043M,S2002_C02_043MA"}, "S1301_C03_026E": {"label": "Estimate!!Percent Distribution!!Women with births in the past 12 months!!LABOR FORCE STATUS!!Women 16 to 50 years", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C03_026EA,S1301_C03_026M,S1301_C03_026MA"}, "S1501_C06_001E": {"label": "Estimate!!Percent Female!!AGE BY EDUCATIONAL ATTAINMENT!!Population 18 to 24 years", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C06_001EA,S1501_C06_001M,S1501_C06_001MA"}, "S2701_C01_057E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!RATIO OF INCOME TO POVERTY LEVEL IN THE PAST 12 MONTHS!!Civilian noninstitutionalized population for whom poverty status is determined", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C01_057EA,S2701_C01_057M,S2701_C01_057MA"}, "S1501_C06_004E": {"label": "Estimate!!Percent Female!!AGE BY EDUCATIONAL ATTAINMENT!!Population 18 to 24 years!!Some college or associate's degree", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C06_004EA,S1501_C06_004M,S1501_C06_004MA"}, "S0701PR_C05_021E": {"label": "Estimate!!Moved; from outside Puerto Rico and the U.S.!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C05_021EA,S0701PR_C05_021M,S0701PR_C05_021MA"}, "S2601A_C03_043E": {"label": "Estimate!!Institutionalized group quarters population!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree or higher", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_043EA,S2601A_C03_043M,S2601A_C03_043MA"}, "S2002_C02_046E": {"label": "Estimate!!Male!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Retail trade", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C02_046EA,S2002_C02_046M,S2002_C02_046MA"}, "S2501_C05_019E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Other family!!Female householder, no spouse present", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C05_019EA,S2501_C05_019M,S2501_C05_019MA"}, "S1301_C03_029E": {"label": "Estimate!!Percent Distribution!!Women with births in the past 12 months!!PUBLIC ASSISTANCE INCOME IN THE PAST 12 MONTHS!!Women 15 to 50 years!!Received public assistance income", "concept": "Fertility", "predicateType": "float", "group": "S1301", "limit": 0, "attributes": "S1301_C03_029EA,S1301_C03_029M,S1301_C03_029MA"}, "S2701_C01_058E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!RATIO OF INCOME TO POVERTY LEVEL IN THE PAST 12 MONTHS!!Civilian noninstitutionalized population for whom poverty status is determined!!Below 138 percent of the poverty threshold", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C01_058EA,S2701_C01_058M,S2701_C01_058MA"}, "S1601_C04_024E": {"label": "Estimate!!Percent speak English only or speak English \"very well\"!!Percent of specified language speakers!!CITIZENS 18 YEARS AND OVER!!All citizens 18 years old and over!!Speak a language other than English!!Other languages", "concept": "Language Spoken at Home", "predicateType": "float", "group": "S1601", "limit": 0, "attributes": "S1601_C04_024EA,S1601_C04_024M,S1601_C04_024MA"}, "S1501_C06_003E": {"label": "Estimate!!Percent Female!!AGE BY EDUCATIONAL ATTAINMENT!!Population 18 to 24 years!!High school graduate (includes equivalency)", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C06_003EA,S1501_C06_003M,S1501_C06_003MA"}, "S0502_C03_080E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Civilian employed population 16 years and over!!INDUSTRY!!Transportation and warehousing, and utilities", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_080EA,S0502_C03_080M,S0502_C03_080MA"}, "S2601A_C03_042E": {"label": "Estimate!!Institutionalized group quarters population!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate or higher", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_042EA,S2601A_C03_042M,S2601A_C03_042MA"}, "S2002_C02_045E": {"label": "Estimate!!Male!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Wholesale trade", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C02_045EA,S2002_C02_045M,S2002_C02_045MA"}, "S2501_C05_018E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Other family!!Male householder, no spouse present!!Householder 65 years and over", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C05_018EA,S2501_C05_018M,S2501_C05_018MA"}, "S0701PR_C05_020E": {"label": "Estimate!!Moved; from outside Puerto Rico and the U.S.!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C05_020EA,S0701PR_C05_020M,S0701PR_C05_020MA"}, "S1301_C03_028E": {"label": "Estimate!!Percent Distribution!!Women with births in the past 12 months!!PUBLIC ASSISTANCE INCOME IN THE PAST 12 MONTHS!!Women 15 to 50 years", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C03_028EA,S1301_C03_028M,S1301_C03_028MA"}, "S2701_C01_059E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!RATIO OF INCOME TO POVERTY LEVEL IN THE PAST 12 MONTHS!!Civilian noninstitutionalized population for whom poverty status is determined!!138 to 399 percent of the poverty threshold", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C01_059EA,S2701_C01_059M,S2701_C01_059MA"}, "S1601_C04_023E": {"label": "Estimate!!Percent speak English only or speak English \"very well\"!!Percent of specified language speakers!!CITIZENS 18 YEARS AND OVER!!All citizens 18 years old and over!!Speak a language other than English!!Spanish", "concept": "Language Spoken at Home", "predicateType": "float", "group": "S1601", "limit": 0, "attributes": "S1601_C04_023EA,S1601_C04_023M,S1601_C04_023MA"}, "S0502_C03_085E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Civilian employed population 16 years and over!!INDUSTRY!!Arts, entertainment, and recreation, and accommodation and food services", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_085EA,S0502_C03_085M,S0502_C03_085MA"}, "S0804_C01_006E": {"label": "Estimate!!Total!!Workers 16 years and over!!AGE!!55 to 59 years", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_006EA,S0804_C01_006M,S0804_C01_006MA"}, "S2002_C02_048E": {"label": "Estimate!!Male!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Utilities", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C02_048EA,S2002_C02_048M,S2002_C02_048MA"}, "S1601_C04_022E": {"label": "Estimate!!Percent speak English only or speak English \"very well\"!!Percent of specified language speakers!!CITIZENS 18 YEARS AND OVER!!All citizens 18 years old and over!!Speak a language other than English", "concept": "Language Spoken at Home", "predicateType": "float", "group": "S1601", "limit": 0, "attributes": "S1601_C04_022EA,S1601_C04_022M,S1601_C04_022MA"}, "S0502_C03_086E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Civilian employed population 16 years and over!!INDUSTRY!!Other services (except public administration)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_086EA,S0502_C03_086M,S0502_C03_086MA"}, "S2002_C02_047E": {"label": "Estimate!!Male!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Transportation and warehousing", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C02_047EA,S2002_C02_047M,S2002_C02_047MA"}, "S0804_C01_007E": {"label": "Estimate!!Total!!Workers 16 years and over!!AGE!!60 years and over", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_007EA,S0804_C01_007M,S0804_C01_007MA"}, "S1601_C04_021E": {"label": "Estimate!!Percent speak English only or speak English \"very well\"!!Percent of specified language speakers!!CITIZENS 18 YEARS AND OVER!!All citizens 18 years old and over!!Speak only English", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C04_021EA,S1601_C04_021M,S1601_C04_021MA"}, "S0502_C03_083E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Civilian employed population 16 years and over!!INDUSTRY!!Professional, scientific, and management, and administrative and waste management services", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_083EA,S0502_C03_083M,S0502_C03_083MA"}, "S0804_C01_008E": {"label": "Estimate!!Total!!Workers 16 years and over!!AGE!!Median age (years)", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_008EA,S0804_C01_008M,S0804_C01_008MA"}, "S0502_C03_084E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Civilian employed population 16 years and over!!INDUSTRY!!Educational services, and health care and social assistance", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_084EA,S0502_C03_084M,S0502_C03_084MA"}, "S1601_C04_020E": {"label": "Estimate!!Percent speak English only or speak English \"very well\"!!Percent of specified language speakers!!CITIZENS 18 YEARS AND OVER!!All citizens 18 years old and over", "concept": "Language Spoken at Home", "predicateType": "float", "group": "S1601", "limit": 0, "attributes": "S1601_C04_020EA,S1601_C04_020M,S1601_C04_020MA"}, "S0804_C01_009E": {"label": "Estimate!!Total!!Workers 16 years and over!!SEX!!Male", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_009EA,S0804_C01_009M,S0804_C01_009MA"}, "S2002_C02_049E": {"label": "Estimate!!Male!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Information", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C02_049EA,S2002_C02_049M,S2002_C02_049MA"}, "S2506_C02_018E": {"label": "Estimate!!Percent owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$25,000 to $34,999", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "float", "group": "S2506", "limit": 0, "attributes": "S2506_C02_018EA,S2506_C02_018M,S2506_C02_018MA"}, "S0802_C02_040E": {"label": "Estimate!!Car, truck, or van -- drove alone!!POVERTY STATUS IN THE PAST 12 MONTHS!!Workers 16 years and over for whom poverty status is determined!!100 to 149 percent of the poverty level", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_040EA,S0802_C02_040M,S0802_C02_040MA"}, "S0504_C04_137E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Occupied housing units!!VEHICLES AVAILABLE!!1 or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_137EA,S0504_C04_137M,S0504_C04_137MA"}, "S0804_C01_038E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Workers 16 years and over for whom poverty status is determined", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "int", "group": "S0804", "limit": 0, "attributes": "S0804_C01_038EA,S0804_C01_038M,S0804_C01_038MA"}, "S1810_C02_051E": {"label": "Estimate!!With a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With an ambulatory difficulty!!Population 18 to 64 years!!Population 35 to 64 years", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C02_051EA,S1810_C02_051M,S1810_C02_051MA"}, "S2504_C03_020E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!ROOMS!!8 or more rooms", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C03_020EA,S2504_C03_020M,S2504_C03_020MA"}, "S2506_C02_019E": {"label": "Estimate!!Percent owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$35,000 to $49,999", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "float", "group": "S2506", "limit": 0, "attributes": "S2506_C02_019EA,S2506_C02_019M,S2506_C02_019MA"}, "S1201_C05_009E": {"label": "Estimate!!Separated!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C05_009EA,S1201_C05_009M,S1201_C05_009MA"}, "S0504_C04_138E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Occupied housing units!!SELECTED CHARACTERISTICS!!No telephone service available", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_138EA,S0504_C04_138M,S0504_C04_138MA"}, "S0804_C01_039E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Workers 16 years and over for whom poverty status is determined!!Below 100 percent of the poverty level", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_039EA,S0804_C01_039M,S0804_C01_039MA"}, "S1810_C02_052E": {"label": "Estimate!!With a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With an ambulatory difficulty!!Population 65 years and over", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C02_052EA,S1810_C02_052M,S1810_C02_052MA"}, "S2002_C02_039E": {"label": "Estimate!!Male!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Transportation occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C02_039EA,S2002_C02_039M,S2002_C02_039MA"}, "S0802_C02_042E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "int", "group": "S0802", "limit": 0, "attributes": "S0802_C02_042EA,S0802_C02_042M,S0802_C02_042MA"}, "S2506_C02_016E": {"label": "Estimate!!Percent owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Less than $10,000", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "float", "group": "S2506", "limit": 0, "attributes": "S2506_C02_016EA,S2506_C02_016M,S2506_C02_016MA"}, "S1201_C05_008E": {"label": "Estimate!!Separated!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over!!65 years and over", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C05_008EA,S1201_C05_008M,S1201_C05_008MA"}, "S1810_C02_053E": {"label": "Estimate!!With a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With an ambulatory difficulty!!Population 65 years and over!!Population 65 to 74 years", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C02_053EA,S1810_C02_053M,S1810_C02_053MA"}, "S0504_C04_139E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Occupied housing units!!SELECTED CHARACTERISTICS!!Limited English Speaking Households", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_139EA,S0504_C04_139M,S0504_C04_139MA"}, "S2506_C02_017E": {"label": "Estimate!!Percent owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$10,000 to $24,999", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "float", "group": "S2506", "limit": 0, "attributes": "S2506_C02_017EA,S2506_C02_017M,S2506_C02_017MA"}, "S0802_C02_041E": {"label": "Estimate!!Car, truck, or van -- drove alone!!POVERTY STATUS IN THE PAST 12 MONTHS!!Workers 16 years and over for whom poverty status is determined!!At or above 150 percent of the poverty level", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_041EA,S0802_C02_041M,S0802_C02_041MA"}, "S1201_C05_007E": {"label": "Estimate!!Separated!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over!!55 to 64 years", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C05_007EA,S1201_C05_007M,S1201_C05_007MA"}, "S1810_C02_054E": {"label": "Estimate!!With a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With an ambulatory difficulty!!Population 65 years and over!!Population 75 years and over", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C02_054EA,S1810_C02_054M,S1810_C02_054MA"}, "S1401_C01_009E": {"label": "Estimate!!Total!!Population 3 years and over enrolled in school!!Graduate, professional school", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C01_009EA,S1401_C01_009M,S1401_C01_009MA"}, "S2506_C02_014E": {"label": "Estimate!!Percent owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!MORTGAGE STATUS!!No second mortgage and no home equity loan", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "float", "group": "S2506", "limit": 0, "attributes": "S2506_C02_014EA,S2506_C02_014M,S2506_C02_014MA"}, "S1201_C05_006E": {"label": "Estimate!!Separated!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over!!45 to 54 years", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C05_006EA,S1201_C05_006M,S1201_C05_006MA"}, "S0504_C04_133E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Occupied housing units!!ROOMS!!8 or more rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_133EA,S0504_C04_133M,S0504_C04_133MA"}, "S0804_C01_034E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$50,000 to $64,999", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_034EA,S0804_C01_034M,S0804_C01_034MA"}, "S2506_C02_015E": {"label": "Estimate!!Percent owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!MORTGAGE STATUS!!Home equity loan without a primary mortgage", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "float", "group": "S2506", "limit": 0, "attributes": "S2506_C02_015EA,S2506_C02_015M,S2506_C02_015MA"}, "S1201_C05_005E": {"label": "Estimate!!Separated!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over!!35 to 44 years", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C05_005EA,S1201_C05_005M,S1201_C05_005MA"}, "S0504_C04_134E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Occupied housing units!!Median number of rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_134EA,S0504_C04_134M,S0504_C04_134MA"}, "S0804_C01_035E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$65,000 to $74,999", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_035EA,S0804_C01_035M,S0804_C01_035MA"}, "S1201_C05_004E": {"label": "Estimate!!Separated!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over!!20 to 34 years", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C05_004EA,S1201_C05_004M,S1201_C05_004MA"}, "S0504_C04_135E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Occupied housing units!!1.01 or more occupants per room", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_135EA,S0504_C04_135M,S0504_C04_135MA"}, "S2506_C02_012E": {"label": "Estimate!!Percent owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!MORTGAGE STATUS!!With a mortgage and either a second mortgage or home equity loan!!Only Home equity loan", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "float", "group": "S2506", "limit": 0, "attributes": "S2506_C02_012EA,S2506_C02_012M,S2506_C02_012MA"}, "S0804_C01_036E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$75,000 or more", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_036EA,S0804_C01_036M,S0804_C01_036MA"}, "S1201_C05_003E": {"label": "Estimate!!Separated!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over!!15 to 19 years", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C05_003EA,S1201_C05_003M,S1201_C05_003MA"}, "S0504_C04_136E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Occupied housing units!!VEHICLES AVAILABLE!!None", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_136EA,S0504_C04_136M,S0504_C04_136MA"}, "S2506_C02_013E": {"label": "Estimate!!Percent owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!MORTGAGE STATUS!!With a mortgage and either a second mortgage or home equity loan!!Both second mortgage and home equity loan", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "float", "group": "S2506", "limit": 0, "attributes": "S2506_C02_013EA,S2506_C02_013M,S2506_C02_013MA"}, "S0804_C01_037E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!Median earnings (dollars)", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "int", "group": "S0804", "limit": 0, "attributes": "S0804_C01_037EA,S0804_C01_037M,S0804_C01_037MA"}, "S1810_C02_050E": {"label": "Estimate!!With a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With an ambulatory difficulty!!Population 18 to 64 years!!Population 18 to 34 years", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C02_050EA,S1810_C02_050M,S1810_C02_050MA"}, "S0804_C01_030E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$10,000 to $14,999", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_030EA,S0804_C01_030M,S0804_C01_030MA"}, "S2504_C03_028E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!VEHICLES AVAILABLE!!1 vehicle available", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C03_028EA,S2504_C03_028M,S2504_C03_028MA"}, "S1201_C05_002E": {"label": "Estimate!!Separated!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C05_002EA,S1201_C05_002M,S1201_C05_002MA"}, "S2506_C02_010E": {"label": "Estimate!!Percent owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!MORTGAGE STATUS!!With a mortgage and either a second mortgage or home equity loan", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "float", "group": "S2506", "limit": 0, "attributes": "S2506_C02_010EA,S2506_C02_010M,S2506_C02_010MA"}, "S0802_C02_048E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!OCCUPATION!!Military specific occupations", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_048EA,S0802_C02_048M,S0802_C02_048MA"}, "S0804_C01_031E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$15,000 to $24,999", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_031EA,S0804_C01_031M,S0804_C01_031MA"}, "S2504_C03_027E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!VEHICLES AVAILABLE!!No vehicle available", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C03_027EA,S2504_C03_027M,S2504_C03_027MA"}, "S0504_C04_130E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Occupied housing units!!ROOMS!!2 or 3 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_130EA,S0504_C04_130M,S0504_C04_130MA"}, "S1201_C05_001E": {"label": "Estimate!!Separated!!Population 15 years and over", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C05_001EA,S1201_C05_001M,S1201_C05_001MA"}, "S2506_C02_011E": {"label": "Estimate!!Percent owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!MORTGAGE STATUS!!With a mortgage and either a second mortgage or home equity loan!!Only Second mortgage", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "float", "group": "S2506", "limit": 0, "attributes": "S2506_C02_011EA,S2506_C02_011M,S2506_C02_011MA"}, "S0802_C02_047E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!OCCUPATION!!Production, transportation, and material moving occupations", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_047EA,S0802_C02_047M,S0802_C02_047MA"}, "S0804_C01_032E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$25,000 to $34,999", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_032EA,S0804_C01_032M,S0804_C01_032MA"}, "S2504_C03_026E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!COMPLETE FACILITIES!!With complete kitchen facilities", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C03_026EA,S2504_C03_026M,S2504_C03_026MA"}, "S0503_C01_140E": {"label": "Estimate!!Total!!Owner-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C01_140EA,S0503_C01_140M,S0503_C01_140MA"}, "S0504_C04_131E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Occupied housing units!!ROOMS!!4 or 5 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_131EA,S0504_C04_131M,S0504_C04_131MA"}, "S0804_C01_033E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$35,000 to $49,999", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_033EA,S0804_C01_033M,S0804_C01_033MA"}, "S0504_C04_132E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Occupied housing units!!ROOMS!!6 or 7 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_132EA,S0504_C04_132M,S0504_C04_132MA"}, "S2504_C03_025E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!COMPLETE FACILITIES!!With complete plumbing facilities", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C03_025EA,S2504_C03_025M,S2504_C03_025MA"}, "S0802_C02_049E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!INDUSTRY!!Agriculture, forestry, fishing and hunting, and mining", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_049EA,S0802_C02_049M,S0802_C02_049MA"}, "S0802_C02_044E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!OCCUPATION!!Service occupations", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_044EA,S0802_C02_044M,S0802_C02_044MA"}, "S0702_C04_003E": {"label": "Estimate!!South!!Region of Current Residence!!Population 1 year and over!!Movers within same region", "concept": "Movers Between Regions", "predicateType": "int", "group": "S0702", "limit": 0, "attributes": "S0702_C04_003EA,S0702_C04_003M,S0702_C04_003MA"}, "S0503_C01_142E": {"label": "Estimate!!Total!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_142EA,S0503_C01_142M,S0503_C01_142MA"}, "S2504_C03_024E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!BEDROOMS!!4 or more bedrooms", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C03_024EA,S2504_C03_024M,S2504_C03_024MA"}, "S0802_C02_043E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!OCCUPATION!!Management, business, science, and arts occupations", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_043EA,S0802_C02_043M,S0802_C02_043MA"}, "S0503_C01_141E": {"label": "Estimate!!Total!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_141EA,S0503_C01_141M,S0503_C01_141MA"}, "S0702_C04_002E": {"label": "Estimate!!South!!Region of Current Residence!!Population 1 year and over!!Same residence (non-movers)", "concept": "Movers Between Regions", "predicateType": "int", "group": "S0702", "limit": 0, "attributes": "S0702_C04_002EA,S0702_C04_002M,S0702_C04_002MA"}, "S2504_C03_023E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!BEDROOMS!!2 or 3 bedrooms", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C03_023EA,S2504_C03_023M,S2504_C03_023MA"}, "S0503_C01_144E": {"label": "Estimate!!Total!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_144EA,S0503_C01_144M,S0503_C01_144MA"}, "S0702_C04_001E": {"label": "Estimate!!South!!Region of Current Residence!!Population 1 year and over", "concept": "Movers Between Regions", "predicateType": "int", "group": "S0702", "limit": 0, "attributes": "S0702_C04_001EA,S0702_C04_001M,S0702_C04_001MA"}, "S2504_C03_022E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!BEDROOMS!!1 bedroom", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C03_022EA,S2504_C03_022M,S2504_C03_022MA"}, "S0802_C02_046E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!OCCUPATION!!Natural resources, construction, and maintenance occupations", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_046EA,S0802_C02_046M,S0802_C02_046MA"}, "S0802_C02_045E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!OCCUPATION!!Sales and office occupations", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_045EA,S0802_C02_045M,S0802_C02_045MA"}, "S0503_C01_143E": {"label": "Estimate!!Total!!Renter-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C01_143EA,S0503_C01_143M,S0503_C01_143MA"}, "S2504_C03_021E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!BEDROOMS!!No bedroom", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C03_021EA,S2504_C03_021M,S2504_C03_021MA"}, "S0503_C01_134E": {"label": "Estimate!!Total!!Occupied housing units!!Median number of rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_134EA,S0503_C01_134M,S0503_C01_134MA"}, "S1701_C02_056E": {"label": "Estimate!!Below poverty level!!UNRELATED INDIVIDUALS FOR WHOM POVERTY STATUS IS DETERMINED!!65 to 74 years", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C02_056EA,S1701_C02_056M,S1701_C02_056MA"}, "S1501_C06_054E": {"label": "Estimate!!Percent Female!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Hispanic or Latino Origin!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C06_054EA,S1501_C06_054M,S1501_C06_054MA"}, "S0503_C01_133E": {"label": "Estimate!!Total!!Occupied housing units!!ROOMS!!8 or more rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_133EA,S0503_C01_133M,S0503_C01_133MA"}, "S1701_C02_055E": {"label": "Estimate!!Below poverty level!!UNRELATED INDIVIDUALS FOR WHOM POVERTY STATUS IS DETERMINED!!55 to 64 years", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C02_055EA,S1701_C02_055M,S1701_C02_055MA"}, "S1501_C06_053E": {"label": "Estimate!!Percent Female!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Hispanic or Latino Origin!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C06_053EA,S1501_C06_053M,S1501_C06_053MA"}, "S0503_C01_136E": {"label": "Estimate!!Total!!Occupied housing units!!VEHICLES AVAILABLE!!None", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_136EA,S0503_C01_136M,S0503_C01_136MA"}, "S1701_C02_058E": {"label": "Estimate!!Below poverty level!!UNRELATED INDIVIDUALS FOR WHOM POVERTY STATUS IS DETERMINED!!Mean income deficit for unrelated individuals (dollars)", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C02_058EA,S1701_C02_058M,S1701_C02_058MA"}, "S1501_C06_056E": {"label": "Estimate!!Percent Female!!POVERTY RATE FOR THE POPULATION 25 YEARS AND OVER FOR WHOM POVERTY STATUS IS DETERMINED BY EDUCATIONAL ATTAINMENT LEVEL!!High school graduate (includes equivalency)", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C06_056EA,S1501_C06_056M,S1501_C06_056MA"}, "S0503_C01_135E": {"label": "Estimate!!Total!!Occupied housing units!!1.01 or more occupants per room", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_135EA,S0503_C01_135M,S0503_C01_135MA"}, "S1701_C02_057E": {"label": "Estimate!!Below poverty level!!UNRELATED INDIVIDUALS FOR WHOM POVERTY STATUS IS DETERMINED!!75 years and over", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C02_057EA,S1701_C02_057M,S1701_C02_057MA"}, "S1501_C06_055E": {"label": "Estimate!!Percent Female!!POVERTY RATE FOR THE POPULATION 25 YEARS AND OVER FOR WHOM POVERTY STATUS IS DETERMINED BY EDUCATIONAL ATTAINMENT LEVEL!!Less than high school graduate", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C06_055EA,S1501_C06_055M,S1501_C06_055MA"}, "S1401_C01_012E": {"label": "Estimate!!Total!!Population enrolled in college or graduate school!!Females enrolled in college or graduate school", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C01_012EA,S1401_C01_012M,S1401_C01_012MA"}, "S2601A_C03_057E": {"label": "Estimate!!Institutionalized group quarters population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the U.S.", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_057EA,S2601A_C03_057M,S2601A_C03_057MA"}, "S2701_C01_040E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!EDUCATIONAL ATTAINMENT!!Civilian noninstitutionalized population 26 years and over!!Some college or associate's degree", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C01_040EA,S2701_C01_040M,S2701_C01_040MA"}, "S0503_C01_138E": {"label": "Estimate!!Total!!Occupied housing units!!SELECTED CHARACTERISTICS!!No telephone service available", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_138EA,S0503_C01_138M,S0503_C01_138MA"}, "S1501_C06_050E": {"label": "Estimate!!Percent Female!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Two or more races!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C06_050EA,S1501_C06_050M,S1501_C06_050MA"}, "S2504_C03_019E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!ROOMS!!6 or 7 rooms", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C03_019EA,S2504_C03_019M,S2504_C03_019MA"}, "S1401_C01_011E": {"label": "Estimate!!Total!!Population enrolled in college or graduate school!!Males enrolled in college or graduate school", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C01_011EA,S1401_C01_011M,S1401_C01_011MA"}, "S2601A_C03_056E": {"label": "Estimate!!Institutionalized group quarters population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Same address", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_056EA,S2601A_C03_056M,S2601A_C03_056MA"}, "S1701_C02_059E": {"label": "Estimate!!Below poverty level!!UNRELATED INDIVIDUALS FOR WHOM POVERTY STATUS IS DETERMINED!!Worked full-time, year-round in the past 12 months", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C02_059EA,S1701_C02_059M,S1701_C02_059MA"}, "S2701_C01_041E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!EDUCATIONAL ATTAINMENT!!Civilian noninstitutionalized population 26 years and over!!Bachelor's degree or higher", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C01_041EA,S2701_C01_041M,S2701_C01_041MA"}, "S0802_C02_039E": {"label": "Estimate!!Car, truck, or van -- drove alone!!POVERTY STATUS IN THE PAST 12 MONTHS!!Workers 16 years and over for whom poverty status is determined!!Below 100 percent of the poverty level", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_039EA,S0802_C02_039M,S0802_C02_039MA"}, "S0503_C01_137E": {"label": "Estimate!!Total!!Occupied housing units!!VEHICLES AVAILABLE!!1 or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_137EA,S0503_C01_137M,S0503_C01_137MA"}, "S2504_C03_018E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!ROOMS!!4 or 5 rooms", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C03_018EA,S2504_C03_018M,S2504_C03_018MA"}, "S1401_C01_010E": {"label": "Estimate!!Total!!Population enrolled in college or graduate school", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C01_010EA,S1401_C01_010M,S1401_C01_010MA"}, "S2601A_C03_059E": {"label": "Estimate!!Institutionalized group quarters population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the U.S.!!Different county", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_059EA,S2601A_C03_059M,S2601A_C03_059MA"}, "S2701_C01_042E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!EMPLOYMENT STATUS!!Civilian noninstitutionalized population 19 to 64 years", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C01_042EA,S2701_C01_042M,S2701_C01_042MA"}, "S2002_C02_030E": {"label": "Estimate!!Male!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Food preparation and serving related occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C02_030EA,S2002_C02_030M,S2002_C02_030MA"}, "S1501_C06_052E": {"label": "Estimate!!Percent Female!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Hispanic or Latino Origin", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C06_052EA,S1501_C06_052M,S1501_C06_052MA"}, "S2504_C03_017E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!ROOMS!!2 or 3 rooms", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C03_017EA,S2504_C03_017M,S2504_C03_017MA"}, "S2601A_C03_058E": {"label": "Estimate!!Institutionalized group quarters population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the U.S.!!Same county", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_058EA,S2601A_C03_058M,S2601A_C03_058MA"}, "S1501_C06_051E": {"label": "Estimate!!Percent Female!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Two or more races!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C06_051EA,S1501_C06_051M,S1501_C06_051MA"}, "S2701_C01_043E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!EMPLOYMENT STATUS!!Civilian noninstitutionalized population 19 to 64 years!!In labor force", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C01_043EA,S2701_C01_043M,S2701_C01_043MA"}, "S0503_C01_139E": {"label": "Estimate!!Total!!Occupied housing units!!SELECTED CHARACTERISTICS!!Limited English Speaking Households", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_139EA,S0503_C01_139M,S0503_C01_139MA"}, "S1401_C01_016E": {"label": "Estimate!!Total!!Population 5 to 9 years!!5 to 9 year olds enrolled in school", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C01_016EA,S1401_C01_016M,S1401_C01_016MA"}, "S2601A_C03_053E": {"label": "Estimate!!Institutionalized group quarters population!!DISABILITY STATUS!!Population 65 years and over", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_053EA,S2601A_C03_053M,S2601A_C03_053MA"}, "S2603_C02_004E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!Under 15 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C02_004EA,S2603_C02_004M,S2603_C02_004MA"}, "S2101_C04_006E": {"label": "Estimate!!Percent Veterans!!Civilian population 18 years and over!!PERIOD OF SERVICE!!World War II veterans", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C04_006EA,S2101_C04_006M,S2101_C04_006MA"}, "S2002_C02_032E": {"label": "Estimate!!Male!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Personal care and service occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C02_032EA,S2002_C02_032M,S2002_C02_032MA"}, "S1810_C02_059E": {"label": "Estimate!!With a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a self-care difficulty!!Population 18 to 64 years!!Population 35 to 64 years", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C02_059EA,S1810_C02_059M,S1810_C02_059MA"}, "S2701_C01_044E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!EMPLOYMENT STATUS!!Civilian noninstitutionalized population 19 to 64 years!!In labor force!!Employed", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C01_044EA,S2701_C01_044M,S2701_C01_044MA"}, "S1401_C01_015E": {"label": "Estimate!!Total!!Population 5 to 9 years", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C01_015EA,S1401_C01_015M,S1401_C01_015MA"}, "S2101_C04_005E": {"label": "Estimate!!Percent Veterans!!Civilian population 18 years and over!!PERIOD OF SERVICE!!Korean War veterans", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C04_005EA,S2101_C04_005M,S2101_C04_005MA"}, "S2601A_C03_052E": {"label": "Estimate!!Institutionalized group quarters population!!DISABILITY STATUS!!Population 18 to 64 years!!No disability", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_052EA,S2601A_C03_052M,S2601A_C03_052MA"}, "S2603_C02_005E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!15 to 17 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C02_005EA,S2603_C02_005M,S2603_C02_005MA"}, "S2002_C02_031E": {"label": "Estimate!!Male!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Building and grounds cleaning and maintenance occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C02_031EA,S2002_C02_031M,S2002_C02_031MA"}, "S2701_C01_045E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!EMPLOYMENT STATUS!!Civilian noninstitutionalized population 19 to 64 years!!In labor force!!Unemployed", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C01_045EA,S2701_C01_045M,S2701_C01_045MA"}, "S1701_C02_050E": {"label": "Estimate!!Below poverty level!!UNRELATED INDIVIDUALS FOR WHOM POVERTY STATUS IS DETERMINED!!16 to 17 years", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C02_050EA,S1701_C02_050M,S1701_C02_050MA"}, "S1401_C01_014E": {"label": "Estimate!!Total!!Population 3 to 4 years!!3 to 4 year olds enrolled in school", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C01_014EA,S1401_C01_014M,S1401_C01_014MA"}, "S2101_C04_004E": {"label": "Estimate!!Percent Veterans!!Civilian population 18 years and over!!PERIOD OF SERVICE!!Vietnam War veterans", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C04_004EA,S2101_C04_004M,S2101_C04_004MA"}, "S2601A_C03_055E": {"label": "Estimate!!Institutionalized group quarters population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_055EA,S2601A_C03_055M,S2601A_C03_055MA"}, "S2603_C02_006E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!18 to 24 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C02_006EA,S2603_C02_006M,S2603_C02_006MA"}, "S2002_C02_034E": {"label": "Estimate!!Male!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Office and administrative support occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C02_034EA,S2002_C02_034M,S2002_C02_034MA"}, "S2701_C01_046E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!EMPLOYMENT STATUS!!Civilian noninstitutionalized population 19 to 64 years!!Not in labor force", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C01_046EA,S2701_C01_046M,S2701_C01_046MA"}, "S1401_C01_013E": {"label": "Estimate!!Total!!Population 3 to 4 years", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C01_013EA,S1401_C01_013M,S1401_C01_013MA"}, "S2101_C04_003E": {"label": "Estimate!!Percent Veterans!!Civilian population 18 years and over!!PERIOD OF SERVICE!!Gulf War (8/1990 to 8/2001) veterans", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C04_003EA,S2101_C04_003M,S2101_C04_003MA"}, "S2601A_C03_054E": {"label": "Estimate!!Institutionalized group quarters population!!DISABILITY STATUS!!Population 65 years and over!!With a disability", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_054EA,S2601A_C03_054M,S2601A_C03_054MA"}, "S2002_C02_033E": {"label": "Estimate!!Male!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Sales and related occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C02_033EA,S2002_C02_033M,S2002_C02_033MA"}, "S2603_C02_007E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!25 to 34 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C02_007EA,S2603_C02_007M,S2603_C02_007MA"}, "S2701_C01_047E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!WORK EXPERIENCE!!Civilian noninstitutionalized population 19 to 64 years", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C01_047EA,S2701_C01_047M,S2701_C01_047MA"}, "S1501_C06_058E": {"label": "Estimate!!Percent Female!!POVERTY RATE FOR THE POPULATION 25 YEARS AND OVER FOR WHOM POVERTY STATUS IS DETERMINED BY EDUCATIONAL ATTAINMENT LEVEL!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C06_058EA,S1501_C06_058M,S1501_C06_058MA"}, "S2101_C04_002E": {"label": "Estimate!!Percent Veterans!!Civilian population 18 years and over!!PERIOD OF SERVICE!!Gulf War (9/2001 or later) veterans", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C04_002EA,S2101_C04_002M,S2101_C04_002MA"}, "S1701_C02_052E": {"label": "Estimate!!Below poverty level!!UNRELATED INDIVIDUALS FOR WHOM POVERTY STATUS IS DETERMINED!!25 to 34 years", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C02_052EA,S1701_C02_052M,S1701_C02_052MA"}, "S0504_C04_129E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Occupied housing units!!ROOMS!!1 room", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_129EA,S0504_C04_129M,S0504_C04_129MA"}, "S2002_C02_036E": {"label": "Estimate!!Male!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Construction and extraction occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C02_036EA,S2002_C02_036M,S2002_C02_036MA"}, "S1810_C02_055E": {"label": "Estimate!!With a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a self-care difficulty", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C02_055EA,S1810_C02_055M,S1810_C02_055MA"}, "S2701_C01_048E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!WORK EXPERIENCE!!Civilian noninstitutionalized population 19 to 64 years!!Worked full-time, year round in the past 12 months", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C01_048EA,S2701_C01_048M,S2701_C01_048MA"}, "S1401_C01_019E": {"label": "Estimate!!Total!!Population 15 to 17", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C01_019EA,S1401_C01_019M,S1401_C01_019MA"}, "S1701_C02_051E": {"label": "Estimate!!Below poverty level!!UNRELATED INDIVIDUALS FOR WHOM POVERTY STATUS IS DETERMINED!!18 to 24 years", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C02_051EA,S1701_C02_051M,S1701_C02_051MA"}, "S2101_C04_001E": {"label": "Estimate!!Percent Veterans!!Civilian population 18 years and over", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C04_001EA,S2101_C04_001M,S2101_C04_001MA"}, "S2603_C02_001E": {"label": "Estimate!!Total group quarters population!!Total population", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C02_001EA,S2603_C02_001M,S2603_C02_001MA"}, "S1810_C02_056E": {"label": "Estimate!!With a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a self-care difficulty!!Population under 18 years", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C02_056EA,S1810_C02_056M,S1810_C02_056MA"}, "S2002_C02_035E": {"label": "Estimate!!Male!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Farming, fishing, and forestry occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C02_035EA,S2002_C02_035M,S2002_C02_035MA"}, "S2701_C01_049E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!WORK EXPERIENCE!!Civilian noninstitutionalized population 19 to 64 years!!Worked less than full-time, year round in the past 12 months", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C01_049EA,S2701_C01_049M,S2701_C01_049MA"}, "S1501_C06_057E": {"label": "Estimate!!Percent Female!!POVERTY RATE FOR THE POPULATION 25 YEARS AND OVER FOR WHOM POVERTY STATUS IS DETERMINED BY EDUCATIONAL ATTAINMENT LEVEL!!Some college or associate's degree", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C06_057EA,S1501_C06_057M,S1501_C06_057MA"}, "S1401_C01_018E": {"label": "Estimate!!Total!!Population 10 to 14 years!!10 to 14 year olds enrolled in school", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C01_018EA,S1401_C01_018M,S1401_C01_018MA"}, "S2601A_C03_051E": {"label": "Estimate!!Institutionalized group quarters population!!DISABILITY STATUS!!Population 18 to 64 years!!With a disability", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_051EA,S2601A_C03_051M,S2601A_C03_051MA"}, "S2603_C02_002E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C02_002EA,S2603_C02_002M,S2603_C02_002MA"}, "S1701_C02_054E": {"label": "Estimate!!Below poverty level!!UNRELATED INDIVIDUALS FOR WHOM POVERTY STATUS IS DETERMINED!!45 to 54 years", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C02_054EA,S1701_C02_054M,S1701_C02_054MA"}, "S1810_C02_057E": {"label": "Estimate!!With a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a self-care difficulty!!Population 18 to 64 years", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C02_057EA,S1810_C02_057M,S1810_C02_057MA"}, "S2002_C02_038E": {"label": "Estimate!!Male!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Production occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C02_038EA,S2002_C02_038M,S2002_C02_038MA"}, "S1401_C01_017E": {"label": "Estimate!!Total!!Population 10 to 14 years", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C01_017EA,S1401_C01_017M,S1401_C01_017MA"}, "S2601A_C03_050E": {"label": "Estimate!!Institutionalized group quarters population!!DISABILITY STATUS!!Population 18 to 64 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_050EA,S2601A_C03_050M,S2601A_C03_050MA"}, "S1501_C06_059E": {"label": "Estimate!!Percent Female!!MEDIAN EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 25 years and over with earnings", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C06_059EA,S1501_C06_059M,S1501_C06_059MA"}, "S1701_C02_053E": {"label": "Estimate!!Below poverty level!!UNRELATED INDIVIDUALS FOR WHOM POVERTY STATUS IS DETERMINED!!35 to 44 years", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C02_053EA,S1701_C02_053M,S1701_C02_053MA"}, "S2603_C02_003E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C02_003EA,S2603_C02_003M,S2603_C02_003MA"}, "S1810_C02_058E": {"label": "Estimate!!With a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a self-care difficulty!!Population 18 to 64 years!!Population 18 to 34 years", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C02_058EA,S1810_C02_058M,S1810_C02_058MA"}, "S2002_C02_037E": {"label": "Estimate!!Male!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Installation, maintenance, and repair occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C02_037EA,S2002_C02_037M,S2002_C02_037MA"}, "S0701PR_C05_007E": {"label": "Estimate!!Moved; from outside Puerto Rico and the U.S.!!Population 1 year and over!!AGE!!45 to 54 years", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C05_007EA,S0701PR_C05_007M,S0701PR_C05_007MA"}, "S2506_C02_006E": {"label": "Estimate!!Percent owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!VALUE!!$500,000 to $749,999", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "float", "group": "S2506", "limit": 0, "attributes": "S2506_C02_006EA,S2506_C02_006M,S2506_C02_006MA"}, "S1903_C02_004E": {"label": "Estimate!!Percent Distribution!!HOUSEHOLD INCOME BY RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Households!!One race--!!American Indian and Alaska Native", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1903", "limit": 0, "attributes": "S1903_C02_004EA,S1903_C02_004M,S1903_C02_004MA"}, "S0804_C01_026E": {"label": "Estimate!!Total!!Workers 16 years and over!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Speak language other than English!!Speak English \"very well\"", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_026EA,S0804_C01_026M,S0804_C01_026MA"}, "S1810_C02_063E": {"label": "Estimate!!With a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With an independent living difficulty", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C02_063EA,S1810_C02_063M,S1810_C02_063MA"}, "S2002_C02_028E": {"label": "Estimate!!Male!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Healthcare support occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C02_028EA,S2002_C02_028M,S2002_C02_028MA"}, "S2506_C02_007E": {"label": "Estimate!!Percent owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!VALUE!!$750,000 to $999,999", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "float", "group": "S2506", "limit": 0, "attributes": "S2506_C02_007EA,S2506_C02_007M,S2506_C02_007MA"}, "S0701PR_C05_006E": {"label": "Estimate!!Moved; from outside Puerto Rico and the U.S.!!Population 1 year and over!!AGE!!35 to 44 years", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C05_006EA,S0701PR_C05_006M,S0701PR_C05_006MA"}, "S1810_C02_064E": {"label": "Estimate!!With a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With an independent living difficulty!!Population 18 to 64 years", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C02_064EA,S1810_C02_064M,S1810_C02_064MA"}, "S0804_C01_027E": {"label": "Estimate!!Total!!Workers 16 years and over!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Speak language other than English!!Speak English less than \"very well\"", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_027EA,S0804_C01_027M,S0804_C01_027MA"}, "S2002_C02_027E": {"label": "Estimate!!Male!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Healthcare practitioner and technical occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C02_027EA,S2002_C02_027M,S2002_C02_027MA"}, "S1903_C02_003E": {"label": "Estimate!!Percent Distribution!!HOUSEHOLD INCOME BY RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Households!!One race--!!Black or African American", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1903", "limit": 0, "attributes": "S1903_C02_003EA,S1903_C02_003M,S1903_C02_003MA"}, "S2601A_C03_071E": {"label": "Estimate!!Institutionalized group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Naturalized U.S. citizen!!Male", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_071EA,S2601A_C03_071M,S2601A_C03_071MA"}, "S2506_C02_004E": {"label": "Estimate!!Percent owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!VALUE!!$100,000 to $299,999", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "float", "group": "S2506", "limit": 0, "attributes": "S2506_C02_004EA,S2506_C02_004M,S2506_C02_004MA"}, "S0802_C02_030E": {"label": "Estimate!!Car, truck, or van -- drove alone!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$10,000 to $14,999", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_030EA,S0802_C02_030M,S0802_C02_030MA"}, "S0701PR_C05_005E": {"label": "Estimate!!Moved; from outside Puerto Rico and the U.S.!!Population 1 year and over!!AGE!!25 to 34 years", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C05_005EA,S0701PR_C05_005M,S0701PR_C05_005MA"}, "S1810_C02_065E": {"label": "Estimate!!With a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With an independent living difficulty!!Population 18 to 64 years!!Population 18 to 34 years", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C02_065EA,S1810_C02_065M,S1810_C02_065MA"}, "S0804_C01_028E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "int", "group": "S0804", "limit": 0, "attributes": "S0804_C01_028EA,S0804_C01_028M,S0804_C01_028MA"}, "S1903_C02_006E": {"label": "Estimate!!Percent Distribution!!HOUSEHOLD INCOME BY RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Households!!One race--!!Native Hawaiian and Other Pacific Islander", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1903", "limit": 0, "attributes": "S1903_C02_006EA,S1903_C02_006M,S1903_C02_006MA"}, "S2601A_C03_070E": {"label": "Estimate!!Institutionalized group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Naturalized U.S. citizen", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_070EA,S2601A_C03_070M,S2601A_C03_070MA"}, "S2506_C02_005E": {"label": "Estimate!!Percent owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!VALUE!!$300,000 to $499,999", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "float", "group": "S2506", "limit": 0, "attributes": "S2506_C02_005EA,S2506_C02_005M,S2506_C02_005MA"}, "S0701PR_C05_004E": {"label": "Estimate!!Moved; from outside Puerto Rico and the U.S.!!Population 1 year and over!!AGE!!18 to 24 years", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C05_004EA,S0701PR_C05_004M,S0701PR_C05_004MA"}, "S1810_C02_066E": {"label": "Estimate!!With a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With an independent living difficulty!!Population 18 to 64 years!!Population 35 to 64 years", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C02_066EA,S1810_C02_066M,S1810_C02_066MA"}, "S0804_C01_029E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$1 to $9,999 or loss", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_029EA,S0804_C01_029M,S0804_C01_029MA"}, "S1903_C02_005E": {"label": "Estimate!!Percent Distribution!!HOUSEHOLD INCOME BY RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Households!!One race--!!Asian", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1903", "limit": 0, "attributes": "S1903_C02_005EA,S1903_C02_005M,S1903_C02_005MA"}, "S2002_C02_029E": {"label": "Estimate!!Male!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Protective service occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C02_029EA,S2002_C02_029M,S2002_C02_029MA"}, "S0804_C01_022E": {"label": "Estimate!!Total!!Workers 16 years and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_022EA,S0804_C01_022M,S0804_C01_022MA"}, "S0701PR_C05_003E": {"label": "Estimate!!Moved; from outside Puerto Rico and the U.S.!!Population 1 year and over!!AGE!!5 to 17 years", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C05_003EA,S0701PR_C05_003M,S0701PR_C05_003MA"}, "S2603_C02_008E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!35 to 44 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C02_008EA,S2603_C02_008M,S2603_C02_008MA"}, "S0504_C04_145E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_145EA,S0504_C04_145M,S0504_C04_145MA"}, "S2506_C02_002E": {"label": "Estimate!!Percent owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!VALUE!!Less than $50,000", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "float", "group": "S2506", "limit": 0, "attributes": "S2506_C02_002EA,S2506_C02_002M,S2506_C02_002MA"}, "S1903_C02_008E": {"label": "Estimate!!Percent Distribution!!HOUSEHOLD INCOME BY RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Households!!Two or more races", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1903", "limit": 0, "attributes": "S1903_C02_008EA,S1903_C02_008M,S1903_C02_008MA"}, "S2506_C02_003E": {"label": "Estimate!!Percent owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!VALUE!!$50,000 to $99,999", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "float", "group": "S2506", "limit": 0, "attributes": "S2506_C02_003EA,S2506_C02_003M,S2506_C02_003MA"}, "S0701PR_C05_002E": {"label": "Estimate!!Moved; from outside Puerto Rico and the U.S.!!Population 1 year and over!!AGE!!1 to 4 years", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C05_002EA,S0701PR_C05_002M,S0701PR_C05_002MA"}, "S2603_C02_009E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!45 to 54 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C02_009EA,S2603_C02_009M,S2603_C02_009MA"}, "S1903_C02_007E": {"label": "Estimate!!Percent Distribution!!HOUSEHOLD INCOME BY RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Households!!One race--!!Some other race", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1903", "limit": 0, "attributes": "S1903_C02_007EA,S1903_C02_007M,S1903_C02_007MA"}, "S1810_C02_060E": {"label": "Estimate!!With a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a self-care difficulty!!Population 65 years and over", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C02_060EA,S1810_C02_060M,S1810_C02_060MA"}, "S0804_C01_023E": {"label": "Estimate!!Total!!Workers 16 years and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born!!Naturalized U.S. citizen", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_023EA,S0804_C01_023M,S0804_C01_023MA"}, "S0701PR_C05_001E": {"label": "Estimate!!Moved; from outside Puerto Rico and the U.S.!!Population 1 year and over", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C05_001EA,S0701PR_C05_001M,S0701PR_C05_001MA"}, "S1810_C02_061E": {"label": "Estimate!!With a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a self-care difficulty!!Population 65 years and over!!Population 65 to 74 years", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C02_061EA,S1810_C02_061M,S1810_C02_061MA"}, "S0804_C01_024E": {"label": "Estimate!!Total!!Workers 16 years and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born!!Not a U.S. citizen", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_024EA,S0804_C01_024M,S0804_C01_024MA"}, "S1903_C02_009E": {"label": "Estimate!!Percent Distribution!!HOUSEHOLD INCOME BY RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Households!!Hispanic or Latino origin (of any race)", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1903", "limit": 0, "attributes": "S1903_C02_009EA,S1903_C02_009M,S1903_C02_009MA"}, "S2506_C02_001E": {"label": "Estimate!!Percent owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "int", "group": "S2506", "limit": 0, "attributes": "S2506_C02_001EA,S2506_C02_001M,S2506_C02_001MA"}, "S0804_C01_025E": {"label": "Estimate!!Total!!Workers 16 years and over!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Speak language other than English", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_025EA,S0804_C01_025M,S0804_C01_025MA"}, "S1810_C02_062E": {"label": "Estimate!!With a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a self-care difficulty!!Population 65 years and over!!Population 75 years and over", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C02_062EA,S1810_C02_062M,S1810_C02_062MA"}, "S2504_C03_016E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!ROOMS!!1 room", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C03_016EA,S2504_C03_016M,S2504_C03_016MA"}, "S0504_C04_141E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_141EA,S0504_C04_141M,S0504_C04_141MA"}, "S0802_C02_036E": {"label": "Estimate!!Car, truck, or van -- drove alone!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$75,000 or more", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_036EA,S0802_C02_036M,S0802_C02_036MA"}, "S2504_C03_015E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!YEAR STRUCTURE BUILT!!1939 or earlier", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C03_015EA,S2504_C03_015M,S2504_C03_015MA"}, "S0504_C04_142E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_142EA,S0504_C04_142M,S0504_C04_142MA"}, "S0702_C04_010E": {"label": "Estimate!!South!!Region of Current Residence!!PERCENT ALLOCATED!!Residence 1 year ago", "concept": "Movers Between Regions", "predicateType": "int", "group": "S0702", "limit": 0, "attributes": "S0702_C04_010EA,S0702_C04_010M,S0702_C04_010MA"}, "S0802_C02_035E": {"label": "Estimate!!Car, truck, or van -- drove alone!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$65,000 to $74,999", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_035EA,S0802_C02_035M,S0802_C02_035MA"}, "S0804_C01_020E": {"label": "Estimate!!Total!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino origin", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_020EA,S0804_C01_020M,S0804_C01_020MA"}, "S0504_C04_143E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Renter-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C04_143EA,S0504_C04_143M,S0504_C04_143MA"}, "S1501_C06_060E": {"label": "Estimate!!Percent Female!!MEDIAN EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 25 years and over with earnings!!Less than high school graduate", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C06_060EA,S1501_C06_060M,S1501_C06_060MA"}, "S2504_C03_014E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!YEAR STRUCTURE BUILT!!1940 to 1959", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C03_014EA,S2504_C03_014M,S2504_C03_014MA"}, "S0802_C02_038E": {"label": "Estimate!!Car, truck, or van -- drove alone!!POVERTY STATUS IN THE PAST 12 MONTHS!!Workers 16 years and over for whom poverty status is determined", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "int", "group": "S0802", "limit": 0, "attributes": "S0802_C02_038EA,S0802_C02_038M,S0802_C02_038MA"}, "S0804_C01_021E": {"label": "Estimate!!Total!!Workers 16 years and over!!NATIVITY AND CITIZENSHIP STATUS!!Native", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_021EA,S0804_C01_021M,S0804_C01_021MA"}, "S0504_C04_144E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_144EA,S0504_C04_144M,S0504_C04_144MA"}, "S2504_C03_013E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!YEAR STRUCTURE BUILT!!1960 to 1979", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C03_013EA,S2504_C03_013M,S2504_C03_013MA"}, "S0802_C02_037E": {"label": "Estimate!!Car, truck, or van -- drove alone!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!Median earnings (dollars)", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "int", "group": "S0802", "limit": 0, "attributes": "S0802_C02_037EA,S0802_C02_037M,S0802_C02_037MA"}, "S0802_C02_032E": {"label": "Estimate!!Car, truck, or van -- drove alone!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$25,000 to $34,999", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_032EA,S0802_C02_032M,S0802_C02_032MA"}, "S2504_C03_012E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!YEAR STRUCTURE BUILT!!1980 to 1999", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C03_012EA,S2504_C03_012M,S2504_C03_012MA"}, "S0802_C02_031E": {"label": "Estimate!!Car, truck, or van -- drove alone!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$15,000 to $24,999", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_031EA,S0802_C02_031M,S0802_C02_031MA"}, "S2504_C03_011E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!YEAR STRUCTURE BUILT!!2000 to 2009", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C03_011EA,S2504_C03_011M,S2504_C03_011MA"}, "S0802_C02_034E": {"label": "Estimate!!Car, truck, or van -- drove alone!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$50,000 to $64,999", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_034EA,S0802_C02_034M,S0802_C02_034MA"}, "S0701PR_C05_009E": {"label": "Estimate!!Moved; from outside Puerto Rico and the U.S.!!Population 1 year and over!!AGE!!65 to 74 years", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C05_009EA,S0701PR_C05_009M,S0701PR_C05_009MA"}, "S0902_C03_001E": {"label": "Estimate!!Black or African American!!Population 15 to 19 years", "concept": "Characteristics of Teenagers 15 to 19 Years Old", "predicateType": "int", "group": "S0902", "limit": 0, "attributes": "S0902_C03_001EA,S0902_C03_001M,S0902_C03_001MA"}, "S1903_C02_002E": {"label": "Estimate!!Percent Distribution!!HOUSEHOLD INCOME BY RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Households!!One race--!!White", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1903", "limit": 0, "attributes": "S1903_C02_002EA,S1903_C02_002M,S1903_C02_002MA"}, "S2504_C03_010E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!YEAR STRUCTURE BUILT!!2010 to 2019", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C03_010EA,S2504_C03_010M,S2504_C03_010MA"}, "S0701PR_C05_008E": {"label": "Estimate!!Moved; from outside Puerto Rico and the U.S.!!Population 1 year and over!!AGE!!55 to 64 years", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C05_008EA,S0701PR_C05_008M,S0701PR_C05_008MA"}, "S0802_C02_033E": {"label": "Estimate!!Car, truck, or van -- drove alone!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$35,000 to $49,999", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_033EA,S0802_C02_033M,S0802_C02_033MA"}, "S0504_C04_140E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Owner-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C04_140EA,S0504_C04_140M,S0504_C04_140MA"}, "S0902_C03_002E": {"label": "Estimate!!Black or African American!!Population 15 to 19 years!!SCHOOL ENROLLMENT!!Enrolled in school", "concept": "Characteristics of Teenagers 15 to 19 Years Old", "predicateType": "int", "group": "S0902", "limit": 0, "attributes": "S0902_C03_002EA,S0902_C03_002M,S0902_C03_002MA"}, "S1903_C02_001E": {"label": "Estimate!!Percent Distribution!!HOUSEHOLD INCOME BY RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Households", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C02_001EA,S1903_C02_001M,S1903_C02_001MA"}, "S0702_C04_007E": {"label": "Estimate!!South!!Region of Current Residence!!Population 1 year and over!!Movers between regions by region of residence 1 year ago!!South", "concept": "Movers Between Regions", "predicateType": "int", "group": "S0702", "limit": 0, "attributes": "S0702_C04_007EA,S0702_C04_007M,S0702_C04_007MA"}, "S1401_C01_020E": {"label": "Estimate!!Total!!Population 15 to 17!!15 to 17 year olds enrolled in school", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C01_020EA,S1401_C01_020M,S1401_C01_020MA"}, "S0902_C03_003E": {"label": "Estimate!!Black or African American!!Population 15 to 19 years!!SCHOOL ENROLLMENT!!Enrolled in school!!Public", "concept": "Characteristics of Teenagers 15 to 19 Years Old", "predicateType": "float", "group": "S0902", "limit": 0, "attributes": "S0902_C03_003EA,S0902_C03_003M,S0902_C03_003MA"}, "S0503_C01_145E": {"label": "Estimate!!Total!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_145EA,S0503_C01_145M,S0503_C01_145MA"}, "S0702_C04_006E": {"label": "Estimate!!South!!Region of Current Residence!!Population 1 year and over!!Movers between regions by region of residence 1 year ago!!Midwest", "concept": "Movers Between Regions", "predicateType": "int", "group": "S0702", "limit": 0, "attributes": "S0702_C04_006EA,S0702_C04_006M,S0702_C04_006MA"}, "S0902_C03_004E": {"label": "Estimate!!Black or African American!!Population 15 to 19 years!!SCHOOL ENROLLMENT!!Enrolled in school!!Private", "concept": "Characteristics of Teenagers 15 to 19 Years Old", "predicateType": "float", "group": "S0902", "limit": 0, "attributes": "S0902_C03_004EA,S0902_C03_004M,S0902_C03_004MA"}, "S0702_C04_005E": {"label": "Estimate!!South!!Region of Current Residence!!Population 1 year and over!!Movers between regions by region of residence 1 year ago!!Northeast", "concept": "Movers Between Regions", "predicateType": "int", "group": "S0702", "limit": 0, "attributes": "S0702_C04_005EA,S0702_C04_005M,S0702_C04_005MA"}, "S2603_C02_010E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!55 to 64 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C02_010EA,S2603_C02_010M,S2603_C02_010MA"}, "S0902_C03_005E": {"label": "Estimate!!Black or African American!!Population 15 to 19 years!!SCHOOL ENROLLMENT!!Not enrolled in school", "concept": "Characteristics of Teenagers 15 to 19 Years Old", "predicateType": "int", "group": "S0902", "limit": 0, "attributes": "S0902_C03_005EA,S0902_C03_005M,S0902_C03_005MA"}, "S2504_C03_009E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!YEAR STRUCTURE BUILT!!2020 or later", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C03_009EA,S2504_C03_009M,S2504_C03_009MA"}, "S0702_C04_004E": {"label": "Estimate!!South!!Region of Current Residence!!Population 1 year and over!!Movers between regions by region of residence 1 year ago", "concept": "Movers Between Regions", "predicateType": "int", "group": "S0702", "limit": 0, "attributes": "S0702_C04_004EA,S0702_C04_004M,S0702_C04_004MA"}, "S2603_C02_011E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!65 to 74 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C02_011EA,S2603_C02_011M,S2603_C02_011MA"}, "S0902_C03_006E": {"label": "Estimate!!Black or African American!!Population 15 to 19 years!!MARITAL STATUS AND FERTILITY!!Male", "concept": "Characteristics of Teenagers 15 to 19 Years Old", "predicateType": "int", "group": "S0902", "limit": 0, "attributes": "S0902_C03_006EA,S0902_C03_006M,S0902_C03_006MA"}, "S2504_C03_008E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!UNITS IN STRUCTURE!!Mobile home or other type of housing", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C03_008EA,S2504_C03_008M,S2504_C03_008MA"}, "S1401_C01_024E": {"label": "Estimate!!Total!!Population 20 to 24 years!!20 to 24 year olds enrolled in school", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C01_024EA,S1401_C01_024M,S1401_C01_024MA"}, "S2601A_C03_069E": {"label": "Estimate!!Institutionalized group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Female", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_069EA,S2601A_C03_069M,S2601A_C03_069MA"}, "S0902_C03_007E": {"label": "Estimate!!Black or African American!!Population 15 to 19 years!!MARITAL STATUS AND FERTILITY!!Male!!Ever married", "concept": "Characteristics of Teenagers 15 to 19 Years Old", "predicateType": "float", "group": "S0902", "limit": 0, "attributes": "S0902_C03_007EA,S0902_C03_007M,S0902_C03_007MA"}, "S0802_C02_028E": {"label": "Estimate!!Car, truck, or van -- drove alone!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "int", "group": "S0802", "limit": 0, "attributes": "S0802_C02_028EA,S0802_C02_028M,S0802_C02_028MA"}, "S1501_C06_062E": {"label": "Estimate!!Percent Female!!MEDIAN EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 25 years and over with earnings!!Some college or associate's degree", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C06_062EA,S1501_C06_062M,S1501_C06_062MA"}, "S2504_C03_007E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!UNITS IN STRUCTURE!!10 or more apartments", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C03_007EA,S2504_C03_007M,S2504_C03_007MA"}, "S1401_C01_023E": {"label": "Estimate!!Total!!Population 20 to 24 years", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C01_023EA,S1401_C01_023M,S1401_C01_023MA"}, "S2601A_C03_068E": {"label": "Estimate!!Institutionalized group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Male", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_068EA,S2601A_C03_068M,S2601A_C03_068MA"}, "S1501_C06_061E": {"label": "Estimate!!Percent Female!!MEDIAN EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 25 years and over with earnings!!High school graduate (includes equivalency)", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C06_061EA,S1501_C06_061M,S1501_C06_061MA"}, "S0802_C02_027E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Speak language other than English!!Speak English less than \"very well\"", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_027EA,S0802_C02_027M,S0802_C02_027MA"}, "S0902_C03_008E": {"label": "Estimate!!Black or African American!!Population 15 to 19 years!!MARITAL STATUS AND FERTILITY!!Female", "concept": "Characteristics of Teenagers 15 to 19 Years Old", "predicateType": "int", "group": "S0902", "limit": 0, "attributes": "S0902_C03_008EA,S0902_C03_008M,S0902_C03_008MA"}, "S2504_C03_006E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!UNITS IN STRUCTURE!!5 to 9 apartments", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C03_006EA,S2504_C03_006M,S2504_C03_006MA"}, "S1401_C01_022E": {"label": "Estimate!!Total!!Population 18 to 19 years!!18 and 19 year olds enrolled in school", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C01_022EA,S1401_C01_022M,S1401_C01_022MA"}, "S0702_C04_009E": {"label": "Estimate!!South!!Region of Current Residence!!Population 1 year and over!!Movers from abroad", "concept": "Movers Between Regions", "predicateType": "int", "group": "S0702", "limit": 0, "attributes": "S0702_C04_009EA,S0702_C04_009M,S0702_C04_009MA"}, "S2701_C01_030E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!LIVING ARRANGEMENTS!!In non-family households and other living arrangements", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C01_030EA,S2701_C01_030M,S2701_C01_030MA"}, "S0902_C03_009E": {"label": "Estimate!!Black or African American!!Population 15 to 19 years!!MARITAL STATUS AND FERTILITY!!Female!!Ever married", "concept": "Characteristics of Teenagers 15 to 19 Years Old", "predicateType": "float", "group": "S0902", "limit": 0, "attributes": "S0902_C03_009EA,S0902_C03_009M,S0902_C03_009MA"}, "S1501_C06_064E": {"label": "Estimate!!Percent Female!!MEDIAN EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 25 years and over with earnings!!Graduate or professional degree", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C06_064EA,S1501_C06_064M,S1501_C06_064MA"}, "S0702_C04_008E": {"label": "Estimate!!South!!Region of Current Residence!!Population 1 year and over!!Movers between regions by region of residence 1 year ago!!West", "concept": "Movers Between Regions", "predicateType": "int", "group": "S0702", "limit": 0, "attributes": "S0702_C04_008EA,S0702_C04_008M,S0702_C04_008MA"}, "S2504_C03_005E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!UNITS IN STRUCTURE!!3 or 4 apartments", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C03_005EA,S2504_C03_005M,S2504_C03_005MA"}, "S1401_C01_021E": {"label": "Estimate!!Total!!Population 18 to 19 years", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C01_021EA,S1401_C01_021M,S1401_C01_021MA"}, "S2701_C01_031E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!NATIVITY AND U.S. CITIZENSHIP STATUS!!Native born", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C01_031EA,S2701_C01_031M,S2701_C01_031MA"}, "S0802_C02_029E": {"label": "Estimate!!Car, truck, or van -- drove alone!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$1 to $9,999 or loss", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_029EA,S0802_C02_029M,S0802_C02_029MA"}, "S1501_C06_063E": {"label": "Estimate!!Percent Female!!MEDIAN EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 25 years and over with earnings!!Bachelor's degree", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C06_063EA,S1501_C06_063M,S1501_C06_063MA"}, "S1701_C02_060E": {"label": "Estimate!!Below poverty level!!UNRELATED INDIVIDUALS FOR WHOM POVERTY STATUS IS DETERMINED!!Worked less than full-time, year-round in the past 12 months", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C02_060EA,S1701_C02_060M,S1701_C02_060MA"}, "S1401_C01_028E": {"label": "Estimate!!Total!!Population 35 years and over!!35 years and over enrolled in school", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C01_028EA,S1401_C01_028M,S1401_C01_028MA"}, "S2601A_C03_065E": {"label": "Estimate!!Institutionalized group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Native!!Male", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_065EA,S2601A_C03_065M,S2601A_C03_065MA"}, "S2603_C02_016E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!Under 18 years!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C02_016EA,S2603_C02_016M,S2603_C02_016MA"}, "S2002_C02_020E": {"label": "Estimate!!Male!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Computer and mathematical occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C02_020EA,S2002_C02_020M,S2002_C02_020MA"}, "S2701_C01_032E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!NATIVITY AND U.S. CITIZENSHIP STATUS!!Foreign born", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C01_032EA,S2701_C01_032M,S2701_C01_032MA"}, "S1401_C01_027E": {"label": "Estimate!!Total!!Population 35 years and over", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C01_027EA,S1401_C01_027M,S1401_C01_027MA"}, "S2601A_C03_064E": {"label": "Estimate!!Institutionalized group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Native", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_064EA,S2601A_C03_064M,S2601A_C03_064MA"}, "S2603_C02_017E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!65 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C02_017EA,S2603_C02_017M,S2603_C02_017MA"}, "S2701_C01_033E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!NATIVITY AND U.S. CITIZENSHIP STATUS!!Foreign born!!Naturalized", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C01_033EA,S2701_C01_033M,S2701_C01_033MA"}, "S1701_C02_062E": {"label": "Estimate!!Below poverty level!!UNRELATED INDIVIDUALS FOR WHOM POVERTY STATUS IS DETERMINED!!Population in housing units for whom poverty status is determined", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C02_062EA,S1701_C02_062M,S1701_C02_062MA"}, "S1401_C01_026E": {"label": "Estimate!!Total!!Population 25 to 34 years!!25 to 34 year olds enrolled in school", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C01_026EA,S1401_C01_026M,S1401_C01_026MA"}, "S2601A_C03_067E": {"label": "Estimate!!Institutionalized group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_067EA,S2601A_C03_067M,S2601A_C03_067MA"}, "S2002_C02_022E": {"label": "Estimate!!Male!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Life, physical, and social science occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C02_022EA,S2002_C02_022M,S2002_C02_022MA"}, "S2603_C02_018E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!65 years and over!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C02_018EA,S2603_C02_018M,S2603_C02_018MA"}, "S2701_C01_034E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!NATIVITY AND U.S. CITIZENSHIP STATUS!!Foreign born!!Not a citizen", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C01_034EA,S2701_C01_034M,S2701_C01_034MA"}, "S1701_C02_061E": {"label": "Estimate!!Below poverty level!!UNRELATED INDIVIDUALS FOR WHOM POVERTY STATUS IS DETERMINED!!Did not work", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C02_061EA,S1701_C02_061M,S1701_C02_061MA"}, "S1401_C01_025E": {"label": "Estimate!!Total!!Population 25 to 34 years", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C01_025EA,S1401_C01_025M,S1401_C01_025MA"}, "S2601A_C03_066E": {"label": "Estimate!!Institutionalized group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Native!!Female", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_066EA,S2601A_C03_066M,S2601A_C03_066MA"}, "S2603_C02_019E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!65 years and over!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C02_019EA,S2603_C02_019M,S2603_C02_019MA"}, "S2002_C02_021E": {"label": "Estimate!!Male!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Architecture and engineering occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C02_021EA,S2002_C02_021M,S2002_C02_021MA"}, "S2701_C01_035E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!DISABILITY STATUS!!With a disability", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C01_035EA,S2701_C01_035M,S2701_C01_035MA"}, "S2601A_C03_061E": {"label": "Estimate!!Institutionalized group quarters population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the U.S.!!Different county!!Different state", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_061EA,S2601A_C03_061M,S2601A_C03_061MA"}, "S2603_C02_012E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!75 to 84 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C02_012EA,S2603_C02_012M,S2603_C02_012MA"}, "S1810_C02_067E": {"label": "Estimate!!With a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With an independent living difficulty!!Population 65 years and over", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C02_067EA,S1810_C02_067M,S1810_C02_067MA"}, "S2002_C02_024E": {"label": "Estimate!!Male!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Legal occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C02_024EA,S2002_C02_024M,S2002_C02_024MA"}, "S2701_C01_036E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!DISABILITY STATUS!!No disability", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C01_036EA,S2701_C01_036M,S2701_C01_036MA"}, "S2601A_C03_060E": {"label": "Estimate!!Institutionalized group quarters population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the U.S.!!Different county!!Same state", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_060EA,S2601A_C03_060M,S2601A_C03_060MA"}, "S2603_C02_013E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!85 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C02_013EA,S2603_C02_013M,S2603_C02_013MA"}, "S2002_C02_023E": {"label": "Estimate!!Male!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Community and social services occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C02_023EA,S2002_C02_023M,S2002_C02_023MA"}, "S1810_C02_068E": {"label": "Estimate!!With a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With an independent living difficulty!!Population 65 years and over!!Population 65 to 74 years", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C02_068EA,S1810_C02_068M,S1810_C02_068MA"}, "S2701_C01_037E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!EDUCATIONAL ATTAINMENT!!Civilian noninstitutionalized population 26 years and over", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C01_037EA,S2701_C01_037M,S2701_C01_037MA"}, "S2506_C02_008E": {"label": "Estimate!!Percent owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!VALUE!!$1,000,000 or more", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "float", "group": "S2506", "limit": 0, "attributes": "S2506_C02_008EA,S2506_C02_008M,S2506_C02_008MA"}, "S2601A_C03_063E": {"label": "Estimate!!Institutionalized group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_063EA,S2601A_C03_063M,S2601A_C03_063MA"}, "S2603_C02_014E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!Under 18 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C02_014EA,S2603_C02_014M,S2603_C02_014MA"}, "S1810_C02_069E": {"label": "Estimate!!With a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With an independent living difficulty!!Population 65 years and over!!Population 75 years and over", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C02_069EA,S1810_C02_069M,S1810_C02_069MA"}, "S2701_C01_038E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!EDUCATIONAL ATTAINMENT!!Civilian noninstitutionalized population 26 years and over!!Less than high school graduate", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C01_038EA,S2701_C01_038M,S2701_C01_038MA"}, "S2002_C02_026E": {"label": "Estimate!!Male!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Arts, design, entertainment, sports, and media occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C02_026EA,S2002_C02_026M,S2002_C02_026MA"}, "S2506_C02_009E": {"label": "Estimate!!Percent owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!VALUE!!Median (dollars)", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "int", "group": "S2506", "limit": 0, "attributes": "S2506_C02_009EA,S2506_C02_009M,S2506_C02_009MA"}, "S1401_C01_029E": {"label": "Estimate!!Total!!Population 18 to 24 years", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C01_029EA,S1401_C01_029M,S1401_C01_029MA"}, "S2601A_C03_062E": {"label": "Estimate!!Institutionalized group quarters population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Abroad", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_062EA,S2601A_C03_062M,S2601A_C03_062MA"}, "S2603_C02_015E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!Under 18 years!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C02_015EA,S2603_C02_015M,S2603_C02_015MA"}, "S2002_C02_025E": {"label": "Estimate!!Male!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Education, training, and library occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C02_025EA,S2002_C02_025M,S2002_C02_025MA"}, "S2701_C01_039E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!EDUCATIONAL ATTAINMENT!!Civilian noninstitutionalized population 26 years and over!!High school graduate (includes equivalency)", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C01_039EA,S2701_C01_039M,S2701_C01_039MA"}, "S2601A_C03_081E": {"label": "Estimate!!Institutionalized group quarters population!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_081EA,S2601A_C03_081M,S2601A_C03_081MA"}, "S2701_C01_028E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!LIVING ARRANGEMENTS!!In family households!!In other families!!Male reference person, no spouse present", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C01_028EA,S2701_C01_028M,S2701_C01_028MA"}, "S2002_C02_016E": {"label": "Estimate!!Male!!Median earnings (dollars)!!EDUCATIONAL ATTAINMENT!!Population 25 years and over with earnings!!Graduate or professional degree", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C02_016EA,S2002_C02_016M,S2002_C02_016MA"}, "S2601A_C03_080E": {"label": "Estimate!!Institutionalized group quarters population!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!English only", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_080EA,S2601A_C03_080M,S2601A_C03_080MA"}, "S2701_C01_029E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!LIVING ARRANGEMENTS!!In family households!!In other families!!Female reference person, no spouse present", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C01_029EA,S2701_C01_029M,S2701_C01_029MA"}, "S2002_C02_015E": {"label": "Estimate!!Male!!Median earnings (dollars)!!EDUCATIONAL ATTAINMENT!!Population 25 years and over with earnings!!Bachelor's degree", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C02_015EA,S2002_C02_015M,S2002_C02_015MA"}, "S2601A_C03_083E": {"label": "Estimate!!Institutionalized group quarters population!!EMPLOYMENT STATUS!!Population 16 years and over", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_083EA,S2601A_C03_083M,S2601A_C03_083MA"}, "S2002_C02_018E": {"label": "Estimate!!Male!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Management occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C02_018EA,S2002_C02_018M,S2002_C02_018MA"}, "S2601A_C03_082E": {"label": "Estimate!!Institutionalized group quarters population!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English!!Speak English less than \"very well\"", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_082EA,S2601A_C03_082M,S2601A_C03_082MA"}, "S1810_C02_030E": {"label": "Estimate!!With a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a vision difficulty!!Population under 18 years", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C02_030EA,S1810_C02_030M,S1810_C02_030MA"}, "S2002_C02_017E": {"label": "Estimate!!Male!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C02_017EA,S2002_C02_017M,S2002_C02_017MA"}, "S2506_C02_038E": {"label": "Estimate!!Percent owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!MONTHLY HOUSING COSTS!!$2,500 to $2,999", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "float", "group": "S2506", "limit": 0, "attributes": "S2506_C02_038EA,S2506_C02_038M,S2506_C02_038MA"}, "S0804_C01_058E": {"label": "Estimate!!Total!!Workers 16 years and over!!INDUSTRY!!Arts, entertainment, and recreation, and accommodation and food services", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_058EA,S0804_C01_058M,S0804_C01_058MA"}, "S1501_C06_029E": {"label": "Estimate!!Percent Female!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!White alone!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C06_029EA,S1501_C06_029M,S1501_C06_029MA"}, "S2506_C02_039E": {"label": "Estimate!!Percent owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!MONTHLY HOUSING COSTS!!$3,000 or more", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "float", "group": "S2506", "limit": 0, "attributes": "S2506_C02_039EA,S2506_C02_039M,S2506_C02_039MA"}, "S2002_C02_019E": {"label": "Estimate!!Male!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Business and financial operations occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C02_019EA,S2002_C02_019M,S2002_C02_019MA"}, "S0804_C01_059E": {"label": "Estimate!!Total!!Workers 16 years and over!!INDUSTRY!!Other services (except public administration)", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_059EA,S0804_C01_059M,S0804_C01_059MA"}, "S2506_C02_036E": {"label": "Estimate!!Percent owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!MONTHLY HOUSING COSTS!!$1,500 to $1,999", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "float", "group": "S2506", "limit": 0, "attributes": "S2506_C02_036EA,S2506_C02_036M,S2506_C02_036MA"}, "S2506_C02_037E": {"label": "Estimate!!Percent owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!MONTHLY HOUSING COSTS!!$2,000 to $2,499", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "float", "group": "S2506", "limit": 0, "attributes": "S2506_C02_037EA,S2506_C02_037M,S2506_C02_037MA"}, "S2101_C04_019E": {"label": "Estimate!!Percent Veterans!!Civilian population 18 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Some other race alone", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C04_019EA,S2101_C04_019M,S2101_C04_019MA"}, "S0804_C01_054E": {"label": "Estimate!!Total!!Workers 16 years and over!!INDUSTRY!!Transportation and warehousing, and utilities", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_054EA,S0804_C01_054M,S0804_C01_054MA"}, "S2504_C03_004E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!UNITS IN STRUCTURE!!2 apartments", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C03_004EA,S2504_C03_004M,S2504_C03_004MA"}, "S2506_C02_034E": {"label": "Estimate!!Percent owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!MONTHLY HOUSING COSTS!!$800 to $999", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "float", "group": "S2506", "limit": 0, "attributes": "S2506_C02_034EA,S2506_C02_034M,S2506_C02_034MA"}, "S0802_C02_024E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born!!Not a U.S. citizen", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_024EA,S0802_C02_024M,S0802_C02_024MA"}, "S0804_C01_055E": {"label": "Estimate!!Total!!Workers 16 years and over!!INDUSTRY!!Information and finance and insurance, and real estate and rental and leasing", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_055EA,S0804_C01_055M,S0804_C01_055MA"}, "S0802_C02_023E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born!!Naturalized U.S. citizen", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_023EA,S0802_C02_023M,S0802_C02_023MA"}, "S2506_C02_035E": {"label": "Estimate!!Percent owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!MONTHLY HOUSING COSTS!!$1,000 to $1,499", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "float", "group": "S2506", "limit": 0, "attributes": "S2506_C02_035EA,S2506_C02_035M,S2506_C02_035MA"}, "S2504_C03_003E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!UNITS IN STRUCTURE!!1, attached", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C03_003EA,S2504_C03_003M,S2504_C03_003MA"}, "S2201_C02_018E": {"label": "Estimate!!Percent!!Households!!No children under 18 years!!Other family:!!Male householder, no spouse present", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C02_018EA,S2201_C02_018M,S2201_C02_018MA"}, "S2506_C02_032E": {"label": "Estimate!!Percent owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!MONTHLY HOUSING COSTS!!$400 to $599", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "float", "group": "S2506", "limit": 0, "attributes": "S2506_C02_032EA,S2506_C02_032M,S2506_C02_032MA"}, "S2504_C03_002E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!UNITS IN STRUCTURE!!1, detached", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C03_002EA,S2504_C03_002M,S2504_C03_002MA"}, "S0505_C03_011E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Foreign-born population!!SEX AND AGE!!Female", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_011EA,S0505_C03_011M,S0505_C03_011MA"}, "S0804_C01_056E": {"label": "Estimate!!Total!!Workers 16 years and over!!INDUSTRY!!Professional, scientific, and management, and administrative and waste management services", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_056EA,S0804_C01_056M,S0804_C01_056MA"}, "S0802_C02_026E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Speak language other than English!!Speak English \"very well\"", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_026EA,S0802_C02_026M,S0802_C02_026MA"}, "S2201_C02_019E": {"label": "Estimate!!Percent!!Households!!No children under 18 years!!Other family:!!Female householder, no spouse present", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C02_019EA,S2201_C02_019M,S2201_C02_019MA"}, "S2504_C03_001E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C03_001EA,S2504_C03_001M,S2504_C03_001MA"}, "S2506_C02_033E": {"label": "Estimate!!Percent owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!MONTHLY HOUSING COSTS!!$600 to $799", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "float", "group": "S2506", "limit": 0, "attributes": "S2506_C02_033EA,S2506_C02_033M,S2506_C02_033MA"}, "S0802_C02_025E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Speak language other than English", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_025EA,S0802_C02_025M,S0802_C02_025MA"}, "S0804_C01_057E": {"label": "Estimate!!Total!!Workers 16 years and over!!INDUSTRY!!Educational services, and health care and social assistance", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_057EA,S0804_C01_057M,S0804_C01_057MA"}, "S0505_C03_010E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Foreign-born population!!SEX AND AGE!!Male", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_010EA,S0505_C03_010M,S0505_C03_010MA"}, "S0505_C03_013E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Foreign-born population!!SEX AND AGE!!5 to 17 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_013EA,S0505_C03_013M,S0505_C03_013MA"}, "S0802_C02_020E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_020EA,S0802_C02_020M,S0802_C02_020MA"}, "S0804_C01_050E": {"label": "Estimate!!Total!!Workers 16 years and over!!INDUSTRY!!Construction", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_050EA,S0804_C01_050M,S0804_C01_050MA"}, "S2506_C02_030E": {"label": "Estimate!!Percent owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!MONTHLY HOUSING COSTS!!Less than $200", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "float", "group": "S2506", "limit": 0, "attributes": "S2506_C02_030EA,S2506_C02_030M,S2506_C02_030MA"}, "S0505_C03_012E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Foreign-born population!!SEX AND AGE!!Under 5 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_012EA,S0505_C03_012M,S0505_C03_012MA"}, "S0804_C01_051E": {"label": "Estimate!!Total!!Workers 16 years and over!!INDUSTRY!!Manufacturing", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_051EA,S0804_C01_051M,S0804_C01_051MA"}, "S2506_C02_031E": {"label": "Estimate!!Percent owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!MONTHLY HOUSING COSTS!!$200 to $399", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "float", "group": "S2506", "limit": 0, "attributes": "S2506_C02_031EA,S2506_C02_031M,S2506_C02_031MA"}, "S0505_C03_015E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Foreign-born population!!SEX AND AGE!!25 to 44 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_015EA,S0505_C03_015M,S0505_C03_015MA"}, "S0804_C01_052E": {"label": "Estimate!!Total!!Workers 16 years and over!!INDUSTRY!!Wholesale trade", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_052EA,S0804_C01_052M,S0804_C01_052MA"}, "S0802_C02_022E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_022EA,S0802_C02_022M,S0802_C02_022MA"}, "S0503_C01_120E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_120EA,S0503_C01_120M,S0503_C01_120MA"}, "S0802_C02_021E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!NATIVITY AND CITIZENSHIP STATUS!!Native", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_021EA,S0802_C02_021M,S0802_C02_021MA"}, "S0804_C01_053E": {"label": "Estimate!!Total!!Workers 16 years and over!!INDUSTRY!!Retail trade", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_053EA,S0804_C01_053M,S0804_C01_053MA"}, "S0505_C03_014E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Foreign-born population!!SEX AND AGE!!18 to 24 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_014EA,S0505_C03_014M,S0505_C03_014MA"}, "S2101_C04_022E": {"label": "Estimate!!Percent Veterans!!Civilian population 18 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C04_022EA,S2101_C04_022M,S2101_C04_022MA"}, "S0505_C03_005E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen!!Entered before 2000", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_005EA,S0505_C03_005M,S0505_C03_005MA"}, "S0503_C01_110E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!Average number of workers per household", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_110EA,S0503_C01_110M,S0503_C01_110MA"}, "S2603_C02_020E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!Median age (years)", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C02_020EA,S2603_C02_020M,S2603_C02_020MA"}, "S2201_C02_024E": {"label": "Estimate!!Percent!!Households!!DISABILITY STATUS!!With no persons with a disability", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C02_024EA,S2201_C02_024M,S2201_C02_024MA"}, "S1501_C06_030E": {"label": "Estimate!!Percent Female!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!White alone!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C06_030EA,S1501_C06_030M,S1501_C06_030MA"}, "S0505_C03_004E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen!!Entered 2000 to 2009", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_004EA,S0505_C03_004M,S0505_C03_004MA"}, "S2101_C04_021E": {"label": "Estimate!!Percent Veterans!!Civilian population 18 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino (of any race)", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C04_021EA,S2101_C04_021M,S2101_C04_021MA"}, "S2603_C02_021E": {"label": "Estimate!!Total group quarters population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C02_021EA,S2603_C02_021M,S2603_C02_021MA"}, "S2201_C02_025E": {"label": "Estimate!!Percent!!Households!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!White alone", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C02_025EA,S2201_C02_025M,S2201_C02_025MA"}, "S0802_C02_019E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_019EA,S0802_C02_019M,S0802_C02_019MA"}, "S0503_C01_112E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!Below 100 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_112EA,S0503_C01_112M,S0503_C01_112MA"}, "S0804_C01_060E": {"label": "Estimate!!Total!!Workers 16 years and over!!INDUSTRY!!Public administration", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_060EA,S0804_C01_060M,S0804_C01_060MA"}, "S2101_C04_020E": {"label": "Estimate!!Percent Veterans!!Civilian population 18 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C04_020EA,S2101_C04_020M,S2101_C04_020MA"}, "S0505_C03_007E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen!!Entered 2010 or later", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_007EA,S0505_C03_007M,S0505_C03_007MA"}, "S2603_C02_022E": {"label": "Estimate!!Total group quarters population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!White", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C02_022EA,S2603_C02_022M,S2603_C02_022MA"}, "S1501_C06_032E": {"label": "Estimate!!Percent Female!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!White alone, not Hispanic or Latino!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C06_032EA,S1501_C06_032M,S1501_C06_032MA"}, "S2201_C02_022E": {"label": "Estimate!!Percent!!Households!!POVERTY STATUS IN THE PAST 12 MONTHS!!At or above poverty level", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C02_022EA,S2201_C02_022M,S2201_C02_022MA"}, "S0503_C01_111E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C01_111EA,S0503_C01_111M,S0503_C01_111MA"}, "S0505_C03_006E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_006EA,S0505_C03_006M,S0505_C03_006MA"}, "S0804_C01_061E": {"label": "Estimate!!Total!!Workers 16 years and over!!INDUSTRY!!Armed forces", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_061EA,S0804_C01_061M,S0804_C01_061MA"}, "S2603_C02_023E": {"label": "Estimate!!Total group quarters population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C02_023EA,S2603_C02_023M,S2603_C02_023MA"}, "S2201_C02_023E": {"label": "Estimate!!Percent!!Households!!DISABILITY STATUS!!With one or more people with a disability", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C02_023EA,S2201_C02_023M,S2201_C02_023MA"}, "S1501_C06_031E": {"label": "Estimate!!Percent Female!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!White alone, not Hispanic or Latino", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C06_031EA,S1501_C06_031M,S1501_C06_031MA"}, "S0503_C01_114E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!At or above 200 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_114EA,S0503_C01_114M,S0503_C01_114MA"}, "S1810_C02_039E": {"label": "Estimate!!With a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a cognitive difficulty", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C02_039EA,S1810_C02_039M,S1810_C02_039MA"}, "S0505_C03_009E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen!!Entered before 2000", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_009EA,S0505_C03_009M,S0505_C03_009MA"}, "S2201_C02_028E": {"label": "Estimate!!Percent!!Households!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Asian alone", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C02_028EA,S2201_C02_028M,S2201_C02_028MA"}, "S0802_C02_016E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_016EA,S0802_C02_016M,S0802_C02_016MA"}, "S0503_C01_113E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!100 to 199 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_113EA,S0503_C01_113M,S0503_C01_113MA"}, "S0505_C03_008E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen!!Entered 2000 to 2009", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_008EA,S0505_C03_008M,S0505_C03_008MA"}, "S2201_C02_029E": {"label": "Estimate!!Percent!!Households!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Native Hawaiian and Other Pacific Islander alone", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C02_029EA,S2201_C02_029M,S2201_C02_029MA"}, "S0802_C02_015E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_015EA,S0802_C02_015M,S0802_C02_015MA"}, "S2201_C02_026E": {"label": "Estimate!!Percent!!Households!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Black or African American alone", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C02_026EA,S2201_C02_026M,S2201_C02_026MA"}, "S0802_C02_018E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_018EA,S0802_C02_018M,S0802_C02_018MA"}, "S0503_C01_116E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_116EA,S0503_C01_116M,S0503_C01_116MA"}, "S2201_C02_027E": {"label": "Estimate!!Percent!!Households!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!American Indian and Alaska Native alone", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C02_027EA,S2201_C02_027M,S2201_C02_027MA"}, "S0802_C02_017E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_017EA,S0802_C02_017M,S0802_C02_017MA"}, "S0503_C01_115E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_115EA,S0503_C01_115M,S0503_C01_115MA"}, "ANRC": {"label": "Alaska Native Regional Corporation", "group": "N/A", "limit": 0}, "S1501_C06_038E": {"label": "Estimate!!Percent Female!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!American Indian or Alaska Native alone!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C06_038EA,S1501_C06_038M,S1501_C06_038MA"}, "S2601A_C03_077E": {"label": "Estimate!!Institutionalized group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Entered 2000 to 2009", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_077EA,S2601A_C03_077M,S2601A_C03_077MA"}, "S2701_C01_020E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!Native Hawaiian and Other Pacific Islander alone", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C01_020EA,S2701_C01_020M,S2701_C01_020MA"}, "S2603_C02_028E": {"label": "Estimate!!Total group quarters population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!Two or more races", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C02_028EA,S2603_C02_028M,S2603_C02_028MA"}, "S1810_C02_035E": {"label": "Estimate!!With a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a vision difficulty!!Population 18 to 64 years!!Population 35 to 64 years", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C02_035EA,S1810_C02_035M,S1810_C02_035MA"}, "S0503_C01_118E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_118EA,S0503_C01_118M,S0503_C01_118MA"}, "S1501_C06_037E": {"label": "Estimate!!Percent Female!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!American Indian or Alaska Native alone", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C06_037EA,S1501_C06_037M,S1501_C06_037MA"}, "S2101_C04_029E": {"label": "Estimate!!Percent Veterans!!EDUCATIONAL ATTAINMENT!!Civilian population 25 years and over!!Some college or associate's degree", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C04_029EA,S2101_C04_029M,S2101_C04_029MA"}, "S2601A_C03_076E": {"label": "Estimate!!Institutionalized group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Entered 2010 or later", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_076EA,S2601A_C03_076M,S2601A_C03_076MA"}, "S2603_C02_029E": {"label": "Estimate!!Total group quarters population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!Hispanic or Latino (of any race)", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C02_029EA,S2603_C02_029M,S2603_C02_029MA"}, "S1810_C02_036E": {"label": "Estimate!!With a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a vision difficulty!!Population 65 years and over", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C02_036EA,S1810_C02_036M,S1810_C02_036MA"}, "S2701_C01_021E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!Some other race alone", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C01_021EA,S2701_C01_021M,S2701_C01_021MA"}, "S0503_C01_117E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_117EA,S0503_C01_117M,S0503_C01_117MA"}, "S2601A_C03_079E": {"label": "Estimate!!Institutionalized group quarters population!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_079EA,S2601A_C03_079M,S2601A_C03_079MA"}, "S2101_C04_028E": {"label": "Estimate!!Percent Veterans!!EDUCATIONAL ATTAINMENT!!Civilian population 25 years and over!!High school graduate (includes equivalency)", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C04_028EA,S2101_C04_028M,S2101_C04_028MA"}, "S2002_C02_010E": {"label": "Estimate!!Male!!Median earnings (dollars)!!Full-time, year-round workers 16 years and over with earnings!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C02_010EA,S2002_C02_010M,S2002_C02_010MA"}, "S1810_C02_037E": {"label": "Estimate!!With a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a vision difficulty!!Population 65 years and over!!Population 65 to 74 years", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C02_037EA,S1810_C02_037M,S1810_C02_037MA"}, "S2701_C01_022E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C01_022EA,S2701_C01_022M,S2701_C01_022MA"}, "S1501_C06_039E": {"label": "Estimate!!Percent Female!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!American Indian or Alaska Native alone!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C06_039EA,S1501_C06_039M,S1501_C06_039MA"}, "S2101_C04_027E": {"label": "Estimate!!Percent Veterans!!EDUCATIONAL ATTAINMENT!!Civilian population 25 years and over!!Less than high school graduate", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C04_027EA,S2101_C04_027M,S2101_C04_027MA"}, "S2601A_C03_078E": {"label": "Estimate!!Institutionalized group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Entered before 2000", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_078EA,S2601A_C03_078M,S2601A_C03_078MA"}, "S1810_C02_038E": {"label": "Estimate!!With a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a vision difficulty!!Population 65 years and over!!Population 75 years and over", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C02_038EA,S1810_C02_038M,S1810_C02_038MA"}, "S0503_C01_119E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_119EA,S0503_C01_119M,S0503_C01_119MA"}, "S2701_C01_023E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino (of any race)", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C01_023EA,S2701_C01_023M,S2701_C01_023MA"}, "S2601A_C03_073E": {"label": "Estimate!!Institutionalized group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Not a U.S. citizen", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_073EA,S2601A_C03_073M,S2601A_C03_073MA"}, "S2101_C04_026E": {"label": "Estimate!!Percent Veterans!!EDUCATIONAL ATTAINMENT!!Civilian population 25 years and over", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C04_026EA,S2101_C04_026M,S2101_C04_026MA"}, "S2603_C02_024E": {"label": "Estimate!!Total group quarters population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C02_024EA,S2603_C02_024M,S2603_C02_024MA"}, "S2002_C02_012E": {"label": "Estimate!!Male!!Median earnings (dollars)!!EDUCATIONAL ATTAINMENT!!Population 25 years and over with earnings!!Less than high school graduate", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C02_012EA,S2002_C02_012M,S2002_C02_012MA"}, "S1810_C02_031E": {"label": "Estimate!!With a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a vision difficulty!!Population under 18 years!!Population under 5 years", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C02_031EA,S1810_C02_031M,S1810_C02_031MA"}, "S2201_C02_020E": {"label": "Estimate!!Percent!!Households!!No children under 18 years!!Nonfamily households", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C02_020EA,S2201_C02_020M,S2201_C02_020MA"}, "S1501_C06_034E": {"label": "Estimate!!Percent Female!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Black alone", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C06_034EA,S1501_C06_034M,S1501_C06_034MA"}, "S2701_C01_024E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C01_024EA,S2701_C01_024M,S2701_C01_024MA"}, "S2601A_C03_072E": {"label": "Estimate!!Institutionalized group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Naturalized U.S. citizen!!Female", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_072EA,S2601A_C03_072M,S2601A_C03_072MA"}, "S2101_C04_025E": {"label": "Estimate!!Percent Veterans!!MEDIAN INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Civilian population 18 years and over with income!!Female", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C04_025EA,S2101_C04_025M,S2101_C04_025MA"}, "S2603_C02_025E": {"label": "Estimate!!Total group quarters population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Asian", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C02_025EA,S2603_C02_025M,S2603_C02_025MA"}, "S1810_C02_032E": {"label": "Estimate!!With a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a vision difficulty!!Population under 18 years!!Population 5 to 17 years", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C02_032EA,S1810_C02_032M,S1810_C02_032MA"}, "S2002_C02_011E": {"label": "Estimate!!Male!!Median earnings (dollars)!!EDUCATIONAL ATTAINMENT!!Population 25 years and over with earnings", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C02_011EA,S2002_C02_011M,S2002_C02_011MA"}, "S1501_C06_033E": {"label": "Estimate!!Percent Female!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!White alone, not Hispanic or Latino!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C06_033EA,S1501_C06_033M,S1501_C06_033MA"}, "S2701_C01_025E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!LIVING ARRANGEMENTS!!In family households", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C01_025EA,S2701_C01_025M,S2701_C01_025MA"}, "S2201_C02_021E": {"label": "Estimate!!Percent!!Households!!POVERTY STATUS IN THE PAST 12 MONTHS!!Below poverty level", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C02_021EA,S2201_C02_021M,S2201_C02_021MA"}, "S1501_C06_036E": {"label": "Estimate!!Percent Female!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Black alone!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C06_036EA,S1501_C06_036M,S1501_C06_036MA"}, "S2101_C04_024E": {"label": "Estimate!!Percent Veterans!!MEDIAN INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Civilian population 18 years and over with income!!Male", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C04_024EA,S2101_C04_024M,S2101_C04_024MA"}, "S2601A_C03_075E": {"label": "Estimate!!Institutionalized group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Not a U.S. citizen!!Female", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_075EA,S2601A_C03_075M,S2601A_C03_075MA"}, "S2603_C02_026E": {"label": "Estimate!!Total group quarters population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C02_026EA,S2603_C02_026M,S2603_C02_026MA"}, "S2002_C02_014E": {"label": "Estimate!!Male!!Median earnings (dollars)!!EDUCATIONAL ATTAINMENT!!Population 25 years and over with earnings!!Some college or associate's degree", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C02_014EA,S2002_C02_014M,S2002_C02_014MA"}, "S1810_C02_033E": {"label": "Estimate!!With a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a vision difficulty!!Population 18 to 64 years", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C02_033EA,S1810_C02_033M,S1810_C02_033MA"}, "S2701_C01_026E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!LIVING ARRANGEMENTS!!In family households!!In married couple families", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C01_026EA,S2701_C01_026M,S2701_C01_026MA"}, "S2101_C04_023E": {"label": "Estimate!!Percent Veterans!!MEDIAN INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Civilian population 18 years and over with income", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C04_023EA,S2101_C04_023M,S2101_C04_023MA"}, "S2601A_C03_074E": {"label": "Estimate!!Institutionalized group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Not a U.S. citizen!!Male", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_074EA,S2601A_C03_074M,S2601A_C03_074MA"}, "S2603_C02_027E": {"label": "Estimate!!Total group quarters population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Some other race", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C02_027EA,S2603_C02_027M,S2603_C02_027MA"}, "S1810_C02_034E": {"label": "Estimate!!With a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a vision difficulty!!Population 18 to 64 years!!Population 18 to 34 years", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C02_034EA,S1810_C02_034M,S1810_C02_034MA"}, "S2002_C02_013E": {"label": "Estimate!!Male!!Median earnings (dollars)!!EDUCATIONAL ATTAINMENT!!Population 25 years and over with earnings!!High school graduate (includes equivalency)", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C02_013EA,S2002_C02_013M,S2002_C02_013MA"}, "S2701_C01_027E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!LIVING ARRANGEMENTS!!In family households!!In other families", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C01_027EA,S2701_C01_027M,S2701_C01_027MA"}, "S1501_C06_035E": {"label": "Estimate!!Percent Female!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Black alone!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C06_035EA,S1501_C06_035M,S1501_C06_035MA"}, "S2601A_C03_093E": {"label": "Estimate!!Institutionalized group quarters population!!OCCUPATION!!Civilian employed population 16 years and over!!Service occupations", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_093EA,S2601A_C03_093M,S2601A_C03_093MA"}, "S2406_C04_005E": {"label": "Estimate!!Private not-for-profit wage and salary workers!!Civilian employed population 16 years and over!!Natural resources, construction, and maintenance occupations", "concept": "Occupation by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2406", "limit": 0, "attributes": "S2406_C04_005EA,S2406_C04_005M,S2406_C04_005MA"}, "S2701_C01_016E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C01_016EA,S2701_C01_016M,S2701_C01_016MA"}, "S2002_C02_004E": {"label": "Estimate!!Male!!Median earnings (dollars)!!Full-time, year-round workers 16 years and over with earnings!!RACE AND HISPANIC OR LATINO ORIGIN!!One race--!!American Indian and Alaska Native", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C02_004EA,S2002_C02_004M,S2002_C02_004MA"}, "S2601A_C03_092E": {"label": "Estimate!!Institutionalized group quarters population!!OCCUPATION!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_092EA,S2601A_C03_092M,S2601A_C03_092MA"}, "S2406_C04_006E": {"label": "Estimate!!Private not-for-profit wage and salary workers!!Civilian employed population 16 years and over!!Production, transportation, and material moving occupations", "concept": "Occupation by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2406", "limit": 0, "attributes": "S2406_C04_006EA,S2406_C04_006M,S2406_C04_006MA"}, "S2002_C02_003E": {"label": "Estimate!!Male!!Median earnings (dollars)!!Full-time, year-round workers 16 years and over with earnings!!RACE AND HISPANIC OR LATINO ORIGIN!!One race--!!Black or African American", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C02_003EA,S2002_C02_003M,S2002_C02_003MA"}, "S2701_C01_017E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!Black or African American alone", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C01_017EA,S2701_C01_017M,S2701_C01_017MA"}, "S1810_C02_040E": {"label": "Estimate!!With a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a cognitive difficulty!!Population under 18 years", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C02_040EA,S1810_C02_040M,S1810_C02_040MA"}, "S2601A_C03_095E": {"label": "Estimate!!Institutionalized group quarters population!!OCCUPATION!!Civilian employed population 16 years and over!!Natural resources, construction, extraction, and maintenance occupations", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_095EA,S2601A_C03_095M,S2601A_C03_095MA"}, "S2506_C02_028E": {"label": "Estimate!!Percent owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!RATIO OF VALUE TO HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!4.0 or more", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "float", "group": "S2506", "limit": 0, "attributes": "S2506_C02_028EA,S2506_C02_028M,S2506_C02_028MA"}, "S2701_C01_018E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!American Indian and Alaska Native alone", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C01_018EA,S2701_C01_018M,S2701_C01_018MA"}, "S2406_C04_007E": {"label": "Estimate!!Private not-for-profit wage and salary workers!!PERCENT ALLOCATED!!Occupation", "concept": "Occupation by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2406", "limit": 0, "attributes": "S2406_C04_007EA,S2406_C04_007M,S2406_C04_007MA"}, "S1810_C02_041E": {"label": "Estimate!!With a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a cognitive difficulty!!Population 18 to 64 years", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C02_041EA,S1810_C02_041M,S1810_C02_041MA"}, "S2002_C02_006E": {"label": "Estimate!!Male!!Median earnings (dollars)!!Full-time, year-round workers 16 years and over with earnings!!RACE AND HISPANIC OR LATINO ORIGIN!!One race--!!Native Hawaiian and Other Pacific Islander", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C02_006EA,S2002_C02_006M,S2002_C02_006MA"}, "S2506_C02_029E": {"label": "Estimate!!Percent owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!RATIO OF VALUE TO HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Not computed", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "float", "group": "S2506", "limit": 0, "attributes": "S2506_C02_029EA,S2506_C02_029M,S2506_C02_029MA"}, "S2601A_C03_094E": {"label": "Estimate!!Institutionalized group quarters population!!OCCUPATION!!Civilian employed population 16 years and over!!Sales and office occupations", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_094EA,S2601A_C03_094M,S2601A_C03_094MA"}, "S2701_C01_019E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!Asian alone", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C01_019EA,S2701_C01_019M,S2701_C01_019MA"}, "S1810_C02_042E": {"label": "Estimate!!With a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a cognitive difficulty!!Population 18 to 64 years!!Population 18 to 34 years", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C02_042EA,S1810_C02_042M,S1810_C02_042MA"}, "S2002_C02_005E": {"label": "Estimate!!Male!!Median earnings (dollars)!!Full-time, year-round workers 16 years and over with earnings!!RACE AND HISPANIC OR LATINO ORIGIN!!One race--!!Asian", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C02_005EA,S2002_C02_005M,S2002_C02_005MA"}, "S2506_C02_026E": {"label": "Estimate!!Percent owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!RATIO OF VALUE TO HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!2.0 to 2.9", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "float", "group": "S2506", "limit": 0, "attributes": "S2506_C02_026EA,S2506_C02_026M,S2506_C02_026MA"}, "S2406_C04_001E": {"label": "Estimate!!Private not-for-profit wage and salary workers!!Civilian employed population 16 years and over", "concept": "Occupation by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2406", "limit": 0, "attributes": "S2406_C04_001EA,S2406_C04_001M,S2406_C04_001MA"}, "S2002_C02_008E": {"label": "Estimate!!Male!!Median earnings (dollars)!!Full-time, year-round workers 16 years and over with earnings!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C02_008EA,S2002_C02_008M,S2002_C02_008MA"}, "S0804_C01_046E": {"label": "Estimate!!Total!!Workers 16 years and over!!OCCUPATION!!Natural resources, construction, and maintenance occupations", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_046EA,S0804_C01_046M,S0804_C01_046MA"}, "S2506_C02_027E": {"label": "Estimate!!Percent owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!RATIO OF VALUE TO HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!3.0 to 3.9", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "float", "group": "S2506", "limit": 0, "attributes": "S2506_C02_027EA,S2506_C02_027M,S2506_C02_027MA"}, "S2101_C04_009E": {"label": "Estimate!!Percent Veterans!!Civilian population 18 years and over!!AGE!!18 to 34 years", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C04_009EA,S2101_C04_009M,S2101_C04_009MA"}, "S2406_C04_002E": {"label": "Estimate!!Private not-for-profit wage and salary workers!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations", "concept": "Occupation by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2406", "limit": 0, "attributes": "S2406_C04_002EA,S2406_C04_002M,S2406_C04_002MA"}, "S0804_C01_047E": {"label": "Estimate!!Total!!Workers 16 years and over!!OCCUPATION!!Production, transportation, and material moving occupations", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_047EA,S0804_C01_047M,S0804_C01_047MA"}, "S2002_C02_007E": {"label": "Estimate!!Male!!Median earnings (dollars)!!Full-time, year-round workers 16 years and over with earnings!!RACE AND HISPANIC OR LATINO ORIGIN!!One race--!!Some other race", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C02_007EA,S2002_C02_007M,S2002_C02_007MA"}, "S2601A_C03_091E": {"label": "Estimate!!Institutionalized group quarters population!!OCCUPATION!!Civilian employed population 16 years and over", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_091EA,S2601A_C03_091M,S2601A_C03_091MA"}, "S2101_C04_008E": {"label": "Estimate!!Percent Veterans!!Civilian population 18 years and over!!SEX!!Female", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C04_008EA,S2101_C04_008M,S2101_C04_008MA"}, "S2406_C04_003E": {"label": "Estimate!!Private not-for-profit wage and salary workers!!Civilian employed population 16 years and over!!Service occupations", "concept": "Occupation by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2406", "limit": 0, "attributes": "S2406_C04_003EA,S2406_C04_003M,S2406_C04_003MA"}, "S2506_C02_024E": {"label": "Estimate!!Percent owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Median household income (dollars)", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "int", "group": "S2506", "limit": 0, "attributes": "S2506_C02_024EA,S2506_C02_024M,S2506_C02_024MA"}, "S0804_C01_048E": {"label": "Estimate!!Total!!Workers 16 years and over!!OCCUPATION!!Military specific occupations", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_048EA,S0804_C01_048M,S0804_C01_048MA"}, "S2506_C02_025E": {"label": "Estimate!!Percent owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!RATIO OF VALUE TO HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 2.0", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "float", "group": "S2506", "limit": 0, "attributes": "S2506_C02_025EA,S2506_C02_025M,S2506_C02_025MA"}, "S2601A_C03_090E": {"label": "Estimate!!Institutionalized group quarters population!!EMPLOYMENT STATUS!!Population 16 years and over!!Not in labor force", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_090EA,S2601A_C03_090M,S2601A_C03_090MA"}, "S2406_C04_004E": {"label": "Estimate!!Private not-for-profit wage and salary workers!!Civilian employed population 16 years and over!!Sales and office occupations", "concept": "Occupation by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2406", "limit": 0, "attributes": "S2406_C04_004EA,S2406_C04_004M,S2406_C04_004MA"}, "S2101_C04_007E": {"label": "Estimate!!Percent Veterans!!Civilian population 18 years and over!!SEX!!Male", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C04_007EA,S2101_C04_007M,S2101_C04_007MA"}, "S2002_C02_009E": {"label": "Estimate!!Male!!Median earnings (dollars)!!Full-time, year-round workers 16 years and over with earnings!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C02_009EA,S2002_C02_009M,S2002_C02_009MA"}, "S0804_C01_049E": {"label": "Estimate!!Total!!Workers 16 years and over!!INDUSTRY!!Agriculture, forestry, fishing and hunting, and mining", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_049EA,S0804_C01_049M,S0804_C01_049MA"}, "S0804_C01_042E": {"label": "Estimate!!Total!!Workers 16 years and over", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "int", "group": "S0804", "limit": 0, "attributes": "S0804_C01_042EA,S0804_C01_042M,S0804_C01_042MA"}, "S0802_C02_012E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_012EA,S0802_C02_012M,S0802_C02_012MA"}, "S2506_C02_022E": {"label": "Estimate!!Percent owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$100,000 to $149,999", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "float", "group": "S2506", "limit": 0, "attributes": "S2506_C02_022EA,S2506_C02_022M,S2506_C02_022MA"}, "S0804_C01_043E": {"label": "Estimate!!Total!!Workers 16 years and over!!OCCUPATION!!Management, business, science, and arts occupations", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_043EA,S0804_C01_043M,S0804_C01_043MA"}, "S0802_C02_011E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_011EA,S0802_C02_011M,S0802_C02_011MA"}, "S2506_C02_023E": {"label": "Estimate!!Percent owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$150,000 or more", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "float", "group": "S2506", "limit": 0, "attributes": "S2506_C02_023EA,S2506_C02_023M,S2506_C02_023MA"}, "S0804_C01_044E": {"label": "Estimate!!Total!!Workers 16 years and over!!OCCUPATION!!Service occupations", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_044EA,S0804_C01_044M,S0804_C01_044MA"}, "S2506_C02_020E": {"label": "Estimate!!Percent owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$50,000 to $74,999", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "float", "group": "S2506", "limit": 0, "attributes": "S2506_C02_020EA,S2506_C02_020M,S2506_C02_020MA"}, "S0802_C02_014E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_014EA,S0802_C02_014M,S0802_C02_014MA"}, "S2506_C02_021E": {"label": "Estimate!!Percent owner-occupied housing units with a mortgage!!Owner-occupied housing units with a mortgage!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$75,000 to $99,999", "concept": "Financial Characteristics for Housing Units With a Mortgage", "predicateType": "float", "group": "S2506", "limit": 0, "attributes": "S2506_C02_021EA,S2506_C02_021M,S2506_C02_021MA"}, "S0802_C02_013E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_013EA,S0802_C02_013M,S0802_C02_013MA"}, "S0804_C01_045E": {"label": "Estimate!!Total!!Workers 16 years and over!!OCCUPATION!!Sales and office occupations", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_045EA,S0804_C01_045M,S0804_C01_045MA"}, "S0505_C03_001E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Foreign-born population", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C03_001EA,S0505_C03_001M,S0505_C03_001MA"}, "S0503_C01_130E": {"label": "Estimate!!Total!!Occupied housing units!!ROOMS!!2 or 3 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_130EA,S0503_C01_130M,S0503_C01_130MA"}, "S0802_C02_010E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!SEX!!Female", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_010EA,S0802_C02_010M,S0802_C02_010MA"}, "S0505_C03_003E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen!!Entered 2010 or later", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_003EA,S0505_C03_003M,S0505_C03_003MA"}, "S0804_C01_040E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Workers 16 years and over for whom poverty status is determined!!100 to 149 percent of the poverty level", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_040EA,S0804_C01_040M,S0804_C01_040MA"}, "S0503_C01_132E": {"label": "Estimate!!Total!!Occupied housing units!!ROOMS!!6 or 7 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_132EA,S0503_C01_132M,S0503_C01_132MA"}, "S0505_C03_002E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_002EA,S0505_C03_002M,S0505_C03_002MA"}, "S0804_C01_041E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Workers 16 years and over for whom poverty status is determined!!At or above 150 percent of the poverty level", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C01_041EA,S0804_C01_041M,S0804_C01_041MA"}, "S0503_C01_131E": {"label": "Estimate!!Total!!Occupied housing units!!ROOMS!!4 or 5 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_131EA,S0503_C01_131M,S0503_C01_131MA"}, "S0503_C01_122E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_122EA,S0503_C01_122M,S0503_C01_122MA"}, "S2101_C04_010E": {"label": "Estimate!!Percent Veterans!!Civilian population 18 years and over!!AGE!!35 to 54 years", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C04_010EA,S2101_C04_010M,S2101_C04_010MA"}, "S2603_C02_032E": {"label": "Estimate!!Total group quarters population!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C02_032EA,S2603_C02_032M,S2603_C02_032MA"}, "S2201_C02_036E": {"label": "Estimate!!Percent!!WORK STATUS!!Families!!No workers in past 12 months", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C02_036EA,S2201_C02_036M,S2201_C02_036MA"}, "S0802_C02_008E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!AGE!!Median age (years)", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_008EA,S0802_C02_008M,S0802_C02_008MA"}, "S1501_C06_042E": {"label": "Estimate!!Percent Female!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Asian alone!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C06_042EA,S1501_C06_042M,S1501_C06_042MA"}, "S0503_C01_121E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_121EA,S0503_C01_121M,S0503_C01_121MA"}, "S2603_C02_033E": {"label": "Estimate!!Total group quarters population!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C02_033EA,S2603_C02_033M,S2603_C02_033MA"}, "S2201_C02_037E": {"label": "Estimate!!Percent!!WORK STATUS!!Families!!1 worker in past 12 months", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C02_037EA,S2201_C02_037M,S2201_C02_037MA"}, "S0802_C02_007E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!AGE!!60 years and over", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_007EA,S0802_C02_007M,S0802_C02_007MA"}, "S1501_C06_041E": {"label": "Estimate!!Percent Female!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Asian alone!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C06_041EA,S1501_C06_041M,S1501_C06_041MA"}, "S0503_C01_124E": {"label": "Estimate!!Total!!Occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C01_124EA,S0503_C01_124M,S0503_C01_124MA"}, "S2603_C02_034E": {"label": "Estimate!!Total group quarters population!!MARITAL STATUS!!Population 15 years and over!!Divorced", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C02_034EA,S2603_C02_034M,S2603_C02_034MA"}, "S1501_C06_044E": {"label": "Estimate!!Percent Female!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Native Hawaiian and Other Pacific Islander alone!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C06_044EA,S1501_C06_044M,S1501_C06_044MA"}, "S2201_C02_034E": {"label": "Estimate!!Percent!!Households!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Median income (dollars)", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C02_034EA,S2201_C02_034M,S2201_C02_034MA"}, "S0503_C01_123E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_123EA,S0503_C01_123M,S0503_C01_123MA"}, "S2603_C02_035E": {"label": "Estimate!!Total group quarters population!!MARITAL STATUS!!Population 15 years and over!!Separated", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C02_035EA,S2603_C02_035M,S2603_C02_035MA"}, "S1501_C06_043E": {"label": "Estimate!!Percent Female!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Native Hawaiian and Other Pacific Islander alone", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C06_043EA,S1501_C06_043M,S1501_C06_043MA"}, "S0802_C02_009E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!SEX!!Male", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_009EA,S0802_C02_009M,S0802_C02_009MA"}, "S2201_C02_035E": {"label": "Estimate!!Percent!!WORK STATUS!!Families", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C02_035EA,S2201_C02_035M,S2201_C02_035MA"}, "S0503_C01_126E": {"label": "Estimate!!Total!!Occupied housing units!!HOUSING TENURE!!Renter-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_126EA,S0503_C01_126M,S0503_C01_126MA"}, "S0802_C02_004E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!AGE!!25 to 44 years", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_004EA,S0802_C02_004M,S0802_C02_004MA"}, "S0503_C01_125E": {"label": "Estimate!!Total!!Occupied housing units!!HOUSING TENURE!!Owner-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_125EA,S0503_C01_125M,S0503_C01_125MA"}, "S0802_C02_003E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!AGE!!20 to 24 years", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_003EA,S0802_C02_003M,S0802_C02_003MA"}, "S2603_C02_030E": {"label": "Estimate!!Total group quarters population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!White alone, Not Hispanic or Latino", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C02_030EA,S2603_C02_030M,S2603_C02_030MA"}, "S2201_C02_038E": {"label": "Estimate!!Percent!!WORK STATUS!!Families!!2 or more workers in past 12 months", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C02_038EA,S2201_C02_038M,S2201_C02_038MA"}, "S0802_C02_006E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!AGE!!55 to 59 years", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_006EA,S0802_C02_006M,S0802_C02_006MA"}, "S1501_C06_040E": {"label": "Estimate!!Percent Female!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Asian alone", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C06_040EA,S1501_C06_040M,S1501_C06_040MA"}, "S0503_C01_128E": {"label": "Estimate!!Total!!Occupied housing units!!HOUSING TENURE!!Average household size of renter-occupied unit", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_128EA,S0503_C01_128M,S0503_C01_128MA"}, "S2603_C02_031E": {"label": "Estimate!!Total group quarters population!!MARITAL STATUS!!Population 15 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C02_031EA,S2603_C02_031M,S2603_C02_031MA"}, "S0503_C01_127E": {"label": "Estimate!!Total!!Occupied housing units!!HOUSING TENURE!!Average household size of owner-occupied unit", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_127EA,S0503_C01_127M,S0503_C01_127MA"}, "S0802_C02_005E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!AGE!!45 to 54 years", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_005EA,S0802_C02_005M,S0802_C02_005MA"}, "S1401_C01_004E": {"label": "Estimate!!Total!!Population 3 years and over enrolled in school!!Kindergarten to 12th grade!!Kindergarten", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C01_004EA,S1401_C01_004M,S1401_C01_004MA"}, "S2601A_C03_089E": {"label": "Estimate!!Institutionalized group quarters population!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Armed Forces", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_089EA,S2601A_C03_089M,S2601A_C03_089MA"}, "S2101_C04_018E": {"label": "Estimate!!Percent Veterans!!Civilian population 18 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Native Hawaiian and Other Pacific Islander alone", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C04_018EA,S2101_C04_018M,S2101_C04_018MA"}, "S1810_C02_047E": {"label": "Estimate!!With a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With an ambulatory difficulty", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C02_047EA,S1810_C02_047M,S1810_C02_047MA"}, "S1401_C01_003E": {"label": "Estimate!!Total!!Population 3 years and over enrolled in school!!Kindergarten to 12th grade", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C01_003EA,S1401_C01_003M,S1401_C01_003MA"}, "S1501_C06_049E": {"label": "Estimate!!Percent Female!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Two or more races", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C06_049EA,S1501_C06_049M,S1501_C06_049MA"}, "S2601A_C03_088E": {"label": "Estimate!!Institutionalized group quarters population!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed!!Percent of civilian labor force", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_088EA,S2601A_C03_088M,S2601A_C03_088MA"}, "S2101_C04_017E": {"label": "Estimate!!Percent Veterans!!Civilian population 18 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Asian alone", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C04_017EA,S2101_C04_017M,S2101_C04_017MA"}, "S1810_C02_048E": {"label": "Estimate!!With a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With an ambulatory difficulty!!Population under 18 years", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C02_048EA,S1810_C02_048M,S1810_C02_048MA"}, "S0503_C01_129E": {"label": "Estimate!!Total!!Occupied housing units!!ROOMS!!1 room", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_129EA,S0503_C01_129M,S0503_C01_129MA"}, "S1401_C01_002E": {"label": "Estimate!!Total!!Population 3 years and over enrolled in school!!Nursery school, preschool", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C01_002EA,S1401_C01_002M,S1401_C01_002MA"}, "S2101_C04_016E": {"label": "Estimate!!Percent Veterans!!Civilian population 18 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!American Indian and Alaska Native alone", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C04_016EA,S2101_C04_016M,S2101_C04_016MA"}, "S1810_C02_049E": {"label": "Estimate!!With a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With an ambulatory difficulty!!Population 18 to 64 years", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C02_049EA,S1810_C02_049M,S1810_C02_049MA"}, "S2701_C01_010E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!AGE!!75 years and older", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C01_010EA,S2701_C01_010M,S2701_C01_010MA"}, "S1401_C01_001E": {"label": "Estimate!!Total!!Population 3 years and over enrolled in school", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C01_001EA,S1401_C01_001M,S1401_C01_001MA"}, "S2101_C04_015E": {"label": "Estimate!!Percent Veterans!!Civilian population 18 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Black or African American alone", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C04_015EA,S2101_C04_015M,S2101_C04_015MA"}, "S2701_C01_011E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!AGE!!Under 19 years", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C01_011EA,S2701_C01_011M,S2701_C01_011MA"}, "S1401_C01_008E": {"label": "Estimate!!Total!!Population 3 years and over enrolled in school!!College, undergraduate", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C01_008EA,S1401_C01_008M,S1401_C01_008MA"}, "S2101_C04_014E": {"label": "Estimate!!Percent Veterans!!Civilian population 18 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C04_014EA,S2101_C04_014M,S2101_C04_014MA"}, "S2601A_C03_085E": {"label": "Estimate!!Institutionalized group quarters population!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_085EA,S2601A_C03_085M,S2601A_C03_085MA"}, "S2603_C02_036E": {"label": "Estimate!!Total group quarters population!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C02_036EA,S2603_C02_036M,S2603_C02_036MA"}, "S1810_C02_043E": {"label": "Estimate!!With a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a cognitive difficulty!!Population 18 to 64 years!!Population 35 to 64 years", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C02_043EA,S1810_C02_043M,S1810_C02_043MA"}, "S1501_C06_046E": {"label": "Estimate!!Percent Female!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Some other race alone", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C06_046EA,S1501_C06_046M,S1501_C06_046MA"}, "S2701_C01_012E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!AGE!!19 to 64 years", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C01_012EA,S2701_C01_012M,S2701_C01_012MA"}, "S2201_C02_032E": {"label": "Estimate!!Percent!!Households!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Hispanic or Latino origin (of any race)", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C02_032EA,S2201_C02_032M,S2201_C02_032MA"}, "S1401_C01_007E": {"label": "Estimate!!Total!!Population 3 years and over enrolled in school!!Kindergarten to 12th grade!!High school: grade 9 to grade 12", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C01_007EA,S1401_C01_007M,S1401_C01_007MA"}, "S2601A_C03_084E": {"label": "Estimate!!Institutionalized group quarters population!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_084EA,S2601A_C03_084M,S2601A_C03_084MA"}, "S2101_C04_013E": {"label": "Estimate!!Percent Veterans!!Civilian population 18 years and over!!AGE!!75 years and over", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C04_013EA,S2101_C04_013M,S2101_C04_013MA"}, "S2603_C02_037E": {"label": "Estimate!!Total group quarters population!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C02_037EA,S2603_C02_037M,S2603_C02_037MA"}, "S1810_C02_044E": {"label": "Estimate!!With a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a cognitive difficulty!!Population 65 years and over", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C02_044EA,S1810_C02_044M,S1810_C02_044MA"}, "S1501_C06_045E": {"label": "Estimate!!Percent Female!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Native Hawaiian and Other Pacific Islander alone!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C06_045EA,S1501_C06_045M,S1501_C06_045MA"}, "S2701_C01_013E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!AGE!!65 years and older", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C01_013EA,S2701_C01_013M,S2701_C01_013MA"}, "S2201_C02_033E": {"label": "Estimate!!Percent!!Households!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!White alone, not Hispanic or Latino", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C02_033EA,S2201_C02_033M,S2201_C02_033MA"}, "S1401_C01_006E": {"label": "Estimate!!Total!!Population 3 years and over enrolled in school!!Kindergarten to 12th grade!!Elementary: grade 5 to grade 8", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C01_006EA,S1401_C01_006M,S1401_C01_006MA"}, "S2101_C04_012E": {"label": "Estimate!!Percent Veterans!!Civilian population 18 years and over!!AGE!!65 to 74 years", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C04_012EA,S2101_C04_012M,S2101_C04_012MA"}, "S1501_C06_048E": {"label": "Estimate!!Percent Female!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Some other race alone!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C06_048EA,S1501_C06_048M,S1501_C06_048MA"}, "S2601A_C03_087E": {"label": "Estimate!!Institutionalized group quarters population!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_087EA,S2601A_C03_087M,S2601A_C03_087MA"}, "S2603_C02_038E": {"label": "Estimate!!Total group quarters population!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Nursery school through 12th grade", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C02_038EA,S2603_C02_038M,S2603_C02_038MA"}, "S1810_C02_045E": {"label": "Estimate!!With a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a cognitive difficulty!!Population 65 years and over!!Population 65 to 74 years", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C02_045EA,S1810_C02_045M,S1810_C02_045MA"}, "S2002_C02_002E": {"label": "Estimate!!Male!!Median earnings (dollars)!!Full-time, year-round workers 16 years and over with earnings!!RACE AND HISPANIC OR LATINO ORIGIN!!One race--!!White", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C02_002EA,S2002_C02_002M,S2002_C02_002MA"}, "S2201_C02_030E": {"label": "Estimate!!Percent!!Households!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Some other race alone", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C02_030EA,S2201_C02_030M,S2201_C02_030MA"}, "S2701_C01_014E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!SEX!!Male", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C01_014EA,S2701_C01_014M,S2701_C01_014MA"}, "S1401_C01_005E": {"label": "Estimate!!Total!!Population 3 years and over enrolled in school!!Kindergarten to 12th grade!!Elementary: grade 1 to grade 4", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C01_005EA,S1401_C01_005M,S1401_C01_005MA"}, "S2101_C04_011E": {"label": "Estimate!!Percent Veterans!!Civilian population 18 years and over!!AGE!!55 to 64 years", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C04_011EA,S2101_C04_011M,S2101_C04_011MA"}, "S1501_C06_047E": {"label": "Estimate!!Percent Female!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Some other race alone!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C06_047EA,S1501_C06_047M,S1501_C06_047MA"}, "S2601A_C03_086E": {"label": "Estimate!!Institutionalized group quarters population!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Employed", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_086EA,S2601A_C03_086M,S2601A_C03_086MA"}, "S2002_C02_001E": {"label": "Estimate!!Male!!Median earnings (dollars)!!Full-time, year-round workers 16 years and over with earnings", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C02_001EA,S2002_C02_001M,S2002_C02_001MA"}, "S2603_C02_039E": {"label": "Estimate!!Total group quarters population!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!College or graduate school", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C02_039EA,S2603_C02_039M,S2603_C02_039MA"}, "S1810_C02_046E": {"label": "Estimate!!With a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a cognitive difficulty!!Population 65 years and over!!Population 75 years and over", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C02_046EA,S1810_C02_046M,S1810_C02_046MA"}, "S2201_C02_031E": {"label": "Estimate!!Percent!!Households!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Two or more races", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C02_031EA,S2201_C02_031M,S2201_C02_031MA"}, "S2701_C01_015E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!SEX!!Female", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C01_015EA,S2701_C01_015M,S2701_C01_015MA"}, "S1501_C04_041E": {"label": "Estimate!!Percent Male!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Asian alone!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C04_041EA,S1501_C04_041M,S1501_C04_041MA"}, "S1501_C04_042E": {"label": "Estimate!!Percent Male!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Asian alone!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C04_042EA,S1501_C04_042M,S1501_C04_042MA"}, "S2002_C04_040E": {"label": "Estimate!!Women's earnings as a percentage of men's earnings!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Material moving occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "float", "group": "S2002", "limit": 0, "attributes": "S2002_C04_040EA,S2002_C04_040M,S2002_C04_040MA"}, "S1501_C04_040E": {"label": "Estimate!!Percent Male!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Asian alone", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C04_040EA,S1501_C04_040M,S1501_C04_040MA"}, "S2414_C01_017E": {"label": "Estimate!!Median earnings (dollars)!!Full-time, year-round civilian employed population 16 years and over with earnings!!Professional, scientific, and management, and administrative and waste management services:!!Professional, scientific, and technical services", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C01_017EA,S2414_C01_017M,S2414_C01_017MA"}, "S2303_C06_031E": {"label": "Estimate!!Percent Female!!Population 16 to 64 years!!Mean usual hours worked for workers", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C06_031EA,S2303_C06_031M,S2303_C06_031MA"}, "S1501_C04_045E": {"label": "Estimate!!Percent Male!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Native Hawaiian and Other Pacific Islander alone!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C04_045EA,S1501_C04_045M,S1501_C04_045MA"}, "S2414_C01_016E": {"label": "Estimate!!Median earnings (dollars)!!Full-time, year-round civilian employed population 16 years and over with earnings!!Professional, scientific, and management, and administrative and waste management services:", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C01_016EA,S2414_C01_016M,S2414_C01_016MA"}, "S2303_C06_032E": {"label": "Estimate!!Percent Female!!Population 16 to 64 years!!Median age of workers 16 to 64 years", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C06_032EA,S2303_C06_032M,S2303_C06_032MA"}, "S1501_C04_046E": {"label": "Estimate!!Percent Male!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Some other race alone", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C04_046EA,S1501_C04_046M,S1501_C04_046MA"}, "S1501_C04_043E": {"label": "Estimate!!Percent Male!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Native Hawaiian and Other Pacific Islander alone", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C04_043EA,S1501_C04_043M,S1501_C04_043MA"}, "S2414_C01_019E": {"label": "Estimate!!Median earnings (dollars)!!Full-time, year-round civilian employed population 16 years and over with earnings!!Professional, scientific, and management, and administrative and waste management services:!!Administrative and support and waste management services", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C01_019EA,S2414_C01_019M,S2414_C01_019MA"}, "S0505_C03_031E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_031EA,S0505_C03_031M,S0505_C03_031MA"}, "S2414_C01_018E": {"label": "Estimate!!Median earnings (dollars)!!Full-time, year-round civilian employed population 16 years and over with earnings!!Professional, scientific, and management, and administrative and waste management services:!!Management of companies and enterprises", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C01_018EA,S2414_C01_018M,S2414_C01_018MA"}, "S2303_C06_030E": {"label": "Estimate!!Percent Female!!Population 16 to 64 years!!USUAL HOURS WORKED!!Did not work", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C06_030EA,S2303_C06_030M,S2303_C06_030MA"}, "S1501_C04_044E": {"label": "Estimate!!Percent Male!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Native Hawaiian and Other Pacific Islander alone!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C04_044EA,S1501_C04_044M,S1501_C04_044MA"}, "S0505_C03_030E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_030EA,S0505_C03_030M,S0505_C03_030MA"}, "S0502_C03_134E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Occupied housing units!!ROOMS!!8 or more rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_134EA,S0502_C03_134M,S0502_C03_134MA"}, "S0505_C03_033E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Foreign-born population!!HOUSEHOLD TYPE!!In other households", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_033EA,S0505_C03_033M,S0505_C03_033MA"}, "S0502_C03_135E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Occupied housing units!!Median number of rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_135EA,S0502_C03_135M,S0502_C03_135MA"}, "S0505_C03_032E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Foreign-born population!!HOUSEHOLD TYPE!!In married-couple family", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_032EA,S0505_C03_032M,S0505_C03_032MA"}, "S0505_C03_035E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Foreign-born population!!Average family size", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_035EA,S0505_C03_035M,S0505_C03_035MA"}, "S0502_C03_132E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Occupied housing units!!ROOMS!!4 or 5 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_132EA,S0502_C03_132M,S0502_C03_132MA"}, "S2303_C06_033E": {"label": "Estimate!!Percent Female!!Population 16 to 64 years!!Workers 16 to 64 years who worked full-time, year-round", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C06_033EA,S2303_C06_033M,S2303_C06_033MA"}, "S0502_C03_133E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Occupied housing units!!ROOMS!!6 or 7 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_133EA,S0502_C03_133M,S0502_C03_133MA"}, "S0505_C03_034E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Foreign-born population!!Average household size", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_034EA,S0505_C03_034M,S0505_C03_034MA"}, "S0505_C03_037E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_037EA,S0505_C03_037M,S0505_C03_037MA"}, "S0601PR_C03_007E": {"label": "Estimate!!Native; born in the U.S.!!Total population!!AGE!!55 to 64 years", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C03_007EA,S0601PR_C03_007M,S0601PR_C03_007MA"}, "S0502_C03_138E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Occupied housing units!!VEHICLES AVAILABLE!!1 or more", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_138EA,S0502_C03_138M,S0502_C03_138MA"}, "S0505_C03_036E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!MARITAL STATUS!!Population 15 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C03_036EA,S0505_C03_036M,S0505_C03_036MA"}, "S0601PR_C03_008E": {"label": "Estimate!!Native; born in the U.S.!!Total population!!AGE!!65 to 74 years", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C03_008EA,S0601PR_C03_008M,S0601PR_C03_008MA"}, "S0502_C03_139E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Occupied housing units!!SELECTED CHARACTERISTICS!!No telephone service available", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_139EA,S0502_C03_139M,S0502_C03_139MA"}, "S0505_C03_039E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!MARITAL STATUS!!Population 15 years and over!!Divorced or separated", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_039EA,S0505_C03_039M,S0505_C03_039MA"}, "S0601PR_C03_009E": {"label": "Estimate!!Native; born in the U.S.!!Total population!!AGE!!75 years and over", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C03_009EA,S0601PR_C03_009M,S0601PR_C03_009MA"}, "S0502_C03_136E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Occupied housing units!!1.01 or more occupants per room", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_136EA,S0502_C03_136M,S0502_C03_136MA"}, "S0505_C03_038E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_038EA,S0505_C03_038M,S0505_C03_038MA"}, "S0103PR_C02_099E": {"label": "Estimate!!65 years and over!!Owner-occupied housing units!!OWNER CHARACTERISTICS!!Median selected monthly owner costs with a mortgage (dollars)", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_099EA,S0103PR_C02_099M,S0103PR_C02_099MA"}, "S0502_C03_137E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Occupied housing units!!VEHICLES AVAILABLE!!None", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_137EA,S0502_C03_137M,S0502_C03_137MA"}, "S0601_C01_049E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!Below 100 percent of the poverty level", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C01_049EA,S0601_C01_049M,S0601_C01_049MA"}, "S0505_C03_029E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_029EA,S0505_C03_029M,S0505_C03_029MA"}, "S2603_C02_044E": {"label": "Estimate!!Total group quarters population!!VETERAN STATUS!!Civilian population 18 years and over!!Civilian veteran", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C02_044EA,S2603_C02_044M,S2603_C02_044MA"}, "S0601PR_C03_015E": {"label": "Estimate!!Native; born in the U.S.!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C03_015EA,S0601PR_C03_015M,S0601PR_C03_015MA"}, "S1401_C06_007E": {"label": "Estimate!!Percent in private school!!Population 3 years and over enrolled in school!!Kindergarten to 12th grade!!High school: grade 9 to grade 12", "concept": "School Enrollment", "predicateType": "float", "group": "S1401", "limit": 0, "attributes": "S1401_C06_007EA,S1401_C06_007M,S1401_C06_007MA"}, "S2413_C01_012E": {"label": "Estimate!!Median earnings (dollars)!!Civilian employed population 16 years and over with earnings!!Information", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C01_012EA,S2413_C01_012M,S2413_C01_012MA"}, "S0505_C03_028E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_028EA,S0505_C03_028M,S0505_C03_028MA"}, "S2603_C02_045E": {"label": "Estimate!!Total group quarters population!!DISABILITY STATUS!!Total population", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C02_045EA,S2603_C02_045M,S2603_C02_045MA"}, "SUMLEVEL": {"label": "Summary Level code", "predicateType": "string", "group": "N/A", "limit": 0}, "S2413_C01_011E": {"label": "Estimate!!Median earnings (dollars)!!Civilian employed population 16 years and over with earnings!!Transportation and warehousing, and utilities:!!Utilities", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C01_011EA,S2413_C01_011M,S2413_C01_011MA"}, "S0601PR_C03_016E": {"label": "Estimate!!Native; born in the U.S.!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C03_016EA,S0601PR_C03_016M,S0601PR_C03_016MA"}, "S1401_C06_006E": {"label": "Estimate!!Percent in private school!!Population 3 years and over enrolled in school!!Kindergarten to 12th grade!!Elementary: grade 5 to grade 8", "concept": "School Enrollment", "predicateType": "float", "group": "S1401", "limit": 0, "attributes": "S1401_C06_006EA,S1401_C06_006M,S1401_C06_006MA"}, "S0501_C03_001E": {"label": "Estimate!!Foreign-born!!Total population", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C03_001EA,S0501_C03_001M,S0501_C03_001MA"}, "S2201_C02_001E": {"label": "Estimate!!Percent!!Households", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C02_001EA,S2201_C02_001M,S2201_C02_001MA"}, "S0601_C01_047E": {"label": "Estimate!!Total!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!Median income (dollars)", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "int", "group": "S0601", "limit": 0, "attributes": "S0601_C01_047EA,S0601_C01_047M,S0601_C01_047MA"}, "S2603_C02_046E": {"label": "Estimate!!Total group quarters population!!DISABILITY STATUS!!Total population!!With a disability", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C02_046EA,S2603_C02_046M,S2603_C02_046MA"}, "S2413_C01_010E": {"label": "Estimate!!Median earnings (dollars)!!Civilian employed population 16 years and over with earnings!!Transportation and warehousing, and utilities:!!Transportation and warehousing", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C01_010EA,S2413_C01_010M,S2413_C01_010MA"}, "S0601PR_C03_017E": {"label": "Estimate!!Native; born in the U.S.!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C03_017EA,S0601PR_C03_017M,S0601PR_C03_017MA"}, "S1401_C06_005E": {"label": "Estimate!!Percent in private school!!Population 3 years and over enrolled in school!!Kindergarten to 12th grade!!Elementary: grade 1 to grade 4", "concept": "School Enrollment", "predicateType": "float", "group": "S1401", "limit": 0, "attributes": "S1401_C06_005EA,S1401_C06_005M,S1401_C06_005MA"}, "S0501_C03_002E": {"label": "Estimate!!Foreign-born!!Total population!!SEX AND AGE!!Male", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_002EA,S0501_C03_002M,S0501_C03_002MA"}, "S0601_C01_048E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "int", "group": "S0601", "limit": 0, "attributes": "S0601_C01_048EA,S0601_C01_048M,S0601_C01_048MA"}, "S2603_C02_047E": {"label": "Estimate!!Total group quarters population!!DISABILITY STATUS!!Population 18 to 64 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C02_047EA,S2603_C02_047M,S2603_C02_047MA"}, "S0601PR_C03_018E": {"label": "Estimate!!Native; born in the U.S.!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C03_018EA,S0601PR_C03_018M,S0601PR_C03_018MA"}, "S1401_C06_004E": {"label": "Estimate!!Percent in private school!!Population 3 years and over enrolled in school!!Kindergarten to 12th grade!!Kindergarten", "concept": "School Enrollment", "predicateType": "float", "group": "S1401", "limit": 0, "attributes": "S1401_C06_004EA,S1401_C06_004M,S1401_C06_004MA"}, "S0501_C03_003E": {"label": "Estimate!!Foreign-born!!Total population!!SEX AND AGE!!Female", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_003EA,S0501_C03_003M,S0501_C03_003MA"}, "S2002_C04_049E": {"label": "Estimate!!Women's earnings as a percentage of men's earnings!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Information", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "float", "group": "S2002", "limit": 0, "attributes": "S2002_C04_049EA,S2002_C04_049M,S2002_C04_049MA"}, "S2603_C02_040E": {"label": "Estimate!!Total group quarters population!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C02_040EA,S2603_C02_040M,S2603_C02_040MA"}, "S0502_C03_142E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_142EA,S0502_C03_142M,S0502_C03_142MA"}, "S1401_C06_003E": {"label": "Estimate!!Percent in private school!!Population 3 years and over enrolled in school!!Kindergarten to 12th grade", "concept": "School Enrollment", "predicateType": "float", "group": "S1401", "limit": 0, "attributes": "S1401_C06_003EA,S1401_C06_003M,S1401_C06_003MA"}, "S0601PR_C03_011E": {"label": "Estimate!!Native; born in the U.S.!!Total population!!SEX!!Male", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C03_011EA,S0601PR_C03_011M,S0601PR_C03_011MA"}, "S2201_C02_004E": {"label": "Estimate!!Percent!!Households!!Married-couple family", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C02_004EA,S2201_C02_004M,S2201_C02_004MA"}, "S0501_C03_004E": {"label": "Estimate!!Foreign-born!!Total population!!SEX AND AGE!!Under 5 years", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_004EA,S0501_C03_004M,S0501_C03_004MA"}, "S2413_C01_016E": {"label": "Estimate!!Median earnings (dollars)!!Civilian employed population 16 years and over with earnings!!Professional, scientific, and management, and administrative and waste management services:", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C01_016EA,S2413_C01_016M,S2413_C01_016MA"}, "S0502_C03_143E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_143EA,S0502_C03_143M,S0502_C03_143MA"}, "S1002_C03_001E": {"label": "Estimate!!30 to 59 years!!Percent distribution of grandparents responsible for grandchildren!!Grandparents living with own grandchildren under 18 years", "concept": "Grandparents", "predicateType": "int", "group": "S1002", "limit": 0, "attributes": "S1002_C03_001EA,S1002_C03_001M,S1002_C03_001MA"}, "S0501_C03_005E": {"label": "Estimate!!Foreign-born!!Total population!!SEX AND AGE!!5 to 17 years", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_005EA,S0501_C03_005M,S0501_C03_005MA"}, "S1401_C06_002E": {"label": "Estimate!!Percent in private school!!Population 3 years and over enrolled in school!!Nursery school, preschool", "concept": "School Enrollment", "predicateType": "float", "group": "S1401", "limit": 0, "attributes": "S1401_C06_002EA,S1401_C06_002M,S1401_C06_002MA"}, "S2603_C02_041E": {"label": "Estimate!!Total group quarters population!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate or higher", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C02_041EA,S2603_C02_041M,S2603_C02_041MA"}, "S0601PR_C03_012E": {"label": "Estimate!!Native; born in the U.S.!!Total population!!SEX!!Female", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C03_012EA,S0601PR_C03_012M,S0601PR_C03_012MA"}, "S2201_C02_005E": {"label": "Estimate!!Percent!!Households!!Other family:", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C02_005EA,S2201_C02_005M,S2201_C02_005MA"}, "S2413_C01_015E": {"label": "Estimate!!Median earnings (dollars)!!Civilian employed population 16 years and over with earnings!!Finance and insurance, and real estate and rental and leasing:!!Real estate and rental and leasing", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C01_015EA,S2413_C01_015M,S2413_C01_015MA"}, "S0502_C03_140E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Occupied housing units!!SELECTED CHARACTERISTICS!!Limited English Speaking Households", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_140EA,S0502_C03_140M,S0502_C03_140MA"}, "S0501_C03_006E": {"label": "Estimate!!Foreign-born!!Total population!!SEX AND AGE!!18 to 24 years", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_006EA,S0501_C03_006M,S0501_C03_006MA"}, "S2603_C02_042E": {"label": "Estimate!!Total group quarters population!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree or higher", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C02_042EA,S2603_C02_042M,S2603_C02_042MA"}, "S1401_C06_001E": {"label": "Estimate!!Percent in private school!!Population 3 years and over enrolled in school", "concept": "School Enrollment", "predicateType": "float", "group": "S1401", "limit": 0, "attributes": "S1401_C06_001EA,S1401_C06_001M,S1401_C06_001MA"}, "S0601PR_C03_013E": {"label": "Estimate!!Native; born in the U.S.!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C03_013EA,S0601PR_C03_013M,S0601PR_C03_013MA"}, "S2201_C02_002E": {"label": "Estimate!!Percent!!Households!!With one or more people in the household 60 years and over", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C02_002EA,S2201_C02_002M,S2201_C02_002MA"}, "S2413_C01_014E": {"label": "Estimate!!Median earnings (dollars)!!Civilian employed population 16 years and over with earnings!!Finance and insurance, and real estate and rental and leasing:!!Finance and insurance", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C01_014EA,S2413_C01_014M,S2413_C01_014MA"}, "S0501_C03_007E": {"label": "Estimate!!Foreign-born!!Total population!!SEX AND AGE!!25 to 44 years", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_007EA,S0501_C03_007M,S0501_C03_007MA"}, "S0502_C03_141E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Owner-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C03_141EA,S0502_C03_141M,S0502_C03_141MA"}, "S2603_C02_043E": {"label": "Estimate!!Total group quarters population!!VETERAN STATUS!!Civilian population 18 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C02_043EA,S2603_C02_043M,S2603_C02_043MA"}, "S0601PR_C03_014E": {"label": "Estimate!!Native; born in the U.S.!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C03_014EA,S0601PR_C03_014M,S0601PR_C03_014MA"}, "S2201_C02_003E": {"label": "Estimate!!Percent!!Households!!No people in the household 60 years and over", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C02_003EA,S2201_C02_003M,S2201_C02_003MA"}, "S2413_C01_013E": {"label": "Estimate!!Median earnings (dollars)!!Civilian employed population 16 years and over with earnings!!Finance and insurance, and real estate and rental and leasing:", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C01_013EA,S2413_C01_013M,S2413_C01_013MA"}, "S2414_C01_025E": {"label": "Estimate!!Median earnings (dollars)!!Full-time, year-round civilian employed population 16 years and over with earnings!!Arts, entertainment, and recreation, and accommodation and food services:!!Accommodation and food services", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C01_025EA,S2414_C01_025M,S2414_C01_025MA"}, "S0601_C01_041E": {"label": "Estimate!!Total!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$15,000 to $24,999", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C01_041EA,S0601_C01_041M,S0601_C01_041MA"}, "S2002_C04_045E": {"label": "Estimate!!Women's earnings as a percentage of men's earnings!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Wholesale trade", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "float", "group": "S2002", "limit": 0, "attributes": "S2002_C04_045EA,S2002_C04_045M,S2002_C04_045MA"}, "S1501_C04_049E": {"label": "Estimate!!Percent Male!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Two or more races", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C04_049EA,S1501_C04_049M,S1501_C04_049MA"}, "S2414_C01_024E": {"label": "Estimate!!Median earnings (dollars)!!Full-time, year-round civilian employed population 16 years and over with earnings!!Arts, entertainment, and recreation, and accommodation and food services:!!Arts, entertainment, and recreation", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C01_024EA,S2414_C01_024M,S2414_C01_024MA"}, "S2002_C04_046E": {"label": "Estimate!!Women's earnings as a percentage of men's earnings!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Retail trade", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "float", "group": "S2002", "limit": 0, "attributes": "S2002_C04_046EA,S2002_C04_046M,S2002_C04_046MA"}, "S0601_C01_042E": {"label": "Estimate!!Total!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$25,000 to $34,999", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C01_042EA,S0601_C01_042M,S0601_C01_042MA"}, "S2413_C01_019E": {"label": "Estimate!!Median earnings (dollars)!!Civilian employed population 16 years and over with earnings!!Professional, scientific, and management, and administrative and waste management services:!!Administrative and support and waste management services", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C01_019EA,S2413_C01_019M,S2413_C01_019MA"}, "S2002_C04_047E": {"label": "Estimate!!Women's earnings as a percentage of men's earnings!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Transportation and warehousing", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "float", "group": "S2002", "limit": 0, "attributes": "S2002_C04_047EA,S2002_C04_047M,S2002_C04_047MA"}, "S2414_C01_027E": {"label": "Estimate!!Median earnings (dollars)!!Full-time, year-round civilian employed population 16 years and over with earnings!!Public administration", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C01_027EA,S2414_C01_027M,S2414_C01_027MA"}, "S2302_C03_030E": {"label": "Estimate!!Families with own children under 18 years!!WORK STATUS CHARACTERISTICS!!Married-couple families!!Householder did not work in the past 12 months:!!Spouse did not work in the past 12 months", "concept": "Employment Characteristics of Families", "predicateType": "int", "group": "S2302", "limit": 0, "attributes": "S2302_C03_030EA,S2302_C03_030M,S2302_C03_030MA"}, "S1501_C04_047E": {"label": "Estimate!!Percent Male!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Some other race alone!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C04_047EA,S1501_C04_047M,S1501_C04_047MA"}, "S2413_C01_018E": {"label": "Estimate!!Median earnings (dollars)!!Civilian employed population 16 years and over with earnings!!Professional, scientific, and management, and administrative and waste management services:!!Management of companies and enterprises", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C01_018EA,S2413_C01_018M,S2413_C01_018MA"}, "S2002_C04_048E": {"label": "Estimate!!Women's earnings as a percentage of men's earnings!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Utilities", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "float", "group": "S2002", "limit": 0, "attributes": "S2002_C04_048EA,S2002_C04_048M,S2002_C04_048MA"}, "S2414_C01_026E": {"label": "Estimate!!Median earnings (dollars)!!Full-time, year-round civilian employed population 16 years and over with earnings!!Other services, except public administration", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C01_026EA,S2414_C01_026M,S2414_C01_026MA"}, "S0601_C01_040E": {"label": "Estimate!!Total!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$10,000 to $14,999", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C01_040EA,S0601_C01_040M,S0601_C01_040MA"}, "S0601PR_C03_010E": {"label": "Estimate!!Native; born in the U.S.!!Total population!!AGE!!Median age (years)", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C03_010EA,S0601PR_C03_010M,S0601PR_C03_010MA"}, "S1501_C04_048E": {"label": "Estimate!!Percent Male!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Some other race alone!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C04_048EA,S1501_C04_048M,S1501_C04_048MA"}, "S2413_C01_017E": {"label": "Estimate!!Median earnings (dollars)!!Civilian employed population 16 years and over with earnings!!Professional, scientific, and management, and administrative and waste management services:!!Professional, scientific, and technical services", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C01_017EA,S2413_C01_017M,S2413_C01_017MA"}, "S0601_C01_045E": {"label": "Estimate!!Total!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$65,000 to $74,999", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C01_045EA,S0601_C01_045M,S0601_C01_045MA"}, "S2002_C04_041E": {"label": "Estimate!!Women's earnings as a percentage of men's earnings!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Agriculture, forestry, fishing and hunting", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "float", "group": "S2002", "limit": 0, "attributes": "S2002_C04_041EA,S2002_C04_041M,S2002_C04_041MA"}, "S2414_C01_021E": {"label": "Estimate!!Median earnings (dollars)!!Full-time, year-round civilian employed population 16 years and over with earnings!!Educational services, and health care and social assistance:!!Educational services", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C01_021EA,S2414_C01_021M,S2414_C01_021MA"}, "S2601A_C03_097E": {"label": "Estimate!!Institutionalized group quarters population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_097EA,S2601A_C03_097M,S2601A_C03_097MA"}, "S2603_C02_048E": {"label": "Estimate!!Total group quarters population!!DISABILITY STATUS!!Population 18 to 64 years!!With a disability", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C02_048EA,S2603_C02_048M,S2603_C02_048MA"}, "S0601_C01_046E": {"label": "Estimate!!Total!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$75,000 or more", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C01_046EA,S0601_C01_046M,S0601_C01_046MA"}, "S2414_C01_020E": {"label": "Estimate!!Median earnings (dollars)!!Full-time, year-round civilian employed population 16 years and over with earnings!!Educational services, and health care and social assistance:", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C01_020EA,S2414_C01_020M,S2414_C01_020MA"}, "S2601A_C03_096E": {"label": "Estimate!!Institutionalized group quarters population!!OCCUPATION!!Civilian employed population 16 years and over!!Production, transportation, and material moving occupations", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_096EA,S2601A_C03_096M,S2601A_C03_096MA"}, "S2002_C04_042E": {"label": "Estimate!!Women's earnings as a percentage of men's earnings!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Mining, quarrying, and oil and gas extraction", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "float", "group": "S2002", "limit": 0, "attributes": "S2002_C04_042EA,S2002_C04_042M,S2002_C04_042MA"}, "S2603_C02_049E": {"label": "Estimate!!Total group quarters population!!DISABILITY STATUS!!Population 18 to 64 years!!No disability", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C02_049EA,S2603_C02_049M,S2603_C02_049MA"}, "S2414_C01_023E": {"label": "Estimate!!Median earnings (dollars)!!Full-time, year-round civilian employed population 16 years and over with earnings!!Arts, entertainment, and recreation, and accommodation and food services:", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C01_023EA,S2414_C01_023M,S2414_C01_023MA"}, "S0601_C01_043E": {"label": "Estimate!!Total!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$35,000 to $49,999", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C01_043EA,S0601_C01_043M,S0601_C01_043MA"}, "S2002_C04_043E": {"label": "Estimate!!Women's earnings as a percentage of men's earnings!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Construction", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "float", "group": "S2002", "limit": 0, "attributes": "S2002_C04_043EA,S2002_C04_043M,S2002_C04_043MA"}, "S2601A_C03_099E": {"label": "Estimate!!Institutionalized group quarters population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!With earnings:!!Male", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_099EA,S2601A_C03_099M,S2601A_C03_099MA"}, "S1401_C06_009E": {"label": "Estimate!!Percent in private school!!Population 3 years and over enrolled in school!!Graduate, professional school", "concept": "School Enrollment", "predicateType": "float", "group": "S1401", "limit": 0, "attributes": "S1401_C06_009EA,S1401_C06_009M,S1401_C06_009MA"}, "S2414_C01_022E": {"label": "Estimate!!Median earnings (dollars)!!Full-time, year-round civilian employed population 16 years and over with earnings!!Educational services, and health care and social assistance:!!Health care and social assistance", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C01_022EA,S2414_C01_022M,S2414_C01_022MA"}, "S0601_C01_044E": {"label": "Estimate!!Total!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$50,000 to $64,999", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C01_044EA,S0601_C01_044M,S0601_C01_044MA"}, "S2002_C04_044E": {"label": "Estimate!!Women's earnings as a percentage of men's earnings!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Manufacturing", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "float", "group": "S2002", "limit": 0, "attributes": "S2002_C04_044EA,S2002_C04_044M,S2002_C04_044MA"}, "S2601A_C03_098E": {"label": "Estimate!!Institutionalized group quarters population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!Per capita income (dollars)", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_098EA,S2601A_C03_098M,S2601A_C03_098MA"}, "S1401_C06_008E": {"label": "Estimate!!Percent in private school!!Population 3 years and over enrolled in school!!College, undergraduate", "concept": "School Enrollment", "predicateType": "float", "group": "S1401", "limit": 0, "attributes": "S1401_C06_008EA,S1401_C06_008M,S1401_C06_008MA"}, "S2302_C03_028E": {"label": "Estimate!!Families with own children under 18 years!!WORK STATUS CHARACTERISTICS!!Married-couple families!!Householder did not work in the past 12 months:!!Spouse worked full-time, year-round in the past 12 months", "concept": "Employment Characteristics of Families", "predicateType": "int", "group": "S2302", "limit": 0, "attributes": "S2302_C03_028EA,S2302_C03_028M,S2302_C03_028MA"}, "S1603_C01_004E": {"label": "Estimate!!Total!!Total population 5 years and over!!AGE!!65 years and over", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "int", "group": "S1603", "limit": 0, "attributes": "S1603_C01_004EA,S1603_C01_004M,S1603_C01_004MA"}, "S2302_C03_027E": {"label": "Estimate!!Families with own children under 18 years!!WORK STATUS CHARACTERISTICS!!Married-couple families!!Householder did not work in the past 12 months:", "concept": "Employment Characteristics of Families", "predicateType": "int", "group": "S2302", "limit": 0, "attributes": "S2302_C03_027EA,S2302_C03_027M,S2302_C03_027MA"}, "S2002_C04_050E": {"label": "Estimate!!Women's earnings as a percentage of men's earnings!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Finance and insurance", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "float", "group": "S2002", "limit": 0, "attributes": "S2002_C04_050EA,S2002_C04_050M,S2002_C04_050MA"}, "S1501_C04_030E": {"label": "Estimate!!Percent Male!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!White alone!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C04_030EA,S1501_C04_030M,S1501_C04_030MA"}, "S1603_C01_003E": {"label": "Estimate!!Total!!Total population 5 years and over!!AGE!!18 to 64 years", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "int", "group": "S1603", "limit": 0, "attributes": "S1603_C01_003EA,S1603_C01_003M,S1603_C01_003MA"}, "S2302_C03_026E": {"label": "Estimate!!Families with own children under 18 years!!WORK STATUS CHARACTERISTICS!!Married-couple families!!Householder worked less than full-time, year-round in the past 12 months:!!Spouse did not work in the past 12 months", "concept": "Employment Characteristics of Families", "predicateType": "int", "group": "S2302", "limit": 0, "attributes": "S2302_C03_026EA,S2302_C03_026M,S2302_C03_026MA"}, "S2002_C04_051E": {"label": "Estimate!!Women's earnings as a percentage of men's earnings!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Real estate and rental and leasing", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "float", "group": "S2002", "limit": 0, "attributes": "S2002_C04_051EA,S2002_C04_051M,S2002_C04_051MA"}, "S1603_C01_002E": {"label": "Estimate!!Total!!Total population 5 years and over!!AGE!!5 to 17 years", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "int", "group": "S1603", "limit": 0, "attributes": "S1603_C01_002EA,S1603_C01_002M,S1603_C01_002MA"}, "S2302_C03_025E": {"label": "Estimate!!Families with own children under 18 years!!WORK STATUS CHARACTERISTICS!!Married-couple families!!Householder worked less than full-time, year-round in the past 12 months:!!Spouse worked less than full-time, year-round in the past 12 months", "concept": "Employment Characteristics of Families", "predicateType": "int", "group": "S2302", "limit": 0, "attributes": "S2302_C03_025EA,S2302_C03_025M,S2302_C03_025MA"}, "S2002_C04_052E": {"label": "Estimate!!Women's earnings as a percentage of men's earnings!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Professional, scientific, and technical services", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "float", "group": "S2002", "limit": 0, "attributes": "S2002_C04_052EA,S2002_C04_052M,S2002_C04_052MA"}, "S1603_C01_001E": {"label": "Estimate!!Total!!Total population 5 years and over", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "int", "group": "S1603", "limit": 0, "attributes": "S1603_C01_001EA,S1603_C01_001M,S1603_C01_001MA"}, "S2302_C03_024E": {"label": "Estimate!!Families with own children under 18 years!!WORK STATUS CHARACTERISTICS!!Married-couple families!!Householder worked less than full-time, year-round in the past 12 months:!!Spouse worked full-time, year-round in the past 12 months", "concept": "Employment Characteristics of Families", "predicateType": "int", "group": "S2302", "limit": 0, "attributes": "S2302_C03_024EA,S2302_C03_024M,S2302_C03_024MA"}, "S1603_C01_008E": {"label": "Estimate!!Total!!Total population 5 years and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born!!Not a U.S. citizen", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "int", "group": "S1603", "limit": 0, "attributes": "S1603_C01_008EA,S1603_C01_008M,S1603_C01_008MA"}, "S1501_C04_033E": {"label": "Estimate!!Percent Male!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!White alone, not Hispanic or Latino!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C04_033EA,S1501_C04_033M,S1501_C04_033MA"}, "S2302_C03_023E": {"label": "Estimate!!Families with own children under 18 years!!WORK STATUS CHARACTERISTICS!!Married-couple families!!Householder worked less than full-time, year-round in the past 12 months:", "concept": "Employment Characteristics of Families", "predicateType": "int", "group": "S2302", "limit": 0, "attributes": "S2302_C03_023EA,S2302_C03_023M,S2302_C03_023MA"}, "S0601_C01_050E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!100 to 149 percent of the poverty level", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C01_050EA,S0601_C01_050M,S0601_C01_050MA"}, "S1603_C01_007E": {"label": "Estimate!!Total!!Total population 5 years and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born!!Naturalized U.S. citizen", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "int", "group": "S1603", "limit": 0, "attributes": "S1603_C01_007EA,S1603_C01_007M,S1603_C01_007MA"}, "S1501_C04_034E": {"label": "Estimate!!Percent Male!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Black alone", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C04_034EA,S1501_C04_034M,S1501_C04_034MA"}, "S2302_C03_022E": {"label": "Estimate!!Families with own children under 18 years!!WORK STATUS CHARACTERISTICS!!Married-couple families!!Householder worked full-time, year-round in the past 12 months:!!Spouse did not work in the past 12 months", "concept": "Employment Characteristics of Families", "predicateType": "int", "group": "S2302", "limit": 0, "attributes": "S2302_C03_022EA,S2302_C03_022M,S2302_C03_022MA"}, "S1603_C01_006E": {"label": "Estimate!!Total!!Total population 5 years and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "int", "group": "S1603", "limit": 0, "attributes": "S1603_C01_006EA,S1603_C01_006M,S1603_C01_006MA"}, "S1501_C04_031E": {"label": "Estimate!!Percent Male!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!White alone, not Hispanic or Latino", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C04_031EA,S1501_C04_031M,S1501_C04_031MA"}, "S1603_C01_005E": {"label": "Estimate!!Total!!Total population 5 years and over!!NATIVITY AND CITIZENSHIP STATUS!!Native", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "int", "group": "S1603", "limit": 0, "attributes": "S1603_C01_005EA,S1603_C01_005M,S1603_C01_005MA"}, "S2302_C03_021E": {"label": "Estimate!!Families with own children under 18 years!!WORK STATUS CHARACTERISTICS!!Married-couple families!!Householder worked full-time, year-round in the past 12 months:!!Spouse worked less than full-time, year-round in the past 12 months", "concept": "Employment Characteristics of Families", "predicateType": "int", "group": "S2302", "limit": 0, "attributes": "S2302_C03_021EA,S2302_C03_021M,S2302_C03_021MA"}, "S1501_C04_032E": {"label": "Estimate!!Percent Male!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!White alone, not Hispanic or Latino!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C04_032EA,S1501_C04_032M,S1501_C04_032MA"}, "S0502_C03_146E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_146EA,S0502_C03_146M,S0502_C03_146MA"}, "S1002_C03_004E": {"label": "Estimate!!30 to 59 years!!Percent distribution of grandparents responsible for grandchildren!!Grandparents living with own grandchildren under 18 years!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C03_004EA,S1002_C03_004M,S1002_C03_004MA"}, "S1401_C06_011E": {"label": "Estimate!!Percent in private school!!Population enrolled in college or graduate school!!Males enrolled in college or graduate school", "concept": "School Enrollment", "predicateType": "float", "group": "S1401", "limit": 0, "attributes": "S1401_C06_011EA,S1401_C06_011M,S1401_C06_011MA"}, "S2201_C02_008E": {"label": "Estimate!!Percent!!Households!!Nonfamily households", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C02_008EA,S2201_C02_008M,S2201_C02_008MA"}, "S2502_C01_012E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!AGE OF HOUSEHOLDER!!35 to 44 years", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C01_012EA,S2502_C01_012M,S2502_C01_012MA"}, "S0506_C06_145E": {"label": "Estimate!!Foreign-born; Born in South America!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_145EA,S0506_C06_145M,S0506_C06_145MA"}, "S0505_C03_021E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Foreign-born population!!SEX AND AGE!!Median age (years)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_021EA,S0505_C03_021M,S0505_C03_021MA"}, "S1002_C03_005E": {"label": "Estimate!!30 to 59 years!!Percent distribution of grandparents responsible for grandchildren!!Grandparents living with own grandchildren under 18 years!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C03_005EA,S1002_C03_005M,S1002_C03_005MA"}, "S1401_C06_010E": {"label": "Estimate!!Percent in private school!!Population enrolled in college or graduate school", "concept": "School Enrollment", "predicateType": "float", "group": "S1401", "limit": 0, "attributes": "S1401_C06_010EA,S1401_C06_010M,S1401_C06_010MA"}, "S2201_C02_009E": {"label": "Estimate!!Percent!!Households!!With children under 18 years", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C02_009EA,S2201_C02_009M,S2201_C02_009MA"}, "S2502_C01_011E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!AGE OF HOUSEHOLDER!!Under 35 years", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C01_011EA,S2502_C01_011M,S2502_C01_011MA"}, "S0505_C03_020E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Foreign-born population!!SEX AND AGE!!85 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_020EA,S0505_C03_020M,S0505_C03_020MA"}, "S0502_C03_144E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Renter-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C03_144EA,S0502_C03_144M,S0502_C03_144MA"}, "S0505_C03_023E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_023EA,S0505_C03_023M,S0505_C03_023MA"}, "S2603_C02_050E": {"label": "Estimate!!Total group quarters population!!DISABILITY STATUS!!Population 65 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C02_050EA,S2603_C02_050M,S2603_C02_050MA"}, "S1002_C03_002E": {"label": "Estimate!!30 to 59 years!!Percent distribution of grandparents responsible for grandchildren!!Grandparents living with own grandchildren under 18 years!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C03_002EA,S1002_C03_002M,S1002_C03_002MA"}, "S2201_C02_006E": {"label": "Estimate!!Percent!!Households!!Other family:!!Male householder, no spouse present", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C02_006EA,S2201_C02_006M,S2201_C02_006MA"}, "S2502_C01_010E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!White alone, not Hispanic or Latino", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C01_010EA,S2502_C01_010M,S2502_C01_010MA"}, "S0502_C03_145E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_145EA,S0502_C03_145M,S0502_C03_145MA"}, "S2603_C02_051E": {"label": "Estimate!!Total group quarters population!!DISABILITY STATUS!!Population 65 years and over!!With a disability", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C02_051EA,S2603_C02_051M,S2603_C02_051MA"}, "S1002_C03_003E": {"label": "Estimate!!30 to 59 years!!Percent distribution of grandparents responsible for grandchildren!!Grandparents living with own grandchildren under 18 years!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C03_003EA,S1002_C03_003M,S1002_C03_003MA"}, "S1603_C01_009E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population 5 years and over for whom poverty status is determined", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "int", "group": "S1603", "limit": 0, "attributes": "S1603_C01_009EA,S1603_C01_009M,S1603_C01_009MA"}, "S2201_C02_007E": {"label": "Estimate!!Percent!!Households!!Other family:!!Female householder, no spouse present", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C02_007EA,S2201_C02_007M,S2201_C02_007MA"}, "S0505_C03_022E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_022EA,S0505_C03_022M,S0505_C03_022MA"}, "S0505_C03_025E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_025EA,S0505_C03_025M,S0505_C03_025MA"}, "S1002_C03_008E": {"label": "Estimate!!30 to 59 years!!Percent distribution of grandparents responsible for grandchildren!!Grandparents living with own grandchildren under 18 years!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C03_008EA,S1002_C03_008M,S1002_C03_008MA"}, "S0506_C06_141E": {"label": "Estimate!!Foreign-born; Born in South America!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_141EA,S0506_C06_141M,S0506_C06_141MA"}, "S0505_C03_024E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_024EA,S0505_C03_024M,S0505_C03_024MA"}, "S1002_C03_009E": {"label": "Estimate!!30 to 59 years!!Percent distribution of grandparents responsible for grandchildren!!Grandparents living with own grandchildren under 18 years!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C03_009EA,S1002_C03_009M,S1002_C03_009MA"}, "S0506_C06_142E": {"label": "Estimate!!Foreign-born; Born in South America!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_142EA,S0506_C06_142M,S0506_C06_142MA"}, "S0505_C03_027E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_027EA,S0505_C03_027M,S0505_C03_027MA"}, "S1002_C03_006E": {"label": "Estimate!!30 to 59 years!!Percent distribution of grandparents responsible for grandchildren!!Grandparents living with own grandchildren under 18 years!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C03_006EA,S1002_C03_006M,S1002_C03_006MA"}, "S1201_C05_032E": {"label": "Estimate!!Separated!!PERCENT ALLOCATED!!Marital status", "concept": "Marital Status", "predicateType": "int", "group": "S1201", "limit": 0, "attributes": "S1201_C05_032EA,S1201_C05_032M,S1201_C05_032MA"}, "S0502PR_C01_001E": {"label": "Estimate!!Total!!Foreign-born population", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_001EA,S0502PR_C01_001M,S0502PR_C01_001MA"}, "S0506_C06_143E": {"label": "Estimate!!Foreign-born; Born in South America!!Renter-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C06_143EA,S0506_C06_143M,S0506_C06_143MA"}, "S0505_C03_026E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_026EA,S0505_C03_026M,S0505_C03_026MA"}, "S2302_C03_029E": {"label": "Estimate!!Families with own children under 18 years!!WORK STATUS CHARACTERISTICS!!Married-couple families!!Householder did not work in the past 12 months:!!Spouse worked less than full-time, year-round in the past 12 months", "concept": "Employment Characteristics of Families", "predicateType": "int", "group": "S2302", "limit": 0, "attributes": "S2302_C03_029EA,S2302_C03_029M,S2302_C03_029MA"}, "S1002_C03_007E": {"label": "Estimate!!30 to 59 years!!Percent distribution of grandparents responsible for grandchildren!!Grandparents living with own grandchildren under 18 years!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C03_007EA,S1002_C03_007M,S1002_C03_007MA"}, "S1201_C05_031E": {"label": "Estimate!!Separated!!SUMMARY INDICATOR!!Ratio of Unmarried Men 15 to 44 years per 100 unmarried women 15 to 44 years", "concept": "Marital Status", "predicateType": "int", "group": "S1201", "limit": 0, "attributes": "S1201_C05_031EA,S1201_C05_031M,S1201_C05_031MA"}, "S0502PR_C01_002E": {"label": "Estimate!!Total!!Foreign-born population!!CITIZENSHIP!!Naturalized citizen", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_002EA,S0502PR_C01_002M,S0502PR_C01_002MA"}, "S0506_C06_144E": {"label": "Estimate!!Foreign-born; Born in South America!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_144EA,S0506_C06_144M,S0506_C06_144MA"}, "S2502_C01_008E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Two or more races", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C01_008EA,S2502_C01_008M,S2502_C01_008MA"}, "S0505_C03_017E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Foreign-born population!!SEX AND AGE!!55 to 64 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_017EA,S0505_C03_017M,S0505_C03_017MA"}, "S2603_C02_056E": {"label": "Estimate!!Total group quarters population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the United States!!Different county", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C02_056EA,S2603_C02_056M,S2603_C02_056MA"}, "S0601PR_C03_003E": {"label": "Estimate!!Native; born in the U.S.!!Total population!!AGE!!5 to 17 years", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C03_003EA,S0601PR_C03_003M,S0601PR_C03_003MA"}, "S1401_C06_019E": {"label": "Estimate!!Percent in private school!!Population 15 to 17", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C06_019EA,S1401_C06_019M,S1401_C06_019MA"}, "S0502PR_C01_003E": {"label": "Estimate!!Total!!Foreign-born population!!CITIZENSHIP!!Not a citizen", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_003EA,S0502PR_C01_003M,S0502PR_C01_003MA"}, "S1201_C05_030E": {"label": "Estimate!!Separated!!LABOR FORCE PARTICIPATION!!Females 16 years and over!!In labor force", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C05_030EA,S1201_C05_030M,S1201_C05_030MA"}, "S2201_C02_012E": {"label": "Estimate!!Percent!!Households!!With children under 18 years!!Other family:!!Male householder, no spouse present", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C02_012EA,S2201_C02_012M,S2201_C02_012MA"}, "S0505_C03_016E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Foreign-born population!!SEX AND AGE!!45 to 54 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_016EA,S0505_C03_016M,S0505_C03_016MA"}, "S0502PR_C01_004E": {"label": "Estimate!!Total!!Foreign-born population!!WORLD REGION OF BIRTH OF FOREIGN-BORN!!Foreign-born population excluding population born at sea", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_004EA,S0502PR_C01_004M,S0502PR_C01_004MA"}, "S2603_C02_057E": {"label": "Estimate!!Total group quarters population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the United States!!Different county!!Same state", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C02_057EA,S2603_C02_057M,S2603_C02_057MA"}, "S0601PR_C03_004E": {"label": "Estimate!!Native; born in the U.S.!!Total population!!AGE!!18 to 24 years", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C03_004EA,S0601PR_C03_004M,S0601PR_C03_004MA"}, "S1401_C06_018E": {"label": "Estimate!!Percent in private school!!Population 10 to 14 years!!10 to 14 year olds enrolled in school", "concept": "School Enrollment", "predicateType": "float", "group": "S1401", "limit": 0, "attributes": "S1401_C06_018EA,S1401_C06_018M,S1401_C06_018MA"}, "S2201_C02_013E": {"label": "Estimate!!Percent!!Households!!With children under 18 years!!Other family:!!Female householder, no spouse present", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C02_013EA,S2201_C02_013M,S2201_C02_013MA"}, "S2502_C01_007E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!One race --!!Some other race", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C01_007EA,S2502_C01_007M,S2502_C01_007MA"}, "S0502PR_C01_005E": {"label": "Estimate!!Total!!Foreign-born population!!WORLD REGION OF BIRTH OF FOREIGN-BORN!!Europe", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_005EA,S0502PR_C01_005M,S0502PR_C01_005MA"}, "S0505_C03_019E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Foreign-born population!!SEX AND AGE!!75 to 84 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_019EA,S0505_C03_019M,S0505_C03_019MA"}, "S2603_C02_058E": {"label": "Estimate!!Total group quarters population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the United States!!Different county!!Different state", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C02_058EA,S2603_C02_058M,S2603_C02_058MA"}, "S0601PR_C03_005E": {"label": "Estimate!!Native; born in the U.S.!!Total population!!AGE!!25 to 44 years", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C03_005EA,S0601PR_C03_005M,S0601PR_C03_005MA"}, "S1401_C06_017E": {"label": "Estimate!!Percent in private school!!Population 10 to 14 years", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C06_017EA,S1401_C06_017M,S1401_C06_017MA"}, "S2201_C02_010E": {"label": "Estimate!!Percent!!Households!!With children under 18 years!!Married-couple family", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C02_010EA,S2201_C02_010M,S2201_C02_010MA"}, "S2502_C01_006E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!One race --!!Native Hawaiian and Other Pacific Islander", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C01_006EA,S2502_C01_006M,S2502_C01_006MA"}, "S0502PR_C01_006E": {"label": "Estimate!!Total!!Foreign-born population!!WORLD REGION OF BIRTH OF FOREIGN-BORN!!Asia", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_006EA,S0502PR_C01_006M,S0502PR_C01_006MA"}, "S0505_C03_018E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Foreign-born population!!SEX AND AGE!!65 to 74 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_018EA,S0505_C03_018M,S0505_C03_018MA"}, "S2603_C02_059E": {"label": "Estimate!!Total group quarters population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Abroad", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C02_059EA,S2603_C02_059M,S2603_C02_059MA"}, "S0601PR_C03_006E": {"label": "Estimate!!Native; born in the U.S.!!Total population!!AGE!!45 to 54 years", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C03_006EA,S0601PR_C03_006M,S0601PR_C03_006MA"}, "S1401_C06_016E": {"label": "Estimate!!Percent in private school!!Population 5 to 9 years!!5 to 9 year olds enrolled in school", "concept": "School Enrollment", "predicateType": "float", "group": "S1401", "limit": 0, "attributes": "S1401_C06_016EA,S1401_C06_016M,S1401_C06_016MA"}, "S0506_C06_140E": {"label": "Estimate!!Foreign-born; Born in South America!!Owner-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C06_140EA,S0506_C06_140M,S0506_C06_140MA"}, "S2502_C01_005E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!One race --!!Asian", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C01_005EA,S2502_C01_005M,S2502_C01_005MA"}, "S2201_C02_011E": {"label": "Estimate!!Percent!!Households!!With children under 18 years!!Other family:", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C02_011EA,S2201_C02_011M,S2201_C02_011MA"}, "S0502PR_C01_007E": {"label": "Estimate!!Total!!Foreign-born population!!WORLD REGION OF BIRTH OF FOREIGN-BORN!!Africa", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_007EA,S0502PR_C01_007M,S0502PR_C01_007MA"}, "S1002_C03_012E": {"label": "Estimate!!30 to 59 years!!Percent distribution of grandparents responsible for grandchildren!!Grandparents living with own grandchildren under 18 years!!SEX!!Male", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C03_012EA,S1002_C03_012M,S1002_C03_012MA"}, "S2603_C02_052E": {"label": "Estimate!!Total group quarters population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C02_052EA,S2603_C02_052M,S2603_C02_052MA"}, "S2201_C02_016E": {"label": "Estimate!!Percent!!Households!!No children under 18 years!!Married-couple family", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C02_016EA,S2201_C02_016M,S2201_C02_016MA"}, "S1401_C06_015E": {"label": "Estimate!!Percent in private school!!Population 5 to 9 years", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C06_015EA,S1401_C06_015M,S1401_C06_015MA"}, "S2502_C01_004E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!One race --!!American Indian and Alaska Native", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C01_004EA,S2502_C01_004M,S2502_C01_004MA"}, "S2413_C01_004E": {"label": "Estimate!!Median earnings (dollars)!!Civilian employed population 16 years and over with earnings!!Agriculture, forestry, fishing and hunting, and mining:!!Mining, quarrying, and oil and gas extraction", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C01_004EA,S2413_C01_004M,S2413_C01_004MA"}, "S0502PR_C01_008E": {"label": "Estimate!!Total!!Foreign-born population!!WORLD REGION OF BIRTH OF FOREIGN-BORN!!Oceania", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_008EA,S0502PR_C01_008M,S0502PR_C01_008MA"}, "S1401_C06_014E": {"label": "Estimate!!Percent in private school!!Population 3 to 4 years!!3 to 4 year olds enrolled in school", "concept": "School Enrollment", "predicateType": "float", "group": "S1401", "limit": 0, "attributes": "S1401_C06_014EA,S1401_C06_014M,S1401_C06_014MA"}, "S2603_C02_053E": {"label": "Estimate!!Total group quarters population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Same address", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C02_053EA,S2603_C02_053M,S2603_C02_053MA"}, "S1002_C03_013E": {"label": "Estimate!!30 to 59 years!!Percent distribution of grandparents responsible for grandchildren!!Grandparents living with own grandchildren under 18 years!!SEX!!Female", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C03_013EA,S1002_C03_013M,S1002_C03_013MA"}, "S2201_C02_017E": {"label": "Estimate!!Percent!!Households!!No children under 18 years!!Other family:", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C02_017EA,S2201_C02_017M,S2201_C02_017MA"}, "S2502_C01_003E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!One race --!!Black or African American", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C01_003EA,S2502_C01_003M,S2502_C01_003MA"}, "S2413_C01_003E": {"label": "Estimate!!Median earnings (dollars)!!Civilian employed population 16 years and over with earnings!!Agriculture, forestry, fishing and hunting, and mining:!!Agriculture, forestry, fishing and hunting", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C01_003EA,S2413_C01_003M,S2413_C01_003MA"}, "S0502PR_C01_009E": {"label": "Estimate!!Total!!Foreign-born population!!WORLD REGION OF BIRTH OF FOREIGN-BORN!!Latin America", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_009EA,S0502PR_C01_009M,S0502PR_C01_009MA"}, "S1002_C03_010E": {"label": "Estimate!!30 to 59 years!!Percent distribution of grandparents responsible for grandchildren!!Grandparents living with own grandchildren under 18 years!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C03_010EA,S1002_C03_010M,S1002_C03_010MA"}, "S1401_C06_013E": {"label": "Estimate!!Percent in private school!!Population 3 to 4 years", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C06_013EA,S1401_C06_013M,S1401_C06_013MA"}, "S2603_C02_054E": {"label": "Estimate!!Total group quarters population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the United States", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C02_054EA,S2603_C02_054M,S2603_C02_054MA"}, "S0601PR_C03_001E": {"label": "Estimate!!Native; born in the U.S.!!Total population", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "int", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C03_001EA,S0601PR_C03_001M,S0601PR_C03_001MA"}, "S2201_C02_014E": {"label": "Estimate!!Percent!!Households!!With children under 18 years!!Nonfamily households", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C02_014EA,S2201_C02_014M,S2201_C02_014MA"}, "S2502_C01_002E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!One race --!!White", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C01_002EA,S2502_C01_002M,S2502_C01_002MA"}, "S2413_C01_002E": {"label": "Estimate!!Median earnings (dollars)!!Civilian employed population 16 years and over with earnings!!Agriculture, forestry, fishing and hunting, and mining:", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C01_002EA,S2413_C01_002M,S2413_C01_002MA"}, "S1002_C03_011E": {"label": "Estimate!!30 to 59 years!!Percent distribution of grandparents responsible for grandchildren!!Grandparents living with own grandchildren under 18 years!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C03_011EA,S1002_C03_011M,S1002_C03_011MA"}, "S1401_C06_012E": {"label": "Estimate!!Percent in private school!!Population enrolled in college or graduate school!!Females enrolled in college or graduate school", "concept": "School Enrollment", "predicateType": "float", "group": "S1401", "limit": 0, "attributes": "S1401_C06_012EA,S1401_C06_012M,S1401_C06_012MA"}, "S2603_C02_055E": {"label": "Estimate!!Total group quarters population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the United States!!Same county", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C02_055EA,S2603_C02_055M,S2603_C02_055MA"}, "S0601PR_C03_002E": {"label": "Estimate!!Native; born in the U.S.!!Total population!!AGE!!Under 5 years", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C03_002EA,S0601PR_C03_002M,S0601PR_C03_002MA"}, "S2201_C02_015E": {"label": "Estimate!!Percent!!Households!!No children under 18 years", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "float", "group": "S2201", "limit": 0, "attributes": "S2201_C02_015EA,S2201_C02_015M,S2201_C02_015MA"}, "S2502_C01_001E": {"label": "Estimate!!Occupied housing units!!Occupied housing units", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C01_001EA,S2502_C01_001M,S2502_C01_001MA"}, "S2413_C01_001E": {"label": "Estimate!!Median earnings (dollars)!!Civilian employed population 16 years and over with earnings", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C01_001EA,S2413_C01_001M,S2413_C01_001MA"}, "S2002_C04_057E": {"label": "Estimate!!Women's earnings as a percentage of men's earnings!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Arts, entertainment, and recreation", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "float", "group": "S2002", "limit": 0, "attributes": "S2002_C04_057EA,S2002_C04_057M,S2002_C04_057MA"}, "S0601_C01_053E": {"label": "Estimate!!Total!!PERCENT ALLOCATED!!Place of birth", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C01_053EA,S0601_C01_053M,S0601_C01_053MA"}, "S2302_C03_020E": {"label": "Estimate!!Families with own children under 18 years!!WORK STATUS CHARACTERISTICS!!Married-couple families!!Householder worked full-time, year-round in the past 12 months:!!Spouse worked full-time, year-round in the past 12 months", "concept": "Employment Characteristics of Families", "predicateType": "int", "group": "S2302", "limit": 0, "attributes": "S2302_C03_020EA,S2302_C03_020M,S2302_C03_020MA"}, "S1501_C04_037E": {"label": "Estimate!!Percent Male!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!American Indian or Alaska Native alone", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C04_037EA,S1501_C04_037M,S1501_C04_037MA"}, "S2413_C01_008E": {"label": "Estimate!!Median earnings (dollars)!!Civilian employed population 16 years and over with earnings!!Retail trade", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C01_008EA,S2413_C01_008M,S2413_C01_008MA"}, "S2002_C04_058E": {"label": "Estimate!!Women's earnings as a percentage of men's earnings!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Accommodation and food services", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "float", "group": "S2002", "limit": 0, "attributes": "S2002_C04_058EA,S2002_C04_058M,S2002_C04_058MA"}, "S1501_C04_038E": {"label": "Estimate!!Percent Male!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!American Indian or Alaska Native alone!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C04_038EA,S1501_C04_038M,S1501_C04_038MA"}, "S2413_C01_007E": {"label": "Estimate!!Median earnings (dollars)!!Civilian employed population 16 years and over with earnings!!Wholesale trade", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C01_007EA,S2413_C01_007M,S2413_C01_007MA"}, "S2002_C04_059E": {"label": "Estimate!!Women's earnings as a percentage of men's earnings!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Other services (except public administration)", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "float", "group": "S2002", "limit": 0, "attributes": "S2002_C04_059EA,S2002_C04_059M,S2002_C04_059MA"}, "S0601_C01_051E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!At or above 150 percent of the poverty level", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C01_051EA,S0601_C01_051M,S0601_C01_051MA"}, "S1501_C04_035E": {"label": "Estimate!!Percent Male!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Black alone!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C04_035EA,S1501_C04_035M,S1501_C04_035MA"}, "S2413_C01_006E": {"label": "Estimate!!Median earnings (dollars)!!Civilian employed population 16 years and over with earnings!!Manufacturing", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C01_006EA,S2413_C01_006M,S2413_C01_006MA"}, "S0601_C01_052E": {"label": "Estimate!!Total!!PERCENT ALLOCATED!!Citizenship status", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C01_052EA,S0601_C01_052M,S0601_C01_052MA"}, "S1501_C04_036E": {"label": "Estimate!!Percent Male!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Black alone!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C04_036EA,S1501_C04_036M,S1501_C04_036MA"}, "S2413_C01_005E": {"label": "Estimate!!Median earnings (dollars)!!Civilian employed population 16 years and over with earnings!!Construction", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C01_005EA,S2413_C01_005M,S2413_C01_005MA"}, "S2002_C04_053E": {"label": "Estimate!!Women's earnings as a percentage of men's earnings!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Management of companies and enterprises", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "float", "group": "S2002", "limit": 0, "attributes": "S2002_C04_053EA,S2002_C04_053M,S2002_C04_053MA"}, "S1603_C01_012E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "int", "group": "S1603", "limit": 0, "attributes": "S1603_C01_012EA,S1603_C01_012M,S1603_C01_012MA"}, "S2002_C04_054E": {"label": "Estimate!!Women's earnings as a percentage of men's earnings!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Administrative and support and waste management services", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "float", "group": "S2002", "limit": 0, "attributes": "S2002_C04_054EA,S2002_C04_054M,S2002_C04_054MA"}, "S1603_C01_011E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population 5 years and over for whom poverty status is determined!!At or above poverty level", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "int", "group": "S1603", "limit": 0, "attributes": "S1603_C01_011EA,S1603_C01_011M,S1603_C01_011MA"}, "S2002_C04_055E": {"label": "Estimate!!Women's earnings as a percentage of men's earnings!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Educational services", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "float", "group": "S2002", "limit": 0, "attributes": "S2002_C04_055EA,S2002_C04_055M,S2002_C04_055MA"}, "S1501_C04_039E": {"label": "Estimate!!Percent Male!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!American Indian or Alaska Native alone!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C04_039EA,S1501_C04_039M,S1501_C04_039MA"}, "S1603_C01_010E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population 5 years and over for whom poverty status is determined!!Below poverty level", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "int", "group": "S1603", "limit": 0, "attributes": "S1603_C01_010EA,S1603_C01_010M,S1603_C01_010MA"}, "S2502_C01_009E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Hispanic or Latino origin", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C01_009EA,S2502_C01_009M,S2502_C01_009MA"}, "S2413_C01_009E": {"label": "Estimate!!Median earnings (dollars)!!Civilian employed population 16 years and over with earnings!!Transportation and warehousing, and utilities:", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C01_009EA,S2413_C01_009M,S2413_C01_009MA"}, "S2002_C04_056E": {"label": "Estimate!!Women's earnings as a percentage of men's earnings!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Health care and social assistance", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "float", "group": "S2002", "limit": 0, "attributes": "S2002_C04_056EA,S2002_C04_056M,S2002_C04_056MA"}, "S1603_C01_016E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree or higher", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "int", "group": "S1603", "limit": 0, "attributes": "S1603_C01_016EA,S1603_C01_016M,S1603_C01_016MA"}, "S2002_C04_061E": {"label": "Estimate!!Women's earnings as a percentage of men's earnings!!Full-time, year-round civilian workers 16 years and over with earnings!!CLASS OF WORKER!!Employee of private company workers", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "float", "group": "S2002", "limit": 0, "attributes": "S2002_C04_061EA,S2002_C04_061M,S2002_C04_061MA"}, "S0502_C03_118E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_118EA,S0502_C03_118M,S0502_C03_118MA"}, "S2002_C04_062E": {"label": "Estimate!!Women's earnings as a percentage of men's earnings!!Full-time, year-round civilian workers 16 years and over with earnings!!CLASS OF WORKER!!Self employed in own incorporated business workers", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "float", "group": "S2002", "limit": 0, "attributes": "S2002_C04_062EA,S2002_C04_062M,S2002_C04_062MA"}, "S1603_C01_015E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college or associate's degree", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "int", "group": "S1603", "limit": 0, "attributes": "S1603_C01_015EA,S1603_C01_015M,S1603_C01_015MA"}, "S0502_C03_119E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_119EA,S0502_C03_119M,S0502_C03_119MA"}, "S2002_C04_063E": {"label": "Estimate!!Women's earnings as a percentage of men's earnings!!Full-time, year-round civilian workers 16 years and over with earnings!!CLASS OF WORKER!!Private not-for-profit wage and salary workers", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "float", "group": "S2002", "limit": 0, "attributes": "S2002_C04_063EA,S2002_C04_063M,S2002_C04_063MA"}, "S1501_C04_063E": {"label": "Estimate!!Percent Male!!MEDIAN EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 25 years and over with earnings!!Bachelor's degree", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C04_063EA,S1501_C04_063M,S1501_C04_063MA"}, "S1603_C01_014E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate (includes equivalency)", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "int", "group": "S1603", "limit": 0, "attributes": "S1603_C01_014EA,S1603_C01_014M,S1603_C01_014MA"}, "S0505_C03_051E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Graduate or professional degree", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_051EA,S0505_C03_051M,S0505_C03_051MA"}, "S0502_C03_116E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_116EA,S0502_C03_116M,S0502_C03_116MA"}, "S2002_C04_064E": {"label": "Estimate!!Women's earnings as a percentage of men's earnings!!Full-time, year-round civilian workers 16 years and over with earnings!!CLASS OF WORKER!!Local government workers", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "float", "group": "S2002", "limit": 0, "attributes": "S2002_C04_064EA,S2002_C04_064M,S2002_C04_064MA"}, "S1603_C01_013E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than high school graduate", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "int", "group": "S1603", "limit": 0, "attributes": "S1603_C01_013EA,S1603_C01_013M,S1603_C01_013MA"}, "S1501_C04_064E": {"label": "Estimate!!Percent Male!!MEDIAN EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 25 years and over with earnings!!Graduate or professional degree", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C04_064EA,S1501_C04_064M,S1501_C04_064MA"}, "S0505_C03_050E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_050EA,S0505_C03_050M,S0505_C03_050MA"}, "S0502_C03_117E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_117EA,S0502_C03_117M,S0502_C03_117MA"}, "S0506_C06_137E": {"label": "Estimate!!Foreign-born; Born in South America!!Occupied housing units!!VEHICLES AVAILABLE!!1 or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_137EA,S0506_C06_137M,S0506_C06_137MA"}, "S0505_C03_053E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!English only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_053EA,S0505_C03_053M,S0505_C03_053MA"}, "S1201_C05_029E": {"label": "Estimate!!Separated!!LABOR FORCE PARTICIPATION!!Females 16 years and over", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C05_029EA,S1201_C05_029M,S1201_C05_029MA"}, "S0506_C06_138E": {"label": "Estimate!!Foreign-born; Born in South America!!Occupied housing units!!SELECTED CHARACTERISTICS!!No telephone service available", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_138EA,S0506_C06_138M,S0506_C06_138MA"}, "S0505_C03_052E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C03_052EA,S0505_C03_052M,S0505_C03_052MA"}, "STATE": {"label": "State", "group": "N/A", "limit": 0}, "S1201_C05_028E": {"label": "Estimate!!Separated!!LABOR FORCE PARTICIPATION!!Males 16 years and over!!In labor force", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C05_028EA,S1201_C05_028M,S1201_C05_028MA"}, "S0506_C06_139E": {"label": "Estimate!!Foreign-born; Born in South America!!Occupied housing units!!SELECTED CHARACTERISTICS!!Limited English Speaking Households", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_139EA,S0506_C06_139M,S0506_C06_139MA"}, "S0505_C03_055E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English!!Speak English less than \"very well\"", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_055EA,S0505_C03_055M,S0505_C03_055MA"}, "S2002_C04_060E": {"label": "Estimate!!Women's earnings as a percentage of men's earnings!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Public administration", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "float", "group": "S2002", "limit": 0, "attributes": "S2002_C04_060EA,S2002_C04_060M,S2002_C04_060MA"}, "S1201_C05_027E": {"label": "Estimate!!Separated!!LABOR FORCE PARTICIPATION!!Males 16 years and over", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C05_027EA,S1201_C05_027M,S1201_C05_027MA"}, "S0505_C03_054E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_054EA,S0505_C03_054M,S0505_C03_054MA"}, "S0505_C03_057E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_057EA,S0505_C03_057M,S0505_C03_057MA"}, "S0502_C03_110E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!Median Household income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C03_110EA,S0502_C03_110M,S0502_C03_110MA"}, "S2603_C02_060E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C02_060EA,S2603_C02_060M,S2603_C02_060MA"}, "S1002_C03_016E": {"label": "Estimate!!30 to 59 years!!Percent distribution of grandparents responsible for grandchildren!!Grandparents living with own grandchildren under 18 years!!LABOR FORCE STATUS!!In labor force", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C03_016EA,S1002_C03_016M,S1002_C03_016MA"}, "S1401_C06_023E": {"label": "Estimate!!Percent in private school!!Population 20 to 24 years", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C06_023EA,S1401_C06_023M,S1401_C06_023MA"}, "S1201_C05_026E": {"label": "Estimate!!Separated!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C05_026EA,S1201_C05_026M,S1201_C05_026MA"}, "S2502_C01_024E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!YEAR HOUSEHOLDER MOVED INTO UNIT!!Moved in 2010 to 2019", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C01_024EA,S2502_C01_024M,S2502_C01_024MA"}, "S0506_C06_133E": {"label": "Estimate!!Foreign-born; Born in South America!!Occupied housing units!!ROOMS!!8 or more rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_133EA,S0506_C06_133M,S0506_C06_133MA"}, "S0502_C03_111E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!Average number of workers per household", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_111EA,S0502_C03_111M,S0502_C03_111MA"}, "S0505_C03_056E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!EMPLOYMENT STATUS!!Population 16 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C03_056EA,S0505_C03_056M,S0505_C03_056MA"}, "S2603_C02_061E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Native", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C02_061EA,S2603_C02_061M,S2603_C02_061MA"}, "S1401_C06_022E": {"label": "Estimate!!Percent in private school!!Population 18 to 19 years!!18 and 19 year olds enrolled in school", "concept": "School Enrollment", "predicateType": "float", "group": "S1401", "limit": 0, "attributes": "S1401_C06_022EA,S1401_C06_022M,S1401_C06_022MA"}, "S1002_C03_017E": {"label": "Estimate!!30 to 59 years!!Percent distribution of grandparents responsible for grandchildren!!Grandparents living with own grandchildren under 18 years!!NATIVITY!!Native", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C03_017EA,S1002_C03_017M,S1002_C03_017MA"}, "S1201_C05_025E": {"label": "Estimate!!Separated!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C05_025EA,S1201_C05_025M,S1201_C05_025MA"}, "S2502_C01_023E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!YEAR HOUSEHOLDER MOVED INTO UNIT!!Moved in 2020 to 2022", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C01_023EA,S2502_C01_023M,S2502_C01_023MA"}, "S0506_C06_134E": {"label": "Estimate!!Foreign-born; Born in South America!!Occupied housing units!!Median number of rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_134EA,S0506_C06_134M,S0506_C06_134MA"}, "S0505_C03_059E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Employed", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_059EA,S0505_C03_059M,S0505_C03_059MA"}, "S2603_C02_062E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Native!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C02_062EA,S2603_C02_062M,S2603_C02_062MA"}, "S1002_C03_014E": {"label": "Estimate!!30 to 59 years!!Percent distribution of grandparents responsible for grandchildren!!Grandparents living with own grandchildren under 18 years!!MARITAL STATUS!!Now married (including separated and spouse absent)", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C03_014EA,S1002_C03_014M,S1002_C03_014MA"}, "S1401_C06_021E": {"label": "Estimate!!Percent in private school!!Population 18 to 19 years", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C06_021EA,S1401_C06_021M,S1401_C06_021MA"}, "S1201_C05_024E": {"label": "Estimate!!Separated!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C05_024EA,S1201_C05_024M,S1201_C05_024MA"}, "S2502_C01_022E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!YEAR HOUSEHOLDER MOVED INTO UNIT!!Moved in 2023 or later", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C01_022EA,S2502_C01_022M,S2502_C01_022MA"}, "S0601_C01_019E": {"label": "Estimate!!Total!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C01_019EA,S0601_C01_019M,S0601_C01_019MA"}, "S0506_C06_135E": {"label": "Estimate!!Foreign-born; Born in South America!!Occupied housing units!!1.01 or more occupants per room", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_135EA,S0506_C06_135M,S0506_C06_135MA"}, "S0505_C03_058E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_058EA,S0505_C03_058M,S0505_C03_058MA"}, "S1002_C03_015E": {"label": "Estimate!!30 to 59 years!!Percent distribution of grandparents responsible for grandchildren!!Grandparents living with own grandchildren under 18 years!!MARITAL STATUS!!Unmarried (never married, widowed, and divorced)", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C03_015EA,S1002_C03_015M,S1002_C03_015MA"}, "S2603_C02_063E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Native!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C02_063EA,S2603_C02_063M,S2603_C02_063MA"}, "S0103PR_C02_079E": {"label": "Estimate!!65 years and over!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_079EA,S0103PR_C02_079M,S0103PR_C02_079MA"}, "S1401_C06_020E": {"label": "Estimate!!Percent in private school!!Population 15 to 17!!15 to 17 year olds enrolled in school", "concept": "School Enrollment", "predicateType": "float", "group": "S1401", "limit": 0, "attributes": "S1401_C06_020EA,S1401_C06_020M,S1401_C06_020MA"}, "S1201_C05_023E": {"label": "Estimate!!Separated!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C05_023EA,S1201_C05_023M,S1201_C05_023MA"}, "S2502_C01_021E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!EDUCATIONAL ATTAINMENT OF HOUSEHOLDER!!Bachelor's degree or higher", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C01_021EA,S2502_C01_021M,S2502_C01_021MA"}, "S0506_C06_136E": {"label": "Estimate!!Foreign-born; Born in South America!!Occupied housing units!!VEHICLES AVAILABLE!!None", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_136EA,S0506_C06_136M,S0506_C06_136MA"}, "S0103PR_C02_078E": {"label": "Estimate!!65 years and over!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income!!Mean Supplemental Security Income (dollars)", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_078EA,S0103PR_C02_078M,S0103PR_C02_078MA"}, "S1201_C05_022E": {"label": "Estimate!!Separated!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C05_022EA,S1201_C05_022M,S1201_C05_022MA"}, "S2502_C01_020E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!EDUCATIONAL ATTAINMENT OF HOUSEHOLDER!!Some college or associate's degree", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C01_020EA,S2502_C01_020M,S2502_C01_020MA"}, "S1501_C04_061E": {"label": "Estimate!!Percent Male!!MEDIAN EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 25 years and over with earnings!!High school graduate (includes equivalency)", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C04_061EA,S1501_C04_061M,S1501_C04_061MA"}, "S0502_C03_114E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!100 to 199 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_114EA,S0502_C03_114M,S0502_C03_114MA"}, "S0103PR_C02_077E": {"label": "Estimate!!65 years and over!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_077EA,S0103PR_C02_077M,S0103PR_C02_077MA"}, "S1201_C05_021E": {"label": "Estimate!!Separated!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C05_021EA,S1201_C05_021M,S1201_C05_021MA"}, "S1501_C04_062E": {"label": "Estimate!!Percent Male!!MEDIAN EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 25 years and over with earnings!!Some college or associate's degree", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C04_062EA,S1501_C04_062M,S1501_C04_062MA"}, "S0506_C06_130E": {"label": "Estimate!!Foreign-born; Born in South America!!Occupied housing units!!ROOMS!!2 or 3 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_130EA,S0506_C06_130M,S0506_C06_130MA"}, "S0502_C03_115E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!At or above 200 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_115EA,S0502_C03_115M,S0502_C03_115MA"}, "S0502_C03_112E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C03_112EA,S0502_C03_112M,S0502_C03_112MA"}, "S1002_C03_018E": {"label": "Estimate!!30 to 59 years!!Percent distribution of grandparents responsible for grandchildren!!Grandparents living with own grandchildren under 18 years!!NATIVITY!!Foreign born", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C03_018EA,S1002_C03_018M,S1002_C03_018MA"}, "S0103PR_C02_076E": {"label": "Estimate!!65 years and over!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income!!Mean Social Security income (dollars)", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_076EA,S0103PR_C02_076M,S0103PR_C02_076MA"}, "S1201_C05_020E": {"label": "Estimate!!Separated!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C05_020EA,S1201_C05_020M,S1201_C05_020MA"}, "S0506_C06_131E": {"label": "Estimate!!Foreign-born; Born in South America!!Occupied housing units!!ROOMS!!4 or 5 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_131EA,S0506_C06_131M,S0506_C06_131MA"}, "S0502_C03_113E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!Below 100 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_113EA,S0502_C03_113M,S0502_C03_113MA"}, "S1002_C03_019E": {"label": "Estimate!!30 to 59 years!!Percent distribution of grandparents responsible for grandchildren!!Grandparents living with own grandchildren under 18 years!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Speak other language", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C03_019EA,S1002_C03_019M,S1002_C03_019MA"}, "S0103PR_C02_075E": {"label": "Estimate!!65 years and over!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_075EA,S0103PR_C02_075M,S0103PR_C02_075MA"}, "S1501_C04_060E": {"label": "Estimate!!Percent Male!!MEDIAN EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 25 years and over with earnings!!Less than high school graduate", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C04_060EA,S1501_C04_060M,S1501_C04_060MA"}, "S0506_C06_132E": {"label": "Estimate!!Foreign-born; Born in South America!!Occupied housing units!!ROOMS!!6 or 7 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_132EA,S0506_C06_132M,S0506_C06_132MA"}, "S0601_C01_025E": {"label": "Estimate!!Total!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Speak language other than English!!Speak English \"very well\"", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C01_025EA,S0601_C01_025M,S0601_C01_025MA"}, "S2406_C06_006E": {"label": "Estimate!!Self-employed in own not incorporated business workers and unpaid family workers!!Civilian employed population 16 years and over!!Production, transportation, and material moving occupations", "concept": "Occupation by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2406", "limit": 0, "attributes": "S2406_C06_006EA,S2406_C06_006M,S2406_C06_006MA"}, "S1002_C03_020E": {"label": "Estimate!!30 to 59 years!!Percent distribution of grandparents responsible for grandchildren!!Grandparents living with own grandchildren under 18 years!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Speak other language!!Speak English \"very well\"", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C03_020EA,S1002_C03_020M,S1002_C03_020MA"}, "S2603_C02_068E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Naturalized U.S. citizen!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C02_068EA,S2603_C02_068M,S2603_C02_068MA"}, "S0103PR_C02_086E": {"label": "Estimate!!65 years and over!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!100 to 149 percent of the poverty level", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_086EA,S0103PR_C02_086M,S0103PR_C02_086MA"}, "S0601PR_C03_039E": {"label": "Estimate!!Native; born in the U.S.!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$1 to $9,999 or loss", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C03_039EA,S0601PR_C03_039M,S0601PR_C03_039MA"}, "S0501_C03_024E": {"label": "Estimate!!Foreign-born!!Total population!!HOUSEHOLD TYPE!!In married-couple family", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_024EA,S0501_C03_024M,S0501_C03_024MA"}, "S0103PR_C02_085E": {"label": "Estimate!!65 years and over!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!Below 100 percent of the poverty level", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_085EA,S0103PR_C02_085M,S0103PR_C02_085MA"}, "S2406_C06_005E": {"label": "Estimate!!Self-employed in own not incorporated business workers and unpaid family workers!!Civilian employed population 16 years and over!!Natural resources, construction, and maintenance occupations", "concept": "Occupation by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2406", "limit": 0, "attributes": "S2406_C06_005EA,S2406_C06_005M,S2406_C06_005MA"}, "S0601_C01_026E": {"label": "Estimate!!Total!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Speak language other than English!!Speak English less than \"very well\"", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C01_026EA,S0601_C01_026M,S0601_C01_026MA"}, "S2502_C01_019E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!EDUCATIONAL ATTAINMENT OF HOUSEHOLDER!!High school graduate (includes equivalency)", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C01_019EA,S2502_C01_019M,S2502_C01_019MA"}, "S1002_C03_021E": {"label": "Estimate!!30 to 59 years!!Percent distribution of grandparents responsible for grandchildren!!Grandparents living with own grandchildren under 18 years!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Speak other language!!Speak English less than \"very well\"", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C03_021EA,S1002_C03_021M,S1002_C03_021MA"}, "S2603_C02_069E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Naturalized U.S. citizen!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C02_069EA,S2603_C02_069M,S2603_C02_069MA"}, "S0501_C03_025E": {"label": "Estimate!!Foreign-born!!Total population!!HOUSEHOLD TYPE!!In other households", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_025EA,S0501_C03_025M,S0501_C03_025MA"}, "S0103PR_C02_084E": {"label": "Estimate!!65 years and over!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_084EA,S0103PR_C02_084M,S0103PR_C02_084MA"}, "S2406_C06_004E": {"label": "Estimate!!Self-employed in own not incorporated business workers and unpaid family workers!!Civilian employed population 16 years and over!!Sales and office occupations", "concept": "Occupation by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2406", "limit": 0, "attributes": "S2406_C06_004EA,S2406_C06_004M,S2406_C06_004MA"}, "S0601_C01_023E": {"label": "Estimate!!Total!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "int", "group": "S0601", "limit": 0, "attributes": "S0601_C01_023EA,S0601_C01_023M,S0601_C01_023MA"}, "S1401_C06_029E": {"label": "Estimate!!Percent in private school!!Population 18 to 24 years", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C06_029EA,S1401_C06_029M,S1401_C06_029MA"}, "S0501_C03_026E": {"label": "Estimate!!Foreign-born!!Total population!!Average household size", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_026EA,S0501_C03_026M,S0501_C03_026MA"}, "S2502_C01_018E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!EDUCATIONAL ATTAINMENT OF HOUSEHOLDER!!Less than high school graduate", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C01_018EA,S2502_C01_018M,S2502_C01_018MA"}, "S0103PR_C02_083E": {"label": "Estimate!!65 years and over!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Food Stamp/SNAP benefits", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_083EA,S0103PR_C02_083M,S0103PR_C02_083MA"}, "S0601_C01_024E": {"label": "Estimate!!Total!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Speak language other than English", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C01_024EA,S0601_C01_024M,S0601_C01_024MA"}, "S2406_C06_003E": {"label": "Estimate!!Self-employed in own not incorporated business workers and unpaid family workers!!Civilian employed population 16 years and over!!Service occupations", "concept": "Occupation by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2406", "limit": 0, "attributes": "S2406_C06_003EA,S2406_C06_003M,S2406_C06_003MA"}, "S0501_C03_027E": {"label": "Estimate!!Foreign-born!!Total population!!Average family size", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_027EA,S0501_C03_027M,S0501_C03_027MA"}, "S1401_C06_028E": {"label": "Estimate!!Percent in private school!!Population 35 years and over!!35 years and over enrolled in school", "concept": "School Enrollment", "predicateType": "float", "group": "S1401", "limit": 0, "attributes": "S1401_C06_028EA,S1401_C06_028M,S1401_C06_028MA"}, "S2502_C01_017E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!AGE OF HOUSEHOLDER!!85 years and over", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C01_017EA,S2502_C01_017M,S2502_C01_017MA"}, "S0103PR_C02_082E": {"label": "Estimate!!65 years and over!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income!!Mean retirement income (dollars)", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_082EA,S0103PR_C02_082M,S0103PR_C02_082MA"}, "S0501_C03_028E": {"label": "Estimate!!Foreign-born!!MARITAL STATUS!!Population 15 years and over", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C03_028EA,S0501_C03_028M,S0501_C03_028MA"}, "S2406_C06_002E": {"label": "Estimate!!Self-employed in own not incorporated business workers and unpaid family workers!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations", "concept": "Occupation by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2406", "limit": 0, "attributes": "S2406_C06_002EA,S2406_C06_002M,S2406_C06_002MA"}, "S2603_C02_064E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C02_064EA,S2603_C02_064M,S2603_C02_064MA"}, "S1002_C03_024E": {"label": "Estimate!!30 to 59 years!!Percent distribution of grandparents responsible for grandchildren!!POVERTY STATUS IN THE PAST 12 MONTHS!!Grandparents living with own grandchildren under 18 years for whom poverty status is determined", "concept": "Grandparents", "predicateType": "int", "group": "S1002", "limit": 0, "attributes": "S1002_C03_024EA,S1002_C03_024M,S1002_C03_024MA"}, "S0601PR_C03_035E": {"label": "Estimate!!Native; born in the U.S.!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college or associate's degree", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C03_035EA,S0601PR_C03_035M,S0601PR_C03_035MA"}, "S1401_C06_027E": {"label": "Estimate!!Percent in private school!!Population 35 years and over", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C06_027EA,S1401_C06_027M,S1401_C06_027MA"}, "S2502_C01_016E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!AGE OF HOUSEHOLDER!!75 to 84 years", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C01_016EA,S2502_C01_016M,S2502_C01_016MA"}, "S0802_C02_101E": {"label": "Estimate!!Car, truck, or van -- drove alone!!PERCENT ALLOCATED!!Vehicles available", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "int", "group": "S0802", "limit": 0, "attributes": "S0802_C02_101EA,S0802_C02_101M,S0802_C02_101MA"}, "S0601_C01_029E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C01_029EA,S0601_C01_029M,S0601_C01_029MA"}, "S0802_C02_100E": {"label": "Estimate!!Car, truck, or van -- drove alone!!PERCENT ALLOCATED!!Travel time to work", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "int", "group": "S0802", "limit": 0, "attributes": "S0802_C02_100EA,S0802_C02_100M,S0802_C02_100MA"}, "S0103PR_C02_081E": {"label": "Estimate!!65 years and over!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_081EA,S0103PR_C02_081M,S0103PR_C02_081MA"}, "S2406_C06_001E": {"label": "Estimate!!Self-employed in own not incorporated business workers and unpaid family workers!!Civilian employed population 16 years and over", "concept": "Occupation by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2406", "limit": 0, "attributes": "S2406_C06_001EA,S2406_C06_001M,S2406_C06_001MA"}, "S0501_C03_029E": {"label": "Estimate!!Foreign-born!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_029EA,S0501_C03_029M,S0501_C03_029MA"}, "S1002_C03_025E": {"label": "Estimate!!30 to 59 years!!Percent distribution of grandparents responsible for grandchildren!!POVERTY STATUS IN THE PAST 12 MONTHS!!Grandparents living with own grandchildren under 18 years for whom poverty status is determined!!Income in the past 12 months below poverty level", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C03_025EA,S1002_C03_025M,S1002_C03_025MA"}, "S2603_C02_065E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C02_065EA,S2603_C02_065M,S2603_C02_065MA"}, "S0601PR_C03_036E": {"label": "Estimate!!Native; born in the U.S.!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C03_036EA,S0601PR_C03_036M,S0601PR_C03_036MA"}, "S1401_C06_026E": {"label": "Estimate!!Percent in private school!!Population 25 to 34 years!!25 to 34 year olds enrolled in school", "concept": "School Enrollment", "predicateType": "float", "group": "S1401", "limit": 0, "attributes": "S1401_C06_026EA,S1401_C06_026M,S1401_C06_026MA"}, "S2502_C01_015E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!AGE OF HOUSEHOLDER!!65 to 74 years", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C01_015EA,S2502_C01_015M,S2502_C01_015MA"}, "S0601_C01_027E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "int", "group": "S0601", "limit": 0, "attributes": "S0601_C01_027EA,S0601_C01_027M,S0601_C01_027MA"}, "S1002_C03_022E": {"label": "Estimate!!30 to 59 years!!Percent distribution of grandparents responsible for grandchildren!!DISABILITY STATUS!!Civilian grandparents living with own grandchildren under 18 years", "concept": "Grandparents", "predicateType": "int", "group": "S1002", "limit": 0, "attributes": "S1002_C03_022EA,S1002_C03_022M,S1002_C03_022MA"}, "S0103PR_C02_080E": {"label": "Estimate!!65 years and over!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income!!Mean cash public assistance income (dollars)", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_080EA,S0103PR_C02_080M,S0103PR_C02_080MA"}, "S1401_C06_025E": {"label": "Estimate!!Percent in private school!!Population 25 to 34 years", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C06_025EA,S1401_C06_025M,S1401_C06_025MA"}, "S2603_C02_066E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C02_066EA,S2603_C02_066M,S2603_C02_066MA"}, "S0601PR_C03_037E": {"label": "Estimate!!Native; born in the U.S.!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Graduate or professional degree", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C03_037EA,S0601PR_C03_037M,S0601PR_C03_037MA"}, "S2502_C01_014E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!AGE OF HOUSEHOLDER!!55 to 64 years", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C01_014EA,S2502_C01_014M,S2502_C01_014MA"}, "S1002_C03_023E": {"label": "Estimate!!30 to 59 years!!Percent distribution of grandparents responsible for grandchildren!!DISABILITY STATUS!!Civilian grandparents living with own grandchildren under 18 years!!With any disability", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C03_023EA,S1002_C03_023M,S1002_C03_023MA"}, "S1401_C06_024E": {"label": "Estimate!!Percent in private school!!Population 20 to 24 years!!20 to 24 year olds enrolled in school", "concept": "School Enrollment", "predicateType": "float", "group": "S1401", "limit": 0, "attributes": "S1401_C06_024EA,S1401_C06_024M,S1401_C06_024MA"}, "S2603_C02_067E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Naturalized U.S. citizen", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C02_067EA,S2603_C02_067M,S2603_C02_067MA"}, "S0601PR_C03_038E": {"label": "Estimate!!Native; born in the U.S.!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "int", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C03_038EA,S0601PR_C03_038M,S0601PR_C03_038MA"}, "S2502_C01_013E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!AGE OF HOUSEHOLDER!!45 to 54 years", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C01_013EA,S2502_C01_013M,S2502_C01_013MA"}, "S0601_C01_028E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C01_028EA,S0601_C01_028M,S0601_C01_028MA"}, "S2414_C01_001E": {"label": "Estimate!!Median earnings (dollars)!!Full-time, year-round civilian employed population 16 years and over with earnings", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C01_001EA,S2414_C01_001M,S2414_C01_001MA"}, "S2002_C04_069E": {"label": "Estimate!!Women's earnings as a percentage of men's earnings!!PERCENT ALLOCATED!!Race", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C04_069EA,S2002_C04_069M,S2002_C04_069MA"}, "S0503_C04_095E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!Median earnings (dollars) for full-time, year-round workers!!Male", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C04_095EA,S0503_C04_095M,S0503_C04_095MA"}, "S0601PR_C03_031E": {"label": "Estimate!!Native; born in the U.S.!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C03_031EA,S0601PR_C03_031M,S0601PR_C03_031MA"}, "S0503_C04_096E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!Median earnings (dollars) for full-time, year-round workers!!Female", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C04_096EA,S0503_C04_096M,S0503_C04_096MA"}, "S0601PR_C03_032E": {"label": "Estimate!!Native; born in the U.S.!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "int", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C03_032EA,S0601PR_C03_032M,S0601PR_C03_032MA"}, "S2414_C01_003E": {"label": "Estimate!!Median earnings (dollars)!!Full-time, year-round civilian employed population 16 years and over with earnings!!Agriculture, forestry, fishing and hunting, and mining:!!Agriculture, forestry, fishing and hunting", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C01_003EA,S2414_C01_003M,S2414_C01_003MA"}, "S0503_C04_093E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$50,000 to $74,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_093EA,S0503_C04_093M,S0503_C04_093MA"}, "S0601PR_C03_033E": {"label": "Estimate!!Native; born in the U.S.!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than high school graduate", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C03_033EA,S0601PR_C03_033M,S0601PR_C03_033MA"}, "S2414_C01_002E": {"label": "Estimate!!Median earnings (dollars)!!Full-time, year-round civilian employed population 16 years and over with earnings!!Agriculture, forestry, fishing and hunting, and mining:", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C01_002EA,S2414_C01_002M,S2414_C01_002MA"}, "S0503_C04_094E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$75,000 or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_094EA,S0503_C04_094M,S0503_C04_094MA"}, "S0601PR_C03_034E": {"label": "Estimate!!Native; born in the U.S.!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate (includes equivalency)", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C03_034EA,S0601PR_C03_034M,S0601PR_C03_034MA"}, "S0503_C04_099E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings!!Mean earnings (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C04_099EA,S0503_C04_099M,S0503_C04_099MA"}, "S0601_C01_021E": {"label": "Estimate!!Total!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C01_021EA,S0601_C01_021M,S0601_C01_021MA"}, "S2002_C04_065E": {"label": "Estimate!!Women's earnings as a percentage of men's earnings!!Full-time, year-round civilian workers 16 years and over with earnings!!CLASS OF WORKER!!State government workers", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "float", "group": "S2002", "limit": 0, "attributes": "S2002_C04_065EA,S2002_C04_065M,S2002_C04_065MA"}, "S0501_C03_020E": {"label": "Estimate!!Foreign-born!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_020EA,S0501_C03_020M,S0501_C03_020MA"}, "S0601_C01_022E": {"label": "Estimate!!Total!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C01_022EA,S0601_C01_022M,S0601_C01_022MA"}, "S2002_C04_066E": {"label": "Estimate!!Women's earnings as a percentage of men's earnings!!Full-time, year-round civilian workers 16 years and over with earnings!!CLASS OF WORKER!!Federal government workers", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "float", "group": "S2002", "limit": 0, "attributes": "S2002_C04_066EA,S2002_C04_066M,S2002_C04_066MA"}, "S0501_C03_021E": {"label": "Estimate!!Foreign-born!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_021EA,S0501_C03_021M,S0501_C03_021MA"}, "S0503_C04_097E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C04_097EA,S0503_C04_097M,S0503_C04_097MA"}, "S2002_C04_067E": {"label": "Estimate!!Women's earnings as a percentage of men's earnings!!Full-time, year-round civilian workers 16 years and over with earnings!!CLASS OF WORKER!!Self employed in own not incorporated business workers and unpaid family workers", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "float", "group": "S2002", "limit": 0, "attributes": "S2002_C04_067EA,S2002_C04_067M,S2002_C04_067MA"}, "S0501_C03_022E": {"label": "Estimate!!Foreign-born!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_022EA,S0501_C03_022M,S0501_C03_022MA"}, "S0503_C04_098E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_098EA,S0503_C04_098M,S0503_C04_098MA"}, "S2406_C06_007E": {"label": "Estimate!!Self-employed in own not incorporated business workers and unpaid family workers!!PERCENT ALLOCATED!!Occupation", "concept": "Occupation by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2406", "limit": 0, "attributes": "S2406_C06_007EA,S2406_C06_007M,S2406_C06_007MA"}, "S2002_C04_068E": {"label": "Estimate!!Women's earnings as a percentage of men's earnings!!PERCENT ALLOCATED!!Earnings in the past 12 months", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C04_068EA,S2002_C04_068M,S2002_C04_068MA"}, "S0601_C01_020E": {"label": "Estimate!!Total!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C01_020EA,S0601_C01_020M,S0601_C01_020MA"}, "S0601PR_C03_030E": {"label": "Estimate!!Native; born in the U.S.!!MARITAL STATUS!!Population 15 years and over!!Divorced or separated", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C03_030EA,S0601PR_C03_030M,S0601PR_C03_030MA"}, "S0501_C03_023E": {"label": "Estimate!!Foreign-born!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_023EA,S0501_C03_023M,S0501_C03_023MA"}, "S2002_C04_073E": {"label": "Estimate!!Women's earnings as a percentage of men's earnings!!PERCENT ALLOCATED!!Industry", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C04_073EA,S2002_C04_073M,S2002_C04_073MA"}, "S0506_C06_129E": {"label": "Estimate!!Foreign-born; Born in South America!!Occupied housing units!!ROOMS!!1 room", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_129EA,S0506_C06_129M,S0506_C06_129MA"}, "S1501_C04_053E": {"label": "Estimate!!Percent Male!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Hispanic or Latino Origin!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C04_053EA,S1501_C04_053M,S1501_C04_053MA"}, "S2414_C01_009E": {"label": "Estimate!!Median earnings (dollars)!!Full-time, year-round civilian employed population 16 years and over with earnings!!Transportation and warehousing, and utilities:", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C01_009EA,S2414_C01_009M,S2414_C01_009MA"}, "S2002_C04_074E": {"label": "Estimate!!Women's earnings as a percentage of men's earnings!!PERCENT ALLOCATED!!Class of worker", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C04_074EA,S2002_C04_074M,S2002_C04_074MA"}, "S1501_C04_054E": {"label": "Estimate!!Percent Male!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Hispanic or Latino Origin!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C04_054EA,S1501_C04_054M,S1501_C04_054MA"}, "S2414_C01_008E": {"label": "Estimate!!Median earnings (dollars)!!Full-time, year-round civilian employed population 16 years and over with earnings!!Retail trade", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C01_008EA,S2414_C01_008M,S2414_C01_008MA"}, "S1501_C04_051E": {"label": "Estimate!!Percent Male!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Two or more races!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C04_051EA,S1501_C04_051M,S1501_C04_051MA"}, "S0502_C03_128E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Occupied housing units!!HOUSING TENURE!!Average household size of owner-occupied unit", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_128EA,S0502_C03_128M,S0502_C03_128MA"}, "S1201_C05_019E": {"label": "Estimate!!Separated!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C05_019EA,S1201_C05_019M,S1201_C05_019MA"}, "S1501_C04_052E": {"label": "Estimate!!Percent Male!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Hispanic or Latino Origin", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C04_052EA,S1501_C04_052M,S1501_C04_052MA"}, "S0502_C03_129E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Occupied housing units!!HOUSING TENURE!!Average household size of renter-occupied unit", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_129EA,S0502_C03_129M,S0502_C03_129MA"}, "S2414_C01_005E": {"label": "Estimate!!Median earnings (dollars)!!Full-time, year-round civilian employed population 16 years and over with earnings!!Construction", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C01_005EA,S2414_C01_005M,S2414_C01_005MA"}, "S0503_C04_091E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$25,000 to $34,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_091EA,S0503_C04_091M,S0503_C04_091MA"}, "S1201_C05_018E": {"label": "Estimate!!Separated!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C05_018EA,S1201_C05_018M,S1201_C05_018MA"}, "S1501_C04_057E": {"label": "Estimate!!Percent Male!!POVERTY RATE FOR THE POPULATION 25 YEARS AND OVER FOR WHOM POVERTY STATUS IS DETERMINED BY EDUCATIONAL ATTAINMENT LEVEL!!Some college or associate's degree", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C04_057EA,S1501_C04_057M,S1501_C04_057MA"}, "S0505_C03_041E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C03_041EA,S0505_C03_041M,S0505_C03_041MA"}, "S0506_C06_125E": {"label": "Estimate!!Foreign-born; Born in South America!!Occupied housing units!!HOUSING TENURE!!Owner-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_125EA,S0506_C06_125M,S0506_C06_125MA"}, "S2414_C01_004E": {"label": "Estimate!!Median earnings (dollars)!!Full-time, year-round civilian employed population 16 years and over with earnings!!Agriculture, forestry, fishing and hunting, and mining:!!Mining, quarrying, and oil and gas extraction", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C01_004EA,S2414_C01_004M,S2414_C01_004MA"}, "S0503_C04_092E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$35,000 to $49,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_092EA,S0503_C04_092M,S0503_C04_092MA"}, "S1201_C05_017E": {"label": "Estimate!!Separated!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C05_017EA,S1201_C05_017M,S1201_C05_017MA"}, "S1501_C04_058E": {"label": "Estimate!!Percent Male!!POVERTY RATE FOR THE POPULATION 25 YEARS AND OVER FOR WHOM POVERTY STATUS IS DETERMINED BY EDUCATIONAL ATTAINMENT LEVEL!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C04_058EA,S1501_C04_058M,S1501_C04_058MA"}, "S0506_C06_126E": {"label": "Estimate!!Foreign-born; Born in South America!!Occupied housing units!!HOUSING TENURE!!Renter-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_126EA,S0506_C06_126M,S0506_C06_126MA"}, "S0505_C03_040E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_040EA,S0505_C03_040M,S0505_C03_040MA"}, "S2414_C01_007E": {"label": "Estimate!!Median earnings (dollars)!!Full-time, year-round civilian employed population 16 years and over with earnings!!Wholesale trade", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C01_007EA,S2414_C01_007M,S2414_C01_007MA"}, "S2002_C04_071E": {"label": "Estimate!!Women's earnings as a percentage of men's earnings!!PERCENT ALLOCATED!!Educational attainment", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C04_071EA,S2002_C04_071M,S2002_C04_071MA"}, "S0506_C06_127E": {"label": "Estimate!!Foreign-born; Born in South America!!Occupied housing units!!HOUSING TENURE!!Average household size of owner-occupied unit", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_127EA,S0506_C06_127M,S0506_C06_127MA"}, "S1201_C05_016E": {"label": "Estimate!!Separated!!Population 15 years and over", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C05_016EA,S1201_C05_016M,S1201_C05_016MA"}, "S2002_C04_070E": {"label": "Estimate!!Women's earnings as a percentage of men's earnings!!PERCENT ALLOCATED!!Hispanic or Latino origin", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C04_070EA,S2002_C04_070M,S2002_C04_070MA"}, "S1501_C04_055E": {"label": "Estimate!!Percent Male!!POVERTY RATE FOR THE POPULATION 25 YEARS AND OVER FOR WHOM POVERTY STATUS IS DETERMINED BY EDUCATIONAL ATTAINMENT LEVEL!!Less than high school graduate", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C04_055EA,S1501_C04_055M,S1501_C04_055MA"}, "S0505_C03_043E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Elementary school (grades K-8)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_043EA,S0505_C03_043M,S0505_C03_043MA"}, "S2414_C01_006E": {"label": "Estimate!!Median earnings (dollars)!!Full-time, year-round civilian employed population 16 years and over with earnings!!Manufacturing", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C01_006EA,S2414_C01_006M,S2414_C01_006MA"}, "S2002_C04_072E": {"label": "Estimate!!Women's earnings as a percentage of men's earnings!!PERCENT ALLOCATED!!Occupation", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C04_072EA,S2002_C04_072M,S2002_C04_072MA"}, "S0503_C04_090E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$15,000 to $24,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_090EA,S0503_C04_090M,S0503_C04_090MA"}, "S1201_C05_015E": {"label": "Estimate!!Separated!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over!!65 years and over", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C05_015EA,S1201_C05_015M,S1201_C05_015MA"}, "S1501_C04_056E": {"label": "Estimate!!Percent Male!!POVERTY RATE FOR THE POPULATION 25 YEARS AND OVER FOR WHOM POVERTY STATUS IS DETERMINED BY EDUCATIONAL ATTAINMENT LEVEL!!High school graduate (includes equivalency)", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C04_056EA,S1501_C04_056M,S1501_C04_056MA"}, "S0506_C06_128E": {"label": "Estimate!!Foreign-born; Born in South America!!Occupied housing units!!HOUSING TENURE!!Average household size of renter-occupied unit", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_128EA,S0506_C06_128M,S0506_C06_128MA"}, "S0505_C03_042E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Nursery school, preschool", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_042EA,S0505_C03_042M,S0505_C03_042MA"}, "S0502_C03_122E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_122EA,S0502_C03_122M,S0502_C03_122MA"}, "S0505_C03_045E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!College or graduate school", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_045EA,S0505_C03_045M,S0505_C03_045MA"}, "S0501_C03_008E": {"label": "Estimate!!Foreign-born!!Total population!!SEX AND AGE!!45 to 54 years", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_008EA,S0501_C03_008M,S0501_C03_008MA"}, "S2603_C02_072E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Not a U.S. citizen!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C02_072EA,S2603_C02_072M,S2603_C02_072MA"}, "S1002_C03_028E": {"label": "Estimate!!30 to 59 years!!Percent distribution of grandparents responsible for grandchildren!!Grandparents living with own grandchildren under 18 years in households!!PRESENCE OF PARENT(S) OF GRANDCHILDREN!!Householder or spouse responsible for grandchildren with no parent of grandchildren present", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C03_028EA,S1002_C03_028M,S1002_C03_028MA"}, "S1201_C05_014E": {"label": "Estimate!!Separated!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over!!55 to 64 years", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C05_014EA,S1201_C05_014M,S1201_C05_014MA"}, "S0506_C06_121E": {"label": "Estimate!!Foreign-born; Born in South America!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_121EA,S0506_C06_121M,S0506_C06_121MA"}, "S0501_C03_009E": {"label": "Estimate!!Foreign-born!!Total population!!SEX AND AGE!!55 to 64 years", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_009EA,S0501_C03_009M,S0501_C03_009MA"}, "S0502_C03_123E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_123EA,S0502_C03_123M,S0502_C03_123MA"}, "S2603_C02_073E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Entered 2010 or later", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C02_073EA,S2603_C02_073M,S2603_C02_073MA"}, "S1401_C06_034E": {"label": "Estimate!!Percent in private school!!Population 18 to 24 years!!Females 18 to 24 years!!Enrolled in college or graduate school", "concept": "School Enrollment", "predicateType": "float", "group": "S1401", "limit": 0, "attributes": "S1401_C06_034EA,S1401_C06_034M,S1401_C06_034MA"}, "S1002_C03_029E": {"label": "Estimate!!30 to 59 years!!Percent distribution of grandparents responsible for grandchildren!!HOUSEHOLDS!!Households", "concept": "Grandparents", "predicateType": "int", "group": "S1002", "limit": 0, "attributes": "S1002_C03_029EA,S1002_C03_029M,S1002_C03_029MA"}, "S1201_C05_013E": {"label": "Estimate!!Separated!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over!!45 to 54 years", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C05_013EA,S1201_C05_013M,S1201_C05_013MA"}, "S0506_C06_122E": {"label": "Estimate!!Foreign-born; Born in South America!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_122EA,S0506_C06_122M,S0506_C06_122MA"}, "S0505_C03_044E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!High school (grades 9-12)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_044EA,S0505_C03_044M,S0505_C03_044MA"}, "S0505_C03_047E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than high school graduate", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_047EA,S0505_C03_047M,S0505_C03_047MA"}, "S0502_C03_120E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_120EA,S0502_C03_120M,S0502_C03_120MA"}, "S1002_C03_026E": {"label": "Estimate!!30 to 59 years!!Percent distribution of grandparents responsible for grandchildren!!POVERTY STATUS IN THE PAST 12 MONTHS!!Grandparents living with own grandchildren under 18 years for whom poverty status is determined!!Income in the past 12 months at or above poverty level", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C03_026EA,S1002_C03_026M,S1002_C03_026MA"}, "S2603_C02_074E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Entered 2000 to 2009", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C02_074EA,S2603_C02_074M,S2603_C02_074MA"}, "S1401_C06_033E": {"label": "Estimate!!Percent in private school!!Population 18 to 24 years!!Females 18 to 24 years", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C06_033EA,S1401_C06_033M,S1401_C06_033MA"}, "S1201_C05_012E": {"label": "Estimate!!Separated!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over!!35 to 44 years", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C05_012EA,S1201_C05_012M,S1201_C05_012MA"}, "S0506_C06_123E": {"label": "Estimate!!Foreign-born; Born in South America!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_123EA,S0506_C06_123M,S0506_C06_123MA"}, "S0505_C03_046E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C03_046EA,S0505_C03_046M,S0505_C03_046MA"}, "S0502_C03_121E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_121EA,S0502_C03_121M,S0502_C03_121MA"}, "S1002_C03_027E": {"label": "Estimate!!30 to 59 years!!Percent distribution of grandparents responsible for grandchildren!!Grandparents living with own grandchildren under 18 years in households", "concept": "Grandparents", "predicateType": "int", "group": "S1002", "limit": 0, "attributes": "S1002_C03_027EA,S1002_C03_027M,S1002_C03_027MA"}, "S2603_C02_075E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Entered before 2000", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C02_075EA,S2603_C02_075M,S2603_C02_075MA"}, "S1401_C06_032E": {"label": "Estimate!!Percent in private school!!Population 18 to 24 years!!Males 18 to 24 years!!Enrolled in college or graduate school", "concept": "School Enrollment", "predicateType": "float", "group": "S1401", "limit": 0, "attributes": "S1401_C06_032EA,S1401_C06_032M,S1401_C06_032MA"}, "S1201_C05_011E": {"label": "Estimate!!Separated!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over!!20 to 34 years", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C05_011EA,S1201_C05_011M,S1201_C05_011MA"}, "S0506_C06_124E": {"label": "Estimate!!Foreign-born; Born in South America!!Occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C06_124EA,S0506_C06_124M,S0506_C06_124MA"}, "S0505_C03_049E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college or associate's degree", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_049EA,S0505_C03_049M,S0505_C03_049MA"}, "S1401_C06_031E": {"label": "Estimate!!Percent in private school!!Population 18 to 24 years!!Males 18 to 24 years", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C06_031EA,S1401_C06_031M,S1401_C06_031MA"}, "S2413_C01_020E": {"label": "Estimate!!Median earnings (dollars)!!Civilian employed population 16 years and over with earnings!!Educational services, and health care and social assistance:", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C01_020EA,S2413_C01_020M,S2413_C01_020MA"}, "S1201_C05_010E": {"label": "Estimate!!Separated!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over!!15 to 19 years", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C05_010EA,S1201_C05_010M,S1201_C05_010MA"}, "S0601PR_C03_019E": {"label": "Estimate!!Native; born in the U.S.!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C03_019EA,S0601PR_C03_019M,S0601PR_C03_019MA"}, "S0502_C03_126E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Occupied housing units!!HOUSING TENURE!!Owner-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_126EA,S0502_C03_126M,S0502_C03_126MA"}, "S0505_C03_048E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate (includes equivalency)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_048EA,S0505_C03_048M,S0505_C03_048MA"}, "S0103PR_C02_089E": {"label": "Estimate!!65 years and over!!Occupied housing units!!HOUSING TENURE!!Owner-occupied housing units", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_089EA,S0103PR_C02_089M,S0103PR_C02_089MA"}, "S1401_C06_030E": {"label": "Estimate!!Percent in private school!!Population 18 to 24 years!!Enrolled in college or graduate school", "concept": "School Enrollment", "predicateType": "float", "group": "S1401", "limit": 0, "attributes": "S1401_C06_030EA,S1401_C06_030M,S1401_C06_030MA"}, "S1501_C04_050E": {"label": "Estimate!!Percent Male!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Two or more races!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C04_050EA,S1501_C04_050M,S1501_C04_050MA"}, "S0502_C03_127E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Occupied housing units!!HOUSING TENURE!!Renter-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_127EA,S0502_C03_127M,S0502_C03_127MA"}, "S0502_C03_124E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_124EA,S0502_C03_124M,S0502_C03_124MA"}, "S2603_C02_070E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Not a U.S. citizen", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C02_070EA,S2603_C02_070M,S2603_C02_070MA"}, "S0103PR_C02_088E": {"label": "Estimate!!65 years and over!!Occupied housing units", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_088EA,S0103PR_C02_088M,S0103PR_C02_088MA"}, "S2603_C02_071E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Not a U.S. citizen!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C02_071EA,S2603_C02_071M,S2603_C02_071MA"}, "S0103PR_C02_087E": {"label": "Estimate!!65 years and over!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!At or above 150 percent of the poverty level", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_087EA,S0103PR_C02_087M,S0103PR_C02_087MA"}, "S0506_C06_120E": {"label": "Estimate!!Foreign-born; Born in South America!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_120EA,S0506_C06_120M,S0506_C06_120MA"}, "S0502_C03_125E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C03_125EA,S0502_C03_125M,S0502_C03_125MA"}, "S0601_C01_037E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Graduate or professional degree", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C01_037EA,S0601_C01_037M,S0601_C01_037MA"}, "S1002_C03_032E": {"label": "Estimate!!30 to 59 years!!Percent distribution of grandparents responsible for grandchildren!!PERCENT ALLOCATED!!Grandparents responsible for grandchildren", "concept": "Grandparents", "predicateType": "int", "group": "S1002", "limit": 0, "attributes": "S1002_C03_032EA,S1002_C03_032M,S1002_C03_032MA"}, "S0103PR_C02_098E": {"label": "Estimate!!65 years and over!!Owner-occupied housing units!!OWNER CHARACTERISTICS!!Median value (dollars)", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_098EA,S0103PR_C02_098M,S0103PR_C02_098MA"}, "S0601PR_C03_027E": {"label": "Estimate!!Native; born in the U.S.!!MARITAL STATUS!!Population 15 years and over", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "int", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C03_027EA,S0601PR_C03_027M,S0601PR_C03_027MA"}, "S0501_C03_012E": {"label": "Estimate!!Foreign-born!!Total population!!SEX AND AGE!!85 years and over", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_012EA,S0501_C03_012M,S0501_C03_012MA"}, "S2413_C01_024E": {"label": "Estimate!!Median earnings (dollars)!!Civilian employed population 16 years and over with earnings!!Arts, entertainment, and recreation, and accommodation and food services:!!Arts, entertainment, and recreation", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C01_024EA,S2413_C01_024M,S2413_C01_024MA"}, "S0601_C01_038E": {"label": "Estimate!!Total!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "int", "group": "S0601", "limit": 0, "attributes": "S0601_C01_038EA,S0601_C01_038M,S0601_C01_038MA"}, "S0103PR_C02_097E": {"label": "Estimate!!65 years and over!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_097EA,S0103PR_C02_097M,S0103PR_C02_097MA"}, "S0601PR_C03_028E": {"label": "Estimate!!Native; born in the U.S.!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C03_028EA,S0601PR_C03_028M,S0601PR_C03_028MA"}, "S0501_C03_013E": {"label": "Estimate!!Foreign-born!!Total population!!SEX AND AGE!!Median age (years)", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_013EA,S0501_C03_013M,S0501_C03_013MA"}, "S2413_C01_023E": {"label": "Estimate!!Median earnings (dollars)!!Civilian employed population 16 years and over with earnings!!Arts, entertainment, and recreation, and accommodation and food services:", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C01_023EA,S2413_C01_023M,S2413_C01_023MA"}, "S1002_C03_030E": {"label": "Estimate!!30 to 59 years!!Percent distribution of grandparents responsible for grandchildren!!HOUSEHOLDS!!Households!!With grandparents living with grandchildren", "concept": "Grandparents", "predicateType": "int", "group": "S1002", "limit": 0, "attributes": "S1002_C03_030EA,S1002_C03_030M,S1002_C03_030MA"}, "S0503_C04_089E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$10,000 to $14,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_089EA,S0503_C04_089M,S0503_C04_089MA"}, "S0103PR_C02_096E": {"label": "Estimate!!65 years and over!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_096EA,S0103PR_C02_096M,S0103PR_C02_096MA"}, "S0601_C01_035E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college or associate's degree", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C01_035EA,S0601_C01_035M,S0601_C01_035MA"}, "S2413_C01_022E": {"label": "Estimate!!Median earnings (dollars)!!Civilian employed population 16 years and over with earnings!!Educational services, and health care and social assistance:!!Health care and social assistance", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C01_022EA,S2413_C01_022M,S2413_C01_022MA"}, "S0601PR_C03_029E": {"label": "Estimate!!Native; born in the U.S.!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C03_029EA,S0601PR_C03_029M,S0601PR_C03_029MA"}, "S0501_C03_014E": {"label": "Estimate!!Foreign-born!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_014EA,S0501_C03_014M,S0501_C03_014MA"}, "S0103PR_C02_095E": {"label": "Estimate!!65 years and over!!Owner-occupied housing units", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_095EA,S0103PR_C02_095M,S0103PR_C02_095MA"}, "S0601_C01_036E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C01_036EA,S0601_C01_036M,S0601_C01_036MA"}, "S1002_C03_031E": {"label": "Estimate!!30 to 59 years!!Percent distribution of grandparents responsible for grandchildren!!PERCENT ALLOCATED!!Grandparents living with grandchildren", "concept": "Grandparents", "predicateType": "int", "group": "S1002", "limit": 0, "attributes": "S1002_C03_031EA,S1002_C03_031M,S1002_C03_031MA"}, "S2413_C01_021E": {"label": "Estimate!!Median earnings (dollars)!!Civilian employed population 16 years and over with earnings!!Educational services, and health care and social assistance:!!Educational services", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C01_021EA,S2413_C01_021M,S2413_C01_021MA"}, "S0501_C03_015E": {"label": "Estimate!!Foreign-born!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_015EA,S0501_C03_015M,S0501_C03_015MA"}, "S0103PR_C02_094E": {"label": "Estimate!!65 years and over!!Occupied housing units!!SELECTED CHARACTERISTICS!!1.01 or more occupants per room", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_094EA,S0103PR_C02_094M,S0103PR_C02_094MA"}, "S0501_C03_016E": {"label": "Estimate!!Foreign-born!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_016EA,S0501_C03_016M,S0501_C03_016MA"}, "S0502_C03_130E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Occupied housing units!!ROOMS!!1 room", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_130EA,S0502_C03_130M,S0502_C03_130MA"}, "S2603_C02_076E": {"label": "Estimate!!Total group quarters population!!WORLD REGION OF BIRTH OF FOREIGN BORN!!Foreign-born population excluding population born at sea", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C02_076EA,S2603_C02_076M,S2603_C02_076MA"}, "S0601PR_C03_023E": {"label": "Estimate!!Native; born in the U.S.!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "int", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C03_023EA,S0601PR_C03_023M,S0601PR_C03_023MA"}, "S2408_C03_002E": {"label": "Estimate!!Percent Male!!Civilian employed population 16 years and over!!Private for-profit wage and salary workers:", "concept": "Class of Worker by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2408", "limit": 0, "attributes": "S2408_C03_002EA,S2408_C03_002M,S2408_C03_002MA"}, "S0103PR_C02_093E": {"label": "Estimate!!65 years and over!!Occupied housing units!!SELECTED CHARACTERISTICS!!No telephone service available", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_093EA,S0103PR_C02_093M,S0103PR_C02_093MA"}, "S0501_C03_017E": {"label": "Estimate!!Foreign-born!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_017EA,S0501_C03_017M,S0501_C03_017MA"}, "S0502_C03_131E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Occupied housing units!!ROOMS!!2 or 3 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_131EA,S0502_C03_131M,S0502_C03_131MA"}, "S2603_C02_077E": {"label": "Estimate!!Total group quarters population!!WORLD REGION OF BIRTH OF FOREIGN BORN!!Foreign-born population excluding population born at sea!!Europe", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C02_077EA,S2603_C02_077M,S2603_C02_077MA"}, "S0601PR_C03_024E": {"label": "Estimate!!Native; born in the U.S.!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Speak language other than English", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C03_024EA,S0601PR_C03_024M,S0601PR_C03_024MA"}, "S2408_C03_003E": {"label": "Estimate!!Percent Male!!Civilian employed population 16 years and over!!Private for-profit wage and salary workers:!!Employee of private company workers", "concept": "Class of Worker by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2408", "limit": 0, "attributes": "S2408_C03_003EA,S2408_C03_003M,S2408_C03_003MA"}, "S2413_C01_027E": {"label": "Estimate!!Median earnings (dollars)!!Civilian employed population 16 years and over with earnings!!Public administration", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C01_027EA,S2413_C01_027M,S2413_C01_027MA"}, "S2502_C01_027E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!YEAR HOUSEHOLDER MOVED INTO UNIT!!Moved in 1989 or earlier", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C01_027EA,S2502_C01_027M,S2502_C01_027MA"}, "S0103PR_C02_092E": {"label": "Estimate!!65 years and over!!Occupied housing units!!HOUSING TENURE!!Average household size of renter-occupied unit", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_092EA,S0103PR_C02_092M,S0103PR_C02_092MA"}, "S0501_C03_018E": {"label": "Estimate!!Foreign-born!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_018EA,S0501_C03_018M,S0501_C03_018MA"}, "S2603_C02_078E": {"label": "Estimate!!Total group quarters population!!WORLD REGION OF BIRTH OF FOREIGN BORN!!Foreign-born population excluding population born at sea!!Asia", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C02_078EA,S2603_C02_078M,S2603_C02_078MA"}, "S0601PR_C03_025E": {"label": "Estimate!!Native; born in the U.S.!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Speak language other than English!!Speak English \"very well\"", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C03_025EA,S0601PR_C03_025M,S0601PR_C03_025MA"}, "S2502_C01_026E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!YEAR HOUSEHOLDER MOVED INTO UNIT!!Moved in 1990 to 1999", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C01_026EA,S2502_C01_026M,S2502_C01_026MA"}, "S2413_C01_026E": {"label": "Estimate!!Median earnings (dollars)!!Civilian employed population 16 years and over with earnings!!Other services, except public administration", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C01_026EA,S2413_C01_026M,S2413_C01_026MA"}, "S0601_C01_039E": {"label": "Estimate!!Total!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$1 to $9,999 or loss", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C01_039EA,S0601_C01_039M,S0601_C01_039MA"}, "S0501_C03_019E": {"label": "Estimate!!Foreign-born!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_019EA,S0501_C03_019M,S0501_C03_019MA"}, "S0103PR_C02_091E": {"label": "Estimate!!65 years and over!!Occupied housing units!!HOUSING TENURE!!Average household size of owner-occupied unit", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_091EA,S0103PR_C02_091M,S0103PR_C02_091MA"}, "S2603_C02_079E": {"label": "Estimate!!Total group quarters population!!WORLD REGION OF BIRTH OF FOREIGN BORN!!Foreign-born population excluding population born at sea!!Latin America", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C02_079EA,S2603_C02_079M,S2603_C02_079MA"}, "S2408_C03_001E": {"label": "Estimate!!Percent Male!!Civilian employed population 16 years and over", "concept": "Class of Worker by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2408", "limit": 0, "attributes": "S2408_C03_001EA,S2408_C03_001M,S2408_C03_001MA"}, "S0601PR_C03_026E": {"label": "Estimate!!Native; born in the U.S.!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Speak language other than English!!Speak English less than \"very well\"", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C03_026EA,S0601PR_C03_026M,S0601PR_C03_026MA"}, "S2502_C01_025E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!YEAR HOUSEHOLDER MOVED INTO UNIT!!Moved in 2000 to 2009", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C01_025EA,S2502_C01_025M,S2502_C01_025MA"}, "S2413_C01_025E": {"label": "Estimate!!Median earnings (dollars)!!Civilian employed population 16 years and over with earnings!!Arts, entertainment, and recreation, and accommodation and food services:!!Accommodation and food services", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C01_025EA,S2413_C01_025M,S2413_C01_025MA"}, "S2414_C01_013E": {"label": "Estimate!!Median earnings (dollars)!!Full-time, year-round civilian employed population 16 years and over with earnings!!Finance and insurance, and real estate and rental and leasing:", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C01_013EA,S2414_C01_013M,S2414_C01_013MA"}, "S0103PR_C02_090E": {"label": "Estimate!!65 years and over!!Occupied housing units!!HOUSING TENURE!!Renter-occupied housing units", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_090EA,S0103PR_C02_090M,S0103PR_C02_090MA"}, "S0503_C04_083E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Civilian employed population 16 years and over!!INDUSTRY!!Educational services, and health care and social assistance", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_083EA,S0503_C04_083M,S0503_C04_083MA"}, "S2408_C03_006E": {"label": "Estimate!!Percent Male!!Civilian employed population 16 years and over!!Local government workers", "concept": "Class of Worker by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2408", "limit": 0, "attributes": "S2408_C03_006EA,S2408_C03_006M,S2408_C03_006MA"}, "S2414_C01_012E": {"label": "Estimate!!Median earnings (dollars)!!Full-time, year-round civilian employed population 16 years and over with earnings!!Information", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C01_012EA,S2414_C01_012M,S2414_C01_012MA"}, "S0503_C04_084E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Civilian employed population 16 years and over!!INDUSTRY!!Arts, entertainment, and recreation, and accommodation and food services", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_084EA,S0503_C04_084M,S0503_C04_084MA"}, "S0601_C01_030E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over!!Divorced or separated", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C01_030EA,S0601_C01_030M,S0601_C01_030MA"}, "S0601PR_C03_020E": {"label": "Estimate!!Native; born in the U.S.!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C03_020EA,S0601PR_C03_020M,S0601PR_C03_020MA"}, "S2408_C03_007E": {"label": "Estimate!!Percent Male!!Civilian employed population 16 years and over!!State government workers", "concept": "Class of Worker by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2408", "limit": 0, "attributes": "S2408_C03_007EA,S2408_C03_007M,S2408_C03_007MA"}, "S2414_C01_015E": {"label": "Estimate!!Median earnings (dollars)!!Full-time, year-round civilian employed population 16 years and over with earnings!!Finance and insurance, and real estate and rental and leasing:!!Real estate and rental and leasing", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C01_015EA,S2414_C01_015M,S2414_C01_015MA"}, "S0503_C04_081E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Civilian employed population 16 years and over!!INDUSTRY!!Finance and insurance, and real estate and rental and leasing", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_081EA,S0503_C04_081M,S0503_C04_081MA"}, "S0601PR_C03_021E": {"label": "Estimate!!Native; born in the U.S.!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C03_021EA,S0601PR_C03_021M,S0601PR_C03_021MA"}, "S1501_C04_059E": {"label": "Estimate!!Percent Male!!MEDIAN EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 25 years and over with earnings", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C04_059EA,S1501_C04_059M,S1501_C04_059MA"}, "S2408_C03_004E": {"label": "Estimate!!Percent Male!!Civilian employed population 16 years and over!!Private for-profit wage and salary workers:!!Self-employed in own incorporated business workers", "concept": "Class of Worker by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2408", "limit": 0, "attributes": "S2408_C03_004EA,S2408_C03_004M,S2408_C03_004MA"}, "S2414_C01_014E": {"label": "Estimate!!Median earnings (dollars)!!Full-time, year-round civilian employed population 16 years and over with earnings!!Finance and insurance, and real estate and rental and leasing:!!Finance and insurance", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C01_014EA,S2414_C01_014M,S2414_C01_014MA"}, "S0503_C04_082E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Civilian employed population 16 years and over!!INDUSTRY!!Professional, scientific, and management, and administrative and waste management services", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_082EA,S0503_C04_082M,S0503_C04_082MA"}, "S0601PR_C03_022E": {"label": "Estimate!!Native; born in the U.S.!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C03_022EA,S0601PR_C03_022M,S0601PR_C03_022MA"}, "S2408_C03_005E": {"label": "Estimate!!Percent Male!!Civilian employed population 16 years and over!!Private not-for-profit wage and salary workers", "concept": "Class of Worker by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2408", "limit": 0, "attributes": "S2408_C03_005EA,S2408_C03_005M,S2408_C03_005MA"}, "S0503_C04_087E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C04_087EA,S0503_C04_087M,S0503_C04_087MA"}, "S0601_C01_033E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than high school graduate", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C01_033EA,S0601_C01_033M,S0601_C01_033MA"}, "S0503_C04_088E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$1 to $9,999 or loss", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_088EA,S0503_C04_088M,S0503_C04_088MA"}, "S0601_C01_034E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate (includes equivalency)", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C01_034EA,S0601_C01_034M,S0601_C01_034MA"}, "S2414_C01_011E": {"label": "Estimate!!Median earnings (dollars)!!Full-time, year-round civilian employed population 16 years and over with earnings!!Transportation and warehousing, and utilities:!!Utilities", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C01_011EA,S2414_C01_011M,S2414_C01_011MA"}, "S0503_C04_085E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Civilian employed population 16 years and over!!INDUSTRY!!Other services (except public administration)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_085EA,S0503_C04_085M,S0503_C04_085MA"}, "S0601_C01_031E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C01_031EA,S0601_C01_031M,S0601_C01_031MA"}, "S2408_C03_008E": {"label": "Estimate!!Percent Male!!Civilian employed population 16 years and over!!Federal government workers", "concept": "Class of Worker by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2408", "limit": 0, "attributes": "S2408_C03_008EA,S2408_C03_008M,S2408_C03_008MA"}, "S0501_C03_010E": {"label": "Estimate!!Foreign-born!!Total population!!SEX AND AGE!!65 to 74 years", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_010EA,S0501_C03_010M,S0501_C03_010MA"}, "S0503_C04_086E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Civilian employed population 16 years and over!!INDUSTRY!!Public administration", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_086EA,S0503_C04_086M,S0503_C04_086MA"}, "S0601_C01_032E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "int", "group": "S0601", "limit": 0, "attributes": "S0601_C01_032EA,S0601_C01_032M,S0601_C01_032MA"}, "S2414_C01_010E": {"label": "Estimate!!Median earnings (dollars)!!Full-time, year-round civilian employed population 16 years and over with earnings!!Transportation and warehousing, and utilities:!!Transportation and warehousing", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C01_010EA,S2414_C01_010M,S2414_C01_010MA"}, "S2408_C03_009E": {"label": "Estimate!!Percent Male!!Civilian employed population 16 years and over!!Self-employed in own not incorporated business workers and unpaid family workers", "concept": "Class of Worker by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2408", "limit": 0, "attributes": "S2408_C03_009EA,S2408_C03_009M,S2408_C03_009MA"}, "S0501_C03_011E": {"label": "Estimate!!Foreign-born!!Total population!!SEX AND AGE!!75 to 84 years", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C03_011EA,S0501_C03_011M,S0501_C03_011MA"}, "S0701_C01_004E": {"label": "Estimate!!Total!!Population 1 year and over!!AGE!!18 to 24 years", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "int", "group": "S0701", "limit": 0, "attributes": "S0701_C01_004EA,S0701_C01_004M,S0701_C01_004MA"}, "S0506_C06_117E": {"label": "Estimate!!Foreign-born; Born in South America!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_117EA,S0506_C06_117M,S0506_C06_117MA"}, "S0505_C03_073E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Civilian employed population 16 years and over!!OCCUPATION!!Production, transportation, and material moving occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_073EA,S0505_C03_073M,S0505_C03_073MA"}, "S0701_C01_005E": {"label": "Estimate!!Total!!Population 1 year and over!!AGE!!25 to 34 years", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "int", "group": "S0701", "limit": 0, "attributes": "S0701_C01_005EA,S0701_C01_005M,S0701_C01_005MA"}, "S0506_C06_118E": {"label": "Estimate!!Foreign-born; Born in South America!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_118EA,S0506_C06_118M,S0506_C06_118MA"}, "S0505_C03_072E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Civilian employed population 16 years and over!!OCCUPATION!!Natural resources, construction, and maintenance occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_072EA,S0505_C03_072M,S0505_C03_072MA"}, "S0701_C01_006E": {"label": "Estimate!!Total!!Population 1 year and over!!AGE!!35 to 44 years", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "int", "group": "S0701", "limit": 0, "attributes": "S0701_C01_006EA,S0701_C01_006M,S0701_C01_006MA"}, "S0506_C06_119E": {"label": "Estimate!!Foreign-born; Born in South America!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_119EA,S0506_C06_119M,S0506_C06_119MA"}, "S0505_C03_075E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Civilian employed population 16 years and over!!INDUSTRY!!Construction", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_075EA,S0505_C03_075M,S0505_C03_075MA"}, "S0701_C01_007E": {"label": "Estimate!!Total!!Population 1 year and over!!AGE!!45 to 54 years", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "int", "group": "S0701", "limit": 0, "attributes": "S0701_C01_007EA,S0701_C01_007M,S0701_C01_007MA"}, "S0505_C03_074E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Civilian employed population 16 years and over!!INDUSTRY!!Agriculture, forestry, fishing and hunting, and mining", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_074EA,S0505_C03_074M,S0505_C03_074MA"}, "S0701_C01_008E": {"label": "Estimate!!Total!!Population 1 year and over!!AGE!!55 to 64 years", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "int", "group": "S0701", "limit": 0, "attributes": "S0701_C01_008EA,S0701_C01_008M,S0701_C01_008MA"}, "S0505_C03_077E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Civilian employed population 16 years and over!!INDUSTRY!!Wholesale trade", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_077EA,S0505_C03_077M,S0505_C03_077MA"}, "S0506_C06_113E": {"label": "Estimate!!Foreign-born; Born in South America!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!100 to 199 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_113EA,S0506_C06_113M,S0506_C06_113MA"}, "S0503_C04_080E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Civilian employed population 16 years and over!!INDUSTRY!!Information", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_080EA,S0503_C04_080M,S0503_C04_080MA"}, "S0701_C01_009E": {"label": "Estimate!!Total!!Population 1 year and over!!AGE!!65 to 74 years", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "int", "group": "S0701", "limit": 0, "attributes": "S0701_C01_009EA,S0701_C01_009M,S0701_C01_009MA"}, "S0506_C06_114E": {"label": "Estimate!!Foreign-born; Born in South America!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!At or above 200 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_114EA,S0506_C06_114M,S0506_C06_114MA"}, "S0505_C03_076E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Civilian employed population 16 years and over!!INDUSTRY!!Manufacturing", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_076EA,S0505_C03_076M,S0505_C03_076MA"}, "S0505_C03_079E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Civilian employed population 16 years and over!!INDUSTRY!!Transportation and warehousing, and utilities", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_079EA,S0505_C03_079M,S0505_C03_079MA"}, "S0506_C06_115E": {"label": "Estimate!!Foreign-born; Born in South America!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_115EA,S0506_C06_115M,S0506_C06_115MA"}, "S0505_C03_078E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Civilian employed population 16 years and over!!INDUSTRY!!Retail trade", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_078EA,S0505_C03_078M,S0505_C03_078MA"}, "S0103PR_C02_059E": {"label": "Estimate!!65 years and over!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Entered before 2000", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_059EA,S0103PR_C02_059M,S0103PR_C02_059MA"}, "S0506_C06_116E": {"label": "Estimate!!Foreign-born; Born in South America!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_116EA,S0506_C06_116M,S0506_C06_116MA"}, "S2402_C01_033E": {"label": "Estimate!!Total!!Full-time, year-round civilian employed population 16 years and over!!Production, transportation, and material moving occupations:", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C01_033EA,S2402_C01_033M,S2402_C01_033MA"}, "S2603_C02_084E": {"label": "Estimate!!Total group quarters population!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English!!Speak English less than \"very well\"", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C02_084EA,S2603_C02_084M,S2603_C02_084MA"}, "S2702PR_C02_093E": {"label": "Estimate!!Total Uninsured!!HOUSEHOLD INCOME (IN 2024 INFLATION ADJUSTED DOLLARS)!!Total household population!!Under $25,000", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_093EA,S2702PR_C02_093M,S2702PR_C02_093MA"}, "S0103PR_C02_058E": {"label": "Estimate!!65 years and over!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Entered 2000 to 2009", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_058EA,S0103PR_C02_058M,S0103PR_C02_058MA"}, "S1901_C03_002E": {"label": "Estimate!!Married-couple families!!Total!!Less than $10,000", "concept": "Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1901", "limit": 0, "attributes": "S1901_C03_002EA,S1901_C03_002M,S1901_C03_002MA"}, "S2402_C01_032E": {"label": "Estimate!!Total!!Full-time, year-round civilian employed population 16 years and over!!Natural resources, construction, and maintenance occupations:!!Installation, maintenance, and repair occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C01_032EA,S2402_C01_032M,S2402_C01_032MA"}, "S2702PR_C02_092E": {"label": "Estimate!!Total Uninsured!!HOUSEHOLD INCOME (IN 2024 INFLATION ADJUSTED DOLLARS)!!Total household population", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "int", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_092EA,S2702PR_C02_092M,S2702PR_C02_092MA"}, "S2603_C02_085E": {"label": "Estimate!!Total group quarters population!!EMPLOYMENT STATUS!!Population 16 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C02_085EA,S2603_C02_085M,S2603_C02_085MA"}, "S0103PR_C02_057E": {"label": "Estimate!!65 years and over!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Entered 2010 or later", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_057EA,S0103PR_C02_057M,S0103PR_C02_057MA"}, "S0506_C06_110E": {"label": "Estimate!!Foreign-born; Born in South America!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!Average number of workers per household", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_110EA,S0506_C06_110M,S0506_C06_110MA"}, "S1901_C03_003E": {"label": "Estimate!!Married-couple families!!Total!!$10,000 to $14,999", "concept": "Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1901", "limit": 0, "attributes": "S1901_C03_003EA,S1901_C03_003M,S1901_C03_003MA"}, "S2702PR_C02_095E": {"label": "Estimate!!Total Uninsured!!HOUSEHOLD INCOME (IN 2024 INFLATION ADJUSTED DOLLARS)!!Total household population!!$50,000 to $74,999", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_095EA,S2702PR_C02_095M,S2702PR_C02_095MA"}, "S2603_C02_086E": {"label": "Estimate!!Total group quarters population!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C02_086EA,S2603_C02_086M,S2603_C02_086MA"}, "S2402_C01_035E": {"label": "Estimate!!Total!!Full-time, year-round civilian employed population 16 years and over!!Production, transportation, and material moving occupations:!!Transportation occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C01_035EA,S2402_C01_035M,S2402_C01_035MA"}, "S0103PR_C02_056E": {"label": "Estimate!!65 years and over!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_056EA,S0103PR_C02_056M,S0103PR_C02_056MA"}, "S0506_C06_111E": {"label": "Estimate!!Foreign-born; Born in South America!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C06_111EA,S0506_C06_111M,S0506_C06_111MA"}, "S1901_C03_001E": {"label": "Estimate!!Married-couple families!!Total", "concept": "Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1901", "limit": 0, "attributes": "S1901_C03_001EA,S1901_C03_001M,S1901_C03_001MA"}, "S2702PR_C02_094E": {"label": "Estimate!!Total Uninsured!!HOUSEHOLD INCOME (IN 2024 INFLATION ADJUSTED DOLLARS)!!Total household population!!$25,000 to $49,999", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_094EA,S2702PR_C02_094M,S2702PR_C02_094MA"}, "S2402_C01_034E": {"label": "Estimate!!Total!!Full-time, year-round civilian employed population 16 years and over!!Production, transportation, and material moving occupations:!!Production occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C01_034EA,S2402_C01_034M,S2402_C01_034MA"}, "S2603_C02_087E": {"label": "Estimate!!Total group quarters population!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C02_087EA,S2603_C02_087M,S2603_C02_087MA"}, "S0103PR_C02_055E": {"label": "Estimate!!65 years and over!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Native", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_055EA,S0103PR_C02_055M,S0103PR_C02_055MA"}, "S0506_C06_112E": {"label": "Estimate!!Foreign-born; Born in South America!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!Below 100 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_112EA,S0506_C06_112M,S0506_C06_112MA"}, "S2603_C02_080E": {"label": "Estimate!!Total group quarters population!!WORLD REGION OF BIRTH OF FOREIGN BORN!!Foreign-born population excluding population born at sea!!Other", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C02_080EA,S2603_C02_080M,S2603_C02_080MA"}, "S2702PR_C02_097E": {"label": "Estimate!!Total Uninsured!!HOUSEHOLD INCOME (IN 2024 INFLATION ADJUSTED DOLLARS)!!Total household population!!$100,000 and over", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_097EA,S2702PR_C02_097M,S2702PR_C02_097MA"}, "S0103PR_C02_054E": {"label": "Estimate!!65 years and over!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_054EA,S0103PR_C02_054M,S0103PR_C02_054MA"}, "S1901_C03_006E": {"label": "Estimate!!Married-couple families!!Total!!$35,000 to $49,999", "concept": "Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1901", "limit": 0, "attributes": "S1901_C03_006EA,S1901_C03_006M,S1901_C03_006MA"}, "S2702PR_C02_096E": {"label": "Estimate!!Total Uninsured!!HOUSEHOLD INCOME (IN 2024 INFLATION ADJUSTED DOLLARS)!!Total household population!!$75,000 to $99,999", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_096EA,S2702PR_C02_096M,S2702PR_C02_096MA"}, "S2603_C02_081E": {"label": "Estimate!!Total group quarters population!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C02_081EA,S2603_C02_081M,S2603_C02_081MA"}, "S2402_C01_036E": {"label": "Estimate!!Total!!Full-time, year-round civilian employed population 16 years and over!!Production, transportation, and material moving occupations:!!Material moving occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C01_036EA,S2402_C01_036M,S2402_C01_036MA"}, "S0103PR_C02_053E": {"label": "Estimate!!65 years and over!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Elsewhere", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_053EA,S0103PR_C02_053M,S0103PR_C02_053MA"}, "S0701_C01_001E": {"label": "Estimate!!Total!!Population 1 year and over", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "int", "group": "S0701", "limit": 0, "attributes": "S0701_C01_001EA,S0701_C01_001M,S0701_C01_001MA"}, "S1901_C03_007E": {"label": "Estimate!!Married-couple families!!Total!!$50,000 to $74,999", "concept": "Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1901", "limit": 0, "attributes": "S1901_C03_007EA,S1901_C03_007M,S1901_C03_007MA"}, "S0103PR_C02_052E": {"label": "Estimate!!65 years and over!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different house in Puerto Rico or the United States!!In the United States", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_052EA,S0103PR_C02_052M,S0103PR_C02_052MA"}, "S2702PR_C02_099E": {"label": "Estimate!!Total Uninsured!!RATIO OF INCOME TO POVERTY LEVEL IN THE PAST 12 MONTHS!!Civilian noninstitutionalized population for whom poverty status is determined", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "int", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_099EA,S2702PR_C02_099M,S2702PR_C02_099MA"}, "S2603_C02_082E": {"label": "Estimate!!Total group quarters population!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!English only", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C02_082EA,S2603_C02_082M,S2603_C02_082MA"}, "S0701_C01_002E": {"label": "Estimate!!Total!!Population 1 year and over!!AGE!!1 to 4 years", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "int", "group": "S0701", "limit": 0, "attributes": "S0701_C01_002EA,S0701_C01_002M,S0701_C01_002MA"}, "S1901_C03_004E": {"label": "Estimate!!Married-couple families!!Total!!$15,000 to $24,999", "concept": "Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1901", "limit": 0, "attributes": "S1901_C03_004EA,S1901_C03_004M,S1901_C03_004MA"}, "S0103PR_C02_051E": {"label": "Estimate!!65 years and over!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different house in Puerto Rico or the United States!!In Puerto Rico!!Different municipio", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_051EA,S0103PR_C02_051M,S0103PR_C02_051MA"}, "S2702PR_C02_098E": {"label": "Estimate!!Total Uninsured!!HOUSEHOLD INCOME (IN 2024 INFLATION ADJUSTED DOLLARS)!!Total household population!!Median household income of householders", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "int", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_098EA,S2702PR_C02_098M,S2702PR_C02_098MA"}, "S2603_C02_083E": {"label": "Estimate!!Total group quarters population!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C02_083EA,S2603_C02_083M,S2603_C02_083MA"}, "S0701_C01_003E": {"label": "Estimate!!Total!!Population 1 year and over!!AGE!!5 to 17 years", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "int", "group": "S0701", "limit": 0, "attributes": "S0701_C01_003EA,S0701_C01_003M,S0701_C01_003MA"}, "S1901_C03_005E": {"label": "Estimate!!Married-couple families!!Total!!$25,000 to $34,999", "concept": "Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1901", "limit": 0, "attributes": "S1901_C03_005EA,S1901_C03_005M,S1901_C03_005MA"}, "S0103PR_C02_062E": {"label": "Estimate!!65 years and over!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_062EA,S0103PR_C02_062M,S0103PR_C02_062MA"}, "S0601_C01_001E": {"label": "Estimate!!Total!!Total population", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "int", "group": "S0601", "limit": 0, "attributes": "S0601_C01_001EA,S0601_C01_001M,S0601_C01_001MA"}, "S0503_C04_079E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Civilian employed population 16 years and over!!INDUSTRY!!Transportation and warehousing, and utilities", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_079EA,S0503_C04_079M,S0503_C04_079MA"}, "S0103PR_C02_061E": {"label": "Estimate!!65 years and over!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Not a U.S. citizen", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_061EA,S0103PR_C02_061M,S0103PR_C02_061MA"}, "S0601_C01_002E": {"label": "Estimate!!Total!!Total population!!AGE!!Under 5 years", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C01_002EA,S0601_C01_002M,S0601_C01_002MA"}, "S0503_C04_077E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Civilian employed population 16 years and over!!INDUSTRY!!Wholesale trade", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_077EA,S0503_C04_077M,S0503_C04_077MA"}, "S0103PR_C02_060E": {"label": "Estimate!!65 years and over!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Naturalized U.S. citizen", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_060EA,S0103PR_C02_060M,S0103PR_C02_060MA"}, "S0503_C04_078E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Civilian employed population 16 years and over!!INDUSTRY!!Retail trade", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_078EA,S0503_C04_078M,S0503_C04_078MA"}, "S0601_C01_005E": {"label": "Estimate!!Total!!Total population!!AGE!!25 to 44 years", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C01_005EA,S0601_C01_005M,S0601_C01_005MA"}, "S2603_C02_088E": {"label": "Estimate!!Total group quarters population!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Employed", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C02_088EA,S2603_C02_088M,S2603_C02_088MA"}, "S2603_C02_089E": {"label": "Estimate!!Total group quarters population!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C02_089EA,S2603_C02_089M,S2603_C02_089MA"}, "S0601_C01_006E": {"label": "Estimate!!Total!!Total population!!AGE!!45 to 54 years", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C01_006EA,S0601_C01_006M,S0601_C01_006MA"}, "S0601_C01_003E": {"label": "Estimate!!Total!!Total population!!AGE!!5 to 17 years", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C01_003EA,S0601_C01_003M,S0601_C01_003MA"}, "S2402_C01_031E": {"label": "Estimate!!Total!!Full-time, year-round civilian employed population 16 years and over!!Natural resources, construction, and maintenance occupations:!!Construction and extraction occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C01_031EA,S2402_C01_031M,S2402_C01_031MA"}, "S0601_C01_004E": {"label": "Estimate!!Total!!Total population!!AGE!!18 to 24 years", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C01_004EA,S0601_C01_004M,S0601_C01_004MA"}, "S2402_C01_030E": {"label": "Estimate!!Total!!Full-time, year-round civilian employed population 16 years and over!!Natural resources, construction, and maintenance occupations:!!Farming, fishing, and forestry occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C01_030EA,S2402_C01_030M,S2402_C01_030MA"}, "S0503_C04_071E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Civilian employed population 16 years and over!!OCCUPATION!!Sales and office occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_071EA,S0503_C04_071M,S0503_C04_071MA"}, "S0503_C04_072E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Civilian employed population 16 years and over!!OCCUPATION!!Natural resources, construction, and maintenance occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_072EA,S0503_C04_072M,S0503_C04_072MA"}, "S0503_C04_070E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Civilian employed population 16 years and over!!OCCUPATION!!Service occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_070EA,S0503_C04_070M,S0503_C04_070MA"}, "S0503_C04_075E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Civilian employed population 16 years and over!!INDUSTRY!!Construction", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_075EA,S0503_C04_075M,S0503_C04_075MA"}, "S0506_C06_109E": {"label": "Estimate!!Foreign-born; Born in South America!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!Median Household income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C06_109EA,S0506_C06_109M,S0506_C06_109MA"}, "S0503_C04_076E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Civilian employed population 16 years and over!!INDUSTRY!!Manufacturing", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_076EA,S0503_C04_076M,S0503_C04_076MA"}, "S0503_C04_073E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Civilian employed population 16 years and over!!OCCUPATION!!Production, transportation, and material moving occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_073EA,S0503_C04_073M,S0503_C04_073MA"}, "S0505_C03_071E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Civilian employed population 16 years and over!!OCCUPATION!!Sales and office occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_071EA,S0505_C03_071M,S0505_C03_071MA"}, "S0503_C04_074E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Civilian employed population 16 years and over!!INDUSTRY!!Agriculture, forestry, fishing and hunting, and mining", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_074EA,S0503_C04_074M,S0503_C04_074MA"}, "S0505_C03_070E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Civilian employed population 16 years and over!!OCCUPATION!!Service occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_070EA,S0505_C03_070M,S0505_C03_070MA"}, "S0506_C04_099E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings!!Mean earnings (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C04_099EA,S0506_C04_099M,S0506_C04_099MA"}, "S2501_C05_037E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!FAMILY TYPE AND PRESENCE OF OWN CHILDREN!!With related children of householder under 18 years!!No own children of householder under 18 years", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C05_037EA,S2501_C05_037M,S2501_C05_037MA"}, "S0701_C01_016E": {"label": "Estimate!!Total!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "int", "group": "S0701", "limit": 0, "attributes": "S0701_C01_016EA,S0701_C01_016M,S0701_C01_016MA"}, "S0506_C06_105E": {"label": "Estimate!!Foreign-born; Born in South America!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income!!Mean cash public assistance income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C06_105EA,S0506_C06_105M,S0506_C06_105MA"}, "S0505_C03_061E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed!!Percent of civilian labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_061EA,S0505_C03_061M,S0505_C03_061MA"}, "S0506_C04_098E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_098EA,S0506_C04_098M,S0506_C04_098MA"}, "S2501_C05_036E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!FAMILY TYPE AND PRESENCE OF OWN CHILDREN!!With related children of householder under 18 years!!With own children of householder under 18 years!!6 to 17 years only", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C05_036EA,S2501_C05_036M,S2501_C05_036MA"}, "S0701_C01_017E": {"label": "Estimate!!Total!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "int", "group": "S0701", "limit": 0, "attributes": "S0701_C01_017EA,S0701_C01_017M,S0701_C01_017MA"}, "S0506_C06_106E": {"label": "Estimate!!Foreign-born; Born in South America!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_106EA,S0506_C06_106M,S0506_C06_106MA"}, "S0505_C03_060E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_060EA,S0505_C03_060M,S0505_C03_060MA"}, "S2603_C02_090E": {"label": "Estimate!!Total group quarters population!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed!!Percent of civilian labor force", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C02_090EA,S2603_C02_090M,S2603_C02_090MA"}, "S2501_C05_035E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!FAMILY TYPE AND PRESENCE OF OWN CHILDREN!!With related children of householder under 18 years!!With own children of householder under 18 years!!Under 6 years and 6 to 17 years", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C05_035EA,S2501_C05_035M,S2501_C05_035MA"}, "S0701_C01_018E": {"label": "Estimate!!Total!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "int", "group": "S0701", "limit": 0, "attributes": "S0701_C01_018EA,S0701_C01_018M,S0701_C01_018MA"}, "S0506_C06_107E": {"label": "Estimate!!Foreign-born; Born in South America!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income!!Mean retirement income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C06_107EA,S0506_C06_107M,S0506_C06_107MA"}, "S0505_C03_063E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!EMPLOYMENT STATUS!!Population 16 years and over!!Not in labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_063EA,S0505_C03_063M,S0505_C03_063MA"}, "S2603_C02_091E": {"label": "Estimate!!Total group quarters population!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Armed Forces", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C02_091EA,S2603_C02_091M,S2603_C02_091MA"}, "S2501_C05_034E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!FAMILY TYPE AND PRESENCE OF OWN CHILDREN!!With related children of householder under 18 years!!With own children of householder under 18 years!!Under 6 years only", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C05_034EA,S2501_C05_034M,S2501_C05_034MA"}, "S0701_C01_019E": {"label": "Estimate!!Total!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "int", "group": "S0701", "limit": 0, "attributes": "S0701_C01_019EA,S0701_C01_019M,S0701_C01_019MA"}, "S0506_C06_108E": {"label": "Estimate!!Foreign-born; Born in South America!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Food Stamp/SNAP benefits", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_108EA,S0506_C06_108M,S0506_C06_108MA"}, "S0505_C03_062E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Armed Forces", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_062EA,S0505_C03_062M,S0505_C03_062MA"}, "S1901_C03_010E": {"label": "Estimate!!Married-couple families!!Total!!$150,000 to $199,999", "concept": "Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1901", "limit": 0, "attributes": "S1901_C03_010EA,S1901_C03_010M,S1901_C03_010MA"}, "S0506_C06_101E": {"label": "Estimate!!Foreign-born; Born in South America!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income!!Mean Social Security income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C06_101EA,S0506_C06_101M,S0506_C06_101MA"}, "S0505_C03_065E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Private wage and salary workers", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_065EA,S0505_C03_065M,S0505_C03_065MA"}, "S1901_C03_011E": {"label": "Estimate!!Married-couple families!!Total!!$200,000 or more", "concept": "Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1901", "limit": 0, "attributes": "S1901_C03_011EA,S1901_C03_011M,S1901_C03_011MA"}, "S0505_C03_064E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Civilian employed population 16 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C03_064EA,S0505_C03_064M,S0505_C03_064MA"}, "S0506_C06_102E": {"label": "Estimate!!Foreign-born; Born in South America!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_102EA,S0506_C06_102M,S0506_C06_102MA"}, "S0505_C03_067E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Self-employed workers in own not incorporated business", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_067EA,S0505_C03_067M,S0505_C03_067MA"}, "S0506_C06_103E": {"label": "Estimate!!Foreign-born; Born in South America!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income!!Mean Supplemental Security Income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C06_103EA,S0506_C06_103M,S0506_C06_103MA"}, "S0506_C06_104E": {"label": "Estimate!!Foreign-born; Born in South America!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_104EA,S0506_C06_104M,S0506_C06_104MA"}, "S2501_C05_038E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!FAMILY TYPE AND PRESENCE OF OWN CHILDREN!!No related children of householder under 18 years", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C05_038EA,S2501_C05_038M,S2501_C05_038MA"}, "S0505_C03_066E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Government workers", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_066EA,S0505_C03_066M,S0505_C03_066MA"}, "S0505_C03_069E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Civilian employed population 16 years and over!!OCCUPATION!!Management, business, science, and arts occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_069EA,S0505_C03_069M,S0505_C03_069MA"}, "S2603_C02_096E": {"label": "Estimate!!Total group quarters population!!OCCUPATION!!Civilian employed population 16 years and over!!Sales and office occupations", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C02_096EA,S2603_C02_096M,S2603_C02_096MA"}, "S2403_C04_025E": {"label": "Estimate!!Female!!Civilian employed population 16 years and over!!Arts, entertainment, and recreation, and accommodation and food services:!!Accommodation and food services", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C04_025EA,S2403_C04_025M,S2403_C04_025MA"}, "S0601_C01_009E": {"label": "Estimate!!Total!!Total population!!AGE!!75 years and over", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C01_009EA,S0601_C01_009M,S0601_C01_009MA"}, "S1901_C03_014E": {"label": "Estimate!!Married-couple families!!PERCENT ALLOCATED!!Household income in the past 12 months", "concept": "Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1901", "limit": 0, "attributes": "S1901_C03_014EA,S1901_C03_014M,S1901_C03_014MA"}, "S0505_C03_068E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Unpaid family workers", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_068EA,S0505_C03_068M,S0505_C03_068MA"}, "S2603_C02_097E": {"label": "Estimate!!Total group quarters population!!OCCUPATION!!Civilian employed population 16 years and over!!Natural resources, construction, extraction, and maintenance occupations", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C02_097EA,S2603_C02_097M,S2603_C02_097MA"}, "S0103PR_C02_069E": {"label": "Estimate!!65 years and over!!EMPLOYMENT STATUS!!Civilian population 16 years and over!!In labor force!!Unemployed", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_069EA,S0103PR_C02_069M,S0103PR_C02_069MA"}, "S2403_C04_024E": {"label": "Estimate!!Female!!Civilian employed population 16 years and over!!Arts, entertainment, and recreation, and accommodation and food services:!!Arts, entertainment, and recreation", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C04_024EA,S2403_C04_024M,S2403_C04_024MA"}, "S1901_C03_015E": {"label": "Estimate!!Married-couple families!!PERCENT ALLOCATED!!Family income in the past 12 months", "concept": "Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1901", "limit": 0, "attributes": "S1901_C03_015EA,S1901_C03_015M,S1901_C03_015MA"}, "S1901_C03_012E": {"label": "Estimate!!Married-couple families!!Median income (dollars)", "concept": "Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1901", "limit": 0, "attributes": "S1901_C03_012EA,S1901_C03_012M,S1901_C03_012MA"}, "S0103PR_C02_068E": {"label": "Estimate!!65 years and over!!EMPLOYMENT STATUS!!Civilian population 16 years and over!!In labor force!!Employed", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_068EA,S0103PR_C02_068M,S0103PR_C02_068MA"}, "S2403_C04_027E": {"label": "Estimate!!Female!!Civilian employed population 16 years and over!!Public administration", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C04_027EA,S2403_C04_027M,S2403_C04_027MA"}, "S2603_C02_098E": {"label": "Estimate!!Total group quarters population!!OCCUPATION!!Civilian employed population 16 years and over!!Production, transportation, and material moving occupations", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C02_098EA,S2603_C02_098M,S2603_C02_098MA"}, "S0701_C01_010E": {"label": "Estimate!!Total!!Population 1 year and over!!AGE!!75 years and over", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "int", "group": "S0701", "limit": 0, "attributes": "S0701_C01_010EA,S0701_C01_010M,S0701_C01_010MA"}, "S0601_C01_007E": {"label": "Estimate!!Total!!Total population!!AGE!!55 to 64 years", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C01_007EA,S0601_C01_007M,S0601_C01_007MA"}, "S2603_C02_099E": {"label": "Estimate!!Total group quarters population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C02_099EA,S2603_C02_099M,S2603_C02_099MA"}, "S0103PR_C02_067E": {"label": "Estimate!!65 years and over!!EMPLOYMENT STATUS!!Civilian population 16 years and over!!In labor force", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_067EA,S0103PR_C02_067M,S0103PR_C02_067MA"}, "S2403_C04_026E": {"label": "Estimate!!Female!!Civilian employed population 16 years and over!!Other services, except public administration", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C04_026EA,S2403_C04_026M,S2403_C04_026MA"}, "S0701_C01_011E": {"label": "Estimate!!Total!!Population 1 year and over!!AGE!!Median age (years)", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C01_011EA,S0701_C01_011M,S0701_C01_011MA"}, "S0601_C01_008E": {"label": "Estimate!!Total!!Total population!!AGE!!65 to 74 years", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C01_008EA,S0601_C01_008M,S0601_C01_008MA"}, "S1901_C03_013E": {"label": "Estimate!!Married-couple families!!Mean income (dollars)", "concept": "Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1901", "limit": 0, "attributes": "S1901_C03_013EA,S1901_C03_013M,S1901_C03_013MA"}, "S0506_C06_100E": {"label": "Estimate!!Foreign-born; Born in South America!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C06_100EA,S0506_C06_100M,S0506_C06_100MA"}, "S2603_C02_092E": {"label": "Estimate!!Total group quarters population!!EMPLOYMENT STATUS!!Population 16 years and over!!Not in labor force", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C02_092EA,S2603_C02_092M,S2603_C02_092MA"}, "S2501_C05_033E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!FAMILY TYPE AND PRESENCE OF OWN CHILDREN!!With related children of householder under 18 years!!With own children of householder under 18 years", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C05_033EA,S2501_C05_033M,S2501_C05_033MA"}, "S2303_C06_003E": {"label": "Estimate!!Percent Female!!Population 16 to 64 years!!WEEKS WORKED!!Worked 48 to 49 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C06_003EA,S2303_C06_003M,S2303_C06_003MA"}, "S0103PR_C02_066E": {"label": "Estimate!!65 years and over!!EMPLOYMENT STATUS!!Civilian population 16 years and over", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_066EA,S0103PR_C02_066M,S0103PR_C02_066MA"}, "S2403_C04_021E": {"label": "Estimate!!Female!!Civilian employed population 16 years and over!!Educational services, and health care and social assistance:!!Educational services", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C04_021EA,S2403_C04_021M,S2403_C04_021MA"}, "S0701_C01_012E": {"label": "Estimate!!Total!!Population 1 year and over!!SEX!!Male", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "int", "group": "S0701", "limit": 0, "attributes": "S0701_C01_012EA,S0701_C01_012M,S0701_C01_012MA"}, "S2603_C02_093E": {"label": "Estimate!!Total group quarters population!!OCCUPATION!!Civilian employed population 16 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C02_093EA,S2603_C02_093M,S2603_C02_093MA"}, "S2501_C05_032E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!FAMILY TYPE AND PRESENCE OF OWN CHILDREN!!With related children of householder under 18 years", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C05_032EA,S2501_C05_032M,S2501_C05_032MA"}, "S0103PR_C02_065E": {"label": "Estimate!!65 years and over!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English!!Speak English less than \"very well\"", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_065EA,S0103PR_C02_065M,S0103PR_C02_065MA"}, "S0701_C01_013E": {"label": "Estimate!!Total!!Population 1 year and over!!SEX!!Female", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "int", "group": "S0701", "limit": 0, "attributes": "S0701_C01_013EA,S0701_C01_013M,S0701_C01_013MA"}, "S2403_C04_020E": {"label": "Estimate!!Female!!Civilian employed population 16 years and over!!Educational services, and health care and social assistance:", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C04_020EA,S2403_C04_020M,S2403_C04_020MA"}, "S2303_C06_004E": {"label": "Estimate!!Percent Female!!Population 16 to 64 years!!WEEKS WORKED!!Worked 40 to 47 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C06_004EA,S2303_C06_004M,S2303_C06_004MA"}, "S2603_C02_094E": {"label": "Estimate!!Total group quarters population!!OCCUPATION!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C02_094EA,S2603_C02_094M,S2603_C02_094MA"}, "S2303_C06_001E": {"label": "Estimate!!Percent Female!!Population 16 to 64 years", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C06_001EA,S2303_C06_001M,S2303_C06_001MA"}, "S2501_C05_031E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Nonfamily households!!Householder not living alone!!Householder 65 years and over", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C05_031EA,S2501_C05_031M,S2501_C05_031MA"}, "S0103PR_C02_064E": {"label": "Estimate!!65 years and over!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_064EA,S0103PR_C02_064M,S0103PR_C02_064MA"}, "S0701_C01_014E": {"label": "Estimate!!Total!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "int", "group": "S0701", "limit": 0, "attributes": "S0701_C01_014EA,S0701_C01_014M,S0701_C01_014MA"}, "S2403_C04_023E": {"label": "Estimate!!Female!!Civilian employed population 16 years and over!!Arts, entertainment, and recreation, and accommodation and food services:", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C04_023EA,S2403_C04_023M,S2403_C04_023MA"}, "S1901_C03_016E": {"label": "Estimate!!Married-couple families!!PERCENT ALLOCATED!!Nonfamily income in the past 12 months", "concept": "Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1901", "limit": 0, "attributes": "S1901_C03_016EA,S1901_C03_016M,S1901_C03_016MA"}, "S0103PR_C02_063E": {"label": "Estimate!!65 years and over!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!English only", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_063EA,S0103PR_C02_063M,S0103PR_C02_063MA"}, "S2603_C02_095E": {"label": "Estimate!!Total group quarters population!!OCCUPATION!!Civilian employed population 16 years and over!!Service occupations", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C02_095EA,S2603_C02_095M,S2603_C02_095MA"}, "S2303_C06_002E": {"label": "Estimate!!Percent Female!!Population 16 to 64 years!!WEEKS WORKED!!Worked 50 to 52 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C06_002EA,S2303_C06_002M,S2303_C06_002MA"}, "S2501_C05_030E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Nonfamily households!!Householder not living alone!!Householder 35 to 64 years", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C05_030EA,S2501_C05_030M,S2501_C05_030MA"}, "S2403_C04_022E": {"label": "Estimate!!Female!!Civilian employed population 16 years and over!!Educational services, and health care and social assistance:!!Health care and social assistance", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C04_022EA,S2403_C04_022M,S2403_C04_022MA"}, "S0701_C01_015E": {"label": "Estimate!!Total!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "int", "group": "S0701", "limit": 0, "attributes": "S0701_C01_015EA,S0701_C01_015M,S0701_C01_015MA"}, "S0103PR_C02_074E": {"label": "Estimate!!65 years and over!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings!!Mean earnings (dollars)", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_074EA,S0103PR_C02_074M,S0103PR_C02_074MA"}, "S0503_C04_067E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Self-employed workers in own not incorporated business", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_067EA,S0503_C04_067M,S0503_C04_067MA"}, "S0601_C01_013E": {"label": "Estimate!!Total!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C01_013EA,S0601_C01_013M,S0601_C01_013MA"}, "S2303_C06_007E": {"label": "Estimate!!Percent Female!!Population 16 to 64 years!!WEEKS WORKED!!Worked 1 to 13 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C06_007EA,S2303_C06_007M,S2303_C06_007MA"}, "S0103PR_C02_073E": {"label": "Estimate!!65 years and over!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_073EA,S0103PR_C02_073M,S0103PR_C02_073MA"}, "S0601_C01_014E": {"label": "Estimate!!Total!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C01_014EA,S0601_C01_014M,S0601_C01_014MA"}, "S2303_C06_008E": {"label": "Estimate!!Percent Female!!Population 16 to 64 years!!WEEKS WORKED!!Did not work", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C06_008EA,S2303_C06_008M,S2303_C06_008MA"}, "S0503_C04_068E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Unpaid family workers", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_068EA,S0503_C04_068M,S0503_C04_068MA"}, "S0103PR_C02_072E": {"label": "Estimate!!65 years and over!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_072EA,S0103PR_C02_072M,S0103PR_C02_072MA"}, "S0503_C04_065E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Private wage and salary workers", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_065EA,S0503_C04_065M,S0503_C04_065MA"}, "S0601_C01_011E": {"label": "Estimate!!Total!!Total population!!SEX!!Male", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C01_011EA,S0601_C01_011M,S0601_C01_011MA"}, "S2303_C06_005E": {"label": "Estimate!!Percent Female!!Population 16 to 64 years!!WEEKS WORKED!!Worked 27 to 39 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C06_005EA,S2303_C06_005M,S2303_C06_005MA"}, "S1901_C03_008E": {"label": "Estimate!!Married-couple families!!Total!!$75,000 to $99,999", "concept": "Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1901", "limit": 0, "attributes": "S1901_C03_008EA,S1901_C03_008M,S1901_C03_008MA"}, "S0503_C04_066E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Government workers", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_066EA,S0503_C04_066M,S0503_C04_066MA"}, "S0103PR_C02_071E": {"label": "Estimate!!65 years and over!!EMPLOYMENT STATUS!!Civilian population 16 years and over!!Not in labor force", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_071EA,S0103PR_C02_071M,S0103PR_C02_071MA"}, "S0601_C01_012E": {"label": "Estimate!!Total!!Total population!!SEX!!Female", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C01_012EA,S0601_C01_012M,S0601_C01_012MA"}, "S2303_C06_006E": {"label": "Estimate!!Percent Female!!Population 16 to 64 years!!WEEKS WORKED!!Worked 14 to 26 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C06_006EA,S2303_C06_006M,S2303_C06_006MA"}, "S1901_C03_009E": {"label": "Estimate!!Married-couple families!!Total!!$100,000 to $149,999", "concept": "Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1901", "limit": 0, "attributes": "S1901_C03_009EA,S1901_C03_009M,S1901_C03_009MA"}, "S0103PR_C02_070E": {"label": "Estimate!!65 years and over!!EMPLOYMENT STATUS!!Civilian population 16 years and over!!In labor force!!Unemployed!!Percent of civilian labor force", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_070EA,S0103PR_C02_070M,S0103PR_C02_070MA"}, "S0601_C01_017E": {"label": "Estimate!!Total!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C01_017EA,S0601_C01_017M,S0601_C01_017MA"}, "S0601_C01_018E": {"label": "Estimate!!Total!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C01_018EA,S0601_C01_018M,S0601_C01_018MA"}, "S0601_C01_015E": {"label": "Estimate!!Total!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C01_015EA,S0601_C01_015M,S0601_C01_015MA"}, "S2303_C06_009E": {"label": "Estimate!!Percent Female!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 35 or more hours per week", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C06_009EA,S2303_C06_009M,S2303_C06_009MA"}, "S0503_C04_069E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Civilian employed population 16 years and over!!OCCUPATION!!Management, business, science, and arts occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_069EA,S0503_C04_069M,S0503_C04_069MA"}, "S0601_C01_016E": {"label": "Estimate!!Total!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C01_016EA,S0601_C01_016M,S0601_C01_016MA"}, "S0503_C04_060E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_060EA,S0503_C04_060M,S0503_C04_060MA"}, "S0503_C04_063E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!EMPLOYMENT STATUS!!Population 16 years and over!!Not in labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_063EA,S0503_C04_063M,S0503_C04_063MA"}, "S0503_C04_064E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!Civilian employed population 16 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C04_064EA,S0503_C04_064M,S0503_C04_064MA"}, "S0601_C01_010E": {"label": "Estimate!!Total!!Total population!!AGE!!Median age (years)", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C01_010EA,S0601_C01_010M,S0601_C01_010MA"}, "S0503_C04_061E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed!!Percent of civilian labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_061EA,S0503_C04_061M,S0503_C04_061MA"}, "S0503_C04_062E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Armed Forces", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_062EA,S0503_C04_062M,S0503_C04_062MA"}, "S0506_C04_087E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C04_087EA,S0506_C04_087M,S0506_C04_087MA"}, "S2302_C03_016E": {"label": "Estimate!!Families with own children under 18 years!!WORK STATUS CHARACTERISTICS!!Families!!1 worker in the past 12 months", "concept": "Employment Characteristics of Families", "predicateType": "int", "group": "S2302", "limit": 0, "attributes": "S2302_C03_016EA,S2302_C03_016M,S2302_C03_016MA"}, "S0701_C01_028E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "int", "group": "S0701", "limit": 0, "attributes": "S0701_C01_028EA,S0701_C01_028M,S0701_C01_028MA"}, "S2402_C01_017E": {"label": "Estimate!!Total!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Healthcare practitioners and technical occupations:!!Health technologists and technicians", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C01_017EA,S2402_C01_017M,S2402_C01_017MA"}, "S0505_C03_097E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C03_097EA,S0505_C03_097M,S0505_C03_097MA"}, "S2302_C03_015E": {"label": "Estimate!!Families with own children under 18 years!!WORK STATUS CHARACTERISTICS!!Families!!No workers in the past 12 months", "concept": "Employment Characteristics of Families", "predicateType": "int", "group": "S2302", "limit": 0, "attributes": "S2302_C03_015EA,S2302_C03_015M,S2302_C03_015MA"}, "S2402_C01_016E": {"label": "Estimate!!Total!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Healthcare practitioners and technical occupations:!!Health diagnosing and treating practitioners and other technical occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C01_016EA,S2402_C01_016M,S2402_C01_016MA"}, "S0701_C01_029E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "int", "group": "S0701", "limit": 0, "attributes": "S0701_C01_029EA,S0701_C01_029M,S0701_C01_029MA"}, "S0506_C04_086E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Civilian employed population 16 years and over!!INDUSTRY!!Public administration", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_086EA,S0506_C04_086M,S0506_C04_086MA"}, "S0505_C03_096E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!Median earnings (dollars) for full-time, year-round workers!!Female", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C03_096EA,S0505_C03_096M,S0505_C03_096MA"}, "S2302_C03_014E": {"label": "Estimate!!Families with own children under 18 years!!WORK STATUS CHARACTERISTICS!!Families", "concept": "Employment Characteristics of Families", "predicateType": "int", "group": "S2302", "limit": 0, "attributes": "S2302_C03_014EA,S2302_C03_014M,S2302_C03_014MA"}, "S0506_C04_089E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$10,000 to $14,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_089EA,S0506_C04_089M,S0506_C04_089MA"}, "S2402_C01_019E": {"label": "Estimate!!Total!!Full-time, year-round civilian employed population 16 years and over!!Service occupations:!!Healthcare support occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C01_019EA,S2402_C01_019M,S2402_C01_019MA"}, "S0505_C03_099E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings!!Mean earnings (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C03_099EA,S0505_C03_099M,S0505_C03_099MA"}, "S2302_C03_013E": {"label": "Estimate!!Families with own children under 18 years!!Families!!EMPLOYMENT STATUS CHARACTERISTICS!!Other families!!Male householder, no spouse present!!Not in labor force", "concept": "Employment Characteristics of Families", "predicateType": "int", "group": "S2302", "limit": 0, "attributes": "S2302_C03_013EA,S2302_C03_013M,S2302_C03_013MA"}, "S0506_C04_088E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$1 to $9,999 or loss", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_088EA,S0506_C04_088M,S0506_C04_088MA"}, "S2402_C01_018E": {"label": "Estimate!!Total!!Full-time, year-round civilian employed population 16 years and over!!Service occupations:", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C01_018EA,S2402_C01_018M,S2402_C01_018MA"}, "S0103PR_C02_039E": {"label": "Estimate!!65 years and over!!RESPONSIBILITY FOR GRANDCHILDREN UNDER 18 YEARS!!Population 30 years and over!!Living with grandchild(ren)", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_039EA,S0103PR_C02_039M,S0103PR_C02_039MA"}, "S0505_C03_098E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_098EA,S0505_C03_098M,S0505_C03_098MA"}, "S2302_C03_012E": {"label": "Estimate!!Families with own children under 18 years!!Families!!EMPLOYMENT STATUS CHARACTERISTICS!!Other families!!Male householder, no spouse present!!In labor force", "concept": "Employment Characteristics of Families", "predicateType": "int", "group": "S2302", "limit": 0, "attributes": "S2302_C03_012EA,S2302_C03_012M,S2302_C03_012MA"}, "S0103PR_C02_038E": {"label": "Estimate!!65 years and over!!RESPONSIBILITY FOR GRANDCHILDREN UNDER 18 YEARS!!Population 30 years and over", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_038EA,S0103PR_C02_038M,S0103PR_C02_038MA"}, "S2302_C03_011E": {"label": "Estimate!!Families with own children under 18 years!!Families!!EMPLOYMENT STATUS CHARACTERISTICS!!Other families!!Male householder, no spouse present", "concept": "Employment Characteristics of Families", "predicateType": "int", "group": "S2302", "limit": 0, "attributes": "S2302_C03_011EA,S2302_C03_011M,S2302_C03_011MA"}, "S1901_C01_016E": {"label": "Estimate!!Households!!PERCENT ALLOCATED!!Nonfamily income in the past 12 months", "concept": "Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1901", "limit": 0, "attributes": "S1901_C01_016EA,S1901_C01_016M,S1901_C01_016MA"}, "S0103PR_C02_037E": {"label": "Estimate!!65 years and over!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree or higher", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_037EA,S0103PR_C02_037M,S0103PR_C02_037MA"}, "S1901_C01_015E": {"label": "Estimate!!Households!!PERCENT ALLOCATED!!Family income in the past 12 months", "concept": "Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1901", "limit": 0, "attributes": "S1901_C01_015EA,S1901_C01_015M,S1901_C01_015MA"}, "S0103PR_C02_036E": {"label": "Estimate!!65 years and over!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college or associate's degree", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_036EA,S0103PR_C02_036M,S0103PR_C02_036MA"}, "S2302_C03_010E": {"label": "Estimate!!Families with own children under 18 years!!Families!!EMPLOYMENT STATUS CHARACTERISTICS!!Other families!!Female householder, no spouse present!!Not in labor force", "concept": "Employment Characteristics of Families", "predicateType": "int", "group": "S2302", "limit": 0, "attributes": "S2302_C03_010EA,S2302_C03_010M,S2302_C03_010MA"}, "S0103PR_C02_035E": {"label": "Estimate!!65 years and over!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate, GED, or alternative", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_035EA,S0103PR_C02_035M,S0103PR_C02_035MA"}, "S1901_C01_014E": {"label": "Estimate!!Households!!PERCENT ALLOCATED!!Household income in the past 12 months", "concept": "Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1901", "limit": 0, "attributes": "S1901_C01_014EA,S1901_C01_014M,S1901_C01_014MA"}, "S0103PR_C02_034E": {"label": "Estimate!!65 years and over!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than high school graduate", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_034EA,S0103PR_C02_034M,S0103PR_C02_034MA"}, "S2303_C06_011E": {"label": "Estimate!!Percent Female!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 35 or more hours per week!!48 to 49 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C06_011EA,S2303_C06_011M,S2303_C06_011MA"}, "S2411_C02_034E": {"label": "Estimate!!Median earnings (dollars) for male!!Civilian employed population 16 years and over with earnings!!Production, transportation, and material moving occupations:!!Production occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C02_034EA,S2411_C02_034M,S2411_C02_034MA"}, "S0701_C01_020E": {"label": "Estimate!!Total!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "int", "group": "S0701", "limit": 0, "attributes": "S0701_C01_020EA,S0701_C01_020M,S0701_C01_020MA"}, "S0103PR_C02_033E": {"label": "Estimate!!65 years and over!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_033EA,S0103PR_C02_033M,S0103PR_C02_033MA"}, "S2303_C06_012E": {"label": "Estimate!!Percent Female!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 35 or more hours per week!!40 to 47 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C06_012EA,S2303_C06_012M,S2303_C06_012MA"}, "S0701_C01_021E": {"label": "Estimate!!Total!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "int", "group": "S0701", "limit": 0, "attributes": "S0701_C01_021EA,S0701_C01_021M,S0701_C01_021MA"}, "S2411_C02_035E": {"label": "Estimate!!Median earnings (dollars) for male!!Civilian employed population 16 years and over with earnings!!Production, transportation, and material moving occupations:!!Transportation occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C02_035EA,S2411_C02_035M,S2411_C02_035MA"}, "S2402_C01_011E": {"label": "Estimate!!Total!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:!!Community and social service occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C01_011EA,S2402_C01_011M,S2402_C01_011MA"}, "S0103PR_C02_032E": {"label": "Estimate!!65 years and over!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_032EA,S0103PR_C02_032M,S0103PR_C02_032MA"}, "S0701_C01_022E": {"label": "Estimate!!Total!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "int", "group": "S0701", "limit": 0, "attributes": "S0701_C01_022EA,S0701_C01_022M,S0701_C01_022MA"}, "S2411_C02_036E": {"label": "Estimate!!Median earnings (dollars) for male!!Civilian employed population 16 years and over with earnings!!Production, transportation, and material moving occupations:!!Material moving occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C02_036EA,S2411_C02_036M,S2411_C02_036MA"}, "S2402_C01_010E": {"label": "Estimate!!Total!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C01_010EA,S2402_C01_010M,S2402_C01_010MA"}, "S2303_C06_010E": {"label": "Estimate!!Percent Female!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 35 or more hours per week!!50 to 52 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C06_010EA,S2303_C06_010M,S2303_C06_010MA"}, "S0103PR_C02_031E": {"label": "Estimate!!65 years and over!!MARITAL STATUS!!Population 15 years and over!!Separated", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_031EA,S0103PR_C02_031M,S0103PR_C02_031MA"}, "S0701_C01_023E": {"label": "Estimate!!Total!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "int", "group": "S0701", "limit": 0, "attributes": "S0701_C01_023EA,S0701_C01_023M,S0701_C01_023MA"}, "S0103PR_C02_030E": {"label": "Estimate!!65 years and over!!MARITAL STATUS!!Population 15 years and over!!Divorced", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_030EA,S0103PR_C02_030M,S0103PR_C02_030MA"}, "S2402_C01_013E": {"label": "Estimate!!Total!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:!!Educational instruction, and library occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C01_013EA,S2402_C01_013M,S2402_C01_013MA"}, "S2411_C02_030E": {"label": "Estimate!!Median earnings (dollars) for male!!Civilian employed population 16 years and over with earnings!!Natural resources, construction, and maintenance occupations:!!Farming, fishing, and forestry occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C02_030EA,S2411_C02_030M,S2411_C02_030MA"}, "S0701_C01_024E": {"label": "Estimate!!Total!!Population 1 year and over!!NATIVITY AND CITIZENSHIP STATUS!!Native", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "int", "group": "S0701", "limit": 0, "attributes": "S0701_C01_024EA,S0701_C01_024M,S0701_C01_024MA"}, "S2303_C06_015E": {"label": "Estimate!!Percent Female!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 35 or more hours per week!!1 to 13 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C06_015EA,S2303_C06_015M,S2303_C06_015MA"}, "S2402_C01_012E": {"label": "Estimate!!Total!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:!!Legal occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C01_012EA,S2402_C01_012M,S2402_C01_012MA"}, "S2303_C06_016E": {"label": "Estimate!!Percent Female!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 15 to 34 hours per week", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C06_016EA,S2303_C06_016M,S2303_C06_016MA"}, "S0701_C01_025E": {"label": "Estimate!!Total!!Population 1 year and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "int", "group": "S0701", "limit": 0, "attributes": "S0701_C01_025EA,S0701_C01_025M,S0701_C01_025MA"}, "S2411_C02_031E": {"label": "Estimate!!Median earnings (dollars) for male!!Civilian employed population 16 years and over with earnings!!Natural resources, construction, and maintenance occupations:!!Construction and extraction occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C02_031EA,S2411_C02_031M,S2411_C02_031MA"}, "S2302_C03_019E": {"label": "Estimate!!Families with own children under 18 years!!WORK STATUS CHARACTERISTICS!!Married-couple families!!Householder worked full-time, year-round in the past 12 months:", "concept": "Employment Characteristics of Families", "predicateType": "int", "group": "S2302", "limit": 0, "attributes": "S2302_C03_019EA,S2302_C03_019M,S2302_C03_019MA"}, "S2302_C03_018E": {"label": "Estimate!!Families with own children under 18 years!!WORK STATUS CHARACTERISTICS!!Married-couple families", "concept": "Employment Characteristics of Families", "predicateType": "int", "group": "S2302", "limit": 0, "attributes": "S2302_C03_018EA,S2302_C03_018M,S2302_C03_018MA"}, "S2402_C01_015E": {"label": "Estimate!!Total!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Healthcare practitioners and technical occupations:", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C01_015EA,S2402_C01_015M,S2402_C01_015MA"}, "S2303_C06_013E": {"label": "Estimate!!Percent Female!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 35 or more hours per week!!27 to 39 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C06_013EA,S2303_C06_013M,S2303_C06_013MA"}, "S0701_C01_026E": {"label": "Estimate!!Total!!Population 1 year and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born!!Naturalized U.S. citizen", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "int", "group": "S0701", "limit": 0, "attributes": "S0701_C01_026EA,S0701_C01_026M,S0701_C01_026MA"}, "S2411_C02_032E": {"label": "Estimate!!Median earnings (dollars) for male!!Civilian employed population 16 years and over with earnings!!Natural resources, construction, and maintenance occupations:!!Installation, maintenance, and repair occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C02_032EA,S2411_C02_032M,S2411_C02_032MA"}, "S2302_C03_017E": {"label": "Estimate!!Families with own children under 18 years!!WORK STATUS CHARACTERISTICS!!Families!!2 or more workers in the past 12 months", "concept": "Employment Characteristics of Families", "predicateType": "int", "group": "S2302", "limit": 0, "attributes": "S2302_C03_017EA,S2302_C03_017M,S2302_C03_017MA"}, "S2402_C01_014E": {"label": "Estimate!!Total!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:!!Arts, design, entertainment, sports, and media occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C01_014EA,S2402_C01_014M,S2402_C01_014MA"}, "S2303_C06_014E": {"label": "Estimate!!Percent Female!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 35 or more hours per week!!14 to 26 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C06_014EA,S2303_C06_014M,S2303_C06_014MA"}, "S0701_C01_027E": {"label": "Estimate!!Total!!Population 1 year and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born!!Not a U.S. citizen", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "int", "group": "S0701", "limit": 0, "attributes": "S0701_C01_027EA,S0701_C01_027M,S0701_C01_027MA"}, "S2411_C02_033E": {"label": "Estimate!!Median earnings (dollars) for male!!Civilian employed population 16 years and over with earnings!!Production, transportation, and material moving occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C02_033EA,S2411_C02_033M,S2411_C02_033MA"}, "S0503_C04_055E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English!!Speak English less than \"very well\"", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_055EA,S0503_C04_055M,S0503_C04_055MA"}, "S2303_C06_019E": {"label": "Estimate!!Percent Female!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 15 to 34 hours per week!!40 to 47 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C06_019EA,S2303_C06_019M,S2303_C06_019MA"}, "S0503_C04_056E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!EMPLOYMENT STATUS!!Population 16 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C04_056EA,S0503_C04_056M,S0503_C04_056MA"}, "S0503_C04_053E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!English only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_053EA,S0503_C04_053M,S0503_C04_053MA"}, "S2303_C06_017E": {"label": "Estimate!!Percent Female!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 15 to 34 hours per week!!50 to 52 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C06_017EA,S2303_C06_017M,S2303_C06_017MA"}, "S0503_C04_054E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_054EA,S0503_C04_054M,S0503_C04_054MA"}, "S2303_C06_018E": {"label": "Estimate!!Percent Female!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 15 to 34 hours per week!!48 to 49 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C06_018EA,S2303_C06_018M,S2303_C06_018MA"}, "S0503_C04_059E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Employed", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_059EA,S0503_C04_059M,S0503_C04_059MA"}, "S0701_C01_030E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "int", "group": "S0701", "limit": 0, "attributes": "S0701_C01_030EA,S0701_C01_030M,S0701_C01_030MA"}, "S0503_C04_057E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_057EA,S0503_C04_057M,S0503_C04_057MA"}, "S0701_C01_031E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over!!Divorced or separated", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "int", "group": "S0701", "limit": 0, "attributes": "S0701_C01_031EA,S0701_C01_031M,S0701_C01_031MA"}, "S0503_C04_058E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_058EA,S0503_C04_058M,S0503_C04_058MA"}, "S1901_C01_013E": {"label": "Estimate!!Households!!Mean income (dollars)", "concept": "Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1901", "limit": 0, "attributes": "S1901_C01_013EA,S1901_C01_013M,S1901_C01_013MA"}, "S0506_C04_091E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$25,000 to $34,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_091EA,S0506_C04_091M,S0506_C04_091MA"}, "S1901_C01_012E": {"label": "Estimate!!Households!!Median income (dollars)", "concept": "Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1901", "limit": 0, "attributes": "S1901_C01_012EA,S1901_C01_012M,S1901_C01_012MA"}, "S0506_C04_090E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$15,000 to $24,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_090EA,S0506_C04_090M,S0506_C04_090MA"}, "S0505_C03_091E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$25,000 to $34,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_091EA,S0505_C03_091M,S0505_C03_091MA"}, "S0506_C04_093E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$50,000 to $74,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_093EA,S0506_C04_093M,S0506_C04_093MA"}, "S1901_C01_011E": {"label": "Estimate!!Households!!Total!!$200,000 or more", "concept": "Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1901", "limit": 0, "attributes": "S1901_C01_011EA,S1901_C01_011M,S1901_C01_011MA"}, "S0505_C03_090E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$15,000 to $24,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_090EA,S0505_C03_090M,S0505_C03_090MA"}, "S0506_C04_092E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$35,000 to $49,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_092EA,S0506_C04_092M,S0506_C04_092MA"}, "S1901_C01_010E": {"label": "Estimate!!Households!!Total!!$150,000 to $199,999", "concept": "Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1901", "limit": 0, "attributes": "S1901_C01_010EA,S1901_C01_010M,S1901_C01_010MA"}, "S0503_C04_051E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Graduate or professional degree", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_051EA,S0503_C04_051M,S0503_C04_051MA"}, "S0505_C03_093E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$50,000 to $74,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_093EA,S0505_C03_093M,S0505_C03_093MA"}, "S0506_C04_095E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!Median earnings (dollars) for full-time, year-round workers!!Male", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C04_095EA,S0506_C04_095M,S0506_C04_095MA"}, "S0503_C04_052E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C04_052EA,S0503_C04_052M,S0503_C04_052MA"}, "S0505_C03_092E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$35,000 to $49,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_092EA,S0505_C03_092M,S0505_C03_092MA"}, "S0506_C04_094E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$75,000 or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_094EA,S0506_C04_094M,S0506_C04_094MA"}, "S0505_C03_095E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!Median earnings (dollars) for full-time, year-round workers!!Male", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C03_095EA,S0505_C03_095M,S0505_C03_095MA"}, "S0506_C04_097E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C04_097EA,S0506_C04_097M,S0506_C04_097MA"}, "S0503_C04_050E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_050EA,S0503_C04_050M,S0503_C04_050MA"}, "S0505_C03_094E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$75,000 or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_094EA,S0505_C03_094M,S0505_C03_094MA"}, "S0506_C04_096E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!Median earnings (dollars) for full-time, year-round workers!!Female", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C04_096EA,S0506_C04_096M,S0506_C04_096MA"}, "S1901_C01_009E": {"label": "Estimate!!Households!!Total!!$100,000 to $149,999", "concept": "Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1901", "limit": 0, "attributes": "S1901_C01_009EA,S1901_C01_009M,S1901_C01_009MA"}, "S2302_C03_004E": {"label": "Estimate!!Families with own children under 18 years!!Families!!EMPLOYMENT STATUS CHARACTERISTICS!!Opposite-sex married-couple families!!Husband in labor force, wife not in labor force", "concept": "Employment Characteristics of Families", "predicateType": "int", "group": "S2302", "limit": 0, "attributes": "S2302_C03_004EA,S2302_C03_004M,S2302_C03_004MA"}, "S2402_C01_029E": {"label": "Estimate!!Total!!Full-time, year-round civilian employed population 16 years and over!!Natural resources, construction, and maintenance occupations:", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C01_029EA,S2402_C01_029M,S2402_C01_029MA"}, "S0506_C04_075E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Civilian employed population 16 years and over!!INDUSTRY!!Construction", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_075EA,S0506_C04_075M,S0506_C04_075MA"}, "S0505_C03_085E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Civilian employed population 16 years and over!!INDUSTRY!!Other services (except public administration)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_085EA,S0505_C03_085M,S0505_C03_085MA"}, "S2302_C03_003E": {"label": "Estimate!!Families with own children under 18 years!!Families!!EMPLOYMENT STATUS CHARACTERISTICS!!Opposite-sex married-couple families!!Both husband and wife in labor force", "concept": "Employment Characteristics of Families", "predicateType": "int", "group": "S2302", "limit": 0, "attributes": "S2302_C03_003EA,S2302_C03_003M,S2302_C03_003MA"}, "S1901_C01_008E": {"label": "Estimate!!Households!!Total!!$75,000 to $99,999", "concept": "Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1901", "limit": 0, "attributes": "S1901_C01_008EA,S1901_C01_008M,S1901_C01_008MA"}, "S2402_C01_028E": {"label": "Estimate!!Total!!Full-time, year-round civilian employed population 16 years and over!!Sales and office occupations:!!Office and administrative support occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C01_028EA,S2402_C01_028M,S2402_C01_028MA"}, "S0505_C03_084E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Civilian employed population 16 years and over!!INDUSTRY!!Arts, entertainment, and recreation, and accommodation and food services", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_084EA,S0505_C03_084M,S0505_C03_084MA"}, "S0506_C04_074E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Civilian employed population 16 years and over!!INDUSTRY!!Agriculture, forestry, fishing and hunting, and mining", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_074EA,S0506_C04_074M,S0506_C04_074MA"}, "S2302_C03_002E": {"label": "Estimate!!Families with own children under 18 years!!Families!!EMPLOYMENT STATUS CHARACTERISTICS!!Opposite-sex married-couple families", "concept": "Employment Characteristics of Families", "predicateType": "int", "group": "S2302", "limit": 0, "attributes": "S2302_C03_002EA,S2302_C03_002M,S2302_C03_002MA"}, "S0506_C04_077E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Civilian employed population 16 years and over!!INDUSTRY!!Wholesale trade", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_077EA,S0506_C04_077M,S0506_C04_077MA"}, "S1901_C01_007E": {"label": "Estimate!!Households!!Total!!$50,000 to $74,999", "concept": "Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1901", "limit": 0, "attributes": "S1901_C01_007EA,S1901_C01_007M,S1901_C01_007MA"}, "S0505_C03_087E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C03_087EA,S0505_C03_087M,S0505_C03_087MA"}, "S2302_C03_001E": {"label": "Estimate!!Families with own children under 18 years!!Families", "concept": "Employment Characteristics of Families", "predicateType": "int", "group": "S2302", "limit": 0, "attributes": "S2302_C03_001EA,S2302_C03_001M,S2302_C03_001MA"}, "S0506_C04_076E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Civilian employed population 16 years and over!!INDUSTRY!!Manufacturing", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_076EA,S0506_C04_076M,S0506_C04_076MA"}, "S1901_C01_006E": {"label": "Estimate!!Households!!Total!!$35,000 to $49,999", "concept": "Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1901", "limit": 0, "attributes": "S1901_C01_006EA,S1901_C01_006M,S1901_C01_006MA"}, "S0505_C03_086E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Civilian employed population 16 years and over!!INDUSTRY!!Public administration", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_086EA,S0505_C03_086M,S0505_C03_086MA"}, "S0506_C04_079E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Civilian employed population 16 years and over!!INDUSTRY!!Transportation and warehousing, and utilities", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_079EA,S0506_C04_079M,S0506_C04_079MA"}, "S0505_C03_089E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$10,000 to $14,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_089EA,S0505_C03_089M,S0505_C03_089MA"}, "S1901_C01_005E": {"label": "Estimate!!Households!!Total!!$25,000 to $34,999", "concept": "Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1901", "limit": 0, "attributes": "S1901_C01_005EA,S1901_C01_005M,S1901_C01_005MA"}, "S2411_C02_026E": {"label": "Estimate!!Median earnings (dollars) for male!!Civilian employed population 16 years and over with earnings!!Sales and office occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C02_026EA,S2411_C02_026M,S2411_C02_026MA"}, "S0506_C04_078E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Civilian employed population 16 years and over!!INDUSTRY!!Retail trade", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_078EA,S0506_C04_078M,S0506_C04_078MA"}, "S1901_C01_004E": {"label": "Estimate!!Households!!Total!!$15,000 to $24,999", "concept": "Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1901", "limit": 0, "attributes": "S1901_C01_004EA,S1901_C01_004M,S1901_C01_004MA"}, "S0103PR_C02_049E": {"label": "Estimate!!65 years and over!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different house in Puerto Rico or the United States!!In Puerto Rico", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_049EA,S0103PR_C02_049M,S0103PR_C02_049MA"}, "S2303_C06_020E": {"label": "Estimate!!Percent Female!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 15 to 34 hours per week!!27 to 39 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C06_020EA,S2303_C06_020M,S2303_C06_020MA"}, "S2411_C02_027E": {"label": "Estimate!!Median earnings (dollars) for male!!Civilian employed population 16 years and over with earnings!!Sales and office occupations:!!Sales and related occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C02_027EA,S2411_C02_027M,S2411_C02_027MA"}, "S2603_C04_100E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!Per capita income (dollars)", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C04_100EA,S2603_C04_100M,S2603_C04_100MA"}, "S0505_C03_088E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$1 to $9,999 or loss", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_088EA,S0505_C03_088M,S0505_C03_088MA"}, "S0103PR_C02_048E": {"label": "Estimate!!65 years and over!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different house in Puerto Rico or the United States", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_048EA,S0103PR_C02_048M,S0103PR_C02_048MA"}, "S2603_C04_101E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!With earnings:!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C04_101EA,S2603_C04_101M,S2603_C04_101MA"}, "S1901_C01_003E": {"label": "Estimate!!Households!!Total!!$10,000 to $14,999", "concept": "Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1901", "limit": 0, "attributes": "S1901_C01_003EA,S1901_C01_003M,S1901_C01_003MA"}, "S2411_C02_028E": {"label": "Estimate!!Median earnings (dollars) for male!!Civilian employed population 16 years and over with earnings!!Sales and office occupations:!!Office and administrative support occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C02_028EA,S2411_C02_028M,S2411_C02_028MA"}, "S2603_C04_102E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!With earnings:!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C04_102EA,S2603_C04_102M,S2603_C04_102MA"}, "S0103PR_C02_047E": {"label": "Estimate!!65 years and over!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Same house", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_047EA,S0103PR_C02_047M,S0103PR_C02_047MA"}, "S1901_C01_002E": {"label": "Estimate!!Households!!Total!!Less than $10,000", "concept": "Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1901", "limit": 0, "attributes": "S1901_C01_002EA,S1901_C01_002M,S1901_C01_002MA"}, "S2411_C02_029E": {"label": "Estimate!!Median earnings (dollars) for male!!Civilian employed population 16 years and over with earnings!!Natural resources, construction, and maintenance occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C02_029EA,S2411_C02_029M,S2411_C02_029MA"}, "S2402_C01_021E": {"label": "Estimate!!Total!!Full-time, year-round civilian employed population 16 years and over!!Service occupations:!!Protective service occupations:!!Firefighting and prevention, and other protective service workers including supervisors", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C01_021EA,S2402_C01_021M,S2402_C01_021MA"}, "S2603_C04_103E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!Mean earnings (dollars):!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C04_103EA,S2603_C04_103M,S2603_C04_103MA"}, "S0103PR_C02_046E": {"label": "Estimate!!65 years and over!!RESIDENCE 1 YEAR AGO!!Population 1 year and over", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_046EA,S0103PR_C02_046M,S0103PR_C02_046MA"}, "S2303_C06_023E": {"label": "Estimate!!Percent Female!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 1 to 14 hours per week", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C06_023EA,S2303_C06_023M,S2303_C06_023MA"}, "S2411_C02_022E": {"label": "Estimate!!Median earnings (dollars) for male!!Civilian employed population 16 years and over with earnings!!Service occupations:!!Protective service occupations:!!Law enforcement workers including supervisors", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C02_022EA,S2411_C02_022M,S2411_C02_022MA"}, "S0701_C01_032E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "int", "group": "S0701", "limit": 0, "attributes": "S0701_C01_032EA,S0701_C01_032M,S0701_C01_032MA"}, "S2603_C04_104E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!Mean earnings (dollars):!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C04_104EA,S2603_C04_104M,S2603_C04_104MA"}, "S2402_C01_020E": {"label": "Estimate!!Total!!Full-time, year-round civilian employed population 16 years and over!!Service occupations:!!Protective service occupations:", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C01_020EA,S2402_C01_020M,S2402_C01_020MA"}, "S0103PR_C02_045E": {"label": "Estimate!!65 years and over!!DISABILITY STATUS!!Civilian noninstitutionalized population!!No disability", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_045EA,S0103PR_C02_045M,S0103PR_C02_045MA"}, "S2303_C06_024E": {"label": "Estimate!!Percent Female!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 1 to 14 hours per week!!50 to 52 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C06_024EA,S2303_C06_024M,S2303_C06_024MA"}, "S2411_C02_023E": {"label": "Estimate!!Median earnings (dollars) for male!!Civilian employed population 16 years and over with earnings!!Service occupations:!!Food preparation and serving related occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C02_023EA,S2411_C02_023M,S2411_C02_023MA"}, "S0701_C01_033E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "int", "group": "S0701", "limit": 0, "attributes": "S0701_C01_033EA,S0701_C01_033M,S0701_C01_033MA"}, "S2603_C04_105E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!Median earnings (dollars):!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C04_105EA,S2603_C04_105M,S2603_C04_105MA"}, "S2303_C06_021E": {"label": "Estimate!!Percent Female!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 15 to 34 hours per week!!14 to 26 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C06_021EA,S2303_C06_021M,S2303_C06_021MA"}, "S2402_C01_023E": {"label": "Estimate!!Total!!Full-time, year-round civilian employed population 16 years and over!!Service occupations:!!Food preparation and serving related occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C01_023EA,S2402_C01_023M,S2402_C01_023MA"}, "S0103PR_C02_044E": {"label": "Estimate!!65 years and over!!DISABILITY STATUS!!Civilian noninstitutionalized population!!With any disability", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_044EA,S0103PR_C02_044M,S0103PR_C02_044MA"}, "S0701_C01_034E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than high school graduate", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "int", "group": "S0701", "limit": 0, "attributes": "S0701_C01_034EA,S0701_C01_034M,S0701_C01_034MA"}, "S2411_C02_024E": {"label": "Estimate!!Median earnings (dollars) for male!!Civilian employed population 16 years and over with earnings!!Service occupations:!!Building and grounds cleaning and maintenance occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C02_024EA,S2411_C02_024M,S2411_C02_024MA"}, "S0503_C04_049E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college or associate's degree", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_049EA,S0503_C04_049M,S0503_C04_049MA"}, "S2603_C04_106E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!Median earnings (dollars):!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C04_106EA,S2603_C04_106M,S2603_C04_106MA"}, "S2402_C01_022E": {"label": "Estimate!!Total!!Full-time, year-round civilian employed population 16 years and over!!Service occupations:!!Protective service occupations:!!Law enforcement workers including supervisors", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C01_022EA,S2402_C01_022M,S2402_C01_022MA"}, "S0103PR_C02_043E": {"label": "Estimate!!65 years and over!!DISABILITY STATUS!!Civilian noninstitutionalized population", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_043EA,S0103PR_C02_043M,S0103PR_C02_043MA"}, "S2303_C06_022E": {"label": "Estimate!!Percent Female!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 15 to 34 hours per week!!1 to 13 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C06_022EA,S2303_C06_022M,S2303_C06_022MA"}, "S0701_C01_035E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate (includes equivalency)", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "int", "group": "S0701", "limit": 0, "attributes": "S0701_C01_035EA,S0701_C01_035M,S0701_C01_035MA"}, "S2411_C02_025E": {"label": "Estimate!!Median earnings (dollars) for male!!Civilian employed population 16 years and over with earnings!!Service occupations:!!Personal care and service occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C02_025EA,S2411_C02_025M,S2411_C02_025MA"}, "S2302_C03_009E": {"label": "Estimate!!Families with own children under 18 years!!Families!!EMPLOYMENT STATUS CHARACTERISTICS!!Other families!!Female householder, no spouse present!!In labor force", "concept": "Employment Characteristics of Families", "predicateType": "int", "group": "S2302", "limit": 0, "attributes": "S2302_C03_009EA,S2302_C03_009M,S2302_C03_009MA"}, "S2603_C04_107E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!With Food Stamp/SNAP benefits", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C04_107EA,S2603_C04_107M,S2603_C04_107MA"}, "S2402_C01_025E": {"label": "Estimate!!Total!!Full-time, year-round civilian employed population 16 years and over!!Service occupations:!!Personal care and service occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C01_025EA,S2402_C01_025M,S2402_C01_025MA"}, "S0103PR_C02_042E": {"label": "Estimate!!65 years and over!!VETERAN STATUS!!Civilian population 18 years and over!!Civilian veteran", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_042EA,S0103PR_C02_042M,S0103PR_C02_042MA"}, "S2303_C06_027E": {"label": "Estimate!!Percent Female!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 1 to 14 hours per week!!27 to 39 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C06_027EA,S2303_C06_027M,S2303_C06_027MA"}, "S0701_C01_036E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college or associate's degree", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "int", "group": "S0701", "limit": 0, "attributes": "S0701_C01_036EA,S0701_C01_036M,S0701_C01_036MA"}, "S2302_C03_008E": {"label": "Estimate!!Families with own children under 18 years!!Families!!EMPLOYMENT STATUS CHARACTERISTICS!!Other families!!Female householder, no spouse present", "concept": "Employment Characteristics of Families", "predicateType": "int", "group": "S2302", "limit": 0, "attributes": "S2302_C03_008EA,S2302_C03_008M,S2302_C03_008MA"}, "S0103PR_C02_041E": {"label": "Estimate!!65 years and over!!VETERAN STATUS!!Civilian population 18 years and over", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_041EA,S0103PR_C02_041M,S0103PR_C02_041MA"}, "S2302_C03_007E": {"label": "Estimate!!Families with own children under 18 years!!Families!!EMPLOYMENT STATUS CHARACTERISTICS!!Other families", "concept": "Employment Characteristics of Families", "predicateType": "int", "group": "S2302", "limit": 0, "attributes": "S2302_C03_007EA,S2302_C03_007M,S2302_C03_007MA"}, "S2402_C01_024E": {"label": "Estimate!!Total!!Full-time, year-round civilian employed population 16 years and over!!Service occupations:!!Building and grounds cleaning and maintenance occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C01_024EA,S2402_C01_024M,S2402_C01_024MA"}, "S2303_C06_028E": {"label": "Estimate!!Percent Female!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 1 to 14 hours per week!!14 to 26 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C06_028EA,S2303_C06_028M,S2303_C06_028MA"}, "S0701_C01_037E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "int", "group": "S0701", "limit": 0, "attributes": "S0701_C01_037EA,S0701_C01_037M,S0701_C01_037MA"}, "S0103PR_C02_040E": {"label": "Estimate!!65 years and over!!RESPONSIBILITY FOR GRANDCHILDREN UNDER 18 YEARS!!Population 30 years and over!!Living with grandchild(ren)!!Responsible for grandchild(ren)", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_040EA,S0103PR_C02_040M,S0103PR_C02_040MA"}, "S2302_C03_006E": {"label": "Estimate!!Families with own children under 18 years!!Families!!EMPLOYMENT STATUS CHARACTERISTICS!!Opposite-sex married-couple families!!Both husband and wife not in labor force", "concept": "Employment Characteristics of Families", "predicateType": "int", "group": "S2302", "limit": 0, "attributes": "S2302_C03_006EA,S2302_C03_006M,S2302_C03_006MA"}, "S2303_C06_025E": {"label": "Estimate!!Percent Female!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 1 to 14 hours per week!!48 to 49 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C06_025EA,S2303_C06_025M,S2303_C06_025MA"}, "S0701_C01_038E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Graduate or professional degree", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "int", "group": "S0701", "limit": 0, "attributes": "S0701_C01_038EA,S0701_C01_038M,S0701_C01_038MA"}, "S2402_C01_027E": {"label": "Estimate!!Total!!Full-time, year-round civilian employed population 16 years and over!!Sales and office occupations:!!Sales and related occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C01_027EA,S2402_C01_027M,S2402_C01_027MA"}, "S2411_C02_020E": {"label": "Estimate!!Median earnings (dollars) for male!!Civilian employed population 16 years and over with earnings!!Service occupations:!!Protective service occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C02_020EA,S2411_C02_020M,S2411_C02_020MA"}, "S2302_C03_005E": {"label": "Estimate!!Families with own children under 18 years!!Families!!EMPLOYMENT STATUS CHARACTERISTICS!!Opposite-sex married-couple families!!Wife in labor force, husband not in labor force", "concept": "Employment Characteristics of Families", "predicateType": "int", "group": "S2302", "limit": 0, "attributes": "S2302_C03_005EA,S2302_C03_005M,S2302_C03_005MA"}, "S2402_C01_026E": {"label": "Estimate!!Total!!Full-time, year-round civilian employed population 16 years and over!!Sales and office occupations:", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C01_026EA,S2402_C01_026M,S2402_C01_026MA"}, "S0701_C01_039E": {"label": "Estimate!!Total!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "int", "group": "S0701", "limit": 0, "attributes": "S0701_C01_039EA,S0701_C01_039M,S0701_C01_039MA"}, "S2303_C06_026E": {"label": "Estimate!!Percent Female!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 1 to 14 hours per week!!40 to 47 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C06_026EA,S2303_C06_026M,S2303_C06_026MA"}, "S2411_C02_021E": {"label": "Estimate!!Median earnings (dollars) for male!!Civilian employed population 16 years and over with earnings!!Service occupations:!!Protective service occupations:!!Firefighting and prevention, and other protective service workers including supervisors", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C02_021EA,S2411_C02_021M,S2411_C02_021MA"}, "S0103PR_C02_050E": {"label": "Estimate!!65 years and over!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different house in Puerto Rico or the United States!!In Puerto Rico!!Same municipio", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_050EA,S0103PR_C02_050M,S0103PR_C02_050MA"}, "S0503_C04_043E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Elementary school (grades K-8)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_043EA,S0503_C04_043M,S0503_C04_043MA"}, "S0503_C04_044E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!High school (grades 9-12)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_044EA,S0503_C04_044M,S0503_C04_044MA"}, "S0503_C04_041E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C04_041EA,S0503_C04_041M,S0503_C04_041MA"}, "S2303_C06_029E": {"label": "Estimate!!Percent Female!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 1 to 14 hours per week!!1 to 13 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C06_029EA,S2303_C06_029M,S2303_C06_029MA"}, "S0503_C04_042E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Nursery school, preschool", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_042EA,S0503_C04_042M,S0503_C04_042MA"}, "S0701_C01_040E": {"label": "Estimate!!Total!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$1 to $9,999 or loss", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "int", "group": "S0701", "limit": 0, "attributes": "S0701_C01_040EA,S0701_C01_040M,S0701_C01_040MA"}, "S0503_C04_047E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than high school graduate", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_047EA,S0503_C04_047M,S0503_C04_047MA"}, "S0701_C01_041E": {"label": "Estimate!!Total!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$10,000 to $14,999", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "int", "group": "S0701", "limit": 0, "attributes": "S0701_C01_041EA,S0701_C01_041M,S0701_C01_041MA"}, "S0503_C04_048E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate (includes equivalency)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_048EA,S0503_C04_048M,S0503_C04_048MA"}, "S0503_C04_045E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!College or graduate school", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_045EA,S0503_C04_045M,S0503_C04_045MA"}, "S0701_C01_042E": {"label": "Estimate!!Total!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$15,000 to $24,999", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "int", "group": "S0701", "limit": 0, "attributes": "S0701_C01_042EA,S0701_C01_042M,S0701_C01_042MA"}, "S0701_C01_043E": {"label": "Estimate!!Total!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$25,000 to $34,999", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "int", "group": "S0701", "limit": 0, "attributes": "S0701_C01_043EA,S0701_C01_043M,S0701_C01_043MA"}, "S0503_C04_046E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C04_046EA,S0503_C04_046M,S0503_C04_046MA"}, "S1901_C01_001E": {"label": "Estimate!!Households!!Total", "concept": "Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1901", "limit": 0, "attributes": "S1901_C01_001EA,S1901_C01_001M,S1901_C01_001MA"}, "S0506_C04_081E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Civilian employed population 16 years and over!!INDUSTRY!!Finance and insurance, and real estate and rental and leasing", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_081EA,S0506_C04_081M,S0506_C04_081MA"}, "S0506_C04_080E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Civilian employed population 16 years and over!!INDUSTRY!!Information", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_080EA,S0506_C04_080M,S0506_C04_080MA"}, "S0505_C03_081E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Civilian employed population 16 years and over!!INDUSTRY!!Finance and insurance, and real estate and rental and leasing", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_081EA,S0505_C03_081M,S0505_C03_081MA"}, "S0506_C04_083E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Civilian employed population 16 years and over!!INDUSTRY!!Educational services, and health care and social assistance", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_083EA,S0506_C04_083M,S0506_C04_083MA"}, "S0503_C04_040E": {"label": "Estimate!!Foreign-born; Born in Southern and Eastern Europe!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C04_040EA,S0503_C04_040M,S0503_C04_040MA"}, "S0505_C03_080E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Civilian employed population 16 years and over!!INDUSTRY!!Information", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_080EA,S0505_C03_080M,S0505_C03_080MA"}, "S0506_C04_082E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Civilian employed population 16 years and over!!INDUSTRY!!Professional, scientific, and management, and administrative and waste management services", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_082EA,S0506_C04_082M,S0506_C04_082MA"}, "S0505_C03_083E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Civilian employed population 16 years and over!!INDUSTRY!!Educational services, and health care and social assistance", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_083EA,S0505_C03_083M,S0505_C03_083MA"}, "S0506_C04_085E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Civilian employed population 16 years and over!!INDUSTRY!!Other services (except public administration)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_085EA,S0506_C04_085M,S0506_C04_085MA"}, "S0505_C03_082E": {"label": "Estimate!!Foreign-born; Born in Eastern Asia!!Civilian employed population 16 years and over!!INDUSTRY!!Professional, scientific, and management, and administrative and waste management services", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C03_082EA,S0505_C03_082M,S0505_C03_082MA"}, "S0506_C04_084E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Civilian employed population 16 years and over!!INDUSTRY!!Arts, entertainment, and recreation, and accommodation and food services", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_084EA,S0506_C04_084M,S0506_C04_084MA"}, "S2301_C02_002E": {"label": "Estimate!!Labor Force Participation Rate!!Population 16 years and over!!AGE!!16 to 19 years", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C02_002EA,S2301_C02_002M,S2301_C02_002MA"}, "S2702PR_C02_053E": {"label": "Estimate!!Total Uninsured!!WORK EXPERIENCE!!Civilian noninstitutionalized population 16 to 64 years!!Worked less than full-time, year round in the past 12 months", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_053EA,S2702PR_C02_053M,S2702PR_C02_053MA"}, "S0505_C05_127E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Occupied housing units!!HOUSING TENURE!!Average household size of owner-occupied unit", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_127EA,S0505_C05_127M,S0505_C05_127MA"}, "S0502_C01_040E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over!!Divorced or separated", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_040EA,S0502_C01_040M,S0502_C01_040MA"}, "S2503_C02_030E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$20,000 to $34,999!!Less than 20 percent", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C02_030EA,S2503_C02_030M,S2503_C02_030MA"}, "S0103PR_C02_018E": {"label": "Estimate!!65 years and over!!RELATIONSHIP!!Population in households!!Other relatives", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_018EA,S0103PR_C02_018M,S0103PR_C02_018MA"}, "S0506_C04_063E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!EMPLOYMENT STATUS!!Population 16 years and over!!Not in labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_063EA,S0506_C04_063M,S0506_C04_063MA"}, "S2702PR_C02_052E": {"label": "Estimate!!Total Uninsured!!WORK EXPERIENCE!!Civilian noninstitutionalized population 16 to 64 years!!Worked full-time, year round in the past 12 months", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_052EA,S2702PR_C02_052M,S2702PR_C02_052MA"}, "S2301_C02_001E": {"label": "Estimate!!Labor Force Participation Rate!!Population 16 years and over", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C02_001EA,S2301_C02_001M,S2301_C02_001MA"}, "S0103PR_C02_017E": {"label": "Estimate!!65 years and over!!RELATIONSHIP!!Population in households!!Parent", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_017EA,S0103PR_C02_017M,S0103PR_C02_017MA"}, "S0506_C04_062E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Armed Forces", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_062EA,S0506_C04_062M,S0506_C04_062MA"}, "S0505_C05_128E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Occupied housing units!!HOUSING TENURE!!Average household size of renter-occupied unit", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_128EA,S0505_C05_128M,S0505_C05_128MA"}, "S2702PR_C02_055E": {"label": "Estimate!!Total Uninsured!!Civilian noninstitutionalized workers 16 years and over", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "int", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_055EA,S2702PR_C02_055M,S2702PR_C02_055MA"}, "S0506_C04_065E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Private wage and salary workers", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_065EA,S0506_C04_065M,S0506_C04_065MA"}, "S0103PR_C02_016E": {"label": "Estimate!!65 years and over!!RELATIONSHIP!!Population in households!!Householder or spouse", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_016EA,S0103PR_C02_016M,S0103PR_C02_016MA"}, "S0505_C05_129E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Occupied housing units!!ROOMS!!1 room", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_129EA,S0505_C05_129M,S0505_C05_129MA"}, "S2702PR_C02_054E": {"label": "Estimate!!Total Uninsured!!WORK EXPERIENCE!!Civilian noninstitutionalized population 16 to 64 years!!Did not work", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_054EA,S2702PR_C02_054M,S2702PR_C02_054MA"}, "S0103PR_C02_015E": {"label": "Estimate!!65 years and over!!RELATIONSHIP!!Population in households", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_015EA,S0103PR_C02_015M,S0103PR_C02_015MA"}, "S0506_C04_064E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Civilian employed population 16 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C04_064EA,S0506_C04_064M,S0506_C04_064MA"}, "S2702PR_C02_057E": {"label": "Estimate!!Total Uninsured!!Civilian noninstitutionalized workers 16 years and over!!CLASS OF WORKER!!Private for-profit wage and salary workers!!Employee of private company workers", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_057EA,S2702PR_C02_057M,S2702PR_C02_057MA"}, "S0506_C04_067E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Self-employed workers in own not incorporated business", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_067EA,S0506_C04_067M,S0506_C04_067MA"}, "S0103PR_C02_014E": {"label": "Estimate!!65 years and over!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_014EA,S0103PR_C02_014M,S0103PR_C02_014MA"}, "S0505_C05_123E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_123EA,S0505_C05_123M,S0505_C05_123MA"}, "S2702PR_C02_056E": {"label": "Estimate!!Total Uninsured!!Civilian noninstitutionalized workers 16 years and over!!CLASS OF WORKER!!Private for-profit wage and salary workers", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_056EA,S2702PR_C02_056M,S2702PR_C02_056MA"}, "S0506_C04_066E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Government workers", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_066EA,S0506_C04_066M,S0506_C04_066MA"}, "S0103PR_C02_013E": {"label": "Estimate!!65 years and over!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_013EA,S0103PR_C02_013M,S0103PR_C02_013MA"}, "S0505_C05_124E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C05_124EA,S0505_C05_124M,S0505_C05_124MA"}, "S0506_C04_069E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Civilian employed population 16 years and over!!OCCUPATION!!Management, business, science, and arts occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_069EA,S0506_C04_069M,S0506_C04_069MA"}, "S0103PR_C02_012E": {"label": "Estimate!!65 years and over!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_012EA,S0103PR_C02_012M,S0103PR_C02_012MA"}, "S0505_C05_125E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Occupied housing units!!HOUSING TENURE!!Owner-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_125EA,S0505_C05_125M,S0505_C05_125MA"}, "S2702PR_C02_059E": {"label": "Estimate!!Total Uninsured!!Civilian noninstitutionalized workers 16 years and over!!CLASS OF WORKER!!Private not-for-profit wage and salary workers", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_059EA,S2702PR_C02_059M,S2702PR_C02_059MA"}, "S0506_C04_068E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Unpaid family workers", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_068EA,S0506_C04_068M,S0506_C04_068MA"}, "S0103PR_C02_011E": {"label": "Estimate!!65 years and over!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_011EA,S0103PR_C02_011M,S0103PR_C02_011MA"}, "S0505_C05_126E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Occupied housing units!!HOUSING TENURE!!Renter-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_126EA,S0505_C05_126M,S0505_C05_126MA"}, "S2702PR_C02_058E": {"label": "Estimate!!Total Uninsured!!Civilian noninstitutionalized workers 16 years and over!!CLASS OF WORKER!!Private for-profit wage and salary workers!!Self-employed in own incorporated business workers", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_058EA,S2702PR_C02_058M,S2702PR_C02_058MA"}, "S0103PR_C02_010E": {"label": "Estimate!!65 years and over!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_010EA,S0103PR_C02_010M,S0103PR_C02_010MA"}, "S0701_C01_044E": {"label": "Estimate!!Total!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$35,000 to $49,999", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "int", "group": "S0701", "limit": 0, "attributes": "S0701_C01_044EA,S0701_C01_044M,S0701_C01_044MA"}, "S2503_C02_038E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$50,000 to $74,999!!Less than 20 percent", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C02_038EA,S2503_C02_038M,S2503_C02_038MA"}, "S2301_C02_009E": {"label": "Estimate!!Labor Force Participation Rate!!Population 16 years and over!!AGE!!60 to 64 years", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C02_009EA,S2301_C02_009M,S2301_C02_009MA"}, "S0701_C01_045E": {"label": "Estimate!!Total!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$50,000 to $64,999", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "int", "group": "S0701", "limit": 0, "attributes": "S0701_C01_045EA,S0701_C01_045M,S0701_C01_045MA"}, "S0505_C05_120E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_120EA,S0505_C05_120M,S0505_C05_120MA"}, "S2503_C02_037E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$50,000 to $74,999", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C02_037EA,S2503_C02_037M,S2503_C02_037MA"}, "S0504_C02_130E": {"label": "Estimate!!Foreign-born; Born in Africa!!Occupied housing units!!ROOMS!!2 or 3 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_130EA,S0504_C02_130M,S0504_C02_130MA"}, "S2301_C02_008E": {"label": "Estimate!!Labor Force Participation Rate!!Population 16 years and over!!AGE!!55 to 59 years", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C02_008EA,S2301_C02_008M,S2301_C02_008MA"}, "S0701_C01_046E": {"label": "Estimate!!Total!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$65,000 to $74,999", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "int", "group": "S0701", "limit": 0, "attributes": "S0701_C01_046EA,S0701_C01_046M,S0701_C01_046MA"}, "S0505_C05_121E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_121EA,S0505_C05_121M,S0505_C05_121MA"}, "S2503_C02_036E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$35,000 to $49,999!!30 percent or more", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C02_036EA,S2503_C02_036M,S2503_C02_036MA"}, "S2301_C02_007E": {"label": "Estimate!!Labor Force Participation Rate!!Population 16 years and over!!AGE!!45 to 54 years", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C02_007EA,S2301_C02_007M,S2301_C02_007MA"}, "S0701_C01_047E": {"label": "Estimate!!Total!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$75,000 or more", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "int", "group": "S0701", "limit": 0, "attributes": "S0701_C01_047EA,S0701_C01_047M,S0701_C01_047MA"}, "S0505_C05_122E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_122EA,S0505_C05_122M,S0505_C05_122MA"}, "S2503_C02_035E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$35,000 to $49,999!!20 to 29 percent", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C02_035EA,S2503_C02_035M,S2503_C02_035MA"}, "S0504_C02_132E": {"label": "Estimate!!Foreign-born; Born in Africa!!Occupied housing units!!ROOMS!!6 or 7 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_132EA,S0504_C02_132M,S0504_C02_132MA"}, "S2301_C02_006E": {"label": "Estimate!!Labor Force Participation Rate!!Population 16 years and over!!AGE!!35 to 44 years", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C02_006EA,S2301_C02_006M,S2301_C02_006MA"}, "S0701_C01_048E": {"label": "Estimate!!Total!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!Median income (dollars)", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "int", "group": "S0701", "limit": 0, "attributes": "S0701_C01_048EA,S0701_C01_048M,S0701_C01_048MA"}, "S2503_C02_034E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$35,000 to $49,999!!Less than 20 percent", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C02_034EA,S2503_C02_034M,S2503_C02_034MA"}, "S2504_C05_030E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!VEHICLES AVAILABLE!!3 or more vehicles available", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C05_030EA,S2504_C05_030M,S2504_C05_030MA"}, "S2301_C02_005E": {"label": "Estimate!!Labor Force Participation Rate!!Population 16 years and over!!AGE!!30 to 34 years", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C02_005EA,S2301_C02_005M,S2301_C02_005MA"}, "S0504_C02_131E": {"label": "Estimate!!Foreign-born; Born in Africa!!Occupied housing units!!ROOMS!!4 or 5 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_131EA,S0504_C02_131M,S0504_C02_131MA"}, "S0701_C01_049E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population 1 year and over for whom poverty status is determined", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "int", "group": "S0701", "limit": 0, "attributes": "S0701_C01_049EA,S0701_C01_049M,S0701_C01_049MA"}, "S2503_C02_033E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$35,000 to $49,999", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C02_033EA,S2503_C02_033M,S2503_C02_033MA"}, "S0504_C02_134E": {"label": "Estimate!!Foreign-born; Born in Africa!!Occupied housing units!!Median number of rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_134EA,S0504_C02_134M,S0504_C02_134MA"}, "S2301_C02_004E": {"label": "Estimate!!Labor Force Participation Rate!!Population 16 years and over!!AGE!!25 to 29 years", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C02_004EA,S2301_C02_004M,S2301_C02_004MA"}, "S2702PR_C02_051E": {"label": "Estimate!!Total Uninsured!!WORK EXPERIENCE!!Civilian noninstitutionalized population 16 to 64 years", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "int", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_051EA,S2702PR_C02_051M,S2702PR_C02_051MA"}, "S2503_C02_032E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$20,000 to $34,999!!30 percent or more", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C02_032EA,S2503_C02_032M,S2503_C02_032MA"}, "S2301_C02_003E": {"label": "Estimate!!Labor Force Participation Rate!!Population 16 years and over!!AGE!!20 to 24 years", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C02_003EA,S2301_C02_003M,S2301_C02_003MA"}, "S0504_C02_133E": {"label": "Estimate!!Foreign-born; Born in Africa!!Occupied housing units!!ROOMS!!8 or more rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_133EA,S0504_C02_133M,S0504_C02_133MA"}, "S2702PR_C02_050E": {"label": "Estimate!!Total Uninsured!!EMPLOYMENT STATUS!!Civilian noninstitutionalized population 16 years and over!!Not in labor force", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_050EA,S2702PR_C02_050M,S2702PR_C02_050MA"}, "S2503_C02_031E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$20,000 to $34,999!!20 to 29 percent", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C02_031EA,S2503_C02_031M,S2503_C02_031MA"}, "S2504_C05_021E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!BEDROOMS!!No bedroom", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C05_021EA,S2504_C05_021M,S2504_C05_021MA"}, "S1702_C03_034E": {"label": "Estimate!!Total!!Married-couple families!!Families!!NUMBER OF PEOPLE IN FAMILY!!5 or 6 people", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C03_034EA,S1702_C03_034M,S1702_C03_034MA"}, "S0504_C02_136E": {"label": "Estimate!!Foreign-born; Born in Africa!!Occupied housing units!!VEHICLES AVAILABLE!!None", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_136EA,S0504_C02_136M,S0504_C02_136MA"}, "S2504_C05_022E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!BEDROOMS!!1 bedroom", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C05_022EA,S2504_C05_022M,S2504_C05_022MA"}, "S1702_C03_033E": {"label": "Estimate!!Total!!Married-couple families!!Families!!NUMBER OF PEOPLE IN FAMILY!!3 or 4 people", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C03_033EA,S1702_C03_033M,S1702_C03_033MA"}, "S0504_C02_135E": {"label": "Estimate!!Foreign-born; Born in Africa!!Occupied housing units!!1.01 or more occupants per room", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_135EA,S0504_C02_135M,S0504_C02_135MA"}, "S1702_C03_036E": {"label": "Estimate!!Total!!Married-couple families!!Families!!NUMBER OF WORKERS IN FAMILY!!No workers", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C03_036EA,S1702_C03_036M,S1702_C03_036MA"}, "S0701_C01_050E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population 1 year and over for whom poverty status is determined!!Below 100 percent of the poverty level", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "int", "group": "S0701", "limit": 0, "attributes": "S0701_C01_050EA,S0701_C01_050M,S0701_C01_050MA"}, "S0504_C02_138E": {"label": "Estimate!!Foreign-born; Born in Africa!!Occupied housing units!!SELECTED CHARACTERISTICS!!No telephone service available", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_138EA,S0504_C02_138M,S0504_C02_138MA"}, "S2702_C02_040E": {"label": "Estimate!!Total Uninsured!!RESIDENCE 1 YEAR AGO!!Civilian noninstitutionalized population 1 year and over!!Abroad", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_040EA,S2702_C02_040M,S2702_C02_040MA"}, "S2504_C05_020E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!ROOMS!!8 or more rooms", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C05_020EA,S2504_C05_020M,S2504_C05_020MA"}, "S1702_C03_035E": {"label": "Estimate!!Total!!Married-couple families!!Families!!NUMBER OF PEOPLE IN FAMILY!!7 or more people", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C03_035EA,S1702_C03_035M,S1702_C03_035MA"}, "S2702_C02_041E": {"label": "Estimate!!Total Uninsured!!EDUCATIONAL ATTAINMENT!!Civilian noninstitutionalized population 25 years and over", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "int", "group": "S2702", "limit": 0, "attributes": "S2702_C02_041EA,S2702_C02_041M,S2702_C02_041MA"}, "S0701_C01_051E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population 1 year and over for whom poverty status is determined!!100 to 149 percent of the poverty level", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "int", "group": "S0701", "limit": 0, "attributes": "S0701_C01_051EA,S0701_C01_051M,S0701_C01_051MA"}, "S0504_C02_137E": {"label": "Estimate!!Foreign-born; Born in Africa!!Occupied housing units!!VEHICLES AVAILABLE!!1 or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_137EA,S0504_C02_137M,S0504_C02_137MA"}, "S1601_C02_006E": {"label": "Estimate!!Percent!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Spanish!!18 to 64 years old", "concept": "Language Spoken at Home", "predicateType": "float", "group": "S1601", "limit": 0, "attributes": "S1601_C02_006EA,S1601_C02_006M,S1601_C02_006MA"}, "S2702_C02_042E": {"label": "Estimate!!Total Uninsured!!EDUCATIONAL ATTAINMENT!!Civilian noninstitutionalized population 25 years and over!!Less than high school graduate", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_042EA,S2702_C02_042M,S2702_C02_042MA"}, "S1702_C03_038E": {"label": "Estimate!!Total!!Married-couple families!!Families!!NUMBER OF WORKERS IN FAMILY!!2 workers", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C03_038EA,S1702_C03_038M,S1702_C03_038MA"}, "S0701_C01_052E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population 1 year and over for whom poverty status is determined!!At or above 150 percent of the poverty level", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "int", "group": "S0701", "limit": 0, "attributes": "S0701_C01_052EA,S0701_C01_052M,S0701_C01_052MA"}, "S2504_C05_025E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!COMPLETE FACILITIES!!With complete plumbing facilities", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C05_025EA,S2504_C05_025M,S2504_C05_025MA"}, "S1601_C02_007E": {"label": "Estimate!!Percent!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Spanish!!65 years old and over", "concept": "Language Spoken at Home", "predicateType": "float", "group": "S1601", "limit": 0, "attributes": "S1601_C02_007EA,S1601_C02_007M,S1601_C02_007MA"}, "S2702_C02_043E": {"label": "Estimate!!Total Uninsured!!EDUCATIONAL ATTAINMENT!!Civilian noninstitutionalized population 25 years and over!!High school graduate (includes equivalency)", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_043EA,S2702_C02_043M,S2702_C02_043MA"}, "S0701_C01_053E": {"label": "Estimate!!Total!!HOUSING TENURE!!Population 1 year and over in housing units", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "int", "group": "S0701", "limit": 0, "attributes": "S0701_C01_053EA,S0701_C01_053M,S0701_C01_053MA"}, "S1702_C03_037E": {"label": "Estimate!!Total!!Married-couple families!!Families!!NUMBER OF WORKERS IN FAMILY!!1 worker", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C03_037EA,S1702_C03_037M,S1702_C03_037MA"}, "S2504_C05_026E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!COMPLETE FACILITIES!!With complete kitchen facilities", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C05_026EA,S2504_C05_026M,S2504_C05_026MA"}, "S0504_C02_139E": {"label": "Estimate!!Foreign-born; Born in Africa!!Occupied housing units!!SELECTED CHARACTERISTICS!!Limited English Speaking Households", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_139EA,S0504_C02_139M,S0504_C02_139MA"}, "S2504_C05_023E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!BEDROOMS!!2 or 3 bedrooms", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C05_023EA,S2504_C05_023M,S2504_C05_023MA"}, "S1601_C02_008E": {"label": "Estimate!!Percent!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Other Indo-European languages", "concept": "Language Spoken at Home", "predicateType": "float", "group": "S1601", "limit": 0, "attributes": "S1601_C02_008EA,S1601_C02_008M,S1601_C02_008MA"}, "S2702_C02_044E": {"label": "Estimate!!Total Uninsured!!EDUCATIONAL ATTAINMENT!!Civilian noninstitutionalized population 25 years and over!!Some college or associate's degree", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_044EA,S2702_C02_044M,S2702_C02_044MA"}, "S0701_C01_054E": {"label": "Estimate!!Total!!HOUSING TENURE!!Population 1 year and over in housing units!!Householder lived in owner-occupied housing units", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "int", "group": "S0701", "limit": 0, "attributes": "S0701_C01_054EA,S0701_C01_054M,S0701_C01_054MA"}, "S2503_C02_039E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$50,000 to $74,999!!20 to 29 percent", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C02_039EA,S2503_C02_039M,S2503_C02_039MA"}, "S1601_C02_009E": {"label": "Estimate!!Percent!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Other Indo-European languages!!5 to 17 years old", "concept": "Language Spoken at Home", "predicateType": "float", "group": "S1601", "limit": 0, "attributes": "S1601_C02_009EA,S1601_C02_009M,S1601_C02_009MA"}, "S1702_C03_039E": {"label": "Estimate!!Total!!Married-couple families!!Families!!NUMBER OF WORKERS IN FAMILY!!3 or more workers", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C03_039EA,S1702_C03_039M,S1702_C03_039MA"}, "S2702_C02_045E": {"label": "Estimate!!Total Uninsured!!EDUCATIONAL ATTAINMENT!!Civilian noninstitutionalized population 25 years and over!!Bachelor's degree or higher", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_045EA,S2702_C02_045M,S2702_C02_045MA"}, "S0701_C01_055E": {"label": "Estimate!!Total!!HOUSING TENURE!!Population 1 year and over in housing units!!Householder lived in renter-occupied housing units", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "int", "group": "S0701", "limit": 0, "attributes": "S0701_C01_055EA,S0701_C01_055M,S0701_C01_055MA"}, "S0502_C01_049E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate (includes equivalency)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_049EA,S0502_C01_049M,S0502_C01_049MA"}, "S2504_C05_024E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!BEDROOMS!!4 or more bedrooms", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C05_024EA,S2504_C05_024M,S2504_C05_024MA"}, "S2702_C02_046E": {"label": "Estimate!!Total Uninsured!!EMPLOYMENT STATUS!!Civilian noninstitutionalized population 16 years and over", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "int", "group": "S2702", "limit": 0, "attributes": "S2702_C02_046EA,S2702_C02_046M,S2702_C02_046MA"}, "S0502_C01_048E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than high school graduate", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_048EA,S0502_C01_048M,S0502_C01_048MA"}, "S1601_C02_002E": {"label": "Estimate!!Percent!!Population 5 years and over!!Speak only English", "concept": "Language Spoken at Home", "predicateType": "float", "group": "S1601", "limit": 0, "attributes": "S1601_C02_002EA,S1601_C02_002M,S1601_C02_002MA"}, "S2504_C05_029E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!VEHICLES AVAILABLE!!2 vehicles available", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C05_029EA,S2504_C05_029M,S2504_C05_029MA"}, "S2702_C02_047E": {"label": "Estimate!!Total Uninsured!!EMPLOYMENT STATUS!!Civilian noninstitutionalized population 16 years and over!!In labor force", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_047EA,S2702_C02_047M,S2702_C02_047MA"}, "S0502_C01_047E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C01_047EA,S0502_C01_047M,S0502_C01_047MA"}, "S1601_C02_003E": {"label": "Estimate!!Percent!!Population 5 years and over!!Speak a language other than English", "concept": "Language Spoken at Home", "predicateType": "float", "group": "S1601", "limit": 0, "attributes": "S1601_C02_003EA,S1601_C02_003M,S1601_C02_003MA"}, "S2702_C02_048E": {"label": "Estimate!!Total Uninsured!!EMPLOYMENT STATUS!!Civilian noninstitutionalized population 16 years and over!!In labor force!!Employed", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_048EA,S2702_C02_048M,S2702_C02_048MA"}, "S2504_C05_027E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!VEHICLES AVAILABLE!!No vehicle available", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C05_027EA,S2504_C05_027M,S2504_C05_027MA"}, "S1601_C02_004E": {"label": "Estimate!!Percent!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Spanish", "concept": "Language Spoken at Home", "predicateType": "float", "group": "S1601", "limit": 0, "attributes": "S1601_C02_004EA,S1601_C02_004M,S1601_C02_004MA"}, "S0502_C01_046E": {"label": "Estimate!!Total!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!College or graduate school", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_046EA,S0502_C01_046M,S0502_C01_046MA"}, "S2702_C02_049E": {"label": "Estimate!!Total Uninsured!!EMPLOYMENT STATUS!!Civilian noninstitutionalized population 16 years and over!!In labor force!!Unemployed", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_049EA,S2702_C02_049M,S2702_C02_049MA"}, "S1601_C02_005E": {"label": "Estimate!!Percent!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Spanish!!5 to 17 years old", "concept": "Language Spoken at Home", "predicateType": "float", "group": "S1601", "limit": 0, "attributes": "S1601_C02_005EA,S1601_C02_005M,S1601_C02_005MA"}, "S0502_C01_045E": {"label": "Estimate!!Total!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!High school (grades 9-12)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_045EA,S0502_C01_045M,S0502_C01_045MA"}, "S2504_C05_028E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!VEHICLES AVAILABLE!!1 vehicle available", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C05_028EA,S2504_C05_028M,S2504_C05_028MA"}, "S1702_C03_030E": {"label": "Estimate!!Total!!Married-couple families!!Families!!NUMBER OF OWN CHILDREN OF THE HOUSEHOLDER UNDER 18 YEARS!!3 or 4 own children of the householder", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C03_030EA,S1702_C03_030M,S1702_C03_030MA"}, "S0506_C04_071E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Civilian employed population 16 years and over!!OCCUPATION!!Sales and office occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_071EA,S0506_C04_071M,S0506_C04_071MA"}, "S0502_C01_044E": {"label": "Estimate!!Total!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Elementary school (grades K-8)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_044EA,S0502_C01_044M,S0502_C01_044MA"}, "S2802_C07_001E": {"label": "Estimate!!Percent no computer in household!!Total population in households", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "float", "group": "S2802", "limit": 0, "attributes": "S2802_C07_001EA,S2802_C07_001M,S2802_C07_001MA"}, "S0506_C04_070E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Civilian employed population 16 years and over!!OCCUPATION!!Service occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_070EA,S0506_C04_070M,S0506_C04_070MA"}, "S0502_C01_043E": {"label": "Estimate!!Total!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Nursery school, preschool", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_043EA,S0502_C01_043M,S0502_C01_043MA"}, "S1702_C03_032E": {"label": "Estimate!!Total!!Married-couple families!!Families!!NUMBER OF PEOPLE IN FAMILY!!2 people", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C03_032EA,S1702_C03_032M,S1702_C03_032MA"}, "S0506_C04_073E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Civilian employed population 16 years and over!!OCCUPATION!!Production, transportation, and material moving occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_073EA,S0506_C04_073M,S0506_C04_073MA"}, "S0502_C01_042E": {"label": "Estimate!!Total!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C01_042EA,S0502_C01_042M,S0502_C01_042MA"}, "S1702_C03_031E": {"label": "Estimate!!Total!!Married-couple families!!Families!!NUMBER OF OWN CHILDREN OF THE HOUSEHOLDER UNDER 18 YEARS!!5 or more own children of the householder", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C03_031EA,S1702_C03_031M,S1702_C03_031MA"}, "S0502_C01_041E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_041EA,S0502_C01_041M,S0502_C01_041MA"}, "S0103PR_C02_019E": {"label": "Estimate!!65 years and over!!RELATIONSHIP!!Population in households!!Nonrelatives", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_019EA,S0103PR_C02_019M,S0103PR_C02_019MA"}, "S1601_C02_001E": {"label": "Estimate!!Percent!!Population 5 years and over", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C02_001EA,S1601_C02_001M,S1601_C02_001MA"}, "S0506_C04_072E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Civilian employed population 16 years and over!!OCCUPATION!!Natural resources, construction, and maintenance occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_072EA,S0506_C04_072M,S0506_C04_072MA"}, "S2301_C02_014E": {"label": "Estimate!!Labor Force Participation Rate!!Population 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!American Indian and Alaska Native alone", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C02_014EA,S2301_C02_014M,S2301_C02_014MA"}, "S2702PR_C02_065E": {"label": "Estimate!!Total Uninsured!!Civilian noninstitutionalized workers 16 years and over!!INDUSTRY!!Agriculture, forestry, fishing and hunting, and mining", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_065EA,S2702PR_C02_065M,S2702PR_C02_065MA"}, "S2402_C01_005E": {"label": "Estimate!!Total!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Management, business, and financial occupations:!!Business and financial operations occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C01_005EA,S2402_C01_005M,S2402_C01_005MA"}, "S2503_C02_042E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$75,000 or more!!Less than 20 percent", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C02_042EA,S2503_C02_042M,S2503_C02_042MA"}, "S0506_C04_051E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Graduate or professional degree", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_051EA,S0506_C04_051M,S0506_C04_051MA"}, "S0505_C05_139E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Occupied housing units!!SELECTED CHARACTERISTICS!!Limited English Speaking Households", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_139EA,S0505_C05_139M,S0505_C05_139MA"}, "S2301_C02_013E": {"label": "Estimate!!Labor Force Participation Rate!!Population 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Black or African American alone", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C02_013EA,S2301_C02_013M,S2301_C02_013MA"}, "S2702PR_C02_064E": {"label": "Estimate!!Total Uninsured!!Civilian noninstitutionalized workers 16 years and over!!CLASS OF WORKER!!Unpaid family workers", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_064EA,S2702PR_C02_064M,S2702PR_C02_064MA"}, "S2402_C01_004E": {"label": "Estimate!!Total!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Management, business, and financial occupations:!!Management occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C01_004EA,S2402_C01_004M,S2402_C01_004MA"}, "S2503_C02_041E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$75,000 or more", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C02_041EA,S2503_C02_041M,S2503_C02_041MA"}, "S0103PR_C02_029E": {"label": "Estimate!!65 years and over!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_029EA,S0103PR_C02_029M,S0103PR_C02_029MA"}, "S0506_C04_050E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_050EA,S0506_C04_050M,S0506_C04_050MA"}, "S2702PR_C02_067E": {"label": "Estimate!!Total Uninsured!!Civilian noninstitutionalized workers 16 years and over!!INDUSTRY!!Manufacturing", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_067EA,S2702PR_C02_067M,S2702PR_C02_067MA"}, "S2402_C01_007E": {"label": "Estimate!!Total!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Computer, engineering, and science occupations:!!Computer and mathematical occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C01_007EA,S2402_C01_007M,S2402_C01_007MA"}, "S2301_C02_012E": {"label": "Estimate!!Labor Force Participation Rate!!Population 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C02_012EA,S2301_C02_012M,S2301_C02_012MA"}, "S2503_C02_040E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$50,000 to $74,999!!30 percent or more", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C02_040EA,S2503_C02_040M,S2503_C02_040MA"}, "S0103PR_C02_028E": {"label": "Estimate!!65 years and over!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_028EA,S0103PR_C02_028M,S0103PR_C02_028MA"}, "S0506_C04_053E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!English only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_053EA,S0506_C04_053M,S0506_C04_053MA"}, "S2702PR_C02_066E": {"label": "Estimate!!Total Uninsured!!Civilian noninstitutionalized workers 16 years and over!!INDUSTRY!!Construction", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_066EA,S2702PR_C02_066M,S2702PR_C02_066MA"}, "S0103PR_C02_027E": {"label": "Estimate!!65 years and over!!MARITAL STATUS!!Population 15 years and over", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_027EA,S0103PR_C02_027M,S0103PR_C02_027MA"}, "PLACE": {"label": "Place", "group": "N/A", "limit": 0}, "S2402_C01_006E": {"label": "Estimate!!Total!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Computer, engineering, and science occupations:", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C01_006EA,S2402_C01_006M,S2402_C01_006MA"}, "S2301_C02_011E": {"label": "Estimate!!Labor Force Participation Rate!!Population 16 years and over!!AGE!!75 years and over", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C02_011EA,S2301_C02_011M,S2301_C02_011MA"}, "S0506_C04_052E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C04_052EA,S0506_C04_052M,S0506_C04_052MA"}, "S0506_C04_055E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English!!Speak English less than \"very well\"", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_055EA,S0506_C04_055M,S0506_C04_055MA"}, "S0103PR_C02_026E": {"label": "Estimate!!65 years and over!!HOUSEHOLDS BY TYPE!!Households!!Nonfamily households!!Householder living alone", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_026EA,S0103PR_C02_026M,S0103PR_C02_026MA"}, "S2301_C02_010E": {"label": "Estimate!!Labor Force Participation Rate!!Population 16 years and over!!AGE!!65 to 74 years", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C02_010EA,S2301_C02_010M,S2301_C02_010MA"}, "S2402_C01_009E": {"label": "Estimate!!Total!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Computer, engineering, and science occupations:!!Life, physical, and social science occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C01_009EA,S2402_C01_009M,S2402_C01_009MA"}, "S0505_C05_135E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Occupied housing units!!1.01 or more occupants per room", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_135EA,S0505_C05_135M,S0505_C05_135MA"}, "S2702PR_C02_069E": {"label": "Estimate!!Total Uninsured!!Civilian noninstitutionalized workers 16 years and over!!INDUSTRY!!Retail trade", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_069EA,S2702PR_C02_069M,S2702PR_C02_069MA"}, "S2702PR_C02_068E": {"label": "Estimate!!Total Uninsured!!Civilian noninstitutionalized workers 16 years and over!!INDUSTRY!!Wholesale trade", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_068EA,S2702PR_C02_068M,S2702PR_C02_068MA"}, "S0506_C04_054E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_054EA,S0506_C04_054M,S0506_C04_054MA"}, "S0103PR_C02_025E": {"label": "Estimate!!65 years and over!!HOUSEHOLDS BY TYPE!!Households!!Nonfamily households", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_025EA,S0103PR_C02_025M,S0103PR_C02_025MA"}, "S2402_C01_008E": {"label": "Estimate!!Total!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Computer, engineering, and science occupations:!!Architecture and engineering occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C01_008EA,S2402_C01_008M,S2402_C01_008MA"}, "S0505_C05_136E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Occupied housing units!!VEHICLES AVAILABLE!!None", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_136EA,S0505_C05_136M,S0505_C05_136MA"}, "S0506_C04_057E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_057EA,S0506_C04_057M,S0506_C04_057MA"}, "S0103PR_C02_024E": {"label": "Estimate!!65 years and over!!HOUSEHOLDS BY TYPE!!Households!!Family households!!Female householder, no spouse present, family", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_024EA,S0103PR_C02_024M,S0103PR_C02_024MA"}, "S0505_C05_137E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Occupied housing units!!VEHICLES AVAILABLE!!1 or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_137EA,S0505_C05_137M,S0505_C05_137MA"}, "S0506_C04_056E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!EMPLOYMENT STATUS!!Population 16 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C04_056EA,S0506_C04_056M,S0506_C04_056MA"}, "S0103PR_C02_023E": {"label": "Estimate!!65 years and over!!HOUSEHOLDS BY TYPE!!Households!!Family households!!Married-couple family", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_023EA,S0103PR_C02_023M,S0103PR_C02_023MA"}, "S0505_C05_138E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Occupied housing units!!SELECTED CHARACTERISTICS!!No telephone service available", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_138EA,S0505_C05_138M,S0505_C05_138MA"}, "S0504_C02_140E": {"label": "Estimate!!Foreign-born; Born in Africa!!Owner-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C02_140EA,S0504_C02_140M,S0504_C02_140MA"}, "S0506_C04_059E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Employed", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_059EA,S0506_C04_059M,S0506_C04_059MA"}, "S0103PR_C02_022E": {"label": "Estimate!!65 years and over!!HOUSEHOLDS BY TYPE!!Households!!Family households", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_022EA,S0103PR_C02_022M,S0103PR_C02_022MA"}, "S0701_C01_056E": {"label": "Estimate!!Total!!PERCENT ALLOCATED!!Residence 1 year ago", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C01_056EA,S0701_C01_056M,S0701_C01_056MA"}, "S0505_C05_131E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Occupied housing units!!ROOMS!!4 or 5 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_131EA,S0505_C05_131M,S0505_C05_131MA"}, "S0506_C04_058E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_058EA,S0506_C04_058M,S0506_C04_058MA"}, "S0103PR_C02_021E": {"label": "Estimate!!65 years and over!!HOUSEHOLDS BY TYPE!!Households", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_021EA,S0103PR_C02_021M,S0103PR_C02_021MA"}, "S1702_C03_029E": {"label": "Estimate!!Total!!Married-couple families!!Families!!NUMBER OF OWN CHILDREN OF THE HOUSEHOLDER UNDER 18 YEARS!!1 or 2 own children of the householder", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C03_029EA,S1702_C03_029M,S1702_C03_029MA"}, "S0505_C05_132E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Occupied housing units!!ROOMS!!6 or 7 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_132EA,S0505_C05_132M,S0505_C05_132MA"}, "S0504_C02_142E": {"label": "Estimate!!Foreign-born; Born in Africa!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_142EA,S0504_C02_142M,S0504_C02_142MA"}, "S0103PR_C02_020E": {"label": "Estimate!!65 years and over!!RELATIONSHIP!!Population in households!!Nonrelatives!!Unmarried partner", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_020EA,S0103PR_C02_020M,S0103PR_C02_020MA"}, "S0505_C05_133E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Occupied housing units!!ROOMS!!8 or more rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_133EA,S0505_C05_133M,S0505_C05_133MA"}, "S0504_C02_141E": {"label": "Estimate!!Foreign-born; Born in Africa!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_141EA,S0504_C02_141M,S0504_C02_141MA"}, "S2301_C02_019E": {"label": "Estimate!!Labor Force Participation Rate!!Population 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C02_019EA,S2301_C02_019M,S2301_C02_019MA"}, "S0505_C05_134E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Occupied housing units!!Median number of rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_134EA,S0505_C05_134M,S0505_C05_134MA"}, "S0504_C02_144E": {"label": "Estimate!!Foreign-born; Born in Africa!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_144EA,S0504_C02_144M,S0504_C02_144MA"}, "S2301_C02_018E": {"label": "Estimate!!Labor Force Participation Rate!!Population 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C02_018EA,S2301_C02_018M,S2301_C02_018MA"}, "S2702PR_C02_061E": {"label": "Estimate!!Total Uninsured!!Civilian noninstitutionalized workers 16 years and over!!CLASS OF WORKER!!State government workers", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_061EA,S2702PR_C02_061M,S2702PR_C02_061MA"}, "S2402_C01_001E": {"label": "Estimate!!Total!!Full-time, year-round civilian employed population 16 years and over", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C01_001EA,S2402_C01_001M,S2402_C01_001MA"}, "S2503_C02_046E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!No cash rent", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C02_046EA,S2503_C02_046M,S2503_C02_046MA"}, "S0504_C02_143E": {"label": "Estimate!!Foreign-born; Born in Africa!!Renter-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C02_143EA,S0504_C02_143M,S0504_C02_143MA"}, "S2301_C02_017E": {"label": "Estimate!!Labor Force Participation Rate!!Population 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Some other race alone", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C02_017EA,S2301_C02_017M,S2301_C02_017MA"}, "S2702PR_C02_060E": {"label": "Estimate!!Total Uninsured!!Civilian noninstitutionalized workers 16 years and over!!CLASS OF WORKER!!Local government workers", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_060EA,S2702PR_C02_060M,S2702PR_C02_060MA"}, "S0901_C02_010E": {"label": "Estimate!!In married-couple family household!!Children under 18 years in households!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C02_010EA,S0901_C02_010M,S0901_C02_010MA"}, "S2503_C02_045E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Zero or negative income", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C02_045EA,S2503_C02_045M,S2503_C02_045MA"}, "S2301_C02_016E": {"label": "Estimate!!Labor Force Participation Rate!!Population 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Native Hawaiian and Other Pacific Islander alone", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C02_016EA,S2301_C02_016M,S2301_C02_016MA"}, "S2702PR_C02_063E": {"label": "Estimate!!Total Uninsured!!Civilian noninstitutionalized workers 16 years and over!!CLASS OF WORKER!!Self-employed workers in own not incorporated business workers", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_063EA,S2702PR_C02_063M,S2702PR_C02_063MA"}, "S2402_C01_003E": {"label": "Estimate!!Total!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Management, business, and financial occupations:", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C01_003EA,S2402_C01_003M,S2402_C01_003MA"}, "S0901_C02_011E": {"label": "Estimate!!In married-couple family household!!Children under 18 years in households!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C02_011EA,S0901_C02_011M,S0901_C02_011MA"}, "S2503_C02_044E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$75,000 or more!!30 percent or more", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C02_044EA,S2503_C02_044M,S2503_C02_044MA"}, "S0504_C02_145E": {"label": "Estimate!!Foreign-born; Born in Africa!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_145EA,S0504_C02_145M,S0504_C02_145MA"}, "S2301_C02_015E": {"label": "Estimate!!Labor Force Participation Rate!!Population 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Asian alone", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C02_015EA,S2301_C02_015M,S2301_C02_015MA"}, "S2702PR_C02_062E": {"label": "Estimate!!Total Uninsured!!Civilian noninstitutionalized workers 16 years and over!!CLASS OF WORKER!!Federal government workers", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_062EA,S2702PR_C02_062M,S2702PR_C02_062MA"}, "S0505_C05_130E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Occupied housing units!!ROOMS!!2 or 3 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_130EA,S0505_C05_130M,S0505_C05_130MA"}, "S2402_C01_002E": {"label": "Estimate!!Total!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C01_002EA,S2402_C01_002M,S2402_C01_002MA"}, "S0901_C02_012E": {"label": "Estimate!!In married-couple family household!!Children under 18 years in households!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C02_012EA,S0901_C02_012M,S0901_C02_012MA"}, "S2503_C02_043E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$75,000 or more!!20 to 29 percent", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C02_043EA,S2503_C02_043M,S2503_C02_043MA"}, "S2603_C07_008E": {"label": "Estimate!!Military quarters/military ships!!Total population!!SEX AND AGE!!35 to 44 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C07_008EA,S2603_C07_008M,S2603_C07_008MA"}, "S2504_C05_033E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!HOUSE HEATING FUEL!!Bottled or tank gas (propane, butane, etc.)", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C05_033EA,S2504_C05_033M,S2504_C05_033MA"}, "S1702_C03_022E": {"label": "Estimate!!Total!!Married-couple families!!Families!!EDUCATIONAL ATTAINMENT OF HOUSEHOLDER!!Some college, associate's degree", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C03_022EA,S1702_C03_022M,S1702_C03_022MA"}, "S0901_C02_001E": {"label": "Estimate!!In married-couple family household!!Children under 18 years in households", "concept": "Children Characteristics", "predicateType": "int", "group": "S0901", "limit": 0, "attributes": "S0901_C02_001EA,S0901_C02_001M,S0901_C02_001MA"}, "S2901_C02_026E": {"label": "Estimate!!Percent!!Citizens 18 years and over!!POVERTY STATUS!!Total Citizens, 18 years and older, for whom poverty status is determined", "concept": "Citizen, Voting-Age Population by Selected Characteristics", "predicateType": "int", "group": "S2901", "limit": 0, "attributes": "S2901_C02_026EA,S2901_C02_026M,S2901_C02_026MA"}, "S2504_C05_034E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!HOUSE HEATING FUEL!!Electricity", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C05_034EA,S2504_C05_034M,S2504_C05_034MA"}, "S1702_C03_021E": {"label": "Estimate!!Total!!Married-couple families!!Families!!EDUCATIONAL ATTAINMENT OF HOUSEHOLDER!!High school graduate (includes equivalency)", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C03_021EA,S1702_C03_021M,S1702_C03_021MA"}, "S2603_C07_007E": {"label": "Estimate!!Military quarters/military ships!!Total population!!SEX AND AGE!!25 to 34 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C07_007EA,S2603_C07_007M,S2603_C07_007MA"}, "S2901_C02_025E": {"label": "Estimate!!Percent!!Citizens 18 years and over!!EDUCATIONAL ATTAINMENT!!Bachelor's degree or higher", "concept": "Citizen, Voting-Age Population by Selected Characteristics", "predicateType": "float", "group": "S2901", "limit": 0, "attributes": "S2901_C02_025EA,S2901_C02_025M,S2901_C02_025MA"}, "S0901_C02_002E": {"label": "Estimate!!In married-couple family household!!Children under 18 years in households!!AGE!!Under 6 years", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C02_002EA,S0901_C02_002M,S0901_C02_002MA"}, "S2504_C05_031E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!TELEPHONE SERVICE AVAILABLE!!With telephone service", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C05_031EA,S2504_C05_031M,S2504_C05_031MA"}, "S1702_C03_024E": {"label": "Estimate!!Total!!Married-couple families!!Families!!NUMBER OF RELATED CHILDREN OF THE HOUSEHOLDER UNDER 18 YEARS!!No child", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C03_024EA,S1702_C03_024M,S1702_C03_024MA"}, "S2901_C02_028E": {"label": "Estimate!!Percent!!Citizens 18 years and over!!POVERTY STATUS!!Income in the past 12 months at or above the poverty level", "concept": "Citizen, Voting-Age Population by Selected Characteristics", "predicateType": "float", "group": "S2901", "limit": 0, "attributes": "S2901_C02_028EA,S2901_C02_028M,S2901_C02_028MA"}, "S0901_C02_003E": {"label": "Estimate!!In married-couple family household!!Children under 18 years in households!!AGE!!6 to 11 years", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C02_003EA,S0901_C02_003M,S0901_C02_003MA"}, "S2603_C07_009E": {"label": "Estimate!!Military quarters/military ships!!Total population!!SEX AND AGE!!45 to 54 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C07_009EA,S2603_C07_009M,S2603_C07_009MA"}, "S2504_C05_032E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!HOUSE HEATING FUEL!!Utility gas", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C05_032EA,S2504_C05_032M,S2504_C05_032MA"}, "S1702_C03_023E": {"label": "Estimate!!Total!!Married-couple families!!Families!!EDUCATIONAL ATTAINMENT OF HOUSEHOLDER!!Bachelor's degree or higher", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C03_023EA,S1702_C03_023M,S1702_C03_023MA"}, "S2901_C02_027E": {"label": "Estimate!!Percent!!Citizens 18 years and over!!POVERTY STATUS!!Income in the past 12 months below poverty level", "concept": "Citizen, Voting-Age Population by Selected Characteristics", "predicateType": "float", "group": "S2901", "limit": 0, "attributes": "S2901_C02_027EA,S2901_C02_027M,S2901_C02_027MA"}, "S0901_C02_004E": {"label": "Estimate!!In married-couple family household!!Children under 18 years in households!!AGE!!12 to 17 years", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C02_004EA,S0901_C02_004M,S0901_C02_004MA"}, "S1601_C02_018E": {"label": "Estimate!!Percent!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Other languages!!18 to 64 years old", "concept": "Language Spoken at Home", "predicateType": "float", "group": "S1601", "limit": 0, "attributes": "S1601_C02_018EA,S1601_C02_018M,S1601_C02_018MA"}, "S2702_C02_030E": {"label": "Estimate!!Total Uninsured!!Total civilian noninstitutionalized population!!NATIVITY AND U.S. CITIZENSHIP STATUS!!Foreign born!!Not a citizen", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_030EA,S2702_C02_030M,S2702_C02_030MA"}, "S1702_C03_026E": {"label": "Estimate!!Total!!Married-couple families!!Families!!NUMBER OF RELATED CHILDREN OF THE HOUSEHOLDER UNDER 18 YEARS!!3 or 4 children", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C03_026EA,S1702_C03_026M,S1702_C03_026MA"}, "S0901_C02_005E": {"label": "Estimate!!In married-couple family household!!Children under 18 years in households!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C02_005EA,S0901_C02_005M,S0901_C02_005MA"}, "S2504_C05_037E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!HOUSE HEATING FUEL!!All other fuels", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C05_037EA,S2504_C05_037M,S2504_C05_037MA"}, "S1601_C02_019E": {"label": "Estimate!!Percent!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Other languages!!65 years old and over", "concept": "Language Spoken at Home", "predicateType": "float", "group": "S1601", "limit": 0, "attributes": "S1601_C02_019EA,S1601_C02_019M,S1601_C02_019MA"}, "S0502_C01_039E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_039EA,S0502_C01_039M,S0502_C01_039MA"}, "S2901_C02_029E": {"label": "Estimate!!Percent!!Citizens 18 years and over!!HOUSEHOLD INCOME (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Median Household Income for Households with a Citizen, Voting-Age Householder", "concept": "Citizen, Voting-Age Population by Selected Characteristics", "predicateType": "int", "group": "S2901", "limit": 0, "attributes": "S2901_C02_029EA,S2901_C02_029M,S2901_C02_029MA"}, "S2702_C02_031E": {"label": "Estimate!!Total Uninsured!!Total civilian noninstitutionalized population!!DISABILITY STATUS!!With a disability", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_031EA,S2702_C02_031M,S2702_C02_031MA"}, "S0901_C02_006E": {"label": "Estimate!!In married-couple family household!!Children under 18 years in households!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C02_006EA,S0901_C02_006M,S0901_C02_006MA"}, "S1702_C03_025E": {"label": "Estimate!!Total!!Married-couple families!!Families!!NUMBER OF RELATED CHILDREN OF THE HOUSEHOLDER UNDER 18 YEARS!!1 or 2 children", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C03_025EA,S1702_C03_025M,S1702_C03_025MA"}, "S2504_C05_038E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!HOUSE HEATING FUEL!!No fuel used", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C05_038EA,S2504_C05_038M,S2504_C05_038MA"}, "S0901_C02_007E": {"label": "Estimate!!In married-couple family household!!Children under 18 years in households!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C02_007EA,S0901_C02_007M,S0901_C02_007MA"}, "S2702_C02_032E": {"label": "Estimate!!Total Uninsured!!Total civilian noninstitutionalized population!!DISABILITY STATUS!!No disability", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_032EA,S2702_C02_032M,S2702_C02_032MA"}, "S1702_C03_028E": {"label": "Estimate!!Total!!Married-couple families!!Families!!NUMBER OF OWN CHILDREN OF THE HOUSEHOLDER UNDER 18 YEARS!!No own child of the householder", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C03_028EA,S1702_C03_028M,S1702_C03_028MA"}, "S0502_C01_038E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_038EA,S0502_C01_038M,S0502_C01_038MA"}, "S2504_C05_035E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!HOUSE HEATING FUEL!!Fuel oil, kerosene, etc.", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C05_035EA,S2504_C05_035M,S2504_C05_035MA"}, "S2702_C02_033E": {"label": "Estimate!!Total Uninsured!!RESIDENCE 1 YEAR AGO!!Civilian noninstitutionalized population 1 year and over", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "int", "group": "S2702", "limit": 0, "attributes": "S2702_C02_033EA,S2702_C02_033M,S2702_C02_033MA"}, "S0901_C02_008E": {"label": "Estimate!!In married-couple family household!!Children under 18 years in households!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C02_008EA,S0901_C02_008M,S0901_C02_008MA"}, "S1702_C03_027E": {"label": "Estimate!!Total!!Married-couple families!!Families!!NUMBER OF RELATED CHILDREN OF THE HOUSEHOLDER UNDER 18 YEARS!!5 or more children", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C03_027EA,S1702_C03_027M,S1702_C03_027MA"}, "S0502_C01_037E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C01_037EA,S0502_C01_037M,S0502_C01_037MA"}, "S2504_C05_036E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!HOUSE HEATING FUEL!!Coal or coke", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C05_036EA,S2504_C05_036M,S2504_C05_036MA"}, "S0901_C02_009E": {"label": "Estimate!!In married-couple family household!!Children under 18 years in households!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C02_009EA,S0901_C02_009M,S0901_C02_009MA"}, "S2702_C02_034E": {"label": "Estimate!!Total Uninsured!!RESIDENCE 1 YEAR AGO!!Civilian noninstitutionalized population 1 year and over!!Same house", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_034EA,S2702_C02_034M,S2702_C02_034MA"}, "S0502_C01_036E": {"label": "Estimate!!Total!!Foreign-born population!!Average family size", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_036EA,S0502_C01_036M,S0502_C01_036MA"}, "S1601_C02_014E": {"label": "Estimate!!Percent!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Asian and Pacific Island languages!!18 to 64 years old", "concept": "Language Spoken at Home", "predicateType": "float", "group": "S1601", "limit": 0, "attributes": "S1601_C02_014EA,S1601_C02_014M,S1601_C02_014MA"}, "S2702_C02_035E": {"label": "Estimate!!Total Uninsured!!RESIDENCE 1 YEAR AGO!!Civilian noninstitutionalized population 1 year and over!!Different House in the U.S.", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_035EA,S2702_C02_035M,S2702_C02_035MA"}, "S1601_C02_015E": {"label": "Estimate!!Percent!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Asian and Pacific Island languages!!65 years old and over", "concept": "Language Spoken at Home", "predicateType": "float", "group": "S1601", "limit": 0, "attributes": "S1601_C02_015EA,S1601_C02_015M,S1601_C02_015MA"}, "S0502_C01_035E": {"label": "Estimate!!Total!!Foreign-born population!!Average household size", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_035EA,S0502_C01_035M,S0502_C01_035MA"}, "S2603_C07_002E": {"label": "Estimate!!Military quarters/military ships!!Total population!!SEX AND AGE!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C07_002EA,S2603_C07_002M,S2603_C07_002MA"}, "S0802_C04_100E": {"label": "Estimate!!Public transportation!!PERCENT ALLOCATED!!Travel time to work", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "int", "group": "S0802", "limit": 0, "attributes": "S0802_C04_100EA,S0802_C04_100M,S0802_C04_100MA"}, "S2901_C02_020E": {"label": "Estimate!!Percent!!Citizens 18 years and over!!EDUCATIONAL ATTAINMENT!!Some college, no degree", "concept": "Citizen, Voting-Age Population by Selected Characteristics", "predicateType": "float", "group": "S2901", "limit": 0, "attributes": "S2901_C02_020EA,S2901_C02_020M,S2901_C02_020MA"}, "S2702_C02_036E": {"label": "Estimate!!Total Uninsured!!RESIDENCE 1 YEAR AGO!!Civilian noninstitutionalized population 1 year and over!!Different House in the U.S.!!Same county", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_036EA,S2702_C02_036M,S2702_C02_036MA"}, "S1601_C02_016E": {"label": "Estimate!!Percent!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Other languages", "concept": "Language Spoken at Home", "predicateType": "float", "group": "S1601", "limit": 0, "attributes": "S1601_C02_016EA,S1601_C02_016M,S1601_C02_016MA"}, "S0502_C01_034E": {"label": "Estimate!!Total!!Foreign-born population!!HOUSEHOLD TYPE!!In other households", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_034EA,S0502_C01_034M,S0502_C01_034MA"}, "S1601_C02_017E": {"label": "Estimate!!Percent!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Other languages!!5 to 17 years old", "concept": "Language Spoken at Home", "predicateType": "float", "group": "S1601", "limit": 0, "attributes": "S1601_C02_017EA,S1601_C02_017M,S1601_C02_017MA"}, "S2603_C07_001E": {"label": "Estimate!!Military quarters/military ships!!Total population", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C07_001EA,S2603_C07_001M,S2603_C07_001MA"}, "S0802_C04_101E": {"label": "Estimate!!Public transportation!!PERCENT ALLOCATED!!Vehicles available", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "int", "group": "S0802", "limit": 0, "attributes": "S0802_C04_101EA,S0802_C04_101M,S0802_C04_101MA"}, "S2702_C02_037E": {"label": "Estimate!!Total Uninsured!!RESIDENCE 1 YEAR AGO!!Civilian noninstitutionalized population 1 year and over!!Different House in the U.S.!!Different county", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_037EA,S2702_C02_037M,S2702_C02_037MA"}, "S0502_C01_033E": {"label": "Estimate!!Total!!Foreign-born population!!HOUSEHOLD TYPE!!In married-couple family", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_033EA,S0502_C01_033M,S0502_C01_033MA"}, "S2702_C02_038E": {"label": "Estimate!!Total Uninsured!!RESIDENCE 1 YEAR AGO!!Civilian noninstitutionalized population 1 year and over!!Different House in the U.S.!!Different county!!Same state", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_038EA,S2702_C02_038M,S2702_C02_038MA"}, "S2603_C07_004E": {"label": "Estimate!!Military quarters/military ships!!Total population!!SEX AND AGE!!Under 15 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C07_004EA,S2603_C07_004M,S2603_C07_004MA"}, "S2901_C02_022E": {"label": "Estimate!!Percent!!Citizens 18 years and over!!EDUCATIONAL ATTAINMENT!!Bachelor's degree", "concept": "Citizen, Voting-Age Population by Selected Characteristics", "predicateType": "float", "group": "S2901", "limit": 0, "attributes": "S2901_C02_022EA,S2901_C02_022M,S2901_C02_022MA"}, "S0502_C01_032E": {"label": "Estimate!!Total!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_032EA,S0502_C01_032M,S0502_C01_032MA"}, "S1601_C02_010E": {"label": "Estimate!!Percent!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Other Indo-European languages!!18 to 64 years old", "concept": "Language Spoken at Home", "predicateType": "float", "group": "S1601", "limit": 0, "attributes": "S1601_C02_010EA,S1601_C02_010M,S1601_C02_010MA"}, "S2702_C02_039E": {"label": "Estimate!!Total Uninsured!!RESIDENCE 1 YEAR AGO!!Civilian noninstitutionalized population 1 year and over!!Different House in the U.S.!!Different county!!Different state", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_039EA,S2702_C02_039M,S2702_C02_039MA"}, "S2603_C07_003E": {"label": "Estimate!!Military quarters/military ships!!Total population!!SEX AND AGE!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C07_003EA,S2603_C07_003M,S2603_C07_003MA"}, "S2901_C02_021E": {"label": "Estimate!!Percent!!Citizens 18 years and over!!EDUCATIONAL ATTAINMENT!!Associate's degree", "concept": "Citizen, Voting-Age Population by Selected Characteristics", "predicateType": "float", "group": "S2901", "limit": 0, "attributes": "S2901_C02_021EA,S2901_C02_021M,S2901_C02_021MA"}, "S1601_C02_011E": {"label": "Estimate!!Percent!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Other Indo-European languages!!65 years old and over", "concept": "Language Spoken at Home", "predicateType": "float", "group": "S1601", "limit": 0, "attributes": "S1601_C02_011EA,S1601_C02_011M,S1601_C02_011MA"}, "S0502_C01_031E": {"label": "Estimate!!Total!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_031EA,S0502_C01_031M,S0502_C01_031MA"}, "S1702_C03_020E": {"label": "Estimate!!Total!!Married-couple families!!Families!!EDUCATIONAL ATTAINMENT OF HOUSEHOLDER!!Less than high school graduate", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C03_020EA,S1702_C03_020M,S1702_C03_020MA"}, "S2603_C07_006E": {"label": "Estimate!!Military quarters/military ships!!Total population!!SEX AND AGE!!18 to 24 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C07_006EA,S2603_C07_006M,S2603_C07_006MA"}, "S0502_C01_030E": {"label": "Estimate!!Total!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_030EA,S0502_C01_030M,S0502_C01_030MA"}, "S2901_C02_024E": {"label": "Estimate!!Percent!!Citizens 18 years and over!!EDUCATIONAL ATTAINMENT!!High school degree or higher", "concept": "Citizen, Voting-Age Population by Selected Characteristics", "predicateType": "float", "group": "S2901", "limit": 0, "attributes": "S2901_C02_024EA,S2901_C02_024M,S2901_C02_024MA"}, "S1601_C02_012E": {"label": "Estimate!!Percent!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Asian and Pacific Island languages", "concept": "Language Spoken at Home", "predicateType": "float", "group": "S1601", "limit": 0, "attributes": "S1601_C02_012EA,S1601_C02_012M,S1601_C02_012MA"}, "S0506_C04_061E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed!!Percent of civilian labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_061EA,S0506_C04_061M,S0506_C04_061MA"}, "S2603_C07_005E": {"label": "Estimate!!Military quarters/military ships!!Total population!!SEX AND AGE!!15 to 17 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C07_005EA,S2603_C07_005M,S2603_C07_005MA"}, "S2901_C02_023E": {"label": "Estimate!!Percent!!Citizens 18 years and over!!EDUCATIONAL ATTAINMENT!!Graduate or professional degree", "concept": "Citizen, Voting-Age Population by Selected Characteristics", "predicateType": "float", "group": "S2901", "limit": 0, "attributes": "S2901_C02_023EA,S2901_C02_023M,S2901_C02_023MA"}, "S0506_C04_060E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_060EA,S0506_C04_060M,S0506_C04_060MA"}, "S1601_C02_013E": {"label": "Estimate!!Percent!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Asian and Pacific Island languages!!5 to 17 years old", "concept": "Language Spoken at Home", "predicateType": "float", "group": "S1601", "limit": 0, "attributes": "S1601_C02_013EA,S1601_C02_013M,S1601_C02_013MA"}, "S2702PR_C02_077E": {"label": "Estimate!!Total Uninsured!!Civilian noninstitutionalized workers 16 years and over!!INDUSTRY!!Public administration", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_077EA,S2702PR_C02_077M,S2702PR_C02_077MA"}, "S2301_C02_026E": {"label": "Estimate!!Labor Force Participation Rate!!Population 20 to 64 years!!SEX!!Female!!With own children under 18 years!!With own children under 6 years and 6 to 17 years", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C02_026EA,S2301_C02_026M,S2301_C02_026MA"}, "S2802_C07_016E": {"label": "Estimate!!Percent no computer in household!!Total population in households!!EDUCATIONAL ATTAINMENT!!Household population 25 years and over!!High school graduate (includes equivalency), some college or associate's degree", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "float", "group": "S2802", "limit": 0, "attributes": "S2802_C07_016EA,S2802_C07_016M,S2802_C07_016MA"}, "S0505_C05_103E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income!!Mean Supplemental Security Income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C05_103EA,S0505_C05_103M,S0505_C05_103MA"}, "S0101_C06_024E": {"label": "Estimate!!Percent Female!!Total population!!SELECTED AGE CATEGORIES!!15 to 44 years", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C06_024EA,S0101_C06_024M,S0101_C06_024MA"}, "S0502_C01_064E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Population 16 years and over!!Not in labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_064EA,S0502_C01_064M,S0502_C01_064MA"}, "S2301_C02_025E": {"label": "Estimate!!Labor Force Participation Rate!!Population 20 to 64 years!!SEX!!Female!!With own children under 18 years!!With own children under 6 years only", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C02_025EA,S2301_C02_025M,S2301_C02_025MA"}, "S2702PR_C02_076E": {"label": "Estimate!!Total Uninsured!!Civilian noninstitutionalized workers 16 years and over!!INDUSTRY!!Other services (except public administration)", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_076EA,S2702PR_C02_076M,S2702PR_C02_076MA"}, "S2802_C07_017E": {"label": "Estimate!!Percent no computer in household!!Total population in households!!EDUCATIONAL ATTAINMENT!!Household population 25 years and over!!Bachelor's degree or higher", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "float", "group": "S2802", "limit": 0, "attributes": "S2802_C07_017EA,S2802_C07_017M,S2802_C07_017MA"}, "S0502_C01_063E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Armed Forces", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_063EA,S0502_C01_063M,S0502_C01_063MA"}, "S0505_C05_104E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_104EA,S0505_C05_104M,S0505_C05_104MA"}, "S0101_C06_023E": {"label": "Estimate!!Percent Female!!Total population!!SELECTED AGE CATEGORIES!!18 to 24 years", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C06_023EA,S0101_C06_023M,S0101_C06_023MA"}, "S2702PR_C02_079E": {"label": "Estimate!!Total Uninsured!!Civilian noninstitutionalized workers 16 years and over!!OCCUPATION!!Service occupations", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_079EA,S2702PR_C02_079M,S2702PR_C02_079MA"}, "S2301_C02_024E": {"label": "Estimate!!Labor Force Participation Rate!!Population 20 to 64 years!!SEX!!Female!!With own children under 18 years", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C02_024EA,S2301_C02_024M,S2301_C02_024MA"}, "S2802_C07_014E": {"label": "Estimate!!Percent no computer in household!!Total population in households!!EDUCATIONAL ATTAINMENT!!Household population 25 years and over", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "float", "group": "S2802", "limit": 0, "attributes": "S2802_C07_014EA,S2802_C07_014M,S2802_C07_014MA"}, "S0505_C05_105E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income!!Mean cash public assistance income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C05_105EA,S0505_C05_105M,S0505_C05_105MA"}, "S0502_C01_062E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed!!Percent of civilian labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_062EA,S0502_C01_062M,S0502_C01_062MA"}, "S0101_C06_022E": {"label": "Estimate!!Percent Female!!Total population!!SELECTED AGE CATEGORIES!!Under 18 years", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C06_022EA,S0101_C06_022M,S0101_C06_022MA"}, "S0506_C04_041E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C04_041EA,S0506_C04_041M,S0506_C04_041MA"}, "S2702PR_C02_078E": {"label": "Estimate!!Total Uninsured!!Civilian noninstitutionalized workers 16 years and over!!OCCUPATION!!Management, business, science, and arts occupations", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_078EA,S2702PR_C02_078M,S2702PR_C02_078MA"}, "S2802_C07_015E": {"label": "Estimate!!Percent no computer in household!!Total population in households!!EDUCATIONAL ATTAINMENT!!Household population 25 years and over!!Less than high school graduate or equivalency", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "float", "group": "S2802", "limit": 0, "attributes": "S2802_C07_015EA,S2802_C07_015M,S2802_C07_015MA"}, "S2301_C02_023E": {"label": "Estimate!!Labor Force Participation Rate!!Population 20 to 64 years!!SEX!!Female", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C02_023EA,S2301_C02_023M,S2301_C02_023MA"}, "S0502_C01_061E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_061EA,S0502_C01_061M,S0502_C01_061MA"}, "S0101_C06_021E": {"label": "Estimate!!Percent Female!!Total population!!SELECTED AGE CATEGORIES!!15 to 17 years", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C06_021EA,S0101_C06_021M,S0101_C06_021MA"}, "S0506_C04_040E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_040EA,S0506_C04_040M,S0506_C04_040MA"}, "S0505_C05_106E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_106EA,S0505_C05_106M,S0505_C05_106MA"}, "S0506_C04_043E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Elementary school (grades K-8)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_043EA,S0506_C04_043M,S0506_C04_043MA"}, "S0101_C06_028E": {"label": "Estimate!!Percent Female!!Total population!!SELECTED AGE CATEGORIES!!60 years and over", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C06_028EA,S0101_C06_028M,S0101_C06_028MA"}, "S2301_C02_022E": {"label": "Estimate!!Labor Force Participation Rate!!Population 20 to 64 years!!SEX!!Male", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C02_022EA,S2301_C02_022M,S2301_C02_022MA"}, "S0502_C01_060E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Employed", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_060EA,S0502_C01_060M,S0502_C01_060MA"}, "S2301_C02_021E": {"label": "Estimate!!Labor Force Participation Rate!!Population 20 to 64 years", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C02_021EA,S2301_C02_021M,S2301_C02_021MA"}, "S0101_C06_027E": {"label": "Estimate!!Percent Female!!Total population!!SELECTED AGE CATEGORIES!!21 years and over", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C06_027EA,S0101_C06_027M,S0101_C06_027MA"}, "S0505_C05_100E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_100EA,S0505_C05_100M,S0505_C05_100MA"}, "S0506_C04_042E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Nursery school, preschool", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_042EA,S0506_C04_042M,S0506_C04_042MA"}, "S0506_C04_045E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!College or graduate school", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_045EA,S0506_C04_045M,S0506_C04_045MA"}, "S2802_C07_018E": {"label": "Estimate!!Percent no computer in household!!Total population in households!!EMPLOYMENT STATUS!!Civilian population 16 years and over", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "float", "group": "S2802", "limit": 0, "attributes": "S2802_C07_018EA,S2802_C07_018M,S2802_C07_018MA"}, "S2301_C02_020E": {"label": "Estimate!!Labor Force Participation Rate!!Population 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C02_020EA,S2301_C02_020M,S2301_C02_020MA"}, "S0101_C06_026E": {"label": "Estimate!!Percent Female!!Total population!!SELECTED AGE CATEGORIES!!18 years and over", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C06_026EA,S0101_C06_026M,S0101_C06_026MA"}, "S0505_C05_101E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income!!Mean Social Security income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C05_101EA,S0505_C05_101M,S0505_C05_101MA"}, "S0506_C04_044E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!High school (grades 9-12)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_044EA,S0506_C04_044M,S0506_C04_044MA"}, "S2802_C07_019E": {"label": "Estimate!!Percent no computer in household!!Total population in households!!EMPLOYMENT STATUS!!Civilian population 16 years and over!!In labor force", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "float", "group": "S2802", "limit": 0, "attributes": "S2802_C07_019EA,S2802_C07_019M,S2802_C07_019MA"}, "S0101_C06_025E": {"label": "Estimate!!Percent Female!!Total population!!SELECTED AGE CATEGORIES!!16 years and over", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C06_025EA,S0101_C06_025M,S0101_C06_025MA"}, "S0505_C05_102E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_102EA,S0505_C05_102M,S0505_C05_102MA"}, "S0506_C04_047E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than high school graduate", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_047EA,S0506_C04_047M,S0506_C04_047MA"}, "S0702_C02_010E": {"label": "Estimate!!Northeast!!Region of Current Residence!!PERCENT ALLOCATED!!Residence 1 year ago", "concept": "Movers Between Regions", "predicateType": "int", "group": "S0702", "limit": 0, "attributes": "S0702_C02_010EA,S0702_C02_010M,S0702_C02_010MA"}, "S2403_C04_013E": {"label": "Estimate!!Female!!Civilian employed population 16 years and over!!Finance and insurance, and real estate and rental and leasing:", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C04_013EA,S2403_C04_013M,S2403_C04_013MA"}, "S2503_C02_014E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS!!Less than $300", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C02_014EA,S2503_C02_014M,S2503_C02_014MA"}, "S0506_C04_046E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C04_046EA,S0506_C04_046M,S0506_C04_046MA"}, "S2403_C04_012E": {"label": "Estimate!!Female!!Civilian employed population 16 years and over!!Information", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C04_012EA,S2403_C04_012M,S2403_C04_012MA"}, "S2503_C02_013E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Median household income (dollars)", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C02_013EA,S2503_C02_013M,S2503_C02_013MA"}, "S0506_C04_049E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college or associate's degree", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_049EA,S0506_C04_049M,S0506_C04_049MA"}, "S2702PR_C02_071E": {"label": "Estimate!!Total Uninsured!!Civilian noninstitutionalized workers 16 years and over!!INDUSTRY!!Information", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_071EA,S2702PR_C02_071M,S2702PR_C02_071MA"}, "S2403_C04_015E": {"label": "Estimate!!Female!!Civilian employed population 16 years and over!!Finance and insurance, and real estate and rental and leasing:!!Real estate and rental and leasing", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C04_015EA,S2403_C04_015M,S2403_C04_015MA"}, "S2503_C02_012E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$150,000 or more", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C02_012EA,S2503_C02_012M,S2503_C02_012MA"}, "S0506_C04_048E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate (includes equivalency)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_048EA,S0506_C04_048M,S0506_C04_048MA"}, "S2702PR_C02_070E": {"label": "Estimate!!Total Uninsured!!Civilian noninstitutionalized workers 16 years and over!!INDUSTRY!!Transportation and warehousing, and utilities", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_070EA,S2702PR_C02_070M,S2702PR_C02_070MA"}, "S0901_C02_020E": {"label": "Estimate!!In married-couple family household!!Children under 18 years in households!!NATIVITY!!Foreign born", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C02_020EA,S0901_C02_020M,S0901_C02_020MA"}, "S2403_C04_014E": {"label": "Estimate!!Female!!Civilian employed population 16 years and over!!Finance and insurance, and real estate and rental and leasing:!!Finance and insurance", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C04_014EA,S2403_C04_014M,S2403_C04_014MA"}, "S2503_C02_011E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$100,000 to $149,999", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C02_011EA,S2503_C02_011M,S2503_C02_011MA"}, "S2702PR_C02_073E": {"label": "Estimate!!Total Uninsured!!Civilian noninstitutionalized workers 16 years and over!!INDUSTRY!!Professional, scientific, and management, and administrative and waste management services", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_073EA,S2702PR_C02_073M,S2702PR_C02_073MA"}, "S0901_C02_021E": {"label": "Estimate!!In married-couple family household!!Children under 18 years in households!!PRESENCE OF OTHER ADULTS!!Unmarried partner of householder present", "concept": "Children Characteristics", "predicateType": "int", "group": "S0901", "limit": 0, "attributes": "S0901_C02_021EA,S0901_C02_021M,S0901_C02_021MA"}, "S0101_C06_020E": {"label": "Estimate!!Percent Female!!Total population!!SELECTED AGE CATEGORIES!!5 to 14 years", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C06_020EA,S0101_C06_020M,S0101_C06_020MA"}, "S2503_C02_010E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$75,000 to $99,999", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C02_010EA,S2503_C02_010M,S2503_C02_010MA"}, "S2301_C02_029E": {"label": "Estimate!!Labor Force Participation Rate!!Population 20 to 64 years!!POVERTY STATUS IN THE PAST 12 MONTHS!!At or above the poverty level", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C02_029EA,S2301_C02_029M,S2301_C02_029MA"}, "S2702PR_C02_072E": {"label": "Estimate!!Total Uninsured!!Civilian noninstitutionalized workers 16 years and over!!INDUSTRY!!Finance and insurance, and real estate and rental and leasing", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_072EA,S2702PR_C02_072M,S2702PR_C02_072MA"}, "S0901_C02_022E": {"label": "Estimate!!In married-couple family household!!DISABILITY STATUS!!Civilian children under 18 years in households", "concept": "Children Characteristics", "predicateType": "int", "group": "S0901", "limit": 0, "attributes": "S0901_C02_022EA,S0901_C02_022M,S0901_C02_022MA"}, "S2702PR_C02_075E": {"label": "Estimate!!Total Uninsured!!Civilian noninstitutionalized workers 16 years and over!!INDUSTRY!!Arts, entertainment, and recreation, and accommodation and food services", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_075EA,S2702PR_C02_075M,S2702PR_C02_075MA"}, "S2301_C02_028E": {"label": "Estimate!!Labor Force Participation Rate!!Population 20 to 64 years!!POVERTY STATUS IN THE PAST 12 MONTHS!!Below poverty level", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C02_028EA,S2301_C02_028M,S2301_C02_028MA"}, "S0901_C02_023E": {"label": "Estimate!!In married-couple family household!!DISABILITY STATUS!!Civilian children under 18 years in households!!With any disability", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C02_023EA,S0901_C02_023M,S0901_C02_023MA"}, "S2403_C04_011E": {"label": "Estimate!!Female!!Civilian employed population 16 years and over!!Transportation and warehousing, and utilities:!!Utilities", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C04_011EA,S2403_C04_011M,S2403_C04_011MA"}, "S2702_C02_060E": {"label": "Estimate!!Total Uninsured!!Civilian noninstitutionalized workers 16 years and over!!CLASS OF WORKER!!Local government workers", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_060EA,S2702_C02_060M,S2702_C02_060MA"}, "S2301_C02_027E": {"label": "Estimate!!Labor Force Participation Rate!!Population 20 to 64 years!!SEX!!Female!!With own children under 18 years!!With own children 6 to 17 years only", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C02_027EA,S2301_C02_027M,S2301_C02_027MA"}, "S2702PR_C02_074E": {"label": "Estimate!!Total Uninsured!!Civilian noninstitutionalized workers 16 years and over!!INDUSTRY!!Educational services, and health care and social assistance", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_074EA,S2702PR_C02_074M,S2702PR_C02_074MA"}, "S2403_C04_010E": {"label": "Estimate!!Female!!Civilian employed population 16 years and over!!Transportation and warehousing, and utilities:!!Transportation and warehousing", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C04_010EA,S2403_C04_010M,S2403_C04_010MA"}, "S0901_C02_024E": {"label": "Estimate!!In married-couple family household!!SCHOOL ENROLLMENT!!Children 3 to 17 years in households", "concept": "Children Characteristics", "predicateType": "int", "group": "S0901", "limit": 0, "attributes": "S0901_C02_024EA,S0901_C02_024M,S0901_C02_024MA"}, "S2702_C02_061E": {"label": "Estimate!!Total Uninsured!!Civilian noninstitutionalized workers 16 years and over!!CLASS OF WORKER!!State government workers", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_061EA,S2702_C02_061M,S2702_C02_061MA"}, "S0502PR_C03_096E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!Median earnings (dollars) for full-time, year-round workers!!Male", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_096EA,S0502PR_C03_096M,S0502PR_C03_096MA"}, "S2901_C02_014E": {"label": "Estimate!!Percent!!Citizens 18 years and over!!RACE AND HISPANIC ORIGIN!!Two or More Races", "concept": "Citizen, Voting-Age Population by Selected Characteristics", "predicateType": "float", "group": "S2901", "limit": 0, "attributes": "S2901_C02_014EA,S2901_C02_014M,S2901_C02_014MA"}, "S0901_C02_013E": {"label": "Estimate!!In married-couple family household!!Children under 18 years in households!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C02_013EA,S0901_C02_013M,S0901_C02_013MA"}, "S2702_C02_062E": {"label": "Estimate!!Total Uninsured!!Civilian noninstitutionalized workers 16 years and over!!CLASS OF WORKER!!Federal government workers", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_062EA,S2702_C02_062M,S2702_C02_062MA"}, "S0502PR_C03_095E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$75,000 or more", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_095EA,S0502PR_C03_095M,S0502PR_C03_095MA"}, "S2901_C02_013E": {"label": "Estimate!!Percent!!Citizens 18 years and over!!RACE AND HISPANIC ORIGIN!!Some Other Race alone", "concept": "Citizen, Voting-Age Population by Selected Characteristics", "predicateType": "float", "group": "S2901", "limit": 0, "attributes": "S2901_C02_013EA,S2901_C02_013M,S2901_C02_013MA"}, "S2702_C02_063E": {"label": "Estimate!!Total Uninsured!!Civilian noninstitutionalized workers 16 years and over!!CLASS OF WORKER!!Self-employed workers in own not incorporated business workers", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_063EA,S2702_C02_063M,S2702_C02_063MA"}, "S0901_C02_014E": {"label": "Estimate!!In married-couple family household!!Children under 18 years in households!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C02_014EA,S0901_C02_014M,S0901_C02_014MA"}, "S0502PR_C03_094E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$50,000 to $74,999", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_094EA,S0502PR_C03_094M,S0502PR_C03_094MA"}, "S2901_C02_016E": {"label": "Estimate!!Percent!!Citizens 18 years and over!!RACE AND HISPANIC ORIGIN!!White alone, Not Hispanic or Latino", "concept": "Citizen, Voting-Age Population by Selected Characteristics", "predicateType": "float", "group": "S2901", "limit": 0, "attributes": "S2901_C02_016EA,S2901_C02_016M,S2901_C02_016MA"}, "S2702_C02_064E": {"label": "Estimate!!Total Uninsured!!Civilian noninstitutionalized workers 16 years and over!!CLASS OF WORKER!!Unpaid family workers", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_064EA,S2702_C02_064M,S2702_C02_064MA"}, "S0901_C02_015E": {"label": "Estimate!!In married-couple family household!!Children under 18 years in households!!RELATIONSHIP TO HOUSEHOLDER!!Own child (biological, step or adopted)", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C02_015EA,S0901_C02_015M,S0901_C02_015MA"}, "S2503_C02_019E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS!!$1,500 to $1,999", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C02_019EA,S2503_C02_019M,S2503_C02_019MA"}, "S0502PR_C03_093E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$35,000 to $49,999", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_093EA,S0502PR_C03_093M,S0502PR_C03_093MA"}, "S2901_C02_015E": {"label": "Estimate!!Percent!!Citizens 18 years and over!!RACE AND HISPANIC ORIGIN!!Hispanic or Latino", "concept": "Citizen, Voting-Age Population by Selected Characteristics", "predicateType": "float", "group": "S2901", "limit": 0, "attributes": "S2901_C02_015EA,S2901_C02_015M,S2901_C02_015MA"}, "S2702_C02_065E": {"label": "Estimate!!Total Uninsured!!Civilian noninstitutionalized workers 16 years and over!!INDUSTRY!!Agriculture, forestry, fishing and hunting, and mining", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_065EA,S2702_C02_065M,S2702_C02_065MA"}, "S0901_C02_016E": {"label": "Estimate!!In married-couple family household!!Children under 18 years in households!!RELATIONSHIP TO HOUSEHOLDER!!Grandchild", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C02_016EA,S0901_C02_016M,S0901_C02_016MA"}, "S2503_C02_018E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS!!$1,000 to $1,499", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C02_018EA,S2503_C02_018M,S2503_C02_018MA"}, "S2403_C04_017E": {"label": "Estimate!!Female!!Civilian employed population 16 years and over!!Professional, scientific, and management, and administrative and waste management services:!!Professional, scientific, and technical services", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C04_017EA,S2403_C04_017M,S2403_C04_017MA"}, "S2901_C02_018E": {"label": "Estimate!!Percent!!Citizens 18 years and over!!EDUCATIONAL ATTAINMENT!!9th to 12th grade, no diploma", "concept": "Citizen, Voting-Age Population by Selected Characteristics", "predicateType": "float", "group": "S2901", "limit": 0, "attributes": "S2901_C02_018EA,S2901_C02_018M,S2901_C02_018MA"}, "S0901_C02_017E": {"label": "Estimate!!In married-couple family household!!Children under 18 years in households!!RELATIONSHIP TO HOUSEHOLDER!!Other relatives", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C02_017EA,S0901_C02_017M,S0901_C02_017MA"}, "S2702_C02_066E": {"label": "Estimate!!Total Uninsured!!Civilian noninstitutionalized workers 16 years and over!!INDUSTRY!!Construction", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_066EA,S2702_C02_066M,S2702_C02_066MA"}, "S2503_C02_017E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS!!$800 to $999", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C02_017EA,S2503_C02_017M,S2503_C02_017MA"}, "S0502PR_C03_099E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_099EA,S0502PR_C03_099M,S0502PR_C03_099MA"}, "S2403_C04_016E": {"label": "Estimate!!Female!!Civilian employed population 16 years and over!!Professional, scientific, and management, and administrative and waste management services:", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C04_016EA,S2403_C04_016M,S2403_C04_016MA"}, "S2901_C02_017E": {"label": "Estimate!!Percent!!Citizens 18 years and over!!EDUCATIONAL ATTAINMENT!!Less than 9th grade", "concept": "Citizen, Voting-Age Population by Selected Characteristics", "predicateType": "float", "group": "S2901", "limit": 0, "attributes": "S2901_C02_017EA,S2901_C02_017M,S2901_C02_017MA"}, "S0901_C02_018E": {"label": "Estimate!!In married-couple family household!!Children under 18 years in households!!RELATIONSHIP TO HOUSEHOLDER!!Foster child or other unrelated child", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C02_018EA,S0901_C02_018M,S0901_C02_018MA"}, "S2702_C02_067E": {"label": "Estimate!!Total Uninsured!!Civilian noninstitutionalized workers 16 years and over!!INDUSTRY!!Manufacturing", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_067EA,S2702_C02_067M,S2702_C02_067MA"}, "S0502PR_C03_098E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_098EA,S0502PR_C03_098M,S0502PR_C03_098MA"}, "S2403_C04_019E": {"label": "Estimate!!Female!!Civilian employed population 16 years and over!!Professional, scientific, and management, and administrative and waste management services:!!Administrative and support and waste management services", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C04_019EA,S2403_C04_019M,S2403_C04_019MA"}, "S0901_C02_019E": {"label": "Estimate!!In married-couple family household!!Children under 18 years in households!!NATIVITY!!Native", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C02_019EA,S0901_C02_019M,S0901_C02_019MA"}, "S2702_C02_068E": {"label": "Estimate!!Total Uninsured!!Civilian noninstitutionalized workers 16 years and over!!INDUSTRY!!Wholesale trade", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_068EA,S2702_C02_068M,S2702_C02_068MA"}, "S2503_C02_016E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS!!$500 to $799", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C02_016EA,S2503_C02_016M,S2503_C02_016MA"}, "S0502PR_C03_097E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!Median earnings (dollars) for full-time, year-round workers!!Female", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_097EA,S0502PR_C03_097M,S0502PR_C03_097MA"}, "S2403_C04_018E": {"label": "Estimate!!Female!!Civilian employed population 16 years and over!!Professional, scientific, and management, and administrative and waste management services:!!Management of companies and enterprises", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C04_018EA,S2403_C04_018M,S2403_C04_018MA"}, "S2901_C02_019E": {"label": "Estimate!!Percent!!Citizens 18 years and over!!EDUCATIONAL ATTAINMENT!!High school graduate (includes equivalency)", "concept": "Citizen, Voting-Age Population by Selected Characteristics", "predicateType": "float", "group": "S2901", "limit": 0, "attributes": "S2901_C02_019EA,S2901_C02_019M,S2901_C02_019MA"}, "S2702_C02_069E": {"label": "Estimate!!Total Uninsured!!Civilian noninstitutionalized workers 16 years and over!!INDUSTRY!!Retail trade", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_069EA,S2702_C02_069M,S2702_C02_069MA"}, "S2503_C02_015E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS!!$300 to $499", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C02_015EA,S2503_C02_015M,S2503_C02_015MA"}, "S2301_C02_030E": {"label": "Estimate!!Labor Force Participation Rate!!Population 20 to 64 years!!DISABILITY STATUS!!With any disability", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C02_030EA,S2301_C02_030M,S2301_C02_030MA"}, "S1702_C03_050E": {"label": "Estimate!!Total!!Married-couple families!!Families!!ALL FAMILIES WITH INCOME BELOW THE FOLLOWING POVERTY RATIOS!!500 percent of poverty level", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C03_050EA,S1702_C03_050M,S1702_C03_050MA"}, "S2802_C07_020E": {"label": "Estimate!!Percent no computer in household!!Total population in households!!EMPLOYMENT STATUS!!Civilian population 16 years and over!!In labor force!!Employed", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "float", "group": "S2802", "limit": 0, "attributes": "S2802_C07_020EA,S2802_C07_020M,S2802_C07_020MA"}, "S0101_C06_019E": {"label": "Estimate!!Percent Female!!Total population!!AGE!!85 years and over", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C06_019EA,S0101_C06_019M,S0101_C06_019MA"}, "S2802_C07_021E": {"label": "Estimate!!Percent no computer in household!!Total population in households!!EMPLOYMENT STATUS!!Civilian population 16 years and over!!In labor force!!Unemployed", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "float", "group": "S2802", "limit": 0, "attributes": "S2802_C07_021EA,S2802_C07_021M,S2802_C07_021MA"}, "S0101_C06_018E": {"label": "Estimate!!Percent Female!!Total population!!AGE!!80 to 84 years", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C06_018EA,S0101_C06_018M,S0101_C06_018MA"}, "S0101_C06_017E": {"label": "Estimate!!Percent Female!!Total population!!AGE!!75 to 79 years", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C06_017EA,S0101_C06_017M,S0101_C06_017MA"}, "S0502_C01_069E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Unpaid family workers", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_069EA,S0502_C01_069M,S0502_C01_069MA"}, "S0502PR_C03_092E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$25,000 to $34,999", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_092EA,S0502PR_C03_092M,S0502PR_C03_092MA"}, "S2901_C02_010E": {"label": "Estimate!!Percent!!Citizens 18 years and over!!RACE AND HISPANIC ORIGIN!!Asian alone", "concept": "Citizen, Voting-Age Population by Selected Characteristics", "predicateType": "float", "group": "S2901", "limit": 0, "attributes": "S2901_C02_010EA,S2901_C02_010M,S2901_C02_010MA"}, "S0502_C01_068E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Self-employed workers in own not incorporated business", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_068EA,S0502_C01_068M,S0502_C01_068MA"}, "S0505_C05_107E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income!!Mean retirement income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C05_107EA,S0505_C05_107M,S0505_C05_107MA"}, "S0502PR_C03_091E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$15,000 to $24,999", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_091EA,S0502PR_C03_091M,S0502PR_C03_091MA"}, "S0502_C01_067E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Government workers", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_067EA,S0502_C01_067M,S0502_C01_067MA"}, "S0505_C05_108E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Food Stamp/SNAP benefits", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_108EA,S0505_C05_108M,S0505_C05_108MA"}, "S0502PR_C03_090E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$10,000 to $14,999", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_090EA,S0502PR_C03_090M,S0502PR_C03_090MA"}, "S2802_C07_022E": {"label": "Estimate!!Percent no computer in household!!Total population in households!!EMPLOYMENT STATUS!!Civilian population 16 years and over!!Not in labor force", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "float", "group": "S2802", "limit": 0, "attributes": "S2802_C07_022EA,S2802_C07_022M,S2802_C07_022MA"}, "S2901_C02_012E": {"label": "Estimate!!Percent!!Citizens 18 years and over!!RACE AND HISPANIC ORIGIN!!Native Hawaiian and Other Pacific Islander alone", "concept": "Citizen, Voting-Age Population by Selected Characteristics", "predicateType": "float", "group": "S2901", "limit": 0, "attributes": "S2901_C02_012EA,S2901_C02_012M,S2901_C02_012MA"}, "S0505_C05_109E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!Median Household income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C05_109EA,S0505_C05_109M,S0505_C05_109MA"}, "S0502_C01_066E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Private wage and salary workers", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_066EA,S0502_C01_066M,S0502_C01_066MA"}, "S2901_C02_011E": {"label": "Estimate!!Percent!!Citizens 18 years and over!!RACE AND HISPANIC ORIGIN!!American Indian and Alaska Native alone", "concept": "Citizen, Voting-Age Population by Selected Characteristics", "predicateType": "float", "group": "S2901", "limit": 0, "attributes": "S2901_C02_011EA,S2901_C02_011M,S2901_C02_011MA"}, "S0502_C01_065E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C01_065EA,S0502_C01_065M,S0502_C01_065MA"}, "S2702PR_C02_089E": {"label": "Estimate!!Total Uninsured!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION ADJUSTED DOLLARS)!!Civilian noninstitutionalized population 16 years and older with earnings!!$50,000 to $74,999", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_089EA,S2702PR_C02_089M,S2702PR_C02_089MA"}, "S2802_C07_004E": {"label": "Estimate!!Percent no computer in household!!Total population in households!!AGE!!65 years and over", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "float", "group": "S2802", "limit": 0, "attributes": "S2802_C07_004EA,S2802_C07_004M,S2802_C07_004MA"}, "S0702_C02_006E": {"label": "Estimate!!Northeast!!Region of Current Residence!!Population 1 year and over!!Movers between regions by region of residence 1 year ago!!Midwest", "concept": "Movers Between Regions", "predicateType": "int", "group": "S0702", "limit": 0, "attributes": "S0702_C02_006EA,S0702_C02_006M,S0702_C02_006MA"}, "S0502_C01_052E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Graduate or professional degree", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_052EA,S0502_C01_052M,S0502_C01_052MA"}, "S0505_C05_115E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_115EA,S0505_C05_115M,S0505_C05_115MA"}, "S0101_C06_036E": {"label": "Estimate!!Percent Female!!Total population!!SUMMARY INDICATORS!!Child dependency ratio", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C06_036EA,S0101_C06_036M,S0101_C06_036MA"}, "S0103PR_C02_006E": {"label": "Estimate!!65 years and over!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_006EA,S0103PR_C02_006M,S0103PR_C02_006MA"}, "S2702PR_C02_088E": {"label": "Estimate!!Total Uninsured!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION ADJUSTED DOLLARS)!!Civilian noninstitutionalized population 16 years and older with earnings!!$35,000 to $49,999", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_088EA,S2702PR_C02_088M,S2702PR_C02_088MA"}, "S2601A_C01_001E": {"label": "Estimate!!Total population!!Total population", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_001EA,S2601A_C01_001M,S2601A_C01_001MA"}, "S0103PR_C02_005E": {"label": "Estimate!!65 years and over!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_005EA,S0103PR_C02_005M,S0103PR_C02_005MA"}, "S2802_C07_005E": {"label": "Estimate!!Percent no computer in household!!Total population in households!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "float", "group": "S2802", "limit": 0, "attributes": "S2802_C07_005EA,S2802_C07_005M,S2802_C07_005MA"}, "S0702_C02_007E": {"label": "Estimate!!Northeast!!Region of Current Residence!!Population 1 year and over!!Movers between regions by region of residence 1 year ago!!South", "concept": "Movers Between Regions", "predicateType": "int", "group": "S0702", "limit": 0, "attributes": "S0702_C02_007EA,S0702_C02_007M,S0702_C02_007MA"}, "S0505_C05_116E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_116EA,S0505_C05_116M,S0505_C05_116MA"}, "S0502_C01_051E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_051EA,S0502_C01_051M,S0502_C01_051MA"}, "S0101_C06_035E": {"label": "Estimate!!Percent Female!!Total population!!SUMMARY INDICATORS!!Old-age dependency ratio", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C06_035EA,S0101_C06_035M,S0101_C06_035MA"}, "S0103PR_C02_004E": {"label": "Estimate!!65 years and over!!Total population!!SEX AND AGE!!Median age (years)", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_004EA,S0103PR_C02_004M,S0103PR_C02_004MA"}, "S0702_C02_008E": {"label": "Estimate!!Northeast!!Region of Current Residence!!Population 1 year and over!!Movers between regions by region of residence 1 year ago!!West", "concept": "Movers Between Regions", "predicateType": "int", "group": "S0702", "limit": 0, "attributes": "S0702_C02_008EA,S0702_C02_008M,S0702_C02_008MA"}, "S2802_C07_002E": {"label": "Estimate!!Percent no computer in household!!Total population in households!!AGE!!Under 18 years", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "float", "group": "S2802", "limit": 0, "attributes": "S2802_C07_002EA,S2802_C07_002M,S2802_C07_002MA"}, "S0502_C01_050E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college or associate's degree", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_050EA,S0502_C01_050M,S0502_C01_050MA"}, "S0101_C06_034E": {"label": "Estimate!!Percent Female!!Total population!!SUMMARY INDICATORS!!Age dependency ratio", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C06_034EA,S0101_C06_034M,S0101_C06_034MA"}, "S0505_C05_117E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_117EA,S0505_C05_117M,S0505_C05_117MA"}, "S2301_C02_035E": {"label": "Estimate!!Labor Force Participation Rate!!EDUCATIONAL ATTAINMENT!!Population 25 to 64 years!!Bachelor's degree or higher", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C02_035EA,S2301_C02_035M,S2301_C02_035MA"}, "S0702_C02_009E": {"label": "Estimate!!Northeast!!Region of Current Residence!!Population 1 year and over!!Movers from abroad", "concept": "Movers Between Regions", "predicateType": "int", "group": "S0702", "limit": 0, "attributes": "S0702_C02_009EA,S0702_C02_009M,S0702_C02_009MA"}, "S0103PR_C02_003E": {"label": "Estimate!!65 years and over!!Total population!!SEX AND AGE!!Female", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_003EA,S0103PR_C02_003M,S0103PR_C02_003MA"}, "S2802_C07_003E": {"label": "Estimate!!Percent no computer in household!!Total population in households!!AGE!!18 to 64 years", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "float", "group": "S2802", "limit": 0, "attributes": "S2802_C07_003EA,S2802_C07_003M,S2802_C07_003MA"}, "S0101_C06_033E": {"label": "Estimate!!Percent Female!!Total population!!SUMMARY INDICATORS!!Sex ratio (males per 100 females)", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C06_033EA,S0101_C06_033M,S0101_C06_033MA"}, "S0505_C05_118E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_118EA,S0505_C05_118M,S0505_C05_118MA"}, "S2601A_C01_004E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!Under 15 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_004EA,S2601A_C01_004M,S2601A_C01_004MA"}, "S2802_C07_008E": {"label": "Estimate!!Percent no computer in household!!Total population in households!!RACE AND HISPANIC OR LATINO ORIGIN!!Asian alone", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "float", "group": "S2802", "limit": 0, "attributes": "S2802_C07_008EA,S2802_C07_008M,S2802_C07_008MA"}, "S0103PR_C02_002E": {"label": "Estimate!!65 years and over!!Total population!!SEX AND AGE!!Male", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_002EA,S0103PR_C02_002M,S0103PR_C02_002MA"}, "S2301_C02_034E": {"label": "Estimate!!Labor Force Participation Rate!!EDUCATIONAL ATTAINMENT!!Population 25 to 64 years!!Some college or associate's degree", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C02_034EA,S2301_C02_034M,S2301_C02_034MA"}, "S0505_C05_111E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C05_111EA,S0505_C05_111M,S0505_C05_111MA"}, "S0506_C04_031E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_031EA,S0506_C04_031M,S0506_C04_031MA"}, "S2601A_C01_005E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!15 to 17 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_005EA,S2601A_C01_005M,S2601A_C01_005MA"}, "S2802_C07_009E": {"label": "Estimate!!Percent no computer in household!!Total population in households!!RACE AND HISPANIC OR LATINO ORIGIN!!Native Hawaiian and Other Pacific Islander alone", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "float", "group": "S2802", "limit": 0, "attributes": "S2802_C07_009EA,S2802_C07_009M,S2802_C07_009MA"}, "S0103PR_C02_001E": {"label": "Estimate!!65 years and over!!Total population", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_001EA,S0103PR_C02_001M,S0103PR_C02_001MA"}, "S2301_C02_033E": {"label": "Estimate!!Labor Force Participation Rate!!EDUCATIONAL ATTAINMENT!!Population 25 to 64 years!!High school graduate (includes equivalency)", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C02_033EA,S2301_C02_033M,S2301_C02_033MA"}, "S0505_C05_112E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!Below 100 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_112EA,S0505_C05_112M,S0505_C05_112MA"}, "S0506_C04_030E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_030EA,S0506_C04_030M,S0506_C04_030MA"}, "S0506_C04_033E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Foreign-born population!!HOUSEHOLD TYPE!!In other households", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_033EA,S0506_C04_033M,S0506_C04_033MA"}, "S2601A_C01_002E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!Male", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_002EA,S2601A_C01_002M,S2601A_C01_002MA"}, "S2802_C07_006E": {"label": "Estimate!!Percent no computer in household!!Total population in households!!RACE AND HISPANIC OR LATINO ORIGIN!!Black or African American alone", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "float", "group": "S2802", "limit": 0, "attributes": "S2802_C07_006EA,S2802_C07_006M,S2802_C07_006MA"}, "S2301_C02_032E": {"label": "Estimate!!Labor Force Participation Rate!!EDUCATIONAL ATTAINMENT!!Population 25 to 64 years!!Less than high school graduate", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C02_032EA,S2301_C02_032M,S2301_C02_032MA"}, "S0101_C06_038E": {"label": "Estimate!!Percent Female!!Total population!!PERCENT ALLOCATED!!Age", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C06_038EA,S0101_C06_038M,S0101_C06_038MA"}, "S0505_C05_113E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!100 to 199 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_113EA,S0505_C05_113M,S0505_C05_113MA"}, "S2601A_C01_003E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!Female", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_003EA,S2601A_C01_003M,S2601A_C01_003MA"}, "S0506_C04_032E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Foreign-born population!!HOUSEHOLD TYPE!!In married-couple family", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_032EA,S0506_C04_032M,S0506_C04_032MA"}, "S2802_C07_007E": {"label": "Estimate!!Percent no computer in household!!Total population in households!!RACE AND HISPANIC OR LATINO ORIGIN!!American Indian and Alaska Native alone", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "float", "group": "S2802", "limit": 0, "attributes": "S2802_C07_007EA,S2802_C07_007M,S2802_C07_007MA"}, "S2301_C02_031E": {"label": "Estimate!!Labor Force Participation Rate!!EDUCATIONAL ATTAINMENT!!Population 25 to 64 years", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C02_031EA,S2301_C02_031M,S2301_C02_031MA"}, "S0101_C06_037E": {"label": "Estimate!!Percent Female!!Total population!!PERCENT ALLOCATED!!Sex", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C06_037EA,S0101_C06_037M,S0101_C06_037MA"}, "S0505_C05_114E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!At or above 200 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_114EA,S0505_C05_114M,S0505_C05_114MA"}, "S0506_C04_035E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Foreign-born population!!Average family size", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_035EA,S0506_C04_035M,S0506_C04_035MA"}, "S2702PR_C02_081E": {"label": "Estimate!!Total Uninsured!!Civilian noninstitutionalized workers 16 years and over!!OCCUPATION!!Natural resources, construction, and maintenance occupations", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_081EA,S2702PR_C02_081M,S2702PR_C02_081MA"}, "S2403_C04_001E": {"label": "Estimate!!Female!!Civilian employed population 16 years and over", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C04_001EA,S2403_C04_001M,S2403_C04_001MA"}, "S2601A_C01_009E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!45 to 54 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_009EA,S2601A_C01_009M,S2601A_C01_009MA"}, "S2503_C02_026E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than $20,000!!Less than 20 percent", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C02_026EA,S2503_C02_026M,S2503_C02_026MA"}, "S0506_C04_034E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Foreign-born population!!Average household size", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_034EA,S0506_C04_034M,S0506_C04_034MA"}, "S2901_C02_009E": {"label": "Estimate!!Percent!!Citizens 18 years and over!!RACE AND HISPANIC ORIGIN!!Black or African American alone", "concept": "Citizen, Voting-Age Population by Selected Characteristics", "predicateType": "float", "group": "S2901", "limit": 0, "attributes": "S2901_C02_009EA,S2901_C02_009M,S2901_C02_009MA"}, "S2702PR_C02_080E": {"label": "Estimate!!Total Uninsured!!Civilian noninstitutionalized workers 16 years and over!!OCCUPATION!!Sales and office occupations", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_080EA,S2702PR_C02_080M,S2702PR_C02_080MA"}, "S0901_C02_030E": {"label": "Estimate!!In married-couple family household!!Children under 18 years in households", "concept": "Children Characteristics", "predicateType": "int", "group": "S0901", "limit": 0, "attributes": "S0901_C02_030EA,S0901_C02_030M,S0901_C02_030MA"}, "S2503_C02_025E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than $20,000", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C02_025EA,S2503_C02_025M,S2503_C02_025MA"}, "S2601A_C01_006E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!18 to 24 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_006EA,S2601A_C01_006M,S2601A_C01_006MA"}, "S0506_C04_037E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_037EA,S0506_C04_037M,S0506_C04_037MA"}, "S2702PR_C02_083E": {"label": "Estimate!!Total Uninsured!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION ADJUSTED DOLLARS)!!Civilian noninstitutionalized population 16 years and older with earnings", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "int", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_083EA,S2702PR_C02_083M,S2702PR_C02_083MA"}, "S0901_C02_031E": {"label": "Estimate!!In married-couple family household!!Children under 18 years in households!!PUBLIC ASSISTANCE IN THE PAST 12 MONTHS!!Children living in households with Supplemental Security Income (SSI), cash public assistance income, or Food Stamp/SNAP benefits", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C02_031EA,S0901_C02_031M,S0901_C02_031MA"}, "S2403_C04_003E": {"label": "Estimate!!Female!!Civilian employed population 16 years and over!!Agriculture, forestry, fishing and hunting, and mining:!!Agriculture, forestry, fishing and hunting", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C04_003EA,S2403_C04_003M,S2403_C04_003MA"}, "S2601A_C01_007E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!25 to 34 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_007EA,S2601A_C01_007M,S2601A_C01_007MA"}, "S2503_C02_024E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS!!Median (dollars)", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C02_024EA,S2503_C02_024M,S2503_C02_024MA"}, "S0506_C04_036E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!MARITAL STATUS!!Population 15 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C04_036EA,S0506_C04_036M,S0506_C04_036MA"}, "S2702PR_C02_082E": {"label": "Estimate!!Total Uninsured!!Civilian noninstitutionalized workers 16 years and over!!OCCUPATION!!Production, transportation, and material moving occupations", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_082EA,S2702PR_C02_082M,S2702PR_C02_082MA"}, "S0901_C02_032E": {"label": "Estimate!!In married-couple family household!!POVERTY STATUS IN THE PAST 12 MONTHS!!Children in households for whom poverty status is determined", "concept": "Children Characteristics", "predicateType": "int", "group": "S0901", "limit": 0, "attributes": "S0901_C02_032EA,S0901_C02_032M,S0901_C02_032MA"}, "S0702_C02_001E": {"label": "Estimate!!Northeast!!Region of Current Residence!!Population 1 year and over", "concept": "Movers Between Regions", "predicateType": "int", "group": "S0702", "limit": 0, "attributes": "S0702_C02_001EA,S0702_C02_001M,S0702_C02_001MA"}, "S0505_C05_110E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!Average number of workers per household", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_110EA,S0505_C05_110M,S0505_C05_110MA"}, "S2403_C04_002E": {"label": "Estimate!!Female!!Civilian employed population 16 years and over!!Agriculture, forestry, fishing and hunting, and mining:", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C04_002EA,S2403_C04_002M,S2403_C04_002MA"}, "S2503_C02_023E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS!!No cash rent", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C02_023EA,S2503_C02_023M,S2503_C02_023MA"}, "S2601A_C01_008E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!35 to 44 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_008EA,S2601A_C01_008M,S2601A_C01_008MA"}, "S0506_C04_039E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!MARITAL STATUS!!Population 15 years and over!!Divorced or separated", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_039EA,S0506_C04_039M,S0506_C04_039MA"}, "S2702PR_C02_085E": {"label": "Estimate!!Total Uninsured!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION ADJUSTED DOLLARS)!!Civilian noninstitutionalized population 16 years and older with earnings!!$5,000 to $14,999", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_085EA,S2702PR_C02_085M,S2702PR_C02_085MA"}, "S0901_C02_033E": {"label": "Estimate!!In married-couple family household!!POVERTY STATUS IN THE PAST 12 MONTHS!!Children in households for whom poverty status is determined!!Income in the past 12 months below poverty level", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C02_033EA,S0901_C02_033M,S0901_C02_033MA"}, "S0702_C02_002E": {"label": "Estimate!!Northeast!!Region of Current Residence!!Population 1 year and over!!Same residence (non-movers)", "concept": "Movers Between Regions", "predicateType": "int", "group": "S0702", "limit": 0, "attributes": "S0702_C02_002EA,S0702_C02_002M,S0702_C02_002MA"}, "S0101_C06_032E": {"label": "Estimate!!Percent Female!!Total population!!SUMMARY INDICATORS!!Median age (years)", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C06_032EA,S0101_C06_032M,S0101_C06_032MA"}, "S2503_C02_022E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS!!$3,000 or more", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C02_022EA,S2503_C02_022M,S2503_C02_022MA"}, "S0506_C04_038E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_038EA,S0506_C04_038M,S0506_C04_038MA"}, "S2702PR_C02_084E": {"label": "Estimate!!Total Uninsured!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION ADJUSTED DOLLARS)!!Civilian noninstitutionalized population 16 years and older with earnings!!$1 to $4,999 or loss", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_084EA,S2702PR_C02_084M,S2702PR_C02_084MA"}, "S0901_C02_034E": {"label": "Estimate!!In married-couple family household!!POVERTY STATUS IN THE PAST 12 MONTHS!!Children in households for whom poverty status is determined!!Income in the past 12 months at or above poverty level", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C02_034EA,S0901_C02_034M,S0901_C02_034MA"}, "S0702_C02_003E": {"label": "Estimate!!Northeast!!Region of Current Residence!!Population 1 year and over!!Movers within same region", "concept": "Movers Between Regions", "predicateType": "int", "group": "S0702", "limit": 0, "attributes": "S0702_C02_003EA,S0702_C02_003M,S0702_C02_003MA"}, "S0101_C06_031E": {"label": "Estimate!!Percent Female!!Total population!!SELECTED AGE CATEGORIES!!75 years and over", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C06_031EA,S0101_C06_031M,S0101_C06_031MA"}, "S2503_C02_021E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS!!$2,500 to $2,999", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C02_021EA,S2503_C02_021M,S2503_C02_021MA"}, "S2702PR_C02_087E": {"label": "Estimate!!Total Uninsured!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION ADJUSTED DOLLARS)!!Civilian noninstitutionalized population 16 years and older with earnings!!$25,000 to $34,999", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_087EA,S2702PR_C02_087M,S2702PR_C02_087MA"}, "S0702_C02_004E": {"label": "Estimate!!Northeast!!Region of Current Residence!!Population 1 year and over!!Movers between regions by region of residence 1 year ago", "concept": "Movers Between Regions", "predicateType": "int", "group": "S0702", "limit": 0, "attributes": "S0702_C02_004EA,S0702_C02_004M,S0702_C02_004MA"}, "S0901_C02_035E": {"label": "Estimate!!In married-couple family household!!HOUSING TENURE!!Children under 18 years in occupied housing units", "concept": "Children Characteristics", "predicateType": "int", "group": "S0901", "limit": 0, "attributes": "S0901_C02_035EA,S0901_C02_035M,S0901_C02_035MA"}, "S0101_C06_030E": {"label": "Estimate!!Percent Female!!Total population!!SELECTED AGE CATEGORIES!!65 years and over", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C06_030EA,S0101_C06_030M,S0101_C06_030MA"}, "S2503_C02_020E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS!!$2,000 to $2,499", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C02_020EA,S2503_C02_020M,S2503_C02_020MA"}, "S2702PR_C02_086E": {"label": "Estimate!!Total Uninsured!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION ADJUSTED DOLLARS)!!Civilian noninstitutionalized population 16 years and older with earnings!!$15,000 to $24,999", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_086EA,S2702PR_C02_086M,S2702PR_C02_086MA"}, "S0702_C02_005E": {"label": "Estimate!!Northeast!!Region of Current Residence!!Population 1 year and over!!Movers between regions by region of residence 1 year ago!!Northeast", "concept": "Movers Between Regions", "predicateType": "int", "group": "S0702", "limit": 0, "attributes": "S0702_C02_005EA,S0702_C02_005M,S0702_C02_005MA"}, "S0901_C02_036E": {"label": "Estimate!!In married-couple family household!!HOUSING TENURE!!Children under 18 years in occupied housing units!!In owner-occupied housing units", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C02_036EA,S0901_C02_036M,S0901_C02_036MA"}, "S1702_C03_046E": {"label": "Estimate!!Total!!Married-couple families!!Families!!ALL FAMILIES WITH INCOME BELOW THE FOLLOWING POVERTY RATIOS!!185 percent of poverty level", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C03_046EA,S1702_C03_046M,S1702_C03_046MA"}, "S2403_C04_009E": {"label": "Estimate!!Female!!Civilian employed population 16 years and over!!Transportation and warehousing, and utilities:", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C04_009EA,S2403_C04_009M,S2403_C04_009MA"}, "S2901_C02_002E": {"label": "Estimate!!Percent!!Citizens 18 years and over!!AGE!!18 to 29 years", "concept": "Citizen, Voting-Age Population by Selected Characteristics", "predicateType": "float", "group": "S2901", "limit": 0, "attributes": "S2901_C02_002EA,S2901_C02_002M,S2901_C02_002MA"}, "S0901_C02_025E": {"label": "Estimate!!In married-couple family household!!SCHOOL ENROLLMENT!!Children 3 to 17 years in households!!Enrolled in school", "concept": "Children Characteristics", "predicateType": "int", "group": "S0901", "limit": 0, "attributes": "S0901_C02_025EA,S0901_C02_025M,S0901_C02_025MA"}, "S2702_C02_050E": {"label": "Estimate!!Total Uninsured!!EMPLOYMENT STATUS!!Civilian noninstitutionalized population 16 years and over!!Not in labor force", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_050EA,S2702_C02_050M,S2702_C02_050MA"}, "S2403_C04_008E": {"label": "Estimate!!Female!!Civilian employed population 16 years and over!!Retail trade", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C04_008EA,S2403_C04_008M,S2403_C04_008MA"}, "S1702_C03_045E": {"label": "Estimate!!Total!!Married-couple families!!Families!!ALL FAMILIES WITH INCOME BELOW THE FOLLOWING POVERTY RATIOS!!150 percent of poverty level", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C03_045EA,S1702_C03_045M,S1702_C03_045MA"}, "S2901_C02_001E": {"label": "Estimate!!Percent!!Citizens 18 years and over", "concept": "Citizen, Voting-Age Population by Selected Characteristics", "predicateType": "int", "group": "S2901", "limit": 0, "attributes": "S2901_C02_001EA,S2901_C02_001M,S2901_C02_001MA"}, "S0901_C02_026E": {"label": "Estimate!!In married-couple family household!!SCHOOL ENROLLMENT!!Children 3 to 17 years in households!!Enrolled in school!!Public", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C02_026EA,S0901_C02_026M,S0901_C02_026MA"}, "S2702_C02_051E": {"label": "Estimate!!Total Uninsured!!WORK EXPERIENCE!!Civilian noninstitutionalized population 16 to 64 years", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "int", "group": "S2702", "limit": 0, "attributes": "S2702_C02_051EA,S2702_C02_051M,S2702_C02_051MA"}, "S2901_C02_004E": {"label": "Estimate!!Percent!!Citizens 18 years and over!!AGE!!45 to 64 years", "concept": "Citizen, Voting-Age Population by Selected Characteristics", "predicateType": "float", "group": "S2901", "limit": 0, "attributes": "S2901_C02_004EA,S2901_C02_004M,S2901_C02_004MA"}, "S2702_C02_052E": {"label": "Estimate!!Total Uninsured!!WORK EXPERIENCE!!Civilian noninstitutionalized population 16 to 64 years!!Worked full-time, year round in the past 12 months", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_052EA,S2702_C02_052M,S2702_C02_052MA"}, "S1702_C03_048E": {"label": "Estimate!!Total!!Married-couple families!!Families!!ALL FAMILIES WITH INCOME BELOW THE FOLLOWING POVERTY RATIOS!!300 percent of poverty level", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C03_048EA,S1702_C03_048M,S1702_C03_048MA"}, "S0901_C02_027E": {"label": "Estimate!!In married-couple family household!!SCHOOL ENROLLMENT!!Children 3 to 17 years in households!!Enrolled in school!!Private", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C02_027EA,S0901_C02_027M,S0901_C02_027MA"}, "S2901_C02_003E": {"label": "Estimate!!Percent!!Citizens 18 years and over!!AGE!!30 to 44 years", "concept": "Citizen, Voting-Age Population by Selected Characteristics", "predicateType": "float", "group": "S2901", "limit": 0, "attributes": "S2901_C02_003EA,S2901_C02_003M,S2901_C02_003MA"}, "S2702_C02_053E": {"label": "Estimate!!Total Uninsured!!WORK EXPERIENCE!!Civilian noninstitutionalized population 16 to 64 years!!Worked less than full-time, year round in the past 12 months", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_053EA,S2702_C02_053M,S2702_C02_053MA"}, "S0901_C02_028E": {"label": "Estimate!!In married-couple family household!!SCHOOL ENROLLMENT!!Children 3 to 17 years in households!!Not enrolled in school", "concept": "Children Characteristics", "predicateType": "int", "group": "S0901", "limit": 0, "attributes": "S0901_C02_028EA,S0901_C02_028M,S0901_C02_028MA"}, "S1702_C03_047E": {"label": "Estimate!!Total!!Married-couple families!!Families!!ALL FAMILIES WITH INCOME BELOW THE FOLLOWING POVERTY RATIOS!!200 percent of poverty level", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C03_047EA,S1702_C03_047M,S1702_C03_047MA"}, "S2403_C04_005E": {"label": "Estimate!!Female!!Civilian employed population 16 years and over!!Construction", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C04_005EA,S2403_C04_005M,S2403_C04_005MA"}, "S2901_C02_006E": {"label": "Estimate!!Percent!!Citizens 18 years and over!!SEX!!Male", "concept": "Citizen, Voting-Age Population by Selected Characteristics", "predicateType": "float", "group": "S2901", "limit": 0, "attributes": "S2901_C02_006EA,S2901_C02_006M,S2901_C02_006MA"}, "S0901_C02_029E": {"label": "Estimate!!In married-couple family household!!Special Subject!!Median income (dollars)", "concept": "Children Characteristics", "predicateType": "int", "group": "S0901", "limit": 0, "attributes": "S0901_C02_029EA,S0901_C02_029M,S0901_C02_029MA"}, "S2407_C02_001E": {"label": "Estimate!!Employee of private company workers!!Civilian employed population 16 years and over", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2407", "limit": 0, "attributes": "S2407_C02_001EA,S2407_C02_001M,S2407_C02_001MA"}, "S2702_C02_054E": {"label": "Estimate!!Total Uninsured!!WORK EXPERIENCE!!Civilian noninstitutionalized population 16 to 64 years!!Did not work", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_054EA,S2702_C02_054M,S2702_C02_054MA"}, "S2503_C02_029E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$20,000 to $34,999", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C02_029EA,S2503_C02_029M,S2503_C02_029MA"}, "S2901_C02_005E": {"label": "Estimate!!Percent!!Citizens 18 years and over!!AGE!!65 years and over", "concept": "Citizen, Voting-Age Population by Selected Characteristics", "predicateType": "float", "group": "S2901", "limit": 0, "attributes": "S2901_C02_005EA,S2901_C02_005M,S2901_C02_005MA"}, "S2702_C02_055E": {"label": "Estimate!!Total Uninsured!!Civilian noninstitutionalized workers 16 years and over", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "int", "group": "S2702", "limit": 0, "attributes": "S2702_C02_055EA,S2702_C02_055M,S2702_C02_055MA"}, "S2403_C04_004E": {"label": "Estimate!!Female!!Civilian employed population 16 years and over!!Agriculture, forestry, fishing and hunting, and mining:!!Mining, quarrying, and oil and gas extraction", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C04_004EA,S2403_C04_004M,S2403_C04_004MA"}, "S1702_C03_049E": {"label": "Estimate!!Total!!Married-couple families!!Families!!ALL FAMILIES WITH INCOME BELOW THE FOLLOWING POVERTY RATIOS!!400 percent of poverty level", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C03_049EA,S1702_C03_049M,S1702_C03_049MA"}, "S2503_C02_028E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than $20,000!!30 percent or more", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C02_028EA,S2503_C02_028M,S2503_C02_028MA"}, "S2403_C04_007E": {"label": "Estimate!!Female!!Civilian employed population 16 years and over!!Wholesale trade", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C04_007EA,S2403_C04_007M,S2403_C04_007MA"}, "S2702PR_C02_091E": {"label": "Estimate!!Total Uninsured!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION ADJUSTED DOLLARS)!!Civilian noninstitutionalized population 16 years and older with earnings!!Median earnings (dollars)", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "int", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_091EA,S2702PR_C02_091M,S2702PR_C02_091MA"}, "S2901_C02_008E": {"label": "Estimate!!Percent!!Citizens 18 years and over!!RACE AND HISPANIC ORIGIN!!White alone", "concept": "Citizen, Voting-Age Population by Selected Characteristics", "predicateType": "float", "group": "S2901", "limit": 0, "attributes": "S2901_C02_008EA,S2901_C02_008M,S2901_C02_008MA"}, "S2702_C02_056E": {"label": "Estimate!!Total Uninsured!!Civilian noninstitutionalized workers 16 years and over!!CLASS OF WORKER!!Private for-profit wage and salary workers", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_056EA,S2702_C02_056M,S2702_C02_056MA"}, "S2403_C04_006E": {"label": "Estimate!!Female!!Civilian employed population 16 years and over!!Manufacturing", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2403", "limit": 0, "attributes": "S2403_C04_006EA,S2403_C04_006M,S2403_C04_006MA"}, "S2702PR_C02_090E": {"label": "Estimate!!Total Uninsured!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION ADJUSTED DOLLARS)!!Civilian noninstitutionalized population 16 years and older with earnings!!$75,000 or more", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_090EA,S2702PR_C02_090M,S2702PR_C02_090MA"}, "S2901_C02_007E": {"label": "Estimate!!Percent!!Citizens 18 years and over!!SEX!!Female", "concept": "Citizen, Voting-Age Population by Selected Characteristics", "predicateType": "float", "group": "S2901", "limit": 0, "attributes": "S2901_C02_007EA,S2901_C02_007M,S2901_C02_007MA"}, "S2702_C02_057E": {"label": "Estimate!!Total Uninsured!!Civilian noninstitutionalized workers 16 years and over!!CLASS OF WORKER!!Private for-profit wage and salary workers!!Employee of private company workers", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_057EA,S2702_C02_057M,S2702_C02_057MA"}, "S2503_C02_027E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than $20,000!!20 to 29 percent", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C02_027EA,S2503_C02_027M,S2503_C02_027MA"}, "S2407_C02_005E": {"label": "Estimate!!Employee of private company workers!!Civilian employed population 16 years and over!!Wholesale trade", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2407", "limit": 0, "attributes": "S2407_C02_005EA,S2407_C02_005M,S2407_C02_005MA"}, "S2702_C02_058E": {"label": "Estimate!!Total Uninsured!!Civilian noninstitutionalized workers 16 years and over!!CLASS OF WORKER!!Private for-profit wage and salary workers!!Self-employed in own incorporated business workers", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_058EA,S2702_C02_058M,S2702_C02_058MA"}, "S2407_C02_004E": {"label": "Estimate!!Employee of private company workers!!Civilian employed population 16 years and over!!Manufacturing", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2407", "limit": 0, "attributes": "S2407_C02_004EA,S2407_C02_004M,S2407_C02_004MA"}, "S2702_C02_059E": {"label": "Estimate!!Total Uninsured!!Civilian noninstitutionalized workers 16 years and over!!CLASS OF WORKER!!Private not-for-profit wage and salary workers", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_059EA,S2702_C02_059M,S2702_C02_059MA"}, "S0502_C01_059E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_059EA,S0502_C01_059M,S0502_C01_059MA"}, "S1702_C03_040E": {"label": "Estimate!!Total!!Married-couple families!!Families!!INCOME DEFICIT!!Mean income deficit for families (dollars)", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C03_040EA,S1702_C03_040M,S1702_C03_040MA"}, "S2407_C02_003E": {"label": "Estimate!!Employee of private company workers!!Civilian employed population 16 years and over!!Construction", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2407", "limit": 0, "attributes": "S2407_C02_003EA,S2407_C02_003M,S2407_C02_003MA"}, "S0502_C01_058E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_058EA,S0502_C01_058M,S0502_C01_058MA"}, "S0101_C06_029E": {"label": "Estimate!!Percent Female!!Total population!!SELECTED AGE CATEGORIES!!62 years and over", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C06_029EA,S0101_C06_029M,S0101_C06_029MA"}, "S2407_C02_002E": {"label": "Estimate!!Employee of private company workers!!Civilian employed population 16 years and over!!Agriculture, forestry, fishing and hunting, and mining", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2407", "limit": 0, "attributes": "S2407_C02_002EA,S2407_C02_002M,S2407_C02_002MA"}, "S0502_C01_057E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Population 16 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C01_057EA,S0502_C01_057M,S0502_C01_057MA"}, "S2407_C02_009E": {"label": "Estimate!!Employee of private company workers!!Civilian employed population 16 years and over!!Finance and insurance, and real estate and rental and leasing", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2407", "limit": 0, "attributes": "S2407_C02_009EA,S2407_C02_009M,S2407_C02_009MA"}, "S1702_C03_042E": {"label": "Estimate!!Total!!Married-couple families!!Families!!TENURE!!Renter Occupied", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C03_042EA,S1702_C03_042M,S1702_C03_042MA"}, "S2802_C07_012E": {"label": "Estimate!!Percent no computer in household!!Total population in households!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "float", "group": "S2802", "limit": 0, "attributes": "S2802_C07_012EA,S2802_C07_012M,S2802_C07_012MA"}, "S0502_C01_056E": {"label": "Estimate!!Total!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English!!Speak English less than \"very well\"", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_056EA,S0502_C01_056M,S0502_C01_056MA"}, "S0505_C05_119E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_119EA,S0505_C05_119M,S0505_C05_119MA"}, "S2407_C02_008E": {"label": "Estimate!!Employee of private company workers!!Civilian employed population 16 years and over!!Information", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2407", "limit": 0, "attributes": "S2407_C02_008EA,S2407_C02_008M,S2407_C02_008MA"}, "S2802_C07_013E": {"label": "Estimate!!Percent no computer in household!!Total population in households!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "float", "group": "S2802", "limit": 0, "attributes": "S2802_C07_013EA,S2802_C07_013M,S2802_C07_013MA"}, "S1702_C03_041E": {"label": "Estimate!!Total!!Married-couple families!!Families!!TENURE!!Owner occupied", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C03_041EA,S1702_C03_041M,S1702_C03_041MA"}, "S0103PR_C02_009E": {"label": "Estimate!!65 years and over!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_009EA,S0103PR_C02_009M,S0103PR_C02_009MA"}, "S0502_C01_055E": {"label": "Estimate!!Total!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_055EA,S0502_C01_055M,S0502_C01_055MA"}, "S1702_C03_044E": {"label": "Estimate!!Total!!Married-couple families!!Families!!ALL FAMILIES WITH INCOME BELOW THE FOLLOWING POVERTY RATIOS!!125 percent of poverty level", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C03_044EA,S1702_C03_044M,S1702_C03_044MA"}, "S2407_C02_007E": {"label": "Estimate!!Employee of private company workers!!Civilian employed population 16 years and over!!Transportation and warehousing, and utilities", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2407", "limit": 0, "attributes": "S2407_C02_007EA,S2407_C02_007M,S2407_C02_007MA"}, "S2802_C07_010E": {"label": "Estimate!!Percent no computer in household!!Total population in households!!RACE AND HISPANIC OR LATINO ORIGIN!!Some other race alone", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "float", "group": "S2802", "limit": 0, "attributes": "S2802_C07_010EA,S2802_C07_010M,S2802_C07_010MA"}, "S0103PR_C02_008E": {"label": "Estimate!!65 years and over!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_008EA,S0103PR_C02_008M,S0103PR_C02_008MA"}, "S0502_C01_054E": {"label": "Estimate!!Total!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!English only", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_054EA,S0502_C01_054M,S0502_C01_054MA"}, "S1702_C03_043E": {"label": "Estimate!!Total!!Married-couple families!!Families!!ALL FAMILIES WITH INCOME BELOW THE FOLLOWING POVERTY RATIOS!!50 percent of poverty level", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C03_043EA,S1702_C03_043M,S1702_C03_043MA"}, "S2407_C02_006E": {"label": "Estimate!!Employee of private company workers!!Civilian employed population 16 years and over!!Retail trade", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2407", "limit": 0, "attributes": "S2407_C02_006EA,S2407_C02_006M,S2407_C02_006MA"}, "S2802_C07_011E": {"label": "Estimate!!Percent no computer in household!!Total population in households!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "float", "group": "S2802", "limit": 0, "attributes": "S2802_C07_011EA,S2802_C07_011M,S2802_C07_011MA"}, "S0103PR_C02_007E": {"label": "Estimate!!65 years and over!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C02_007EA,S0103PR_C02_007M,S0103PR_C02_007MA"}, "S0502_C01_053E": {"label": "Estimate!!Total!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C01_053EA,S0502_C01_053M,S0502_C01_053MA"}, "S2601A_C01_012E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!75 to 84 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_012EA,S2601A_C01_012M,S2601A_C01_012MA"}, "S2001_C01_002E": {"label": "Estimate!!Total!!Population 16 years and over with earnings!!Median earnings (dollars)", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C01_002EA,S2001_C01_002M,S2001_C01_002MA"}, "S0502_C01_088E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C01_088EA,S0502_C01_088M,S0502_C01_088MA"}, "S2601A_C01_013E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!85 years and over", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_013EA,S2601A_C01_013M,S2601A_C01_013MA"}, "S2001_C01_001E": {"label": "Estimate!!Total!!Population 16 years and over with earnings", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C01_001EA,S2001_C01_001M,S2001_C01_001MA"}, "S2602_C04_039E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!College or graduate school", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C04_039EA,S2602_C04_039M,S2602_C04_039MA"}, "S0502_C01_087E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Public administration", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_087EA,S0502_C01_087M,S0502_C01_087MA"}, "S2601A_C01_010E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!55 to 64 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_010EA,S2601A_C01_010M,S2601A_C01_010MA"}, "S2603_C07_030E": {"label": "Estimate!!Military quarters/military ships!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!White alone, Not Hispanic or Latino", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C07_030EA,S2603_C07_030M,S2603_C07_030MA"}, "S2001_C01_004E": {"label": "Estimate!!Total!!Population 16 years and over with earnings!!FULL-TIME, YEAR-ROUND WORKERS WITH EARNINGS!!$1 to $9,999 or loss", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C01_004EA,S2001_C01_004M,S2001_C01_004MA"}, "S0502_C01_086E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Other services (except public administration)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_086EA,S0502_C01_086M,S0502_C01_086MA"}, "S2601A_C01_011E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!65 to 74 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_011EA,S2601A_C01_011M,S2601A_C01_011MA"}, "S0601PR_C03_050E": {"label": "Estimate!!Native; born in the U.S.!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!100 to 149 percent of the poverty level", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C03_050EA,S0601PR_C03_050M,S0601PR_C03_050MA"}, "S0502_C01_085E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Arts, entertainment, and recreation, and accommodation and food services", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_085EA,S0502_C01_085M,S0502_C01_085MA"}, "S2001_C01_003E": {"label": "Estimate!!Total!!Population 16 years and over with earnings!!FULL-TIME, YEAR-ROUND WORKERS WITH EARNINGS", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C01_003EA,S2001_C01_003M,S2001_C01_003MA"}, "S2601A_C01_016E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!Under 18 years!!Female", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_016EA,S2601A_C01_016M,S2601A_C01_016MA"}, "S2602_C04_036E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C04_036EA,S2602_C04_036M,S2602_C04_036MA"}, "S0502_C01_084E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Educational services, and health care and social assistance", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_084EA,S0502_C01_084M,S0502_C01_084MA"}, "S0101_C06_004E": {"label": "Estimate!!Percent Female!!Total population!!AGE!!10 to 14 years", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C06_004EA,S0101_C06_004M,S0101_C06_004MA"}, "S2603_C07_032E": {"label": "Estimate!!Military quarters/military ships!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C07_032EA,S2603_C07_032M,S2603_C07_032MA"}, "S2001_C01_006E": {"label": "Estimate!!Total!!Population 16 years and over with earnings!!FULL-TIME, YEAR-ROUND WORKERS WITH EARNINGS!!$15,000 to $24,999", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C01_006EA,S2001_C01_006M,S2001_C01_006MA"}, "S2601A_C01_017E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!65 years and over", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_017EA,S2601A_C01_017M,S2601A_C01_017MA"}, "S2602_C04_035E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!MARITAL STATUS!!Population 15 years and over!!Separated", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C04_035EA,S2602_C04_035M,S2602_C04_035MA"}, "S0101_C06_003E": {"label": "Estimate!!Percent Female!!Total population!!AGE!!5 to 9 years", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C06_003EA,S0101_C06_003M,S0101_C06_003MA"}, "S0502_C01_083E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Professional, scientific, and management, and administrative and waste management services", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_083EA,S0502_C01_083M,S0502_C01_083MA"}, "S2001_C01_005E": {"label": "Estimate!!Total!!Population 16 years and over with earnings!!FULL-TIME, YEAR-ROUND WORKERS WITH EARNINGS!!$10,000 to $14,999", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C01_005EA,S2001_C01_005M,S2001_C01_005MA"}, "S2603_C07_031E": {"label": "Estimate!!Military quarters/military ships!!MARITAL STATUS!!Population 15 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C07_031EA,S2603_C07_031M,S2603_C07_031MA"}, "S2601A_C01_018E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!65 years and over!!Male", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_018EA,S2601A_C01_018M,S2601A_C01_018MA"}, "S2702PR_C02_011E": {"label": "Estimate!!Total Uninsured!!Total civilian noninstitutionalized population!!AGE!!65 years and older", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_011EA,S2702PR_C02_011M,S2702PR_C02_011MA"}, "S2601A_C01_014E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!Under 18 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_014EA,S2601A_C01_014M,S2601A_C01_014MA"}, "S0506_C04_021E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Foreign-born population!!SEX AND AGE!!Median age (years)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_021EA,S0506_C04_021M,S0506_C04_021MA"}, "S2603_C07_034E": {"label": "Estimate!!Military quarters/military ships!!MARITAL STATUS!!Population 15 years and over!!Divorced", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C07_034EA,S2603_C07_034M,S2603_C07_034MA"}, "S2602_C04_038E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Nursery school through 12th grade", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C04_038EA,S2602_C04_038M,S2602_C04_038MA"}, "S0502_C01_082E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Finance and insurance, and real estate and rental and leasing", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_082EA,S0502_C01_082M,S0502_C01_082MA"}, "S0101_C06_002E": {"label": "Estimate!!Percent Female!!Total population!!AGE!!Under 5 years", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C06_002EA,S0101_C06_002M,S0101_C06_002MA"}, "S2001_C01_008E": {"label": "Estimate!!Total!!Population 16 years and over with earnings!!FULL-TIME, YEAR-ROUND WORKERS WITH EARNINGS!!$35,000 to $49,999", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C01_008EA,S2001_C01_008M,S2001_C01_008MA"}, "S2601A_C01_015E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!Under 18 years!!Male", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_015EA,S2601A_C01_015M,S2601A_C01_015MA"}, "S2702PR_C02_010E": {"label": "Estimate!!Total Uninsured!!Total civilian noninstitutionalized population!!AGE!!19 to 64 years!!55 to 64 years", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_010EA,S2702PR_C02_010M,S2702PR_C02_010MA"}, "S2603_C07_033E": {"label": "Estimate!!Military quarters/military ships!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C07_033EA,S2603_C07_033M,S2603_C07_033MA"}, "S2602_C04_037E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C04_037EA,S2602_C04_037M,S2602_C04_037MA"}, "S0502_C01_081E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Information", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_081EA,S0502_C01_081M,S0502_C01_081MA"}, "S0101_C06_001E": {"label": "Estimate!!Percent Female!!Total population", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C06_001EA,S0101_C06_001M,S0101_C06_001MA"}, "S2001_C01_007E": {"label": "Estimate!!Total!!Population 16 years and over with earnings!!FULL-TIME, YEAR-ROUND WORKERS WITH EARNINGS!!$25,000 to $34,999", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C01_007EA,S2001_C01_007M,S2001_C01_007MA"}, "S0506_C04_020E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Foreign-born population!!SEX AND AGE!!85 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_020EA,S0506_C04_020M,S0506_C04_020MA"}, "S0506_C04_023E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_023EA,S0506_C04_023M,S0506_C04_023MA"}, "S2602_C04_032E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C04_032EA,S2602_C04_032M,S2602_C04_032MA"}, "S0502_C01_080E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Transportation and warehousing, and utilities", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_080EA,S0502_C01_080M,S0502_C01_080MA"}, "S0506_C04_022E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_022EA,S0506_C04_022M,S0506_C04_022MA"}, "S2602_C04_031E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!MARITAL STATUS!!Population 15 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C04_031EA,S2602_C04_031M,S2602_C04_031MA"}, "S2001_C01_009E": {"label": "Estimate!!Total!!Population 16 years and over with earnings!!FULL-TIME, YEAR-ROUND WORKERS WITH EARNINGS!!$50,000 to $64,999", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C01_009EA,S2001_C01_009M,S2001_C01_009MA"}, "S0502PR_C03_079E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Civilian employed population 16 years and over!!INDUSTRY!!Retail trade", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_079EA,S0502PR_C03_079M,S0502PR_C03_079MA"}, "S0502PR_C03_078E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Civilian employed population 16 years and over!!INDUSTRY!!Wholesale trade", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_078EA,S0502PR_C03_078M,S0502PR_C03_078MA"}, "S0506_C04_025E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_025EA,S0506_C04_025M,S0506_C04_025MA"}, "S2602_C04_034E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!MARITAL STATUS!!Population 15 years and over!!Divorced", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C04_034EA,S2602_C04_034M,S2602_C04_034MA"}, "S2601A_C01_019E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!65 years and over!!Female", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_019EA,S2601A_C01_019M,S2601A_C01_019MA"}, "S0506_C04_024E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_024EA,S0506_C04_024M,S0506_C04_024MA"}, "S0502PR_C03_077E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Civilian employed population 16 years and over!!INDUSTRY!!Manufacturing", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_077EA,S0502PR_C03_077M,S0502PR_C03_077MA"}, "S2602_C04_033E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C04_033EA,S2602_C04_033M,S2602_C04_033MA"}, "S0506_C04_027E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_027EA,S0506_C04_027M,S0506_C04_027MA"}, "S0506_C04_026E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_026EA,S0506_C04_026M,S0506_C04_026MA"}, "S2602_C04_030E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!White alone, Not Hispanic or Latino", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C04_030EA,S2602_C04_030M,S2602_C04_030MA"}, "S0506_C04_029E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_029EA,S0506_C04_029M,S0506_C04_029MA"}, "S0506_C04_028E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_028EA,S0506_C04_028M,S0506_C04_028MA"}, "S2002_C04_005E": {"label": "Estimate!!Women's earnings as a percentage of men's earnings!!Full-time, year-round workers 16 years and over with earnings!!RACE AND HISPANIC OR LATINO ORIGIN!!One race--!!Asian", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "float", "group": "S2002", "limit": 0, "attributes": "S2002_C04_005EA,S2002_C04_005M,S2002_C04_005MA"}, "S0102_C02_006E": {"label": "Estimate!!60 years and over!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_006EA,S0102_C02_006M,S0102_C02_006MA"}, "S0502PR_C03_072E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Civilian employed population 16 years and over!!OCCUPATION!!Sales and office occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_072EA,S0502PR_C03_072M,S0502PR_C03_072MA"}, "S0501_C05_093E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income!!Mean Social Security income (dollars)", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C05_093EA,S0501_C05_093M,S0501_C05_093MA"}, "S1501_C04_009E": {"label": "Estimate!!Percent Male!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate (includes equivalency)", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C04_009EA,S1501_C04_009M,S1501_C04_009MA"}, "S0502PR_C03_071E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Civilian employed population 16 years and over!!OCCUPATION!!Service occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_071EA,S0502PR_C03_071M,S0502PR_C03_071MA"}, "S2002_C04_006E": {"label": "Estimate!!Women's earnings as a percentage of men's earnings!!Full-time, year-round workers 16 years and over with earnings!!RACE AND HISPANIC OR LATINO ORIGIN!!One race--!!Native Hawaiian and Other Pacific Islander", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "float", "group": "S2002", "limit": 0, "attributes": "S2002_C04_006EA,S2002_C04_006M,S2002_C04_006MA"}, "S0102_C02_007E": {"label": "Estimate!!60 years and over!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_007EA,S0102_C02_007M,S0102_C02_007MA"}, "S0501_C05_092E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_092EA,S0501_C05_092M,S0501_C05_092MA"}, "S0102_C02_004E": {"label": "Estimate!!60 years and over!!Total population!!SEX AND AGE!!Median age (years)", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_004EA,S0102_C02_004M,S0102_C02_004MA"}, "S2002_C04_007E": {"label": "Estimate!!Women's earnings as a percentage of men's earnings!!Full-time, year-round workers 16 years and over with earnings!!RACE AND HISPANIC OR LATINO ORIGIN!!One race--!!Some other race", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "float", "group": "S2002", "limit": 0, "attributes": "S2002_C04_007EA,S2002_C04_007M,S2002_C04_007MA"}, "S0501_C05_091E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings!!Mean earnings (dollars)", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C05_091EA,S0501_C05_091M,S0501_C05_091MA"}, "S0502PR_C03_070E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Civilian employed population 16 years and over!!OCCUPATION!!Management, business, science, and arts occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_070EA,S0502PR_C03_070M,S0502PR_C03_070MA"}, "S1501_C04_007E": {"label": "Estimate!!Percent Male!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than 9th grade", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C04_007EA,S1501_C04_007M,S1501_C04_007MA"}, "S2002_C04_008E": {"label": "Estimate!!Women's earnings as a percentage of men's earnings!!Full-time, year-round workers 16 years and over with earnings!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "float", "group": "S2002", "limit": 0, "attributes": "S2002_C04_008EA,S2002_C04_008M,S2002_C04_008MA"}, "S0102_C02_005E": {"label": "Estimate!!60 years and over!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_005EA,S0102_C02_005M,S0102_C02_005MA"}, "S0501_C05_090E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_090EA,S0501_C05_090M,S0501_C05_090MA"}, "S1501_C04_008E": {"label": "Estimate!!Percent Male!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 years and over!!9th to 12th grade, no diploma", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C04_008EA,S1501_C04_008M,S1501_C04_008MA"}, "S0102_C02_002E": {"label": "Estimate!!60 years and over!!Total population!!SEX AND AGE!!Male", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_002EA,S0102_C02_002M,S0102_C02_002MA"}, "S0502PR_C03_076E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Civilian employed population 16 years and over!!INDUSTRY!!Construction", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_076EA,S0502PR_C03_076M,S0502PR_C03_076MA"}, "S0501_C05_097E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income!!Mean cash public assistance income (dollars)", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C05_097EA,S0501_C05_097M,S0501_C05_097MA"}, "S2002_C04_001E": {"label": "Estimate!!Women's earnings as a percentage of men's earnings!!Full-time, year-round workers 16 years and over with earnings", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "float", "group": "S2002", "limit": 0, "attributes": "S2002_C04_001EA,S2002_C04_001M,S2002_C04_001MA"}, "S2407_C02_013E": {"label": "Estimate!!Employee of private company workers!!Civilian employed population 16 years and over!!Other services, except public administration", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2407", "limit": 0, "attributes": "S2407_C02_013EA,S2407_C02_013M,S2407_C02_013MA"}, "S0502PR_C03_075E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Civilian employed population 16 years and over!!INDUSTRY!!Agriculture, forestry, fishing and hunting, and mining", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_075EA,S0502PR_C03_075M,S0502PR_C03_075MA"}, "S2002_C04_002E": {"label": "Estimate!!Women's earnings as a percentage of men's earnings!!Full-time, year-round workers 16 years and over with earnings!!RACE AND HISPANIC OR LATINO ORIGIN!!One race--!!White", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "float", "group": "S2002", "limit": 0, "attributes": "S2002_C04_002EA,S2002_C04_002M,S2002_C04_002MA"}, "S0102_C02_003E": {"label": "Estimate!!60 years and over!!Total population!!SEX AND AGE!!Female", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_003EA,S0102_C02_003M,S0102_C02_003MA"}, "S0501_C05_096E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_096EA,S0501_C05_096M,S0501_C05_096MA"}, "S2407_C02_012E": {"label": "Estimate!!Employee of private company workers!!Civilian employed population 16 years and over!!Arts, entertainment, and recreation, and accommodation and food services", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2407", "limit": 0, "attributes": "S2407_C02_012EA,S2407_C02_012M,S2407_C02_012MA"}, "S2002_C04_003E": {"label": "Estimate!!Women's earnings as a percentage of men's earnings!!Full-time, year-round workers 16 years and over with earnings!!RACE AND HISPANIC OR LATINO ORIGIN!!One race--!!Black or African American", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "float", "group": "S2002", "limit": 0, "attributes": "S2002_C04_003EA,S2002_C04_003M,S2002_C04_003MA"}, "S0501_C05_095E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income!!Mean Supplemental Security Income (dollars)", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C05_095EA,S0501_C05_095M,S0501_C05_095MA"}, "S0502PR_C03_074E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Civilian employed population 16 years and over!!OCCUPATION!!Production, transportation, and material moving occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_074EA,S0502PR_C03_074M,S0502PR_C03_074MA"}, "S2407_C02_011E": {"label": "Estimate!!Employee of private company workers!!Civilian employed population 16 years and over!!Educational services, and health care and social assistance", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2407", "limit": 0, "attributes": "S2407_C02_011EA,S2407_C02_011M,S2407_C02_011MA"}, "S2002_C04_004E": {"label": "Estimate!!Women's earnings as a percentage of men's earnings!!Full-time, year-round workers 16 years and over with earnings!!RACE AND HISPANIC OR LATINO ORIGIN!!One race--!!American Indian and Alaska Native", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "float", "group": "S2002", "limit": 0, "attributes": "S2002_C04_004EA,S2002_C04_004M,S2002_C04_004MA"}, "S0102_C02_001E": {"label": "Estimate!!60 years and over!!Total population", "concept": "Population 60 Years and Over in the United States", "predicateType": "int", "group": "S0102", "limit": 0, "attributes": "S0102_C02_001EA,S0102_C02_001M,S0102_C02_001MA"}, "S0501_C05_094E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_094EA,S0501_C05_094M,S0501_C05_094MA"}, "S0502PR_C03_073E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Civilian employed population 16 years and over!!OCCUPATION!!Natural resources, construction, and maintenance occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_073EA,S0502PR_C03_073M,S0502PR_C03_073MA"}, "S2407_C02_010E": {"label": "Estimate!!Employee of private company workers!!Civilian employed population 16 years and over!!Professional, scientific, and management, and administrative and waste management services", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2407", "limit": 0, "attributes": "S2407_C02_010EA,S2407_C02_010M,S2407_C02_010MA"}, "S2702PR_C02_013E": {"label": "Estimate!!Total Uninsured!!Total civilian noninstitutionalized population!!AGE!!65 years and older!!75 years and older", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_013EA,S2702PR_C02_013M,S2702PR_C02_013MA"}, "S2603_C07_036E": {"label": "Estimate!!Military quarters/military ships!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C07_036EA,S2603_C07_036M,S2603_C07_036MA"}, "S1501_C04_001E": {"label": "Estimate!!Percent Male!!AGE BY EDUCATIONAL ATTAINMENT!!Population 18 to 24 years", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C04_001EA,S1501_C04_001M,S1501_C04_001MA"}, "S2702PR_C02_012E": {"label": "Estimate!!Total Uninsured!!Total civilian noninstitutionalized population!!AGE!!65 years and older!!65 to 74 years", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_012EA,S2702PR_C02_012M,S2702PR_C02_012MA"}, "S2603_C07_035E": {"label": "Estimate!!Military quarters/military ships!!MARITAL STATUS!!Population 15 years and over!!Separated", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C07_035EA,S2603_C07_035M,S2603_C07_035MA"}, "S1501_C04_002E": {"label": "Estimate!!Percent Male!!AGE BY EDUCATIONAL ATTAINMENT!!Population 18 to 24 years!!Less than high school graduate", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C04_002EA,S1501_C04_002M,S1501_C04_002MA"}, "S0501_C05_099E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income!!Mean retirement income (dollars)", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C05_099EA,S0501_C05_099M,S0501_C05_099MA"}, "S2603_C07_038E": {"label": "Estimate!!Military quarters/military ships!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Nursery school through 12th grade", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C07_038EA,S2603_C07_038M,S2603_C07_038MA"}, "S2407_C02_015E": {"label": "Estimate!!Employee of private company workers!!PERCENT ALLOCATED!!Industry", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2407", "limit": 0, "attributes": "S2407_C02_015EA,S2407_C02_015M,S2407_C02_015MA"}, "S2702PR_C02_015E": {"label": "Estimate!!Total Uninsured!!Total civilian noninstitutionalized population!!SEX!!Male", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_015EA,S2702PR_C02_015M,S2702PR_C02_015MA"}, "S0501_C05_098E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_098EA,S0501_C05_098M,S0501_C05_098MA"}, "S2603_C07_037E": {"label": "Estimate!!Military quarters/military ships!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C07_037EA,S2603_C07_037M,S2603_C07_037MA"}, "S2407_C02_014E": {"label": "Estimate!!Employee of private company workers!!Civilian employed population 16 years and over!!Public administration", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2407", "limit": 0, "attributes": "S2407_C02_014EA,S2407_C02_014M,S2407_C02_014MA"}, "S2702_C02_001E": {"label": "Estimate!!Total Uninsured!!Total civilian noninstitutionalized population", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "int", "group": "S2702", "limit": 0, "attributes": "S2702_C02_001EA,S2702_C02_001M,S2702_C02_001MA"}, "S2702PR_C02_014E": {"label": "Estimate!!Total Uninsured!!Total civilian noninstitutionalized population!!AGE!!Median age (years)", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_014EA,S2702PR_C02_014M,S2702PR_C02_014MA"}, "S2601A_C01_020E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!Median age (years)", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_020EA,S2601A_C01_020M,S2601A_C01_020MA"}, "S0601PR_C03_051E": {"label": "Estimate!!Native; born in the U.S.!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!At or above 150 percent of the poverty level", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C03_051EA,S0601PR_C03_051M,S0601PR_C03_051MA"}, "S1501_C04_005E": {"label": "Estimate!!Percent Male!!AGE BY EDUCATIONAL ATTAINMENT!!Population 18 to 24 years!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C04_005EA,S1501_C04_005M,S1501_C04_005MA"}, "S2001_C01_010E": {"label": "Estimate!!Total!!Population 16 years and over with earnings!!FULL-TIME, YEAR-ROUND WORKERS WITH EARNINGS!!$65,000 to $74,999", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C01_010EA,S2001_C01_010M,S2001_C01_010MA"}, "S2702_C02_002E": {"label": "Estimate!!Total Uninsured!!Total civilian noninstitutionalized population!!AGE!!Under 19 years", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_002EA,S2702_C02_002M,S2702_C02_002MA"}, "S2702PR_C02_017E": {"label": "Estimate!!Total Uninsured!!Total civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_017EA,S2702PR_C02_017M,S2702PR_C02_017MA"}, "S2601A_C01_021E": {"label": "Estimate!!Total population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_021EA,S2601A_C01_021M,S2601A_C01_021MA"}, "S0601PR_C03_052E": {"label": "Estimate!!Native; born in the U.S.!!PERCENT ALLOCATED!!Citizenship status", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "int", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C03_052EA,S0601PR_C03_052M,S0601PR_C03_052MA"}, "S1501_C04_006E": {"label": "Estimate!!Percent Male!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C04_006EA,S1501_C04_006M,S1501_C04_006MA"}, "S2603_C07_039E": {"label": "Estimate!!Military quarters/military ships!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!College or graduate school", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C07_039EA,S2603_C07_039M,S2603_C07_039MA"}, "S2702_C02_003E": {"label": "Estimate!!Total Uninsured!!Total civilian noninstitutionalized population!!AGE!!Under 19 years!!Under 6 years", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_003EA,S2702_C02_003M,S2702_C02_003MA"}, "S2702PR_C02_016E": {"label": "Estimate!!Total Uninsured!!Total civilian noninstitutionalized population!!SEX!!Female", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_016EA,S2702PR_C02_016M,S2702PR_C02_016MA"}, "S0102_C02_008E": {"label": "Estimate!!60 years and over!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_008EA,S0102_C02_008M,S0102_C02_008MA"}, "S0601PR_C03_053E": {"label": "Estimate!!Native; born in the U.S.!!PERCENT ALLOCATED!!Place of birth", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "int", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C03_053EA,S0601PR_C03_053M,S0601PR_C03_053MA"}, "S2001_C01_012E": {"label": "Estimate!!Total!!Population 16 years and over with earnings!!FULL-TIME, YEAR-ROUND WORKERS WITH EARNINGS!!$100,000 or more", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C01_012EA,S2001_C01_012M,S2001_C01_012MA"}, "S1501_C04_003E": {"label": "Estimate!!Percent Male!!AGE BY EDUCATIONAL ATTAINMENT!!Population 18 to 24 years!!High school graduate (includes equivalency)", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C04_003EA,S1501_C04_003M,S1501_C04_003MA"}, "S2702_C02_004E": {"label": "Estimate!!Total Uninsured!!Total civilian noninstitutionalized population!!AGE!!Under 19 years!!6 to 18 years", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_004EA,S2702_C02_004M,S2702_C02_004MA"}, "S2702PR_C02_019E": {"label": "Estimate!!Total Uninsured!!Total civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American alone", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_019EA,S2702PR_C02_019M,S2702PR_C02_019MA"}, "S2702_C02_005E": {"label": "Estimate!!Total Uninsured!!Total civilian noninstitutionalized population!!AGE!!19 to 64 years", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_005EA,S2702_C02_005M,S2702_C02_005MA"}, "S1501_C04_004E": {"label": "Estimate!!Percent Male!!AGE BY EDUCATIONAL ATTAINMENT!!Population 18 to 24 years!!Some college or associate's degree", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C04_004EA,S1501_C04_004M,S1501_C04_004MA"}, "S2001_C01_011E": {"label": "Estimate!!Total!!Population 16 years and over with earnings!!FULL-TIME, YEAR-ROUND WORKERS WITH EARNINGS!!$75,000 to $99,999", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C01_011EA,S2001_C01_011M,S2001_C01_011MA"}, "S0102_C02_009E": {"label": "Estimate!!60 years and over!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_009EA,S0102_C02_009M,S0102_C02_009MA"}, "S2702PR_C02_018E": {"label": "Estimate!!Total Uninsured!!Total civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White alone", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_018EA,S2702PR_C02_018M,S2702PR_C02_018MA"}, "S0502_C01_089E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$1 to $9,999 or loss", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_089EA,S0502_C01_089M,S0502_C01_089MA"}, "S2601A_C01_024E": {"label": "Estimate!!Total population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_024EA,S2601A_C01_024M,S2601A_C01_024MA"}, "S2602_C04_028E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!Two or more races", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C04_028EA,S2602_C04_028M,S2602_C04_028MA"}, "S0101_C06_012E": {"label": "Estimate!!Percent Female!!Total population!!AGE!!50 to 54 years", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C06_012EA,S0101_C06_012M,S0101_C06_012MA"}, "S2603_C07_040E": {"label": "Estimate!!Military quarters/military ships!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C07_040EA,S2603_C07_040M,S2603_C07_040MA"}, "S2001_C01_014E": {"label": "Estimate!!Total!!Population 16 years and over with earnings!!FULL-TIME, YEAR-ROUND WORKERS WITH EARNINGS!!Mean earnings (dollars) for full-time, year-round workers with earnings", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C01_014EA,S2001_C01_014M,S2001_C01_014MA"}, "S2502_C06_003E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!One race --!!Black or African American", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C06_003EA,S2502_C06_003M,S2502_C06_003MA"}, "S0502_C01_076E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Construction", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_076EA,S0502_C01_076M,S0502_C01_076MA"}, "S0502_C03_106E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income!!Mean cash public assistance income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C03_106EA,S0502_C03_106M,S0502_C03_106MA"}, "S2601A_C01_025E": {"label": "Estimate!!Total population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Asian", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_025EA,S2601A_C01_025M,S2601A_C01_025MA"}, "S2502_C06_002E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!One race --!!White", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C06_002EA,S2502_C06_002M,S2502_C06_002MA"}, "S2602_C04_027E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Some other race", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C04_027EA,S2602_C04_027M,S2602_C04_027MA"}, "S0101_C06_011E": {"label": "Estimate!!Percent Female!!Total population!!AGE!!45 to 49 years", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C06_011EA,S0101_C06_011M,S0101_C06_011MA"}, "S2001_C01_013E": {"label": "Estimate!!Total!!Population 16 years and over with earnings!!FULL-TIME, YEAR-ROUND WORKERS WITH EARNINGS!!Median earnings (dollars) for full-time, year-round workers with earnings", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C01_013EA,S2001_C01_013M,S2001_C01_013MA"}, "S0502_C03_107E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_107EA,S0502_C03_107M,S0502_C03_107MA"}, "S0502_C01_075E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Agriculture, forestry, fishing and hunting, and mining", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_075EA,S0502_C01_075M,S0502_C01_075MA"}, "S2601A_C01_022E": {"label": "Estimate!!Total population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!White", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_022EA,S2601A_C01_022M,S2601A_C01_022MA"}, "S2502_C06_001E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C06_001EA,S2502_C06_001M,S2502_C06_001MA"}, "S0502_C01_074E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!OCCUPATION!!Production, transportation, and material moving occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_074EA,S0502_C01_074M,S0502_C01_074MA"}, "S2001_C01_016E": {"label": "Estimate!!Total!!MEDIAN EARNINGS BY EDUCATIONAL ATTAINMENT!!Population 25 years and over with earnings!!Less than high school graduate", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C01_016EA,S2001_C01_016M,S2001_C01_016MA"}, "S0101_C06_010E": {"label": "Estimate!!Percent Female!!Total population!!AGE!!40 to 44 years", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C06_010EA,S0101_C06_010M,S0101_C06_010MA"}, "S2603_C07_042E": {"label": "Estimate!!Military quarters/military ships!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree or higher", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C07_042EA,S2603_C07_042M,S2603_C07_042MA"}, "S0502_C03_104E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income!!Mean Supplemental Security Income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C03_104EA,S0502_C03_104M,S0502_C03_104MA"}, "S2601A_C01_023E": {"label": "Estimate!!Total population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_023EA,S2601A_C01_023M,S2601A_C01_023MA"}, "S0502_C01_073E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!OCCUPATION!!Natural resources, construction, and maintenance occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_073EA,S0502_C01_073M,S0502_C01_073MA"}, "S2602_C04_029E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!Hispanic or Latino (of any race)", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C04_029EA,S2602_C04_029M,S2602_C04_029MA"}, "S2603_C07_041E": {"label": "Estimate!!Military quarters/military ships!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate or higher", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C07_041EA,S2603_C07_041M,S2603_C07_041MA"}, "S2001_C01_015E": {"label": "Estimate!!Total!!MEDIAN EARNINGS BY EDUCATIONAL ATTAINMENT!!Population 25 years and over with earnings", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C01_015EA,S2001_C01_015M,S2001_C01_015MA"}, "S0502_C03_105E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_105EA,S0502_C03_105M,S0502_C03_105MA"}, "S2601A_C01_028E": {"label": "Estimate!!Total population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!Two or more races", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_028EA,S2601A_C01_028M,S2601A_C01_028MA"}, "S2702PR_C02_021E": {"label": "Estimate!!Total Uninsured!!Total civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian alone", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_021EA,S2702PR_C02_021M,S2702PR_C02_021MA"}, "S2603_C07_044E": {"label": "Estimate!!Military quarters/military ships!!VETERAN STATUS!!Civilian population 18 years and over!!Civilian veteran", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C07_044EA,S2603_C07_044M,S2603_C07_044MA"}, "S2602_C04_024E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C04_024EA,S2602_C04_024M,S2602_C04_024MA"}, "S0101_C06_016E": {"label": "Estimate!!Percent Female!!Total population!!AGE!!70 to 74 years", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C06_016EA,S0101_C06_016M,S0101_C06_016MA"}, "S0502_C01_072E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!OCCUPATION!!Sales and office occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_072EA,S0502_C01_072M,S0502_C01_072MA"}, "S2001_C01_018E": {"label": "Estimate!!Total!!MEDIAN EARNINGS BY EDUCATIONAL ATTAINMENT!!Population 25 years and over with earnings!!Some college or associate's degree", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C01_018EA,S2001_C01_018M,S2001_C01_018MA"}, "S2502_C06_007E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!One race --!!Some other race", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C06_007EA,S2502_C06_007M,S2502_C06_007MA"}, "S2601A_C01_029E": {"label": "Estimate!!Total population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!Hispanic or Latino (of any race)", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_029EA,S2601A_C01_029M,S2601A_C01_029MA"}, "S2702PR_C02_020E": {"label": "Estimate!!Total Uninsured!!Total civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native alone", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_020EA,S2702PR_C02_020M,S2702PR_C02_020MA"}, "S2602_C04_023E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C04_023EA,S2602_C04_023M,S2602_C04_023MA"}, "S0101_C06_015E": {"label": "Estimate!!Percent Female!!Total population!!AGE!!65 to 69 years", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C06_015EA,S0101_C06_015M,S0101_C06_015MA"}, "S0502_C01_071E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!OCCUPATION!!Service occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_071EA,S0502_C01_071M,S0502_C01_071MA"}, "S2603_C07_043E": {"label": "Estimate!!Military quarters/military ships!!VETERAN STATUS!!Civilian population 18 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C07_043EA,S2603_C07_043M,S2603_C07_043MA"}, "S2502_C06_006E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!One race --!!Native Hawaiian and Other Pacific Islander", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C06_006EA,S2502_C06_006M,S2502_C06_006MA"}, "S2001_C01_017E": {"label": "Estimate!!Total!!MEDIAN EARNINGS BY EDUCATIONAL ATTAINMENT!!Population 25 years and over with earnings!!High school graduate (includes equivalency)", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C01_017EA,S2001_C01_017M,S2001_C01_017MA"}, "S2702PR_C02_023E": {"label": "Estimate!!Total Uninsured!!Total civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race alone", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_023EA,S2702PR_C02_023M,S2702PR_C02_023MA"}, "S2601A_C01_026E": {"label": "Estimate!!Total population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_026EA,S2601A_C01_026M,S2601A_C01_026MA"}, "S2603_C07_046E": {"label": "Estimate!!Military quarters/military ships!!DISABILITY STATUS!!Total population!!With a disability", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C07_046EA,S2603_C07_046M,S2603_C07_046MA"}, "S2602_C04_026E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C04_026EA,S2602_C04_026M,S2602_C04_026MA"}, "S0101_C06_014E": {"label": "Estimate!!Percent Female!!Total population!!AGE!!60 to 64 years", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C06_014EA,S0101_C06_014M,S0101_C06_014MA"}, "S0502_C01_070E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!OCCUPATION!!Management, business, science, and arts occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_070EA,S0502_C01_070M,S0502_C01_070MA"}, "S0502_C03_108E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income!!Mean retirement income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C03_108EA,S0502_C03_108M,S0502_C03_108MA"}, "S2502_C06_005E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!One race --!!Asian", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C06_005EA,S2502_C06_005M,S2502_C06_005MA"}, "S2601A_C01_027E": {"label": "Estimate!!Total population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Some other race", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_027EA,S2601A_C01_027M,S2601A_C01_027MA"}, "S2702PR_C02_022E": {"label": "Estimate!!Total Uninsured!!Total civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander alone", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_022EA,S2702PR_C02_022M,S2702PR_C02_022MA"}, "S2603_C07_045E": {"label": "Estimate!!Military quarters/military ships!!DISABILITY STATUS!!Total population", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C07_045EA,S2603_C07_045M,S2603_C07_045MA"}, "S2602_C04_025E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Asian", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C04_025EA,S2602_C04_025M,S2602_C04_025MA"}, "S0101_C06_013E": {"label": "Estimate!!Percent Female!!Total population!!AGE!!55 to 59 years", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C06_013EA,S0101_C06_013M,S0101_C06_013MA"}, "S2502_C06_004E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!One race --!!American Indian and Alaska Native", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C06_004EA,S2502_C06_004M,S2502_C06_004MA"}, "S2001_C01_019E": {"label": "Estimate!!Total!!MEDIAN EARNINGS BY EDUCATIONAL ATTAINMENT!!Population 25 years and over with earnings!!Bachelor's degree", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C01_019EA,S2001_C01_019M,S2001_C01_019MA"}, "S0502_C03_109E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Food Stamp/SNAP benefits", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_109EA,S0502_C03_109M,S0502_C03_109MA"}, "S0506_C04_011E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Foreign-born population!!SEX AND AGE!!Female", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_011EA,S0506_C04_011M,S0506_C04_011MA"}, "S2602_C04_020E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!Total population!!SEX AND AGE!!Median age (years)", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C04_020EA,S2602_C04_020M,S2602_C04_020MA"}, "S0102_C02_010E": {"label": "Estimate!!60 years and over!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_010EA,S0102_C02_010M,S0102_C02_010MA"}, "S2503_C02_002E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Less than $5,000", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C02_002EA,S2503_C02_002M,S2503_C02_002MA"}, "S0506_C04_010E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Foreign-born population!!SEX AND AGE!!Male", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_010EA,S0506_C04_010M,S0506_C04_010MA"}, "S0102_C02_011E": {"label": "Estimate!!60 years and over!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_011EA,S0102_C02_011M,S0102_C02_011MA"}, "S2503_C02_001E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C02_001EA,S2503_C02_001M,S2503_C02_001MA"}, "S0506_C04_013E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Foreign-born population!!SEX AND AGE!!5 to 17 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_013EA,S0506_C04_013M,S0506_C04_013MA"}, "S2602_C04_022E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!White", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C04_022EA,S2602_C04_022M,S2602_C04_022MA"}, "S0506_C04_012E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Foreign-born population!!SEX AND AGE!!Under 5 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_012EA,S0506_C04_012M,S0506_C04_012MA"}, "S0502PR_C03_089E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$1 to $9,999 or loss", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_089EA,S0502PR_C03_089M,S0502PR_C03_089MA"}, "S2602_C04_021E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C04_021EA,S2602_C04_021M,S2602_C04_021MA"}, "S0502_C03_102E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income!!Mean Social Security income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C03_102EA,S0502_C03_102M,S0502_C03_102MA"}, "S2002_C04_009E": {"label": "Estimate!!Women's earnings as a percentage of men's earnings!!Full-time, year-round workers 16 years and over with earnings!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "float", "group": "S2002", "limit": 0, "attributes": "S2002_C04_009EA,S2002_C04_009M,S2002_C04_009MA"}, "S0506_C04_015E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Foreign-born population!!SEX AND AGE!!25 to 44 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_015EA,S0506_C04_015M,S0506_C04_015MA"}, "S0506_C04_014E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Foreign-born population!!SEX AND AGE!!18 to 24 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_014EA,S0506_C04_014M,S0506_C04_014MA"}, "S0502_C03_103E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_103EA,S0502_C03_103M,S0502_C03_103MA"}, "S0502_C03_100E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings!!Mean earnings (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C03_100EA,S0502_C03_100M,S0502_C03_100MA"}, "S0506_C04_017E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Foreign-born population!!SEX AND AGE!!55 to 64 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_017EA,S0506_C04_017M,S0506_C04_017MA"}, "S0502_C03_101E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_101EA,S0502_C03_101M,S0502_C03_101MA"}, "S0506_C04_016E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Foreign-born population!!SEX AND AGE!!45 to 54 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_016EA,S0506_C04_016M,S0506_C04_016MA"}, "S0504_C02_100E": {"label": "Estimate!!Foreign-born; Born in Africa!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_100EA,S0504_C02_100M,S0504_C02_100MA"}, "S2002_C04_017E": {"label": "Estimate!!Women's earnings as a percentage of men's earnings!!Full-time, year-round civilian workers 16 years and over with earnings", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "float", "group": "S2002", "limit": 0, "attributes": "S2002_C04_017EA,S2002_C04_017M,S2002_C04_017MA"}, "S0502PR_C03_084E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Civilian employed population 16 years and over!!INDUSTRY!!Educational services, and health care and social assistance", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_084EA,S0502PR_C03_084M,S0502PR_C03_084MA"}, "S0102_C02_018E": {"label": "Estimate!!60 years and over!!RELATIONSHIP!!Population in households!!Other relatives", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_018EA,S0102_C02_018M,S0102_C02_018MA"}, "S0506_C04_019E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Foreign-born population!!SEX AND AGE!!75 to 84 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_019EA,S0506_C04_019M,S0506_C04_019MA"}, "S2503_C02_009E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$50,000 to $74,999", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C02_009EA,S2503_C02_009M,S2503_C02_009MA"}, "S0502PR_C03_083E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Civilian employed population 16 years and over!!INDUSTRY!!Professional, scientific, and management, and administrative and waste management services", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_083EA,S0502PR_C03_083M,S0502PR_C03_083MA"}, "S2002_C04_018E": {"label": "Estimate!!Women's earnings as a percentage of men's earnings!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Management occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "float", "group": "S2002", "limit": 0, "attributes": "S2002_C04_018EA,S2002_C04_018M,S2002_C04_018MA"}, "S0102_C02_019E": {"label": "Estimate!!60 years and over!!RELATIONSHIP!!Population in households!!Nonrelatives", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_019EA,S0102_C02_019M,S0102_C02_019MA"}, "S0506_C04_018E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Foreign-born population!!SEX AND AGE!!65 to 74 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_018EA,S0506_C04_018M,S0506_C04_018MA"}, "S2503_C02_008E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$35,000 to $49,999", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C02_008EA,S2503_C02_008M,S2503_C02_008MA"}, "S2002_C04_019E": {"label": "Estimate!!Women's earnings as a percentage of men's earnings!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Business and financial operations occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "float", "group": "S2002", "limit": 0, "attributes": "S2002_C04_019EA,S2002_C04_019M,S2002_C04_019MA"}, "S0502PR_C03_082E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Civilian employed population 16 years and over!!INDUSTRY!!Finance and insurance, and real estate and rental and leasing", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_082EA,S0502PR_C03_082M,S0502PR_C03_082MA"}, "S0102_C02_016E": {"label": "Estimate!!60 years and over!!RELATIONSHIP!!Population in households!!Householder or spouse", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_016EA,S0102_C02_016M,S0102_C02_016MA"}, "S0504_C02_102E": {"label": "Estimate!!Foreign-born; Born in Africa!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_102EA,S0504_C02_102M,S0504_C02_102MA"}, "S0504_C02_101E": {"label": "Estimate!!Foreign-born; Born in Africa!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income!!Mean Social Security income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C02_101EA,S0504_C02_101M,S0504_C02_101MA"}, "S2503_C02_007E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$25,000 to $34,999", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C02_007EA,S2503_C02_007M,S2503_C02_007MA"}, "S0102_C02_017E": {"label": "Estimate!!60 years and over!!RELATIONSHIP!!Population in households!!Parent", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_017EA,S0102_C02_017M,S0102_C02_017MA"}, "S0502PR_C03_081E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Civilian employed population 16 years and over!!INDUSTRY!!Information", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_081EA,S0502PR_C03_081M,S0502PR_C03_081MA"}, "S2002_C04_013E": {"label": "Estimate!!Women's earnings as a percentage of men's earnings!!EDUCATIONAL ATTAINMENT!!Population 25 years and over with earnings!!High school graduate (includes equivalency)", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "float", "group": "S2002", "limit": 0, "attributes": "S2002_C04_013EA,S2002_C04_013M,S2002_C04_013MA"}, "S2503_C02_006E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$20,000 to $24,999", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C02_006EA,S2503_C02_006M,S2503_C02_006MA"}, "S0502PR_C03_088E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_088EA,S0502PR_C03_088M,S0502PR_C03_088MA"}, "S0102_C02_014E": {"label": "Estimate!!60 years and over!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_014EA,S0102_C02_014M,S0102_C02_014MA"}, "S0601PR_C03_047E": {"label": "Estimate!!Native; born in the U.S.!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!Median income (dollars)", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "int", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C03_047EA,S0601PR_C03_047M,S0601PR_C03_047MA"}, "S0504_C02_104E": {"label": "Estimate!!Foreign-born; Born in Africa!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_104EA,S0504_C02_104M,S0504_C02_104MA"}, "S0502PR_C03_087E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Civilian employed population 16 years and over!!INDUSTRY!!Public administration", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_087EA,S0502PR_C03_087M,S0502PR_C03_087MA"}, "S2002_C04_014E": {"label": "Estimate!!Women's earnings as a percentage of men's earnings!!EDUCATIONAL ATTAINMENT!!Population 25 years and over with earnings!!Some college or associate's degree", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "float", "group": "S2002", "limit": 0, "attributes": "S2002_C04_014EA,S2002_C04_014M,S2002_C04_014MA"}, "S0102_C02_015E": {"label": "Estimate!!60 years and over!!RELATIONSHIP!!Population in households", "concept": "Population 60 Years and Over in the United States", "predicateType": "int", "group": "S0102", "limit": 0, "attributes": "S0102_C02_015EA,S0102_C02_015M,S0102_C02_015MA"}, "S0601PR_C03_048E": {"label": "Estimate!!Native; born in the U.S.!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "int", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C03_048EA,S0601PR_C03_048M,S0601PR_C03_048MA"}, "S2503_C02_005E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$15,000 to $19,999", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C02_005EA,S2503_C02_005M,S2503_C02_005MA"}, "S0504_C02_103E": {"label": "Estimate!!Foreign-born; Born in Africa!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income!!Mean Supplemental Security Income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C02_103EA,S0504_C02_103M,S0504_C02_103MA"}, "S2002_C04_015E": {"label": "Estimate!!Women's earnings as a percentage of men's earnings!!EDUCATIONAL ATTAINMENT!!Population 25 years and over with earnings!!Bachelor's degree", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "float", "group": "S2002", "limit": 0, "attributes": "S2002_C04_015EA,S2002_C04_015M,S2002_C04_015MA"}, "S0502PR_C03_086E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Civilian employed population 16 years and over!!INDUSTRY!!Other services (except public administration)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_086EA,S0502PR_C03_086M,S0502PR_C03_086MA"}, "S0102_C02_012E": {"label": "Estimate!!60 years and over!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_012EA,S0102_C02_012M,S0102_C02_012MA"}, "S0601PR_C03_049E": {"label": "Estimate!!Native; born in the U.S.!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!Below 100 percent of the poverty level", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C03_049EA,S0601PR_C03_049M,S0601PR_C03_049MA"}, "S0504_C02_106E": {"label": "Estimate!!Foreign-born; Born in Africa!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_106EA,S0504_C02_106M,S0504_C02_106MA"}, "S2503_C02_004E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$10,000 to $14,999", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C02_004EA,S2503_C02_004M,S2503_C02_004MA"}, "S2002_C04_016E": {"label": "Estimate!!Women's earnings as a percentage of men's earnings!!EDUCATIONAL ATTAINMENT!!Population 25 years and over with earnings!!Graduate or professional degree", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "float", "group": "S2002", "limit": 0, "attributes": "S2002_C04_016EA,S2002_C04_016M,S2002_C04_016MA"}, "S0102_C02_013E": {"label": "Estimate!!60 years and over!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C02_013EA,S0102_C02_013M,S0102_C02_013MA"}, "S0502PR_C03_085E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Civilian employed population 16 years and over!!INDUSTRY!!Arts, entertainment, and recreation, and accommodation and food services", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_085EA,S0502PR_C03_085M,S0502PR_C03_085MA"}, "S0504_C02_105E": {"label": "Estimate!!Foreign-born; Born in Africa!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income!!Mean cash public assistance income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C02_105EA,S0504_C02_105M,S0504_C02_105MA"}, "S2503_C02_003E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$5,000 to $9,999", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C02_003EA,S2503_C02_003M,S2503_C02_003MA"}, "S0601PR_C03_043E": {"label": "Estimate!!Native; born in the U.S.!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$35,000 to $49,999", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C03_043EA,S0601PR_C03_043M,S0601PR_C03_043MA"}, "S0101_C06_008E": {"label": "Estimate!!Percent Female!!Total population!!AGE!!30 to 34 years", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C06_008EA,S0101_C06_008M,S0101_C06_008MA"}, "S2603_C07_048E": {"label": "Estimate!!Military quarters/military ships!!DISABILITY STATUS!!Population 18 to 64 years!!With a disability", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C07_048EA,S2603_C07_048M,S2603_C07_048MA"}, "S0504_C02_108E": {"label": "Estimate!!Foreign-born; Born in Africa!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Food Stamp/SNAP benefits", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_108EA,S0504_C02_108M,S0504_C02_108MA"}, "S2702PR_C02_025E": {"label": "Estimate!!Total Uninsured!!Total civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino (of any race)", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_025EA,S2702PR_C02_025M,S2702PR_C02_025MA"}, "S2702PR_C02_024E": {"label": "Estimate!!Total Uninsured!!Total civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_024EA,S2702PR_C02_024M,S2702PR_C02_024MA"}, "S2603_C07_047E": {"label": "Estimate!!Military quarters/military ships!!DISABILITY STATUS!!Population 18 to 64 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C07_047EA,S2603_C07_047M,S2603_C07_047MA"}, "S2002_C04_010E": {"label": "Estimate!!Women's earnings as a percentage of men's earnings!!Full-time, year-round workers 16 years and over with earnings!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "float", "group": "S2002", "limit": 0, "attributes": "S2002_C04_010EA,S2002_C04_010M,S2002_C04_010MA"}, "S0101_C06_007E": {"label": "Estimate!!Percent Female!!Total population!!AGE!!25 to 29 years", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C06_007EA,S0101_C06_007M,S0101_C06_007MA"}, "S0601PR_C03_044E": {"label": "Estimate!!Native; born in the U.S.!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$50,000 to $64,999", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C03_044EA,S0601PR_C03_044M,S0601PR_C03_044MA"}, "S0504_C02_107E": {"label": "Estimate!!Foreign-born; Born in Africa!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income!!Mean retirement income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C02_107EA,S0504_C02_107M,S0504_C02_107MA"}, "S2002_C04_011E": {"label": "Estimate!!Women's earnings as a percentage of men's earnings!!EDUCATIONAL ATTAINMENT!!Population 25 years and over with earnings", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "float", "group": "S2002", "limit": 0, "attributes": "S2002_C04_011EA,S2002_C04_011M,S2002_C04_011MA"}, "S0601PR_C03_045E": {"label": "Estimate!!Native; born in the U.S.!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$65,000 to $74,999", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C03_045EA,S0601PR_C03_045M,S0601PR_C03_045MA"}, "S0101_C06_006E": {"label": "Estimate!!Percent Female!!Total population!!AGE!!20 to 24 years", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C06_006EA,S0101_C06_006M,S0101_C06_006MA"}, "S2001_C01_020E": {"label": "Estimate!!Total!!MEDIAN EARNINGS BY EDUCATIONAL ATTAINMENT!!Population 25 years and over with earnings!!Graduate or professional degree", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C01_020EA,S2001_C01_020M,S2001_C01_020MA"}, "S2702PR_C02_027E": {"label": "Estimate!!Total Uninsured!!Total civilian noninstitutionalized population!!NATIVITY AND U.S. CITIZENSHIP STATUS!!Native born", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_027EA,S2702PR_C02_027M,S2702PR_C02_027MA"}, "S2002_C04_012E": {"label": "Estimate!!Women's earnings as a percentage of men's earnings!!EDUCATIONAL ATTAINMENT!!Population 25 years and over with earnings!!Less than high school graduate", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "float", "group": "S2002", "limit": 0, "attributes": "S2002_C04_012EA,S2002_C04_012M,S2002_C04_012MA"}, "S2603_C07_049E": {"label": "Estimate!!Military quarters/military ships!!DISABILITY STATUS!!Population 18 to 64 years!!No disability", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C07_049EA,S2603_C07_049M,S2603_C07_049MA"}, "S0101_C06_005E": {"label": "Estimate!!Percent Female!!Total population!!AGE!!15 to 19 years", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C06_005EA,S0101_C06_005M,S0101_C06_005MA"}, "S0601PR_C03_046E": {"label": "Estimate!!Native; born in the U.S.!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$75,000 or more", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C03_046EA,S0601PR_C03_046M,S0601PR_C03_046MA"}, "S0504_C02_109E": {"label": "Estimate!!Foreign-born; Born in Africa!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!Median Household income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C02_109EA,S0504_C02_109M,S0504_C02_109MA"}, "S2702PR_C02_026E": {"label": "Estimate!!Total Uninsured!!Total civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_026EA,S2702PR_C02_026M,S2702PR_C02_026MA"}, "S2601A_C01_032E": {"label": "Estimate!!Total population!!MARITAL STATUS!!Population 15 years and over", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_032EA,S2601A_C01_032M,S2601A_C01_032MA"}, "S0502PR_C03_080E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Civilian employed population 16 years and over!!INDUSTRY!!Transportation and warehousing, and utilities", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_080EA,S0502PR_C03_080M,S0502PR_C03_080MA"}, "S2702PR_C02_029E": {"label": "Estimate!!Total Uninsured!!Total civilian noninstitutionalized population!!NATIVITY AND U.S. CITIZENSHIP STATUS!!Foreign born!!Naturalized", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_029EA,S2702PR_C02_029M,S2702PR_C02_029MA"}, "S2601A_C01_033E": {"label": "Estimate!!Total population!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_033EA,S2601A_C01_033M,S2601A_C01_033MA"}, "S0601PR_C03_040E": {"label": "Estimate!!Native; born in the U.S.!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$10,000 to $14,999", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C03_040EA,S0601PR_C03_040M,S0601PR_C03_040MA"}, "S2602_C04_019E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!Total population!!SEX AND AGE!!65 years and over!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C04_019EA,S2602_C04_019M,S2602_C04_019MA"}, "S0502_C01_079E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Retail trade", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_079EA,S0502_C01_079M,S0502_C01_079MA"}, "S2702PR_C02_028E": {"label": "Estimate!!Total Uninsured!!Total civilian noninstitutionalized population!!NATIVITY AND U.S. CITIZENSHIP STATUS!!Foreign born", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_028EA,S2702PR_C02_028M,S2702PR_C02_028MA"}, "S2601A_C01_030E": {"label": "Estimate!!Total population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!Not Hispanic or Latino", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_030EA,S2601A_C01_030M,S2601A_C01_030MA"}, "S0601PR_C03_041E": {"label": "Estimate!!Native; born in the U.S.!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$15,000 to $24,999", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C03_041EA,S0601PR_C03_041M,S0601PR_C03_041MA"}, "S0502_C01_078E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Wholesale trade", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_078EA,S0502_C01_078M,S0502_C01_078MA"}, "S2601A_C01_031E": {"label": "Estimate!!Total population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!White alone, Not Hispanic or Latino", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_031EA,S2601A_C01_031M,S2601A_C01_031MA"}, "S0101_C06_009E": {"label": "Estimate!!Percent Female!!Total population!!AGE!!35 to 39 years", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C06_009EA,S0101_C06_009M,S0101_C06_009MA"}, "S0601PR_C03_042E": {"label": "Estimate!!Native; born in the U.S.!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$25,000 to $34,999", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C03_042EA,S0601PR_C03_042M,S0601PR_C03_042MA"}, "S0502_C01_077E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Manufacturing", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_077EA,S0502_C01_077M,S0502_C01_077MA"}, "S2601A_C01_036E": {"label": "Estimate!!Total population!!MARITAL STATUS!!Population 15 years and over!!Separated", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_036EA,S2601A_C01_036M,S2601A_C01_036MA"}, "S2702_C02_018E": {"label": "Estimate!!Total Uninsured!!Total civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White alone", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_018EA,S2702_C02_018M,S2702_C02_018MA"}, "S2602_C04_016E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!Total population!!SEX AND AGE!!Under 18 years!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C04_016EA,S2602_C04_016M,S2602_C04_016MA"}, "S2405_C03_003E": {"label": "Estimate!!Service occupations!!Civilian employed population 16 years and over!!Construction", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2405", "limit": 0, "attributes": "S2405_C03_003EA,S2405_C03_003M,S2405_C03_003MA"}, "S2101_C06_024E": {"label": "Estimate!!Percent Nonveterans!!MEDIAN INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Civilian population 18 years and over with income!!Male", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C06_024EA,S2101_C06_024M,S2101_C06_024MA"}, "S2601A_C01_037E": {"label": "Estimate!!Total population!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_037EA,S2601A_C01_037M,S2601A_C01_037MA"}, "S2702_C02_019E": {"label": "Estimate!!Total Uninsured!!Total civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American alone", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_019EA,S2702_C02_019M,S2702_C02_019MA"}, "S2405_C03_004E": {"label": "Estimate!!Service occupations!!Civilian employed population 16 years and over!!Manufacturing", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2405", "limit": 0, "attributes": "S2405_C03_004EA,S2405_C03_004M,S2405_C03_004MA"}, "S2101_C06_023E": {"label": "Estimate!!Percent Nonveterans!!MEDIAN INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Civilian population 18 years and over with income", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C06_023EA,S2101_C06_023M,S2101_C06_023MA"}, "S2602_C04_015E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!Total population!!SEX AND AGE!!Under 18 years!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C04_015EA,S2602_C04_015M,S2602_C04_015MA"}, "S2702PR_C02_031E": {"label": "Estimate!!Total Uninsured!!Total civilian noninstitutionalized population!!DISABILITY STATUS!!With a disability", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_031EA,S2702PR_C02_031M,S2702PR_C02_031MA"}, "S2601A_C01_034E": {"label": "Estimate!!Total population!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_034EA,S2601A_C01_034M,S2601A_C01_034MA"}, "S2405_C03_005E": {"label": "Estimate!!Service occupations!!Civilian employed population 16 years and over!!Wholesale trade", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2405", "limit": 0, "attributes": "S2405_C03_005EA,S2405_C03_005M,S2405_C03_005MA"}, "S2101_C06_022E": {"label": "Estimate!!Percent Nonveterans!!Civilian population 18 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C06_022EA,S2101_C06_022M,S2101_C06_022MA"}, "S2602_C04_018E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!Total population!!SEX AND AGE!!65 years and over!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C04_018EA,S2602_C04_018M,S2602_C04_018MA"}, "S1601_C02_020E": {"label": "Estimate!!Percent!!CITIZENS 18 YEARS AND OVER!!All citizens 18 years old and over", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C02_020EA,S1601_C02_020M,S1601_C02_020MA"}, "S2601A_C01_035E": {"label": "Estimate!!Total population!!MARITAL STATUS!!Population 15 years and over!!Divorced", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_035EA,S2601A_C01_035M,S2601A_C01_035MA"}, "S2702PR_C02_030E": {"label": "Estimate!!Total Uninsured!!Total civilian noninstitutionalized population!!NATIVITY AND U.S. CITIZENSHIP STATUS!!Foreign born!!Not a citizen", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_030EA,S2702PR_C02_030M,S2702PR_C02_030MA"}, "S2405_C03_006E": {"label": "Estimate!!Service occupations!!Civilian employed population 16 years and over!!Retail trade", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2405", "limit": 0, "attributes": "S2405_C03_006EA,S2405_C03_006M,S2405_C03_006MA"}, "S2602_C04_017E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!Total population!!SEX AND AGE!!65 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C04_017EA,S2602_C04_017M,S2602_C04_017MA"}, "S1601_C02_021E": {"label": "Estimate!!Percent!!CITIZENS 18 YEARS AND OVER!!All citizens 18 years old and over!!Speak only English", "concept": "Language Spoken at Home", "predicateType": "float", "group": "S1601", "limit": 0, "attributes": "S1601_C02_021EA,S1601_C02_021M,S1601_C02_021MA"}, "S2101_C06_021E": {"label": "Estimate!!Percent Nonveterans!!Civilian population 18 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino (of any race)", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C06_021EA,S2101_C06_021M,S2101_C06_021MA"}, "S2702PR_C02_033E": {"label": "Estimate!!Total Uninsured!!RESIDENCE 1 YEAR AGO!!Civilian noninstitutionalized population 1 year and over", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "int", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_033EA,S2702PR_C02_033M,S2702PR_C02_033MA"}, "S2602_C04_012E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!Total population!!SEX AND AGE!!75 to 84 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C04_012EA,S2602_C04_012M,S2602_C04_012MA"}, "S1501_C04_021E": {"label": "Estimate!!Percent Male!!AGE BY EDUCATIONAL ATTAINMENT!!Population 35 to 44 years!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C04_021EA,S1501_C04_021M,S1501_C04_021MA"}, "S2101_C06_028E": {"label": "Estimate!!Percent Nonveterans!!EDUCATIONAL ATTAINMENT!!Civilian population 25 years and over!!High school graduate (includes equivalency)", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C06_028EA,S2101_C06_028M,S2101_C06_028MA"}, "S2702PR_C02_032E": {"label": "Estimate!!Total Uninsured!!Total civilian noninstitutionalized population!!DISABILITY STATUS!!No disability", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_032EA,S2702PR_C02_032M,S2702PR_C02_032MA"}, "S2602_C04_011E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!Total population!!SEX AND AGE!!65 to 74 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C04_011EA,S2602_C04_011M,S2602_C04_011MA"}, "S1501_C04_022E": {"label": "Estimate!!Percent Male!!AGE BY EDUCATIONAL ATTAINMENT!!Population 45 to 64 years", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C04_022EA,S1501_C04_022M,S1501_C04_022MA"}, "S2101_C06_027E": {"label": "Estimate!!Percent Nonveterans!!EDUCATIONAL ATTAINMENT!!Civilian population 25 years and over!!Less than high school graduate", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C06_027EA,S2101_C06_027M,S2101_C06_027MA"}, "S2702PR_C02_035E": {"label": "Estimate!!Total Uninsured!!RESIDENCE 1 YEAR AGO!!Civilian noninstitutionalized population 1 year and over!!Different House in Puerto Rico or the United States", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_035EA,S2702PR_C02_035M,S2702PR_C02_035MA"}, "S2601A_C01_038E": {"label": "Estimate!!Total population!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_038EA,S2601A_C01_038M,S2601A_C01_038MA"}, "S2602_C04_014E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!Total population!!SEX AND AGE!!Under 18 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C04_014EA,S2602_C04_014M,S2602_C04_014MA"}, "S2405_C03_001E": {"label": "Estimate!!Service occupations!!Civilian employed population 16 years and over", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2405", "limit": 0, "attributes": "S2405_C03_001EA,S2405_C03_001M,S2405_C03_001MA"}, "S2101_C06_026E": {"label": "Estimate!!Percent Nonveterans!!EDUCATIONAL ATTAINMENT!!Civilian population 25 years and over", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C06_026EA,S2101_C06_026M,S2101_C06_026MA"}, "S2603_C07_010E": {"label": "Estimate!!Military quarters/military ships!!Total population!!SEX AND AGE!!55 to 64 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C07_010EA,S2603_C07_010M,S2603_C07_010MA"}, "S2601A_C01_039E": {"label": "Estimate!!Total population!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Nursery school through 12th grade", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_039EA,S2601A_C01_039M,S2601A_C01_039MA"}, "S2702PR_C02_034E": {"label": "Estimate!!Total Uninsured!!RESIDENCE 1 YEAR AGO!!Civilian noninstitutionalized population 1 year and over!!Same house", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_034EA,S2702PR_C02_034M,S2702PR_C02_034MA"}, "S2602_C04_013E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!Total population!!SEX AND AGE!!85 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C04_013EA,S2602_C04_013M,S2602_C04_013MA"}, "S2101_C06_025E": {"label": "Estimate!!Percent Nonveterans!!MEDIAN INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Civilian population 18 years and over with income!!Female", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C06_025EA,S2101_C06_025M,S2101_C06_025MA"}, "S2405_C03_002E": {"label": "Estimate!!Service occupations!!Civilian employed population 16 years and over!!Agriculture, forestry, fishing and hunting, and mining", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2405", "limit": 0, "attributes": "S2405_C03_002EA,S2405_C03_002M,S2405_C03_002MA"}, "S1501_C04_020E": {"label": "Estimate!!Percent Male!!AGE BY EDUCATIONAL ATTAINMENT!!Population 35 to 44 years!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C04_020EA,S1501_C04_020M,S1501_C04_020MA"}, "S0502PR_C03_056E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English!!Speak English less than \"very well\"", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_056EA,S0502PR_C03_056M,S0502PR_C03_056MA"}, "S0505_C05_143E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Renter-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C05_143EA,S0505_C05_143M,S0505_C05_143MA"}, "S0502PR_C03_055E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_055EA,S0502PR_C03_055M,S0502PR_C03_055MA"}, "S0505_C05_144E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_144EA,S0505_C05_144M,S0505_C05_144MA"}, "S0502PR_C03_054E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!English only", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_054EA,S0502PR_C03_054M,S0502PR_C03_054MA"}, "S0506_C04_001E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Foreign-born population", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C04_001EA,S0506_C04_001M,S0506_C04_001MA"}, "S2602_C04_010E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!Total population!!SEX AND AGE!!55 to 64 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C04_010EA,S2602_C04_010M,S2602_C04_010MA"}, "S0505_C05_145E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_145EA,S0505_C05_145M,S0505_C05_145MA"}, "S0502PR_C03_053E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_053EA,S0502PR_C03_053M,S0502PR_C03_053MA"}, "S2101_C06_029E": {"label": "Estimate!!Percent Nonveterans!!EDUCATIONAL ATTAINMENT!!Civilian population 25 years and over!!Some college or associate's degree", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C06_029EA,S2101_C06_029M,S2101_C06_029MA"}, "S0506_C04_003E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen!!Entered 2010 or later", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_003EA,S0506_C04_003M,S0506_C04_003MA"}, "S0506_C04_002E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_002EA,S0506_C04_002M,S0506_C04_002MA"}, "S0505_C05_140E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Owner-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C05_140EA,S0505_C05_140M,S0505_C05_140MA"}, "S0502PR_C03_059E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_059EA,S0502PR_C03_059M,S0502PR_C03_059MA"}, "S0504_C02_110E": {"label": "Estimate!!Foreign-born; Born in Africa!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!Average number of workers per household", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_110EA,S0504_C02_110M,S0504_C02_110MA"}, "S0506_C04_005E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen!!Entered before 2000", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_005EA,S0506_C04_005M,S0506_C04_005MA"}, "S0505_C05_141E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_141EA,S0505_C05_141M,S0505_C05_141MA"}, "S0502PR_C03_058E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_058EA,S0502PR_C03_058M,S0502PR_C03_058MA"}, "S0506_C04_004E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen!!Entered 2000 to 2009", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_004EA,S0506_C04_004M,S0506_C04_004MA"}, "S0505_C05_142E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_142EA,S0505_C05_142M,S0505_C05_142MA"}, "S0502PR_C03_057E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!EMPLOYMENT STATUS!!Population 16 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_057EA,S0502PR_C03_057M,S0502PR_C03_057MA"}, "S0504_C02_112E": {"label": "Estimate!!Foreign-born; Born in Africa!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!Below 100 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_112EA,S0504_C02_112M,S0504_C02_112MA"}, "S2002_C04_029E": {"label": "Estimate!!Women's earnings as a percentage of men's earnings!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Protective service occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "float", "group": "S2002", "limit": 0, "attributes": "S2002_C04_029EA,S2002_C04_029M,S2002_C04_029MA"}, "S0506_C04_007E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen!!Entered 2010 or later", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_007EA,S0506_C04_007M,S0506_C04_007MA"}, "S0504_C02_111E": {"label": "Estimate!!Foreign-born; Born in Africa!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C02_111EA,S0504_C02_111M,S0504_C02_111MA"}, "S2603_C07_019E": {"label": "Estimate!!Military quarters/military ships!!Total population!!SEX AND AGE!!65 years and over!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C07_019EA,S2603_C07_019M,S2603_C07_019MA"}, "S0506_C04_006E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_006EA,S0506_C04_006M,S0506_C04_006MA"}, "S0506_C04_009E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen!!Entered before 2000", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_009EA,S0506_C04_009M,S0506_C04_009MA"}, "S0504_C02_114E": {"label": "Estimate!!Foreign-born; Born in Africa!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!At or above 200 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_114EA,S0504_C02_114M,S0504_C02_114MA"}, "S0506_C04_008E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen!!Entered 2000 to 2009", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_008EA,S0506_C04_008M,S0506_C04_008MA"}, "S0504_C02_113E": {"label": "Estimate!!Foreign-born; Born in Africa!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!100 to 199 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_113EA,S0504_C02_113M,S0504_C02_113MA"}, "S2002_C04_025E": {"label": "Estimate!!Women's earnings as a percentage of men's earnings!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Education, training, and library occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "float", "group": "S2002", "limit": 0, "attributes": "S2002_C04_025EA,S2002_C04_025M,S2002_C04_025MA"}, "S2504_C05_001E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C05_001EA,S2504_C05_001M,S2504_C05_001MA"}, "S0501_C05_073E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!Civilian employed population 16 years and over!!INDUSTRY!!Finance and insurance, and real estate and rental and leasing", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_073EA,S0501_C05_073M,S0501_C05_073MA"}, "S0502PR_C03_052E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Graduate or professional degree", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_052EA,S0502PR_C03_052M,S0502PR_C03_052MA"}, "S0504_C02_116E": {"label": "Estimate!!Foreign-born; Born in Africa!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_116EA,S0504_C02_116M,S0504_C02_116MA"}, "S2002_C04_026E": {"label": "Estimate!!Women's earnings as a percentage of men's earnings!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Arts, design, entertainment, sports, and media occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "float", "group": "S2002", "limit": 0, "attributes": "S2002_C04_026EA,S2002_C04_026M,S2002_C04_026MA"}, "S0501_C05_072E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!Civilian employed population 16 years and over!!INDUSTRY!!Information", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_072EA,S0501_C05_072M,S0501_C05_072MA"}, "S0502PR_C03_051E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_051EA,S0502PR_C03_051M,S0502PR_C03_051MA"}, "S2504_C05_002E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!UNITS IN STRUCTURE!!1, detached", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C05_002EA,S2504_C05_002M,S2504_C05_002MA"}, "S0504_C02_115E": {"label": "Estimate!!Foreign-born; Born in Africa!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_115EA,S0504_C02_115M,S0504_C02_115MA"}, "S2002_C04_027E": {"label": "Estimate!!Women's earnings as a percentage of men's earnings!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Healthcare practitioner and technical occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "float", "group": "S2002", "limit": 0, "attributes": "S2002_C04_027EA,S2002_C04_027M,S2002_C04_027MA"}, "S0502PR_C03_050E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college or associate's degree", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_050EA,S0502PR_C03_050M,S0502PR_C03_050MA"}, "S0501_C05_071E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!Civilian employed population 16 years and over!!INDUSTRY!!Transportation and warehousing, and utilities", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_071EA,S0501_C05_071M,S0501_C05_071MA"}, "S2702_C02_020E": {"label": "Estimate!!Total Uninsured!!Total civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native alone", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_020EA,S2702_C02_020M,S2702_C02_020MA"}, "S0504_C02_118E": {"label": "Estimate!!Foreign-born; Born in Africa!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_118EA,S0504_C02_118M,S0504_C02_118MA"}, "S2002_C04_028E": {"label": "Estimate!!Women's earnings as a percentage of men's earnings!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Healthcare support occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "float", "group": "S2002", "limit": 0, "attributes": "S2002_C04_028EA,S2002_C04_028M,S2002_C04_028MA"}, "S0501_C05_070E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!Civilian employed population 16 years and over!!INDUSTRY!!Retail trade", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_070EA,S0501_C05_070M,S0501_C05_070MA"}, "S2702_C02_021E": {"label": "Estimate!!Total Uninsured!!Total civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian alone", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_021EA,S2702_C02_021M,S2702_C02_021MA"}, "S0504_C02_117E": {"label": "Estimate!!Foreign-born; Born in Africa!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_117EA,S0504_C02_117M,S0504_C02_117MA"}, "S0501_C05_077E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!Civilian employed population 16 years and over!!INDUSTRY!!Other services (except public administration)", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_077EA,S0501_C05_077M,S0501_C05_077MA"}, "S0102PR_C01_100E": {"label": "Estimate!!Total!!Owner-occupied housing units!!OWNER CHARACTERISTICS!!Median value (dollars)", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_100EA,S0102PR_C01_100M,S0102PR_C01_100MA"}, "S2603_C07_012E": {"label": "Estimate!!Military quarters/military ships!!Total population!!SEX AND AGE!!75 to 84 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C07_012EA,S2603_C07_012M,S2603_C07_012MA"}, "S2601A_C01_040E": {"label": "Estimate!!Total population!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!College or graduate school", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_040EA,S2601A_C01_040M,S2601A_C01_040MA"}, "S2002_C04_021E": {"label": "Estimate!!Women's earnings as a percentage of men's earnings!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Architecture and engineering occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "float", "group": "S2002", "limit": 0, "attributes": "S2002_C04_021EA,S2002_C04_021M,S2002_C04_021MA"}, "S1501_C04_025E": {"label": "Estimate!!Percent Male!!AGE BY EDUCATIONAL ATTAINMENT!!Population 65 years and over", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C04_025EA,S1501_C04_025M,S1501_C04_025MA"}, "S2702_C02_022E": {"label": "Estimate!!Total Uninsured!!Total civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander alone", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_022EA,S2702_C02_022M,S2702_C02_022MA"}, "S2504_C05_005E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!UNITS IN STRUCTURE!!3 or 4 apartments", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C05_005EA,S2504_C05_005M,S2504_C05_005MA"}, "S2702PR_C02_037E": {"label": "Estimate!!Total Uninsured!!RESIDENCE 1 YEAR AGO!!Civilian noninstitutionalized population 1 year and over!!Different House in Puerto Rico or the United States!!Same municipio", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_037EA,S2702PR_C02_037M,S2702PR_C02_037MA"}, "S0501_C05_076E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!Civilian employed population 16 years and over!!INDUSTRY!!Arts, entertainment, and recreation, and accommodation and food services", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_076EA,S0501_C05_076M,S0501_C05_076MA"}, "S0102PR_C01_101E": {"label": "Estimate!!Total!!Owner-occupied housing units!!OWNER CHARACTERISTICS!!Median selected monthly owner costs with a mortgage (dollars)", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_101EA,S0102PR_C01_101M,S0102PR_C01_101MA"}, "S2601A_C01_041E": {"label": "Estimate!!Total population!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_041EA,S2601A_C01_041M,S2601A_C01_041MA"}, "S2603_C07_011E": {"label": "Estimate!!Military quarters/military ships!!Total population!!SEX AND AGE!!65 to 74 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C07_011EA,S2603_C07_011M,S2603_C07_011MA"}, "S2002_C04_022E": {"label": "Estimate!!Women's earnings as a percentage of men's earnings!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Life, physical, and social science occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "float", "group": "S2002", "limit": 0, "attributes": "S2002_C04_022EA,S2002_C04_022M,S2002_C04_022MA"}, "S1501_C04_026E": {"label": "Estimate!!Percent Male!!AGE BY EDUCATIONAL ATTAINMENT!!Population 65 years and over!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C04_026EA,S1501_C04_026M,S1501_C04_026MA"}, "S2702_C02_023E": {"label": "Estimate!!Total Uninsured!!Total civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race alone", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_023EA,S2702_C02_023M,S2702_C02_023MA"}, "S0504_C02_119E": {"label": "Estimate!!Foreign-born; Born in Africa!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_119EA,S0504_C02_119M,S0504_C02_119MA"}, "S2702PR_C02_036E": {"label": "Estimate!!Total Uninsured!!RESIDENCE 1 YEAR AGO!!Civilian noninstitutionalized population 1 year and over!!Different House in Puerto Rico or the United States!!In Puerto Rico", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_036EA,S2702PR_C02_036M,S2702PR_C02_036MA"}, "S2504_C05_006E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!UNITS IN STRUCTURE!!5 to 9 apartments", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C05_006EA,S2504_C05_006M,S2504_C05_006MA"}, "S0102PR_C01_102E": {"label": "Estimate!!Total!!Owner-occupied housing units!!OWNER CHARACTERISTICS!!Median selected monthly owner costs without a mortgage (dollars)", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_102EA,S0102PR_C01_102M,S0102PR_C01_102MA"}, "S0501_C05_075E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!Civilian employed population 16 years and over!!INDUSTRY!!Educational services, and health care and social assistance", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_075EA,S0501_C05_075M,S0501_C05_075MA"}, "S2603_C07_014E": {"label": "Estimate!!Military quarters/military ships!!Total population!!SEX AND AGE!!Under 18 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C07_014EA,S2603_C07_014M,S2603_C07_014MA"}, "S2002_C04_023E": {"label": "Estimate!!Women's earnings as a percentage of men's earnings!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Community and social services occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "float", "group": "S2002", "limit": 0, "attributes": "S2002_C04_023EA,S2002_C04_023M,S2002_C04_023MA"}, "S1501_C04_023E": {"label": "Estimate!!Percent Male!!AGE BY EDUCATIONAL ATTAINMENT!!Population 45 to 64 years!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C04_023EA,S1501_C04_023M,S1501_C04_023MA"}, "S2702_C02_024E": {"label": "Estimate!!Total Uninsured!!Total civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_024EA,S2702_C02_024M,S2702_C02_024MA"}, "S2504_C05_003E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!UNITS IN STRUCTURE!!1, attached", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C05_003EA,S2504_C05_003M,S2504_C05_003MA"}, "S2702PR_C02_039E": {"label": "Estimate!!Total Uninsured!!RESIDENCE 1 YEAR AGO!!Civilian noninstitutionalized population 1 year and over!!Different House in Puerto Rico or the United States!!Same municipio!!In the United States", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_039EA,S2702PR_C02_039M,S2702PR_C02_039MA"}, "S0102PR_C01_103E": {"label": "Estimate!!Total!!Renter-occupied housing units", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_103EA,S0102PR_C01_103M,S0102PR_C01_103MA"}, "S2002_C04_024E": {"label": "Estimate!!Women's earnings as a percentage of men's earnings!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Legal occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "float", "group": "S2002", "limit": 0, "attributes": "S2002_C04_024EA,S2002_C04_024M,S2002_C04_024MA"}, "S0501_C05_074E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!Civilian employed population 16 years and over!!INDUSTRY!!Professional, scientific, and management, and administrative and waste management services", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_074EA,S0501_C05_074M,S0501_C05_074MA"}, "S2603_C07_013E": {"label": "Estimate!!Military quarters/military ships!!Total population!!SEX AND AGE!!85 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C07_013EA,S2603_C07_013M,S2603_C07_013MA"}, "S1501_C04_024E": {"label": "Estimate!!Percent Male!!AGE BY EDUCATIONAL ATTAINMENT!!Population 45 to 64 years!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C04_024EA,S1501_C04_024M,S1501_C04_024MA"}, "S2702_C02_025E": {"label": "Estimate!!Total Uninsured!!Total civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino (of any race)", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_025EA,S2702_C02_025M,S2702_C02_025MA"}, "S2504_C05_004E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!UNITS IN STRUCTURE!!2 apartments", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C05_004EA,S2504_C05_004M,S2504_C05_004MA"}, "S2702PR_C02_038E": {"label": "Estimate!!Total Uninsured!!RESIDENCE 1 YEAR AGO!!Civilian noninstitutionalized population 1 year and over!!Different House in Puerto Rico or the United States!!Same municipio!!Different municipio", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_038EA,S2702PR_C02_038M,S2702PR_C02_038MA"}, "S2601A_C01_044E": {"label": "Estimate!!Total population!!VETERAN STATUS!!Civilian population 18 years and over", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_044EA,S2601A_C01_044M,S2601A_C01_044MA"}, "S2603_C07_016E": {"label": "Estimate!!Military quarters/military ships!!Total population!!SEX AND AGE!!Under 18 years!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C07_016EA,S2603_C07_016M,S2603_C07_016MA"}, "S1501_C04_029E": {"label": "Estimate!!Percent Male!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!White alone!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C04_029EA,S1501_C04_029M,S1501_C04_029MA"}, "S2602_C04_008E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!Total population!!SEX AND AGE!!35 to 44 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C04_008EA,S2602_C04_008M,S2602_C04_008MA"}, "S2702_C02_026E": {"label": "Estimate!!Total Uninsured!!Total civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_026EA,S2702_C02_026M,S2702_C02_026MA"}, "S2504_C05_009E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!YEAR STRUCTURE BUILT!!2020 or later", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C05_009EA,S2504_C05_009M,S2504_C05_009MA"}, "S1601_C02_022E": {"label": "Estimate!!Percent!!CITIZENS 18 YEARS AND OVER!!All citizens 18 years old and over!!Speak a language other than English", "concept": "Language Spoken at Home", "predicateType": "float", "group": "S1601", "limit": 0, "attributes": "S1601_C02_022EA,S1601_C02_022M,S1601_C02_022MA"}, "S2101_C06_032E": {"label": "Estimate!!Percent Nonveterans!!EMPLOYMENT STATUS!!Civilian population 18 to 64 years!!Labor force participation rate", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C06_032EA,S2101_C06_032M,S2101_C06_032MA"}, "S2601A_C01_045E": {"label": "Estimate!!Total population!!VETERAN STATUS!!Civilian population 18 years and over!!Civilian veteran", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_045EA,S2601A_C01_045M,S2601A_C01_045MA"}, "S2702_C02_027E": {"label": "Estimate!!Total Uninsured!!Total civilian noninstitutionalized population!!NATIVITY AND U.S. CITIZENSHIP STATUS!!Native born", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_027EA,S2702_C02_027M,S2702_C02_027MA"}, "S2603_C07_015E": {"label": "Estimate!!Military quarters/military ships!!Total population!!SEX AND AGE!!Under 18 years!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C07_015EA,S2603_C07_015M,S2603_C07_015MA"}, "S2602_C04_007E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!Total population!!SEX AND AGE!!25 to 34 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C04_007EA,S2602_C04_007M,S2602_C04_007MA"}, "S1601_C02_023E": {"label": "Estimate!!Percent!!CITIZENS 18 YEARS AND OVER!!All citizens 18 years old and over!!Speak a language other than English!!Spanish", "concept": "Language Spoken at Home", "predicateType": "float", "group": "S1601", "limit": 0, "attributes": "S1601_C02_023EA,S1601_C02_023M,S1601_C02_023MA"}, "S2101_C06_031E": {"label": "Estimate!!Percent Nonveterans!!EMPLOYMENT STATUS!!Civilian population 18 to 64 years", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C06_031EA,S2101_C06_031M,S2101_C06_031MA"}, "S0501_C05_079E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C05_079EA,S0501_C05_079M,S0501_C05_079MA"}, "S2601A_C01_042E": {"label": "Estimate!!Total population!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate or higher", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_042EA,S2601A_C01_042M,S2601A_C01_042MA"}, "S2702_C02_028E": {"label": "Estimate!!Total Uninsured!!Total civilian noninstitutionalized population!!NATIVITY AND U.S. CITIZENSHIP STATUS!!Foreign born", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_028EA,S2702_C02_028M,S2702_C02_028MA"}, "S2603_C07_018E": {"label": "Estimate!!Military quarters/military ships!!Total population!!SEX AND AGE!!65 years and over!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C07_018EA,S2603_C07_018M,S2603_C07_018MA"}, "S1501_C04_027E": {"label": "Estimate!!Percent Male!!AGE BY EDUCATIONAL ATTAINMENT!!Population 65 years and over!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C04_027EA,S1501_C04_027M,S1501_C04_027MA"}, "S1601_C02_024E": {"label": "Estimate!!Percent!!CITIZENS 18 YEARS AND OVER!!All citizens 18 years old and over!!Speak a language other than English!!Other languages", "concept": "Language Spoken at Home", "predicateType": "float", "group": "S1601", "limit": 0, "attributes": "S1601_C02_024EA,S1601_C02_024M,S1601_C02_024MA"}, "S2101_C06_030E": {"label": "Estimate!!Percent Nonveterans!!EDUCATIONAL ATTAINMENT!!Civilian population 25 years and over!!Bachelor's degree or higher", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C06_030EA,S2101_C06_030M,S2101_C06_030MA"}, "S2504_C05_007E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!UNITS IN STRUCTURE!!10 or more apartments", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C05_007EA,S2504_C05_007M,S2504_C05_007MA"}, "S0501_C05_078E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!Civilian employed population 16 years and over!!INDUSTRY!!Public administration", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_078EA,S0501_C05_078M,S0501_C05_078MA"}, "S2601A_C01_043E": {"label": "Estimate!!Total population!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree or higher", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_043EA,S2601A_C01_043M,S2601A_C01_043MA"}, "S2702_C02_029E": {"label": "Estimate!!Total Uninsured!!Total civilian noninstitutionalized population!!NATIVITY AND U.S. CITIZENSHIP STATUS!!Foreign born!!Naturalized", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_029EA,S2702_C02_029M,S2702_C02_029MA"}, "S1501_C04_028E": {"label": "Estimate!!Percent Male!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!White alone", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C04_028EA,S1501_C04_028M,S1501_C04_028MA"}, "S2002_C04_020E": {"label": "Estimate!!Women's earnings as a percentage of men's earnings!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Computer and mathematical occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "float", "group": "S2002", "limit": 0, "attributes": "S2002_C04_020EA,S2002_C04_020M,S2002_C04_020MA"}, "S2603_C07_017E": {"label": "Estimate!!Military quarters/military ships!!Total population!!SEX AND AGE!!65 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C07_017EA,S2603_C07_017M,S2603_C07_017MA"}, "S2602_C04_009E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!Total population!!SEX AND AGE!!45 to 54 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C04_009EA,S2602_C04_009M,S2602_C04_009MA"}, "S2504_C05_008E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!UNITS IN STRUCTURE!!Mobile home or other type of housing", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C05_008EA,S2504_C05_008M,S2504_C05_008MA"}, "S2601A_C01_048E": {"label": "Estimate!!Total population!!DISABILITY STATUS!!Population under 18 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_048EA,S2601A_C01_048M,S2601A_C01_048MA"}, "S2702PR_C02_041E": {"label": "Estimate!!Total Uninsured!!EDUCATIONAL ATTAINMENT!!Civilian noninstitutionalized population 25 years and over", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "int", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_041EA,S2702PR_C02_041M,S2702PR_C02_041MA"}, "S2702_C02_006E": {"label": "Estimate!!Total Uninsured!!Total civilian noninstitutionalized population!!AGE!!19 to 64 years!!19 to 25 years", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_006EA,S2702_C02_006M,S2702_C02_006MA"}, "S2405_C03_015E": {"label": "Estimate!!Service occupations!!PERCENT ALLOCATED!!Industry", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2405", "limit": 0, "attributes": "S2405_C03_015EA,S2405_C03_015M,S2405_C03_015MA"}, "S2602_C04_004E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!Total population!!SEX AND AGE!!Under 15 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C04_004EA,S2602_C04_004M,S2602_C04_004MA"}, "S2101_C06_036E": {"label": "Estimate!!Percent Nonveterans!!POVERTY STATUS IN THE PAST 12 MONTHS!!Civilian population 18 years and over for whom poverty status is determined!!Income in the past 12 months below poverty level", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C06_036EA,S2101_C06_036M,S2101_C06_036MA"}, "S2601A_C01_049E": {"label": "Estimate!!Total population!!DISABILITY STATUS!!Population under 18 years!!With a disability", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_049EA,S2601A_C01_049M,S2601A_C01_049MA"}, "S2702PR_C02_040E": {"label": "Estimate!!Total Uninsured!!RESIDENCE 1 YEAR AGO!!Civilian noninstitutionalized population 1 year and over!!Elsewhere", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_040EA,S2702PR_C02_040M,S2702PR_C02_040MA"}, "S2702_C02_007E": {"label": "Estimate!!Total Uninsured!!Total civilian noninstitutionalized population!!AGE!!19 to 64 years!!26 to 34 years", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_007EA,S2702_C02_007M,S2702_C02_007MA"}, "S2602_C04_003E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!Total population!!SEX AND AGE!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C04_003EA,S2602_C04_003M,S2602_C04_003MA"}, "S2101_C06_035E": {"label": "Estimate!!Percent Nonveterans!!POVERTY STATUS IN THE PAST 12 MONTHS!!Civilian population 18 years and over for whom poverty status is determined", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C06_035EA,S2101_C06_035M,S2101_C06_035MA"}, "S0502_C01_099E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_099EA,S0502_C01_099M,S0502_C01_099MA"}, "S2702PR_C02_043E": {"label": "Estimate!!Total Uninsured!!EDUCATIONAL ATTAINMENT!!Civilian noninstitutionalized population 25 years and over!!High school graduate (includes equivalency)", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_043EA,S2702PR_C02_043M,S2702PR_C02_043MA"}, "S2601A_C01_046E": {"label": "Estimate!!Total population!!DISABILITY STATUS!!Total population", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_046EA,S2601A_C01_046M,S2601A_C01_046MA"}, "S2702_C02_008E": {"label": "Estimate!!Total Uninsured!!Total civilian noninstitutionalized population!!AGE!!19 to 64 years!!35 to 44 years", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_008EA,S2702_C02_008M,S2702_C02_008MA"}, "S2101_C06_034E": {"label": "Estimate!!Percent Nonveterans!!EMPLOYMENT STATUS!!Civilian labor force 18 to 64 years!!Unemployment rate", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C06_034EA,S2101_C06_034M,S2101_C06_034MA"}, "S2602_C04_006E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!Total population!!SEX AND AGE!!18 to 24 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C04_006EA,S2602_C04_006M,S2602_C04_006MA"}, "S0502_C01_098E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C01_098EA,S0502_C01_098M,S0502_C01_098MA"}, "S2601A_C01_047E": {"label": "Estimate!!Total population!!DISABILITY STATUS!!Total population!!With a disability", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_047EA,S2601A_C01_047M,S2601A_C01_047MA"}, "S2702PR_C02_042E": {"label": "Estimate!!Total Uninsured!!EDUCATIONAL ATTAINMENT!!Civilian noninstitutionalized population 25 years and over!!Less than high school graduate", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_042EA,S2702PR_C02_042M,S2702PR_C02_042MA"}, "S2702_C02_009E": {"label": "Estimate!!Total Uninsured!!Total civilian noninstitutionalized population!!AGE!!19 to 64 years!!45 to 54 years", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_009EA,S2702_C02_009M,S2702_C02_009MA"}, "S2602_C04_005E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!Total population!!SEX AND AGE!!15 to 17 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C04_005EA,S2602_C04_005M,S2602_C04_005MA"}, "S2101_C06_033E": {"label": "Estimate!!Percent Nonveterans!!EMPLOYMENT STATUS!!Civilian labor force 18 to 64 years", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C06_033EA,S2101_C06_033M,S2101_C06_033MA"}, "S0502_C01_097E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!Median earnings (dollars) for full-time, year-round workers!!Female", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C01_097EA,S0502_C01_097M,S0502_C01_097MA"}, "S0102PR_C01_104E": {"label": "Estimate!!Total!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_104EA,S0102PR_C01_104M,S0102PR_C01_104MA"}, "S2702PR_C02_045E": {"label": "Estimate!!Total Uninsured!!EDUCATIONAL ATTAINMENT!!Civilian noninstitutionalized population 25 years and over!!Bachelor's degree or higher", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_045EA,S2702PR_C02_045M,S2702PR_C02_045MA"}, "S0502_C01_096E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!Median earnings (dollars) for full-time, year-round workers!!Male", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C01_096EA,S0502_C01_096M,S0502_C01_096MA"}, "S2405_C03_011E": {"label": "Estimate!!Service occupations!!Civilian employed population 16 years and over!!Educational services, and health care and social assistance", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2405", "limit": 0, "attributes": "S2405_C03_011EA,S2405_C03_011M,S2405_C03_011MA"}, "S2603_C07_020E": {"label": "Estimate!!Military quarters/military ships!!Total population!!SEX AND AGE!!Median age (years)", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C07_020EA,S2603_C07_020M,S2603_C07_020MA"}, "S2702PR_C02_044E": {"label": "Estimate!!Total Uninsured!!EDUCATIONAL ATTAINMENT!!Civilian noninstitutionalized population 25 years and over!!Some college or associate's degree", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_044EA,S2702PR_C02_044M,S2702PR_C02_044MA"}, "S0102PR_C01_105E": {"label": "Estimate!!Total!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_105EA,S0102PR_C01_105M,S0102PR_C01_105MA"}, "S2405_C03_012E": {"label": "Estimate!!Service occupations!!Civilian employed population 16 years and over!!Arts, entertainment, and recreation, and accommodation and food services", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2405", "limit": 0, "attributes": "S2405_C03_012EA,S2405_C03_012M,S2405_C03_012MA"}, "S0502_C01_095E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$75,000 or more", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_095EA,S0502_C01_095M,S0502_C01_095MA"}, "S1501_C04_010E": {"label": "Estimate!!Percent Male!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college, no degree", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C04_010EA,S1501_C04_010M,S1501_C04_010MA"}, "S2101_C06_039E": {"label": "Estimate!!Percent Nonveterans!!DISABILITY STATUS!!Civilian population 18 years and over for whom poverty status is determined!!With any disability", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C06_039EA,S2101_C06_039M,S2101_C06_039MA"}, "S0102PR_C01_106E": {"label": "Estimate!!Total!!Renter-occupied housing units!!GROSS RENT!!Median gross rent (dollars)", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_106EA,S0102PR_C01_106M,S0102PR_C01_106MA"}, "S2603_C07_022E": {"label": "Estimate!!Military quarters/military ships!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!White", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C07_022EA,S2603_C07_022M,S2603_C07_022MA"}, "S2602_C04_002E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!Total population!!SEX AND AGE!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C04_002EA,S2602_C04_002M,S2602_C04_002MA"}, "S0502_C01_094E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$50,000 to $74,999", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_094EA,S0502_C01_094M,S0502_C01_094MA"}, "S2405_C03_013E": {"label": "Estimate!!Service occupations!!Civilian employed population 16 years and over!!Other services, except public administration", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2405", "limit": 0, "attributes": "S2405_C03_013EA,S2405_C03_013M,S2405_C03_013MA"}, "S2101_C06_038E": {"label": "Estimate!!Percent Nonveterans!!DISABILITY STATUS!!Civilian population 18 years and over for whom poverty status is determined", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C06_038EA,S2101_C06_038M,S2101_C06_038MA"}, "S2702PR_C02_047E": {"label": "Estimate!!Total Uninsured!!EMPLOYMENT STATUS!!Civilian noninstitutionalized population 16 years and over!!In labor force", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_047EA,S2702PR_C02_047M,S2702PR_C02_047MA"}, "S2702PR_C02_046E": {"label": "Estimate!!Total Uninsured!!EMPLOYMENT STATUS!!Civilian noninstitutionalized population 16 years and over", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "int", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_046EA,S2702PR_C02_046M,S2702PR_C02_046MA"}, "S2602_C04_001E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!Total population", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C04_001EA,S2602_C04_001M,S2602_C04_001MA"}, "S2405_C03_014E": {"label": "Estimate!!Service occupations!!Civilian employed population 16 years and over!!Public administration", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2405", "limit": 0, "attributes": "S2405_C03_014EA,S2405_C03_014M,S2405_C03_014MA"}, "S0502_C01_093E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$35,000 to $49,999", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_093EA,S0502_C01_093M,S0502_C01_093MA"}, "S2101_C06_037E": {"label": "Estimate!!Percent Nonveterans!!POVERTY STATUS IN THE PAST 12 MONTHS!!Civilian population 18 years and over for whom poverty status is determined!!Income in the past 12 months at or above poverty level", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C06_037EA,S2101_C06_037M,S2101_C06_037MA"}, "S2603_C07_021E": {"label": "Estimate!!Military quarters/military ships!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C07_021EA,S2603_C07_021M,S2603_C07_021MA"}, "S2419_C02_008E": {"label": "Estimate!!Median earnings (dollars) for male!!Full-time, year-round civilian employed population 16 years and over with earnings!!Federal government workers", "concept": "Class of Worker by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2419", "limit": 0, "attributes": "S2419_C02_008EA,S2419_C02_008M,S2419_C02_008MA"}, "S0502_C01_092E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$25,000 to $34,999", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_092EA,S0502_C01_092M,S0502_C01_092MA"}, "S0502PR_C03_068E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Self-employed workers in own not incorporated business", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_068EA,S0502PR_C03_068M,S0502PR_C03_068MA"}, "S0502PR_C03_067E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Government workers", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_067EA,S0502PR_C03_067M,S0502PR_C03_067MA"}, "S2419_C02_009E": {"label": "Estimate!!Median earnings (dollars) for male!!Full-time, year-round civilian employed population 16 years and over with earnings!!Self-employed in own not incorporated business workers and unpaid family workers", "concept": "Class of Worker by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2419", "limit": 0, "attributes": "S2419_C02_009EA,S2419_C02_009M,S2419_C02_009MA"}, "S0502_C01_091E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$15,000 to $24,999", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_091EA,S0502_C01_091M,S0502_C01_091MA"}, "S0502PR_C03_066E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Private wage and salary workers", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_066EA,S0502PR_C03_066M,S0502PR_C03_066MA"}, "S2419_C02_006E": {"label": "Estimate!!Median earnings (dollars) for male!!Full-time, year-round civilian employed population 16 years and over with earnings!!Local government workers", "concept": "Class of Worker by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2419", "limit": 0, "attributes": "S2419_C02_006EA,S2419_C02_006M,S2419_C02_006MA"}, "S0502_C01_090E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$10,000 to $14,999", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C01_090EA,S0502_C01_090M,S0502_C01_090MA"}, "S0502PR_C03_065E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Civilian employed population 16 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_065EA,S0502PR_C03_065M,S0502PR_C03_065MA"}, "S2419_C02_007E": {"label": "Estimate!!Median earnings (dollars) for male!!Full-time, year-round civilian employed population 16 years and over with earnings!!State government workers", "concept": "Class of Worker by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2419", "limit": 0, "attributes": "S2419_C02_007EA,S2419_C02_007M,S2419_C02_007MA"}, "S2405_C03_010E": {"label": "Estimate!!Service occupations!!Civilian employed population 16 years and over!!Professional, scientific, and management, and administrative and waste management services", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2405", "limit": 0, "attributes": "S2405_C03_010EA,S2405_C03_010M,S2405_C03_010MA"}, "S0504_C02_120E": {"label": "Estimate!!Foreign-born; Born in Africa!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_120EA,S0504_C02_120M,S0504_C02_120MA"}, "S2419_C02_004E": {"label": "Estimate!!Median earnings (dollars) for male!!Full-time, year-round civilian employed population 16 years and over with earnings!!Private for-profit wage and salary workers:!!Self-employed in own incorporated business workers", "concept": "Class of Worker by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2419", "limit": 0, "attributes": "S2419_C02_004EA,S2419_C02_004M,S2419_C02_004MA"}, "S2419_C02_005E": {"label": "Estimate!!Median earnings (dollars) for male!!Full-time, year-round civilian employed population 16 years and over with earnings!!Private not-for-profit wage and salary workers", "concept": "Class of Worker by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2419", "limit": 0, "attributes": "S2419_C02_005EA,S2419_C02_005M,S2419_C02_005MA"}, "S0504_C02_122E": {"label": "Estimate!!Foreign-born; Born in Africa!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_122EA,S0504_C02_122M,S0504_C02_122MA"}, "S2419_C02_002E": {"label": "Estimate!!Median earnings (dollars) for male!!Full-time, year-round civilian employed population 16 years and over with earnings!!Private for-profit wage and salary workers:", "concept": "Class of Worker by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2419", "limit": 0, "attributes": "S2419_C02_002EA,S2419_C02_002M,S2419_C02_002MA"}, "S0504_C02_121E": {"label": "Estimate!!Foreign-born; Born in Africa!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_121EA,S0504_C02_121M,S0504_C02_121MA"}, "S2419_C02_003E": {"label": "Estimate!!Median earnings (dollars) for male!!Full-time, year-round civilian employed population 16 years and over with earnings!!Private for-profit wage and salary workers:!!Employee of private company workers", "concept": "Class of Worker by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2419", "limit": 0, "attributes": "S2419_C02_003EA,S2419_C02_003M,S2419_C02_003MA"}, "S0502PR_C03_069E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Unpaid family workers", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_069EA,S0502PR_C03_069M,S0502PR_C03_069MA"}, "S0502PR_C03_060E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Employed", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_060EA,S0502PR_C03_060M,S0502PR_C03_060MA"}, "S0501_C05_081E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$10,000 to $14,999", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_081EA,S0501_C05_081M,S0501_C05_081MA"}, "S0504_C02_124E": {"label": "Estimate!!Foreign-born; Born in Africa!!Occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C02_124EA,S0504_C02_124M,S0504_C02_124MA"}, "S0504_C02_123E": {"label": "Estimate!!Foreign-born; Born in Africa!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_123EA,S0504_C02_123M,S0504_C02_123MA"}, "S2504_C05_010E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!YEAR STRUCTURE BUILT!!2010 to 2019", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C05_010EA,S2504_C05_010M,S2504_C05_010MA"}, "S2419_C02_001E": {"label": "Estimate!!Median earnings (dollars) for male!!Full-time, year-round civilian employed population 16 years and over with earnings", "concept": "Class of Worker by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2419", "limit": 0, "attributes": "S2419_C02_001EA,S2419_C02_001M,S2419_C02_001MA"}, "S0501_C05_080E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$1 to $9,999 or loss", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_080EA,S0501_C05_080M,S0501_C05_080MA"}, "S1501_C04_019E": {"label": "Estimate!!Percent Male!!AGE BY EDUCATIONAL ATTAINMENT!!Population 35 to 44 years", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C04_019EA,S1501_C04_019M,S1501_C04_019MA"}, "S0504_C02_126E": {"label": "Estimate!!Foreign-born; Born in Africa!!Occupied housing units!!HOUSING TENURE!!Renter-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_126EA,S0504_C02_126M,S0504_C02_126MA"}, "S0504_C02_125E": {"label": "Estimate!!Foreign-born; Born in Africa!!Occupied housing units!!HOUSING TENURE!!Owner-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_125EA,S0504_C02_125M,S0504_C02_125MA"}, "S2002_C04_037E": {"label": "Estimate!!Women's earnings as a percentage of men's earnings!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Installation, maintenance, and repair occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "float", "group": "S2002", "limit": 0, "attributes": "S2002_C04_037EA,S2002_C04_037M,S2002_C04_037MA"}, "S0502PR_C03_064E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!EMPLOYMENT STATUS!!Population 16 years and over!!Not in labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_064EA,S0502PR_C03_064M,S0502PR_C03_064MA"}, "S0501_C05_085E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$50,000 to $74,999", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_085EA,S0501_C05_085M,S0501_C05_085MA"}, "S0504_C02_128E": {"label": "Estimate!!Foreign-born; Born in Africa!!Occupied housing units!!HOUSING TENURE!!Average household size of renter-occupied unit", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_128EA,S0504_C02_128M,S0504_C02_128MA"}, "S2504_C05_013E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!YEAR STRUCTURE BUILT!!1960 to 1979", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C05_013EA,S2504_C05_013M,S2504_C05_013MA"}, "S2002_C04_038E": {"label": "Estimate!!Women's earnings as a percentage of men's earnings!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Production occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "float", "group": "S2002", "limit": 0, "attributes": "S2002_C04_038EA,S2002_C04_038M,S2002_C04_038MA"}, "S0501_C05_084E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$35,000 to $49,999", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_084EA,S0501_C05_084M,S0501_C05_084MA"}, "S0502PR_C03_063E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Armed Forces", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_063EA,S0502PR_C03_063M,S0502PR_C03_063MA"}, "S2504_C05_014E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!YEAR STRUCTURE BUILT!!1940 to 1959", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C05_014EA,S2504_C05_014M,S2504_C05_014MA"}, "S0504_C02_127E": {"label": "Estimate!!Foreign-born; Born in Africa!!Occupied housing units!!HOUSING TENURE!!Average household size of owner-occupied unit", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_127EA,S0504_C02_127M,S0504_C02_127MA"}, "S2504_C05_011E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!YEAR STRUCTURE BUILT!!2000 to 2009", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C05_011EA,S2504_C05_011M,S2504_C05_011MA"}, "S0501_C05_083E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$25,000 to $34,999", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_083EA,S0501_C05_083M,S0501_C05_083MA"}, "S2002_C04_039E": {"label": "Estimate!!Women's earnings as a percentage of men's earnings!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Transportation occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "float", "group": "S2002", "limit": 0, "attributes": "S2002_C04_039EA,S2002_C04_039M,S2002_C04_039MA"}, "S0502PR_C03_062E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed!!Percent of civilian labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_062EA,S0502PR_C03_062M,S0502PR_C03_062MA"}, "S2504_C05_012E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!YEAR STRUCTURE BUILT!!1980 to 1999", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C05_012EA,S2504_C05_012M,S2504_C05_012MA"}, "S0502PR_C03_061E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_061EA,S0502PR_C03_061M,S0502PR_C03_061MA"}, "S0501_C05_082E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$15,000 to $24,999", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_082EA,S0501_C05_082M,S0501_C05_082MA"}, "S0504_C02_129E": {"label": "Estimate!!Foreign-born; Born in Africa!!Occupied housing units!!ROOMS!!1 room", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_129EA,S0504_C02_129M,S0504_C02_129MA"}, "S0501_C05_089E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C05_089EA,S0501_C05_089M,S0501_C05_089MA"}, "S2601A_C01_052E": {"label": "Estimate!!Total population!!DISABILITY STATUS!!Population 18 to 64 years!!No disability", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_052EA,S2601A_C01_052M,S2601A_C01_052MA"}, "S2603_C07_024E": {"label": "Estimate!!Military quarters/military ships!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C07_024EA,S2603_C07_024M,S2603_C07_024MA"}, "S2002_C04_033E": {"label": "Estimate!!Women's earnings as a percentage of men's earnings!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Sales and related occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "float", "group": "S2002", "limit": 0, "attributes": "S2002_C04_033EA,S2002_C04_033M,S2002_C04_033MA"}, "S1501_C04_013E": {"label": "Estimate!!Percent Male!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Graduate or professional degree", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C04_013EA,S1501_C04_013M,S1501_C04_013MA"}, "S2702_C02_010E": {"label": "Estimate!!Total Uninsured!!Total civilian noninstitutionalized population!!AGE!!19 to 64 years!!55 to 64 years", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_010EA,S2702_C02_010M,S2702_C02_010MA"}, "S2702PR_C02_049E": {"label": "Estimate!!Total Uninsured!!EMPLOYMENT STATUS!!Civilian noninstitutionalized population 16 years and over!!In labor force!!Unemployed", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_049EA,S2702PR_C02_049M,S2702PR_C02_049MA"}, "S2101_C06_040E": {"label": "Estimate!!Percent Nonveterans!!DISABILITY STATUS!!Civilian population 18 years and over for whom poverty status is determined!!Without a disability", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C06_040EA,S2101_C06_040M,S2101_C06_040MA"}, "S2504_C05_017E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!ROOMS!!2 or 3 rooms", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C05_017EA,S2504_C05_017M,S2504_C05_017MA"}, "S0501_C05_088E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!Median earnings (dollars) for full-time, year-round workers!!Female", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C05_088EA,S0501_C05_088M,S0501_C05_088MA"}, "S2601A_C01_053E": {"label": "Estimate!!Total population!!DISABILITY STATUS!!Population 65 years and over", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_053EA,S2601A_C01_053M,S2601A_C01_053MA"}, "S2603_C07_023E": {"label": "Estimate!!Military quarters/military ships!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C07_023EA,S2603_C07_023M,S2603_C07_023MA"}, "S2002_C04_034E": {"label": "Estimate!!Women's earnings as a percentage of men's earnings!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Office and administrative support occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "float", "group": "S2002", "limit": 0, "attributes": "S2002_C04_034EA,S2002_C04_034M,S2002_C04_034MA"}, "S1501_C04_014E": {"label": "Estimate!!Percent Male!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C04_014EA,S1501_C04_014M,S1501_C04_014MA"}, "S2702_C02_011E": {"label": "Estimate!!Total Uninsured!!Total civilian noninstitutionalized population!!AGE!!65 years and older", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_011EA,S2702_C02_011M,S2702_C02_011MA"}, "S2504_C05_018E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!ROOMS!!4 or 5 rooms", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C05_018EA,S2504_C05_018M,S2504_C05_018MA"}, "S2702PR_C02_048E": {"label": "Estimate!!Total Uninsured!!EMPLOYMENT STATUS!!Civilian noninstitutionalized population 16 years and over!!In labor force!!Employed", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C02_048EA,S2702PR_C02_048M,S2702PR_C02_048MA"}, "S0501_C05_087E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!Median earnings (dollars) for full-time, year-round workers!!Male", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C05_087EA,S0501_C05_087M,S0501_C05_087MA"}, "S2002_C04_035E": {"label": "Estimate!!Women's earnings as a percentage of men's earnings!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Farming, fishing, and forestry occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "float", "group": "S2002", "limit": 0, "attributes": "S2002_C04_035EA,S2002_C04_035M,S2002_C04_035MA"}, "S2601A_C01_050E": {"label": "Estimate!!Total population!!DISABILITY STATUS!!Population 18 to 64 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_050EA,S2601A_C01_050M,S2601A_C01_050MA"}, "S2603_C07_026E": {"label": "Estimate!!Military quarters/military ships!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C07_026EA,S2603_C07_026M,S2603_C07_026MA"}, "S1501_C04_011E": {"label": "Estimate!!Percent Male!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Associate's degree", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C04_011EA,S1501_C04_011M,S1501_C04_011MA"}, "S2702_C02_012E": {"label": "Estimate!!Total Uninsured!!Total civilian noninstitutionalized population!!AGE!!65 years and older!!65 to 74 years", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_012EA,S2702_C02_012M,S2702_C02_012MA"}, "S2504_C05_015E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!YEAR STRUCTURE BUILT!!1939 or earlier", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C05_015EA,S2504_C05_015M,S2504_C05_015MA"}, "S2002_C04_036E": {"label": "Estimate!!Women's earnings as a percentage of men's earnings!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Construction and extraction occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "float", "group": "S2002", "limit": 0, "attributes": "S2002_C04_036EA,S2002_C04_036M,S2002_C04_036MA"}, "S0501_C05_086E": {"label": "Estimate!!Foreign-born; Not a U.S. citizen!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$75,000 or more", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C05_086EA,S0501_C05_086M,S0501_C05_086MA"}, "S2601A_C01_051E": {"label": "Estimate!!Total population!!DISABILITY STATUS!!Population 18 to 64 years!!With a disability", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_051EA,S2601A_C01_051M,S2601A_C01_051MA"}, "S2603_C07_025E": {"label": "Estimate!!Military quarters/military ships!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Asian", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C07_025EA,S2603_C07_025M,S2603_C07_025MA"}, "S1501_C04_012E": {"label": "Estimate!!Percent Male!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C04_012EA,S1501_C04_012M,S1501_C04_012MA"}, "S2702_C02_013E": {"label": "Estimate!!Total Uninsured!!Total civilian noninstitutionalized population!!AGE!!65 years and older!!75 years and older", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_013EA,S2702_C02_013M,S2702_C02_013MA"}, "S2504_C05_016E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!ROOMS!!1 room", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C05_016EA,S2504_C05_016M,S2504_C05_016MA"}, "S2601A_C01_056E": {"label": "Estimate!!Total population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Same address", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_056EA,S2601A_C01_056M,S2601A_C01_056MA"}, "S1501_C04_017E": {"label": "Estimate!!Percent Male!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 to 34 years!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C04_017EA,S1501_C04_017M,S1501_C04_017MA"}, "S2405_C03_007E": {"label": "Estimate!!Service occupations!!Civilian employed population 16 years and over!!Transportation and warehousing, and utilities", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2405", "limit": 0, "attributes": "S2405_C03_007EA,S2405_C03_007M,S2405_C03_007MA"}, "S2603_C07_028E": {"label": "Estimate!!Military quarters/military ships!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!Two or more races", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C07_028EA,S2603_C07_028M,S2603_C07_028MA"}, "S2702_C02_014E": {"label": "Estimate!!Total Uninsured!!Total civilian noninstitutionalized population!!AGE!!Median age (years)", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_014EA,S2702_C02_014M,S2702_C02_014MA"}, "S2601A_C01_057E": {"label": "Estimate!!Total population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the U.S.", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_057EA,S2601A_C01_057M,S2601A_C01_057MA"}, "S2002_C04_030E": {"label": "Estimate!!Women's earnings as a percentage of men's earnings!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Food preparation and serving related occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "float", "group": "S2002", "limit": 0, "attributes": "S2002_C04_030EA,S2002_C04_030M,S2002_C04_030MA"}, "S2405_C03_008E": {"label": "Estimate!!Service occupations!!Civilian employed population 16 years and over!!Information", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2405", "limit": 0, "attributes": "S2405_C03_008EA,S2405_C03_008M,S2405_C03_008MA"}, "S2603_C07_027E": {"label": "Estimate!!Military quarters/military ships!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Some other race", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C07_027EA,S2603_C07_027M,S2603_C07_027MA"}, "S1501_C04_018E": {"label": "Estimate!!Percent Male!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 to 34 years!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C04_018EA,S1501_C04_018M,S1501_C04_018MA"}, "S2702_C02_015E": {"label": "Estimate!!Total Uninsured!!Total civilian noninstitutionalized population!!SEX!!Male", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_015EA,S2702_C02_015M,S2702_C02_015MA"}, "S2601A_C01_054E": {"label": "Estimate!!Total population!!DISABILITY STATUS!!Population 65 years and over!!With a disability", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_054EA,S2601A_C01_054M,S2601A_C01_054MA"}, "S2405_C03_009E": {"label": "Estimate!!Service occupations!!Civilian employed population 16 years and over!!Finance and insurance, and real estate and rental and leasing", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2405", "limit": 0, "attributes": "S2405_C03_009EA,S2405_C03_009M,S2405_C03_009MA"}, "S2702_C02_016E": {"label": "Estimate!!Total Uninsured!!Total civilian noninstitutionalized population!!SEX!!Female", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_016EA,S2702_C02_016M,S2702_C02_016MA"}, "S2002_C04_031E": {"label": "Estimate!!Women's earnings as a percentage of men's earnings!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Building and grounds cleaning and maintenance occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "float", "group": "S2002", "limit": 0, "attributes": "S2002_C04_031EA,S2002_C04_031M,S2002_C04_031MA"}, "S1501_C04_015E": {"label": "Estimate!!Percent Male!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "float", "group": "S1501", "limit": 0, "attributes": "S1501_C04_015EA,S1501_C04_015M,S1501_C04_015MA"}, "S2504_C05_019E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!ROOMS!!6 or 7 rooms", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C05_019EA,S2504_C05_019M,S2504_C05_019MA"}, "S2601A_C01_055E": {"label": "Estimate!!Total population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_055EA,S2601A_C01_055M,S2601A_C01_055MA"}, "S2702_C02_017E": {"label": "Estimate!!Total Uninsured!!Total civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C02_017EA,S2702_C02_017M,S2702_C02_017MA"}, "S2002_C04_032E": {"label": "Estimate!!Women's earnings as a percentage of men's earnings!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Personal care and service occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "float", "group": "S2002", "limit": 0, "attributes": "S2002_C04_032EA,S2002_C04_032M,S2002_C04_032MA"}, "S2603_C07_029E": {"label": "Estimate!!Military quarters/military ships!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!Hispanic or Latino (of any race)", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C07_029EA,S2603_C07_029M,S2603_C07_029MA"}, "S1501_C04_016E": {"label": "Estimate!!Percent Male!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 to 34 years", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C04_016EA,S1501_C04_016M,S1501_C04_016MA"}, "S2403_C05_013E": {"label": "Estimate!!Percent Female!!Civilian employed population 16 years and over!!Finance and insurance, and real estate and rental and leasing:", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2403", "limit": 0, "attributes": "S2403_C05_013EA,S2403_C05_013M,S2403_C05_013MA"}, "S0801_C01_050E": {"label": "Estimate!!Total!!VEHICLES AVAILABLE!!Workers 16 years and over in households!!2 vehicles available", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C01_050EA,S0801_C01_050M,S0801_C01_050MA"}, "S0504_C01_107E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income!!Mean retirement income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C01_107EA,S0504_C01_107M,S0504_C01_107MA"}, "S2601C_C01_070E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Naturalized U.S. citizen", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_070EA,S2601C_C01_070M,S2601C_C01_070MA"}, "S2702_C01_010E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!AGE!!19 to 64 years!!55 to 64 years", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_010EA,S2702_C01_010M,S2702_C01_010MA"}, "S2403_C05_014E": {"label": "Estimate!!Percent Female!!Civilian employed population 16 years and over!!Finance and insurance, and real estate and rental and leasing:!!Finance and insurance", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2403", "limit": 0, "attributes": "S2403_C05_014EA,S2403_C05_014M,S2403_C05_014MA"}, "S0504_C01_106E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_106EA,S0504_C01_106M,S0504_C01_106MA"}, "S2601C_C01_071E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Naturalized U.S. citizen!!Male", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_071EA,S2601C_C01_071M,S2601C_C01_071MA"}, "S2601A_C01_058E": {"label": "Estimate!!Total population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the U.S.!!Same county", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_058EA,S2601A_C01_058M,S2601A_C01_058MA"}, "S0801_C01_052E": {"label": "Estimate!!Total!!PERCENT ALLOCATED!!Means of transportation to work", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C01_052EA,S0801_C01_052M,S0801_C01_052MA"}, "S2403_C05_011E": {"label": "Estimate!!Percent Female!!Civilian employed population 16 years and over!!Transportation and warehousing, and utilities:!!Utilities", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2403", "limit": 0, "attributes": "S2403_C05_011EA,S2403_C05_011M,S2403_C05_011MA"}, "S0504_C01_105E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income!!Mean cash public assistance income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C01_105EA,S0504_C01_105M,S0504_C01_105MA"}, "S2601A_C01_059E": {"label": "Estimate!!Total population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the U.S.!!Different county", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_059EA,S2601A_C01_059M,S2601A_C01_059MA"}, "S0801_C01_051E": {"label": "Estimate!!Total!!VEHICLES AVAILABLE!!Workers 16 years and over in households!!3 or more vehicles available", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C01_051EA,S0801_C01_051M,S0801_C01_051MA"}, "S2403_C05_012E": {"label": "Estimate!!Percent Female!!Civilian employed population 16 years and over!!Information", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2403", "limit": 0, "attributes": "S2403_C05_012EA,S2403_C05_012M,S2403_C05_012MA"}, "S0504_C01_104E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_104EA,S0504_C01_104M,S0504_C01_104MA"}, "S0505_C02_092E": {"label": "Estimate!!Foreign-born; Born in Asia!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$35,000 to $49,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_092EA,S0505_C02_092M,S0505_C02_092MA"}, "S2702_C01_013E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!AGE!!65 years and older!!75 years and older", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_013EA,S2702_C01_013M,S2702_C01_013MA"}, "S1601_C06_012E": {"label": "Estimate!!Percent speak English less than \"very well\"!!Percent of specified language speakers!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Asian and Pacific Island languages", "concept": "Language Spoken at Home", "predicateType": "float", "group": "S1601", "limit": 0, "attributes": "S1601_C06_012EA,S1601_C06_012M,S1601_C06_012MA"}, "S2403_C05_017E": {"label": "Estimate!!Percent Female!!Civilian employed population 16 years and over!!Professional, scientific, and management, and administrative and waste management services:!!Professional, scientific, and technical services", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2403", "limit": 0, "attributes": "S2403_C05_017EA,S2403_C05_017M,S2403_C05_017MA"}, "S0505_C02_091E": {"label": "Estimate!!Foreign-born; Born in Asia!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$25,000 to $34,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_091EA,S0505_C02_091M,S0505_C02_091MA"}, "S2702_C01_014E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!AGE!!Median age (years)", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_014EA,S2702_C01_014M,S2702_C01_014MA"}, "S1601_C06_013E": {"label": "Estimate!!Percent speak English less than \"very well\"!!Percent of specified language speakers!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Asian and Pacific Island languages!!5 to 17 years old", "concept": "Language Spoken at Home", "predicateType": "float", "group": "S1601", "limit": 0, "attributes": "S1601_C06_013EA,S1601_C06_013M,S1601_C06_013MA"}, "S2403_C05_018E": {"label": "Estimate!!Percent Female!!Civilian employed population 16 years and over!!Professional, scientific, and management, and administrative and waste management services:!!Management of companies and enterprises", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2403", "limit": 0, "attributes": "S2403_C05_018EA,S2403_C05_018M,S2403_C05_018MA"}, "S0505_C02_090E": {"label": "Estimate!!Foreign-born; Born in Asia!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$15,000 to $24,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_090EA,S0505_C02_090M,S0505_C02_090MA"}, "S2702_C01_011E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!AGE!!65 years and older", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_011EA,S2702_C01_011M,S2702_C01_011MA"}, "S1601_C06_010E": {"label": "Estimate!!Percent speak English less than \"very well\"!!Percent of specified language speakers!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Other Indo-European languages!!18 to 64 years old", "concept": "Language Spoken at Home", "predicateType": "float", "group": "S1601", "limit": 0, "attributes": "S1601_C06_010EA,S1601_C06_010M,S1601_C06_010MA"}, "S0504_C01_109E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!Median Household income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C01_109EA,S0504_C01_109M,S0504_C01_109MA"}, "S2403_C05_015E": {"label": "Estimate!!Percent Female!!Civilian employed population 16 years and over!!Finance and insurance, and real estate and rental and leasing:!!Real estate and rental and leasing", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2403", "limit": 0, "attributes": "S2403_C05_015EA,S2403_C05_015M,S2403_C05_015MA"}, "S2702_C01_012E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!AGE!!65 years and older!!65 to 74 years", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_012EA,S2702_C01_012M,S2702_C01_012MA"}, "S1601_C06_011E": {"label": "Estimate!!Percent speak English less than \"very well\"!!Percent of specified language speakers!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Other Indo-European languages!!65 years old and over", "concept": "Language Spoken at Home", "predicateType": "float", "group": "S1601", "limit": 0, "attributes": "S1601_C06_011EA,S1601_C06_011M,S1601_C06_011MA"}, "S0506_C05_089E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$10,000 to $14,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_089EA,S0506_C05_089M,S0506_C05_089MA"}, "S0504_C01_108E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Food Stamp/SNAP benefits", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_108EA,S0504_C01_108M,S0504_C01_108MA"}, "S2403_C05_016E": {"label": "Estimate!!Percent Female!!Civilian employed population 16 years and over!!Professional, scientific, and management, and administrative and waste management services:", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2403", "limit": 0, "attributes": "S2403_C05_016EA,S2403_C05_016M,S2403_C05_016MA"}, "S2402_C02_019E": {"label": "Estimate!!Male!!Full-time, year-round civilian employed population 16 years and over!!Service occupations:!!Healthcare support occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C02_019EA,S2402_C02_019M,S2402_C02_019MA"}, "S0501_C02_059E": {"label": "Estimate!!Native!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Self-employed workers in own not incorporated business", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_059EA,S0501_C02_059M,S0501_C02_059MA"}, "S0506_C05_088E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$1 to $9,999 or loss", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_088EA,S0506_C05_088M,S0506_C05_088MA"}, "S0505_C02_096E": {"label": "Estimate!!Foreign-born; Born in Asia!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!Median earnings (dollars) for full-time, year-round workers!!Female", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C02_096EA,S0505_C02_096M,S0505_C02_096MA"}, "S2601C_C01_078E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Entered before 2000", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_078EA,S2601C_C01_078M,S2601C_C01_078MA"}, "S1601_C06_016E": {"label": "Estimate!!Percent speak English less than \"very well\"!!Percent of specified language speakers!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Other languages", "concept": "Language Spoken at Home", "predicateType": "float", "group": "S1601", "limit": 0, "attributes": "S1601_C06_016EA,S1601_C06_016M,S1601_C06_016MA"}, "S2702_C01_017E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_017EA,S2702_C01_017M,S2702_C01_017MA"}, "S0801_C01_057E": {"label": "Estimate!!Total!!PERCENT ALLOCATED!!Vehicles available", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C01_057EA,S0801_C01_057M,S0801_C01_057MA"}, "S0505_C02_095E": {"label": "Estimate!!Foreign-born; Born in Asia!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!Median earnings (dollars) for full-time, year-round workers!!Male", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C02_095EA,S0505_C02_095M,S0505_C02_095MA"}, "S0506_C05_087E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C05_087EA,S0506_C05_087M,S0506_C05_087MA"}, "S1601_C06_017E": {"label": "Estimate!!Percent speak English less than \"very well\"!!Percent of specified language speakers!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Other languages!!5 to 17 years old", "concept": "Language Spoken at Home", "predicateType": "float", "group": "S1601", "limit": 0, "attributes": "S1601_C06_017EA,S1601_C06_017M,S1601_C06_017MA"}, "S2601C_C01_079E": {"label": "Estimate!!Total population!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_079EA,S2601C_C01_079M,S2601C_C01_079MA"}, "S2702_C01_018E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White alone", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_018EA,S2702_C01_018M,S2702_C01_018MA"}, "S2702_C01_015E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!SEX!!Male", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_015EA,S2702_C01_015M,S2702_C01_015MA"}, "S0501_C02_057E": {"label": "Estimate!!Native!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Private wage and salary workers", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_057EA,S0501_C02_057M,S0501_C02_057MA"}, "S0506_C05_086E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Civilian employed population 16 years and over!!INDUSTRY!!Public administration", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_086EA,S0506_C05_086M,S0506_C05_086MA"}, "S0505_C02_094E": {"label": "Estimate!!Foreign-born; Born in Asia!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$75,000 or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_094EA,S0505_C02_094M,S0505_C02_094MA"}, "S2403_C05_019E": {"label": "Estimate!!Percent Female!!Civilian employed population 16 years and over!!Professional, scientific, and management, and administrative and waste management services:!!Administrative and support and waste management services", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2403", "limit": 0, "attributes": "S2403_C05_019EA,S2403_C05_019M,S2403_C05_019MA"}, "S1601_C06_014E": {"label": "Estimate!!Percent speak English less than \"very well\"!!Percent of specified language speakers!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Asian and Pacific Island languages!!18 to 64 years old", "concept": "Language Spoken at Home", "predicateType": "float", "group": "S1601", "limit": 0, "attributes": "S1601_C06_014EA,S1601_C06_014M,S1601_C06_014MA"}, "S2601C_C01_076E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Entered 2010 or later", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_076EA,S2601C_C01_076M,S2601C_C01_076MA"}, "S2702_C01_016E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!SEX!!Female", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_016EA,S2702_C01_016M,S2702_C01_016MA"}, "S0501_C02_058E": {"label": "Estimate!!Native!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Government workers", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_058EA,S0501_C02_058M,S0501_C02_058MA"}, "S0505_C02_093E": {"label": "Estimate!!Foreign-born; Born in Asia!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$50,000 to $74,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_093EA,S0505_C02_093M,S0505_C02_093MA"}, "S0506_C05_085E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Civilian employed population 16 years and over!!INDUSTRY!!Other services (except public administration)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_085EA,S0506_C05_085M,S0506_C05_085MA"}, "S1601_C06_015E": {"label": "Estimate!!Percent speak English less than \"very well\"!!Percent of specified language speakers!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Asian and Pacific Island languages!!65 years old and over", "concept": "Language Spoken at Home", "predicateType": "float", "group": "S1601", "limit": 0, "attributes": "S1601_C06_015EA,S1601_C06_015M,S1601_C06_015MA"}, "S2601C_C01_077E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Entered 2000 to 2009", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_077EA,S2601C_C01_077M,S2601C_C01_077MA"}, "S0801_C01_054E": {"label": "Estimate!!Total!!PERCENT ALLOCATED!!Place of work", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C01_054EA,S0801_C01_054M,S0801_C01_054MA"}, "S0506_C05_084E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Civilian employed population 16 years and over!!INDUSTRY!!Arts, entertainment, and recreation, and accommodation and food services", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_084EA,S0506_C05_084M,S0506_C05_084MA"}, "S2601C_C01_074E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Not a U.S. citizen!!Male", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_074EA,S2601C_C01_074M,S2601C_C01_074MA"}, "S0701_C03_013E": {"label": "Estimate!!Moved; from different county, same state!!Population 1 year and over!!SEX!!Female", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C03_013EA,S0701_C03_013M,S0701_C03_013MA"}, "S0801_C01_053E": {"label": "Estimate!!Total!!PERCENT ALLOCATED!!Private vehicle occupancy", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C01_053EA,S0801_C01_053M,S0801_C01_053MA"}, "S0505_C02_099E": {"label": "Estimate!!Foreign-born; Born in Asia!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings!!Mean earnings (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C02_099EA,S0505_C02_099M,S0505_C02_099MA"}, "S0802_C04_050E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!INDUSTRY!!Construction", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_050EA,S0802_C04_050M,S0802_C04_050MA"}, "S0506_C05_083E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Civilian employed population 16 years and over!!INDUSTRY!!Educational services, and health care and social assistance", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_083EA,S0506_C05_083M,S0506_C05_083MA"}, "S2601C_C01_075E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Not a U.S. citizen!!Female", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_075EA,S2601C_C01_075M,S2601C_C01_075MA"}, "S0701_C03_012E": {"label": "Estimate!!Moved; from different county, same state!!Population 1 year and over!!SEX!!Male", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C03_012EA,S0701_C03_012M,S0701_C03_012MA"}, "S0801_C01_056E": {"label": "Estimate!!Total!!PERCENT ALLOCATED!!Travel time to work", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C01_056EA,S0801_C01_056M,S0801_C01_056MA"}, "S0802_C04_051E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!INDUSTRY!!Manufacturing", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_051EA,S0802_C04_051M,S0802_C04_051MA"}, "S0505_C02_098E": {"label": "Estimate!!Foreign-born; Born in Asia!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_098EA,S0505_C02_098M,S0505_C02_098MA"}, "S1601_C06_018E": {"label": "Estimate!!Percent speak English less than \"very well\"!!Percent of specified language speakers!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Other languages!!18 to 64 years old", "concept": "Language Spoken at Home", "predicateType": "float", "group": "S1601", "limit": 0, "attributes": "S1601_C06_018EA,S1601_C06_018M,S1601_C06_018MA"}, "S0506_C05_082E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Civilian employed population 16 years and over!!INDUSTRY!!Professional, scientific, and management, and administrative and waste management services", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_082EA,S0506_C05_082M,S0506_C05_082MA"}, "S0701_C03_011E": {"label": "Estimate!!Moved; from different county, same state!!Population 1 year and over!!AGE!!Median age (years)", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C03_011EA,S0701_C03_011M,S0701_C03_011MA"}, "S2601C_C01_072E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Naturalized U.S. citizen!!Female", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_072EA,S2601C_C01_072M,S2601C_C01_072MA"}, "S2702_C01_019E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American alone", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_019EA,S2702_C01_019M,S2702_C01_019MA"}, "S0801_C01_055E": {"label": "Estimate!!Total!!PERCENT ALLOCATED!!Time of departure to go to work", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C01_055EA,S0801_C01_055M,S0801_C01_055MA"}, "S0802_C04_052E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!INDUSTRY!!Wholesale trade", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_052EA,S0802_C04_052M,S0802_C04_052MA"}, "S0505_C02_097E": {"label": "Estimate!!Foreign-born; Born in Asia!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C02_097EA,S0505_C02_097M,S0505_C02_097MA"}, "S1601_C06_019E": {"label": "Estimate!!Percent speak English less than \"very well\"!!Percent of specified language speakers!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Other languages!!65 years old and over", "concept": "Language Spoken at Home", "predicateType": "float", "group": "S1601", "limit": 0, "attributes": "S1601_C06_019EA,S1601_C06_019M,S1601_C06_019MA"}, "S0506_C05_081E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Civilian employed population 16 years and over!!INDUSTRY!!Finance and insurance, and real estate and rental and leasing", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_081EA,S0506_C05_081M,S0506_C05_081MA"}, "S0701_C03_010E": {"label": "Estimate!!Moved; from different county, same state!!Population 1 year and over!!AGE!!75 years and over", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C03_010EA,S0701_C03_010M,S0701_C03_010MA"}, "S2601C_C01_073E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Not a U.S. citizen", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_073EA,S2601C_C01_073M,S2601C_C01_073MA"}, "S2603_C03_102E": {"label": "Estimate!!Adult correctional facilities!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!With earnings:!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C03_102EA,S2603_C03_102M,S2603_C03_102MA"}, "S2402_C02_022E": {"label": "Estimate!!Male!!Full-time, year-round civilian employed population 16 years and over!!Service occupations:!!Protective service occupations:!!Law enforcement workers including supervisors", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C02_022EA,S2402_C02_022M,S2402_C02_022MA"}, "S0701_C03_017E": {"label": "Estimate!!Moved; from different county, same state!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C03_017EA,S0701_C03_017M,S0701_C03_017MA"}, "S0802_C04_041E": {"label": "Estimate!!Public transportation!!POVERTY STATUS IN THE PAST 12 MONTHS!!Workers 16 years and over for whom poverty status is determined!!At or above 150 percent of the poverty level", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_041EA,S0802_C04_041M,S0802_C04_041MA"}, "S0501_C02_051E": {"label": "Estimate!!Native!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Employed", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_051EA,S0501_C02_051M,S0501_C02_051MA"}, "S2603_C01_096E": {"label": "Estimate!!Total population!!OCCUPATION!!Civilian employed population 16 years and over!!Sales and office occupations", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C01_096EA,S2603_C01_096M,S2603_C01_096MA"}, "S0506_C05_092E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$35,000 to $49,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_092EA,S0506_C05_092M,S0506_C05_092MA"}, "S0701_C03_016E": {"label": "Estimate!!Moved; from different county, same state!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C03_016EA,S0701_C03_016M,S0701_C03_016MA"}, "S2402_C02_021E": {"label": "Estimate!!Male!!Full-time, year-round civilian employed population 16 years and over!!Service occupations:!!Protective service occupations:!!Firefighting and prevention, and other protective service workers including supervisors", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C02_021EA,S2402_C02_021M,S2402_C02_021MA"}, "S0802_C04_042E": {"label": "Estimate!!Public transportation!!Workers 16 years and over", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "int", "group": "S0802", "limit": 0, "attributes": "S0802_C04_042EA,S0802_C04_042M,S0802_C04_042MA"}, "S0501_C02_052E": {"label": "Estimate!!Native!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_052EA,S0501_C02_052M,S0501_C02_052MA"}, "S2603_C01_095E": {"label": "Estimate!!Total population!!OCCUPATION!!Civilian employed population 16 years and over!!Service occupations", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C01_095EA,S2603_C01_095M,S2603_C01_095MA"}, "S0506_C05_091E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$25,000 to $34,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_091EA,S0506_C05_091M,S0506_C05_091MA"}, "S2603_C03_103E": {"label": "Estimate!!Adult correctional facilities!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!Mean earnings (dollars):!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C03_103EA,S2603_C03_103M,S2603_C03_103MA"}, "S2603_C03_100E": {"label": "Estimate!!Adult correctional facilities!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!Per capita income (dollars)", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C03_100EA,S2603_C03_100M,S2603_C03_100MA"}, "S0701_C03_015E": {"label": "Estimate!!Moved; from different county, same state!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C03_015EA,S0701_C03_015M,S0701_C03_015MA"}, "S2402_C02_020E": {"label": "Estimate!!Male!!Full-time, year-round civilian employed population 16 years and over!!Service occupations:!!Protective service occupations:", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C02_020EA,S2402_C02_020M,S2402_C02_020MA"}, "S0802_C04_043E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!OCCUPATION!!Management, business, science, and arts occupations", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_043EA,S0802_C04_043M,S0802_C04_043MA"}, "S2603_C01_094E": {"label": "Estimate!!Total population!!OCCUPATION!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C01_094EA,S2603_C01_094M,S2603_C01_094MA"}, "S0506_C05_090E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$15,000 to $24,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_090EA,S0506_C05_090M,S0506_C05_090MA"}, "S2603_C03_101E": {"label": "Estimate!!Adult correctional facilities!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!With earnings:!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C03_101EA,S2603_C03_101M,S2603_C03_101MA"}, "S0701_C03_014E": {"label": "Estimate!!Moved; from different county, same state!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C03_014EA,S0701_C03_014M,S0701_C03_014MA"}, "S0501_C02_050E": {"label": "Estimate!!Native!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_050EA,S0501_C02_050M,S0501_C02_050MA"}, "S2603_C01_093E": {"label": "Estimate!!Total population!!OCCUPATION!!Civilian employed population 16 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C01_093EA,S2603_C01_093M,S2603_C01_093MA"}, "S0802_C04_044E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!OCCUPATION!!Service occupations", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_044EA,S0802_C04_044M,S0802_C04_044MA"}, "S0501_C02_055E": {"label": "Estimate!!Native!!EMPLOYMENT STATUS!!Population 16 years and over!!Not in labor force", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_055EA,S0501_C02_055M,S0501_C02_055MA"}, "S2601A_C01_060E": {"label": "Estimate!!Total population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the U.S.!!Different county!!Same state", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_060EA,S2601A_C01_060M,S2601A_C01_060MA"}, "S2603_C01_092E": {"label": "Estimate!!Total population!!EMPLOYMENT STATUS!!Population 16 years and over!!Not in labor force", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C01_092EA,S2603_C01_092M,S2603_C01_092MA"}, "S0802_C04_045E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!OCCUPATION!!Sales and office occupations", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_045EA,S0802_C04_045M,S0802_C04_045MA"}, "S0101_C05_027E": {"label": "Estimate!!Female!!Total population!!SELECTED AGE CATEGORIES!!21 years and over", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C05_027EA,S0101_C05_027M,S0101_C05_027MA"}, "S2603_C03_106E": {"label": "Estimate!!Adult correctional facilities!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!Median earnings (dollars):!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C03_106EA,S2603_C03_106M,S2603_C03_106MA"}, "S0501_C02_056E": {"label": "Estimate!!Native!!Civilian employed population 16 years and over", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C02_056EA,S0501_C02_056M,S0501_C02_056MA"}, "S2601A_C01_061E": {"label": "Estimate!!Total population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the U.S.!!Different county!!Different state", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_061EA,S2601A_C01_061M,S2601A_C01_061MA"}, "S2603_C01_091E": {"label": "Estimate!!Total population!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Armed Forces", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C01_091EA,S2603_C01_091M,S2603_C01_091MA"}, "S0802_C04_046E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!OCCUPATION!!Natural resources, construction, and maintenance occupations", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_046EA,S0802_C04_046M,S0802_C04_046MA"}, "S2603_C03_107E": {"label": "Estimate!!Adult correctional facilities!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!With Food Stamp/SNAP benefits", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C03_107EA,S2603_C03_107M,S2603_C03_107MA"}, "S0101_C05_026E": {"label": "Estimate!!Female!!Total population!!SELECTED AGE CATEGORIES!!18 years and over", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C05_026EA,S0101_C05_026M,S0101_C05_026MA"}, "S0701_C03_019E": {"label": "Estimate!!Moved; from different county, same state!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C03_019EA,S0701_C03_019M,S0701_C03_019MA"}, "S0101_C05_029E": {"label": "Estimate!!Female!!Total population!!SELECTED AGE CATEGORIES!!62 years and over", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C05_029EA,S0101_C05_029M,S0101_C05_029MA"}, "S0501_C02_053E": {"label": "Estimate!!Native!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed!!Percent of civilian labor force", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_053EA,S0501_C02_053M,S0501_C02_053MA"}, "S2603_C01_090E": {"label": "Estimate!!Total population!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed!!Percent of civilian labor force", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C01_090EA,S2603_C01_090M,S2603_C01_090MA"}, "S0802_C04_047E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!OCCUPATION!!Production, transportation, and material moving occupations", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_047EA,S0802_C04_047M,S0802_C04_047MA"}, "S2603_C03_104E": {"label": "Estimate!!Adult correctional facilities!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!Mean earnings (dollars):!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C03_104EA,S2603_C03_104M,S2603_C03_104MA"}, "S0701_C03_018E": {"label": "Estimate!!Moved; from different county, same state!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C03_018EA,S0701_C03_018M,S0701_C03_018MA"}, "S0501_C02_054E": {"label": "Estimate!!Native!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Armed Forces", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_054EA,S0501_C02_054M,S0501_C02_054MA"}, "S0802_C04_048E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!OCCUPATION!!Military specific occupations", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_048EA,S0802_C04_048M,S0802_C04_048MA"}, "S0101_C05_028E": {"label": "Estimate!!Female!!Total population!!SELECTED AGE CATEGORIES!!60 years and over", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C05_028EA,S0101_C05_028M,S0101_C05_028MA"}, "S2603_C03_105E": {"label": "Estimate!!Adult correctional facilities!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!Median earnings (dollars):!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C03_105EA,S2603_C03_105M,S2603_C03_105MA"}, "S2601A_C01_064E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Native", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_064EA,S2601A_C01_064M,S2601A_C01_064MA"}, "S0802_C04_049E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!INDUSTRY!!Agriculture, forestry, fishing and hunting, and mining", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_049EA,S0802_C04_049M,S0802_C04_049MA"}, "S0101_C05_023E": {"label": "Estimate!!Female!!Total population!!SELECTED AGE CATEGORIES!!18 to 24 years", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C05_023EA,S0101_C05_023M,S0101_C05_023MA"}, "S2402_C02_029E": {"label": "Estimate!!Male!!Full-time, year-round civilian employed population 16 years and over!!Natural resources, construction, and maintenance occupations:", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C02_029EA,S2402_C02_029M,S2402_C02_029MA"}, "S2601A_C01_065E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Native!!Male", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_065EA,S2601A_C01_065M,S2601A_C01_065MA"}, "S0101_C05_022E": {"label": "Estimate!!Female!!Total population!!SELECTED AGE CATEGORIES!!Under 18 years", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C05_022EA,S0101_C05_022M,S0101_C05_022MA"}, "S2402_C02_028E": {"label": "Estimate!!Male!!Full-time, year-round civilian employed population 16 years and over!!Sales and office occupations:!!Office and administrative support occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C02_028EA,S2402_C02_028M,S2402_C02_028MA"}, "S2601A_C01_062E": {"label": "Estimate!!Total population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Abroad", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_062EA,S2601A_C01_062M,S2601A_C01_062MA"}, "S0101_C05_025E": {"label": "Estimate!!Female!!Total population!!SELECTED AGE CATEGORIES!!16 years and over", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C05_025EA,S0101_C05_025M,S0101_C05_025MA"}, "S2402_C02_027E": {"label": "Estimate!!Male!!Full-time, year-round civilian employed population 16 years and over!!Sales and office occupations:!!Sales and related occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C02_027EA,S2402_C02_027M,S2402_C02_027MA"}, "S2601A_C01_063E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_063EA,S2601A_C01_063M,S2601A_C01_063MA"}, "S0101_C05_024E": {"label": "Estimate!!Female!!Total population!!SELECTED AGE CATEGORIES!!15 to 44 years", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C05_024EA,S0101_C05_024M,S0101_C05_024MA"}, "S2402_C02_026E": {"label": "Estimate!!Male!!Full-time, year-round civilian employed population 16 years and over!!Sales and office occupations:", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C02_026EA,S2402_C02_026M,S2402_C02_026MA"}, "S2601A_C01_068E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Male", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_068EA,S2601A_C01_068M,S2601A_C01_068MA"}, "S0504_C01_103E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income!!Mean Supplemental Security Income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C01_103EA,S0504_C01_103M,S0504_C01_103MA"}, "S2601A_C01_069E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Female", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_069EA,S2601A_C01_069M,S2601A_C01_069MA"}, "S2402_C02_025E": {"label": "Estimate!!Male!!Full-time, year-round civilian employed population 16 years and over!!Service occupations:!!Personal care and service occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C02_025EA,S2402_C02_025M,S2402_C02_025MA"}, "S0504_C01_102E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_102EA,S0504_C01_102M,S0504_C01_102MA"}, "S2403_C05_010E": {"label": "Estimate!!Percent Female!!Civilian employed population 16 years and over!!Transportation and warehousing, and utilities:!!Transportation and warehousing", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2403", "limit": 0, "attributes": "S2403_C05_010EA,S2403_C05_010M,S2403_C05_010MA"}, "S2603_C01_099E": {"label": "Estimate!!Total population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C01_099EA,S2603_C01_099M,S2603_C01_099MA"}, "S2402_C02_024E": {"label": "Estimate!!Male!!Full-time, year-round civilian employed population 16 years and over!!Service occupations:!!Building and grounds cleaning and maintenance occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C02_024EA,S2402_C02_024M,S2402_C02_024MA"}, "S2601A_C01_066E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Native!!Female", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_066EA,S2601A_C01_066M,S2601A_C01_066MA"}, "S0504_C01_101E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income!!Mean Social Security income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C01_101EA,S0504_C01_101M,S0504_C01_101MA"}, "S0101_C05_021E": {"label": "Estimate!!Female!!Total population!!SELECTED AGE CATEGORIES!!15 to 17 years", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C05_021EA,S0101_C05_021M,S0101_C05_021MA"}, "S2603_C01_098E": {"label": "Estimate!!Total population!!OCCUPATION!!Civilian employed population 16 years and over!!Production, transportation, and material moving occupations", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C01_098EA,S2603_C01_098M,S2603_C01_098MA"}, "S2601A_C01_067E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_067EA,S2601A_C01_067M,S2601A_C01_067MA"}, "S2402_C02_023E": {"label": "Estimate!!Male!!Full-time, year-round civilian employed population 16 years and over!!Service occupations:!!Food preparation and serving related occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C02_023EA,S2402_C02_023M,S2402_C02_023MA"}, "S0504_C01_100E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_100EA,S0504_C01_100M,S0504_C01_100MA"}, "S0101_C05_020E": {"label": "Estimate!!Female!!Total population!!SELECTED AGE CATEGORIES!!5 to 14 years", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C05_020EA,S0101_C05_020M,S0101_C05_020MA"}, "S2603_C01_097E": {"label": "Estimate!!Total population!!OCCUPATION!!Civilian employed population 16 years and over!!Natural resources, construction, extraction, and maintenance occupations", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C01_097EA,S2603_C01_097M,S2603_C01_097MA"}, "S2702_C01_021E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian alone", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_021EA,S2702_C01_021M,S2702_C01_021MA"}, "S1601_C06_020E": {"label": "Estimate!!Percent speak English less than \"very well\"!!Percent of specified language speakers!!CITIZENS 18 YEARS AND OVER!!All citizens 18 years old and over", "concept": "Language Spoken at Home", "predicateType": "float", "group": "S1601", "limit": 0, "attributes": "S1601_C06_020EA,S1601_C06_020M,S1601_C06_020MA"}, "S2403_C05_001E": {"label": "Estimate!!Percent Female!!Civilian employed population 16 years and over", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2403", "limit": 0, "attributes": "S2403_C05_001EA,S2403_C05_001M,S2403_C05_001MA"}, "S2601C_C01_082E": {"label": "Estimate!!Total population!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English!!Speak English less than \"very well\"", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_082EA,S2601C_C01_082M,S2601C_C01_082MA"}, "S2702_C01_022E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander alone", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_022EA,S2702_C01_022M,S2702_C01_022MA"}, "S2403_C05_002E": {"label": "Estimate!!Percent Female!!Civilian employed population 16 years and over!!Agriculture, forestry, fishing and hunting, and mining:", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2403", "limit": 0, "attributes": "S2403_C05_002EA,S2403_C05_002M,S2403_C05_002MA"}, "S1601_C06_021E": {"label": "Estimate!!Percent speak English less than \"very well\"!!Percent of specified language speakers!!CITIZENS 18 YEARS AND OVER!!All citizens 18 years old and over!!Speak only English", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C06_021EA,S1601_C06_021M,S1601_C06_021MA"}, "S2601C_C01_083E": {"label": "Estimate!!Total population!!EMPLOYMENT STATUS!!Population 16 years and over", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_083EA,S2601C_C01_083M,S2601C_C01_083MA"}, "S2601C_C01_080E": {"label": "Estimate!!Total population!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!English only", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_080EA,S2601C_C01_080M,S2601C_C01_080MA"}, "S2702_C01_020E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native alone", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_020EA,S2702_C01_020M,S2702_C01_020MA"}, "S2601C_C01_081E": {"label": "Estimate!!Total population!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_081EA,S2601C_C01_081M,S2601C_C01_081MA"}, "S0505_C02_080E": {"label": "Estimate!!Foreign-born; Born in Asia!!Civilian employed population 16 years and over!!INDUSTRY!!Information", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_080EA,S0505_C02_080M,S0505_C02_080MA"}, "S2702_C01_025E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino (of any race)", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_025EA,S2702_C01_025M,S2702_C01_025MA"}, "S1601_C06_024E": {"label": "Estimate!!Percent speak English less than \"very well\"!!Percent of specified language speakers!!CITIZENS 18 YEARS AND OVER!!All citizens 18 years old and over!!Speak a language other than English!!Other languages", "concept": "Language Spoken at Home", "predicateType": "float", "group": "S1601", "limit": 0, "attributes": "S1601_C06_024EA,S1601_C06_024M,S1601_C06_024MA"}, "S2403_C05_005E": {"label": "Estimate!!Percent Female!!Civilian employed population 16 years and over!!Construction", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2403", "limit": 0, "attributes": "S2403_C05_005EA,S2403_C05_005M,S2403_C05_005MA"}, "S2702_C01_026E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_026EA,S2702_C01_026M,S2702_C01_026MA"}, "S0506_C05_079E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Civilian employed population 16 years and over!!INDUSTRY!!Transportation and warehousing, and utilities", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_079EA,S0506_C05_079M,S0506_C05_079MA"}, "S2403_C05_006E": {"label": "Estimate!!Percent Female!!Civilian employed population 16 years and over!!Manufacturing", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2403", "limit": 0, "attributes": "S2403_C05_006EA,S2403_C05_006M,S2403_C05_006MA"}, "S2402_C02_009E": {"label": "Estimate!!Male!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Computer, engineering, and science occupations:!!Life, physical, and social science occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C02_009EA,S2402_C02_009M,S2402_C02_009MA"}, "S2702_C01_023E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race alone", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_023EA,S2702_C01_023M,S2702_C01_023MA"}, "S2403_C05_003E": {"label": "Estimate!!Percent Female!!Civilian employed population 16 years and over!!Agriculture, forestry, fishing and hunting, and mining:!!Agriculture, forestry, fishing and hunting", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2403", "limit": 0, "attributes": "S2403_C05_003EA,S2403_C05_003M,S2403_C05_003MA"}, "S1601_C06_022E": {"label": "Estimate!!Percent speak English less than \"very well\"!!Percent of specified language speakers!!CITIZENS 18 YEARS AND OVER!!All citizens 18 years old and over!!Speak a language other than English", "concept": "Language Spoken at Home", "predicateType": "float", "group": "S1601", "limit": 0, "attributes": "S1601_C06_022EA,S1601_C06_022M,S1601_C06_022MA"}, "S0506_C05_078E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Civilian employed population 16 years and over!!INDUSTRY!!Retail trade", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_078EA,S0506_C05_078M,S0506_C05_078MA"}, "S2402_C02_008E": {"label": "Estimate!!Male!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Computer, engineering, and science occupations:!!Architecture and engineering occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C02_008EA,S2402_C02_008M,S2402_C02_008MA"}, "S2402_C02_007E": {"label": "Estimate!!Male!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Computer, engineering, and science occupations:!!Computer and mathematical occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C02_007EA,S2402_C02_007M,S2402_C02_007MA"}, "S2702_C01_024E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_024EA,S2702_C01_024M,S2702_C01_024MA"}, "S1601_C06_023E": {"label": "Estimate!!Percent speak English less than \"very well\"!!Percent of specified language speakers!!CITIZENS 18 YEARS AND OVER!!All citizens 18 years old and over!!Speak a language other than English!!Spanish", "concept": "Language Spoken at Home", "predicateType": "float", "group": "S1601", "limit": 0, "attributes": "S1601_C06_023EA,S1601_C06_023M,S1601_C06_023MA"}, "S0506_C05_077E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Civilian employed population 16 years and over!!INDUSTRY!!Wholesale trade", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_077EA,S0506_C05_077M,S0506_C05_077MA"}, "S2403_C05_004E": {"label": "Estimate!!Percent Female!!Civilian employed population 16 years and over!!Agriculture, forestry, fishing and hunting, and mining:!!Mining, quarrying, and oil and gas extraction", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2403", "limit": 0, "attributes": "S2403_C05_004EA,S2403_C05_004M,S2403_C05_004MA"}, "S0505_C02_084E": {"label": "Estimate!!Foreign-born; Born in Asia!!Civilian employed population 16 years and over!!INDUSTRY!!Arts, entertainment, and recreation, and accommodation and food services", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_084EA,S0505_C02_084M,S0505_C02_084MA"}, "S0506_C05_076E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Civilian employed population 16 years and over!!INDUSTRY!!Manufacturing", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_076EA,S0506_C05_076M,S0506_C05_076MA"}, "S2403_C05_009E": {"label": "Estimate!!Percent Female!!Civilian employed population 16 years and over!!Transportation and warehousing, and utilities:", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2403", "limit": 0, "attributes": "S2403_C05_009EA,S2403_C05_009M,S2403_C05_009MA"}, "S2702_C01_029E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!NATIVITY AND U.S. CITIZENSHIP STATUS!!Foreign born!!Naturalized", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_029EA,S2702_C01_029M,S2702_C01_029MA"}, "S0506_C05_075E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Civilian employed population 16 years and over!!INDUSTRY!!Construction", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_075EA,S0506_C05_075M,S0506_C05_075MA"}, "S0505_C02_083E": {"label": "Estimate!!Foreign-born; Born in Asia!!Civilian employed population 16 years and over!!INDUSTRY!!Educational services, and health care and social assistance", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_083EA,S0505_C02_083M,S0505_C02_083MA"}, "S2702_C01_027E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!NATIVITY AND U.S. CITIZENSHIP STATUS!!Native born", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_027EA,S2702_C01_027M,S2702_C01_027MA"}, "S0501_C02_069E": {"label": "Estimate!!Native!!Civilian employed population 16 years and over!!INDUSTRY!!Wholesale trade", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_069EA,S0501_C02_069M,S0501_C02_069MA"}, "S0505_C02_082E": {"label": "Estimate!!Foreign-born; Born in Asia!!Civilian employed population 16 years and over!!INDUSTRY!!Professional, scientific, and management, and administrative and waste management services", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_082EA,S0505_C02_082M,S0505_C02_082MA"}, "S0506_C05_074E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Civilian employed population 16 years and over!!INDUSTRY!!Agriculture, forestry, fishing and hunting, and mining", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_074EA,S0506_C05_074M,S0506_C05_074MA"}, "S2403_C05_007E": {"label": "Estimate!!Percent Female!!Civilian employed population 16 years and over!!Wholesale trade", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2403", "limit": 0, "attributes": "S2403_C05_007EA,S2403_C05_007M,S2403_C05_007MA"}, "S2601C_C01_088E": {"label": "Estimate!!Total population!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed!!Percent of civilian labor force", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_088EA,S2601C_C01_088M,S2601C_C01_088MA"}, "S0505_C02_081E": {"label": "Estimate!!Foreign-born; Born in Asia!!Civilian employed population 16 years and over!!INDUSTRY!!Finance and insurance, and real estate and rental and leasing", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_081EA,S0505_C02_081M,S0505_C02_081MA"}, "S0802_C04_060E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!INDUSTRY!!Public administration", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_060EA,S0802_C04_060M,S0802_C04_060MA"}, "S0506_C05_073E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Civilian employed population 16 years and over!!OCCUPATION!!Production, transportation, and material moving occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_073EA,S0506_C05_073M,S0506_C05_073MA"}, "S2601C_C01_089E": {"label": "Estimate!!Total population!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Armed Forces", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_089EA,S2601C_C01_089M,S2601C_C01_089MA"}, "S2403_C05_008E": {"label": "Estimate!!Percent Female!!Civilian employed population 16 years and over!!Retail trade", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2403", "limit": 0, "attributes": "S2403_C05_008EA,S2403_C05_008M,S2403_C05_008MA"}, "S2702_C01_028E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!NATIVITY AND U.S. CITIZENSHIP STATUS!!Foreign born", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_028EA,S2702_C01_028M,S2702_C01_028MA"}, "S0505_C02_088E": {"label": "Estimate!!Foreign-born; Born in Asia!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$1 to $9,999 or loss", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_088EA,S0505_C02_088M,S0505_C02_088MA"}, "S0802_C04_061E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!INDUSTRY!!Armed forces", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_061EA,S0802_C04_061M,S0802_C04_061MA"}, "S0506_C05_072E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Civilian employed population 16 years and over!!OCCUPATION!!Natural resources, construction, and maintenance occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_072EA,S0506_C05_072M,S0506_C05_072MA"}, "S2601C_C01_086E": {"label": "Estimate!!Total population!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Employed", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_086EA,S2601C_C01_086M,S2601C_C01_086MA"}, "S0701_C03_001E": {"label": "Estimate!!Moved; from different county, same state!!Population 1 year and over", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C03_001EA,S0701_C03_001M,S0701_C03_001MA"}, "S0802_C04_062E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!CLASS OF WORKER!!Private wage and salary workers", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_062EA,S0802_C04_062M,S0802_C04_062MA"}, "S0505_C02_087E": {"label": "Estimate!!Foreign-born; Born in Asia!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C02_087EA,S0505_C02_087M,S0505_C02_087MA"}, "S0506_C05_071E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Civilian employed population 16 years and over!!OCCUPATION!!Sales and office occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_071EA,S0506_C05_071M,S0506_C05_071MA"}, "S2601C_C01_087E": {"label": "Estimate!!Total population!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_087EA,S2601C_C01_087M,S2601C_C01_087MA"}, "S0802_C04_063E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!CLASS OF WORKER!!Government workers", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_063EA,S0802_C04_063M,S0802_C04_063MA"}, "S0505_C02_086E": {"label": "Estimate!!Foreign-born; Born in Asia!!Civilian employed population 16 years and over!!INDUSTRY!!Public administration", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_086EA,S0505_C02_086M,S0505_C02_086MA"}, "CSA": {"label": "Combined Statistical Area", "group": "N/A", "limit": 0}, "S0506_C05_070E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Civilian employed population 16 years and over!!OCCUPATION!!Service occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_070EA,S0506_C05_070M,S0506_C05_070MA"}, "S2601C_C01_084E": {"label": "Estimate!!Total population!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_084EA,S2601C_C01_084M,S2601C_C01_084MA"}, "S0802_C04_064E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!CLASS OF WORKER!!Self-employed workers in own not incorporated business", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_064EA,S0802_C04_064M,S0802_C04_064MA"}, "S0505_C02_085E": {"label": "Estimate!!Foreign-born; Born in Asia!!Civilian employed population 16 years and over!!INDUSTRY!!Other services (except public administration)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_085EA,S0505_C02_085M,S0505_C02_085MA"}, "S2601C_C01_085E": {"label": "Estimate!!Total population!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_085EA,S2601C_C01_085M,S2601C_C01_085MA"}, "S0701_C03_005E": {"label": "Estimate!!Moved; from different county, same state!!Population 1 year and over!!AGE!!25 to 34 years", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C03_005EA,S0701_C03_005M,S0701_C03_005MA"}, "S2402_C02_010E": {"label": "Estimate!!Male!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C02_010EA,S2402_C02_010M,S2402_C02_010MA"}, "S0802_C04_053E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!INDUSTRY!!Retail trade", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_053EA,S0802_C04_053M,S0802_C04_053MA"}, "S0501_C02_063E": {"label": "Estimate!!Native!!Civilian employed population 16 years and over!!OCCUPATION!!Sales and office occupations", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_063EA,S0501_C02_063M,S0501_C02_063MA"}, "S2603_C01_084E": {"label": "Estimate!!Total population!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English!!Speak English less than \"very well\"", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C01_084EA,S2603_C01_084M,S2603_C01_084MA"}, "S0506_C05_080E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Civilian employed population 16 years and over!!INDUSTRY!!Information", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_080EA,S0506_C05_080M,S0506_C05_080MA"}, "S0501_C02_064E": {"label": "Estimate!!Native!!Civilian employed population 16 years and over!!OCCUPATION!!Natural resources, construction, and maintenance occupations", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_064EA,S0501_C02_064M,S0501_C02_064MA"}, "S0701_C03_004E": {"label": "Estimate!!Moved; from different county, same state!!Population 1 year and over!!AGE!!18 to 24 years", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C03_004EA,S0701_C03_004M,S0701_C03_004MA"}, "S0802_C04_054E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!INDUSTRY!!Transportation and warehousing, and utilities", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_054EA,S0802_C04_054M,S0802_C04_054MA"}, "S2603_C01_083E": {"label": "Estimate!!Total population!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C01_083EA,S2603_C01_083M,S2603_C01_083MA"}, "S0701_C03_003E": {"label": "Estimate!!Moved; from different county, same state!!Population 1 year and over!!AGE!!5 to 17 years", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C03_003EA,S0701_C03_003M,S0701_C03_003MA"}, "S0501_C02_061E": {"label": "Estimate!!Native!!Civilian employed population 16 years and over!!OCCUPATION!!Management, business, science, and arts occupations", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_061EA,S0501_C02_061M,S0501_C02_061MA"}, "S2603_C01_082E": {"label": "Estimate!!Total population!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!English only", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C01_082EA,S2603_C01_082M,S2603_C01_082MA"}, "S0802_C04_055E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!INDUSTRY!!Information and finance and insurance, and real estate and rental and leasing", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_055EA,S0802_C04_055M,S0802_C04_055MA"}, "S0505_C02_089E": {"label": "Estimate!!Foreign-born; Born in Asia!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$10,000 to $14,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_089EA,S0505_C02_089M,S0505_C02_089MA"}, "S0501_C02_062E": {"label": "Estimate!!Native!!Civilian employed population 16 years and over!!OCCUPATION!!Service occupations", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_062EA,S0501_C02_062M,S0501_C02_062MA"}, "S2603_C01_081E": {"label": "Estimate!!Total population!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C01_081EA,S2603_C01_081M,S2603_C01_081MA"}, "S0802_C04_056E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!INDUSTRY!!Professional, scientific, management, and administrative and waste management services", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_056EA,S0802_C04_056M,S0802_C04_056MA"}, "S0701_C03_002E": {"label": "Estimate!!Moved; from different county, same state!!Population 1 year and over!!AGE!!1 to 4 years", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C03_002EA,S0701_C03_002M,S0701_C03_002MA"}, "S0701_C03_009E": {"label": "Estimate!!Moved; from different county, same state!!Population 1 year and over!!AGE!!65 to 74 years", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C03_009EA,S0701_C03_009M,S0701_C03_009MA"}, "S0501_C02_067E": {"label": "Estimate!!Native!!Civilian employed population 16 years and over!!INDUSTRY!!Construction", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_067EA,S0501_C02_067M,S0501_C02_067MA"}, "S2601A_C01_072E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Naturalized U.S. citizen!!Female", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_072EA,S2601A_C01_072M,S2601A_C01_072MA"}, "S2603_C01_080E": {"label": "Estimate!!Total population!!WORLD REGION OF BIRTH OF FOREIGN BORN!!Foreign-born population excluding population born at sea!!Other", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C01_080EA,S2603_C01_080M,S2603_C01_080MA"}, "S0802_C04_057E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!INDUSTRY!!Educational services, and health care and social assistance", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_057EA,S0802_C04_057M,S0802_C04_057MA"}, "S0501_C02_068E": {"label": "Estimate!!Native!!Civilian employed population 16 years and over!!INDUSTRY!!Manufacturing", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_068EA,S0501_C02_068M,S0501_C02_068MA"}, "S0701_C03_008E": {"label": "Estimate!!Moved; from different county, same state!!Population 1 year and over!!AGE!!55 to 64 years", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C03_008EA,S0701_C03_008M,S0701_C03_008MA"}, "S2601A_C01_073E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Not a U.S. citizen", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_073EA,S2601A_C01_073M,S2601A_C01_073MA"}, "S0802_C04_058E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!INDUSTRY!!Arts, entertainment, and recreation, and accommodation and food services", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_058EA,S0802_C04_058M,S0802_C04_058MA"}, "S0101_C05_038E": {"label": "Estimate!!Female!!Total population!!PERCENT ALLOCATED!!Age", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C05_038EA,S0101_C05_038M,S0101_C05_038MA"}, "S0701_C03_007E": {"label": "Estimate!!Moved; from different county, same state!!Population 1 year and over!!AGE!!45 to 54 years", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C03_007EA,S0701_C03_007M,S0701_C03_007MA"}, "S0501_C02_065E": {"label": "Estimate!!Native!!Civilian employed population 16 years and over!!OCCUPATION!!Production, transportation, and material moving occupations", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_065EA,S0501_C02_065M,S0501_C02_065MA"}, "S2601A_C01_070E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Naturalized U.S. citizen", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_070EA,S2601A_C01_070M,S2601A_C01_070MA"}, "S0802_C04_059E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!INDUSTRY!!Other services (except public administration)", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_059EA,S0802_C04_059M,S0802_C04_059MA"}, "S0501_C02_066E": {"label": "Estimate!!Native!!Civilian employed population 16 years and over!!INDUSTRY!!Agriculture, forestry, fishing and hunting, and mining", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_066EA,S0501_C02_066M,S0501_C02_066MA"}, "S0701_C03_006E": {"label": "Estimate!!Moved; from different county, same state!!Population 1 year and over!!AGE!!35 to 44 years", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C03_006EA,S0701_C03_006M,S0701_C03_006MA"}, "S2601A_C01_071E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Naturalized U.S. citizen!!Male", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_071EA,S2601A_C01_071M,S2601A_C01_071MA"}, "S2402_C02_018E": {"label": "Estimate!!Male!!Full-time, year-round civilian employed population 16 years and over!!Service occupations:", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C02_018EA,S2402_C02_018M,S2402_C02_018MA"}, "S2601A_C01_076E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Entered 2010 or later", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_076EA,S2601A_C01_076M,S2601A_C01_076MA"}, "S0101_C05_035E": {"label": "Estimate!!Female!!Total population!!SUMMARY INDICATORS!!Old-age dependency ratio", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C05_035EA,S0101_C05_035M,S0101_C05_035MA"}, "S2402_C02_017E": {"label": "Estimate!!Male!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Healthcare practitioners and technical occupations:!!Health technologists and technicians", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C02_017EA,S2402_C02_017M,S2402_C02_017MA"}, "S2601A_C01_077E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Entered 2000 to 2009", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_077EA,S2601A_C01_077M,S2601A_C01_077MA"}, "S0101_C05_034E": {"label": "Estimate!!Female!!Total population!!SUMMARY INDICATORS!!Age dependency ratio", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C05_034EA,S0101_C05_034M,S0101_C05_034MA"}, "S2402_C02_016E": {"label": "Estimate!!Male!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Healthcare practitioners and technical occupations:!!Health diagnosing and treating practitioners and other technical occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C02_016EA,S2402_C02_016M,S2402_C02_016MA"}, "S2601A_C01_074E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Not a U.S. citizen!!Male", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_074EA,S2601A_C01_074M,S2601A_C01_074MA"}, "S0101_C05_037E": {"label": "Estimate!!Female!!Total population!!PERCENT ALLOCATED!!Sex", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C05_037EA,S0101_C05_037M,S0101_C05_037MA"}, "S2402_C02_015E": {"label": "Estimate!!Male!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Healthcare practitioners and technical occupations:", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C02_015EA,S2402_C02_015M,S2402_C02_015MA"}, "S2601A_C01_075E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Not a U.S. citizen!!Female", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_075EA,S2601A_C01_075M,S2601A_C01_075MA"}, "S0101_C05_036E": {"label": "Estimate!!Female!!Total population!!SUMMARY INDICATORS!!Child dependency ratio", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C05_036EA,S0101_C05_036M,S0101_C05_036MA"}, "S2603_C01_089E": {"label": "Estimate!!Total population!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C01_089EA,S2603_C01_089M,S2603_C01_089MA"}, "S2402_C02_014E": {"label": "Estimate!!Male!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:!!Arts, design, entertainment, sports, and media occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C02_014EA,S2402_C02_014M,S2402_C02_014MA"}, "S0101_C05_031E": {"label": "Estimate!!Female!!Total population!!SELECTED AGE CATEGORIES!!75 years and over", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C05_031EA,S0101_C05_031M,S0101_C05_031MA"}, "S2603_C01_088E": {"label": "Estimate!!Total population!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Employed", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C01_088EA,S2603_C01_088M,S2603_C01_088MA"}, "S2402_C02_013E": {"label": "Estimate!!Male!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:!!Educational instruction, and library occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C02_013EA,S2402_C02_013M,S2402_C02_013MA"}, "S0501_C02_060E": {"label": "Estimate!!Native!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Unpaid family workers", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_060EA,S0501_C02_060M,S0501_C02_060MA"}, "S0101_C05_030E": {"label": "Estimate!!Female!!Total population!!SELECTED AGE CATEGORIES!!65 years and over", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C05_030EA,S0101_C05_030M,S0101_C05_030MA"}, "S2603_C01_087E": {"label": "Estimate!!Total population!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C01_087EA,S2603_C01_087M,S2603_C01_087MA"}, "S2601A_C01_078E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Entered before 2000", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_078EA,S2601A_C01_078M,S2601A_C01_078MA"}, "S2402_C02_012E": {"label": "Estimate!!Male!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:!!Legal occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C02_012EA,S2402_C02_012M,S2402_C02_012MA"}, "S0101_C05_033E": {"label": "Estimate!!Female!!Total population!!SUMMARY INDICATORS!!Sex ratio (males per 100 females)", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C05_033EA,S0101_C05_033M,S0101_C05_033MA"}, "S2603_C01_086E": {"label": "Estimate!!Total population!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C01_086EA,S2603_C01_086M,S2603_C01_086MA"}, "S2601A_C01_079E": {"label": "Estimate!!Total population!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_079EA,S2601A_C01_079M,S2601A_C01_079MA"}, "S2402_C02_011E": {"label": "Estimate!!Male!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:!!Community and social service occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C02_011EA,S2402_C02_011M,S2402_C02_011MA"}, "S2603_C01_085E": {"label": "Estimate!!Total population!!EMPLOYMENT STATUS!!Population 16 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C01_085EA,S2603_C01_085M,S2603_C01_085MA"}, "S0101_C05_032E": {"label": "Estimate!!Female!!Total population!!SUMMARY INDICATORS!!Median age (years)", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C05_032EA,S0101_C05_032M,S0101_C05_032MA"}, "S2702_C01_033E": {"label": "Estimate!!Total!!RESIDENCE 1 YEAR AGO!!Civilian noninstitutionalized population 1 year and over", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "int", "group": "S2702", "limit": 0, "attributes": "S2702_C01_033EA,S2702_C01_033M,S2702_C01_033MA"}, "S2503_C03_039E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$50,000 to $74,999!!20 to 29 percent", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C03_039EA,S2503_C03_039M,S2503_C03_039MA"}, "S2702_C01_034E": {"label": "Estimate!!Total!!RESIDENCE 1 YEAR AGO!!Civilian noninstitutionalized population 1 year and over!!Same house", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_034EA,S2702_C01_034M,S2702_C01_034MA"}, "S2503_C03_038E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$50,000 to $74,999!!Less than 20 percent", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C03_038EA,S2503_C03_038M,S2503_C03_038MA"}, "S2702_C01_031E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!DISABILITY STATUS!!With a disability", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_031EA,S2702_C01_031M,S2702_C01_031MA"}, "S2702_C01_032E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!DISABILITY STATUS!!No disability", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_032EA,S2702_C01_032M,S2702_C01_032MA"}, "S0506_C05_069E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Civilian employed population 16 years and over!!OCCUPATION!!Management, business, science, and arts occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_069EA,S0506_C05_069M,S0506_C05_069MA"}, "S0502PR_C03_146E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_146EA,S0502PR_C03_146M,S0502PR_C03_146MA"}, "S2702_C01_037E": {"label": "Estimate!!Total!!RESIDENCE 1 YEAR AGO!!Civilian noninstitutionalized population 1 year and over!!Different House in the U.S.!!Different county", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_037EA,S2702_C01_037M,S2702_C01_037MA"}, "S0506_C05_068E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Unpaid family workers", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_068EA,S0506_C05_068M,S0506_C05_068MA"}, "S2503_C03_035E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$35,000 to $49,999!!20 to 29 percent", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C03_035EA,S2503_C03_035M,S2503_C03_035MA"}, "S2702_C01_038E": {"label": "Estimate!!Total!!RESIDENCE 1 YEAR AGO!!Civilian noninstitutionalized population 1 year and over!!Different House in the U.S.!!Different county!!Same state", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_038EA,S2702_C01_038M,S2702_C01_038MA"}, "S0506_C05_067E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Self-employed workers in own not incorporated business", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_067EA,S0506_C05_067M,S0506_C05_067MA"}, "S2503_C03_034E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$35,000 to $49,999!!Less than 20 percent", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C03_034EA,S2503_C03_034M,S2503_C03_034MA"}, "S2702_C01_035E": {"label": "Estimate!!Total!!RESIDENCE 1 YEAR AGO!!Civilian noninstitutionalized population 1 year and over!!Different House in the U.S.", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_035EA,S2702_C01_035M,S2702_C01_035MA"}, "S0506_C05_066E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Government workers", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_066EA,S0506_C05_066M,S0506_C05_066MA"}, "S2503_C03_037E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$50,000 to $74,999", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C03_037EA,S2503_C03_037M,S2503_C03_037MA"}, "S2702_C01_036E": {"label": "Estimate!!Total!!RESIDENCE 1 YEAR AGO!!Civilian noninstitutionalized population 1 year and over!!Different House in the U.S.!!Same county", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_036EA,S2702_C01_036M,S2702_C01_036MA"}, "S0506_C05_065E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Private wage and salary workers", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_065EA,S0506_C05_065M,S0506_C05_065MA"}, "S2503_C03_036E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$35,000 to $49,999!!30 percent or more", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C03_036EA,S2503_C03_036M,S2503_C03_036MA"}, "S0502PR_C03_141E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Owner-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_141EA,S0502PR_C03_141M,S0502PR_C03_141MA"}, "S0801_C01_034E": {"label": "Estimate!!Total!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!8:00 a.m. to 8:29 a.m.", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C01_034EA,S0801_C01_034M,S0801_C01_034MA"}, "S0506_C05_064E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Civilian employed population 16 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C05_064EA,S0506_C05_064M,S0506_C05_064MA"}, "S2601C_C01_054E": {"label": "Estimate!!Total population!!DISABILITY STATUS!!Population 65 years and over!!With a disability", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_054EA,S2601C_C01_054M,S2601C_C01_054MA"}, "S0701_C03_033E": {"label": "Estimate!!Moved; from different county, same state!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C03_033EA,S0701_C03_033M,S0701_C03_033MA"}, "S0801_C01_033E": {"label": "Estimate!!Total!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!7:30 a.m. to 7:59 a.m.", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C01_033EA,S0801_C01_033M,S0801_C01_033MA"}, "S0502PR_C03_140E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Occupied housing units!!SELECTED CHARACTERISTICS!!Limited English Speaking Households", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_140EA,S0502PR_C03_140M,S0502PR_C03_140MA"}, "S0802_C04_070E": {"label": "Estimate!!Public transportation!!Workers 16 years and over who did not work from home", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "int", "group": "S0802", "limit": 0, "attributes": "S0802_C04_070EA,S0802_C04_070M,S0802_C04_070MA"}, "S0506_C05_063E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!EMPLOYMENT STATUS!!Population 16 years and over!!Not in labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_063EA,S0506_C05_063M,S0506_C05_063MA"}, "S2601C_C01_055E": {"label": "Estimate!!Total population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_055EA,S2601C_C01_055M,S2601C_C01_055MA"}, "S0701_C03_032E": {"label": "Estimate!!Moved; from different county, same state!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C03_032EA,S0701_C03_032M,S0701_C03_032MA"}, "S0801_C01_036E": {"label": "Estimate!!Total!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!9:00 a.m. to 11:59 p.m.", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C01_036EA,S0801_C01_036M,S0801_C01_036MA"}, "S0802_C04_071E": {"label": "Estimate!!Public transportation!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!12:00 a.m. to 4:59 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_071EA,S0802_C04_071M,S0802_C04_071MA"}, "S0506_C05_062E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Armed Forces", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_062EA,S0506_C05_062M,S0506_C05_062MA"}, "S2601C_C01_052E": {"label": "Estimate!!Total population!!DISABILITY STATUS!!Population 18 to 64 years!!No disability", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_052EA,S2601C_C01_052M,S2601C_C01_052MA"}, "S2702_C01_039E": {"label": "Estimate!!Total!!RESIDENCE 1 YEAR AGO!!Civilian noninstitutionalized population 1 year and over!!Different House in the U.S.!!Different county!!Different state", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_039EA,S2702_C01_039M,S2702_C01_039MA"}, "S0701_C03_031E": {"label": "Estimate!!Moved; from different county, same state!!MARITAL STATUS!!Population 15 years and over!!Divorced or separated", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C03_031EA,S0701_C03_031M,S0701_C03_031MA"}, "S0801_C01_035E": {"label": "Estimate!!Total!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!8:30 a.m. to 8:59 a.m.", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C01_035EA,S0801_C01_035M,S0801_C01_035MA"}, "S0802_C04_072E": {"label": "Estimate!!Public transportation!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!5:00 a.m. to 5:29 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_072EA,S0802_C04_072M,S0802_C04_072MA"}, "S0506_C05_061E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed!!Percent of civilian labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_061EA,S0506_C05_061M,S0506_C05_061MA"}, "S2601C_C01_053E": {"label": "Estimate!!Total population!!DISABILITY STATUS!!Population 65 years and over", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_053EA,S2601C_C01_053M,S2601C_C01_053MA"}, "S0701_C03_030E": {"label": "Estimate!!Moved; from different county, same state!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C03_030EA,S0701_C03_030M,S0701_C03_030MA"}, "S0701_C03_037E": {"label": "Estimate!!Moved; from different county, same state!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C03_037EA,S0701_C03_037M,S0701_C03_037MA"}, "S0801_C01_030E": {"label": "Estimate!!Total!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!6:00 a.m. to 6:29 a.m.", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C01_030EA,S0801_C01_030M,S0801_C01_030MA"}, "S0802_C04_073E": {"label": "Estimate!!Public transportation!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!5:30 a.m. to 5:59 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_073EA,S0802_C04_073M,S0802_C04_073MA"}, "S0506_C05_060E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_060EA,S0506_C05_060M,S0506_C05_060MA"}, "S2601C_C01_050E": {"label": "Estimate!!Total population!!DISABILITY STATUS!!Population 18 to 64 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_050EA,S2601C_C01_050M,S2601C_C01_050MA"}, "S0502PR_C03_145E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_145EA,S0502PR_C03_145M,S0502PR_C03_145MA"}, "S0502PR_C03_144E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Renter-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_144EA,S0502PR_C03_144M,S0502PR_C03_144MA"}, "S0701_C03_036E": {"label": "Estimate!!Moved; from different county, same state!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college or associate's degree", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C03_036EA,S0701_C03_036M,S0701_C03_036MA"}, "S0802_C04_074E": {"label": "Estimate!!Public transportation!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!6:00 a.m. to 6:29 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_074EA,S0802_C04_074M,S0802_C04_074MA"}, "S2601C_C01_051E": {"label": "Estimate!!Total population!!DISABILITY STATUS!!Population 18 to 64 years!!With a disability", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_051EA,S2601C_C01_051M,S2601C_C01_051MA"}, "S0502PR_C03_143E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_143EA,S0502PR_C03_143M,S0502PR_C03_143MA"}, "S0801_C01_032E": {"label": "Estimate!!Total!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!7:00 a.m. to 7:29 a.m.", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C01_032EA,S0801_C01_032M,S0801_C01_032MA"}, "S0802_C04_075E": {"label": "Estimate!!Public transportation!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!6:30 a.m. to 6:59 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_075EA,S0802_C04_075M,S0802_C04_075MA"}, "S0701_C03_035E": {"label": "Estimate!!Moved; from different county, same state!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate (includes equivalency)", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C03_035EA,S0701_C03_035M,S0701_C03_035MA"}, "S0502PR_C03_142E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_142EA,S0502PR_C03_142M,S0502PR_C03_142MA"}, "S0801_C01_031E": {"label": "Estimate!!Total!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!6:30 a.m. to 6:59 a.m.", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C01_031EA,S0801_C01_031M,S0801_C01_031MA"}, "S0802_C04_076E": {"label": "Estimate!!Public transportation!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!7:00 a.m. to 7:29 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_076EA,S0802_C04_076M,S0802_C04_076MA"}, "S0701_C03_034E": {"label": "Estimate!!Moved; from different county, same state!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than high school graduate", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C03_034EA,S0701_C03_034M,S0701_C03_034MA"}, "S0501_C02_075E": {"label": "Estimate!!Native!!Civilian employed population 16 years and over!!INDUSTRY!!Educational services, and health care and social assistance", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_075EA,S0501_C02_075M,S0501_C02_075MA"}, "S0101_C05_007E": {"label": "Estimate!!Female!!Total population!!AGE!!25 to 29 years", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C05_007EA,S0101_C05_007M,S0101_C05_007MA"}, "S0802_C04_065E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!CLASS OF WORKER!!Unpaid family workers", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_065EA,S0802_C04_065M,S0802_C04_065MA"}, "S2601A_C01_080E": {"label": "Estimate!!Total population!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!English only", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_080EA,S2601A_C01_080M,S2601A_C01_080MA"}, "S2603_C01_072E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Not a U.S. citizen!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C01_072EA,S2603_C01_072M,S2603_C01_072MA"}, "S0501_C02_076E": {"label": "Estimate!!Native!!Civilian employed population 16 years and over!!INDUSTRY!!Arts, entertainment, and recreation, and accommodation and food services", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_076EA,S0501_C02_076M,S0501_C02_076MA"}, "S2601A_C01_081E": {"label": "Estimate!!Total population!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_081EA,S2601A_C01_081M,S2601A_C01_081MA"}, "S2603_C01_071E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Not a U.S. citizen!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C01_071EA,S2603_C01_071M,S2603_C01_071MA"}, "S0802_C04_066E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!PLACE OF WORK!!Worked in state of residence", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_066EA,S0802_C04_066M,S0802_C04_066MA"}, "S0101_C05_006E": {"label": "Estimate!!Female!!Total population!!AGE!!20 to 24 years", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C05_006EA,S0101_C05_006M,S0101_C05_006MA"}, "S0101_C05_009E": {"label": "Estimate!!Female!!Total population!!AGE!!35 to 39 years", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C05_009EA,S0101_C05_009M,S0101_C05_009MA"}, "S0701_C03_039E": {"label": "Estimate!!Moved; from different county, same state!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C03_039EA,S0701_C03_039M,S0701_C03_039MA"}, "S0501_C02_073E": {"label": "Estimate!!Native!!Civilian employed population 16 years and over!!INDUSTRY!!Finance and insurance, and real estate and rental and leasing", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_073EA,S0501_C02_073M,S0501_C02_073MA"}, "S2603_C01_070E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Not a U.S. citizen", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C01_070EA,S2603_C01_070M,S2603_C01_070MA"}, "S0802_C04_067E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!PLACE OF WORK!!Worked in state of residence!!Worked in county of residence", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_067EA,S0802_C04_067M,S0802_C04_067MA"}, "S1401_C05_033E": {"label": "Estimate!!In private school!!Population 18 to 24 years!!Females 18 to 24 years", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C05_033EA,S1401_C05_033M,S1401_C05_033MA"}, "S0101_C05_008E": {"label": "Estimate!!Female!!Total population!!AGE!!30 to 34 years", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C05_008EA,S0101_C05_008M,S0101_C05_008MA"}, "S0701_C03_038E": {"label": "Estimate!!Moved; from different county, same state!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Graduate or professional degree", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C03_038EA,S0701_C03_038M,S0701_C03_038MA"}, "S0501_C02_074E": {"label": "Estimate!!Native!!Civilian employed population 16 years and over!!INDUSTRY!!Professional, scientific, and management, and administrative and waste management services", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_074EA,S0501_C02_074M,S0501_C02_074MA"}, "S1401_C05_034E": {"label": "Estimate!!In private school!!Population 18 to 24 years!!Females 18 to 24 years!!Enrolled in college or graduate school", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C05_034EA,S1401_C05_034M,S1401_C05_034MA"}, "S0802_C04_068E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!PLACE OF WORK!!Worked in state of residence!!Worked outside county of residence", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_068EA,S0802_C04_068M,S0802_C04_068MA"}, "S0501_C02_079E": {"label": "Estimate!!Native!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C02_079EA,S0501_C02_079M,S0501_C02_079MA"}, "S0505_C04_119E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_119EA,S0505_C04_119M,S0505_C04_119MA"}, "S2601A_C01_084E": {"label": "Estimate!!Total population!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_084EA,S2601A_C01_084M,S2601A_C01_084MA"}, "S2601C_C01_058E": {"label": "Estimate!!Total population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the U.S.!!Same county", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_058EA,S2601C_C01_058M,S2601C_C01_058MA"}, "S0802_C04_069E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!PLACE OF WORK!!Worked outside state of residence", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_069EA,S0802_C04_069M,S0802_C04_069MA"}, "S0101_C05_003E": {"label": "Estimate!!Female!!Total population!!AGE!!5 to 9 years", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C05_003EA,S0101_C05_003M,S0101_C05_003MA"}, "S0801_C01_038E": {"label": "Estimate!!Total!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!10 to 14 minutes", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C01_038EA,S0801_C01_038M,S0801_C01_038MA"}, "S0505_C04_118E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_118EA,S0505_C04_118M,S0505_C04_118MA"}, "S2601A_C01_085E": {"label": "Estimate!!Total population!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_085EA,S2601A_C01_085M,S2601A_C01_085MA"}, "S2601C_C01_059E": {"label": "Estimate!!Total population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the U.S.!!Different county", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_059EA,S2601C_C01_059M,S2601C_C01_059MA"}, "S0801_C01_037E": {"label": "Estimate!!Total!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!Less than 10 minutes", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C01_037EA,S0801_C01_037M,S0801_C01_037MA"}, "S0101_C05_002E": {"label": "Estimate!!Female!!Total population!!AGE!!Under 5 years", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C05_002EA,S0101_C05_002M,S0101_C05_002MA"}, "S0501_C02_077E": {"label": "Estimate!!Native!!Civilian employed population 16 years and over!!INDUSTRY!!Other services (except public administration)", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_077EA,S0501_C02_077M,S0501_C02_077MA"}, "S0505_C04_117E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_117EA,S0505_C04_117M,S0505_C04_117MA"}, "S2601A_C01_082E": {"label": "Estimate!!Total population!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English!!Speak English less than \"very well\"", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_082EA,S2601A_C01_082M,S2601A_C01_082MA"}, "S2601C_C01_056E": {"label": "Estimate!!Total population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Same address", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_056EA,S2601C_C01_056M,S2601C_C01_056MA"}, "S0101_C05_005E": {"label": "Estimate!!Female!!Total population!!AGE!!15 to 19 years", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C05_005EA,S0101_C05_005M,S0101_C05_005MA"}, "S0501_C02_078E": {"label": "Estimate!!Native!!Civilian employed population 16 years and over!!INDUSTRY!!Public administration", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_078EA,S0501_C02_078M,S0501_C02_078MA"}, "S2601A_C01_083E": {"label": "Estimate!!Total population!!EMPLOYMENT STATUS!!Population 16 years and over", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_083EA,S2601A_C01_083M,S2601A_C01_083MA"}, "S0505_C04_116E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_116EA,S0505_C04_116M,S0505_C04_116MA"}, "S2601C_C01_057E": {"label": "Estimate!!Total population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the U.S.", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_057EA,S2601C_C01_057M,S2601C_C01_057MA"}, "S0101_C05_004E": {"label": "Estimate!!Female!!Total population!!AGE!!10 to 14 years", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C05_004EA,S0101_C05_004M,S0101_C05_004MA"}, "S0801_C01_039E": {"label": "Estimate!!Total!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!15 to 19 minutes", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C01_039EA,S0801_C01_039M,S0801_C01_039MA"}, "S2402_C02_006E": {"label": "Estimate!!Male!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Computer, engineering, and science occupations:", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C02_006EA,S2402_C02_006M,S2402_C02_006MA"}, "S2601A_C01_088E": {"label": "Estimate!!Total population!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed!!Percent of civilian labor force", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_088EA,S2601A_C01_088M,S2601A_C01_088MA"}, "S0505_C04_115E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_115EA,S0505_C04_115M,S0505_C04_115MA"}, "S2503_C03_031E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$20,000 to $34,999!!20 to 29 percent", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C03_031EA,S2503_C03_031M,S2503_C03_031MA"}, "S2402_C02_005E": {"label": "Estimate!!Male!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Management, business, and financial occupations:!!Business and financial operations occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C02_005EA,S2402_C02_005M,S2402_C02_005MA"}, "S2601A_C01_089E": {"label": "Estimate!!Total population!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Armed Forces", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_089EA,S2601A_C01_089M,S2601A_C01_089MA"}, "S0505_C04_114E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!At or above 200 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_114EA,S0505_C04_114M,S0505_C04_114MA"}, "S2503_C03_030E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$20,000 to $34,999!!Less than 20 percent", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C03_030EA,S2503_C03_030M,S2503_C03_030MA"}, "S2603_C01_079E": {"label": "Estimate!!Total population!!WORLD REGION OF BIRTH OF FOREIGN BORN!!Foreign-born population excluding population born at sea!!Latin America", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C01_079EA,S2603_C01_079M,S2603_C01_079MA"}, "S2402_C02_004E": {"label": "Estimate!!Male!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Management, business, and financial occupations:!!Management occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C02_004EA,S2402_C02_004M,S2402_C02_004MA"}, "S2601A_C01_086E": {"label": "Estimate!!Total population!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Employed", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_086EA,S2601A_C01_086M,S2601A_C01_086MA"}, "S0505_C04_113E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!100 to 199 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_113EA,S0505_C04_113M,S0505_C04_113MA"}, "S2503_C03_033E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$35,000 to $49,999", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C03_033EA,S2503_C03_033M,S2503_C03_033MA"}, "S2603_C01_078E": {"label": "Estimate!!Total population!!WORLD REGION OF BIRTH OF FOREIGN BORN!!Foreign-born population excluding population born at sea!!Asia", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C01_078EA,S2603_C01_078M,S2603_C01_078MA"}, "S0101_C05_001E": {"label": "Estimate!!Female!!Total population", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C05_001EA,S0101_C05_001M,S0101_C05_001MA"}, "S2402_C02_003E": {"label": "Estimate!!Male!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Management, business, and financial occupations:", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C02_003EA,S2402_C02_003M,S2402_C02_003MA"}, "S2601A_C01_087E": {"label": "Estimate!!Total population!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_087EA,S2601A_C01_087M,S2601A_C01_087MA"}, "S0505_C04_112E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!Below 100 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_112EA,S0505_C04_112M,S0505_C04_112MA"}, "S2503_C03_032E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$20,000 to $34,999!!30 percent or more", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C03_032EA,S2503_C03_032M,S2503_C03_032MA"}, "S2603_C01_077E": {"label": "Estimate!!Total population!!WORLD REGION OF BIRTH OF FOREIGN BORN!!Foreign-born population excluding population born at sea!!Europe", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C01_077EA,S2603_C01_077M,S2603_C01_077MA"}, "S2402_C02_002E": {"label": "Estimate!!Male!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C02_002EA,S2402_C02_002M,S2402_C02_002MA"}, "S0501_C02_071E": {"label": "Estimate!!Native!!Civilian employed population 16 years and over!!INDUSTRY!!Transportation and warehousing, and utilities", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_071EA,S0501_C02_071M,S0501_C02_071MA"}, "S0505_C04_111E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C04_111EA,S0505_C04_111M,S0505_C04_111MA"}, "S1401_C05_031E": {"label": "Estimate!!In private school!!Population 18 to 24 years!!Males 18 to 24 years", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C05_031EA,S1401_C05_031M,S1401_C05_031MA"}, "S2603_C01_076E": {"label": "Estimate!!Total population!!WORLD REGION OF BIRTH OF FOREIGN BORN!!Foreign-born population excluding population born at sea", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C01_076EA,S2603_C01_076M,S2603_C01_076MA"}, "S2402_C02_001E": {"label": "Estimate!!Male!!Full-time, year-round civilian employed population 16 years and over", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C02_001EA,S2402_C02_001M,S2402_C02_001MA"}, "S2702_C01_030E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!NATIVITY AND U.S. CITIZENSHIP STATUS!!Foreign born!!Not a citizen", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_030EA,S2702_C01_030M,S2702_C01_030MA"}, "S0501_C02_072E": {"label": "Estimate!!Native!!Civilian employed population 16 years and over!!INDUSTRY!!Information", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_072EA,S0501_C02_072M,S0501_C02_072MA"}, "S0505_C04_110E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!Average number of workers per household", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_110EA,S0505_C04_110M,S0505_C04_110MA"}, "S1401_C05_032E": {"label": "Estimate!!In private school!!Population 18 to 24 years!!Males 18 to 24 years!!Enrolled in college or graduate school", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C05_032EA,S1401_C05_032M,S1401_C05_032MA"}, "S2603_C01_075E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Entered before 2000", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C01_075EA,S2603_C01_075M,S2603_C01_075MA"}, "S2603_C01_074E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Entered 2000 to 2009", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C01_074EA,S2603_C01_074M,S2603_C01_074MA"}, "S0501_C02_070E": {"label": "Estimate!!Native!!Civilian employed population 16 years and over!!INDUSTRY!!Retail trade", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_070EA,S0501_C02_070M,S0501_C02_070MA"}, "S2603_C01_073E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Entered 2010 or later", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C01_073EA,S2603_C01_073M,S2603_C01_073MA"}, "S1401_C05_030E": {"label": "Estimate!!In private school!!Population 18 to 24 years!!Enrolled in college or graduate school", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C05_030EA,S1401_C05_030M,S1401_C05_030MA"}, "S2702_C01_045E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Civilian noninstitutionalized population 25 years and over!!Bachelor's degree or higher", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_045EA,S2702_C01_045M,S2702_C01_045MA"}, "S2403_C05_025E": {"label": "Estimate!!Percent Female!!Civilian employed population 16 years and over!!Arts, entertainment, and recreation, and accommodation and food services:!!Accommodation and food services", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2403", "limit": 0, "attributes": "S2403_C05_025EA,S2403_C05_025M,S2403_C05_025MA"}, "S2601CPR_C01_105E": {"label": "Estimate!!Total population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!With Food Stamp/SNAP benefits", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "int", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_105EA,S2601CPR_C01_105M,S2601CPR_C01_105MA"}, "S2702_C01_046E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Civilian noninstitutionalized population 16 years and over", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "int", "group": "S2702", "limit": 0, "attributes": "S2702_C01_046EA,S2702_C01_046M,S2702_C01_046MA"}, "S0506_C05_059E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Employed", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_059EA,S0506_C05_059M,S0506_C05_059MA"}, "S2601CPR_C01_104E": {"label": "Estimate!!Total population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!Median earnings (dollars) full-time, year-round workers:!!Female", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "int", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_104EA,S2601CPR_C01_104M,S2601CPR_C01_104MA"}, "S2403_C05_026E": {"label": "Estimate!!Percent Female!!Civilian employed population 16 years and over!!Other services, except public administration", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2403", "limit": 0, "attributes": "S2403_C05_026EA,S2403_C05_026M,S2403_C05_026MA"}, "S0801_C01_040E": {"label": "Estimate!!Total!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!20 to 24 minutes", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C01_040EA,S0801_C01_040M,S0801_C01_040MA"}, "S2702_C01_043E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Civilian noninstitutionalized population 25 years and over!!High school graduate (includes equivalency)", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_043EA,S2702_C01_043M,S2702_C01_043MA"}, "S2403_C05_023E": {"label": "Estimate!!Percent Female!!Civilian employed population 16 years and over!!Arts, entertainment, and recreation, and accommodation and food services:", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2403", "limit": 0, "attributes": "S2403_C05_023EA,S2403_C05_023M,S2403_C05_023MA"}, "S0506_C05_058E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_058EA,S0506_C05_058M,S0506_C05_058MA"}, "S2601CPR_C01_103E": {"label": "Estimate!!Total population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!Median earnings (dollars) full-time, year-round workers:!!Male", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "int", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_103EA,S2601CPR_C01_103M,S2601CPR_C01_103MA"}, "S2702_C01_044E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Civilian noninstitutionalized population 25 years and over!!Some college or associate's degree", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_044EA,S2702_C01_044M,S2702_C01_044MA"}, "S2403_C05_024E": {"label": "Estimate!!Percent Female!!Civilian employed population 16 years and over!!Arts, entertainment, and recreation, and accommodation and food services:!!Arts, entertainment, and recreation", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2403", "limit": 0, "attributes": "S2403_C05_024EA,S2403_C05_024M,S2403_C05_024MA"}, "S0506_C05_057E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_057EA,S0506_C05_057M,S0506_C05_057MA"}, "S2601CPR_C01_101E": {"label": "Estimate!!Total population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!Mean earnings (dollars) for full-time, year-round workers:!!Male", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "int", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_101EA,S2601CPR_C01_101M,S2601CPR_C01_101MA"}, "S2601CPR_C01_102E": {"label": "Estimate!!Total population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!Mean earnings (dollars) for full-time, year-round workers:!!Female", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "int", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_102EA,S2601CPR_C01_102M,S2601CPR_C01_102MA"}, "S2702_C01_049E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Civilian noninstitutionalized population 16 years and over!!In labor force!!Unemployed", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_049EA,S2702_C01_049M,S2702_C01_049MA"}, "S0506_C05_056E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!EMPLOYMENT STATUS!!Population 16 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C05_056EA,S0506_C05_056M,S0506_C05_056MA"}, "S2601CPR_C01_109E": {"label": "Estimate!!Total population!!POVERTY RATES FOR PEOPLE FOR WHOM POVERTY STATUS IS DETERMINED!!All people!!65 years and over", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_109EA,S2601CPR_C01_109M,S2601CPR_C01_109MA"}, "S0506_C05_055E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English!!Speak English less than \"very well\"", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_055EA,S0506_C05_055M,S0506_C05_055MA"}, "S2503_C03_046E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!No cash rent", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C03_046EA,S2503_C03_046M,S2503_C03_046MA"}, "S2601CPR_C01_108E": {"label": "Estimate!!Total population!!POVERTY RATES FOR PEOPLE FOR WHOM POVERTY STATUS IS DETERMINED!!All people!!18 to 64 years", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_108EA,S2601CPR_C01_108M,S2601CPR_C01_108MA"}, "S2702_C01_047E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Civilian noninstitutionalized population 16 years and over!!In labor force", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_047EA,S2702_C01_047M,S2702_C01_047MA"}, "S0506_C05_054E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_054EA,S0506_C05_054M,S0506_C05_054MA"}, "S2403_C05_027E": {"label": "Estimate!!Percent Female!!Civilian employed population 16 years and over!!Public administration", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2403", "limit": 0, "attributes": "S2403_C05_027EA,S2403_C05_027M,S2403_C05_027MA"}, "S2601CPR_C01_107E": {"label": "Estimate!!Total population!!POVERTY RATES FOR PEOPLE FOR WHOM POVERTY STATUS IS DETERMINED!!All people!!18 years and over", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_107EA,S2601CPR_C01_107M,S2601CPR_C01_107MA"}, "S2702_C01_048E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Civilian noninstitutionalized population 16 years and over!!In labor force!!Employed", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_048EA,S2702_C01_048M,S2702_C01_048MA"}, "S0802_C04_080E": {"label": "Estimate!!Public transportation!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!9:00 a.m. to 11:59 p.m.", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_080EA,S0802_C04_080M,S0802_C04_080MA"}, "S0506_C05_053E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!English only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_053EA,S0506_C05_053M,S0506_C05_053MA"}, "S2601CPR_C01_106E": {"label": "Estimate!!Total population!!POVERTY RATES FOR PEOPLE FOR WHOM POVERTY STATUS IS DETERMINED!!All people", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_106EA,S2601CPR_C01_106M,S2601CPR_C01_106MA"}, "S2603_C01_069E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Naturalized U.S. citizen!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C01_069EA,S2603_C01_069M,S2603_C01_069MA"}, "S0801_C01_046E": {"label": "Estimate!!Total!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!Mean travel time to work (minutes)", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C01_046EA,S0801_C01_046M,S0801_C01_046MA"}, "S0802_C04_081E": {"label": "Estimate!!Public transportation!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!Less than 10 minutes", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_081EA,S0802_C04_081M,S0802_C04_081MA"}, "S0506_C05_052E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C05_052EA,S0506_C05_052M,S0506_C05_052MA"}, "S2601C_C01_066E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Native!!Female", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_066EA,S2601C_C01_066M,S2601C_C01_066MA"}, "S0701_C03_021E": {"label": "Estimate!!Moved; from different county, same state!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C03_021EA,S0701_C03_021M,S0701_C03_021MA"}, "S0801_C01_045E": {"label": "Estimate!!Total!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!60 or more minutes", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C01_045EA,S0801_C01_045M,S0801_C01_045MA"}, "S0802_C04_082E": {"label": "Estimate!!Public transportation!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!10 to 14 minutes", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_082EA,S0802_C04_082M,S0802_C04_082MA"}, "S0506_C05_051E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Graduate or professional degree", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_051EA,S0506_C05_051M,S0506_C05_051MA"}, "S2601C_C01_067E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_067EA,S2601C_C01_067M,S2601C_C01_067MA"}, "S0701_C03_020E": {"label": "Estimate!!Moved; from different county, same state!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C03_020EA,S0701_C03_020M,S0701_C03_020MA"}, "S1401_C05_029E": {"label": "Estimate!!In private school!!Population 18 to 24 years", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C05_029EA,S1401_C05_029M,S1401_C05_029MA"}, "S0802_C04_083E": {"label": "Estimate!!Public transportation!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!15 to 19 minutes", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_083EA,S0802_C04_083M,S0802_C04_083MA"}, "S0506_C05_050E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_050EA,S0506_C05_050M,S0506_C05_050MA"}, "S2601C_C01_064E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Native", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_064EA,S2601C_C01_064M,S2601C_C01_064MA"}, "S0801_C01_048E": {"label": "Estimate!!Total!!VEHICLES AVAILABLE!!Workers 16 years and over in households!!No vehicle available", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C01_048EA,S0801_C01_048M,S0801_C01_048MA"}, "S0801_C01_047E": {"label": "Estimate!!Total!!VEHICLES AVAILABLE!!Workers 16 years and over in households", "concept": "Commuting Characteristics by Sex", "predicateType": "int", "group": "S0801", "limit": 0, "attributes": "S0801_C01_047EA,S0801_C01_047M,S0801_C01_047MA"}, "S0802_C04_084E": {"label": "Estimate!!Public transportation!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!20 to 24 minutes", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_084EA,S0802_C04_084M,S0802_C04_084MA"}, "S2601C_C01_065E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Native!!Male", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_065EA,S2601C_C01_065M,S2601C_C01_065MA"}, "S0701_C03_025E": {"label": "Estimate!!Moved; from different county, same state!!Population 1 year and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C03_025EA,S0701_C03_025M,S0701_C03_025MA"}, "S0801_C01_042E": {"label": "Estimate!!Total!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!30 to 34 minutes", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C01_042EA,S0801_C01_042M,S0801_C01_042MA"}, "S0802_C04_085E": {"label": "Estimate!!Public transportation!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!25 to 29 minutes", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_085EA,S0802_C04_085M,S0802_C04_085MA"}, "S2601C_C01_062E": {"label": "Estimate!!Total population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Abroad", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_062EA,S2601C_C01_062M,S2601C_C01_062MA"}, "S0801_C01_041E": {"label": "Estimate!!Total!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!25 to 29 minutes", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C01_041EA,S0801_C01_041M,S0801_C01_041MA"}, "S0802_C04_086E": {"label": "Estimate!!Public transportation!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!30 to 34 minutes", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_086EA,S0802_C04_086M,S0802_C04_086MA"}, "S2601C_C01_063E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_063EA,S2601C_C01_063M,S2601C_C01_063MA"}, "S0701_C03_024E": {"label": "Estimate!!Moved; from different county, same state!!Population 1 year and over!!NATIVITY AND CITIZENSHIP STATUS!!Native", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C03_024EA,S0701_C03_024M,S0701_C03_024MA"}, "S0801_C01_044E": {"label": "Estimate!!Total!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!45 to 59 minutes", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C01_044EA,S0801_C01_044M,S0801_C01_044MA"}, "S0802_C04_087E": {"label": "Estimate!!Public transportation!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!35 to 44 minutes", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_087EA,S0802_C04_087M,S0802_C04_087MA"}, "S2601C_C01_060E": {"label": "Estimate!!Total population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the U.S.!!Different county!!Same state", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_060EA,S2601C_C01_060M,S2601C_C01_060MA"}, "S0701_C03_023E": {"label": "Estimate!!Moved; from different county, same state!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C03_023EA,S0701_C03_023M,S0701_C03_023MA"}, "S0801_C01_043E": {"label": "Estimate!!Total!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!35 to 44 minutes", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C01_043EA,S0801_C01_043M,S0801_C01_043MA"}, "S0802_C04_088E": {"label": "Estimate!!Public transportation!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!45 to 59 minutes", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_088EA,S0802_C04_088M,S0802_C04_088MA"}, "S0701_C03_022E": {"label": "Estimate!!Moved; from different county, same state!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C03_022EA,S0701_C03_022M,S0701_C03_022MA"}, "S2601C_C01_061E": {"label": "Estimate!!Total population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the U.S.!!Different county!!Different state", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_061EA,S2601C_C01_061M,S2601C_C01_061MA"}, "S0701_C03_029E": {"label": "Estimate!!Moved; from different county, same state!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C03_029EA,S0701_C03_029M,S0701_C03_029MA"}, "S0101_C05_019E": {"label": "Estimate!!Female!!Total population!!AGE!!85 years and over", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C05_019EA,S0101_C05_019M,S0101_C05_019MA"}, "S0501_C02_087E": {"label": "Estimate!!Native!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!Median earnings (dollars) for full-time, year-round workers!!Male", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C02_087EA,S0501_C02_087M,S0501_C02_087MA"}, "S2601A_C01_092E": {"label": "Estimate!!Total population!!OCCUPATION!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_092EA,S2601A_C01_092M,S2601A_C01_092MA"}, "S1401_C05_023E": {"label": "Estimate!!In private school!!Population 20 to 24 years", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C05_023EA,S1401_C05_023M,S1401_C05_023MA"}, "S2603_C01_060E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C01_060EA,S2603_C01_060M,S2603_C01_060MA"}, "S0802_C04_077E": {"label": "Estimate!!Public transportation!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!7:30 a.m. to 7:59 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_077EA,S0802_C04_077M,S0802_C04_077MA"}, "S0101_C05_018E": {"label": "Estimate!!Female!!Total population!!AGE!!80 to 84 years", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C05_018EA,S0101_C05_018M,S0101_C05_018MA"}, "S0501_C02_088E": {"label": "Estimate!!Native!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!Median earnings (dollars) for full-time, year-round workers!!Female", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C02_088EA,S0501_C02_088M,S0501_C02_088MA"}, "S0701_C03_028E": {"label": "Estimate!!Moved; from different county, same state!!MARITAL STATUS!!Population 15 years and over", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C03_028EA,S0701_C03_028M,S0701_C03_028MA"}, "S2601A_C01_093E": {"label": "Estimate!!Total population!!OCCUPATION!!Civilian employed population 16 years and over!!Service occupations", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_093EA,S2601A_C01_093M,S2601A_C01_093MA"}, "S1401_C05_024E": {"label": "Estimate!!In private school!!Population 20 to 24 years!!20 to 24 year olds enrolled in school", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C05_024EA,S1401_C05_024M,S1401_C05_024MA"}, "S0802_C04_078E": {"label": "Estimate!!Public transportation!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!8:00 a.m. to 8:29 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_078EA,S0802_C04_078M,S0802_C04_078MA"}, "S0505_C04_109E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!Median Household income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C04_109EA,S0505_C04_109M,S0505_C04_109MA"}, "S0701_C03_027E": {"label": "Estimate!!Moved; from different county, same state!!Population 1 year and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born!!Not a U.S. citizen", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C03_027EA,S0701_C03_027M,S0701_C03_027MA"}, "S0501_C02_085E": {"label": "Estimate!!Native!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$50,000 to $74,999", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_085EA,S0501_C02_085M,S0501_C02_085MA"}, "S2601A_C01_090E": {"label": "Estimate!!Total population!!EMPLOYMENT STATUS!!Population 16 years and over!!Not in labor force", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_090EA,S2601A_C01_090M,S2601A_C01_090MA"}, "S0802_C04_079E": {"label": "Estimate!!Public transportation!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!8:30 a.m. to 8:59 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_079EA,S0802_C04_079M,S0802_C04_079MA"}, "S1401_C05_021E": {"label": "Estimate!!In private school!!Population 18 to 19 years", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C05_021EA,S1401_C05_021M,S1401_C05_021MA"}, "S0501_C02_086E": {"label": "Estimate!!Native!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$75,000 or more", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_086EA,S0501_C02_086M,S0501_C02_086MA"}, "S0701_C03_026E": {"label": "Estimate!!Moved; from different county, same state!!Population 1 year and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born!!Naturalized U.S. citizen", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C03_026EA,S0701_C03_026M,S0701_C03_026MA"}, "S0505_C04_108E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Food Stamp/SNAP benefits", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_108EA,S0505_C04_108M,S0505_C04_108MA"}, "S2601A_C01_091E": {"label": "Estimate!!Total population!!OCCUPATION!!Civilian employed population 16 years and over", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_091EA,S2601A_C01_091M,S2601A_C01_091MA"}, "S1401_C05_022E": {"label": "Estimate!!In private school!!Population 18 to 19 years!!18 and 19 year olds enrolled in school", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C05_022EA,S1401_C05_022M,S1401_C05_022MA"}, "S0505_C04_107E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income!!Mean retirement income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C04_107EA,S0505_C04_107M,S0505_C04_107MA"}, "S2601A_C01_096E": {"label": "Estimate!!Total population!!OCCUPATION!!Civilian employed population 16 years and over!!Production, transportation, and material moving occupations", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_096EA,S2601A_C01_096M,S2601A_C01_096MA"}, "S1401_C05_027E": {"label": "Estimate!!In private school!!Population 35 years and over", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C05_027EA,S1401_C05_027M,S1401_C05_027MA"}, "S0101_C05_015E": {"label": "Estimate!!Female!!Total population!!AGE!!65 to 69 years", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C05_015EA,S0101_C05_015M,S0101_C05_015MA"}, "S2601A_C01_097E": {"label": "Estimate!!Total population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_097EA,S2601A_C01_097M,S2601A_C01_097MA"}, "S0505_C04_106E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_106EA,S0505_C04_106M,S0505_C04_106MA"}, "S1401_C05_028E": {"label": "Estimate!!In private school!!Population 35 years and over!!35 years and over enrolled in school", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C05_028EA,S1401_C05_028M,S1401_C05_028MA"}, "S0101_C05_014E": {"label": "Estimate!!Female!!Total population!!AGE!!60 to 64 years", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C05_014EA,S0101_C05_014M,S0101_C05_014MA"}, "S0801_C01_049E": {"label": "Estimate!!Total!!VEHICLES AVAILABLE!!Workers 16 years and over in households!!1 vehicle available", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C01_049EA,S0801_C01_049M,S0801_C01_049MA"}, "S0501_C02_089E": {"label": "Estimate!!Native!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C02_089EA,S0501_C02_089M,S0501_C02_089MA"}, "S2601A_C01_094E": {"label": "Estimate!!Total population!!OCCUPATION!!Civilian employed population 16 years and over!!Sales and office occupations", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_094EA,S2601A_C01_094M,S2601A_C01_094MA"}, "S0505_C04_105E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income!!Mean cash public assistance income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C04_105EA,S0505_C04_105M,S0505_C04_105MA"}, "S2601C_C01_068E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Male", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_068EA,S2601C_C01_068M,S2601C_C01_068MA"}, "S1401_C05_025E": {"label": "Estimate!!In private school!!Population 25 to 34 years", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C05_025EA,S1401_C05_025M,S1401_C05_025MA"}, "S0101_C05_017E": {"label": "Estimate!!Female!!Total population!!AGE!!75 to 79 years", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C05_017EA,S0101_C05_017M,S0101_C05_017MA"}, "S0505_C04_104E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_104EA,S0505_C04_104M,S0505_C04_104MA"}, "S2601A_C01_095E": {"label": "Estimate!!Total population!!OCCUPATION!!Civilian employed population 16 years and over!!Natural resources, construction, extraction, and maintenance occupations", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_095EA,S2601A_C01_095M,S2601A_C01_095MA"}, "S2601C_C01_069E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Female", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_069EA,S2601C_C01_069M,S2601C_C01_069MA"}, "S1401_C05_026E": {"label": "Estimate!!In private school!!Population 25 to 34 years!!25 to 34 year olds enrolled in school", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C05_026EA,S1401_C05_026M,S1401_C05_026MA"}, "S0101_C05_016E": {"label": "Estimate!!Female!!Total population!!AGE!!70 to 74 years", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C05_016EA,S0101_C05_016M,S0101_C05_016MA"}, "S0505_C04_103E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income!!Mean Supplemental Security Income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C04_103EA,S0505_C04_103M,S0505_C04_103MA"}, "S2503_C03_043E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$75,000 or more!!20 to 29 percent", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C03_043EA,S2503_C03_043M,S2503_C03_043MA"}, "S2603_C01_068E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Naturalized U.S. citizen!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C01_068EA,S2603_C01_068M,S2603_C01_068MA"}, "S0101_C05_011E": {"label": "Estimate!!Female!!Total population!!AGE!!45 to 49 years", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C05_011EA,S0101_C05_011M,S0101_C05_011MA"}, "S0501_C02_080E": {"label": "Estimate!!Native!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$1 to $9,999 or loss", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_080EA,S0501_C02_080M,S0501_C02_080MA"}, "S0505_C04_102E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_102EA,S0505_C04_102M,S0505_C04_102MA"}, "S2503_C03_042E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$75,000 or more!!Less than 20 percent", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C03_042EA,S2503_C03_042M,S2503_C03_042MA"}, "S0101_C05_010E": {"label": "Estimate!!Female!!Total population!!AGE!!40 to 44 years", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C05_010EA,S0101_C05_010M,S0101_C05_010MA"}, "S2603_C01_067E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Naturalized U.S. citizen", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C01_067EA,S2603_C01_067M,S2603_C01_067MA"}, "S2601A_C01_098E": {"label": "Estimate!!Total population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!Per capita income (dollars)", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_098EA,S2601A_C01_098M,S2601A_C01_098MA"}, "S0505_C04_101E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income!!Mean Social Security income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C04_101EA,S0505_C04_101M,S0505_C04_101MA"}, "S2503_C03_045E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Zero or negative income", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C03_045EA,S2503_C03_045M,S2503_C03_045MA"}, "S2603_C01_066E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C01_066EA,S2603_C01_066M,S2603_C01_066MA"}, "S0101_C05_013E": {"label": "Estimate!!Female!!Total population!!AGE!!55 to 59 years", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C05_013EA,S0101_C05_013M,S0101_C05_013MA"}, "S2601A_C01_099E": {"label": "Estimate!!Total population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!With earnings:!!Male", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_099EA,S2601A_C01_099M,S2601A_C01_099MA"}, "S0505_C04_100E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_100EA,S0505_C04_100M,S0505_C04_100MA"}, "S2503_C03_044E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$75,000 or more!!30 percent or more", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C03_044EA,S2503_C03_044M,S2503_C03_044MA"}, "S0101_C05_012E": {"label": "Estimate!!Female!!Total population!!AGE!!50 to 54 years", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C05_012EA,S0101_C05_012M,S0101_C05_012MA"}, "S2603_C01_065E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C01_065EA,S2603_C01_065M,S2603_C01_065MA"}, "S2702_C01_041E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Civilian noninstitutionalized population 25 years and over", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "int", "group": "S2702", "limit": 0, "attributes": "S2702_C01_041EA,S2702_C01_041M,S2702_C01_041MA"}, "S0501_C02_083E": {"label": "Estimate!!Native!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$25,000 to $34,999", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_083EA,S0501_C02_083M,S0501_C02_083MA"}, "S2601CPR_C01_100E": {"label": "Estimate!!Total population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!With earnings for full-time, year-round workers:!!Female", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "int", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_100EA,S2601CPR_C01_100M,S2601CPR_C01_100MA"}, "S2403_C05_021E": {"label": "Estimate!!Percent Female!!Civilian employed population 16 years and over!!Educational services, and health care and social assistance:!!Educational services", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2403", "limit": 0, "attributes": "S2403_C05_021EA,S2403_C05_021M,S2403_C05_021MA"}, "S2603_C01_064E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C01_064EA,S2603_C01_064M,S2603_C01_064MA"}, "S2702_C01_042E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Civilian noninstitutionalized population 25 years and over!!Less than high school graduate", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_042EA,S2702_C01_042M,S2702_C01_042MA"}, "S2403_C05_022E": {"label": "Estimate!!Percent Female!!Civilian employed population 16 years and over!!Educational services, and health care and social assistance:!!Health care and social assistance", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2403", "limit": 0, "attributes": "S2403_C05_022EA,S2403_C05_022M,S2403_C05_022MA"}, "S0501_C02_084E": {"label": "Estimate!!Native!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$35,000 to $49,999", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_084EA,S0501_C02_084M,S0501_C02_084MA"}, "S2603_C01_063E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Native!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C01_063EA,S2603_C01_063M,S2603_C01_063MA"}, "S1401_C05_020E": {"label": "Estimate!!In private school!!Population 15 to 17!!15 to 17 year olds enrolled in school", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C05_020EA,S1401_C05_020M,S1401_C05_020MA"}, "S0501_C02_081E": {"label": "Estimate!!Native!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$10,000 to $14,999", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_081EA,S0501_C02_081M,S0501_C02_081MA"}, "S2603_C01_062E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Native!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C01_062EA,S2603_C01_062M,S2603_C01_062MA"}, "S2503_C03_041E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$75,000 or more", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C03_041EA,S2503_C03_041M,S2503_C03_041MA"}, "S2702_C01_040E": {"label": "Estimate!!Total!!RESIDENCE 1 YEAR AGO!!Civilian noninstitutionalized population 1 year and over!!Abroad", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_040EA,S2702_C01_040M,S2702_C01_040MA"}, "S0501_C02_082E": {"label": "Estimate!!Native!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$15,000 to $24,999", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_082EA,S0501_C02_082M,S0501_C02_082MA"}, "S2403_C05_020E": {"label": "Estimate!!Percent Female!!Civilian employed population 16 years and over!!Educational services, and health care and social assistance:", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2403", "limit": 0, "attributes": "S2403_C05_020EA,S2403_C05_020M,S2403_C05_020MA"}, "S2603_C01_061E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Native", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C01_061EA,S2603_C01_061M,S2603_C01_061MA"}, "S2503_C03_040E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$50,000 to $74,999!!30 percent or more", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C03_040EA,S2503_C03_040M,S2503_C03_040MA"}, "S2412_C03_008E": {"label": "Estimate!!Median earnings (dollars) for female!!Full-time, year-round civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Computer, engineering, and science occupations:!!Architecture and engineering occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C03_008EA,S2412_C03_008M,S2412_C03_008MA"}, "S0506_C05_048E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate (includes equivalency)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_048EA,S0506_C05_048M,S0506_C05_048MA"}, "S0505_C04_143E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Renter-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C04_143EA,S0505_C04_143M,S0505_C04_143MA"}, "S2503_C03_015E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS!!$300 to $499", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C03_015EA,S2503_C03_015M,S2503_C03_015MA"}, "S0501_C02_019E": {"label": "Estimate!!Native!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_019EA,S0501_C02_019M,S0501_C02_019MA"}, "S0502PR_C03_125E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_125EA,S0502PR_C03_125M,S0502PR_C03_125MA"}, "S2412_C03_009E": {"label": "Estimate!!Median earnings (dollars) for female!!Full-time, year-round civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Computer, engineering, and science occupations:!!Life, physical, and social science occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C03_009EA,S2412_C03_009M,S2412_C03_009MA"}, "S0506_C05_047E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than high school graduate", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_047EA,S0506_C05_047M,S0506_C05_047MA"}, "S2503_C03_014E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS!!Less than $300", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C03_014EA,S2503_C03_014M,S2503_C03_014MA"}, "S0505_C04_142E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_142EA,S0505_C04_142M,S0505_C04_142MA"}, "S0502PR_C03_124E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_124EA,S0502PR_C03_124M,S0502PR_C03_124MA"}, "S0506_C05_046E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C05_046EA,S0506_C05_046M,S0506_C05_046MA"}, "S2414_C03_020E": {"label": "Estimate!!Median earnings (dollars) for female!!Full-time, year-round civilian employed population 16 years and over with earnings!!Educational services, and health care and social assistance:", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C03_020EA,S2414_C03_020M,S2414_C03_020MA"}, "S2503_C03_017E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS!!$800 to $999", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C03_017EA,S2503_C03_017M,S2503_C03_017MA"}, "S0505_C04_141E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_141EA,S0505_C04_141M,S0505_C04_141MA"}, "S2602_C03_010E": {"label": "Estimate!!Adult correctional facilities!!Total population!!SEX AND AGE!!55 to 64 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C03_010EA,S2602_C03_010M,S2602_C03_010MA"}, "S0501_C02_017E": {"label": "Estimate!!Native!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_017EA,S0501_C02_017M,S0501_C02_017MA"}, "S0502PR_C03_123E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_123EA,S0502PR_C03_123M,S0502PR_C03_123MA"}, "S0502PR_C03_122E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_122EA,S0502PR_C03_122M,S0502PR_C03_122MA"}, "S2414_C03_021E": {"label": "Estimate!!Median earnings (dollars) for female!!Full-time, year-round civilian employed population 16 years and over with earnings!!Educational services, and health care and social assistance:!!Educational services", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C03_021EA,S2414_C03_021M,S2414_C03_021MA"}, "S0506_C05_045E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!College or graduate school", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_045EA,S0506_C05_045M,S0506_C05_045MA"}, "S2503_C03_016E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS!!$500 to $799", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C03_016EA,S2503_C03_016M,S2503_C03_016MA"}, "S0505_C04_140E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Owner-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C04_140EA,S0505_C04_140M,S0505_C04_140MA"}, "S2602_C03_011E": {"label": "Estimate!!Adult correctional facilities!!Total population!!SEX AND AGE!!65 to 74 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C03_011EA,S2602_C03_011M,S2602_C03_011MA"}, "S0501_C02_018E": {"label": "Estimate!!Native!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_018EA,S0501_C02_018M,S0501_C02_018MA"}, "S2414_C03_022E": {"label": "Estimate!!Median earnings (dollars) for female!!Full-time, year-round civilian employed population 16 years and over with earnings!!Educational services, and health care and social assistance:!!Health care and social assistance", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C03_022EA,S2414_C03_022M,S2414_C03_022MA"}, "S0506_C05_044E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!High school (grades 9-12)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_044EA,S0506_C05_044M,S0506_C05_044MA"}, "S2503_C03_011E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$100,000 to $149,999", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C03_011EA,S2503_C03_011M,S2503_C03_011MA"}, "S2412_C03_004E": {"label": "Estimate!!Median earnings (dollars) for female!!Full-time, year-round civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Management, business, and financial occupations:!!Management occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C03_004EA,S2412_C03_004M,S2412_C03_004MA"}, "S2602_C03_012E": {"label": "Estimate!!Adult correctional facilities!!Total population!!SEX AND AGE!!75 to 84 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C03_012EA,S2602_C03_012M,S2602_C03_012MA"}, "S0502PR_C03_129E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Occupied housing units!!HOUSING TENURE!!Average household size of renter-occupied unit", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_129EA,S0502PR_C03_129M,S0502PR_C03_129MA"}, "S0701_C03_053E": {"label": "Estimate!!Moved; from different county, same state!!HOUSING TENURE!!Population 1 year and over in housing units", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C03_053EA,S0701_C03_053M,S0701_C03_053MA"}, "S0802_C04_090E": {"label": "Estimate!!Public transportation!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!Mean travel time to work (minutes)", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_090EA,S0802_C04_090M,S0802_C04_090MA"}, "S2414_C03_023E": {"label": "Estimate!!Median earnings (dollars) for female!!Full-time, year-round civilian employed population 16 years and over with earnings!!Arts, entertainment, and recreation, and accommodation and food services:", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C03_023EA,S2414_C03_023M,S2414_C03_023MA"}, "S0506_C05_043E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Elementary school (grades K-8)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_043EA,S0506_C05_043M,S0506_C05_043MA"}, "S2503_C03_010E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$75,000 to $99,999", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C03_010EA,S2503_C03_010M,S2503_C03_010MA"}, "S2603_C01_059E": {"label": "Estimate!!Total population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Abroad", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C01_059EA,S2603_C01_059M,S2603_C01_059MA"}, "S2412_C03_005E": {"label": "Estimate!!Median earnings (dollars) for female!!Full-time, year-round civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Management, business, and financial occupations:!!Business and financial operations occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C03_005EA,S2412_C03_005M,S2412_C03_005MA"}, "S0502PR_C03_128E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Occupied housing units!!HOUSING TENURE!!Average household size of owner-occupied unit", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_128EA,S0502PR_C03_128M,S0502PR_C03_128MA"}, "S2602_C03_013E": {"label": "Estimate!!Adult correctional facilities!!Total population!!SEX AND AGE!!85 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C03_013EA,S2602_C03_013M,S2602_C03_013MA"}, "S0701_C03_052E": {"label": "Estimate!!Moved; from different county, same state!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population 1 year and over for whom poverty status is determined!!At or above 150 percent of the poverty level", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C03_052EA,S0701_C03_052M,S0701_C03_052MA"}, "S0802_C04_091E": {"label": "Estimate!!Public transportation!!Workers 16 years and over in households", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "int", "group": "S0802", "limit": 0, "attributes": "S0802_C04_091EA,S0802_C04_091M,S0802_C04_091MA"}, "S2414_C03_024E": {"label": "Estimate!!Median earnings (dollars) for female!!Full-time, year-round civilian employed population 16 years and over with earnings!!Arts, entertainment, and recreation, and accommodation and food services:!!Arts, entertainment, and recreation", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C03_024EA,S2414_C03_024M,S2414_C03_024MA"}, "S0506_C05_042E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Nursery school, preschool", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_042EA,S0506_C05_042M,S0506_C05_042MA"}, "S2503_C03_013E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Median household income (dollars)", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C03_013EA,S2503_C03_013M,S2503_C03_013MA"}, "S2602_C03_014E": {"label": "Estimate!!Adult correctional facilities!!Total population!!SEX AND AGE!!Under 18 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C03_014EA,S2602_C03_014M,S2602_C03_014MA"}, "S0502PR_C03_127E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Occupied housing units!!HOUSING TENURE!!Renter-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_127EA,S0502PR_C03_127M,S0502PR_C03_127MA"}, "S2412_C03_006E": {"label": "Estimate!!Median earnings (dollars) for female!!Full-time, year-round civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Computer, engineering, and science occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C03_006EA,S2412_C03_006M,S2412_C03_006MA"}, "S2603_C01_058E": {"label": "Estimate!!Total population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the United States!!Different county!!Different state", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C01_058EA,S2603_C01_058M,S2603_C01_058MA"}, "S0701_C03_051E": {"label": "Estimate!!Moved; from different county, same state!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population 1 year and over for whom poverty status is determined!!100 to 149 percent of the poverty level", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C03_051EA,S0701_C03_051M,S0701_C03_051MA"}, "S0802_C04_092E": {"label": "Estimate!!Public transportation!!Workers 16 years and over in households!!HOUSING TENURE!!Owner-occupied housing units", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_092EA,S0802_C04_092M,S0802_C04_092MA"}, "S2414_C03_025E": {"label": "Estimate!!Median earnings (dollars) for female!!Full-time, year-round civilian employed population 16 years and over with earnings!!Arts, entertainment, and recreation, and accommodation and food services:!!Accommodation and food services", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C03_025EA,S2414_C03_025M,S2414_C03_025MA"}, "S0506_C05_041E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C05_041EA,S0506_C05_041M,S0506_C05_041MA"}, "S2503_C03_012E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$150,000 or more", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C03_012EA,S2503_C03_012M,S2503_C03_012MA"}, "S2602_C03_015E": {"label": "Estimate!!Adult correctional facilities!!Total population!!SEX AND AGE!!Under 18 years!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C03_015EA,S2602_C03_015M,S2602_C03_015MA"}, "S2603_C01_057E": {"label": "Estimate!!Total population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the United States!!Different county!!Same state", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C01_057EA,S2603_C01_057M,S2603_C01_057MA"}, "S2412_C03_007E": {"label": "Estimate!!Median earnings (dollars) for female!!Full-time, year-round civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Computer, engineering, and science occupations:!!Computer and mathematical occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C03_007EA,S2412_C03_007M,S2412_C03_007MA"}, "S0701_C03_050E": {"label": "Estimate!!Moved; from different county, same state!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population 1 year and over for whom poverty status is determined!!Below 100 percent of the poverty level", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C03_050EA,S0701_C03_050M,S0701_C03_050MA"}, "S0502PR_C03_126E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Occupied housing units!!HOUSING TENURE!!Owner-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_126EA,S0502PR_C03_126M,S0502PR_C03_126MA"}, "S2602_C03_016E": {"label": "Estimate!!Adult correctional facilities!!Total population!!SEX AND AGE!!Under 18 years!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C03_016EA,S2602_C03_016M,S2602_C03_016MA"}, "S0501_C02_011E": {"label": "Estimate!!Native!!Total population!!SEX AND AGE!!75 to 84 years", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_011EA,S0501_C02_011M,S0501_C02_011MA"}, "S2414_C03_026E": {"label": "Estimate!!Median earnings (dollars) for female!!Full-time, year-round civilian employed population 16 years and over with earnings!!Other services, except public administration", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C03_026EA,S2414_C03_026M,S2414_C03_026MA"}, "S0802_C04_093E": {"label": "Estimate!!Public transportation!!Workers 16 years and over in households!!HOUSING TENURE!!Renter-occupied housing units", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_093EA,S0802_C04_093M,S0802_C04_093MA"}, "S1401_C05_019E": {"label": "Estimate!!In private school!!Population 15 to 17", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C05_019EA,S1401_C05_019M,S1401_C05_019MA"}, "S0506_C05_040E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_040EA,S0506_C05_040M,S0506_C05_040MA"}, "S2601A_C03_107E": {"label": "Estimate!!Institutionalized group quarters population!!POVERTY RATES FOR PEOPLE FOR WHOM POVERTY STATUS IS DETERMINED!!All people!!18 years and over", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_107EA,S2601A_C03_107M,S2601A_C03_107MA"}, "S2603_C06_007E": {"label": "Estimate!!College/university housing!!Total population!!SEX AND AGE!!25 to 34 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C06_007EA,S2603_C06_007M,S2603_C06_007MA"}, "S2504_C06_010E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!YEAR STRUCTURE BUILT!!2010 to 2019", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C06_010EA,S2504_C06_010M,S2504_C06_010MA"}, "S2602_C03_017E": {"label": "Estimate!!Adult correctional facilities!!Total population!!SEX AND AGE!!65 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C03_017EA,S2602_C03_017M,S2602_C03_017MA"}, "S0501_C02_012E": {"label": "Estimate!!Native!!Total population!!SEX AND AGE!!85 years and over", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_012EA,S0501_C02_012M,S0501_C02_012MA"}, "S2414_C03_027E": {"label": "Estimate!!Median earnings (dollars) for female!!Full-time, year-round civilian employed population 16 years and over with earnings!!Public administration", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C03_027EA,S2414_C03_027M,S2414_C03_027MA"}, "S0802_C04_094E": {"label": "Estimate!!Public transportation!!Workers 16 years and over in households!!VEHICLES AVAILABLE!!No vehicle available", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_094EA,S0802_C04_094M,S0802_C04_094MA"}, "S2601A_C03_106E": {"label": "Estimate!!Institutionalized group quarters population!!POVERTY RATES FOR PEOPLE FOR WHOM POVERTY STATUS IS DETERMINED!!All people", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_106EA,S2601A_C03_106M,S2601A_C03_106MA"}, "S2504_C06_011E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!YEAR STRUCTURE BUILT!!2000 to 2009", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C06_011EA,S2504_C06_011M,S2504_C06_011MA"}, "S0701_C03_056E": {"label": "Estimate!!Moved; from different county, same state!!PERCENT ALLOCATED!!Residence 1 year ago", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "int", "group": "S0701", "limit": 0, "attributes": "S0701_C03_056EA,S0701_C03_056M,S0701_C03_056MA"}, "S2603_C06_006E": {"label": "Estimate!!College/university housing!!Total population!!SEX AND AGE!!18 to 24 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C06_006EA,S2603_C06_006M,S2603_C06_006MA"}, "S2412_C03_001E": {"label": "Estimate!!Median earnings (dollars) for female!!Full-time, year-round civilian employed population 16 years and over with earnings", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C03_001EA,S2412_C03_001M,S2412_C03_001MA"}, "S2602_C03_018E": {"label": "Estimate!!Adult correctional facilities!!Total population!!SEX AND AGE!!65 years and over!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C03_018EA,S2602_C03_018M,S2602_C03_018MA"}, "S2504_C06_012E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!YEAR STRUCTURE BUILT!!1980 to 1999", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C06_012EA,S2504_C06_012M,S2504_C06_012MA"}, "S0802_C04_095E": {"label": "Estimate!!Public transportation!!Workers 16 years and over in households!!VEHICLES AVAILABLE!!1 vehicle available", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_095EA,S0802_C04_095M,S0802_C04_095MA"}, "S1401_C05_017E": {"label": "Estimate!!In private school!!Population 10 to 14 years", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C05_017EA,S1401_C05_017M,S1401_C05_017MA"}, "S2601A_C03_109E": {"label": "Estimate!!Institutionalized group quarters population!!POVERTY RATES FOR PEOPLE FOR WHOM POVERTY STATUS IS DETERMINED!!All people!!65 years and over", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_109EA,S2601A_C03_109M,S2601A_C03_109MA"}, "S0701_C03_055E": {"label": "Estimate!!Moved; from different county, same state!!HOUSING TENURE!!Population 1 year and over in housing units!!Householder lived in renter-occupied housing units", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C03_055EA,S0701_C03_055M,S0701_C03_055MA"}, "S2603_C06_005E": {"label": "Estimate!!College/university housing!!Total population!!SEX AND AGE!!15 to 17 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C06_005EA,S2603_C06_005M,S2603_C06_005MA"}, "S2412_C03_002E": {"label": "Estimate!!Median earnings (dollars) for female!!Full-time, year-round civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C03_002EA,S2412_C03_002M,S2412_C03_002MA"}, "S2602_C03_019E": {"label": "Estimate!!Adult correctional facilities!!Total population!!SEX AND AGE!!65 years and over!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C03_019EA,S2602_C03_019M,S2602_C03_019MA"}, "S0501_C02_010E": {"label": "Estimate!!Native!!Total population!!SEX AND AGE!!65 to 74 years", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_010EA,S0501_C02_010M,S0501_C02_010MA"}, "S2504_C06_013E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!YEAR STRUCTURE BUILT!!1960 to 1979", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C06_013EA,S2504_C06_013M,S2504_C06_013MA"}, "S0802_C04_096E": {"label": "Estimate!!Public transportation!!Workers 16 years and over in households!!VEHICLES AVAILABLE!!2 vehicles available", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_096EA,S0802_C04_096M,S0802_C04_096MA"}, "S1401_C05_018E": {"label": "Estimate!!In private school!!Population 10 to 14 years!!10 to 14 year olds enrolled in school", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C05_018EA,S1401_C05_018M,S1401_C05_018MA"}, "S2601A_C03_108E": {"label": "Estimate!!Institutionalized group quarters population!!POVERTY RATES FOR PEOPLE FOR WHOM POVERTY STATUS IS DETERMINED!!All people!!18 to 64 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_108EA,S2601A_C03_108M,S2601A_C03_108MA"}, "S0701_C03_054E": {"label": "Estimate!!Moved; from different county, same state!!HOUSING TENURE!!Population 1 year and over in housing units!!Householder lived in owner-occupied housing units", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C03_054EA,S0701_C03_054M,S0701_C03_054MA"}, "S2603_C06_004E": {"label": "Estimate!!College/university housing!!Total population!!SEX AND AGE!!Under 15 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C06_004EA,S2603_C06_004M,S2603_C06_004MA"}, "S2412_C03_003E": {"label": "Estimate!!Median earnings (dollars) for female!!Full-time, year-round civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Management, business, and financial occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C03_003EA,S2412_C03_003M,S2412_C03_003MA"}, "S0502PR_C03_121E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_121EA,S0502PR_C03_121M,S0502PR_C03_121MA"}, "S0501_C02_015E": {"label": "Estimate!!Native!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_015EA,S0501_C02_015M,S0501_C02_015MA"}, "S2504_C06_014E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!YEAR STRUCTURE BUILT!!1940 to 1959", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C06_014EA,S2504_C06_014M,S2504_C06_014MA"}, "S0802_C04_097E": {"label": "Estimate!!Public transportation!!Workers 16 years and over in households!!VEHICLES AVAILABLE!!3 or more vehicles available", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_097EA,S0802_C04_097M,S0802_C04_097MA"}, "S2601A_C03_102E": {"label": "Estimate!!Institutionalized group quarters population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!Mean earnings (dollars):!!Female", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_102EA,S2601A_C03_102M,S2601A_C03_102MA"}, "S2503_C03_019E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS!!$1,500 to $1,999", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C03_019EA,S2503_C03_019M,S2503_C03_019MA"}, "S0502PR_C03_120E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_120EA,S0502PR_C03_120M,S0502PR_C03_120MA"}, "S0501_C02_016E": {"label": "Estimate!!Native!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_016EA,S0501_C02_016M,S0501_C02_016MA"}, "S2504_C06_015E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!YEAR STRUCTURE BUILT!!1939 or earlier", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C06_015EA,S2504_C06_015M,S2504_C06_015MA"}, "S2601A_C03_101E": {"label": "Estimate!!Institutionalized group quarters population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!Mean earnings (dollars):!!Male", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_101EA,S2601A_C03_101M,S2601A_C03_101MA"}, "S0802_C04_098E": {"label": "Estimate!!Public transportation!!PERCENT ALLOCATED!!Means of transportation to work", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "int", "group": "S0802", "limit": 0, "attributes": "S0802_C04_098EA,S0802_C04_098M,S0802_C04_098MA"}, "S2503_C03_018E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS!!$1,000 to $1,499", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C03_018EA,S2503_C03_018M,S2503_C03_018MA"}, "S0501_C02_013E": {"label": "Estimate!!Native!!Total population!!SEX AND AGE!!Median age (years)", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_013EA,S0501_C02_013M,S0501_C02_013MA"}, "S2504_C06_016E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!ROOMS!!1 room", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C06_016EA,S2504_C06_016M,S2504_C06_016MA"}, "S0802_C04_099E": {"label": "Estimate!!Public transportation!!PERCENT ALLOCATED!!Time of departure to go to work", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "int", "group": "S0802", "limit": 0, "attributes": "S0802_C04_099EA,S0802_C04_099M,S0802_C04_099MA"}, "S2601A_C03_105E": {"label": "Estimate!!Institutionalized group quarters population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!With Food Stamp/SNAP benefits", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_105EA,S2601A_C03_105M,S2601A_C03_105MA"}, "S2603_C06_009E": {"label": "Estimate!!College/university housing!!Total population!!SEX AND AGE!!45 to 54 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C06_009EA,S2603_C06_009M,S2603_C06_009MA"}, "S0501_C02_014E": {"label": "Estimate!!Native!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_014EA,S0501_C02_014M,S0501_C02_014MA"}, "S2504_C06_017E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!ROOMS!!2 or 3 rooms", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C06_017EA,S2504_C06_017M,S2504_C06_017MA"}, "S2601A_C03_103E": {"label": "Estimate!!Institutionalized group quarters population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!Median earnings (dollars):!!Male", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_103EA,S2601A_C03_103M,S2601A_C03_103MA"}, "S2601A_C03_104E": {"label": "Estimate!!Institutionalized group quarters population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!Median earnings (dollars):!!Female", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_104EA,S2601A_C03_104M,S2601A_C03_104MA"}, "S2603_C06_008E": {"label": "Estimate!!College/university housing!!Total population!!SEX AND AGE!!35 to 44 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C06_008EA,S2603_C06_008M,S2603_C06_008MA"}, "S2001_C02_020E": {"label": "Estimate!!Percent!!MEDIAN EARNINGS BY EDUCATIONAL ATTAINMENT!!Population 25 years and over with earnings!!Graduate or professional degree", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C02_020EA,S2001_C02_020M,S2001_C02_020MA"}, "S2504_C06_018E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!ROOMS!!4 or 5 rooms", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C06_018EA,S2504_C06_018M,S2504_C06_018MA"}, "S0804_C03_003E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!AGE!!20 to 24 years", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_003EA,S0804_C03_003M,S0804_C03_003MA"}, "S0802_C04_089E": {"label": "Estimate!!Public transportation!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!60 or more minutes", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_089EA,S0802_C04_089M,S0802_C04_089MA"}, "S1401_C05_011E": {"label": "Estimate!!In private school!!Population enrolled in college or graduate school!!Males enrolled in college or graduate school", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C05_011EA,S1401_C05_011M,S1401_C05_011MA"}, "S2504_C06_019E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!ROOMS!!6 or 7 rooms", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C06_019EA,S2504_C06_019M,S2504_C06_019MA"}, "S1401_C05_012E": {"label": "Estimate!!In private school!!Population enrolled in college or graduate school!!Females enrolled in college or graduate school", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C05_012EA,S1401_C05_012M,S1401_C05_012MA"}, "S0804_C03_002E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!AGE!!16 to 19 years", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_002EA,S0804_C03_002M,S0804_C03_002MA"}, "S2601A_C03_100E": {"label": "Estimate!!Institutionalized group quarters population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!With earnings:!!Female", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C03_100EA,S2601A_C03_100M,S2601A_C03_100MA"}, "S0804_C03_001E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "int", "group": "S0804", "limit": 0, "attributes": "S0804_C03_001EA,S0804_C03_001M,S0804_C03_001MA"}, "S1401_C05_010E": {"label": "Estimate!!In private school!!Population enrolled in college or graduate school", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C05_010EA,S1401_C05_010M,S1401_C05_010MA"}, "S0504_C01_143E": {"label": "Estimate!!Total!!Renter-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C01_143EA,S0504_C01_143M,S0504_C01_143MA"}, "S1401_C05_015E": {"label": "Estimate!!In private school!!Population 5 to 9 years", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C05_015EA,S1401_C05_015M,S1401_C05_015MA"}, "S2603_C06_003E": {"label": "Estimate!!College/university housing!!Total population!!SEX AND AGE!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C06_003EA,S2603_C06_003M,S2603_C06_003MA"}, "S1401_C05_016E": {"label": "Estimate!!In private school!!Population 5 to 9 years!!5 to 9 year olds enrolled in school", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C05_016EA,S1401_C05_016M,S1401_C05_016MA"}, "S0504_C01_142E": {"label": "Estimate!!Total!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_142EA,S0504_C01_142M,S0504_C01_142MA"}, "S2603_C06_002E": {"label": "Estimate!!College/university housing!!Total population!!SEX AND AGE!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C06_002EA,S2603_C06_002M,S2603_C06_002MA"}, "S0504_C01_141E": {"label": "Estimate!!Total!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_141EA,S0504_C01_141M,S0504_C01_141MA"}, "S1401_C05_013E": {"label": "Estimate!!In private school!!Population 3 to 4 years", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C05_013EA,S1401_C05_013M,S1401_C05_013MA"}, "S2603_C06_001E": {"label": "Estimate!!College/university housing!!Total population", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C06_001EA,S2603_C06_001M,S2603_C06_001MA"}, "S0504_C01_140E": {"label": "Estimate!!Total!!Owner-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C01_140EA,S0504_C01_140M,S0504_C01_140MA"}, "S1401_C05_014E": {"label": "Estimate!!In private school!!Population 3 to 4 years!!3 to 4 year olds enrolled in school", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C05_014EA,S1401_C05_014M,S1401_C05_014MA"}, "S0505_C04_139E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Occupied housing units!!SELECTED CHARACTERISTICS!!Limited English Speaking Households", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_139EA,S0505_C04_139M,S0505_C04_139MA"}, "S2603_C01_056E": {"label": "Estimate!!Total population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the United States!!Different county", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C01_056EA,S2603_C01_056M,S2603_C01_056MA"}, "S0505_C04_138E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Occupied housing units!!SELECTED CHARACTERISTICS!!No telephone service available", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_138EA,S0505_C04_138M,S0505_C04_138MA"}, "S2603_C01_055E": {"label": "Estimate!!Total population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the United States!!Same county", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C01_055EA,S2603_C01_055M,S2603_C01_055MA"}, "S0505_C04_137E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Occupied housing units!!VEHICLES AVAILABLE!!1 or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_137EA,S0505_C04_137M,S0505_C04_137MA"}, "S0504_C01_145E": {"label": "Estimate!!Total!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_145EA,S0504_C01_145M,S0504_C01_145MA"}, "S0502PR_C03_119E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_119EA,S0502PR_C03_119M,S0502PR_C03_119MA"}, "S0804_C03_009E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!SEX!!Male", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_009EA,S0804_C03_009M,S0804_C03_009MA"}, "S2603_C01_054E": {"label": "Estimate!!Total population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the United States", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C01_054EA,S2603_C01_054M,S2603_C01_054MA"}, "S0505_C04_136E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Occupied housing units!!VEHICLES AVAILABLE!!None", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_136EA,S0505_C04_136M,S0505_C04_136MA"}, "S0504_C01_144E": {"label": "Estimate!!Total!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_144EA,S0504_C01_144M,S0504_C01_144MA"}, "S0502PR_C03_118E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_118EA,S0502PR_C03_118M,S0502PR_C03_118MA"}, "S2603_C01_053E": {"label": "Estimate!!Total population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Same address", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C01_053EA,S2603_C01_053M,S2603_C01_053MA"}, "S0804_C03_008E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!AGE!!Median age (years)", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_008EA,S0804_C03_008M,S0804_C03_008MA"}, "S0505_C04_135E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Occupied housing units!!1.01 or more occupants per room", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_135EA,S0505_C04_135M,S0505_C04_135MA"}, "S2603_C01_052E": {"label": "Estimate!!Total population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C01_052EA,S2603_C01_052M,S2603_C01_052MA"}, "S0804_C03_007E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!AGE!!60 years and over", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_007EA,S0804_C03_007M,S0804_C03_007MA"}, "S0505_C04_134E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Occupied housing units!!Median number of rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_134EA,S0505_C04_134M,S0505_C04_134MA"}, "S2603_C01_051E": {"label": "Estimate!!Total population!!DISABILITY STATUS!!Population 65 years and over!!With a disability", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C01_051EA,S2603_C01_051M,S2603_C01_051MA"}, "S0804_C03_006E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!AGE!!55 to 59 years", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_006EA,S0804_C03_006M,S0804_C03_006MA"}, "S0505_C04_133E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Occupied housing units!!ROOMS!!8 or more rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_133EA,S0505_C04_133M,S0505_C04_133MA"}, "S0804_C03_005E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!AGE!!45 to 54 years", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_005EA,S0804_C03_005M,S0804_C03_005MA"}, "S2603_C01_050E": {"label": "Estimate!!Total population!!DISABILITY STATUS!!Population 65 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C01_050EA,S2603_C01_050M,S2603_C01_050MA"}, "S0506_C05_049E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college or associate's degree", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_049EA,S0506_C05_049M,S0506_C05_049MA"}, "S0505_C04_132E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Occupied housing units!!ROOMS!!6 or 7 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_132EA,S0505_C04_132M,S0505_C04_132MA"}, "S0804_C03_004E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!AGE!!25 to 44 years", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_004EA,S0804_C03_004M,S0804_C03_004MA"}, "S0506_C05_036E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!MARITAL STATUS!!Population 15 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C05_036EA,S0506_C05_036M,S0506_C05_036MA"}, "S2503_C03_027E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than $20,000!!20 to 29 percent", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C03_027EA,S2503_C03_027M,S2503_C03_027MA"}, "S0505_C04_131E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Occupied housing units!!ROOMS!!4 or 5 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_131EA,S0505_C04_131M,S0505_C04_131MA"}, "S0502PR_C03_137E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Occupied housing units!!VEHICLES AVAILABLE!!None", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_137EA,S0502PR_C03_137M,S0502PR_C03_137MA"}, "S0506_C05_035E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Foreign-born population!!Average family size", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_035EA,S0506_C05_035M,S0506_C05_035MA"}, "S2503_C03_026E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than $20,000!!Less than 20 percent", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C03_026EA,S2503_C03_026M,S2503_C03_026MA"}, "S0505_C04_130E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Occupied housing units!!ROOMS!!2 or 3 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_130EA,S0505_C04_130M,S0505_C04_130MA"}, "S0502PR_C03_136E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Occupied housing units!!1.01 or more occupants per room", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_136EA,S0502PR_C03_136M,S0502PR_C03_136MA"}, "S2503_C03_029E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$20,000 to $34,999", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C03_029EA,S2503_C03_029M,S2503_C03_029MA"}, "S0506_C05_034E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Foreign-born population!!Average household size", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_034EA,S0506_C05_034M,S0506_C05_034MA"}, "S0502PR_C03_135E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Occupied housing units!!Median number of rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_135EA,S0502PR_C03_135M,S0502PR_C03_135MA"}, "S0501_C02_029E": {"label": "Estimate!!Native!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_029EA,S0501_C02_029M,S0501_C02_029MA"}, "S0506_C05_033E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Foreign-born population!!HOUSEHOLD TYPE!!In other households", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_033EA,S0506_C05_033M,S0506_C05_033MA"}, "S2503_C03_028E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than $20,000!!30 percent or more", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C03_028EA,S2503_C03_028M,S2503_C03_028MA"}, "S2603_C01_049E": {"label": "Estimate!!Total population!!DISABILITY STATUS!!Population 18 to 64 years!!No disability", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C01_049EA,S2603_C01_049M,S2603_C01_049MA"}, "S0502PR_C03_134E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Occupied housing units!!ROOMS!!8 or more rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_134EA,S0502PR_C03_134M,S0502PR_C03_134MA"}, "S2414_C03_010E": {"label": "Estimate!!Median earnings (dollars) for female!!Full-time, year-round civilian employed population 16 years and over with earnings!!Transportation and warehousing, and utilities:!!Transportation and warehousing", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C03_010EA,S2414_C03_010M,S2414_C03_010MA"}, "S0506_C05_032E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Foreign-born population!!HOUSEHOLD TYPE!!In married-couple family", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_032EA,S0506_C05_032M,S0506_C05_032MA"}, "S2503_C03_023E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS!!No cash rent", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C03_023EA,S2503_C03_023M,S2503_C03_023MA"}, "S2603_C01_048E": {"label": "Estimate!!Total population!!DISABILITY STATUS!!Population 18 to 64 years!!With a disability", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C01_048EA,S2603_C01_048M,S2603_C01_048MA"}, "S2412_C03_016E": {"label": "Estimate!!Median earnings (dollars) for female!!Full-time, year-round civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Healthcare practitioners and technical occupations:!!Health diagnosing and treating practitioners and other technical occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C03_016EA,S2412_C03_016M,S2412_C03_016MA"}, "S0701_C03_041E": {"label": "Estimate!!Moved; from different county, same state!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$10,000 to $14,999", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C03_041EA,S0701_C03_041M,S0701_C03_041MA"}, "S2414_C03_011E": {"label": "Estimate!!Median earnings (dollars) for female!!Full-time, year-round civilian employed population 16 years and over with earnings!!Transportation and warehousing, and utilities:!!Utilities", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C03_011EA,S2414_C03_011M,S2414_C03_011MA"}, "S0506_C05_031E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_031EA,S0506_C05_031M,S0506_C05_031MA"}, "S2503_C03_022E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS!!$3,000 or more", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C03_022EA,S2503_C03_022M,S2503_C03_022MA"}, "S2602_C03_001E": {"label": "Estimate!!Adult correctional facilities!!Total population", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C03_001EA,S2602_C03_001M,S2602_C03_001MA"}, "S2412_C03_017E": {"label": "Estimate!!Median earnings (dollars) for female!!Full-time, year-round civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Healthcare practitioners and technical occupations:!!Health technologists and technicians", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C03_017EA,S2412_C03_017M,S2412_C03_017MA"}, "S2603_C01_047E": {"label": "Estimate!!Total population!!DISABILITY STATUS!!Population 18 to 64 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C01_047EA,S2603_C01_047M,S2603_C01_047MA"}, "S0701_C03_040E": {"label": "Estimate!!Moved; from different county, same state!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$1 to $9,999 or loss", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C03_040EA,S0701_C03_040M,S0701_C03_040MA"}, "S2414_C03_012E": {"label": "Estimate!!Median earnings (dollars) for female!!Full-time, year-round civilian employed population 16 years and over with earnings!!Information", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C03_012EA,S2414_C03_012M,S2414_C03_012MA"}, "S2503_C03_025E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than $20,000", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C03_025EA,S2503_C03_025M,S2503_C03_025MA"}, "S0506_C05_030E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_030EA,S0506_C05_030M,S0506_C05_030MA"}, "S0502PR_C03_139E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Occupied housing units!!SELECTED CHARACTERISTICS!!No telephone service available", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_139EA,S0502PR_C03_139M,S0502PR_C03_139MA"}, "S2603_C01_046E": {"label": "Estimate!!Total population!!DISABILITY STATUS!!Total population!!With a disability", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C01_046EA,S2603_C01_046M,S2603_C01_046MA"}, "S2602_C03_002E": {"label": "Estimate!!Adult correctional facilities!!Total population!!SEX AND AGE!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C03_002EA,S2602_C03_002M,S2602_C03_002MA"}, "S2412_C03_018E": {"label": "Estimate!!Median earnings (dollars) for female!!Full-time, year-round civilian employed population 16 years and over with earnings!!Service occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C03_018EA,S2412_C03_018M,S2412_C03_018MA"}, "S2412_C03_019E": {"label": "Estimate!!Median earnings (dollars) for female!!Full-time, year-round civilian employed population 16 years and over with earnings!!Service occupations:!!Healthcare support occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C03_019EA,S2412_C03_019M,S2412_C03_019MA"}, "S2414_C03_013E": {"label": "Estimate!!Median earnings (dollars) for female!!Full-time, year-round civilian employed population 16 years and over with earnings!!Finance and insurance, and real estate and rental and leasing:", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C03_013EA,S2414_C03_013M,S2414_C03_013MA"}, "S2503_C03_024E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS!!Median (dollars)", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C03_024EA,S2503_C03_024M,S2503_C03_024MA"}, "S2602_C03_003E": {"label": "Estimate!!Adult correctional facilities!!Total population!!SEX AND AGE!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C03_003EA,S2602_C03_003M,S2602_C03_003MA"}, "S0502PR_C03_138E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Occupied housing units!!VEHICLES AVAILABLE!!1 or more", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_138EA,S0502PR_C03_138M,S0502PR_C03_138MA"}, "S2603_C01_045E": {"label": "Estimate!!Total population!!DISABILITY STATUS!!Total population", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C01_045EA,S2603_C01_045M,S2603_C01_045MA"}, "S0501_C02_023E": {"label": "Estimate!!Native!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_023EA,S0501_C02_023M,S0501_C02_023MA"}, "S1401_C05_007E": {"label": "Estimate!!In private school!!Population 3 years and over enrolled in school!!Kindergarten to 12th grade!!High school: grade 9 to grade 12", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C05_007EA,S1401_C05_007M,S1401_C05_007MA"}, "S2414_C03_014E": {"label": "Estimate!!Median earnings (dollars) for female!!Full-time, year-round civilian employed population 16 years and over with earnings!!Finance and insurance, and real estate and rental and leasing:!!Finance and insurance", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C03_014EA,S2414_C03_014M,S2414_C03_014MA"}, "S2602_C03_004E": {"label": "Estimate!!Adult correctional facilities!!Total population!!SEX AND AGE!!Under 15 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C03_004EA,S2602_C03_004M,S2602_C03_004MA"}, "S0701_C03_045E": {"label": "Estimate!!Moved; from different county, same state!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$50,000 to $64,999", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C03_045EA,S0701_C03_045M,S0701_C03_045MA"}, "S2412_C03_012E": {"label": "Estimate!!Median earnings (dollars) for female!!Full-time, year-round civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:!!Legal occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C03_012EA,S2412_C03_012M,S2412_C03_012MA"}, "S0501_C02_024E": {"label": "Estimate!!Native!!Total population!!HOUSEHOLD TYPE!!In married-couple family", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_024EA,S0501_C02_024M,S0501_C02_024MA"}, "S2602_C03_005E": {"label": "Estimate!!Adult correctional facilities!!Total population!!SEX AND AGE!!15 to 17 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C03_005EA,S2602_C03_005M,S2602_C03_005MA"}, "S2414_C03_015E": {"label": "Estimate!!Median earnings (dollars) for female!!Full-time, year-round civilian employed population 16 years and over with earnings!!Finance and insurance, and real estate and rental and leasing:!!Real estate and rental and leasing", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C03_015EA,S2414_C03_015M,S2414_C03_015MA"}, "S1401_C05_008E": {"label": "Estimate!!In private school!!Population 3 years and over enrolled in school!!College, undergraduate", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C05_008EA,S1401_C05_008M,S1401_C05_008MA"}, "S0701_C03_044E": {"label": "Estimate!!Moved; from different county, same state!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$35,000 to $49,999", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C03_044EA,S0701_C03_044M,S0701_C03_044MA"}, "S2412_C03_013E": {"label": "Estimate!!Median earnings (dollars) for female!!Full-time, year-round civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:!!Educational instruction, and library occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C03_013EA,S2412_C03_013M,S2412_C03_013MA"}, "S0501_C02_021E": {"label": "Estimate!!Native!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_021EA,S0501_C02_021M,S0501_C02_021MA"}, "S2602_C03_006E": {"label": "Estimate!!Adult correctional facilities!!Total population!!SEX AND AGE!!18 to 24 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C03_006EA,S2602_C03_006M,S2602_C03_006MA"}, "S1401_C05_005E": {"label": "Estimate!!In private school!!Population 3 years and over enrolled in school!!Kindergarten to 12th grade!!Elementary: grade 1 to grade 4", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C05_005EA,S1401_C05_005M,S1401_C05_005MA"}, "S2414_C03_016E": {"label": "Estimate!!Median earnings (dollars) for female!!Full-time, year-round civilian employed population 16 years and over with earnings!!Professional, scientific, and management, and administrative and waste management services:", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C03_016EA,S2414_C03_016M,S2414_C03_016MA"}, "S0701_C03_043E": {"label": "Estimate!!Moved; from different county, same state!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$25,000 to $34,999", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C03_043EA,S0701_C03_043M,S0701_C03_043MA"}, "S2412_C03_014E": {"label": "Estimate!!Median earnings (dollars) for female!!Full-time, year-round civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:!!Arts, design, entertainment, sports, and media occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C03_014EA,S2412_C03_014M,S2412_C03_014MA"}, "S2602_C03_007E": {"label": "Estimate!!Adult correctional facilities!!Total population!!SEX AND AGE!!25 to 34 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C03_007EA,S2602_C03_007M,S2602_C03_007MA"}, "S2504_C06_001E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C06_001EA,S2504_C06_001M,S2504_C06_001MA"}, "S0501_C02_022E": {"label": "Estimate!!Native!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_022EA,S0501_C02_022M,S0501_C02_022MA"}, "S1401_C05_006E": {"label": "Estimate!!In private school!!Population 3 years and over enrolled in school!!Kindergarten to 12th grade!!Elementary: grade 5 to grade 8", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C05_006EA,S1401_C05_006M,S1401_C05_006MA"}, "S2414_C03_017E": {"label": "Estimate!!Median earnings (dollars) for female!!Full-time, year-round civilian employed population 16 years and over with earnings!!Professional, scientific, and management, and administrative and waste management services:!!Professional, scientific, and technical services", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C03_017EA,S2414_C03_017M,S2414_C03_017MA"}, "S2412_C03_015E": {"label": "Estimate!!Median earnings (dollars) for female!!Full-time, year-round civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Healthcare practitioners and technical occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C03_015EA,S2412_C03_015M,S2412_C03_015MA"}, "S0701_C03_042E": {"label": "Estimate!!Moved; from different county, same state!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$15,000 to $24,999", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C03_042EA,S0701_C03_042M,S0701_C03_042MA"}, "S0502PR_C03_133E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Occupied housing units!!ROOMS!!6 or 7 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_133EA,S0502PR_C03_133M,S0502PR_C03_133MA"}, "S0501_C02_027E": {"label": "Estimate!!Native!!Total population!!Average family size", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_027EA,S0501_C02_027M,S0501_C02_027MA"}, "S2602_C03_008E": {"label": "Estimate!!Adult correctional facilities!!Total population!!SEX AND AGE!!35 to 44 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C03_008EA,S2602_C03_008M,S2602_C03_008MA"}, "S0701_C03_049E": {"label": "Estimate!!Moved; from different county, same state!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population 1 year and over for whom poverty status is determined", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C03_049EA,S0701_C03_049M,S0701_C03_049MA"}, "S2504_C06_002E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!UNITS IN STRUCTURE!!1, detached", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C06_002EA,S2504_C06_002M,S2504_C06_002MA"}, "S2414_C03_018E": {"label": "Estimate!!Median earnings (dollars) for female!!Full-time, year-round civilian employed population 16 years and over with earnings!!Professional, scientific, and management, and administrative and waste management services:!!Management of companies and enterprises", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C03_018EA,S2414_C03_018M,S2414_C03_018MA"}, "S2602_C03_009E": {"label": "Estimate!!Adult correctional facilities!!Total population!!SEX AND AGE!!45 to 54 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C03_009EA,S2602_C03_009M,S2602_C03_009MA"}, "S0502PR_C03_132E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Occupied housing units!!ROOMS!!4 or 5 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_132EA,S0502PR_C03_132M,S0502PR_C03_132MA"}, "S2504_C06_003E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!UNITS IN STRUCTURE!!1, attached", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C06_003EA,S2504_C06_003M,S2504_C06_003MA"}, "S0701_C03_048E": {"label": "Estimate!!Moved; from different county, same state!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!Median income (dollars)", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "int", "group": "S0701", "limit": 0, "attributes": "S0701_C03_048EA,S0701_C03_048M,S0701_C03_048MA"}, "S2414_C03_019E": {"label": "Estimate!!Median earnings (dollars) for female!!Full-time, year-round civilian employed population 16 years and over with earnings!!Professional, scientific, and management, and administrative and waste management services:!!Administrative and support and waste management services", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C03_019EA,S2414_C03_019M,S2414_C03_019MA"}, "S0501_C02_028E": {"label": "Estimate!!Native!!MARITAL STATUS!!Population 15 years and over", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C02_028EA,S0501_C02_028M,S0501_C02_028MA"}, "S0501_C02_025E": {"label": "Estimate!!Native!!Total population!!HOUSEHOLD TYPE!!In other households", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_025EA,S0501_C02_025M,S0501_C02_025MA"}, "S0502PR_C03_131E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Occupied housing units!!ROOMS!!2 or 3 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_131EA,S0502PR_C03_131M,S0502PR_C03_131MA"}, "S0701_C03_047E": {"label": "Estimate!!Moved; from different county, same state!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$75,000 or more", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C03_047EA,S0701_C03_047M,S0701_C03_047MA"}, "S2504_C06_004E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!UNITS IN STRUCTURE!!2 apartments", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C06_004EA,S2504_C06_004M,S2504_C06_004MA"}, "S1401_C05_009E": {"label": "Estimate!!In private school!!Population 3 years and over enrolled in school!!Graduate, professional school", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C05_009EA,S1401_C05_009M,S1401_C05_009MA"}, "S2412_C03_010E": {"label": "Estimate!!Median earnings (dollars) for female!!Full-time, year-round civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C03_010EA,S2412_C03_010M,S2412_C03_010MA"}, "S0502PR_C03_130E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Occupied housing units!!ROOMS!!1 room", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_130EA,S0502PR_C03_130M,S0502PR_C03_130MA"}, "S2504_C06_005E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!UNITS IN STRUCTURE!!3 or 4 apartments", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C06_005EA,S2504_C06_005M,S2504_C06_005MA"}, "S0501_C02_026E": {"label": "Estimate!!Native!!Total population!!Average household size", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_026EA,S0501_C02_026M,S0501_C02_026MA"}, "S0701_C03_046E": {"label": "Estimate!!Moved; from different county, same state!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$65,000 to $74,999", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C03_046EA,S0701_C03_046M,S0701_C03_046MA"}, "S2412_C03_011E": {"label": "Estimate!!Median earnings (dollars) for female!!Full-time, year-round civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:!!Community and social service occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C03_011EA,S2412_C03_011M,S2412_C03_011MA"}, "S2504_C06_006E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!UNITS IN STRUCTURE!!5 to 9 apartments", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C06_006EA,S2504_C06_006M,S2504_C06_006MA"}, "S0804_C03_015E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_015EA,S0804_C03_015M,S0804_C03_015MA"}, "S2504_C06_007E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!UNITS IN STRUCTURE!!10 or more apartments", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C06_007EA,S2504_C06_007M,S2504_C06_007MA"}, "S0804_C03_014E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_014EA,S0804_C03_014M,S0804_C03_014MA"}, "S2504_C06_008E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!UNITS IN STRUCTURE!!Mobile home or other type of housing", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C06_008EA,S2504_C06_008M,S2504_C06_008MA"}, "S0804_C03_013E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_013EA,S0804_C03_013M,S0804_C03_013MA"}, "S2504_C06_009E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!YEAR STRUCTURE BUILT!!2020 or later", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C06_009EA,S2504_C06_009M,S2504_C06_009MA"}, "S0804_C03_012E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_012EA,S0804_C03_012M,S0804_C03_012MA"}, "S0504_C01_131E": {"label": "Estimate!!Total!!Occupied housing units!!ROOMS!!4 or 5 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_131EA,S0504_C01_131M,S0504_C01_131MA"}, "S1401_C05_003E": {"label": "Estimate!!In private school!!Population 3 years and over enrolled in school!!Kindergarten to 12th grade", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C05_003EA,S1401_C05_003M,S1401_C05_003MA"}, "S0804_C03_011E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_011EA,S0804_C03_011M,S0804_C03_011MA"}, "S0501_C02_020E": {"label": "Estimate!!Native!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_020EA,S0501_C02_020M,S0501_C02_020MA"}, "S0504_C01_130E": {"label": "Estimate!!Total!!Occupied housing units!!ROOMS!!2 or 3 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_130EA,S0504_C01_130M,S0504_C01_130MA"}, "S1401_C05_004E": {"label": "Estimate!!In private school!!Population 3 years and over enrolled in school!!Kindergarten to 12th grade!!Kindergarten", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C05_004EA,S1401_C05_004M,S1401_C05_004MA"}, "S0804_C03_010E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!SEX!!Female", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_010EA,S0804_C03_010M,S0804_C03_010MA"}, "S0505_C04_129E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Occupied housing units!!ROOMS!!1 room", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_129EA,S0505_C04_129M,S0505_C04_129MA"}, "S1401_C05_001E": {"label": "Estimate!!In private school!!Population 3 years and over enrolled in school", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C05_001EA,S1401_C05_001M,S1401_C05_001MA"}, "S0505_C04_128E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Occupied housing units!!HOUSING TENURE!!Average household size of renter-occupied unit", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_128EA,S0505_C04_128M,S0505_C04_128MA"}, "S1401_C05_002E": {"label": "Estimate!!In private school!!Population 3 years and over enrolled in school!!Nursery school, preschool", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C05_002EA,S1401_C05_002M,S1401_C05_002MA"}, "S0505_C04_127E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Occupied housing units!!HOUSING TENURE!!Average household size of owner-occupied unit", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_127EA,S0505_C04_127M,S0505_C04_127MA"}, "S0504_C01_135E": {"label": "Estimate!!Total!!Occupied housing units!!1.01 or more occupants per room", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_135EA,S0504_C01_135M,S0504_C01_135MA"}, "S2603_C01_044E": {"label": "Estimate!!Total population!!VETERAN STATUS!!Civilian population 18 years and over!!Civilian veteran", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C01_044EA,S2603_C01_044M,S2603_C01_044MA"}, "S0505_C04_126E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Occupied housing units!!HOUSING TENURE!!Renter-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_126EA,S0505_C04_126M,S0505_C04_126MA"}, "S0504_C01_134E": {"label": "Estimate!!Total!!Occupied housing units!!Median number of rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_134EA,S0504_C01_134M,S0504_C01_134MA"}, "S2603_C01_043E": {"label": "Estimate!!Total population!!VETERAN STATUS!!Civilian population 18 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C01_043EA,S2603_C01_043M,S2603_C01_043MA"}, "S0505_C04_125E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Occupied housing units!!HOUSING TENURE!!Owner-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_125EA,S0505_C04_125M,S0505_C04_125MA"}, "S0504_C01_133E": {"label": "Estimate!!Total!!Occupied housing units!!ROOMS!!8 or more rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_133EA,S0504_C01_133M,S0504_C01_133MA"}, "S2503_C03_021E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS!!$2,500 to $2,999", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C03_021EA,S2503_C03_021M,S2503_C03_021MA"}, "S2603_C01_042E": {"label": "Estimate!!Total population!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree or higher", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C01_042EA,S2603_C01_042M,S2603_C01_042MA"}, "S0504_C01_132E": {"label": "Estimate!!Total!!Occupied housing units!!ROOMS!!6 or 7 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_132EA,S0504_C01_132M,S0504_C01_132MA"}, "S0505_C04_124E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C04_124EA,S0505_C04_124M,S0505_C04_124MA"}, "S2603_C01_041E": {"label": "Estimate!!Total population!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate or higher", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C01_041EA,S2603_C01_041M,S2603_C01_041MA"}, "S2503_C03_020E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS!!$2,000 to $2,499", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C03_020EA,S2503_C03_020M,S2503_C03_020MA"}, "S0505_C04_123E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_123EA,S0505_C04_123M,S0505_C04_123MA"}, "S2603_C01_040E": {"label": "Estimate!!Total population!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C01_040EA,S2603_C01_040M,S2603_C01_040MA"}, "S0504_C01_139E": {"label": "Estimate!!Total!!Occupied housing units!!SELECTED CHARACTERISTICS!!Limited English Speaking Households", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_139EA,S0504_C01_139M,S0504_C01_139MA"}, "S0804_C03_019E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_019EA,S0804_C03_019M,S0804_C03_019MA"}, "S0506_C05_039E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!MARITAL STATUS!!Population 15 years and over!!Divorced or separated", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_039EA,S0506_C05_039M,S0506_C05_039MA"}, "S0505_C04_122E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_122EA,S0505_C04_122M,S0505_C04_122MA"}, "S0504_C01_138E": {"label": "Estimate!!Total!!Occupied housing units!!SELECTED CHARACTERISTICS!!No telephone service available", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_138EA,S0504_C01_138M,S0504_C01_138MA"}, "S0804_C03_018E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_018EA,S0804_C03_018M,S0804_C03_018MA"}, "S0506_C05_038E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_038EA,S0506_C05_038M,S0506_C05_038MA"}, "S0505_C04_121E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_121EA,S0505_C04_121M,S0505_C04_121MA"}, "S0804_C03_017E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_017EA,S0804_C03_017M,S0804_C03_017MA"}, "S0504_C01_137E": {"label": "Estimate!!Total!!Occupied housing units!!VEHICLES AVAILABLE!!1 or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_137EA,S0504_C01_137M,S0504_C01_137MA"}, "S0506_C05_037E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_037EA,S0506_C05_037M,S0506_C05_037MA"}, "S0804_C03_016E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_016EA,S0804_C03_016M,S0804_C03_016MA"}, "S0505_C04_120E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_120EA,S0505_C04_120M,S0505_C04_120MA"}, "S0504_C01_136E": {"label": "Estimate!!Total!!Occupied housing units!!VEHICLES AVAILABLE!!None", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_136EA,S0504_C01_136M,S0504_C01_136MA"}, "S0506_C05_024E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_024EA,S0506_C05_024M,S0506_C05_024MA"}, "S2601C_C01_094E": {"label": "Estimate!!Total population!!OCCUPATION!!Civilian employed population 16 years and over!!Sales and office occupations", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_094EA,S2601C_C01_094M,S2601C_C01_094MA"}, "S0502PR_C03_101E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_101EA,S0502PR_C03_101M,S0502PR_C03_101MA"}, "S0502PR_C01_095E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$75,000 or more", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_095EA,S0502PR_C01_095M,S0502PR_C01_095MA"}, "S0502PR_C03_100E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings!!Mean earnings (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_100EA,S0502PR_C03_100M,S0502PR_C03_100MA"}, "S2603_C01_039E": {"label": "Estimate!!Total population!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!College or graduate school", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C01_039EA,S2603_C01_039M,S2603_C01_039MA"}, "S0506_C05_023E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_023EA,S0506_C05_023M,S0506_C05_023MA"}, "S2601C_C01_095E": {"label": "Estimate!!Total population!!OCCUPATION!!Civilian employed population 16 years and over!!Natural resources, construction, extraction, and maintenance occupations", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_095EA,S2601C_C01_095M,S2601C_C01_095MA"}, "S0502PR_C01_096E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!Median earnings (dollars) for full-time, year-round workers!!Male", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_096EA,S0502PR_C01_096M,S0502PR_C01_096MA"}, "S0506_C05_022E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_022EA,S0506_C05_022M,S0506_C05_022MA"}, "S0504_C01_129E": {"label": "Estimate!!Total!!Occupied housing units!!ROOMS!!1 room", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_129EA,S0504_C01_129M,S0504_C01_129MA"}, "S2001_C02_009E": {"label": "Estimate!!Percent!!Population 16 years and over with earnings!!FULL-TIME, YEAR-ROUND WORKERS WITH EARNINGS!!$50,000 to $64,999", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S2001", "limit": 0, "attributes": "S2001_C02_009EA,S2001_C02_009M,S2001_C02_009MA"}, "S2601C_C01_092E": {"label": "Estimate!!Total population!!OCCUPATION!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_092EA,S2601C_C01_092M,S2601C_C01_092MA"}, "S2603_C01_038E": {"label": "Estimate!!Total population!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Nursery school through 12th grade", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C01_038EA,S2603_C01_038M,S2603_C01_038MA"}, "S0502PR_C01_097E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!Median earnings (dollars) for full-time, year-round workers!!Female", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_097EA,S0502PR_C01_097M,S0502PR_C01_097MA"}, "S0506_C05_021E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Foreign-born population!!SEX AND AGE!!Median age (years)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_021EA,S0506_C05_021M,S0506_C05_021MA"}, "S2001_C02_008E": {"label": "Estimate!!Percent!!Population 16 years and over with earnings!!FULL-TIME, YEAR-ROUND WORKERS WITH EARNINGS!!$35,000 to $49,999", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S2001", "limit": 0, "attributes": "S2001_C02_008EA,S2001_C02_008M,S2001_C02_008MA"}, "S0504_C01_128E": {"label": "Estimate!!Total!!Occupied housing units!!HOUSING TENURE!!Average household size of renter-occupied unit", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_128EA,S0504_C01_128M,S0504_C01_128MA"}, "S2603_C01_037E": {"label": "Estimate!!Total population!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C01_037EA,S2603_C01_037M,S2603_C01_037MA"}, "S2601C_C01_093E": {"label": "Estimate!!Total population!!OCCUPATION!!Civilian employed population 16 years and over!!Service occupations", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_093EA,S2601C_C01_093M,S2601C_C01_093MA"}, "S0502PR_C01_098E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_098EA,S0502PR_C01_098M,S0502PR_C01_098MA"}, "S0506_C05_020E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Foreign-born population!!SEX AND AGE!!85 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_020EA,S0506_C05_020M,S0506_C05_020MA"}, "S2001_C02_007E": {"label": "Estimate!!Percent!!Population 16 years and over with earnings!!FULL-TIME, YEAR-ROUND WORKERS WITH EARNINGS!!$25,000 to $34,999", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S2001", "limit": 0, "attributes": "S2001_C02_007EA,S2001_C02_007M,S2001_C02_007MA"}, "S0502PR_C03_105E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_105EA,S0502PR_C03_105M,S0502PR_C03_105MA"}, "S0502PR_C01_099E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_099EA,S0502PR_C01_099M,S0502PR_C01_099MA"}, "S2504_C06_030E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!VEHICLES AVAILABLE!!3 or more vehicles available", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C06_030EA,S2504_C06_030M,S2504_C06_030MA"}, "S2412_C03_028E": {"label": "Estimate!!Median earnings (dollars) for female!!Full-time, year-round civilian employed population 16 years and over with earnings!!Sales and office occupations:!!Office and administrative support occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C03_028EA,S2412_C03_028M,S2412_C03_028MA"}, "S2603_C01_036E": {"label": "Estimate!!Total population!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C01_036EA,S2603_C01_036M,S2603_C01_036MA"}, "S2601C_C01_090E": {"label": "Estimate!!Total population!!EMPLOYMENT STATUS!!Population 16 years and over!!Not in labor force", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_090EA,S2601C_C01_090M,S2601C_C01_090MA"}, "S2001_C02_006E": {"label": "Estimate!!Percent!!Population 16 years and over with earnings!!FULL-TIME, YEAR-ROUND WORKERS WITH EARNINGS!!$15,000 to $24,999", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S2001", "limit": 0, "attributes": "S2001_C02_006EA,S2001_C02_006M,S2001_C02_006MA"}, "S2603_C01_035E": {"label": "Estimate!!Total population!!MARITAL STATUS!!Population 15 years and over!!Separated", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C01_035EA,S2603_C01_035M,S2603_C01_035MA"}, "S2504_C06_031E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!TELEPHONE SERVICE AVAILABLE!!With telephone service", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C06_031EA,S2504_C06_031M,S2504_C06_031MA"}, "S2412_C03_029E": {"label": "Estimate!!Median earnings (dollars) for female!!Full-time, year-round civilian employed population 16 years and over with earnings!!Natural resources, construction, and maintenance occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C03_029EA,S2412_C03_029M,S2412_C03_029MA"}, "S0502PR_C03_104E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income!!Mean Supplemental Security Income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_104EA,S0502PR_C03_104M,S0502PR_C03_104MA"}, "S2601C_C01_091E": {"label": "Estimate!!Total population!!OCCUPATION!!Civilian employed population 16 years and over", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_091EA,S2601C_C01_091M,S2601C_C01_091MA"}, "S2001_C02_005E": {"label": "Estimate!!Percent!!Population 16 years and over with earnings!!FULL-TIME, YEAR-ROUND WORKERS WITH EARNINGS!!$10,000 to $14,999", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S2001", "limit": 0, "attributes": "S2001_C02_005EA,S2001_C02_005M,S2001_C02_005MA"}, "S2504_C06_032E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!HOUSE HEATING FUEL!!Utility gas", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C06_032EA,S2504_C06_032M,S2504_C06_032MA"}, "S2603_C01_034E": {"label": "Estimate!!Total population!!MARITAL STATUS!!Population 15 years and over!!Divorced", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C01_034EA,S2603_C01_034M,S2603_C01_034MA"}, "S0502PR_C03_103E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_103EA,S0502PR_C03_103M,S0502PR_C03_103MA"}, "S2414_C03_001E": {"label": "Estimate!!Median earnings (dollars) for female!!Full-time, year-round civilian employed population 16 years and over with earnings", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C03_001EA,S2414_C03_001M,S2414_C03_001MA"}, "S2001_C02_004E": {"label": "Estimate!!Percent!!Population 16 years and over with earnings!!FULL-TIME, YEAR-ROUND WORKERS WITH EARNINGS!!$1 to $9,999 or loss", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S2001", "limit": 0, "attributes": "S2001_C02_004EA,S2001_C02_004M,S2001_C02_004MA"}, "S2504_C06_033E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!HOUSE HEATING FUEL!!Bottled or tank gas (propane, butane, etc.)", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C06_033EA,S2504_C06_033M,S2504_C06_033MA"}, "S2603_C01_033E": {"label": "Estimate!!Total population!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C01_033EA,S2603_C01_033M,S2603_C01_033MA"}, "S0502PR_C03_102E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income!!Mean Social Security income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_102EA,S0502PR_C03_102M,S0502PR_C03_102MA"}, "S0501_C02_035E": {"label": "Estimate!!Native!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Elementary school (grades K-8)", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_035EA,S0501_C02_035M,S0501_C02_035MA"}, "S2504_C06_034E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!HOUSE HEATING FUEL!!Electricity", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C06_034EA,S2504_C06_034M,S2504_C06_034MA"}, "S2414_C03_002E": {"label": "Estimate!!Median earnings (dollars) for female!!Full-time, year-round civilian employed population 16 years and over with earnings!!Agriculture, forestry, fishing and hunting, and mining:", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C03_002EA,S2414_C03_002M,S2414_C03_002MA"}, "S2001_C02_003E": {"label": "Estimate!!Percent!!Population 16 years and over with earnings!!FULL-TIME, YEAR-ROUND WORKERS WITH EARNINGS", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C02_003EA,S2001_C02_003M,S2001_C02_003MA"}, "S2412_C03_024E": {"label": "Estimate!!Median earnings (dollars) for female!!Full-time, year-round civilian employed population 16 years and over with earnings!!Service occupations:!!Building and grounds cleaning and maintenance occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C03_024EA,S2412_C03_024M,S2412_C03_024MA"}, "S0501_C02_036E": {"label": "Estimate!!Native!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!High school (grades 9-12)", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_036EA,S0501_C02_036M,S0501_C02_036MA"}, "S2504_C06_035E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!HOUSE HEATING FUEL!!Fuel oil, kerosene, etc.", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C06_035EA,S2504_C06_035M,S2504_C06_035MA"}, "S2414_C03_003E": {"label": "Estimate!!Median earnings (dollars) for female!!Full-time, year-round civilian employed population 16 years and over with earnings!!Agriculture, forestry, fishing and hunting, and mining:!!Agriculture, forestry, fishing and hunting", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C03_003EA,S2414_C03_003M,S2414_C03_003MA"}, "S2001_C02_002E": {"label": "Estimate!!Percent!!Population 16 years and over with earnings!!Median earnings (dollars)", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C02_002EA,S2001_C02_002M,S2001_C02_002MA"}, "S2412_C03_025E": {"label": "Estimate!!Median earnings (dollars) for female!!Full-time, year-round civilian employed population 16 years and over with earnings!!Service occupations:!!Personal care and service occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C03_025EA,S2412_C03_025M,S2412_C03_025MA"}, "S2504_C06_036E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!HOUSE HEATING FUEL!!Coal or coke", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C06_036EA,S2504_C06_036M,S2504_C06_036MA"}, "S0501_C02_033E": {"label": "Estimate!!Native!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C02_033EA,S0501_C02_033M,S0501_C02_033MA"}, "S2414_C03_004E": {"label": "Estimate!!Median earnings (dollars) for female!!Full-time, year-round civilian employed population 16 years and over with earnings!!Agriculture, forestry, fishing and hunting, and mining:!!Mining, quarrying, and oil and gas extraction", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C03_004EA,S2414_C03_004M,S2414_C03_004MA"}, "S2603_C06_029E": {"label": "Estimate!!College/university housing!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!Hispanic or Latino (of any race)", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C06_029EA,S2603_C06_029M,S2603_C06_029MA"}, "S2412_C03_026E": {"label": "Estimate!!Median earnings (dollars) for female!!Full-time, year-round civilian employed population 16 years and over with earnings!!Sales and office occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C03_026EA,S2412_C03_026M,S2412_C03_026MA"}, "S2001_C02_001E": {"label": "Estimate!!Percent!!Population 16 years and over with earnings", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C02_001EA,S2001_C02_001M,S2001_C02_001MA"}, "S2504_C06_037E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!HOUSE HEATING FUEL!!All other fuels", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C06_037EA,S2504_C06_037M,S2504_C06_037MA"}, "S0501_C02_034E": {"label": "Estimate!!Native!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Nursery school, preschool", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_034EA,S0501_C02_034M,S0501_C02_034MA"}, "S2414_C03_005E": {"label": "Estimate!!Median earnings (dollars) for female!!Full-time, year-round civilian employed population 16 years and over with earnings!!Construction", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C03_005EA,S2414_C03_005M,S2414_C03_005MA"}, "S2412_C03_027E": {"label": "Estimate!!Median earnings (dollars) for female!!Full-time, year-round civilian employed population 16 years and over with earnings!!Sales and office occupations:!!Sales and related occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C03_027EA,S2412_C03_027M,S2412_C03_027MA"}, "S2603_C06_028E": {"label": "Estimate!!College/university housing!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!Two or more races", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C06_028EA,S2603_C06_028M,S2603_C06_028MA"}, "S2504_C06_038E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!HOUSE HEATING FUEL!!No fuel used", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C06_038EA,S2504_C06_038M,S2504_C06_038MA"}, "S2414_C03_006E": {"label": "Estimate!!Median earnings (dollars) for female!!Full-time, year-round civilian employed population 16 years and over with earnings!!Manufacturing", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C03_006EA,S2414_C03_006M,S2414_C03_006MA"}, "S2412_C03_020E": {"label": "Estimate!!Median earnings (dollars) for female!!Full-time, year-round civilian employed population 16 years and over with earnings!!Service occupations:!!Protective service occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C03_020EA,S2412_C03_020M,S2412_C03_020MA"}, "S2601C_C01_098E": {"label": "Estimate!!Total population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!Per capita income (dollars)", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_098EA,S2601C_C01_098M,S2601C_C01_098MA"}, "S0501_C02_039E": {"label": "Estimate!!Native!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than high school graduate", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_039EA,S0501_C02_039M,S0501_C02_039MA"}, "S2414_C03_007E": {"label": "Estimate!!Median earnings (dollars) for female!!Full-time, year-round civilian employed population 16 years and over with earnings!!Wholesale trade", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C03_007EA,S2414_C03_007M,S2414_C03_007MA"}, "S2412_C03_021E": {"label": "Estimate!!Median earnings (dollars) for female!!Full-time, year-round civilian employed population 16 years and over with earnings!!Service occupations:!!Protective service occupations:!!Firefighting and prevention, and other protective service workers including supervisors", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C03_021EA,S2412_C03_021M,S2412_C03_021MA"}, "S2601C_C01_099E": {"label": "Estimate!!Total population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!With earnings for full-time, year-round workers:!!Male", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_099EA,S2601C_C01_099M,S2601C_C01_099MA"}, "S0501_C02_037E": {"label": "Estimate!!Native!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!College or graduate school", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_037EA,S0501_C02_037M,S0501_C02_037MA"}, "S2414_C03_008E": {"label": "Estimate!!Median earnings (dollars) for female!!Full-time, year-round civilian employed population 16 years and over with earnings!!Retail trade", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C03_008EA,S2414_C03_008M,S2414_C03_008MA"}, "S2601C_C01_096E": {"label": "Estimate!!Total population!!OCCUPATION!!Civilian employed population 16 years and over!!Production, transportation, and material moving occupations", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_096EA,S2601C_C01_096M,S2601C_C01_096MA"}, "S2412_C03_022E": {"label": "Estimate!!Median earnings (dollars) for female!!Full-time, year-round civilian employed population 16 years and over with earnings!!Service occupations:!!Protective service occupations:!!Law enforcement workers including supervisors", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C03_022EA,S2412_C03_022M,S2412_C03_022MA"}, "S0501_C02_038E": {"label": "Estimate!!Native!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C02_038EA,S0501_C02_038M,S0501_C02_038MA"}, "S2414_C03_009E": {"label": "Estimate!!Median earnings (dollars) for female!!Full-time, year-round civilian employed population 16 years and over with earnings!!Transportation and warehousing, and utilities:", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C03_009EA,S2414_C03_009M,S2414_C03_009MA"}, "S2601C_C01_097E": {"label": "Estimate!!Total population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_097EA,S2601C_C01_097M,S2601C_C01_097MA"}, "S2412_C03_023E": {"label": "Estimate!!Median earnings (dollars) for female!!Full-time, year-round civilian employed population 16 years and over with earnings!!Service occupations:!!Food preparation and serving related occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C03_023EA,S2412_C03_023M,S2412_C03_023MA"}, "S2603_C06_023E": {"label": "Estimate!!College/university housing!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C06_023EA,S2603_C06_023M,S2603_C06_023MA"}, "S2603_C06_022E": {"label": "Estimate!!College/university housing!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!White", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C06_022EA,S2603_C06_022M,S2603_C06_022MA"}, "S2603_C06_021E": {"label": "Estimate!!College/university housing!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C06_021EA,S2603_C06_021M,S2603_C06_021MA"}, "S2603_C06_020E": {"label": "Estimate!!College/university housing!!Total population!!SEX AND AGE!!Median age (years)", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C06_020EA,S2603_C06_020M,S2603_C06_020MA"}, "S0501_C02_031E": {"label": "Estimate!!Native!!MARITAL STATUS!!Population 15 years and over!!Divorced or separated", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_031EA,S0501_C02_031M,S0501_C02_031MA"}, "S2603_C06_027E": {"label": "Estimate!!College/university housing!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Some other race", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C06_027EA,S2603_C06_027M,S2603_C06_027MA"}, "S0501_C02_032E": {"label": "Estimate!!Native!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_032EA,S0501_C02_032M,S0501_C02_032MA"}, "S2603_C06_026E": {"label": "Estimate!!College/university housing!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C06_026EA,S2603_C06_026M,S2603_C06_026MA"}, "S2603_C06_025E": {"label": "Estimate!!College/university housing!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Asian", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C06_025EA,S2603_C06_025M,S2603_C06_025MA"}, "S0501_C02_030E": {"label": "Estimate!!Native!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_030EA,S0501_C02_030M,S0501_C02_030MA"}, "S2603_C06_024E": {"label": "Estimate!!College/university housing!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C06_024EA,S2603_C06_024M,S2603_C06_024MA"}, "S0504_C01_123E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_123EA,S0504_C01_123M,S0504_C01_123MA"}, "S2603_C01_032E": {"label": "Estimate!!Total population!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C01_032EA,S2603_C01_032M,S2603_C01_032MA"}, "S0504_C01_122E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_122EA,S0504_C01_122M,S0504_C01_122MA"}, "S2603_C01_031E": {"label": "Estimate!!Total population!!MARITAL STATUS!!Population 15 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C01_031EA,S2603_C01_031M,S2603_C01_031MA"}, "S0504_C01_121E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_121EA,S0504_C01_121M,S0504_C01_121MA"}, "S2603_C01_030E": {"label": "Estimate!!Total population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!White alone, Not Hispanic or Latino", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C01_030EA,S2603_C01_030M,S2603_C01_030MA"}, "S0506_C05_029E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_029EA,S0506_C05_029M,S0506_C05_029MA"}, "S0504_C01_120E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_120EA,S0504_C01_120M,S0504_C01_120MA"}, "S0506_C05_028E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_028EA,S0506_C05_028M,S0506_C05_028MA"}, "S0504_C01_127E": {"label": "Estimate!!Total!!Occupied housing units!!HOUSING TENURE!!Average household size of owner-occupied unit", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_127EA,S0504_C01_127M,S0504_C01_127MA"}, "S0506_C05_027E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_027EA,S0506_C05_027M,S0506_C05_027MA"}, "S0504_C01_126E": {"label": "Estimate!!Total!!Occupied housing units!!HOUSING TENURE!!Renter-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_126EA,S0504_C01_126M,S0504_C01_126MA"}, "S0506_C05_026E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_026EA,S0506_C05_026M,S0506_C05_026MA"}, "S0504_C01_125E": {"label": "Estimate!!Total!!Occupied housing units!!HOUSING TENURE!!Owner-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_125EA,S0504_C01_125M,S0504_C01_125MA"}, "S0506_C05_025E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_025EA,S0506_C05_025M,S0506_C05_025MA"}, "S0504_C01_124E": {"label": "Estimate!!Total!!Occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C01_124EA,S0504_C01_124M,S0504_C01_124MA"}, "S2603_C01_028E": {"label": "Estimate!!Total population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!Two or more races", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C01_028EA,S2603_C01_028M,S2603_C01_028MA"}, "S0506_C05_012E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Foreign-born population!!SEX AND AGE!!Under 5 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_012EA,S0506_C05_012M,S0506_C05_012MA"}, "S2503_C03_003E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$5,000 to $9,999", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C03_003EA,S2503_C03_003M,S2503_C03_003MA"}, "S0504_C01_119E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_119EA,S0504_C01_119M,S0504_C01_119MA"}, "S0502PR_C03_113E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!Below 100 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_113EA,S0502PR_C03_113M,S0502PR_C03_113MA"}, "S0506_C05_011E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Foreign-born population!!SEX AND AGE!!Female", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_011EA,S0506_C05_011M,S0506_C05_011MA"}, "S0504_C01_118E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_118EA,S0504_C01_118M,S0504_C01_118MA"}, "S2503_C03_002E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Less than $5,000", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C03_002EA,S2503_C03_002M,S2503_C03_002MA"}, "S2603_C01_027E": {"label": "Estimate!!Total population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Some other race", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C01_027EA,S2603_C01_027M,S2603_C01_027MA"}, "S0502PR_C03_112E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_112EA,S0502PR_C03_112M,S0502PR_C03_112MA"}, "S0502PR_C03_111E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!Average number of workers per household", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_111EA,S0502PR_C03_111M,S0502PR_C03_111MA"}, "S2503_C03_005E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$15,000 to $19,999", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C03_005EA,S2503_C03_005M,S2503_C03_005MA"}, "S0506_C05_010E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Foreign-born population!!SEX AND AGE!!Male", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_010EA,S0506_C05_010M,S0506_C05_010MA"}, "S0504_C01_117E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_117EA,S0504_C01_117M,S0504_C01_117MA"}, "S2603_C01_026E": {"label": "Estimate!!Total population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C01_026EA,S2603_C01_026M,S2603_C01_026MA"}, "S0502PR_C03_110E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!Median Household income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_110EA,S0502PR_C03_110M,S0502PR_C03_110MA"}, "S2503_C03_004E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$10,000 to $14,999", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C03_004EA,S2503_C03_004M,S2503_C03_004MA"}, "S0504_C01_116E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_116EA,S0504_C01_116M,S0504_C01_116MA"}, "S2603_C01_025E": {"label": "Estimate!!Total population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Asian", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C01_025EA,S2603_C01_025M,S2603_C01_025MA"}, "S1502_C06_024E": {"label": "Estimate!!Percent Female!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!65 years and over!!Arts, Humanities, and Others", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "float", "group": "S1502", "limit": 0, "attributes": "S1502_C06_024EA,S1502_C06_024M,S1502_C06_024MA"}, "S1502_C06_023E": {"label": "Estimate!!Percent Female!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!65 years and over!!Education", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "float", "group": "S1502", "limit": 0, "attributes": "S1502_C06_023EA,S1502_C06_023M,S1502_C06_023MA"}, "S2702_C01_001E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "int", "group": "S2702", "limit": 0, "attributes": "S2702_C01_001EA,S2702_C01_001M,S2702_C01_001MA"}, "S2001_C02_019E": {"label": "Estimate!!Percent!!MEDIAN EARNINGS BY EDUCATIONAL ATTAINMENT!!Population 25 years and over with earnings!!Bachelor's degree", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C02_019EA,S2001_C02_019M,S2001_C02_019MA"}, "S0502PR_C03_117E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_117EA,S0502PR_C03_117M,S0502PR_C03_117MA"}, "S2603_C01_024E": {"label": "Estimate!!Total population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C01_024EA,S2603_C01_024M,S2603_C01_024MA"}, "S2702_C01_002E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!AGE!!Under 19 years", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_002EA,S2702_C01_002M,S2702_C01_002MA"}, "S1502_C06_022E": {"label": "Estimate!!Percent Female!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!65 years and over!!Business", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "float", "group": "S1502", "limit": 0, "attributes": "S1502_C06_022EA,S1502_C06_022M,S1502_C06_022MA"}, "S1601_C06_001E": {"label": "Estimate!!Percent speak English less than \"very well\"!!Percent of specified language speakers!!Population 5 years and over", "concept": "Language Spoken at Home", "predicateType": "float", "group": "S1601", "limit": 0, "attributes": "S1601_C06_001EA,S1601_C06_001M,S1601_C06_001MA"}, "S2001_C02_018E": {"label": "Estimate!!Percent!!MEDIAN EARNINGS BY EDUCATIONAL ATTAINMENT!!Population 25 years and over with earnings!!Some college or associate's degree", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C02_018EA,S2001_C02_018M,S2001_C02_018MA"}, "S0502PR_C03_116E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_116EA,S0502PR_C03_116M,S0502PR_C03_116MA"}, "S2603_C01_023E": {"label": "Estimate!!Total population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C01_023EA,S2603_C01_023M,S2603_C01_023MA"}, "S1502_C06_021E": {"label": "Estimate!!Percent Female!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!65 years and over!!Science and Engineering Related Fields", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "float", "group": "S1502", "limit": 0, "attributes": "S1502_C06_021EA,S1502_C06_021M,S1502_C06_021MA"}, "S2503_C03_001E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C03_001EA,S2503_C03_001M,S2503_C03_001MA"}, "S2001_C02_017E": {"label": "Estimate!!Percent!!MEDIAN EARNINGS BY EDUCATIONAL ATTAINMENT!!Population 25 years and over with earnings!!High school graduate (includes equivalency)", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C02_017EA,S2001_C02_017M,S2001_C02_017MA"}, "S2504_C06_020E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!ROOMS!!8 or more rooms", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C06_020EA,S2504_C06_020M,S2504_C06_020MA"}, "S2603_C01_022E": {"label": "Estimate!!Total population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!White", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C01_022EA,S2603_C01_022M,S2603_C01_022MA"}, "S0502PR_C03_115E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!At or above 200 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_115EA,S0502PR_C03_115M,S0502PR_C03_115MA"}, "S1502_C06_020E": {"label": "Estimate!!Percent Female!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!65 years and over!!Science and Engineering", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "float", "group": "S1502", "limit": 0, "attributes": "S1502_C06_020EA,S1502_C06_020M,S1502_C06_020MA"}, "S2001_C02_016E": {"label": "Estimate!!Percent!!MEDIAN EARNINGS BY EDUCATIONAL ATTAINMENT!!Population 25 years and over with earnings!!Less than high school graduate", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C02_016EA,S2001_C02_016M,S2001_C02_016MA"}, "S2504_C06_021E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!BEDROOMS!!No bedroom", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C06_021EA,S2504_C06_021M,S2504_C06_021MA"}, "S0502PR_C03_114E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!100 to 199 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_114EA,S0502PR_C03_114M,S0502PR_C03_114MA"}, "S2603_C01_021E": {"label": "Estimate!!Total population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C01_021EA,S2603_C01_021M,S2603_C01_021MA"}, "S2702_C01_005E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!AGE!!19 to 64 years", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_005EA,S2702_C01_005M,S2702_C01_005MA"}, "S0501_C02_047E": {"label": "Estimate!!Native!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English!!Speak English less than \"very well\"", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_047EA,S0501_C02_047M,S0501_C02_047MA"}, "S1601_C06_004E": {"label": "Estimate!!Percent speak English less than \"very well\"!!Percent of specified language speakers!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Spanish", "concept": "Language Spoken at Home", "predicateType": "float", "group": "S1601", "limit": 0, "attributes": "S1601_C06_004EA,S1601_C06_004M,S1601_C06_004MA"}, "S2504_C06_022E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!BEDROOMS!!1 bedroom", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C06_022EA,S2504_C06_022M,S2504_C06_022MA"}, "S2001_C02_015E": {"label": "Estimate!!Percent!!MEDIAN EARNINGS BY EDUCATIONAL ATTAINMENT!!Population 25 years and over with earnings", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C02_015EA,S2001_C02_015M,S2001_C02_015MA"}, "S2603_C06_019E": {"label": "Estimate!!College/university housing!!Total population!!SEX AND AGE!!65 years and over!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C06_019EA,S2603_C06_019M,S2603_C06_019MA"}, "S2412_C03_036E": {"label": "Estimate!!Median earnings (dollars) for female!!Full-time, year-round civilian employed population 16 years and over with earnings!!Production, transportation, and material moving occupations:!!Material moving occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C03_036EA,S2412_C03_036M,S2412_C03_036MA"}, "S0501_C02_048E": {"label": "Estimate!!Native!!EMPLOYMENT STATUS!!Population 16 years and over", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C02_048EA,S0501_C02_048M,S0501_C02_048MA"}, "S2504_C06_023E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!BEDROOMS!!2 or 3 bedrooms", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C06_023EA,S2504_C06_023M,S2504_C06_023MA"}, "S1601_C06_005E": {"label": "Estimate!!Percent speak English less than \"very well\"!!Percent of specified language speakers!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Spanish!!5 to 17 years old", "concept": "Language Spoken at Home", "predicateType": "float", "group": "S1601", "limit": 0, "attributes": "S1601_C06_005EA,S1601_C06_005M,S1601_C06_005MA"}, "S2001_C02_014E": {"label": "Estimate!!Percent!!Population 16 years and over with earnings!!FULL-TIME, YEAR-ROUND WORKERS WITH EARNINGS!!Mean earnings (dollars) for full-time, year-round workers with earnings", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C02_014EA,S2001_C02_014M,S2001_C02_014MA"}, "S2603_C06_018E": {"label": "Estimate!!College/university housing!!Total population!!SEX AND AGE!!65 years and over!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C06_018EA,S2603_C06_018M,S2603_C06_018MA"}, "S2702_C01_006E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!AGE!!19 to 64 years!!19 to 25 years", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_006EA,S2702_C01_006M,S2702_C01_006MA"}, "S2702_C01_003E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!AGE!!Under 19 years!!Under 6 years", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_003EA,S2702_C01_003M,S2702_C01_003MA"}, "S2504_C06_024E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!BEDROOMS!!4 or more bedrooms", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C06_024EA,S2504_C06_024M,S2504_C06_024MA"}, "S0501_C02_045E": {"label": "Estimate!!Native!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!English only", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_045EA,S0501_C02_045M,S0501_C02_045MA"}, "S1601_C06_002E": {"label": "Estimate!!Percent speak English less than \"very well\"!!Percent of specified language speakers!!Population 5 years and over!!Speak only English", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C06_002EA,S1601_C06_002M,S1601_C06_002MA"}, "S2603_C06_017E": {"label": "Estimate!!College/university housing!!Total population!!SEX AND AGE!!65 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C06_017EA,S2603_C06_017M,S2603_C06_017MA"}, "S2001_C02_013E": {"label": "Estimate!!Percent!!Population 16 years and over with earnings!!FULL-TIME, YEAR-ROUND WORKERS WITH EARNINGS!!Median earnings (dollars) for full-time, year-round workers with earnings", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C02_013EA,S2001_C02_013M,S2001_C02_013MA"}, "S2702_C01_004E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!AGE!!Under 19 years!!6 to 18 years", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_004EA,S2702_C01_004M,S2702_C01_004MA"}, "S0501_C02_046E": {"label": "Estimate!!Native!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_046EA,S0501_C02_046M,S0501_C02_046MA"}, "S2504_C06_025E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!COMPLETE FACILITIES!!With complete plumbing facilities", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C06_025EA,S2504_C06_025M,S2504_C06_025MA"}, "S1601_C06_003E": {"label": "Estimate!!Percent speak English less than \"very well\"!!Percent of specified language speakers!!Population 5 years and over!!Speak a language other than English", "concept": "Language Spoken at Home", "predicateType": "float", "group": "S1601", "limit": 0, "attributes": "S1601_C06_003EA,S1601_C06_003M,S1601_C06_003MA"}, "S2603_C06_016E": {"label": "Estimate!!College/university housing!!Total population!!SEX AND AGE!!Under 18 years!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C06_016EA,S2603_C06_016M,S2603_C06_016MA"}, "S2001_C02_012E": {"label": "Estimate!!Percent!!Population 16 years and over with earnings!!FULL-TIME, YEAR-ROUND WORKERS WITH EARNINGS!!$100,000 or more", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S2001", "limit": 0, "attributes": "S2001_C02_012EA,S2001_C02_012M,S2001_C02_012MA"}, "S2504_C06_026E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!COMPLETE FACILITIES!!With complete kitchen facilities", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C06_026EA,S2504_C06_026M,S2504_C06_026MA"}, "S2503_C03_007E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$25,000 to $34,999", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C03_007EA,S2503_C03_007M,S2503_C03_007MA"}, "S1601_C06_008E": {"label": "Estimate!!Percent speak English less than \"very well\"!!Percent of specified language speakers!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Other Indo-European languages", "concept": "Language Spoken at Home", "predicateType": "float", "group": "S1601", "limit": 0, "attributes": "S1601_C06_008EA,S1601_C06_008M,S1601_C06_008MA"}, "S2412_C03_032E": {"label": "Estimate!!Median earnings (dollars) for female!!Full-time, year-round civilian employed population 16 years and over with earnings!!Natural resources, construction, and maintenance occupations:!!Installation, maintenance, and repair occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C03_032EA,S2412_C03_032M,S2412_C03_032MA"}, "S2001_C02_011E": {"label": "Estimate!!Percent!!Population 16 years and over with earnings!!FULL-TIME, YEAR-ROUND WORKERS WITH EARNINGS!!$75,000 to $99,999", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S2001", "limit": 0, "attributes": "S2001_C02_011EA,S2001_C02_011M,S2001_C02_011MA"}, "S2702_C01_009E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!AGE!!19 to 64 years!!45 to 54 years", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_009EA,S2702_C01_009M,S2702_C01_009MA"}, "S2504_C06_027E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!VEHICLES AVAILABLE!!No vehicle available", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C06_027EA,S2504_C06_027M,S2504_C06_027MA"}, "S2503_C03_006E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$20,000 to $24,999", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C03_006EA,S2503_C03_006M,S2503_C03_006MA"}, "S1601_C06_009E": {"label": "Estimate!!Percent speak English less than \"very well\"!!Percent of specified language speakers!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Other Indo-European languages!!5 to 17 years old", "concept": "Language Spoken at Home", "predicateType": "float", "group": "S1601", "limit": 0, "attributes": "S1601_C06_009EA,S1601_C06_009M,S1601_C06_009MA"}, "S2001_C02_010E": {"label": "Estimate!!Percent!!Population 16 years and over with earnings!!FULL-TIME, YEAR-ROUND WORKERS WITH EARNINGS!!$65,000 to $74,999", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S2001", "limit": 0, "attributes": "S2001_C02_010EA,S2001_C02_010M,S2001_C02_010MA"}, "S2412_C03_033E": {"label": "Estimate!!Median earnings (dollars) for female!!Full-time, year-round civilian employed population 16 years and over with earnings!!Production, transportation, and material moving occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C03_033EA,S2412_C03_033M,S2412_C03_033MA"}, "S2504_C06_028E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!VEHICLES AVAILABLE!!1 vehicle available", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C06_028EA,S2504_C06_028M,S2504_C06_028MA"}, "S0501_C02_049E": {"label": "Estimate!!Native!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_049EA,S0501_C02_049M,S0501_C02_049MA"}, "S2503_C03_009E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$50,000 to $74,999", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C03_009EA,S2503_C03_009M,S2503_C03_009MA"}, "S1601_C06_006E": {"label": "Estimate!!Percent speak English less than \"very well\"!!Percent of specified language speakers!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Spanish!!18 to 64 years old", "concept": "Language Spoken at Home", "predicateType": "float", "group": "S1601", "limit": 0, "attributes": "S1601_C06_006EA,S1601_C06_006M,S1601_C06_006MA"}, "S2412_C03_034E": {"label": "Estimate!!Median earnings (dollars) for female!!Full-time, year-round civilian employed population 16 years and over with earnings!!Production, transportation, and material moving occupations:!!Production occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C03_034EA,S2412_C03_034M,S2412_C03_034MA"}, "S2702_C01_007E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!AGE!!19 to 64 years!!26 to 34 years", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_007EA,S2702_C01_007M,S2702_C01_007MA"}, "S2504_C06_029E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!VEHICLES AVAILABLE!!2 vehicles available", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C06_029EA,S2504_C06_029M,S2504_C06_029MA"}, "S2603_C01_029E": {"label": "Estimate!!Total population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!Hispanic or Latino (of any race)", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C01_029EA,S2603_C01_029M,S2603_C01_029MA"}, "S2503_C03_008E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$35,000 to $49,999", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C03_008EA,S2503_C03_008M,S2503_C03_008MA"}, "S1601_C06_007E": {"label": "Estimate!!Percent speak English less than \"very well\"!!Percent of specified language speakers!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Spanish!!65 years old and over", "concept": "Language Spoken at Home", "predicateType": "float", "group": "S1601", "limit": 0, "attributes": "S1601_C06_007EA,S1601_C06_007M,S1601_C06_007MA"}, "S2702_C01_008E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!AGE!!19 to 64 years!!35 to 44 years", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_008EA,S2702_C01_008M,S2702_C01_008MA"}, "S2412_C03_035E": {"label": "Estimate!!Median earnings (dollars) for female!!Full-time, year-round civilian employed population 16 years and over with earnings!!Production, transportation, and material moving occupations:!!Transportation occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C03_035EA,S2412_C03_035M,S2412_C03_035MA"}, "S2603_C06_011E": {"label": "Estimate!!College/university housing!!Total population!!SEX AND AGE!!65 to 74 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C06_011EA,S2603_C06_011M,S2603_C06_011MA"}, "S2603_C06_010E": {"label": "Estimate!!College/university housing!!Total population!!SEX AND AGE!!55 to 64 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C06_010EA,S2603_C06_010M,S2603_C06_010MA"}, "S0501_C02_040E": {"label": "Estimate!!Native!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate (includes equivalency)", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_040EA,S0501_C02_040M,S0501_C02_040MA"}, "S2412_C03_030E": {"label": "Estimate!!Median earnings (dollars) for female!!Full-time, year-round civilian employed population 16 years and over with earnings!!Natural resources, construction, and maintenance occupations:!!Farming, fishing, and forestry occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C03_030EA,S2412_C03_030M,S2412_C03_030MA"}, "S2412_C03_031E": {"label": "Estimate!!Median earnings (dollars) for female!!Full-time, year-round civilian employed population 16 years and over with earnings!!Natural resources, construction, and maintenance occupations:!!Construction and extraction occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C03_031EA,S2412_C03_031M,S2412_C03_031MA"}, "S0501_C02_043E": {"label": "Estimate!!Native!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Graduate or professional degree", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_043EA,S0501_C02_043M,S0501_C02_043MA"}, "S2603_C06_015E": {"label": "Estimate!!College/university housing!!Total population!!SEX AND AGE!!Under 18 years!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C06_015EA,S2603_C06_015M,S2603_C06_015MA"}, "S0501_C02_044E": {"label": "Estimate!!Native!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C02_044EA,S0501_C02_044M,S0501_C02_044MA"}, "S2603_C06_014E": {"label": "Estimate!!College/university housing!!Total population!!SEX AND AGE!!Under 18 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C06_014EA,S2603_C06_014M,S2603_C06_014MA"}, "S0501_C02_041E": {"label": "Estimate!!Native!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college or associate's degree", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_041EA,S0501_C02_041M,S0501_C02_041MA"}, "S2603_C06_013E": {"label": "Estimate!!College/university housing!!Total population!!SEX AND AGE!!85 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C06_013EA,S2603_C06_013M,S2603_C06_013MA"}, "S0501_C02_042E": {"label": "Estimate!!Native!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_042EA,S0501_C02_042M,S0501_C02_042MA"}, "S2603_C06_012E": {"label": "Estimate!!College/university housing!!Total population!!SEX AND AGE!!75 to 84 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C06_012EA,S2603_C06_012M,S2603_C06_012MA"}, "S0504_C01_111E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C01_111EA,S0504_C01_111M,S0504_C01_111MA"}, "S0502PR_C03_109E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Food Stamp/SNAP benefits", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_109EA,S0502PR_C03_109M,S0502PR_C03_109MA"}, "S2603_C01_020E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!Median age (years)", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C01_020EA,S2603_C01_020M,S2603_C01_020MA"}, "S0506_C05_019E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Foreign-born population!!SEX AND AGE!!75 to 84 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_019EA,S0506_C05_019M,S0506_C05_019MA"}, "S0504_C01_110E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!Average number of workers per household", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_110EA,S0504_C01_110M,S0504_C01_110MA"}, "S0502PR_C03_108E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income!!Mean retirement income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_108EA,S0502PR_C03_108M,S0502PR_C03_108MA"}, "S0506_C05_018E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Foreign-born population!!SEX AND AGE!!65 to 74 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_018EA,S0506_C05_018M,S0506_C05_018MA"}, "S0502PR_C03_107E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_107EA,S0502PR_C03_107M,S0502PR_C03_107MA"}, "S0506_C05_017E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Foreign-born population!!SEX AND AGE!!55 to 64 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_017EA,S0506_C05_017M,S0506_C05_017MA"}, "S0502PR_C03_106E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income!!Mean cash public assistance income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C03_106EA,S0502PR_C03_106M,S0502PR_C03_106MA"}, "S0506_C05_016E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Foreign-born population!!SEX AND AGE!!45 to 54 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_016EA,S0506_C05_016M,S0506_C05_016MA"}, "S0504_C01_115E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_115EA,S0504_C01_115M,S0504_C01_115MA"}, "S0506_C05_015E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Foreign-born population!!SEX AND AGE!!25 to 44 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_015EA,S0506_C05_015M,S0506_C05_015MA"}, "S0504_C01_114E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!At or above 200 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_114EA,S0504_C01_114M,S0504_C01_114MA"}, "S0506_C05_014E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Foreign-born population!!SEX AND AGE!!18 to 24 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_014EA,S0506_C05_014M,S0506_C05_014MA"}, "S0504_C01_113E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!100 to 199 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_113EA,S0504_C01_113M,S0504_C01_113MA"}, "S0505_C04_145E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_145EA,S0505_C04_145M,S0505_C04_145MA"}, "S0506_C05_013E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Foreign-born population!!SEX AND AGE!!5 to 17 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_013EA,S0506_C05_013M,S0506_C05_013MA"}, "S0504_C01_112E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!Below 100 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_112EA,S0504_C01_112M,S0504_C01_112MA"}, "S0505_C04_144E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_144EA,S0505_C04_144M,S0505_C04_144MA"}, "S0502PR_C01_071E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!OCCUPATION!!Service occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_071EA,S0502PR_C01_071M,S0502PR_C01_071MA"}, "S2701_C05_018E": {"label": "Estimate!!Percent Uninsured!!Civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!American Indian and Alaska Native alone", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C05_018EA,S2701_C05_018M,S2701_C05_018MA"}, "S1603_C05_006E": {"label": "Estimate!!Percent!!Speak a language other than English at home!!Total population 5 years and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "float", "group": "S1603", "limit": 0, "attributes": "S1603_C05_006EA,S1603_C05_006M,S1603_C05_006MA"}, "S2501_C02_019E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Other family!!Female householder, no spouse present", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C02_019EA,S2501_C02_019M,S2501_C02_019MA"}, "S2603_C01_016E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!Under 18 years!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C01_016EA,S2603_C01_016M,S2603_C01_016MA"}, "S2602_C03_056E": {"label": "Estimate!!Adult correctional facilities!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the United States!!Different county", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C03_056EA,S2602_C03_056M,S2602_C03_056MA"}, "S0502_C02_110E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!Median Household income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C02_110EA,S0502_C02_110M,S0502_C02_110MA"}, "S2802_C04_009E": {"label": "Estimate!!Without an Internet Subscription!!With a computer!!Total population in households!!RACE AND HISPANIC OR LATINO ORIGIN!!Native Hawaiian and Other Pacific Islander alone", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C04_009EA,S2802_C04_009M,S2802_C04_009MA"}, "S0502PR_C01_072E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!OCCUPATION!!Sales and office occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_072EA,S0502PR_C01_072M,S0502PR_C01_072MA"}, "S2701_C05_019E": {"label": "Estimate!!Percent Uninsured!!Civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!Asian alone", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C05_019EA,S2701_C05_019M,S2701_C05_019MA"}, "S1603_C05_005E": {"label": "Estimate!!Percent!!Speak a language other than English at home!!Total population 5 years and over!!NATIVITY AND CITIZENSHIP STATUS!!Native", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "float", "group": "S1603", "limit": 0, "attributes": "S1603_C05_005EA,S1603_C05_005M,S1603_C05_005MA"}, "S2603_C01_015E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!Under 18 years!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C01_015EA,S2603_C01_015M,S2603_C01_015MA"}, "S2602_C03_057E": {"label": "Estimate!!Adult correctional facilities!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the United States!!Different county!!Same state", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C03_057EA,S2602_C03_057M,S2602_C03_057MA"}, "S0601PR_C01_049E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!Below 100 percent of the poverty level", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C01_049EA,S0601PR_C01_049M,S0601PR_C01_049MA"}, "S2501_C02_017E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Other family!!Male householder, no spouse present!!Householder 35 to 64 years", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C02_017EA,S2501_C02_017M,S2501_C02_017MA"}, "S0502_C02_111E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!Average number of workers per household", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_111EA,S0502_C02_111M,S0502_C02_111MA"}, "S1603_C05_008E": {"label": "Estimate!!Percent!!Speak a language other than English at home!!Total population 5 years and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born!!Not a U.S. citizen", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "float", "group": "S1603", "limit": 0, "attributes": "S1603_C05_008EA,S1603_C05_008M,S1603_C05_008MA"}, "S2701_C05_016E": {"label": "Estimate!!Percent Uninsured!!Civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C05_016EA,S2701_C05_016M,S2701_C05_016MA"}, "S2602_C03_058E": {"label": "Estimate!!Adult correctional facilities!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the United States!!Different county!!Different state", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C03_058EA,S2602_C03_058M,S2602_C03_058MA"}, "S2603_C01_014E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!Under 18 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C01_014EA,S2603_C01_014M,S2603_C01_014MA"}, "S0502PR_C01_073E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!OCCUPATION!!Natural resources, construction, and maintenance occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_073EA,S0502PR_C01_073M,S0502PR_C01_073MA"}, "S2501_C02_018E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Other family!!Male householder, no spouse present!!Householder 65 years and over", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C02_018EA,S2501_C02_018M,S2501_C02_018MA"}, "S0502_C02_112E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C02_112EA,S0502_C02_112M,S0502_C02_112MA"}, "S1603_C05_007E": {"label": "Estimate!!Percent!!Speak a language other than English at home!!Total population 5 years and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born!!Naturalized U.S. citizen", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "float", "group": "S1603", "limit": 0, "attributes": "S1603_C05_007EA,S1603_C05_007M,S1603_C05_007MA"}, "S2701_C05_017E": {"label": "Estimate!!Percent Uninsured!!Civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!Black or African American alone", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C05_017EA,S2701_C05_017M,S2701_C05_017MA"}, "S2602_C03_059E": {"label": "Estimate!!Adult correctional facilities!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Abroad", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C03_059EA,S2602_C03_059M,S2602_C03_059MA"}, "S2603_C01_013E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!85 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C01_013EA,S2603_C01_013M,S2603_C01_013MA"}, "S0502PR_C01_074E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!OCCUPATION!!Production, transportation, and material moving occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_074EA,S0502PR_C01_074M,S0502PR_C01_074MA"}, "S2701_C05_014E": {"label": "Estimate!!Percent Uninsured!!Civilian noninstitutionalized population!!SEX!!Male", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C05_014EA,S2701_C05_014M,S2701_C05_014MA"}, "S0504_C04_048E": {"label": "Estimate!!Foreign-born; Born in Oceania!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate (includes equivalency)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_048EA,S0504_C04_048M,S0504_C04_048MA"}, "S0502PR_C01_075E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Agriculture, forestry, fishing and hunting, and mining", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_075EA,S0502PR_C01_075M,S0502PR_C01_075MA"}, "S2603_C01_012E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!75 to 84 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C01_012EA,S2603_C01_012M,S2603_C01_012MA"}, "S0504_C04_049E": {"label": "Estimate!!Foreign-born; Born in Oceania!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college or associate's degree", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_049EA,S0504_C04_049M,S0504_C04_049MA"}, "S2701_C05_015E": {"label": "Estimate!!Percent Uninsured!!Civilian noninstitutionalized population!!SEX!!Female", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C05_015EA,S2701_C05_015M,S2701_C05_015MA"}, "S2603_C01_011E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!65 to 74 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C01_011EA,S2603_C01_011M,S2603_C01_011MA"}, "S0502PR_C01_076E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Construction", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_076EA,S0502PR_C01_076M,S0502PR_C01_076MA"}, "S1603_C05_009E": {"label": "Estimate!!Percent!!Speak a language other than English at home!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population 5 years and over for whom poverty status is determined", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "int", "group": "S1603", "limit": 0, "attributes": "S1603_C05_009EA,S1603_C05_009M,S1603_C05_009MA"}, "S0503_C01_051E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Graduate or professional degree", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_051EA,S0503_C01_051M,S0503_C01_051MA"}, "S2701_C05_012E": {"label": "Estimate!!Percent Uninsured!!Civilian noninstitutionalized population!!AGE!!19 to 64 years", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C05_012EA,S2701_C05_012M,S2701_C05_012MA"}, "S0506_C02_145E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_145EA,S0506_C02_145M,S0506_C02_145MA"}, "S0502PR_C01_077E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Manufacturing", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_077EA,S0502PR_C01_077M,S0502PR_C01_077MA"}, "S2603_C01_010E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!55 to 64 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C01_010EA,S2603_C01_010M,S2603_C01_010MA"}, "S0503_C01_050E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_050EA,S0503_C01_050M,S0503_C01_050MA"}, "S2701_C05_013E": {"label": "Estimate!!Percent Uninsured!!Civilian noninstitutionalized population!!AGE!!65 years and older", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C05_013EA,S2701_C05_013M,S2701_C05_013MA"}, "S0502PR_C01_078E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Wholesale trade", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_078EA,S0502PR_C01_078M,S0502PR_C01_078MA"}, "S0503_C01_053E": {"label": "Estimate!!Total!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!English only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_053EA,S0503_C01_053M,S0503_C01_053MA"}, "S0504_C04_044E": {"label": "Estimate!!Foreign-born; Born in Oceania!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!High school (grades 9-12)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_044EA,S0504_C04_044M,S0504_C04_044MA"}, "S2802_C04_002E": {"label": "Estimate!!Without an Internet Subscription!!With a computer!!Total population in households!!AGE!!Under 18 years", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C04_002EA,S2802_C04_002M,S2802_C04_002MA"}, "S0102_C01_018E": {"label": "Estimate!!Total!!RELATIONSHIP!!Population in households!!Other relatives", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_018EA,S0102_C01_018M,S0102_C01_018MA"}, "S0502PR_C01_079E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Retail trade", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_079EA,S0502PR_C01_079M,S0502PR_C01_079MA"}, "S2405_C04_003E": {"label": "Estimate!!Sales and office occupations!!Civilian employed population 16 years and over!!Construction", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2405", "limit": 0, "attributes": "S2405_C04_003EA,S2405_C04_003M,S2405_C04_003MA"}, "S0503_C01_052E": {"label": "Estimate!!Total!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C01_052EA,S0503_C01_052M,S0503_C01_052MA"}, "S2405_C04_002E": {"label": "Estimate!!Sales and office occupations!!Civilian employed population 16 years and over!!Agriculture, forestry, fishing and hunting, and mining", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2405", "limit": 0, "attributes": "S2405_C04_002EA,S2405_C04_002M,S2405_C04_002MA"}, "S2802_C04_001E": {"label": "Estimate!!Without an Internet Subscription!!With a computer!!Total population in households", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C04_001EA,S2802_C04_001M,S2802_C04_001MA"}, "S0102_C01_017E": {"label": "Estimate!!Total!!RELATIONSHIP!!Population in households!!Parent", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_017EA,S0102_C01_017M,S0102_C01_017MA"}, "S0504_C04_045E": {"label": "Estimate!!Foreign-born; Born in Oceania!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!College or graduate school", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_045EA,S0504_C04_045M,S0504_C04_045MA"}, "S0503_C01_055E": {"label": "Estimate!!Total!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English!!Speak English less than \"very well\"", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_055EA,S0503_C01_055M,S0503_C01_055MA"}, "S2802_C04_004E": {"label": "Estimate!!Without an Internet Subscription!!With a computer!!Total population in households!!AGE!!65 years and over", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C04_004EA,S2802_C04_004M,S2802_C04_004MA"}, "S0504_C04_046E": {"label": "Estimate!!Foreign-born; Born in Oceania!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C04_046EA,S0504_C04_046M,S0504_C04_046MA"}, "S2405_C04_005E": {"label": "Estimate!!Sales and office occupations!!Civilian employed population 16 years and over!!Wholesale trade", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2405", "limit": 0, "attributes": "S2405_C04_005EA,S2405_C04_005M,S2405_C04_005MA"}, "S0503_C01_054E": {"label": "Estimate!!Total!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_054EA,S0503_C01_054M,S0503_C01_054MA"}, "S2802_C04_003E": {"label": "Estimate!!Without an Internet Subscription!!With a computer!!Total population in households!!AGE!!18 to 64 years", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C04_003EA,S2802_C04_003M,S2802_C04_003MA"}, "S0102_C01_019E": {"label": "Estimate!!Total!!RELATIONSHIP!!Population in households!!Nonrelatives", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_019EA,S0102_C01_019M,S0102_C01_019MA"}, "S0504_C04_047E": {"label": "Estimate!!Foreign-born; Born in Oceania!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than high school graduate", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_047EA,S0504_C04_047M,S0504_C04_047MA"}, "S2405_C04_004E": {"label": "Estimate!!Sales and office occupations!!Civilian employed population 16 years and over!!Manufacturing", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2405", "limit": 0, "attributes": "S2405_C04_004EA,S2405_C04_004M,S2405_C04_004MA"}, "S0503_C01_057E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_057EA,S0503_C01_057M,S0503_C01_057MA"}, "S2802_C04_006E": {"label": "Estimate!!Without an Internet Subscription!!With a computer!!Total population in households!!RACE AND HISPANIC OR LATINO ORIGIN!!Black or African American alone", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C04_006EA,S2802_C04_006M,S2802_C04_006MA"}, "S0701PR_C02_049E": {"label": "Estimate!!Moved; within same municipio!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population 1 year and over for whom poverty status is determined", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C02_049EA,S0701PR_C02_049M,S0701PR_C02_049MA"}, "S0504_C04_040E": {"label": "Estimate!!Foreign-born; Born in Oceania!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_040EA,S0504_C04_040M,S0504_C04_040MA"}, "S0804_C05_093E": {"label": "Estimate!!Worked from home!!Workers 16 years and over in households!!VEHICLES AVAILABLE!!3 or more vehicles available", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C05_093EA,S0804_C05_093M,S0804_C05_093MA"}, "S1603_C05_002E": {"label": "Estimate!!Percent!!Speak a language other than English at home!!Total population 5 years and over!!AGE!!5 to 17 years", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "float", "group": "S1603", "limit": 0, "attributes": "S1603_C05_002EA,S1603_C05_002M,S1603_C05_002MA"}, "S1501_C03_016E": {"label": "Estimate!!Male!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 to 34 years", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C03_016EA,S1501_C03_016M,S1501_C03_016MA"}, "S2405_C04_007E": {"label": "Estimate!!Sales and office occupations!!Civilian employed population 16 years and over!!Transportation and warehousing, and utilities", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2405", "limit": 0, "attributes": "S2405_C04_007EA,S2405_C04_007M,S2405_C04_007MA"}, "S0503_C01_056E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Population 16 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C01_056EA,S0503_C01_056M,S0503_C01_056MA"}, "S2603_C01_019E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!65 years and over!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C01_019EA,S2603_C01_019M,S2603_C01_019MA"}, "S1501_C03_017E": {"label": "Estimate!!Male!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 to 34 years!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C03_017EA,S1501_C03_017M,S1501_C03_017MA"}, "S0504_C04_041E": {"label": "Estimate!!Foreign-born; Born in Oceania!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C04_041EA,S0504_C04_041M,S0504_C04_041MA"}, "S2802_C04_005E": {"label": "Estimate!!Without an Internet Subscription!!With a computer!!Total population in households!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C04_005EA,S2802_C04_005M,S2802_C04_005MA"}, "S0804_C05_092E": {"label": "Estimate!!Worked from home!!Workers 16 years and over in households!!VEHICLES AVAILABLE!!2 vehicles available", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C05_092EA,S0804_C05_092M,S0804_C05_092MA"}, "S1603_C05_001E": {"label": "Estimate!!Percent!!Speak a language other than English at home!!Total population 5 years and over", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "int", "group": "S1603", "limit": 0, "attributes": "S1603_C05_001EA,S1603_C05_001M,S1603_C05_001MA"}, "S2405_C04_006E": {"label": "Estimate!!Sales and office occupations!!Civilian employed population 16 years and over!!Retail trade", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2405", "limit": 0, "attributes": "S2405_C04_006EA,S2405_C04_006M,S2405_C04_006MA"}, "S0503_C01_059E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Employed", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_059EA,S0503_C01_059M,S0503_C01_059MA"}, "S1501_C03_018E": {"label": "Estimate!!Male!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 to 34 years!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C03_018EA,S1501_C03_018M,S1501_C03_018MA"}, "S2603_C01_018E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!65 years and over!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C01_018EA,S2603_C01_018M,S2603_C01_018MA"}, "S2802_C04_008E": {"label": "Estimate!!Without an Internet Subscription!!With a computer!!Total population in households!!RACE AND HISPANIC OR LATINO ORIGIN!!Asian alone", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C04_008EA,S2802_C04_008M,S2802_C04_008MA"}, "S0701PR_C02_047E": {"label": "Estimate!!Moved; within same municipio!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$75,000 or more", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C02_047EA,S0701PR_C02_047M,S0701PR_C02_047MA"}, "S0504_C04_042E": {"label": "Estimate!!Foreign-born; Born in Oceania!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Nursery school, preschool", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_042EA,S0504_C04_042M,S0504_C04_042MA"}, "S1603_C05_004E": {"label": "Estimate!!Percent!!Speak a language other than English at home!!Total population 5 years and over!!AGE!!65 years and over", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "float", "group": "S1603", "limit": 0, "attributes": "S1603_C05_004EA,S1603_C05_004M,S1603_C05_004MA"}, "S0804_C05_091E": {"label": "Estimate!!Worked from home!!Workers 16 years and over in households!!VEHICLES AVAILABLE!!1 vehicle available", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C05_091EA,S0804_C05_091M,S0804_C05_091MA"}, "S1602_C02_005E": {"label": "Estimate!!Percent!!All households!!Households speaking --!!Other languages", "concept": "Limited English Speaking Households", "predicateType": "float", "group": "S1602", "limit": 0, "attributes": "S1602_C02_005EA,S1602_C02_005M,S1602_C02_005MA"}, "S2405_C04_009E": {"label": "Estimate!!Sales and office occupations!!Civilian employed population 16 years and over!!Finance and insurance, and real estate and rental and leasing", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2405", "limit": 0, "attributes": "S2405_C04_009EA,S2405_C04_009M,S2405_C04_009MA"}, "S0503_C01_058E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_058EA,S0503_C01_058M,S0503_C01_058MA"}, "S2603_C01_017E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!65 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C01_017EA,S2603_C01_017M,S2603_C01_017MA"}, "S1501_C03_019E": {"label": "Estimate!!Male!!AGE BY EDUCATIONAL ATTAINMENT!!Population 35 to 44 years", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C03_019EA,S1501_C03_019M,S1501_C03_019MA"}, "S0504_C04_043E": {"label": "Estimate!!Foreign-born; Born in Oceania!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Elementary school (grades K-8)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_043EA,S0504_C04_043M,S0504_C04_043MA"}, "S0701PR_C02_048E": {"label": "Estimate!!Moved; within same municipio!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!Median income (dollars)", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "int", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C02_048EA,S0701PR_C02_048M,S0701PR_C02_048MA"}, "S2802_C04_007E": {"label": "Estimate!!Without an Internet Subscription!!With a computer!!Total population in households!!RACE AND HISPANIC OR LATINO ORIGIN!!American Indian and Alaska Native alone", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C04_007EA,S2802_C04_007M,S2802_C04_007MA"}, "S1603_C05_003E": {"label": "Estimate!!Percent!!Speak a language other than English at home!!Total population 5 years and over!!AGE!!18 to 64 years", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "float", "group": "S1603", "limit": 0, "attributes": "S1603_C05_003EA,S1603_C05_003M,S1603_C05_003MA"}, "S0804_C05_090E": {"label": "Estimate!!Worked from home!!Workers 16 years and over in households!!VEHICLES AVAILABLE!!No vehicle available", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C05_090EA,S0804_C05_090M,S0804_C05_090MA"}, "S2405_C04_008E": {"label": "Estimate!!Sales and office occupations!!Civilian employed population 16 years and over!!Information", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2405", "limit": 0, "attributes": "S2405_C04_008EA,S2405_C04_008M,S2405_C04_008MA"}, "S0804_C05_097E": {"label": "Estimate!!Worked from home!!PERCENT ALLOCATED!!Vehicles available", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "int", "group": "S0804", "limit": 0, "attributes": "S0804_C05_097EA,S0804_C05_097M,S0804_C05_097MA"}, "S2303_C02_029E": {"label": "Estimate!!Percent!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 1 to 14 hours per week!!1 to 13 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C02_029EA,S2303_C02_029M,S2303_C02_029MA"}, "S0102_C01_010E": {"label": "Estimate!!Total!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_010EA,S0102_C01_010M,S0102_C01_010MA"}, "S2603_C06_047E": {"label": "Estimate!!College/university housing!!DISABILITY STATUS!!Population 18 to 64 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C06_047EA,S2603_C06_047M,S2603_C06_047MA"}, "S0503_C01_049E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college or associate's degree", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_049EA,S0503_C01_049M,S0503_C01_049MA"}, "S1501_C03_012E": {"label": "Estimate!!Male!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C03_012EA,S1501_C03_012M,S1501_C03_012MA"}, "S0503_C01_048E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate (includes equivalency)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_048EA,S0503_C01_048M,S0503_C01_048MA"}, "S0804_C05_096E": {"label": "Estimate!!Worked from home!!PERCENT ALLOCATED!!Travel time to work", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "int", "group": "S0804", "limit": 0, "attributes": "S0804_C05_096EA,S0804_C05_096M,S0804_C05_096MA"}, "S2702_C01_090E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION ADJUSTED DOLLARS)!!Civilian noninstitutionalized population 16 years and over with earnings!!$75,000 or more", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_090EA,S2702_C01_090M,S2702_C01_090MA"}, "S1501_C03_013E": {"label": "Estimate!!Male!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Graduate or professional degree", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C03_013EA,S1501_C03_013M,S1501_C03_013MA"}, "S2603_C06_046E": {"label": "Estimate!!College/university housing!!DISABILITY STATUS!!Total population!!With a disability", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C06_046EA,S2603_C06_046M,S2603_C06_046MA"}, "S0804_C05_095E": {"label": "Estimate!!Worked from home!!PERCENT ALLOCATED!!Time arriving at work from home", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "int", "group": "S0804", "limit": 0, "attributes": "S0804_C05_095EA,S0804_C05_095M,S0804_C05_095MA"}, "S0701PR_C02_055E": {"label": "Estimate!!Moved; within same municipio!!HOUSING TENURE!!Population 1 year and over in housing units!!Householder lived in renter-occupied housing units", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C02_055EA,S0701PR_C02_055M,S0701PR_C02_055MA"}, "S0102_C01_012E": {"label": "Estimate!!Total!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_012EA,S0102_C01_012M,S0102_C01_012MA"}, "S1501_C03_014E": {"label": "Estimate!!Male!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C03_014EA,S1501_C03_014M,S1501_C03_014MA"}, "S2603_C06_045E": {"label": "Estimate!!College/university housing!!DISABILITY STATUS!!Total population", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C06_045EA,S2603_C06_045M,S2603_C06_045MA"}, "S2603_C06_044E": {"label": "Estimate!!College/university housing!!VETERAN STATUS!!Civilian population 18 years and over!!Civilian veteran", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C06_044EA,S2603_C06_044M,S2603_C06_044MA"}, "S0804_C05_094E": {"label": "Estimate!!Worked from home!!PERCENT ALLOCATED!!Means of transportation to work", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "int", "group": "S0804", "limit": 0, "attributes": "S0804_C05_094EA,S0804_C05_094M,S0804_C05_094MA"}, "S0701PR_C02_056E": {"label": "Estimate!!Moved; within same municipio!!PERCENT ALLOCATED!!Residence 1 year ago", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "int", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C02_056EA,S0701PR_C02_056M,S0701PR_C02_056MA"}, "S0102_C01_011E": {"label": "Estimate!!Total!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_011EA,S0102_C01_011M,S0102_C01_011MA"}, "S1501_C03_015E": {"label": "Estimate!!Male!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C03_015EA,S1501_C03_015M,S1501_C03_015MA"}, "S2405_C04_011E": {"label": "Estimate!!Sales and office occupations!!Civilian employed population 16 years and over!!Educational services, and health care and social assistance", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2405", "limit": 0, "attributes": "S2405_C04_011EA,S2405_C04_011M,S2405_C04_011MA"}, "S2502_C05_019E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!EDUCATIONAL ATTAINMENT OF HOUSEHOLDER!!High school graduate (includes equivalency)", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C05_019EA,S2502_C05_019M,S2502_C05_019MA"}, "S2702_C01_093E": {"label": "Estimate!!Total!!HOUSEHOLD INCOME (IN 2024 INFLATION ADJUSTED DOLLARS)!!Total household population!!Under $25,000", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_093EA,S2702_C01_093M,S2702_C01_093MA"}, "S0701PR_C02_053E": {"label": "Estimate!!Moved; within same municipio!!HOUSING TENURE!!Population 1 year and over in housing units", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C02_053EA,S0701PR_C02_053M,S0701PR_C02_053MA"}, "S0102_C01_014E": {"label": "Estimate!!Total!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_014EA,S0102_C01_014M,S0102_C01_014MA"}, "S0502_C02_109E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Food Stamp/SNAP benefits", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_109EA,S0502_C02_109M,S0502_C02_109MA"}, "S2303_C02_025E": {"label": "Estimate!!Percent!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 1 to 14 hours per week!!48 to 49 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C02_025EA,S2303_C02_025M,S2303_C02_025MA"}, "S0103PR_C01_082E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income!!Mean retirement income (dollars)", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_082EA,S0103PR_C01_082M,S0103PR_C01_082MA"}, "S2501_C02_020E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Other family!!Female householder, no spouse present!!Householder 15 to 34 years", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C02_020EA,S2501_C02_020M,S2501_C02_020MA"}, "S2405_C04_010E": {"label": "Estimate!!Sales and office occupations!!Civilian employed population 16 years and over!!Professional, scientific, and management, and administrative and waste management services", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2405", "limit": 0, "attributes": "S2405_C04_010EA,S2405_C04_010M,S2405_C04_010MA"}, "S2702_C01_094E": {"label": "Estimate!!Total!!HOUSEHOLD INCOME (IN 2024 INFLATION ADJUSTED DOLLARS)!!Total household population!!$25,000 to $49,999", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_094EA,S2702_C01_094M,S2702_C01_094MA"}, "S0701PR_C02_054E": {"label": "Estimate!!Moved; within same municipio!!HOUSING TENURE!!Population 1 year and over in housing units!!Householder lived in owner-occupied housing units", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C02_054EA,S0701PR_C02_054M,S0701PR_C02_054MA"}, "S0102_C01_013E": {"label": "Estimate!!Total!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_013EA,S0102_C01_013M,S0102_C01_013MA"}, "S0103PR_C01_083E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Food Stamp/SNAP benefits", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_083EA,S0103PR_C01_083M,S0103PR_C01_083MA"}, "S2303_C02_026E": {"label": "Estimate!!Percent!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 1 to 14 hours per week!!40 to 47 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C02_026EA,S2303_C02_026M,S2303_C02_026MA"}, "S0601PR_C01_040E": {"label": "Estimate!!Total!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$10,000 to $14,999", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C01_040EA,S0601PR_C01_040M,S0601PR_C01_040MA"}, "S2405_C04_013E": {"label": "Estimate!!Sales and office occupations!!Civilian employed population 16 years and over!!Other services, except public administration", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2405", "limit": 0, "attributes": "S2405_C04_013EA,S2405_C04_013M,S2405_C04_013MA"}, "S2702_C01_091E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION ADJUSTED DOLLARS)!!Civilian noninstitutionalized population 16 years and over with earnings!!Median earnings (dollars)", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "int", "group": "S2702", "limit": 0, "attributes": "S2702_C01_091EA,S2702_C01_091M,S2702_C01_091MA"}, "S2502_C05_017E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!AGE OF HOUSEHOLDER!!85 years and over", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C05_017EA,S2502_C05_017M,S2502_C05_017MA"}, "S0701PR_C02_051E": {"label": "Estimate!!Moved; within same municipio!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population 1 year and over for whom poverty status is determined!!100 to 149 percent of the poverty level", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C02_051EA,S0701PR_C02_051M,S0701PR_C02_051MA"}, "S0102_C01_016E": {"label": "Estimate!!Total!!RELATIONSHIP!!Population in households!!Householder or spouse", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_016EA,S0102_C01_016M,S0102_C01_016MA"}, "S2603_C06_049E": {"label": "Estimate!!College/university housing!!DISABILITY STATUS!!Population 18 to 64 years!!No disability", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C06_049EA,S2603_C06_049M,S2603_C06_049MA"}, "S2303_C02_027E": {"label": "Estimate!!Percent!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 1 to 14 hours per week!!27 to 39 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C02_027EA,S2303_C02_027M,S2303_C02_027MA"}, "S0103PR_C01_080E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income!!Mean cash public assistance income (dollars)", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_080EA,S0103PR_C01_080M,S0103PR_C01_080MA"}, "S1501_C03_010E": {"label": "Estimate!!Male!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college, no degree", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C03_010EA,S1501_C03_010M,S1501_C03_010MA"}, "S0506_C05_009E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen!!Entered before 2000", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_009EA,S0506_C05_009M,S0506_C05_009MA"}, "S2405_C04_012E": {"label": "Estimate!!Sales and office occupations!!Civilian employed population 16 years and over!!Arts, entertainment, and recreation, and accommodation and food services", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2405", "limit": 0, "attributes": "S2405_C04_012EA,S2405_C04_012M,S2405_C04_012MA"}, "S2702_C01_092E": {"label": "Estimate!!Total!!HOUSEHOLD INCOME (IN 2024 INFLATION ADJUSTED DOLLARS)!!Total household population", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "int", "group": "S2702", "limit": 0, "attributes": "S2702_C01_092EA,S2702_C01_092M,S2702_C01_092MA"}, "S2502_C05_018E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!EDUCATIONAL ATTAINMENT OF HOUSEHOLDER!!Less than high school graduate", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C05_018EA,S2502_C05_018M,S2502_C05_018MA"}, "S0701PR_C02_052E": {"label": "Estimate!!Moved; within same municipio!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population 1 year and over for whom poverty status is determined!!At or above 150 percent of the poverty level", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C02_052EA,S0701PR_C02_052M,S0701PR_C02_052MA"}, "S0102_C01_015E": {"label": "Estimate!!Total!!RELATIONSHIP!!Population in households", "concept": "Population 60 Years and Over in the United States", "predicateType": "int", "group": "S0102", "limit": 0, "attributes": "S0102_C01_015EA,S0102_C01_015M,S0102_C01_015MA"}, "S2303_C02_028E": {"label": "Estimate!!Percent!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 1 to 14 hours per week!!14 to 26 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C02_028EA,S2303_C02_028M,S2303_C02_028MA"}, "S2603_C06_048E": {"label": "Estimate!!College/university housing!!DISABILITY STATUS!!Population 18 to 64 years!!With a disability", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C06_048EA,S2603_C06_048M,S2603_C06_048MA"}, "S0103PR_C01_081E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_081EA,S0103PR_C01_081M,S0103PR_C01_081MA"}, "S1501_C03_011E": {"label": "Estimate!!Male!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Associate's degree", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C03_011EA,S1501_C03_011M,S1501_C03_011MA"}, "S0601PR_C01_042E": {"label": "Estimate!!Total!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$25,000 to $34,999", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C01_042EA,S0601PR_C01_042M,S0601PR_C01_042MA"}, "S0506_C05_008E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen!!Entered 2000 to 2009", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_008EA,S0506_C05_008M,S0506_C05_008MA"}, "S2702_C01_097E": {"label": "Estimate!!Total!!HOUSEHOLD INCOME (IN 2024 INFLATION ADJUSTED DOLLARS)!!Total household population!!$100,000 and over", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_097EA,S2702_C01_097M,S2702_C01_097MA"}, "S2701_C05_022E": {"label": "Estimate!!Percent Uninsured!!Civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C05_022EA,S2701_C05_022M,S2701_C05_022MA"}, "S2502_C05_015E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!AGE OF HOUSEHOLDER!!65 to 74 years", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C05_015EA,S2502_C05_015M,S2502_C05_015MA"}, "S2501_C02_023E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Nonfamily households", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C02_023EA,S2501_C02_023M,S2501_C02_023MA"}, "S2303_C02_021E": {"label": "Estimate!!Percent!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 15 to 34 hours per week!!14 to 26 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C02_021EA,S2303_C02_021M,S2303_C02_021MA"}, "S0502_C02_105E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_105EA,S0502_C02_105M,S0502_C02_105MA"}, "S0103PR_C01_086E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!100 to 149 percent of the poverty level", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_086EA,S0103PR_C01_086M,S0103PR_C01_086MA"}, "S0601PR_C01_041E": {"label": "Estimate!!Total!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$15,000 to $24,999", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C01_041EA,S0601PR_C01_041M,S0601PR_C01_041MA"}, "S2702_C01_098E": {"label": "Estimate!!Total!!HOUSEHOLD INCOME (IN 2024 INFLATION ADJUSTED DOLLARS)!!Total household population!!Median household income of householders", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "int", "group": "S2702", "limit": 0, "attributes": "S2702_C01_098EA,S2702_C01_098M,S2702_C01_098MA"}, "S0506_C05_007E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen!!Entered 2010 or later", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_007EA,S0506_C05_007M,S0506_C05_007MA"}, "S2701_C05_023E": {"label": "Estimate!!Percent Uninsured!!Civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino (of any race)", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C05_023EA,S2701_C05_023M,S2701_C05_023MA"}, "S2501_C02_024E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Nonfamily households!!Householder living alone", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C02_024EA,S2501_C02_024M,S2501_C02_024MA"}, "S2502_C05_016E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!AGE OF HOUSEHOLDER!!75 to 84 years", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C05_016EA,S2502_C05_016M,S2502_C05_016MA"}, "S0502_C02_106E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income!!Mean cash public assistance income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C02_106EA,S0502_C02_106M,S0502_C02_106MA"}, "S0701PR_C02_050E": {"label": "Estimate!!Moved; within same municipio!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population 1 year and over for whom poverty status is determined!!Below 100 percent of the poverty level", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C02_050EA,S0701PR_C02_050M,S0701PR_C02_050MA"}, "S0103PR_C01_087E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!At or above 150 percent of the poverty level", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_087EA,S0103PR_C01_087M,S0103PR_C01_087MA"}, "S2303_C02_022E": {"label": "Estimate!!Percent!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 15 to 34 hours per week!!1 to 13 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C02_022EA,S2303_C02_022M,S2303_C02_022MA"}, "S2501_C02_021E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Other family!!Female householder, no spouse present!!Householder 35 to 64 years", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C02_021EA,S2501_C02_021M,S2501_C02_021MA"}, "S0506_C05_006E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_006EA,S0506_C05_006M,S0506_C05_006MA"}, "S0601PR_C01_044E": {"label": "Estimate!!Total!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$50,000 to $64,999", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C01_044EA,S0601PR_C01_044M,S0601PR_C01_044MA"}, "S2702_C01_095E": {"label": "Estimate!!Total!!HOUSEHOLD INCOME (IN 2024 INFLATION ADJUSTED DOLLARS)!!Total household population!!$50,000 to $74,999", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_095EA,S2702_C01_095M,S2702_C01_095MA"}, "S1811_C01_001E": {"label": "Estimate!!Total Civilian Noninstitutionalized Population!!Population Age 16 and Over", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "int", "group": "S1811", "limit": 0, "attributes": "S1811_C01_001EA,S1811_C01_001M,S1811_C01_001MA"}, "S2701_C05_020E": {"label": "Estimate!!Percent Uninsured!!Civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!Native Hawaiian and Other Pacific Islander alone", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C05_020EA,S2701_C05_020M,S2701_C05_020MA"}, "S2602_C03_050E": {"label": "Estimate!!Adult correctional facilities!!DISABILITY STATUS!!Population 65 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C03_050EA,S2602_C03_050M,S2602_C03_050MA"}, "S2502_C05_013E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!AGE OF HOUSEHOLDER!!45 to 54 years", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C05_013EA,S2502_C05_013M,S2502_C05_013MA"}, "S0502_C02_107E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_107EA,S0502_C02_107M,S0502_C02_107MA"}, "S0103PR_C01_084E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_084EA,S0103PR_C01_084M,S0103PR_C01_084MA"}, "S2303_C02_023E": {"label": "Estimate!!Percent!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 1 to 14 hours per week", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C02_023EA,S2303_C02_023M,S2303_C02_023MA"}, "S0601PR_C01_043E": {"label": "Estimate!!Total!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$35,000 to $49,999", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C01_043EA,S0601PR_C01_043M,S0601PR_C01_043MA"}, "S1811_C01_002E": {"label": "Estimate!!Total Civilian Noninstitutionalized Population!!Population Age 16 and Over!!EMPLOYMENT STATUS!!Employed", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C01_002EA,S1811_C01_002M,S1811_C01_002MA"}, "S2701_C05_021E": {"label": "Estimate!!Percent Uninsured!!Civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!Some other race alone", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C05_021EA,S2701_C05_021M,S2701_C05_021MA"}, "S2702_C01_096E": {"label": "Estimate!!Total!!HOUSEHOLD INCOME (IN 2024 INFLATION ADJUSTED DOLLARS)!!Total household population!!$75,000 to $99,999", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_096EA,S2702_C01_096M,S2702_C01_096MA"}, "S0506_C05_005E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen!!Entered before 2000", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_005EA,S0506_C05_005M,S0506_C05_005MA"}, "S2501_C02_022E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Other family!!Female householder, no spouse present!!Householder 65 years and over", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C02_022EA,S2501_C02_022M,S2501_C02_022MA"}, "S2602_C03_051E": {"label": "Estimate!!Adult correctional facilities!!DISABILITY STATUS!!Population 65 years and over!!With a disability", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C03_051EA,S2602_C03_051M,S2602_C03_051MA"}, "S2502_C05_014E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!AGE OF HOUSEHOLDER!!55 to 64 years", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C05_014EA,S2502_C05_014M,S2502_C05_014MA"}, "S0502_C02_108E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income!!Mean retirement income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C02_108EA,S0502_C02_108M,S0502_C02_108MA"}, "S0103PR_C01_085E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!Below 100 percent of the poverty level", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_085EA,S0103PR_C01_085M,S0103PR_C01_085MA"}, "S2303_C02_024E": {"label": "Estimate!!Percent!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 1 to 14 hours per week!!50 to 52 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C02_024EA,S2303_C02_024M,S2303_C02_024MA"}, "S2603_C06_043E": {"label": "Estimate!!College/university housing!!VETERAN STATUS!!Civilian population 18 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C06_043EA,S2603_C06_043M,S2603_C06_043MA"}, "S0601PR_C01_046E": {"label": "Estimate!!Total!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$75,000 or more", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C01_046EA,S0601PR_C01_046M,S0601PR_C01_046MA"}, "S0506_C05_004E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen!!Entered 2000 to 2009", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_004EA,S0506_C05_004M,S0506_C05_004MA"}, "S1811_C01_003E": {"label": "Estimate!!Total Civilian Noninstitutionalized Population!!Population Age 16 and Over!!EMPLOYMENT STATUS!!Not in Labor Force", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C01_003EA,S1811_C01_003M,S1811_C01_003MA"}, "S2501_C02_027E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Nonfamily households!!Householder living alone!!Householder 65 years and over", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C02_027EA,S2501_C02_027M,S2501_C02_027MA"}, "S0502_C02_101E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_101EA,S0502_C02_101M,S0502_C02_101MA"}, "S2502_C05_011E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!AGE OF HOUSEHOLDER!!Under 35 years", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C05_011EA,S2502_C05_011M,S2502_C05_011MA"}, "S2602_C03_052E": {"label": "Estimate!!Adult correctional facilities!!RESIDENCE 1 YEAR AGO!!Population 1 year and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C03_052EA,S2602_C03_052M,S2602_C03_052MA"}, "S2603_C06_042E": {"label": "Estimate!!College/university housing!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree or higher", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C06_042EA,S2603_C06_042M,S2603_C06_042MA"}, "S0601PR_C01_045E": {"label": "Estimate!!Total!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$65,000 to $74,999", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C01_045EA,S0601PR_C01_045M,S0601PR_C01_045MA"}, "S2501_C02_028E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Nonfamily households!!Householder not living alone", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C02_028EA,S2501_C02_028M,S2501_C02_028MA"}, "S1811_C01_004E": {"label": "Estimate!!Total Civilian Noninstitutionalized Population!!Employed Population Age 16 and Over", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "int", "group": "S1811", "limit": 0, "attributes": "S1811_C01_004EA,S1811_C01_004M,S1811_C01_004MA"}, "S0506_C05_003E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen!!Entered 2010 or later", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_003EA,S0506_C05_003M,S0506_C05_003MA"}, "S0502_C02_102E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income!!Mean Social Security income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C02_102EA,S0502_C02_102M,S0502_C02_102MA"}, "S0502PR_C01_080E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Transportation and warehousing, and utilities", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_080EA,S0502PR_C01_080M,S0502PR_C01_080MA"}, "S2502_C05_012E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!AGE OF HOUSEHOLDER!!35 to 44 years", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C05_012EA,S2502_C05_012M,S2502_C05_012MA"}, "S2602_C03_053E": {"label": "Estimate!!Adult correctional facilities!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Same address", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C03_053EA,S2602_C03_053M,S2602_C03_053MA"}, "S2603_C06_041E": {"label": "Estimate!!College/university housing!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate or higher", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C06_041EA,S2603_C06_041M,S2603_C06_041MA"}, "S2702_C01_099E": {"label": "Estimate!!Total!!RATIO OF INCOME TO POVERTY LEVEL IN THE PAST 12 MONTHS!!Civilian noninstitutionalized population for whom poverty status is determined", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "int", "group": "S2702", "limit": 0, "attributes": "S2702_C01_099EA,S2702_C01_099M,S2702_C01_099MA"}, "S0506_C05_002E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_002EA,S0506_C05_002M,S0506_C05_002MA"}, "S1811_C01_005E": {"label": "Estimate!!Total Civilian Noninstitutionalized Population!!Employed Population Age 16 and Over!!CLASS OF WORKER!!Private for-profit wage and salary workers", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C01_005EA,S1811_C01_005M,S1811_C01_005MA"}, "S2501_C02_025E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Nonfamily households!!Householder living alone!!Householder 15 to 34 years", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C02_025EA,S2501_C02_025M,S2501_C02_025MA"}, "S0502_C02_103E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_103EA,S0502_C02_103M,S0502_C02_103MA"}, "S0502PR_C01_081E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Information", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_081EA,S0502PR_C01_081M,S0502PR_C01_081MA"}, "S0103PR_C01_088E": {"label": "Estimate!!Total!!Occupied housing units", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_088EA,S0103PR_C01_088M,S0103PR_C01_088MA"}, "S0601PR_C01_048E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "int", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C01_048EA,S0601PR_C01_048M,S0601PR_C01_048MA"}, "S2602_C03_054E": {"label": "Estimate!!Adult correctional facilities!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the United States", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C03_054EA,S2602_C03_054M,S2602_C03_054MA"}, "S2603_C06_040E": {"label": "Estimate!!College/university housing!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C06_040EA,S2603_C06_040M,S2603_C06_040MA"}, "S0601PR_C01_047E": {"label": "Estimate!!Total!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!Median income (dollars)", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "int", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C01_047EA,S0601PR_C01_047M,S0601PR_C01_047MA"}, "S2501_C02_026E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Nonfamily households!!Householder living alone!!Householder 35 to 64 years", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C02_026EA,S2501_C02_026M,S2501_C02_026MA"}, "S0506_C05_001E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Foreign-born population", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C05_001EA,S0506_C05_001M,S0506_C05_001MA"}, "S0502PR_C01_082E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Finance and insurance, and real estate and rental and leasing", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_082EA,S0502PR_C01_082M,S0502PR_C01_082MA"}, "S2303_C02_020E": {"label": "Estimate!!Percent!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 15 to 34 hours per week!!27 to 39 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C02_020EA,S2303_C02_020M,S2303_C02_020MA"}, "S0502_C02_104E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income!!Mean Supplemental Security Income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C02_104EA,S0502_C02_104M,S0502_C02_104MA"}, "S1811_C01_006E": {"label": "Estimate!!Total Civilian Noninstitutionalized Population!!Employed Population Age 16 and Over!!CLASS OF WORKER!!Employee of private company workers", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C01_006EA,S1811_C01_006M,S1811_C01_006MA"}, "S2502_C05_010E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!White alone, not Hispanic or Latino", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C05_010EA,S2502_C05_010M,S2502_C05_010MA"}, "S0103PR_C01_089E": {"label": "Estimate!!Total!!Occupied housing units!!HOUSING TENURE!!Owner-occupied housing units", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_089EA,S0103PR_C01_089M,S0103PR_C01_089MA"}, "S2602_C03_055E": {"label": "Estimate!!Adult correctional facilities!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the United States!!Same county", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C03_055EA,S2602_C03_055M,S2602_C03_055MA"}, "S0502PR_C01_083E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Professional, scientific, and management, and administrative and waste management services", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_083EA,S0502PR_C01_083M,S0502PR_C01_083MA"}, "S2701_C05_006E": {"label": "Estimate!!Percent Uninsured!!Civilian noninstitutionalized population!!AGE!!35 to 44 years", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C05_006EA,S2701_C05_006M,S2701_C05_006MA"}, "S2603_C01_004E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!Under 15 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C01_004EA,S2603_C01_004M,S2603_C01_004MA"}, "S2602_C03_044E": {"label": "Estimate!!Adult correctional facilities!!VETERAN STATUS!!Civilian population 18 years and over!!Civilian veteran", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C03_044EA,S2602_C03_044M,S2602_C03_044MA"}, "S2701_C05_007E": {"label": "Estimate!!Percent Uninsured!!Civilian noninstitutionalized population!!AGE!!45 to 54 years", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C05_007EA,S2701_C05_007M,S2701_C05_007MA"}, "S2502_C05_020E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!EDUCATIONAL ATTAINMENT OF HOUSEHOLDER!!Some college or associate's degree", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C05_020EA,S2502_C05_020M,S2502_C05_020MA"}, "S2602_C03_045E": {"label": "Estimate!!Adult correctional facilities!!DISABILITY STATUS!!Total population", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C03_045EA,S2602_C03_045M,S2602_C03_045MA"}, "S2603_C01_003E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C01_003EA,S2603_C01_003M,S2603_C01_003MA"}, "S0502PR_C01_084E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Educational services, and health care and social assistance", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_084EA,S0502PR_C01_084M,S0502PR_C01_084MA"}, "S2501_C02_029E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Nonfamily households!!Householder not living alone!!Householder 15 to 34 years", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C02_029EA,S2501_C02_029M,S2501_C02_029MA"}, "S2701_C05_004E": {"label": "Estimate!!Percent Uninsured!!Civilian noninstitutionalized population!!AGE!!19 to 25 years", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C05_004EA,S2701_C05_004M,S2701_C05_004MA"}, "S2603_C01_002E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C01_002EA,S2603_C01_002M,S2603_C01_002MA"}, "S2602_C03_046E": {"label": "Estimate!!Adult correctional facilities!!DISABILITY STATUS!!Total population!!With a disability", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C03_046EA,S2602_C03_046M,S2602_C03_046MA"}, "S0502PR_C01_085E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Arts, entertainment, and recreation, and accommodation and food services", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_085EA,S0502PR_C01_085M,S0502PR_C01_085MA"}, "S0502_C02_100E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings!!Mean earnings (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C02_100EA,S0502_C02_100M,S0502_C02_100MA"}, "S2701_C05_005E": {"label": "Estimate!!Percent Uninsured!!Civilian noninstitutionalized population!!AGE!!26 to 34 years", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C05_005EA,S2701_C05_005M,S2701_C05_005MA"}, "S2602_C03_047E": {"label": "Estimate!!Adult correctional facilities!!DISABILITY STATUS!!Population 18 to 64 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C03_047EA,S2602_C03_047M,S2602_C03_047MA"}, "S0502PR_C01_086E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Other services (except public administration)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_086EA,S0502PR_C01_086M,S0502PR_C01_086MA"}, "S2603_C01_001E": {"label": "Estimate!!Total population!!Total population", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C01_001EA,S2603_C01_001M,S2603_C01_001MA"}, "S0503_C01_061E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed!!Percent of civilian labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_061EA,S0503_C01_061M,S0503_C01_061MA"}, "S2701_C05_002E": {"label": "Estimate!!Percent Uninsured!!Civilian noninstitutionalized population!!AGE!!Under 6 years", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C05_002EA,S2701_C05_002M,S2701_C05_002MA"}, "S0901_C04_035E": {"label": "Estimate!!In female householder, no spouse present, family household!!HOUSING TENURE!!Children under 18 years in occupied housing units", "concept": "Children Characteristics", "predicateType": "int", "group": "S0901", "limit": 0, "attributes": "S0901_C04_035EA,S0901_C04_035M,S0901_C04_035MA"}, "S2602_C03_048E": {"label": "Estimate!!Adult correctional facilities!!DISABILITY STATUS!!Population 18 to 64 years!!With a disability", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C03_048EA,S2602_C03_048M,S2602_C03_048MA"}, "S0502PR_C01_087E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Public administration", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_087EA,S0502PR_C01_087M,S0502PR_C01_087MA"}, "S2602_C03_049E": {"label": "Estimate!!Adult correctional facilities!!DISABILITY STATUS!!Population 18 to 64 years!!No disability", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C03_049EA,S2602_C03_049M,S2602_C03_049MA"}, "S0503_C01_060E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_060EA,S0503_C01_060M,S0503_C01_060MA"}, "S0901_C04_036E": {"label": "Estimate!!In female householder, no spouse present, family household!!HOUSING TENURE!!Children under 18 years in occupied housing units!!In owner-occupied housing units", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C04_036EA,S0901_C04_036M,S0901_C04_036MA"}, "S2701_C05_003E": {"label": "Estimate!!Percent Uninsured!!Civilian noninstitutionalized population!!AGE!!6 to 18 years", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C05_003EA,S2701_C05_003M,S2701_C05_003MA"}, "S0502PR_C01_088E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_088EA,S0502PR_C01_088M,S0502PR_C01_088MA"}, "S0503_C01_063E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Population 16 years and over!!Not in labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_063EA,S0503_C01_063M,S0503_C01_063MA"}, "S0901_C04_037E": {"label": "Estimate!!In female householder, no spouse present, family household!!HOUSING TENURE!!Children under 18 years in occupied housing units!!In renter-occupied housing units", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C04_037EA,S0901_C04_037M,S0901_C04_037MA"}, "S0502PR_C01_089E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$1 to $9,999 or loss", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_089EA,S0502PR_C01_089M,S0502PR_C01_089MA"}, "S0503_C01_062E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Armed Forces", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_062EA,S0503_C01_062M,S0503_C01_062MA"}, "S2701_C05_001E": {"label": "Estimate!!Percent Uninsured!!Civilian noninstitutionalized population", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C05_001EA,S2701_C05_001M,S2701_C05_001MA"}, "S0503_C01_065E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Private wage and salary workers", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_065EA,S0503_C01_065M,S0503_C01_065MA"}, "S0102_C01_006E": {"label": "Estimate!!Total!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_006EA,S0102_C01_006M,S0102_C01_006MA"}, "S0901_C04_031E": {"label": "Estimate!!In female householder, no spouse present, family household!!Children under 18 years in households!!PUBLIC ASSISTANCE IN THE PAST 12 MONTHS!!Children living in households with Supplemental Security Income (SSI), cash public assistance income, or Food Stamp/SNAP benefits", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C04_031EA,S0901_C04_031M,S0901_C04_031MA"}, "S0504_C04_056E": {"label": "Estimate!!Foreign-born; Born in Oceania!!EMPLOYMENT STATUS!!Population 16 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C04_056EA,S0504_C04_056M,S0504_C04_056MA"}, "S0503_C01_064E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C01_064EA,S0503_C01_064M,S0503_C01_064MA"}, "S0901_C04_032E": {"label": "Estimate!!In female householder, no spouse present, family household!!POVERTY STATUS IN THE PAST 12 MONTHS!!Children in households for whom poverty status is determined", "concept": "Children Characteristics", "predicateType": "int", "group": "S0901", "limit": 0, "attributes": "S0901_C04_032EA,S0901_C04_032M,S0901_C04_032MA"}, "S0102_C01_005E": {"label": "Estimate!!Total!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_005EA,S0102_C01_005M,S0102_C01_005MA"}, "S0504_C04_057E": {"label": "Estimate!!Foreign-born; Born in Oceania!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_057EA,S0504_C04_057M,S0504_C04_057MA"}, "S0503_C01_067E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Self-employed workers in own not incorporated business", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_067EA,S0503_C01_067M,S0503_C01_067MA"}, "S0901_C04_033E": {"label": "Estimate!!In female householder, no spouse present, family household!!POVERTY STATUS IN THE PAST 12 MONTHS!!Children in households for whom poverty status is determined!!Income in the past 12 months below poverty level", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C04_033EA,S0901_C04_033M,S0901_C04_033MA"}, "S0701PR_C02_039E": {"label": "Estimate!!Moved; within same municipio!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C02_039EA,S0701PR_C02_039M,S0701PR_C02_039MA"}, "S0102_C01_008E": {"label": "Estimate!!Total!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_008EA,S0102_C01_008M,S0102_C01_008MA"}, "S0504_C04_058E": {"label": "Estimate!!Foreign-born; Born in Oceania!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_058EA,S0504_C04_058M,S0504_C04_058MA"}, "S2603_C01_009E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!45 to 54 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C01_009EA,S2603_C01_009M,S2603_C01_009MA"}, "S0503_C01_066E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Government workers", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_066EA,S0503_C01_066M,S0503_C01_066MA"}, "S0901_C04_034E": {"label": "Estimate!!In female householder, no spouse present, family household!!POVERTY STATUS IN THE PAST 12 MONTHS!!Children in households for whom poverty status is determined!!Income in the past 12 months at or above poverty level", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C04_034EA,S0901_C04_034M,S0901_C04_034MA"}, "S0102_C01_007E": {"label": "Estimate!!Total!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_007EA,S0102_C01_007M,S0102_C01_007MA"}, "S0504_C04_059E": {"label": "Estimate!!Foreign-born; Born in Oceania!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Employed", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_059EA,S0504_C04_059M,S0504_C04_059MA"}, "S0503_C01_069E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!OCCUPATION!!Management, business, science, and arts occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_069EA,S0503_C01_069M,S0503_C01_069MA"}, "S2603_C01_008E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!35 to 44 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C01_008EA,S2603_C01_008M,S2603_C01_008MA"}, "S1501_C03_028E": {"label": "Estimate!!Male!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!White alone", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C03_028EA,S1501_C03_028M,S1501_C03_028MA"}, "S0504_C04_052E": {"label": "Estimate!!Foreign-born; Born in Oceania!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C04_052EA,S0504_C04_052M,S0504_C04_052MA"}, "S0701PR_C02_037E": {"label": "Estimate!!Moved; within same municipio!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C02_037EA,S0701PR_C02_037M,S0701PR_C02_037MA"}, "S0804_C05_081E": {"label": "Estimate!!Worked from home!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!25 to 29 minutes", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "int", "group": "S0804", "limit": 0, "attributes": "S0804_C05_081EA,S0804_C05_081M,S0804_C05_081MA"}, "S0503_C01_068E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Unpaid family workers", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_068EA,S0503_C01_068M,S0503_C01_068MA"}, "S1501_C03_029E": {"label": "Estimate!!Male!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!White alone!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C03_029EA,S1501_C03_029M,S1501_C03_029MA"}, "S2603_C01_007E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!25 to 34 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C01_007EA,S2603_C01_007M,S2603_C01_007MA"}, "S0504_C04_053E": {"label": "Estimate!!Foreign-born; Born in Oceania!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!English only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_053EA,S0504_C04_053M,S0504_C04_053MA"}, "S0701PR_C02_038E": {"label": "Estimate!!Moved; within same municipio!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Graduate or professional degree", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C02_038EA,S0701PR_C02_038M,S0701PR_C02_038MA"}, "S0102_C01_009E": {"label": "Estimate!!Total!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_009EA,S0102_C01_009M,S0102_C01_009MA"}, "S0804_C05_080E": {"label": "Estimate!!Worked from home!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!20 to 24 minutes", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "int", "group": "S0804", "limit": 0, "attributes": "S0804_C05_080EA,S0804_C05_080M,S0804_C05_080MA"}, "S2603_C01_006E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!18 to 24 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C01_006EA,S2603_C01_006M,S2603_C01_006MA"}, "S0504_C04_054E": {"label": "Estimate!!Foreign-born; Born in Oceania!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_054EA,S0504_C04_054M,S0504_C04_054MA"}, "S0701PR_C02_035E": {"label": "Estimate!!Moved; within same municipio!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate (includes equivalency)", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C02_035EA,S0701PR_C02_035M,S0701PR_C02_035MA"}, "S2701_C05_008E": {"label": "Estimate!!Percent Uninsured!!Civilian noninstitutionalized population!!AGE!!55 to 64 years", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C05_008EA,S2701_C05_008M,S2701_C05_008MA"}, "S0504_C04_055E": {"label": "Estimate!!Foreign-born; Born in Oceania!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English!!Speak English less than \"very well\"", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_055EA,S0504_C04_055M,S0504_C04_055MA"}, "S0701PR_C02_036E": {"label": "Estimate!!Moved; within same municipio!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college or associate's degree", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C02_036EA,S0701PR_C02_036M,S0701PR_C02_036MA"}, "S0901_C04_030E": {"label": "Estimate!!In female householder, no spouse present, family household!!Children under 18 years in households", "concept": "Children Characteristics", "predicateType": "int", "group": "S0901", "limit": 0, "attributes": "S0901_C04_030EA,S0901_C04_030M,S0901_C04_030MA"}, "S2701_C05_009E": {"label": "Estimate!!Percent Uninsured!!Civilian noninstitutionalized population!!AGE!!65 to 74 years", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C05_009EA,S2701_C05_009M,S2701_C05_009MA"}, "S2603_C01_005E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!15 to 17 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C01_005EA,S2603_C01_005M,S2603_C01_005MA"}, "S1602_C02_003E": {"label": "Estimate!!Percent!!All households!!Households speaking --!!Other Indo-European languages", "concept": "Limited English Speaking Households", "predicateType": "float", "group": "S1602", "limit": 0, "attributes": "S1602_C02_003EA,S1602_C02_003M,S1602_C02_003MA"}, "S0804_C05_085E": {"label": "Estimate!!Worked from home!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!60 or more minutes", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "int", "group": "S0804", "limit": 0, "attributes": "S0804_C05_085EA,S0804_C05_085M,S0804_C05_085MA"}, "S2601C_C01_002E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!Male", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_002EA,S2601C_C01_002M,S2601C_C01_002MA"}, "S0701PR_C02_045E": {"label": "Estimate!!Moved; within same municipio!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$50,000 to $64,999", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C02_045EA,S0701PR_C02_045M,S0701PR_C02_045MA"}, "S1501_C03_024E": {"label": "Estimate!!Male!!AGE BY EDUCATIONAL ATTAINMENT!!Population 45 to 64 years!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C03_024EA,S1501_C03_024M,S1501_C03_024MA"}, "S0103PR_C01_090E": {"label": "Estimate!!Total!!Occupied housing units!!HOUSING TENURE!!Renter-occupied housing units", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_090EA,S0103PR_C01_090M,S0103PR_C01_090MA"}, "S2603_C06_035E": {"label": "Estimate!!College/university housing!!MARITAL STATUS!!Population 15 years and over!!Separated", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C06_035EA,S2603_C06_035M,S2603_C06_035MA"}, "S1602_C02_004E": {"label": "Estimate!!Percent!!All households!!Households speaking --!!Asian and Pacific Island languages", "concept": "Limited English Speaking Households", "predicateType": "float", "group": "S1602", "limit": 0, "attributes": "S1602_C02_004EA,S1602_C02_004M,S1602_C02_004MA"}, "S0701PR_C02_046E": {"label": "Estimate!!Moved; within same municipio!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$65,000 to $74,999", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C02_046EA,S0701PR_C02_046M,S0701PR_C02_046MA"}, "S2601C_C01_003E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!Female", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_003EA,S2601C_C01_003M,S2601C_C01_003MA"}, "S0804_C05_084E": {"label": "Estimate!!Worked from home!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!45 to 59 minutes", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "int", "group": "S0804", "limit": 0, "attributes": "S0804_C05_084EA,S0804_C05_084M,S0804_C05_084MA"}, "S1501_C03_025E": {"label": "Estimate!!Male!!AGE BY EDUCATIONAL ATTAINMENT!!Population 65 years and over", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C03_025EA,S1501_C03_025M,S1501_C03_025MA"}, "S0103PR_C01_091E": {"label": "Estimate!!Total!!Occupied housing units!!HOUSING TENURE!!Average household size of owner-occupied unit", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_091EA,S0103PR_C01_091M,S0103PR_C01_091MA"}, "S2603_C06_034E": {"label": "Estimate!!College/university housing!!MARITAL STATUS!!Population 15 years and over!!Divorced", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C06_034EA,S2603_C06_034M,S2603_C06_034MA"}, "S2603_C06_033E": {"label": "Estimate!!College/university housing!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C06_033EA,S2603_C06_033M,S2603_C06_033MA"}, "S1602_C02_001E": {"label": "Estimate!!Percent!!All households", "concept": "Limited English Speaking Households", "predicateType": "int", "group": "S1602", "limit": 0, "attributes": "S1602_C02_001EA,S1602_C02_001M,S1602_C02_001MA"}, "S0504_C04_050E": {"label": "Estimate!!Foreign-born; Born in Oceania!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_050EA,S0504_C04_050M,S0504_C04_050MA"}, "S0804_C05_083E": {"label": "Estimate!!Worked from home!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!35 to 44 minutes", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "int", "group": "S0804", "limit": 0, "attributes": "S0804_C05_083EA,S0804_C05_083M,S0804_C05_083MA"}, "S0701PR_C02_043E": {"label": "Estimate!!Moved; within same municipio!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$25,000 to $34,999", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C02_043EA,S0701PR_C02_043M,S0701PR_C02_043MA"}, "S1501_C03_026E": {"label": "Estimate!!Male!!AGE BY EDUCATIONAL ATTAINMENT!!Population 65 years and over!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C03_026EA,S1501_C03_026M,S1501_C03_026MA"}, "S2603_C06_032E": {"label": "Estimate!!College/university housing!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C06_032EA,S2603_C06_032M,S2603_C06_032MA"}, "S1602_C02_002E": {"label": "Estimate!!Percent!!All households!!Households speaking --!!Spanish", "concept": "Limited English Speaking Households", "predicateType": "float", "group": "S1602", "limit": 0, "attributes": "S1602_C02_002EA,S1602_C02_002M,S1602_C02_002MA"}, "S0504_C04_051E": {"label": "Estimate!!Foreign-born; Born in Oceania!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Graduate or professional degree", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_051EA,S0504_C04_051M,S0504_C04_051MA"}, "S2601C_C01_001E": {"label": "Estimate!!Total population!!Total population", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_001EA,S2601C_C01_001M,S2601C_C01_001MA"}, "S0804_C05_082E": {"label": "Estimate!!Worked from home!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!30 to 34 minutes", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "int", "group": "S0804", "limit": 0, "attributes": "S0804_C05_082EA,S0804_C05_082M,S0804_C05_082MA"}, "S0701PR_C02_044E": {"label": "Estimate!!Moved; within same municipio!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$35,000 to $49,999", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C02_044EA,S0701PR_C02_044M,S0701PR_C02_044MA"}, "S1501_C03_027E": {"label": "Estimate!!Male!!AGE BY EDUCATIONAL ATTAINMENT!!Population 65 years and over!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C03_027EA,S1501_C03_027M,S1501_C03_027MA"}, "S2501_C02_031E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Nonfamily households!!Householder not living alone!!Householder 65 years and over", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C02_031EA,S2501_C02_031M,S2501_C02_031MA"}, "S0804_C05_089E": {"label": "Estimate!!Worked from home!!Workers 16 years and over in households!!HOUSING TENURE!!Renter-occupied housing units", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C05_089EA,S0804_C05_089M,S0804_C05_089MA"}, "S0601PR_C01_050E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!100 to 149 percent of the poverty level", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C01_050EA,S0601PR_C01_050M,S0601PR_C01_050MA"}, "S0701PR_C02_041E": {"label": "Estimate!!Moved; within same municipio!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$10,000 to $14,999", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C02_041EA,S0701PR_C02_041M,S0701PR_C02_041MA"}, "S0102_C01_002E": {"label": "Estimate!!Total!!Total population!!SEX AND AGE!!Male", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_002EA,S0102_C01_002M,S0102_C01_002MA"}, "S0103PR_C01_094E": {"label": "Estimate!!Total!!Occupied housing units!!SELECTED CHARACTERISTICS!!1.01 or more occupants per room", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_094EA,S0103PR_C01_094M,S0103PR_C01_094MA"}, "S2603_C06_039E": {"label": "Estimate!!College/university housing!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!College or graduate school", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C06_039EA,S2603_C06_039M,S2603_C06_039MA"}, "S1501_C03_020E": {"label": "Estimate!!Male!!AGE BY EDUCATIONAL ATTAINMENT!!Population 35 to 44 years!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C03_020EA,S1501_C03_020M,S1501_C03_020MA"}, "S2501_C02_032E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!FAMILY TYPE AND PRESENCE OF OWN CHILDREN!!With related children of householder under 18 years", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C02_032EA,S2501_C02_032M,S2501_C02_032MA"}, "S0804_C05_088E": {"label": "Estimate!!Worked from home!!Workers 16 years and over in households!!HOUSING TENURE!!Owner-occupied housing units", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C05_088EA,S0804_C05_088M,S0804_C05_088MA"}, "S0701PR_C02_042E": {"label": "Estimate!!Moved; within same municipio!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$15,000 to $24,999", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C02_042EA,S0701PR_C02_042M,S0701PR_C02_042MA"}, "S0102_C01_001E": {"label": "Estimate!!Total!!Total population", "concept": "Population 60 Years and Over in the United States", "predicateType": "int", "group": "S0102", "limit": 0, "attributes": "S0102_C01_001EA,S0102_C01_001M,S0102_C01_001MA"}, "S0103PR_C01_095E": {"label": "Estimate!!Total!!Owner-occupied housing units", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_095EA,S0103PR_C01_095M,S0103PR_C01_095MA"}, "S2603_C06_038E": {"label": "Estimate!!College/university housing!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Nursery school through 12th grade", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C06_038EA,S2603_C06_038M,S2603_C06_038MA"}, "S1501_C03_021E": {"label": "Estimate!!Male!!AGE BY EDUCATIONAL ATTAINMENT!!Population 35 to 44 years!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C03_021EA,S1501_C03_021M,S1501_C03_021MA"}, "S0601PR_C01_052E": {"label": "Estimate!!Total!!PERCENT ALLOCATED!!Citizenship status", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C01_052EA,S0601PR_C01_052M,S0601PR_C01_052MA"}, "S2405_C04_001E": {"label": "Estimate!!Sales and office occupations!!Civilian employed population 16 years and over", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2405", "limit": 0, "attributes": "S2405_C04_001EA,S2405_C04_001M,S2405_C04_001MA"}, "S0804_C05_087E": {"label": "Estimate!!Worked from home!!Workers 16 years and over in households", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "int", "group": "S0804", "limit": 0, "attributes": "S0804_C05_087EA,S0804_C05_087M,S0804_C05_087MA"}, "S0102_C01_004E": {"label": "Estimate!!Total!!Total population!!SEX AND AGE!!Median age (years)", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_004EA,S0102_C01_004M,S0102_C01_004MA"}, "S2603_C06_037E": {"label": "Estimate!!College/university housing!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C06_037EA,S2603_C06_037M,S2603_C06_037MA"}, "S1501_C03_022E": {"label": "Estimate!!Male!!AGE BY EDUCATIONAL ATTAINMENT!!Population 45 to 64 years", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C03_022EA,S1501_C03_022M,S1501_C03_022MA"}, "S0103PR_C01_092E": {"label": "Estimate!!Total!!Occupied housing units!!HOUSING TENURE!!Average household size of renter-occupied unit", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_092EA,S0103PR_C01_092M,S0103PR_C01_092MA"}, "S0601PR_C01_051E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!At or above 150 percent of the poverty level", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C01_051EA,S0601PR_C01_051M,S0601PR_C01_051MA"}, "S2501_C02_030E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Nonfamily households!!Householder not living alone!!Householder 35 to 64 years", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C02_030EA,S2501_C02_030M,S2501_C02_030MA"}, "S0804_C05_086E": {"label": "Estimate!!Worked from home!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!Mean travel time to work (minutes)", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "int", "group": "S0804", "limit": 0, "attributes": "S0804_C05_086EA,S0804_C05_086M,S0804_C05_086MA"}, "S0701PR_C02_040E": {"label": "Estimate!!Moved; within same municipio!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$1 to $9,999 or loss", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C02_040EA,S0701PR_C02_040M,S0701PR_C02_040MA"}, "S0102_C01_003E": {"label": "Estimate!!Total!!Total population!!SEX AND AGE!!Female", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_003EA,S0102_C01_003M,S0102_C01_003MA"}, "S2603_C06_036E": {"label": "Estimate!!College/university housing!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C06_036EA,S2603_C06_036M,S2603_C06_036MA"}, "S1501_C03_023E": {"label": "Estimate!!Male!!AGE BY EDUCATIONAL ATTAINMENT!!Population 45 to 64 years!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C03_023EA,S1501_C03_023M,S1501_C03_023MA"}, "S0103PR_C01_093E": {"label": "Estimate!!Total!!Occupied housing units!!SELECTED CHARACTERISTICS!!No telephone service available", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_093EA,S0103PR_C01_093M,S0103PR_C01_093MA"}, "S2701_C05_010E": {"label": "Estimate!!Percent Uninsured!!Civilian noninstitutionalized population!!AGE!!75 years and older", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C05_010EA,S2701_C05_010M,S2701_C05_010MA"}, "S2501_C02_035E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!FAMILY TYPE AND PRESENCE OF OWN CHILDREN!!With related children of householder under 18 years!!With own children of householder under 18 years!!Under 6 years and 6 to 17 years", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C02_035EA,S2501_C02_035M,S2501_C02_035MA"}, "S2502_C05_027E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!YEAR HOUSEHOLDER MOVED INTO UNIT!!Moved in 1989 or earlier", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C05_027EA,S2502_C05_027M,S2502_C05_027MA"}, "S0103PR_C01_098E": {"label": "Estimate!!Total!!Owner-occupied housing units!!OWNER CHARACTERISTICS!!Median value (dollars)", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_098EA,S0103PR_C01_098M,S0103PR_C01_098MA"}, "S2303_C02_033E": {"label": "Estimate!!Percent!!Population 16 to 64 years!!Workers 16 to 64 years who worked full-time, year-round", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C02_033EA,S2303_C02_033M,S2303_C02_033MA"}, "S0601PR_C01_053E": {"label": "Estimate!!Total!!PERCENT ALLOCATED!!Place of birth", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C01_053EA,S0601PR_C01_053M,S0601PR_C01_053MA"}, "S2702PR_C01_099E": {"label": "Estimate!!Total!!RATIO OF INCOME TO POVERTY LEVEL IN THE PAST 12 MONTHS!!Civilian noninstitutionalized population for whom poverty status is determined", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "int", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_099EA,S2702PR_C01_099M,S2702PR_C01_099MA"}, "S2701_C05_011E": {"label": "Estimate!!Percent Uninsured!!Civilian noninstitutionalized population!!AGE!!Under 19 years", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C05_011EA,S2701_C05_011M,S2701_C05_011MA"}, "S2501_C02_036E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!FAMILY TYPE AND PRESENCE OF OWN CHILDREN!!With related children of householder under 18 years!!With own children of householder under 18 years!!6 to 17 years only", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C02_036EA,S2501_C02_036M,S2501_C02_036MA"}, "S0103PR_C01_099E": {"label": "Estimate!!Total!!Owner-occupied housing units!!OWNER CHARACTERISTICS!!Median selected monthly owner costs with a mortgage (dollars)", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_099EA,S0103PR_C01_099M,S0103PR_C01_099MA"}, "S2601C_C01_009E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!45 to 54 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_009EA,S2601C_C01_009M,S2601C_C01_009MA"}, "S2501_C02_033E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!FAMILY TYPE AND PRESENCE OF OWN CHILDREN!!With related children of householder under 18 years!!With own children of householder under 18 years", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C02_033EA,S2501_C02_033M,S2501_C02_033MA"}, "S2702PR_C01_098E": {"label": "Estimate!!Total!!HOUSEHOLD INCOME (IN 2024 INFLATION ADJUSTED DOLLARS)!!Total household population!!Median household income of householders", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "int", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_098EA,S2702PR_C01_098M,S2702PR_C01_098MA"}, "S2502_C05_025E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!YEAR HOUSEHOLDER MOVED INTO UNIT!!Moved in 2000 to 2009", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C05_025EA,S2502_C05_025M,S2502_C05_025MA"}, "S0103PR_C01_096E": {"label": "Estimate!!Total!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_096EA,S0103PR_C01_096M,S0103PR_C01_096MA"}, "S0802_C01_101E": {"label": "Estimate!!Total!!PERCENT ALLOCATED!!Vehicles available", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_101EA,S0802_C01_101M,S0802_C01_101MA"}, "S2502_C05_026E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!YEAR HOUSEHOLDER MOVED INTO UNIT!!Moved in 1990 to 1999", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C05_026EA,S2502_C05_026M,S2502_C05_026MA"}, "S2702PR_C01_097E": {"label": "Estimate!!Total!!HOUSEHOLD INCOME (IN 2024 INFLATION ADJUSTED DOLLARS)!!Total household population!!$100,000 and over", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_097EA,S2702PR_C01_097M,S2702PR_C01_097MA"}, "S2501_C02_034E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!FAMILY TYPE AND PRESENCE OF OWN CHILDREN!!With related children of householder under 18 years!!With own children of householder under 18 years!!Under 6 years only", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C02_034EA,S2501_C02_034M,S2501_C02_034MA"}, "S0502PR_C01_090E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$10,000 to $14,999", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_090EA,S0502PR_C01_090M,S0502PR_C01_090MA"}, "S0103PR_C01_097E": {"label": "Estimate!!Total!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_097EA,S0103PR_C01_097M,S0103PR_C01_097MA"}, "S2603_C06_031E": {"label": "Estimate!!College/university housing!!MARITAL STATUS!!Population 15 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C06_031EA,S2603_C06_031M,S2603_C06_031MA"}, "S0802_C01_100E": {"label": "Estimate!!Total!!PERCENT ALLOCATED!!Travel time to work", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_100EA,S0802_C01_100M,S0802_C01_100MA"}, "S2601C_C01_007E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!25 to 34 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_007EA,S2601C_C01_007M,S2601C_C01_007MA"}, "S2602_C03_040E": {"label": "Estimate!!Adult correctional facilities!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C03_040EA,S2602_C03_040M,S2602_C03_040MA"}, "S0502PR_C01_091E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$15,000 to $24,999", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_091EA,S0502PR_C01_091M,S0502PR_C01_091MA"}, "S2502_C05_023E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!YEAR HOUSEHOLDER MOVED INTO UNIT!!Moved in 2020 to 2022", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C05_023EA,S2502_C05_023M,S2502_C05_023MA"}, "S2603_C06_030E": {"label": "Estimate!!College/university housing!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!White alone, Not Hispanic or Latino", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C06_030EA,S2603_C06_030M,S2603_C06_030MA"}, "S2601C_C01_008E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!35 to 44 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_008EA,S2601C_C01_008M,S2601C_C01_008MA"}, "S2502_C05_024E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!YEAR HOUSEHOLDER MOVED INTO UNIT!!Moved in 2010 to 2019", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C05_024EA,S2502_C05_024M,S2502_C05_024MA"}, "S0502PR_C01_092E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$25,000 to $34,999", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_092EA,S0502PR_C01_092M,S0502PR_C01_092MA"}, "S2303_C02_030E": {"label": "Estimate!!Percent!!Population 16 to 64 years!!USUAL HOURS WORKED!!Did not work", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C02_030EA,S2303_C02_030M,S2303_C02_030MA"}, "S2602_C03_041E": {"label": "Estimate!!Adult correctional facilities!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate or higher", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C03_041EA,S2602_C03_041M,S2602_C03_041MA"}, "S2501_C02_037E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!FAMILY TYPE AND PRESENCE OF OWN CHILDREN!!With related children of householder under 18 years!!No own children of householder under 18 years", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C02_037EA,S2501_C02_037M,S2501_C02_037MA"}, "S2601C_C01_005E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!15 to 17 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_005EA,S2601C_C01_005M,S2601C_C01_005MA"}, "S0502PR_C01_093E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$35,000 to $49,999", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_093EA,S0502PR_C01_093M,S0502PR_C01_093MA"}, "S2303_C02_031E": {"label": "Estimate!!Percent!!Population 16 to 64 years!!Mean usual hours worked for workers", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C02_031EA,S2303_C02_031M,S2303_C02_031MA"}, "S2601C_C01_004E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!Under 15 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_004EA,S2601C_C01_004M,S2601C_C01_004MA"}, "S2502_C05_021E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!EDUCATIONAL ATTAINMENT OF HOUSEHOLDER!!Bachelor's degree or higher", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C05_021EA,S2502_C05_021M,S2502_C05_021MA"}, "S2602_C03_042E": {"label": "Estimate!!Adult correctional facilities!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree or higher", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C03_042EA,S2602_C03_042M,S2602_C03_042MA"}, "S2501_C02_038E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!FAMILY TYPE AND PRESENCE OF OWN CHILDREN!!No related children of householder under 18 years", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C02_038EA,S2501_C02_038M,S2501_C02_038MA"}, "S2601C_C01_006E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!18 to 24 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_006EA,S2601C_C01_006M,S2601C_C01_006MA"}, "S0502PR_C01_094E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$50,000 to $74,999", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_094EA,S0502PR_C01_094M,S0502PR_C01_094MA"}, "S2303_C02_032E": {"label": "Estimate!!Percent!!Population 16 to 64 years!!Median age of workers 16 to 64 years", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C02_032EA,S2303_C02_032M,S2303_C02_032MA"}, "S2502_C05_022E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!YEAR HOUSEHOLDER MOVED INTO UNIT!!Moved in 2023 or later", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C05_022EA,S2502_C05_022M,S2502_C05_022MA"}, "S2602_C03_043E": {"label": "Estimate!!Adult correctional facilities!!VETERAN STATUS!!Civilian population 18 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C03_043EA,S2602_C03_043M,S2602_C03_043MA"}, "S2702PR_C01_092E": {"label": "Estimate!!Total!!HOUSEHOLD INCOME (IN 2024 INFLATION ADJUSTED DOLLARS)!!Total household population", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "int", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_092EA,S2702PR_C01_092M,S2702PR_C01_092MA"}, "S0506_C02_127E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Occupied housing units!!HOUSING TENURE!!Average household size of owner-occupied unit", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_127EA,S0506_C02_127M,S0506_C02_127MA"}, "S0502_C02_133E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Occupied housing units!!ROOMS!!6 or 7 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_133EA,S0502_C02_133M,S0502_C02_133MA"}, "S0103PR_C01_058E": {"label": "Estimate!!Total!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Entered 2000 to 2009", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_058EA,S0103PR_C01_058M,S0103PR_C01_058MA"}, "S2602_C03_032E": {"label": "Estimate!!Adult correctional facilities!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C03_032EA,S2602_C03_032M,S2602_C03_032MA"}, "S2702PR_C01_091E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION ADJUSTED DOLLARS)!!Civilian noninstitutionalized population 16 years and older with earnings!!Median earnings (dollars)", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "int", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_091EA,S2702PR_C01_091M,S2702PR_C01_091MA"}, "S0506_C02_128E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Occupied housing units!!HOUSING TENURE!!Average household size of renter-occupied unit", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_128EA,S0506_C02_128M,S0506_C02_128MA"}, "S0502_C02_134E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Occupied housing units!!ROOMS!!8 or more rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_134EA,S0502_C02_134M,S0502_C02_134MA"}, "S0103PR_C01_059E": {"label": "Estimate!!Total!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Entered before 2000", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_059EA,S0103PR_C01_059M,S0103PR_C01_059MA"}, "S2602_C03_033E": {"label": "Estimate!!Adult correctional facilities!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C03_033EA,S2602_C03_033M,S2602_C03_033MA"}, "S2702PR_C01_090E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION ADJUSTED DOLLARS)!!Civilian noninstitutionalized population 16 years and older with earnings!!$75,000 or more", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_090EA,S2702PR_C01_090M,S2702PR_C01_090MA"}, "S0502_C02_135E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Occupied housing units!!Median number of rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_135EA,S0502_C02_135M,S0502_C02_135MA"}, "S0506_C02_125E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Occupied housing units!!HOUSING TENURE!!Owner-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_125EA,S0506_C02_125M,S0506_C02_125MA"}, "S0103PR_C01_056E": {"label": "Estimate!!Total!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_056EA,S0103PR_C01_056M,S0103PR_C01_056MA"}, "S2602_C03_034E": {"label": "Estimate!!Adult correctional facilities!!MARITAL STATUS!!Population 15 years and over!!Divorced", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C03_034EA,S2602_C03_034M,S2602_C03_034MA"}, "S0506_C02_126E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Occupied housing units!!HOUSING TENURE!!Renter-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_126EA,S0506_C02_126M,S0506_C02_126MA"}, "S0502_C02_136E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Occupied housing units!!1.01 or more occupants per room", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_136EA,S0502_C02_136M,S0502_C02_136MA"}, "S0502PR_C01_050E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college or associate's degree", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_050EA,S0502PR_C01_050M,S0502PR_C01_050MA"}, "S0103PR_C01_057E": {"label": "Estimate!!Total!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Entered 2010 or later", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_057EA,S0103PR_C01_057M,S0103PR_C01_057MA"}, "S2602_C03_035E": {"label": "Estimate!!Adult correctional facilities!!MARITAL STATUS!!Population 15 years and over!!Separated", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C03_035EA,S2602_C03_035M,S2602_C03_035MA"}, "S2603_C06_071E": {"label": "Estimate!!College/university housing!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Not a U.S. citizen!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C06_071EA,S2603_C06_071M,S2603_C06_071MA"}, "S1703_C03_028E": {"label": "Estimate!!Less than 100 percent of the poverty level!!Population for whom poverty status is determined!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C03_028EA,S1703_C03_028M,S1703_C03_028MA"}, "S0506_C02_123E": {"label": "Estimate!!Foreign-born; Born in Latin America!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_123EA,S0506_C02_123M,S0506_C02_123MA"}, "S2702PR_C01_096E": {"label": "Estimate!!Total!!HOUSEHOLD INCOME (IN 2024 INFLATION ADJUSTED DOLLARS)!!Total household population!!$75,000 to $99,999", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_096EA,S2702PR_C01_096M,S2702PR_C01_096MA"}, "S2701_C05_038E": {"label": "Estimate!!Percent Uninsured!!Civilian noninstitutionalized population!!EDUCATIONAL ATTAINMENT!!Civilian noninstitutionalized population 26 years and over!!Less than high school graduate", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C05_038EA,S2701_C05_038M,S2701_C05_038MA"}, "S2602_C03_036E": {"label": "Estimate!!Adult correctional facilities!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C03_036EA,S2602_C03_036M,S2602_C03_036MA"}, "S0502PR_C01_051E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_051EA,S0502PR_C01_051M,S0502PR_C01_051MA"}, "S2603_C06_070E": {"label": "Estimate!!College/university housing!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Not a U.S. citizen", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C06_070EA,S2603_C06_070M,S2603_C06_070MA"}, "S0502_C02_130E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Occupied housing units!!ROOMS!!1 room", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_130EA,S0502_C02_130M,S0502_C02_130MA"}, "S1703_C03_029E": {"label": "Estimate!!Less than 100 percent of the poverty level!!Population for whom poverty status is determined!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born!!Naturalized citizen", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C03_029EA,S1703_C03_029M,S1703_C03_029MA"}, "S2702PR_C01_095E": {"label": "Estimate!!Total!!HOUSEHOLD INCOME (IN 2024 INFLATION ADJUSTED DOLLARS)!!Total household population!!$50,000 to $74,999", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_095EA,S2702PR_C01_095M,S2702PR_C01_095MA"}, "S0506_C02_124E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C02_124EA,S0506_C02_124M,S0506_C02_124MA"}, "S2701_C05_039E": {"label": "Estimate!!Percent Uninsured!!Civilian noninstitutionalized population!!EDUCATIONAL ATTAINMENT!!Civilian noninstitutionalized population 26 years and over!!High school graduate (includes equivalency)", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C05_039EA,S2701_C05_039M,S2701_C05_039MA"}, "S2602_C03_037E": {"label": "Estimate!!Adult correctional facilities!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C03_037EA,S2602_C03_037M,S2602_C03_037MA"}, "S0502PR_C01_052E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Graduate or professional degree", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_052EA,S0502PR_C01_052M,S0502PR_C01_052MA"}, "S2702PR_C01_094E": {"label": "Estimate!!Total!!HOUSEHOLD INCOME (IN 2024 INFLATION ADJUSTED DOLLARS)!!Total household population!!$25,000 to $49,999", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_094EA,S2702PR_C01_094M,S2702PR_C01_094MA"}, "S2602_C03_038E": {"label": "Estimate!!Adult correctional facilities!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Nursery school through 12th grade", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C03_038EA,S2602_C03_038M,S2602_C03_038MA"}, "S0502_C02_131E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Occupied housing units!!ROOMS!!2 or 3 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_131EA,S0502_C02_131M,S0502_C02_131MA"}, "S0506_C02_121E": {"label": "Estimate!!Foreign-born; Born in Latin America!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_121EA,S0506_C02_121M,S0506_C02_121MA"}, "S2701_C05_036E": {"label": "Estimate!!Percent Uninsured!!Civilian noninstitutionalized population!!DISABILITY STATUS!!No disability", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C05_036EA,S2701_C05_036M,S2701_C05_036MA"}, "S0502PR_C01_053E": {"label": "Estimate!!Total!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_053EA,S0502PR_C01_053M,S0502PR_C01_053MA"}, "S2702PR_C01_093E": {"label": "Estimate!!Total!!HOUSEHOLD INCOME (IN 2024 INFLATION ADJUSTED DOLLARS)!!Total household population!!Under $25,000", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_093EA,S2702PR_C01_093M,S2702PR_C01_093MA"}, "S2602_C03_039E": {"label": "Estimate!!Adult correctional facilities!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!College or graduate school", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C03_039EA,S2602_C03_039M,S2602_C03_039MA"}, "S0502_C02_132E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Occupied housing units!!ROOMS!!4 or 5 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_132EA,S0502_C02_132M,S0502_C02_132MA"}, "S0506_C02_122E": {"label": "Estimate!!Foreign-born; Born in Latin America!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_122EA,S0506_C02_122M,S0506_C02_122MA"}, "S2701_C05_037E": {"label": "Estimate!!Percent Uninsured!!Civilian noninstitutionalized population!!EDUCATIONAL ATTAINMENT!!Civilian noninstitutionalized population 26 years and over", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C05_037EA,S2701_C05_037M,S2701_C05_037MA"}, "S0502PR_C01_054E": {"label": "Estimate!!Total!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!English only", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_054EA,S0502PR_C01_054M,S0502PR_C01_054MA"}, "S1703_C03_024E": {"label": "Estimate!!Less than 100 percent of the poverty level!!Population for whom poverty status is determined!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate (includes equivalency)", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C03_024EA,S1703_C03_024M,S1703_C03_024MA"}, "S0504_C04_068E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Unpaid family workers", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_068EA,S0504_C04_068M,S0504_C04_068MA"}, "S0502PR_C01_055E": {"label": "Estimate!!Total!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_055EA,S0502PR_C01_055M,S0502PR_C01_055MA"}, "S1703_C03_025E": {"label": "Estimate!!Less than 100 percent of the poverty level!!Population for whom poverty status is determined!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college or associate's degree", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C03_025EA,S1703_C03_025M,S1703_C03_025MA"}, "S0504_C04_069E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Civilian employed population 16 years and over!!OCCUPATION!!Management, business, science, and arts occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_069EA,S0504_C04_069M,S0504_C04_069MA"}, "S0502PR_C01_056E": {"label": "Estimate!!Total!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English!!Speak English less than \"very well\"", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_056EA,S0502PR_C01_056M,S0502PR_C01_056MA"}, "S0503_C01_031E": {"label": "Estimate!!Total!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_031EA,S0503_C01_031M,S0503_C01_031MA"}, "S1703_C03_026E": {"label": "Estimate!!Less than 100 percent of the poverty level!!Population for whom poverty status is determined!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree or higher", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C03_026EA,S1703_C03_026M,S1703_C03_026MA"}, "S0502PR_C01_057E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Population 16 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_057EA,S0502PR_C01_057M,S0502PR_C01_057MA"}, "S0503_C01_030E": {"label": "Estimate!!Total!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_030EA,S0503_C01_030M,S0503_C01_030MA"}, "S1703_C03_027E": {"label": "Estimate!!Less than 100 percent of the poverty level!!Population for whom poverty status is determined!!NATIVITY AND CITIZENSHIP STATUS!!Native", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C03_027EA,S1703_C03_027M,S1703_C03_027MA"}, "S0502PR_C01_058E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_058EA,S0502PR_C01_058M,S0502PR_C01_058MA"}, "S0503_C01_033E": {"label": "Estimate!!Total!!Foreign-born population!!HOUSEHOLD TYPE!!In other households", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_033EA,S0503_C01_033M,S0503_C01_033MA"}, "S0502PR_C01_059E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_059EA,S0502PR_C01_059M,S0502PR_C01_059MA"}, "S0504_C04_064E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Civilian employed population 16 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C04_064EA,S0504_C04_064M,S0504_C04_064MA"}, "S1703_C03_020E": {"label": "Estimate!!Less than 100 percent of the poverty level!!Population for whom poverty status is determined!!LIVING ARRANGEMENT!!In family households!!In Female householder, no spouse present households", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C03_020EA,S1703_C03_020M,S1703_C03_020MA"}, "S0503_C01_032E": {"label": "Estimate!!Total!!Foreign-born population!!HOUSEHOLD TYPE!!In married-couple family", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_032EA,S0503_C01_032M,S0503_C01_032MA"}, "S0504_C04_065E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Private wage and salary workers", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_065EA,S0504_C04_065M,S0504_C04_065MA"}, "S1703_C03_021E": {"label": "Estimate!!Less than 100 percent of the poverty level!!Population for whom poverty status is determined!!LIVING ARRANGEMENT!!In other living arrangements", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C03_021EA,S1703_C03_021M,S1703_C03_021MA"}, "S0503_C01_035E": {"label": "Estimate!!Total!!Foreign-born population!!Average family size", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_035EA,S0503_C01_035M,S0503_C01_035MA"}, "S0504_C04_066E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Government workers", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_066EA,S0504_C04_066M,S0504_C04_066MA"}, "S0506_C02_129E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Occupied housing units!!ROOMS!!1 room", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_129EA,S0506_C02_129M,S0506_C02_129MA"}, "S1703_C03_022E": {"label": "Estimate!!Less than 100 percent of the poverty level!!Population for whom poverty status is determined!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C03_022EA,S1703_C03_022M,S1703_C03_022MA"}, "S0503_C01_034E": {"label": "Estimate!!Total!!Foreign-born population!!Average household size", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_034EA,S0503_C01_034M,S0503_C01_034MA"}, "S1703_C03_023E": {"label": "Estimate!!Less than 100 percent of the poverty level!!Population for whom poverty status is determined!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than high school graduate", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C03_023EA,S1703_C03_023M,S1703_C03_023MA"}, "S0504_C04_067E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Self-employed workers in own not incorporated business", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_067EA,S0504_C04_067M,S0504_C04_067MA"}, "S0503_C01_025E": {"label": "Estimate!!Total!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_025EA,S0503_C01_025M,S0503_C01_025MA"}, "S0504_C04_060E": {"label": "Estimate!!Foreign-born; Born in Oceania!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_060EA,S0504_C04_060M,S0504_C04_060MA"}, "S0804_C05_073E": {"label": "Estimate!!Worked from home!!Workers 16 years and over who did not work from home!!TIME ARRIVING AT WORK!!7:30 a.m. to 7:59 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "int", "group": "S0804", "limit": 0, "attributes": "S0804_C05_073EA,S0804_C05_073M,S0804_C05_073MA"}, "S0102_C01_034E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than high school graduate", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_034EA,S0102_C01_034M,S0102_C01_034MA"}, "S1501_C03_036E": {"label": "Estimate!!Male!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Black alone!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C03_036EA,S1501_C03_036M,S1501_C03_036MA"}, "S2303_C02_005E": {"label": "Estimate!!Percent!!Population 16 to 64 years!!WEEKS WORKED!!Worked 27 to 39 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C02_005EA,S2303_C02_005M,S2303_C02_005MA"}, "S0503_C01_024E": {"label": "Estimate!!Total!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_024EA,S0503_C01_024M,S0503_C01_024MA"}, "S0504_C04_061E": {"label": "Estimate!!Foreign-born; Born in Oceania!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed!!Percent of civilian labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_061EA,S0504_C04_061M,S0504_C04_061MA"}, "S0804_C05_072E": {"label": "Estimate!!Worked from home!!Workers 16 years and over who did not work from home!!TIME ARRIVING AT WORK!!7:00 a.m. to 7:29 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "int", "group": "S0804", "limit": 0, "attributes": "S0804_C05_072EA,S0804_C05_072M,S0804_C05_072MA"}, "S2303_C02_006E": {"label": "Estimate!!Percent!!Population 16 to 64 years!!WEEKS WORKED!!Worked 14 to 26 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C02_006EA,S2303_C02_006M,S2303_C02_006MA"}, "S0102_C01_033E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Population 60 Years and Over in the United States", "predicateType": "int", "group": "S0102", "limit": 0, "attributes": "S0102_C01_033EA,S0102_C01_033M,S0102_C01_033MA"}, "S1501_C03_037E": {"label": "Estimate!!Male!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!American Indian or Alaska Native alone", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C03_037EA,S1501_C03_037M,S1501_C03_037MA"}, "S0504_C04_062E": {"label": "Estimate!!Foreign-born; Born in Oceania!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Armed Forces", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_062EA,S0504_C04_062M,S0504_C04_062MA"}, "S0804_C05_071E": {"label": "Estimate!!Worked from home!!Workers 16 years and over who did not work from home!!TIME ARRIVING AT WORK!!6:30 a.m. to 6:59 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "int", "group": "S0804", "limit": 0, "attributes": "S0804_C05_071EA,S0804_C05_071M,S0804_C05_071MA"}, "S0102_C01_036E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college or associate's degree", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_036EA,S0102_C01_036M,S0102_C01_036MA"}, "S2303_C02_007E": {"label": "Estimate!!Percent!!Population 16 to 64 years!!WEEKS WORKED!!Worked 1 to 13 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C02_007EA,S2303_C02_007M,S2303_C02_007MA"}, "S1501_C03_038E": {"label": "Estimate!!Male!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!American Indian or Alaska Native alone!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C03_038EA,S1501_C03_038M,S1501_C03_038MA"}, "S2603_C06_069E": {"label": "Estimate!!College/university housing!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Naturalized U.S. citizen!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C06_069EA,S2603_C06_069M,S2603_C06_069MA"}, "S0503_C01_027E": {"label": "Estimate!!Total!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_027EA,S0503_C01_027M,S0503_C01_027MA"}, "S0503_C01_026E": {"label": "Estimate!!Total!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_026EA,S0503_C01_026M,S0503_C01_026MA"}, "S1501_C03_039E": {"label": "Estimate!!Male!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!American Indian or Alaska Native alone!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C03_039EA,S1501_C03_039M,S1501_C03_039MA"}, "S2303_C02_008E": {"label": "Estimate!!Percent!!Population 16 to 64 years!!WEEKS WORKED!!Did not work", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C02_008EA,S2303_C02_008M,S2303_C02_008MA"}, "S0504_C04_063E": {"label": "Estimate!!Foreign-born; Born in Oceania!!EMPLOYMENT STATUS!!Population 16 years and over!!Not in labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_063EA,S0504_C04_063M,S0504_C04_063MA"}, "S0804_C05_070E": {"label": "Estimate!!Worked from home!!Workers 16 years and over who did not work from home!!TIME ARRIVING AT WORK!!6:00 a.m. to 6:29 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "int", "group": "S0804", "limit": 0, "attributes": "S0804_C05_070EA,S0804_C05_070M,S0804_C05_070MA"}, "S0102_C01_035E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate, GED, or alternative", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_035EA,S0102_C01_035M,S0102_C01_035MA"}, "S2603_C06_068E": {"label": "Estimate!!College/university housing!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Naturalized U.S. citizen!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C06_068EA,S2603_C06_068M,S2603_C06_068MA"}, "S0804_C05_077E": {"label": "Estimate!!Worked from home!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!Less than 10 minutes", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "int", "group": "S0804", "limit": 0, "attributes": "S0804_C05_077EA,S0804_C05_077M,S0804_C05_077MA"}, "S0102_C01_038E": {"label": "Estimate!!Total!!RESPONSIBILITY FOR GRANDCHILDREN UNDER 18 YEARS!!Population 30 years and over", "concept": "Population 60 Years and Over in the United States", "predicateType": "int", "group": "S0102", "limit": 0, "attributes": "S0102_C01_038EA,S0102_C01_038M,S0102_C01_038MA"}, "S0503_C01_029E": {"label": "Estimate!!Total!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_029EA,S0503_C01_029M,S0503_C01_029MA"}, "S1501_C03_032E": {"label": "Estimate!!Male!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!White alone, not Hispanic or Latino!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C03_032EA,S1501_C03_032M,S1501_C03_032MA"}, "S2303_C02_001E": {"label": "Estimate!!Percent!!Population 16 to 64 years", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C02_001EA,S2303_C02_001M,S2303_C02_001MA"}, "S0804_C05_076E": {"label": "Estimate!!Worked from home!!Workers 16 years and over who did not work from home!!TIME ARRIVING AT WORK!!9:00 a.m. to 11:59 p.m.", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "int", "group": "S0804", "limit": 0, "attributes": "S0804_C05_076EA,S0804_C05_076M,S0804_C05_076MA"}, "S0102_C01_037E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree or higher", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_037EA,S0102_C01_037M,S0102_C01_037MA"}, "S2303_C02_002E": {"label": "Estimate!!Percent!!Population 16 to 64 years!!WEEKS WORKED!!Worked 50 to 52 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C02_002EA,S2303_C02_002M,S2303_C02_002MA"}, "S1501_C03_033E": {"label": "Estimate!!Male!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!White alone, not Hispanic or Latino!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C03_033EA,S1501_C03_033M,S1501_C03_033MA"}, "S0503_C01_028E": {"label": "Estimate!!Total!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_028EA,S0503_C01_028M,S0503_C01_028MA"}, "S0804_C05_075E": {"label": "Estimate!!Worked from home!!Workers 16 years and over who did not work from home!!TIME ARRIVING AT WORK!!8:30 a.m. to 8:59 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "int", "group": "S0804", "limit": 0, "attributes": "S0804_C05_075EA,S0804_C05_075M,S0804_C05_075MA"}, "S2303_C02_003E": {"label": "Estimate!!Percent!!Population 16 to 64 years!!WEEKS WORKED!!Worked 48 to 49 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C02_003EA,S2303_C02_003M,S2303_C02_003MA"}, "S1501_C03_034E": {"label": "Estimate!!Male!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Black alone", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C03_034EA,S1501_C03_034M,S1501_C03_034MA"}, "S0804_C05_074E": {"label": "Estimate!!Worked from home!!Workers 16 years and over who did not work from home!!TIME ARRIVING AT WORK!!8:00 a.m. to 8:29 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "int", "group": "S0804", "limit": 0, "attributes": "S0804_C05_074EA,S0804_C05_074M,S0804_C05_074MA"}, "S0102_C01_039E": {"label": "Estimate!!Total!!RESPONSIBILITY FOR GRANDCHILDREN UNDER 18 YEARS!!Population 30 years and over!!Living with grandchild(ren)", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_039EA,S0102_C01_039M,S0102_C01_039MA"}, "S1501_C03_035E": {"label": "Estimate!!Male!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Black alone!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C03_035EA,S1501_C03_035M,S1501_C03_035MA"}, "S2303_C02_004E": {"label": "Estimate!!Percent!!Population 16 to 64 years!!WEEKS WORKED!!Worked 40 to 47 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C02_004EA,S2303_C02_004M,S2303_C02_004MA"}, "S2603_C06_063E": {"label": "Estimate!!College/university housing!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Native!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C06_063EA,S2603_C06_063M,S2603_C06_063MA"}, "S2702PR_C01_088E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION ADJUSTED DOLLARS)!!Civilian noninstitutionalized population 16 years and older with earnings!!$35,000 to $49,999", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_088EA,S2702PR_C01_088M,S2702PR_C01_088MA"}, "S2701_C05_046E": {"label": "Estimate!!Percent Uninsured!!Civilian noninstitutionalized population!!EMPLOYMENT STATUS!!Civilian noninstitutionalized population 19 to 64 years!!Not in labor force", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C05_046EA,S2701_C05_046M,S2701_C05_046MA"}, "S0502_C02_129E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Occupied housing units!!HOUSING TENURE!!Average household size of renter-occupied unit", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_129EA,S0502_C02_129M,S0502_C02_129MA"}, "S0506_C02_131E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Occupied housing units!!ROOMS!!4 or 5 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_131EA,S0506_C02_131M,S0506_C02_131MA"}, "S0103PR_C01_062E": {"label": "Estimate!!Total!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_062EA,S0103PR_C01_062M,S0103PR_C01_062MA"}, "S2603_C06_062E": {"label": "Estimate!!College/university housing!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Native!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C06_062EA,S2603_C06_062M,S2603_C06_062MA"}, "S2702PR_C01_087E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION ADJUSTED DOLLARS)!!Civilian noninstitutionalized population 16 years and older with earnings!!$25,000 to $34,999", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_087EA,S2702PR_C01_087M,S2702PR_C01_087MA"}, "S0506_C02_132E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Occupied housing units!!ROOMS!!6 or 7 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_132EA,S0506_C02_132M,S0506_C02_132MA"}, "S2701_C05_047E": {"label": "Estimate!!Percent Uninsured!!Civilian noninstitutionalized population!!WORK EXPERIENCE!!Civilian noninstitutionalized population 19 to 64 years", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C05_047EA,S2701_C05_047M,S2701_C05_047MA"}, "S0103PR_C01_063E": {"label": "Estimate!!Total!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!English only", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_063EA,S0103PR_C01_063M,S0103PR_C01_063MA"}, "S2603_C06_061E": {"label": "Estimate!!College/university housing!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Native", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C06_061EA,S2603_C06_061M,S2603_C06_061MA"}, "S0804_C05_079E": {"label": "Estimate!!Worked from home!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!15 to 19 minutes", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "int", "group": "S0804", "limit": 0, "attributes": "S0804_C05_079EA,S0804_C05_079M,S0804_C05_079MA"}, "S2701_C05_044E": {"label": "Estimate!!Percent Uninsured!!Civilian noninstitutionalized population!!EMPLOYMENT STATUS!!Civilian noninstitutionalized population 19 to 64 years!!In labor force!!Employed", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C05_044EA,S2701_C05_044M,S2701_C05_044MA"}, "S2702PR_C01_086E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION ADJUSTED DOLLARS)!!Civilian noninstitutionalized population 16 years and older with earnings!!$15,000 to $24,999", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_086EA,S2702PR_C01_086M,S2702PR_C01_086MA"}, "S1501_C03_030E": {"label": "Estimate!!Male!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!White alone!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C03_030EA,S1501_C03_030M,S1501_C03_030MA"}, "S0103PR_C01_060E": {"label": "Estimate!!Total!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Naturalized U.S. citizen", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_060EA,S0103PR_C01_060M,S0103PR_C01_060MA"}, "S2603_C06_060E": {"label": "Estimate!!College/university housing!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C06_060EA,S2603_C06_060M,S2603_C06_060MA"}, "S0804_C05_078E": {"label": "Estimate!!Worked from home!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!10 to 14 minutes", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "int", "group": "S0804", "limit": 0, "attributes": "S0804_C05_078EA,S0804_C05_078M,S0804_C05_078MA"}, "S2701_C05_045E": {"label": "Estimate!!Percent Uninsured!!Civilian noninstitutionalized population!!EMPLOYMENT STATUS!!Civilian noninstitutionalized population 19 to 64 years!!In labor force!!Unemployed", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C05_045EA,S2701_C05_045M,S2701_C05_045MA"}, "S2702PR_C01_085E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION ADJUSTED DOLLARS)!!Civilian noninstitutionalized population 16 years and older with earnings!!$5,000 to $14,999", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_085EA,S2702PR_C01_085M,S2702PR_C01_085MA"}, "S0506_C02_130E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Occupied housing units!!ROOMS!!2 or 3 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_130EA,S0506_C02_130M,S0506_C02_130MA"}, "S0103PR_C01_061E": {"label": "Estimate!!Total!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Not a U.S. citizen", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_061EA,S0103PR_C01_061M,S0103PR_C01_061MA"}, "S1501_C03_031E": {"label": "Estimate!!Male!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!White alone, not Hispanic or Latino", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C03_031EA,S1501_C03_031M,S1501_C03_031MA"}, "S0502_C02_125E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C02_125EA,S0502_C02_125M,S0502_C02_125MA"}, "S2701_C05_042E": {"label": "Estimate!!Percent Uninsured!!Civilian noninstitutionalized population!!EMPLOYMENT STATUS!!Civilian noninstitutionalized population 19 to 64 years", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C05_042EA,S2701_C05_042M,S2701_C05_042MA"}, "S0103PR_C01_066E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Civilian population 16 years and over", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_066EA,S0103PR_C01_066M,S0103PR_C01_066MA"}, "S0102_C01_030E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over!!Divorced", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_030EA,S0102_C01_030M,S0102_C01_030MA"}, "S2603_C06_067E": {"label": "Estimate!!College/university housing!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Naturalized U.S. citizen", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C06_067EA,S2603_C06_067M,S2603_C06_067MA"}, "S2603_C06_066E": {"label": "Estimate!!College/university housing!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C06_066EA,S2603_C06_066M,S2603_C06_066MA"}, "S2701_C05_043E": {"label": "Estimate!!Percent Uninsured!!Civilian noninstitutionalized population!!EMPLOYMENT STATUS!!Civilian noninstitutionalized population 19 to 64 years!!In labor force", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C05_043EA,S2701_C05_043M,S2701_C05_043MA"}, "S0502_C02_126E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Occupied housing units!!HOUSING TENURE!!Owner-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_126EA,S0502_C02_126M,S0502_C02_126MA"}, "S0103PR_C01_067E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Civilian population 16 years and over!!In labor force", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_067EA,S0103PR_C01_067M,S0103PR_C01_067MA"}, "S2603_C06_065E": {"label": "Estimate!!College/university housing!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C06_065EA,S2603_C06_065M,S2603_C06_065MA"}, "S2701_C05_040E": {"label": "Estimate!!Percent Uninsured!!Civilian noninstitutionalized population!!EDUCATIONAL ATTAINMENT!!Civilian noninstitutionalized population 26 years and over!!Some college or associate's degree", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C05_040EA,S2701_C05_040M,S2701_C05_040MA"}, "S0502_C02_127E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Occupied housing units!!HOUSING TENURE!!Renter-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_127EA,S0502_C02_127M,S0502_C02_127MA"}, "S0102_C01_032E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_032EA,S0102_C01_032M,S0102_C01_032MA"}, "S0103PR_C01_064E": {"label": "Estimate!!Total!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_064EA,S0103PR_C01_064M,S0103PR_C01_064MA"}, "S2602_C03_030E": {"label": "Estimate!!Adult correctional facilities!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!White alone, Not Hispanic or Latino", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C03_030EA,S2602_C03_030M,S2602_C03_030MA"}, "S2603_C06_064E": {"label": "Estimate!!College/university housing!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C06_064EA,S2603_C06_064M,S2603_C06_064MA"}, "S2702PR_C01_089E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION ADJUSTED DOLLARS)!!Civilian noninstitutionalized population 16 years and older with earnings!!$50,000 to $74,999", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_089EA,S2702PR_C01_089M,S2702PR_C01_089MA"}, "S2701_C05_041E": {"label": "Estimate!!Percent Uninsured!!Civilian noninstitutionalized population!!EDUCATIONAL ATTAINMENT!!Civilian noninstitutionalized population 26 years and over!!Bachelor's degree or higher", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C05_041EA,S2701_C05_041M,S2701_C05_041MA"}, "S0502_C02_128E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Occupied housing units!!HOUSING TENURE!!Average household size of owner-occupied unit", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_128EA,S0502_C02_128M,S0502_C02_128MA"}, "S0103PR_C01_065E": {"label": "Estimate!!Total!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English!!Speak English less than \"very well\"", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_065EA,S0103PR_C01_065M,S0103PR_C01_065MA"}, "S0102_C01_031E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over!!Separated", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_031EA,S0102_C01_031M,S0102_C01_031MA"}, "S2602_C03_031E": {"label": "Estimate!!Adult correctional facilities!!MARITAL STATUS!!Population 15 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C03_031EA,S2602_C03_031M,S2602_C03_031MA"}, "S2702PR_C01_080E": {"label": "Estimate!!Total!!Civilian noninstitutionalized workers 16 years and over!!OCCUPATION!!Sales and office occupations", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_080EA,S2702PR_C01_080M,S2702PR_C01_080MA"}, "S0502_C02_121E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_121EA,S0502_C02_121M,S0502_C02_121MA"}, "S0506_C02_139E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Occupied housing units!!SELECTED CHARACTERISTICS!!Limited English Speaking Households", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_139EA,S0506_C02_139M,S0506_C02_139MA"}, "S0501_C02_007E": {"label": "Estimate!!Native!!Total population!!SEX AND AGE!!25 to 44 years", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_007EA,S0501_C02_007M,S0501_C02_007MA"}, "S2602_C03_020E": {"label": "Estimate!!Adult correctional facilities!!Total population!!SEX AND AGE!!Median age (years)", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C03_020EA,S2602_C03_020M,S2602_C03_020MA"}, "S0502_C02_122E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_122EA,S0502_C02_122M,S0502_C02_122MA"}, "S0502PR_C01_060E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Employed", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_060EA,S0502PR_C01_060M,S0502PR_C01_060MA"}, "S2602_C03_021E": {"label": "Estimate!!Adult correctional facilities!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C03_021EA,S2602_C03_021M,S2602_C03_021MA"}, "S0501_C02_008E": {"label": "Estimate!!Native!!Total population!!SEX AND AGE!!45 to 54 years", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_008EA,S0501_C02_008M,S0501_C02_008MA"}, "S0501_C02_005E": {"label": "Estimate!!Native!!Total population!!SEX AND AGE!!5 to 17 years", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_005EA,S0501_C02_005M,S0501_C02_005MA"}, "S0506_C02_137E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Occupied housing units!!VEHICLES AVAILABLE!!1 or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_137EA,S0506_C02_137M,S0506_C02_137MA"}, "S0502_C02_123E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_123EA,S0502_C02_123M,S0502_C02_123MA"}, "S0502PR_C01_061E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_061EA,S0502PR_C01_061M,S0502PR_C01_061MA"}, "S2701_C05_028E": {"label": "Estimate!!Percent Uninsured!!Civilian noninstitutionalized population!!LIVING ARRANGEMENTS!!In family households!!In other families!!Male reference person, no spouse present", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C05_028EA,S2701_C05_028M,S2701_C05_028MA"}, "S0103PR_C01_068E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Civilian population 16 years and over!!In labor force!!Employed", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_068EA,S0103PR_C01_068M,S0103PR_C01_068MA"}, "S2602_C03_022E": {"label": "Estimate!!Adult correctional facilities!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!White", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C03_022EA,S2602_C03_022M,S2602_C03_022MA"}, "S0506_C02_138E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Occupied housing units!!SELECTED CHARACTERISTICS!!No telephone service available", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_138EA,S0506_C02_138M,S0506_C02_138MA"}, "S0502_C02_124E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_124EA,S0502_C02_124M,S0502_C02_124MA"}, "S0103PR_C01_069E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Civilian population 16 years and over!!In labor force!!Unemployed", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_069EA,S0103PR_C01_069M,S0103PR_C01_069MA"}, "S2701_C05_029E": {"label": "Estimate!!Percent Uninsured!!Civilian noninstitutionalized population!!LIVING ARRANGEMENTS!!In family households!!In other families!!Female reference person, no spouse present", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C05_029EA,S2701_C05_029M,S2701_C05_029MA"}, "S2602_C03_023E": {"label": "Estimate!!Adult correctional facilities!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C03_023EA,S2602_C03_023M,S2602_C03_023MA"}, "S0501_C02_006E": {"label": "Estimate!!Native!!Total population!!SEX AND AGE!!18 to 24 years", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_006EA,S0501_C02_006M,S0501_C02_006MA"}, "S0502PR_C01_062E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed!!Percent of civilian labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_062EA,S0502PR_C01_062M,S0502PR_C01_062MA"}, "S2702PR_C01_084E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION ADJUSTED DOLLARS)!!Civilian noninstitutionalized population 16 years and older with earnings!!$1 to $4,999 or loss", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_084EA,S2702PR_C01_084M,S2702PR_C01_084MA"}, "S0506_C02_135E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Occupied housing units!!1.01 or more occupants per room", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_135EA,S0506_C02_135M,S0506_C02_135MA"}, "S2701_C05_026E": {"label": "Estimate!!Percent Uninsured!!Civilian noninstitutionalized population!!LIVING ARRANGEMENTS!!In family households!!In married couple families", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C05_026EA,S2701_C05_026M,S2701_C05_026MA"}, "S2602_C03_024E": {"label": "Estimate!!Adult correctional facilities!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C03_024EA,S2602_C03_024M,S2602_C03_024MA"}, "S0502PR_C01_063E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Armed Forces", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_063EA,S0502PR_C01_063M,S0502PR_C01_063MA"}, "S2702PR_C01_083E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION ADJUSTED DOLLARS)!!Civilian noninstitutionalized population 16 years and older with earnings", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "int", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_083EA,S2702PR_C01_083M,S2702PR_C01_083MA"}, "S0506_C02_136E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Occupied housing units!!VEHICLES AVAILABLE!!None", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_136EA,S0506_C02_136M,S0506_C02_136MA"}, "S2701_C05_027E": {"label": "Estimate!!Percent Uninsured!!Civilian noninstitutionalized population!!LIVING ARRANGEMENTS!!In family households!!In other families", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C05_027EA,S2701_C05_027M,S2701_C05_027MA"}, "S2602_C03_025E": {"label": "Estimate!!Adult correctional facilities!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Asian", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C03_025EA,S2602_C03_025M,S2602_C03_025MA"}, "S0502PR_C01_064E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Population 16 years and over!!Not in labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_064EA,S0502PR_C01_064M,S0502PR_C01_064MA"}, "S2702PR_C01_082E": {"label": "Estimate!!Total!!Civilian noninstitutionalized workers 16 years and over!!OCCUPATION!!Production, transportation, and material moving occupations", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_082EA,S2702PR_C01_082M,S2702PR_C01_082MA"}, "S2701_C05_024E": {"label": "Estimate!!Percent Uninsured!!Civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C05_024EA,S2701_C05_024M,S2701_C05_024MA"}, "S0506_C02_133E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Occupied housing units!!ROOMS!!8 or more rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_133EA,S0506_C02_133M,S0506_C02_133MA"}, "S2602_C03_026E": {"label": "Estimate!!Adult correctional facilities!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C03_026EA,S2602_C03_026M,S2602_C03_026MA"}, "S0502PR_C01_065E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_065EA,S0502PR_C01_065M,S0502PR_C01_065MA"}, "S0501_C02_009E": {"label": "Estimate!!Native!!Total population!!SEX AND AGE!!55 to 64 years", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_009EA,S0501_C02_009M,S0501_C02_009MA"}, "S2702PR_C01_081E": {"label": "Estimate!!Total!!Civilian noninstitutionalized workers 16 years and over!!OCCUPATION!!Natural resources, construction, and maintenance occupations", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_081EA,S2702PR_C01_081M,S2702PR_C01_081MA"}, "S2602_C03_027E": {"label": "Estimate!!Adult correctional facilities!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Some other race", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C03_027EA,S2602_C03_027M,S2602_C03_027MA"}, "S0502_C02_120E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_120EA,S0502_C02_120M,S0502_C02_120MA"}, "S0506_C02_134E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Occupied housing units!!Median number of rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_134EA,S0506_C02_134M,S0506_C02_134MA"}, "S2701_C05_025E": {"label": "Estimate!!Percent Uninsured!!Civilian noninstitutionalized population!!LIVING ARRANGEMENTS!!In family households", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C05_025EA,S2701_C05_025M,S2701_C05_025MA"}, "S0502PR_C01_066E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Private wage and salary workers", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_066EA,S0502PR_C01_066M,S0502PR_C01_066MA"}, "S0503_C01_041E": {"label": "Estimate!!Total!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C01_041EA,S0503_C01_041M,S0503_C01_041MA"}, "S2602_C03_028E": {"label": "Estimate!!Adult correctional facilities!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!Two or more races", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C03_028EA,S2602_C03_028M,S2602_C03_028MA"}, "S1603_C05_010E": {"label": "Estimate!!Percent!!Speak a language other than English at home!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population 5 years and over for whom poverty status is determined!!Below poverty level", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "float", "group": "S1603", "limit": 0, "attributes": "S1603_C05_010EA,S1603_C05_010M,S1603_C05_010MA"}, "S2704_C02_024E": {"label": "Estimate!!Public Coverage!!PUBLIC HEALTH INSURANCE ALONE OR IN COMBINATION!!65 to 74 years", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2704", "limit": 0, "attributes": "S2704_C02_024EA,S2704_C02_024M,S2704_C02_024MA"}, "S0502PR_C01_067E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Government workers", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_067EA,S0502PR_C01_067M,S0502PR_C01_067MA"}, "S2602_C03_029E": {"label": "Estimate!!Adult correctional facilities!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!Hispanic or Latino (of any race)", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C03_029EA,S2602_C03_029M,S2602_C03_029MA"}, "S0503_C01_040E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_040EA,S0503_C01_040M,S0503_C01_040MA"}, "S0102_C01_029E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_029EA,S0102_C01_029M,S0102_C01_029MA"}, "S2704_C02_025E": {"label": "Estimate!!Public Coverage!!PUBLIC HEALTH INSURANCE ALONE OR IN COMBINATION!!75 years and over", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2704", "limit": 0, "attributes": "S2704_C02_025EA,S2704_C02_025M,S2704_C02_025MA"}, "S0502PR_C01_068E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Self-employed workers in own not incorporated business", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_068EA,S0502PR_C01_068M,S0502PR_C01_068MA"}, "S0503_C01_043E": {"label": "Estimate!!Total!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Elementary school (grades K-8)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_043EA,S0503_C01_043M,S0503_C01_043MA"}, "S1603_C05_012E": {"label": "Estimate!!Percent!!Speak a language other than English at home!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "int", "group": "S1603", "limit": 0, "attributes": "S1603_C05_012EA,S1603_C05_012M,S1603_C05_012MA"}, "S2704_C02_026E": {"label": "Estimate!!Public Coverage!!COVERAGE ALONE!!Public health insurance alone", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2704", "limit": 0, "attributes": "S2704_C02_026EA,S2704_C02_026M,S2704_C02_026MA"}, "S0502PR_C01_069E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Unpaid family workers", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_069EA,S0502PR_C01_069M,S0502PR_C01_069MA"}, "S0503_C01_042E": {"label": "Estimate!!Total!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Nursery school, preschool", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_042EA,S0503_C01_042M,S0503_C01_042MA"}, "S1603_C05_011E": {"label": "Estimate!!Percent!!Speak a language other than English at home!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population 5 years and over for whom poverty status is determined!!At or above poverty level", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "float", "group": "S1603", "limit": 0, "attributes": "S1603_C05_011EA,S1603_C05_011M,S1603_C05_011MA"}, "S2704_C02_027E": {"label": "Estimate!!Public Coverage!!COVERAGE ALONE!!Public health insurance alone!!Medicare coverage alone", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2704", "limit": 0, "attributes": "S2704_C02_027EA,S2704_C02_027M,S2704_C02_027MA"}, "S0501_C02_003E": {"label": "Estimate!!Native!!Total population!!SEX AND AGE!!Female", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_003EA,S0501_C02_003M,S0501_C02_003MA"}, "S0503_C01_045E": {"label": "Estimate!!Total!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!College or graduate school", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_045EA,S0503_C01_045M,S0503_C01_045MA"}, "S2303_C02_009E": {"label": "Estimate!!Percent!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 35 or more hours per week", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C02_009EA,S2303_C02_009M,S2303_C02_009MA"}, "S0504_C04_076E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Civilian employed population 16 years and over!!INDUSTRY!!Manufacturing", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_076EA,S0504_C04_076M,S0504_C04_076MA"}, "S2704_C02_020E": {"label": "Estimate!!Public Coverage!!PUBLIC HEALTH INSURANCE ALONE OR IN COMBINATION!!26 to 34 years", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2704", "limit": 0, "attributes": "S2704_C02_020EA,S2704_C02_020M,S2704_C02_020MA"}, "S1703_C03_032E": {"label": "Estimate!!Less than 100 percent of the poverty level!!WORK STATUS!!Population 16 to 64 years", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C03_032EA,S1703_C03_032M,S1703_C03_032MA"}, "S1603_C05_014E": {"label": "Estimate!!Percent!!Speak a language other than English at home!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate (includes equivalency)", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "float", "group": "S1603", "limit": 0, "attributes": "S1603_C05_014EA,S1603_C05_014M,S1603_C05_014MA"}, "S0501_C02_004E": {"label": "Estimate!!Native!!Total population!!SEX AND AGE!!Under 5 years", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_004EA,S0501_C02_004M,S0501_C02_004MA"}, "S0503_C01_044E": {"label": "Estimate!!Total!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!High school (grades 9-12)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_044EA,S0503_C01_044M,S0503_C01_044MA"}, "S0504_C04_077E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Civilian employed population 16 years and over!!INDUSTRY!!Wholesale trade", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_077EA,S0504_C04_077M,S0504_C04_077MA"}, "S2704_C02_021E": {"label": "Estimate!!Public Coverage!!PUBLIC HEALTH INSURANCE ALONE OR IN COMBINATION!!35 to 44 years", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2704", "limit": 0, "attributes": "S2704_C02_021EA,S2704_C02_021M,S2704_C02_021MA"}, "S1703_C03_033E": {"label": "Estimate!!Less than 100 percent of the poverty level!!WORK STATUS!!Population 16 to 64 years!!Worked full-time, year-round", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C03_033EA,S1703_C03_033M,S1703_C03_033MA"}, "S1603_C05_013E": {"label": "Estimate!!Percent!!Speak a language other than English at home!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than high school graduate", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "float", "group": "S1603", "limit": 0, "attributes": "S1603_C05_013EA,S1603_C05_013M,S1603_C05_013MA"}, "S0503_C01_047E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than high school graduate", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_047EA,S0503_C01_047M,S0503_C01_047MA"}, "S0501_C02_001E": {"label": "Estimate!!Native!!Total population", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C02_001EA,S0501_C02_001M,S0501_C02_001MA"}, "S2704_C02_022E": {"label": "Estimate!!Public Coverage!!PUBLIC HEALTH INSURANCE ALONE OR IN COMBINATION!!45 to 54 years", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2704", "limit": 0, "attributes": "S2704_C02_022EA,S2704_C02_022M,S2704_C02_022MA"}, "S1703_C03_034E": {"label": "Estimate!!Less than 100 percent of the poverty level!!WORK STATUS!!Population 16 to 64 years!!Worked less than full-time, year-round", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C03_034EA,S1703_C03_034M,S1703_C03_034MA"}, "S1603_C05_016E": {"label": "Estimate!!Percent!!Speak a language other than English at home!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree or higher", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "float", "group": "S1603", "limit": 0, "attributes": "S1603_C05_016EA,S1603_C05_016M,S1603_C05_016MA"}, "S0504_C04_078E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Civilian employed population 16 years and over!!INDUSTRY!!Retail trade", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_078EA,S0504_C04_078M,S0504_C04_078MA"}, "S0501_C02_002E": {"label": "Estimate!!Native!!Total population!!SEX AND AGE!!Male", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_002EA,S0501_C02_002M,S0501_C02_002MA"}, "S0503_C01_046E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C01_046EA,S0503_C01_046M,S0503_C01_046MA"}, "S2704_C02_023E": {"label": "Estimate!!Public Coverage!!PUBLIC HEALTH INSURANCE ALONE OR IN COMBINATION!!55 to 64 years", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2704", "limit": 0, "attributes": "S2704_C02_023EA,S2704_C02_023M,S2704_C02_023MA"}, "S1703_C03_035E": {"label": "Estimate!!Less than 100 percent of the poverty level!!WORK STATUS!!Population 16 to 64 years!!Did not work", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C03_035EA,S1703_C03_035M,S1703_C03_035MA"}, "S1603_C05_015E": {"label": "Estimate!!Percent!!Speak a language other than English at home!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college or associate's degree", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "float", "group": "S1603", "limit": 0, "attributes": "S1603_C05_015EA,S1603_C05_015M,S1603_C05_015MA"}, "S0504_C04_079E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Civilian employed population 16 years and over!!INDUSTRY!!Transportation and warehousing, and utilities", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_079EA,S0504_C04_079M,S0504_C04_079MA"}, "S0503_C01_037E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_037EA,S0503_C01_037M,S0503_C01_037MA"}, "S0504_C04_072E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Civilian employed population 16 years and over!!OCCUPATION!!Natural resources, construction, and maintenance occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_072EA,S0504_C04_072M,S0504_C04_072MA"}, "S0804_C05_061E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!INDUSTRY!!Armed forces", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C05_061EA,S0804_C05_061M,S0804_C05_061MA"}, "S2303_C02_017E": {"label": "Estimate!!Percent!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 15 to 34 hours per week!!50 to 52 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C02_017EA,S2303_C02_017M,S2303_C02_017MA"}, "S0102_C01_022E": {"label": "Estimate!!Total!!HOUSEHOLDS BY TYPE!!Households!!Family households", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_022EA,S0102_C01_022M,S0102_C01_022MA"}, "S2201_C05_030E": {"label": "Estimate!!Households not receiving food stamps/SNAP!!Households!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Some other race alone", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C05_030EA,S2201_C05_030M,S2201_C05_030MA"}, "S1501_C03_048E": {"label": "Estimate!!Male!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Some other race alone!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C03_048EA,S1501_C03_048M,S1501_C03_048MA"}, "S2603_C06_059E": {"label": "Estimate!!College/university housing!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Abroad", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C06_059EA,S2603_C06_059M,S2603_C06_059MA"}, "S0503_C01_036E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C01_036EA,S0503_C01_036M,S0503_C01_036MA"}, "S0504_C04_073E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Civilian employed population 16 years and over!!OCCUPATION!!Production, transportation, and material moving occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_073EA,S0504_C04_073M,S0504_C04_073MA"}, "S0804_C05_060E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!INDUSTRY!!Public administration", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C05_060EA,S0804_C05_060M,S0804_C05_060MA"}, "S2303_C02_018E": {"label": "Estimate!!Percent!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 15 to 34 hours per week!!48 to 49 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C02_018EA,S2303_C02_018M,S2303_C02_018MA"}, "S0102_C01_021E": {"label": "Estimate!!Total!!HOUSEHOLDS BY TYPE!!Households", "concept": "Population 60 Years and Over in the United States", "predicateType": "int", "group": "S0102", "limit": 0, "attributes": "S0102_C01_021EA,S0102_C01_021M,S0102_C01_021MA"}, "S1501_C03_049E": {"label": "Estimate!!Male!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Two or more races", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C03_049EA,S1501_C03_049M,S1501_C03_049MA"}, "S2603_C06_058E": {"label": "Estimate!!College/university housing!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the United States!!Different county!!Different state", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C06_058EA,S2603_C06_058M,S2603_C06_058MA"}, "S2303_C02_019E": {"label": "Estimate!!Percent!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 15 to 34 hours per week!!40 to 47 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C02_019EA,S2303_C02_019M,S2303_C02_019MA"}, "S0504_C04_074E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Civilian employed population 16 years and over!!INDUSTRY!!Agriculture, forestry, fishing and hunting, and mining", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_074EA,S0504_C04_074M,S0504_C04_074MA"}, "S2502_C05_009E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Hispanic or Latino origin", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C05_009EA,S2502_C05_009M,S2502_C05_009MA"}, "S1703_C03_030E": {"label": "Estimate!!Less than 100 percent of the poverty level!!Population for whom poverty status is determined!!DISABILITY STATUS!!With any disability", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C03_030EA,S1703_C03_030M,S1703_C03_030MA"}, "S0102_C01_024E": {"label": "Estimate!!Total!!HOUSEHOLDS BY TYPE!!Households!!Family households!!Female householder, no spouse present, family", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_024EA,S0102_C01_024M,S0102_C01_024MA"}, "S0503_C01_039E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over!!Divorced or separated", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_039EA,S0503_C01_039M,S0503_C01_039MA"}, "S2603_C06_057E": {"label": "Estimate!!College/university housing!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the United States!!Different county!!Same state", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C06_057EA,S2603_C06_057M,S2603_C06_057MA"}, "S0504_C04_075E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Civilian employed population 16 years and over!!INDUSTRY!!Construction", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_075EA,S0504_C04_075M,S0504_C04_075MA"}, "S1703_C03_031E": {"label": "Estimate!!Less than 100 percent of the poverty level!!Population for whom poverty status is determined!!DISABILITY STATUS!!No disability", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C03_031EA,S1703_C03_031M,S1703_C03_031MA"}, "S0102_C01_023E": {"label": "Estimate!!Total!!HOUSEHOLDS BY TYPE!!Households!!Family households!!Married-couple family", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_023EA,S0102_C01_023M,S0102_C01_023MA"}, "S0503_C01_038E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_038EA,S0503_C01_038M,S0503_C01_038MA"}, "S2603_C06_056E": {"label": "Estimate!!College/university housing!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the United States!!Different county", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C06_056EA,S2603_C06_056M,S2603_C06_056MA"}, "S2502_C05_007E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!One race --!!Some other race", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C05_007EA,S2502_C05_007M,S2502_C05_007MA"}, "S0804_C05_065E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!CLASS OF WORKER!!Unpaid family workers", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C05_065EA,S0804_C05_065M,S0804_C05_065MA"}, "S0102_C01_026E": {"label": "Estimate!!Total!!HOUSEHOLDS BY TYPE!!Households!!Nonfamily households!!Householder living alone", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_026EA,S0102_C01_026M,S0102_C01_026MA"}, "S2704_C02_028E": {"label": "Estimate!!Public Coverage!!COVERAGE ALONE!!Public health insurance alone!!Medicaid/means tested coverage alone", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2704", "limit": 0, "attributes": "S2704_C02_028EA,S2704_C02_028M,S2704_C02_028MA"}, "S2201_C05_034E": {"label": "Estimate!!Households not receiving food stamps/SNAP!!Households!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Median income (dollars)", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C05_034EA,S2201_C05_034M,S2201_C05_034MA"}, "S2303_C02_013E": {"label": "Estimate!!Percent!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 35 or more hours per week!!27 to 39 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C02_013EA,S2303_C02_013M,S2303_C02_013MA"}, "S1501_C03_044E": {"label": "Estimate!!Male!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Native Hawaiian and Other Pacific Islander alone!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C03_044EA,S1501_C03_044M,S1501_C03_044MA"}, "S0103PR_C01_070E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Civilian population 16 years and over!!In labor force!!Unemployed!!Percent of civilian labor force", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_070EA,S0103PR_C01_070M,S0103PR_C01_070MA"}, "S2502_C05_008E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Two or more races", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C05_008EA,S2502_C05_008M,S2502_C05_008MA"}, "S0804_C05_064E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!CLASS OF WORKER!!Self-employed workers in own not incorporated business", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C05_064EA,S0804_C05_064M,S0804_C05_064MA"}, "S2704_C02_029E": {"label": "Estimate!!Public Coverage!!COVERAGE ALONE!!Public health insurance alone!!VA health care coverage alone", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2704", "limit": 0, "attributes": "S2704_C02_029EA,S2704_C02_029M,S2704_C02_029MA"}, "S2201_C05_033E": {"label": "Estimate!!Households not receiving food stamps/SNAP!!Households!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!White alone, not Hispanic or Latino", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C05_033EA,S2201_C05_033M,S2201_C05_033MA"}, "S0102_C01_025E": {"label": "Estimate!!Total!!HOUSEHOLDS BY TYPE!!Households!!Nonfamily households", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_025EA,S0102_C01_025M,S0102_C01_025MA"}, "S2303_C02_014E": {"label": "Estimate!!Percent!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 35 or more hours per week!!14 to 26 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C02_014EA,S2303_C02_014M,S2303_C02_014MA"}, "S0103PR_C01_071E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Civilian population 16 years and over!!Not in labor force", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_071EA,S0103PR_C01_071M,S0103PR_C01_071MA"}, "S1501_C03_045E": {"label": "Estimate!!Male!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Native Hawaiian and Other Pacific Islander alone!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C03_045EA,S1501_C03_045M,S1501_C03_045MA"}, "S0804_C05_063E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!CLASS OF WORKER!!Government workers", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C05_063EA,S0804_C05_063M,S0804_C05_063MA"}, "S0504_C04_070E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Civilian employed population 16 years and over!!OCCUPATION!!Service occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_070EA,S0504_C04_070M,S0504_C04_070MA"}, "S2502_C05_005E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!One race --!!Asian", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C05_005EA,S2502_C05_005M,S2502_C05_005MA"}, "S0102_C01_028E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_028EA,S0102_C01_028M,S0102_C01_028MA"}, "S1501_C03_046E": {"label": "Estimate!!Male!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Some other race alone", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C03_046EA,S1501_C03_046M,S1501_C03_046MA"}, "S2303_C02_015E": {"label": "Estimate!!Percent!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 35 or more hours per week!!1 to 13 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C02_015EA,S2303_C02_015M,S2303_C02_015MA"}, "S2201_C05_032E": {"label": "Estimate!!Households not receiving food stamps/SNAP!!Households!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Hispanic or Latino origin (of any race)", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C05_032EA,S2201_C05_032M,S2201_C05_032MA"}, "S2502_C05_006E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!One race --!!Native Hawaiian and Other Pacific Islander", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C05_006EA,S2502_C05_006M,S2502_C05_006MA"}, "S0504_C04_071E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Civilian employed population 16 years and over!!OCCUPATION!!Sales and office occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_071EA,S0504_C04_071M,S0504_C04_071MA"}, "S0804_C05_062E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!CLASS OF WORKER!!Private wage and salary workers", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C05_062EA,S0804_C05_062M,S0804_C05_062MA"}, "S0102_C01_027E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over", "concept": "Population 60 Years and Over in the United States", "predicateType": "int", "group": "S0102", "limit": 0, "attributes": "S0102_C01_027EA,S0102_C01_027M,S0102_C01_027MA"}, "S1501_C03_047E": {"label": "Estimate!!Male!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Some other race alone!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C03_047EA,S1501_C03_047M,S1501_C03_047MA"}, "S2201_C05_031E": {"label": "Estimate!!Households not receiving food stamps/SNAP!!Households!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Two or more races", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C05_031EA,S2201_C05_031M,S2201_C05_031MA"}, "S2303_C02_016E": {"label": "Estimate!!Percent!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 15 to 34 hours per week", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C02_016EA,S2303_C02_016M,S2303_C02_016MA"}, "S2603_C06_051E": {"label": "Estimate!!College/university housing!!DISABILITY STATUS!!Population 65 years and over!!With a disability", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C06_051EA,S2603_C06_051M,S2603_C06_051MA"}, "S2701_C05_034E": {"label": "Estimate!!Percent Uninsured!!Civilian noninstitutionalized population!!NATIVITY AND U.S. CITIZENSHIP STATUS!!Foreign born!!Not a citizen", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C05_034EA,S2701_C05_034M,S2701_C05_034MA"}, "S0804_C05_069E": {"label": "Estimate!!Worked from home!!Workers 16 years and over who did not work from home!!TIME ARRIVING AT WORK!!5:30 a.m. to 5:59 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "int", "group": "S0804", "limit": 0, "attributes": "S0804_C05_069EA,S0804_C05_069M,S0804_C05_069MA"}, "S2702PR_C01_076E": {"label": "Estimate!!Total!!Civilian noninstitutionalized workers 16 years and over!!INDUSTRY!!Other services (except public administration)", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_076EA,S2702PR_C01_076M,S2702PR_C01_076MA"}, "S0502_C02_117E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_117EA,S0502_C02_117M,S0502_C02_117MA"}, "S2502_C05_003E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!One race --!!Black or African American", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C05_003EA,S2502_C05_003M,S2502_C05_003MA"}, "S2201_C05_038E": {"label": "Estimate!!Households not receiving food stamps/SNAP!!WORK STATUS!!Families!!2 or more workers in past 12 months", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C05_038EA,S2201_C05_038M,S2201_C05_038MA"}, "S1501_C03_040E": {"label": "Estimate!!Male!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Asian alone", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C03_040EA,S1501_C03_040M,S1501_C03_040MA"}, "S0506_C02_143E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Renter-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C02_143EA,S0506_C02_143M,S0506_C02_143MA"}, "S0103PR_C01_074E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings!!Mean earnings (dollars)", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_074EA,S0103PR_C01_074M,S0103PR_C01_074MA"}, "S2603_C06_050E": {"label": "Estimate!!College/university housing!!DISABILITY STATUS!!Population 65 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C06_050EA,S2603_C06_050M,S2603_C06_050MA"}, "S0804_C05_068E": {"label": "Estimate!!Worked from home!!Workers 16 years and over who did not work from home!!TIME ARRIVING AT WORK!!5:00 a.m. to 5:29 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "int", "group": "S0804", "limit": 0, "attributes": "S0804_C05_068EA,S0804_C05_068M,S0804_C05_068MA"}, "S2701_C05_035E": {"label": "Estimate!!Percent Uninsured!!Civilian noninstitutionalized population!!DISABILITY STATUS!!With a disability", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C05_035EA,S2701_C05_035M,S2701_C05_035MA"}, "S0506_C02_144E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_144EA,S0506_C02_144M,S0506_C02_144MA"}, "S2502_C05_004E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!One race --!!American Indian and Alaska Native", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C05_004EA,S2502_C05_004M,S2502_C05_004MA"}, "S2702PR_C01_075E": {"label": "Estimate!!Total!!Civilian noninstitutionalized workers 16 years and over!!INDUSTRY!!Arts, entertainment, and recreation, and accommodation and food services", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_075EA,S2702PR_C01_075M,S2702PR_C01_075MA"}, "S2201_C05_037E": {"label": "Estimate!!Households not receiving food stamps/SNAP!!WORK STATUS!!Families!!1 worker in past 12 months", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C05_037EA,S2201_C05_037M,S2201_C05_037MA"}, "S0502_C02_118E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_118EA,S0502_C02_118M,S0502_C02_118MA"}, "S2303_C02_010E": {"label": "Estimate!!Percent!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 35 or more hours per week!!50 to 52 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C02_010EA,S2303_C02_010M,S2303_C02_010MA"}, "S1501_C03_041E": {"label": "Estimate!!Male!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Asian alone!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C03_041EA,S1501_C03_041M,S1501_C03_041MA"}, "S0103PR_C01_075E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_075EA,S0103PR_C01_075M,S0103PR_C01_075MA"}, "S2701_C05_032E": {"label": "Estimate!!Percent Uninsured!!Civilian noninstitutionalized population!!NATIVITY AND U.S. CITIZENSHIP STATUS!!Foreign born", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C05_032EA,S2701_C05_032M,S2701_C05_032MA"}, "S0804_C05_067E": {"label": "Estimate!!Worked from home!!Workers 16 years and over who did not work from home!!TIME ARRIVING AT WORK!!12:00 a.m. to 4:59 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "int", "group": "S0804", "limit": 0, "attributes": "S0804_C05_067EA,S0804_C05_067M,S0804_C05_067MA"}, "S2702PR_C01_074E": {"label": "Estimate!!Total!!Civilian noninstitutionalized workers 16 years and over!!INDUSTRY!!Educational services, and health care and social assistance", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_074EA,S2702PR_C01_074M,S2702PR_C01_074MA"}, "S0506_C02_141E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_141EA,S0506_C02_141M,S0506_C02_141MA"}, "S2502_C05_001E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C05_001EA,S2502_C05_001M,S2502_C05_001MA"}, "S0502_C02_119E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_119EA,S0502_C02_119M,S0502_C02_119MA"}, "S2201_C05_036E": {"label": "Estimate!!Households not receiving food stamps/SNAP!!WORK STATUS!!Families!!No workers in past 12 months", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C05_036EA,S2201_C05_036M,S2201_C05_036MA"}, "S0103PR_C01_072E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_072EA,S0103PR_C01_072M,S0103PR_C01_072MA"}, "S1501_C03_042E": {"label": "Estimate!!Male!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Asian alone!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C03_042EA,S1501_C03_042M,S1501_C03_042MA"}, "S2303_C02_011E": {"label": "Estimate!!Percent!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 35 or more hours per week!!48 to 49 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C02_011EA,S2303_C02_011M,S2303_C02_011MA"}, "S2701_C05_033E": {"label": "Estimate!!Percent Uninsured!!Civilian noninstitutionalized population!!NATIVITY AND U.S. CITIZENSHIP STATUS!!Foreign born!!Naturalized", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C05_033EA,S2701_C05_033M,S2701_C05_033MA"}, "S2702PR_C01_073E": {"label": "Estimate!!Total!!Civilian noninstitutionalized workers 16 years and over!!INDUSTRY!!Professional, scientific, and management, and administrative and waste management services", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_073EA,S2702PR_C01_073M,S2702PR_C01_073MA"}, "S0804_C05_066E": {"label": "Estimate!!Worked from home!!Workers 16 years and over who did not work from home", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "int", "group": "S0804", "limit": 0, "attributes": "S0804_C05_066EA,S0804_C05_066M,S0804_C05_066MA"}, "S2502_C05_002E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!One race --!!White", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C05_002EA,S2502_C05_002M,S2502_C05_002MA"}, "S0506_C02_142E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_142EA,S0506_C02_142M,S0506_C02_142MA"}, "S2201_C05_035E": {"label": "Estimate!!Households not receiving food stamps/SNAP!!WORK STATUS!!Families", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C05_035EA,S2201_C05_035M,S2201_C05_035MA"}, "S0103PR_C01_073E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_073EA,S0103PR_C01_073M,S0103PR_C01_073MA"}, "S1501_C03_043E": {"label": "Estimate!!Male!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Native Hawaiian and Other Pacific Islander alone", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C03_043EA,S1501_C03_043M,S1501_C03_043MA"}, "S2303_C02_012E": {"label": "Estimate!!Percent!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 35 or more hours per week!!40 to 47 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C02_012EA,S2303_C02_012M,S2303_C02_012MA"}, "S2603_C06_055E": {"label": "Estimate!!College/university housing!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the United States!!Same county", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C06_055EA,S2603_C06_055M,S2603_C06_055MA"}, "S0502_C02_113E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!Below 100 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_113EA,S0502_C02_113M,S0502_C02_113MA"}, "S2701_C05_030E": {"label": "Estimate!!Percent Uninsured!!Civilian noninstitutionalized population!!LIVING ARRANGEMENTS!!In non-family households and other living arrangements", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C05_030EA,S2701_C05_030M,S2701_C05_030MA"}, "S0103PR_C01_078E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income!!Mean Supplemental Security Income (dollars)", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_078EA,S0103PR_C01_078M,S0103PR_C01_078MA"}, "S2603_C06_054E": {"label": "Estimate!!College/university housing!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the United States", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C06_054EA,S2603_C06_054M,S2603_C06_054MA"}, "S2702PR_C01_079E": {"label": "Estimate!!Total!!Civilian noninstitutionalized workers 16 years and over!!OCCUPATION!!Service occupations", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_079EA,S2702PR_C01_079M,S2702PR_C01_079MA"}, "S0502_C02_114E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!100 to 199 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_114EA,S0502_C02_114M,S0502_C02_114MA"}, "S2701_C05_031E": {"label": "Estimate!!Percent Uninsured!!Civilian noninstitutionalized population!!NATIVITY AND U.S. CITIZENSHIP STATUS!!Native born", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C05_031EA,S2701_C05_031M,S2701_C05_031MA"}, "S0506_C02_140E": {"label": "Estimate!!Foreign-born; Born in Latin America!!Owner-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C02_140EA,S0506_C02_140M,S0506_C02_140MA"}, "S0103PR_C01_079E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_079EA,S0103PR_C01_079M,S0103PR_C01_079MA"}, "S2603_C06_053E": {"label": "Estimate!!College/university housing!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Same address", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C06_053EA,S2603_C06_053M,S2603_C06_053MA"}, "S2702PR_C01_078E": {"label": "Estimate!!Total!!Civilian noninstitutionalized workers 16 years and over!!OCCUPATION!!Management, business, science, and arts occupations", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_078EA,S2702PR_C01_078M,S2702PR_C01_078MA"}, "S0502_C02_115E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!At or above 200 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_115EA,S0502_C02_115M,S0502_C02_115MA"}, "S0103PR_C01_076E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income!!Mean Social Security income (dollars)", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_076EA,S0103PR_C01_076M,S0103PR_C01_076MA"}, "S0102_C01_020E": {"label": "Estimate!!Total!!RELATIONSHIP!!Population in households!!Nonrelatives!!Unmarried partner", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_020EA,S0102_C01_020M,S0102_C01_020MA"}, "S2603_C06_052E": {"label": "Estimate!!College/university housing!!RESIDENCE 1 YEAR AGO!!Population 1 year and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C06_052EA,S2603_C06_052M,S2603_C06_052MA"}, "S2702PR_C01_077E": {"label": "Estimate!!Total!!Civilian noninstitutionalized workers 16 years and over!!INDUSTRY!!Public administration", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_077EA,S2702PR_C01_077M,S2702PR_C01_077MA"}, "S0502_C02_116E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_116EA,S0502_C02_116M,S0502_C02_116MA"}, "S0502PR_C01_070E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!OCCUPATION!!Management, business, science, and arts occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_070EA,S0502PR_C01_070M,S0502PR_C01_070MA"}, "S0103PR_C01_077E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_077EA,S0103PR_C01_077M,S0103PR_C01_077MA"}, "S2702_C01_057E": {"label": "Estimate!!Total!!Civilian noninstitutionalized workers 16 years and over!!CLASS OF WORKER!!Private for-profit wage and salary workers!!Employee of private company workers", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_057EA,S2702_C01_057M,S2702_C01_057MA"}, "S0601PR_C01_002E": {"label": "Estimate!!Total!!Total population!!AGE!!Under 5 years", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C01_002EA,S0601PR_C01_002M,S0601PR_C01_002MA"}, "S1703_C03_008E": {"label": "Estimate!!Less than 100 percent of the poverty level!!Population for whom poverty status is determined!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C03_008EA,S1703_C03_008M,S1703_C03_008MA"}, "S2603_C06_091E": {"label": "Estimate!!College/university housing!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Armed Forces", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C06_091EA,S2603_C06_091M,S2603_C06_091MA"}, "S2419_C04_002E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Full-time, year-round civilian employed population 16 years and over with earnings!!Private for-profit wage and salary workers:", "concept": "Class of Worker by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2419", "limit": 0, "attributes": "S2419_C04_002EA,S2419_C04_002M,S2419_C04_002MA"}, "S0506_C02_103E": {"label": "Estimate!!Foreign-born; Born in Latin America!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income!!Mean Supplemental Security Income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C02_103EA,S0506_C02_103M,S0506_C02_103MA"}, "S0901_C04_003E": {"label": "Estimate!!In female householder, no spouse present, family household!!Children under 18 years in households!!AGE!!6 to 11 years", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C04_003EA,S0901_C04_003M,S0901_C04_003MA"}, "S0504_C04_004E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen!!Entered 2000 to 2009", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_004EA,S0504_C04_004M,S0504_C04_004MA"}, "S0103PR_C01_034E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than high school graduate", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_034EA,S0103PR_C01_034M,S0103PR_C01_034MA"}, "S2401_C04_018E": {"label": "Estimate!!Female!!Civilian employed population 16 years and over!!Service occupations:", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C04_018EA,S2401_C04_018M,S2401_C04_018MA"}, "S2702_C01_058E": {"label": "Estimate!!Total!!Civilian noninstitutionalized workers 16 years and over!!CLASS OF WORKER!!Private for-profit wage and salary workers!!Self-employed in own incorporated business workers", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_058EA,S2702_C01_058M,S2702_C01_058MA"}, "S0601PR_C01_001E": {"label": "Estimate!!Total!!Total population", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "int", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C01_001EA,S0601PR_C01_001M,S0601PR_C01_001MA"}, "S2603_C06_090E": {"label": "Estimate!!College/university housing!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed!!Percent of civilian labor force", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C06_090EA,S2603_C06_090M,S2603_C06_090MA"}, "S0506_C02_104E": {"label": "Estimate!!Foreign-born; Born in Latin America!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_104EA,S0506_C02_104M,S0506_C02_104MA"}, "S0901_C04_004E": {"label": "Estimate!!In female householder, no spouse present, family household!!Children under 18 years in households!!AGE!!12 to 17 years", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C04_004EA,S0901_C04_004M,S0901_C04_004MA"}, "S1703_C03_009E": {"label": "Estimate!!Less than 100 percent of the poverty level!!Population for whom poverty status is determined!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C03_009EA,S1703_C03_009M,S1703_C03_009MA"}, "S2419_C04_003E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Full-time, year-round civilian employed population 16 years and over with earnings!!Private for-profit wage and salary workers:!!Employee of private company workers", "concept": "Class of Worker by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2419", "limit": 0, "attributes": "S2419_C04_003EA,S2419_C04_003M,S2419_C04_003MA"}, "S0504_C04_005E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen!!Entered before 2000", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_005EA,S0504_C04_005M,S0504_C04_005MA"}, "S0103PR_C01_035E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate, GED, or alternative", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_035EA,S0103PR_C01_035M,S0103PR_C01_035MA"}, "S2401_C04_019E": {"label": "Estimate!!Female!!Civilian employed population 16 years and over!!Service occupations:!!Healthcare support occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C04_019EA,S2401_C04_019M,S2401_C04_019MA"}, "S0702_C01_010E": {"label": "Estimate!!Total!!PERCENT ALLOCATED!!Residence 1 year ago", "concept": "Movers Between Regions", "predicateType": "float", "group": "S0702", "limit": 0, "attributes": "S0702_C01_010EA,S0702_C01_010M,S0702_C01_010MA"}, "S2702_C01_055E": {"label": "Estimate!!Total!!Civilian noninstitutionalized workers 16 years and over", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "int", "group": "S2702", "limit": 0, "attributes": "S2702_C01_055EA,S2702_C01_055M,S2702_C01_055MA"}, "S0901_C04_005E": {"label": "Estimate!!In female householder, no spouse present, family household!!Children under 18 years in households!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C04_005EA,S0901_C04_005M,S0901_C04_005MA"}, "S0506_C02_101E": {"label": "Estimate!!Foreign-born; Born in Latin America!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income!!Mean Social Security income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C02_101EA,S0506_C02_101M,S0506_C02_101MA"}, "S0504_C04_006E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_006EA,S0504_C04_006M,S0504_C04_006MA"}, "S0103PR_C01_032E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_032EA,S0103PR_C01_032M,S0103PR_C01_032MA"}, "S0601PR_C01_004E": {"label": "Estimate!!Total!!Total population!!AGE!!18 to 24 years", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C01_004EA,S0601PR_C01_004M,S0601PR_C01_004MA"}, "S2702_C01_056E": {"label": "Estimate!!Total!!Civilian noninstitutionalized workers 16 years and over!!CLASS OF WORKER!!Private for-profit wage and salary workers", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_056EA,S2702_C01_056M,S2702_C01_056MA"}, "S0601PR_C01_003E": {"label": "Estimate!!Total!!Total population!!AGE!!5 to 17 years", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C01_003EA,S0601PR_C01_003M,S0601PR_C01_003MA"}, "S0901_C04_006E": {"label": "Estimate!!In female householder, no spouse present, family household!!Children under 18 years in households!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C04_006EA,S0901_C04_006M,S0901_C04_006MA"}, "S0506_C02_102E": {"label": "Estimate!!Foreign-born; Born in Latin America!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_102EA,S0506_C02_102M,S0506_C02_102MA"}, "S2419_C04_001E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Full-time, year-round civilian employed population 16 years and over with earnings", "concept": "Class of Worker by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2419", "limit": 0, "attributes": "S2419_C04_001EA,S2419_C04_001M,S2419_C04_001MA"}, "S0504_C04_007E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen!!Entered 2010 or later", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_007EA,S0504_C04_007M,S0504_C04_007MA"}, "S0103PR_C01_033E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_033EA,S0103PR_C01_033M,S0103PR_C01_033MA"}, "S2603_C06_095E": {"label": "Estimate!!College/university housing!!OCCUPATION!!Civilian employed population 16 years and over!!Service occupations", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C06_095EA,S2603_C06_095M,S2603_C06_095MA"}, "S2419_C04_006E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Full-time, year-round civilian employed population 16 years and over with earnings!!Local government workers", "concept": "Class of Worker by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2419", "limit": 0, "attributes": "S2419_C04_006EA,S2419_C04_006M,S2419_C04_006MA"}, "S1703_C03_004E": {"label": "Estimate!!Less than 100 percent of the poverty level!!Population for whom poverty status is determined!!AGE!!Under 18 years", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C03_004EA,S1703_C03_004M,S1703_C03_004MA"}, "S0701PR_C02_009E": {"label": "Estimate!!Moved; within same municipio!!Population 1 year and over!!AGE!!65 to 74 years", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C02_009EA,S0701PR_C02_009M,S0701PR_C02_009MA"}, "S0103PR_C01_038E": {"label": "Estimate!!Total!!RESPONSIBILITY FOR GRANDCHILDREN UNDER 18 YEARS!!Population 30 years and over", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_038EA,S0103PR_C01_038M,S0103PR_C01_038MA"}, "S0601PR_C01_006E": {"label": "Estimate!!Total!!Total population!!AGE!!45 to 54 years", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C01_006EA,S0601PR_C01_006M,S0601PR_C01_006MA"}, "S2603_C06_094E": {"label": "Estimate!!College/university housing!!OCCUPATION!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C06_094EA,S2603_C06_094M,S2603_C06_094MA"}, "S2419_C04_007E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Full-time, year-round civilian employed population 16 years and over with earnings!!State government workers", "concept": "Class of Worker by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2419", "limit": 0, "attributes": "S2419_C04_007EA,S2419_C04_007M,S2419_C04_007MA"}, "S0506_C02_100E": {"label": "Estimate!!Foreign-born; Born in Latin America!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_100EA,S0506_C02_100M,S0506_C02_100MA"}, "S1703_C03_005E": {"label": "Estimate!!Less than 100 percent of the poverty level!!Population for whom poverty status is determined!!AGE!!Under 18 years!!Related children of householder under 18 years", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C03_005EA,S1703_C03_005M,S1703_C03_005MA"}, "S0103PR_C01_039E": {"label": "Estimate!!Total!!RESPONSIBILITY FOR GRANDCHILDREN UNDER 18 YEARS!!Population 30 years and over!!Living with grandchild(ren)", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_039EA,S0103PR_C01_039M,S0103PR_C01_039MA"}, "S0504_C04_001E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Foreign-born population", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C04_001EA,S0504_C04_001M,S0504_C04_001MA"}, "S0601PR_C01_005E": {"label": "Estimate!!Total!!Total population!!AGE!!25 to 44 years", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C01_005EA,S0601PR_C01_005M,S0601PR_C01_005MA"}, "S2702_C01_059E": {"label": "Estimate!!Total!!Civilian noninstitutionalized workers 16 years and over!!CLASS OF WORKER!!Private not-for-profit wage and salary workers", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_059EA,S2702_C01_059M,S2702_C01_059MA"}, "S2603_C06_093E": {"label": "Estimate!!College/university housing!!OCCUPATION!!Civilian employed population 16 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C06_093EA,S2603_C06_093M,S2603_C06_093MA"}, "S1703_C03_006E": {"label": "Estimate!!Less than 100 percent of the poverty level!!Population for whom poverty status is determined!!AGE!!18 to 64 years", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C03_006EA,S1703_C03_006M,S1703_C03_006MA"}, "S2419_C04_004E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Full-time, year-round civilian employed population 16 years and over with earnings!!Private for-profit wage and salary workers:!!Self-employed in own incorporated business workers", "concept": "Class of Worker by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2419", "limit": 0, "attributes": "S2419_C04_004EA,S2419_C04_004M,S2419_C04_004MA"}, "S0701PR_C02_007E": {"label": "Estimate!!Moved; within same municipio!!Population 1 year and over!!AGE!!45 to 54 years", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C02_007EA,S0701PR_C02_007M,S0701PR_C02_007MA"}, "S0901_C04_001E": {"label": "Estimate!!In female householder, no spouse present, family household!!Children under 18 years in households", "concept": "Children Characteristics", "predicateType": "int", "group": "S0901", "limit": 0, "attributes": "S0901_C04_001EA,S0901_C04_001M,S0901_C04_001MA"}, "S0103PR_C01_036E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college or associate's degree", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_036EA,S0103PR_C01_036M,S0103PR_C01_036MA"}, "S2418_C01_008E": {"label": "Estimate!!Median earnings (dollars)!!Civilian employed population 16 years and over with earnings!!Federal government workers", "concept": "Class of Worker by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2418", "limit": 0, "attributes": "S2418_C01_008EA,S2418_C01_008M,S2418_C01_008MA"}, "S0504_C04_002E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_002EA,S0504_C04_002M,S0504_C04_002MA"}, "S0601PR_C01_008E": {"label": "Estimate!!Total!!Total population!!AGE!!65 to 74 years", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C01_008EA,S0601PR_C01_008M,S0601PR_C01_008MA"}, "S0102_C01_060E": {"label": "Estimate!!Total!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Naturalized U.S. citizen", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_060EA,S0102_C01_060M,S0102_C01_060MA"}, "S2603_C06_092E": {"label": "Estimate!!College/university housing!!EMPLOYMENT STATUS!!Population 16 years and over!!Not in labor force", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C06_092EA,S2603_C06_092M,S2603_C06_092MA"}, "S1703_C03_007E": {"label": "Estimate!!Less than 100 percent of the poverty level!!Population for whom poverty status is determined!!AGE!!65 years and over", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C03_007EA,S1703_C03_007M,S1703_C03_007MA"}, "S2419_C04_005E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Full-time, year-round civilian employed population 16 years and over with earnings!!Private not-for-profit wage and salary workers", "concept": "Class of Worker by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2419", "limit": 0, "attributes": "S2419_C04_005EA,S2419_C04_005M,S2419_C04_005MA"}, "S0701PR_C02_008E": {"label": "Estimate!!Moved; within same municipio!!Population 1 year and over!!AGE!!55 to 64 years", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C02_008EA,S0701PR_C02_008M,S0701PR_C02_008MA"}, "S0901_C04_002E": {"label": "Estimate!!In female householder, no spouse present, family household!!Children under 18 years in households!!AGE!!Under 6 years", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C04_002EA,S0901_C04_002M,S0901_C04_002MA"}, "S0103PR_C01_037E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree or higher", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_037EA,S0103PR_C01_037M,S0103PR_C01_037MA"}, "S2418_C01_009E": {"label": "Estimate!!Median earnings (dollars)!!Civilian employed population 16 years and over with earnings!!Self-employed in own not incorporated business workers and unpaid family workers", "concept": "Class of Worker by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2418", "limit": 0, "attributes": "S2418_C01_009EA,S2418_C01_009M,S2418_C01_009MA"}, "S0504_C04_003E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen!!Entered 2010 or later", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_003EA,S0504_C04_003M,S0504_C04_003MA"}, "S0601PR_C01_007E": {"label": "Estimate!!Total!!Total population!!AGE!!55 to 64 years", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C01_007EA,S0601PR_C01_007M,S0601PR_C01_007MA"}, "S0502PR_C01_030E": {"label": "Estimate!!Total!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_030EA,S0502PR_C01_030M,S0502PR_C01_030MA"}, "S2704_C02_012E": {"label": "Estimate!!Public Coverage!!COVERAGE ALONE OR IN COMBINATION!!VA health care coverage alone or in combination!!19 to 64 years", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2704", "limit": 0, "attributes": "S2704_C02_012EA,S2704_C02_012M,S2704_C02_012MA"}, "S0701PR_C02_005E": {"label": "Estimate!!Moved; within same municipio!!Population 1 year and over!!AGE!!25 to 34 years", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C02_005EA,S0701PR_C02_005M,S0701PR_C02_005MA"}, "S2418_C01_006E": {"label": "Estimate!!Median earnings (dollars)!!Civilian employed population 16 years and over with earnings!!Local government workers", "concept": "Class of Worker by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2418", "limit": 0, "attributes": "S2418_C01_006EA,S2418_C01_006M,S2418_C01_006MA"}, "S2601C_C01_030E": {"label": "Estimate!!Total population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!Not Hispanic or Latino", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_030EA,S2601C_C01_030M,S2601C_C01_030MA"}, "S0502PR_C01_031E": {"label": "Estimate!!Total!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_031EA,S0502PR_C01_031M,S0502PR_C01_031MA"}, "S2704_C02_013E": {"label": "Estimate!!Public Coverage!!COVERAGE ALONE OR IN COMBINATION!!VA health care coverage alone or in combination!!65 years and over", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2704", "limit": 0, "attributes": "S2704_C02_013EA,S2704_C02_013M,S2704_C02_013MA"}, "S0701PR_C02_006E": {"label": "Estimate!!Moved; within same municipio!!Population 1 year and over!!AGE!!35 to 44 years", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C02_006EA,S0701PR_C02_006M,S0701PR_C02_006MA"}, "S1703_C03_001E": {"label": "Estimate!!Less than 100 percent of the poverty level!!Population for whom poverty status is determined", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C03_001EA,S1703_C03_001M,S1703_C03_001MA"}, "S2418_C01_007E": {"label": "Estimate!!Median earnings (dollars)!!Civilian employed population 16 years and over with earnings!!State government workers", "concept": "Class of Worker by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2418", "limit": 0, "attributes": "S2418_C01_007EA,S2418_C01_007M,S2418_C01_007MA"}, "S2601C_C01_031E": {"label": "Estimate!!Total population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!White alone, Not Hispanic or Latino", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_031EA,S2601C_C01_031M,S2601C_C01_031MA"}, "S0502PR_C01_032E": {"label": "Estimate!!Total!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_032EA,S0502PR_C01_032M,S0502PR_C01_032MA"}, "S0601PR_C01_009E": {"label": "Estimate!!Total!!Total population!!AGE!!75 years and over", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C01_009EA,S0601PR_C01_009M,S0601PR_C01_009MA"}, "S0506_C02_109E": {"label": "Estimate!!Foreign-born; Born in Latin America!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!Median Household income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C02_109EA,S0506_C02_109M,S0506_C02_109MA"}, "S0701PR_C02_003E": {"label": "Estimate!!Moved; within same municipio!!Population 1 year and over!!AGE!!5 to 17 years", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C02_003EA,S0701PR_C02_003M,S0701PR_C02_003MA"}, "S1703_C03_002E": {"label": "Estimate!!Less than 100 percent of the poverty level!!Population for whom poverty status is determined!!SEX!!Male", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C03_002EA,S1703_C03_002M,S1703_C03_002MA"}, "S2704_C02_014E": {"label": "Estimate!!Public Coverage!!PUBLIC HEALTH INSURANCE ALONE OR IN COMBINATION!!Below 138 percent of the poverty threshold", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2704", "limit": 0, "attributes": "S2704_C02_014EA,S2704_C02_014M,S2704_C02_014MA"}, "S2418_C01_004E": {"label": "Estimate!!Median earnings (dollars)!!Civilian employed population 16 years and over with earnings!!Private for-profit wage and salary workers:!!Self-employed in own incorporated business workers", "concept": "Class of Worker by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2418", "limit": 0, "attributes": "S2418_C01_004EA,S2418_C01_004M,S2418_C01_004MA"}, "S0502PR_C01_033E": {"label": "Estimate!!Total!!Foreign-born population!!HOUSEHOLD TYPE!!In married-couple family", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_033EA,S0502PR_C01_033M,S0502PR_C01_033MA"}, "S0701PR_C02_004E": {"label": "Estimate!!Moved; within same municipio!!Population 1 year and over!!AGE!!18 to 24 years", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C02_004EA,S0701PR_C02_004M,S0701PR_C02_004MA"}, "S1902_C03_010E": {"label": "Estimate!!Mean income (dollars)!!HOUSEHOLD INCOME!!All households!!With retirement income", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1902", "limit": 0, "attributes": "S1902_C03_010EA,S1902_C03_010M,S1902_C03_010MA"}, "S1703_C03_003E": {"label": "Estimate!!Less than 100 percent of the poverty level!!Population for whom poverty status is determined!!SEX!!Female", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C03_003EA,S1703_C03_003M,S1703_C03_003MA"}, "S2704_C02_015E": {"label": "Estimate!!Public Coverage!!PUBLIC HEALTH INSURANCE ALONE OR IN COMBINATION!!At or above 138 percent of the poverty threshold", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2704", "limit": 0, "attributes": "S2704_C02_015EA,S2704_C02_015M,S2704_C02_015MA"}, "S2418_C01_005E": {"label": "Estimate!!Median earnings (dollars)!!Civilian employed population 16 years and over with earnings!!Private not-for-profit wage and salary workers", "concept": "Class of Worker by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2418", "limit": 0, "attributes": "S2418_C01_005EA,S2418_C01_005M,S2418_C01_005MA"}, "S0502PR_C01_034E": {"label": "Estimate!!Total!!Foreign-born population!!HOUSEHOLD TYPE!!In other households", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_034EA,S0502PR_C01_034M,S0502PR_C01_034MA"}, "S2418_C01_002E": {"label": "Estimate!!Median earnings (dollars)!!Civilian employed population 16 years and over with earnings!!Private for-profit wage and salary workers:", "concept": "Class of Worker by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2418", "limit": 0, "attributes": "S2418_C01_002EA,S2418_C01_002M,S2418_C01_002MA"}, "S0506_C02_107E": {"label": "Estimate!!Foreign-born; Born in Latin America!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income!!Mean retirement income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C02_107EA,S0506_C02_107M,S0506_C02_107MA"}, "S2507_C01_002E": {"label": "Estimate!!Owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!VALUE!!Less than $50,000", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "int", "group": "S2507", "limit": 0, "attributes": "S2507_C01_002EA,S2507_C01_002M,S2507_C01_002MA"}, "S0701PR_C02_001E": {"label": "Estimate!!Moved; within same municipio!!Population 1 year and over", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C02_001EA,S0701PR_C02_001M,S0701PR_C02_001MA"}, "S0502PR_C01_035E": {"label": "Estimate!!Total!!Foreign-born population!!Average household size", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_035EA,S0502PR_C01_035M,S0502PR_C01_035MA"}, "S0506_C02_108E": {"label": "Estimate!!Foreign-born; Born in Latin America!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Food Stamp/SNAP benefits", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_108EA,S0506_C02_108M,S0506_C02_108MA"}, "S0701PR_C02_002E": {"label": "Estimate!!Moved; within same municipio!!Population 1 year and over!!AGE!!1 to 4 years", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C02_002EA,S0701PR_C02_002M,S0701PR_C02_002MA"}, "S2418_C01_003E": {"label": "Estimate!!Median earnings (dollars)!!Civilian employed population 16 years and over with earnings!!Private for-profit wage and salary workers:!!Employee of private company workers", "concept": "Class of Worker by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2418", "limit": 0, "attributes": "S2418_C01_003EA,S2418_C01_003M,S2418_C01_003MA"}, "S2507_C01_003E": {"label": "Estimate!!Owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!VALUE!!$50,000 to $99,999", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "int", "group": "S2507", "limit": 0, "attributes": "S2507_C01_003EA,S2507_C01_003M,S2507_C01_003MA"}, "S0502PR_C01_036E": {"label": "Estimate!!Total!!Foreign-born population!!Average family size", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_036EA,S0502PR_C01_036M,S0502PR_C01_036MA"}, "S0503_C01_011E": {"label": "Estimate!!Total!!Foreign-born population!!SEX AND AGE!!Female", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_011EA,S0503_C01_011M,S0503_C01_011MA"}, "S0502PR_C01_037E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_037EA,S0502PR_C01_037M,S0502PR_C01_037MA"}, "S0506_C02_105E": {"label": "Estimate!!Foreign-born; Born in Latin America!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income!!Mean cash public assistance income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C02_105EA,S0506_C02_105M,S0506_C02_105MA"}, "S2704_C02_010E": {"label": "Estimate!!Public Coverage!!COVERAGE ALONE OR IN COMBINATION!!VA health care coverage alone or in combination", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2704", "limit": 0, "attributes": "S2704_C02_010EA,S2704_C02_010M,S2704_C02_010MA"}, "S0503_C01_010E": {"label": "Estimate!!Total!!Foreign-born population!!SEX AND AGE!!Male", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_010EA,S0503_C01_010M,S0503_C01_010MA"}, "S0502PR_C01_038E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_038EA,S0502PR_C01_038M,S0502PR_C01_038MA"}, "S0506_C02_106E": {"label": "Estimate!!Foreign-born; Born in Latin America!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_106EA,S0506_C02_106M,S0506_C02_106MA"}, "S2418_C01_001E": {"label": "Estimate!!Median earnings (dollars)!!Civilian employed population 16 years and over with earnings", "concept": "Class of Worker by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2418", "limit": 0, "attributes": "S2418_C01_001EA,S2418_C01_001M,S2418_C01_001MA"}, "S2704_C02_011E": {"label": "Estimate!!Public Coverage!!COVERAGE ALONE OR IN COMBINATION!!VA health care coverage alone or in combination!!Under 19", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2704", "limit": 0, "attributes": "S2704_C02_011EA,S2704_C02_011M,S2704_C02_011MA"}, "S2507_C01_001E": {"label": "Estimate!!Owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "int", "group": "S2507", "limit": 0, "attributes": "S2507_C01_001EA,S2507_C01_001M,S2507_C01_001MA"}, "S0503_C01_001E": {"label": "Estimate!!Total!!Foreign-born population", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C01_001EA,S0503_C01_001M,S0503_C01_001MA"}, "S0502PR_C01_039E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_039EA,S0502PR_C01_039M,S0502PR_C01_039MA"}, "S2601C_C01_039E": {"label": "Estimate!!Total population!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Nursery school through 12th grade", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_039EA,S2601C_C01_039M,S2601C_C01_039MA"}, "S2507_C01_006E": {"label": "Estimate!!Owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!VALUE!!$300,000 to $499,999", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "int", "group": "S2507", "limit": 0, "attributes": "S2507_C01_006EA,S2507_C01_006M,S2507_C01_006MA"}, "S1902_C03_003E": {"label": "Estimate!!Mean income (dollars)!!HOUSEHOLD INCOME!!All households!!With earnings!!With wages or salary income", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1902", "limit": 0, "attributes": "S1902_C03_003EA,S1902_C03_003M,S1902_C03_003MA"}, "S0102_C01_058E": {"label": "Estimate!!Total!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Entered 2000 to 2009", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_058EA,S0102_C01_058M,S0102_C01_058MA"}, "S1201_C02_012E": {"label": "Estimate!!Now married (except separated)!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over!!35 to 44 years", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C02_012EA,S1201_C02_012M,S1201_C02_012MA"}, "S1811_C01_040E": {"label": "Estimate!!Total Civilian Noninstitutionalized Population!!EDUCATIONAL ATTAINMENT!!Population Age 25 and Over!!Less than high school graduate", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C01_040EA,S1811_C01_040M,S1811_C01_040MA"}, "S0701PR_C02_010E": {"label": "Estimate!!Moved; within same municipio!!Population 1 year and over!!AGE!!75 years and over", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C02_010EA,S0701PR_C02_010M,S0701PR_C02_010MA"}, "S2507_C01_007E": {"label": "Estimate!!Owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!VALUE!!$500,000 to $749,999", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "int", "group": "S2507", "limit": 0, "attributes": "S2507_C01_007EA,S2507_C01_007M,S2507_C01_007MA"}, "S1201_C02_013E": {"label": "Estimate!!Now married (except separated)!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over!!45 to 54 years", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C02_013EA,S1201_C02_013M,S1201_C02_013MA"}, "S0102_C01_057E": {"label": "Estimate!!Total!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Entered 2010 or later", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_057EA,S0102_C01_057M,S0102_C01_057MA"}, "S1902_C03_004E": {"label": "Estimate!!Mean income (dollars)!!HOUSEHOLD INCOME!!All households!!With earnings!!With self-employment income", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1902", "limit": 0, "attributes": "S1902_C03_004EA,S1902_C03_004M,S1902_C03_004MA"}, "S0503_C01_003E": {"label": "Estimate!!Total!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen!!Entered 2010 or later", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_003EA,S0503_C01_003M,S0503_C01_003MA"}, "S1811_C01_041E": {"label": "Estimate!!Total Civilian Noninstitutionalized Population!!EDUCATIONAL ATTAINMENT!!Population Age 25 and Over!!High school graduate (includes equivalency)", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C01_041EA,S1811_C01_041M,S1811_C01_041MA"}, "S2701_C05_060E": {"label": "Estimate!!Percent Uninsured!!Civilian noninstitutionalized population!!RATIO OF INCOME TO POVERTY LEVEL IN THE PAST 12 MONTHS!!Civilian noninstitutionalized population for whom poverty status is determined!!At or above 400 percent of the poverty threshold", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C05_060EA,S2701_C05_060M,S2701_C05_060MA"}, "S1902_C03_005E": {"label": "Estimate!!Mean income (dollars)!!HOUSEHOLD INCOME!!All households!!With interest, dividends, or net rental income", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1902", "limit": 0, "attributes": "S1902_C03_005EA,S1902_C03_005M,S1902_C03_005MA"}, "S2601C_C01_036E": {"label": "Estimate!!Total population!!MARITAL STATUS!!Population 15 years and over!!Separated", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_036EA,S2601C_C01_036M,S2601C_C01_036MA"}, "S2507_C01_004E": {"label": "Estimate!!Owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!VALUE!!$100,000 to $199,999", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "int", "group": "S2507", "limit": 0, "attributes": "S2507_C01_004EA,S2507_C01_004M,S2507_C01_004MA"}, "S2602_C03_090E": {"label": "Estimate!!Adult correctional facilities!!OCCUPATION!!Civilian employed population 16 years and over!!Production, transportation, and material moving occupations", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C03_090EA,S2602_C03_090M,S2602_C03_090MA"}, "S1201_C02_010E": {"label": "Estimate!!Now married (except separated)!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over!!15 to 19 years", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C02_010EA,S1201_C02_010M,S1201_C02_010MA"}, "S0503_C01_002E": {"label": "Estimate!!Total!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_002EA,S0503_C01_002M,S0503_C01_002MA"}, "S1811_C01_042E": {"label": "Estimate!!Total Civilian Noninstitutionalized Population!!EDUCATIONAL ATTAINMENT!!Population Age 25 and Over!!Some college or associate's degree", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C01_042EA,S1811_C01_042M,S1811_C01_042MA"}, "S2701_C05_061E": {"label": "Estimate!!Percent Uninsured!!Civilian noninstitutionalized population!!RATIO OF INCOME TO POVERTY LEVEL IN THE PAST 12 MONTHS!!Civilian noninstitutionalized population for whom poverty status is determined!!Below 100 percent of the poverty threshold", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C05_061EA,S2701_C05_061M,S2701_C05_061MA"}, "S2601C_C01_038E": {"label": "Estimate!!Total population!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_038EA,S2601C_C01_038M,S2601C_C01_038MA"}, "S2507_C01_005E": {"label": "Estimate!!Owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!VALUE!!$200,000 to $299,999", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "int", "group": "S2507", "limit": 0, "attributes": "S2507_C01_005EA,S2507_C01_005M,S2507_C01_005MA"}, "S1902_C03_006E": {"label": "Estimate!!Mean income (dollars)!!HOUSEHOLD INCOME!!All households!!With Social Security income", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1902", "limit": 0, "attributes": "S1902_C03_006EA,S1902_C03_006M,S1902_C03_006MA"}, "S2601C_C01_037E": {"label": "Estimate!!Total population!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_037EA,S2601C_C01_037M,S2601C_C01_037MA"}, "S0102_C01_059E": {"label": "Estimate!!Total!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Entered before 2000", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_059EA,S0102_C01_059M,S0102_C01_059MA"}, "S2602_C03_091E": {"label": "Estimate!!Adult correctional facilities!!EARNINGS AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!With earnings:!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C03_091EA,S2602_C03_091M,S2602_C03_091MA"}, "S1201_C02_011E": {"label": "Estimate!!Now married (except separated)!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over!!20 to 34 years", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C02_011EA,S1201_C02_011M,S1201_C02_011MA"}, "S1811_C01_043E": {"label": "Estimate!!Total Civilian Noninstitutionalized Population!!EDUCATIONAL ATTAINMENT!!Population Age 25 and Over!!Bachelor's degree or higher", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C01_043EA,S1811_C01_043M,S1811_C01_043MA"}, "S2601C_C01_034E": {"label": "Estimate!!Total population!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_034EA,S2601C_C01_034M,S2601C_C01_034MA"}, "S2602_C03_092E": {"label": "Estimate!!Adult correctional facilities!!EARNINGS AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!With earnings:!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C03_092EA,S2602_C03_092M,S2602_C03_092MA"}, "S2704_C02_016E": {"label": "Estimate!!Public Coverage!!PUBLIC HEALTH INSURANCE ALONE OR IN COMBINATION!!Worked full-time, year-round (19-64 years)", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2704", "limit": 0, "attributes": "S2704_C02_016EA,S2704_C02_016M,S2704_C02_016MA"}, "S2201_C05_022E": {"label": "Estimate!!Households not receiving food stamps/SNAP!!Households!!POVERTY STATUS IN THE PAST 12 MONTHS!!At or above poverty level", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C05_022EA,S2201_C05_022M,S2201_C05_022MA"}, "S0503_C01_005E": {"label": "Estimate!!Total!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen!!Entered before 2000", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_005EA,S0503_C01_005M,S0503_C01_005MA"}, "S1501_C03_056E": {"label": "Estimate!!Male!!POVERTY RATE FOR THE POPULATION 25 YEARS AND OVER FOR WHOM POVERTY STATUS IS DETERMINED BY EDUCATIONAL ATTAINMENT LEVEL!!High school graduate (includes equivalency)", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C03_056EA,S1501_C03_056M,S1501_C03_056MA"}, "S0503_C01_004E": {"label": "Estimate!!Total!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen!!Entered 2000 to 2009", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_004EA,S0503_C01_004M,S0503_C01_004MA"}, "S1811_C01_044E": {"label": "Estimate!!Total Civilian Noninstitutionalized Population!!EARNINGS IN PAST 12 MONTHS (IN 2024 INFLATION ADJUSTED DOLLARS)!!Population Age 16 and over with earnings", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "int", "group": "S1811", "limit": 0, "attributes": "S1811_C01_044EA,S1811_C01_044M,S1811_C01_044MA"}, "S2601C_C01_035E": {"label": "Estimate!!Total population!!MARITAL STATUS!!Population 15 years and over!!Divorced", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_035EA,S2601C_C01_035M,S2601C_C01_035MA"}, "S2602_C03_093E": {"label": "Estimate!!Adult correctional facilities!!EARNINGS AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Mean earnings (dollars):!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C03_093EA,S2602_C03_093M,S2602_C03_093MA"}, "S2704_C02_017E": {"label": "Estimate!!Public Coverage!!PUBLIC HEALTH INSURANCE ALONE OR IN COMBINATION!!Under 6", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2704", "limit": 0, "attributes": "S2704_C02_017EA,S2704_C02_017M,S2704_C02_017MA"}, "S1501_C03_057E": {"label": "Estimate!!Male!!POVERTY RATE FOR THE POPULATION 25 YEARS AND OVER FOR WHOM POVERTY STATUS IS DETERMINED BY EDUCATIONAL ATTAINMENT LEVEL!!Some college or associate's degree", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C03_057EA,S1501_C03_057M,S1501_C03_057MA"}, "S2201_C05_021E": {"label": "Estimate!!Households not receiving food stamps/SNAP!!Households!!POVERTY STATUS IN THE PAST 12 MONTHS!!Below poverty level", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C05_021EA,S2201_C05_021M,S2201_C05_021MA"}, "S2401_C04_020E": {"label": "Estimate!!Female!!Civilian employed population 16 years and over!!Service occupations:!!Protective service occupations:", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C04_020EA,S2401_C04_020M,S2401_C04_020MA"}, "S1811_C01_045E": {"label": "Estimate!!Total Civilian Noninstitutionalized Population!!EARNINGS IN PAST 12 MONTHS (IN 2024 INFLATION ADJUSTED DOLLARS)!!Population Age 16 and over with earnings!!$1 to $4,999 or loss", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C01_045EA,S1811_C01_045M,S1811_C01_045MA"}, "S2602_C03_094E": {"label": "Estimate!!Adult correctional facilities!!EARNINGS AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Mean earnings (dollars):!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C03_094EA,S2602_C03_094M,S2602_C03_094MA"}, "S2704_C02_018E": {"label": "Estimate!!Public Coverage!!PUBLIC HEALTH INSURANCE ALONE OR IN COMBINATION!!6 to 18 years", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2704", "limit": 0, "attributes": "S2704_C02_018EA,S2704_C02_018M,S2704_C02_018MA"}, "S1902_C03_001E": {"label": "Estimate!!Mean income (dollars)!!HOUSEHOLD INCOME!!All households", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1902", "limit": 0, "attributes": "S1902_C03_001EA,S1902_C03_001M,S1902_C03_001MA"}, "S2601C_C01_032E": {"label": "Estimate!!Total population!!MARITAL STATUS!!Population 15 years and over", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_032EA,S2601C_C01_032M,S2601C_C01_032MA"}, "S2507_C01_008E": {"label": "Estimate!!Owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!VALUE!!$750,000 to $999,999", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "int", "group": "S2507", "limit": 0, "attributes": "S2507_C01_008EA,S2507_C01_008M,S2507_C01_008MA"}, "S1501_C03_058E": {"label": "Estimate!!Male!!POVERTY RATE FOR THE POPULATION 25 YEARS AND OVER FOR WHOM POVERTY STATUS IS DETERMINED BY EDUCATIONAL ATTAINMENT LEVEL!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C03_058EA,S1501_C03_058M,S1501_C03_058MA"}, "S2201_C05_020E": {"label": "Estimate!!Households not receiving food stamps/SNAP!!Households!!No children under 18 years!!Nonfamily households", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C05_020EA,S2201_C05_020M,S2201_C05_020MA"}, "S0503_C01_007E": {"label": "Estimate!!Total!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen!!Entered 2010 or later", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_007EA,S0503_C01_007M,S0503_C01_007MA"}, "S2401_C04_021E": {"label": "Estimate!!Female!!Civilian employed population 16 years and over!!Service occupations:!!Protective service occupations:!!Firefighting and prevention, and other protective service workers including supervisors", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C04_021EA,S2401_C04_021M,S2401_C04_021MA"}, "S1811_C01_046E": {"label": "Estimate!!Total Civilian Noninstitutionalized Population!!EARNINGS IN PAST 12 MONTHS (IN 2024 INFLATION ADJUSTED DOLLARS)!!Population Age 16 and over with earnings!!$5,000 to $14,999", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C01_046EA,S1811_C01_046M,S1811_C01_046MA"}, "S2602_C03_095E": {"label": "Estimate!!Adult correctional facilities!!EARNINGS AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Median earnings (dollars):!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C03_095EA,S2602_C03_095M,S2602_C03_095MA"}, "S2704_C02_019E": {"label": "Estimate!!Public Coverage!!PUBLIC HEALTH INSURANCE ALONE OR IN COMBINATION!!19 to 25 years", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2704", "limit": 0, "attributes": "S2704_C02_019EA,S2704_C02_019M,S2704_C02_019MA"}, "S2507_C01_009E": {"label": "Estimate!!Owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!VALUE!!$1,000,000 or more", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "int", "group": "S2507", "limit": 0, "attributes": "S2507_C01_009EA,S2507_C01_009M,S2507_C01_009MA"}, "S1902_C03_002E": {"label": "Estimate!!Mean income (dollars)!!HOUSEHOLD INCOME!!All households!!With earnings", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1902", "limit": 0, "attributes": "S1902_C03_002EA,S1902_C03_002M,S1902_C03_002MA"}, "S2601C_C01_033E": {"label": "Estimate!!Total population!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_033EA,S2601C_C01_033M,S2601C_C01_033MA"}, "S1501_C03_059E": {"label": "Estimate!!Male!!MEDIAN EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 25 years and over with earnings", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C03_059EA,S1501_C03_059M,S1501_C03_059MA"}, "S0503_C01_006E": {"label": "Estimate!!Total!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_006EA,S0503_C01_006M,S0503_C01_006MA"}, "S2603_C06_087E": {"label": "Estimate!!College/university housing!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C06_087EA,S2603_C06_087M,S2603_C06_087MA"}, "S2401_C04_022E": {"label": "Estimate!!Female!!Civilian employed population 16 years and over!!Service occupations:!!Protective service occupations:!!Law enforcement workers including supervisors", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C04_022EA,S2401_C04_022M,S2401_C04_022MA"}, "S1811_C01_047E": {"label": "Estimate!!Total Civilian Noninstitutionalized Population!!EARNINGS IN PAST 12 MONTHS (IN 2024 INFLATION ADJUSTED DOLLARS)!!Population Age 16 and over with earnings!!$15,000 to $24,999", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C01_047EA,S1811_C01_047M,S1811_C01_047MA"}, "S2201_C05_026E": {"label": "Estimate!!Households not receiving food stamps/SNAP!!Households!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Black or African American alone", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C05_026EA,S2201_C05_026M,S2201_C05_026MA"}, "S1501_C03_052E": {"label": "Estimate!!Male!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Hispanic or Latino Origin", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C03_052EA,S1501_C03_052M,S1501_C03_052MA"}, "S0503_C01_009E": {"label": "Estimate!!Total!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen!!Entered before 2000", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_009EA,S0503_C01_009M,S0503_C01_009MA"}, "S2602_C03_096E": {"label": "Estimate!!Adult correctional facilities!!EARNINGS AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Median earnings (dollars):!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C03_096EA,S2602_C03_096M,S2602_C03_096MA"}, "S0102_C01_050E": {"label": "Estimate!!Total!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different house in the United States!!Different county", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_050EA,S0102_C01_050M,S0102_C01_050MA"}, "S2603_C06_086E": {"label": "Estimate!!College/university housing!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C06_086EA,S2603_C06_086M,S2603_C06_086MA"}, "S2401_C04_023E": {"label": "Estimate!!Female!!Civilian employed population 16 years and over!!Service occupations:!!Food preparation and serving related occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C04_023EA,S2401_C04_023M,S2401_C04_023MA"}, "S1811_C01_048E": {"label": "Estimate!!Total Civilian Noninstitutionalized Population!!EARNINGS IN PAST 12 MONTHS (IN 2024 INFLATION ADJUSTED DOLLARS)!!Population Age 16 and over with earnings!!$25,000 to $34,999", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C01_048EA,S1811_C01_048M,S1811_C01_048MA"}, "S2702_C01_050E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Civilian noninstitutionalized population 16 years and over!!Not in labor force", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_050EA,S2702_C01_050M,S2702_C01_050MA"}, "S2201_C05_025E": {"label": "Estimate!!Households not receiving food stamps/SNAP!!Households!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!White alone", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C05_025EA,S2201_C05_025M,S2201_C05_025MA"}, "S1501_C03_053E": {"label": "Estimate!!Male!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Hispanic or Latino Origin!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C03_053EA,S1501_C03_053M,S1501_C03_053MA"}, "S0503_C01_008E": {"label": "Estimate!!Total!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen!!Entered 2000 to 2009", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_008EA,S0503_C01_008M,S0503_C01_008MA"}, "S2602_C03_097E": {"label": "Estimate!!Adult correctional facilities!!EARNINGS AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!With Food Stamp/SNAP benefits", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C03_097EA,S2602_C03_097M,S2602_C03_097MA"}, "S2603_C06_085E": {"label": "Estimate!!College/university housing!!EMPLOYMENT STATUS!!Population 16 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C06_085EA,S2603_C06_085M,S2603_C06_085MA"}, "S2401_C04_024E": {"label": "Estimate!!Female!!Civilian employed population 16 years and over!!Service occupations:!!Building and grounds cleaning and maintenance occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C04_024EA,S2401_C04_024M,S2401_C04_024MA"}, "S1811_C01_049E": {"label": "Estimate!!Total Civilian Noninstitutionalized Population!!EARNINGS IN PAST 12 MONTHS (IN 2024 INFLATION ADJUSTED DOLLARS)!!Population Age 16 and over with earnings!!$35,000 to $49,999", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C01_049EA,S1811_C01_049M,S1811_C01_049MA"}, "S1201_C02_018E": {"label": "Estimate!!Now married (except separated)!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C02_018EA,S1201_C02_018M,S1201_C02_018MA"}, "S2201_C05_024E": {"label": "Estimate!!Households not receiving food stamps/SNAP!!Households!!DISABILITY STATUS!!With no persons with a disability", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C05_024EA,S2201_C05_024M,S2201_C05_024MA"}, "S0102_C01_052E": {"label": "Estimate!!Total!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different house in the United States!!Different county!!Different state", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_052EA,S0102_C01_052M,S0102_C01_052MA"}, "S1501_C03_054E": {"label": "Estimate!!Male!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Hispanic or Latino Origin!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C03_054EA,S1501_C03_054M,S1501_C03_054MA"}, "S2401_C04_025E": {"label": "Estimate!!Female!!Civilian employed population 16 years and over!!Service occupations:!!Personal care and service occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C04_025EA,S2401_C04_025M,S2401_C04_025MA"}, "S2603_C06_084E": {"label": "Estimate!!College/university housing!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English!!Speak English less than \"very well\"", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C06_084EA,S2603_C06_084M,S2603_C06_084MA"}, "S1201_C02_019E": {"label": "Estimate!!Now married (except separated)!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C02_019EA,S1201_C02_019M,S1201_C02_019MA"}, "S2201_C05_023E": {"label": "Estimate!!Households not receiving food stamps/SNAP!!Households!!DISABILITY STATUS!!With one or more people with a disability", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C05_023EA,S2201_C05_023M,S2201_C05_023MA"}, "S0102_C01_051E": {"label": "Estimate!!Total!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different house in the United States!!Different county!!Same state", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_051EA,S0102_C01_051M,S0102_C01_051MA"}, "S1501_C03_055E": {"label": "Estimate!!Male!!POVERTY RATE FOR THE POPULATION 25 YEARS AND OVER FOR WHOM POVERTY STATUS IS DETERMINED BY EDUCATIONAL ATTAINMENT LEVEL!!Less than high school graduate", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C03_055EA,S1501_C03_055M,S1501_C03_055MA"}, "S2401_C04_026E": {"label": "Estimate!!Female!!Civilian employed population 16 years and over!!Sales and office occupations:", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C04_026EA,S2401_C04_026M,S2401_C04_026MA"}, "S2702_C01_053E": {"label": "Estimate!!Total!!WORK EXPERIENCE!!Civilian noninstitutionalized population 16 to 64 years!!Worked less than full-time, year round in the past 12 months", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_053EA,S2702_C01_053M,S2702_C01_053MA"}, "S0901_C04_007E": {"label": "Estimate!!In female householder, no spouse present, family household!!Children under 18 years in households!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C04_007EA,S0901_C04_007M,S0901_C04_007MA"}, "S1902_C03_007E": {"label": "Estimate!!Mean income (dollars)!!HOUSEHOLD INCOME!!All households!!With Supplemental Security Income (SSI)", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1902", "limit": 0, "attributes": "S1902_C03_007EA,S1902_C03_007M,S1902_C03_007MA"}, "S1201_C02_016E": {"label": "Estimate!!Now married (except separated)!!Population 15 years and over", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C02_016EA,S1201_C02_016M,S1201_C02_016MA"}, "S0102_C01_054E": {"label": "Estimate!!Total!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population", "concept": "Population 60 Years and Over in the United States", "predicateType": "int", "group": "S0102", "limit": 0, "attributes": "S0102_C01_054EA,S0102_C01_054M,S0102_C01_054MA"}, "S0103PR_C01_042E": {"label": "Estimate!!Total!!VETERAN STATUS!!Civilian population 18 years and over!!Civilian veteran", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_042EA,S0103PR_C01_042M,S0103PR_C01_042MA"}, "S2401_C04_027E": {"label": "Estimate!!Female!!Civilian employed population 16 years and over!!Sales and office occupations:!!Sales and related occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C04_027EA,S2401_C04_027M,S2401_C04_027MA"}, "S0901_C04_008E": {"label": "Estimate!!In female householder, no spouse present, family household!!Children under 18 years in households!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C04_008EA,S0901_C04_008M,S0901_C04_008MA"}, "S2702_C01_054E": {"label": "Estimate!!Total!!WORK EXPERIENCE!!Civilian noninstitutionalized population 16 to 64 years!!Did not work", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_054EA,S2702_C01_054M,S2702_C01_054MA"}, "S1201_C02_017E": {"label": "Estimate!!Now married (except separated)!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C02_017EA,S1201_C02_017M,S1201_C02_017MA"}, "S2201_C05_029E": {"label": "Estimate!!Households not receiving food stamps/SNAP!!Households!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Native Hawaiian and Other Pacific Islander alone", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C05_029EA,S2201_C05_029M,S2201_C05_029MA"}, "S1902_C03_008E": {"label": "Estimate!!Mean income (dollars)!!HOUSEHOLD INCOME!!All households!!With cash public assistance income or Food Stamps/SNAP", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1902", "limit": 0, "attributes": "S1902_C03_008EA,S1902_C03_008M,S1902_C03_008MA"}, "S0103PR_C01_043E": {"label": "Estimate!!Total!!DISABILITY STATUS!!Civilian noninstitutionalized population", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_043EA,S0103PR_C01_043M,S0103PR_C01_043MA"}, "S0102_C01_053E": {"label": "Estimate!!Total!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Abroad", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_053EA,S0102_C01_053M,S0102_C01_053MA"}, "S2401_C04_028E": {"label": "Estimate!!Female!!Civilian employed population 16 years and over!!Sales and office occupations:!!Office and administrative support occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C04_028EA,S2401_C04_028M,S2401_C04_028MA"}, "S0901_C04_009E": {"label": "Estimate!!In female householder, no spouse present, family household!!Children under 18 years in households!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C04_009EA,S0901_C04_009M,S0901_C04_009MA"}, "S2702_C01_051E": {"label": "Estimate!!Total!!WORK EXPERIENCE!!Civilian noninstitutionalized population 16 to 64 years", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "int", "group": "S2702", "limit": 0, "attributes": "S2702_C01_051EA,S2702_C01_051M,S2702_C01_051MA"}, "S1501_C03_050E": {"label": "Estimate!!Male!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Two or more races!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C03_050EA,S1501_C03_050M,S1501_C03_050MA"}, "S2201_C05_028E": {"label": "Estimate!!Households not receiving food stamps/SNAP!!Households!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Asian alone", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C05_028EA,S2201_C05_028M,S2201_C05_028MA"}, "S1201_C02_014E": {"label": "Estimate!!Now married (except separated)!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over!!55 to 64 years", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C02_014EA,S1201_C02_014M,S1201_C02_014MA"}, "S0102_C01_056E": {"label": "Estimate!!Total!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born", "concept": "Population 60 Years and Over in the United States", "predicateType": "int", "group": "S0102", "limit": 0, "attributes": "S0102_C01_056EA,S0102_C01_056M,S0102_C01_056MA"}, "S0103PR_C01_040E": {"label": "Estimate!!Total!!RESPONSIBILITY FOR GRANDCHILDREN UNDER 18 YEARS!!Population 30 years and over!!Living with grandchild(ren)!!Responsible for grandchild(ren)", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_040EA,S0103PR_C01_040M,S0103PR_C01_040MA"}, "S1902_C03_009E": {"label": "Estimate!!Mean income (dollars)!!HOUSEHOLD INCOME!!All households!!With cash public assistance income or Food Stamps/SNAP!!With cash public assistance", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1902", "limit": 0, "attributes": "S1902_C03_009EA,S1902_C03_009M,S1902_C03_009MA"}, "S2603_C06_089E": {"label": "Estimate!!College/university housing!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C06_089EA,S2603_C06_089M,S2603_C06_089MA"}, "S2603_C06_088E": {"label": "Estimate!!College/university housing!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Employed", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C06_088EA,S2603_C06_088M,S2603_C06_088MA"}, "S2702_C01_052E": {"label": "Estimate!!Total!!WORK EXPERIENCE!!Civilian noninstitutionalized population 16 to 64 years!!Worked full-time, year round in the past 12 months", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_052EA,S2702_C01_052M,S2702_C01_052MA"}, "S2201_C05_027E": {"label": "Estimate!!Households not receiving food stamps/SNAP!!Households!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!American Indian and Alaska Native alone", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C05_027EA,S2201_C05_027M,S2201_C05_027MA"}, "S1501_C03_051E": {"label": "Estimate!!Male!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Two or more races!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C03_051EA,S1501_C03_051M,S1501_C03_051MA"}, "S1201_C02_015E": {"label": "Estimate!!Now married (except separated)!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over!!65 years and over", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C02_015EA,S1201_C02_015M,S1201_C02_015MA"}, "S0102_C01_055E": {"label": "Estimate!!Total!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Native", "concept": "Population 60 Years and Over in the United States", "predicateType": "int", "group": "S0102", "limit": 0, "attributes": "S0102_C01_055EA,S0102_C01_055M,S0102_C01_055MA"}, "S0103PR_C01_041E": {"label": "Estimate!!Total!!VETERAN STATUS!!Civilian population 18 years and over", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_041EA,S0103PR_C01_041M,S0103PR_C01_041MA"}, "S2401_C04_029E": {"label": "Estimate!!Female!!Civilian employed population 16 years and over!!Natural resources, construction, and maintenance occupations:", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C04_029EA,S2401_C04_029M,S2401_C04_029MA"}, "S2401_C04_006E": {"label": "Estimate!!Female!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Computer, engineering, and science occupations:", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C04_006EA,S2401_C04_006M,S2401_C04_006MA"}, "S2702_C01_069E": {"label": "Estimate!!Total!!Civilian noninstitutionalized workers 16 years and over!!INDUSTRY!!Retail trade", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_069EA,S2702_C01_069M,S2702_C01_069MA"}, "S0601PR_C01_014E": {"label": "Estimate!!Total!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C01_014EA,S0601PR_C01_014M,S0601PR_C01_014MA"}, "S0506_C02_115E": {"label": "Estimate!!Foreign-born; Born in Latin America!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_115EA,S0506_C02_115M,S0506_C02_115MA"}, "S0502_C02_145E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_145EA,S0502_C02_145M,S0502_C02_145MA"}, "S0504_C04_016E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Foreign-born population!!SEX AND AGE!!45 to 54 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_016EA,S0504_C04_016M,S0504_C04_016MA"}, "S0103PR_C01_046E": {"label": "Estimate!!Total!!RESIDENCE 1 YEAR AGO!!Population 1 year and over", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_046EA,S0103PR_C01_046M,S0103PR_C01_046MA"}, "S0601PR_C01_013E": {"label": "Estimate!!Total!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C01_013EA,S0601PR_C01_013M,S0601PR_C01_013MA"}, "S0506_C02_116E": {"label": "Estimate!!Foreign-born; Born in Latin America!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_116EA,S0506_C02_116M,S0506_C02_116MA"}, "S0502_C02_146E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_146EA,S0502_C02_146M,S0502_C02_146MA"}, "S0103PR_C01_047E": {"label": "Estimate!!Total!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Same house", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_047EA,S0103PR_C01_047M,S0103PR_C01_047MA"}, "S0504_C04_017E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Foreign-born population!!SEX AND AGE!!55 to 64 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_017EA,S0504_C04_017M,S0504_C04_017MA"}, "S2401_C04_007E": {"label": "Estimate!!Female!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Computer, engineering, and science occupations:!!Computer and mathematical occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C04_007EA,S2401_C04_007M,S2401_C04_007MA"}, "S2702_C01_067E": {"label": "Estimate!!Total!!Civilian noninstitutionalized workers 16 years and over!!INDUSTRY!!Manufacturing", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_067EA,S2702_C01_067M,S2702_C01_067MA"}, "S0506_C02_113E": {"label": "Estimate!!Foreign-born; Born in Latin America!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!100 to 199 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_113EA,S0506_C02_113M,S0506_C02_113MA"}, "S0504_C04_018E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Foreign-born population!!SEX AND AGE!!65 to 74 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_018EA,S0504_C04_018M,S0504_C04_018MA"}, "S0103PR_C01_044E": {"label": "Estimate!!Total!!DISABILITY STATUS!!Civilian noninstitutionalized population!!With any disability", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_044EA,S0103PR_C01_044M,S0103PR_C01_044MA"}, "S0601PR_C01_016E": {"label": "Estimate!!Total!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C01_016EA,S0601PR_C01_016M,S0601PR_C01_016MA"}, "S2401_C04_008E": {"label": "Estimate!!Female!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Computer, engineering, and science occupations:!!Architecture and engineering occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C04_008EA,S2401_C04_008M,S2401_C04_008MA"}, "S2702_C01_068E": {"label": "Estimate!!Total!!Civilian noninstitutionalized workers 16 years and over!!INDUSTRY!!Wholesale trade", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_068EA,S2702_C01_068M,S2702_C01_068MA"}, "S2201_C05_019E": {"label": "Estimate!!Households not receiving food stamps/SNAP!!Households!!No children under 18 years!!Other family:!!Female householder, no spouse present", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C05_019EA,S2201_C05_019M,S2201_C05_019MA"}, "S0506_C02_114E": {"label": "Estimate!!Foreign-born; Born in Latin America!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!At or above 200 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_114EA,S0506_C02_114M,S0506_C02_114MA"}, "S0504_C04_019E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Foreign-born population!!SEX AND AGE!!75 to 84 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_019EA,S0504_C04_019M,S0504_C04_019MA"}, "S0103PR_C01_045E": {"label": "Estimate!!Total!!DISABILITY STATUS!!Civilian noninstitutionalized population!!No disability", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_045EA,S0103PR_C01_045M,S0103PR_C01_045MA"}, "S0601PR_C01_015E": {"label": "Estimate!!Total!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C01_015EA,S0601PR_C01_015M,S0601PR_C01_015MA"}, "S2401_C04_009E": {"label": "Estimate!!Female!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Computer, engineering, and science occupations:!!Life, physical, and social science occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C04_009EA,S2401_C04_009M,S2401_C04_009MA"}, "S2603_C06_083E": {"label": "Estimate!!College/university housing!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C06_083EA,S2603_C06_083M,S2603_C06_083MA"}, "S0502_C02_141E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Owner-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C02_141EA,S0502_C02_141M,S0502_C02_141MA"}, "S0506_C02_111E": {"label": "Estimate!!Foreign-born; Born in Latin America!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C02_111EA,S0506_C02_111M,S0506_C02_111MA"}, "S1703_C03_016E": {"label": "Estimate!!Less than 100 percent of the poverty level!!Population for whom poverty status is determined!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C03_016EA,S1703_C03_016M,S1703_C03_016MA"}, "S0504_C04_012E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Foreign-born population!!SEX AND AGE!!Under 5 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_012EA,S0504_C04_012M,S0504_C04_012MA"}, "S0601PR_C01_018E": {"label": "Estimate!!Total!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C01_018EA,S0601PR_C01_018M,S0601PR_C01_018MA"}, "S0702_C01_001E": {"label": "Estimate!!Total!!Population 1 year and over", "concept": "Movers Between Regions", "predicateType": "int", "group": "S0702", "limit": 0, "attributes": "S0702_C01_001EA,S0702_C01_001M,S0702_C01_001MA"}, "S2603_C06_082E": {"label": "Estimate!!College/university housing!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!English only", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C06_082EA,S2603_C06_082M,S2603_C06_082MA"}, "S0502_C02_142E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_142EA,S0502_C02_142M,S0502_C02_142MA"}, "S1703_C03_017E": {"label": "Estimate!!Less than 100 percent of the poverty level!!Population for whom poverty status is determined!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C03_017EA,S1703_C03_017M,S1703_C03_017MA"}, "S0506_C02_112E": {"label": "Estimate!!Foreign-born; Born in Latin America!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!Below 100 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_112EA,S0506_C02_112M,S0506_C02_112MA"}, "S0504_C04_013E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Foreign-born population!!SEX AND AGE!!5 to 17 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_013EA,S0504_C04_013M,S0504_C04_013MA"}, "S0601PR_C01_017E": {"label": "Estimate!!Total!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C01_017EA,S0601PR_C01_017M,S0601PR_C01_017MA"}, "S0702_C01_002E": {"label": "Estimate!!Total!!Population 1 year and over!!Same residence (non-movers)", "concept": "Movers Between Regions", "predicateType": "int", "group": "S0702", "limit": 0, "attributes": "S0702_C01_002EA,S0702_C01_002M,S0702_C01_002MA"}, "S0502PR_C01_040E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over!!Divorced or separated", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_040EA,S0502PR_C01_040M,S0502PR_C01_040MA"}, "S2603_C06_081E": {"label": "Estimate!!College/university housing!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C06_081EA,S2603_C06_081M,S2603_C06_081MA"}, "S0502_C02_143E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_143EA,S0502_C02_143M,S0502_C02_143MA"}, "S1703_C03_018E": {"label": "Estimate!!Less than 100 percent of the poverty level!!Population for whom poverty status is determined!!LIVING ARRANGEMENT!!In family households", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C03_018EA,S1703_C03_018M,S1703_C03_018MA"}, "S0103PR_C01_048E": {"label": "Estimate!!Total!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different house in Puerto Rico or the United States", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_048EA,S0103PR_C01_048M,S0103PR_C01_048MA"}, "S0504_C04_014E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Foreign-born population!!SEX AND AGE!!18 to 24 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_014EA,S0504_C04_014M,S0504_C04_014MA"}, "S2701_C05_048E": {"label": "Estimate!!Percent Uninsured!!Civilian noninstitutionalized population!!WORK EXPERIENCE!!Civilian noninstitutionalized population 19 to 64 years!!Worked full-time, year round in the past 12 months", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C05_048EA,S2701_C05_048M,S2701_C05_048MA"}, "S0502PR_C01_041E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_041EA,S0502PR_C01_041M,S0502PR_C01_041MA"}, "S1703_C03_019E": {"label": "Estimate!!Less than 100 percent of the poverty level!!Population for whom poverty status is determined!!LIVING ARRANGEMENT!!In family households!!In married-couple family", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C03_019EA,S1703_C03_019M,S1703_C03_019MA"}, "S2603_C06_080E": {"label": "Estimate!!College/university housing!!WORLD REGION OF BIRTH OF FOREIGN BORN!!Foreign-born population excluding population born at sea!!Other", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C06_080EA,S2603_C06_080M,S2603_C06_080MA"}, "S0502_C02_144E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Renter-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C02_144EA,S0502_C02_144M,S0502_C02_144MA"}, "S0103PR_C01_049E": {"label": "Estimate!!Total!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different house in Puerto Rico or the United States!!In Puerto Rico", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_049EA,S0103PR_C01_049M,S0103PR_C01_049MA"}, "S0506_C02_110E": {"label": "Estimate!!Foreign-born; Born in Latin America!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!Average number of workers per household", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_110EA,S0506_C02_110M,S0506_C02_110MA"}, "S0504_C04_015E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Foreign-born population!!SEX AND AGE!!25 to 44 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_015EA,S0504_C04_015M,S0504_C04_015MA"}, "S2701_C05_049E": {"label": "Estimate!!Percent Uninsured!!Civilian noninstitutionalized population!!WORK EXPERIENCE!!Civilian noninstitutionalized population 19 to 64 years!!Worked less than full-time, year round in the past 12 months", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C05_049EA,S2701_C05_049M,S2701_C05_049MA"}, "S0502PR_C01_042E": {"label": "Estimate!!Total!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_042EA,S0502PR_C01_042M,S0502PR_C01_042MA"}, "S0601PR_C01_019E": {"label": "Estimate!!Total!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C01_019EA,S0601PR_C01_019M,S0601PR_C01_019MA"}, "S2507_C01_010E": {"label": "Estimate!!Owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!VALUE!!Median (dollars)", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "int", "group": "S2507", "limit": 0, "attributes": "S2507_C01_010EA,S2507_C01_010M,S2507_C01_010MA"}, "S1703_C03_012E": {"label": "Estimate!!Less than 100 percent of the poverty level!!Population for whom poverty status is determined!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C03_012EA,S1703_C03_012M,S1703_C03_012MA"}, "S2601C_C01_042E": {"label": "Estimate!!Total population!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate or higher", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_042EA,S2601C_C01_042M,S2601C_C01_042MA"}, "S0502PR_C01_043E": {"label": "Estimate!!Total!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Nursery school, preschool", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_043EA,S0502PR_C01_043M,S0502PR_C01_043MA"}, "S2704_C02_001E": {"label": "Estimate!!Public Coverage!!Civilian noninstitutionalized population", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2704", "limit": 0, "attributes": "S2704_C02_001EA,S2704_C02_001M,S2704_C02_001MA"}, "S1703_C03_013E": {"label": "Estimate!!Less than 100 percent of the poverty level!!Population for whom poverty status is determined!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C03_013EA,S1703_C03_013M,S1703_C03_013MA"}, "S2507_C01_011E": {"label": "Estimate!!Owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Less than $10,000", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "int", "group": "S2507", "limit": 0, "attributes": "S2507_C01_011EA,S2507_C01_011M,S2507_C01_011MA"}, "S2601C_C01_043E": {"label": "Estimate!!Total population!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree or higher", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_043EA,S2601C_C01_043M,S2601C_C01_043MA"}, "S0502PR_C01_044E": {"label": "Estimate!!Total!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Elementary school (grades K-8)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_044EA,S0502PR_C01_044M,S0502PR_C01_044MA"}, "S0504_C04_010E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Foreign-born population!!SEX AND AGE!!Male", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_010EA,S0504_C04_010M,S0504_C04_010MA"}, "S2704_C02_002E": {"label": "Estimate!!Public Coverage!!COVERAGE ALONE OR IN COMBINATION!!Medicare coverage alone or in combination", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2704", "limit": 0, "attributes": "S2704_C02_002EA,S2704_C02_002M,S2704_C02_002MA"}, "S1703_C03_014E": {"label": "Estimate!!Less than 100 percent of the poverty level!!Population for whom poverty status is determined!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C03_014EA,S1703_C03_014M,S1703_C03_014MA"}, "S0502PR_C01_045E": {"label": "Estimate!!Total!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!High school (grades 9-12)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_045EA,S0502PR_C01_045M,S0502PR_C01_045MA"}, "S2601C_C01_040E": {"label": "Estimate!!Total population!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!College or graduate school", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_040EA,S2601C_C01_040M,S2601C_C01_040MA"}, "S0504_C04_011E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Foreign-born population!!SEX AND AGE!!Female", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_011EA,S0504_C04_011M,S0504_C04_011MA"}, "S0502_C02_140E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Occupied housing units!!SELECTED CHARACTERISTICS!!Limited English Speaking Households", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_140EA,S0502_C02_140M,S0502_C02_140MA"}, "S1703_C03_015E": {"label": "Estimate!!Less than 100 percent of the poverty level!!Population for whom poverty status is determined!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C03_015EA,S1703_C03_015M,S1703_C03_015MA"}, "S2601C_C01_041E": {"label": "Estimate!!Total population!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_041EA,S2601C_C01_041M,S2601C_C01_041MA"}, "S2704_C02_003E": {"label": "Estimate!!Public Coverage!!COVERAGE ALONE OR IN COMBINATION!!Medicare coverage alone or in combination!!Under 19", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2704", "limit": 0, "attributes": "S2704_C02_003EA,S2704_C02_003M,S2704_C02_003MA"}, "S0502PR_C01_046E": {"label": "Estimate!!Total!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!College or graduate school", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_046EA,S0502PR_C01_046M,S0502PR_C01_046MA"}, "S0503_C01_021E": {"label": "Estimate!!Total!!Foreign-born population!!SEX AND AGE!!Median age (years)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_021EA,S0503_C01_021M,S0503_C01_021MA"}, "S0506_C02_119E": {"label": "Estimate!!Foreign-born; Born in Latin America!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_119EA,S0506_C02_119M,S0506_C02_119MA"}, "S2507_C01_014E": {"label": "Estimate!!Owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$35,000 to $49,999", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "int", "group": "S2507", "limit": 0, "attributes": "S2507_C01_014EA,S2507_C01_014M,S2507_C01_014MA"}, "S0502PR_C01_047E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_047EA,S0502PR_C01_047M,S0502PR_C01_047MA"}, "S0502PR_C01_048E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than high school graduate", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_048EA,S0502PR_C01_048M,S0502PR_C01_048MA"}, "S0503_C01_020E": {"label": "Estimate!!Total!!Foreign-born population!!SEX AND AGE!!85 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_020EA,S0503_C01_020M,S0503_C01_020MA"}, "S2507_C01_015E": {"label": "Estimate!!Owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$50,000 to $74,999", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "int", "group": "S2507", "limit": 0, "attributes": "S2507_C01_015EA,S2507_C01_015M,S2507_C01_015MA"}, "S0503_C01_023E": {"label": "Estimate!!Total!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_023EA,S0503_C01_023M,S0503_C01_023MA"}, "S0502PR_C01_049E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate (includes equivalency)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_049EA,S0502PR_C01_049M,S0502PR_C01_049MA"}, "S0506_C02_117E": {"label": "Estimate!!Foreign-born; Born in Latin America!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_117EA,S0506_C02_117M,S0506_C02_117MA"}, "S2507_C01_012E": {"label": "Estimate!!Owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$10,000 to $24,999", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "int", "group": "S2507", "limit": 0, "attributes": "S2507_C01_012EA,S2507_C01_012M,S2507_C01_012MA"}, "S1703_C03_010E": {"label": "Estimate!!Less than 100 percent of the poverty level!!Population for whom poverty status is determined!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C03_010EA,S1703_C03_010M,S1703_C03_010MA"}, "S0503_C01_022E": {"label": "Estimate!!Total!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_022EA,S0503_C01_022M,S0503_C01_022MA"}, "S0506_C02_118E": {"label": "Estimate!!Foreign-born; Born in Latin America!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_118EA,S0506_C02_118M,S0506_C02_118MA"}, "S2507_C01_013E": {"label": "Estimate!!Owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$25,000 to $34,999", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "int", "group": "S2507", "limit": 0, "attributes": "S2507_C01_013EA,S2507_C01_013M,S2507_C01_013MA"}, "S1703_C03_011E": {"label": "Estimate!!Less than 100 percent of the poverty level!!Population for whom poverty status is determined!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "float", "group": "S1703", "limit": 0, "attributes": "S1703_C03_011EA,S1703_C03_011M,S1703_C03_011MA"}, "S0503_C01_013E": {"label": "Estimate!!Total!!Foreign-born population!!SEX AND AGE!!5 to 17 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_013EA,S0503_C01_013M,S0503_C01_013MA"}, "S1001_C03_027E": {"label": "Estimate!!Grandchildren with no parent present!!With grandparent responsible!!Grandchildren under 18 years living with a grandparent householder in occupied housing units!!UNITS IN STRUCTURE!!In mobile homes and all other types of units", "concept": "Grandchildren Characteristics", "predicateType": "float", "group": "S1001", "limit": 0, "attributes": "S1001_C03_027EA,S1001_C03_027M,S1001_C03_027MA"}, "S2701_C05_050E": {"label": "Estimate!!Percent Uninsured!!Civilian noninstitutionalized population!!WORK EXPERIENCE!!Civilian noninstitutionalized population 19 to 64 years!!Did not work", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C05_050EA,S2701_C05_050M,S2701_C05_050MA"}, "S2704_C02_008E": {"label": "Estimate!!Public Coverage!!COVERAGE ALONE OR IN COMBINATION!!Medicaid/means-tested public coverage alone or in combination!!19 to 64 years", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2704", "limit": 0, "attributes": "S2704_C02_008EA,S2704_C02_008M,S2704_C02_008MA"}, "S1201_C02_024E": {"label": "Estimate!!Now married (except separated)!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C02_024EA,S1201_C02_024M,S1201_C02_024MA"}, "S2507_C01_018E": {"label": "Estimate!!Owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$150,000 or more", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "int", "group": "S2507", "limit": 0, "attributes": "S2507_C01_018EA,S2507_C01_018M,S2507_C01_018MA"}, "S0102_C01_046E": {"label": "Estimate!!Total!!RESIDENCE 1 YEAR AGO!!Population 1 year and over", "concept": "Population 60 Years and Over in the United States", "predicateType": "int", "group": "S0102", "limit": 0, "attributes": "S0102_C01_046EA,S0102_C01_046M,S0102_C01_046MA"}, "S0503_C01_012E": {"label": "Estimate!!Total!!Foreign-born population!!SEX AND AGE!!Under 5 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_012EA,S0503_C01_012M,S0503_C01_012MA"}, "S2701_C05_051E": {"label": "Estimate!!Percent Uninsured!!Civilian noninstitutionalized population!!HOUSEHOLD INCOME (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Total household population", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C05_051EA,S2701_C05_051M,S2701_C05_051MA"}, "S2704_C02_009E": {"label": "Estimate!!Public Coverage!!COVERAGE ALONE OR IN COMBINATION!!Medicaid/means-tested public coverage alone or in combination!!65 years and over", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2704", "limit": 0, "attributes": "S2704_C02_009EA,S2704_C02_009M,S2704_C02_009MA"}, "S1201_C02_025E": {"label": "Estimate!!Now married (except separated)!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C02_025EA,S1201_C02_025M,S1201_C02_025MA"}, "S2507_C01_019E": {"label": "Estimate!!Owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Median household income (dollars)", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "int", "group": "S2507", "limit": 0, "attributes": "S2507_C01_019EA,S2507_C01_019M,S2507_C01_019MA"}, "S0102_C01_045E": {"label": "Estimate!!Total!!DISABILITY STATUS!!Civilian noninstitutionalized population!!No disability", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_045EA,S0102_C01_045M,S0102_C01_045MA"}, "S0503_C01_015E": {"label": "Estimate!!Total!!Foreign-born population!!SEX AND AGE!!25 to 44 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_015EA,S0503_C01_015M,S0503_C01_015MA"}, "S2601C_C01_049E": {"label": "Estimate!!Total population!!DISABILITY STATUS!!Population under 18 years!!With a disability", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_049EA,S2601C_C01_049M,S2601C_C01_049MA"}, "S2507_C01_016E": {"label": "Estimate!!Owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$75,000 to $99,999", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "int", "group": "S2507", "limit": 0, "attributes": "S2507_C01_016EA,S2507_C01_016M,S2507_C01_016MA"}, "S2601C_C01_048E": {"label": "Estimate!!Total population!!DISABILITY STATUS!!Population under 18 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_048EA,S2601C_C01_048M,S2601C_C01_048MA"}, "S0102_C01_048E": {"label": "Estimate!!Total!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different house in the United States", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_048EA,S0102_C01_048M,S0102_C01_048MA"}, "S1201_C02_022E": {"label": "Estimate!!Now married (except separated)!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C02_022EA,S1201_C02_022M,S1201_C02_022MA"}, "S0503_C01_014E": {"label": "Estimate!!Total!!Foreign-born population!!SEX AND AGE!!18 to 24 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_014EA,S0503_C01_014M,S0503_C01_014MA"}, "S1811_C01_030E": {"label": "Estimate!!Total Civilian Noninstitutionalized Population!!Employed Population Age 16 and Over!!INDUSTRY!!Other services (except public administration)", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C01_030EA,S1811_C01_030M,S1811_C01_030MA"}, "S2507_C01_017E": {"label": "Estimate!!Owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$100,000 to $149,999", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "int", "group": "S2507", "limit": 0, "attributes": "S2507_C01_017EA,S2507_C01_017M,S2507_C01_017MA"}, "S0102_C01_047E": {"label": "Estimate!!Total!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Same house", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_047EA,S0102_C01_047M,S0102_C01_047MA"}, "S1201_C02_023E": {"label": "Estimate!!Now married (except separated)!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C02_023EA,S1201_C02_023M,S1201_C02_023MA"}, "S1811_C01_031E": {"label": "Estimate!!Total Civilian Noninstitutionalized Population!!Employed Population Age 16 and Over!!INDUSTRY!!Public administration", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C01_031EA,S1811_C01_031M,S1811_C01_031MA"}, "S2601C_C01_046E": {"label": "Estimate!!Total population!!DISABILITY STATUS!!Total population", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_046EA,S2601C_C01_046M,S2601C_C01_046MA"}, "S2602_C03_080E": {"label": "Estimate!!Adult correctional facilities!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Employed", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C03_080EA,S2602_C03_080M,S2602_C03_080MA"}, "S2704_C02_004E": {"label": "Estimate!!Public Coverage!!COVERAGE ALONE OR IN COMBINATION!!Medicare coverage alone or in combination!!19 to 64 years", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2704", "limit": 0, "attributes": "S2704_C02_004EA,S2704_C02_004M,S2704_C02_004MA"}, "S1201_C02_020E": {"label": "Estimate!!Now married (except separated)!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C02_020EA,S1201_C02_020M,S1201_C02_020MA"}, "S2201_C05_010E": {"label": "Estimate!!Households not receiving food stamps/SNAP!!Households!!With children under 18 years!!Married-couple family", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C05_010EA,S2201_C05_010M,S2201_C05_010MA"}, "S0503_C01_017E": {"label": "Estimate!!Total!!Foreign-born population!!SEX AND AGE!!55 to 64 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_017EA,S0503_C01_017M,S0503_C01_017MA"}, "S1811_C01_032E": {"label": "Estimate!!Total Civilian Noninstitutionalized Population!!COMMUTING TO WORK!!Workers Age 16 and Over", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "int", "group": "S1811", "limit": 0, "attributes": "S1811_C01_032EA,S1811_C01_032M,S1811_C01_032MA"}, "S2602_C03_081E": {"label": "Estimate!!Adult correctional facilities!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C03_081EA,S2602_C03_081M,S2602_C03_081MA"}, "S2601C_C01_047E": {"label": "Estimate!!Total population!!DISABILITY STATUS!!Total population!!With a disability", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_047EA,S2601C_C01_047M,S2601C_C01_047MA"}, "S2704_C02_005E": {"label": "Estimate!!Public Coverage!!COVERAGE ALONE OR IN COMBINATION!!Medicare coverage alone or in combination!!65 years and over", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2704", "limit": 0, "attributes": "S2704_C02_005EA,S2704_C02_005M,S2704_C02_005MA"}, "S0102_C01_049E": {"label": "Estimate!!Total!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different house in the United States!!Same county", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_049EA,S0102_C01_049M,S0102_C01_049MA"}, "S1201_C02_021E": {"label": "Estimate!!Now married (except separated)!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C02_021EA,S1201_C02_021M,S1201_C02_021MA"}, "S0503_C01_016E": {"label": "Estimate!!Total!!Foreign-born population!!SEX AND AGE!!45 to 54 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_016EA,S0503_C01_016M,S0503_C01_016MA"}, "S1811_C01_033E": {"label": "Estimate!!Total Civilian Noninstitutionalized Population!!COMMUTING TO WORK!!Workers Age 16 and Over!!Car, truck, or van - drove alone", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C01_033EA,S1811_C01_033M,S1811_C01_033MA"}, "S2602_C03_082E": {"label": "Estimate!!Adult correctional facilities!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed!!Percent of civilian labor force", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C03_082EA,S2602_C03_082M,S2602_C03_082MA"}, "S2704_C02_006E": {"label": "Estimate!!Public Coverage!!COVERAGE ALONE OR IN COMBINATION!!Medicaid/means-tested public coverage alone or in combination", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2704", "limit": 0, "attributes": "S2704_C02_006EA,S2704_C02_006M,S2704_C02_006MA"}, "S2601C_C01_044E": {"label": "Estimate!!Total population!!VETERAN STATUS!!Civilian population 18 years and over", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_044EA,S2601C_C01_044M,S2601C_C01_044MA"}, "S0503_C01_019E": {"label": "Estimate!!Total!!Foreign-born population!!SEX AND AGE!!75 to 84 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_019EA,S0503_C01_019M,S0503_C01_019MA"}, "S1811_C01_034E": {"label": "Estimate!!Total Civilian Noninstitutionalized Population!!COMMUTING TO WORK!!Workers Age 16 and Over!!Car, truck, or van - carpooled", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C01_034EA,S1811_C01_034M,S1811_C01_034MA"}, "S2602_C03_083E": {"label": "Estimate!!Adult correctional facilities!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Armed Forces", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C03_083EA,S2602_C03_083M,S2602_C03_083MA"}, "S2601C_C01_045E": {"label": "Estimate!!Total population!!VETERAN STATUS!!Civilian population 18 years and over!!Civilian veteran", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_045EA,S2601C_C01_045M,S2601C_C01_045MA"}, "S2704_C02_007E": {"label": "Estimate!!Public Coverage!!COVERAGE ALONE OR IN COMBINATION!!Medicaid/means-tested public coverage alone or in combination!!Under 19", "concept": "Public Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2704", "limit": 0, "attributes": "S2704_C02_007EA,S2704_C02_007M,S2704_C02_007MA"}, "S0503_C01_018E": {"label": "Estimate!!Total!!Foreign-born population!!SEX AND AGE!!65 to 74 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_018EA,S0503_C01_018M,S0503_C01_018MA"}, "S2603_C06_075E": {"label": "Estimate!!College/university housing!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Entered before 2000", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C06_075EA,S2603_C06_075M,S2603_C06_075MA"}, "S0702_C01_005E": {"label": "Estimate!!Total!!Population 1 year and over!!Movers between regions by region of residence 1 year ago!!Northeast", "concept": "Movers Between Regions", "predicateType": "int", "group": "S0702", "limit": 0, "attributes": "S0702_C01_005EA,S0702_C01_005M,S0702_C01_005MA"}, "S2401_C04_010E": {"label": "Estimate!!Female!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C04_010EA,S2401_C04_010M,S2401_C04_010MA"}, "S1811_C01_035E": {"label": "Estimate!!Total Civilian Noninstitutionalized Population!!COMMUTING TO WORK!!Workers Age 16 and Over!!Public transportation", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C01_035EA,S1811_C01_035M,S1811_C01_035MA"}, "S2702_C01_061E": {"label": "Estimate!!Total!!Civilian noninstitutionalized workers 16 years and over!!CLASS OF WORKER!!State government workers", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_061EA,S2702_C01_061M,S2702_C01_061MA"}, "S2602_C03_084E": {"label": "Estimate!!Adult correctional facilities!!EMPLOYMENT STATUS!!Population 16 years and over!!Not in labor force", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C03_084EA,S2602_C03_084M,S2602_C03_084MA"}, "S2701_C05_058E": {"label": "Estimate!!Percent Uninsured!!Civilian noninstitutionalized population!!RATIO OF INCOME TO POVERTY LEVEL IN THE PAST 12 MONTHS!!Civilian noninstitutionalized population for whom poverty status is determined!!Below 138 percent of the poverty threshold", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C05_058EA,S2701_C05_058M,S2701_C05_058MA"}, "S2201_C05_014E": {"label": "Estimate!!Households not receiving food stamps/SNAP!!Households!!With children under 18 years!!Nonfamily households", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C05_014EA,S2201_C05_014M,S2201_C05_014MA"}, "S0103PR_C01_050E": {"label": "Estimate!!Total!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different house in Puerto Rico or the United States!!In Puerto Rico!!Same municipio", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_050EA,S0103PR_C01_050M,S0103PR_C01_050MA"}, "S1501_C03_064E": {"label": "Estimate!!Male!!MEDIAN EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 25 years and over with earnings!!Graduate or professional degree", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C03_064EA,S1501_C03_064M,S1501_C03_064MA"}, "S2603_C06_074E": {"label": "Estimate!!College/university housing!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Entered 2000 to 2009", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C06_074EA,S2603_C06_074M,S2603_C06_074MA"}, "S0702_C01_006E": {"label": "Estimate!!Total!!Population 1 year and over!!Movers between regions by region of residence 1 year ago!!Midwest", "concept": "Movers Between Regions", "predicateType": "int", "group": "S0702", "limit": 0, "attributes": "S0702_C01_006EA,S0702_C01_006M,S0702_C01_006MA"}, "S2401_C04_011E": {"label": "Estimate!!Female!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:!!Community and social service occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C04_011EA,S2401_C04_011M,S2401_C04_011MA"}, "S2702_C01_062E": {"label": "Estimate!!Total!!Civilian noninstitutionalized workers 16 years and over!!CLASS OF WORKER!!Federal government workers", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_062EA,S2702_C01_062M,S2702_C01_062MA"}, "S1811_C01_036E": {"label": "Estimate!!Total Civilian Noninstitutionalized Population!!COMMUTING TO WORK!!Workers Age 16 and Over!!Walked", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C01_036EA,S1811_C01_036M,S1811_C01_036MA"}, "S1001_C03_020E": {"label": "Estimate!!Grandchildren with no parent present!!With grandparent responsible!!Grandchildren under 18 years living with a grandparent householder!!POVERTY STATUS IN THE PAST 12 MONTHS!!Income in the past 12 months below poverty level", "concept": "Grandchildren Characteristics", "predicateType": "float", "group": "S1001", "limit": 0, "attributes": "S1001_C03_020EA,S1001_C03_020M,S1001_C03_020MA"}, "S0506_C02_120E": {"label": "Estimate!!Foreign-born; Born in Latin America!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C02_120EA,S0506_C02_120M,S0506_C02_120MA"}, "S2701_C05_059E": {"label": "Estimate!!Percent Uninsured!!Civilian noninstitutionalized population!!RATIO OF INCOME TO POVERTY LEVEL IN THE PAST 12 MONTHS!!Civilian noninstitutionalized population for whom poverty status is determined!!138 to 399 percent of the poverty threshold", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C05_059EA,S2701_C05_059M,S2701_C05_059MA"}, "S2201_C05_013E": {"label": "Estimate!!Households not receiving food stamps/SNAP!!Households!!With children under 18 years!!Other family:!!Female householder, no spouse present", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C05_013EA,S2201_C05_013M,S2201_C05_013MA"}, "S0103PR_C01_051E": {"label": "Estimate!!Total!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different house in Puerto Rico or the United States!!In Puerto Rico!!Different municipio", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_051EA,S0103PR_C01_051M,S0103PR_C01_051MA"}, "S2602_C03_085E": {"label": "Estimate!!Adult correctional facilities!!OCCUPATION!!Civilian employed population 16 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C03_085EA,S2602_C03_085M,S2602_C03_085MA"}, "S2401_C04_012E": {"label": "Estimate!!Female!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:!!Legal occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C04_012EA,S2401_C04_012M,S2401_C04_012MA"}, "S2603_C06_073E": {"label": "Estimate!!College/university housing!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Entered 2010 or later", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C06_073EA,S2603_C06_073M,S2603_C06_073MA"}, "S2419_C04_008E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Full-time, year-round civilian employed population 16 years and over with earnings!!Federal government workers", "concept": "Class of Worker by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2419", "limit": 0, "attributes": "S2419_C04_008EA,S2419_C04_008M,S2419_C04_008MA"}, "S1001_C03_021E": {"label": "Estimate!!Grandchildren with no parent present!!With grandparent responsible!!Grandchildren under 18 years living with a grandparent householder!!POVERTY STATUS IN THE PAST 12 MONTHS!!Income in the past 12 months at or above poverty level", "concept": "Grandchildren Characteristics", "predicateType": "float", "group": "S1001", "limit": 0, "attributes": "S1001_C03_021EA,S1001_C03_021M,S1001_C03_021MA"}, "S1811_C01_037E": {"label": "Estimate!!Total Civilian Noninstitutionalized Population!!COMMUTING TO WORK!!Workers Age 16 and Over!!Taxi or ride-hailing services, motorcycle, bicycle, or other means", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C01_037EA,S1811_C01_037M,S1811_C01_037MA"}, "S2701_C05_056E": {"label": "Estimate!!Percent Uninsured!!Civilian noninstitutionalized population!!HOUSEHOLD INCOME (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Total household population!!$100,000 and over", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C05_056EA,S2701_C05_056M,S2701_C05_056MA"}, "S2201_C05_012E": {"label": "Estimate!!Households not receiving food stamps/SNAP!!Households!!With children under 18 years!!Other family:!!Male householder, no spouse present", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C05_012EA,S2201_C05_012M,S2201_C05_012MA"}, "S0702_C01_003E": {"label": "Estimate!!Total!!Population 1 year and over!!Movers within same region", "concept": "Movers Between Regions", "predicateType": "int", "group": "S0702", "limit": 0, "attributes": "S0702_C01_003EA,S0702_C01_003M,S0702_C01_003MA"}, "S0102_C01_040E": {"label": "Estimate!!Total!!RESPONSIBILITY FOR GRANDCHILDREN UNDER 18 YEARS!!Population 30 years and over!!Living with grandchild(ren)!!Responsible for grandchild(ren)", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_040EA,S0102_C01_040M,S0102_C01_040MA"}, "S2602_C03_086E": {"label": "Estimate!!Adult correctional facilities!!OCCUPATION!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C03_086EA,S2602_C03_086M,S2602_C03_086MA"}, "S2603_C06_072E": {"label": "Estimate!!College/university housing!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Not a U.S. citizen!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C06_072EA,S2603_C06_072M,S2603_C06_072MA"}, "S0702_C01_004E": {"label": "Estimate!!Total!!Population 1 year and over!!Movers between regions by region of residence 1 year ago", "concept": "Movers Between Regions", "predicateType": "int", "group": "S0702", "limit": 0, "attributes": "S0702_C01_004EA,S0702_C01_004M,S0702_C01_004MA"}, "S2401_C04_013E": {"label": "Estimate!!Female!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:!!Educational instruction, and library occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C04_013EA,S2401_C04_013M,S2401_C04_013MA"}, "S2419_C04_009E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Full-time, year-round civilian employed population 16 years and over with earnings!!Self-employed in own not incorporated business workers and unpaid family workers", "concept": "Class of Worker by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2419", "limit": 0, "attributes": "S2419_C04_009EA,S2419_C04_009M,S2419_C04_009MA"}, "S1001_C03_022E": {"label": "Estimate!!Grandchildren with no parent present!!With grandparent responsible!!Grandchildren under 18 years living with a grandparent householder in occupied housing units", "concept": "Grandchildren Characteristics", "predicateType": "int", "group": "S1001", "limit": 0, "attributes": "S1001_C03_022EA,S1001_C03_022M,S1001_C03_022MA"}, "S2702_C01_060E": {"label": "Estimate!!Total!!Civilian noninstitutionalized workers 16 years and over!!CLASS OF WORKER!!Local government workers", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_060EA,S2702_C01_060M,S2702_C01_060MA"}, "S1811_C01_038E": {"label": "Estimate!!Total Civilian Noninstitutionalized Population!!COMMUTING TO WORK!!Workers Age 16 and Over!!Worked from home", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C01_038EA,S1811_C01_038M,S1811_C01_038MA"}, "S2701_C05_057E": {"label": "Estimate!!Percent Uninsured!!Civilian noninstitutionalized population!!RATIO OF INCOME TO POVERTY LEVEL IN THE PAST 12 MONTHS!!Civilian noninstitutionalized population for whom poverty status is determined", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C05_057EA,S2701_C05_057M,S2701_C05_057MA"}, "S2201_C05_011E": {"label": "Estimate!!Households not receiving food stamps/SNAP!!Households!!With children under 18 years!!Other family:", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C05_011EA,S2201_C05_011M,S2201_C05_011MA"}, "S2602_C03_087E": {"label": "Estimate!!Adult correctional facilities!!OCCUPATION!!Civilian employed population 16 years and over!!Service occupations", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C03_087EA,S2602_C03_087M,S2602_C03_087MA"}, "S0601PR_C01_010E": {"label": "Estimate!!Total!!Total population!!AGE!!Median age (years)", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C01_010EA,S0601PR_C01_010M,S0601PR_C01_010MA"}, "S0702_C01_009E": {"label": "Estimate!!Total!!Population 1 year and over!!Movers from abroad", "concept": "Movers Between Regions", "predicateType": "int", "group": "S0702", "limit": 0, "attributes": "S0702_C01_009EA,S0702_C01_009M,S0702_C01_009MA"}, "S2401_C04_014E": {"label": "Estimate!!Female!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:!!Arts, design, entertainment, sports, and media occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C04_014EA,S2401_C04_014M,S2401_C04_014MA"}, "S2702_C01_065E": {"label": "Estimate!!Total!!Civilian noninstitutionalized workers 16 years and over!!INDUSTRY!!Agriculture, forestry, fishing and hunting, and mining", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_065EA,S2702_C01_065M,S2702_C01_065MA"}, "S2701_C05_054E": {"label": "Estimate!!Percent Uninsured!!Civilian noninstitutionalized population!!HOUSEHOLD INCOME (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Total household population!!$50,000 to $74,999", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C05_054EA,S2701_C05_054M,S2701_C05_054MA"}, "S1001_C03_023E": {"label": "Estimate!!Grandchildren with no parent present!!With grandparent responsible!!Grandchildren under 18 years living with a grandparent householder in occupied housing units!!HOUSING TENURE!!In owner-occupied housing units", "concept": "Grandchildren Characteristics", "predicateType": "float", "group": "S1001", "limit": 0, "attributes": "S1001_C03_023EA,S1001_C03_023M,S1001_C03_023MA"}, "S1501_C03_060E": {"label": "Estimate!!Male!!MEDIAN EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 25 years and over with earnings!!Less than high school graduate", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C03_060EA,S1501_C03_060M,S1501_C03_060MA"}, "S0504_C04_008E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen!!Entered 2000 to 2009", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_008EA,S0504_C04_008M,S0504_C04_008MA"}, "S0502_C02_137E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Occupied housing units!!VEHICLES AVAILABLE!!None", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_137EA,S0502_C02_137M,S0502_C02_137MA"}, "S1201_C02_028E": {"label": "Estimate!!Now married (except separated)!!LABOR FORCE PARTICIPATION!!Males 16 years and over!!In labor force", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C02_028EA,S1201_C02_028M,S1201_C02_028MA"}, "S2201_C05_018E": {"label": "Estimate!!Households not receiving food stamps/SNAP!!Households!!No children under 18 years!!Other family:!!Male householder, no spouse present", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C05_018EA,S2201_C05_018M,S2201_C05_018MA"}, "S0103PR_C01_054E": {"label": "Estimate!!Total!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_054EA,S0103PR_C01_054M,S0103PR_C01_054MA"}, "S1811_C01_039E": {"label": "Estimate!!Total Civilian Noninstitutionalized Population!!EDUCATIONAL ATTAINMENT!!Population Age 25 and Over", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "int", "group": "S1811", "limit": 0, "attributes": "S1811_C01_039EA,S1811_C01_039M,S1811_C01_039MA"}, "S0102_C01_042E": {"label": "Estimate!!Total!!VETERAN STATUS!!Civilian population 18 years and over!!Civilian veteran", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_042EA,S0102_C01_042M,S0102_C01_042MA"}, "S2602_C03_088E": {"label": "Estimate!!Adult correctional facilities!!OCCUPATION!!Civilian employed population 16 years and over!!Sales and office occupations", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C03_088EA,S2602_C03_088M,S2602_C03_088MA"}, "S2603_C06_079E": {"label": "Estimate!!College/university housing!!WORLD REGION OF BIRTH OF FOREIGN BORN!!Foreign-born population excluding population born at sea!!Latin America", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C06_079EA,S2603_C06_079M,S2603_C06_079MA"}, "S2401_C04_015E": {"label": "Estimate!!Female!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Healthcare practitioners and technical occupations:", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C04_015EA,S2401_C04_015M,S2401_C04_015MA"}, "S2702_C01_066E": {"label": "Estimate!!Total!!Civilian noninstitutionalized workers 16 years and over!!INDUSTRY!!Construction", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_066EA,S2702_C01_066M,S2702_C01_066MA"}, "S2701_C05_055E": {"label": "Estimate!!Percent Uninsured!!Civilian noninstitutionalized population!!HOUSEHOLD INCOME (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Total household population!!$75,000 to $99,999", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C05_055EA,S2701_C05_055M,S2701_C05_055MA"}, "S1001_C03_024E": {"label": "Estimate!!Grandchildren with no parent present!!With grandparent responsible!!Grandchildren under 18 years living with a grandparent householder in occupied housing units!!HOUSING TENURE!!In renter-occupied housing units", "concept": "Grandchildren Characteristics", "predicateType": "float", "group": "S1001", "limit": 0, "attributes": "S1001_C03_024EA,S1001_C03_024M,S1001_C03_024MA"}, "S1501_C03_061E": {"label": "Estimate!!Male!!MEDIAN EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 25 years and over with earnings!!High school graduate (includes equivalency)", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C03_061EA,S1501_C03_061M,S1501_C03_061MA"}, "S2201_C05_017E": {"label": "Estimate!!Households not receiving food stamps/SNAP!!Households!!No children under 18 years!!Other family:", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C05_017EA,S2201_C05_017M,S2201_C05_017MA"}, "S0502_C02_138E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Occupied housing units!!VEHICLES AVAILABLE!!1 or more", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_138EA,S0502_C02_138M,S0502_C02_138MA"}, "S1201_C02_029E": {"label": "Estimate!!Now married (except separated)!!LABOR FORCE PARTICIPATION!!Females 16 years and over", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C02_029EA,S1201_C02_029M,S1201_C02_029MA"}, "S0103PR_C01_055E": {"label": "Estimate!!Total!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Native", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_055EA,S0103PR_C01_055M,S0103PR_C01_055MA"}, "S2602_C03_089E": {"label": "Estimate!!Adult correctional facilities!!OCCUPATION!!Civilian employed population 16 years and over!!Natural resources, construction, extraction, and maintenance occupations", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C03_089EA,S2602_C03_089M,S2602_C03_089MA"}, "S0102_C01_041E": {"label": "Estimate!!Total!!VETERAN STATUS!!Civilian population 18 years and over", "concept": "Population 60 Years and Over in the United States", "predicateType": "int", "group": "S0102", "limit": 0, "attributes": "S0102_C01_041EA,S0102_C01_041M,S0102_C01_041MA"}, "S0504_C04_009E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen!!Entered before 2000", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_009EA,S0504_C04_009M,S0504_C04_009MA"}, "S2603_C06_078E": {"label": "Estimate!!College/university housing!!WORLD REGION OF BIRTH OF FOREIGN BORN!!Foreign-born population excluding population born at sea!!Asia", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C06_078EA,S2603_C06_078M,S2603_C06_078MA"}, "S2401_C04_016E": {"label": "Estimate!!Female!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Healthcare practitioners and technical occupations:!!Health diagnosing and treating practitioners and other technical occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C04_016EA,S2401_C04_016M,S2401_C04_016MA"}, "S2603_C06_077E": {"label": "Estimate!!College/university housing!!WORLD REGION OF BIRTH OF FOREIGN BORN!!Foreign-born population excluding population born at sea!!Europe", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C06_077EA,S2603_C06_077M,S2603_C06_077MA"}, "S1001_C03_025E": {"label": "Estimate!!Grandchildren with no parent present!!With grandparent responsible!!Grandchildren under 18 years living with a grandparent householder in occupied housing units!!UNITS IN STRUCTURE!!In 1-unit structures", "concept": "Grandchildren Characteristics", "predicateType": "float", "group": "S1001", "limit": 0, "attributes": "S1001_C03_025EA,S1001_C03_025M,S1001_C03_025MA"}, "S0601PR_C01_012E": {"label": "Estimate!!Total!!Total population!!SEX!!Female", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C01_012EA,S0601PR_C01_012M,S0601PR_C01_012MA"}, "S0702_C01_007E": {"label": "Estimate!!Total!!Population 1 year and over!!Movers between regions by region of residence 1 year ago!!South", "concept": "Movers Between Regions", "predicateType": "int", "group": "S0702", "limit": 0, "attributes": "S0702_C01_007EA,S0702_C01_007M,S0702_C01_007MA"}, "S2702_C01_063E": {"label": "Estimate!!Total!!Civilian noninstitutionalized workers 16 years and over!!CLASS OF WORKER!!Self-employed workers in own not incorporated business workers", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_063EA,S2702_C01_063M,S2702_C01_063MA"}, "S2701_C05_052E": {"label": "Estimate!!Percent Uninsured!!Civilian noninstitutionalized population!!HOUSEHOLD INCOME (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Total household population!!Under $25,000", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C05_052EA,S2701_C05_052M,S2701_C05_052MA"}, "S0502_C02_139E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Occupied housing units!!SELECTED CHARACTERISTICS!!No telephone service available", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_139EA,S0502_C02_139M,S0502_C02_139MA"}, "S2201_C05_016E": {"label": "Estimate!!Households not receiving food stamps/SNAP!!Households!!No children under 18 years!!Married-couple family", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C05_016EA,S2201_C05_016M,S2201_C05_016MA"}, "S1501_C03_062E": {"label": "Estimate!!Male!!MEDIAN EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 25 years and over with earnings!!Some college or associate's degree", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C03_062EA,S1501_C03_062M,S1501_C03_062MA"}, "S1201_C02_026E": {"label": "Estimate!!Now married (except separated)!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C02_026EA,S1201_C02_026M,S1201_C02_026MA"}, "S0102_C01_044E": {"label": "Estimate!!Total!!DISABILITY STATUS!!Civilian noninstitutionalized population!!With any disability", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_044EA,S0102_C01_044M,S0102_C01_044MA"}, "S0103PR_C01_052E": {"label": "Estimate!!Total!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different house in Puerto Rico or the United States!!In the United States", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_052EA,S0103PR_C01_052M,S0103PR_C01_052MA"}, "S2603_C06_076E": {"label": "Estimate!!College/university housing!!WORLD REGION OF BIRTH OF FOREIGN BORN!!Foreign-born population excluding population born at sea", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C06_076EA,S2603_C06_076M,S2603_C06_076MA"}, "S0702_C01_008E": {"label": "Estimate!!Total!!Population 1 year and over!!Movers between regions by region of residence 1 year ago!!West", "concept": "Movers Between Regions", "predicateType": "int", "group": "S0702", "limit": 0, "attributes": "S0702_C01_008EA,S0702_C01_008M,S0702_C01_008MA"}, "S2401_C04_017E": {"label": "Estimate!!Female!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Healthcare practitioners and technical occupations:!!Health technologists and technicians", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C04_017EA,S2401_C04_017M,S2401_C04_017MA"}, "S1001_C03_026E": {"label": "Estimate!!Grandchildren with no parent present!!With grandparent responsible!!Grandchildren under 18 years living with a grandparent householder in occupied housing units!!UNITS IN STRUCTURE!!In 2-or-more-unit structures", "concept": "Grandchildren Characteristics", "predicateType": "float", "group": "S1001", "limit": 0, "attributes": "S1001_C03_026EA,S1001_C03_026M,S1001_C03_026MA"}, "S2702_C01_064E": {"label": "Estimate!!Total!!Civilian noninstitutionalized workers 16 years and over!!CLASS OF WORKER!!Unpaid family workers", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_064EA,S2702_C01_064M,S2702_C01_064MA"}, "S0601PR_C01_011E": {"label": "Estimate!!Total!!Total population!!SEX!!Male", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C01_011EA,S0601PR_C01_011M,S0601PR_C01_011MA"}, "S2701_C05_053E": {"label": "Estimate!!Percent Uninsured!!Civilian noninstitutionalized population!!HOUSEHOLD INCOME (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Total household population!!$25,000 to $49,999", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C05_053EA,S2701_C05_053M,S2701_C05_053MA"}, "S2201_C05_015E": {"label": "Estimate!!Households not receiving food stamps/SNAP!!Households!!No children under 18 years", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C05_015EA,S2201_C05_015M,S2201_C05_015MA"}, "S1501_C03_063E": {"label": "Estimate!!Male!!MEDIAN EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 25 years and over with earnings!!Bachelor's degree", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C03_063EA,S1501_C03_063M,S1501_C03_063MA"}, "S1201_C02_027E": {"label": "Estimate!!Now married (except separated)!!LABOR FORCE PARTICIPATION!!Males 16 years and over", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C02_027EA,S1201_C02_027M,S1201_C02_027MA"}, "S0102_C01_043E": {"label": "Estimate!!Total!!DISABILITY STATUS!!Civilian noninstitutionalized population", "concept": "Population 60 Years and Over in the United States", "predicateType": "int", "group": "S0102", "limit": 0, "attributes": "S0102_C01_043EA,S0102_C01_043M,S0102_C01_043MA"}, "S0103PR_C01_053E": {"label": "Estimate!!Total!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Elsewhere", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_053EA,S0103PR_C01_053M,S0103PR_C01_053MA"}, "S0901_C04_027E": {"label": "Estimate!!In female householder, no spouse present, family household!!SCHOOL ENROLLMENT!!Children 3 to 17 years in households!!Enrolled in school!!Private", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C04_027EA,S0901_C04_027M,S0901_C04_027MA"}, "S0504_C04_028E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_028EA,S0504_C04_028M,S0504_C04_028MA"}, "S0103PR_C01_010E": {"label": "Estimate!!Total!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_010EA,S0103PR_C01_010M,S0103PR_C01_010MA"}, "S1811_C01_019E": {"label": "Estimate!!Total Civilian Noninstitutionalized Population!!Employed Population Age 16 and Over!!INDUSTRY!!Agriculture, forestry, fishing and hunting, and mining", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C01_019EA,S1811_C01_019M,S1811_C01_019MA"}, "S0601PR_C01_026E": {"label": "Estimate!!Total!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Speak language other than English!!Speak English less than \"very well\"", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C01_026EA,S0601PR_C01_026M,S0601PR_C01_026MA"}, "S0601PR_C01_025E": {"label": "Estimate!!Total!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Speak language other than English!!Speak English \"very well\"", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C01_025EA,S0601PR_C01_025M,S0601PR_C01_025MA"}, "S0901_C04_028E": {"label": "Estimate!!In female householder, no spouse present, family household!!SCHOOL ENROLLMENT!!Children 3 to 17 years in households!!Not enrolled in school", "concept": "Children Characteristics", "predicateType": "int", "group": "S0901", "limit": 0, "attributes": "S0901_C04_028EA,S0901_C04_028M,S0901_C04_028MA"}, "S2201_C05_009E": {"label": "Estimate!!Households not receiving food stamps/SNAP!!Households!!With children under 18 years", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C05_009EA,S2201_C05_009M,S2201_C05_009MA"}, "S0504_C04_029E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_029EA,S0504_C04_029M,S0504_C04_029MA"}, "S0103PR_C01_011E": {"label": "Estimate!!Total!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_011EA,S0103PR_C01_011M,S0103PR_C01_011MA"}, "S2702_C01_079E": {"label": "Estimate!!Total!!Civilian noninstitutionalized workers 16 years and over!!OCCUPATION!!Service occupations", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_079EA,S2702_C01_079M,S2702_C01_079MA"}, "S0901_C04_029E": {"label": "Estimate!!In female householder, no spouse present, family household!!Special Subject!!Median income (dollars)", "concept": "Children Characteristics", "predicateType": "int", "group": "S0901", "limit": 0, "attributes": "S0901_C04_029EA,S0901_C04_029M,S0901_C04_029MA"}, "S2201_C05_008E": {"label": "Estimate!!Households not receiving food stamps/SNAP!!Households!!Nonfamily households", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C05_008EA,S2201_C05_008M,S2201_C05_008MA"}, "S0601PR_C01_028E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C01_028EA,S0601PR_C01_028M,S0601PR_C01_028MA"}, "S2201_C05_007E": {"label": "Estimate!!Households not receiving food stamps/SNAP!!Households!!Other family:!!Female householder, no spouse present", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C05_007EA,S2201_C05_007M,S2201_C05_007MA"}, "S0601PR_C01_027E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "int", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C01_027EA,S0601PR_C01_027M,S0601PR_C01_027MA"}, "S0102_C01_081E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_081EA,S0102_C01_081M,S0102_C01_081MA"}, "S0901_C04_023E": {"label": "Estimate!!In female householder, no spouse present, family household!!DISABILITY STATUS!!Civilian children under 18 years in households!!With any disability", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C04_023EA,S0901_C04_023M,S0901_C04_023MA"}, "S0103PR_C01_014E": {"label": "Estimate!!Total!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_014EA,S0103PR_C01_014M,S0103PR_C01_014MA"}, "S0504_C04_024E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_024EA,S0504_C04_024M,S0504_C04_024MA"}, "S0102_C01_082E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income!!Mean cash public assistance income (dollars)", "concept": "Population 60 Years and Over in the United States", "predicateType": "int", "group": "S0102", "limit": 0, "attributes": "S0102_C01_082EA,S0102_C01_082M,S0102_C01_082MA"}, "S0102_C01_080E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income!!Mean Supplemental Security Income (dollars)", "concept": "Population 60 Years and Over in the United States", "predicateType": "int", "group": "S0102", "limit": 0, "attributes": "S0102_C01_080EA,S0102_C01_080M,S0102_C01_080MA"}, "S0901_C04_024E": {"label": "Estimate!!In female householder, no spouse present, family household!!SCHOOL ENROLLMENT!!Children 3 to 17 years in households", "concept": "Children Characteristics", "predicateType": "int", "group": "S0901", "limit": 0, "attributes": "S0901_C04_024EA,S0901_C04_024M,S0901_C04_024MA"}, "S0103PR_C01_015E": {"label": "Estimate!!Total!!RELATIONSHIP!!Population in households", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_015EA,S0103PR_C01_015M,S0103PR_C01_015MA"}, "S0504_C04_025E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_025EA,S0504_C04_025M,S0504_C04_025MA"}, "S0601PR_C01_029E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C01_029EA,S0601PR_C01_029M,S0601PR_C01_029MA"}, "S0901_C04_025E": {"label": "Estimate!!In female householder, no spouse present, family household!!SCHOOL ENROLLMENT!!Children 3 to 17 years in households!!Enrolled in school", "concept": "Children Characteristics", "predicateType": "int", "group": "S0901", "limit": 0, "attributes": "S0901_C04_025EA,S0901_C04_025M,S0901_C04_025MA"}, "S0504_C04_026E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_026EA,S0504_C04_026M,S0504_C04_026MA"}, "S0103PR_C01_012E": {"label": "Estimate!!Total!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_012EA,S0103PR_C01_012M,S0103PR_C01_012MA"}, "S0102_C01_084E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income!!Mean retirement income (dollars)", "concept": "Population 60 Years and Over in the United States", "predicateType": "int", "group": "S0102", "limit": 0, "attributes": "S0102_C01_084EA,S0102_C01_084M,S0102_C01_084MA"}, "S0901_C04_026E": {"label": "Estimate!!In female householder, no spouse present, family household!!SCHOOL ENROLLMENT!!Children 3 to 17 years in households!!Enrolled in school!!Public", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C04_026EA,S0901_C04_026M,S0901_C04_026MA"}, "S0504_C04_027E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_027EA,S0504_C04_027M,S0504_C04_027MA"}, "S0103PR_C01_013E": {"label": "Estimate!!Total!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_013EA,S0103PR_C01_013M,S0103PR_C01_013MA"}, "S0102_C01_083E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_083EA,S0102_C01_083M,S0102_C01_083MA"}, "S0504_C04_020E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Foreign-born population!!SEX AND AGE!!85 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_020EA,S0504_C04_020M,S0504_C04_020MA"}, "S0103PR_C01_018E": {"label": "Estimate!!Total!!RELATIONSHIP!!Population in households!!Other relatives", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_018EA,S0103PR_C01_018M,S0103PR_C01_018MA"}, "S0701PR_C02_029E": {"label": "Estimate!!Moved; within same municipio!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C02_029EA,S0701PR_C02_029M,S0701PR_C02_029MA"}, "S0504_C04_021E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Foreign-born population!!SEX AND AGE!!Median age (years)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_021EA,S0504_C04_021M,S0504_C04_021MA"}, "S0103PR_C01_019E": {"label": "Estimate!!Total!!RELATIONSHIP!!Population in households!!Nonrelatives", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_019EA,S0103PR_C01_019M,S0103PR_C01_019MA"}, "S0901_C04_020E": {"label": "Estimate!!In female householder, no spouse present, family household!!Children under 18 years in households!!NATIVITY!!Foreign born", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C04_020EA,S0901_C04_020M,S0901_C04_020MA"}, "S0504_C04_022E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_022EA,S0504_C04_022M,S0504_C04_022MA"}, "S0701PR_C02_027E": {"label": "Estimate!!Moved; within same municipio!!Population 1 year and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born!!Not a U.S. citizen", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C02_027EA,S0701PR_C02_027M,S0701PR_C02_027MA"}, "S0103PR_C01_016E": {"label": "Estimate!!Total!!RELATIONSHIP!!Population in households!!Householder or spouse", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_016EA,S0103PR_C01_016M,S0103PR_C01_016MA"}, "S0901_C04_021E": {"label": "Estimate!!In female householder, no spouse present, family household!!Children under 18 years in households!!PRESENCE OF OTHER ADULTS!!Unmarried partner of householder present", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C04_021EA,S0901_C04_021M,S0901_C04_021MA"}, "S0701PR_C02_028E": {"label": "Estimate!!Moved; within same municipio!!MARITAL STATUS!!Population 15 years and over", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C02_028EA,S0701PR_C02_028M,S0701PR_C02_028MA"}, "S0901_C04_022E": {"label": "Estimate!!In female householder, no spouse present, family household!!DISABILITY STATUS!!Civilian children under 18 years in households", "concept": "Children Characteristics", "predicateType": "int", "group": "S0901", "limit": 0, "attributes": "S0901_C04_022EA,S0901_C04_022M,S0901_C04_022MA"}, "S0103PR_C01_017E": {"label": "Estimate!!Total!!RELATIONSHIP!!Population in households!!Parent", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_017EA,S0103PR_C01_017M,S0103PR_C01_017MA"}, "S0504_C04_023E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_023EA,S0504_C04_023M,S0504_C04_023MA"}, "S0502PR_C01_010E": {"label": "Estimate!!Total!!Foreign-born population!!WORLD REGION OF BIRTH OF FOREIGN-BORN!!Northern America", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_010EA,S0502PR_C01_010M,S0502PR_C01_010MA"}, "S0701PR_C02_025E": {"label": "Estimate!!Moved; within same municipio!!Population 1 year and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C02_025EA,S0701PR_C02_025M,S0701PR_C02_025MA"}, "S0502PR_C01_011E": {"label": "Estimate!!Total!!Foreign-born population!!SEX AND AGE!!Male", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_011EA,S0502PR_C01_011M,S0502PR_C01_011MA"}, "S0701PR_C02_026E": {"label": "Estimate!!Moved; within same municipio!!Population 1 year and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born!!Naturalized U.S. citizen", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C02_026EA,S0701PR_C02_026M,S0701PR_C02_026MA"}, "S0502PR_C01_012E": {"label": "Estimate!!Total!!Foreign-born population!!SEX AND AGE!!Female", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_012EA,S0502PR_C01_012M,S0502PR_C01_012MA"}, "S0701PR_C02_023E": {"label": "Estimate!!Moved; within same municipio!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C02_023EA,S0701PR_C02_023M,S0701PR_C02_023MA"}, "S0502PR_C01_013E": {"label": "Estimate!!Total!!Foreign-born population!!SEX AND AGE!!Under 5 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_013EA,S0502PR_C01_013M,S0502PR_C01_013MA"}, "S0701PR_C02_024E": {"label": "Estimate!!Moved; within same municipio!!Population 1 year and over!!NATIVITY AND CITIZENSHIP STATUS!!Native", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C02_024EA,S0701PR_C02_024M,S0701PR_C02_024MA"}, "S0502PR_C01_014E": {"label": "Estimate!!Total!!Foreign-born population!!SEX AND AGE!!5 to 17 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_014EA,S0502PR_C01_014M,S0502PR_C01_014MA"}, "S1001_C03_015E": {"label": "Estimate!!Grandchildren with no parent present!!With grandparent responsible!!Grandchildren under 18 years living with a grandparent householder!!NATIVITY!!Native", "concept": "Grandchildren Characteristics", "predicateType": "float", "group": "S1001", "limit": 0, "attributes": "S1001_C03_015EA,S1001_C03_015M,S1001_C03_015MA"}, "S0502PR_C01_015E": {"label": "Estimate!!Total!!Foreign-born population!!SEX AND AGE!!18 to 24 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_015EA,S0502PR_C01_015M,S0502PR_C01_015MA"}, "S1902_C03_027E": {"label": "Estimate!!Mean income (dollars)!!PER CAPITA INCOME BY RACE AND HISPANIC OR LATINO ORIGIN!!Total population!!Hispanic or Latino origin (of any race)", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1902", "limit": 0, "attributes": "S1902_C03_027EA,S1902_C03_027M,S1902_C03_027MA"}, "S2601C_C01_014E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!Under 18 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_014EA,S2601C_C01_014M,S2601C_C01_014MA"}, "S0701PR_C02_033E": {"label": "Estimate!!Moved; within same municipio!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C02_033EA,S0701PR_C02_033M,S0701PR_C02_033MA"}, "S1001_C03_016E": {"label": "Estimate!!Grandchildren with no parent present!!With grandparent responsible!!Grandchildren under 18 years living with a grandparent householder!!NATIVITY!!Foreign born", "concept": "Grandchildren Characteristics", "predicateType": "float", "group": "S1001", "limit": 0, "attributes": "S1001_C03_016EA,S1001_C03_016M,S1001_C03_016MA"}, "S0502PR_C01_016E": {"label": "Estimate!!Total!!Foreign-born population!!SEX AND AGE!!25 to 44 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_016EA,S0502PR_C01_016M,S0502PR_C01_016MA"}, "S2601C_C01_016E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!Under 18 years!!Female", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_016EA,S2601C_C01_016M,S2601C_C01_016MA"}, "S1902_C03_028E": {"label": "Estimate!!Mean income (dollars)!!PER CAPITA INCOME BY RACE AND HISPANIC OR LATINO ORIGIN!!Total population!!White alone, not Hispanic or Latino", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1902", "limit": 0, "attributes": "S1902_C03_028EA,S1902_C03_028M,S1902_C03_028MA"}, "S2601C_C01_015E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!Under 18 years!!Male", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_015EA,S2601C_C01_015M,S2601C_C01_015MA"}, "S0701PR_C02_034E": {"label": "Estimate!!Moved; within same municipio!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than high school graduate", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C02_034EA,S0701PR_C02_034M,S0701PR_C02_034MA"}, "S0502PR_C01_017E": {"label": "Estimate!!Total!!Foreign-born population!!SEX AND AGE!!45 to 54 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_017EA,S0502PR_C01_017M,S0502PR_C01_017MA"}, "S1001_C03_017E": {"label": "Estimate!!Grandchildren with no parent present!!With grandparent responsible!!Special Subject!!Median income (dollars)", "concept": "Grandchildren Characteristics", "predicateType": "int", "group": "S1001", "limit": 0, "attributes": "S1001_C03_017EA,S1001_C03_017M,S1001_C03_017MA"}, "S2601C_C01_012E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!75 to 84 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_012EA,S2601C_C01_012M,S2601C_C01_012MA"}, "S0701PR_C02_031E": {"label": "Estimate!!Moved; within same municipio!!MARITAL STATUS!!Population 15 years and over!!Divorced or separated", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C02_031EA,S0701PR_C02_031M,S0701PR_C02_031MA"}, "S1001_C03_018E": {"label": "Estimate!!Grandchildren with no parent present!!With grandparent responsible!!Grandchildren under 18 years living with a grandparent householder", "concept": "Grandchildren Characteristics", "predicateType": "int", "group": "S1001", "limit": 0, "attributes": "S1001_C03_018EA,S1001_C03_018M,S1001_C03_018MA"}, "S0502PR_C01_018E": {"label": "Estimate!!Total!!Foreign-born population!!SEX AND AGE!!55 to 64 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_018EA,S0502PR_C01_018M,S0502PR_C01_018MA"}, "S2601C_C01_013E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!85 years and over", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_013EA,S2601C_C01_013M,S2601C_C01_013MA"}, "S0701PR_C02_032E": {"label": "Estimate!!Moved; within same municipio!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C02_032EA,S0701PR_C02_032M,S0701PR_C02_032MA"}, "S1001_C03_019E": {"label": "Estimate!!Grandchildren with no parent present!!With grandparent responsible!!Grandchildren under 18 years living with a grandparent householder!!PUBLIC ASSISTANCE IN THE PAST 12 MONTHS!!Grandchildren living in households with Supplemental Security Income (SSI), cash public assistance income, or Food Stamp/SNAP benefits", "concept": "Grandchildren Characteristics", "predicateType": "float", "group": "S1001", "limit": 0, "attributes": "S1001_C03_019EA,S1001_C03_019M,S1001_C03_019MA"}, "S0502PR_C01_019E": {"label": "Estimate!!Total!!Foreign-born population!!SEX AND AGE!!65 to 74 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_019EA,S0502PR_C01_019M,S0502PR_C01_019MA"}, "S1902_C03_023E": {"label": "Estimate!!Mean income (dollars)!!PER CAPITA INCOME BY RACE AND HISPANIC OR LATINO ORIGIN!!Total population!!One race--!!Asian", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1902", "limit": 0, "attributes": "S1902_C03_023EA,S1902_C03_023M,S1902_C03_023MA"}, "S2601C_C01_010E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!55 to 64 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_010EA,S2601C_C01_010M,S2601C_C01_010MA"}, "S1811_C01_020E": {"label": "Estimate!!Total Civilian Noninstitutionalized Population!!Employed Population Age 16 and Over!!INDUSTRY!!Construction", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C01_020EA,S1811_C01_020M,S1811_C01_020MA"}, "S2702_C01_070E": {"label": "Estimate!!Total!!Civilian noninstitutionalized workers 16 years and over!!INDUSTRY!!Transportation and warehousing, and utilities", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_070EA,S2702_C01_070M,S2702_C01_070MA"}, "S0701PR_C02_030E": {"label": "Estimate!!Moved; within same municipio!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C02_030EA,S0701PR_C02_030M,S0701PR_C02_030MA"}, "S1902_C03_024E": {"label": "Estimate!!Mean income (dollars)!!PER CAPITA INCOME BY RACE AND HISPANIC OR LATINO ORIGIN!!Total population!!One race--!!Native Hawaiian and Other Pacific Islander", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1902", "limit": 0, "attributes": "S1902_C03_024EA,S1902_C03_024M,S1902_C03_024MA"}, "S2601C_C01_011E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!65 to 74 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_011EA,S2601C_C01_011M,S2601C_C01_011MA"}, "S1811_C01_021E": {"label": "Estimate!!Total Civilian Noninstitutionalized Population!!Employed Population Age 16 and Over!!INDUSTRY!!Manufacturing", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C01_021EA,S1811_C01_021M,S1811_C01_021MA"}, "S2602_C03_070E": {"label": "Estimate!!Adult correctional facilities!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Not a U.S. citizen", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C03_070EA,S2602_C03_070M,S2602_C03_070MA"}, "S1902_C03_025E": {"label": "Estimate!!Mean income (dollars)!!PER CAPITA INCOME BY RACE AND HISPANIC OR LATINO ORIGIN!!Total population!!One race--!!Some other race", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1902", "limit": 0, "attributes": "S1902_C03_025EA,S1902_C03_025M,S1902_C03_025MA"}, "S1811_C01_022E": {"label": "Estimate!!Total Civilian Noninstitutionalized Population!!Employed Population Age 16 and Over!!INDUSTRY!!Wholesale trade", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C01_022EA,S1811_C01_022M,S1811_C01_022MA"}, "S2602_C03_071E": {"label": "Estimate!!Adult correctional facilities!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Not a U.S. citizen!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C03_071EA,S2602_C03_071M,S2602_C03_071MA"}, "S1902_C03_026E": {"label": "Estimate!!Mean income (dollars)!!PER CAPITA INCOME BY RACE AND HISPANIC OR LATINO ORIGIN!!Total population!!Two or more races", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1902", "limit": 0, "attributes": "S1902_C03_026EA,S1902_C03_026M,S1902_C03_026MA"}, "S2702_C01_073E": {"label": "Estimate!!Total!!Civilian noninstitutionalized workers 16 years and over!!INDUSTRY!!Professional, scientific, and management, and administrative and waste management services", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_073EA,S2702_C01_073M,S2702_C01_073MA"}, "S1811_C01_023E": {"label": "Estimate!!Total Civilian Noninstitutionalized Population!!Employed Population Age 16 and Over!!INDUSTRY!!Retail trade", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C01_023EA,S1811_C01_023M,S1811_C01_023MA"}, "S2602_C03_072E": {"label": "Estimate!!Adult correctional facilities!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Not a U.S. citizen!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C03_072EA,S2602_C03_072M,S2602_C03_072MA"}, "S2201_C05_002E": {"label": "Estimate!!Households not receiving food stamps/SNAP!!Households!!With one or more people in the household 60 years and over", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C05_002EA,S2201_C05_002M,S2201_C05_002MA"}, "S0102_C01_074E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households", "concept": "Population 60 Years and Over in the United States", "predicateType": "int", "group": "S0102", "limit": 0, "attributes": "S0102_C01_074EA,S0102_C01_074M,S0102_C01_074MA"}, "S1811_C01_024E": {"label": "Estimate!!Total Civilian Noninstitutionalized Population!!Employed Population Age 16 and Over!!INDUSTRY!!Transportation and warehousing, and utilities", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C01_024EA,S1811_C01_024M,S1811_C01_024MA"}, "S2702_C01_074E": {"label": "Estimate!!Total!!Civilian noninstitutionalized workers 16 years and over!!INDUSTRY!!Educational services, and health care and social assistance", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_074EA,S2702_C01_074M,S2702_C01_074MA"}, "S2602_C03_073E": {"label": "Estimate!!Adult correctional facilities!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C03_073EA,S2602_C03_073M,S2602_C03_073MA"}, "S2201_C05_001E": {"label": "Estimate!!Households not receiving food stamps/SNAP!!Households", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C05_001EA,S2201_C05_001M,S2201_C05_001MA"}, "S0102_C01_073E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Population 16 years and over!!Not in labor force", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_073EA,S0102_C01_073M,S0102_C01_073MA"}, "S0601PR_C01_020E": {"label": "Estimate!!Total!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C01_020EA,S0601PR_C01_020M,S0601PR_C01_020MA"}, "S1811_C01_025E": {"label": "Estimate!!Total Civilian Noninstitutionalized Population!!Employed Population Age 16 and Over!!INDUSTRY!!Information", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C01_025EA,S1811_C01_025M,S1811_C01_025MA"}, "S2702_C01_071E": {"label": "Estimate!!Total!!Civilian noninstitutionalized workers 16 years and over!!INDUSTRY!!Information", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_071EA,S2702_C01_071M,S2702_C01_071MA"}, "S0102_C01_076E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings!!Mean earnings (dollars)", "concept": "Population 60 Years and Over in the United States", "predicateType": "int", "group": "S0102", "limit": 0, "attributes": "S0102_C01_076EA,S0102_C01_076M,S0102_C01_076MA"}, "S2602_C03_074E": {"label": "Estimate!!Adult correctional facilities!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!English only", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C03_074EA,S2602_C03_074M,S2602_C03_074MA"}, "S2401_C04_001E": {"label": "Estimate!!Female!!Civilian employed population 16 years and over", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C04_001EA,S2401_C04_001M,S2401_C04_001MA"}, "S1001_C03_010E": {"label": "Estimate!!Grandchildren with no parent present!!With grandparent responsible!!Grandchildren under 18 years living with a grandparent householder!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Grandchildren Characteristics", "predicateType": "float", "group": "S1001", "limit": 0, "attributes": "S1001_C03_010EA,S1001_C03_010M,S1001_C03_010MA"}, "S1811_C01_026E": {"label": "Estimate!!Total Civilian Noninstitutionalized Population!!Employed Population Age 16 and Over!!INDUSTRY!!Finance and insurance, and real estate and rental and leasing", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C01_026EA,S1811_C01_026M,S1811_C01_026MA"}, "S2702_C01_072E": {"label": "Estimate!!Total!!Civilian noninstitutionalized workers 16 years and over!!INDUSTRY!!Finance and insurance, and real estate and rental and leasing", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_072EA,S2702_C01_072M,S2702_C01_072MA"}, "S0102_C01_075E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_075EA,S0102_C01_075M,S0102_C01_075MA"}, "S2602_C03_075E": {"label": "Estimate!!Adult correctional facilities!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C03_075EA,S2602_C03_075M,S2602_C03_075MA"}, "S2702_C01_077E": {"label": "Estimate!!Total!!Civilian noninstitutionalized workers 16 years and over!!INDUSTRY!!Public administration", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_077EA,S2702_C01_077M,S2702_C01_077MA"}, "S2401_C04_002E": {"label": "Estimate!!Female!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C04_002EA,S2401_C04_002M,S2401_C04_002MA"}, "S0601PR_C01_022E": {"label": "Estimate!!Total!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C01_022EA,S0601PR_C01_022M,S0601PR_C01_022MA"}, "S1001_C03_011E": {"label": "Estimate!!Grandchildren with no parent present!!With grandparent responsible!!Grandchildren under 18 years living with a grandparent householder!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Grandchildren Characteristics", "predicateType": "float", "group": "S1001", "limit": 0, "attributes": "S1001_C03_011EA,S1001_C03_011M,S1001_C03_011MA"}, "S1811_C01_027E": {"label": "Estimate!!Total Civilian Noninstitutionalized Population!!Employed Population Age 16 and Over!!INDUSTRY!!Professional, scientific, and management, and administrative and waste management services", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C01_027EA,S1811_C01_027M,S1811_C01_027MA"}, "S2501_C02_003E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!HOUSEHOLD SIZE!!2-person household", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C02_003EA,S2501_C02_003M,S2501_C02_003MA"}, "S2601C_C01_019E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!65 years and over!!Female", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_019EA,S2601C_C01_019M,S2601C_C01_019MA"}, "S2201_C05_006E": {"label": "Estimate!!Households not receiving food stamps/SNAP!!Households!!Other family:!!Male householder, no spouse present", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C05_006EA,S2201_C05_006M,S2201_C05_006MA"}, "S0102_C01_078E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income!!Mean Social Security income (dollars)", "concept": "Population 60 Years and Over in the United States", "predicateType": "int", "group": "S0102", "limit": 0, "attributes": "S0102_C01_078EA,S0102_C01_078M,S0102_C01_078MA"}, "S2602_C03_076E": {"label": "Estimate!!Adult correctional facilities!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English!!Speak English less than \"very well\"", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C03_076EA,S2602_C03_076M,S2602_C03_076MA"}, "S0601PR_C01_021E": {"label": "Estimate!!Total!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C01_021EA,S0601PR_C01_021M,S0601PR_C01_021MA"}, "S2401_C04_003E": {"label": "Estimate!!Female!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Management, business, and financial occupations:", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C04_003EA,S2401_C04_003M,S2401_C04_003MA"}, "S2702_C01_078E": {"label": "Estimate!!Total!!Civilian noninstitutionalized workers 16 years and over!!OCCUPATION!!Management, business, science, and arts occupations", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_078EA,S2702_C01_078M,S2702_C01_078MA"}, "S2501_C02_004E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!HOUSEHOLD SIZE!!3-person household", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C02_004EA,S2501_C02_004M,S2501_C02_004MA"}, "S1001_C03_012E": {"label": "Estimate!!Grandchildren with no parent present!!With grandparent responsible!!Grandchildren under 18 years living with a grandparent householder!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Grandchildren Characteristics", "predicateType": "float", "group": "S1001", "limit": 0, "attributes": "S1001_C03_012EA,S1001_C03_012M,S1001_C03_012MA"}, "S2201_C05_005E": {"label": "Estimate!!Households not receiving food stamps/SNAP!!Households!!Other family:", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C05_005EA,S2201_C05_005M,S2201_C05_005MA"}, "S1811_C01_028E": {"label": "Estimate!!Total Civilian Noninstitutionalized Population!!Employed Population Age 16 and Over!!INDUSTRY!!Educational services, and health care and social assistance", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C01_028EA,S1811_C01_028M,S1811_C01_028MA"}, "S0102_C01_077E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_077EA,S0102_C01_077M,S0102_C01_077MA"}, "S2602_C03_077E": {"label": "Estimate!!Adult correctional facilities!!EMPLOYMENT STATUS!!Population 16 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C03_077EA,S2602_C03_077M,S2602_C03_077MA"}, "S2401_C04_004E": {"label": "Estimate!!Female!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Management, business, and financial occupations:!!Management occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C04_004EA,S2401_C04_004M,S2401_C04_004MA"}, "S0601PR_C01_024E": {"label": "Estimate!!Total!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Speak language other than English", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C01_024EA,S0601PR_C01_024M,S0601PR_C01_024MA"}, "S2702_C01_075E": {"label": "Estimate!!Total!!Civilian noninstitutionalized workers 16 years and over!!INDUSTRY!!Arts, entertainment, and recreation, and accommodation and food services", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_075EA,S2702_C01_075M,S2702_C01_075MA"}, "S1001_C03_013E": {"label": "Estimate!!Grandchildren with no parent present!!With grandparent responsible!!Grandchildren under 18 years living with a grandparent householder!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Grandchildren Characteristics", "predicateType": "float", "group": "S1001", "limit": 0, "attributes": "S1001_C03_013EA,S1001_C03_013M,S1001_C03_013MA"}, "S2601C_C01_017E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!65 years and over", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_017EA,S2601C_C01_017M,S2601C_C01_017MA"}, "S2501_C02_001E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C02_001EA,S2501_C02_001M,S2501_C02_001MA"}, "S2201_C05_004E": {"label": "Estimate!!Households not receiving food stamps/SNAP!!Households!!Married-couple family", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C05_004EA,S2201_C05_004M,S2201_C05_004MA"}, "S1811_C01_029E": {"label": "Estimate!!Total Civilian Noninstitutionalized Population!!Employed Population Age 16 and Over!!INDUSTRY!!Arts, entertainment, and recreation, and accommodation and food services", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C01_029EA,S1811_C01_029M,S1811_C01_029MA"}, "S2602_C03_078E": {"label": "Estimate!!Adult correctional facilities!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C03_078EA,S2602_C03_078M,S2602_C03_078MA"}, "S2401_C04_005E": {"label": "Estimate!!Female!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Management, business, and financial occupations:!!Business and financial operations occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C04_005EA,S2401_C04_005M,S2401_C04_005MA"}, "S1001_C03_014E": {"label": "Estimate!!Grandchildren with no parent present!!With grandparent responsible!!Grandchildren under 18 years living with a grandparent householder!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Grandchildren Characteristics", "predicateType": "float", "group": "S1001", "limit": 0, "attributes": "S1001_C03_014EA,S1001_C03_014M,S1001_C03_014MA"}, "S2702_C01_076E": {"label": "Estimate!!Total!!Civilian noninstitutionalized workers 16 years and over!!INDUSTRY!!Other services (except public administration)", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_076EA,S2702_C01_076M,S2702_C01_076MA"}, "S0601PR_C01_023E": {"label": "Estimate!!Total!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "int", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C01_023EA,S0601PR_C01_023M,S0601PR_C01_023MA"}, "S2501_C02_002E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!HOUSEHOLD SIZE!!1-person household", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C02_002EA,S2501_C02_002M,S2501_C02_002MA"}, "S2601C_C01_018E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!65 years and over!!Male", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_018EA,S2601C_C01_018M,S2601C_C01_018MA"}, "S0102_C01_079E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_079EA,S0102_C01_079M,S0102_C01_079MA"}, "S2201_C05_003E": {"label": "Estimate!!Households not receiving food stamps/SNAP!!Households!!No people in the household 60 years and over", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C05_003EA,S2201_C05_003M,S2201_C05_003MA"}, "S2602_C03_079E": {"label": "Estimate!!Adult correctional facilities!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C03_079EA,S2602_C03_079M,S2602_C03_079MA"}, "S0901_C04_015E": {"label": "Estimate!!In female householder, no spouse present, family household!!Children under 18 years in households!!RELATIONSHIP TO HOUSEHOLDER!!Own child (biological, step or adopted)", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C04_015EA,S0901_C04_015M,S0901_C04_015MA"}, "S2501_C02_007E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!OCCUPANTS PER ROOM!!1.01 to 1.50 occupants per room", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C02_007EA,S2501_C02_007M,S2501_C02_007MA"}, "S1811_C01_007E": {"label": "Estimate!!Total Civilian Noninstitutionalized Population!!Employed Population Age 16 and Over!!CLASS OF WORKER!!Self-employed in own incorporated business workers", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C01_007EA,S1811_C01_007M,S1811_C01_007MA"}, "S0103PR_C01_022E": {"label": "Estimate!!Total!!HOUSEHOLDS BY TYPE!!Households!!Family households", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_022EA,S0103PR_C01_022M,S0103PR_C01_022MA"}, "S2602_C03_068E": {"label": "Estimate!!Adult correctional facilities!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Naturalized U.S. citizen!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C03_068EA,S2602_C03_068M,S2602_C03_068MA"}, "S0601PR_C01_038E": {"label": "Estimate!!Total!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "int", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C01_038EA,S0601PR_C01_038M,S0601PR_C01_038MA"}, "S0901_C04_016E": {"label": "Estimate!!In female householder, no spouse present, family household!!Children under 18 years in households!!RELATIONSHIP TO HOUSEHOLDER!!Grandchild", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C04_016EA,S0901_C04_016M,S0901_C04_016MA"}, "S2501_C02_008E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!OCCUPANTS PER ROOM!!1.51 or more occupants per room", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C02_008EA,S2501_C02_008M,S2501_C02_008MA"}, "S1811_C01_008E": {"label": "Estimate!!Total Civilian Noninstitutionalized Population!!Employed Population Age 16 and Over!!CLASS OF WORKER!!Private not-for-profit wage and salary workers", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C01_008EA,S1811_C01_008M,S1811_C01_008MA"}, "S0103PR_C01_023E": {"label": "Estimate!!Total!!HOUSEHOLDS BY TYPE!!Households!!Family households!!Married-couple family", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_023EA,S0103PR_C01_023M,S0103PR_C01_023MA"}, "S2602_C03_069E": {"label": "Estimate!!Adult correctional facilities!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Naturalized U.S. citizen!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C03_069EA,S2602_C03_069M,S2602_C03_069MA"}, "S0601PR_C01_037E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Graduate or professional degree", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C01_037EA,S0601PR_C01_037M,S0601PR_C01_037MA"}, "S0901_C04_017E": {"label": "Estimate!!In female householder, no spouse present, family household!!Children under 18 years in households!!RELATIONSHIP TO HOUSEHOLDER!!Other relatives", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C04_017EA,S0901_C04_017M,S0901_C04_017MA"}, "S2501_C02_005E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!HOUSEHOLD SIZE!!4-or-more-person household", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C02_005EA,S2501_C02_005M,S2501_C02_005MA"}, "S1811_C01_009E": {"label": "Estimate!!Total Civilian Noninstitutionalized Population!!Employed Population Age 16 and Over!!CLASS OF WORKER!!Local government workers", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C01_009EA,S1811_C01_009M,S1811_C01_009MA"}, "S0103PR_C01_020E": {"label": "Estimate!!Total!!RELATIONSHIP!!Population in households!!Nonrelatives!!Unmarried partner", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_020EA,S0103PR_C01_020M,S0103PR_C01_020MA"}, "S2501_C02_006E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!OCCUPANTS PER ROOM!!1.00 or less occupants per room", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C02_006EA,S2501_C02_006M,S2501_C02_006MA"}, "S0901_C04_018E": {"label": "Estimate!!In female householder, no spouse present, family household!!Children under 18 years in households!!RELATIONSHIP TO HOUSEHOLDER!!Foster child or other unrelated child", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C04_018EA,S0901_C04_018M,S0901_C04_018MA"}, "S0103PR_C01_021E": {"label": "Estimate!!Total!!HOUSEHOLDS BY TYPE!!Households", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_021EA,S0103PR_C01_021M,S0103PR_C01_021MA"}, "S0601PR_C01_039E": {"label": "Estimate!!Total!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$1 to $9,999 or loss", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C01_039EA,S0601PR_C01_039M,S0601PR_C01_039MA"}, "S0901_C04_011E": {"label": "Estimate!!In female householder, no spouse present, family household!!Children under 18 years in households!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C04_011EA,S0901_C04_011M,S0901_C04_011MA"}, "S0103PR_C01_026E": {"label": "Estimate!!Total!!HOUSEHOLDS BY TYPE!!Households!!Nonfamily households!!Householder living alone", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_026EA,S0103PR_C01_026M,S0103PR_C01_026MA"}, "S0504_C04_036E": {"label": "Estimate!!Foreign-born; Born in Oceania!!MARITAL STATUS!!Population 15 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C04_036EA,S0504_C04_036M,S0504_C04_036MA"}, "S0901_C04_012E": {"label": "Estimate!!In female householder, no spouse present, family household!!Children under 18 years in households!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C04_012EA,S0901_C04_012M,S0901_C04_012MA"}, "S0103PR_C01_027E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_027EA,S0103PR_C01_027M,S0103PR_C01_027MA"}, "S0504_C04_037E": {"label": "Estimate!!Foreign-born; Born in Oceania!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_037EA,S0504_C04_037M,S0504_C04_037MA"}, "S0901_C04_013E": {"label": "Estimate!!In female householder, no spouse present, family household!!Children under 18 years in households!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C04_013EA,S0901_C04_013M,S0901_C04_013MA"}, "S0701PR_C02_019E": {"label": "Estimate!!Moved; within same municipio!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C02_019EA,S0701PR_C02_019M,S0701PR_C02_019MA"}, "S0504_C04_038E": {"label": "Estimate!!Foreign-born; Born in Oceania!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_038EA,S0504_C04_038M,S0504_C04_038MA"}, "S2501_C02_009E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C02_009EA,S2501_C02_009M,S2501_C02_009MA"}, "S0103PR_C01_024E": {"label": "Estimate!!Total!!HOUSEHOLDS BY TYPE!!Households!!Family households!!Female householder, no spouse present, family", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_024EA,S0103PR_C01_024M,S0103PR_C01_024MA"}, "S0102_C01_072E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Armed forces", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_072EA,S0102_C01_072M,S0102_C01_072MA"}, "S0102_C01_070E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_070EA,S0102_C01_070M,S0102_C01_070MA"}, "S0901_C04_014E": {"label": "Estimate!!In female householder, no spouse present, family household!!Children under 18 years in households!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C04_014EA,S0901_C04_014M,S0901_C04_014MA"}, "S0103PR_C01_025E": {"label": "Estimate!!Total!!HOUSEHOLDS BY TYPE!!Households!!Nonfamily households", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_025EA,S0103PR_C01_025M,S0103PR_C01_025MA"}, "S0504_C04_039E": {"label": "Estimate!!Foreign-born; Born in Oceania!!MARITAL STATUS!!Population 15 years and over!!Divorced or separated", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_039EA,S0504_C04_039M,S0504_C04_039MA"}, "S0102_C01_071E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed!!Percent of civilian labor force", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_071EA,S0102_C01_071M,S0102_C01_071MA"}, "S0504_C04_032E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Foreign-born population!!HOUSEHOLD TYPE!!In married-couple family", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_032EA,S0504_C04_032M,S0504_C04_032MA"}, "S0701PR_C02_017E": {"label": "Estimate!!Moved; within same municipio!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C02_017EA,S0701PR_C02_017M,S0701PR_C02_017MA"}, "S0504_C04_033E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Foreign-born population!!HOUSEHOLD TYPE!!In other households", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_033EA,S0504_C04_033M,S0504_C04_033MA"}, "S1902_C03_020E": {"label": "Estimate!!Mean income (dollars)!!PER CAPITA INCOME BY RACE AND HISPANIC OR LATINO ORIGIN!!Total population!!One race--!!White", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1902", "limit": 0, "attributes": "S1902_C03_020EA,S1902_C03_020M,S1902_C03_020MA"}, "S0701PR_C02_018E": {"label": "Estimate!!Moved; within same municipio!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C02_018EA,S0701PR_C02_018M,S0701PR_C02_018MA"}, "S0502PR_C01_020E": {"label": "Estimate!!Total!!Foreign-born population!!SEX AND AGE!!75 to 84 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_020EA,S0502PR_C01_020M,S0502PR_C01_020MA"}, "S0701PR_C02_015E": {"label": "Estimate!!Moved; within same municipio!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C02_015EA,S0701PR_C02_015M,S0701PR_C02_015MA"}, "S1902_C03_021E": {"label": "Estimate!!Mean income (dollars)!!PER CAPITA INCOME BY RACE AND HISPANIC OR LATINO ORIGIN!!Total population!!One race--!!Black or African American", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1902", "limit": 0, "attributes": "S1902_C03_021EA,S1902_C03_021M,S1902_C03_021MA"}, "S0103PR_C01_028E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_028EA,S0103PR_C01_028M,S0103PR_C01_028MA"}, "S0504_C04_034E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Foreign-born population!!Average household size", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_034EA,S0504_C04_034M,S0504_C04_034MA"}, "S0502PR_C01_021E": {"label": "Estimate!!Total!!Foreign-born population!!SEX AND AGE!!85 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_021EA,S0502PR_C01_021M,S0502PR_C01_021MA"}, "S0701PR_C02_016E": {"label": "Estimate!!Moved; within same municipio!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C02_016EA,S0701PR_C02_016M,S0701PR_C02_016MA"}, "S1902_C03_022E": {"label": "Estimate!!Mean income (dollars)!!PER CAPITA INCOME BY RACE AND HISPANIC OR LATINO ORIGIN!!Total population!!One race--!!American Indian and Alaska Native", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1902", "limit": 0, "attributes": "S1902_C03_022EA,S1902_C03_022M,S1902_C03_022MA"}, "S0103PR_C01_029E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_029EA,S0103PR_C01_029M,S0103PR_C01_029MA"}, "S0901_C04_010E": {"label": "Estimate!!In female householder, no spouse present, family household!!Children under 18 years in households!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C04_010EA,S0901_C04_010M,S0901_C04_010MA"}, "S0504_C04_035E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Foreign-born population!!Average family size", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_035EA,S0504_C04_035M,S0504_C04_035MA"}, "S0502PR_C01_022E": {"label": "Estimate!!Total!!Foreign-born population!!SEX AND AGE!!Median age (years)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_022EA,S0502PR_C01_022M,S0502PR_C01_022MA"}, "S0701PR_C02_013E": {"label": "Estimate!!Moved; within same municipio!!Population 1 year and over!!SEX!!Female", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C02_013EA,S0701PR_C02_013M,S0701PR_C02_013MA"}, "S0502PR_C01_023E": {"label": "Estimate!!Total!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_023EA,S0502PR_C01_023M,S0502PR_C01_023MA"}, "S0701PR_C02_014E": {"label": "Estimate!!Moved; within same municipio!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C02_014EA,S0701PR_C02_014M,S0701PR_C02_014MA"}, "S0502PR_C01_024E": {"label": "Estimate!!Total!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_024EA,S0502PR_C01_024M,S0502PR_C01_024MA"}, "S0504_C04_030E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_030EA,S0504_C04_030M,S0504_C04_030MA"}, "S0701PR_C02_011E": {"label": "Estimate!!Moved; within same municipio!!Population 1 year and over!!AGE!!Median age (years)", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C02_011EA,S0701PR_C02_011M,S0701PR_C02_011MA"}, "S0502PR_C01_025E": {"label": "Estimate!!Total!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_025EA,S0502PR_C01_025M,S0502PR_C01_025MA"}, "S0502PR_C01_026E": {"label": "Estimate!!Total!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_026EA,S0502PR_C01_026M,S0502PR_C01_026MA"}, "S0504_C04_031E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_031EA,S0504_C04_031M,S0504_C04_031MA"}, "S0701PR_C02_012E": {"label": "Estimate!!Moved; within same municipio!!Population 1 year and over!!SEX!!Male", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C02_012EA,S0701PR_C02_012M,S0701PR_C02_012MA"}, "S1001_C03_003E": {"label": "Estimate!!Grandchildren with no parent present!!With grandparent responsible!!Grandchildren under 18 years living with a grandparent householder!!AGE!!6 to 11 years", "concept": "Grandchildren Characteristics", "predicateType": "float", "group": "S1001", "limit": 0, "attributes": "S1001_C03_003EA,S1001_C03_003M,S1001_C03_003MA"}, "S0502PR_C01_027E": {"label": "Estimate!!Total!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_027EA,S0502PR_C01_027M,S0502PR_C01_027MA"}, "S2601C_C01_027E": {"label": "Estimate!!Total population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Some other race", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_027EA,S2601C_C01_027M,S2601C_C01_027MA"}, "S2601C_C01_026E": {"label": "Estimate!!Total population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_026EA,S2601C_C01_026M,S2601C_C01_026MA"}, "S0701PR_C02_021E": {"label": "Estimate!!Moved; within same municipio!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C02_021EA,S0701PR_C02_021M,S0701PR_C02_021MA"}, "S1902_C03_015E": {"label": "Estimate!!Mean income (dollars)!!FAMILY INCOME BY NUMBER OF WORKERS IN FAMILY!!All families!!2 workers, both spouses worked", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1902", "limit": 0, "attributes": "S1902_C03_015EA,S1902_C03_015M,S1902_C03_015MA"}, "S0502PR_C01_028E": {"label": "Estimate!!Total!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_028EA,S0502PR_C01_028M,S0502PR_C01_028MA"}, "S1001_C03_004E": {"label": "Estimate!!Grandchildren with no parent present!!With grandparent responsible!!Grandchildren under 18 years living with a grandparent householder!!AGE!!12 to 17 years", "concept": "Grandchildren Characteristics", "predicateType": "float", "group": "S1001", "limit": 0, "attributes": "S1001_C03_004EA,S1001_C03_004M,S1001_C03_004MA"}, "S2601C_C01_028E": {"label": "Estimate!!Total population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!Two or more races", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_028EA,S2601C_C01_028M,S2601C_C01_028MA"}, "S1902_C03_016E": {"label": "Estimate!!Mean income (dollars)!!FAMILY INCOME BY NUMBER OF WORKERS IN FAMILY!!All families!!2 workers, other", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1902", "limit": 0, "attributes": "S1902_C03_016EA,S1902_C03_016M,S1902_C03_016MA"}, "S0701PR_C02_022E": {"label": "Estimate!!Moved; within same municipio!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C02_022EA,S0701PR_C02_022M,S0701PR_C02_022MA"}, "S0102_C01_069E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Employed", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_069EA,S0102_C01_069M,S0102_C01_069MA"}, "S1201_C02_001E": {"label": "Estimate!!Now married (except separated)!!Population 15 years and over", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C02_001EA,S1201_C02_001M,S1201_C02_001MA"}, "S0502PR_C01_029E": {"label": "Estimate!!Total!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_029EA,S0502PR_C01_029M,S0502PR_C01_029MA"}, "S1001_C03_005E": {"label": "Estimate!!Grandchildren with no parent present!!With grandparent responsible!!Grandchildren under 18 years living with a grandparent householder!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Grandchildren Characteristics", "predicateType": "float", "group": "S1001", "limit": 0, "attributes": "S1001_C03_005EA,S1001_C03_005M,S1001_C03_005MA"}, "S1902_C03_017E": {"label": "Estimate!!Mean income (dollars)!!FAMILY INCOME BY NUMBER OF WORKERS IN FAMILY!!All families!!3 or more workers, both spouses worked", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1902", "limit": 0, "attributes": "S1902_C03_017EA,S1902_C03_017M,S1902_C03_017MA"}, "S2601C_C01_024E": {"label": "Estimate!!Total population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_024EA,S2601C_C01_024M,S2601C_C01_024MA"}, "S1001_C03_006E": {"label": "Estimate!!Grandchildren with no parent present!!With grandparent responsible!!Grandchildren under 18 years living with a grandparent householder!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Grandchildren Characteristics", "predicateType": "float", "group": "S1001", "limit": 0, "attributes": "S1001_C03_006EA,S1001_C03_006M,S1001_C03_006MA"}, "S1902_C03_018E": {"label": "Estimate!!Mean income (dollars)!!FAMILY INCOME BY NUMBER OF WORKERS IN FAMILY!!All families!!3 or more workers, other", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1902", "limit": 0, "attributes": "S1902_C03_018EA,S1902_C03_018M,S1902_C03_018MA"}, "S2601C_C01_025E": {"label": "Estimate!!Total population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Asian", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_025EA,S2601C_C01_025M,S2601C_C01_025MA"}, "S0701PR_C02_020E": {"label": "Estimate!!Moved; within same municipio!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C02_020EA,S0701PR_C02_020M,S0701PR_C02_020MA"}, "S1001_C03_007E": {"label": "Estimate!!Grandchildren with no parent present!!With grandparent responsible!!Grandchildren under 18 years living with a grandparent householder!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Grandchildren Characteristics", "predicateType": "float", "group": "S1001", "limit": 0, "attributes": "S1001_C03_007EA,S1001_C03_007M,S1001_C03_007MA"}, "S1902_C03_011E": {"label": "Estimate!!Mean income (dollars)!!HOUSEHOLD INCOME!!All households!!With other types of income", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1902", "limit": 0, "attributes": "S1902_C03_011EA,S1902_C03_011M,S1902_C03_011MA"}, "S2702_C01_081E": {"label": "Estimate!!Total!!Civilian noninstitutionalized workers 16 years and over!!OCCUPATION!!Natural resources, construction, and maintenance occupations", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_081EA,S2702_C01_081M,S2702_C01_081MA"}, "S2601C_C01_022E": {"label": "Estimate!!Total population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!White", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_022EA,S2601C_C01_022M,S2601C_C01_022MA"}, "S1001_C03_008E": {"label": "Estimate!!Grandchildren with no parent present!!With grandparent responsible!!Grandchildren under 18 years living with a grandparent householder!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Grandchildren Characteristics", "predicateType": "float", "group": "S1001", "limit": 0, "attributes": "S1001_C03_008EA,S1001_C03_008M,S1001_C03_008MA"}, "S2702_C01_082E": {"label": "Estimate!!Total!!Civilian noninstitutionalized workers 16 years and over!!OCCUPATION!!Production, transportation, and material moving occupations", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_082EA,S2702_C01_082M,S2702_C01_082MA"}, "S2601C_C01_023E": {"label": "Estimate!!Total population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_023EA,S2601C_C01_023M,S2601C_C01_023MA"}, "S1902_C03_012E": {"label": "Estimate!!Mean income (dollars)!!FAMILY INCOME BY NUMBER OF WORKERS IN FAMILY!!All families", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1902", "limit": 0, "attributes": "S1902_C03_012EA,S1902_C03_012M,S1902_C03_012MA"}, "S1001_C03_009E": {"label": "Estimate!!Grandchildren with no parent present!!With grandparent responsible!!Grandchildren under 18 years living with a grandparent householder!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Grandchildren Characteristics", "predicateType": "float", "group": "S1001", "limit": 0, "attributes": "S1001_C03_009EA,S1001_C03_009M,S1001_C03_009MA"}, "S2601C_C01_020E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!Median age (years)", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_020EA,S2601C_C01_020M,S2601C_C01_020MA"}, "S1902_C03_013E": {"label": "Estimate!!Mean income (dollars)!!FAMILY INCOME BY NUMBER OF WORKERS IN FAMILY!!All families!!No workers", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1902", "limit": 0, "attributes": "S1902_C03_013EA,S1902_C03_013M,S1902_C03_013MA"}, "S2702_C01_080E": {"label": "Estimate!!Total!!Civilian noninstitutionalized workers 16 years and over!!OCCUPATION!!Sales and office occupations", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_080EA,S2702_C01_080M,S2702_C01_080MA"}, "S1811_C01_010E": {"label": "Estimate!!Total Civilian Noninstitutionalized Population!!Employed Population Age 16 and Over!!CLASS OF WORKER!!State government workers", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C01_010EA,S1811_C01_010M,S1811_C01_010MA"}, "S2601C_C01_021E": {"label": "Estimate!!Total population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_021EA,S2601C_C01_021M,S2601C_C01_021MA"}, "S1902_C03_014E": {"label": "Estimate!!Mean income (dollars)!!FAMILY INCOME BY NUMBER OF WORKERS IN FAMILY!!All families!!1 worker", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1902", "limit": 0, "attributes": "S1902_C03_014EA,S1902_C03_014M,S1902_C03_014MA"}, "S2603_C06_099E": {"label": "Estimate!!College/university housing!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C06_099EA,S2603_C06_099M,S2603_C06_099MA"}, "S0601PR_C01_030E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over!!Divorced or separated", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C01_030EA,S0601PR_C01_030M,S0601PR_C01_030MA"}, "S2702_C01_085E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION ADJUSTED DOLLARS)!!Civilian noninstitutionalized population 16 years and over with earnings!!$5,000 to $14,999", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_085EA,S2702_C01_085M,S2702_C01_085MA"}, "S2501_C02_011E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Married-couple family!!Householder 15 to 34 years", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C02_011EA,S2501_C02_011M,S2501_C02_011MA"}, "S1811_C01_011E": {"label": "Estimate!!Total Civilian Noninstitutionalized Population!!Employed Population Age 16 and Over!!CLASS OF WORKER!!Federal government workers", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C01_011EA,S1811_C01_011M,S1811_C01_011MA"}, "S1201_C02_008E": {"label": "Estimate!!Now married (except separated)!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over!!65 years and over", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C02_008EA,S1201_C02_008M,S1201_C02_008MA"}, "S2602_C03_060E": {"label": "Estimate!!Adult correctional facilities!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C03_060EA,S2602_C03_060M,S2602_C03_060MA"}, "S0102_C01_062E": {"label": "Estimate!!Total!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over", "concept": "Population 60 Years and Over in the United States", "predicateType": "int", "group": "S0102", "limit": 0, "attributes": "S0102_C01_062EA,S0102_C01_062M,S0102_C01_062MA"}, "S2603_C06_098E": {"label": "Estimate!!College/university housing!!OCCUPATION!!Civilian employed population 16 years and over!!Production, transportation, and material moving occupations", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C06_098EA,S2603_C06_098M,S2603_C06_098MA"}, "S2702_C01_086E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION ADJUSTED DOLLARS)!!Civilian noninstitutionalized population 16 years and over with earnings!!$15,000 to $24,999", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_086EA,S2702_C01_086M,S2702_C01_086MA"}, "S2501_C02_012E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Married-couple family!!Householder 35 to 64 years", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C02_012EA,S2501_C02_012M,S2501_C02_012MA"}, "S1811_C01_012E": {"label": "Estimate!!Total Civilian Noninstitutionalized Population!!Employed Population Age 16 and Over!!CLASS OF WORKER!!Self-employed in own not incorporated business workers", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C01_012EA,S1811_C01_012M,S1811_C01_012MA"}, "S2602_C03_061E": {"label": "Estimate!!Adult correctional facilities!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Native", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C03_061EA,S2602_C03_061M,S2602_C03_061MA"}, "S1201_C02_009E": {"label": "Estimate!!Now married (except separated)!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C02_009EA,S1201_C02_009M,S1201_C02_009MA"}, "S0102_C01_061E": {"label": "Estimate!!Total!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Not a U.S. citizen", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_061EA,S0102_C01_061M,S0102_C01_061MA"}, "S0601PR_C01_032E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "int", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C01_032EA,S0601PR_C01_032M,S0601PR_C01_032MA"}, "S2603_C06_097E": {"label": "Estimate!!College/university housing!!OCCUPATION!!Civilian employed population 16 years and over!!Natural resources, construction, extraction, and maintenance occupations", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C06_097EA,S2603_C06_097M,S2603_C06_097MA"}, "S1811_C01_013E": {"label": "Estimate!!Total Civilian Noninstitutionalized Population!!Employed Population Age 16 and Over!!CLASS OF WORKER!!Unpaid family workers", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C01_013EA,S1811_C01_013M,S1811_C01_013MA"}, "S2702_C01_083E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION ADJUSTED DOLLARS)!!Civilian noninstitutionalized population 16 years and over with earnings", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "int", "group": "S2702", "limit": 0, "attributes": "S2702_C01_083EA,S2702_C01_083M,S2702_C01_083MA"}, "S2602_C03_062E": {"label": "Estimate!!Adult correctional facilities!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Native!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C03_062EA,S2602_C03_062M,S2602_C03_062MA"}, "S1201_C02_006E": {"label": "Estimate!!Now married (except separated)!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over!!45 to 54 years", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C02_006EA,S1201_C02_006M,S1201_C02_006MA"}, "S0102_C01_064E": {"label": "Estimate!!Total!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_064EA,S0102_C01_064M,S0102_C01_064MA"}, "S0601PR_C01_031E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C01_031EA,S0601PR_C01_031M,S0601PR_C01_031MA"}, "S2501_C02_010E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Married-couple family", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C02_010EA,S2501_C02_010M,S2501_C02_010MA"}, "S2603_C06_096E": {"label": "Estimate!!College/university housing!!OCCUPATION!!Civilian employed population 16 years and over!!Sales and office occupations", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C06_096EA,S2603_C06_096M,S2603_C06_096MA"}, "S2702_C01_084E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION ADJUSTED DOLLARS)!!Civilian noninstitutionalized population 16 years and over with earnings!!$1 to $4,999 or loss", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_084EA,S2702_C01_084M,S2702_C01_084MA"}, "S1811_C01_014E": {"label": "Estimate!!Total Civilian Noninstitutionalized Population!!Employed Population Age 16 and Over!!OCCUPATION!!Management, business, science, and arts occupations", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C01_014EA,S1811_C01_014M,S1811_C01_014MA"}, "S1201_C02_007E": {"label": "Estimate!!Now married (except separated)!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over!!55 to 64 years", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C02_007EA,S1201_C02_007M,S1201_C02_007MA"}, "S0102_C01_063E": {"label": "Estimate!!Total!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!English only", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_063EA,S0102_C01_063M,S0102_C01_063MA"}, "S2602_C03_063E": {"label": "Estimate!!Adult correctional facilities!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Native!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C03_063EA,S2602_C03_063M,S2602_C03_063MA"}, "S0901_C04_019E": {"label": "Estimate!!In female householder, no spouse present, family household!!Children under 18 years in households!!NATIVITY!!Native", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C04_019EA,S0901_C04_019M,S0901_C04_019MA"}, "S2702_C01_089E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION ADJUSTED DOLLARS)!!Civilian noninstitutionalized population 16 years and over with earnings!!$50,000 to $74,999", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_089EA,S2702_C01_089M,S2702_C01_089MA"}, "S0601PR_C01_034E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate (includes equivalency)", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C01_034EA,S0601PR_C01_034M,S0601PR_C01_034MA"}, "S2501_C02_015E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Other family!!Male householder, no spouse present", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C02_015EA,S2501_C02_015M,S2501_C02_015MA"}, "S1811_C01_015E": {"label": "Estimate!!Total Civilian Noninstitutionalized Population!!Employed Population Age 16 and Over!!OCCUPATION!!Service occupations", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C01_015EA,S1811_C01_015M,S1811_C01_015MA"}, "S1902_C03_019E": {"label": "Estimate!!Mean income (dollars)!!PER CAPITA INCOME BY RACE AND HISPANIC OR LATINO ORIGIN!!Total population", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1902", "limit": 0, "attributes": "S1902_C03_019EA,S1902_C03_019M,S1902_C03_019MA"}, "S1201_C02_004E": {"label": "Estimate!!Now married (except separated)!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over!!20 to 34 years", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C02_004EA,S1201_C02_004M,S1201_C02_004MA"}, "S0102_C01_066E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Population 16 years and over", "concept": "Population 60 Years and Over in the United States", "predicateType": "int", "group": "S0102", "limit": 0, "attributes": "S0102_C01_066EA,S0102_C01_066M,S0102_C01_066MA"}, "S0103PR_C01_030E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over!!Divorced", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_030EA,S0103PR_C01_030M,S0103PR_C01_030MA"}, "S2602_C03_064E": {"label": "Estimate!!Adult correctional facilities!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C03_064EA,S2602_C03_064M,S2602_C03_064MA"}, "S0601PR_C01_033E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than high school graduate", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C01_033EA,S0601PR_C01_033M,S0601PR_C01_033MA"}, "S2501_C02_016E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Other family!!Male householder, no spouse present!!Householder 15 to 34 years", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C02_016EA,S2501_C02_016M,S2501_C02_016MA"}, "S1811_C01_016E": {"label": "Estimate!!Total Civilian Noninstitutionalized Population!!Employed Population Age 16 and Over!!OCCUPATION!!Sales and office occupations", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C01_016EA,S1811_C01_016M,S1811_C01_016MA"}, "S1201_C02_005E": {"label": "Estimate!!Now married (except separated)!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over!!35 to 44 years", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C02_005EA,S1201_C02_005M,S1201_C02_005MA"}, "S0102_C01_065E": {"label": "Estimate!!Total!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English!!Speak English less than \"very well\"", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_065EA,S0102_C01_065M,S0102_C01_065MA"}, "S0103PR_C01_031E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over!!Separated", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_031EA,S0103PR_C01_031M,S0103PR_C01_031MA"}, "S2602_C03_065E": {"label": "Estimate!!Adult correctional facilities!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C03_065EA,S2602_C03_065M,S2602_C03_065MA"}, "S0601PR_C01_036E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C01_036EA,S0601PR_C01_036M,S0601PR_C01_036MA"}, "S2702_C01_087E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION ADJUSTED DOLLARS)!!Civilian noninstitutionalized population 16 years and over with earnings!!$25,000 to $34,999", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_087EA,S2702_C01_087M,S2702_C01_087MA"}, "S1001_C03_001E": {"label": "Estimate!!Grandchildren with no parent present!!With grandparent responsible!!Grandchildren under 18 years living with a grandparent householder", "concept": "Grandchildren Characteristics", "predicateType": "int", "group": "S1001", "limit": 0, "attributes": "S1001_C03_001EA,S1001_C03_001M,S1001_C03_001MA"}, "S2501_C02_013E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Married-couple family!!Householder 65 years and over", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C02_013EA,S2501_C02_013M,S2501_C02_013MA"}, "S2601C_C01_029E": {"label": "Estimate!!Total population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!Hispanic or Latino (of any race)", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C01_029EA,S2601C_C01_029M,S2601C_C01_029MA"}, "S1811_C01_017E": {"label": "Estimate!!Total Civilian Noninstitutionalized Population!!Employed Population Age 16 and Over!!OCCUPATION!!Natural resources, construction, and maintenance occupations", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C01_017EA,S1811_C01_017M,S1811_C01_017MA"}, "S1201_C02_002E": {"label": "Estimate!!Now married (except separated)!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C02_002EA,S1201_C02_002M,S1201_C02_002MA"}, "S0102_C01_068E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_068EA,S0102_C01_068M,S0102_C01_068MA"}, "S2602_C03_066E": {"label": "Estimate!!Adult correctional facilities!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C03_066EA,S2602_C03_066M,S2602_C03_066MA"}, "S2702_C01_088E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION ADJUSTED DOLLARS)!!Civilian noninstitutionalized population 16 years and over with earnings!!$35,000 to $49,999", "concept": "Selected Characteristics of the Uninsured in the United States", "predicateType": "float", "group": "S2702", "limit": 0, "attributes": "S2702_C01_088EA,S2702_C01_088M,S2702_C01_088MA"}, "S0601PR_C01_035E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college or associate's degree", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C01_035EA,S0601PR_C01_035M,S0601PR_C01_035MA"}, "S1001_C03_002E": {"label": "Estimate!!Grandchildren with no parent present!!With grandparent responsible!!Grandchildren under 18 years living with a grandparent householder!!AGE!!Under 6 years", "concept": "Grandchildren Characteristics", "predicateType": "float", "group": "S1001", "limit": 0, "attributes": "S1001_C03_002EA,S1001_C03_002M,S1001_C03_002MA"}, "S2501_C02_014E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Other family", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C02_014EA,S2501_C02_014M,S2501_C02_014MA"}, "S1811_C01_018E": {"label": "Estimate!!Total Civilian Noninstitutionalized Population!!Employed Population Age 16 and Over!!OCCUPATION!!Production, transportation, and material moving occupations", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C01_018EA,S1811_C01_018M,S1811_C01_018MA"}, "S1201_C02_003E": {"label": "Estimate!!Now married (except separated)!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over!!15 to 19 years", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C02_003EA,S1201_C02_003M,S1201_C02_003MA"}, "S0102_C01_067E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_067EA,S0102_C01_067M,S0102_C01_067MA"}, "S2602_C03_067E": {"label": "Estimate!!Adult correctional facilities!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Naturalized U.S. citizen", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C03_067EA,S2602_C03_067M,S2602_C03_067MA"}, "S1251_C02_005E": {"label": "Estimate!!Male!!Married in the last 12 months!!LABOR FORCE PARTICIPATION!!Population 16 years and over", "concept": "Characteristics of People With a Marital Event in the Last 12 Months", "predicateType": "int", "group": "S1251", "limit": 0, "attributes": "S1251_C02_005EA,S1251_C02_005M,S1251_C02_005MA"}, "S1501_C01_059E": {"label": "Estimate!!Total!!MEDIAN EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 25 years and over with earnings", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C01_059EA,S1501_C01_059M,S1501_C01_059MA"}, "S0502_C03_009E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Foreign-born population!!WORLD REGION OF BIRTH OF FOREIGN-BORN!!Latin America", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_009EA,S0502_C03_009M,S0502_C03_009MA"}, "S1251_C02_004E": {"label": "Estimate!!Male!!Married in the last 12 months!!EDUCATIONAL ATTAINMENT!!Population 18 years and over!!Bachelor's degree or higher", "concept": "Characteristics of People With a Marital Event in the Last 12 Months", "predicateType": "float", "group": "S1251", "limit": 0, "attributes": "S1251_C02_004EA,S1251_C02_004M,S1251_C02_004MA"}, "S1401_C03_010E": {"label": "Estimate!!In public school!!Population enrolled in college or graduate school", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C03_010EA,S1401_C03_010M,S1401_C03_010MA"}, "S1501_C01_058E": {"label": "Estimate!!Total!!POVERTY RATE FOR THE POPULATION 25 YEARS AND OVER FOR WHOM POVERTY STATUS IS DETERMINED BY EDUCATIONAL ATTAINMENT LEVEL!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C01_058EA,S1501_C01_058M,S1501_C01_058MA"}, "S1251_C02_007E": {"label": "Estimate!!Male!!Married in the last 12 months!!LABOR FORCE PARTICIPATION!!Population 16 years and over!!Not in labor force", "concept": "Characteristics of People With a Marital Event in the Last 12 Months", "predicateType": "float", "group": "S1251", "limit": 0, "attributes": "S1251_C02_007EA,S1251_C02_007M,S1251_C02_007MA"}, "S1702_C05_002E": {"label": "Estimate!!Total!!Female householder, no spouse present!!Families!!With related children of householder under 18 years", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C05_002EA,S1702_C05_002M,S1702_C05_002MA"}, "S0502_C03_007E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Foreign-born population!!WORLD REGION OF BIRTH OF FOREIGN-BORN!!Africa", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_007EA,S0502_C03_007M,S0502_C03_007MA"}, "S1251_C02_006E": {"label": "Estimate!!Male!!Married in the last 12 months!!LABOR FORCE PARTICIPATION!!Population 16 years and over!!In labor force", "concept": "Characteristics of People With a Marital Event in the Last 12 Months", "predicateType": "float", "group": "S1251", "limit": 0, "attributes": "S1251_C02_006EA,S1251_C02_006M,S1251_C02_006MA"}, "S1702_C05_001E": {"label": "Estimate!!Total!!Female householder, no spouse present!!Families", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C05_001EA,S1702_C05_001M,S1702_C05_001MA"}, "S0502_C03_008E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Foreign-born population!!WORLD REGION OF BIRTH OF FOREIGN-BORN!!Oceania", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_008EA,S0502_C03_008M,S0502_C03_008MA"}, "S2701_C03_053E": {"label": "Estimate!!Percent Insured!!Civilian noninstitutionalized population!!HOUSEHOLD INCOME (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Total household population!!$25,000 to $49,999", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C03_053EA,S2701_C03_053M,S2701_C03_053MA"}, "S0503_C03_143E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Renter-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C03_143EA,S0503_C03_143M,S0503_C03_143MA"}, "S1251_C02_009E": {"label": "Estimate!!Male!!Married in the last 12 months!!POVERTY STATUS IN PAST 12 MONTHS!!Population for whom poverty status is determined!!Below poverty", "concept": "Characteristics of People With a Marital Event in the Last 12 Months", "predicateType": "float", "group": "S1251", "limit": 0, "attributes": "S1251_C02_009EA,S1251_C02_009M,S1251_C02_009MA"}, "S2504_C01_019E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!ROOMS!!6 or 7 rooms", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C01_019EA,S2504_C01_019M,S2504_C01_019MA"}, "S2701_C03_052E": {"label": "Estimate!!Percent Insured!!Civilian noninstitutionalized population!!HOUSEHOLD INCOME (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Total household population!!Under $25,000", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C03_052EA,S2701_C03_052M,S2701_C03_052MA"}, "S0503_C03_144E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_144EA,S0503_C03_144M,S0503_C03_144MA"}, "S1251_C02_008E": {"label": "Estimate!!Male!!Married in the last 12 months!!POVERTY STATUS IN PAST 12 MONTHS!!Population for whom poverty status is determined", "concept": "Characteristics of People With a Marital Event in the Last 12 Months", "predicateType": "int", "group": "S1251", "limit": 0, "attributes": "S1251_C02_008EA,S1251_C02_008M,S1251_C02_008MA"}, "S2701_C03_051E": {"label": "Estimate!!Percent Insured!!Civilian noninstitutionalized population!!HOUSEHOLD INCOME (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Total household population", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C03_051EA,S2701_C03_051M,S2701_C03_051MA"}, "S0503_C03_145E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_145EA,S0503_C03_145M,S0503_C03_145MA"}, "S2701_C03_050E": {"label": "Estimate!!Percent Insured!!Civilian noninstitutionalized population!!WORK EXPERIENCE!!Civilian noninstitutionalized population 19 to 64 years!!Did not work", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C03_050EA,S2701_C03_050M,S2701_C03_050MA"}, "S0502_C03_001E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Foreign-born population", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C03_001EA,S0502_C03_001M,S0502_C03_001MA"}, "S1701_C02_004E": {"label": "Estimate!!Below poverty level!!Population for whom poverty status is determined!!AGE!!Under 18 years!!5 to 17 years", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C02_004EA,S1701_C02_004M,S1701_C02_004MA"}, "S1702_C05_008E": {"label": "Estimate!!Total!!Female householder, no spouse present!!Families!!RACE AND HISPANIC OR LATINO ORIGIN!!Families with a householder who is--!!American Indian and Alaska Native alone", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C05_008EA,S1702_C05_008M,S1702_C05_008MA"}, "S0102PR_C01_071E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed!!Percent of civilian labor force", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_071EA,S0102PR_C01_071M,S0102PR_C01_071MA"}, "S2504_C01_015E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!YEAR STRUCTURE BUILT!!1939 or earlier", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C01_015EA,S2504_C01_015M,S2504_C01_015MA"}, "S0502_C03_002E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Foreign-born population!!CITIZENSHIP!!Naturalized citizen", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_002EA,S0502_C03_002M,S0502_C03_002MA"}, "S1701_C02_003E": {"label": "Estimate!!Below poverty level!!Population for whom poverty status is determined!!AGE!!Under 18 years!!Under 5 years", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C02_003EA,S1701_C02_003M,S1701_C02_003MA"}, "S1702_C05_007E": {"label": "Estimate!!Total!!Female householder, no spouse present!!Families!!RACE AND HISPANIC OR LATINO ORIGIN!!Families with a householder who is--!!Black or African American alone", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C05_007EA,S1702_C05_007M,S1702_C05_007MA"}, "S0102PR_C01_072E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Armed forces", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_072EA,S0102PR_C01_072M,S0102PR_C01_072MA"}, "S0503_C03_140E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Owner-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C03_140EA,S0503_C03_140M,S0503_C03_140MA"}, "S2504_C01_016E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!ROOMS!!1 room", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C01_016EA,S2504_C01_016M,S2504_C01_016MA"}, "S0102PR_C01_073E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Population 16 years and over!!Not in labor force", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_073EA,S0102PR_C01_073M,S0102PR_C01_073MA"}, "S2504_C01_017E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!ROOMS!!2 or 3 rooms", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C01_017EA,S2504_C01_017M,S2504_C01_017MA"}, "S0503_C03_141E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_141EA,S0503_C03_141M,S0503_C03_141MA"}, "S1701_C02_006E": {"label": "Estimate!!Below poverty level!!Population for whom poverty status is determined!!AGE!!18 to 64 years", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C02_006EA,S1701_C02_006M,S1701_C02_006MA"}, "S2412_C01_001E": {"label": "Estimate!!Median earnings (dollars)!!Full-time, year-round civilian employed population 16 years and over with earnings", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C01_001EA,S2412_C01_001M,S2412_C01_001MA"}, "S0701_C05_056E": {"label": "Estimate!!Moved; from abroad!!PERCENT ALLOCATED!!Residence 1 year ago", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "int", "group": "S0701", "limit": 0, "attributes": "S0701_C05_056EA,S0701_C05_056M,S0701_C05_056MA"}, "S0802_C02_002E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over!!AGE!!16 to 19 years", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C02_002EA,S0802_C02_002M,S0802_C02_002MA"}, "S0802_C02_001E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "int", "group": "S0802", "limit": 0, "attributes": "S0802_C02_001EA,S0802_C02_001M,S0802_C02_001MA"}, "S1702_C05_009E": {"label": "Estimate!!Total!!Female householder, no spouse present!!Families!!RACE AND HISPANIC OR LATINO ORIGIN!!Families with a householder who is--!!Asian alone", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C05_009EA,S1702_C05_009M,S1702_C05_009MA"}, "S0503_C03_142E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_142EA,S0503_C03_142M,S0503_C03_142MA"}, "S0102PR_C01_074E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_074EA,S0102PR_C01_074M,S0102PR_C01_074MA"}, "S2504_C01_018E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!ROOMS!!4 or 5 rooms", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C01_018EA,S2504_C01_018M,S2504_C01_018MA"}, "S1701_C02_005E": {"label": "Estimate!!Below poverty level!!Population for whom poverty status is determined!!AGE!!Under 18 years!!Related children of householder under 18 years", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C02_005EA,S1701_C02_005M,S1701_C02_005MA"}, "S0701_C05_054E": {"label": "Estimate!!Moved; from abroad!!HOUSING TENURE!!Population 1 year and over in housing units!!Householder lived in owner-occupied housing units", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C05_054EA,S0701_C05_054M,S0701_C05_054MA"}, "S1251_C02_001E": {"label": "Estimate!!Male!!Married in the last 12 months!!Population 15 years and over", "concept": "Characteristics of People With a Marital Event in the Last 12 Months", "predicateType": "int", "group": "S1251", "limit": 0, "attributes": "S1251_C02_001EA,S1251_C02_001M,S1251_C02_001MA"}, "S1702_C05_004E": {"label": "Estimate!!Total!!Female householder, no spouse present!!Families!!With related children of householder under 18 years!!With related children of householder under 5 years and 5 to 17 years", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C05_004EA,S1702_C05_004M,S1702_C05_004MA"}, "S2504_C01_011E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!YEAR STRUCTURE BUILT!!2000 to 2009", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C01_011EA,S2504_C01_011M,S2504_C01_011MA"}, "S1701_C02_008E": {"label": "Estimate!!Below poverty level!!Population for whom poverty status is determined!!AGE!!18 to 64 years!!35 to 64 years", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C02_008EA,S1701_C02_008M,S1701_C02_008MA"}, "S2412_C01_003E": {"label": "Estimate!!Median earnings (dollars)!!Full-time, year-round civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Management, business, and financial occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C01_003EA,S2412_C01_003M,S2412_C01_003MA"}, "S0502PR_C01_120E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_120EA,S0502PR_C01_120M,S0502PR_C01_120MA"}, "S0502_C03_005E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Foreign-born population!!WORLD REGION OF BIRTH OF FOREIGN-BORN!!Europe", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_005EA,S0502_C03_005M,S0502_C03_005MA"}, "S0701_C05_055E": {"label": "Estimate!!Moved; from abroad!!HOUSING TENURE!!Population 1 year and over in housing units!!Householder lived in renter-occupied housing units", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C05_055EA,S0701_C05_055M,S0701_C05_055MA"}, "S1702_C05_003E": {"label": "Estimate!!Total!!Female householder, no spouse present!!Families!!With related children of householder under 18 years!!With related children of householder under 5 years", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C05_003EA,S1702_C05_003M,S1702_C05_003MA"}, "S1701_C02_007E": {"label": "Estimate!!Below poverty level!!Population for whom poverty status is determined!!AGE!!18 to 64 years!!18 to 34 years", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C02_007EA,S1701_C02_007M,S1701_C02_007MA"}, "S2504_C01_012E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!YEAR STRUCTURE BUILT!!1980 to 1999", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C01_012EA,S2504_C01_012M,S2504_C01_012MA"}, "S2412_C01_002E": {"label": "Estimate!!Median earnings (dollars)!!Full-time, year-round civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C01_002EA,S2412_C01_002M,S2412_C01_002MA"}, "S0502PR_C01_121E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_121EA,S0502PR_C01_121M,S0502PR_C01_121MA"}, "S0502_C03_006E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Foreign-born population!!WORLD REGION OF BIRTH OF FOREIGN-BORN!!Asia", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_006EA,S0502_C03_006M,S0502_C03_006MA"}, "S0502_C03_003E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Foreign-born population!!CITIZENSHIP!!Not a citizen", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_003EA,S0502_C03_003M,S0502_C03_003MA"}, "S1251_C02_003E": {"label": "Estimate!!Male!!Married in the last 12 months!!EDUCATIONAL ATTAINMENT!!Population 18 years and over", "concept": "Characteristics of People With a Marital Event in the Last 12 Months", "predicateType": "int", "group": "S1251", "limit": 0, "attributes": "S1251_C02_003EA,S1251_C02_003M,S1251_C02_003MA"}, "S0701_C05_052E": {"label": "Estimate!!Moved; from abroad!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population 1 year and over for whom poverty status is determined!!At or above 150 percent of the poverty level", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C05_052EA,S0701_C05_052M,S0701_C05_052MA"}, "S1702_C05_006E": {"label": "Estimate!!Total!!Female householder, no spouse present!!Families!!RACE AND HISPANIC OR LATINO ORIGIN!!Families with a householder who is--!!White alone", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C05_006EA,S1702_C05_006M,S1702_C05_006MA"}, "S2504_C01_013E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!YEAR STRUCTURE BUILT!!1960 to 1979", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C01_013EA,S2504_C01_013M,S2504_C01_013MA"}, "S2412_C01_005E": {"label": "Estimate!!Median earnings (dollars)!!Full-time, year-round civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Management, business, and financial occupations:!!Business and financial operations occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C01_005EA,S2412_C01_005M,S2412_C01_005MA"}, "S0502PR_C01_122E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_122EA,S0502PR_C01_122M,S0502PR_C01_122MA"}, "S1251_C02_002E": {"label": "Estimate!!Male!!Married in the last 12 months!!Population 15 years and over!!AGE!!Median age", "concept": "Characteristics of People With a Marital Event in the Last 12 Months", "predicateType": "float", "group": "S1251", "limit": 0, "attributes": "S1251_C02_002EA,S1251_C02_002M,S1251_C02_002MA"}, "S0701_C05_053E": {"label": "Estimate!!Moved; from abroad!!HOUSING TENURE!!Population 1 year and over in housing units", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C05_053EA,S0701_C05_053M,S0701_C05_053MA"}, "S1702_C05_005E": {"label": "Estimate!!Total!!Female householder, no spouse present!!Families!!With related children of householder under 18 years!!With related children of householder 5 to 17 years", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C05_005EA,S1702_C05_005M,S1702_C05_005MA"}, "S0102PR_C01_070E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_070EA,S0102PR_C01_070M,S0102PR_C01_070MA"}, "S1701_C02_009E": {"label": "Estimate!!Below poverty level!!Population for whom poverty status is determined!!AGE!!60 years and over", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C02_009EA,S1701_C02_009M,S1701_C02_009MA"}, "S2504_C01_014E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!YEAR STRUCTURE BUILT!!1940 to 1959", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C01_014EA,S2504_C01_014M,S2504_C01_014MA"}, "S2412_C01_004E": {"label": "Estimate!!Median earnings (dollars)!!Full-time, year-round civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Management, business, and financial occupations:!!Management occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C01_004EA,S2412_C01_004M,S2412_C01_004MA"}, "S0502PR_C01_123E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_123EA,S0502PR_C01_123M,S0502PR_C01_123MA"}, "S0502_C03_004E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Foreign-born population!!WORLD REGION OF BIRTH OF FOREIGN-BORN!!Foreign-born population excluding population born at sea", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C03_004EA,S0502_C03_004M,S0502_C03_004MA"}, "S0701_C05_050E": {"label": "Estimate!!Moved; from abroad!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population 1 year and over for whom poverty status is determined!!Below 100 percent of the poverty level", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C05_050EA,S0701_C05_050M,S0701_C05_050MA"}, "S1101_C04_010E": {"label": "Estimate!!Female householder, no spouse present, family household!!Total households!!SELECTED HOUSEHOLDS BY TYPE!!Households with one or more people under 18 years", "concept": "Households and Families", "predicateType": "float", "group": "S1101", "limit": 0, "attributes": "S1101_C04_010EA,S1101_C04_010M,S1101_C04_010MA"}, "S0102PR_C01_079E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_079EA,S0102PR_C01_079M,S0102PR_C01_079MA"}, "S2412_C01_007E": {"label": "Estimate!!Median earnings (dollars)!!Full-time, year-round civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Computer, engineering, and science occupations:!!Computer and mathematical occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C01_007EA,S2412_C01_007M,S2412_C01_007MA"}, "S0502PR_C01_124E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_124EA,S0502PR_C01_124M,S0502PR_C01_124MA"}, "S0701_C05_051E": {"label": "Estimate!!Moved; from abroad!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population 1 year and over for whom poverty status is determined!!100 to 149 percent of the poverty level", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C05_051EA,S0701_C05_051M,S0701_C05_051MA"}, "S0502PR_C01_125E": {"label": "Estimate!!Total!!Occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_125EA,S0502PR_C01_125M,S0502PR_C01_125MA"}, "S2412_C01_006E": {"label": "Estimate!!Median earnings (dollars)!!Full-time, year-round civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Computer, engineering, and science occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C01_006EA,S2412_C01_006M,S2412_C01_006MA"}, "S0502PR_C01_126E": {"label": "Estimate!!Total!!Occupied housing units!!HOUSING TENURE!!Owner-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_126EA,S0502PR_C01_126M,S0502PR_C01_126MA"}, "S1701_C02_010E": {"label": "Estimate!!Below poverty level!!Population for whom poverty status is determined!!AGE!!65 years and over", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C02_010EA,S1701_C02_010M,S1701_C02_010MA"}, "S2412_C01_009E": {"label": "Estimate!!Median earnings (dollars)!!Full-time, year-round civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Computer, engineering, and science occupations:!!Life, physical, and social science occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C01_009EA,S2412_C01_009M,S2412_C01_009MA"}, "S0502PR_C01_127E": {"label": "Estimate!!Total!!Occupied housing units!!HOUSING TENURE!!Renter-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_127EA,S0502PR_C01_127M,S0502PR_C01_127MA"}, "S2412_C01_008E": {"label": "Estimate!!Median earnings (dollars)!!Full-time, year-round civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Computer, engineering, and science occupations:!!Architecture and engineering occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C01_008EA,S2412_C01_008M,S2412_C01_008MA"}, "S2504_C01_010E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!YEAR STRUCTURE BUILT!!2010 to 2019", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C01_010EA,S2504_C01_010M,S2504_C01_010MA"}, "S0502PR_C01_128E": {"label": "Estimate!!Total!!Occupied housing units!!HOUSING TENURE!!Average household size of owner-occupied unit", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_128EA,S0502PR_C01_128M,S0502PR_C01_128MA"}, "S0102PR_C01_075E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_075EA,S0102PR_C01_075M,S0102PR_C01_075MA"}, "S1701_C02_012E": {"label": "Estimate!!Below poverty level!!Population for whom poverty status is determined!!SEX!!Female", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C02_012EA,S1701_C02_012M,S1701_C02_012MA"}, "S1101_C04_014E": {"label": "Estimate!!Female householder, no spouse present, family household!!Total households!!SELECTED HOUSEHOLDS BY TYPE!!Householder living alone!!65 years and over", "concept": "Households and Families", "predicateType": "int", "group": "S1101", "limit": 0, "attributes": "S1101_C04_014EA,S1101_C04_014M,S1101_C04_014MA"}, "S1401_C03_009E": {"label": "Estimate!!In public school!!Population 3 years and over enrolled in school!!Graduate, professional school", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C03_009EA,S1401_C03_009M,S1401_C03_009MA"}, "S0502PR_C01_129E": {"label": "Estimate!!Total!!Occupied housing units!!HOUSING TENURE!!Average household size of renter-occupied unit", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_129EA,S0502PR_C01_129M,S0502PR_C01_129MA"}, "S0502_C03_010E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Foreign-born population!!WORLD REGION OF BIRTH OF FOREIGN-BORN!!Northern America", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_010EA,S0502_C03_010M,S0502_C03_010MA"}, "S0102PR_C01_076E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings!!Mean earnings (dollars)", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_076EA,S0102PR_C01_076M,S0102PR_C01_076MA"}, "S1701_C02_011E": {"label": "Estimate!!Below poverty level!!Population for whom poverty status is determined!!SEX!!Male", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C02_011EA,S1701_C02_011M,S1701_C02_011MA"}, "S1101_C04_013E": {"label": "Estimate!!Female householder, no spouse present, family household!!Total households!!SELECTED HOUSEHOLDS BY TYPE!!Householder living alone", "concept": "Households and Families", "predicateType": "int", "group": "S1101", "limit": 0, "attributes": "S1101_C04_013EA,S1101_C04_013M,S1101_C04_013MA"}, "S0102PR_C01_077E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_077EA,S0102PR_C01_077M,S0102PR_C01_077MA"}, "S1701_C02_014E": {"label": "Estimate!!Below poverty level!!Population for whom poverty status is determined!!RACE AND HISPANIC OR LATINO ORIGIN!!Black or African American alone", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C02_014EA,S1701_C02_014M,S1701_C02_014MA"}, "S1101_C04_012E": {"label": "Estimate!!Female householder, no spouse present, family household!!Total households!!SELECTED HOUSEHOLDS BY TYPE!!Households with one or more people 65 years and over", "concept": "Households and Families", "predicateType": "int", "group": "S1101", "limit": 0, "attributes": "S1101_C04_012EA,S1101_C04_012M,S1101_C04_012MA"}, "S1401_C03_007E": {"label": "Estimate!!In public school!!Population 3 years and over enrolled in school!!Kindergarten to 12th grade!!High school: grade 9 to grade 12", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C03_007EA,S1401_C03_007M,S1401_C03_007MA"}, "S1501_C01_061E": {"label": "Estimate!!Total!!MEDIAN EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 25 years and over with earnings!!High school graduate (includes equivalency)", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C01_061EA,S1501_C01_061M,S1501_C01_061MA"}, "S1101_C04_011E": {"label": "Estimate!!Female householder, no spouse present, family household!!Total households!!SELECTED HOUSEHOLDS BY TYPE!!Households with one or more people 60 years and over", "concept": "Households and Families", "predicateType": "float", "group": "S1101", "limit": 0, "attributes": "S1101_C04_011EA,S1101_C04_011M,S1101_C04_011MA"}, "S0102PR_C01_078E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income!!Mean Social Security income (dollars)", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_078EA,S0102PR_C01_078M,S0102PR_C01_078MA"}, "S1701_C02_013E": {"label": "Estimate!!Below poverty level!!Population for whom poverty status is determined!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C02_013EA,S1701_C02_013M,S1701_C02_013MA"}, "S1401_C03_008E": {"label": "Estimate!!In public school!!Population 3 years and over enrolled in school!!College, undergraduate", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C03_008EA,S1401_C03_008M,S1401_C03_008MA"}, "S1501_C01_060E": {"label": "Estimate!!Total!!MEDIAN EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 25 years and over with earnings!!Less than high school graduate", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C01_060EA,S1501_C01_060M,S1501_C01_060MA"}, "S2701_C03_057E": {"label": "Estimate!!Percent Insured!!Civilian noninstitutionalized population!!RATIO OF INCOME TO POVERTY LEVEL IN THE PAST 12 MONTHS!!Civilian noninstitutionalized population for whom poverty status is determined", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C03_057EA,S2701_C03_057M,S2701_C03_057MA"}, "S1401_C03_005E": {"label": "Estimate!!In public school!!Population 3 years and over enrolled in school!!Kindergarten to 12th grade!!Elementary: grade 1 to grade 4", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C03_005EA,S1401_C03_005M,S1401_C03_005MA"}, "S1101_C04_018E": {"label": "Estimate!!Female householder, no spouse present, family household!!Total households!!HOUSING TENURE!!Owner-occupied housing units", "concept": "Households and Families", "predicateType": "float", "group": "S1101", "limit": 0, "attributes": "S1101_C04_018EA,S1101_C04_018M,S1101_C04_018MA"}, "S1501_C01_063E": {"label": "Estimate!!Total!!MEDIAN EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 25 years and over with earnings!!Bachelor's degree", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C01_063EA,S1501_C01_063M,S1501_C01_063MA"}, "S0102_C01_098E": {"label": "Estimate!!Total!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_098EA,S0102_C01_098M,S0102_C01_098MA"}, "S2701_C03_056E": {"label": "Estimate!!Percent Insured!!Civilian noninstitutionalized population!!HOUSEHOLD INCOME (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Total household population!!$100,000 and over", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C03_056EA,S2701_C03_056M,S2701_C03_056MA"}, "S1401_C03_006E": {"label": "Estimate!!In public school!!Population 3 years and over enrolled in school!!Kindergarten to 12th grade!!Elementary: grade 5 to grade 8", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C03_006EA,S1401_C03_006M,S1401_C03_006MA"}, "S1101_C04_017E": {"label": "Estimate!!Female householder, no spouse present, family household!!Total households!!UNITS IN STRUCTURE!!Mobile homes and all other types of units", "concept": "Households and Families", "predicateType": "float", "group": "S1101", "limit": 0, "attributes": "S1101_C04_017EA,S1101_C04_017M,S1101_C04_017MA"}, "S0102_C01_097E": {"label": "Estimate!!Total!!Owner-occupied housing units", "concept": "Population 60 Years and Over in the United States", "predicateType": "int", "group": "S0102", "limit": 0, "attributes": "S0102_C01_097EA,S0102_C01_097M,S0102_C01_097MA"}, "S1501_C01_062E": {"label": "Estimate!!Total!!MEDIAN EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 25 years and over with earnings!!Some college or associate's degree", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C01_062EA,S1501_C01_062M,S1501_C01_062MA"}, "S2701_C03_055E": {"label": "Estimate!!Percent Insured!!Civilian noninstitutionalized population!!HOUSEHOLD INCOME (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Total household population!!$75,000 to $99,999", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C03_055EA,S2701_C03_055M,S2701_C03_055MA"}, "S1401_C03_003E": {"label": "Estimate!!In public school!!Population 3 years and over enrolled in school!!Kindergarten to 12th grade", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C03_003EA,S1401_C03_003M,S1401_C03_003MA"}, "S1101_C04_016E": {"label": "Estimate!!Female householder, no spouse present, family household!!Total households!!UNITS IN STRUCTURE!!2-or-more-unit structures", "concept": "Households and Families", "predicateType": "float", "group": "S1101", "limit": 0, "attributes": "S1101_C04_016EA,S1101_C04_016M,S1101_C04_016MA"}, "S2701_C03_054E": {"label": "Estimate!!Percent Insured!!Civilian noninstitutionalized population!!HOUSEHOLD INCOME (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Total household population!!$50,000 to $74,999", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C03_054EA,S2701_C03_054M,S2701_C03_054MA"}, "S1401_C03_004E": {"label": "Estimate!!In public school!!Population 3 years and over enrolled in school!!Kindergarten to 12th grade!!Kindergarten", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C03_004EA,S1401_C03_004M,S1401_C03_004MA"}, "S1101_C04_015E": {"label": "Estimate!!Female householder, no spouse present, family household!!Total households!!UNITS IN STRUCTURE!!1-unit structures", "concept": "Households and Families", "predicateType": "float", "group": "S1101", "limit": 0, "attributes": "S1101_C04_015EA,S1101_C04_015M,S1101_C04_015MA"}, "S1501_C01_064E": {"label": "Estimate!!Total!!MEDIAN EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 25 years and over with earnings!!Graduate or professional degree", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C01_064EA,S1501_C01_064M,S1501_C01_064MA"}, "S0102_C01_099E": {"label": "Estimate!!Total!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_099EA,S0102_C01_099M,S0102_C01_099MA"}, "S1401_C03_001E": {"label": "Estimate!!In public school!!Population 3 years and over enrolled in school", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C03_001EA,S1401_C03_001M,S1401_C03_001MA"}, "S1401_C03_002E": {"label": "Estimate!!In public school!!Population 3 years and over enrolled in school!!Nursery school, preschool", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C03_002EA,S1401_C03_002M,S1401_C03_002MA"}, "S2701_C03_059E": {"label": "Estimate!!Percent Insured!!Civilian noninstitutionalized population!!RATIO OF INCOME TO POVERTY LEVEL IN THE PAST 12 MONTHS!!Civilian noninstitutionalized population for whom poverty status is determined!!138 to 399 percent of the poverty threshold", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C03_059EA,S2701_C03_059M,S2701_C03_059MA"}, "S2701_C03_058E": {"label": "Estimate!!Percent Insured!!Civilian noninstitutionalized population!!RATIO OF INCOME TO POVERTY LEVEL IN THE PAST 12 MONTHS!!Civilian noninstitutionalized population for whom poverty status is determined!!Below 138 percent of the poverty threshold", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C03_058EA,S2701_C03_058M,S2701_C03_058MA"}, "S1101_C04_019E": {"label": "Estimate!!Female householder, no spouse present, family household!!Total households!!HOUSING TENURE!!Renter-occupied housing units", "concept": "Households and Families", "predicateType": "float", "group": "S1101", "limit": 0, "attributes": "S1101_C04_019EA,S1101_C04_019M,S1101_C04_019MA"}, "S2701_C03_061E": {"label": "Estimate!!Percent Insured!!Civilian noninstitutionalized population!!RATIO OF INCOME TO POVERTY LEVEL IN THE PAST 12 MONTHS!!Civilian noninstitutionalized population for whom poverty status is determined!!Below 100 percent of the poverty threshold", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C03_061EA,S2701_C03_061M,S2701_C03_061MA"}, "S1702_C05_012E": {"label": "Estimate!!Total!!Female householder, no spouse present!!Families!!RACE AND HISPANIC OR LATINO ORIGIN!!Families with a householder who is--!!Two or more races", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C05_012EA,S1702_C05_012M,S1702_C05_012MA"}, "S1401_C03_021E": {"label": "Estimate!!In public school!!Population 18 to 19 years", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C03_021EA,S1401_C03_021M,S1401_C03_021MA"}, "S0503_C03_135E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Occupied housing units!!1.01 or more occupants per room", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_135EA,S0503_C03_135M,S0503_C03_135MA"}, "S2001_C04_020E": {"label": "Estimate!!Percent Male!!MEDIAN EARNINGS BY EDUCATIONAL ATTAINMENT!!Population 25 years and over with earnings!!Graduate or professional degree", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C04_020EA,S2001_C04_020M,S2001_C04_020MA"}, "S2701_C03_060E": {"label": "Estimate!!Percent Insured!!Civilian noninstitutionalized population!!RATIO OF INCOME TO POVERTY LEVEL IN THE PAST 12 MONTHS!!Civilian noninstitutionalized population for whom poverty status is determined!!At or above 400 percent of the poverty threshold", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C03_060EA,S2701_C03_060M,S2701_C03_060MA"}, "S1401_C03_022E": {"label": "Estimate!!In public school!!Population 18 to 19 years!!18 and 19 year olds enrolled in school", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C03_022EA,S1401_C03_022M,S1401_C03_022MA"}, "S1702_C05_011E": {"label": "Estimate!!Total!!Female householder, no spouse present!!Families!!RACE AND HISPANIC OR LATINO ORIGIN!!Families with a householder who is--!!Some other race alone", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C05_011EA,S1702_C05_011M,S1702_C05_011MA"}, "S0503_C03_136E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Occupied housing units!!VEHICLES AVAILABLE!!None", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_136EA,S0503_C03_136M,S0503_C03_136MA"}, "S0102_C01_091E": {"label": "Estimate!!Total!!Occupied housing units!!HOUSING TENURE!!Owner-occupied housing units", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_091EA,S0102_C01_091M,S0102_C01_091MA"}, "S1702_C05_014E": {"label": "Estimate!!Total!!Female householder, no spouse present!!Families!!RACE AND HISPANIC OR LATINO ORIGIN!!Families with a householder who is--!!White alone, not Hispanic or Latino", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C05_014EA,S1702_C05_014M,S1702_C05_014MA"}, "S0503_C03_137E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Occupied housing units!!VEHICLES AVAILABLE!!1 or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_137EA,S0503_C03_137M,S0503_C03_137MA"}, "S0502_C03_019E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Foreign-born population!!SEX AND AGE!!65 to 74 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_019EA,S0502_C03_019M,S0502_C03_019MA"}, "S1401_C03_020E": {"label": "Estimate!!In public school!!Population 15 to 17!!15 to 17 year olds enrolled in school", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C03_020EA,S1401_C03_020M,S1401_C03_020MA"}, "S0102_C01_090E": {"label": "Estimate!!Total!!Occupied housing units", "concept": "Population 60 Years and Over in the United States", "predicateType": "int", "group": "S0102", "limit": 0, "attributes": "S0102_C01_090EA,S0102_C01_090M,S0102_C01_090MA"}, "S1702_C05_013E": {"label": "Estimate!!Total!!Female householder, no spouse present!!Families!!RACE AND HISPANIC OR LATINO ORIGIN!!Families with a householder who is--!!Hispanic or Latino origin (of any race)", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C05_013EA,S1702_C05_013M,S1702_C05_013MA"}, "S0503_C03_138E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Occupied housing units!!SELECTED CHARACTERISTICS!!No telephone service available", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_138EA,S0503_C03_138M,S0503_C03_138MA"}, "S2413_C04_006E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Civilian employed population 16 years and over with earnings!!Manufacturing", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2413", "limit": 0, "attributes": "S2413_C04_006EA,S2413_C04_006M,S2413_C04_006MA"}, "S0503_C03_131E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Occupied housing units!!ROOMS!!4 or 5 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_131EA,S0503_C03_131M,S0503_C03_131MA"}, "S0102_C01_094E": {"label": "Estimate!!Total!!Occupied housing units!!HOUSING TENURE!!Average household size of renter-occupied unit", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_094EA,S0102_C01_094M,S0102_C01_094MA"}, "S0102_C01_092E": {"label": "Estimate!!Total!!Occupied housing units!!HOUSING TENURE!!Renter-occupied housing units", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_092EA,S0102_C01_092M,S0102_C01_092MA"}, "S2413_C04_007E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Civilian employed population 16 years and over with earnings!!Wholesale trade", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2413", "limit": 0, "attributes": "S2413_C04_007EA,S2413_C04_007M,S2413_C04_007MA"}, "S0503_C03_132E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Occupied housing units!!ROOMS!!6 or 7 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_132EA,S0503_C03_132M,S0503_C03_132MA"}, "S0102_C01_093E": {"label": "Estimate!!Total!!Occupied housing units!!HOUSING TENURE!!Average household size of owner-occupied unit", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_093EA,S0102_C01_093M,S0102_C01_093MA"}, "S2413_C04_008E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Civilian employed population 16 years and over with earnings!!Retail trade", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2413", "limit": 0, "attributes": "S2413_C04_008EA,S2413_C04_008M,S2413_C04_008MA"}, "S0503_C03_133E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Occupied housing units!!ROOMS!!8 or more rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_133EA,S0503_C03_133M,S0503_C03_133MA"}, "S1702_C05_010E": {"label": "Estimate!!Total!!Female householder, no spouse present!!Families!!RACE AND HISPANIC OR LATINO ORIGIN!!Families with a householder who is--!!Native Hawaiian and Other Pacific Islander alone", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C05_010EA,S1702_C05_010M,S1702_C05_010MA"}, "S0701_C05_048E": {"label": "Estimate!!Moved; from abroad!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!Median income (dollars)", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "int", "group": "S0701", "limit": 0, "attributes": "S0701_C05_048EA,S0701_C05_048M,S0701_C05_048MA"}, "S0102_C01_096E": {"label": "Estimate!!Total!!Occupied housing units!!SELECTED CHARACTERISTICS!!1.01 or more occupants per room", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_096EA,S0102_C01_096M,S0102_C01_096MA"}, "S2413_C04_009E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Civilian employed population 16 years and over with earnings!!Transportation and warehousing, and utilities:", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2413", "limit": 0, "attributes": "S2413_C04_009EA,S2413_C04_009M,S2413_C04_009MA"}, "S0503_C03_134E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Occupied housing units!!Median number of rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_134EA,S0503_C03_134M,S0503_C03_134MA"}, "S0102_C01_095E": {"label": "Estimate!!Total!!Occupied housing units!!SELECTED CHARACTERISTICS!!No telephone service available", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_095EA,S0102_C01_095M,S0102_C01_095MA"}, "S0701_C05_049E": {"label": "Estimate!!Moved; from abroad!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population 1 year and over for whom poverty status is determined", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C05_049EA,S0701_C05_049M,S0701_C05_049MA"}, "S0502_C03_013E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Foreign-born population!!SEX AND AGE!!Under 5 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C03_013EA,S0502_C03_013M,S0502_C03_013MA"}, "S0102PR_C01_083E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_083EA,S0102PR_C01_083M,S0102PR_C01_083MA"}, "S2504_C01_027E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!VEHICLES AVAILABLE!!No vehicle available", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C01_027EA,S2504_C01_027M,S2504_C01_027MA"}, "S1701_C02_016E": {"label": "Estimate!!Below poverty level!!Population for whom poverty status is determined!!RACE AND HISPANIC OR LATINO ORIGIN!!Asian alone", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C02_016EA,S1701_C02_016M,S1701_C02_016MA"}, "S2412_C01_011E": {"label": "Estimate!!Median earnings (dollars)!!Full-time, year-round civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:!!Community and social service occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C01_011EA,S2412_C01_011M,S2412_C01_011MA"}, "S2413_C04_002E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Civilian employed population 16 years and over with earnings!!Agriculture, forestry, fishing and hunting, and mining:", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2413", "limit": 0, "attributes": "S2413_C04_002EA,S2413_C04_002M,S2413_C04_002MA"}, "S0701_C05_046E": {"label": "Estimate!!Moved; from abroad!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$65,000 to $74,999", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C05_046EA,S0701_C05_046M,S0701_C05_046MA"}, "S0502_C03_014E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Foreign-born population!!SEX AND AGE!!5 to 17 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_014EA,S0502_C03_014M,S0502_C03_014MA"}, "S1701_C02_015E": {"label": "Estimate!!Below poverty level!!Population for whom poverty status is determined!!RACE AND HISPANIC OR LATINO ORIGIN!!American Indian and Alaska Native alone", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C02_015EA,S1701_C02_015M,S1701_C02_015MA"}, "S1702_C05_019E": {"label": "Estimate!!Total!!Female householder, no spouse present!!Families!!Family received --!!Social security income in the past 12 months", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C05_019EA,S1702_C05_019M,S1702_C05_019MA"}, "S0102PR_C01_084E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income!!Mean retirement income (dollars)", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_084EA,S0102PR_C01_084M,S0102PR_C01_084MA"}, "S2504_C01_028E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!VEHICLES AVAILABLE!!1 vehicle available", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C01_028EA,S2504_C01_028M,S2504_C01_028MA"}, "S0701_C05_047E": {"label": "Estimate!!Moved; from abroad!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$75,000 or more", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C05_047EA,S0701_C05_047M,S0701_C05_047MA"}, "S2413_C04_003E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Civilian employed population 16 years and over with earnings!!Agriculture, forestry, fishing and hunting, and mining:!!Agriculture, forestry, fishing and hunting", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2413", "limit": 0, "attributes": "S2413_C04_003EA,S2413_C04_003M,S2413_C04_003MA"}, "S2412_C01_010E": {"label": "Estimate!!Median earnings (dollars)!!Full-time, year-round civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C01_010EA,S2412_C01_010M,S2412_C01_010MA"}, "S0502_C03_011E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Foreign-born population!!SEX AND AGE!!Male", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_011EA,S0502_C03_011M,S0502_C03_011MA"}, "S0701_C05_044E": {"label": "Estimate!!Moved; from abroad!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$35,000 to $49,999", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C05_044EA,S0701_C05_044M,S0701_C05_044MA"}, "S1251_C02_011E": {"label": "Estimate!!Male!!Married in the last 12 months!!PRESENCE OF OWN CHILD UNDER 18 YEARS!!Population in households!!With an own child of the householder under 18 years", "concept": "Characteristics of People With a Marital Event in the Last 12 Months", "predicateType": "float", "group": "S1251", "limit": 0, "attributes": "S1251_C02_011EA,S1251_C02_011M,S1251_C02_011MA"}, "S0102PR_C01_085E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Food Stamp/SNAP benefits", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_085EA,S0102PR_C01_085M,S0102PR_C01_085MA"}, "S2504_C01_029E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!VEHICLES AVAILABLE!!2 vehicles available", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C01_029EA,S2504_C01_029M,S2504_C01_029MA"}, "S1701_C02_018E": {"label": "Estimate!!Below poverty level!!Population for whom poverty status is determined!!RACE AND HISPANIC OR LATINO ORIGIN!!Some other race alone", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C02_018EA,S1701_C02_018M,S1701_C02_018MA"}, "S2412_C01_013E": {"label": "Estimate!!Median earnings (dollars)!!Full-time, year-round civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:!!Educational instruction, and library occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C01_013EA,S2412_C01_013M,S2412_C01_013MA"}, "S2413_C04_004E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Civilian employed population 16 years and over with earnings!!Agriculture, forestry, fishing and hunting, and mining:!!Mining, quarrying, and oil and gas extraction", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2413", "limit": 0, "attributes": "S2413_C04_004EA,S2413_C04_004M,S2413_C04_004MA"}, "S0502PR_C01_130E": {"label": "Estimate!!Total!!Occupied housing units!!ROOMS!!1 room", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_130EA,S0502PR_C01_130M,S0502PR_C01_130MA"}, "S0502_C03_012E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Foreign-born population!!SEX AND AGE!!Female", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_012EA,S0502_C03_012M,S0502_C03_012MA"}, "S1251_C02_010E": {"label": "Estimate!!Male!!Married in the last 12 months!!PRESENCE OF OWN CHILD UNDER 18 YEARS!!Population in households", "concept": "Characteristics of People With a Marital Event in the Last 12 Months", "predicateType": "int", "group": "S1251", "limit": 0, "attributes": "S1251_C02_010EA,S1251_C02_010M,S1251_C02_010MA"}, "S0102PR_C01_086E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_086EA,S0102PR_C01_086M,S0102PR_C01_086MA"}, "S0503_C03_130E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Occupied housing units!!ROOMS!!2 or 3 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_130EA,S0503_C03_130M,S0503_C03_130MA"}, "S1701_C02_017E": {"label": "Estimate!!Below poverty level!!Population for whom poverty status is determined!!RACE AND HISPANIC OR LATINO ORIGIN!!Native Hawaiian and Other Pacific Islander alone", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C02_017EA,S1701_C02_017M,S1701_C02_017MA"}, "S2412_C01_012E": {"label": "Estimate!!Median earnings (dollars)!!Full-time, year-round civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:!!Legal occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C01_012EA,S2412_C01_012M,S2412_C01_012MA"}, "S2413_C04_005E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Civilian employed population 16 years and over with earnings!!Construction", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2413", "limit": 0, "attributes": "S2413_C04_005EA,S2413_C04_005M,S2413_C04_005MA"}, "S0701_C05_045E": {"label": "Estimate!!Moved; from abroad!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$50,000 to $64,999", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C05_045EA,S0701_C05_045M,S0701_C05_045MA"}, "S0502PR_C01_131E": {"label": "Estimate!!Total!!Occupied housing units!!ROOMS!!2 or 3 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_131EA,S0502PR_C01_131M,S0502PR_C01_131MA"}, "S1251_C02_013E": {"label": "Estimate!!Male!!Married in the last 12 months!!HOUSING TENURE!!Population 15 years and over in occupied housing units!!Owner-occupied housing units", "concept": "Characteristics of People With a Marital Event in the Last 12 Months", "predicateType": "float", "group": "S1251", "limit": 0, "attributes": "S1251_C02_013EA,S1251_C02_013M,S1251_C02_013MA"}, "S0701_C05_042E": {"label": "Estimate!!Moved; from abroad!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$15,000 to $24,999", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C05_042EA,S0701_C05_042M,S0701_C05_042MA"}, "S1702_C05_016E": {"label": "Estimate!!Total!!Female householder, no spouse present!!Families!!Householder worked!!Householder worked full-time, year-round in the past 12 months", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C05_016EA,S1702_C05_016M,S1702_C05_016MA"}, "S2412_C01_015E": {"label": "Estimate!!Median earnings (dollars)!!Full-time, year-round civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Healthcare practitioners and technical occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C01_015EA,S2412_C01_015M,S2412_C01_015MA"}, "S2504_C01_023E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!BEDROOMS!!2 or 3 bedrooms", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C01_023EA,S2504_C01_023M,S2504_C01_023MA"}, "S0502PR_C01_132E": {"label": "Estimate!!Total!!Occupied housing units!!ROOMS!!4 or 5 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_132EA,S0502PR_C01_132M,S0502PR_C01_132MA"}, "S0502_C03_017E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Foreign-born population!!SEX AND AGE!!45 to 54 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_017EA,S0502_C03_017M,S0502_C03_017MA"}, "S0701_C05_043E": {"label": "Estimate!!Moved; from abroad!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$25,000 to $34,999", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C05_043EA,S0701_C05_043M,S0701_C05_043MA"}, "S1251_C02_012E": {"label": "Estimate!!Male!!Married in the last 12 months!!HOUSING TENURE!!Population 15 years and over in occupied housing units", "concept": "Characteristics of People With a Marital Event in the Last 12 Months", "predicateType": "int", "group": "S1251", "limit": 0, "attributes": "S1251_C02_012EA,S1251_C02_012M,S1251_C02_012MA"}, "S1702_C05_015E": {"label": "Estimate!!Total!!Female householder, no spouse present!!Families!!Householder worked", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C05_015EA,S1702_C05_015M,S1702_C05_015MA"}, "S0102PR_C01_080E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income!!Mean Supplemental Security Income (dollars)", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_080EA,S0102PR_C01_080M,S0102PR_C01_080MA"}, "S2504_C01_024E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!BEDROOMS!!4 or more bedrooms", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C01_024EA,S2504_C01_024M,S2504_C01_024MA"}, "S1701_C02_019E": {"label": "Estimate!!Below poverty level!!Population for whom poverty status is determined!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C02_019EA,S1701_C02_019M,S1701_C02_019MA"}, "S2412_C01_014E": {"label": "Estimate!!Median earnings (dollars)!!Full-time, year-round civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:!!Arts, design, entertainment, sports, and media occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C01_014EA,S2412_C01_014M,S2412_C01_014MA"}, "S0502PR_C01_133E": {"label": "Estimate!!Total!!Occupied housing units!!ROOMS!!6 or 7 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_133EA,S0502PR_C01_133M,S0502PR_C01_133MA"}, "S0502_C03_018E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Foreign-born population!!SEX AND AGE!!55 to 64 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_018EA,S0502_C03_018M,S0502_C03_018MA"}, "S0701_C05_040E": {"label": "Estimate!!Moved; from abroad!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$1 to $9,999 or loss", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C05_040EA,S0701_C05_040M,S0701_C05_040MA"}, "S1702_C05_018E": {"label": "Estimate!!Total!!Female householder, no spouse present!!Families!!Family received --!!Supplemental Security Income (SSI) and/or cash public assistance income in the past 12 months", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C05_018EA,S1702_C05_018M,S1702_C05_018MA"}, "S0102PR_C01_081E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_081EA,S0102PR_C01_081M,S0102PR_C01_081MA"}, "S2412_C01_017E": {"label": "Estimate!!Median earnings (dollars)!!Full-time, year-round civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Healthcare practitioners and technical occupations:!!Health technologists and technicians", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C01_017EA,S2412_C01_017M,S2412_C01_017MA"}, "S2504_C01_025E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!COMPLETE FACILITIES!!With complete plumbing facilities", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C01_025EA,S2504_C01_025M,S2504_C01_025MA"}, "S0502PR_C01_134E": {"label": "Estimate!!Total!!Occupied housing units!!ROOMS!!8 or more rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_134EA,S0502PR_C01_134M,S0502PR_C01_134MA"}, "S0502_C03_015E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Foreign-born population!!SEX AND AGE!!18 to 24 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_015EA,S0502_C03_015M,S0502_C03_015MA"}, "S1251_C02_014E": {"label": "Estimate!!Male!!Married in the last 12 months!!HOUSING TENURE!!Population 15 years and over in occupied housing units!!Renter-occupied housing units", "concept": "Characteristics of People With a Marital Event in the Last 12 Months", "predicateType": "float", "group": "S1251", "limit": 0, "attributes": "S1251_C02_014EA,S1251_C02_014M,S1251_C02_014MA"}, "S0701_C05_041E": {"label": "Estimate!!Moved; from abroad!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$10,000 to $14,999", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C05_041EA,S0701_C05_041M,S0701_C05_041MA"}, "S1702_C05_017E": {"label": "Estimate!!Total!!Female householder, no spouse present!!Families!!Householder 65 years and over", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C05_017EA,S1702_C05_017M,S1702_C05_017MA"}, "S0102PR_C01_082E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income!!Mean cash public assistance income (dollars)", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_082EA,S0102PR_C01_082M,S0102PR_C01_082MA"}, "S2504_C01_026E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!COMPLETE FACILITIES!!With complete kitchen facilities", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C01_026EA,S2504_C01_026M,S2504_C01_026MA"}, "S2412_C01_016E": {"label": "Estimate!!Median earnings (dollars)!!Full-time, year-round civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Healthcare practitioners and technical occupations:!!Health diagnosing and treating practitioners and other technical occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C01_016EA,S2412_C01_016M,S2412_C01_016MA"}, "S0502PR_C01_135E": {"label": "Estimate!!Total!!Occupied housing units!!Median number of rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_135EA,S0502PR_C01_135M,S0502PR_C01_135MA"}, "S2413_C04_001E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Civilian employed population 16 years and over with earnings", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2413", "limit": 0, "attributes": "S2413_C04_001EA,S2413_C04_001M,S2413_C04_001MA"}, "S0502_C03_016E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Foreign-born population!!SEX AND AGE!!25 to 44 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_016EA,S0502_C03_016M,S0502_C03_016MA"}, "S0502PR_C01_136E": {"label": "Estimate!!Total!!Occupied housing units!!1.01 or more occupants per room", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_136EA,S0502PR_C01_136M,S0502PR_C01_136MA"}, "S1701_C02_020E": {"label": "Estimate!!Below poverty level!!Population for whom poverty status is determined!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C02_020EA,S1701_C02_020M,S1701_C02_020MA"}, "S2412_C01_019E": {"label": "Estimate!!Median earnings (dollars)!!Full-time, year-round civilian employed population 16 years and over with earnings!!Service occupations:!!Healthcare support occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C01_019EA,S2412_C01_019M,S2412_C01_019MA"}, "S0502PR_C01_137E": {"label": "Estimate!!Total!!Occupied housing units!!VEHICLES AVAILABLE!!None", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_137EA,S0502PR_C01_137M,S0502PR_C01_137MA"}, "S2412_C01_018E": {"label": "Estimate!!Median earnings (dollars)!!Full-time, year-round civilian employed population 16 years and over with earnings!!Service occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C01_018EA,S2412_C01_018M,S2412_C01_018MA"}, "S2504_C01_020E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!ROOMS!!8 or more rooms", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C01_020EA,S2504_C01_020M,S2504_C01_020MA"}, "S0502PR_C01_138E": {"label": "Estimate!!Total!!Occupied housing units!!VEHICLES AVAILABLE!!1 or more", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_138EA,S0502PR_C01_138M,S0502PR_C01_138MA"}, "S1701_C02_022E": {"label": "Estimate!!Below poverty level!!Population for whom poverty status is determined!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C02_022EA,S1701_C02_022M,S1701_C02_022MA"}, "S2504_C01_021E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!BEDROOMS!!No bedroom", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C01_021EA,S2504_C01_021M,S2504_C01_021MA"}, "S0502PR_C01_139E": {"label": "Estimate!!Total!!Occupied housing units!!SELECTED CHARACTERISTICS!!No telephone service available", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_139EA,S0502PR_C01_139M,S0502PR_C01_139MA"}, "S1701_C02_021E": {"label": "Estimate!!Below poverty level!!Population for whom poverty status is determined!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C02_021EA,S1701_C02_021M,S1701_C02_021MA"}, "S2504_C01_022E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!BEDROOMS!!1 bedroom", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C01_022EA,S2504_C01_022M,S2504_C01_022MA"}, "S0502_C03_021E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Foreign-born population!!SEX AND AGE!!85 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_021EA,S0502_C03_021M,S0502_C03_021MA"}, "S0102PR_C01_087E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!Below 100 percent of the poverty level", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_087EA,S0102PR_C01_087M,S0102PR_C01_087MA"}, "S1701_C02_024E": {"label": "Estimate!!Below poverty level!!Population for whom poverty status is determined!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate (includes equivalency)", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C02_024EA,S1701_C02_024M,S1701_C02_024MA"}, "S1101_C04_002E": {"label": "Estimate!!Female householder, no spouse present, family household!!HOUSEHOLDS!!Average household size", "concept": "Households and Families", "predicateType": "float", "group": "S1101", "limit": 0, "attributes": "S1101_C04_002EA,S1101_C04_002M,S1101_C04_002MA"}, "S0502_C03_022E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Foreign-born population!!SEX AND AGE!!Median age (years)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_022EA,S0502_C03_022M,S0502_C03_022MA"}, "S0102PR_C01_088E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!100 to 149 percent of the poverty level", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_088EA,S0102PR_C01_088M,S0102PR_C01_088MA"}, "S1701_C02_023E": {"label": "Estimate!!Below poverty level!!Population for whom poverty status is determined!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than high school graduate", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C02_023EA,S1701_C02_023M,S1701_C02_023MA"}, "S1101_C04_001E": {"label": "Estimate!!Female householder, no spouse present, family household!!HOUSEHOLDS!!Total households", "concept": "Households and Families", "predicateType": "int", "group": "S1101", "limit": 0, "attributes": "S1101_C04_001EA,S1101_C04_001M,S1101_C04_001MA"}, "S0102PR_C01_089E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!At or above 150 percent of the poverty level", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_089EA,S0102PR_C01_089M,S0102PR_C01_089MA"}, "S1701_C02_026E": {"label": "Estimate!!Below poverty level!!Population for whom poverty status is determined!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree or higher", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C02_026EA,S1701_C02_026M,S1701_C02_026MA"}, "S1401_C03_019E": {"label": "Estimate!!In public school!!Population 15 to 17", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C03_019EA,S1401_C03_019M,S1401_C03_019MA"}, "S0502_C03_020E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Foreign-born population!!SEX AND AGE!!75 to 84 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_020EA,S0502_C03_020M,S0502_C03_020MA"}, "S1701_C02_025E": {"label": "Estimate!!Below poverty level!!Population for whom poverty status is determined!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college, associate's degree", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C02_025EA,S1701_C02_025M,S1701_C02_025MA"}, "S1401_C03_017E": {"label": "Estimate!!In public school!!Population 10 to 14 years", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C03_017EA,S1401_C03_017M,S1401_C03_017MA"}, "S1101_C04_006E": {"label": "Estimate!!Female householder, no spouse present, family household!!AGE OF OWN CHILDREN!!Households with own children of the householder under 18 years!!Under 6 years only", "concept": "Households and Families", "predicateType": "float", "group": "S1101", "limit": 0, "attributes": "S1101_C04_006EA,S1101_C04_006M,S1101_C04_006MA"}, "S0102_C01_086E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined", "concept": "Population 60 Years and Over in the United States", "predicateType": "int", "group": "S0102", "limit": 0, "attributes": "S0102_C01_086EA,S0102_C01_086M,S0102_C01_086MA"}, "S1101_C04_005E": {"label": "Estimate!!Female householder, no spouse present, family household!!AGE OF OWN CHILDREN!!Households with own children of the householder under 18 years", "concept": "Households and Families", "predicateType": "int", "group": "S1101", "limit": 0, "attributes": "S1101_C04_005EA,S1101_C04_005M,S1101_C04_005MA"}, "S1401_C03_018E": {"label": "Estimate!!In public school!!Population 10 to 14 years!!10 to 14 year olds enrolled in school", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C03_018EA,S1401_C03_018M,S1401_C03_018MA"}, "S0102_C01_085E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Food Stamp/SNAP benefits", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_085EA,S0102_C01_085M,S0102_C01_085MA"}, "S1401_C03_015E": {"label": "Estimate!!In public school!!Population 5 to 9 years", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C03_015EA,S1401_C03_015M,S1401_C03_015MA"}, "S1101_C04_004E": {"label": "Estimate!!Female householder, no spouse present, family household!!FAMILIES!!Average family size", "concept": "Households and Families", "predicateType": "float", "group": "S1101", "limit": 0, "attributes": "S1101_C04_004EA,S1101_C04_004M,S1101_C04_004MA"}, "S0102_C01_088E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!100 to 149 percent of the poverty level", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_088EA,S0102_C01_088M,S0102_C01_088MA"}, "S1401_C03_016E": {"label": "Estimate!!In public school!!Population 5 to 9 years!!5 to 9 year olds enrolled in school", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C03_016EA,S1401_C03_016M,S1401_C03_016MA"}, "S1101_C04_003E": {"label": "Estimate!!Female householder, no spouse present, family household!!FAMILIES!!Total families", "concept": "Households and Families", "predicateType": "int", "group": "S1101", "limit": 0, "attributes": "S1101_C04_003EA,S1101_C04_003M,S1101_C04_003MA"}, "S0102_C01_087E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!Below 100 percent of the poverty level", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_087EA,S0102_C01_087M,S0102_C01_087MA"}, "S1401_C03_013E": {"label": "Estimate!!In public school!!Population 3 to 4 years", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C03_013EA,S1401_C03_013M,S1401_C03_013MA"}, "S0503_C03_139E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Occupied housing units!!SELECTED CHARACTERISTICS!!Limited English Speaking Households", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_139EA,S0503_C03_139M,S0503_C03_139MA"}, "S1401_C03_014E": {"label": "Estimate!!In public school!!Population 3 to 4 years!!3 to 4 year olds enrolled in school", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C03_014EA,S1401_C03_014M,S1401_C03_014MA"}, "S1101_C04_009E": {"label": "Estimate!!Female householder, no spouse present, family household!!Total households", "concept": "Households and Families", "predicateType": "int", "group": "S1101", "limit": 0, "attributes": "S1101_C04_009EA,S1101_C04_009M,S1101_C04_009MA"}, "S0102_C01_089E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!At or above 150 percent of the poverty level", "concept": "Population 60 Years and Over in the United States", "predicateType": "float", "group": "S0102", "limit": 0, "attributes": "S0102_C01_089EA,S0102_C01_089M,S0102_C01_089MA"}, "S1101_C04_008E": {"label": "Estimate!!Female householder, no spouse present, family household!!AGE OF OWN CHILDREN!!Households with own children of the householder under 18 years!!6 to 17 years only", "concept": "Households and Families", "predicateType": "float", "group": "S1101", "limit": 0, "attributes": "S1101_C04_008EA,S1101_C04_008M,S1101_C04_008MA"}, "S1401_C03_011E": {"label": "Estimate!!In public school!!Population enrolled in college or graduate school!!Males enrolled in college or graduate school", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C03_011EA,S1401_C03_011M,S1401_C03_011MA"}, "S1101_C04_007E": {"label": "Estimate!!Female householder, no spouse present, family household!!AGE OF OWN CHILDREN!!Households with own children of the householder under 18 years!!Under 6 years and 6 to 17 years", "concept": "Households and Families", "predicateType": "float", "group": "S1101", "limit": 0, "attributes": "S1101_C04_007EA,S1101_C04_007M,S1101_C04_007MA"}, "S1401_C03_012E": {"label": "Estimate!!In public school!!Population enrolled in college or graduate school!!Females enrolled in college or graduate school", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C03_012EA,S1401_C03_012M,S1401_C03_012MA"}, "S0503_C03_123E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_123EA,S0503_C03_123M,S0503_C03_123MA"}, "S0503_C03_124E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C03_124EA,S0503_C03_124M,S0503_C03_124MA"}, "S0503_C03_125E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Occupied housing units!!HOUSING TENURE!!Owner-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_125EA,S0503_C03_125M,S0503_C03_125MA"}, "S0503_C03_126E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Occupied housing units!!HOUSING TENURE!!Renter-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_126EA,S0503_C03_126M,S0503_C03_126MA"}, "S2001_C04_012E": {"label": "Estimate!!Percent Male!!Population 16 years and over with earnings!!FULL-TIME, YEAR-ROUND WORKERS WITH EARNINGS!!$100,000 or more", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S2001", "limit": 0, "attributes": "S2001_C04_012EA,S2001_C04_012M,S2001_C04_012MA"}, "S0503_C03_120E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_120EA,S0503_C03_120M,S0503_C03_120MA"}, "S2001_C04_013E": {"label": "Estimate!!Percent Male!!Population 16 years and over with earnings!!FULL-TIME, YEAR-ROUND WORKERS WITH EARNINGS!!Median earnings (dollars) for full-time, year-round workers with earnings", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C04_013EA,S2001_C04_013M,S2001_C04_013MA"}, "S0103PR_C01_100E": {"label": "Estimate!!Total!!Owner-occupied housing units!!OWNER CHARACTERISTICS!!Median selected monthly owner costs without a mortgage (dollars)", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_100EA,S0103PR_C01_100M,S0103PR_C01_100MA"}, "S0503_C03_121E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_121EA,S0503_C03_121M,S0503_C03_121MA"}, "S2001_C04_010E": {"label": "Estimate!!Percent Male!!Population 16 years and over with earnings!!FULL-TIME, YEAR-ROUND WORKERS WITH EARNINGS!!$65,000 to $74,999", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S2001", "limit": 0, "attributes": "S2001_C04_010EA,S2001_C04_010M,S2001_C04_010MA"}, "S2412_C01_021E": {"label": "Estimate!!Median earnings (dollars)!!Full-time, year-round civilian employed population 16 years and over with earnings!!Service occupations:!!Protective service occupations:!!Firefighting and prevention, and other protective service workers including supervisors", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C01_021EA,S2412_C01_021M,S2412_C01_021MA"}, "S0503_C03_122E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_122EA,S0503_C03_122M,S0503_C03_122MA"}, "S2001_C04_011E": {"label": "Estimate!!Percent Male!!Population 16 years and over with earnings!!FULL-TIME, YEAR-ROUND WORKERS WITH EARNINGS!!$75,000 to $99,999", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S2001", "limit": 0, "attributes": "S2001_C04_011EA,S2001_C04_011M,S2001_C04_011MA"}, "S2412_C01_020E": {"label": "Estimate!!Median earnings (dollars)!!Full-time, year-round civilian employed population 16 years and over with earnings!!Service occupations:!!Protective service occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C01_020EA,S2412_C01_020M,S2412_C01_020MA"}, "S0102PR_C01_095E": {"label": "Estimate!!Total!!Occupied housing units!!SELECTED CHARACTERISTICS!!No telephone service available", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_095EA,S0102PR_C01_095M,S0102PR_C01_095MA"}, "S0103PR_C01_103E": {"label": "Estimate!!Total!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_103EA,S0103PR_C01_103M,S0103PR_C01_103MA"}, "S1701_C02_028E": {"label": "Estimate!!Below poverty level!!Population for whom poverty status is determined!!EMPLOYMENT STATUS!!Civilian labor force 16 years and over!!Employed", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C02_028EA,S1701_C02_028M,S1701_C02_028MA"}, "S2412_C01_023E": {"label": "Estimate!!Median earnings (dollars)!!Full-time, year-round civilian employed population 16 years and over with earnings!!Service occupations:!!Food preparation and serving related occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C01_023EA,S2412_C01_023M,S2412_C01_023MA"}, "S0102PR_C01_096E": {"label": "Estimate!!Total!!Occupied housing units!!SELECTED CHARACTERISTICS!!1.01 or more occupants per room", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_096EA,S0102PR_C01_096M,S0102PR_C01_096MA"}, "S0103PR_C01_104E": {"label": "Estimate!!Total!!Renter-occupied housing units!!GROSS RENT!!Median gross rent (dollars)", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_104EA,S0103PR_C01_104M,S0103PR_C01_104MA"}, "S1701_C02_027E": {"label": "Estimate!!Below poverty level!!Population for whom poverty status is determined!!EMPLOYMENT STATUS!!Civilian labor force 16 years and over", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C02_027EA,S1701_C02_027M,S1701_C02_027MA"}, "S2412_C01_022E": {"label": "Estimate!!Median earnings (dollars)!!Full-time, year-round civilian employed population 16 years and over with earnings!!Service occupations:!!Protective service occupations:!!Law enforcement workers including supervisors", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C01_022EA,S2412_C01_022M,S2412_C01_022MA"}, "S0102PR_C01_097E": {"label": "Estimate!!Total!!Owner-occupied housing units", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_097EA,S0102PR_C01_097M,S0102PR_C01_097MA"}, "S2412_C01_025E": {"label": "Estimate!!Median earnings (dollars)!!Full-time, year-round civilian employed population 16 years and over with earnings!!Service occupations:!!Personal care and service occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C01_025EA,S2412_C01_025M,S2412_C01_025MA"}, "S0103PR_C01_101E": {"label": "Estimate!!Total!!Renter-occupied housing units", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_101EA,S0103PR_C01_101M,S0103PR_C01_101MA"}, "S0102PR_C01_098E": {"label": "Estimate!!Total!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_098EA,S0102PR_C01_098M,S0102PR_C01_098MA"}, "S0103PR_C01_102E": {"label": "Estimate!!Total!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_102EA,S0103PR_C01_102M,S0103PR_C01_102MA"}, "S1701_C02_029E": {"label": "Estimate!!Below poverty level!!Population for whom poverty status is determined!!EMPLOYMENT STATUS!!Civilian labor force 16 years and over!!Employed!!Male", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C02_029EA,S1701_C02_029M,S1701_C02_029MA"}, "S2412_C01_024E": {"label": "Estimate!!Median earnings (dollars)!!Full-time, year-round civilian employed population 16 years and over with earnings!!Service occupations:!!Building and grounds cleaning and maintenance occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C01_024EA,S2412_C01_024M,S2412_C01_024MA"}, "S0102PR_C01_091E": {"label": "Estimate!!Total!!Occupied housing units!!HOUSING TENURE!!Owner-occupied housing units", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_091EA,S0102PR_C01_091M,S0102PR_C01_091MA"}, "S0102PR_C01_090E": {"label": "Estimate!!Total!!Occupied housing units", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_090EA,S0102PR_C01_090M,S0102PR_C01_090MA"}, "S2412_C01_027E": {"label": "Estimate!!Median earnings (dollars)!!Full-time, year-round civilian employed population 16 years and over with earnings!!Sales and office occupations:!!Sales and related occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C01_027EA,S2412_C01_027M,S2412_C01_027MA"}, "S0102PR_C01_092E": {"label": "Estimate!!Total!!Occupied housing units!!HOUSING TENURE!!Renter-occupied housing units", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_092EA,S0102PR_C01_092M,S0102PR_C01_092MA"}, "S2412_C01_026E": {"label": "Estimate!!Median earnings (dollars)!!Full-time, year-round civilian employed population 16 years and over with earnings!!Sales and office occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C01_026EA,S2412_C01_026M,S2412_C01_026MA"}, "S0102PR_C01_093E": {"label": "Estimate!!Total!!Occupied housing units!!HOUSING TENURE!!Average household size of owner-occupied unit", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_093EA,S0102PR_C01_093M,S0102PR_C01_093MA"}, "S2412_C01_029E": {"label": "Estimate!!Median earnings (dollars)!!Full-time, year-round civilian employed population 16 years and over with earnings!!Natural resources, construction, and maintenance occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C01_029EA,S2412_C01_029M,S2412_C01_029MA"}, "S0102PR_C01_094E": {"label": "Estimate!!Total!!Occupied housing units!!HOUSING TENURE!!Average household size of renter-occupied unit", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_094EA,S0102PR_C01_094M,S0102PR_C01_094MA"}, "S2412_C01_028E": {"label": "Estimate!!Median earnings (dollars)!!Full-time, year-round civilian employed population 16 years and over with earnings!!Sales and office occupations:!!Office and administrative support occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C01_028EA,S2412_C01_028M,S2412_C01_028MA"}, "S1701_C02_032E": {"label": "Estimate!!Below poverty level!!Population for whom poverty status is determined!!EMPLOYMENT STATUS!!Civilian labor force 16 years and over!!Unemployed!!Male", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C02_032EA,S1701_C02_032M,S1701_C02_032MA"}, "S0103_C01_087E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!At or above 150 percent of the poverty level", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C01_087EA,S0103_C01_087M,S0103_C01_087MA"}, "S0502PR_C01_100E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings!!Mean earnings (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_100EA,S0502PR_C01_100M,S0502PR_C01_100MA"}, "S1701_C02_031E": {"label": "Estimate!!Below poverty level!!Population for whom poverty status is determined!!EMPLOYMENT STATUS!!Civilian labor force 16 years and over!!Unemployed", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C02_031EA,S1701_C02_031M,S1701_C02_031MA"}, "S0103_C01_086E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!100 to 149 percent of the poverty level", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C01_086EA,S0103_C01_086M,S0103_C01_086MA"}, "S0502PR_C01_101E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_101EA,S0502PR_C01_101M,S0502PR_C01_101MA"}, "S1701_C02_034E": {"label": "Estimate!!Below poverty level!!Population for whom poverty status is determined!!WORK EXPERIENCE!!Population 16 years and over", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C02_034EA,S1701_C02_034M,S1701_C02_034MA"}, "S0103_C01_085E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!Below 100 percent of the poverty level", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C01_085EA,S0103_C01_085M,S0103_C01_085MA"}, "S0502PR_C01_102E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income!!Mean Social Security income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_102EA,S0502PR_C01_102M,S0502PR_C01_102MA"}, "S0502PR_C01_103E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_103EA,S0502PR_C01_103M,S0502PR_C01_103MA"}, "S1701_C02_033E": {"label": "Estimate!!Below poverty level!!Population for whom poverty status is determined!!EMPLOYMENT STATUS!!Civilian labor force 16 years and over!!Unemployed!!Female", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C02_033EA,S1701_C02_033M,S1701_C02_033MA"}, "S0103_C01_084E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined", "concept": "Population 65 Years and Over in the United States", "predicateType": "int", "group": "S0103", "limit": 0, "attributes": "S0103_C01_084EA,S0103_C01_084M,S0103_C01_084MA"}, "S0102PR_C01_099E": {"label": "Estimate!!Total!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_099EA,S0102PR_C01_099M,S0102PR_C01_099MA"}, "S0502PR_C01_104E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income!!Mean Supplemental Security Income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_104EA,S0502PR_C01_104M,S0502PR_C01_104MA"}, "S1701_C02_036E": {"label": "Estimate!!Below poverty level!!Population for whom poverty status is determined!!WORK EXPERIENCE!!Population 16 years and over!!Worked part-time or part-year in the past 12 months", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C02_036EA,S1701_C02_036M,S1701_C02_036MA"}, "S1201_C02_032E": {"label": "Estimate!!Now married (except separated)!!PERCENT ALLOCATED!!Marital status", "concept": "Marital Status", "predicateType": "int", "group": "S1201", "limit": 0, "attributes": "S1201_C02_032EA,S1201_C02_032M,S1201_C02_032MA"}, "S0502PR_C01_105E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_105EA,S0502PR_C01_105M,S0502PR_C01_105MA"}, "S1701_C02_035E": {"label": "Estimate!!Below poverty level!!Population for whom poverty status is determined!!WORK EXPERIENCE!!Population 16 years and over!!Worked full-time, year-round in the past 12 months", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C02_035EA,S1701_C02_035M,S1701_C02_035MA"}, "S0502PR_C01_106E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income!!Mean cash public assistance income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_106EA,S0502PR_C01_106M,S0502PR_C01_106MA"}, "S1701_C02_038E": {"label": "Estimate!!Below poverty level!!Population for whom poverty status is determined!!ALL INDIVIDUALS WITH INCOME BELOW THE FOLLOWING POVERTY RATIOS!!50 percent of poverty level", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C02_038EA,S1701_C02_038M,S1701_C02_038MA"}, "S0103_C01_089E": {"label": "Estimate!!Total!!Occupied housing units!!HOUSING TENURE!!Owner-occupied housing units", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C01_089EA,S0103_C01_089M,S0103_C01_089MA"}, "S1201_C02_030E": {"label": "Estimate!!Now married (except separated)!!LABOR FORCE PARTICIPATION!!Females 16 years and over!!In labor force", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C02_030EA,S1201_C02_030M,S1201_C02_030MA"}, "S0502PR_C01_107E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_107EA,S0502PR_C01_107M,S0502PR_C01_107MA"}, "S1701_C02_037E": {"label": "Estimate!!Below poverty level!!Population for whom poverty status is determined!!WORK EXPERIENCE!!Population 16 years and over!!Did not work", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C02_037EA,S1701_C02_037M,S1701_C02_037MA"}, "S0103_C01_088E": {"label": "Estimate!!Total!!Occupied housing units", "concept": "Population 65 Years and Over in the United States", "predicateType": "int", "group": "S0103", "limit": 0, "attributes": "S0103_C01_088EA,S0103_C01_088M,S0103_C01_088MA"}, "S1201_C02_031E": {"label": "Estimate!!Now married (except separated)!!SUMMARY INDICATOR!!Ratio of Unmarried Men 15 to 44 years per 100 unmarried women 15 to 44 years", "concept": "Marital Status", "predicateType": "int", "group": "S1201", "limit": 0, "attributes": "S1201_C02_031EA,S1201_C02_031M,S1201_C02_031MA"}, "S0502PR_C01_108E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income!!Mean retirement income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_108EA,S0502PR_C01_108M,S0502PR_C01_108MA"}, "S2001_C04_016E": {"label": "Estimate!!Percent Male!!MEDIAN EARNINGS BY EDUCATIONAL ATTAINMENT!!Population 25 years and over with earnings!!Less than high school graduate", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C04_016EA,S2001_C04_016M,S2001_C04_016MA"}, "S0502PR_C01_109E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Food Stamp/SNAP benefits", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_109EA,S0502PR_C01_109M,S0502PR_C01_109MA"}, "S2001_C04_017E": {"label": "Estimate!!Percent Male!!MEDIAN EARNINGS BY EDUCATIONAL ATTAINMENT!!Population 25 years and over with earnings!!High school graduate (includes equivalency)", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C04_017EA,S2001_C04_017M,S2001_C04_017MA"}, "S2001_C04_014E": {"label": "Estimate!!Percent Male!!Population 16 years and over with earnings!!FULL-TIME, YEAR-ROUND WORKERS WITH EARNINGS!!Mean earnings (dollars) for full-time, year-round workers with earnings", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C04_014EA,S2001_C04_014M,S2001_C04_014MA"}, "S2001_C04_015E": {"label": "Estimate!!Percent Male!!MEDIAN EARNINGS BY EDUCATIONAL ATTAINMENT!!Population 25 years and over with earnings", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C04_015EA,S2001_C04_015M,S2001_C04_015MA"}, "S0103_C01_083E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Food Stamp/SNAP benefits", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C01_083EA,S0103_C01_083M,S0103_C01_083MA"}, "S0503_C03_127E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Occupied housing units!!HOUSING TENURE!!Average household size of owner-occupied unit", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_127EA,S0503_C03_127M,S0503_C03_127MA"}, "S0503_C03_128E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Occupied housing units!!HOUSING TENURE!!Average household size of renter-occupied unit", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_128EA,S0503_C03_128M,S0503_C03_128MA"}, "S0103_C01_082E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income!!Mean retirement income (dollars)", "concept": "Population 65 Years and Over in the United States", "predicateType": "int", "group": "S0103", "limit": 0, "attributes": "S0103_C01_082EA,S0103_C01_082M,S0103_C01_082MA"}, "S0103_C01_080E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income!!Mean cash public assistance income (dollars)", "concept": "Population 65 Years and Over in the United States", "predicateType": "int", "group": "S0103", "limit": 0, "attributes": "S0103_C01_080EA,S0103_C01_080M,S0103_C01_080MA"}, "S1701_C02_030E": {"label": "Estimate!!Below poverty level!!Population for whom poverty status is determined!!EMPLOYMENT STATUS!!Civilian labor force 16 years and over!!Employed!!Female", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C02_030EA,S1701_C02_030M,S1701_C02_030MA"}, "S0503_C03_129E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Occupied housing units!!ROOMS!!1 room", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_129EA,S0503_C03_129M,S0503_C03_129MA"}, "S0103_C01_081E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C01_081EA,S0103_C01_081M,S0103_C01_081MA"}, "S2001_C04_018E": {"label": "Estimate!!Percent Male!!MEDIAN EARNINGS BY EDUCATIONAL ATTAINMENT!!Population 25 years and over with earnings!!Some college or associate's degree", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C04_018EA,S2001_C04_018M,S2001_C04_018MA"}, "S2001_C04_019E": {"label": "Estimate!!Percent Male!!MEDIAN EARNINGS BY EDUCATIONAL ATTAINMENT!!Population 25 years and over with earnings!!Bachelor's degree", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C04_019EA,S2001_C04_019M,S2001_C04_019MA"}, "S0503_C03_111E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C03_111EA,S0503_C03_111M,S0503_C03_111MA"}, "S0503_C03_112E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!Below 100 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_112EA,S0503_C03_112M,S0503_C03_112MA"}, "S0503_C03_113E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!100 to 199 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_113EA,S0503_C03_113M,S0503_C03_113MA"}, "S0503_C03_114E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!At or above 200 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_114EA,S0503_C03_114M,S0503_C03_114MA"}, "S2504_C01_007E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!UNITS IN STRUCTURE!!10 or more apartments", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C01_007EA,S2504_C01_007M,S2504_C01_007MA"}, "S2412_C01_031E": {"label": "Estimate!!Median earnings (dollars)!!Full-time, year-round civilian employed population 16 years and over with earnings!!Natural resources, construction, and maintenance occupations:!!Construction and extraction occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C01_031EA,S2412_C01_031M,S2412_C01_031MA"}, "S2504_C01_008E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!UNITS IN STRUCTURE!!Mobile home or other type of housing", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C01_008EA,S2504_C01_008M,S2504_C01_008MA"}, "S2001_C04_001E": {"label": "Estimate!!Percent Male!!Population 16 years and over with earnings", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C04_001EA,S2001_C04_001M,S2001_C04_001MA"}, "S2412_C01_030E": {"label": "Estimate!!Median earnings (dollars)!!Full-time, year-round civilian employed population 16 years and over with earnings!!Natural resources, construction, and maintenance occupations:!!Farming, fishing, and forestry occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C01_030EA,S2412_C01_030M,S2412_C01_030MA"}, "S2504_C01_009E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!YEAR STRUCTURE BUILT!!2020 or later", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C01_009EA,S2504_C01_009M,S2504_C01_009MA"}, "S2412_C01_033E": {"label": "Estimate!!Median earnings (dollars)!!Full-time, year-round civilian employed population 16 years and over with earnings!!Production, transportation, and material moving occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C01_033EA,S2412_C01_033M,S2412_C01_033MA"}, "S0503_C03_110E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!Average number of workers per household", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_110EA,S0503_C03_110M,S0503_C03_110MA"}, "S2412_C01_032E": {"label": "Estimate!!Median earnings (dollars)!!Full-time, year-round civilian employed population 16 years and over with earnings!!Natural resources, construction, and maintenance occupations:!!Installation, maintenance, and repair occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C01_032EA,S2412_C01_032M,S2412_C01_032MA"}, "S2405_C06_005E": {"label": "Estimate!!Production, transportation, and material moving occupations!!Civilian employed population 16 years and over!!Wholesale trade", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2405", "limit": 0, "attributes": "S2405_C06_005EA,S2405_C06_005M,S2405_C06_005MA"}, "S2504_C01_003E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!UNITS IN STRUCTURE!!1, attached", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C01_003EA,S2504_C01_003M,S2504_C01_003MA"}, "S2412_C01_035E": {"label": "Estimate!!Median earnings (dollars)!!Full-time, year-round civilian employed population 16 years and over with earnings!!Production, transportation, and material moving occupations:!!Transportation occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C01_035EA,S2412_C01_035M,S2412_C01_035MA"}, "S2405_C06_004E": {"label": "Estimate!!Production, transportation, and material moving occupations!!Civilian employed population 16 years and over!!Manufacturing", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2405", "limit": 0, "attributes": "S2405_C06_004EA,S2405_C06_004M,S2405_C06_004MA"}, "S2504_C01_004E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!UNITS IN STRUCTURE!!2 apartments", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C01_004EA,S2504_C01_004M,S2504_C01_004MA"}, "S1701_C02_039E": {"label": "Estimate!!Below poverty level!!Population for whom poverty status is determined!!ALL INDIVIDUALS WITH INCOME BELOW THE FOLLOWING POVERTY RATIOS!!125 percent of poverty level", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C02_039EA,S1701_C02_039M,S1701_C02_039MA"}, "S2412_C01_034E": {"label": "Estimate!!Median earnings (dollars)!!Full-time, year-round civilian employed population 16 years and over with earnings!!Production, transportation, and material moving occupations:!!Production occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C01_034EA,S2412_C01_034M,S2412_C01_034MA"}, "S2405_C06_007E": {"label": "Estimate!!Production, transportation, and material moving occupations!!Civilian employed population 16 years and over!!Transportation and warehousing, and utilities", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2405", "limit": 0, "attributes": "S2405_C06_007EA,S2405_C06_007M,S2405_C06_007MA"}, "S2504_C01_005E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!UNITS IN STRUCTURE!!3 or 4 apartments", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C01_005EA,S2504_C01_005M,S2504_C01_005MA"}, "S2405_C06_006E": {"label": "Estimate!!Production, transportation, and material moving occupations!!Civilian employed population 16 years and over!!Retail trade", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2405", "limit": 0, "attributes": "S2405_C06_006EA,S2405_C06_006M,S2405_C06_006MA"}, "S2504_C01_006E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!UNITS IN STRUCTURE!!5 to 9 apartments", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C01_006EA,S2504_C01_006M,S2504_C01_006MA"}, "S2412_C01_036E": {"label": "Estimate!!Median earnings (dollars)!!Full-time, year-round civilian employed population 16 years and over with earnings!!Production, transportation, and material moving occupations:!!Material moving occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2412", "limit": 0, "attributes": "S2412_C01_036EA,S2412_C01_036M,S2412_C01_036MA"}, "S2405_C06_001E": {"label": "Estimate!!Production, transportation, and material moving occupations!!Civilian employed population 16 years and over", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2405", "limit": 0, "attributes": "S2405_C06_001EA,S2405_C06_001M,S2405_C06_001MA"}, "S2405_C06_003E": {"label": "Estimate!!Production, transportation, and material moving occupations!!Civilian employed population 16 years and over!!Construction", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2405", "limit": 0, "attributes": "S2405_C06_003EA,S2405_C06_003M,S2405_C06_003MA"}, "S2504_C01_001E": {"label": "Estimate!!Occupied housing units!!Occupied housing units", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C01_001EA,S2504_C01_001M,S2504_C01_001MA"}, "S0502PR_C01_110E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!Median Household income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_110EA,S0502PR_C01_110M,S0502PR_C01_110MA"}, "S2405_C06_002E": {"label": "Estimate!!Production, transportation, and material moving occupations!!Civilian employed population 16 years and over!!Agriculture, forestry, fishing and hunting, and mining", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2405", "limit": 0, "attributes": "S2405_C06_002EA,S2405_C06_002M,S2405_C06_002MA"}, "S2504_C01_002E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!UNITS IN STRUCTURE!!1, detached", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C01_002EA,S2504_C01_002M,S2504_C01_002MA"}, "S0502PR_C01_111E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!Average number of workers per household", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_111EA,S0502PR_C01_111M,S0502PR_C01_111MA"}, "S1701_C02_044E": {"label": "Estimate!!Below poverty level!!Population for whom poverty status is determined!!ALL INDIVIDUALS WITH INCOME BELOW THE FOLLOWING POVERTY RATIOS!!400 percent of poverty level", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C02_044EA,S1701_C02_044M,S1701_C02_044MA"}, "S0103_C01_099E": {"label": "Estimate!!Total!!Owner-occupied housing units!!OWNER CHARACTERISTICS!!Median selected monthly owner costs with a mortgage (dollars)", "concept": "Population 65 Years and Over in the United States", "predicateType": "int", "group": "S0103", "limit": 0, "attributes": "S0103_C01_099EA,S0103_C01_099M,S0103_C01_099MA"}, "S0502PR_C01_112E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_112EA,S0502PR_C01_112M,S0502PR_C01_112MA"}, "S1701_C02_043E": {"label": "Estimate!!Below poverty level!!Population for whom poverty status is determined!!ALL INDIVIDUALS WITH INCOME BELOW THE FOLLOWING POVERTY RATIOS!!300 percent of poverty level", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C02_043EA,S1701_C02_043M,S1701_C02_043MA"}, "S0103_C01_098E": {"label": "Estimate!!Total!!Owner-occupied housing units!!OWNER CHARACTERISTICS!!Median value (dollars)", "concept": "Population 65 Years and Over in the United States", "predicateType": "int", "group": "S0103", "limit": 0, "attributes": "S0103_C01_098EA,S0103_C01_098M,S0103_C01_098MA"}, "S0502PR_C01_113E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!Below 100 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_113EA,S0502PR_C01_113M,S0502PR_C01_113MA"}, "S0502PR_C01_114E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!100 to 199 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_114EA,S0502PR_C01_114M,S0502PR_C01_114MA"}, "S1701_C02_046E": {"label": "Estimate!!Below poverty level!!UNRELATED INDIVIDUALS FOR WHOM POVERTY STATUS IS DETERMINED", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C02_046EA,S1701_C02_046M,S1701_C02_046MA"}, "S0103_C01_097E": {"label": "Estimate!!Total!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C01_097EA,S0103_C01_097M,S0103_C01_097MA"}, "S0502PR_C01_115E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!At or above 200 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_115EA,S0502PR_C01_115M,S0502PR_C01_115MA"}, "S1701_C02_045E": {"label": "Estimate!!Below poverty level!!Population for whom poverty status is determined!!ALL INDIVIDUALS WITH INCOME BELOW THE FOLLOWING POVERTY RATIOS!!500 percent of poverty level", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C02_045EA,S1701_C02_045M,S1701_C02_045MA"}, "S0103_C01_096E": {"label": "Estimate!!Total!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C01_096EA,S0103_C01_096M,S0103_C01_096MA"}, "S0502PR_C01_116E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_116EA,S0502PR_C01_116M,S0502PR_C01_116MA"}, "S2405_C06_009E": {"label": "Estimate!!Production, transportation, and material moving occupations!!Civilian employed population 16 years and over!!Finance and insurance, and real estate and rental and leasing", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2405", "limit": 0, "attributes": "S2405_C06_009EA,S2405_C06_009M,S2405_C06_009MA"}, "S2401_C04_030E": {"label": "Estimate!!Female!!Civilian employed population 16 years and over!!Natural resources, construction, and maintenance occupations:!!Farming, fishing, and forestry occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C04_030EA,S2401_C04_030M,S2401_C04_030MA"}, "S1701_C02_048E": {"label": "Estimate!!Below poverty level!!UNRELATED INDIVIDUALS FOR WHOM POVERTY STATUS IS DETERMINED!!Female", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C02_048EA,S1701_C02_048M,S1701_C02_048MA"}, "S0502PR_C01_117E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_117EA,S0502PR_C01_117M,S0502PR_C01_117MA"}, "S1701_C02_047E": {"label": "Estimate!!Below poverty level!!UNRELATED INDIVIDUALS FOR WHOM POVERTY STATUS IS DETERMINED!!Male", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C02_047EA,S1701_C02_047M,S1701_C02_047MA"}, "S2405_C06_008E": {"label": "Estimate!!Production, transportation, and material moving occupations!!Civilian employed population 16 years and over!!Information", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2405", "limit": 0, "attributes": "S2405_C06_008EA,S2405_C06_008M,S2405_C06_008MA"}, "S2401_C04_031E": {"label": "Estimate!!Female!!Civilian employed population 16 years and over!!Natural resources, construction, and maintenance occupations:!!Construction and extraction occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C04_031EA,S2401_C04_031M,S2401_C04_031MA"}, "S0502PR_C01_118E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_118EA,S0502PR_C01_118M,S0502PR_C01_118MA"}, "S2401_C04_032E": {"label": "Estimate!!Female!!Civilian employed population 16 years and over!!Natural resources, construction, and maintenance occupations:!!Installation, maintenance, and repair occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C04_032EA,S2401_C04_032M,S2401_C04_032MA"}, "S0502PR_C01_119E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_119EA,S0502PR_C01_119M,S0502PR_C01_119MA"}, "S2401_C04_033E": {"label": "Estimate!!Female!!Civilian employed population 16 years and over!!Production, transportation, and material moving occupations:", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C04_033EA,S2401_C04_033M,S2401_C04_033MA"}, "S1701_C02_049E": {"label": "Estimate!!Below poverty level!!UNRELATED INDIVIDUALS FOR WHOM POVERTY STATUS IS DETERMINED!!15 years", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C02_049EA,S1701_C02_049M,S1701_C02_049MA"}, "S2401_C04_034E": {"label": "Estimate!!Female!!Civilian employed population 16 years and over!!Production, transportation, and material moving occupations:!!Production occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C04_034EA,S2401_C04_034M,S2401_C04_034MA"}, "S0103_C01_090E": {"label": "Estimate!!Total!!Occupied housing units!!HOUSING TENURE!!Renter-occupied housing units", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C01_090EA,S0103_C01_090M,S0103_C01_090MA"}, "S0503_C03_119E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_119EA,S0503_C03_119M,S0503_C03_119MA"}, "S2001_C04_004E": {"label": "Estimate!!Percent Male!!Population 16 years and over with earnings!!FULL-TIME, YEAR-ROUND WORKERS WITH EARNINGS!!$1 to $9,999 or loss", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S2001", "limit": 0, "attributes": "S2001_C04_004EA,S2001_C04_004M,S2001_C04_004MA"}, "S2401_C04_035E": {"label": "Estimate!!Female!!Civilian employed population 16 years and over!!Production, transportation, and material moving occupations:!!Transportation occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C04_035EA,S2401_C04_035M,S2401_C04_035MA"}, "S2001_C04_005E": {"label": "Estimate!!Percent Male!!Population 16 years and over with earnings!!FULL-TIME, YEAR-ROUND WORKERS WITH EARNINGS!!$10,000 to $14,999", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S2001", "limit": 0, "attributes": "S2001_C04_005EA,S2001_C04_005M,S2001_C04_005MA"}, "S2401_C04_036E": {"label": "Estimate!!Female!!Civilian employed population 16 years and over!!Production, transportation, and material moving occupations:!!Material moving occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C04_036EA,S2401_C04_036M,S2401_C04_036MA"}, "S2001_C04_002E": {"label": "Estimate!!Percent Male!!Population 16 years and over with earnings!!Median earnings (dollars)", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C04_002EA,S2001_C04_002M,S2001_C04_002MA"}, "S2001_C04_003E": {"label": "Estimate!!Percent Male!!Population 16 years and over with earnings!!FULL-TIME, YEAR-ROUND WORKERS WITH EARNINGS", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C04_003EA,S2001_C04_003M,S2001_C04_003MA"}, "S1701_C02_040E": {"label": "Estimate!!Below poverty level!!Population for whom poverty status is determined!!ALL INDIVIDUALS WITH INCOME BELOW THE FOLLOWING POVERTY RATIOS!!150 percent of poverty level", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C02_040EA,S1701_C02_040M,S1701_C02_040MA"}, "S0503_C03_115E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_115EA,S0503_C03_115M,S0503_C03_115MA"}, "S0103_C01_095E": {"label": "Estimate!!Total!!Owner-occupied housing units", "concept": "Population 65 Years and Over in the United States", "predicateType": "int", "group": "S0103", "limit": 0, "attributes": "S0103_C01_095EA,S0103_C01_095M,S0103_C01_095MA"}, "S2001_C04_008E": {"label": "Estimate!!Percent Male!!Population 16 years and over with earnings!!FULL-TIME, YEAR-ROUND WORKERS WITH EARNINGS!!$35,000 to $49,999", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S2001", "limit": 0, "attributes": "S2001_C04_008EA,S2001_C04_008M,S2001_C04_008MA"}, "S0103_C01_094E": {"label": "Estimate!!Total!!Occupied housing units!!SELECTED CHARACTERISTICS!!1.01 or more occupants per room", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C01_094EA,S0103_C01_094M,S0103_C01_094MA"}, "S0503_C03_116E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_116EA,S0503_C03_116M,S0503_C03_116MA"}, "S2001_C04_009E": {"label": "Estimate!!Percent Male!!Population 16 years and over with earnings!!FULL-TIME, YEAR-ROUND WORKERS WITH EARNINGS!!$50,000 to $64,999", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S2001", "limit": 0, "attributes": "S2001_C04_009EA,S2001_C04_009M,S2001_C04_009MA"}, "S1701_C02_042E": {"label": "Estimate!!Below poverty level!!Population for whom poverty status is determined!!ALL INDIVIDUALS WITH INCOME BELOW THE FOLLOWING POVERTY RATIOS!!200 percent of poverty level", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C02_042EA,S1701_C02_042M,S1701_C02_042MA"}, "S0503_C03_117E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_117EA,S0503_C03_117M,S0503_C03_117MA"}, "S0103_C01_093E": {"label": "Estimate!!Total!!Occupied housing units!!SELECTED CHARACTERISTICS!!No telephone service available", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C01_093EA,S0103_C01_093M,S0103_C01_093MA"}, "S2001_C04_006E": {"label": "Estimate!!Percent Male!!Population 16 years and over with earnings!!FULL-TIME, YEAR-ROUND WORKERS WITH EARNINGS!!$15,000 to $24,999", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S2001", "limit": 0, "attributes": "S2001_C04_006EA,S2001_C04_006M,S2001_C04_006MA"}, "S0103_C01_091E": {"label": "Estimate!!Total!!Occupied housing units!!HOUSING TENURE!!Average household size of owner-occupied unit", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C01_091EA,S0103_C01_091M,S0103_C01_091MA"}, "S1701_C02_041E": {"label": "Estimate!!Below poverty level!!Population for whom poverty status is determined!!ALL INDIVIDUALS WITH INCOME BELOW THE FOLLOWING POVERTY RATIOS!!185 percent of poverty level", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C02_041EA,S1701_C02_041M,S1701_C02_041MA"}, "S0503_C03_118E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_118EA,S0503_C03_118M,S0503_C03_118MA"}, "S0103_C01_092E": {"label": "Estimate!!Total!!Occupied housing units!!HOUSING TENURE!!Average household size of renter-occupied unit", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C01_092EA,S0103_C01_092M,S0103_C01_092MA"}, "S2001_C04_007E": {"label": "Estimate!!Percent Male!!Population 16 years and over with earnings!!FULL-TIME, YEAR-ROUND WORKERS WITH EARNINGS!!$25,000 to $34,999", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S2001", "limit": 0, "attributes": "S2001_C04_007EA,S2001_C04_007M,S2001_C04_007MA"}, "S2101_C02_033E": {"label": "Estimate!!Percent!!EMPLOYMENT STATUS!!Civilian labor force 18 to 64 years", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C02_033EA,S2101_C02_033M,S2101_C02_033MA"}, "S0503_C01_093E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$50,000 to $74,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_093EA,S0503_C01_093M,S0503_C01_093MA"}, "S1702_C05_048E": {"label": "Estimate!!Total!!Female householder, no spouse present!!Families!!ALL FAMILIES WITH INCOME BELOW THE FOLLOWING POVERTY RATIOS!!300 percent of poverty level", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C05_048EA,S1702_C05_048M,S1702_C05_048MA"}, "S2101_C02_034E": {"label": "Estimate!!Percent!!EMPLOYMENT STATUS!!Civilian labor force 18 to 64 years!!Unemployment rate", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C02_034EA,S2101_C02_034M,S2101_C02_034MA"}, "S0503_C01_092E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$35,000 to $49,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_092EA,S0503_C01_092M,S0503_C01_092MA"}, "S0503_C03_100E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_100EA,S0503_C03_100M,S0503_C03_100MA"}, "S1702_C05_047E": {"label": "Estimate!!Total!!Female householder, no spouse present!!Families!!ALL FAMILIES WITH INCOME BELOW THE FOLLOWING POVERTY RATIOS!!200 percent of poverty level", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C05_047EA,S1702_C05_047M,S1702_C05_047MA"}, "S0503_C01_095E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!Median earnings (dollars) for full-time, year-round workers!!Male", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C01_095EA,S0503_C01_095M,S0503_C01_095MA"}, "S2101_C02_035E": {"label": "Estimate!!Percent!!POVERTY STATUS IN THE PAST 12 MONTHS!!Civilian population 18 years and over for whom poverty status is determined", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C02_035EA,S2101_C02_035M,S2101_C02_035MA"}, "S0503_C03_101E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income!!Mean Social Security income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C03_101EA,S0503_C03_101M,S0503_C03_101MA"}, "S2405_C06_011E": {"label": "Estimate!!Production, transportation, and material moving occupations!!Civilian employed population 16 years and over!!Educational services, and health care and social assistance", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2405", "limit": 0, "attributes": "S2405_C06_011EA,S2405_C06_011M,S2405_C06_011MA"}, "S1601_C04_009E": {"label": "Estimate!!Percent speak English only or speak English \"very well\"!!Percent of specified language speakers!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Other Indo-European languages!!5 to 17 years old", "concept": "Language Spoken at Home", "predicateType": "float", "group": "S1601", "limit": 0, "attributes": "S1601_C04_009EA,S1601_C04_009M,S1601_C04_009MA"}, "S0503_C01_094E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$75,000 or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_094EA,S0503_C01_094M,S0503_C01_094MA"}, "S1702_C05_049E": {"label": "Estimate!!Total!!Female householder, no spouse present!!Families!!ALL FAMILIES WITH INCOME BELOW THE FOLLOWING POVERTY RATIOS!!400 percent of poverty level", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C05_049EA,S1702_C05_049M,S1702_C05_049MA"}, "S2101_C02_036E": {"label": "Estimate!!Percent!!POVERTY STATUS IN THE PAST 12 MONTHS!!Civilian population 18 years and over for whom poverty status is determined!!Income in the past 12 months below poverty level", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C02_036EA,S2101_C02_036M,S2101_C02_036MA"}, "S2405_C06_010E": {"label": "Estimate!!Production, transportation, and material moving occupations!!Civilian employed population 16 years and over!!Professional, scientific, and management, and administrative and waste management services", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2405", "limit": 0, "attributes": "S2405_C06_010EA,S2405_C06_010M,S2405_C06_010MA"}, "S0503_C03_102E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_102EA,S0503_C03_102M,S0503_C03_102MA"}, "S1601_C04_008E": {"label": "Estimate!!Percent speak English only or speak English \"very well\"!!Percent of specified language speakers!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Other Indo-European languages", "concept": "Language Spoken at Home", "predicateType": "float", "group": "S1601", "limit": 0, "attributes": "S1601_C04_008EA,S1601_C04_008M,S1601_C04_008MA"}, "S0503_C01_097E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C01_097EA,S0503_C01_097M,S0503_C01_097MA"}, "S1702_C05_044E": {"label": "Estimate!!Total!!Female householder, no spouse present!!Families!!ALL FAMILIES WITH INCOME BELOW THE FOLLOWING POVERTY RATIOS!!125 percent of poverty level", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C05_044EA,S1702_C05_044M,S1702_C05_044MA"}, "S1601_C04_007E": {"label": "Estimate!!Percent speak English only or speak English \"very well\"!!Percent of specified language speakers!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Spanish!!65 years old and over", "concept": "Language Spoken at Home", "predicateType": "float", "group": "S1601", "limit": 0, "attributes": "S1601_C04_007EA,S1601_C04_007M,S1601_C04_007MA"}, "S2703_C02_003E": {"label": "Estimate!!Private Coverage!!Civilian noninstitutionalized population!!COVERAGE ALONE OR IN COMBINATION!!Employer-based health insurance alone or in combination!!Under 19", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2703", "limit": 0, "attributes": "S2703_C02_003EA,S2703_C02_003M,S2703_C02_003MA"}, "S2703_C02_004E": {"label": "Estimate!!Private Coverage!!Civilian noninstitutionalized population!!COVERAGE ALONE OR IN COMBINATION!!Employer-based health insurance alone or in combination!!19 to 64 years", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2703", "limit": 0, "attributes": "S2703_C02_004EA,S2703_C02_004M,S2703_C02_004MA"}, "S0503_C01_096E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!Median earnings (dollars) for full-time, year-round workers!!Female", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C01_096EA,S0503_C01_096M,S0503_C01_096MA"}, "S2101_C02_030E": {"label": "Estimate!!Percent!!EDUCATIONAL ATTAINMENT!!Civilian population 25 years and over!!Bachelor's degree or higher", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C02_030EA,S2101_C02_030M,S2101_C02_030MA"}, "S1702_C05_043E": {"label": "Estimate!!Total!!Female householder, no spouse present!!Families!!ALL FAMILIES WITH INCOME BELOW THE FOLLOWING POVERTY RATIOS!!50 percent of poverty level", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C05_043EA,S1702_C05_043M,S1702_C05_043MA"}, "S1601_C04_006E": {"label": "Estimate!!Percent speak English only or speak English \"very well\"!!Percent of specified language speakers!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Spanish!!18 to 64 years old", "concept": "Language Spoken at Home", "predicateType": "float", "group": "S1601", "limit": 0, "attributes": "S1601_C04_006EA,S1601_C04_006M,S1601_C04_006MA"}, "S0503_C01_099E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings!!Mean earnings (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C01_099EA,S0503_C01_099M,S0503_C01_099MA"}, "S2101_C02_031E": {"label": "Estimate!!Percent!!EMPLOYMENT STATUS!!Civilian population 18 to 64 years", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C02_031EA,S2101_C02_031M,S2101_C02_031MA"}, "S1702_C05_046E": {"label": "Estimate!!Total!!Female householder, no spouse present!!Families!!ALL FAMILIES WITH INCOME BELOW THE FOLLOWING POVERTY RATIOS!!185 percent of poverty level", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C05_046EA,S1702_C05_046M,S1702_C05_046MA"}, "S2703_C02_001E": {"label": "Estimate!!Private Coverage!!Civilian noninstitutionalized population", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2703", "limit": 0, "attributes": "S2703_C02_001EA,S2703_C02_001M,S2703_C02_001MA"}, "S1601_C04_005E": {"label": "Estimate!!Percent speak English only or speak English \"very well\"!!Percent of specified language speakers!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Spanish!!5 to 17 years old", "concept": "Language Spoken at Home", "predicateType": "float", "group": "S1601", "limit": 0, "attributes": "S1601_C04_005EA,S1601_C04_005M,S1601_C04_005MA"}, "S0503_C01_098E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_098EA,S0503_C01_098M,S0503_C01_098MA"}, "S1702_C05_045E": {"label": "Estimate!!Total!!Female householder, no spouse present!!Families!!ALL FAMILIES WITH INCOME BELOW THE FOLLOWING POVERTY RATIOS!!150 percent of poverty level", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C05_045EA,S1702_C05_045M,S1702_C05_045MA"}, "S2101_C02_032E": {"label": "Estimate!!Percent!!EMPLOYMENT STATUS!!Civilian population 18 to 64 years!!Labor force participation rate", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C02_032EA,S2101_C02_032M,S2101_C02_032MA"}, "S1601_C04_004E": {"label": "Estimate!!Percent speak English only or speak English \"very well\"!!Percent of specified language speakers!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Spanish", "concept": "Language Spoken at Home", "predicateType": "float", "group": "S1601", "limit": 0, "attributes": "S1601_C04_004EA,S1601_C04_004M,S1601_C04_004MA"}, "S2703_C02_002E": {"label": "Estimate!!Private Coverage!!Civilian noninstitutionalized population!!COVERAGE ALONE OR IN COMBINATION!!Employer-based health insurance alone or in combination", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2703", "limit": 0, "attributes": "S2703_C02_002EA,S2703_C02_002M,S2703_C02_002MA"}, "S2703_C02_007E": {"label": "Estimate!!Private Coverage!!Civilian noninstitutionalized population!!COVERAGE ALONE OR IN COMBINATION!!Direct-purchase health insurance alone or in combination!!Under 19", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2703", "limit": 0, "attributes": "S2703_C02_007EA,S2703_C02_007M,S2703_C02_007MA"}, "S2404_C03_013E": {"label": "Estimate!!Percent Male!!Full-time, year-round civilian employed population 16 years and over!!Finance and insurance, and real estate and rental and leasing:", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2404", "limit": 0, "attributes": "S2404_C03_013EA,S2404_C03_013M,S2404_C03_013MA"}, "S0502_C03_049E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate (includes equivalency)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_049EA,S0502_C03_049M,S0502_C03_049MA"}, "S2703_C02_008E": {"label": "Estimate!!Private Coverage!!Civilian noninstitutionalized population!!COVERAGE ALONE OR IN COMBINATION!!Direct-purchase health insurance alone or in combination!!19 to 64 years", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2703", "limit": 0, "attributes": "S2703_C02_008EA,S2703_C02_008M,S2703_C02_008MA"}, "S2404_C03_012E": {"label": "Estimate!!Percent Male!!Full-time, year-round civilian employed population 16 years and over!!Information", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2404", "limit": 0, "attributes": "S2404_C03_012EA,S2404_C03_012M,S2404_C03_012MA"}, "S0502_C03_047E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C03_047EA,S0502_C03_047M,S0502_C03_047MA"}, "S2703_C02_005E": {"label": "Estimate!!Private Coverage!!Civilian noninstitutionalized population!!COVERAGE ALONE OR IN COMBINATION!!Employer-based health insurance alone or in combination!!65 years and over", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2703", "limit": 0, "attributes": "S2703_C02_005EA,S2703_C02_005M,S2703_C02_005MA"}, "S2404_C03_015E": {"label": "Estimate!!Percent Male!!Full-time, year-round civilian employed population 16 years and over!!Finance and insurance, and real estate and rental and leasing:!!Real estate and rental and leasing", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2404", "limit": 0, "attributes": "S2404_C03_015EA,S2404_C03_015M,S2404_C03_015MA"}, "S0103_C01_069E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Civilian population 16 years and over!!In labor force!!Unemployed", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C01_069EA,S0103_C01_069M,S0103_C01_069MA"}, "S2703_C02_006E": {"label": "Estimate!!Private Coverage!!Civilian noninstitutionalized population!!COVERAGE ALONE OR IN COMBINATION!!Direct-purchase health insurance alone or in combination", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2703", "limit": 0, "attributes": "S2703_C02_006EA,S2703_C02_006M,S2703_C02_006MA"}, "S2404_C03_014E": {"label": "Estimate!!Percent Male!!Full-time, year-round civilian employed population 16 years and over!!Finance and insurance, and real estate and rental and leasing:!!Finance and insurance", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2404", "limit": 0, "attributes": "S2404_C03_014EA,S2404_C03_014M,S2404_C03_014MA"}, "S0103_C01_068E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Civilian population 16 years and over!!In labor force!!Employed", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C01_068EA,S0103_C01_068M,S0103_C01_068MA"}, "S0502_C03_048E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than high school graduate", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_048EA,S0502_C03_048M,S0502_C03_048MA"}, "S1502_C04_006E": {"label": "Estimate!!Percent Male!!Total population 25 years and over with a Bachelor's degree or higher!!Arts, Humanities, and Others", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "float", "group": "S1502", "limit": 0, "attributes": "S1502_C04_006EA,S1502_C04_006M,S1502_C04_006MA"}, "S0504_C04_088E": {"label": "Estimate!!Foreign-born; Born in Oceania!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$1 to $9,999 or loss", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_088EA,S0504_C04_088M,S0504_C04_088MA"}, "S2405_C06_013E": {"label": "Estimate!!Production, transportation, and material moving occupations!!Civilian employed population 16 years and over!!Other services, except public administration", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2405", "limit": 0, "attributes": "S2405_C06_013EA,S2405_C06_013M,S2405_C06_013MA"}, "S2404_C03_017E": {"label": "Estimate!!Percent Male!!Full-time, year-round civilian employed population 16 years and over!!Professional, scientific, and management, and administrative and waste management services:!!Professional, scientific, and technical services", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2404", "limit": 0, "attributes": "S2404_C03_017EA,S2404_C03_017M,S2404_C03_017MA"}, "S1502_C04_007E": {"label": "Estimate!!Percent Male!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!25 to 39 years", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C04_007EA,S1502_C04_007M,S1502_C04_007MA"}, "S2405_C06_012E": {"label": "Estimate!!Production, transportation, and material moving occupations!!Civilian employed population 16 years and over!!Arts, entertainment, and recreation, and accommodation and food services", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2405", "limit": 0, "attributes": "S2405_C06_012EA,S2405_C06_012M,S2405_C06_012MA"}, "S2404_C03_016E": {"label": "Estimate!!Percent Male!!Full-time, year-round civilian employed population 16 years and over!!Professional, scientific, and management, and administrative and waste management services:", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2404", "limit": 0, "attributes": "S2404_C03_016EA,S2404_C03_016M,S2404_C03_016MA"}, "S0504_C04_089E": {"label": "Estimate!!Foreign-born; Born in Oceania!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$10,000 to $14,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_089EA,S0504_C04_089M,S0504_C04_089MA"}, "S1502_C04_008E": {"label": "Estimate!!Percent Male!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!25 to 39 years!!Science and Engineering", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "float", "group": "S1502", "limit": 0, "attributes": "S1502_C04_008EA,S1502_C04_008M,S1502_C04_008MA"}, "S2703_C02_009E": {"label": "Estimate!!Private Coverage!!Civilian noninstitutionalized population!!COVERAGE ALONE OR IN COMBINATION!!Direct-purchase health insurance alone or in combination!!65 years and over", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2703", "limit": 0, "attributes": "S2703_C02_009EA,S2703_C02_009M,S2703_C02_009MA"}, "S2405_C06_015E": {"label": "Estimate!!Production, transportation, and material moving occupations!!PERCENT ALLOCATED!!Industry", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2405", "limit": 0, "attributes": "S2405_C06_015EA,S2405_C06_015M,S2405_C06_015MA"}, "S2404_C03_019E": {"label": "Estimate!!Percent Male!!Full-time, year-round civilian employed population 16 years and over!!Professional, scientific, and management, and administrative and waste management services:!!Administrative and support and waste management services", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2404", "limit": 0, "attributes": "S2404_C03_019EA,S2404_C03_019M,S2404_C03_019MA"}, "S1502_C04_009E": {"label": "Estimate!!Percent Male!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!25 to 39 years!!Science and Engineering Related Fields", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "float", "group": "S1502", "limit": 0, "attributes": "S1502_C04_009EA,S1502_C04_009M,S1502_C04_009MA"}, "S2405_C06_014E": {"label": "Estimate!!Production, transportation, and material moving occupations!!Civilian employed population 16 years and over!!Public administration", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2405", "limit": 0, "attributes": "S2405_C06_014EA,S2405_C06_014M,S2405_C06_014MA"}, "S2404_C03_018E": {"label": "Estimate!!Percent Male!!Full-time, year-round civilian employed population 16 years and over!!Professional, scientific, and management, and administrative and waste management services:!!Management of companies and enterprises", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2404", "limit": 0, "attributes": "S2404_C03_018EA,S2404_C03_018M,S2404_C03_018MA"}, "S0502_C03_053E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C03_053EA,S0502_C03_053M,S0502_C03_053MA"}, "S0102PR_C01_031E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over!!Separated", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_031EA,S0102PR_C01_031M,S0102PR_C01_031MA"}, "S0504_C04_084E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Civilian employed population 16 years and over!!INDUSTRY!!Arts, entertainment, and recreation, and accommodation and food services", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_084EA,S0504_C04_084M,S0504_C04_084MA"}, "S0103_C01_063E": {"label": "Estimate!!Total!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!English only", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C01_063EA,S0103_C01_063M,S0103_C01_063MA"}, "S1502_C04_014E": {"label": "Estimate!!Percent Male!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!40 to 64 years!!Science and Engineering", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "float", "group": "S1502", "limit": 0, "attributes": "S1502_C04_014EA,S1502_C04_014M,S1502_C04_014MA"}, "S0502_C03_054E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!English only", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_054EA,S0502_C03_054M,S0502_C03_054MA"}, "S1502_C04_015E": {"label": "Estimate!!Percent Male!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!40 to 64 years!!Science and Engineering Related Fields", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "float", "group": "S1502", "limit": 0, "attributes": "S1502_C04_015EA,S1502_C04_015M,S1502_C04_015MA"}, "S0102PR_C01_032E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_032EA,S0102PR_C01_032M,S0102PR_C01_032MA"}, "S0504_C04_085E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Civilian employed population 16 years and over!!INDUSTRY!!Other services (except public administration)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_085EA,S0504_C04_085M,S0504_C04_085MA"}, "S0103_C01_062E": {"label": "Estimate!!Total!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over", "concept": "Population 65 Years and Over in the United States", "predicateType": "int", "group": "S0103", "limit": 0, "attributes": "S0103_C01_062EA,S0103_C01_062M,S0103_C01_062MA"}, "S0502_C03_051E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_051EA,S0502_C03_051M,S0502_C03_051MA"}, "S0102PR_C01_033E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_033EA,S0102PR_C01_033M,S0102PR_C01_033MA"}, "S1502_C04_016E": {"label": "Estimate!!Percent Male!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!40 to 64 years!!Business", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "float", "group": "S1502", "limit": 0, "attributes": "S1502_C04_016EA,S1502_C04_016M,S1502_C04_016MA"}, "S0504_C04_086E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Civilian employed population 16 years and over!!INDUSTRY!!Public administration", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_086EA,S0504_C04_086M,S0504_C04_086MA"}, "S0103_C01_061E": {"label": "Estimate!!Total!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Not a U.S. citizen", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C01_061EA,S0103_C01_061M,S0103_C01_061MA"}, "S1502_C04_017E": {"label": "Estimate!!Percent Male!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!40 to 64 years!!Education", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "float", "group": "S1502", "limit": 0, "attributes": "S1502_C04_017EA,S1502_C04_017M,S1502_C04_017MA"}, "S0502_C03_052E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Graduate or professional degree", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_052EA,S0502_C03_052M,S0502_C03_052MA"}, "S0102PR_C01_034E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than high school graduate", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_034EA,S0102PR_C01_034M,S0102PR_C01_034MA"}, "S0504_C04_087E": {"label": "Estimate!!Foreign-born; Born in Oceania!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C04_087EA,S0504_C04_087M,S0504_C04_087MA"}, "S0103_C01_060E": {"label": "Estimate!!Total!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Naturalized U.S. citizen", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C01_060EA,S0103_C01_060M,S0103_C01_060MA"}, "S0502_C03_057E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!EMPLOYMENT STATUS!!Population 16 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C03_057EA,S0502_C03_057M,S0502_C03_057MA"}, "S0504_C04_080E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Civilian employed population 16 years and over!!INDUSTRY!!Information", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_080EA,S0504_C04_080M,S0504_C04_080MA"}, "S0103_C01_067E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Civilian population 16 years and over!!In labor force", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C01_067EA,S0103_C01_067M,S0103_C01_067MA"}, "S1502_C04_010E": {"label": "Estimate!!Percent Male!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!25 to 39 years!!Business", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "float", "group": "S1502", "limit": 0, "attributes": "S1502_C04_010EA,S1502_C04_010M,S1502_C04_010MA"}, "S0502_C03_058E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_058EA,S0502_C03_058M,S0502_C03_058MA"}, "S0504_C04_081E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Civilian employed population 16 years and over!!INDUSTRY!!Finance and insurance, and real estate and rental and leasing", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_081EA,S0504_C04_081M,S0504_C04_081MA"}, "S0103_C01_066E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Civilian population 16 years and over", "concept": "Population 65 Years and Over in the United States", "predicateType": "int", "group": "S0103", "limit": 0, "attributes": "S0103_C01_066EA,S0103_C01_066M,S0103_C01_066MA"}, "S1502_C04_011E": {"label": "Estimate!!Percent Male!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!25 to 39 years!!Education", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "float", "group": "S1502", "limit": 0, "attributes": "S1502_C04_011EA,S1502_C04_011M,S1502_C04_011MA"}, "S0502_C03_055E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_055EA,S0502_C03_055M,S0502_C03_055MA"}, "S2404_C03_011E": {"label": "Estimate!!Percent Male!!Full-time, year-round civilian employed population 16 years and over!!Transportation and warehousing, and utilities:!!Utilities", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2404", "limit": 0, "attributes": "S2404_C03_011EA,S2404_C03_011M,S2404_C03_011MA"}, "S0504_C04_082E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Civilian employed population 16 years and over!!INDUSTRY!!Professional, scientific, and management, and administrative and waste management services", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_082EA,S0504_C04_082M,S0504_C04_082MA"}, "S0103_C01_065E": {"label": "Estimate!!Total!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English!!Speak English less than \"very well\"", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C01_065EA,S0103_C01_065M,S0103_C01_065MA"}, "S1502_C04_012E": {"label": "Estimate!!Percent Male!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!25 to 39 years!!Arts, Humanities, and Others", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "float", "group": "S1502", "limit": 0, "attributes": "S1502_C04_012EA,S1502_C04_012M,S1502_C04_012MA"}, "S0502_C03_056E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English!!Speak English less than \"very well\"", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_056EA,S0502_C03_056M,S0502_C03_056MA"}, "S0102PR_C01_030E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over!!Divorced", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_030EA,S0102PR_C01_030M,S0102PR_C01_030MA"}, "S0504_C04_083E": {"label": "Estimate!!Foreign-born; Born in Oceania!!Civilian employed population 16 years and over!!INDUSTRY!!Educational services, and health care and social assistance", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_083EA,S0504_C04_083M,S0504_C04_083MA"}, "S2404_C03_010E": {"label": "Estimate!!Percent Male!!Full-time, year-round civilian employed population 16 years and over!!Transportation and warehousing, and utilities:!!Transportation and warehousing", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2404", "limit": 0, "attributes": "S2404_C03_010EA,S2404_C03_010M,S2404_C03_010MA"}, "S0103_C01_064E": {"label": "Estimate!!Total!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C01_064EA,S0103_C01_064M,S0103_C01_064MA"}, "S1502_C04_013E": {"label": "Estimate!!Percent Male!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!40 to 64 years", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C04_013EA,S1502_C04_013M,S1502_C04_013MA"}, "S0102PR_C01_039E": {"label": "Estimate!!Total!!RESPONSIBILITY FOR GRANDCHILDREN UNDER 18 YEARS!!Population 30 years and over!!Living with grandchild(ren)", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_039EA,S0102PR_C01_039M,S0102PR_C01_039MA"}, "S0503_C03_107E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income!!Mean retirement income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C03_107EA,S0503_C03_107M,S0503_C03_107MA"}, "S1702_C05_040E": {"label": "Estimate!!Total!!Female householder, no spouse present!!Families!!INCOME DEFICIT!!Mean income deficit for families (dollars)", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C05_040EA,S1702_C05_040M,S1702_C05_040MA"}, "S0505_C02_101E": {"label": "Estimate!!Foreign-born; Born in Asia!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income!!Mean Social Security income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C02_101EA,S0505_C02_101M,S0505_C02_101MA"}, "S1601_C04_015E": {"label": "Estimate!!Percent speak English only or speak English \"very well\"!!Percent of specified language speakers!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Asian and Pacific Island languages!!65 years old and over", "concept": "Language Spoken at Home", "predicateType": "float", "group": "S1601", "limit": 0, "attributes": "S1601_C04_015EA,S1601_C04_015M,S1601_C04_015MA"}, "S1601_C04_014E": {"label": "Estimate!!Percent speak English only or speak English \"very well\"!!Percent of specified language speakers!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Asian and Pacific Island languages!!18 to 64 years old", "concept": "Language Spoken at Home", "predicateType": "float", "group": "S1601", "limit": 0, "attributes": "S1601_C04_014EA,S1601_C04_014M,S1601_C04_014MA"}, "S0505_C02_100E": {"label": "Estimate!!Foreign-born; Born in Asia!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_100EA,S0505_C02_100M,S0505_C02_100MA"}, "S0503_C03_108E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Food Stamp/SNAP benefits", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_108EA,S0503_C03_108M,S0503_C03_108MA"}, "S1601_C04_013E": {"label": "Estimate!!Percent speak English only or speak English \"very well\"!!Percent of specified language speakers!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Asian and Pacific Island languages!!5 to 17 years old", "concept": "Language Spoken at Home", "predicateType": "float", "group": "S1601", "limit": 0, "attributes": "S1601_C04_013EA,S1601_C04_013M,S1601_C04_013MA"}, "S1702_C05_042E": {"label": "Estimate!!Total!!Female householder, no spouse present!!Families!!TENURE!!Renter Occupied", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C05_042EA,S1702_C05_042M,S1702_C05_042MA"}, "S0503_C03_109E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!Median Household income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C03_109EA,S0503_C03_109M,S0503_C03_109MA"}, "S1601_C04_012E": {"label": "Estimate!!Percent speak English only or speak English \"very well\"!!Percent of specified language speakers!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Asian and Pacific Island languages", "concept": "Language Spoken at Home", "predicateType": "float", "group": "S1601", "limit": 0, "attributes": "S1601_C04_012EA,S1601_C04_012M,S1601_C04_012MA"}, "S1702_C05_041E": {"label": "Estimate!!Total!!Female householder, no spouse present!!Families!!TENURE!!Owner occupied", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C05_041EA,S1702_C05_041M,S1702_C05_041MA"}, "S1601_C04_011E": {"label": "Estimate!!Percent speak English only or speak English \"very well\"!!Percent of specified language speakers!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Other Indo-European languages!!65 years old and over", "concept": "Language Spoken at Home", "predicateType": "float", "group": "S1601", "limit": 0, "attributes": "S1601_C04_011EA,S1601_C04_011M,S1601_C04_011MA"}, "S0102PR_C01_035E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate, GED, or alternative", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_035EA,S0102PR_C01_035M,S0102PR_C01_035MA"}, "S2101_C02_037E": {"label": "Estimate!!Percent!!POVERTY STATUS IN THE PAST 12 MONTHS!!Civilian population 18 years and over for whom poverty status is determined!!Income in the past 12 months at or above poverty level", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C02_037EA,S2101_C02_037M,S2101_C02_037MA"}, "S0505_C02_105E": {"label": "Estimate!!Foreign-born; Born in Asia!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income!!Mean cash public assistance income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C02_105EA,S0505_C02_105M,S0505_C02_105MA"}, "S0503_C03_103E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income!!Mean Supplemental Security Income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C03_103EA,S0503_C03_103M,S0503_C03_103MA"}, "S1601_C04_010E": {"label": "Estimate!!Percent speak English only or speak English \"very well\"!!Percent of specified language speakers!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Other Indo-European languages!!18 to 64 years old", "concept": "Language Spoken at Home", "predicateType": "float", "group": "S1601", "limit": 0, "attributes": "S1601_C04_010EA,S1601_C04_010M,S1601_C04_010MA"}, "S0102PR_C01_036E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college or associate's degree", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_036EA,S0102PR_C01_036M,S0102PR_C01_036MA"}, "S2101_C02_038E": {"label": "Estimate!!Percent!!DISABILITY STATUS!!Civilian population 18 years and over for whom poverty status is determined", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C02_038EA,S2101_C02_038M,S2101_C02_038MA"}, "S0502_C03_050E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college or associate's degree", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_050EA,S0502_C03_050M,S0502_C03_050MA"}, "S0505_C02_104E": {"label": "Estimate!!Foreign-born; Born in Asia!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_104EA,S0505_C02_104M,S0505_C02_104MA"}, "S0503_C03_104E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_104EA,S0503_C03_104M,S0503_C03_104MA"}, "S0102PR_C01_037E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree or higher", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_037EA,S0102PR_C01_037M,S0102PR_C01_037MA"}, "S2101_C02_039E": {"label": "Estimate!!Percent!!DISABILITY STATUS!!Civilian population 18 years and over for whom poverty status is determined!!With any disability", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C02_039EA,S2101_C02_039M,S2101_C02_039MA"}, "S0503_C01_091E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$25,000 to $34,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_091EA,S0503_C01_091M,S0503_C01_091MA"}, "S0505_C02_103E": {"label": "Estimate!!Foreign-born; Born in Asia!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income!!Mean Supplemental Security Income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C02_103EA,S0505_C02_103M,S0505_C02_103MA"}, "S0503_C03_105E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income!!Mean cash public assistance income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C03_105EA,S0503_C03_105M,S0503_C03_105MA"}, "S0102PR_C01_038E": {"label": "Estimate!!Total!!RESPONSIBILITY FOR GRANDCHILDREN UNDER 18 YEARS!!Population 30 years and over", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_038EA,S0102PR_C01_038M,S0102PR_C01_038MA"}, "S0503_C01_090E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$15,000 to $24,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_090EA,S0503_C01_090M,S0503_C01_090MA"}, "S0503_C03_106E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_106EA,S0503_C03_106M,S0503_C03_106MA"}, "S0505_C02_102E": {"label": "Estimate!!Foreign-born; Born in Asia!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_102EA,S0505_C02_102M,S0505_C02_102MA"}, "S2404_C03_009E": {"label": "Estimate!!Percent Male!!Full-time, year-round civilian employed population 16 years and over!!Transportation and warehousing, and utilities:", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2404", "limit": 0, "attributes": "S2404_C03_009EA,S2404_C03_009M,S2404_C03_009MA"}, "S2703_C02_011E": {"label": "Estimate!!Private Coverage!!Civilian noninstitutionalized population!!COVERAGE ALONE OR IN COMBINATION!!Tricare/military health insurance alone or in combination!!Under 19", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2703", "limit": 0, "attributes": "S2703_C02_011EA,S2703_C02_011M,S2703_C02_011MA"}, "S2404_C03_008E": {"label": "Estimate!!Percent Male!!Full-time, year-round civilian employed population 16 years and over!!Retail trade", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2404", "limit": 0, "attributes": "S2404_C03_008EA,S2404_C03_008M,S2404_C03_008MA"}, "S2703_C02_012E": {"label": "Estimate!!Private Coverage!!Civilian noninstitutionalized population!!COVERAGE ALONE OR IN COMBINATION!!Tricare/military health insurance alone or in combination!!19 to 64 years", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2703", "limit": 0, "attributes": "S2703_C02_012EA,S2703_C02_012M,S2703_C02_012MA"}, "S2703_C02_010E": {"label": "Estimate!!Private Coverage!!Civilian noninstitutionalized population!!COVERAGE ALONE OR IN COMBINATION!!Tricare/military health insurance alone or in combination", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2703", "limit": 0, "attributes": "S2703_C02_010EA,S2703_C02_010M,S2703_C02_010MA"}, "S2703_C02_015E": {"label": "Estimate!!Private Coverage!!Civilian noninstitutionalized population!!PRIVATE HEALTH INSURANCE ALONE OR IN COMBINATION!!At or above 138 percent of the poverty threshold", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2703", "limit": 0, "attributes": "S2703_C02_015EA,S2703_C02_015M,S2703_C02_015MA"}, "S2703_C02_016E": {"label": "Estimate!!Private Coverage!!Civilian noninstitutionalized population!!PRIVATE HEALTH INSURANCE ALONE OR IN COMBINATION!!Worked full-time, year-round (19-64 years)", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2703", "limit": 0, "attributes": "S2703_C02_016EA,S2703_C02_016M,S2703_C02_016MA"}, "S2703_C02_013E": {"label": "Estimate!!Private Coverage!!Civilian noninstitutionalized population!!COVERAGE ALONE OR IN COMBINATION!!Tricare/military health insurance alone or in combination!!65 years and over", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2703", "limit": 0, "attributes": "S2703_C02_013EA,S2703_C02_013M,S2703_C02_013MA"}, "S2703_C02_014E": {"label": "Estimate!!Private Coverage!!Civilian noninstitutionalized population!!PRIVATE HEALTH INSURANCE ALONE OR IN COMBINATION!!Below 138 percent of the poverty threshold", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2703", "limit": 0, "attributes": "S2703_C02_014EA,S2703_C02_014M,S2703_C02_014MA"}, "S2703_C02_019E": {"label": "Estimate!!Private Coverage!!Civilian noninstitutionalized population!!PRIVATE HEALTH INSURANCE ALONE OR IN COMBINATION!!19 to 25 years", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2703", "limit": 0, "attributes": "S2703_C02_019EA,S2703_C02_019M,S2703_C02_019MA"}, "S2404_C03_001E": {"label": "Estimate!!Percent Male!!Full-time, year-round civilian employed population 16 years and over", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2404", "limit": 0, "attributes": "S2404_C03_001EA,S2404_C03_001M,S2404_C03_001MA"}, "S2703_C02_017E": {"label": "Estimate!!Private Coverage!!Civilian noninstitutionalized population!!PRIVATE HEALTH INSURANCE ALONE OR IN COMBINATION!!Under 6", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2703", "limit": 0, "attributes": "S2703_C02_017EA,S2703_C02_017M,S2703_C02_017MA"}, "S2404_C03_003E": {"label": "Estimate!!Percent Male!!Full-time, year-round civilian employed population 16 years and over!!Agriculture, forestry, fishing and hunting, and mining:!!Agriculture, forestry, fishing and hunting", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2404", "limit": 0, "attributes": "S2404_C03_003EA,S2404_C03_003M,S2404_C03_003MA"}, "S0502_C03_059E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_059EA,S0502_C03_059M,S0502_C03_059MA"}, "S2703_C02_018E": {"label": "Estimate!!Private Coverage!!Civilian noninstitutionalized population!!PRIVATE HEALTH INSURANCE ALONE OR IN COMBINATION!!6 to 18 years", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2703", "limit": 0, "attributes": "S2703_C02_018EA,S2703_C02_018M,S2703_C02_018MA"}, "S2404_C03_002E": {"label": "Estimate!!Percent Male!!Full-time, year-round civilian employed population 16 years and over!!Agriculture, forestry, fishing and hunting, and mining:", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2404", "limit": 0, "attributes": "S2404_C03_002EA,S2404_C03_002M,S2404_C03_002MA"}, "S2101_C02_040E": {"label": "Estimate!!Percent!!DISABILITY STATUS!!Civilian population 18 years and over for whom poverty status is determined!!Without a disability", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C02_040EA,S2101_C02_040M,S2101_C02_040MA"}, "S1502_C04_018E": {"label": "Estimate!!Percent Male!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!40 to 64 years!!Arts, Humanities, and Others", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "float", "group": "S1502", "limit": 0, "attributes": "S1502_C04_018EA,S1502_C04_018M,S1502_C04_018MA"}, "S2404_C03_005E": {"label": "Estimate!!Percent Male!!Full-time, year-round civilian employed population 16 years and over!!Construction", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2404", "limit": 0, "attributes": "S2404_C03_005EA,S2404_C03_005M,S2404_C03_005MA"}, "S1502_C04_019E": {"label": "Estimate!!Percent Male!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!65 years and over", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C04_019EA,S1502_C04_019M,S1502_C04_019MA"}, "S2404_C03_004E": {"label": "Estimate!!Percent Male!!Full-time, year-round civilian employed population 16 years and over!!Agriculture, forestry, fishing and hunting, and mining:!!Mining, quarrying, and oil and gas extraction", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2404", "limit": 0, "attributes": "S2404_C03_004EA,S2404_C03_004M,S2404_C03_004MA"}, "S2404_C03_007E": {"label": "Estimate!!Percent Male!!Full-time, year-round civilian employed population 16 years and over!!Wholesale trade", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2404", "limit": 0, "attributes": "S2404_C03_007EA,S2404_C03_007M,S2404_C03_007MA"}, "S2404_C03_006E": {"label": "Estimate!!Percent Male!!Full-time, year-round civilian employed population 16 years and over!!Manufacturing", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2404", "limit": 0, "attributes": "S2404_C03_006EA,S2404_C03_006M,S2404_C03_006MA"}, "S0502_C03_065E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Civilian employed population 16 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C03_065EA,S0502_C03_065M,S0502_C03_065MA"}, "S0102PR_C01_043E": {"label": "Estimate!!Total!!DISABILITY STATUS!!Civilian noninstitutionalized population", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_043EA,S0102PR_C01_043M,S0102PR_C01_043MA"}, "S0504_C04_096E": {"label": "Estimate!!Foreign-born; Born in Oceania!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!Median earnings (dollars) for full-time, year-round workers!!Female", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C04_096EA,S0504_C04_096M,S0504_C04_096MA"}, "S0103_C01_075E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C01_075EA,S0103_C01_075M,S0103_C01_075MA"}, "S0502_C03_066E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Private wage and salary workers", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_066EA,S0502_C03_066M,S0502_C03_066MA"}, "S0102PR_C01_044E": {"label": "Estimate!!Total!!DISABILITY STATUS!!Civilian noninstitutionalized population!!With any disability", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_044EA,S0102PR_C01_044M,S0102PR_C01_044MA"}, "S0504_C04_097E": {"label": "Estimate!!Foreign-born; Born in Oceania!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C04_097EA,S0504_C04_097M,S0504_C04_097MA"}, "S0103_C01_074E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings!!Mean earnings (dollars)", "concept": "Population 65 Years and Over in the United States", "predicateType": "int", "group": "S0103", "limit": 0, "attributes": "S0103_C01_074EA,S0103_C01_074M,S0103_C01_074MA"}, "S0102PR_C01_045E": {"label": "Estimate!!Total!!DISABILITY STATUS!!Civilian noninstitutionalized population!!No disability", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_045EA,S0102PR_C01_045M,S0102PR_C01_045MA"}, "S0502_C03_063E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Armed Forces", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_063EA,S0502_C03_063M,S0502_C03_063MA"}, "S0504_C04_098E": {"label": "Estimate!!Foreign-born; Born in Oceania!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_098EA,S0504_C04_098M,S0504_C04_098MA"}, "S0103_C01_073E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C01_073EA,S0103_C01_073M,S0103_C01_073MA"}, "S0502_C03_064E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!EMPLOYMENT STATUS!!Population 16 years and over!!Not in labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_064EA,S0502_C03_064M,S0502_C03_064MA"}, "S0102PR_C01_046E": {"label": "Estimate!!Total!!RESIDENCE 1 YEAR AGO!!Population 1 year and over", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_046EA,S0102PR_C01_046M,S0102PR_C01_046MA"}, "S0504_C04_099E": {"label": "Estimate!!Foreign-born; Born in Oceania!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings!!Mean earnings (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C04_099EA,S0504_C04_099M,S0504_C04_099MA"}, "S0103_C01_072E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households", "concept": "Population 65 Years and Over in the United States", "predicateType": "int", "group": "S0103", "limit": 0, "attributes": "S0103_C01_072EA,S0103_C01_072M,S0103_C01_072MA"}, "S0502_C03_069E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Unpaid family workers", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_069EA,S0502_C03_069M,S0502_C03_069MA"}, "S0504_C04_092E": {"label": "Estimate!!Foreign-born; Born in Oceania!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$35,000 to $49,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_092EA,S0504_C04_092M,S0504_C04_092MA"}, "S1502_C04_022E": {"label": "Estimate!!Percent Male!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!65 years and over!!Business", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "float", "group": "S1502", "limit": 0, "attributes": "S1502_C04_022EA,S1502_C04_022M,S1502_C04_022MA"}, "S0103_C01_079E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C01_079EA,S0103_C01_079M,S0103_C01_079MA"}, "S0102PR_C01_040E": {"label": "Estimate!!Total!!RESPONSIBILITY FOR GRANDCHILDREN UNDER 18 YEARS!!Population 30 years and over!!Living with grandchild(ren)!!Responsible for grandchild(ren)", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_040EA,S0102PR_C01_040M,S0102PR_C01_040MA"}, "S0504_C04_093E": {"label": "Estimate!!Foreign-born; Born in Oceania!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$50,000 to $74,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_093EA,S0504_C04_093M,S0504_C04_093MA"}, "S1502_C04_023E": {"label": "Estimate!!Percent Male!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!65 years and over!!Education", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "float", "group": "S1502", "limit": 0, "attributes": "S1502_C04_023EA,S1502_C04_023M,S1502_C04_023MA"}, "S0103_C01_078E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income!!Mean Supplemental Security Income (dollars)", "concept": "Population 65 Years and Over in the United States", "predicateType": "int", "group": "S0103", "limit": 0, "attributes": "S0103_C01_078EA,S0103_C01_078M,S0103_C01_078MA"}, "S0502_C03_067E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Government workers", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_067EA,S0502_C03_067M,S0502_C03_067MA"}, "S0102PR_C01_041E": {"label": "Estimate!!Total!!VETERAN STATUS!!Civilian population 18 years and over", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_041EA,S0102PR_C01_041M,S0102PR_C01_041MA"}, "S0504_C04_094E": {"label": "Estimate!!Foreign-born; Born in Oceania!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$75,000 or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_094EA,S0504_C04_094M,S0504_C04_094MA"}, "S0103_C01_077E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C01_077EA,S0103_C01_077M,S0103_C01_077MA"}, "S1502_C04_024E": {"label": "Estimate!!Percent Male!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!65 years and over!!Arts, Humanities, and Others", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "float", "group": "S1502", "limit": 0, "attributes": "S1502_C04_024EA,S1502_C04_024M,S1502_C04_024MA"}, "S0502_C03_068E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Self-employed workers in own not incorporated business", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_068EA,S0502_C03_068M,S0502_C03_068MA"}, "S0102PR_C01_042E": {"label": "Estimate!!Total!!VETERAN STATUS!!Civilian population 18 years and over!!Civilian veteran", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_042EA,S0102PR_C01_042M,S0102PR_C01_042MA"}, "S0504_C04_095E": {"label": "Estimate!!Foreign-born; Born in Oceania!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!Median earnings (dollars) for full-time, year-round workers!!Male", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C04_095EA,S0504_C04_095M,S0504_C04_095MA"}, "S0103_C01_076E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income!!Mean Social Security income (dollars)", "concept": "Population 65 Years and Over in the United States", "predicateType": "int", "group": "S0103", "limit": 0, "attributes": "S0103_C01_076EA,S0103_C01_076M,S0103_C01_076MA"}, "S1601_C04_003E": {"label": "Estimate!!Percent speak English only or speak English \"very well\"!!Percent of specified language speakers!!Population 5 years and over!!Speak a language other than English", "concept": "Language Spoken at Home", "predicateType": "float", "group": "S1601", "limit": 0, "attributes": "S1601_C04_003EA,S1601_C04_003M,S1601_C04_003MA"}, "S1601_C04_002E": {"label": "Estimate!!Percent speak English only or speak English \"very well\"!!Percent of specified language speakers!!Population 5 years and over!!Speak only English", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C04_002EA,S1601_C04_002M,S1601_C04_002MA"}, "S0504_C04_090E": {"label": "Estimate!!Foreign-born; Born in Oceania!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$15,000 to $24,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_090EA,S0504_C04_090M,S0504_C04_090MA"}, "S1601_C04_001E": {"label": "Estimate!!Percent speak English only or speak English \"very well\"!!Percent of specified language speakers!!Population 5 years and over", "concept": "Language Spoken at Home", "predicateType": "float", "group": "S1601", "limit": 0, "attributes": "S1601_C04_001EA,S1601_C04_001M,S1601_C04_001MA"}, "S1502_C04_020E": {"label": "Estimate!!Percent Male!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!65 years and over!!Science and Engineering", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "float", "group": "S1502", "limit": 0, "attributes": "S1502_C04_020EA,S1502_C04_020M,S1502_C04_020MA"}, "S0504_C04_091E": {"label": "Estimate!!Foreign-born; Born in Oceania!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$25,000 to $34,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C04_091EA,S0504_C04_091M,S0504_C04_091MA"}, "S1502_C04_021E": {"label": "Estimate!!Percent Male!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!65 years and over!!Science and Engineering Related Fields", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "float", "group": "S1502", "limit": 0, "attributes": "S1502_C04_021EA,S1502_C04_021M,S1502_C04_021MA"}, "S0102PR_C01_047E": {"label": "Estimate!!Total!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Same house", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_047EA,S0102PR_C01_047M,S0102PR_C01_047MA"}, "S0502_C03_061E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_061EA,S0502_C03_061M,S0502_C03_061MA"}, "S0103_C01_071E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Civilian population 16 years and over!!Not in labor force", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C01_071EA,S0103_C01_071M,S0103_C01_071MA"}, "S0102PR_C01_048E": {"label": "Estimate!!Total!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different house in Puerto Rico or the United States", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_048EA,S0102PR_C01_048M,S0102PR_C01_048MA"}, "S0502_C03_062E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed!!Percent of civilian labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_062EA,S0502_C03_062M,S0502_C03_062MA"}, "S0103_C01_070E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Civilian population 16 years and over!!In labor force!!Unemployed!!Percent of civilian labor force", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C01_070EA,S0103_C01_070M,S0103_C01_070MA"}, "S2703_C02_020E": {"label": "Estimate!!Private Coverage!!Civilian noninstitutionalized population!!PRIVATE HEALTH INSURANCE ALONE OR IN COMBINATION!!26 to 34 years", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2703", "limit": 0, "attributes": "S2703_C02_020EA,S2703_C02_020M,S2703_C02_020MA"}, "S0102PR_C01_049E": {"label": "Estimate!!Total!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different house in Puerto Rico or the United States!!In Puerto Rico", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_049EA,S0102PR_C01_049M,S0102PR_C01_049MA"}, "S1702_C05_050E": {"label": "Estimate!!Total!!Female householder, no spouse present!!Families!!ALL FAMILIES WITH INCOME BELOW THE FOLLOWING POVERTY RATIOS!!500 percent of poverty level", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C05_050EA,S1702_C05_050M,S1702_C05_050MA"}, "S0502_C03_060E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Employed", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_060EA,S0502_C03_060M,S0502_C03_060MA"}, "S1702_C05_024E": {"label": "Estimate!!Total!!Female householder, no spouse present!!Families!!NUMBER OF RELATED CHILDREN OF THE HOUSEHOLDER UNDER 18 YEARS!!No child", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C05_024EA,S1702_C05_024M,S1702_C05_024MA"}, "S1702_C05_023E": {"label": "Estimate!!Total!!Female householder, no spouse present!!Families!!EDUCATIONAL ATTAINMENT OF HOUSEHOLDER!!Bachelor's degree or higher", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C05_023EA,S1702_C05_023M,S1702_C05_023MA"}, "S0503_C01_071E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!OCCUPATION!!Sales and office occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_071EA,S0503_C01_071M,S0503_C01_071MA"}, "S1702_C05_026E": {"label": "Estimate!!Total!!Female householder, no spouse present!!Families!!NUMBER OF RELATED CHILDREN OF THE HOUSEHOLDER UNDER 18 YEARS!!3 or 4 children", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C05_026EA,S1702_C05_026M,S1702_C05_026MA"}, "S0505_C02_119E": {"label": "Estimate!!Foreign-born; Born in Asia!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_119EA,S0505_C02_119M,S0505_C02_119MA"}, "S0503_C01_070E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!OCCUPATION!!Service occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_070EA,S0503_C01_070M,S0503_C01_070MA"}, "S1702_C05_025E": {"label": "Estimate!!Total!!Female householder, no spouse present!!Families!!NUMBER OF RELATED CHILDREN OF THE HOUSEHOLDER UNDER 18 YEARS!!1 or 2 children", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C05_025EA,S1702_C05_025M,S1702_C05_025MA"}, "S0505_C02_118E": {"label": "Estimate!!Foreign-born; Born in Asia!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_118EA,S0505_C02_118M,S0505_C02_118MA"}, "S2413_C04_018E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Civilian employed population 16 years and over with earnings!!Professional, scientific, and management, and administrative and waste management services:!!Management of companies and enterprises", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2413", "limit": 0, "attributes": "S2413_C04_018EA,S2413_C04_018M,S2413_C04_018MA"}, "S0503_C01_073E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!OCCUPATION!!Production, transportation, and material moving occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_073EA,S0503_C01_073M,S0503_C01_073MA"}, "S1702_C05_020E": {"label": "Estimate!!Total!!Female householder, no spouse present!!Families!!EDUCATIONAL ATTAINMENT OF HOUSEHOLDER!!Less than high school graduate", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C05_020EA,S1702_C05_020M,S1702_C05_020MA"}, "S2503_C05_040E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$50,000 to $74,999!!30 percent or more", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C05_040EA,S2503_C05_040M,S2503_C05_040MA"}, "S2413_C04_019E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Civilian employed population 16 years and over with earnings!!Professional, scientific, and management, and administrative and waste management services:!!Administrative and support and waste management services", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2413", "limit": 0, "attributes": "S2413_C04_019EA,S2413_C04_019M,S2413_C04_019MA"}, "S0503_C01_072E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!OCCUPATION!!Natural resources, construction, and maintenance occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_072EA,S0503_C01_072M,S0503_C01_072MA"}, "S2503_C05_041E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$75,000 or more", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C05_041EA,S2503_C05_041M,S2503_C05_041MA"}, "S0503_C01_075E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Construction", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_075EA,S0503_C01_075M,S0503_C01_075MA"}, "S1702_C05_022E": {"label": "Estimate!!Total!!Female householder, no spouse present!!Families!!EDUCATIONAL ATTAINMENT OF HOUSEHOLDER!!Some college, associate's degree", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C05_022EA,S1702_C05_022M,S1702_C05_022MA"}, "S2503_C05_042E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$75,000 or more!!Less than 20 percent", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C05_042EA,S2503_C05_042M,S2503_C05_042MA"}, "S0503_C01_074E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Agriculture, forestry, fishing and hunting, and mining", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_074EA,S0503_C01_074M,S0503_C01_074MA"}, "S1702_C05_021E": {"label": "Estimate!!Total!!Female householder, no spouse present!!Families!!EDUCATIONAL ATTAINMENT OF HOUSEHOLDER!!High school graduate (includes equivalency)", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C05_021EA,S1702_C05_021M,S1702_C05_021MA"}, "S2503_C05_043E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$75,000 or more!!20 to 29 percent", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C05_043EA,S2503_C05_043M,S2503_C05_043MA"}, "S0502_C03_025E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_025EA,S0502_C03_025M,S0502_C03_025MA"}, "S0503_C01_077E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Wholesale trade", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_077EA,S0503_C01_077M,S0503_C01_077MA"}, "S2503_C05_044E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$75,000 or more!!30 percent or more", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C05_044EA,S2503_C05_044M,S2503_C05_044MA"}, "S2413_C04_014E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Civilian employed population 16 years and over with earnings!!Finance and insurance, and real estate and rental and leasing:!!Finance and insurance", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2413", "limit": 0, "attributes": "S2413_C04_014EA,S2413_C04_014M,S2413_C04_014MA"}, "S0103_C01_047E": {"label": "Estimate!!Total!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Same house", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C01_047EA,S0103_C01_047M,S0103_C01_047MA"}, "S0503_C01_076E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Manufacturing", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_076EA,S0503_C01_076M,S0503_C01_076MA"}, "S2413_C04_015E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Civilian employed population 16 years and over with earnings!!Finance and insurance, and real estate and rental and leasing:!!Real estate and rental and leasing", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2413", "limit": 0, "attributes": "S2413_C04_015EA,S2413_C04_015M,S2413_C04_015MA"}, "S2503_C05_045E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Zero or negative income", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C05_045EA,S2503_C05_045M,S2503_C05_045MA"}, "S0103_C01_046E": {"label": "Estimate!!Total!!RESIDENCE 1 YEAR AGO!!Population 1 year and over", "concept": "Population 65 Years and Over in the United States", "predicateType": "int", "group": "S0103", "limit": 0, "attributes": "S0103_C01_046EA,S0103_C01_046M,S0103_C01_046MA"}, "S0502_C03_026E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_026EA,S0502_C03_026M,S0502_C03_026MA"}, "S0503_C01_079E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Transportation and warehousing, and utilities", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_079EA,S0503_C01_079M,S0503_C01_079MA"}, "S0502_C03_023E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_023EA,S0502_C03_023M,S0502_C03_023MA"}, "S2413_C04_016E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Civilian employed population 16 years and over with earnings!!Professional, scientific, and management, and administrative and waste management services:", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2413", "limit": 0, "attributes": "S2413_C04_016EA,S2413_C04_016M,S2413_C04_016MA"}, "S2503_C05_046E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!No cash rent", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C05_046EA,S2503_C05_046M,S2503_C05_046MA"}, "S0103_C01_045E": {"label": "Estimate!!Total!!DISABILITY STATUS!!Civilian noninstitutionalized population!!No disability", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C01_045EA,S0103_C01_045M,S0103_C01_045MA"}, "S0502_C03_024E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_024EA,S0502_C03_024M,S0502_C03_024MA"}, "S0503_C01_078E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Retail trade", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_078EA,S0503_C01_078M,S0503_C01_078MA"}, "S2413_C04_017E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Civilian employed population 16 years and over with earnings!!Professional, scientific, and management, and administrative and waste management services:!!Professional, scientific, and technical services", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2413", "limit": 0, "attributes": "S2413_C04_017EA,S2413_C04_017M,S2413_C04_017MA"}, "S0102PR_C01_050E": {"label": "Estimate!!Total!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different house in Puerto Rico or the United States!!In Puerto Rico!!Same municipio", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_050EA,S0102PR_C01_050M,S0102PR_C01_050MA"}, "S0103_C01_044E": {"label": "Estimate!!Total!!DISABILITY STATUS!!Civilian noninstitutionalized population!!With any disability", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C01_044EA,S0103_C01_044M,S0103_C01_044MA"}, "S1702_C05_028E": {"label": "Estimate!!Total!!Female householder, no spouse present!!Families!!NUMBER OF OWN CHILDREN OF THE HOUSEHOLDER UNDER 18 YEARS!!No own child of the householder", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C05_028EA,S1702_C05_028M,S1702_C05_028MA"}, "S2504_C01_035E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!HOUSE HEATING FUEL!!Fuel oil, kerosene, etc.", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C01_035EA,S2504_C01_035M,S2504_C01_035MA"}, "S0502_C03_029E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_029EA,S0502_C03_029M,S0502_C03_029MA"}, "S2413_C04_010E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Civilian employed population 16 years and over with earnings!!Transportation and warehousing, and utilities:!!Transportation and warehousing", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2413", "limit": 0, "attributes": "S2413_C04_010EA,S2413_C04_010M,S2413_C04_010MA"}, "S1702_C05_027E": {"label": "Estimate!!Total!!Female householder, no spouse present!!Families!!NUMBER OF RELATED CHILDREN OF THE HOUSEHOLDER UNDER 18 YEARS!!5 or more children", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C05_027EA,S1702_C05_027M,S1702_C05_027MA"}, "S2504_C01_036E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!HOUSE HEATING FUEL!!Coal or coke", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C01_036EA,S2504_C01_036M,S2504_C01_036MA"}, "S2413_C04_011E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Civilian employed population 16 years and over with earnings!!Transportation and warehousing, and utilities:!!Utilities", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2413", "limit": 0, "attributes": "S2413_C04_011EA,S2413_C04_011M,S2413_C04_011MA"}, "S2504_C01_037E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!HOUSE HEATING FUEL!!All other fuels", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C01_037EA,S2504_C01_037M,S2504_C01_037MA"}, "S0103_C01_049E": {"label": "Estimate!!Total!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different house in the United States!!Same county", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C01_049EA,S0103_C01_049M,S0103_C01_049MA"}, "S2413_C04_012E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Civilian employed population 16 years and over with earnings!!Information", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2413", "limit": 0, "attributes": "S2413_C04_012EA,S2413_C04_012M,S2413_C04_012MA"}, "S0502_C03_027E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_027EA,S0502_C03_027M,S0502_C03_027MA"}, "S1702_C05_029E": {"label": "Estimate!!Total!!Female householder, no spouse present!!Families!!NUMBER OF OWN CHILDREN OF THE HOUSEHOLDER UNDER 18 YEARS!!1 or 2 own children of the householder", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C05_029EA,S1702_C05_029M,S1702_C05_029MA"}, "S2504_C01_038E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!HOUSE HEATING FUEL!!No fuel used", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C01_038EA,S2504_C01_038M,S2504_C01_038MA"}, "S2413_C04_013E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Civilian employed population 16 years and over with earnings!!Finance and insurance, and real estate and rental and leasing:", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2413", "limit": 0, "attributes": "S2413_C04_013EA,S2413_C04_013M,S2413_C04_013MA"}, "S0502_C03_028E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_028EA,S0502_C03_028M,S0502_C03_028MA"}, "S0103_C01_048E": {"label": "Estimate!!Total!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different house in the United States", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C01_048EA,S0103_C01_048M,S0103_C01_048MA"}, "S0102PR_C01_055E": {"label": "Estimate!!Total!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Native", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_055EA,S0102PR_C01_055M,S0102PR_C01_055MA"}, "S2504_C01_031E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!TELEPHONE SERVICE AVAILABLE!!With telephone service", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C01_031EA,S2504_C01_031M,S2504_C01_031MA"}, "S0102PR_C01_056E": {"label": "Estimate!!Total!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_056EA,S0102PR_C01_056M,S0102PR_C01_056MA"}, "S0502_C03_030E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_030EA,S0502_C03_030M,S0502_C03_030MA"}, "S2504_C01_032E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!HOUSE HEATING FUEL!!Utility gas", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C01_032EA,S2504_C01_032M,S2504_C01_032MA"}, "S0102PR_C01_057E": {"label": "Estimate!!Total!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Entered 2010 or later", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_057EA,S0102PR_C01_057M,S0102PR_C01_057MA"}, "S2802_C04_020E": {"label": "Estimate!!Without an Internet Subscription!!With a computer!!Total population in households!!EMPLOYMENT STATUS!!Civilian population 16 years and over!!In labor force!!Employed", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C04_020EA,S2802_C04_020M,S2802_C04_020MA"}, "S2504_C01_033E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!HOUSE HEATING FUEL!!Bottled or tank gas (propane, butane, etc.)", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C01_033EA,S2504_C01_033M,S2504_C01_033MA"}, "S2413_C04_020E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Civilian employed population 16 years and over with earnings!!Educational services, and health care and social assistance:", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2413", "limit": 0, "attributes": "S2413_C04_020EA,S2413_C04_020M,S2413_C04_020MA"}, "S0102PR_C01_058E": {"label": "Estimate!!Total!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Entered 2000 to 2009", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_058EA,S0102PR_C01_058M,S0102PR_C01_058MA"}, "S2504_C01_034E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!HOUSE HEATING FUEL!!Electricity", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C01_034EA,S2504_C01_034M,S2504_C01_034MA"}, "S2413_C04_021E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Civilian employed population 16 years and over with earnings!!Educational services, and health care and social assistance:!!Educational services", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2413", "limit": 0, "attributes": "S2413_C04_021EA,S2413_C04_021M,S2413_C04_021MA"}, "S0502_C03_033E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Foreign-born population!!HOUSEHOLD TYPE!!In married-couple family", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_033EA,S0502_C03_033M,S0502_C03_033MA"}, "S0505_C02_121E": {"label": "Estimate!!Foreign-born; Born in Asia!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_121EA,S0505_C02_121M,S0505_C02_121MA"}, "S0102PR_C01_051E": {"label": "Estimate!!Total!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different house in Puerto Rico or the United States!!In Puerto Rico!!Different municipio", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_051EA,S0102PR_C01_051M,S0102PR_C01_051MA"}, "S2802_C04_022E": {"label": "Estimate!!Without an Internet Subscription!!With a computer!!Total population in households!!EMPLOYMENT STATUS!!Civilian population 16 years and over!!Not in labor force", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C04_022EA,S2802_C04_022M,S2802_C04_022MA"}, "S0103_C01_043E": {"label": "Estimate!!Total!!DISABILITY STATUS!!Civilian noninstitutionalized population", "concept": "Population 65 Years and Over in the United States", "predicateType": "int", "group": "S0103", "limit": 0, "attributes": "S0103_C01_043EA,S0103_C01_043M,S0103_C01_043MA"}, "S0502_C03_034E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Foreign-born population!!HOUSEHOLD TYPE!!In other households", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_034EA,S0502_C03_034M,S0502_C03_034MA"}, "S0102PR_C01_052E": {"label": "Estimate!!Total!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different house in Puerto Rico or the United States!!In the United States", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_052EA,S0102PR_C01_052M,S0102PR_C01_052MA"}, "S0505_C02_120E": {"label": "Estimate!!Foreign-born; Born in Asia!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_120EA,S0505_C02_120M,S0505_C02_120MA"}, "S0103_C01_042E": {"label": "Estimate!!Total!!VETERAN STATUS!!Civilian population 18 years and over!!Civilian veteran", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C01_042EA,S0103_C01_042M,S0103_C01_042MA"}, "S2802_C04_021E": {"label": "Estimate!!Without an Internet Subscription!!With a computer!!Total population in households!!EMPLOYMENT STATUS!!Civilian population 16 years and over!!In labor force!!Unemployed", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C04_021EA,S2802_C04_021M,S2802_C04_021MA"}, "S0502_C03_031E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_031EA,S0502_C03_031M,S0502_C03_031MA"}, "S0102PR_C01_053E": {"label": "Estimate!!Total!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Elsewhere", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_053EA,S0102PR_C01_053M,S0102PR_C01_053MA"}, "S0103_C01_041E": {"label": "Estimate!!Total!!VETERAN STATUS!!Civilian population 18 years and over", "concept": "Population 65 Years and Over in the United States", "predicateType": "int", "group": "S0103", "limit": 0, "attributes": "S0103_C01_041EA,S0103_C01_041M,S0103_C01_041MA"}, "S0502_C03_032E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_032EA,S0502_C03_032M,S0502_C03_032MA"}, "S0102PR_C01_054E": {"label": "Estimate!!Total!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_054EA,S0102PR_C01_054M,S0102PR_C01_054MA"}, "S0103_C01_040E": {"label": "Estimate!!Total!!RESPONSIBILITY FOR GRANDCHILDREN UNDER 18 YEARS!!Population 30 years and over!!Living with grandchild(ren)!!Responsible for grandchild(ren)", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C01_040EA,S0103_C01_040M,S0103_C01_040MA"}, "S2504_C01_030E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!VEHICLES AVAILABLE!!3 or more vehicles available", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C01_030EA,S2504_C01_030M,S2504_C01_030MA"}, "S0505_C02_125E": {"label": "Estimate!!Foreign-born; Born in Asia!!Occupied housing units!!HOUSING TENURE!!Owner-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_125EA,S0505_C02_125M,S0505_C02_125MA"}, "S0505_C02_124E": {"label": "Estimate!!Foreign-born; Born in Asia!!Occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C02_124EA,S0505_C02_124M,S0505_C02_124MA"}, "S0505_C02_123E": {"label": "Estimate!!Foreign-born; Born in Asia!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_123EA,S0505_C02_123M,S0505_C02_123MA"}, "S0505_C02_122E": {"label": "Estimate!!Foreign-born; Born in Asia!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_122EA,S0505_C02_122M,S0505_C02_122MA"}, "S0102PR_C01_059E": {"label": "Estimate!!Total!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Entered before 2000", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_059EA,S0102PR_C01_059M,S0102PR_C01_059MA"}, "S0505_C02_129E": {"label": "Estimate!!Foreign-born; Born in Asia!!Occupied housing units!!ROOMS!!1 room", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_129EA,S0505_C02_129M,S0505_C02_129MA"}, "S0505_C02_128E": {"label": "Estimate!!Foreign-born; Born in Asia!!Occupied housing units!!HOUSING TENURE!!Average household size of renter-occupied unit", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_128EA,S0505_C02_128M,S0505_C02_128MA"}, "S0505_C02_127E": {"label": "Estimate!!Foreign-born; Born in Asia!!Occupied housing units!!HOUSING TENURE!!Average household size of owner-occupied unit", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_127EA,S0505_C02_127M,S0505_C02_127MA"}, "S0505_C02_126E": {"label": "Estimate!!Foreign-born; Born in Asia!!Occupied housing units!!HOUSING TENURE!!Renter-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_126EA,S0505_C02_126M,S0505_C02_126MA"}, "S0503_C01_081E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Finance and insurance, and real estate and rental and leasing", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_081EA,S0503_C01_081M,S0503_C01_081MA"}, "S1702_C05_036E": {"label": "Estimate!!Total!!Female householder, no spouse present!!Families!!NUMBER OF WORKERS IN FAMILY!!No workers", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C05_036EA,S1702_C05_036M,S1702_C05_036MA"}, "S0505_C02_109E": {"label": "Estimate!!Foreign-born; Born in Asia!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!Median Household income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C02_109EA,S0505_C02_109M,S0505_C02_109MA"}, "S0503_C01_080E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Information", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_080EA,S0503_C01_080M,S0503_C01_080MA"}, "S1702_C05_035E": {"label": "Estimate!!Total!!Female householder, no spouse present!!Families!!NUMBER OF PEOPLE IN FAMILY!!7 or more people", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C05_035EA,S1702_C05_035M,S1702_C05_035MA"}, "S0505_C02_108E": {"label": "Estimate!!Foreign-born; Born in Asia!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Food Stamp/SNAP benefits", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_108EA,S0505_C02_108M,S0505_C02_108MA"}, "S0503_C01_083E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Educational services, and health care and social assistance", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_083EA,S0503_C01_083M,S0503_C01_083MA"}, "S1702_C05_038E": {"label": "Estimate!!Total!!Female householder, no spouse present!!Families!!NUMBER OF WORKERS IN FAMILY!!2 workers", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C05_038EA,S1702_C05_038M,S1702_C05_038MA"}, "S0505_C02_107E": {"label": "Estimate!!Foreign-born; Born in Asia!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income!!Mean retirement income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C02_107EA,S0505_C02_107M,S0505_C02_107MA"}, "S0503_C01_082E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Professional, scientific, and management, and administrative and waste management services", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_082EA,S0503_C01_082M,S0503_C01_082MA"}, "S1702_C05_037E": {"label": "Estimate!!Total!!Female householder, no spouse present!!Families!!NUMBER OF WORKERS IN FAMILY!!1 worker", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C05_037EA,S1702_C05_037M,S1702_C05_037MA"}, "S0505_C02_106E": {"label": "Estimate!!Foreign-born; Born in Asia!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_106EA,S0505_C02_106M,S0505_C02_106MA"}, "S0503_C01_085E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Other services (except public administration)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_085EA,S0503_C01_085M,S0503_C01_085MA"}, "S1702_C05_032E": {"label": "Estimate!!Total!!Female householder, no spouse present!!Families!!NUMBER OF PEOPLE IN FAMILY!!2 people", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C05_032EA,S1702_C05_032M,S1702_C05_032MA"}, "S0503_C01_084E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Arts, entertainment, and recreation, and accommodation and food services", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_084EA,S0503_C01_084M,S0503_C01_084MA"}, "S1702_C05_031E": {"label": "Estimate!!Total!!Female householder, no spouse present!!Families!!NUMBER OF OWN CHILDREN OF THE HOUSEHOLDER UNDER 18 YEARS!!5 or more own children of the householder", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C05_031EA,S1702_C05_031M,S1702_C05_031MA"}, "S0503_C01_087E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C01_087EA,S0503_C01_087M,S0503_C01_087MA"}, "S1702_C05_034E": {"label": "Estimate!!Total!!Female householder, no spouse present!!Families!!NUMBER OF PEOPLE IN FAMILY!!5 or 6 people", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C05_034EA,S1702_C05_034M,S1702_C05_034MA"}, "S2503_C05_030E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$20,000 to $34,999!!Less than 20 percent", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C05_030EA,S2503_C05_030M,S2503_C05_030MA"}, "S0503_C01_086E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Public administration", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_086EA,S0503_C01_086M,S0503_C01_086MA"}, "S1702_C05_033E": {"label": "Estimate!!Total!!Female householder, no spouse present!!Families!!NUMBER OF PEOPLE IN FAMILY!!3 or 4 people", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C05_033EA,S1702_C05_033M,S1702_C05_033MA"}, "S2503_C05_031E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$20,000 to $34,999!!20 to 29 percent", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C05_031EA,S2503_C05_031M,S2503_C05_031MA"}, "S0503_C01_089E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$10,000 to $14,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_089EA,S0503_C01_089M,S0503_C01_089MA"}, "S2404_C03_025E": {"label": "Estimate!!Percent Male!!Full-time, year-round civilian employed population 16 years and over!!Arts, entertainment, and recreation, and accommodation and food services:!!Accommodation and food services", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2404", "limit": 0, "attributes": "S2404_C03_025EA,S2404_C03_025M,S2404_C03_025MA"}, "S2802_C04_014E": {"label": "Estimate!!Without an Internet Subscription!!With a computer!!Total population in households!!EDUCATIONAL ATTAINMENT!!Household population 25 years and over", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C04_014EA,S2802_C04_014M,S2802_C04_014MA"}, "S2413_C04_026E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Civilian employed population 16 years and over with earnings!!Other services, except public administration", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2413", "limit": 0, "attributes": "S2413_C04_026EA,S2413_C04_026M,S2413_C04_026MA"}, "S2503_C05_032E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$20,000 to $34,999!!30 percent or more", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C05_032EA,S2503_C05_032M,S2503_C05_032MA"}, "S0502_C03_037E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!MARITAL STATUS!!Population 15 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C03_037EA,S0502_C03_037M,S0502_C03_037MA"}, "S0103_C01_059E": {"label": "Estimate!!Total!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Entered before 2000", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C01_059EA,S0103_C01_059M,S0103_C01_059MA"}, "S0503_C01_088E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$1 to $9,999 or loss", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C01_088EA,S0503_C01_088M,S0503_C01_088MA"}, "S2404_C03_024E": {"label": "Estimate!!Percent Male!!Full-time, year-round civilian employed population 16 years and over!!Arts, entertainment, and recreation, and accommodation and food services:!!Arts, entertainment, and recreation", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2404", "limit": 0, "attributes": "S2404_C03_024EA,S2404_C03_024M,S2404_C03_024MA"}, "S0102PR_C01_060E": {"label": "Estimate!!Total!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Naturalized U.S. citizen", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_060EA,S0102PR_C01_060M,S0102PR_C01_060MA"}, "S2802_C04_013E": {"label": "Estimate!!Without an Internet Subscription!!With a computer!!Total population in households!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C04_013EA,S2802_C04_013M,S2802_C04_013MA"}, "S2413_C04_027E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Civilian employed population 16 years and over with earnings!!Public administration", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2413", "limit": 0, "attributes": "S2413_C04_027EA,S2413_C04_027M,S2413_C04_027MA"}, "S2503_C05_033E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$35,000 to $49,999", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C05_033EA,S2503_C05_033M,S2503_C05_033MA"}, "S0103_C01_058E": {"label": "Estimate!!Total!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Entered 2000 to 2009", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C01_058EA,S0103_C01_058M,S0103_C01_058MA"}, "S0502_C03_038E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_038EA,S0502_C03_038M,S0502_C03_038MA"}, "S0502_C03_035E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Foreign-born population!!Average household size", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_035EA,S0502_C03_035M,S0502_C03_035MA"}, "S2802_C04_016E": {"label": "Estimate!!Without an Internet Subscription!!With a computer!!Total population in households!!EDUCATIONAL ATTAINMENT!!Household population 25 years and over!!High school graduate (includes equivalency), some college or associate's degree", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C04_016EA,S2802_C04_016M,S2802_C04_016MA"}, "S0102PR_C01_061E": {"label": "Estimate!!Total!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Not a U.S. citizen", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_061EA,S0102PR_C01_061M,S0102PR_C01_061MA"}, "S2404_C03_027E": {"label": "Estimate!!Percent Male!!Full-time, year-round civilian employed population 16 years and over!!Public administration", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2404", "limit": 0, "attributes": "S2404_C03_027EA,S2404_C03_027M,S2404_C03_027MA"}, "S2503_C05_034E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$35,000 to $49,999!!Less than 20 percent", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C05_034EA,S2503_C05_034M,S2503_C05_034MA"}, "S0103_C01_057E": {"label": "Estimate!!Total!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Entered 2010 or later", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C01_057EA,S0103_C01_057M,S0103_C01_057MA"}, "S0502_C03_036E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!Foreign-born population!!Average family size", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_036EA,S0502_C03_036M,S0502_C03_036MA"}, "S2404_C03_026E": {"label": "Estimate!!Percent Male!!Full-time, year-round civilian employed population 16 years and over!!Other services, except public administration", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2404", "limit": 0, "attributes": "S2404_C03_026EA,S2404_C03_026M,S2404_C03_026MA"}, "S0102PR_C01_062E": {"label": "Estimate!!Total!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_062EA,S0102PR_C01_062M,S0102PR_C01_062MA"}, "S2802_C04_015E": {"label": "Estimate!!Without an Internet Subscription!!With a computer!!Total population in households!!EDUCATIONAL ATTAINMENT!!Household population 25 years and over!!Less than high school graduate or equivalency", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C04_015EA,S2802_C04_015M,S2802_C04_015MA"}, "S2503_C05_035E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$35,000 to $49,999!!20 to 29 percent", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C05_035EA,S2503_C05_035M,S2503_C05_035MA"}, "S0103_C01_056E": {"label": "Estimate!!Total!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born", "concept": "Population 65 Years and Over in the United States", "predicateType": "int", "group": "S0103", "limit": 0, "attributes": "S0103_C01_056EA,S0103_C01_056M,S0103_C01_056MA"}, "S2503_C05_036E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$35,000 to $49,999!!30 percent or more", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C05_036EA,S2503_C05_036M,S2503_C05_036MA"}, "S2802_C04_018E": {"label": "Estimate!!Without an Internet Subscription!!With a computer!!Total population in households!!EMPLOYMENT STATUS!!Civilian population 16 years and over", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C04_018EA,S2802_C04_018M,S2802_C04_018MA"}, "S2413_C04_022E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Civilian employed population 16 years and over with earnings!!Educational services, and health care and social assistance:!!Health care and social assistance", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2413", "limit": 0, "attributes": "S2413_C04_022EA,S2413_C04_022M,S2413_C04_022MA"}, "S2503_C05_037E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$50,000 to $74,999", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C05_037EA,S2503_C05_037M,S2503_C05_037MA"}, "S2802_C04_017E": {"label": "Estimate!!Without an Internet Subscription!!With a computer!!Total population in households!!EDUCATIONAL ATTAINMENT!!Household population 25 years and over!!Bachelor's degree or higher", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C04_017EA,S2802_C04_017M,S2802_C04_017MA"}, "S1702_C05_039E": {"label": "Estimate!!Total!!Female householder, no spouse present!!Families!!NUMBER OF WORKERS IN FAMILY!!3 or more workers", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C05_039EA,S1702_C05_039M,S1702_C05_039MA"}, "S2413_C04_023E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Civilian employed population 16 years and over with earnings!!Arts, entertainment, and recreation, and accommodation and food services:", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2413", "limit": 0, "attributes": "S2413_C04_023EA,S2413_C04_023M,S2413_C04_023MA"}, "S2503_C05_038E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$50,000 to $74,999!!Less than 20 percent", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C05_038EA,S2503_C05_038M,S2503_C05_038MA"}, "S2413_C04_024E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Civilian employed population 16 years and over with earnings!!Arts, entertainment, and recreation, and accommodation and food services:!!Arts, entertainment, and recreation", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2413", "limit": 0, "attributes": "S2413_C04_024EA,S2413_C04_024M,S2413_C04_024MA"}, "S0502_C03_039E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_039EA,S0502_C03_039M,S0502_C03_039MA"}, "S2503_C05_039E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$50,000 to $74,999!!20 to 29 percent", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C05_039EA,S2503_C05_039M,S2503_C05_039MA"}, "S2802_C04_019E": {"label": "Estimate!!Without an Internet Subscription!!With a computer!!Total population in households!!EMPLOYMENT STATUS!!Civilian population 16 years and over!!In labor force", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C04_019EA,S2802_C04_019M,S2802_C04_019MA"}, "S2413_C04_025E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Civilian employed population 16 years and over with earnings!!Arts, entertainment, and recreation, and accommodation and food services:!!Accommodation and food services", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2413", "limit": 0, "attributes": "S2413_C04_025EA,S2413_C04_025M,S2413_C04_025MA"}, "S0502_C03_041E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_041EA,S0502_C03_041M,S0502_C03_041MA"}, "S0102PR_C01_067E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_067EA,S0102PR_C01_067M,S0102PR_C01_067MA"}, "S2503_C05_028E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than $20,000!!30 percent or more", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C05_028EA,S2503_C05_028M,S2503_C05_028MA"}, "S0103_C01_051E": {"label": "Estimate!!Total!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different house in the United States!!Different county!!Same state", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C01_051EA,S0103_C01_051M,S0103_C01_051MA"}, "S1502_C04_002E": {"label": "Estimate!!Percent Male!!Total population 25 years and over with a Bachelor's degree or higher!!Science and Engineering", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "float", "group": "S1502", "limit": 0, "attributes": "S1502_C04_002EA,S1502_C04_002M,S1502_C04_002MA"}, "S2503_C05_029E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$20,000 to $34,999", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C05_029EA,S2503_C05_029M,S2503_C05_029MA"}, "S0102PR_C01_068E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_068EA,S0102PR_C01_068M,S0102PR_C01_068MA"}, "S0502_C03_042E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C03_042EA,S0502_C03_042M,S0502_C03_042MA"}, "S0103_C01_050E": {"label": "Estimate!!Total!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different house in the United States!!Different county", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C01_050EA,S0103_C01_050M,S0103_C01_050MA"}, "S1502_C04_003E": {"label": "Estimate!!Percent Male!!Total population 25 years and over with a Bachelor's degree or higher!!Science and Engineering Related Fields", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "float", "group": "S1502", "limit": 0, "attributes": "S1502_C04_003EA,S1502_C04_003M,S1502_C04_003MA"}, "S0102PR_C01_069E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Employed", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_069EA,S0102PR_C01_069M,S0102PR_C01_069MA"}, "S1502_C04_004E": {"label": "Estimate!!Percent Male!!Total population 25 years and over with a Bachelor's degree or higher!!Business", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "float", "group": "S1502", "limit": 0, "attributes": "S1502_C04_004EA,S1502_C04_004M,S1502_C04_004MA"}, "S0502_C03_040E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!MARITAL STATUS!!Population 15 years and over!!Divorced or separated", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_040EA,S0502_C03_040M,S0502_C03_040MA"}, "S1502_C04_005E": {"label": "Estimate!!Percent Male!!Total population 25 years and over with a Bachelor's degree or higher!!Education", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "float", "group": "S1502", "limit": 0, "attributes": "S1502_C04_005EA,S1502_C04_005M,S1502_C04_005MA"}, "S0502_C03_045E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!High school (grades 9-12)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_045EA,S0502_C03_045M,S0502_C03_045MA"}, "S0102PR_C01_063E": {"label": "Estimate!!Total!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!English only", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_063EA,S0102PR_C01_063M,S0102PR_C01_063MA"}, "S2404_C03_021E": {"label": "Estimate!!Percent Male!!Full-time, year-round civilian employed population 16 years and over!!Educational services, and health care and social assistance:!!Educational services", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2404", "limit": 0, "attributes": "S2404_C03_021EA,S2404_C03_021M,S2404_C03_021MA"}, "S2802_C04_010E": {"label": "Estimate!!Without an Internet Subscription!!With a computer!!Total population in households!!RACE AND HISPANIC OR LATINO ORIGIN!!Some other race alone", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C04_010EA,S2802_C04_010M,S2802_C04_010MA"}, "S0103_C01_055E": {"label": "Estimate!!Total!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Native", "concept": "Population 65 Years and Over in the United States", "predicateType": "int", "group": "S0103", "limit": 0, "attributes": "S0103_C01_055EA,S0103_C01_055M,S0103_C01_055MA"}, "S0502_C03_046E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!College or graduate school", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_046EA,S0502_C03_046M,S0502_C03_046MA"}, "S0102PR_C01_064E": {"label": "Estimate!!Total!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_064EA,S0102PR_C01_064M,S0102PR_C01_064MA"}, "S2404_C03_020E": {"label": "Estimate!!Percent Male!!Full-time, year-round civilian employed population 16 years and over!!Educational services, and health care and social assistance:", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2404", "limit": 0, "attributes": "S2404_C03_020EA,S2404_C03_020M,S2404_C03_020MA"}, "S0103_C01_054E": {"label": "Estimate!!Total!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population", "concept": "Population 65 Years and Over in the United States", "predicateType": "int", "group": "S0103", "limit": 0, "attributes": "S0103_C01_054EA,S0103_C01_054M,S0103_C01_054MA"}, "S0502_C03_043E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Nursery school, preschool", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_043EA,S0502_C03_043M,S0502_C03_043MA"}, "S0102PR_C01_065E": {"label": "Estimate!!Total!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English!!Speak English less than \"very well\"", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_065EA,S0102PR_C01_065M,S0102PR_C01_065MA"}, "S2404_C03_023E": {"label": "Estimate!!Percent Male!!Full-time, year-round civilian employed population 16 years and over!!Arts, entertainment, and recreation, and accommodation and food services:", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2404", "limit": 0, "attributes": "S2404_C03_023EA,S2404_C03_023M,S2404_C03_023MA"}, "S1701_C02_002E": {"label": "Estimate!!Below poverty level!!Population for whom poverty status is determined!!AGE!!Under 18 years", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C02_002EA,S1701_C02_002M,S1701_C02_002MA"}, "S2802_C04_012E": {"label": "Estimate!!Without an Internet Subscription!!With a computer!!Total population in households!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C04_012EA,S2802_C04_012M,S2802_C04_012MA"}, "S0103_C01_053E": {"label": "Estimate!!Total!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Abroad", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C01_053EA,S0103_C01_053M,S0103_C01_053MA"}, "S0502_C03_044E": {"label": "Estimate!!Foreign-born; Entered 2000 to 2009!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Elementary school (grades K-8)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C03_044EA,S0502_C03_044M,S0502_C03_044MA"}, "S0102PR_C01_066E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Population 16 years and over", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_066EA,S0102PR_C01_066M,S0102PR_C01_066MA"}, "S1701_C02_001E": {"label": "Estimate!!Below poverty level!!Population for whom poverty status is determined", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C02_001EA,S1701_C02_001M,S1701_C02_001MA"}, "S2404_C03_022E": {"label": "Estimate!!Percent Male!!Full-time, year-round civilian employed population 16 years and over!!Educational services, and health care and social assistance:!!Health care and social assistance", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2404", "limit": 0, "attributes": "S2404_C03_022EA,S2404_C03_022M,S2404_C03_022MA"}, "S2802_C04_011E": {"label": "Estimate!!Without an Internet Subscription!!With a computer!!Total population in households!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C04_011EA,S2802_C04_011M,S2802_C04_011MA"}, "S0103_C01_052E": {"label": "Estimate!!Total!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different house in the United States!!Different county!!Different state", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C01_052EA,S0103_C01_052M,S0103_C01_052MA"}, "S1502_C04_001E": {"label": "Estimate!!Percent Male!!Total population 25 years and over with a Bachelor's degree or higher", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C04_001EA,S1502_C04_001M,S1502_C04_001MA"}, "S0505_C02_113E": {"label": "Estimate!!Foreign-born; Born in Asia!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!100 to 199 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_113EA,S0505_C02_113M,S0505_C02_113MA"}, "S0505_C02_112E": {"label": "Estimate!!Foreign-born; Born in Asia!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!Below 100 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_112EA,S0505_C02_112M,S0505_C02_112MA"}, "S0505_C02_111E": {"label": "Estimate!!Foreign-born; Born in Asia!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C02_111EA,S0505_C02_111M,S0505_C02_111MA"}, "S1702_C05_030E": {"label": "Estimate!!Total!!Female householder, no spouse present!!Families!!NUMBER OF OWN CHILDREN OF THE HOUSEHOLDER UNDER 18 YEARS!!3 or 4 own children of the householder", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C05_030EA,S1702_C05_030M,S1702_C05_030MA"}, "S0505_C02_110E": {"label": "Estimate!!Foreign-born; Born in Asia!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!Average number of workers per household", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_110EA,S0505_C02_110M,S0505_C02_110MA"}, "S0505_C02_117E": {"label": "Estimate!!Foreign-born; Born in Asia!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_117EA,S0505_C02_117M,S0505_C02_117MA"}, "S0505_C02_116E": {"label": "Estimate!!Foreign-born; Born in Asia!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_116EA,S0505_C02_116M,S0505_C02_116MA"}, "S0505_C02_115E": {"label": "Estimate!!Foreign-born; Born in Asia!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_115EA,S0505_C02_115M,S0505_C02_115MA"}, "S0505_C02_114E": {"label": "Estimate!!Foreign-born; Born in Asia!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!At or above 200 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_114EA,S0505_C02_114M,S0505_C02_114MA"}, "S1902_C01_002E": {"label": "Estimate!!Number!!HOUSEHOLD INCOME!!All households!!With earnings", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1902", "limit": 0, "attributes": "S1902_C01_002EA,S1902_C01_002M,S1902_C01_002MA"}, "S1002_C01_031E": {"label": "Estimate!!Total!!PERCENT ALLOCATED!!Grandparents living with grandchildren", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C01_031EA,S1002_C01_031M,S1002_C01_031MA"}, "S1811_C03_041E": {"label": "Estimate!!No Disability!!EDUCATIONAL ATTAINMENT!!Population Age 25 and Over!!High school graduate (includes equivalency)", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C03_041EA,S1811_C03_041M,S1811_C03_041MA"}, "S1902_C01_001E": {"label": "Estimate!!Number!!HOUSEHOLD INCOME!!All households", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1902", "limit": 0, "attributes": "S1902_C01_001EA,S1902_C01_001M,S1902_C01_001MA"}, "S1002_C01_030E": {"label": "Estimate!!Total!!HOUSEHOLDS!!Households!!With grandparents living with grandchildren", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C01_030EA,S1002_C01_030M,S1002_C01_030MA"}, "S1811_C03_042E": {"label": "Estimate!!No Disability!!EDUCATIONAL ATTAINMENT!!Population Age 25 and Over!!Some college or associate's degree", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C03_042EA,S1811_C03_042M,S1811_C03_042MA"}, "S0902_C02_009E": {"label": "Estimate!!White alone, not Hispanic or Latino!!Population 15 to 19 years!!MARITAL STATUS AND FERTILITY!!Female!!Ever married", "concept": "Characteristics of Teenagers 15 to 19 Years Old", "predicateType": "float", "group": "S0902", "limit": 0, "attributes": "S0902_C02_009EA,S0902_C02_009M,S0902_C02_009MA"}, "S1811_C03_043E": {"label": "Estimate!!No Disability!!EDUCATIONAL ATTAINMENT!!Population Age 25 and Over!!Bachelor's degree or higher", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C03_043EA,S1811_C03_043M,S1811_C03_043MA"}, "S0103_C01_029E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C01_029EA,S0103_C01_029M,S0103_C01_029MA"}, "S1902_C01_004E": {"label": "Estimate!!Number!!HOUSEHOLD INCOME!!All households!!With earnings!!With self-employment income", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1902", "limit": 0, "attributes": "S1902_C01_004EA,S1902_C01_004M,S1902_C01_004MA"}, "S0902_C02_008E": {"label": "Estimate!!White alone, not Hispanic or Latino!!Population 15 to 19 years!!MARITAL STATUS AND FERTILITY!!Female", "concept": "Characteristics of Teenagers 15 to 19 Years Old", "predicateType": "int", "group": "S0902", "limit": 0, "attributes": "S0902_C02_008EA,S0902_C02_008M,S0902_C02_008MA"}, "S1811_C03_044E": {"label": "Estimate!!No Disability!!EARNINGS IN PAST 12 MONTHS (IN 2024 INFLATION ADJUSTED DOLLARS)!!Population Age 16 and over with earnings", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "int", "group": "S1811", "limit": 0, "attributes": "S1811_C03_044EA,S1811_C03_044M,S1811_C03_044MA"}, "S2603_C04_001E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!Total population", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C04_001EA,S2603_C04_001M,S2603_C04_001MA"}, "S0103_C01_028E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C01_028EA,S0103_C01_028M,S0103_C01_028MA"}, "S1902_C01_003E": {"label": "Estimate!!Number!!HOUSEHOLD INCOME!!All households!!With earnings!!With wages or salary income", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1902", "limit": 0, "attributes": "S1902_C01_003EA,S1902_C01_003M,S1902_C01_003MA"}, "S2601A_C01_101E": {"label": "Estimate!!Total population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!Mean earnings (dollars):!!Male", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_101EA,S2601A_C01_101M,S2601A_C01_101MA"}, "S2602_C01_006E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!18 to 24 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C01_006EA,S2602_C01_006M,S2602_C01_006MA"}, "S2603_C04_002E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!Total population!!SEX AND AGE!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C04_002EA,S2603_C04_002M,S2603_C04_002MA"}, "S1902_C01_006E": {"label": "Estimate!!Number!!HOUSEHOLD INCOME!!All households!!With Social Security income", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1902", "limit": 0, "attributes": "S1902_C01_006EA,S1902_C01_006M,S1902_C01_006MA"}, "S2601A_C01_102E": {"label": "Estimate!!Total population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!Mean earnings (dollars):!!Female", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_102EA,S2601A_C01_102M,S2601A_C01_102MA"}, "S2603_C04_003E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!Total population!!SEX AND AGE!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C04_003EA,S2603_C04_003M,S2603_C04_003MA"}, "S2602_C01_007E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!25 to 34 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C01_007EA,S2602_C01_007M,S2602_C01_007MA"}, "S1902_C01_005E": {"label": "Estimate!!Number!!HOUSEHOLD INCOME!!All households!!With interest, dividends, or net rental income", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1902", "limit": 0, "attributes": "S1902_C01_005EA,S1902_C01_005M,S1902_C01_005MA"}, "S2603_C04_004E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!Total population!!SEX AND AGE!!Under 15 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C04_004EA,S2603_C04_004M,S2603_C04_004MA"}, "S2602_C01_008E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!35 to 44 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C01_008EA,S2602_C01_008M,S2602_C01_008MA"}, "S1902_C01_008E": {"label": "Estimate!!Number!!HOUSEHOLD INCOME!!All households!!With cash public assistance income or Food Stamps/SNAP", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1902", "limit": 0, "attributes": "S1902_C01_008EA,S1902_C01_008M,S1902_C01_008MA"}, "S2601A_C01_100E": {"label": "Estimate!!Total population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!With earnings:!!Female", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_100EA,S2601A_C01_100M,S2601A_C01_100MA"}, "S2603_C04_005E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!Total population!!SEX AND AGE!!15 to 17 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C04_005EA,S2603_C04_005M,S2603_C04_005MA"}, "S1811_C03_040E": {"label": "Estimate!!No Disability!!EDUCATIONAL ATTAINMENT!!Population Age 25 and Over!!Less than high school graduate", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C03_040EA,S1811_C03_040M,S1811_C03_040MA"}, "S2602_C01_009E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!45 to 54 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C01_009EA,S2602_C01_009M,S2602_C01_009MA"}, "S1902_C01_007E": {"label": "Estimate!!Number!!HOUSEHOLD INCOME!!All households!!With Supplemental Security Income (SSI)", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1902", "limit": 0, "attributes": "S1902_C01_007EA,S1902_C01_007M,S1902_C01_007MA"}, "S2601A_C01_105E": {"label": "Estimate!!Total population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!With Food Stamp/SNAP benefits", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_105EA,S2601A_C01_105M,S2601A_C01_105MA"}, "S2601CPR_C01_091E": {"label": "Estimate!!Total population!!OCCUPATION!!Civilian employed population 16 years and over", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "int", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_091EA,S2601CPR_C01_091M,S2601CPR_C01_091MA"}, "S2603_C04_006E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!Total population!!SEX AND AGE!!18 to 24 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C04_006EA,S2603_C04_006M,S2603_C04_006MA"}, "S0804_C03_043E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!OCCUPATION!!Management, business, science, and arts occupations", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_043EA,S0804_C03_043M,S0804_C03_043MA"}, "S0103_C01_023E": {"label": "Estimate!!Total!!HOUSEHOLDS BY TYPE!!Households!!Family households!!Married-couple family", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C01_023EA,S0103_C01_023M,S0103_C01_023MA"}, "S2601A_C01_106E": {"label": "Estimate!!Total population!!POVERTY RATES FOR PEOPLE FOR WHOM POVERTY STATUS IS DETERMINED!!All people", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_106EA,S2601A_C01_106M,S2601A_C01_106MA"}, "S2503_C05_020E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS!!$2,000 to $2,499", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C05_020EA,S2503_C05_020M,S2503_C05_020MA"}, "S2601CPR_C01_090E": {"label": "Estimate!!Total population!!EMPLOYMENT STATUS!!Population 16 years and over!!Not in labor force", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_090EA,S2601CPR_C01_090M,S2601CPR_C01_090MA"}, "S0804_C03_042E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "int", "group": "S0804", "limit": 0, "attributes": "S0804_C03_042EA,S0804_C03_042M,S0804_C03_042MA"}, "S2603_C04_007E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!Total population!!SEX AND AGE!!25 to 34 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C04_007EA,S2603_C04_007M,S2603_C04_007MA"}, "S0103_C01_022E": {"label": "Estimate!!Total!!HOUSEHOLDS BY TYPE!!Households!!Family households", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C01_022EA,S0103_C01_022M,S0103_C01_022MA"}, "S2503_C05_021E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS!!$2,500 to $2,999", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C05_021EA,S2503_C05_021M,S2503_C05_021MA"}, "S2601A_C01_107E": {"label": "Estimate!!Total population!!POVERTY RATES FOR PEOPLE FOR WHOM POVERTY STATUS IS DETERMINED!!All people!!18 years and over", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_107EA,S2601A_C01_107M,S2601A_C01_107MA"}, "S2601A_C01_103E": {"label": "Estimate!!Total population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!Median earnings (dollars):!!Male", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_103EA,S2601A_C01_103M,S2601A_C01_103MA"}, "S0804_C03_041E": {"label": "Estimate!!Car, truck, or van -- carpooled!!POVERTY STATUS IN THE PAST 12 MONTHS!!Workers 16 years and over for whom poverty status is determined!!At or above 150 percent of the poverty level", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_041EA,S0804_C03_041M,S0804_C03_041MA"}, "S2603_C04_008E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!Total population!!SEX AND AGE!!35 to 44 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C04_008EA,S2603_C04_008M,S2603_C04_008MA"}, "S0103_C01_021E": {"label": "Estimate!!Total!!HOUSEHOLDS BY TYPE!!Households", "concept": "Population 65 Years and Over in the United States", "predicateType": "int", "group": "S0103", "limit": 0, "attributes": "S0103_C01_021EA,S0103_C01_021M,S0103_C01_021MA"}, "S2503_C05_022E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS!!$3,000 or more", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C05_022EA,S2503_C05_022M,S2503_C05_022MA"}, "S2601A_C01_104E": {"label": "Estimate!!Total population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!Median earnings (dollars):!!Female", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_104EA,S2601A_C01_104M,S2601A_C01_104MA"}, "S1703_C01_001E": {"label": "Estimate!!Total!!Population for whom poverty status is determined", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "int", "group": "S1703", "limit": 0, "attributes": "S1703_C01_001EA,S1703_C01_001M,S1703_C01_001MA"}, "S0804_C03_040E": {"label": "Estimate!!Car, truck, or van -- carpooled!!POVERTY STATUS IN THE PAST 12 MONTHS!!Workers 16 years and over for whom poverty status is determined!!100 to 149 percent of the poverty level", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_040EA,S0804_C03_040M,S0804_C03_040MA"}, "S2603_C04_009E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!Total population!!SEX AND AGE!!45 to 54 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C04_009EA,S2603_C04_009M,S2603_C04_009MA"}, "S0103_C01_020E": {"label": "Estimate!!Total!!RELATIONSHIP!!Population in households!!Nonrelatives!!Unmarried partner", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C01_020EA,S0103_C01_020M,S0103_C01_020MA"}, "S2503_C05_023E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS!!No cash rent", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C05_023EA,S2503_C05_023M,S2503_C05_023MA"}, "S1703_C01_002E": {"label": "Estimate!!Total!!Population for whom poverty status is determined!!SEX!!Male", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "int", "group": "S1703", "limit": 0, "attributes": "S1703_C01_002EA,S1703_C01_002M,S1703_C01_002MA"}, "S2601CPR_C01_095E": {"label": "Estimate!!Total population!!OCCUPATION!!Civilian employed population 16 years and over!!Natural resources, construction, extraction, and maintenance occupations", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_095EA,S2601CPR_C01_095M,S2601CPR_C01_095MA"}, "S0103_C01_027E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over", "concept": "Population 65 Years and Over in the United States", "predicateType": "int", "group": "S0103", "limit": 0, "attributes": "S0103_C01_027EA,S0103_C01_027M,S0103_C01_027MA"}, "S2503_C05_024E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS!!Median (dollars)", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C05_024EA,S2503_C05_024M,S2503_C05_024MA"}, "S2503_C05_025E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than $20,000", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C05_025EA,S2503_C05_025M,S2503_C05_025MA"}, "S1703_C01_003E": {"label": "Estimate!!Total!!Population for whom poverty status is determined!!SEX!!Female", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "int", "group": "S1703", "limit": 0, "attributes": "S1703_C01_003EA,S1703_C01_003M,S1703_C01_003MA"}, "S2601CPR_C01_094E": {"label": "Estimate!!Total population!!OCCUPATION!!Civilian employed population 16 years and over!!Sales and office occupations", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_094EA,S2601CPR_C01_094M,S2601CPR_C01_094MA"}, "S2801_C01_009E": {"label": "Estimate!!Total!!Total households!!TYPES OF COMPUTER!!Has one or more types of computing devices:!!Other computer", "concept": "Types of Computers and Internet Subscriptions", "predicateType": "int", "group": "S2801", "limit": 0, "attributes": "S2801_C01_009EA,S2801_C01_009M,S2801_C01_009MA"}, "S0103_C01_026E": {"label": "Estimate!!Total!!HOUSEHOLDS BY TYPE!!Households!!Nonfamily households!!Householder living alone", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C01_026EA,S0103_C01_026M,S0103_C01_026MA"}, "S2601CPR_C01_093E": {"label": "Estimate!!Total population!!OCCUPATION!!Civilian employed population 16 years and over!!Service occupations", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_093EA,S2601CPR_C01_093M,S2601CPR_C01_093MA"}, "S2503_C05_026E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than $20,000!!Less than 20 percent", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C05_026EA,S2503_C05_026M,S2503_C05_026MA"}, "S1703_C01_004E": {"label": "Estimate!!Total!!Population for whom poverty status is determined!!AGE!!Under 18 years", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "int", "group": "S1703", "limit": 0, "attributes": "S1703_C01_004EA,S1703_C01_004M,S1703_C01_004MA"}, "S2601A_C01_108E": {"label": "Estimate!!Total population!!POVERTY RATES FOR PEOPLE FOR WHOM POVERTY STATUS IS DETERMINED!!All people!!18 to 64 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_108EA,S2601A_C01_108M,S2601A_C01_108MA"}, "S0103_C01_025E": {"label": "Estimate!!Total!!HOUSEHOLDS BY TYPE!!Households!!Nonfamily households", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C01_025EA,S0103_C01_025M,S0103_C01_025MA"}, "S0504_C02_001E": {"label": "Estimate!!Foreign-born; Born in Africa!!Foreign-born population", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C02_001EA,S0504_C02_001M,S0504_C02_001MA"}, "S2601CPR_C01_092E": {"label": "Estimate!!Total population!!OCCUPATION!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_092EA,S2601CPR_C01_092M,S2601CPR_C01_092MA"}, "S2503_C05_027E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than $20,000!!20 to 29 percent", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C05_027EA,S2503_C05_027M,S2503_C05_027MA"}, "S1703_C01_005E": {"label": "Estimate!!Total!!Population for whom poverty status is determined!!AGE!!Under 18 years!!Related children of householder under 18 years", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "int", "group": "S1703", "limit": 0, "attributes": "S1703_C01_005EA,S1703_C01_005M,S1703_C01_005MA"}, "S2601A_C01_109E": {"label": "Estimate!!Total population!!POVERTY RATES FOR PEOPLE FOR WHOM POVERTY STATUS IS DETERMINED!!All people!!65 years and over", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C01_109EA,S2601A_C01_109M,S2601A_C01_109MA"}, "S0103_C01_024E": {"label": "Estimate!!Total!!HOUSEHOLDS BY TYPE!!Households!!Family households!!Female householder, no spouse present, family", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C01_024EA,S0103_C01_024M,S0103_C01_024MA"}, "S0504_C02_003E": {"label": "Estimate!!Foreign-born; Born in Africa!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen!!Entered 2010 or later", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_003EA,S0504_C02_003M,S0504_C02_003MA"}, "S2503_C05_016E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS!!$500 to $799", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C05_016EA,S2503_C05_016M,S2503_C05_016MA"}, "S0505_C02_141E": {"label": "Estimate!!Foreign-born; Born in Asia!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_141EA,S0505_C02_141M,S0505_C02_141MA"}, "S2601CPR_C01_087E": {"label": "Estimate!!Total population!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_087EA,S2601CPR_C01_087M,S2601CPR_C01_087MA"}, "S2801_C01_018E": {"label": "Estimate!!Total!!Total households!!TYPE OF INTERNET SUBSCRIPTIONS!!With an Internet subscription:!!Broadband of any type!!Satellite Internet service", "concept": "Types of Computers and Internet Subscriptions", "predicateType": "int", "group": "S2801", "limit": 0, "attributes": "S2801_C01_018EA,S2801_C01_018M,S2801_C01_018MA"}, "S1703_C01_006E": {"label": "Estimate!!Total!!Population for whom poverty status is determined!!AGE!!18 to 64 years", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "int", "group": "S1703", "limit": 0, "attributes": "S1703_C01_006EA,S1703_C01_006M,S1703_C01_006MA"}, "S2503_C05_017E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS!!$800 to $999", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C05_017EA,S2503_C05_017M,S2503_C05_017MA"}, "S2601CPR_C01_086E": {"label": "Estimate!!Total population!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Employed", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_086EA,S2601CPR_C01_086M,S2601CPR_C01_086MA"}, "S0505_C02_140E": {"label": "Estimate!!Foreign-born; Born in Asia!!Owner-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C02_140EA,S0505_C02_140M,S0505_C02_140MA"}, "S2801_C01_017E": {"label": "Estimate!!Total!!Total households!!TYPE OF INTERNET SUBSCRIPTIONS!!With an Internet subscription:!!Broadband of any type!!Broadband such as cable, fiber optic or DSL", "concept": "Types of Computers and Internet Subscriptions", "predicateType": "int", "group": "S2801", "limit": 0, "attributes": "S2801_C01_017EA,S2801_C01_017M,S2801_C01_017MA"}, "S1703_C01_007E": {"label": "Estimate!!Total!!Population for whom poverty status is determined!!AGE!!65 years and over", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "int", "group": "S1703", "limit": 0, "attributes": "S1703_C01_007EA,S1703_C01_007M,S1703_C01_007MA"}, "S0504_C02_002E": {"label": "Estimate!!Foreign-born; Born in Africa!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_002EA,S0504_C02_002M,S0504_C02_002MA"}, "S2503_C05_018E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS!!$1,000 to $1,499", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C05_018EA,S2503_C05_018M,S2503_C05_018MA"}, "S0504_C02_005E": {"label": "Estimate!!Foreign-born; Born in Africa!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen!!Entered before 2000", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_005EA,S0504_C02_005M,S0504_C02_005MA"}, "S2601CPR_C01_085E": {"label": "Estimate!!Total population!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_085EA,S2601CPR_C01_085M,S2601CPR_C01_085MA"}, "S0804_C03_049E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!INDUSTRY!!Agriculture, forestry, fishing and hunting, and mining", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_049EA,S0804_C03_049M,S0804_C03_049MA"}, "S1703_C01_008E": {"label": "Estimate!!Total!!Population for whom poverty status is determined!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "int", "group": "S1703", "limit": 0, "attributes": "S1703_C01_008EA,S1703_C01_008M,S1703_C01_008MA"}, "S2503_C05_019E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS!!$1,500 to $1,999", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C05_019EA,S2503_C05_019M,S2503_C05_019MA"}, "S0504_C02_004E": {"label": "Estimate!!Foreign-born; Born in Africa!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen!!Entered 2000 to 2009", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_004EA,S0504_C02_004M,S0504_C02_004MA"}, "S2601CPR_C01_084E": {"label": "Estimate!!Total population!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_084EA,S2601CPR_C01_084M,S2601CPR_C01_084MA"}, "S0804_C03_048E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!OCCUPATION!!Military specific occupations", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_048EA,S0804_C03_048M,S0804_C03_048MA"}, "S2801_C01_019E": {"label": "Estimate!!Total!!Total households!!TYPE OF INTERNET SUBSCRIPTIONS!!Without an Internet subscription", "concept": "Types of Computers and Internet Subscriptions", "predicateType": "int", "group": "S2801", "limit": 0, "attributes": "S2801_C01_019EA,S2801_C01_019M,S2801_C01_019MA"}, "S1703_C01_009E": {"label": "Estimate!!Total!!Population for whom poverty status is determined!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "int", "group": "S1703", "limit": 0, "attributes": "S1703_C01_009EA,S1703_C01_009M,S1703_C01_009MA"}, "S0504_C02_007E": {"label": "Estimate!!Foreign-born; Born in Africa!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen!!Entered 2010 or later", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_007EA,S0504_C02_007M,S0504_C02_007MA"}, "S2801_C01_014E": {"label": "Estimate!!Total!!Total households!!TYPE OF INTERNET SUBSCRIPTIONS!!With an Internet subscription:!!Broadband of any type", "concept": "Types of Computers and Internet Subscriptions", "predicateType": "int", "group": "S2801", "limit": 0, "attributes": "S2801_C01_014EA,S2801_C01_014M,S2801_C01_014MA"}, "S0804_C03_047E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!OCCUPATION!!Production, transportation, and material moving occupations", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_047EA,S0804_C03_047M,S0804_C03_047MA"}, "S0505_C02_145E": {"label": "Estimate!!Foreign-born; Born in Asia!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_145EA,S0505_C02_145M,S0505_C02_145MA"}, "S0504_C02_006E": {"label": "Estimate!!Foreign-born; Born in Africa!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_006EA,S0504_C02_006M,S0504_C02_006MA"}, "S0505_C02_144E": {"label": "Estimate!!Foreign-born; Born in Asia!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_144EA,S0505_C02_144M,S0505_C02_144MA"}, "S2801_C01_013E": {"label": "Estimate!!Total!!Total households!!TYPE OF INTERNET SUBSCRIPTIONS!!With an Internet subscription:!!Dial-up with no other type of Internet subscription", "concept": "Types of Computers and Internet Subscriptions", "predicateType": "int", "group": "S2801", "limit": 0, "attributes": "S2801_C01_013EA,S2801_C01_013M,S2801_C01_013MA"}, "S0804_C03_046E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!OCCUPATION!!Natural resources, construction, and maintenance occupations", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_046EA,S0804_C03_046M,S0804_C03_046MA"}, "S0504_C02_009E": {"label": "Estimate!!Foreign-born; Born in Africa!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen!!Entered before 2000", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_009EA,S0504_C02_009M,S0504_C02_009MA"}, "S0505_C02_143E": {"label": "Estimate!!Foreign-born; Born in Asia!!Renter-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C02_143EA,S0505_C02_143M,S0505_C02_143MA"}, "S2801_C01_016E": {"label": "Estimate!!Total!!Total households!!TYPE OF INTERNET SUBSCRIPTIONS!!With an Internet subscription:!!Broadband of any type!!Cellular data plan!!Cellular data plan with no other type of Internet subscription", "concept": "Types of Computers and Internet Subscriptions", "predicateType": "int", "group": "S2801", "limit": 0, "attributes": "S2801_C01_016EA,S2801_C01_016M,S2801_C01_016MA"}, "S2601CPR_C01_089E": {"label": "Estimate!!Total population!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Armed Forces", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_089EA,S2601CPR_C01_089M,S2601CPR_C01_089MA"}, "S0804_C03_045E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!OCCUPATION!!Sales and office occupations", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_045EA,S0804_C03_045M,S0804_C03_045MA"}, "S0504_C02_008E": {"label": "Estimate!!Foreign-born; Born in Africa!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen!!Entered 2000 to 2009", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_008EA,S0504_C02_008M,S0504_C02_008MA"}, "S2801_C01_015E": {"label": "Estimate!!Total!!Total households!!TYPE OF INTERNET SUBSCRIPTIONS!!With an Internet subscription:!!Broadband of any type!!Cellular data plan", "concept": "Types of Computers and Internet Subscriptions", "predicateType": "int", "group": "S2801", "limit": 0, "attributes": "S2801_C01_015EA,S2801_C01_015M,S2801_C01_015MA"}, "S0505_C02_142E": {"label": "Estimate!!Foreign-born; Born in Asia!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_142EA,S0505_C02_142M,S0505_C02_142MA"}, "S2601CPR_C01_088E": {"label": "Estimate!!Total population!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed!!Percent of civilian labor force", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_088EA,S2601CPR_C01_088M,S2601CPR_C01_088MA"}, "S0804_C03_044E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!OCCUPATION!!Service occupations", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_044EA,S0804_C03_044M,S0804_C03_044MA"}, "S1811_C03_037E": {"label": "Estimate!!No Disability!!COMMUTING TO WORK!!Workers Age 16 and Over!!Taxi or ride-hailing services, motorcycle, bicycle, or other means", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C03_037EA,S1811_C03_037M,S1811_C03_037MA"}, "S2602_C01_002E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C01_002EA,S2602_C01_002M,S2602_C01_002MA"}, "S0902_C02_003E": {"label": "Estimate!!White alone, not Hispanic or Latino!!Population 15 to 19 years!!SCHOOL ENROLLMENT!!Enrolled in school!!Public", "concept": "Characteristics of Teenagers 15 to 19 Years Old", "predicateType": "float", "group": "S0902", "limit": 0, "attributes": "S0902_C02_003EA,S0902_C02_003M,S0902_C02_003MA"}, "S2801_C01_010E": {"label": "Estimate!!Total!!Total households!!TYPES OF COMPUTER!!Has one or more types of computing devices:!!Other computer!!Other computer with no other type of computing device", "concept": "Types of Computers and Internet Subscriptions", "predicateType": "int", "group": "S2801", "limit": 0, "attributes": "S2801_C01_010EA,S2801_C01_010M,S2801_C01_010MA"}, "S1811_C03_038E": {"label": "Estimate!!No Disability!!COMMUTING TO WORK!!Workers Age 16 and Over!!Worked from home", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C03_038EA,S1811_C03_038M,S1811_C03_038MA"}, "S2602_C01_003E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C01_003EA,S2602_C01_003M,S2602_C01_003MA"}, "S0902_C02_002E": {"label": "Estimate!!White alone, not Hispanic or Latino!!Population 15 to 19 years!!SCHOOL ENROLLMENT!!Enrolled in school", "concept": "Characteristics of Teenagers 15 to 19 Years Old", "predicateType": "int", "group": "S0902", "limit": 0, "attributes": "S0902_C02_002EA,S0902_C02_002M,S0902_C02_002MA"}, "S1811_C03_039E": {"label": "Estimate!!No Disability!!EDUCATIONAL ATTAINMENT!!Population Age 25 and Over", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "int", "group": "S1811", "limit": 0, "attributes": "S1811_C03_039EA,S1811_C03_039M,S1811_C03_039MA"}, "S0902_C02_001E": {"label": "Estimate!!White alone, not Hispanic or Latino!!Population 15 to 19 years", "concept": "Characteristics of Teenagers 15 to 19 Years Old", "predicateType": "int", "group": "S0902", "limit": 0, "attributes": "S0902_C02_001EA,S0902_C02_001M,S0902_C02_001MA"}, "S2801_C01_012E": {"label": "Estimate!!Total!!Total households!!TYPE OF INTERNET SUBSCRIPTIONS!!With an Internet subscription:", "concept": "Types of Computers and Internet Subscriptions", "predicateType": "int", "group": "S2801", "limit": 0, "attributes": "S2801_C01_012EA,S2801_C01_012M,S2801_C01_012MA"}, "S2602_C01_004E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!Under 15 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C01_004EA,S2602_C01_004M,S2602_C01_004MA"}, "S2801_C01_011E": {"label": "Estimate!!Total!!Total households!!TYPES OF COMPUTER!!No computer", "concept": "Types of Computers and Internet Subscriptions", "predicateType": "int", "group": "S2801", "limit": 0, "attributes": "S2801_C01_011EA,S2801_C01_011M,S2801_C01_011MA"}, "S2602_C01_005E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!15 to 17 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C01_005EA,S2602_C01_005M,S2602_C01_005MA"}, "S0902_C02_007E": {"label": "Estimate!!White alone, not Hispanic or Latino!!Population 15 to 19 years!!MARITAL STATUS AND FERTILITY!!Male!!Ever married", "concept": "Characteristics of Teenagers 15 to 19 Years Old", "predicateType": "float", "group": "S0902", "limit": 0, "attributes": "S0902_C02_007EA,S0902_C02_007M,S0902_C02_007MA"}, "S1811_C03_033E": {"label": "Estimate!!No Disability!!COMMUTING TO WORK!!Workers Age 16 and Over!!Car, truck, or van - drove alone", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C03_033EA,S1811_C03_033M,S1811_C03_033MA"}, "S0902_C02_006E": {"label": "Estimate!!White alone, not Hispanic or Latino!!Population 15 to 19 years!!MARITAL STATUS AND FERTILITY!!Male", "concept": "Characteristics of Teenagers 15 to 19 Years Old", "predicateType": "int", "group": "S0902", "limit": 0, "attributes": "S0902_C02_006EA,S0902_C02_006M,S0902_C02_006MA"}, "S1811_C03_034E": {"label": "Estimate!!No Disability!!COMMUTING TO WORK!!Workers Age 16 and Over!!Car, truck, or van - carpooled", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C03_034EA,S1811_C03_034M,S1811_C03_034MA"}, "S0902_C02_005E": {"label": "Estimate!!White alone, not Hispanic or Latino!!Population 15 to 19 years!!SCHOOL ENROLLMENT!!Not enrolled in school", "concept": "Characteristics of Teenagers 15 to 19 Years Old", "predicateType": "int", "group": "S0902", "limit": 0, "attributes": "S0902_C02_005EA,S0902_C02_005M,S0902_C02_005MA"}, "S1811_C03_035E": {"label": "Estimate!!No Disability!!COMMUTING TO WORK!!Workers Age 16 and Over!!Public transportation", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C03_035EA,S1811_C03_035M,S1811_C03_035MA"}, "S2602_C01_001E": {"label": "Estimate!!Total population!!Total population", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C01_001EA,S2602_C01_001M,S2602_C01_001MA"}, "S0902_C02_004E": {"label": "Estimate!!White alone, not Hispanic or Latino!!Population 15 to 19 years!!SCHOOL ENROLLMENT!!Enrolled in school!!Private", "concept": "Characteristics of Teenagers 15 to 19 Years Old", "predicateType": "float", "group": "S0902", "limit": 0, "attributes": "S0902_C02_004EA,S0902_C02_004M,S0902_C02_004MA"}, "S1002_C01_032E": {"label": "Estimate!!Total!!PERCENT ALLOCATED!!Grandparents responsible for grandchildren", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C01_032EA,S1002_C01_032M,S1002_C01_032MA"}, "S1811_C03_036E": {"label": "Estimate!!No Disability!!COMMUTING TO WORK!!Workers Age 16 and Over!!Walked", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C03_036EA,S1811_C03_036M,S1811_C03_036MA"}, "S1902_C01_014E": {"label": "Estimate!!Number!!FAMILY INCOME BY NUMBER OF WORKERS IN FAMILY!!All families!!1 worker", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1902", "limit": 0, "attributes": "S1902_C01_014EA,S1902_C01_014M,S1902_C01_014MA"}, "S0505_C05_006E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_006EA,S0505_C05_006M,S0505_C05_006MA"}, "S1902_C01_013E": {"label": "Estimate!!Number!!FAMILY INCOME BY NUMBER OF WORKERS IN FAMILY!!All families!!No workers", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1902", "limit": 0, "attributes": "S1902_C01_013EA,S1902_C01_013M,S1902_C01_013MA"}, "S0505_C05_007E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen!!Entered 2010 or later", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_007EA,S0505_C05_007M,S0505_C05_007MA"}, "S1811_C03_030E": {"label": "Estimate!!No Disability!!Employed Population Age 16 and Over!!INDUSTRY!!Other services (except public administration)", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C03_030EA,S1811_C03_030M,S1811_C03_030MA"}, "S2418_C03_001E": {"label": "Estimate!!Median earnings (dollars) for female!!Civilian employed population 16 years and over with earnings", "concept": "Class of Worker by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2418", "limit": 0, "attributes": "S2418_C03_001EA,S2418_C03_001M,S2418_C03_001MA"}, "S1811_C03_031E": {"label": "Estimate!!No Disability!!Employed Population Age 16 and Over!!INDUSTRY!!Public administration", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C03_031EA,S1811_C03_031M,S1811_C03_031MA"}, "S0505_C05_008E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen!!Entered 2000 to 2009", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_008EA,S0505_C05_008M,S0505_C05_008MA"}, "S1902_C01_016E": {"label": "Estimate!!Number!!FAMILY INCOME BY NUMBER OF WORKERS IN FAMILY!!All families!!2 workers, other", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1902", "limit": 0, "attributes": "S1902_C01_016EA,S1902_C01_016M,S1902_C01_016MA"}, "S1811_C03_032E": {"label": "Estimate!!No Disability!!COMMUTING TO WORK!!Workers Age 16 and Over", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "int", "group": "S1811", "limit": 0, "attributes": "S1811_C03_032EA,S1811_C03_032M,S1811_C03_032MA"}, "S0505_C05_009E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen!!Entered before 2000", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_009EA,S0505_C05_009M,S0505_C05_009MA"}, "S1902_C01_015E": {"label": "Estimate!!Number!!FAMILY INCOME BY NUMBER OF WORKERS IN FAMILY!!All families!!2 workers, both spouses worked", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1902", "limit": 0, "attributes": "S1902_C01_015EA,S1902_C01_015M,S1902_C01_015MA"}, "S2418_C03_004E": {"label": "Estimate!!Median earnings (dollars) for female!!Civilian employed population 16 years and over with earnings!!Private for-profit wage and salary workers:!!Self-employed in own incorporated business workers", "concept": "Class of Worker by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2418", "limit": 0, "attributes": "S2418_C03_004EA,S2418_C03_004M,S2418_C03_004MA"}, "S2602_C01_018E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!65 years and over!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C01_018EA,S2602_C01_018M,S2602_C01_018MA"}, "S1902_C01_018E": {"label": "Estimate!!Number!!FAMILY INCOME BY NUMBER OF WORKERS IN FAMILY!!All families!!3 or more workers, other", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1902", "limit": 0, "attributes": "S1902_C01_018EA,S1902_C01_018M,S1902_C01_018MA"}, "S0505_C05_002E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_002EA,S0505_C05_002M,S0505_C05_002MA"}, "S2418_C03_005E": {"label": "Estimate!!Median earnings (dollars) for female!!Civilian employed population 16 years and over with earnings!!Private not-for-profit wage and salary workers", "concept": "Class of Worker by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2418", "limit": 0, "attributes": "S2418_C03_005EA,S2418_C03_005M,S2418_C03_005MA"}, "S2602_C01_019E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!65 years and over!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C01_019EA,S2602_C01_019M,S2602_C01_019MA"}, "S0505_C05_003E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen!!Entered 2010 or later", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_003EA,S0505_C05_003M,S0505_C05_003MA"}, "S1902_C01_017E": {"label": "Estimate!!Number!!FAMILY INCOME BY NUMBER OF WORKERS IN FAMILY!!All families!!3 or more workers, both spouses worked", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1902", "limit": 0, "attributes": "S1902_C01_017EA,S1902_C01_017M,S1902_C01_017MA"}, "S2418_C03_002E": {"label": "Estimate!!Median earnings (dollars) for female!!Civilian employed population 16 years and over with earnings!!Private for-profit wage and salary workers:", "concept": "Class of Worker by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2418", "limit": 0, "attributes": "S2418_C03_002EA,S2418_C03_002M,S2418_C03_002MA"}, "DIVISION": {"label": "Division", "group": "N/A", "limit": 0}, "S0505_C05_004E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen!!Entered 2000 to 2009", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_004EA,S0505_C05_004M,S0505_C05_004MA"}, "S2418_C03_003E": {"label": "Estimate!!Median earnings (dollars) for female!!Civilian employed population 16 years and over with earnings!!Private for-profit wage and salary workers:!!Employee of private company workers", "concept": "Class of Worker by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2418", "limit": 0, "attributes": "S2418_C03_003EA,S2418_C03_003M,S2418_C03_003MA"}, "S1902_C01_019E": {"label": "Estimate!!Number!!PER CAPITA INCOME BY RACE AND HISPANIC OR LATINO ORIGIN!!Total population", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1902", "limit": 0, "attributes": "S1902_C01_019EA,S1902_C01_019M,S1902_C01_019MA"}, "S0505_C05_005E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen!!Entered before 2000", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_005EA,S0505_C05_005M,S0505_C05_005MA"}, "S1703_C01_010E": {"label": "Estimate!!Total!!Population for whom poverty status is determined!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "int", "group": "S1703", "limit": 0, "attributes": "S1703_C01_010EA,S1703_C01_010M,S1703_C01_010MA"}, "S0804_C03_055E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!INDUSTRY!!Information and finance and insurance, and real estate and rental and leasing", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_055EA,S0804_C03_055M,S0804_C03_055MA"}, "S0103_C01_035E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate, GED, or alternative", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C01_035EA,S0103_C01_035M,S0103_C01_035MA"}, "S1703_C01_011E": {"label": "Estimate!!Total!!Population for whom poverty status is determined!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "int", "group": "S1703", "limit": 0, "attributes": "S1703_C01_011EA,S1703_C01_011M,S1703_C01_011MA"}, "S0804_C03_054E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!INDUSTRY!!Transportation and warehousing, and utilities", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_054EA,S0804_C03_054M,S0804_C03_054MA"}, "S0103_C01_034E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than high school graduate", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C01_034EA,S0103_C01_034M,S0103_C01_034MA"}, "S1703_C01_012E": {"label": "Estimate!!Total!!Population for whom poverty status is determined!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "int", "group": "S1703", "limit": 0, "attributes": "S1703_C01_012EA,S1703_C01_012M,S1703_C01_012MA"}, "S0804_C03_053E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!INDUSTRY!!Retail trade", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_053EA,S0804_C03_053M,S0804_C03_053MA"}, "S0103_C01_033E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Population 65 Years and Over in the United States", "predicateType": "int", "group": "S0103", "limit": 0, "attributes": "S0103_C01_033EA,S0103_C01_033M,S0103_C01_033MA"}, "S2503_C05_010E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$75,000 to $99,999", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C05_010EA,S2503_C05_010M,S2503_C05_010MA"}, "S1703_C01_013E": {"label": "Estimate!!Total!!Population for whom poverty status is determined!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "int", "group": "S1703", "limit": 0, "attributes": "S1703_C01_013EA,S1703_C01_013M,S1703_C01_013MA"}, "S0804_C03_052E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!INDUSTRY!!Wholesale trade", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_052EA,S0804_C03_052M,S0804_C03_052MA"}, "S0103_C01_032E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C01_032EA,S0103_C01_032M,S0103_C01_032MA"}, "S2503_C05_011E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$100,000 to $149,999", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C05_011EA,S2503_C05_011M,S2503_C05_011MA"}, "S0505_C05_001E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Foreign-born population", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C05_001EA,S0505_C05_001M,S0505_C05_001MA"}, "S1902_C01_010E": {"label": "Estimate!!Number!!HOUSEHOLD INCOME!!All households!!With retirement income", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1902", "limit": 0, "attributes": "S1902_C01_010EA,S1902_C01_010M,S1902_C01_010MA"}, "S1703_C01_014E": {"label": "Estimate!!Total!!Population for whom poverty status is determined!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "int", "group": "S1703", "limit": 0, "attributes": "S1703_C01_014EA,S1703_C01_014M,S1703_C01_014MA"}, "S2601CPR_C01_083E": {"label": "Estimate!!Total population!!EMPLOYMENT STATUS!!Population 16 years and over", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "int", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_083EA,S2601CPR_C01_083M,S2601CPR_C01_083MA"}, "S0804_C03_051E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!INDUSTRY!!Manufacturing", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_051EA,S0804_C03_051M,S0804_C03_051MA"}, "S0103_C01_039E": {"label": "Estimate!!Total!!RESPONSIBILITY FOR GRANDCHILDREN UNDER 18 YEARS!!Population 30 years and over!!Living with grandchild(ren)", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C01_039EA,S0103_C01_039M,S0103_C01_039MA"}, "S2503_C05_012E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$150,000 or more", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C05_012EA,S2503_C05_012M,S2503_C05_012MA"}, "S0504_C02_011E": {"label": "Estimate!!Foreign-born; Born in Africa!!Foreign-born population!!SEX AND AGE!!Female", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_011EA,S0504_C02_011M,S0504_C02_011MA"}, "S2601CPR_C01_082E": {"label": "Estimate!!Total population!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English!!Speak English less than \"very well\"", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_082EA,S2601CPR_C01_082M,S2601CPR_C01_082MA"}, "S0804_C03_050E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!INDUSTRY!!Construction", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_050EA,S0804_C03_050M,S0804_C03_050MA"}, "S1703_C01_015E": {"label": "Estimate!!Total!!Population for whom poverty status is determined!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "int", "group": "S1703", "limit": 0, "attributes": "S1703_C01_015EA,S1703_C01_015M,S1703_C01_015MA"}, "S0103_C01_038E": {"label": "Estimate!!Total!!RESPONSIBILITY FOR GRANDCHILDREN UNDER 18 YEARS!!Population 30 years and over", "concept": "Population 65 Years and Over in the United States", "predicateType": "int", "group": "S0103", "limit": 0, "attributes": "S0103_C01_038EA,S0103_C01_038M,S0103_C01_038MA"}, "S2503_C05_013E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Median household income (dollars)", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C05_013EA,S2503_C05_013M,S2503_C05_013MA"}, "S0504_C02_010E": {"label": "Estimate!!Foreign-born; Born in Africa!!Foreign-born population!!SEX AND AGE!!Male", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_010EA,S0504_C02_010M,S0504_C02_010MA"}, "S1902_C01_012E": {"label": "Estimate!!Number!!FAMILY INCOME BY NUMBER OF WORKERS IN FAMILY!!All families", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1902", "limit": 0, "attributes": "S1902_C01_012EA,S1902_C01_012M,S1902_C01_012MA"}, "S2601CPR_C01_081E": {"label": "Estimate!!Total population!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_081EA,S2601CPR_C01_081M,S2601CPR_C01_081MA"}, "S2503_C05_014E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS!!Less than $300", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C05_014EA,S2503_C05_014M,S2503_C05_014MA"}, "S1703_C01_016E": {"label": "Estimate!!Total!!Population for whom poverty status is determined!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "int", "group": "S1703", "limit": 0, "attributes": "S1703_C01_016EA,S1703_C01_016M,S1703_C01_016MA"}, "S0504_C02_013E": {"label": "Estimate!!Foreign-born; Born in Africa!!Foreign-born population!!SEX AND AGE!!5 to 17 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_013EA,S0504_C02_013M,S0504_C02_013MA"}, "S0103_C01_037E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree or higher", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C01_037EA,S0103_C01_037M,S0103_C01_037MA"}, "S1902_C01_011E": {"label": "Estimate!!Number!!HOUSEHOLD INCOME!!All households!!With other types of income", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1902", "limit": 0, "attributes": "S1902_C01_011EA,S1902_C01_011M,S1902_C01_011MA"}, "S2503_C05_015E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS!!$300 to $499", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C05_015EA,S2503_C05_015M,S2503_C05_015MA"}, "S2601CPR_C01_080E": {"label": "Estimate!!Total population!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!English only", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_080EA,S2601CPR_C01_080M,S2601CPR_C01_080MA"}, "S1703_C01_017E": {"label": "Estimate!!Total!!Population for whom poverty status is determined!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "int", "group": "S1703", "limit": 0, "attributes": "S1703_C01_017EA,S1703_C01_017M,S1703_C01_017MA"}, "S0504_C02_012E": {"label": "Estimate!!Foreign-born; Born in Africa!!Foreign-born population!!SEX AND AGE!!Under 5 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_012EA,S0504_C02_012M,S0504_C02_012MA"}, "S0103_C01_036E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college or associate's degree", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C01_036EA,S0103_C01_036M,S0103_C01_036MA"}, "S0504_C02_015E": {"label": "Estimate!!Foreign-born; Born in Africa!!Foreign-born population!!SEX AND AGE!!25 to 44 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_015EA,S0504_C02_015M,S0504_C02_015MA"}, "S2503_C05_004E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$10,000 to $14,999", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C05_004EA,S2503_C05_004M,S2503_C05_004MA"}, "S2601CPR_C01_075E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Not a U.S. citizen!!Female", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_075EA,S2601CPR_C01_075M,S2601CPR_C01_075MA"}, "S2801_C01_006E": {"label": "Estimate!!Total!!Total households!!TYPES OF COMPUTER!!Has one or more types of computing devices:!!Smartphone!!Smartphone with no other type of computing device", "concept": "Types of Computers and Internet Subscriptions", "predicateType": "int", "group": "S2801", "limit": 0, "attributes": "S2801_C01_006EA,S2801_C01_006M,S2801_C01_006MA"}, "S1703_C01_018E": {"label": "Estimate!!Total!!Population for whom poverty status is determined!!LIVING ARRANGEMENT!!In family households", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "int", "group": "S1703", "limit": 0, "attributes": "S1703_C01_018EA,S1703_C01_018M,S1703_C01_018MA"}, "S0504_C02_014E": {"label": "Estimate!!Foreign-born; Born in Africa!!Foreign-born population!!SEX AND AGE!!18 to 24 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_014EA,S0504_C02_014M,S0504_C02_014MA"}, "S2503_C05_005E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$15,000 to $19,999", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C05_005EA,S2503_C05_005M,S2503_C05_005MA"}, "S2601CPR_C01_074E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Not a U.S. citizen!!Male", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_074EA,S2601CPR_C01_074M,S2601CPR_C01_074MA"}, "S2801_C01_005E": {"label": "Estimate!!Total!!Total households!!TYPES OF COMPUTER!!Has one or more types of computing devices:!!Smartphone", "concept": "Types of Computers and Internet Subscriptions", "predicateType": "int", "group": "S2801", "limit": 0, "attributes": "S2801_C01_005EA,S2801_C01_005M,S2801_C01_005MA"}, "S1703_C01_019E": {"label": "Estimate!!Total!!Population for whom poverty status is determined!!LIVING ARRANGEMENT!!In family households!!In married-couple family", "concept": "Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months", "predicateType": "int", "group": "S1703", "limit": 0, "attributes": "S1703_C01_019EA,S1703_C01_019M,S1703_C01_019MA"}, "S0504_C02_017E": {"label": "Estimate!!Foreign-born; Born in Africa!!Foreign-born population!!SEX AND AGE!!55 to 64 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_017EA,S0504_C02_017M,S0504_C02_017MA"}, "S2503_C05_006E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$20,000 to $24,999", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C05_006EA,S2503_C05_006M,S2503_C05_006MA"}, "S2601CPR_C01_073E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Not a U.S. citizen", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "int", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_073EA,S2601CPR_C01_073M,S2601CPR_C01_073MA"}, "S2801_C01_008E": {"label": "Estimate!!Total!!Total households!!TYPES OF COMPUTER!!Has one or more types of computing devices:!!Tablet or other portable wireless computer!!Tablet or other portable wireless computer with no other type of computing device", "concept": "Types of Computers and Internet Subscriptions", "predicateType": "int", "group": "S2801", "limit": 0, "attributes": "S2801_C01_008EA,S2801_C01_008M,S2801_C01_008MA"}, "S2503_C05_007E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$25,000 to $34,999", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C05_007EA,S2503_C05_007M,S2503_C05_007MA"}, "S0504_C02_016E": {"label": "Estimate!!Foreign-born; Born in Africa!!Foreign-born population!!SEX AND AGE!!45 to 54 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_016EA,S0504_C02_016M,S0504_C02_016MA"}, "S2601CPR_C01_072E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Naturalized U.S. citizen!!Female", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_072EA,S2601CPR_C01_072M,S2601CPR_C01_072MA"}, "S2801_C01_007E": {"label": "Estimate!!Total!!Total households!!TYPES OF COMPUTER!!Has one or more types of computing devices:!!Tablet or other portable wireless computer", "concept": "Types of Computers and Internet Subscriptions", "predicateType": "int", "group": "S2801", "limit": 0, "attributes": "S2801_C01_007EA,S2801_C01_007M,S2801_C01_007MA"}, "S2503_C05_008E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$35,000 to $49,999", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C05_008EA,S2503_C05_008M,S2503_C05_008MA"}, "S2101_C02_009E": {"label": "Estimate!!Percent!!Civilian population 18 years and over!!AGE!!18 to 34 years", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C02_009EA,S2101_C02_009M,S2101_C02_009MA"}, "S0504_C02_019E": {"label": "Estimate!!Foreign-born; Born in Africa!!Foreign-born population!!SEX AND AGE!!75 to 84 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_019EA,S0504_C02_019M,S0504_C02_019MA"}, "S1811_C03_029E": {"label": "Estimate!!No Disability!!Employed Population Age 16 and Over!!INDUSTRY!!Arts, entertainment, and recreation, and accommodation and food services", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C03_029EA,S1811_C03_029M,S1811_C03_029MA"}, "S0505_C02_133E": {"label": "Estimate!!Foreign-born; Born in Asia!!Occupied housing units!!ROOMS!!8 or more rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_133EA,S0505_C02_133M,S0505_C02_133MA"}, "S2801_C01_002E": {"label": "Estimate!!Total!!Total households!!TYPES OF COMPUTER!!Has one or more types of computing devices:", "concept": "Types of Computers and Internet Subscriptions", "predicateType": "int", "group": "S2801", "limit": 0, "attributes": "S2801_C01_002EA,S2801_C01_002M,S2801_C01_002MA"}, "S2601CPR_C01_079E": {"label": "Estimate!!Total population!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "int", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_079EA,S2601CPR_C01_079M,S2601CPR_C01_079MA"}, "S0103_C01_031E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over!!Separated", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C01_031EA,S0103_C01_031M,S0103_C01_031MA"}, "S0804_C03_059E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!INDUSTRY!!Other services (except public administration)", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_059EA,S0804_C03_059M,S0804_C03_059MA"}, "S0501_C04_137E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_137EA,S0501_C04_137M,S0501_C04_137MA"}, "S2503_C05_009E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$50,000 to $74,999", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C05_009EA,S2503_C05_009M,S2503_C05_009MA"}, "S0504_C02_018E": {"label": "Estimate!!Foreign-born; Born in Africa!!Foreign-born population!!SEX AND AGE!!65 to 74 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_018EA,S0504_C02_018M,S0504_C02_018MA"}, "S0505_C02_132E": {"label": "Estimate!!Foreign-born; Born in Asia!!Occupied housing units!!ROOMS!!6 or 7 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_132EA,S0505_C02_132M,S0505_C02_132MA"}, "S2601CPR_C01_078E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Entered before 2000", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_078EA,S2601CPR_C01_078M,S2601CPR_C01_078MA"}, "S2801_C01_001E": {"label": "Estimate!!Total!!Total households", "concept": "Types of Computers and Internet Subscriptions", "predicateType": "int", "group": "S2801", "limit": 0, "attributes": "S2801_C01_001EA,S2801_C01_001M,S2801_C01_001MA"}, "S0103_C01_030E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over!!Divorced", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C01_030EA,S0103_C01_030M,S0103_C01_030MA"}, "S0804_C03_058E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!INDUSTRY!!Arts, entertainment, and recreation, and accommodation and food services", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_058EA,S0804_C03_058M,S0804_C03_058MA"}, "S0501_C04_136E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_136EA,S0501_C04_136M,S0501_C04_136MA"}, "S1002_C01_029E": {"label": "Estimate!!Total!!HOUSEHOLDS!!Households", "concept": "Grandparents", "predicateType": "int", "group": "S1002", "limit": 0, "attributes": "S1002_C01_029EA,S1002_C01_029M,S1002_C01_029MA"}, "S2801_C01_004E": {"label": "Estimate!!Total!!Total households!!TYPES OF COMPUTER!!Has one or more types of computing devices:!!Desktop or laptop!!Desktop or laptop with no other type of computing device", "concept": "Types of Computers and Internet Subscriptions", "predicateType": "int", "group": "S2801", "limit": 0, "attributes": "S2801_C01_004EA,S2801_C01_004M,S2801_C01_004MA"}, "S0505_C02_131E": {"label": "Estimate!!Foreign-born; Born in Asia!!Occupied housing units!!ROOMS!!4 or 5 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_131EA,S0505_C02_131M,S0505_C02_131MA"}, "S2601CPR_C01_077E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Entered 2000 to 2009", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_077EA,S2601CPR_C01_077M,S2601CPR_C01_077MA"}, "S0804_C03_057E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!INDUSTRY!!Educational services, and health care and social assistance", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_057EA,S0804_C03_057M,S0804_C03_057MA"}, "S1002_C01_028E": {"label": "Estimate!!Total!!Grandparents living with own grandchildren under 18 years in households!!PRESENCE OF PARENT(S) OF GRANDCHILDREN!!Householder or spouse responsible for grandchildren with no parent of grandchildren present", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C01_028EA,S1002_C01_028M,S1002_C01_028MA"}, "S0505_C02_130E": {"label": "Estimate!!Foreign-born; Born in Asia!!Occupied housing units!!ROOMS!!2 or 3 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_130EA,S0505_C02_130M,S0505_C02_130MA"}, "S2801_C01_003E": {"label": "Estimate!!Total!!Total households!!TYPES OF COMPUTER!!Has one or more types of computing devices:!!Desktop or laptop", "concept": "Types of Computers and Internet Subscriptions", "predicateType": "int", "group": "S2801", "limit": 0, "attributes": "S2801_C01_003EA,S2801_C01_003M,S2801_C01_003MA"}, "S2601CPR_C01_076E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Entered 2010 or later", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_076EA,S2601CPR_C01_076M,S2601CPR_C01_076MA"}, "S0804_C03_056E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!INDUSTRY!!Professional, scientific, and management, and administrative and waste management services", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_056EA,S0804_C03_056M,S0804_C03_056MA"}, "S0102PR_C01_003E": {"label": "Estimate!!Total!!Total population!!SEX AND AGE!!Female", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_003EA,S0102PR_C01_003M,S0102PR_C01_003MA"}, "S1002_C01_027E": {"label": "Estimate!!Total!!Grandparents living with own grandchildren under 18 years in households", "concept": "Grandparents", "predicateType": "int", "group": "S1002", "limit": 0, "attributes": "S1002_C01_027EA,S1002_C01_027M,S1002_C01_027MA"}, "S2101_C02_005E": {"label": "Estimate!!Percent!!Civilian population 18 years and over!!PERIOD OF SERVICE!!Korean War veterans", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C02_005EA,S2101_C02_005M,S2101_C02_005MA"}, "S2418_C03_008E": {"label": "Estimate!!Median earnings (dollars) for female!!Civilian employed population 16 years and over with earnings!!Federal government workers", "concept": "Class of Worker by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2418", "limit": 0, "attributes": "S2418_C03_008EA,S2418_C03_008M,S2418_C03_008MA"}, "S2602_C01_014E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!Under 18 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C01_014EA,S2602_C01_014M,S2602_C01_014MA"}, "S0505_C02_137E": {"label": "Estimate!!Foreign-born; Born in Asia!!Occupied housing units!!VEHICLES AVAILABLE!!1 or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_137EA,S0505_C02_137M,S0505_C02_137MA"}, "S1811_C03_025E": {"label": "Estimate!!No Disability!!Employed Population Age 16 and Over!!INDUSTRY!!Information", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C03_025EA,S1811_C03_025M,S1811_C03_025MA"}, "S0102PR_C01_004E": {"label": "Estimate!!Total!!Total population!!SEX AND AGE!!Median age (years)", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_004EA,S0102PR_C01_004M,S0102PR_C01_004MA"}, "S1002_C01_026E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Grandparents living with own grandchildren under 18 years for whom poverty status is determined!!Income in the past 12 months at or above poverty level", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C01_026EA,S1002_C01_026M,S1002_C01_026MA"}, "S2101_C02_006E": {"label": "Estimate!!Percent!!Civilian population 18 years and over!!PERIOD OF SERVICE!!World War II veterans", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C02_006EA,S2101_C02_006M,S2101_C02_006MA"}, "S1811_C03_026E": {"label": "Estimate!!No Disability!!Employed Population Age 16 and Over!!INDUSTRY!!Finance and insurance, and real estate and rental and leasing", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C03_026EA,S1811_C03_026M,S1811_C03_026MA"}, "S2418_C03_009E": {"label": "Estimate!!Median earnings (dollars) for female!!Civilian employed population 16 years and over with earnings!!Self-employed in own not incorporated business workers and unpaid family workers", "concept": "Class of Worker by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2418", "limit": 0, "attributes": "S2418_C03_009EA,S2418_C03_009M,S2418_C03_009MA"}, "S2602_C01_015E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!Under 18 years!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C01_015EA,S2602_C01_015M,S2602_C01_015MA"}, "S0505_C02_136E": {"label": "Estimate!!Foreign-born; Born in Asia!!Occupied housing units!!VEHICLES AVAILABLE!!None", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_136EA,S0505_C02_136M,S0505_C02_136MA"}, "S1902_C01_009E": {"label": "Estimate!!Number!!HOUSEHOLD INCOME!!All households!!With cash public assistance income or Food Stamps/SNAP!!With cash public assistance", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1902", "limit": 0, "attributes": "S1902_C01_009EA,S1902_C01_009M,S1902_C01_009MA"}, "S0102PR_C01_005E": {"label": "Estimate!!Total!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_005EA,S0102PR_C01_005M,S0102PR_C01_005MA"}, "S2101_C02_007E": {"label": "Estimate!!Percent!!Civilian population 18 years and over!!SEX!!Male", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C02_007EA,S2101_C02_007M,S2101_C02_007MA"}, "S2418_C03_006E": {"label": "Estimate!!Median earnings (dollars) for female!!Civilian employed population 16 years and over with earnings!!Local government workers", "concept": "Class of Worker by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2418", "limit": 0, "attributes": "S2418_C03_006EA,S2418_C03_006M,S2418_C03_006MA"}, "S1811_C03_027E": {"label": "Estimate!!No Disability!!Employed Population Age 16 and Over!!INDUSTRY!!Professional, scientific, and management, and administrative and waste management services", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C03_027EA,S1811_C03_027M,S1811_C03_027MA"}, "S1002_C01_025E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Grandparents living with own grandchildren under 18 years for whom poverty status is determined!!Income in the past 12 months below poverty level", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C01_025EA,S1002_C01_025M,S1002_C01_025MA"}, "S2602_C01_016E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!Under 18 years!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C01_016EA,S2602_C01_016M,S2602_C01_016MA"}, "S0505_C02_135E": {"label": "Estimate!!Foreign-born; Born in Asia!!Occupied housing units!!1.01 or more occupants per room", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_135EA,S0505_C02_135M,S0505_C02_135MA"}, "S0102PR_C01_006E": {"label": "Estimate!!Total!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_006EA,S0102PR_C01_006M,S0102PR_C01_006MA"}, "S2101_C02_008E": {"label": "Estimate!!Percent!!Civilian population 18 years and over!!SEX!!Female", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C02_008EA,S2101_C02_008M,S2101_C02_008MA"}, "S1811_C03_028E": {"label": "Estimate!!No Disability!!Employed Population Age 16 and Over!!INDUSTRY!!Educational services, and health care and social assistance", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C03_028EA,S1811_C03_028M,S1811_C03_028MA"}, "S2418_C03_007E": {"label": "Estimate!!Median earnings (dollars) for female!!Civilian employed population 16 years and over with earnings!!State government workers", "concept": "Class of Worker by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2418", "limit": 0, "attributes": "S2418_C03_007EA,S2418_C03_007M,S2418_C03_007MA"}, "S1002_C01_024E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Grandparents living with own grandchildren under 18 years for whom poverty status is determined", "concept": "Grandparents", "predicateType": "int", "group": "S1002", "limit": 0, "attributes": "S1002_C01_024EA,S1002_C01_024M,S1002_C01_024MA"}, "S2602_C01_017E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!65 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C01_017EA,S2602_C01_017M,S2602_C01_017MA"}, "S0505_C02_134E": {"label": "Estimate!!Foreign-born; Born in Asia!!Occupied housing units!!Median number of rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_134EA,S0505_C02_134M,S0505_C02_134MA"}, "S2602_C01_010E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!55 to 64 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C01_010EA,S2602_C01_010M,S2602_C01_010MA"}, "S2101_C02_001E": {"label": "Estimate!!Percent!!Civilian population 18 years and over", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C02_001EA,S2101_C02_001M,S2101_C02_001MA"}, "S1002_C01_023E": {"label": "Estimate!!Total!!DISABILITY STATUS!!Civilian grandparents living with own grandchildren under 18 years!!With any disability", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C01_023EA,S1002_C01_023M,S1002_C01_023MA"}, "S1811_C03_021E": {"label": "Estimate!!No Disability!!Employed Population Age 16 and Over!!INDUSTRY!!Manufacturing", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C03_021EA,S1811_C03_021M,S1811_C03_021MA"}, "S1002_C01_022E": {"label": "Estimate!!Total!!DISABILITY STATUS!!Civilian grandparents living with own grandchildren under 18 years", "concept": "Grandparents", "predicateType": "int", "group": "S1002", "limit": 0, "attributes": "S1002_C01_022EA,S1002_C01_022M,S1002_C01_022MA"}, "S2602_C01_011E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!65 to 74 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C01_011EA,S2602_C01_011M,S2602_C01_011MA"}, "S2101_C02_002E": {"label": "Estimate!!Percent!!Civilian population 18 years and over!!PERIOD OF SERVICE!!Gulf War (9/2001 or later) veterans", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C02_002EA,S2101_C02_002M,S2101_C02_002MA"}, "S1811_C03_022E": {"label": "Estimate!!No Disability!!Employed Population Age 16 and Over!!INDUSTRY!!Wholesale trade", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C03_022EA,S1811_C03_022M,S1811_C03_022MA"}, "S0102PR_C01_001E": {"label": "Estimate!!Total!!Total population", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_001EA,S0102PR_C01_001M,S0102PR_C01_001MA"}, "S2602_C01_012E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!75 to 84 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C01_012EA,S2602_C01_012M,S2602_C01_012MA"}, "S2101_C02_003E": {"label": "Estimate!!Percent!!Civilian population 18 years and over!!PERIOD OF SERVICE!!Gulf War (8/1990 to 8/2001) veterans", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C02_003EA,S2101_C02_003M,S2101_C02_003MA"}, "S1002_C01_021E": {"label": "Estimate!!Total!!Grandparents living with own grandchildren under 18 years!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Speak other language!!Speak English less than \"very well\"", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C01_021EA,S1002_C01_021M,S1002_C01_021MA"}, "S0505_C02_139E": {"label": "Estimate!!Foreign-born; Born in Asia!!Occupied housing units!!SELECTED CHARACTERISTICS!!Limited English Speaking Households", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_139EA,S0505_C02_139M,S0505_C02_139MA"}, "S1811_C03_023E": {"label": "Estimate!!No Disability!!Employed Population Age 16 and Over!!INDUSTRY!!Retail trade", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C03_023EA,S1811_C03_023M,S1811_C03_023MA"}, "S0102PR_C01_002E": {"label": "Estimate!!Total!!Total population!!SEX AND AGE!!Male", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_002EA,S0102PR_C01_002M,S0102PR_C01_002MA"}, "S2101_C02_004E": {"label": "Estimate!!Percent!!Civilian population 18 years and over!!PERIOD OF SERVICE!!Vietnam War veterans", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C02_004EA,S2101_C02_004M,S2101_C02_004MA"}, "S2602_C01_013E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!85 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C01_013EA,S2602_C01_013M,S2602_C01_013MA"}, "S1002_C01_020E": {"label": "Estimate!!Total!!Grandparents living with own grandchildren under 18 years!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Speak other language!!Speak English \"very well\"", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C01_020EA,S1002_C01_020M,S1002_C01_020MA"}, "S0505_C02_138E": {"label": "Estimate!!Foreign-born; Born in Asia!!Occupied housing units!!SELECTED CHARACTERISTICS!!No telephone service available", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_138EA,S0505_C02_138M,S0505_C02_138MA"}, "S1811_C03_024E": {"label": "Estimate!!No Disability!!Employed Population Age 16 and Over!!INDUSTRY!!Transportation and warehousing, and utilities", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C03_024EA,S1811_C03_024M,S1811_C03_024MA"}, "S2603_C04_022E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!White", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C04_022EA,S2603_C04_022M,S2603_C04_022MA"}, "S0103_C01_007E": {"label": "Estimate!!Total!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C01_007EA,S0103_C01_007M,S0103_C01_007MA"}, "S2703_C02_023E": {"label": "Estimate!!Private Coverage!!Civilian noninstitutionalized population!!PRIVATE HEALTH INSURANCE ALONE OR IN COMBINATION!!55 to 64 years", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2703", "limit": 0, "attributes": "S2703_C02_023EA,S2703_C02_023M,S2703_C02_023MA"}, "S1902_C01_026E": {"label": "Estimate!!Number!!PER CAPITA INCOME BY RACE AND HISPANIC OR LATINO ORIGIN!!Total population!!Two or more races", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1902", "limit": 0, "attributes": "S1902_C01_026EA,S1902_C01_026M,S1902_C01_026MA"}, "S2101_C02_010E": {"label": "Estimate!!Percent!!Civilian population 18 years and over!!AGE!!35 to 54 years", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C02_010EA,S2101_C02_010M,S2101_C02_010MA"}, "S2603_C04_023E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C04_023EA,S2603_C04_023M,S2603_C04_023MA"}, "S0103_C01_006E": {"label": "Estimate!!Total!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C01_006EA,S0103_C01_006M,S0103_C01_006MA"}, "S1902_C01_025E": {"label": "Estimate!!Number!!PER CAPITA INCOME BY RACE AND HISPANIC OR LATINO ORIGIN!!Total population!!One race--!!Some other race", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1902", "limit": 0, "attributes": "S1902_C01_025EA,S1902_C01_025M,S1902_C01_025MA"}, "S2703_C02_024E": {"label": "Estimate!!Private Coverage!!Civilian noninstitutionalized population!!PRIVATE HEALTH INSURANCE ALONE OR IN COMBINATION!!65 to 74 years", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2703", "limit": 0, "attributes": "S2703_C02_024EA,S2703_C02_024M,S2703_C02_024MA"}, "S2101_C02_011E": {"label": "Estimate!!Percent!!Civilian population 18 years and over!!AGE!!55 to 64 years", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C02_011EA,S2101_C02_011M,S2101_C02_011MA"}, "S2603_C04_024E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C04_024EA,S2603_C04_024M,S2603_C04_024MA"}, "S0103_C01_005E": {"label": "Estimate!!Total!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C01_005EA,S0103_C01_005M,S0103_C01_005MA"}, "S2703_C02_021E": {"label": "Estimate!!Private Coverage!!Civilian noninstitutionalized population!!PRIVATE HEALTH INSURANCE ALONE OR IN COMBINATION!!35 to 44 years", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2703", "limit": 0, "attributes": "S2703_C02_021EA,S2703_C02_021M,S2703_C02_021MA"}, "S1902_C01_028E": {"label": "Estimate!!Number!!PER CAPITA INCOME BY RACE AND HISPANIC OR LATINO ORIGIN!!Total population!!White alone, not Hispanic or Latino", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1902", "limit": 0, "attributes": "S1902_C01_028EA,S1902_C01_028M,S1902_C01_028MA"}, "S2603_C04_025E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Asian", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C04_025EA,S2603_C04_025M,S2603_C04_025MA"}, "S2101_C02_012E": {"label": "Estimate!!Percent!!Civilian population 18 years and over!!AGE!!65 to 74 years", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C02_012EA,S2101_C02_012M,S2101_C02_012MA"}, "S1811_C03_020E": {"label": "Estimate!!No Disability!!Employed Population Age 16 and Over!!INDUSTRY!!Construction", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C03_020EA,S1811_C03_020M,S1811_C03_020MA"}, "S1902_C01_027E": {"label": "Estimate!!Number!!PER CAPITA INCOME BY RACE AND HISPANIC OR LATINO ORIGIN!!Total population!!Hispanic or Latino origin (of any race)", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1902", "limit": 0, "attributes": "S1902_C01_027EA,S1902_C01_027M,S1902_C01_027MA"}, "S2703_C02_022E": {"label": "Estimate!!Private Coverage!!Civilian noninstitutionalized population!!PRIVATE HEALTH INSURANCE ALONE OR IN COMBINATION!!45 to 54 years", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2703", "limit": 0, "attributes": "S2703_C02_022EA,S2703_C02_022M,S2703_C02_022MA"}, "S0103_C01_004E": {"label": "Estimate!!Total!!Total population!!SEX AND AGE!!Median age (years)", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C01_004EA,S0103_C01_004M,S0103_C01_004MA"}, "S0102PR_C01_007E": {"label": "Estimate!!Total!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_007EA,S0102PR_C01_007M,S0102PR_C01_007MA"}, "S2703_C02_027E": {"label": "Estimate!!Private Coverage!!Civilian noninstitutionalized population!!COVERAGE ALONE!!Private health insurance alone!!Employer-based health insurance alone", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2703", "limit": 0, "attributes": "S2703_C02_027EA,S2703_C02_027M,S2703_C02_027MA"}, "S2603_C04_026E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C04_026EA,S2603_C04_026M,S2603_C04_026MA"}, "S2703_C02_028E": {"label": "Estimate!!Private Coverage!!Civilian noninstitutionalized population!!COVERAGE ALONE!!Private health insurance alone!!Direct-purchase health insurance alone", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2703", "limit": 0, "attributes": "S2703_C02_028EA,S2703_C02_028M,S2703_C02_028MA"}, "S2603_C04_027E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Some other race", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C04_027EA,S2603_C04_027M,S2603_C04_027MA"}, "S0102PR_C01_008E": {"label": "Estimate!!Total!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_008EA,S0102PR_C01_008M,S0102PR_C01_008MA"}, "S0103_C01_009E": {"label": "Estimate!!Total!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C01_009EA,S0103_C01_009M,S0103_C01_009MA"}, "S2603_C04_028E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!Two or more races", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C04_028EA,S2603_C04_028M,S2603_C04_028MA"}, "S0102PR_C01_009E": {"label": "Estimate!!Total!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_009EA,S0102PR_C01_009M,S0102PR_C01_009MA"}, "S2703_C02_025E": {"label": "Estimate!!Private Coverage!!Civilian noninstitutionalized population!!PRIVATE HEALTH INSURANCE ALONE OR IN COMBINATION!!75 years and over", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2703", "limit": 0, "attributes": "S2703_C02_025EA,S2703_C02_025M,S2703_C02_025MA"}, "S2703_C02_026E": {"label": "Estimate!!Private Coverage!!Civilian noninstitutionalized population!!COVERAGE ALONE!!Private health insurance alone", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2703", "limit": 0, "attributes": "S2703_C02_026EA,S2703_C02_026M,S2703_C02_026MA"}, "S2603_C04_029E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!Hispanic or Latino (of any race)", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C04_029EA,S2603_C04_029M,S2603_C04_029MA"}, "S0103_C01_008E": {"label": "Estimate!!Total!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C01_008EA,S0103_C01_008M,S0103_C01_008MA"}, "S2703_C02_029E": {"label": "Estimate!!Private Coverage!!Civilian noninstitutionalized population!!COVERAGE ALONE!!Private health insurance alone!!Tricare/military health coverage alone", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2703", "limit": 0, "attributes": "S2703_C02_029EA,S2703_C02_029M,S2703_C02_029MA"}, "S1902_C01_020E": {"label": "Estimate!!Number!!PER CAPITA INCOME BY RACE AND HISPANIC OR LATINO ORIGIN!!Total population!!One race--!!White", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1902", "limit": 0, "attributes": "S1902_C01_020EA,S1902_C01_020M,S1902_C01_020MA"}, "S0504_C02_021E": {"label": "Estimate!!Foreign-born; Born in Africa!!Foreign-born population!!SEX AND AGE!!Median age (years)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_021EA,S0504_C02_021M,S0504_C02_021MA"}, "S0504_C02_020E": {"label": "Estimate!!Foreign-born; Born in Africa!!Foreign-born population!!SEX AND AGE!!85 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_020EA,S0504_C02_020M,S0504_C02_020MA"}, "S1902_C01_022E": {"label": "Estimate!!Number!!PER CAPITA INCOME BY RACE AND HISPANIC OR LATINO ORIGIN!!Total population!!One race--!!American Indian and Alaska Native", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1902", "limit": 0, "attributes": "S1902_C01_022EA,S1902_C01_022M,S1902_C01_022MA"}, "S2601CPR_C01_071E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Naturalized U.S. citizen!!Male", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_071EA,S2601CPR_C01_071M,S2601CPR_C01_071MA"}, "PRINCITY": {"label": "Principal City", "group": "N/A", "limit": 0}, "S0103_C01_003E": {"label": "Estimate!!Total!!Total population!!SEX AND AGE!!Female", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C01_003EA,S0103_C01_003M,S0103_C01_003MA"}, "S0504_C02_023E": {"label": "Estimate!!Foreign-born; Born in Africa!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_023EA,S0504_C02_023M,S0504_C02_023MA"}, "S1902_C01_021E": {"label": "Estimate!!Number!!PER CAPITA INCOME BY RACE AND HISPANIC OR LATINO ORIGIN!!Total population!!One race--!!Black or African American", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1902", "limit": 0, "attributes": "S1902_C01_021EA,S1902_C01_021M,S1902_C01_021MA"}, "S2601CPR_C01_070E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Naturalized U.S. citizen", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "int", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_070EA,S2601CPR_C01_070M,S2601CPR_C01_070MA"}, "S2503_C05_001E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C05_001EA,S2503_C05_001M,S2503_C05_001MA"}, "S0103_C01_002E": {"label": "Estimate!!Total!!Total population!!SEX AND AGE!!Male", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C01_002EA,S0103_C01_002M,S0103_C01_002MA"}, "S0504_C02_022E": {"label": "Estimate!!Foreign-born; Born in Africa!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_022EA,S0504_C02_022M,S0504_C02_022MA"}, "S0504_C02_025E": {"label": "Estimate!!Foreign-born; Born in Africa!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_025EA,S0504_C02_025M,S0504_C02_025MA"}, "S1902_C01_024E": {"label": "Estimate!!Number!!PER CAPITA INCOME BY RACE AND HISPANIC OR LATINO ORIGIN!!Total population!!One race--!!Native Hawaiian and Other Pacific Islander", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1902", "limit": 0, "attributes": "S1902_C01_024EA,S1902_C01_024M,S1902_C01_024MA"}, "S2503_C05_002E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Less than $5,000", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C05_002EA,S2503_C05_002M,S2503_C05_002MA"}, "S0103_C01_001E": {"label": "Estimate!!Total!!Total population", "concept": "Population 65 Years and Over in the United States", "predicateType": "int", "group": "S0103", "limit": 0, "attributes": "S0103_C01_001EA,S0103_C01_001M,S0103_C01_001MA"}, "S1902_C01_023E": {"label": "Estimate!!Number!!PER CAPITA INCOME BY RACE AND HISPANIC OR LATINO ORIGIN!!Total population!!One race--!!Asian", "concept": "Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1902", "limit": 0, "attributes": "S1902_C01_023EA,S1902_C01_023M,S1902_C01_023MA"}, "S2503_C05_003E": {"label": "Estimate!!Renter-occupied housing units!!Occupied housing units!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$5,000 to $9,999", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C05_003EA,S2503_C05_003M,S2503_C05_003MA"}, "S0504_C02_024E": {"label": "Estimate!!Foreign-born; Born in Africa!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_024EA,S0504_C02_024M,S0504_C02_024MA"}, "S0504_C02_027E": {"label": "Estimate!!Foreign-born; Born in Africa!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_027EA,S0504_C02_027M,S0504_C02_027MA"}, "S2601CPR_C01_063E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "int", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_063EA,S2601CPR_C01_063M,S2601CPR_C01_063MA"}, "S0804_C03_027E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Speak language other than English!!Speak English less than \"very well\"", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_027EA,S0804_C03_027M,S0804_C03_027MA"}, "S0504_C02_026E": {"label": "Estimate!!Foreign-born; Born in Africa!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_026EA,S0504_C02_026M,S0504_C02_026MA"}, "S2601CPR_C01_062E": {"label": "Estimate!!Total population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Elsewhere", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_062EA,S2601CPR_C01_062M,S2601CPR_C01_062MA"}, "S0804_C03_026E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Speak language other than English!!Speak English \"very well\"", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_026EA,S0804_C03_026M,S0804_C03_026MA"}, "S0504_C02_029E": {"label": "Estimate!!Foreign-born; Born in Africa!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_029EA,S0504_C02_029M,S0504_C02_029MA"}, "S2601CPR_C01_061E": {"label": "Estimate!!Total population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in Puerto Rico or the United States!!In the United States", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_061EA,S2601CPR_C01_061M,S2601CPR_C01_061MA"}, "S0804_C03_025E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Speak language other than English", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_025EA,S0804_C03_025M,S0804_C03_025MA"}, "S0504_C02_028E": {"label": "Estimate!!Foreign-born; Born in Africa!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_028EA,S0504_C02_028M,S0504_C02_028MA"}, "S2601CPR_C01_060E": {"label": "Estimate!!Total population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in Puerto Rico or the United States!!In Puerto Rico!!Different municipio", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_060EA,S2601CPR_C01_060M,S2601CPR_C01_060MA"}, "S0102PR_C01_010E": {"label": "Estimate!!Total!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_010EA,S0102PR_C01_010M,S0102PR_C01_010MA"}, "S0804_C03_024E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born!!Not a U.S. citizen", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_024EA,S0804_C03_024M,S0804_C03_024MA"}, "S1002_C01_019E": {"label": "Estimate!!Total!!Grandparents living with own grandchildren under 18 years!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Speak other language", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C01_019EA,S1002_C01_019M,S1002_C01_019MA"}, "S1811_C03_017E": {"label": "Estimate!!No Disability!!Employed Population Age 16 and Over!!OCCUPATION!!Natural resources, construction, and maintenance occupations", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C03_017EA,S1811_C03_017M,S1811_C03_017MA"}, "S2601CPR_C01_067E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "int", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_067EA,S2601CPR_C01_067M,S2601CPR_C01_067MA"}, "S0804_C03_023E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born!!Naturalized U.S. citizen", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_023EA,S0804_C03_023M,S0804_C03_023MA"}, "S1002_C01_018E": {"label": "Estimate!!Total!!Grandparents living with own grandchildren under 18 years!!NATIVITY!!Foreign born", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C01_018EA,S1002_C01_018M,S1002_C01_018MA"}, "S1811_C03_018E": {"label": "Estimate!!No Disability!!Employed Population Age 16 and Over!!OCCUPATION!!Production, transportation, and material moving occupations", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C03_018EA,S1811_C03_018M,S1811_C03_018MA"}, "S2601CPR_C01_066E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Native!!Female", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_066EA,S2601CPR_C01_066M,S2601CPR_C01_066MA"}, "S0804_C03_022E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_022EA,S0804_C03_022M,S0804_C03_022MA"}, "S1002_C01_017E": {"label": "Estimate!!Total!!Grandparents living with own grandchildren under 18 years!!NATIVITY!!Native", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C01_017EA,S1002_C01_017M,S1002_C01_017MA"}, "S1811_C03_019E": {"label": "Estimate!!No Disability!!Employed Population Age 16 and Over!!INDUSTRY!!Agriculture, forestry, fishing and hunting, and mining", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C03_019EA,S1811_C03_019M,S1811_C03_019MA"}, "S2601CPR_C01_065E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Native!!Male", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_065EA,S2601CPR_C01_065M,S2601CPR_C01_065MA"}, "S0804_C03_021E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!NATIVITY AND CITIZENSHIP STATUS!!Native", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_021EA,S0804_C03_021M,S0804_C03_021MA"}, "S1002_C01_016E": {"label": "Estimate!!Total!!Grandparents living with own grandchildren under 18 years!!LABOR FORCE STATUS!!In labor force", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C01_016EA,S1002_C01_016M,S1002_C01_016MA"}, "S2601CPR_C01_064E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Native", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "int", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_064EA,S2601CPR_C01_064M,S2601CPR_C01_064MA"}, "S0804_C03_020E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino origin", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_020EA,S0804_C03_020M,S0804_C03_020MA"}, "S0102PR_C01_015E": {"label": "Estimate!!Total!!RELATIONSHIP!!Population in households", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_015EA,S0102PR_C01_015M,S0102PR_C01_015MA"}, "S1002_C01_015E": {"label": "Estimate!!Total!!Grandparents living with own grandchildren under 18 years!!MARITAL STATUS!!Unmarried (never married, widowed, and divorced)", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C01_015EA,S1002_C01_015M,S1002_C01_015MA"}, "S2101_C02_017E": {"label": "Estimate!!Percent!!Civilian population 18 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Asian alone", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C02_017EA,S2101_C02_017M,S2101_C02_017MA"}, "S1811_C03_013E": {"label": "Estimate!!No Disability!!Employed Population Age 16 and Over!!CLASS OF WORKER!!Unpaid family workers", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C03_013EA,S1811_C03_013M,S1811_C03_013MA"}, "S0102PR_C01_016E": {"label": "Estimate!!Total!!RELATIONSHIP!!Population in households!!Householder or spouse", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_016EA,S0102PR_C01_016M,S0102PR_C01_016MA"}, "S2101_C02_018E": {"label": "Estimate!!Percent!!Civilian population 18 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Native Hawaiian and Other Pacific Islander alone", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C02_018EA,S2101_C02_018M,S2101_C02_018MA"}, "S1002_C01_014E": {"label": "Estimate!!Total!!Grandparents living with own grandchildren under 18 years!!MARITAL STATUS!!Now married (including separated and spouse absent)", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C01_014EA,S1002_C01_014M,S1002_C01_014MA"}, "S1811_C03_014E": {"label": "Estimate!!No Disability!!Employed Population Age 16 and Over!!OCCUPATION!!Management, business, science, and arts occupations", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C03_014EA,S1811_C03_014M,S1811_C03_014MA"}, "S0102PR_C01_017E": {"label": "Estimate!!Total!!RELATIONSHIP!!Population in households!!Parent", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_017EA,S0102PR_C01_017M,S0102PR_C01_017MA"}, "S2101_C02_019E": {"label": "Estimate!!Percent!!Civilian population 18 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Some other race alone", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C02_019EA,S2101_C02_019M,S2101_C02_019MA"}, "S1811_C03_015E": {"label": "Estimate!!No Disability!!Employed Population Age 16 and Over!!OCCUPATION!!Service occupations", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C03_015EA,S1811_C03_015M,S1811_C03_015MA"}, "S1002_C01_013E": {"label": "Estimate!!Total!!Grandparents living with own grandchildren under 18 years!!SEX!!Female", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C01_013EA,S1002_C01_013M,S1002_C01_013MA"}, "S0102PR_C01_018E": {"label": "Estimate!!Total!!RELATIONSHIP!!Population in households!!Other relatives", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_018EA,S0102PR_C01_018M,S0102PR_C01_018MA"}, "S1002_C01_012E": {"label": "Estimate!!Total!!Grandparents living with own grandchildren under 18 years!!SEX!!Male", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C01_012EA,S1002_C01_012M,S1002_C01_012MA"}, "S1811_C03_016E": {"label": "Estimate!!No Disability!!Employed Population Age 16 and Over!!OCCUPATION!!Sales and office occupations", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C03_016EA,S1811_C03_016M,S1811_C03_016MA"}, "S2601CPR_C01_068E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Male", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_068EA,S2601CPR_C01_068M,S2601CPR_C01_068MA"}, "S2601CPR_C01_069E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Female", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_069EA,S2601CPR_C01_069M,S2601CPR_C01_069MA"}, "S2801_C01_030E": {"label": "Estimate!!Total!!Total households!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$75,000 or more:!!With a broadband Internet subscription", "concept": "Types of Computers and Internet Subscriptions", "predicateType": "int", "group": "S2801", "limit": 0, "attributes": "S2801_C01_030EA,S2801_C01_030M,S2801_C01_030MA"}, "S0102PR_C01_011E": {"label": "Estimate!!Total!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_011EA,S0102PR_C01_011M,S0102PR_C01_011MA"}, "S1002_C01_011E": {"label": "Estimate!!Total!!Grandparents living with own grandchildren under 18 years!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C01_011EA,S1002_C01_011M,S1002_C01_011MA"}, "S2101_C02_013E": {"label": "Estimate!!Percent!!Civilian population 18 years and over!!AGE!!75 years and over", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C02_013EA,S2101_C02_013M,S2101_C02_013MA"}, "S2603_C04_030E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!White alone, Not Hispanic or Latino", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C04_030EA,S2603_C04_030M,S2603_C04_030MA"}, "S0102PR_C01_012E": {"label": "Estimate!!Total!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_012EA,S0102PR_C01_012M,S0102PR_C01_012MA"}, "S2101_C02_014E": {"label": "Estimate!!Percent!!Civilian population 18 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C02_014EA,S2101_C02_014M,S2101_C02_014MA"}, "S1002_C01_010E": {"label": "Estimate!!Total!!Grandparents living with own grandchildren under 18 years!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C01_010EA,S1002_C01_010M,S1002_C01_010MA"}, "S1811_C03_010E": {"label": "Estimate!!No Disability!!Employed Population Age 16 and Over!!CLASS OF WORKER!!State government workers", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C03_010EA,S1811_C03_010M,S1811_C03_010MA"}, "S2603_C04_031E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!MARITAL STATUS!!Population 15 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C04_031EA,S2603_C04_031M,S2603_C04_031MA"}, "S0102PR_C01_013E": {"label": "Estimate!!Total!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_013EA,S0102PR_C01_013M,S0102PR_C01_013MA"}, "S2101_C02_015E": {"label": "Estimate!!Percent!!Civilian population 18 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Black or African American alone", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C02_015EA,S2101_C02_015M,S2101_C02_015MA"}, "S2603_C04_032E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C04_032EA,S2603_C04_032M,S2603_C04_032MA"}, "S1811_C03_011E": {"label": "Estimate!!No Disability!!Employed Population Age 16 and Over!!CLASS OF WORKER!!Federal government workers", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C03_011EA,S1811_C03_011M,S1811_C03_011MA"}, "S0804_C03_029E": {"label": "Estimate!!Car, truck, or van -- carpooled!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$1 to $9,999 or loss", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_029EA,S0804_C03_029M,S0804_C03_029MA"}, "S0102PR_C01_014E": {"label": "Estimate!!Total!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_014EA,S0102PR_C01_014M,S0102PR_C01_014MA"}, "S2101_C02_016E": {"label": "Estimate!!Percent!!Civilian population 18 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!American Indian and Alaska Native alone", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C02_016EA,S2101_C02_016M,S2101_C02_016MA"}, "S2801_C01_031E": {"label": "Estimate!!Total!!Total households!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$75,000 or more:!!Without an Internet subscription", "concept": "Types of Computers and Internet Subscriptions", "predicateType": "int", "group": "S2801", "limit": 0, "attributes": "S2801_C01_031EA,S2801_C01_031M,S2801_C01_031MA"}, "S0804_C03_028E": {"label": "Estimate!!Car, truck, or van -- carpooled!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "int", "group": "S0804", "limit": 0, "attributes": "S0804_C03_028EA,S0804_C03_028M,S0804_C03_028MA"}, "S2603_C04_033E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C04_033EA,S2603_C04_033M,S2603_C04_033MA"}, "S1811_C03_012E": {"label": "Estimate!!No Disability!!Employed Population Age 16 and Over!!CLASS OF WORKER!!Self-employed in own not incorporated business workers", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C03_012EA,S1811_C03_012M,S1811_C03_012MA"}, "S2703_C02_030E": {"label": "Estimate!!Private Coverage!!Civilian noninstitutionalized population!!COVERAGE ALONE!!Private health insurance alone!!Subsidized market place coverage alone", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2703", "limit": 0, "attributes": "S2703_C02_030EA,S2703_C02_030M,S2703_C02_030MA"}, "S2101_C02_021E": {"label": "Estimate!!Percent!!Civilian population 18 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino (of any race)", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C02_021EA,S2101_C02_021M,S2101_C02_021MA"}, "S2603_C04_010E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!Total population!!SEX AND AGE!!55 to 64 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C04_010EA,S2603_C04_010M,S2603_C04_010MA"}, "S0103_C01_019E": {"label": "Estimate!!Total!!RELATIONSHIP!!Population in households!!Nonrelatives", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C01_019EA,S0103_C01_019M,S0103_C01_019MA"}, "S2101_C02_022E": {"label": "Estimate!!Percent!!Civilian population 18 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C02_022EA,S2101_C02_022M,S2101_C02_022MA"}, "S2603_C04_011E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!Total population!!SEX AND AGE!!65 to 74 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C04_011EA,S2603_C04_011M,S2603_C04_011MA"}, "S0103_C01_018E": {"label": "Estimate!!Total!!RELATIONSHIP!!Population in households!!Other relatives", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C01_018EA,S0103_C01_018M,S0103_C01_018MA"}, "S2101_C02_023E": {"label": "Estimate!!Percent!!MEDIAN INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Civilian population 18 years and over with income", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C02_023EA,S2101_C02_023M,S2101_C02_023MA"}, "S2603_C04_012E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!Total population!!SEX AND AGE!!75 to 84 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C04_012EA,S2603_C04_012M,S2603_C04_012MA"}, "S1501_C01_001E": {"label": "Estimate!!Total!!AGE BY EDUCATIONAL ATTAINMENT!!Population 18 to 24 years", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C01_001EA,S1501_C01_001M,S1501_C01_001MA"}, "S0103_C01_017E": {"label": "Estimate!!Total!!RELATIONSHIP!!Population in households!!Parent", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C01_017EA,S0103_C01_017M,S0103_C01_017MA"}, "S2101_C02_024E": {"label": "Estimate!!Percent!!MEDIAN INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Civilian population 18 years and over with income!!Male", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C02_024EA,S2101_C02_024M,S2101_C02_024MA"}, "S2603_C04_013E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!Total population!!SEX AND AGE!!85 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C04_013EA,S2603_C04_013M,S2603_C04_013MA"}, "S0103_C01_016E": {"label": "Estimate!!Total!!RELATIONSHIP!!Population in households!!Householder or spouse", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C01_016EA,S0103_C01_016M,S0103_C01_016MA"}, "S2603_C04_014E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!Total population!!SEX AND AGE!!Under 18 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C04_014EA,S2603_C04_014M,S2603_C04_014MA"}, "S1501_C01_003E": {"label": "Estimate!!Total!!AGE BY EDUCATIONAL ATTAINMENT!!Population 18 to 24 years!!High school graduate (includes equivalency)", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C01_003EA,S1501_C01_003M,S1501_C01_003MA"}, "S0102PR_C01_019E": {"label": "Estimate!!Total!!RELATIONSHIP!!Population in households!!Nonrelatives", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_019EA,S0102PR_C01_019M,S0102PR_C01_019MA"}, "S2603_C04_015E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!Total population!!SEX AND AGE!!Under 18 years!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C04_015EA,S2603_C04_015M,S2603_C04_015MA"}, "S1501_C01_002E": {"label": "Estimate!!Total!!AGE BY EDUCATIONAL ATTAINMENT!!Population 18 to 24 years!!Less than high school graduate", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C01_002EA,S1501_C01_002M,S1501_C01_002MA"}, "S2603_C04_016E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!Total population!!SEX AND AGE!!Under 18 years!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C04_016EA,S2603_C04_016M,S2603_C04_016MA"}, "S1501_C01_005E": {"label": "Estimate!!Total!!AGE BY EDUCATIONAL ATTAINMENT!!Population 18 to 24 years!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C01_005EA,S1501_C01_005M,S1501_C01_005MA"}, "S2603_C04_017E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!Total population!!SEX AND AGE!!65 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C04_017EA,S2603_C04_017M,S2603_C04_017MA"}, "S2101_C02_020E": {"label": "Estimate!!Percent!!Civilian population 18 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C02_020EA,S2101_C02_020M,S2101_C02_020MA"}, "S1501_C01_004E": {"label": "Estimate!!Total!!AGE BY EDUCATIONAL ATTAINMENT!!Population 18 to 24 years!!Some college or associate's degree", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C01_004EA,S1501_C01_004M,S1501_C01_004MA"}, "S0804_C03_031E": {"label": "Estimate!!Car, truck, or van -- carpooled!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$15,000 to $24,999", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_031EA,S0804_C03_031M,S0804_C03_031MA"}, "S2603_C04_018E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!Total population!!SEX AND AGE!!65 years and over!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C04_018EA,S2603_C04_018M,S2603_C04_018MA"}, "S1501_C01_007E": {"label": "Estimate!!Total!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than 9th grade", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C01_007EA,S1501_C01_007M,S1501_C01_007MA"}, "S0103_C01_011E": {"label": "Estimate!!Total!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C01_011EA,S0103_C01_011M,S0103_C01_011MA"}, "S0504_C02_031E": {"label": "Estimate!!Foreign-born; Born in Africa!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_031EA,S0504_C02_031M,S0504_C02_031MA"}, "S0804_C03_030E": {"label": "Estimate!!Car, truck, or van -- carpooled!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$10,000 to $14,999", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_030EA,S0804_C03_030M,S0804_C03_030MA"}, "S2603_C04_019E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!Total population!!SEX AND AGE!!65 years and over!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C04_019EA,S2603_C04_019M,S2603_C04_019MA"}, "S1501_C01_006E": {"label": "Estimate!!Total!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C01_006EA,S1501_C01_006M,S1501_C01_006MA"}, "S0103_C01_010E": {"label": "Estimate!!Total!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C01_010EA,S0103_C01_010M,S0103_C01_010MA"}, "S0504_C02_030E": {"label": "Estimate!!Foreign-born; Born in Africa!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_030EA,S0504_C02_030M,S0504_C02_030MA"}, "S1501_C01_009E": {"label": "Estimate!!Total!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate (includes equivalency)", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C01_009EA,S1501_C01_009M,S1501_C01_009MA"}, "S0504_C02_033E": {"label": "Estimate!!Foreign-born; Born in Africa!!Foreign-born population!!HOUSEHOLD TYPE!!In other households", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_033EA,S0504_C02_033M,S0504_C02_033MA"}, "S1501_C01_008E": {"label": "Estimate!!Total!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 years and over!!9th to 12th grade, no diploma", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C01_008EA,S1501_C01_008M,S1501_C01_008MA"}, "S0504_C02_032E": {"label": "Estimate!!Foreign-born; Born in Africa!!Foreign-born population!!HOUSEHOLD TYPE!!In married-couple family", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_032EA,S0504_C02_032M,S0504_C02_032MA"}, "S0504_C02_035E": {"label": "Estimate!!Foreign-born; Born in Africa!!Foreign-born population!!Average family size", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_035EA,S0504_C02_035M,S0504_C02_035MA"}, "S0103_C01_015E": {"label": "Estimate!!Total!!RELATIONSHIP!!Population in households", "concept": "Population 65 Years and Over in the United States", "predicateType": "int", "group": "S0103", "limit": 0, "attributes": "S0103_C01_015EA,S0103_C01_015M,S0103_C01_015MA"}, "S0103_C01_014E": {"label": "Estimate!!Total!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C01_014EA,S0103_C01_014M,S0103_C01_014MA"}, "S0504_C02_034E": {"label": "Estimate!!Foreign-born; Born in Africa!!Foreign-born population!!Average household size", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_034EA,S0504_C02_034M,S0504_C02_034MA"}, "S0504_C02_037E": {"label": "Estimate!!Foreign-born; Born in Africa!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_037EA,S0504_C02_037M,S0504_C02_037MA"}, "S0103_C01_013E": {"label": "Estimate!!Total!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C01_013EA,S0103_C01_013M,S0103_C01_013MA"}, "S0504_C02_036E": {"label": "Estimate!!Foreign-born; Born in Africa!!MARITAL STATUS!!Population 15 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C02_036EA,S0504_C02_036M,S0504_C02_036MA"}, "S0103_C01_012E": {"label": "Estimate!!Total!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C01_012EA,S0103_C01_012M,S0103_C01_012MA"}, "S0504_C02_039E": {"label": "Estimate!!Foreign-born; Born in Africa!!MARITAL STATUS!!Population 15 years and over!!Divorced or separated", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_039EA,S0504_C02_039M,S0504_C02_039MA"}, "S2601CPR_C01_051E": {"label": "Estimate!!Total population!!DISABILITY STATUS!!Population 18 to 64 years!!With a disability", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_051EA,S2601CPR_C01_051M,S2601CPR_C01_051MA"}, "S1811_C03_009E": {"label": "Estimate!!No Disability!!Employed Population Age 16 and Over!!CLASS OF WORKER!!Local government workers", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C03_009EA,S1811_C03_009M,S1811_C03_009MA"}, "S0804_C03_039E": {"label": "Estimate!!Car, truck, or van -- carpooled!!POVERTY STATUS IN THE PAST 12 MONTHS!!Workers 16 years and over for whom poverty status is determined!!Below 100 percent of the poverty level", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_039EA,S0804_C03_039M,S0804_C03_039MA"}, "S2701_C03_005E": {"label": "Estimate!!Percent Insured!!Civilian noninstitutionalized population!!AGE!!26 to 34 years", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C03_005EA,S2701_C03_005M,S2701_C03_005MA"}, "S2701_C03_004E": {"label": "Estimate!!Percent Insured!!Civilian noninstitutionalized population!!AGE!!19 to 25 years", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C03_004EA,S2701_C03_004M,S2701_C03_004MA"}, "S0504_C02_038E": {"label": "Estimate!!Foreign-born; Born in Africa!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C02_038EA,S0504_C02_038M,S0504_C02_038MA"}, "S0102PR_C01_020E": {"label": "Estimate!!Total!!RELATIONSHIP!!Population in households!!Nonrelatives!!Unmarried partner", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_020EA,S0102PR_C01_020M,S0102PR_C01_020MA"}, "S2601CPR_C01_050E": {"label": "Estimate!!Total population!!DISABILITY STATUS!!Population 18 to 64 years", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "int", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_050EA,S2601CPR_C01_050M,S2601CPR_C01_050MA"}, "S0804_C03_038E": {"label": "Estimate!!Car, truck, or van -- carpooled!!POVERTY STATUS IN THE PAST 12 MONTHS!!Workers 16 years and over for whom poverty status is determined", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "int", "group": "S0804", "limit": 0, "attributes": "S0804_C03_038EA,S0804_C03_038M,S0804_C03_038MA"}, "S2409_C04_001E": {"label": "Estimate!!Female!!Full-time, year-round civilian employed population 16 years and over", "concept": "Class of Worker by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2409", "limit": 0, "attributes": "S2409_C04_001EA,S2409_C04_001M,S2409_C04_001MA"}, "S2801_C01_029E": {"label": "Estimate!!Total!!Total households!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$75,000 or more:!!With dial-up Internet subscription alone", "concept": "Types of Computers and Internet Subscriptions", "predicateType": "int", "group": "S2801", "limit": 0, "attributes": "S2801_C01_029EA,S2801_C01_029M,S2801_C01_029MA"}, "S2701_C03_003E": {"label": "Estimate!!Percent Insured!!Civilian noninstitutionalized population!!AGE!!6 to 18 years", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C03_003EA,S2701_C03_003M,S2701_C03_003MA"}, "S1002_C01_009E": {"label": "Estimate!!Total!!Grandparents living with own grandchildren under 18 years!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C01_009EA,S1002_C01_009M,S1002_C01_009MA"}, "S0102PR_C01_021E": {"label": "Estimate!!Total!!HOUSEHOLDS BY TYPE!!Households", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_021EA,S0102PR_C01_021M,S0102PR_C01_021MA"}, "S0804_C03_037E": {"label": "Estimate!!Car, truck, or van -- carpooled!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!Median earnings (dollars)", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "int", "group": "S0804", "limit": 0, "attributes": "S0804_C03_037EA,S0804_C03_037M,S0804_C03_037MA"}, "S1002_C01_008E": {"label": "Estimate!!Total!!Grandparents living with own grandchildren under 18 years!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C01_008EA,S1002_C01_008M,S1002_C01_008MA"}, "S2701_C03_002E": {"label": "Estimate!!Percent Insured!!Civilian noninstitutionalized population!!AGE!!Under 6 years", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C03_002EA,S2701_C03_002M,S2701_C03_002MA"}, "S0102PR_C01_022E": {"label": "Estimate!!Total!!HOUSEHOLDS BY TYPE!!Households!!Family households", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_022EA,S0102PR_C01_022M,S0102PR_C01_022MA"}, "S0804_C03_036E": {"label": "Estimate!!Car, truck, or van -- carpooled!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$75,000 or more", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_036EA,S0804_C03_036M,S0804_C03_036MA"}, "S1002_C01_007E": {"label": "Estimate!!Total!!Grandparents living with own grandchildren under 18 years!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C01_007EA,S1002_C01_007M,S1002_C01_007MA"}, "S2801_C01_026E": {"label": "Estimate!!Total!!Total households!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$20,000 to $74,999:!!With a broadband Internet subscription", "concept": "Types of Computers and Internet Subscriptions", "predicateType": "int", "group": "S2801", "limit": 0, "attributes": "S2801_C01_026EA,S2801_C01_026M,S2801_C01_026MA"}, "S1811_C03_005E": {"label": "Estimate!!No Disability!!Employed Population Age 16 and Over!!CLASS OF WORKER!!Private for-profit wage and salary workers", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C03_005EA,S1811_C03_005M,S1811_C03_005MA"}, "S2601CPR_C01_055E": {"label": "Estimate!!Total population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "int", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_055EA,S2601CPR_C01_055M,S2601CPR_C01_055MA"}, "S0902_C02_011E": {"label": "Estimate!!White alone, not Hispanic or Latino!!HOUSEHOLD TYPE!!Population 15 to 19 years in households", "concept": "Characteristics of Teenagers 15 to 19 Years Old", "predicateType": "int", "group": "S0902", "limit": 0, "attributes": "S0902_C02_011EA,S0902_C02_011M,S0902_C02_011MA"}, "S0804_C03_035E": {"label": "Estimate!!Car, truck, or van -- carpooled!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$65,000 to $74,999", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_035EA,S0804_C03_035M,S0804_C03_035MA"}, "S2409_C04_004E": {"label": "Estimate!!Female!!Full-time, year-round civilian employed population 16 years and over!!Private for-profit wage and salary workers:!!Self-employed in own incorporated business workers", "concept": "Class of Worker by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2409", "limit": 0, "attributes": "S2409_C04_004EA,S2409_C04_004M,S2409_C04_004MA"}, "S2701_C03_009E": {"label": "Estimate!!Percent Insured!!Civilian noninstitutionalized population!!AGE!!65 to 74 years", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C03_009EA,S2701_C03_009M,S2701_C03_009MA"}, "S1002_C01_006E": {"label": "Estimate!!Total!!Grandparents living with own grandchildren under 18 years!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C01_006EA,S1002_C01_006M,S1002_C01_006MA"}, "S1811_C03_006E": {"label": "Estimate!!No Disability!!Employed Population Age 16 and Over!!CLASS OF WORKER!!Employee of private company workers", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C03_006EA,S1811_C03_006M,S1811_C03_006MA"}, "S2801_C01_025E": {"label": "Estimate!!Total!!Total households!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$20,000 to $74,999:!!With dial-up Internet subscription alone", "concept": "Types of Computers and Internet Subscriptions", "predicateType": "int", "group": "S2801", "limit": 0, "attributes": "S2801_C01_025EA,S2801_C01_025M,S2801_C01_025MA"}, "S2601CPR_C01_054E": {"label": "Estimate!!Total population!!DISABILITY STATUS!!Population 65 years and over!!With a disability", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_054EA,S2601CPR_C01_054M,S2601CPR_C01_054MA"}, "S0902_C02_010E": {"label": "Estimate!!White alone, not Hispanic or Latino!!Population 15 to 19 years!!MARITAL STATUS AND FERTILITY!!Female!!Female with a birth in the past 12 months", "concept": "Characteristics of Teenagers 15 to 19 Years Old", "predicateType": "float", "group": "S0902", "limit": 0, "attributes": "S0902_C02_010EA,S0902_C02_010M,S0902_C02_010MA"}, "S2409_C04_005E": {"label": "Estimate!!Female!!Full-time, year-round civilian employed population 16 years and over!!Private not-for-profit wage and salary workers", "concept": "Class of Worker by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2409", "limit": 0, "attributes": "S2409_C04_005EA,S2409_C04_005M,S2409_C04_005MA"}, "S0804_C03_034E": {"label": "Estimate!!Car, truck, or van -- carpooled!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$50,000 to $64,999", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_034EA,S0804_C03_034M,S0804_C03_034MA"}, "S2701_C03_008E": {"label": "Estimate!!Percent Insured!!Civilian noninstitutionalized population!!AGE!!55 to 64 years", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C03_008EA,S2701_C03_008M,S2701_C03_008MA"}, "S1002_C01_005E": {"label": "Estimate!!Total!!Grandparents living with own grandchildren under 18 years!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C01_005EA,S1002_C01_005M,S1002_C01_005MA"}, "S1811_C03_007E": {"label": "Estimate!!No Disability!!Employed Population Age 16 and Over!!CLASS OF WORKER!!Self-employed in own incorporated business workers", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C03_007EA,S1811_C03_007M,S1811_C03_007MA"}, "S2601CPR_C01_053E": {"label": "Estimate!!Total population!!DISABILITY STATUS!!Population 65 years and over", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "int", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_053EA,S2601CPR_C01_053M,S2601CPR_C01_053MA"}, "S2409_C04_002E": {"label": "Estimate!!Female!!Full-time, year-round civilian employed population 16 years and over!!Private for-profit wage and salary workers:", "concept": "Class of Worker by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2409", "limit": 0, "attributes": "S2409_C04_002EA,S2409_C04_002M,S2409_C04_002MA"}, "S2801_C01_028E": {"label": "Estimate!!Total!!Total households!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$75,000 or more:", "concept": "Types of Computers and Internet Subscriptions", "predicateType": "int", "group": "S2801", "limit": 0, "attributes": "S2801_C01_028EA,S2801_C01_028M,S2801_C01_028MA"}, "S0804_C03_033E": {"label": "Estimate!!Car, truck, or van -- carpooled!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$35,000 to $49,999", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_033EA,S0804_C03_033M,S0804_C03_033MA"}, "S2701_C03_007E": {"label": "Estimate!!Percent Insured!!Civilian noninstitutionalized population!!AGE!!45 to 54 years", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C03_007EA,S2701_C03_007M,S2701_C03_007MA"}, "S1002_C01_004E": {"label": "Estimate!!Total!!Grandparents living with own grandchildren under 18 years!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C01_004EA,S1002_C01_004M,S1002_C01_004MA"}, "S2601CPR_C01_052E": {"label": "Estimate!!Total population!!DISABILITY STATUS!!Population 18 to 64 years!!No disability", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_052EA,S2601CPR_C01_052M,S2601CPR_C01_052MA"}, "S2801_C01_027E": {"label": "Estimate!!Total!!Total households!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$20,000 to $74,999:!!Without an Internet subscription", "concept": "Types of Computers and Internet Subscriptions", "predicateType": "int", "group": "S2801", "limit": 0, "attributes": "S2801_C01_027EA,S2801_C01_027M,S2801_C01_027MA"}, "S1811_C03_008E": {"label": "Estimate!!No Disability!!Employed Population Age 16 and Over!!CLASS OF WORKER!!Private not-for-profit wage and salary workers", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C03_008EA,S1811_C03_008M,S1811_C03_008MA"}, "S2409_C04_003E": {"label": "Estimate!!Female!!Full-time, year-round civilian employed population 16 years and over!!Private for-profit wage and salary workers:!!Employee of private company workers", "concept": "Class of Worker by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2409", "limit": 0, "attributes": "S2409_C04_003EA,S2409_C04_003M,S2409_C04_003MA"}, "S0804_C03_032E": {"label": "Estimate!!Car, truck, or van -- carpooled!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$25,000 to $34,999", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_032EA,S0804_C03_032M,S0804_C03_032MA"}, "S2701_C03_006E": {"label": "Estimate!!Percent Insured!!Civilian noninstitutionalized population!!AGE!!35 to 44 years", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C03_006EA,S2701_C03_006M,S2701_C03_006MA"}, "S0102PR_C01_027E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_027EA,S0102PR_C01_027M,S0102PR_C01_027MA"}, "S2101_C02_029E": {"label": "Estimate!!Percent!!EDUCATIONAL ATTAINMENT!!Civilian population 25 years and over!!Some college or associate's degree", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C02_029EA,S2101_C02_029M,S2101_C02_029MA"}, "S1002_C01_003E": {"label": "Estimate!!Total!!Grandparents living with own grandchildren under 18 years!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C01_003EA,S1002_C01_003M,S1002_C01_003MA"}, "S2801_C01_022E": {"label": "Estimate!!Total!!Total households!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Less than $20,000:!!With a broadband Internet subscription", "concept": "Types of Computers and Internet Subscriptions", "predicateType": "int", "group": "S2801", "limit": 0, "attributes": "S2801_C01_022EA,S2801_C01_022M,S2801_C01_022MA"}, "S0902_C02_015E": {"label": "Estimate!!White alone, not Hispanic or Latino!!HOUSEHOLD TYPE!!Population 15 to 19 years in households!!In nonfamily households", "concept": "Characteristics of Teenagers 15 to 19 Years Old", "predicateType": "float", "group": "S0902", "limit": 0, "attributes": "S0902_C02_015EA,S0902_C02_015M,S0902_C02_015MA"}, "S1811_C03_001E": {"label": "Estimate!!No Disability!!Population Age 16 and Over", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "int", "group": "S1811", "limit": 0, "attributes": "S1811_C03_001EA,S1811_C03_001M,S1811_C03_001MA"}, "S2409_C04_008E": {"label": "Estimate!!Female!!Full-time, year-round civilian employed population 16 years and over!!Federal government workers", "concept": "Class of Worker by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2409", "limit": 0, "attributes": "S2409_C04_008EA,S2409_C04_008M,S2409_C04_008MA"}, "S0102PR_C01_028E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_028EA,S0102PR_C01_028M,S0102PR_C01_028MA"}, "S1002_C01_002E": {"label": "Estimate!!Total!!Grandparents living with own grandchildren under 18 years!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C01_002EA,S1002_C01_002M,S1002_C01_002MA"}, "S0902_C02_014E": {"label": "Estimate!!White alone, not Hispanic or Latino!!HOUSEHOLD TYPE!!Population 15 to 19 years in households!!In female householder, no spouse present, family households", "concept": "Characteristics of Teenagers 15 to 19 Years Old", "predicateType": "float", "group": "S0902", "limit": 0, "attributes": "S0902_C02_014EA,S0902_C02_014M,S0902_C02_014MA"}, "S2801_C01_021E": {"label": "Estimate!!Total!!Total households!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Less than $20,000:!!With dial-up Internet subscription alone", "concept": "Types of Computers and Internet Subscriptions", "predicateType": "int", "group": "S2801", "limit": 0, "attributes": "S2801_C01_021EA,S2801_C01_021M,S2801_C01_021MA"}, "S2601CPR_C01_059E": {"label": "Estimate!!Total population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in Puerto Rico or the United States!!In Puerto Rico!!Same municipio", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_059EA,S2601CPR_C01_059M,S2601CPR_C01_059MA"}, "S1811_C03_002E": {"label": "Estimate!!No Disability!!Population Age 16 and Over!!EMPLOYMENT STATUS!!Employed", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C03_002EA,S1811_C03_002M,S1811_C03_002MA"}, "S2409_C04_009E": {"label": "Estimate!!Female!!Full-time, year-round civilian employed population 16 years and over!!Self-employed in own not incorporated business workers and unpaid family workers", "concept": "Class of Worker by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2409", "limit": 0, "attributes": "S2409_C04_009EA,S2409_C04_009M,S2409_C04_009MA"}, "S0102PR_C01_029E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_029EA,S0102PR_C01_029M,S0102PR_C01_029MA"}, "S1002_C01_001E": {"label": "Estimate!!Total!!Grandparents living with own grandchildren under 18 years", "concept": "Grandparents", "predicateType": "int", "group": "S1002", "limit": 0, "attributes": "S1002_C01_001EA,S1002_C01_001M,S1002_C01_001MA"}, "S2801_C01_024E": {"label": "Estimate!!Total!!Total households!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$20,000 to $74,999:", "concept": "Types of Computers and Internet Subscriptions", "predicateType": "int", "group": "S2801", "limit": 0, "attributes": "S2801_C01_024EA,S2801_C01_024M,S2801_C01_024MA"}, "S2601CPR_C01_057E": {"label": "Estimate!!Total population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in Puerto Rico or the United States", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_057EA,S2601CPR_C01_057M,S2601CPR_C01_057MA"}, "S0902_C02_013E": {"label": "Estimate!!White alone, not Hispanic or Latino!!HOUSEHOLD TYPE!!Population 15 to 19 years in households!!In male householder, no spouse present, family households", "concept": "Characteristics of Teenagers 15 to 19 Years Old", "predicateType": "float", "group": "S0902", "limit": 0, "attributes": "S0902_C02_013EA,S0902_C02_013M,S0902_C02_013MA"}, "S2601CPR_C01_058E": {"label": "Estimate!!Total population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in Puerto Rico or the United States!!In Puerto Rico", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_058EA,S2601CPR_C01_058M,S2601CPR_C01_058MA"}, "S2409_C04_006E": {"label": "Estimate!!Female!!Full-time, year-round civilian employed population 16 years and over!!Local government workers", "concept": "Class of Worker by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2409", "limit": 0, "attributes": "S2409_C04_006EA,S2409_C04_006M,S2409_C04_006MA"}, "S1811_C03_003E": {"label": "Estimate!!No Disability!!Population Age 16 and Over!!EMPLOYMENT STATUS!!Not in Labor Force", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C03_003EA,S1811_C03_003M,S1811_C03_003MA"}, "S1811_C03_004E": {"label": "Estimate!!No Disability!!Employed Population Age 16 and Over", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "int", "group": "S1811", "limit": 0, "attributes": "S1811_C03_004EA,S1811_C03_004M,S1811_C03_004MA"}, "S2601CPR_C01_056E": {"label": "Estimate!!Total population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Same address", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_056EA,S2601CPR_C01_056M,S2601CPR_C01_056MA"}, "S0902_C02_012E": {"label": "Estimate!!White alone, not Hispanic or Latino!!HOUSEHOLD TYPE!!Population 15 to 19 years in households!!In married-couple family households", "concept": "Characteristics of Teenagers 15 to 19 Years Old", "predicateType": "float", "group": "S0902", "limit": 0, "attributes": "S0902_C02_012EA,S0902_C02_012M,S0902_C02_012MA"}, "S2801_C01_023E": {"label": "Estimate!!Total!!Total households!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Less than $20,000:!!Without an Internet subscription", "concept": "Types of Computers and Internet Subscriptions", "predicateType": "int", "group": "S2801", "limit": 0, "attributes": "S2801_C01_023EA,S2801_C01_023M,S2801_C01_023MA"}, "S2409_C04_007E": {"label": "Estimate!!Female!!Full-time, year-round civilian employed population 16 years and over!!State government workers", "concept": "Class of Worker by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2409", "limit": 0, "attributes": "S2409_C04_007EA,S2409_C04_007M,S2409_C04_007MA"}, "S2701_C03_001E": {"label": "Estimate!!Percent Insured!!Civilian noninstitutionalized population", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C03_001EA,S2701_C03_001M,S2701_C03_001MA"}, "S0102PR_C01_023E": {"label": "Estimate!!Total!!HOUSEHOLDS BY TYPE!!Households!!Family households!!Married-couple family", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_023EA,S0102PR_C01_023M,S0102PR_C01_023MA"}, "S2101_C02_025E": {"label": "Estimate!!Percent!!MEDIAN INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Civilian population 18 years and over with income!!Female", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C02_025EA,S2101_C02_025M,S2101_C02_025MA"}, "S0102PR_C01_024E": {"label": "Estimate!!Total!!HOUSEHOLDS BY TYPE!!Households!!Family households!!Female householder, no spouse present, family", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_024EA,S0102PR_C01_024M,S0102PR_C01_024MA"}, "S2101_C02_026E": {"label": "Estimate!!Percent!!EDUCATIONAL ATTAINMENT!!Civilian population 25 years and over", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C02_026EA,S2101_C02_026M,S2101_C02_026MA"}, "S0902_C02_018E": {"label": "Estimate!!White alone, not Hispanic or Latino!!Population 16 to 19 years!!LABOR FORCE STATUS!!In the labor force", "concept": "Characteristics of Teenagers 15 to 19 Years Old", "predicateType": "float", "group": "S0902", "limit": 0, "attributes": "S0902_C02_018EA,S0902_C02_018M,S0902_C02_018MA"}, "S0102PR_C01_025E": {"label": "Estimate!!Total!!HOUSEHOLDS BY TYPE!!Households!!Nonfamily households", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_025EA,S0102PR_C01_025M,S0102PR_C01_025MA"}, "S2101_C02_027E": {"label": "Estimate!!Percent!!EDUCATIONAL ATTAINMENT!!Civilian population 25 years and over!!Less than high school graduate", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C02_027EA,S2101_C02_027M,S2101_C02_027MA"}, "S0902_C02_017E": {"label": "Estimate!!White alone, not Hispanic or Latino!!Population 16 to 19 years!!IDLENESS!!Not enrolled in school and not in the labor force", "concept": "Characteristics of Teenagers 15 to 19 Years Old", "predicateType": "float", "group": "S0902", "limit": 0, "attributes": "S0902_C02_017EA,S0902_C02_017M,S0902_C02_017MA"}, "S2801_C01_020E": {"label": "Estimate!!Total!!Total households!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Less than $20,000:", "concept": "Types of Computers and Internet Subscriptions", "predicateType": "int", "group": "S2801", "limit": 0, "attributes": "S2801_C01_020EA,S2801_C01_020M,S2801_C01_020MA"}, "S2603_C04_020E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!Total population!!SEX AND AGE!!Median age (years)", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C04_020EA,S2603_C04_020M,S2603_C04_020MA"}, "S0102PR_C01_026E": {"label": "Estimate!!Total!!HOUSEHOLDS BY TYPE!!Households!!Nonfamily households!!Householder living alone", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C01_026EA,S0102PR_C01_026M,S0102PR_C01_026MA"}, "S2101_C02_028E": {"label": "Estimate!!Percent!!EDUCATIONAL ATTAINMENT!!Civilian population 25 years and over!!High school graduate (includes equivalency)", "concept": "Veteran Status", "predicateType": "float", "group": "S2101", "limit": 0, "attributes": "S2101_C02_028EA,S2101_C02_028M,S2101_C02_028MA"}, "S0902_C02_016E": {"label": "Estimate!!White alone, not Hispanic or Latino!!Population 16 to 19 years", "concept": "Characteristics of Teenagers 15 to 19 Years Old", "predicateType": "int", "group": "S0902", "limit": 0, "attributes": "S0902_C02_016EA,S0902_C02_016M,S0902_C02_016MA"}, "S2603_C04_021E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C04_021EA,S2603_C04_021M,S2603_C04_021MA"}, "S0804_C03_083E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!35 to 44 minutes", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_083EA,S0804_C03_083M,S0804_C03_083MA"}, "S0101_C03_018E": {"label": "Estimate!!Male!!Total population!!AGE!!80 to 84 years", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C03_018EA,S0101_C03_018M,S0101_C03_018MA"}, "S1501_C01_011E": {"label": "Estimate!!Total!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Associate's degree", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C01_011EA,S1501_C01_011M,S1501_C01_011MA"}, "S2407_C05_006E": {"label": "Estimate!!Local, state, and federal government workers!!Civilian employed population 16 years and over!!Retail trade", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2407", "limit": 0, "attributes": "S2407_C05_006EA,S2407_C05_006M,S2407_C05_006MA"}, "S2603_C04_046E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!DISABILITY STATUS!!Total population!!With a disability", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C04_046EA,S2603_C04_046M,S2603_C04_046MA"}, "S2502_C03_009E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Hispanic or Latino origin", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C03_009EA,S2502_C03_009M,S2502_C03_009MA"}, "S0802_C04_009E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!SEX!!Male", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_009EA,S0802_C04_009M,S0802_C04_009MA"}, "S2603_C04_047E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!DISABILITY STATUS!!Population 18 to 64 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C04_047EA,S2603_C04_047M,S2603_C04_047MA"}, "S0804_C03_082E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!30 to 34 minutes", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_082EA,S0804_C03_082M,S0804_C03_082MA"}, "S0101_C03_019E": {"label": "Estimate!!Male!!Total population!!AGE!!85 years and over", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C03_019EA,S0101_C03_019M,S0101_C03_019MA"}, "S2407_C05_005E": {"label": "Estimate!!Local, state, and federal government workers!!Civilian employed population 16 years and over!!Wholesale trade", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2407", "limit": 0, "attributes": "S2407_C05_005EA,S2407_C05_005M,S2407_C05_005MA"}, "S1501_C01_010E": {"label": "Estimate!!Total!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college, no degree", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C01_010EA,S1501_C01_010M,S1501_C01_010MA"}, "S1301_C05_010E": {"label": "Estimate!!Percent of women who had a birth in the past 12 months who were unmarried!!Women 15 to 50 years!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Fertility", "predicateType": "float", "group": "S1301", "limit": 0, "attributes": "S1301_C05_010EA,S1301_C05_010M,S1301_C05_010MA"}, "S2603_C04_048E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!DISABILITY STATUS!!Population 18 to 64 years!!With a disability", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C04_048EA,S2603_C04_048M,S2603_C04_048MA"}, "S0804_C03_081E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!25 to 29 minutes", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_081EA,S0804_C03_081M,S0804_C03_081MA"}, "S0101_C03_016E": {"label": "Estimate!!Male!!Total population!!AGE!!70 to 74 years", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C03_016EA,S0101_C03_016M,S0101_C03_016MA"}, "S1501_C01_013E": {"label": "Estimate!!Total!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Graduate or professional degree", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C01_013EA,S1501_C01_013M,S1501_C01_013MA"}, "S2407_C05_004E": {"label": "Estimate!!Local, state, and federal government workers!!Civilian employed population 16 years and over!!Manufacturing", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2407", "limit": 0, "attributes": "S2407_C05_004EA,S2407_C05_004M,S2407_C05_004MA"}, "S2502_C03_007E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!One race --!!Some other race", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C03_007EA,S2502_C03_007M,S2502_C03_007MA"}, "S1301_C05_011E": {"label": "Estimate!!Percent of women who had a birth in the past 12 months who were unmarried!!Women 15 to 50 years!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Fertility", "predicateType": "float", "group": "S1301", "limit": 0, "attributes": "S1301_C05_011EA,S1301_C05_011M,S1301_C05_011MA"}, "S2603_C04_049E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!DISABILITY STATUS!!Population 18 to 64 years!!No disability", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C04_049EA,S2603_C04_049M,S2603_C04_049MA"}, "S0804_C03_080E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!20 to 24 minutes", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_080EA,S0804_C03_080M,S0804_C03_080MA"}, "S0101_C03_017E": {"label": "Estimate!!Male!!Total population!!AGE!!75 to 79 years", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C03_017EA,S0101_C03_017M,S0101_C03_017MA"}, "S2407_C05_003E": {"label": "Estimate!!Local, state, and federal government workers!!Civilian employed population 16 years and over!!Construction", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2407", "limit": 0, "attributes": "S2407_C05_003EA,S2407_C05_003M,S2407_C05_003MA"}, "S1501_C01_012E": {"label": "Estimate!!Total!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C01_012EA,S1501_C01_012M,S1501_C01_012MA"}, "S2502_C03_008E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Two or more races", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C03_008EA,S2502_C03_008M,S2502_C03_008MA"}, "S1501_C01_015E": {"label": "Estimate!!Total!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C01_015EA,S1501_C01_015M,S1501_C01_015MA"}, "S0505_C05_038E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_038EA,S0505_C05_038M,S0505_C05_038MA"}, "S1501_C01_014E": {"label": "Estimate!!Total!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C01_014EA,S1501_C01_014M,S1501_C01_014MA"}, "S2407_C05_009E": {"label": "Estimate!!Local, state, and federal government workers!!Civilian employed population 16 years and over!!Finance and insurance, and real estate and rental and leasing", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2407", "limit": 0, "attributes": "S2407_C05_009EA,S2407_C05_009M,S2407_C05_009MA"}, "S0505_C05_039E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!MARITAL STATUS!!Population 15 years and over!!Divorced or separated", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_039EA,S0505_C05_039M,S0505_C05_039MA"}, "S1501_C01_017E": {"label": "Estimate!!Total!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 to 34 years!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C01_017EA,S1501_C01_017M,S1501_C01_017MA"}, "S2407_C05_008E": {"label": "Estimate!!Local, state, and federal government workers!!Civilian employed population 16 years and over!!Information", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2407", "limit": 0, "attributes": "S2407_C05_008EA,S2407_C05_008M,S2407_C05_008MA"}, "S1501_C01_016E": {"label": "Estimate!!Total!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 to 34 years", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C01_016EA,S1501_C01_016M,S1501_C01_016MA"}, "S2407_C05_007E": {"label": "Estimate!!Local, state, and federal government workers!!Civilian employed population 16 years and over!!Transportation and warehousing, and utilities", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2407", "limit": 0, "attributes": "S2407_C05_007EA,S2407_C05_007M,S2407_C05_007MA"}, "S0701PR_C04_050E": {"label": "Estimate!!Moved; from the U.S.!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population 1 year and over for whom poverty status is determined!!Below 100 percent of the poverty level", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C04_050EA,S0701PR_C04_050M,S0701PR_C04_050MA"}, "S0801_C01_010E": {"label": "Estimate!!Total!!Workers 16 years and over!!MEANS OF TRANSPORTATION TO WORK!!Walked", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C01_010EA,S0801_C01_010M,S0801_C01_010MA"}, "S1501_C01_019E": {"label": "Estimate!!Total!!AGE BY EDUCATIONAL ATTAINMENT!!Population 35 to 44 years", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C01_019EA,S1501_C01_019M,S1501_C01_019MA"}, "S2408_C01_005E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Private not-for-profit wage and salary workers", "concept": "Class of Worker by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2408", "limit": 0, "attributes": "S2408_C01_005EA,S2408_C01_005M,S2408_C01_005MA"}, "S0505_C05_034E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Foreign-born population!!Average household size", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_034EA,S0505_C05_034M,S0505_C05_034MA"}, "S1501_C01_018E": {"label": "Estimate!!Total!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 to 34 years!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C01_018EA,S1501_C01_018M,S1501_C01_018MA"}, "S2408_C01_004E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Private for-profit wage and salary workers:!!Self-employed in own incorporated business workers", "concept": "Class of Worker by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2408", "limit": 0, "attributes": "S2408_C01_004EA,S2408_C01_004M,S2408_C01_004MA"}, "S0505_C05_035E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Foreign-born population!!Average family size", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_035EA,S0505_C05_035M,S0505_C05_035MA"}, "S0801_C01_012E": {"label": "Estimate!!Total!!Workers 16 years and over!!MEANS OF TRANSPORTATION TO WORK!!Taxi or ride-hailing services, motorcycle, or other means", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C01_012EA,S0801_C01_012M,S0801_C01_012MA"}, "S0701PR_C04_052E": {"label": "Estimate!!Moved; from the U.S.!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population 1 year and over for whom poverty status is determined!!At or above 150 percent of the poverty level", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C04_052EA,S0701PR_C04_052M,S0701PR_C04_052MA"}, "S0501_C04_111E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_111EA,S0501_C04_111M,S0501_C04_111MA"}, "S0804_C03_089E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over in households!!HOUSING TENURE!!Renter-occupied housing units", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_089EA,S0804_C03_089M,S0804_C03_089MA"}, "S2408_C01_003E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Private for-profit wage and salary workers:!!Employee of private company workers", "concept": "Class of Worker by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2408", "limit": 0, "attributes": "S2408_C01_003EA,S2408_C01_003M,S2408_C01_003MA"}, "S0505_C05_036E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!MARITAL STATUS!!Population 15 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C05_036EA,S0505_C05_036M,S0505_C05_036MA"}, "S0801_C01_011E": {"label": "Estimate!!Total!!Workers 16 years and over!!MEANS OF TRANSPORTATION TO WORK!!Bicycle", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C01_011EA,S0801_C01_011M,S0801_C01_011MA"}, "S0701PR_C04_051E": {"label": "Estimate!!Moved; from the U.S.!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population 1 year and over for whom poverty status is determined!!100 to 149 percent of the poverty level", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C04_051EA,S0701PR_C04_051M,S0701PR_C04_051MA"}, "S2408_C01_002E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Private for-profit wage and salary workers:", "concept": "Class of Worker by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2408", "limit": 0, "attributes": "S2408_C01_002EA,S2408_C01_002M,S2408_C01_002MA"}, "S0501_C04_110E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_110EA,S0501_C04_110M,S0501_C04_110MA"}, "S0804_C03_088E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over in households!!HOUSING TENURE!!Owner-occupied housing units", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_088EA,S0804_C03_088M,S0804_C03_088MA"}, "S0505_C05_037E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_037EA,S0505_C05_037M,S0505_C05_037MA"}, "S0701PR_C04_054E": {"label": "Estimate!!Moved; from the U.S.!!HOUSING TENURE!!Population 1 year and over in housing units!!Householder lived in owner-occupied housing units", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C04_054EA,S0701PR_C04_054M,S0701PR_C04_054MA"}, "S2408_C01_001E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over", "concept": "Class of Worker by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2408", "limit": 0, "attributes": "S2408_C01_001EA,S2408_C01_001M,S2408_C01_001MA"}, "S0505_C05_030E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_030EA,S0505_C05_030M,S0505_C05_030MA"}, "S2407_C05_002E": {"label": "Estimate!!Local, state, and federal government workers!!Civilian employed population 16 years and over!!Agriculture, forestry, fishing and hunting, and mining", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2407", "limit": 0, "attributes": "S2407_C05_002EA,S2407_C05_002M,S2407_C05_002MA"}, "S0804_C03_087E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over in households", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "int", "group": "S0804", "limit": 0, "attributes": "S0804_C03_087EA,S0804_C03_087M,S0804_C03_087MA"}, "S0701PR_C04_053E": {"label": "Estimate!!Moved; from the U.S.!!HOUSING TENURE!!Population 1 year and over in housing units", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C04_053EA,S0701PR_C04_053M,S0701PR_C04_053MA"}, "S0505_C05_031E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_031EA,S0505_C05_031M,S0505_C05_031MA"}, "S0804_C03_086E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!Mean travel time to work (minutes)", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_086EA,S0804_C03_086M,S0804_C03_086MA"}, "S2407_C05_001E": {"label": "Estimate!!Local, state, and federal government workers!!Civilian employed population 16 years and over", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2407", "limit": 0, "attributes": "S2407_C05_001EA,S2407_C05_001M,S2407_C05_001MA"}, "S0804_C03_085E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!60 or more minutes", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_085EA,S0804_C03_085M,S0804_C03_085MA"}, "S0505_C05_032E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Foreign-born population!!HOUSEHOLD TYPE!!In married-couple family", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_032EA,S0505_C05_032M,S0505_C05_032MA"}, "S0701PR_C04_056E": {"label": "Estimate!!Moved; from the U.S.!!PERCENT ALLOCATED!!Residence 1 year ago", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "int", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C04_056EA,S0701PR_C04_056M,S0701PR_C04_056MA"}, "S0804_C03_084E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!45 to 59 minutes", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_084EA,S0804_C03_084M,S0804_C03_084MA"}, "S0505_C05_033E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Foreign-born population!!HOUSEHOLD TYPE!!In other households", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_033EA,S0505_C05_033M,S0505_C05_033MA"}, "S0701PR_C04_055E": {"label": "Estimate!!Moved; from the U.S.!!HOUSING TENURE!!Population 1 year and over in housing units!!Householder lived in renter-occupied housing units", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C04_055EA,S0701PR_C04_055M,S0701PR_C04_055MA"}, "S0501_C02_099E": {"label": "Estimate!!Native!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income!!Mean retirement income (dollars)", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C02_099EA,S0501_C02_099M,S0501_C02_099MA"}, "S2602_C01_042E": {"label": "Estimate!!Total population!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree or higher", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C01_042EA,S2602_C01_042M,S2602_C01_042MA"}, "S2406_C02_003E": {"label": "Estimate!!Employee of private company workers!!Civilian employed population 16 years and over!!Service occupations", "concept": "Occupation by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2406", "limit": 0, "attributes": "S2406_C02_003EA,S2406_C02_003M,S2406_C02_003MA"}, "S0501_C04_105E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!100 to 199 percent of the poverty level", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_105EA,S0501_C04_105M,S0501_C04_105MA"}, "S2701_C03_017E": {"label": "Estimate!!Percent Insured!!Civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!Black or African American alone", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C03_017EA,S2701_C03_017M,S2701_C03_017MA"}, "S0801_C01_018E": {"label": "Estimate!!Total!!Workers 16 years and over!!PLACE OF WORK!!Living in a place", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C01_018EA,S0801_C01_018M,S0801_C01_018MA"}, "S2302_C01_027E": {"label": "Estimate!!Total!!WORK STATUS CHARACTERISTICS!!Married-couple families!!Householder did not work in the past 12 months:", "concept": "Employment Characteristics of Families", "predicateType": "int", "group": "S2302", "limit": 0, "attributes": "S2302_C01_027EA,S2302_C01_027M,S2302_C01_027MA"}, "S2602_C01_043E": {"label": "Estimate!!Total population!!VETERAN STATUS!!Civilian population 18 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C01_043EA,S2602_C01_043M,S2602_C01_043MA"}, "S0501_C04_104E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!Below 100 percent of the poverty level", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_104EA,S0501_C04_104M,S0501_C04_104MA"}, "S2302_C01_028E": {"label": "Estimate!!Total!!WORK STATUS CHARACTERISTICS!!Married-couple families!!Householder did not work in the past 12 months:!!Spouse worked full-time, year-round in the past 12 months", "concept": "Employment Characteristics of Families", "predicateType": "int", "group": "S2302", "limit": 0, "attributes": "S2302_C01_028EA,S2302_C01_028M,S2302_C01_028MA"}, "S2406_C02_004E": {"label": "Estimate!!Employee of private company workers!!Civilian employed population 16 years and over!!Sales and office occupations", "concept": "Occupation by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2406", "limit": 0, "attributes": "S2406_C02_004EA,S2406_C02_004M,S2406_C02_004MA"}, "S2701_C03_016E": {"label": "Estimate!!Percent Insured!!Civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C03_016EA,S2701_C03_016M,S2701_C03_016MA"}, "S0801_C01_017E": {"label": "Estimate!!Total!!Workers 16 years and over!!PLACE OF WORK!!Worked outside state of residence", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C01_017EA,S0801_C01_017M,S0801_C01_017MA"}, "S2701_C03_015E": {"label": "Estimate!!Percent Insured!!Civilian noninstitutionalized population!!SEX!!Female", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C03_015EA,S2701_C03_015M,S2701_C03_015MA"}, "S2601A_C04_008E": {"label": "Estimate!!Noninstitutionalized group quarters population!!Total population!!SEX AND AGE!!35 to 44 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_008EA,S2601A_C04_008M,S2601A_C04_008MA"}, "S0501_C02_097E": {"label": "Estimate!!Native!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income!!Mean cash public assistance income (dollars)", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C02_097EA,S0501_C02_097M,S0501_C02_097MA"}, "S0505_C05_040E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_040EA,S0505_C05_040M,S0505_C05_040MA"}, "S2602_C01_044E": {"label": "Estimate!!Total population!!VETERAN STATUS!!Civilian population 18 years and over!!Civilian veteran", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C01_044EA,S2602_C01_044M,S2602_C01_044MA"}, "S0501_C04_107E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_107EA,S0501_C04_107M,S0501_C04_107MA"}, "S2406_C02_005E": {"label": "Estimate!!Employee of private company workers!!Civilian employed population 16 years and over!!Natural resources, construction, and maintenance occupations", "concept": "Occupation by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2406", "limit": 0, "attributes": "S2406_C02_005EA,S2406_C02_005M,S2406_C02_005MA"}, "S2302_C01_029E": {"label": "Estimate!!Total!!WORK STATUS CHARACTERISTICS!!Married-couple families!!Householder did not work in the past 12 months:!!Spouse worked less than full-time, year-round in the past 12 months", "concept": "Employment Characteristics of Families", "predicateType": "int", "group": "S2302", "limit": 0, "attributes": "S2302_C01_029EA,S2302_C01_029M,S2302_C01_029MA"}, "S2701_C03_014E": {"label": "Estimate!!Percent Insured!!Civilian noninstitutionalized population!!SEX!!Male", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C03_014EA,S2701_C03_014M,S2701_C03_014MA"}, "S2601A_C04_009E": {"label": "Estimate!!Noninstitutionalized group quarters population!!Total population!!SEX AND AGE!!45 to 54 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_009EA,S2601A_C04_009M,S2601A_C04_009MA"}, "S0501_C02_098E": {"label": "Estimate!!Native!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_098EA,S0501_C02_098M,S0501_C02_098MA"}, "S0505_C05_041E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C05_041EA,S0505_C05_041M,S0505_C05_041MA"}, "S2602_C01_045E": {"label": "Estimate!!Total population!!DISABILITY STATUS!!Total population", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C01_045EA,S2602_C01_045M,S2602_C01_045MA"}, "S0501_C04_106E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!At or above 200 percent of the poverty level", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_106EA,S0501_C04_106M,S0501_C04_106MA"}, "S0801_C01_019E": {"label": "Estimate!!Total!!Workers 16 years and over!!PLACE OF WORK!!Living in a place!!Worked in place of residence", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C01_019EA,S0801_C01_019M,S0801_C01_019MA"}, "S2406_C02_006E": {"label": "Estimate!!Employee of private company workers!!Civilian employed population 16 years and over!!Production, transportation, and material moving occupations", "concept": "Occupation by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2406", "limit": 0, "attributes": "S2406_C02_006EA,S2406_C02_006M,S2406_C02_006MA"}, "S0801_C01_014E": {"label": "Estimate!!Total!!Workers 16 years and over!!PLACE OF WORK!!Worked in state of residence", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C01_014EA,S0801_C01_014M,S0801_C01_014MA"}, "S0501_C04_101E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!Median Household income (dollars)", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C04_101EA,S0501_C04_101M,S0501_C04_101MA"}, "S2302_C01_023E": {"label": "Estimate!!Total!!WORK STATUS CHARACTERISTICS!!Married-couple families!!Householder worked less than full-time, year-round in the past 12 months:", "concept": "Employment Characteristics of Families", "predicateType": "int", "group": "S2302", "limit": 0, "attributes": "S2302_C01_023EA,S2302_C01_023M,S2302_C01_023MA"}, "S2406_C02_007E": {"label": "Estimate!!Employee of private company workers!!PERCENT ALLOCATED!!Occupation", "concept": "Occupation by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2406", "limit": 0, "attributes": "S2406_C02_007EA,S2406_C02_007M,S2406_C02_007MA"}, "S1301_C05_008E": {"label": "Estimate!!Percent of women who had a birth in the past 12 months who were unmarried!!Women 15 to 50 years!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Fertility", "predicateType": "float", "group": "S1301", "limit": 0, "attributes": "S1301_C05_008EA,S1301_C05_008M,S1301_C05_008MA"}, "S2408_C01_009E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Self-employed in own not incorporated business workers and unpaid family workers", "concept": "Class of Worker by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2408", "limit": 0, "attributes": "S2408_C01_009EA,S2408_C01_009M,S2408_C01_009MA"}, "S0801_C01_013E": {"label": "Estimate!!Total!!Workers 16 years and over!!MEANS OF TRANSPORTATION TO WORK!!Worked from home", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C01_013EA,S0801_C01_013M,S0801_C01_013MA"}, "S0501_C04_100E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Food Stamp/SNAP benefits", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_100EA,S0501_C04_100M,S0501_C04_100MA"}, "S2302_C01_024E": {"label": "Estimate!!Total!!WORK STATUS CHARACTERISTICS!!Married-couple families!!Householder worked less than full-time, year-round in the past 12 months:!!Spouse worked full-time, year-round in the past 12 months", "concept": "Employment Characteristics of Families", "predicateType": "int", "group": "S2302", "limit": 0, "attributes": "S2302_C01_024EA,S2302_C01_024M,S2302_C01_024MA"}, "S1301_C05_009E": {"label": "Estimate!!Percent of women who had a birth in the past 12 months who were unmarried!!Women 15 to 50 years!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Fertility", "predicateType": "float", "group": "S1301", "limit": 0, "attributes": "S1301_C05_009EA,S1301_C05_009M,S1301_C05_009MA"}, "S2408_C01_008E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Federal government workers", "concept": "Class of Worker by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2408", "limit": 0, "attributes": "S2408_C01_008EA,S2408_C01_008M,S2408_C01_008MA"}, "S2602_C01_040E": {"label": "Estimate!!Total population!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C01_040EA,S2602_C01_040M,S2602_C01_040MA"}, "S0501_C04_103E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C04_103EA,S0501_C04_103M,S0501_C04_103MA"}, "S2701_C03_019E": {"label": "Estimate!!Percent Insured!!Civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!Asian alone", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C03_019EA,S2701_C03_019M,S2701_C03_019MA"}, "S0801_C01_016E": {"label": "Estimate!!Total!!Workers 16 years and over!!PLACE OF WORK!!Worked in state of residence!!Worked outside county of residence", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C01_016EA,S0801_C01_016M,S0801_C01_016MA"}, "S2302_C01_025E": {"label": "Estimate!!Total!!WORK STATUS CHARACTERISTICS!!Married-couple families!!Householder worked less than full-time, year-round in the past 12 months:!!Spouse worked less than full-time, year-round in the past 12 months", "concept": "Employment Characteristics of Families", "predicateType": "int", "group": "S2302", "limit": 0, "attributes": "S2302_C01_025EA,S2302_C01_025M,S2302_C01_025MA"}, "S2408_C01_007E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!State government workers", "concept": "Class of Worker by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2408", "limit": 0, "attributes": "S2408_C01_007EA,S2408_C01_007M,S2408_C01_007MA"}, "S2602_C01_041E": {"label": "Estimate!!Total population!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate or higher", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C01_041EA,S2602_C01_041M,S2602_C01_041MA"}, "S0501_C04_102E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!Average number of workers per household", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_102EA,S0501_C04_102M,S0501_C04_102MA"}, "S2408_C01_006E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Local government workers", "concept": "Class of Worker by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2408", "limit": 0, "attributes": "S2408_C01_006EA,S2408_C01_006M,S2408_C01_006MA"}, "S2701_C03_018E": {"label": "Estimate!!Percent Insured!!Civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!American Indian and Alaska Native alone", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C03_018EA,S2701_C03_018M,S2701_C03_018MA"}, "S0801_C01_015E": {"label": "Estimate!!Total!!Workers 16 years and over!!PLACE OF WORK!!Worked in state of residence!!Worked in county of residence", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C01_015EA,S0801_C01_015M,S0801_C01_015MA"}, "S2302_C01_026E": {"label": "Estimate!!Total!!WORK STATUS CHARACTERISTICS!!Married-couple families!!Householder worked less than full-time, year-round in the past 12 months:!!Spouse did not work in the past 12 months", "concept": "Employment Characteristics of Families", "predicateType": "int", "group": "S2302", "limit": 0, "attributes": "S2302_C01_026EA,S2302_C01_026M,S2302_C01_026MA"}, "S1301_C05_004E": {"label": "Estimate!!Percent of women who had a birth in the past 12 months who were unmarried!!Women 15 to 50 years!!35 to 50 years", "concept": "Fertility", "predicateType": "float", "group": "S1301", "limit": 0, "attributes": "S1301_C05_004EA,S1301_C05_004M,S1301_C05_004MA"}, "S2502_C03_001E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C03_001EA,S2502_C03_001M,S2502_C03_001MA"}, "S0501_C02_091E": {"label": "Estimate!!Native!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings!!Mean earnings (dollars)", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C02_091EA,S0501_C02_091M,S0501_C02_091MA"}, "S2603_C04_050E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!DISABILITY STATUS!!Population 65 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C04_050EA,S2603_C04_050M,S2603_C04_050MA"}, "S0802_C04_001E": {"label": "Estimate!!Public transportation!!Workers 16 years and over", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "int", "group": "S0802", "limit": 0, "attributes": "S0802_C04_001EA,S0802_C04_001M,S0802_C04_001MA"}, "S0101_C03_010E": {"label": "Estimate!!Male!!Total population!!AGE!!40 to 44 years", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C03_010EA,S0101_C03_010M,S0101_C03_010MA"}, "S2601A_C04_001E": {"label": "Estimate!!Noninstitutionalized group quarters population!!Total population", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_001EA,S2601A_C04_001M,S2601A_C04_001MA"}, "S1301_C05_005E": {"label": "Estimate!!Percent of women who had a birth in the past 12 months who were unmarried!!Women 15 to 50 years!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Fertility", "predicateType": "float", "group": "S1301", "limit": 0, "attributes": "S1301_C05_005EA,S1301_C05_005M,S1301_C05_005MA"}, "S2502_C03_002E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!One race --!!White", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C03_002EA,S2502_C03_002M,S2502_C03_002MA"}, "S0501_C02_092E": {"label": "Estimate!!Native!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_092EA,S0501_C02_092M,S0501_C02_092MA"}, "S2302_C01_020E": {"label": "Estimate!!Total!!WORK STATUS CHARACTERISTICS!!Married-couple families!!Householder worked full-time, year-round in the past 12 months:!!Spouse worked full-time, year-round in the past 12 months", "concept": "Employment Characteristics of Families", "predicateType": "int", "group": "S2302", "limit": 0, "attributes": "S2302_C01_020EA,S2302_C01_020M,S2302_C01_020MA"}, "S2603_C04_051E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!DISABILITY STATUS!!Population 65 years and over!!With a disability", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C04_051EA,S2603_C04_051M,S2603_C04_051MA"}, "S0802_C04_002E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!AGE!!16 to 19 years", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_002EA,S0802_C04_002M,S0802_C04_002MA"}, "S0101_C03_011E": {"label": "Estimate!!Male!!Total population!!AGE!!45 to 49 years", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C03_011EA,S0101_C03_011M,S0101_C03_011MA"}, "S2601A_C04_002E": {"label": "Estimate!!Noninstitutionalized group quarters population!!Total population!!SEX AND AGE!!Male", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_002EA,S2601A_C04_002M,S2601A_C04_002MA"}, "S2302_C01_021E": {"label": "Estimate!!Total!!WORK STATUS CHARACTERISTICS!!Married-couple families!!Householder worked full-time, year-round in the past 12 months:!!Spouse worked less than full-time, year-round in the past 12 months", "concept": "Employment Characteristics of Families", "predicateType": "int", "group": "S2302", "limit": 0, "attributes": "S2302_C01_021EA,S2302_C01_021M,S2302_C01_021MA"}, "S2603_C04_052E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!RESIDENCE 1 YEAR AGO!!Population 1 year and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C04_052EA,S2603_C04_052M,S2603_C04_052MA"}, "S0802_C04_003E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!AGE!!20 to 24 years", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_003EA,S0802_C04_003M,S0802_C04_003MA"}, "S1301_C05_006E": {"label": "Estimate!!Percent of women who had a birth in the past 12 months who were unmarried!!Women 15 to 50 years!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Fertility", "predicateType": "float", "group": "S1301", "limit": 0, "attributes": "S1301_C05_006EA,S1301_C05_006M,S1301_C05_006MA"}, "S0501_C02_090E": {"label": "Estimate!!Native!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_090EA,S0501_C02_090M,S0501_C02_090MA"}, "S0802_C04_004E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!AGE!!25 to 44 years", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_004EA,S0802_C04_004M,S0802_C04_004MA"}, "S2302_C01_022E": {"label": "Estimate!!Total!!WORK STATUS CHARACTERISTICS!!Married-couple families!!Householder worked full-time, year-round in the past 12 months:!!Spouse did not work in the past 12 months", "concept": "Employment Characteristics of Families", "predicateType": "int", "group": "S2302", "limit": 0, "attributes": "S2302_C01_022EA,S2302_C01_022M,S2302_C01_022MA"}, "S2603_C04_053E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Same address", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C04_053EA,S2603_C04_053M,S2603_C04_053MA"}, "S1301_C05_007E": {"label": "Estimate!!Percent of women who had a birth in the past 12 months who were unmarried!!Women 15 to 50 years!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Fertility", "predicateType": "float", "group": "S1301", "limit": 0, "attributes": "S1301_C05_007EA,S1301_C05_007M,S1301_C05_007MA"}, "S2601A_C04_006E": {"label": "Estimate!!Noninstitutionalized group quarters population!!Total population!!SEX AND AGE!!18 to 24 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_006EA,S2601A_C04_006M,S2601A_C04_006MA"}, "S2701_C03_013E": {"label": "Estimate!!Percent Insured!!Civilian noninstitutionalized population!!AGE!!65 years and older", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C03_013EA,S2701_C03_013M,S2701_C03_013MA"}, "S2502_C03_005E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!One race --!!Asian", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C03_005EA,S2502_C03_005M,S2502_C03_005MA"}, "S0501_C02_095E": {"label": "Estimate!!Native!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income!!Mean Supplemental Security Income (dollars)", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C02_095EA,S0501_C02_095M,S0501_C02_095MA"}, "S2602_C01_046E": {"label": "Estimate!!Total population!!DISABILITY STATUS!!Total population!!With a disability", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C01_046EA,S2602_C01_046M,S2602_C01_046MA"}, "S0802_C04_005E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!AGE!!45 to 54 years", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_005EA,S0802_C04_005M,S0802_C04_005MA"}, "S0101_C03_014E": {"label": "Estimate!!Male!!Total population!!AGE!!60 to 64 years", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C03_014EA,S0101_C03_014M,S0101_C03_014MA"}, "S0501_C04_109E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_109EA,S0501_C04_109M,S0501_C04_109MA"}, "S2603_C04_054E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the United States", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C04_054EA,S2603_C04_054M,S2603_C04_054MA"}, "S2701_C03_012E": {"label": "Estimate!!Percent Insured!!Civilian noninstitutionalized population!!AGE!!19 to 64 years", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C03_012EA,S2701_C03_012M,S2701_C03_012MA"}, "S2601A_C04_007E": {"label": "Estimate!!Noninstitutionalized group quarters population!!Total population!!SEX AND AGE!!25 to 34 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_007EA,S2601A_C04_007M,S2601A_C04_007MA"}, "S1301_C05_001E": {"label": "Estimate!!Percent of women who had a birth in the past 12 months who were unmarried!!Women 15 to 50 years", "concept": "Fertility", "predicateType": "float", "group": "S1301", "limit": 0, "attributes": "S1301_C05_001EA,S1301_C05_001M,S1301_C05_001MA"}, "S0501_C02_096E": {"label": "Estimate!!Native!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_096EA,S0501_C02_096M,S0501_C02_096MA"}, "S2602_C01_047E": {"label": "Estimate!!Total population!!DISABILITY STATUS!!Population 18 to 64 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C01_047EA,S2602_C01_047M,S2602_C01_047MA"}, "S0802_C04_006E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!AGE!!55 to 59 years", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_006EA,S0802_C04_006M,S0802_C04_006MA"}, "S0101_C03_015E": {"label": "Estimate!!Male!!Total population!!AGE!!65 to 69 years", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C03_015EA,S0101_C03_015M,S0101_C03_015MA"}, "S2603_C04_055E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the United States!!Same county", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C04_055EA,S2603_C04_055M,S2603_C04_055MA"}, "S0501_C04_108E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_108EA,S0501_C04_108M,S0501_C04_108MA"}, "S2502_C03_006E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!One race --!!Native Hawaiian and Other Pacific Islander", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C03_006EA,S2502_C03_006M,S2502_C03_006MA"}, "S2601A_C04_004E": {"label": "Estimate!!Noninstitutionalized group quarters population!!Total population!!SEX AND AGE!!Under 15 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_004EA,S2601A_C04_004M,S2601A_C04_004MA"}, "S1301_C05_002E": {"label": "Estimate!!Percent of women who had a birth in the past 12 months who were unmarried!!Women 15 to 50 years!!15 to 19 years", "concept": "Fertility", "predicateType": "float", "group": "S1301", "limit": 0, "attributes": "S1301_C05_002EA,S1301_C05_002M,S1301_C05_002MA"}, "S2701_C03_011E": {"label": "Estimate!!Percent Insured!!Civilian noninstitutionalized population!!AGE!!Under 19 years", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C03_011EA,S2701_C03_011M,S2701_C03_011MA"}, "S2502_C03_003E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!One race --!!Black or African American", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C03_003EA,S2502_C03_003M,S2502_C03_003MA"}, "S0501_C02_093E": {"label": "Estimate!!Native!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income!!Mean Social Security income (dollars)", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C02_093EA,S0501_C02_093M,S0501_C02_093MA"}, "S2602_C01_048E": {"label": "Estimate!!Total population!!DISABILITY STATUS!!Population 18 to 64 years!!With a disability", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C01_048EA,S2602_C01_048M,S2602_C01_048MA"}, "S0802_C04_007E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!AGE!!60 years and over", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_007EA,S0802_C04_007M,S0802_C04_007MA"}, "S0101_C03_012E": {"label": "Estimate!!Male!!Total population!!AGE!!50 to 54 years", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C03_012EA,S0101_C03_012M,S0101_C03_012MA"}, "S2603_C04_056E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the United States!!Different county", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C04_056EA,S2603_C04_056M,S2603_C04_056MA"}, "S1501_C01_021E": {"label": "Estimate!!Total!!AGE BY EDUCATIONAL ATTAINMENT!!Population 35 to 44 years!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C01_021EA,S1501_C01_021M,S1501_C01_021MA"}, "S2601A_C04_003E": {"label": "Estimate!!Noninstitutionalized group quarters population!!Total population!!SEX AND AGE!!Female", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_003EA,S2601A_C04_003M,S2601A_C04_003MA"}, "S2601A_C04_005E": {"label": "Estimate!!Noninstitutionalized group quarters population!!Total population!!SEX AND AGE!!15 to 17 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_005EA,S2601A_C04_005M,S2601A_C04_005MA"}, "S1301_C05_003E": {"label": "Estimate!!Percent of women who had a birth in the past 12 months who were unmarried!!Women 15 to 50 years!!20 to 34 years", "concept": "Fertility", "predicateType": "float", "group": "S1301", "limit": 0, "attributes": "S1301_C05_003EA,S1301_C05_003M,S1301_C05_003MA"}, "S2701_C03_010E": {"label": "Estimate!!Percent Insured!!Civilian noninstitutionalized population!!AGE!!75 years and older", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C03_010EA,S2701_C03_010M,S2701_C03_010MA"}, "S2502_C03_004E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!One race --!!American Indian and Alaska Native", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C03_004EA,S2502_C03_004M,S2502_C03_004MA"}, "S0501_C02_094E": {"label": "Estimate!!Native!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C02_094EA,S0501_C02_094M,S0501_C02_094MA"}, "S2602_C01_049E": {"label": "Estimate!!Total population!!DISABILITY STATUS!!Population 18 to 64 years!!No disability", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C01_049EA,S2602_C01_049M,S2602_C01_049MA"}, "S0101_C03_013E": {"label": "Estimate!!Male!!Total population!!AGE!!55 to 59 years", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C03_013EA,S0101_C03_013M,S0101_C03_013MA"}, "S2603_C04_057E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the United States!!Different county!!Same state", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C04_057EA,S2603_C04_057M,S2603_C04_057MA"}, "S1501_C01_020E": {"label": "Estimate!!Total!!AGE BY EDUCATIONAL ATTAINMENT!!Population 35 to 44 years!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C01_020EA,S1501_C01_020M,S1501_C01_020MA"}, "S0802_C04_008E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!AGE!!Median age (years)", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_008EA,S0802_C04_008M,S0802_C04_008MA"}, "S0804_C03_095E": {"label": "Estimate!!Car, truck, or van -- carpooled!!PERCENT ALLOCATED!!Time arriving at work from home", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "int", "group": "S0804", "limit": 0, "attributes": "S0804_C03_095EA,S0804_C03_095M,S0804_C03_095MA"}, "S0101_C03_006E": {"label": "Estimate!!Male!!Total population!!AGE!!20 to 24 years", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C03_006EA,S0101_C03_006M,S0101_C03_006MA"}, "S2603_C04_034E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!MARITAL STATUS!!Population 15 years and over!!Divorced", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C04_034EA,S2603_C04_034M,S2603_C04_034MA"}, "S1501_C01_023E": {"label": "Estimate!!Total!!AGE BY EDUCATIONAL ATTAINMENT!!Population 45 to 64 years!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C01_023EA,S1501_C01_023M,S1501_C01_023MA"}, "S0804_C03_094E": {"label": "Estimate!!Car, truck, or van -- carpooled!!PERCENT ALLOCATED!!Means of transportation to work", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "int", "group": "S0804", "limit": 0, "attributes": "S0804_C03_094EA,S0804_C03_094M,S0804_C03_094MA"}, "S0101_C03_007E": {"label": "Estimate!!Male!!Total population!!AGE!!25 to 29 years", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C03_007EA,S0101_C03_007M,S0101_C03_007MA"}, "S1501_C01_022E": {"label": "Estimate!!Total!!AGE BY EDUCATIONAL ATTAINMENT!!Population 45 to 64 years", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C01_022EA,S1501_C01_022M,S1501_C01_022MA"}, "S2603_C04_035E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!MARITAL STATUS!!Population 15 years and over!!Separated", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C04_035EA,S2603_C04_035M,S2603_C04_035MA"}, "S2603_C04_036E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C04_036EA,S2603_C04_036M,S2603_C04_036MA"}, "S0804_C03_093E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over in households!!VEHICLES AVAILABLE!!3 or more vehicles available", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_093EA,S0804_C03_093M,S0804_C03_093MA"}, "S1501_C01_025E": {"label": "Estimate!!Total!!AGE BY EDUCATIONAL ATTAINMENT!!Population 65 years and over", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C01_025EA,S1501_C01_025M,S1501_C01_025MA"}, "S0101_C03_004E": {"label": "Estimate!!Male!!Total population!!AGE!!10 to 14 years", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C03_004EA,S0101_C03_004M,S0101_C03_004MA"}, "S2603_C04_037E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C04_037EA,S2603_C04_037M,S2603_C04_037MA"}, "S0804_C03_092E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over in households!!VEHICLES AVAILABLE!!2 vehicles available", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_092EA,S0804_C03_092M,S0804_C03_092MA"}, "S0101_C03_005E": {"label": "Estimate!!Male!!Total population!!AGE!!15 to 19 years", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C03_005EA,S0101_C03_005M,S0101_C03_005MA"}, "S1501_C01_024E": {"label": "Estimate!!Total!!AGE BY EDUCATIONAL ATTAINMENT!!Population 45 to 64 years!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C01_024EA,S1501_C01_024M,S1501_C01_024MA"}, "S2603_C04_038E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Nursery school through 12th grade", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C04_038EA,S2603_C04_038M,S2603_C04_038MA"}, "S0804_C03_091E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over in households!!VEHICLES AVAILABLE!!1 vehicle available", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_091EA,S0804_C03_091M,S0804_C03_091MA"}, "S1501_C01_027E": {"label": "Estimate!!Total!!AGE BY EDUCATIONAL ATTAINMENT!!Population 65 years and over!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C01_027EA,S1501_C01_027M,S1501_C01_027MA"}, "S0506_C04_140E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Owner-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C04_140EA,S0506_C04_140M,S0506_C04_140MA"}, "S2603_C04_039E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!College or graduate school", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C04_039EA,S2603_C04_039M,S2603_C04_039MA"}, "S0804_C03_090E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over in households!!VEHICLES AVAILABLE!!No vehicle available", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_090EA,S0804_C03_090M,S0804_C03_090MA"}, "S1501_C01_026E": {"label": "Estimate!!Total!!AGE BY EDUCATIONAL ATTAINMENT!!Population 65 years and over!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C01_026EA,S1501_C01_026M,S1501_C01_026MA"}, "S0506_C04_142E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_142EA,S0506_C04_142M,S0506_C04_142MA"}, "S0101_C03_008E": {"label": "Estimate!!Male!!Total population!!AGE!!30 to 34 years", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C03_008EA,S0101_C03_008M,S0101_C03_008MA"}, "S1501_C01_029E": {"label": "Estimate!!Total!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!White alone!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C01_029EA,S1501_C01_029M,S1501_C01_029MA"}, "S0101_C03_009E": {"label": "Estimate!!Male!!Total population!!AGE!!35 to 39 years", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C03_009EA,S0101_C03_009M,S0101_C03_009MA"}, "S1501_C01_028E": {"label": "Estimate!!Total!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!White alone", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C01_028EA,S1501_C01_028M,S1501_C01_028MA"}, "S0506_C04_141E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_141EA,S0506_C04_141M,S0506_C04_141MA"}, "S0506_C04_144E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_144EA,S0506_C04_144M,S0506_C04_144MA"}, "S0801_C01_022E": {"label": "Estimate!!Total!!Workers 16 years and over!!PLACE OF WORK!!Living in 12 selected states", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C01_022EA,S0801_C01_022M,S0801_C01_022MA"}, "S2702PR_C01_105E": {"label": "Estimate!!Total!!RATIO OF INCOME TO POVERTY LEVEL IN THE PAST 12 MONTHS!!Civilian noninstitutionalized population for whom poverty status is determined!!At or above 300 percent of the poverty level", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_105EA,S2702PR_C01_105M,S2702PR_C01_105MA"}, "S0505_C05_046E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C05_046EA,S0505_C05_046M,S0505_C05_046MA"}, "S0506_C04_143E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Renter-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C04_143EA,S0506_C04_143M,S0506_C04_143MA"}, "S0801_C01_021E": {"label": "Estimate!!Total!!Workers 16 years and over!!PLACE OF WORK!!Not living in a place", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C01_021EA,S0801_C01_021M,S0801_C01_021MA"}, "S2702PR_C01_104E": {"label": "Estimate!!Total!!RATIO OF INCOME TO POVERTY LEVEL IN THE PAST 12 MONTHS!!Civilian noninstitutionalized population for whom poverty status is determined!!200 to 299 percent of the poverty level", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_104EA,S2702PR_C01_104M,S2702PR_C01_104MA"}, "S0505_C05_047E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than high school graduate", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_047EA,S0505_C05_047M,S0505_C05_047MA"}, "S0801_C01_024E": {"label": "Estimate!!Total!!Workers 16 years and over!!PLACE OF WORK!!Living in 12 selected states!!Worked outside minor civil division of residence", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C01_024EA,S0801_C01_024M,S0801_C01_024MA"}, "S2602_C01_060E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C01_060EA,S2602_C01_060M,S2602_C01_060MA"}, "S2702PR_C01_103E": {"label": "Estimate!!Total!!RATIO OF INCOME TO POVERTY LEVEL IN THE PAST 12 MONTHS!!Civilian noninstitutionalized population for whom poverty status is determined!!150 to 199 percent of the poverty level", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_103EA,S2702PR_C01_103M,S2702PR_C01_103MA"}, "S0505_C05_048E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate (includes equivalency)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_048EA,S0505_C05_048M,S0505_C05_048MA"}, "S0506_C04_145E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_145EA,S0506_C04_145M,S0506_C04_145MA"}, "S0801_C01_023E": {"label": "Estimate!!Total!!Workers 16 years and over!!PLACE OF WORK!!Living in 12 selected states!!Worked in minor civil division of residence", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C01_023EA,S0801_C01_023M,S0801_C01_023MA"}, "S2602_C01_061E": {"label": "Estimate!!Total population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Native", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C01_061EA,S2602_C01_061M,S2602_C01_061MA"}, "S2702PR_C01_102E": {"label": "Estimate!!Total!!RATIO OF INCOME TO POVERTY LEVEL IN THE PAST 12 MONTHS!!Civilian noninstitutionalized population for whom poverty status is determined!!100 to 149 percent of the poverty level", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_102EA,S2702PR_C01_102M,S2702PR_C01_102MA"}, "S0505_C05_049E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college or associate's degree", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_049EA,S0505_C05_049M,S0505_C05_049MA"}, "S0505_C05_042E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Nursery school, preschool", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_042EA,S0505_C05_042M,S0505_C05_042MA"}, "S0505_C05_043E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Elementary school (grades K-8)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_043EA,S0505_C05_043M,S0505_C05_043MA"}, "S2406_C02_001E": {"label": "Estimate!!Employee of private company workers!!Civilian employed population 16 years and over", "concept": "Occupation by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2406", "limit": 0, "attributes": "S2406_C02_001EA,S2406_C02_001M,S2406_C02_001MA"}, "S0801_C01_020E": {"label": "Estimate!!Total!!Workers 16 years and over!!PLACE OF WORK!!Living in a place!!Worked outside place of residence", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C01_020EA,S0801_C01_020M,S0801_C01_020MA"}, "S0804_C03_097E": {"label": "Estimate!!Car, truck, or van -- carpooled!!PERCENT ALLOCATED!!Vehicles available", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "int", "group": "S0804", "limit": 0, "attributes": "S0804_C03_097EA,S0804_C03_097M,S0804_C03_097MA"}, "S0505_C05_044E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!High school (grades 9-12)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_044EA,S0505_C05_044M,S0505_C05_044MA"}, "S2406_C02_002E": {"label": "Estimate!!Employee of private company workers!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations", "concept": "Occupation by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2406", "limit": 0, "attributes": "S2406_C02_002EA,S2406_C02_002M,S2406_C02_002MA"}, "S0804_C03_096E": {"label": "Estimate!!Car, truck, or van -- carpooled!!PERCENT ALLOCATED!!Travel time to work", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "int", "group": "S0804", "limit": 0, "attributes": "S0804_C03_096EA,S0804_C03_096M,S0804_C03_096MA"}, "S0505_C05_045E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!College or graduate school", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_045EA,S0505_C05_045M,S0505_C05_045MA"}, "S0505_C05_050E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_050EA,S0505_C05_050M,S0505_C05_050MA"}, "S2602_C01_054E": {"label": "Estimate!!Total population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the United States", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C01_054EA,S2602_C01_054M,S2602_C01_054MA"}, "S2701_C03_029E": {"label": "Estimate!!Percent Insured!!Civilian noninstitutionalized population!!LIVING ARRANGEMENTS!!In family households!!In other families!!Female reference person, no spouse present", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C03_029EA,S2701_C03_029M,S2701_C03_029MA"}, "S0505_C05_051E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Graduate or professional degree", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_051EA,S0505_C05_051M,S0505_C05_051MA"}, "S2602_C01_055E": {"label": "Estimate!!Total population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the United States!!Same county", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C01_055EA,S2602_C01_055M,S2602_C01_055MA"}, "S2701_C03_028E": {"label": "Estimate!!Percent Insured!!Civilian noninstitutionalized population!!LIVING ARRANGEMENTS!!In family households!!In other families!!Male reference person, no spouse present", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C03_028EA,S2701_C03_028M,S2701_C03_028MA"}, "S0801_C01_029E": {"label": "Estimate!!Total!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!5:30 a.m. to 5:59 a.m.", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C01_029EA,S0801_C01_029M,S0801_C01_029MA"}, "S0505_C05_052E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C05_052EA,S0505_C05_052M,S0505_C05_052MA"}, "S2602_C01_056E": {"label": "Estimate!!Total population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the United States!!Different county", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C01_056EA,S2602_C01_056M,S2602_C01_056MA"}, "S2701_C03_027E": {"label": "Estimate!!Percent Insured!!Civilian noninstitutionalized population!!LIVING ARRANGEMENTS!!In family households!!In other families", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C03_027EA,S2701_C03_027M,S2701_C03_027MA"}, "S2701_C03_026E": {"label": "Estimate!!Percent Insured!!Civilian noninstitutionalized population!!LIVING ARRANGEMENTS!!In family households!!In married couple families", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C03_026EA,S2701_C03_026M,S2701_C03_026MA"}, "S0505_C05_053E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!English only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_053EA,S0505_C05_053M,S0505_C05_053MA"}, "S2602_C01_057E": {"label": "Estimate!!Total population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the United States!!Different county!!Same state", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C01_057EA,S2602_C01_057M,S2602_C01_057MA"}, "S2602_C01_050E": {"label": "Estimate!!Total population!!DISABILITY STATUS!!Population 65 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C01_050EA,S2602_C01_050M,S2602_C01_050MA"}, "S2702PR_C01_101E": {"label": "Estimate!!Total!!RATIO OF INCOME TO POVERTY LEVEL IN THE PAST 12 MONTHS!!Civilian noninstitutionalized population for whom poverty status is determined!!50 to 99 percent of the poverty level", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_101EA,S2702PR_C01_101M,S2702PR_C01_101MA"}, "S0801_C01_026E": {"label": "Estimate!!Total!!Workers 16 years and over who did not work from home", "concept": "Commuting Characteristics by Sex", "predicateType": "int", "group": "S0801", "limit": 0, "attributes": "S0801_C01_026EA,S0801_C01_026M,S0801_C01_026MA"}, "S0801_C01_025E": {"label": "Estimate!!Total!!Workers 16 years and over!!PLACE OF WORK!!Not living in 12 selected states", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C01_025EA,S0801_C01_025M,S0801_C01_025MA"}, "S2602_C01_051E": {"label": "Estimate!!Total population!!DISABILITY STATUS!!Population 65 years and over!!With a disability", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C01_051EA,S2602_C01_051M,S2602_C01_051MA"}, "S2702PR_C01_100E": {"label": "Estimate!!Total!!RATIO OF INCOME TO POVERTY LEVEL IN THE PAST 12 MONTHS!!Civilian noninstitutionalized population for whom poverty status is determined!!Below 50 percent of the poverty level", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_100EA,S2702PR_C01_100M,S2702PR_C01_100MA"}, "S0802_C04_010E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!SEX!!Female", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_010EA,S0802_C04_010M,S0802_C04_010MA"}, "S2602_C01_052E": {"label": "Estimate!!Total population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C01_052EA,S2602_C01_052M,S2602_C01_052MA"}, "S0802_C04_011E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_011EA,S0802_C04_011M,S0802_C04_011MA"}, "S0801_C01_028E": {"label": "Estimate!!Total!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!5:00 a.m. to 5:29 a.m.", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C01_028EA,S0801_C01_028M,S0801_C01_028MA"}, "S2602_C01_053E": {"label": "Estimate!!Total population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Same address", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C01_053EA,S2602_C01_053M,S2602_C01_053MA"}, "CBSA": {"label": "Metropolitan/Micropolitan Statistical Area", "group": "N/A", "limit": 0}, "S0802_C04_012E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_012EA,S0802_C04_012M,S0802_C04_012MA"}, "S0801_C01_027E": {"label": "Estimate!!Total!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!12:00 a.m. to 4:59 a.m.", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C01_027EA,S0801_C01_027M,S0801_C01_027MA"}, "S2701_C03_021E": {"label": "Estimate!!Percent Insured!!Civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!Some other race alone", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C03_021EA,S2701_C03_021M,S2701_C03_021MA"}, "S0802_C04_013E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_013EA,S0802_C04_013M,S0802_C04_013MA"}, "S2701_C03_020E": {"label": "Estimate!!Percent Insured!!Civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!Native Hawaiian and Other Pacific Islander alone", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C03_020EA,S2701_C03_020M,S2701_C03_020MA"}, "S0802_C04_014E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_014EA,S0802_C04_014M,S0802_C04_014MA"}, "S0802_C04_015E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_015EA,S0802_C04_015M,S0802_C04_015MA"}, "S2603_C04_040E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C04_040EA,S2603_C04_040M,S2603_C04_040MA"}, "S0802_C04_016E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_016EA,S0802_C04_016M,S0802_C04_016MA"}, "S2603_C04_041E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate or higher", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C04_041EA,S2603_C04_041M,S2603_C04_041MA"}, "S2701_C03_025E": {"label": "Estimate!!Percent Insured!!Civilian noninstitutionalized population!!LIVING ARRANGEMENTS!!In family households", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C03_025EA,S2701_C03_025M,S2701_C03_025MA"}, "S2602_C01_058E": {"label": "Estimate!!Total population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the United States!!Different county!!Different state", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C01_058EA,S2602_C01_058M,S2602_C01_058MA"}, "S0802_C04_017E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_017EA,S0802_C04_017M,S0802_C04_017MA"}, "S2603_C04_042E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree or higher", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C04_042EA,S2603_C04_042M,S2603_C04_042MA"}, "S0101_C03_002E": {"label": "Estimate!!Male!!Total population!!AGE!!Under 5 years", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C03_002EA,S0101_C03_002M,S0101_C03_002MA"}, "S1501_C01_031E": {"label": "Estimate!!Total!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!White alone, not Hispanic or Latino", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C01_031EA,S1501_C01_031M,S1501_C01_031MA"}, "S2701_C03_024E": {"label": "Estimate!!Percent Insured!!Civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C03_024EA,S2701_C03_024M,S2701_C03_024MA"}, "S2602_C01_059E": {"label": "Estimate!!Total population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Abroad", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C01_059EA,S2602_C01_059M,S2602_C01_059MA"}, "S0802_C04_018E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_018EA,S0802_C04_018M,S0802_C04_018MA"}, "S0101_C03_003E": {"label": "Estimate!!Male!!Total population!!AGE!!5 to 9 years", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C03_003EA,S0101_C03_003M,S0101_C03_003MA"}, "S2603_C04_043E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!VETERAN STATUS!!Civilian population 18 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C04_043EA,S2603_C04_043M,S2603_C04_043MA"}, "S1501_C01_030E": {"label": "Estimate!!Total!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!White alone!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C01_030EA,S1501_C01_030M,S1501_C01_030MA"}, "S2701_C03_023E": {"label": "Estimate!!Percent Insured!!Civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino (of any race)", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C03_023EA,S2701_C03_023M,S2701_C03_023MA"}, "S2603_C04_044E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!VETERAN STATUS!!Civilian population 18 years and over!!Civilian veteran", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C04_044EA,S2603_C04_044M,S2603_C04_044MA"}, "S1501_C01_033E": {"label": "Estimate!!Total!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!White alone, not Hispanic or Latino!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C01_033EA,S1501_C01_033M,S1501_C01_033MA"}, "S0802_C04_019E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_019EA,S0802_C04_019M,S0802_C04_019MA"}, "S2701_C03_022E": {"label": "Estimate!!Percent Insured!!Civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C03_022EA,S2701_C03_022M,S2701_C03_022MA"}, "S0101_C03_001E": {"label": "Estimate!!Male!!Total population", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C03_001EA,S0101_C03_001M,S0101_C03_001MA"}, "S2603_C04_045E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!DISABILITY STATUS!!Total population", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C04_045EA,S2603_C04_045M,S2603_C04_045MA"}, "S2302_C01_030E": {"label": "Estimate!!Total!!WORK STATUS CHARACTERISTICS!!Married-couple families!!Householder did not work in the past 12 months:!!Spouse did not work in the past 12 months", "concept": "Employment Characteristics of Families", "predicateType": "int", "group": "S2302", "limit": 0, "attributes": "S2302_C01_030EA,S2302_C01_030M,S2302_C01_030MA"}, "S1501_C01_032E": {"label": "Estimate!!Total!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!White alone, not Hispanic or Latino!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C01_032EA,S1501_C01_032M,S1501_C01_032MA"}, "S1301_C05_032E": {"label": "Estimate!!Percent of women who had a birth in the past 12 months who were unmarried!!PERCENT ALLOCATED!!Fertility", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C05_032EA,S1301_C05_032M,S1301_C05_032MA"}, "S1401_C03_033E": {"label": "Estimate!!In public school!!Population 18 to 24 years!!Females 18 to 24 years", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C03_033EA,S1401_C03_033M,S1401_C03_033MA"}, "S0505_C05_018E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Foreign-born population!!SEX AND AGE!!65 to 74 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_018EA,S0505_C05_018M,S0505_C05_018MA"}, "S1501_C01_035E": {"label": "Estimate!!Total!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Black alone!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C01_035EA,S1501_C01_035M,S1501_C01_035MA"}, "S0701PR_C04_034E": {"label": "Estimate!!Moved; from the U.S.!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than high school graduate", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C04_034EA,S0701PR_C04_034M,S0701PR_C04_034MA"}, "S1401_C03_034E": {"label": "Estimate!!In public school!!Population 18 to 24 years!!Females 18 to 24 years!!Enrolled in college or graduate school", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C03_034EA,S1401_C03_034M,S1401_C03_034MA"}, "S0505_C05_019E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Foreign-born population!!SEX AND AGE!!75 to 84 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_019EA,S0505_C05_019M,S0505_C05_019MA"}, "S1501_C01_034E": {"label": "Estimate!!Total!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Black alone", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C01_034EA,S1501_C01_034M,S1501_C01_034MA"}, "S0701PR_C04_033E": {"label": "Estimate!!Moved; from the U.S.!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C04_033EA,S0701PR_C04_033M,S0701PR_C04_033MA"}, "S1401_C03_031E": {"label": "Estimate!!In public school!!Population 18 to 24 years!!Males 18 to 24 years", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C03_031EA,S1401_C03_031M,S1401_C03_031MA"}, "S1501_C01_037E": {"label": "Estimate!!Total!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!American Indian or Alaska Native alone", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C01_037EA,S1501_C01_037M,S1501_C01_037MA"}, "S0701PR_C04_036E": {"label": "Estimate!!Moved; from the U.S.!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college or associate's degree", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C04_036EA,S0701PR_C04_036M,S0701PR_C04_036MA"}, "S1401_C03_032E": {"label": "Estimate!!In public school!!Population 18 to 24 years!!Males 18 to 24 years!!Enrolled in college or graduate school", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C03_032EA,S1401_C03_032M,S1401_C03_032MA"}, "S1501_C01_036E": {"label": "Estimate!!Total!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Black alone!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C01_036EA,S1501_C01_036M,S1501_C01_036MA"}, "S0701PR_C04_035E": {"label": "Estimate!!Moved; from the U.S.!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate (includes equivalency)", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C04_035EA,S0701PR_C04_035M,S0701PR_C04_035MA"}, "S1501_C01_039E": {"label": "Estimate!!Total!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!American Indian or Alaska Native alone!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C01_039EA,S1501_C01_039M,S1501_C01_039MA"}, "S0701PR_C04_038E": {"label": "Estimate!!Moved; from the U.S.!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Graduate or professional degree", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C04_038EA,S0701PR_C04_038M,S0701PR_C04_038MA"}, "S2601A_C04_021E": {"label": "Estimate!!Noninstitutionalized group quarters population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_021EA,S2601A_C04_021M,S2601A_C04_021MA"}, "S0505_C05_014E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Foreign-born population!!SEX AND AGE!!18 to 24 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_014EA,S0505_C05_014M,S0505_C05_014MA"}, "S1401_C03_030E": {"label": "Estimate!!In public school!!Population 18 to 24 years!!Enrolled in college or graduate school", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C03_030EA,S1401_C03_030M,S1401_C03_030MA"}, "S1501_C01_038E": {"label": "Estimate!!Total!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!American Indian or Alaska Native alone!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C01_038EA,S1501_C01_038M,S1501_C01_038MA"}, "S0701PR_C04_037E": {"label": "Estimate!!Moved; from the U.S.!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C04_037EA,S0701PR_C04_037M,S0701PR_C04_037MA"}, "S2601A_C04_022E": {"label": "Estimate!!Noninstitutionalized group quarters population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!White", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_022EA,S2601A_C04_022M,S2601A_C04_022MA"}, "S0505_C05_015E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Foreign-born population!!SEX AND AGE!!25 to 44 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_015EA,S0505_C05_015M,S0505_C05_015MA"}, "S1301_C05_030E": {"label": "Estimate!!Percent of women who had a birth in the past 12 months who were unmarried!!PUBLIC ASSISTANCE INCOME IN THE PAST 12 MONTHS!!Women 15 to 50 years!!Did not receive public assistance income", "concept": "Fertility", "predicateType": "float", "group": "S1301", "limit": 0, "attributes": "S1301_C05_030EA,S1301_C05_030M,S1301_C05_030MA"}, "S0506_C04_130E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Occupied housing units!!ROOMS!!2 or 3 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_130EA,S0506_C04_130M,S0506_C04_130MA"}, "S0505_C05_016E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Foreign-born population!!SEX AND AGE!!45 to 54 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_016EA,S0505_C05_016M,S0505_C05_016MA"}, "S1301_C05_031E": {"label": "Estimate!!Percent of women who had a birth in the past 12 months who were unmarried!!PERCENT ALLOCATED!!Marital status", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C05_031EA,S1301_C05_031M,S1301_C05_031MA"}, "S0701PR_C04_039E": {"label": "Estimate!!Moved; from the U.S.!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C04_039EA,S0701PR_C04_039M,S0701PR_C04_039MA"}, "S2601A_C04_020E": {"label": "Estimate!!Noninstitutionalized group quarters population!!Total population!!SEX AND AGE!!Median age (years)", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_020EA,S2601A_C04_020M,S2601A_C04_020MA"}, "S0505_C05_017E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Foreign-born population!!SEX AND AGE!!55 to 64 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_017EA,S0505_C05_017M,S0505_C05_017MA"}, "S0506_C04_132E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Occupied housing units!!ROOMS!!6 or 7 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_132EA,S0506_C04_132M,S0506_C04_132MA"}, "S0501_C04_133E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_133EA,S0501_C04_133M,S0501_C04_133MA"}, "S0804_C03_067E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over who did not work from home!!TIME ARRIVING AT WORK!!12:00 a.m. to 4:59 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_067EA,S0804_C03_067M,S0804_C03_067MA"}, "S0505_C05_010E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Foreign-born population!!SEX AND AGE!!Male", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_010EA,S0505_C05_010M,S0505_C05_010MA"}, "S0506_C04_131E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Occupied housing units!!ROOMS!!4 or 5 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_131EA,S0506_C04_131M,S0506_C04_131MA"}, "S0501_C04_132E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!Owner-occupied housing units", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C04_132EA,S0501_C04_132M,S0501_C04_132MA"}, "S0804_C03_066E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over who did not work from home", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "int", "group": "S0804", "limit": 0, "attributes": "S0804_C03_066EA,S0804_C03_066M,S0804_C03_066MA"}, "S0505_C05_011E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Foreign-born population!!SEX AND AGE!!Female", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_011EA,S0505_C05_011M,S0505_C05_011MA"}, "S0506_C04_134E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Occupied housing units!!Median number of rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_134EA,S0506_C04_134M,S0506_C04_134MA"}, "S0501_C04_135E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!Renter-occupied housing units", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C04_135EA,S0501_C04_135M,S0501_C04_135MA"}, "S0804_C03_065E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!CLASS OF WORKER!!Unpaid family workers", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_065EA,S0804_C03_065M,S0804_C03_065MA"}, "S0505_C05_012E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Foreign-born population!!SEX AND AGE!!Under 5 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_012EA,S0505_C05_012M,S0505_C05_012MA"}, "S0506_C04_133E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Occupied housing units!!ROOMS!!8 or more rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_133EA,S0506_C04_133M,S0506_C04_133MA"}, "S0804_C03_064E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!CLASS OF WORKER!!Self-employed workers in own not incorporated business", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_064EA,S0804_C03_064M,S0804_C03_064MA"}, "S0501_C04_134E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_134EA,S0501_C04_134M,S0501_C04_134MA"}, "S0505_C05_013E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Foreign-born population!!SEX AND AGE!!5 to 17 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_013EA,S0505_C05_013M,S0505_C05_013MA"}, "S0701PR_C04_030E": {"label": "Estimate!!Moved; from the U.S.!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C04_030EA,S0701PR_C04_030M,S0701PR_C04_030MA"}, "S0506_C04_136E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Occupied housing units!!VEHICLES AVAILABLE!!None", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_136EA,S0506_C04_136M,S0506_C04_136MA"}, "S0804_C03_063E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!CLASS OF WORKER!!Government workers", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_063EA,S0804_C03_063M,S0804_C03_063MA"}, "S0506_C04_135E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Occupied housing units!!1.01 or more occupants per room", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_135EA,S0506_C04_135M,S0506_C04_135MA"}, "S0804_C03_062E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!CLASS OF WORKER!!Private wage and salary workers", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_062EA,S0804_C03_062M,S0804_C03_062MA"}, "S0701PR_C04_032E": {"label": "Estimate!!Moved; from the U.S.!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C04_032EA,S0701PR_C04_032M,S0701PR_C04_032MA"}, "S0506_C04_138E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Occupied housing units!!SELECTED CHARACTERISTICS!!No telephone service available", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_138EA,S0506_C04_138M,S0506_C04_138MA"}, "S0501_C04_131E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!Occupied housing units!!SELECTED CHARACTERISTICS!!Limited English Speaking Households", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_131EA,S0501_C04_131M,S0501_C04_131MA"}, "S0804_C03_061E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!INDUSTRY!!Armed forces", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_061EA,S0804_C03_061M,S0804_C03_061MA"}, "S0701PR_C04_031E": {"label": "Estimate!!Moved; from the U.S.!!MARITAL STATUS!!Population 15 years and over!!Divorced or separated", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C04_031EA,S0701PR_C04_031M,S0701PR_C04_031MA"}, "S0506_C04_137E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Occupied housing units!!VEHICLES AVAILABLE!!1 or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_137EA,S0506_C04_137M,S0506_C04_137MA"}, "S0501_C04_130E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!Occupied housing units!!SELECTED CHARACTERISTICS!!No telephone service available", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_130EA,S0501_C04_130M,S0501_C04_130MA"}, "S0804_C03_060E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over!!INDUSTRY!!Public administration", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_060EA,S0804_C03_060M,S0804_C03_060MA"}, "S0501_C04_129E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!Occupied housing units!!VEHICLES AVAILABLE!!1 or more", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_129EA,S0501_C04_129M,S0501_C04_129MA"}, "S0506_C04_139E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Occupied housing units!!SELECTED CHARACTERISTICS!!Limited English Speaking Households", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_139EA,S0506_C04_139M,S0506_C04_139MA"}, "S0501_C04_128E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!Occupied housing units!!VEHICLES AVAILABLE!!None", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_128EA,S0501_C04_128M,S0501_C04_128MA"}, "S2602_C01_020E": {"label": "Estimate!!Total population!!Total population!!SEX AND AGE!!Median age (years)", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C01_020EA,S2602_C01_020M,S2602_C01_020MA"}, "S2701_C03_039E": {"label": "Estimate!!Percent Insured!!Civilian noninstitutionalized population!!EDUCATIONAL ATTAINMENT!!Civilian noninstitutionalized population 26 years and over!!High school graduate (includes equivalency)", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C03_039EA,S2701_C03_039M,S2701_C03_039MA"}, "S2602_C01_021E": {"label": "Estimate!!Total population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C01_021EA,S2602_C01_021M,S2602_C01_021MA"}, "S0802_C04_020E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_020EA,S0802_C04_020M,S0802_C04_020MA"}, "S2701_C03_038E": {"label": "Estimate!!Percent Insured!!Civilian noninstitutionalized population!!EDUCATIONAL ATTAINMENT!!Civilian noninstitutionalized population 26 years and over!!Less than high school graduate", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C03_038EA,S2701_C03_038M,S2701_C03_038MA"}, "S2502_C03_021E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!EDUCATIONAL ATTAINMENT OF HOUSEHOLDER!!Bachelor's degree or higher", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C03_021EA,S2502_C03_021M,S2502_C03_021MA"}, "S0802_C04_021E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!NATIVITY AND CITIZENSHIP STATUS!!Native", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_021EA,S0802_C04_021M,S0802_C04_021MA"}, "S0501_C04_125E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!Occupied housing units!!ROOMS!!8 or more rooms", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_125EA,S0501_C04_125M,S0501_C04_125MA"}, "S0101_C03_030E": {"label": "Estimate!!Male!!Total population!!SELECTED AGE CATEGORIES!!65 years and over", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C03_030EA,S0101_C03_030M,S0101_C03_030MA"}, "S2603_C04_070E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Not a U.S. citizen", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C04_070EA,S2603_C04_070M,S2603_C04_070MA"}, "S2502_C03_022E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!YEAR HOUSEHOLDER MOVED INTO UNIT!!Moved in 2023 or later", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C03_022EA,S2502_C03_022M,S2502_C03_022MA"}, "S0501_C04_124E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!Occupied housing units!!ROOMS!!6 or 7 rooms", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_124EA,S0501_C04_124M,S0501_C04_124MA"}, "S0802_C04_022E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_022EA,S0802_C04_022M,S0802_C04_022MA"}, "S0101_C03_031E": {"label": "Estimate!!Male!!Total population!!SELECTED AGE CATEGORIES!!75 years and over", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C03_031EA,S0101_C03_031M,S0101_C03_031MA"}, "S2603_C04_071E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Not a U.S. citizen!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C04_071EA,S2603_C04_071M,S2603_C04_071MA"}, "S0501_C04_127E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!Occupied housing units!!1.01 or more occupants per room", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_127EA,S0501_C04_127M,S0501_C04_127MA"}, "S2603_C04_072E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Not a U.S. citizen!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C04_072EA,S2603_C04_072M,S2603_C04_072MA"}, "S0804_C03_069E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over who did not work from home!!TIME ARRIVING AT WORK!!5:30 a.m. to 5:59 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_069EA,S0804_C03_069M,S0804_C03_069MA"}, "S0802_C04_023E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born!!Naturalized U.S. citizen", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_023EA,S0802_C04_023M,S0802_C04_023MA"}, "S2502_C03_020E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!EDUCATIONAL ATTAINMENT OF HOUSEHOLDER!!Some college or associate's degree", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C03_020EA,S2502_C03_020M,S2502_C03_020MA"}, "S2603_C04_073E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Entered 2010 or later", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C04_073EA,S2603_C04_073M,S2603_C04_073MA"}, "S0501_C04_126E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!Occupied housing units!!Median number of rooms", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_126EA,S0501_C04_126M,S0501_C04_126MA"}, "S0804_C03_068E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over who did not work from home!!TIME ARRIVING AT WORK!!5:00 a.m. to 5:29 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_068EA,S0804_C03_068M,S0804_C03_068MA"}, "S0802_C04_024E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born!!Not a U.S. citizen", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_024EA,S0802_C04_024M,S0802_C04_024MA"}, "S2601A_C04_026E": {"label": "Estimate!!Noninstitutionalized group quarters population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_026EA,S2601A_C04_026M,S2601A_C04_026MA"}, "S2701_C03_033E": {"label": "Estimate!!Percent Insured!!Civilian noninstitutionalized population!!NATIVITY AND U.S. CITIZENSHIP STATUS!!Foreign born!!Naturalized", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C03_033EA,S2701_C03_033M,S2701_C03_033MA"}, "S2502_C03_025E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!YEAR HOUSEHOLDER MOVED INTO UNIT!!Moved in 2000 to 2009", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C03_025EA,S2502_C03_025M,S2502_C03_025MA"}, "S2602_C01_026E": {"label": "Estimate!!Total population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C01_026EA,S2602_C01_026M,S2602_C01_026MA"}, "S2603_C04_074E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Entered 2000 to 2009", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C04_074EA,S2603_C04_074M,S2603_C04_074MA"}, "S0101_C03_034E": {"label": "Estimate!!Male!!Total population!!SUMMARY INDICATORS!!Age dependency ratio", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C03_034EA,S0101_C03_034M,S0101_C03_034MA"}, "S1401_C03_029E": {"label": "Estimate!!In public school!!Population 18 to 24 years", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C03_029EA,S1401_C03_029M,S1401_C03_029MA"}, "S0802_C04_025E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Speak language other than English", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_025EA,S0802_C04_025M,S0802_C04_025MA"}, "S1301_C05_028E": {"label": "Estimate!!Percent of women who had a birth in the past 12 months who were unmarried!!PUBLIC ASSISTANCE INCOME IN THE PAST 12 MONTHS!!Women 15 to 50 years", "concept": "Fertility", "predicateType": "float", "group": "S1301", "limit": 0, "attributes": "S1301_C05_028EA,S1301_C05_028M,S1301_C05_028MA"}, "S2601A_C04_025E": {"label": "Estimate!!Noninstitutionalized group quarters population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Asian", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_025EA,S2601A_C04_025M,S2601A_C04_025MA"}, "S2601A_C04_027E": {"label": "Estimate!!Noninstitutionalized group quarters population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Some other race", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_027EA,S2601A_C04_027M,S2601A_C04_027MA"}, "S2701_C03_032E": {"label": "Estimate!!Percent Insured!!Civilian noninstitutionalized population!!NATIVITY AND U.S. CITIZENSHIP STATUS!!Foreign born", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C03_032EA,S2701_C03_032M,S2701_C03_032MA"}, "S2502_C03_026E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!YEAR HOUSEHOLDER MOVED INTO UNIT!!Moved in 1990 to 1999", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C03_026EA,S2502_C03_026M,S2502_C03_026MA"}, "S2602_C01_027E": {"label": "Estimate!!Total population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Some other race", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C01_027EA,S2602_C01_027M,S2602_C01_027MA"}, "S0802_C04_026E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Speak language other than English!!Speak English \"very well\"", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_026EA,S0802_C04_026M,S0802_C04_026MA"}, "S2603_C04_075E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Entered before 2000", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C04_075EA,S2603_C04_075M,S2603_C04_075MA"}, "S0101_C03_035E": {"label": "Estimate!!Male!!Total population!!SUMMARY INDICATORS!!Old-age dependency ratio", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C03_035EA,S0101_C03_035M,S0101_C03_035MA"}, "S1301_C05_029E": {"label": "Estimate!!Percent of women who had a birth in the past 12 months who were unmarried!!PUBLIC ASSISTANCE INCOME IN THE PAST 12 MONTHS!!Women 15 to 50 years!!Received public assistance income", "concept": "Fertility", "predicateType": "float", "group": "S1301", "limit": 0, "attributes": "S1301_C05_029EA,S1301_C05_029M,S1301_C05_029MA"}, "S2502_C03_023E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!YEAR HOUSEHOLDER MOVED INTO UNIT!!Moved in 2020 to 2022", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C03_023EA,S2502_C03_023M,S2502_C03_023MA"}, "S2701_C03_031E": {"label": "Estimate!!Percent Insured!!Civilian noninstitutionalized population!!NATIVITY AND U.S. CITIZENSHIP STATUS!!Native born", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C03_031EA,S2701_C03_031M,S2701_C03_031MA"}, "S1401_C03_027E": {"label": "Estimate!!In public school!!Population 35 years and over", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C03_027EA,S1401_C03_027M,S1401_C03_027MA"}, "S2602_C01_028E": {"label": "Estimate!!Total population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!Two or more races", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C01_028EA,S2602_C01_028M,S2602_C01_028MA"}, "S0802_C04_027E": {"label": "Estimate!!Public transportation!!Workers 16 years and over!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Speak language other than English!!Speak English less than \"very well\"", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_027EA,S0802_C04_027M,S0802_C04_027MA"}, "S2603_C04_076E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!WORLD REGION OF BIRTH OF FOREIGN BORN!!Foreign-born population excluding population born at sea", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C04_076EA,S2603_C04_076M,S2603_C04_076MA"}, "S0101_C03_032E": {"label": "Estimate!!Male!!Total population!!SUMMARY INDICATORS!!Median age (years)", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C03_032EA,S0101_C03_032M,S0101_C03_032MA"}, "S1501_C01_041E": {"label": "Estimate!!Total!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Asian alone!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C01_041EA,S1501_C01_041M,S1501_C01_041MA"}, "S2601A_C04_023E": {"label": "Estimate!!Noninstitutionalized group quarters population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_023EA,S2601A_C04_023M,S2601A_C04_023MA"}, "S2502_C03_024E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!YEAR HOUSEHOLDER MOVED INTO UNIT!!Moved in 2010 to 2019", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C03_024EA,S2502_C03_024M,S2502_C03_024MA"}, "S2701_C03_030E": {"label": "Estimate!!Percent Insured!!Civilian noninstitutionalized population!!LIVING ARRANGEMENTS!!In non-family households and other living arrangements", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C03_030EA,S2701_C03_030M,S2701_C03_030MA"}, "S1401_C03_028E": {"label": "Estimate!!In public school!!Population 35 years and over!!35 years and over enrolled in school", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C03_028EA,S1401_C03_028M,S1401_C03_028MA"}, "S2602_C01_029E": {"label": "Estimate!!Total population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!Hispanic or Latino (of any race)", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C01_029EA,S2602_C01_029M,S2602_C01_029MA"}, "S0802_C04_028E": {"label": "Estimate!!Public transportation!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "int", "group": "S0802", "limit": 0, "attributes": "S0802_C04_028EA,S0802_C04_028M,S0802_C04_028MA"}, "S2603_C04_077E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!WORLD REGION OF BIRTH OF FOREIGN BORN!!Foreign-born population excluding population born at sea!!Europe", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C04_077EA,S2603_C04_077M,S2603_C04_077MA"}, "S0101_C03_033E": {"label": "Estimate!!Male!!Total population!!SUMMARY INDICATORS!!Sex ratio (males per 100 females)", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C03_033EA,S0101_C03_033M,S0101_C03_033MA"}, "S1501_C01_040E": {"label": "Estimate!!Total!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Asian alone", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C01_040EA,S1501_C01_040M,S1501_C01_040MA"}, "S2601A_C04_024E": {"label": "Estimate!!Noninstitutionalized group quarters population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_024EA,S2601A_C04_024M,S2601A_C04_024MA"}, "S2701_C03_037E": {"label": "Estimate!!Percent Insured!!Civilian noninstitutionalized population!!EDUCATIONAL ATTAINMENT!!Civilian noninstitutionalized population 26 years and over", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C03_037EA,S2701_C03_037M,S2701_C03_037MA"}, "S1301_C05_024E": {"label": "Estimate!!Percent of women who had a birth in the past 12 months who were unmarried!!POVERTY STATUS IN THE PAST 12 MONTHS!!Women 15 to 50 years for whom poverty status is determined!!100 to 199 percent of poverty level", "concept": "Fertility", "predicateType": "float", "group": "S1301", "limit": 0, "attributes": "S1301_C05_024EA,S1301_C05_024M,S1301_C05_024MA"}, "S2602_C01_022E": {"label": "Estimate!!Total population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!White", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C01_022EA,S2602_C01_022M,S2602_C01_022MA"}, "S1401_C03_025E": {"label": "Estimate!!In public school!!Population 25 to 34 years", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C03_025EA,S1401_C03_025M,S1401_C03_025MA"}, "S0101_C03_038E": {"label": "Estimate!!Male!!Total population!!PERCENT ALLOCATED!!Age", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C03_038EA,S0101_C03_038M,S0101_C03_038MA"}, "S0802_C04_029E": {"label": "Estimate!!Public transportation!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$1 to $9,999 or loss", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_029EA,S0802_C04_029M,S0802_C04_029MA"}, "S2603_C04_078E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!WORLD REGION OF BIRTH OF FOREIGN BORN!!Foreign-born population excluding population born at sea!!Asia", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C04_078EA,S2603_C04_078M,S2603_C04_078MA"}, "S1501_C01_043E": {"label": "Estimate!!Total!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Native Hawaiian and Other Pacific Islander alone", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C01_043EA,S1501_C01_043M,S1501_C01_043MA"}, "S2701_C03_036E": {"label": "Estimate!!Percent Insured!!Civilian noninstitutionalized population!!DISABILITY STATUS!!No disability", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C03_036EA,S2701_C03_036M,S2701_C03_036MA"}, "S1301_C05_025E": {"label": "Estimate!!Percent of women who had a birth in the past 12 months who were unmarried!!POVERTY STATUS IN THE PAST 12 MONTHS!!Women 15 to 50 years for whom poverty status is determined!!200 percent or more above poverty level", "concept": "Fertility", "predicateType": "float", "group": "S1301", "limit": 0, "attributes": "S1301_C05_025EA,S1301_C05_025M,S1301_C05_025MA"}, "S2602_C01_023E": {"label": "Estimate!!Total population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C01_023EA,S2602_C01_023M,S2602_C01_023MA"}, "S1401_C03_026E": {"label": "Estimate!!In public school!!Population 25 to 34 years!!25 to 34 year olds enrolled in school", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C03_026EA,S1401_C03_026M,S1401_C03_026MA"}, "S2603_C04_079E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!WORLD REGION OF BIRTH OF FOREIGN BORN!!Foreign-born population excluding population born at sea!!Latin America", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C04_079EA,S2603_C04_079M,S2603_C04_079MA"}, "S1501_C01_042E": {"label": "Estimate!!Total!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Asian alone!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C01_042EA,S1501_C01_042M,S1501_C01_042MA"}, "S1301_C05_026E": {"label": "Estimate!!Percent of women who had a birth in the past 12 months who were unmarried!!LABOR FORCE STATUS!!Women 16 to 50 years", "concept": "Fertility", "predicateType": "float", "group": "S1301", "limit": 0, "attributes": "S1301_C05_026EA,S1301_C05_026M,S1301_C05_026MA"}, "S2601A_C04_028E": {"label": "Estimate!!Noninstitutionalized group quarters population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!Two or more races", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_028EA,S2601A_C04_028M,S2601A_C04_028MA"}, "S2701_C03_035E": {"label": "Estimate!!Percent Insured!!Civilian noninstitutionalized population!!DISABILITY STATUS!!With a disability", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C03_035EA,S2701_C03_035M,S2701_C03_035MA"}, "S2502_C03_027E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!YEAR HOUSEHOLDER MOVED INTO UNIT!!Moved in 1989 or earlier", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C03_027EA,S2502_C03_027M,S2502_C03_027MA"}, "S2602_C01_024E": {"label": "Estimate!!Total population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C01_024EA,S2602_C01_024M,S2602_C01_024MA"}, "S1401_C03_023E": {"label": "Estimate!!In public school!!Population 20 to 24 years", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C03_023EA,S1401_C03_023M,S1401_C03_023MA"}, "S0101_C03_036E": {"label": "Estimate!!Male!!Total population!!SUMMARY INDICATORS!!Child dependency ratio", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C03_036EA,S0101_C03_036M,S0101_C03_036MA"}, "S1501_C01_045E": {"label": "Estimate!!Total!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Native Hawaiian and Other Pacific Islander alone!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C01_045EA,S1501_C01_045M,S1501_C01_045MA"}, "S1301_C05_027E": {"label": "Estimate!!Percent of women who had a birth in the past 12 months who were unmarried!!LABOR FORCE STATUS!!Women 16 to 50 years!!In labor force", "concept": "Fertility", "predicateType": "float", "group": "S1301", "limit": 0, "attributes": "S1301_C05_027EA,S1301_C05_027M,S1301_C05_027MA"}, "S2701_C03_034E": {"label": "Estimate!!Percent Insured!!Civilian noninstitutionalized population!!NATIVITY AND U.S. CITIZENSHIP STATUS!!Foreign born!!Not a citizen", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C03_034EA,S2701_C03_034M,S2701_C03_034MA"}, "S2601A_C04_029E": {"label": "Estimate!!Noninstitutionalized group quarters population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!Hispanic or Latino (of any race)", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_029EA,S2601A_C04_029M,S2601A_C04_029MA"}, "S2602_C01_025E": {"label": "Estimate!!Total population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Asian", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C01_025EA,S2602_C01_025M,S2602_C01_025MA"}, "S1401_C03_024E": {"label": "Estimate!!In public school!!Population 20 to 24 years!!20 to 24 year olds enrolled in school", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C03_024EA,S1401_C03_024M,S1401_C03_024MA"}, "S0101_C03_037E": {"label": "Estimate!!Male!!Total population!!PERCENT ALLOCATED!!Sex", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C03_037EA,S0101_C03_037M,S0101_C03_037MA"}, "S1501_C01_044E": {"label": "Estimate!!Total!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Native Hawaiian and Other Pacific Islander alone!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C01_044EA,S1501_C01_044M,S1501_C01_044MA"}, "S1301_C05_020E": {"label": "Estimate!!Percent of women who had a birth in the past 12 months who were unmarried!!Women 15 to 50 years!!EDUCATIONAL ATTAINMENT!!Bachelor's degree", "concept": "Fertility", "predicateType": "float", "group": "S1301", "limit": 0, "attributes": "S1301_C05_020EA,S1301_C05_020M,S1301_C05_020MA"}, "S2603_C04_058E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the United States!!Different county!!Different state", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C04_058EA,S2603_C04_058M,S2603_C04_058MA"}, "S0804_C03_071E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over who did not work from home!!TIME ARRIVING AT WORK!!6:30 a.m. to 6:59 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_071EA,S0804_C03_071M,S0804_C03_071MA"}, "S1811_C03_053E": {"label": "Estimate!!No Disability!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population Age 16 and over for whom poverty status is determined", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "int", "group": "S1811", "limit": 0, "attributes": "S1811_C03_053EA,S1811_C03_053M,S1811_C03_053MA"}, "S1501_C01_047E": {"label": "Estimate!!Total!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Some other race alone!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C01_047EA,S1501_C01_047M,S1501_C01_047MA"}, "S0701PR_C04_046E": {"label": "Estimate!!Moved; from the U.S.!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$65,000 to $74,999", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C04_046EA,S0701PR_C04_046M,S0701PR_C04_046MA"}, "S1301_C05_021E": {"label": "Estimate!!Percent of women who had a birth in the past 12 months who were unmarried!!Women 15 to 50 years!!EDUCATIONAL ATTAINMENT!!Graduate or professional degree", "concept": "Fertility", "predicateType": "float", "group": "S1301", "limit": 0, "attributes": "S1301_C05_021EA,S1301_C05_021M,S1301_C05_021MA"}, "S2603_C04_059E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Abroad", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C04_059EA,S2603_C04_059M,S2603_C04_059MA"}, "S0804_C03_070E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over who did not work from home!!TIME ARRIVING AT WORK!!6:00 a.m. to 6:29 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_070EA,S0804_C03_070M,S0804_C03_070MA"}, "S1811_C03_054E": {"label": "Estimate!!No Disability!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population Age 16 and over for whom poverty status is determined!!Below 100 percent of the poverty level", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C03_054EA,S1811_C03_054M,S1811_C03_054MA"}, "S1501_C01_046E": {"label": "Estimate!!Total!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Some other race alone", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C01_046EA,S1501_C01_046M,S1501_C01_046MA"}, "S0701PR_C04_045E": {"label": "Estimate!!Moved; from the U.S.!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$50,000 to $64,999", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C04_045EA,S0701PR_C04_045M,S0701PR_C04_045MA"}, "S1301_C05_022E": {"label": "Estimate!!Percent of women who had a birth in the past 12 months who were unmarried!!POVERTY STATUS IN THE PAST 12 MONTHS!!Women 15 to 50 years for whom poverty status is determined", "concept": "Fertility", "predicateType": "float", "group": "S1301", "limit": 0, "attributes": "S1301_C05_022EA,S1301_C05_022M,S1301_C05_022MA"}, "S1501_C01_049E": {"label": "Estimate!!Total!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Two or more races", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C01_049EA,S1501_C01_049M,S1501_C01_049MA"}, "S0101_C03_028E": {"label": "Estimate!!Male!!Total population!!SELECTED AGE CATEGORIES!!60 years and over", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C03_028EA,S0101_C03_028M,S0101_C03_028MA"}, "S1811_C03_055E": {"label": "Estimate!!No Disability!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population Age 16 and over for whom poverty status is determined!!100 to 149 percent of the poverty level", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C03_055EA,S1811_C03_055M,S1811_C03_055MA"}, "S0701PR_C04_048E": {"label": "Estimate!!Moved; from the U.S.!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!Median income (dollars)", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "int", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C04_048EA,S0701PR_C04_048M,S0701PR_C04_048MA"}, "S2502_C03_019E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!EDUCATIONAL ATTAINMENT OF HOUSEHOLDER!!High school graduate (includes equivalency)", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C03_019EA,S2502_C03_019M,S2502_C03_019MA"}, "S1301_C05_023E": {"label": "Estimate!!Percent of women who had a birth in the past 12 months who were unmarried!!POVERTY STATUS IN THE PAST 12 MONTHS!!Women 15 to 50 years for whom poverty status is determined!!Below 100 percent of poverty level", "concept": "Fertility", "predicateType": "float", "group": "S1301", "limit": 0, "attributes": "S1301_C05_023EA,S1301_C05_023M,S1301_C05_023MA"}, "S0101_C03_029E": {"label": "Estimate!!Male!!Total population!!SELECTED AGE CATEGORIES!!62 years and over", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C03_029EA,S0101_C03_029M,S0101_C03_029MA"}, "S1501_C01_048E": {"label": "Estimate!!Total!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Some other race alone!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C01_048EA,S1501_C01_048M,S1501_C01_048MA"}, "S2407_C05_015E": {"label": "Estimate!!Local, state, and federal government workers!!PERCENT ALLOCATED!!Industry", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2407", "limit": 0, "attributes": "S2407_C05_015EA,S2407_C05_015M,S2407_C05_015MA"}, "S1811_C03_056E": {"label": "Estimate!!No Disability!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population Age 16 and over for whom poverty status is determined!!At or above 150 percent of the poverty level", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C03_056EA,S1811_C03_056M,S1811_C03_056MA"}, "S0701PR_C04_047E": {"label": "Estimate!!Moved; from the U.S.!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$75,000 or more", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C04_047EA,S0701PR_C04_047M,S0701PR_C04_047MA"}, "S2701_C03_041E": {"label": "Estimate!!Percent Insured!!Civilian noninstitutionalized population!!EDUCATIONAL ATTAINMENT!!Civilian noninstitutionalized population 26 years and over!!Bachelor's degree or higher", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C03_041EA,S2701_C03_041M,S2701_C03_041MA"}, "S0505_C05_026E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_026EA,S0505_C05_026M,S0505_C05_026MA"}, "S2701_C03_040E": {"label": "Estimate!!Percent Insured!!Civilian noninstitutionalized population!!EDUCATIONAL ATTAINMENT!!Civilian noninstitutionalized population 26 years and over!!Some college or associate's degree", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C03_040EA,S2701_C03_040M,S2701_C03_040MA"}, "S0701PR_C04_049E": {"label": "Estimate!!Moved; from the U.S.!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population 1 year and over for whom poverty status is determined", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C04_049EA,S0701PR_C04_049M,S0701PR_C04_049MA"}, "S2601A_C04_010E": {"label": "Estimate!!Noninstitutionalized group quarters population!!Total population!!SEX AND AGE!!55 to 64 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_010EA,S2601A_C04_010M,S2601A_C04_010MA"}, "S1811_C03_050E": {"label": "Estimate!!No Disability!!EARNINGS IN PAST 12 MONTHS (IN 2024 INFLATION ADJUSTED DOLLARS)!!Population Age 16 and over with earnings!!$50,000 to $74,999", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C03_050EA,S1811_C03_050M,S1811_C03_050MA"}, "S0505_C05_027E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_027EA,S0505_C05_027M,S0505_C05_027MA"}, "S1811_C03_051E": {"label": "Estimate!!No Disability!!EARNINGS IN PAST 12 MONTHS (IN 2024 INFLATION ADJUSTED DOLLARS)!!Population Age 16 and over with earnings!!$75,000 or more", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C03_051EA,S1811_C03_051M,S1811_C03_051MA"}, "S0505_C05_028E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_028EA,S0505_C05_028M,S0505_C05_028MA"}, "S0505_C05_029E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_029EA,S0505_C05_029M,S0505_C05_029MA"}, "S1811_C03_052E": {"label": "Estimate!!No Disability!!EARNINGS IN PAST 12 MONTHS (IN 2024 INFLATION ADJUSTED DOLLARS)!!Population Age 16 and over with earnings!!Median Earnings", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "int", "group": "S1811", "limit": 0, "attributes": "S1811_C03_052EA,S1811_C03_052M,S1811_C03_052MA"}, "S0506_C04_120E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_120EA,S0506_C04_120M,S0506_C04_120MA"}, "S0501_C04_121E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!Occupied housing units!!ROOMS!!1 room", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_121EA,S0501_C04_121M,S0501_C04_121MA"}, "S2407_C05_010E": {"label": "Estimate!!Local, state, and federal government workers!!Civilian employed population 16 years and over!!Professional, scientific, and management, and administrative and waste management services", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2407", "limit": 0, "attributes": "S2407_C05_010EA,S2407_C05_010M,S2407_C05_010MA"}, "S0804_C03_079E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!15 to 19 minutes", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_079EA,S0804_C03_079M,S0804_C03_079MA"}, "S0505_C05_022E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_022EA,S0505_C05_022M,S0505_C05_022MA"}, "S0501_C04_120E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!Occupied housing units!!HOUSING TENURE!!Average household size of renter-occupied unit", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_120EA,S0501_C04_120M,S0501_C04_120MA"}, "S0804_C03_078E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!10 to 14 minutes", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_078EA,S0804_C03_078M,S0804_C03_078MA"}, "S0505_C05_023E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_023EA,S0505_C05_023M,S0505_C05_023MA"}, "S0506_C04_122E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_122EA,S0506_C04_122M,S0506_C04_122MA"}, "S0701PR_C04_040E": {"label": "Estimate!!Moved; from the U.S.!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$1 to $9,999 or loss", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C04_040EA,S0701PR_C04_040M,S0701PR_C04_040MA"}, "S0501_C04_123E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!Occupied housing units!!ROOMS!!4 or 5 rooms", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_123EA,S0501_C04_123M,S0501_C04_123MA"}, "S0804_C03_077E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!Less than 10 minutes", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_077EA,S0804_C03_077M,S0804_C03_077MA"}, "S0505_C05_024E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_024EA,S0505_C05_024M,S0505_C05_024MA"}, "S0506_C04_121E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_121EA,S0506_C04_121M,S0506_C04_121MA"}, "S0501_C04_122E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!Occupied housing units!!ROOMS!!2 or 3 rooms", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_122EA,S0501_C04_122M,S0501_C04_122MA"}, "S0804_C03_076E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over who did not work from home!!TIME ARRIVING AT WORK!!9:00 a.m. to 11:59 p.m.", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_076EA,S0804_C03_076M,S0804_C03_076MA"}, "S0505_C05_025E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_025EA,S0505_C05_025M,S0505_C05_025MA"}, "S0701PR_C04_042E": {"label": "Estimate!!Moved; from the U.S.!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$15,000 to $24,999", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C04_042EA,S0701PR_C04_042M,S0701PR_C04_042MA"}, "S0506_C04_124E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C04_124EA,S0506_C04_124M,S0506_C04_124MA"}, "S0804_C03_075E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over who did not work from home!!TIME ARRIVING AT WORK!!8:30 a.m. to 8:59 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_075EA,S0804_C03_075M,S0804_C03_075MA"}, "S2407_C05_014E": {"label": "Estimate!!Local, state, and federal government workers!!Civilian employed population 16 years and over!!Public administration", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2407", "limit": 0, "attributes": "S2407_C05_014EA,S2407_C05_014M,S2407_C05_014MA"}, "S0506_C04_123E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_123EA,S0506_C04_123M,S0506_C04_123MA"}, "S0701PR_C04_041E": {"label": "Estimate!!Moved; from the U.S.!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$10,000 to $14,999", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C04_041EA,S0701PR_C04_041M,S0701PR_C04_041MA"}, "S0804_C03_074E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over who did not work from home!!TIME ARRIVING AT WORK!!8:00 a.m. to 8:29 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_074EA,S0804_C03_074M,S0804_C03_074MA"}, "S2407_C05_013E": {"label": "Estimate!!Local, state, and federal government workers!!Civilian employed population 16 years and over!!Other services, except public administration", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2407", "limit": 0, "attributes": "S2407_C05_013EA,S2407_C05_013M,S2407_C05_013MA"}, "S0506_C04_126E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Occupied housing units!!HOUSING TENURE!!Renter-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_126EA,S0506_C04_126M,S0506_C04_126MA"}, "S0505_C05_020E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Foreign-born population!!SEX AND AGE!!85 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_020EA,S0505_C05_020M,S0505_C05_020MA"}, "S0804_C03_073E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over who did not work from home!!TIME ARRIVING AT WORK!!7:30 a.m. to 7:59 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_073EA,S0804_C03_073M,S0804_C03_073MA"}, "S2407_C05_012E": {"label": "Estimate!!Local, state, and federal government workers!!Civilian employed population 16 years and over!!Arts, entertainment, and recreation, and accommodation and food services", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2407", "limit": 0, "attributes": "S2407_C05_012EA,S2407_C05_012M,S2407_C05_012MA"}, "S0701PR_C04_044E": {"label": "Estimate!!Moved; from the U.S.!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$35,000 to $49,999", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C04_044EA,S0701PR_C04_044M,S0701PR_C04_044MA"}, "S0701PR_C04_043E": {"label": "Estimate!!Moved; from the U.S.!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$25,000 to $34,999", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C04_043EA,S0701PR_C04_043M,S0701PR_C04_043MA"}, "S0506_C04_125E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Occupied housing units!!HOUSING TENURE!!Owner-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_125EA,S0506_C04_125M,S0506_C04_125MA"}, "S0802_C04_040E": {"label": "Estimate!!Public transportation!!POVERTY STATUS IN THE PAST 12 MONTHS!!Workers 16 years and over for whom poverty status is determined!!100 to 149 percent of the poverty level", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_040EA,S0802_C04_040M,S0802_C04_040MA"}, "S0804_C03_072E": {"label": "Estimate!!Car, truck, or van -- carpooled!!Workers 16 years and over who did not work from home!!TIME ARRIVING AT WORK!!7:00 a.m. to 7:29 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C03_072EA,S0804_C03_072M,S0804_C03_072MA"}, "S2407_C05_011E": {"label": "Estimate!!Local, state, and federal government workers!!Civilian employed population 16 years and over!!Educational services, and health care and social assistance", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2407", "limit": 0, "attributes": "S2407_C05_011EA,S2407_C05_011M,S2407_C05_011MA"}, "S0505_C05_021E": {"label": "Estimate!!Foreign-born; Born in South Eastern Asia!!Foreign-born population!!SEX AND AGE!!Median age (years)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C05_021EA,S0505_C05_021M,S0505_C05_021MA"}, "S2602_C01_030E": {"label": "Estimate!!Total population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!White alone, Not Hispanic or Latino", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C01_030EA,S2602_C01_030M,S2602_C01_030MA"}, "S0506_C04_128E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Occupied housing units!!HOUSING TENURE!!Average household size of renter-occupied unit", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_128EA,S0506_C04_128M,S0506_C04_128MA"}, "S2601CPR_C01_099E": {"label": "Estimate!!Total population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!With earnings for full-time, year-round workers:!!Male", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "int", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_099EA,S2601CPR_C01_099M,S2601CPR_C01_099MA"}, "S0501_C04_117E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!Occupied housing units!!HOUSING TENURE!!Owner-occupied housing units", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_117EA,S0501_C04_117M,S0501_C04_117MA"}, "S0801_C01_006E": {"label": "Estimate!!Total!!Workers 16 years and over!!MEANS OF TRANSPORTATION TO WORK!!Car, truck, or van!!Carpooled!!In 3-person carpool", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C01_006EA,S0801_C01_006M,S0801_C01_006MA"}, "S0506_C04_127E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Occupied housing units!!HOUSING TENURE!!Average household size of owner-occupied unit", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_127EA,S0506_C04_127M,S0506_C04_127MA"}, "S2602_C01_031E": {"label": "Estimate!!Total population!!MARITAL STATUS!!Population 15 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C01_031EA,S2602_C01_031M,S2602_C01_031MA"}, "S0802_C04_030E": {"label": "Estimate!!Public transportation!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$10,000 to $14,999", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_030EA,S0802_C04_030M,S0802_C04_030MA"}, "S2601CPR_C01_098E": {"label": "Estimate!!Total population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!Per capita income (dollars)", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "int", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_098EA,S2601CPR_C01_098M,S2601CPR_C01_098MA"}, "S0501_C04_116E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!Occupied housing units", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C04_116EA,S0501_C04_116M,S0501_C04_116MA"}, "S0801_C01_005E": {"label": "Estimate!!Total!!Workers 16 years and over!!MEANS OF TRANSPORTATION TO WORK!!Car, truck, or van!!Carpooled!!In 2-person carpool", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C01_005EA,S0801_C01_005M,S0801_C01_005MA"}, "S2602_C01_032E": {"label": "Estimate!!Total population!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C01_032EA,S2602_C01_032M,S2602_C01_032MA"}, "S2601CPR_C01_097E": {"label": "Estimate!!Total population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "int", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_097EA,S2601CPR_C01_097M,S2601CPR_C01_097MA"}, "S0802_C04_031E": {"label": "Estimate!!Public transportation!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$15,000 to $24,999", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_031EA,S0802_C04_031M,S0802_C04_031MA"}, "S0501_C04_119E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!Occupied housing units!!HOUSING TENURE!!Average household size of owner-occupied unit", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_119EA,S0501_C04_119M,S0501_C04_119MA"}, "S0801_C01_008E": {"label": "Estimate!!Total!!Workers 16 years and over!!MEANS OF TRANSPORTATION TO WORK!!Car, truck, or van!!Workers per car, truck, or van", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C01_008EA,S0801_C01_008M,S0801_C01_008MA"}, "S2601CPR_C01_096E": {"label": "Estimate!!Total population!!OCCUPATION!!Civilian employed population 16 years and over!!Production, transportation, and material moving occupations", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C01_096EA,S2601CPR_C01_096M,S2601CPR_C01_096MA"}, "S2602_C01_033E": {"label": "Estimate!!Total population!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C01_033EA,S2602_C01_033M,S2602_C01_033MA"}, "S0506_C04_129E": {"label": "Estimate!!Foreign-born; Born in Other Central America!!Occupied housing units!!ROOMS!!1 room", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C04_129EA,S0506_C04_129M,S0506_C04_129MA"}, "S0802_C04_032E": {"label": "Estimate!!Public transportation!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$25,000 to $34,999", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_032EA,S0802_C04_032M,S0802_C04_032MA"}, "S0501_C04_118E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!Occupied housing units!!HOUSING TENURE!!Renter-occupied housing units", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_118EA,S0501_C04_118M,S0501_C04_118MA"}, "S0801_C01_007E": {"label": "Estimate!!Total!!Workers 16 years and over!!MEANS OF TRANSPORTATION TO WORK!!Car, truck, or van!!Carpooled!!In 4-or-more person carpool", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C01_007EA,S0801_C01_007M,S0801_C01_007MA"}, "S0801_C01_002E": {"label": "Estimate!!Total!!Workers 16 years and over!!MEANS OF TRANSPORTATION TO WORK!!Car, truck, or van", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C01_002EA,S0801_C01_002M,S0801_C01_002MA"}, "S0501_C04_113E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_113EA,S0501_C04_113M,S0501_C04_113MA"}, "S0802_C04_033E": {"label": "Estimate!!Public transportation!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$35,000 to $49,999", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_033EA,S0802_C04_033M,S0802_C04_033MA"}, "S2502_C03_010E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!White alone, not Hispanic or Latino", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C03_010EA,S2502_C03_010M,S2502_C03_010MA"}, "S0801_C01_001E": {"label": "Estimate!!Total!!Workers 16 years and over", "concept": "Commuting Characteristics by Sex", "predicateType": "int", "group": "S0801", "limit": 0, "attributes": "S0801_C01_001EA,S0801_C01_001M,S0801_C01_001MA"}, "S0501_C04_112E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_112EA,S0501_C04_112M,S0501_C04_112MA"}, "S0802_C04_034E": {"label": "Estimate!!Public transportation!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$50,000 to $64,999", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_034EA,S0802_C04_034M,S0802_C04_034MA"}, "S0501_C04_115E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_115EA,S0501_C04_115M,S0501_C04_115MA"}, "S0802_C04_035E": {"label": "Estimate!!Public transportation!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$65,000 to $74,999", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_035EA,S0802_C04_035M,S0802_C04_035MA"}, "S0801_C01_004E": {"label": "Estimate!!Total!!Workers 16 years and over!!MEANS OF TRANSPORTATION TO WORK!!Car, truck, or van!!Carpooled", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C01_004EA,S0801_C01_004M,S0801_C01_004MA"}, "S2603_C04_060E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C04_060EA,S2603_C04_060M,S2603_C04_060MA"}, "S0801_C01_003E": {"label": "Estimate!!Total!!Workers 16 years and over!!MEANS OF TRANSPORTATION TO WORK!!Car, truck, or van!!Drove alone", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C01_003EA,S0801_C01_003M,S0801_C01_003MA"}, "S2603_C04_061E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Native", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C04_061EA,S2603_C04_061M,S2603_C04_061MA"}, "S0501_C04_114E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_114EA,S0501_C04_114M,S0501_C04_114MA"}, "S0802_C04_036E": {"label": "Estimate!!Public transportation!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$75,000 or more", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_036EA,S0802_C04_036M,S0802_C04_036MA"}, "S1301_C05_016E": {"label": "Estimate!!Percent of women who had a birth in the past 12 months who were unmarried!!Women 15 to 50 years!!NATIVITY!!Foreign born", "concept": "Fertility", "predicateType": "float", "group": "S1301", "limit": 0, "attributes": "S1301_C05_016EA,S1301_C05_016M,S1301_C05_016MA"}, "S2701_C03_045E": {"label": "Estimate!!Percent Insured!!Civilian noninstitutionalized population!!EMPLOYMENT STATUS!!Civilian noninstitutionalized population 19 to 64 years!!In labor force!!Unemployed", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C03_045EA,S2701_C03_045M,S2701_C03_045MA"}, "S2502_C03_013E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!AGE OF HOUSEHOLDER!!45 to 54 years", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C03_013EA,S2502_C03_013M,S2502_C03_013MA"}, "S1811_C03_049E": {"label": "Estimate!!No Disability!!EARNINGS IN PAST 12 MONTHS (IN 2024 INFLATION ADJUSTED DOLLARS)!!Population Age 16 and over with earnings!!$35,000 to $49,999", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C03_049EA,S1811_C03_049M,S1811_C03_049MA"}, "S2602_C01_038E": {"label": "Estimate!!Total population!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Nursery school through 12th grade", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C01_038EA,S2602_C01_038M,S2602_C01_038MA"}, "S0802_C04_037E": {"label": "Estimate!!Public transportation!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!Median earnings (dollars)", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "int", "group": "S0802", "limit": 0, "attributes": "S0802_C04_037EA,S0802_C04_037M,S0802_C04_037MA"}, "S2603_C04_062E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Native!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C04_062EA,S2603_C04_062M,S2603_C04_062MA"}, "S0101_C03_022E": {"label": "Estimate!!Male!!Total population!!SELECTED AGE CATEGORIES!!Under 18 years", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C03_022EA,S0101_C03_022M,S0101_C03_022MA"}, "S1501_C01_051E": {"label": "Estimate!!Total!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Two or more races!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C01_051EA,S1501_C01_051M,S1501_C01_051MA"}, "S2601A_C04_013E": {"label": "Estimate!!Noninstitutionalized group quarters population!!Total population!!SEX AND AGE!!85 years and over", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_013EA,S2601A_C04_013M,S2601A_C04_013MA"}, "S2601A_C04_015E": {"label": "Estimate!!Noninstitutionalized group quarters population!!Total population!!SEX AND AGE!!Under 18 years!!Male", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_015EA,S2601A_C04_015M,S2601A_C04_015MA"}, "S2701_C03_044E": {"label": "Estimate!!Percent Insured!!Civilian noninstitutionalized population!!EMPLOYMENT STATUS!!Civilian noninstitutionalized population 19 to 64 years!!In labor force!!Employed", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C03_044EA,S2701_C03_044M,S2701_C03_044MA"}, "S2502_C03_014E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!AGE OF HOUSEHOLDER!!55 to 64 years", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C03_014EA,S2502_C03_014M,S2502_C03_014MA"}, "S2602_C01_039E": {"label": "Estimate!!Total population!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!College or graduate school", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C01_039EA,S2602_C01_039M,S2602_C01_039MA"}, "S0802_C04_038E": {"label": "Estimate!!Public transportation!!POVERTY STATUS IN THE PAST 12 MONTHS!!Workers 16 years and over for whom poverty status is determined", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "int", "group": "S0802", "limit": 0, "attributes": "S0802_C04_038EA,S0802_C04_038M,S0802_C04_038MA"}, "S2603_C04_063E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Native!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C04_063EA,S2603_C04_063M,S2603_C04_063MA"}, "S0101_C03_023E": {"label": "Estimate!!Male!!Total population!!SELECTED AGE CATEGORIES!!18 to 24 years", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C03_023EA,S0101_C03_023M,S0101_C03_023MA"}, "S1501_C01_050E": {"label": "Estimate!!Total!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Two or more races!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C01_050EA,S1501_C01_050M,S1501_C01_050MA"}, "S1301_C05_017E": {"label": "Estimate!!Percent of women who had a birth in the past 12 months who were unmarried!!Women 15 to 50 years!!EDUCATIONAL ATTAINMENT!!Less than high school graduate", "concept": "Fertility", "predicateType": "float", "group": "S1301", "limit": 0, "attributes": "S1301_C05_017EA,S1301_C05_017M,S1301_C05_017MA"}, "S2601A_C04_014E": {"label": "Estimate!!Noninstitutionalized group quarters population!!Total population!!SEX AND AGE!!Under 18 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_014EA,S2601A_C04_014M,S2601A_C04_014MA"}, "S2502_C03_011E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!AGE OF HOUSEHOLDER!!Under 35 years", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C03_011EA,S2502_C03_011M,S2502_C03_011MA"}, "S2701_C03_043E": {"label": "Estimate!!Percent Insured!!Civilian noninstitutionalized population!!EMPLOYMENT STATUS!!Civilian noninstitutionalized population 19 to 64 years!!In labor force", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C03_043EA,S2701_C03_043M,S2701_C03_043MA"}, "S0802_C04_039E": {"label": "Estimate!!Public transportation!!POVERTY STATUS IN THE PAST 12 MONTHS!!Workers 16 years and over for whom poverty status is determined!!Below 100 percent of the poverty level", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C04_039EA,S0802_C04_039M,S0802_C04_039MA"}, "S2603_C04_064E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C04_064EA,S2603_C04_064M,S2603_C04_064MA"}, "S1501_C01_053E": {"label": "Estimate!!Total!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Hispanic or Latino Origin!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C01_053EA,S1501_C01_053M,S1501_C01_053MA"}, "S0101_C03_020E": {"label": "Estimate!!Male!!Total population!!SELECTED AGE CATEGORIES!!5 to 14 years", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C03_020EA,S0101_C03_020M,S0101_C03_020MA"}, "S2601A_C04_011E": {"label": "Estimate!!Noninstitutionalized group quarters population!!Total population!!SEX AND AGE!!65 to 74 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_011EA,S2601A_C04_011M,S2601A_C04_011MA"}, "S1301_C05_018E": {"label": "Estimate!!Percent of women who had a birth in the past 12 months who were unmarried!!Women 15 to 50 years!!EDUCATIONAL ATTAINMENT!!High school graduate (includes equivalency)", "concept": "Fertility", "predicateType": "float", "group": "S1301", "limit": 0, "attributes": "S1301_C05_018EA,S1301_C05_018M,S1301_C05_018MA"}, "S2502_C03_012E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!AGE OF HOUSEHOLDER!!35 to 44 years", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C03_012EA,S2502_C03_012M,S2502_C03_012MA"}, "S2701_C03_042E": {"label": "Estimate!!Percent Insured!!Civilian noninstitutionalized population!!EMPLOYMENT STATUS!!Civilian noninstitutionalized population 19 to 64 years", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C03_042EA,S2701_C03_042M,S2701_C03_042MA"}, "S2603_C04_065E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C04_065EA,S2603_C04_065M,S2603_C04_065MA"}, "S0101_C03_021E": {"label": "Estimate!!Male!!Total population!!SELECTED AGE CATEGORIES!!15 to 17 years", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C03_021EA,S0101_C03_021M,S0101_C03_021MA"}, "S1501_C01_052E": {"label": "Estimate!!Total!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Hispanic or Latino Origin", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C01_052EA,S1501_C01_052M,S1501_C01_052MA"}, "S1301_C05_019E": {"label": "Estimate!!Percent of women who had a birth in the past 12 months who were unmarried!!Women 15 to 50 years!!EDUCATIONAL ATTAINMENT!!Some college or associate's degree", "concept": "Fertility", "predicateType": "float", "group": "S1301", "limit": 0, "attributes": "S1301_C05_019EA,S1301_C05_019M,S1301_C05_019MA"}, "S2601A_C04_012E": {"label": "Estimate!!Noninstitutionalized group quarters population!!Total population!!SEX AND AGE!!75 to 84 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_012EA,S2601A_C04_012M,S2601A_C04_012MA"}, "S2601A_C04_018E": {"label": "Estimate!!Noninstitutionalized group quarters population!!Total population!!SEX AND AGE!!65 years and over!!Male", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_018EA,S2601A_C04_018M,S2601A_C04_018MA"}, "S1301_C05_012E": {"label": "Estimate!!Percent of women who had a birth in the past 12 months who were unmarried!!Women 15 to 50 years!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Fertility", "predicateType": "float", "group": "S1301", "limit": 0, "attributes": "S1301_C05_012EA,S1301_C05_012M,S1301_C05_012MA"}, "S2602_C01_034E": {"label": "Estimate!!Total population!!MARITAL STATUS!!Population 15 years and over!!Divorced", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C01_034EA,S2602_C01_034M,S2602_C01_034MA"}, "S0101_C03_026E": {"label": "Estimate!!Male!!Total population!!SELECTED AGE CATEGORIES!!18 years and over", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C03_026EA,S0101_C03_026M,S0101_C03_026MA"}, "S2603_C04_066E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C04_066EA,S2603_C04_066M,S2603_C04_066MA"}, "S1501_C01_055E": {"label": "Estimate!!Total!!POVERTY RATE FOR THE POPULATION 25 YEARS AND OVER FOR WHOM POVERTY STATUS IS DETERMINED BY EDUCATIONAL ATTAINMENT LEVEL!!Less than high school graduate", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C01_055EA,S1501_C01_055M,S1501_C01_055MA"}, "S1811_C03_045E": {"label": "Estimate!!No Disability!!EARNINGS IN PAST 12 MONTHS (IN 2024 INFLATION ADJUSTED DOLLARS)!!Population Age 16 and over with earnings!!$1 to $4,999 or loss", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C03_045EA,S1811_C03_045M,S1811_C03_045MA"}, "S2502_C03_017E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!AGE OF HOUSEHOLDER!!85 years and over", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C03_017EA,S2502_C03_017M,S2502_C03_017MA"}, "S2701_C03_049E": {"label": "Estimate!!Percent Insured!!Civilian noninstitutionalized population!!WORK EXPERIENCE!!Civilian noninstitutionalized population 19 to 64 years!!Worked less than full-time, year round in the past 12 months", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C03_049EA,S2701_C03_049M,S2701_C03_049MA"}, "S2701_C03_048E": {"label": "Estimate!!Percent Insured!!Civilian noninstitutionalized population!!WORK EXPERIENCE!!Civilian noninstitutionalized population 19 to 64 years!!Worked full-time, year round in the past 12 months", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C03_048EA,S2701_C03_048M,S2701_C03_048MA"}, "S1301_C05_013E": {"label": "Estimate!!Percent of women who had a birth in the past 12 months who were unmarried!!Women 15 to 50 years!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Fertility", "predicateType": "float", "group": "S1301", "limit": 0, "attributes": "S1301_C05_013EA,S1301_C05_013M,S1301_C05_013MA"}, "S2601A_C04_019E": {"label": "Estimate!!Noninstitutionalized group quarters population!!Total population!!SEX AND AGE!!65 years and over!!Female", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_019EA,S2601A_C04_019M,S2601A_C04_019MA"}, "S2602_C01_035E": {"label": "Estimate!!Total population!!MARITAL STATUS!!Population 15 years and over!!Separated", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C01_035EA,S2602_C01_035M,S2602_C01_035MA"}, "S0101_C03_027E": {"label": "Estimate!!Male!!Total population!!SELECTED AGE CATEGORIES!!21 years and over", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C03_027EA,S0101_C03_027M,S0101_C03_027MA"}, "S1811_C03_046E": {"label": "Estimate!!No Disability!!EARNINGS IN PAST 12 MONTHS (IN 2024 INFLATION ADJUSTED DOLLARS)!!Population Age 16 and over with earnings!!$5,000 to $14,999", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C03_046EA,S1811_C03_046M,S1811_C03_046MA"}, "S2603_C04_067E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Naturalized U.S. citizen", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C04_067EA,S2603_C04_067M,S2603_C04_067MA"}, "S1501_C01_054E": {"label": "Estimate!!Total!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Hispanic or Latino Origin!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C01_054EA,S1501_C01_054M,S1501_C01_054MA"}, "S2502_C03_018E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!EDUCATIONAL ATTAINMENT OF HOUSEHOLDER!!Less than high school graduate", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C03_018EA,S2502_C03_018M,S2502_C03_018MA"}, "S0801_C01_009E": {"label": "Estimate!!Total!!Workers 16 years and over!!MEANS OF TRANSPORTATION TO WORK!!Public transportation", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C01_009EA,S0801_C01_009M,S0801_C01_009MA"}, "S2701_C03_047E": {"label": "Estimate!!Percent Insured!!Civilian noninstitutionalized population!!WORK EXPERIENCE!!Civilian noninstitutionalized population 19 to 64 years", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C03_047EA,S2701_C03_047M,S2701_C03_047MA"}, "S2601A_C04_016E": {"label": "Estimate!!Noninstitutionalized group quarters population!!Total population!!SEX AND AGE!!Under 18 years!!Female", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_016EA,S2601A_C04_016M,S2601A_C04_016MA"}, "S1301_C05_014E": {"label": "Estimate!!Percent of women who had a birth in the past 12 months who were unmarried!!Women 15 to 50 years!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Fertility", "predicateType": "float", "group": "S1301", "limit": 0, "attributes": "S1301_C05_014EA,S1301_C05_014M,S1301_C05_014MA"}, "S2502_C03_015E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!AGE OF HOUSEHOLDER!!65 to 74 years", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C03_015EA,S2502_C03_015M,S2502_C03_015MA"}, "S2602_C01_036E": {"label": "Estimate!!Total population!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C01_036EA,S2602_C01_036M,S2602_C01_036MA"}, "S1501_C01_057E": {"label": "Estimate!!Total!!POVERTY RATE FOR THE POPULATION 25 YEARS AND OVER FOR WHOM POVERTY STATUS IS DETERMINED BY EDUCATIONAL ATTAINMENT LEVEL!!Some college or associate's degree", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C01_057EA,S1501_C01_057M,S1501_C01_057MA"}, "S1811_C03_047E": {"label": "Estimate!!No Disability!!EARNINGS IN PAST 12 MONTHS (IN 2024 INFLATION ADJUSTED DOLLARS)!!Population Age 16 and over with earnings!!$15,000 to $24,999", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C03_047EA,S1811_C03_047M,S1811_C03_047MA"}, "S0101_C03_024E": {"label": "Estimate!!Male!!Total population!!SELECTED AGE CATEGORIES!!15 to 44 years", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C03_024EA,S0101_C03_024M,S0101_C03_024MA"}, "S2603_C04_068E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Naturalized U.S. citizen!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C04_068EA,S2603_C04_068M,S2603_C04_068MA"}, "S1301_C05_015E": {"label": "Estimate!!Percent of women who had a birth in the past 12 months who were unmarried!!Women 15 to 50 years!!NATIVITY!!Native", "concept": "Fertility", "predicateType": "float", "group": "S1301", "limit": 0, "attributes": "S1301_C05_015EA,S1301_C05_015M,S1301_C05_015MA"}, "S2601A_C04_017E": {"label": "Estimate!!Noninstitutionalized group quarters population!!Total population!!SEX AND AGE!!65 years and over", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_017EA,S2601A_C04_017M,S2601A_C04_017MA"}, "S2701_C03_046E": {"label": "Estimate!!Percent Insured!!Civilian noninstitutionalized population!!EMPLOYMENT STATUS!!Civilian noninstitutionalized population 19 to 64 years!!Not in labor force", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "float", "group": "S2701", "limit": 0, "attributes": "S2701_C03_046EA,S2701_C03_046M,S2701_C03_046MA"}, "S2502_C03_016E": {"label": "Estimate!!Owner-occupied housing units!!Occupied housing units!!AGE OF HOUSEHOLDER!!75 to 84 years", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C03_016EA,S2502_C03_016M,S2502_C03_016MA"}, "S2603_C04_069E": {"label": "Estimate!!Nursing facilities/skilled nursing facilities!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Naturalized U.S. citizen!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C04_069EA,S2603_C04_069M,S2603_C04_069MA"}, "S1811_C03_048E": {"label": "Estimate!!No Disability!!EARNINGS IN PAST 12 MONTHS (IN 2024 INFLATION ADJUSTED DOLLARS)!!Population Age 16 and over with earnings!!$25,000 to $34,999", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C03_048EA,S1811_C03_048M,S1811_C03_048MA"}, "S2602_C01_037E": {"label": "Estimate!!Total population!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C01_037EA,S2602_C01_037M,S2602_C01_037MA"}, "S0101_C03_025E": {"label": "Estimate!!Male!!Total population!!SELECTED AGE CATEGORIES!!16 years and over", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C03_025EA,S0101_C03_025M,S0101_C03_025MA"}, "S1501_C01_056E": {"label": "Estimate!!Total!!POVERTY RATE FOR THE POPULATION 25 YEARS AND OVER FOR WHOM POVERTY STATUS IS DETERMINED BY EDUCATIONAL ATTAINMENT LEVEL!!High school graduate (includes equivalency)", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C01_056EA,S1501_C01_056M,S1501_C01_056MA"}, "S0701PR_C04_010E": {"label": "Estimate!!Moved; from the U.S.!!Population 1 year and over!!AGE!!75 years and over", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C04_010EA,S0701PR_C04_010M,S0701PR_C04_010MA"}, "S0505_C01_113E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!100 to 199 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_113EA,S0505_C01_113M,S0505_C01_113MA"}, "S2503_C06_044E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$75,000 or more!!30 percent or more", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C06_044EA,S2503_C06_044M,S2503_C06_044MA"}, "S0101_C02_033E": {"label": "Estimate!!Percent!!Total population!!SUMMARY INDICATORS!!Sex ratio (males per 100 females)", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C02_033EA,S0101_C02_033M,S0101_C02_033MA"}, "S2101_C03_018E": {"label": "Estimate!!Veterans!!Civilian population 18 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Native Hawaiian and Other Pacific Islander alone", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C03_018EA,S2101_C03_018M,S2101_C03_018MA"}, "S2601A_C04_041E": {"label": "Estimate!!Noninstitutionalized group quarters population!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_041EA,S2601A_C04_041M,S2601A_C04_041MA"}, "S0505_C01_114E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!At or above 200 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_114EA,S0505_C01_114M,S0505_C01_114MA"}, "S2503_C06_043E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$75,000 or more!!20 to 29 percent", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C06_043EA,S2503_C06_043M,S2503_C06_043MA"}, "S0101_C02_034E": {"label": "Estimate!!Percent!!Total population!!SUMMARY INDICATORS!!Age dependency ratio", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C02_034EA,S0101_C02_034M,S0101_C02_034MA"}, "S2101_C03_019E": {"label": "Estimate!!Veterans!!Civilian population 18 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Some other race alone", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C03_019EA,S2101_C03_019M,S2101_C03_019MA"}, "S2601A_C04_042E": {"label": "Estimate!!Noninstitutionalized group quarters population!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate or higher", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_042EA,S2601A_C04_042M,S2601A_C04_042MA"}, "S2503_C06_046E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!No cash rent", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C06_046EA,S2503_C06_046M,S2503_C06_046MA"}, "S2101_C03_016E": {"label": "Estimate!!Veterans!!Civilian population 18 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!American Indian and Alaska Native alone", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C03_016EA,S2101_C03_016M,S2101_C03_016MA"}, "S0505_C01_111E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C01_111EA,S0505_C01_111M,S0505_C01_111MA"}, "S0101_C02_035E": {"label": "Estimate!!Percent!!Total population!!SUMMARY INDICATORS!!Old-age dependency ratio", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C02_035EA,S0101_C02_035M,S0101_C02_035MA"}, "S0701PR_C04_012E": {"label": "Estimate!!Moved; from the U.S.!!Population 1 year and over!!SEX!!Male", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C04_012EA,S0701PR_C04_012M,S0701PR_C04_012MA"}, "S2503_C06_045E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Zero or negative income", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C06_045EA,S2503_C06_045M,S2503_C06_045MA"}, "S2101_C03_017E": {"label": "Estimate!!Veterans!!Civilian population 18 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Asian alone", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C03_017EA,S2101_C03_017M,S2101_C03_017MA"}, "S0505_C01_112E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!Below 100 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_112EA,S0505_C01_112M,S0505_C01_112MA"}, "S2601A_C04_040E": {"label": "Estimate!!Noninstitutionalized group quarters population!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!College or graduate school", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_040EA,S2601A_C04_040M,S2601A_C04_040MA"}, "S0101_C02_036E": {"label": "Estimate!!Percent!!Total population!!SUMMARY INDICATORS!!Child dependency ratio", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C02_036EA,S0101_C02_036M,S0101_C02_036MA"}, "S0701PR_C04_011E": {"label": "Estimate!!Moved; from the U.S.!!Population 1 year and over!!AGE!!Median age (years)", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C04_011EA,S0701PR_C04_011M,S0701PR_C04_011MA"}, "S2503_C06_040E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$50,000 to $74,999!!30 percent or more", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C06_040EA,S2503_C06_040M,S2503_C06_040MA"}, "S0502_C02_068E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Self-employed workers in own not incorporated business", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_068EA,S0502_C02_068M,S0502_C02_068MA"}, "S0701PR_C04_014E": {"label": "Estimate!!Moved; from the U.S.!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C04_014EA,S0701PR_C04_014M,S0701PR_C04_014MA"}, "S2601A_C04_045E": {"label": "Estimate!!Noninstitutionalized group quarters population!!VETERAN STATUS!!Civilian population 18 years and over!!Civilian veteran", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_045EA,S2601A_C04_045M,S2601A_C04_045MA"}, "S0502_C02_069E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Unpaid family workers", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_069EA,S0502_C02_069M,S0502_C02_069MA"}, "S0101_C02_030E": {"label": "Estimate!!Percent!!Total population!!SELECTED AGE CATEGORIES!!65 years and over", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C02_030EA,S0101_C02_030M,S0101_C02_030MA"}, "S0505_C01_110E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!Average number of workers per household", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_110EA,S0505_C01_110M,S0505_C01_110MA"}, "S0701PR_C04_013E": {"label": "Estimate!!Moved; from the U.S.!!Population 1 year and over!!SEX!!Female", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C04_013EA,S0701PR_C04_013M,S0701PR_C04_013MA"}, "S2601A_C04_046E": {"label": "Estimate!!Noninstitutionalized group quarters population!!DISABILITY STATUS!!Total population", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_046EA,S2601A_C04_046M,S2601A_C04_046MA"}, "S2503_C06_042E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$75,000 or more!!Less than 20 percent", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C06_042EA,S2503_C06_042M,S2503_C06_042MA"}, "S0101_C02_031E": {"label": "Estimate!!Percent!!Total population!!SELECTED AGE CATEGORIES!!75 years and over", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C02_031EA,S0101_C02_031M,S0101_C02_031MA"}, "S0701PR_C04_016E": {"label": "Estimate!!Moved; from the U.S.!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C04_016EA,S0701PR_C04_016M,S0701PR_C04_016MA"}, "S2601A_C04_043E": {"label": "Estimate!!Noninstitutionalized group quarters population!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree or higher", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_043EA,S2601A_C04_043M,S2601A_C04_043MA"}, "S0103_C02_050E": {"label": "Estimate!!65 years and over!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different house in the United States!!Different county", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C02_050EA,S0103_C02_050M,S0103_C02_050MA"}, "S2503_C06_041E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$75,000 or more", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C06_041EA,S2503_C06_041M,S2503_C06_041MA"}, "S0101_C02_032E": {"label": "Estimate!!Percent!!Total population!!SUMMARY INDICATORS!!Median age (years)", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C02_032EA,S0101_C02_032M,S0101_C02_032MA"}, "S0701PR_C04_015E": {"label": "Estimate!!Moved; from the U.S.!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C04_015EA,S0701PR_C04_015M,S0701PR_C04_015MA"}, "S2601A_C04_044E": {"label": "Estimate!!Noninstitutionalized group quarters population!!VETERAN STATUS!!Civilian population 18 years and over", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_044EA,S2601A_C04_044M,S2601A_C04_044MA"}, "S2501_C06_026E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Nonfamily households!!Householder living alone!!Householder 35 to 64 years", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C06_026EA,S2501_C06_026M,S2501_C06_026MA"}, "S0802_C01_063E": {"label": "Estimate!!Total!!Workers 16 years and over!!CLASS OF WORKER!!Government workers", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_063EA,S0802_C01_063M,S0802_C01_063MA"}, "S0502_C02_064E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!EMPLOYMENT STATUS!!Population 16 years and over!!Not in labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_064EA,S0502_C02_064M,S0502_C02_064MA"}, "S2703_C01_022E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!PRIVATE HEALTH INSURANCE ALONE OR IN COMBINATION!!45 to 54 years", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2703", "limit": 0, "attributes": "S2703_C01_022EA,S2703_C01_022M,S2703_C01_022MA"}, "S2101_C03_010E": {"label": "Estimate!!Veterans!!Civilian population 18 years and over!!AGE!!35 to 54 years", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C03_010EA,S2101_C03_010M,S2101_C03_010MA"}, "S0502_C02_065E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Civilian employed population 16 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C02_065EA,S0502_C02_065M,S0502_C02_065MA"}, "S2703_C01_023E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!PRIVATE HEALTH INSURANCE ALONE OR IN COMBINATION!!55 to 64 years", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2703", "limit": 0, "attributes": "S2703_C01_023EA,S2703_C01_023M,S2703_C01_023MA"}, "S0802_C01_062E": {"label": "Estimate!!Total!!Workers 16 years and over!!CLASS OF WORKER!!Private wage and salary workers", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_062EA,S0802_C01_062M,S0802_C01_062MA"}, "S2501_C06_025E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Nonfamily households!!Householder living alone!!Householder 15 to 34 years", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C06_025EA,S2501_C06_025M,S2501_C06_025MA"}, "S2101_C03_011E": {"label": "Estimate!!Veterans!!Civilian population 18 years and over!!AGE!!55 to 64 years", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C03_011EA,S2101_C03_011M,S2101_C03_011MA"}, "S2501_C06_028E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Nonfamily households!!Householder not living alone", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C06_028EA,S2501_C06_028M,S2501_C06_028MA"}, "S0502_C02_066E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Private wage and salary workers", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_066EA,S0502_C02_066M,S0502_C02_066MA"}, "S2703_C01_024E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!PRIVATE HEALTH INSURANCE ALONE OR IN COMBINATION!!65 to 74 years", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2703", "limit": 0, "attributes": "S2703_C01_024EA,S2703_C01_024M,S2703_C01_024MA"}, "S0802_C01_061E": {"label": "Estimate!!Total!!Workers 16 years and over!!INDUSTRY!!Armed forces", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_061EA,S0802_C01_061M,S0802_C01_061MA"}, "S1601_C03_020E": {"label": "Estimate!!Speak English only or speak English \"very well\"!!Percent of specified language speakers!!CITIZENS 18 YEARS AND OVER!!All citizens 18 years old and over", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C03_020EA,S1601_C03_020M,S1601_C03_020MA"}, "S0505_C01_119E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_119EA,S0505_C01_119M,S0505_C01_119MA"}, "S2501_C06_027E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Nonfamily households!!Householder living alone!!Householder 65 years and over", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C06_027EA,S2501_C06_027M,S2501_C06_027MA"}, "S0802_C01_060E": {"label": "Estimate!!Total!!Workers 16 years and over!!INDUSTRY!!Public administration", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_060EA,S0802_C01_060M,S0802_C01_060MA"}, "S2703_C01_025E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!PRIVATE HEALTH INSURANCE ALONE OR IN COMBINATION!!75 years and over", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2703", "limit": 0, "attributes": "S2703_C01_025EA,S2703_C01_025M,S2703_C01_025MA"}, "S0502_C02_067E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Government workers", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_067EA,S0502_C02_067M,S0502_C02_067MA"}, "S0502_C02_060E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Employed", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_060EA,S0502_C02_060M,S0502_C02_060MA"}, "S1601_C03_022E": {"label": "Estimate!!Speak English only or speak English \"very well\"!!Percent of specified language speakers!!CITIZENS 18 YEARS AND OVER!!All citizens 18 years old and over!!Speak a language other than English", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C03_022EA,S1601_C03_022M,S1601_C03_022MA"}, "S0505_C01_117E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_117EA,S0505_C01_117M,S0505_C01_117MA"}, "S2101_C03_014E": {"label": "Estimate!!Veterans!!Civilian population 18 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C03_014EA,S2101_C03_014M,S2101_C03_014MA"}, "S0101_C02_037E": {"label": "Estimate!!Percent!!Total population!!PERCENT ALLOCATED!!Sex", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C02_037EA,S0101_C02_037M,S0101_C02_037MA"}, "S2501_C06_029E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Nonfamily households!!Householder not living alone!!Householder 15 to 34 years", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C06_029EA,S2501_C06_029M,S2501_C06_029MA"}, "S0502_C02_061E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_061EA,S0502_C02_061M,S0502_C02_061MA"}, "S1601_C03_021E": {"label": "Estimate!!Speak English only or speak English \"very well\"!!Percent of specified language speakers!!CITIZENS 18 YEARS AND OVER!!All citizens 18 years old and over!!Speak only English", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C03_021EA,S1601_C03_021M,S1601_C03_021MA"}, "S0505_C01_118E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_118EA,S0505_C01_118M,S0505_C01_118MA"}, "S2101_C03_015E": {"label": "Estimate!!Veterans!!Civilian population 18 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Black or African American alone", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C03_015EA,S2101_C03_015M,S2101_C03_015MA"}, "S0101_C02_038E": {"label": "Estimate!!Percent!!Total population!!PERCENT ALLOCATED!!Age", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C02_038EA,S0101_C02_038M,S0101_C02_038MA"}, "S0502_C02_062E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed!!Percent of civilian labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_062EA,S0502_C02_062M,S0502_C02_062MA"}, "S0505_C01_115E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_115EA,S0505_C01_115M,S0505_C01_115MA"}, "S2703_C01_020E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!PRIVATE HEALTH INSURANCE ALONE OR IN COMBINATION!!26 to 34 years", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2703", "limit": 0, "attributes": "S2703_C01_020EA,S2703_C01_020M,S2703_C01_020MA"}, "S1601_C03_024E": {"label": "Estimate!!Speak English only or speak English \"very well\"!!Percent of specified language speakers!!CITIZENS 18 YEARS AND OVER!!All citizens 18 years old and over!!Speak a language other than English!!Other languages", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C03_024EA,S1601_C03_024M,S1601_C03_024MA"}, "S1301_C04_029E": {"label": "Estimate!!Rate per 1,000 women!!Women with births in the past 12 months!!PUBLIC ASSISTANCE INCOME IN THE PAST 12 MONTHS!!Women 15 to 50 years!!Received public assistance income", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C04_029EA,S1301_C04_029M,S1301_C04_029MA"}, "S2101_C03_012E": {"label": "Estimate!!Veterans!!Civilian population 18 years and over!!AGE!!65 to 74 years", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C03_012EA,S2101_C03_012M,S2101_C03_012MA"}, "S0505_C01_116E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_116EA,S0505_C01_116M,S0505_C01_116MA"}, "S0502_C02_063E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Armed Forces", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_063EA,S0502_C02_063M,S0502_C02_063MA"}, "S1601_C03_023E": {"label": "Estimate!!Speak English only or speak English \"very well\"!!Percent of specified language speakers!!CITIZENS 18 YEARS AND OVER!!All citizens 18 years old and over!!Speak a language other than English!!Spanish", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C03_023EA,S1601_C03_023M,S1601_C03_023MA"}, "S2703_C01_021E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!PRIVATE HEALTH INSURANCE ALONE OR IN COMBINATION!!35 to 44 years", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2703", "limit": 0, "attributes": "S2703_C01_021EA,S2703_C01_021M,S2703_C01_021MA"}, "S2101_C03_013E": {"label": "Estimate!!Veterans!!Civilian population 18 years and over!!AGE!!75 years and over", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C03_013EA,S2101_C03_013M,S2101_C03_013MA"}, "S0103_C02_059E": {"label": "Estimate!!65 years and over!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Entered before 2000", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C02_059EA,S0103_C02_059M,S0103_C02_059MA"}, "S2703_C01_018E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!PRIVATE HEALTH INSURANCE ALONE OR IN COMBINATION!!6 to 18 years", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2703", "limit": 0, "attributes": "S2703_C01_018EA,S2703_C01_018M,S2703_C01_018MA"}, "S2411_C03_035E": {"label": "Estimate!!Median earnings (dollars) for female!!Civilian employed population 16 years and over with earnings!!Production, transportation, and material moving occupations:!!Transportation occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C03_035EA,S2411_C03_035M,S2411_C03_035MA"}, "S1701_C01_060E": {"label": "Estimate!!Total!!UNRELATED INDIVIDUALS FOR WHOM POVERTY STATUS IS DETERMINED!!Worked less than full-time, year-round in the past 12 months", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C01_060EA,S1701_C01_060M,S1701_C01_060MA"}, "S2411_C03_036E": {"label": "Estimate!!Median earnings (dollars) for female!!Civilian employed population 16 years and over with earnings!!Production, transportation, and material moving occupations:!!Material moving occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C03_036EA,S2411_C03_036M,S2411_C03_036MA"}, "S2703_C01_019E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!PRIVATE HEALTH INSURANCE ALONE OR IN COMBINATION!!19 to 25 years", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2703", "limit": 0, "attributes": "S2703_C01_019EA,S2703_C01_019M,S2703_C01_019MA"}, "S1701_C01_061E": {"label": "Estimate!!Total!!UNRELATED INDIVIDUALS FOR WHOM POVERTY STATUS IS DETERMINED!!Did not work", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C01_061EA,S1701_C01_061M,S1701_C01_061MA"}, "S0802_C01_069E": {"label": "Estimate!!Total!!Workers 16 years and over!!PLACE OF WORK!!Worked outside state of residence", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_069EA,S0802_C01_069M,S0802_C01_069MA"}, "S2501_C06_020E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Other family!!Female householder, no spouse present!!Householder 15 to 34 years", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C06_020EA,S2501_C06_020M,S2501_C06_020MA"}, "S2411_C03_033E": {"label": "Estimate!!Median earnings (dollars) for female!!Civilian employed population 16 years and over with earnings!!Production, transportation, and material moving occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C03_033EA,S2411_C03_033M,S2411_C03_033MA"}, "S1701_C01_062E": {"label": "Estimate!!Total!!UNRELATED INDIVIDUALS FOR WHOM POVERTY STATUS IS DETERMINED!!Population in housing units for whom poverty status is determined", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C01_062EA,S1701_C01_062M,S1701_C01_062MA"}, "S0802_C01_068E": {"label": "Estimate!!Total!!Workers 16 years and over!!PLACE OF WORK!!Worked in state of residence!!Worked outside county of residence", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_068EA,S0802_C01_068M,S0802_C01_068MA"}, "S2411_C03_034E": {"label": "Estimate!!Median earnings (dollars) for female!!Civilian employed population 16 years and over with earnings!!Production, transportation, and material moving occupations:!!Production occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C03_034EA,S2411_C03_034M,S2411_C03_034MA"}, "S2703_C01_014E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!PRIVATE HEALTH INSURANCE ALONE OR IN COMBINATION!!Below 138 percent of the poverty threshold", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2703", "limit": 0, "attributes": "S2703_C01_014EA,S2703_C01_014M,S2703_C01_014MA"}, "S0802_C01_067E": {"label": "Estimate!!Total!!Workers 16 years and over!!PLACE OF WORK!!Worked in state of residence!!Worked in county of residence", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_067EA,S0802_C01_067M,S0802_C01_067MA"}, "S2501_C06_022E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Other family!!Female householder, no spouse present!!Householder 65 years and over", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C06_022EA,S2501_C06_022M,S2501_C06_022MA"}, "S2703_C01_015E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!PRIVATE HEALTH INSURANCE ALONE OR IN COMBINATION!!At or above 138 percent of the poverty threshold", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2703", "limit": 0, "attributes": "S2703_C01_015EA,S2703_C01_015M,S2703_C01_015MA"}, "S0802_C01_066E": {"label": "Estimate!!Total!!Workers 16 years and over!!PLACE OF WORK!!Worked in state of residence", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_066EA,S0802_C01_066M,S0802_C01_066MA"}, "S2501_C06_021E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Other family!!Female householder, no spouse present!!Householder 35 to 64 years", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C06_021EA,S2501_C06_021M,S2501_C06_021MA"}, "S0802_C01_065E": {"label": "Estimate!!Total!!Workers 16 years and over!!CLASS OF WORKER!!Unpaid family workers", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_065EA,S0802_C01_065M,S0802_C01_065MA"}, "S2703_C01_016E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!PRIVATE HEALTH INSURANCE ALONE OR IN COMBINATION!!Worked full-time, year-round (19-64 years)", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2703", "limit": 0, "attributes": "S2703_C01_016EA,S2703_C01_016M,S2703_C01_016MA"}, "S2501_C06_024E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Nonfamily households!!Householder living alone", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C06_024EA,S2501_C06_024M,S2501_C06_024MA"}, "S0802_C01_064E": {"label": "Estimate!!Total!!Workers 16 years and over!!CLASS OF WORKER!!Self-employed workers in own not incorporated business", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_064EA,S0802_C01_064M,S0802_C01_064MA"}, "S2703_C01_017E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!PRIVATE HEALTH INSURANCE ALONE OR IN COMBINATION!!Under 6", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2703", "limit": 0, "attributes": "S2703_C01_017EA,S2703_C01_017M,S2703_C01_017MA"}, "S2501_C06_023E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Nonfamily households", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C06_023EA,S2501_C06_023M,S2501_C06_023MA"}, "S0103_C02_051E": {"label": "Estimate!!65 years and over!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different house in the United States!!Different county!!Same state", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C02_051EA,S0103_C02_051M,S0103_C02_051MA"}, "S1301_C04_031E": {"label": "Estimate!!Rate per 1,000 women!!Women with births in the past 12 months!!PERCENT ALLOCATED!!Marital status", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C04_031EA,S1301_C04_031M,S1301_C04_031MA"}, "S0701PR_C04_018E": {"label": "Estimate!!Moved; from the U.S.!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C04_018EA,S0701PR_C04_018M,S0701PR_C04_018MA"}, "S0103_C02_052E": {"label": "Estimate!!65 years and over!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different house in the United States!!Different county!!Different state", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C02_052EA,S0103_C02_052M,S0103_C02_052MA"}, "S1301_C04_032E": {"label": "Estimate!!Rate per 1,000 women!!Women with births in the past 12 months!!PERCENT ALLOCATED!!Fertility", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C04_032EA,S1301_C04_032M,S1301_C04_032MA"}, "S2503_C06_039E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$50,000 to $74,999!!20 to 29 percent", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C06_039EA,S2503_C06_039M,S2503_C06_039MA"}, "S0701PR_C04_017E": {"label": "Estimate!!Moved; from the U.S.!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C04_017EA,S0701PR_C04_017M,S0701PR_C04_017MA"}, "S2601A_C04_048E": {"label": "Estimate!!Noninstitutionalized group quarters population!!DISABILITY STATUS!!Population under 18 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_048EA,S2601A_C04_048M,S2601A_C04_048MA"}, "S0103_C02_053E": {"label": "Estimate!!65 years and over!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Abroad", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C02_053EA,S0103_C02_053M,S0103_C02_053MA"}, "S2601A_C04_047E": {"label": "Estimate!!Noninstitutionalized group quarters population!!DISABILITY STATUS!!Total population!!With a disability", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_047EA,S2601A_C04_047M,S2601A_C04_047MA"}, "S2601A_C04_049E": {"label": "Estimate!!Noninstitutionalized group quarters population!!DISABILITY STATUS!!Population under 18 years!!With a disability", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_049EA,S2601A_C04_049M,S2601A_C04_049MA"}, "S1301_C04_030E": {"label": "Estimate!!Rate per 1,000 women!!Women with births in the past 12 months!!PUBLIC ASSISTANCE INCOME IN THE PAST 12 MONTHS!!Women 15 to 50 years!!Did not receive public assistance income", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C04_030EA,S1301_C04_030M,S1301_C04_030MA"}, "S0103_C02_054E": {"label": "Estimate!!65 years and over!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population", "concept": "Population 65 Years and Over in the United States", "predicateType": "int", "group": "S0103", "limit": 0, "attributes": "S0103_C02_054EA,S0103_C02_054M,S0103_C02_054MA"}, "S0701PR_C04_019E": {"label": "Estimate!!Moved; from the U.S.!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C04_019EA,S0701PR_C04_019M,S0701PR_C04_019MA"}, "S0103_C02_055E": {"label": "Estimate!!65 years and over!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Native", "concept": "Population 65 Years and Over in the United States", "predicateType": "int", "group": "S0103", "limit": 0, "attributes": "S0103_C02_055EA,S0103_C02_055M,S0103_C02_055MA"}, "S2503_C06_036E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$35,000 to $49,999!!30 percent or more", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C06_036EA,S2503_C06_036M,S2503_C06_036MA"}, "S2411_C03_031E": {"label": "Estimate!!Median earnings (dollars) for female!!Civilian employed population 16 years and over with earnings!!Natural resources, construction, and maintenance occupations:!!Construction and extraction occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C03_031EA,S2411_C03_031M,S2411_C03_031MA"}, "S0103_C02_056E": {"label": "Estimate!!65 years and over!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born", "concept": "Population 65 Years and Over in the United States", "predicateType": "int", "group": "S0103", "limit": 0, "attributes": "S0103_C02_056EA,S0103_C02_056M,S0103_C02_056MA"}, "S2503_C06_035E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$35,000 to $49,999!!20 to 29 percent", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C06_035EA,S2503_C06_035M,S2503_C06_035MA"}, "S2411_C03_032E": {"label": "Estimate!!Median earnings (dollars) for female!!Civilian employed population 16 years and over with earnings!!Natural resources, construction, and maintenance occupations:!!Installation, maintenance, and repair occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C03_032EA,S2411_C03_032M,S2411_C03_032MA"}, "S0103_C02_057E": {"label": "Estimate!!65 years and over!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Entered 2010 or later", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C02_057EA,S0103_C02_057M,S0103_C02_057MA"}, "S2503_C06_038E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$50,000 to $74,999!!Less than 20 percent", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C06_038EA,S2503_C06_038M,S2503_C06_038MA"}, "S0103_C02_058E": {"label": "Estimate!!65 years and over!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Entered 2000 to 2009", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C02_058EA,S0103_C02_058M,S0103_C02_058MA"}, "S2503_C06_037E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$50,000 to $74,999", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C06_037EA,S2503_C06_037M,S2503_C06_037MA"}, "S2411_C03_030E": {"label": "Estimate!!Median earnings (dollars) for female!!Civilian employed population 16 years and over with earnings!!Natural resources, construction, and maintenance occupations:!!Farming, fishing, and forestry occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C03_030EA,S2411_C03_030M,S2411_C03_030MA"}, "S0505_C01_125E": {"label": "Estimate!!Total!!Occupied housing units!!HOUSING TENURE!!Owner-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_125EA,S0505_C01_125M,S0505_C01_125MA"}, "S2503_C06_032E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$20,000 to $34,999!!30 percent or more", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C06_032EA,S2503_C06_032M,S2503_C06_032MA"}, "S0101_C02_021E": {"label": "Estimate!!Percent!!Total population!!SELECTED AGE CATEGORIES!!15 to 17 years", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C02_021EA,S0101_C02_021M,S0101_C02_021MA"}, "S0701PR_C04_022E": {"label": "Estimate!!Moved; from the U.S.!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C04_022EA,S0701PR_C04_022M,S0701PR_C04_022MA"}, "S0701PR_C04_021E": {"label": "Estimate!!Moved; from the U.S.!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C04_021EA,S0701PR_C04_021M,S0701PR_C04_021MA"}, "S0505_C01_126E": {"label": "Estimate!!Total!!Occupied housing units!!HOUSING TENURE!!Renter-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_126EA,S0505_C01_126M,S0505_C01_126MA"}, "S2503_C06_031E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$20,000 to $34,999!!20 to 29 percent", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C06_031EA,S2503_C06_031M,S2503_C06_031MA"}, "S0101_C02_022E": {"label": "Estimate!!Percent!!Total population!!SELECTED AGE CATEGORIES!!Under 18 years", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C02_022EA,S0101_C02_022M,S0101_C02_022MA"}, "S2601A_C04_030E": {"label": "Estimate!!Noninstitutionalized group quarters population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!Not Hispanic or Latino", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_030EA,S2601A_C04_030M,S2601A_C04_030MA"}, "S2503_C06_034E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$35,000 to $49,999!!Less than 20 percent", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C06_034EA,S2503_C06_034M,S2503_C06_034MA"}, "S2101_C03_028E": {"label": "Estimate!!Veterans!!EDUCATIONAL ATTAINMENT!!Civilian population 25 years and over!!High school graduate (includes equivalency)", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C03_028EA,S2101_C03_028M,S2101_C03_028MA"}, "S0101_C02_023E": {"label": "Estimate!!Percent!!Total population!!SELECTED AGE CATEGORIES!!18 to 24 years", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C02_023EA,S0101_C02_023M,S0101_C02_023MA"}, "S0505_C01_123E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_123EA,S0505_C01_123M,S0505_C01_123MA"}, "S0701PR_C04_024E": {"label": "Estimate!!Moved; from the U.S.!!Population 1 year and over!!NATIVITY AND CITIZENSHIP STATUS!!Native", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C04_024EA,S0701PR_C04_024M,S0701PR_C04_024MA"}, "S0505_C01_124E": {"label": "Estimate!!Total!!Occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C01_124EA,S0505_C01_124M,S0505_C01_124MA"}, "S2503_C06_033E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$35,000 to $49,999", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C06_033EA,S2503_C06_033M,S2503_C06_033MA"}, "S2101_C03_029E": {"label": "Estimate!!Veterans!!EDUCATIONAL ATTAINMENT!!Civilian population 25 years and over!!Some college or associate's degree", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C03_029EA,S2101_C03_029M,S2101_C03_029MA"}, "S0101_C02_024E": {"label": "Estimate!!Percent!!Total population!!SELECTED AGE CATEGORIES!!15 to 44 years", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C02_024EA,S0101_C02_024M,S0101_C02_024MA"}, "S0701PR_C04_023E": {"label": "Estimate!!Moved; from the U.S.!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C04_023EA,S0701PR_C04_023M,S0701PR_C04_023MA"}, "S0502_C02_056E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English!!Speak English less than \"very well\"", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_056EA,S0502_C02_056M,S0502_C02_056MA"}, "S0505_C01_121E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_121EA,S0505_C01_121M,S0505_C01_121MA"}, "S0701PR_C04_026E": {"label": "Estimate!!Moved; from the U.S.!!Population 1 year and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born!!Naturalized U.S. citizen", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C04_026EA,S0701PR_C04_026M,S0701PR_C04_026MA"}, "S2601A_C04_033E": {"label": "Estimate!!Noninstitutionalized group quarters population!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_033EA,S2601A_C04_033M,S2601A_C04_033MA"}, "S0502_C02_057E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!EMPLOYMENT STATUS!!Population 16 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C02_057EA,S0502_C02_057M,S0502_C02_057MA"}, "S0505_C01_122E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_122EA,S0505_C01_122M,S0505_C01_122MA"}, "S0701PR_C04_025E": {"label": "Estimate!!Moved; from the U.S.!!Population 1 year and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C04_025EA,S0701PR_C04_025M,S0701PR_C04_025MA"}, "S2601A_C04_034E": {"label": "Estimate!!Noninstitutionalized group quarters population!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_034EA,S2601A_C04_034M,S2601A_C04_034MA"}, "S2503_C06_030E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$20,000 to $34,999!!Less than 20 percent", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C06_030EA,S2503_C06_030M,S2503_C06_030MA"}, "S0502_C02_058E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_058EA,S0502_C02_058M,S0502_C02_058MA"}, "S0701PR_C04_028E": {"label": "Estimate!!Moved; from the U.S.!!MARITAL STATUS!!Population 15 years and over", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C04_028EA,S0701PR_C04_028M,S0701PR_C04_028MA"}, "S2601A_C04_031E": {"label": "Estimate!!Noninstitutionalized group quarters population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!White alone, Not Hispanic or Latino", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_031EA,S2601A_C04_031M,S2601A_C04_031MA"}, "S0502_C02_059E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_059EA,S0502_C02_059M,S0502_C02_059MA"}, "S0101_C02_020E": {"label": "Estimate!!Percent!!Total population!!SELECTED AGE CATEGORIES!!5 to 14 years", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C02_020EA,S0101_C02_020M,S0101_C02_020MA"}, "S0505_C01_120E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_120EA,S0505_C01_120M,S0505_C01_120MA"}, "S0701PR_C04_027E": {"label": "Estimate!!Moved; from the U.S.!!Population 1 year and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born!!Not a U.S. citizen", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C04_027EA,S0701PR_C04_027M,S0701PR_C04_027MA"}, "S2601A_C04_032E": {"label": "Estimate!!Noninstitutionalized group quarters population!!MARITAL STATUS!!Population 15 years and over", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_032EA,S2601A_C04_032M,S2601A_C04_032MA"}, "S0502_C02_052E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Graduate or professional degree", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_052EA,S0502_C02_052M,S0502_C02_052MA"}, "S0802_C01_051E": {"label": "Estimate!!Total!!Workers 16 years and over!!INDUSTRY!!Manufacturing", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_051EA,S0802_C01_051M,S0802_C01_051MA"}, "S2703_C01_010E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!COVERAGE ALONE OR IN COMBINATION!!Tricare/military health insurance alone or in combination", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2703", "limit": 0, "attributes": "S2703_C01_010EA,S2703_C01_010M,S2703_C01_010MA"}, "S1701_C01_056E": {"label": "Estimate!!Total!!UNRELATED INDIVIDUALS FOR WHOM POVERTY STATUS IS DETERMINED!!65 to 74 years", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C01_056EA,S1701_C01_056M,S1701_C01_056MA"}, "S2501_C06_014E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Other family", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C06_014EA,S2501_C06_014M,S2501_C06_014MA"}, "S2101_C03_022E": {"label": "Estimate!!Veterans!!Civilian population 18 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C03_022EA,S2101_C03_022M,S2101_C03_022MA"}, "S0101_C02_029E": {"label": "Estimate!!Percent!!Total population!!SELECTED AGE CATEGORIES!!62 years and over", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C02_029EA,S0101_C02_029M,S0101_C02_029MA"}, "S0802_C01_050E": {"label": "Estimate!!Total!!Workers 16 years and over!!INDUSTRY!!Construction", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_050EA,S0802_C01_050M,S0802_C01_050MA"}, "S0502_C02_053E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C02_053EA,S0502_C02_053M,S0502_C02_053MA"}, "S2703_C01_011E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!COVERAGE ALONE OR IN COMBINATION!!Tricare/military health insurance alone or in combination!!Under 19", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2703", "limit": 0, "attributes": "S2703_C01_011EA,S2703_C01_011M,S2703_C01_011MA"}, "S1701_C01_057E": {"label": "Estimate!!Total!!UNRELATED INDIVIDUALS FOR WHOM POVERTY STATUS IS DETERMINED!!75 years and over", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C01_057EA,S1701_C01_057M,S1701_C01_057MA"}, "S2501_C06_013E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Married-couple family!!Householder 65 years and over", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C06_013EA,S2501_C06_013M,S2501_C06_013MA"}, "S2101_C03_023E": {"label": "Estimate!!Veterans!!MEDIAN INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Civilian population 18 years and over with income", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C03_023EA,S2101_C03_023M,S2101_C03_023MA"}, "S2501_C06_016E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Other family!!Male householder, no spouse present!!Householder 15 to 34 years", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C06_016EA,S2501_C06_016M,S2501_C06_016MA"}, "S0502_C02_054E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!English only", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_054EA,S0502_C02_054M,S0502_C02_054MA"}, "S2703_C01_012E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!COVERAGE ALONE OR IN COMBINATION!!Tricare/military health insurance alone or in combination!!19 to 64 years", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2703", "limit": 0, "attributes": "S2703_C01_012EA,S2703_C01_012M,S2703_C01_012MA"}, "S2411_C03_029E": {"label": "Estimate!!Median earnings (dollars) for female!!Civilian employed population 16 years and over with earnings!!Natural resources, construction, and maintenance occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C03_029EA,S2411_C03_029M,S2411_C03_029MA"}, "S1701_C01_058E": {"label": "Estimate!!Total!!UNRELATED INDIVIDUALS FOR WHOM POVERTY STATUS IS DETERMINED!!Mean income deficit for unrelated individuals (dollars)", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C01_058EA,S1701_C01_058M,S1701_C01_058MA"}, "S2101_C03_020E": {"label": "Estimate!!Veterans!!Civilian population 18 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C03_020EA,S2101_C03_020M,S2101_C03_020MA"}, "S2501_C06_015E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Other family!!Male householder, no spouse present", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C06_015EA,S2501_C06_015M,S2501_C06_015MA"}, "S0502_C02_055E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_055EA,S0502_C02_055M,S0502_C02_055MA"}, "S2703_C01_013E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!COVERAGE ALONE OR IN COMBINATION!!Tricare/military health insurance alone or in combination!!65 years and over", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2703", "limit": 0, "attributes": "S2703_C01_013EA,S2703_C01_013M,S2703_C01_013MA"}, "S1701_C01_059E": {"label": "Estimate!!Total!!UNRELATED INDIVIDUALS FOR WHOM POVERTY STATUS IS DETERMINED!!Worked full-time, year-round in the past 12 months", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C01_059EA,S1701_C01_059M,S1701_C01_059MA"}, "S2101_C03_021E": {"label": "Estimate!!Veterans!!Civilian population 18 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino (of any race)", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C03_021EA,S2101_C03_021M,S2101_C03_021MA"}, "S2501_C06_018E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Other family!!Male householder, no spouse present!!Householder 65 years and over", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C06_018EA,S2501_C06_018M,S2501_C06_018MA"}, "S0505_C01_129E": {"label": "Estimate!!Total!!Occupied housing units!!ROOMS!!1 room", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_129EA,S0505_C01_129M,S0505_C01_129MA"}, "S2101_C03_026E": {"label": "Estimate!!Veterans!!EDUCATIONAL ATTAINMENT!!Civilian population 25 years and over", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C03_026EA,S2101_C03_026M,S2101_C03_026MA"}, "S1301_C04_019E": {"label": "Estimate!!Rate per 1,000 women!!Women with births in the past 12 months!!Women 15 to 50 years!!EDUCATIONAL ATTAINMENT!!Some college or associate's degree", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C04_019EA,S1301_C04_019M,S1301_C04_019MA"}, "S0101_C02_025E": {"label": "Estimate!!Percent!!Total population!!SELECTED AGE CATEGORIES!!16 years and over", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C02_025EA,S0101_C02_025M,S0101_C02_025MA"}, "S1701_C01_052E": {"label": "Estimate!!Total!!UNRELATED INDIVIDUALS FOR WHOM POVERTY STATUS IS DETERMINED!!25 to 34 years", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C01_052EA,S1701_C01_052M,S1701_C01_052MA"}, "S2501_C06_017E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Other family!!Male householder, no spouse present!!Householder 35 to 64 years", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C06_017EA,S2501_C06_017M,S2501_C06_017MA"}, "S1701_C01_053E": {"label": "Estimate!!Total!!UNRELATED INDIVIDUALS FOR WHOM POVERTY STATUS IS DETERMINED!!35 to 44 years", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C01_053EA,S1701_C01_053M,S1701_C01_053MA"}, "S2101_C03_027E": {"label": "Estimate!!Veterans!!EDUCATIONAL ATTAINMENT!!Civilian population 25 years and over!!Less than high school graduate", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C03_027EA,S2101_C03_027M,S2101_C03_027MA"}, "S0101_C02_026E": {"label": "Estimate!!Percent!!Total population!!SELECTED AGE CATEGORIES!!18 years and over", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C02_026EA,S0101_C02_026M,S0101_C02_026MA"}, "S0701PR_C04_020E": {"label": "Estimate!!Moved; from the U.S.!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C04_020EA,S0701PR_C04_020M,S0701PR_C04_020MA"}, "S0502_C02_050E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college or associate's degree", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_050EA,S0502_C02_050M,S0502_C02_050MA"}, "S0505_C01_127E": {"label": "Estimate!!Total!!Occupied housing units!!HOUSING TENURE!!Average household size of owner-occupied unit", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_127EA,S0505_C01_127M,S0505_C01_127MA"}, "S1301_C04_017E": {"label": "Estimate!!Rate per 1,000 women!!Women with births in the past 12 months!!Women 15 to 50 years!!EDUCATIONAL ATTAINMENT!!Less than high school graduate", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C04_017EA,S1301_C04_017M,S1301_C04_017MA"}, "S1701_C01_054E": {"label": "Estimate!!Total!!UNRELATED INDIVIDUALS FOR WHOM POVERTY STATUS IS DETERMINED!!45 to 54 years", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C01_054EA,S1701_C01_054M,S1701_C01_054MA"}, "S0101_C02_027E": {"label": "Estimate!!Percent!!Total population!!SELECTED AGE CATEGORIES!!21 years and over", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C02_027EA,S0101_C02_027M,S0101_C02_027MA"}, "S2101_C03_024E": {"label": "Estimate!!Veterans!!MEDIAN INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Civilian population 18 years and over with income!!Male", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C03_024EA,S2101_C03_024M,S2101_C03_024MA"}, "S0502_C02_051E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_051EA,S0502_C02_051M,S0502_C02_051MA"}, "S2501_C06_019E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Other family!!Female householder, no spouse present", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C06_019EA,S2501_C06_019M,S2501_C06_019MA"}, "S0505_C01_128E": {"label": "Estimate!!Total!!Occupied housing units!!HOUSING TENURE!!Average household size of renter-occupied unit", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_128EA,S0505_C01_128M,S0505_C01_128MA"}, "S1701_C01_055E": {"label": "Estimate!!Total!!UNRELATED INDIVIDUALS FOR WHOM POVERTY STATUS IS DETERMINED!!55 to 64 years", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C01_055EA,S1701_C01_055M,S1701_C01_055MA"}, "S2101_C03_025E": {"label": "Estimate!!Veterans!!MEDIAN INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Civilian population 18 years and over with income!!Female", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C03_025EA,S2101_C03_025M,S2101_C03_025MA"}, "S1301_C04_018E": {"label": "Estimate!!Rate per 1,000 women!!Women with births in the past 12 months!!Women 15 to 50 years!!EDUCATIONAL ATTAINMENT!!High school graduate (includes equivalency)", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C04_018EA,S1301_C04_018M,S1301_C04_018MA"}, "S0101_C02_028E": {"label": "Estimate!!Percent!!Total population!!SELECTED AGE CATEGORIES!!60 years and over", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C02_028EA,S0101_C02_028M,S0101_C02_028MA"}, "S1201_C06_002E": {"label": "Estimate!!Never married!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C06_002EA,S1201_C06_002M,S1201_C06_002MA"}, "S0103_C02_047E": {"label": "Estimate!!65 years and over!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Same house", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C02_047EA,S0103_C02_047M,S0103_C02_047MA"}, "S1301_C04_027E": {"label": "Estimate!!Rate per 1,000 women!!Women with births in the past 12 months!!LABOR FORCE STATUS!!Women 16 to 50 years!!In labor force", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C04_027EA,S1301_C04_027M,S1301_C04_027MA"}, "S0802_C01_059E": {"label": "Estimate!!Total!!Workers 16 years and over!!INDUSTRY!!Other services (except public administration)", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_059EA,S0802_C01_059M,S0802_C01_059MA"}, "S2703_C01_006E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!COVERAGE ALONE OR IN COMBINATION!!Direct-purchase health insurance alone or in combination", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2703", "limit": 0, "attributes": "S2703_C01_006EA,S2703_C01_006M,S2703_C01_006MA"}, "S2411_C03_023E": {"label": "Estimate!!Median earnings (dollars) for female!!Civilian employed population 16 years and over with earnings!!Service occupations:!!Food preparation and serving related occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C03_023EA,S2411_C03_023M,S2411_C03_023MA"}, "S1201_C06_003E": {"label": "Estimate!!Never married!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over!!15 to 19 years", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C06_003EA,S1201_C06_003M,S1201_C06_003MA"}, "S0103_C02_048E": {"label": "Estimate!!65 years and over!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different house in the United States", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C02_048EA,S0103_C02_048M,S0103_C02_048MA"}, "S1301_C04_028E": {"label": "Estimate!!Rate per 1,000 women!!Women with births in the past 12 months!!PUBLIC ASSISTANCE INCOME IN THE PAST 12 MONTHS!!Women 15 to 50 years", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C04_028EA,S1301_C04_028M,S1301_C04_028MA"}, "S0802_C01_058E": {"label": "Estimate!!Total!!Workers 16 years and over!!INDUSTRY!!Arts, entertainment, and recreation, and accommodation and food services", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_058EA,S0802_C01_058M,S0802_C01_058MA"}, "S2703_C01_007E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!COVERAGE ALONE OR IN COMBINATION!!Direct-purchase health insurance alone or in combination!!Under 19", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2703", "limit": 0, "attributes": "S2703_C01_007EA,S2703_C01_007M,S2703_C01_007MA"}, "S2411_C03_024E": {"label": "Estimate!!Median earnings (dollars) for female!!Civilian employed population 16 years and over with earnings!!Service occupations:!!Building and grounds cleaning and maintenance occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C03_024EA,S2411_C03_024M,S2411_C03_024MA"}, "S1201_C06_004E": {"label": "Estimate!!Never married!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over!!20 to 34 years", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C06_004EA,S1201_C06_004M,S1201_C06_004MA"}, "S0802_C01_057E": {"label": "Estimate!!Total!!Workers 16 years and over!!INDUSTRY!!Educational services, and health care and social assistance", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_057EA,S0802_C01_057M,S0802_C01_057MA"}, "S0103_C02_049E": {"label": "Estimate!!65 years and over!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different house in the United States!!Same county", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C02_049EA,S0103_C02_049M,S0103_C02_049MA"}, "S1301_C04_025E": {"label": "Estimate!!Rate per 1,000 women!!Women with births in the past 12 months!!POVERTY STATUS IN THE PAST 12 MONTHS!!Women 15 to 50 years for whom poverty status is determined!!200 percent or more above poverty level", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C04_025EA,S1301_C04_025M,S1301_C04_025MA"}, "S2703_C01_008E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!COVERAGE ALONE OR IN COMBINATION!!Direct-purchase health insurance alone or in combination!!19 to 64 years", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2703", "limit": 0, "attributes": "S2703_C01_008EA,S2703_C01_008M,S2703_C01_008MA"}, "S2411_C03_021E": {"label": "Estimate!!Median earnings (dollars) for female!!Civilian employed population 16 years and over with earnings!!Service occupations:!!Protective service occupations:!!Firefighting and prevention, and other protective service workers including supervisors", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C03_021EA,S2411_C03_021M,S2411_C03_021MA"}, "S1701_C01_050E": {"label": "Estimate!!Total!!UNRELATED INDIVIDUALS FOR WHOM POVERTY STATUS IS DETERMINED!!16 to 17 years", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C01_050EA,S1701_C01_050M,S1701_C01_050MA"}, "S1201_C06_005E": {"label": "Estimate!!Never married!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over!!35 to 44 years", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C06_005EA,S1201_C06_005M,S1201_C06_005MA"}, "S0802_C01_056E": {"label": "Estimate!!Total!!Workers 16 years and over!!INDUSTRY!!Professional, scientific, management, and administrative and waste management services", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_056EA,S0802_C01_056M,S0802_C01_056MA"}, "S1301_C04_026E": {"label": "Estimate!!Rate per 1,000 women!!Women with births in the past 12 months!!LABOR FORCE STATUS!!Women 16 to 50 years", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C04_026EA,S1301_C04_026M,S1301_C04_026MA"}, "S2703_C01_009E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!COVERAGE ALONE OR IN COMBINATION!!Direct-purchase health insurance alone or in combination!!65 years and over", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2703", "limit": 0, "attributes": "S2703_C01_009EA,S2703_C01_009M,S2703_C01_009MA"}, "S2411_C03_022E": {"label": "Estimate!!Median earnings (dollars) for female!!Civilian employed population 16 years and over with earnings!!Service occupations:!!Protective service occupations:!!Law enforcement workers including supervisors", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C03_022EA,S2411_C03_022M,S2411_C03_022MA"}, "S1701_C01_051E": {"label": "Estimate!!Total!!UNRELATED INDIVIDUALS FOR WHOM POVERTY STATUS IS DETERMINED!!18 to 24 years", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C01_051EA,S1701_C01_051M,S1701_C01_051MA"}, "S1301_C04_023E": {"label": "Estimate!!Rate per 1,000 women!!Women with births in the past 12 months!!POVERTY STATUS IN THE PAST 12 MONTHS!!Women 15 to 50 years for whom poverty status is determined!!Below 100 percent of poverty level", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C04_023EA,S1301_C04_023M,S1301_C04_023MA"}, "S2703_C01_002E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!COVERAGE ALONE OR IN COMBINATION!!Employer-based health insurance alone or in combination", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2703", "limit": 0, "attributes": "S2703_C01_002EA,S2703_C01_002M,S2703_C01_002MA"}, "S0802_C01_055E": {"label": "Estimate!!Total!!Workers 16 years and over!!INDUSTRY!!Information and finance and insurance, and real estate and rental and leasing", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_055EA,S0802_C01_055M,S0802_C01_055MA"}, "S2411_C03_027E": {"label": "Estimate!!Median earnings (dollars) for female!!Civilian employed population 16 years and over with earnings!!Sales and office occupations:!!Sales and related occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C03_027EA,S2411_C03_027M,S2411_C03_027MA"}, "S2501_C06_010E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Married-couple family", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C06_010EA,S2501_C06_010M,S2501_C06_010MA"}, "S1301_C04_024E": {"label": "Estimate!!Rate per 1,000 women!!Women with births in the past 12 months!!POVERTY STATUS IN THE PAST 12 MONTHS!!Women 15 to 50 years for whom poverty status is determined!!100 to 199 percent of poverty level", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C04_024EA,S1301_C04_024M,S1301_C04_024MA"}, "S2703_C01_003E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!COVERAGE ALONE OR IN COMBINATION!!Employer-based health insurance alone or in combination!!Under 19", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2703", "limit": 0, "attributes": "S2703_C01_003EA,S2703_C01_003M,S2703_C01_003MA"}, "S0802_C01_054E": {"label": "Estimate!!Total!!Workers 16 years and over!!INDUSTRY!!Transportation and warehousing, and utilities", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_054EA,S0802_C01_054M,S0802_C01_054MA"}, "S2411_C03_028E": {"label": "Estimate!!Median earnings (dollars) for female!!Civilian employed population 16 years and over with earnings!!Sales and office occupations:!!Office and administrative support occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C03_028EA,S2411_C03_028M,S2411_C03_028MA"}, "S0802_C01_053E": {"label": "Estimate!!Total!!Workers 16 years and over!!INDUSTRY!!Retail trade", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_053EA,S0802_C01_053M,S0802_C01_053MA"}, "S1301_C04_021E": {"label": "Estimate!!Rate per 1,000 women!!Women with births in the past 12 months!!Women 15 to 50 years!!EDUCATIONAL ATTAINMENT!!Graduate or professional degree", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C04_021EA,S1301_C04_021M,S1301_C04_021MA"}, "S2703_C01_004E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!COVERAGE ALONE OR IN COMBINATION!!Employer-based health insurance alone or in combination!!19 to 64 years", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2703", "limit": 0, "attributes": "S2703_C01_004EA,S2703_C01_004M,S2703_C01_004MA"}, "S2411_C03_025E": {"label": "Estimate!!Median earnings (dollars) for female!!Civilian employed population 16 years and over with earnings!!Service occupations:!!Personal care and service occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C03_025EA,S2411_C03_025M,S2411_C03_025MA"}, "S2501_C06_012E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Married-couple family!!Householder 35 to 64 years", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C06_012EA,S2501_C06_012M,S2501_C06_012MA"}, "S1201_C06_001E": {"label": "Estimate!!Never married!!Population 15 years and over", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C06_001EA,S1201_C06_001M,S1201_C06_001MA"}, "S0802_C01_052E": {"label": "Estimate!!Total!!Workers 16 years and over!!INDUSTRY!!Wholesale trade", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_052EA,S0802_C01_052M,S0802_C01_052MA"}, "S1301_C04_022E": {"label": "Estimate!!Rate per 1,000 women!!Women with births in the past 12 months!!POVERTY STATUS IN THE PAST 12 MONTHS!!Women 15 to 50 years for whom poverty status is determined", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C04_022EA,S1301_C04_022M,S1301_C04_022MA"}, "S2703_C01_005E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!COVERAGE ALONE OR IN COMBINATION!!Employer-based health insurance alone or in combination!!65 years and over", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2703", "limit": 0, "attributes": "S2703_C01_005EA,S2703_C01_005M,S2703_C01_005MA"}, "S2411_C03_026E": {"label": "Estimate!!Median earnings (dollars) for female!!Civilian employed population 16 years and over with earnings!!Sales and office occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C03_026EA,S2411_C03_026M,S2411_C03_026MA"}, "S2501_C06_011E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Married-couple family!!Householder 15 to 34 years", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C06_011EA,S2501_C06_011M,S2501_C06_011MA"}, "S2601A_C04_038E": {"label": "Estimate!!Noninstitutionalized group quarters population!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_038EA,S2601A_C04_038M,S2601A_C04_038MA"}, "S2503_C06_028E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than $20,000!!30 percent or more", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C06_028EA,S2503_C06_028M,S2503_C06_028MA"}, "S2601A_C04_039E": {"label": "Estimate!!Noninstitutionalized group quarters population!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Nursery school through 12th grade", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_039EA,S2601A_C04_039M,S2601A_C04_039MA"}, "S0103_C02_040E": {"label": "Estimate!!65 years and over!!RESPONSIBILITY FOR GRANDCHILDREN UNDER 18 YEARS!!Population 30 years and over!!Living with grandchild(ren)!!Responsible for grandchild(ren)", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C02_040EA,S0103_C02_040M,S0103_C02_040MA"}, "S1301_C04_020E": {"label": "Estimate!!Rate per 1,000 women!!Women with births in the past 12 months!!Women 15 to 50 years!!EDUCATIONAL ATTAINMENT!!Bachelor's degree", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C04_020EA,S1301_C04_020M,S1301_C04_020MA"}, "S2503_C06_027E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than $20,000!!20 to 29 percent", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C06_027EA,S2503_C06_027M,S2503_C06_027MA"}, "S0701PR_C04_029E": {"label": "Estimate!!Moved; from the U.S.!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C04_029EA,S0701PR_C04_029M,S0701PR_C04_029MA"}, "S0103_C02_041E": {"label": "Estimate!!65 years and over!!VETERAN STATUS!!Civilian population 18 years and over", "concept": "Population 65 Years and Over in the United States", "predicateType": "int", "group": "S0103", "limit": 0, "attributes": "S0103_C02_041EA,S0103_C02_041M,S0103_C02_041MA"}, "S2601A_C04_035E": {"label": "Estimate!!Noninstitutionalized group quarters population!!MARITAL STATUS!!Population 15 years and over!!Divorced", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_035EA,S2601A_C04_035M,S2601A_C04_035MA"}, "S2601A_C04_037E": {"label": "Estimate!!Noninstitutionalized group quarters population!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_037EA,S2601A_C04_037M,S2601A_C04_037MA"}, "S0103_C02_042E": {"label": "Estimate!!65 years and over!!VETERAN STATUS!!Civilian population 18 years and over!!Civilian veteran", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C02_042EA,S0103_C02_042M,S0103_C02_042MA"}, "S2503_C06_029E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$20,000 to $34,999", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C06_029EA,S2503_C06_029M,S2503_C06_029MA"}, "S2601A_C04_036E": {"label": "Estimate!!Noninstitutionalized group quarters population!!MARITAL STATUS!!Population 15 years and over!!Separated", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_036EA,S2601A_C04_036M,S2601A_C04_036MA"}, "S0103_C02_043E": {"label": "Estimate!!65 years and over!!DISABILITY STATUS!!Civilian noninstitutionalized population", "concept": "Population 65 Years and Over in the United States", "predicateType": "int", "group": "S0103", "limit": 0, "attributes": "S0103_C02_043EA,S0103_C02_043M,S0103_C02_043MA"}, "S2503_C06_024E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS!!Median (dollars)", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C06_024EA,S2503_C06_024M,S2503_C06_024MA"}, "S0103_C02_044E": {"label": "Estimate!!65 years and over!!DISABILITY STATUS!!Civilian noninstitutionalized population!!With any disability", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C02_044EA,S0103_C02_044M,S0103_C02_044MA"}, "S2503_C06_023E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS!!No cash rent", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C06_023EA,S2503_C06_023M,S2503_C06_023MA"}, "S2411_C03_020E": {"label": "Estimate!!Median earnings (dollars) for female!!Civilian employed population 16 years and over with earnings!!Service occupations:!!Protective service occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C03_020EA,S2411_C03_020M,S2411_C03_020MA"}, "S0103_C02_045E": {"label": "Estimate!!65 years and over!!DISABILITY STATUS!!Civilian noninstitutionalized population!!No disability", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C02_045EA,S0103_C02_045M,S0103_C02_045MA"}, "S2503_C06_026E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than $20,000!!Less than 20 percent", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C06_026EA,S2503_C06_026M,S2503_C06_026MA"}, "S0103_C02_046E": {"label": "Estimate!!65 years and over!!RESIDENCE 1 YEAR AGO!!Population 1 year and over", "concept": "Population 65 Years and Over in the United States", "predicateType": "int", "group": "S0103", "limit": 0, "attributes": "S0103_C02_046EA,S0103_C02_046M,S0103_C02_046MA"}, "S2503_C06_025E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than $20,000", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C06_025EA,S2503_C06_025M,S2503_C06_025MA"}, "S1501_C05_001E": {"label": "Estimate!!Female!!AGE BY EDUCATIONAL ATTAINMENT!!Population 18 to 24 years", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C05_001EA,S1501_C05_001M,S1501_C05_001MA"}, "S0505_C01_137E": {"label": "Estimate!!Total!!Occupied housing units!!VEHICLES AVAILABLE!!1 or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_137EA,S0505_C01_137M,S0505_C01_137MA"}, "S2503_C06_020E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS!!$2,000 to $2,499", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C06_020EA,S2503_C06_020M,S2503_C06_020MA"}, "S1601_C03_002E": {"label": "Estimate!!Speak English only or speak English \"very well\"!!Percent of specified language speakers!!Population 5 years and over!!Speak only English", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C03_002EA,S1601_C03_002M,S1601_C03_002MA"}, "S2601A_C04_065E": {"label": "Estimate!!Noninstitutionalized group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Native!!Male", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_065EA,S2601A_C04_065M,S2601A_C04_065MA"}, "S0505_C01_138E": {"label": "Estimate!!Total!!Occupied housing units!!SELECTED CHARACTERISTICS!!No telephone service available", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_138EA,S0505_C01_138M,S0505_C01_138MA"}, "S1601_C03_001E": {"label": "Estimate!!Speak English only or speak English \"very well\"!!Percent of specified language speakers!!Population 5 years and over", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C03_001EA,S1601_C03_001M,S1601_C03_001MA"}, "S2601A_C04_066E": {"label": "Estimate!!Noninstitutionalized group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Native!!Female", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_066EA,S2601A_C04_066M,S2601A_C04_066MA"}, "S0506_C01_010E": {"label": "Estimate!!Total!!Foreign-born population!!SEX AND AGE!!Male", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_010EA,S0506_C01_010M,S0506_C01_010MA"}, "S0505_C01_135E": {"label": "Estimate!!Total!!Occupied housing units!!1.01 or more occupants per room", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_135EA,S0505_C01_135M,S0505_C01_135MA"}, "S1601_C03_004E": {"label": "Estimate!!Speak English only or speak English \"very well\"!!Percent of specified language speakers!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Spanish", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C03_004EA,S1601_C03_004M,S1601_C03_004MA"}, "S2503_C06_022E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS!!$3,000 or more", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C06_022EA,S2503_C06_022M,S2503_C06_022MA"}, "S2601A_C04_063E": {"label": "Estimate!!Noninstitutionalized group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_063EA,S2601A_C04_063M,S2601A_C04_063MA"}, "S0506_C01_011E": {"label": "Estimate!!Total!!Foreign-born population!!SEX AND AGE!!Female", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_011EA,S0506_C01_011M,S0506_C01_011MA"}, "S0505_C01_136E": {"label": "Estimate!!Total!!Occupied housing units!!VEHICLES AVAILABLE!!None", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_136EA,S0505_C01_136M,S0505_C01_136MA"}, "S1601_C03_003E": {"label": "Estimate!!Speak English only or speak English \"very well\"!!Percent of specified language speakers!!Population 5 years and over!!Speak a language other than English", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C03_003EA,S1601_C03_003M,S1601_C03_003MA"}, "S2503_C06_021E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS!!$2,500 to $2,999", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C06_021EA,S2503_C06_021M,S2503_C06_021MA"}, "S2601A_C04_064E": {"label": "Estimate!!Noninstitutionalized group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Native", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_064EA,S2601A_C04_064M,S2601A_C04_064MA"}, "S0506_C01_012E": {"label": "Estimate!!Total!!Foreign-born population!!SEX AND AGE!!Under 5 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_012EA,S0506_C01_012M,S0506_C01_012MA"}, "S0506_C01_013E": {"label": "Estimate!!Total!!Foreign-born population!!SEX AND AGE!!5 to 17 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_013EA,S0506_C01_013M,S0506_C01_013MA"}, "S1601_C03_006E": {"label": "Estimate!!Speak English only or speak English \"very well\"!!Percent of specified language speakers!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Spanish!!18 to 64 years old", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C03_006EA,S1601_C03_006M,S1601_C03_006MA"}, "S0505_C01_133E": {"label": "Estimate!!Total!!Occupied housing units!!ROOMS!!8 or more rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_133EA,S0505_C01_133M,S0505_C01_133MA"}, "S1701_C01_048E": {"label": "Estimate!!Total!!UNRELATED INDIVIDUALS FOR WHOM POVERTY STATUS IS DETERMINED!!Female", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C01_048EA,S1701_C01_048M,S1701_C01_048MA"}, "S2601A_C04_069E": {"label": "Estimate!!Noninstitutionalized group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Female", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_069EA,S2601A_C04_069M,S2601A_C04_069MA"}, "S0506_C01_014E": {"label": "Estimate!!Total!!Foreign-born population!!SEX AND AGE!!18 to 24 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_014EA,S0506_C01_014M,S0506_C01_014MA"}, "S1601_C03_005E": {"label": "Estimate!!Speak English only or speak English \"very well\"!!Percent of specified language speakers!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Spanish!!5 to 17 years old", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C03_005EA,S1601_C03_005M,S1601_C03_005MA"}, "S0505_C01_134E": {"label": "Estimate!!Total!!Occupied housing units!!Median number of rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_134EA,S0505_C01_134M,S0505_C01_134MA"}, "S1701_C01_049E": {"label": "Estimate!!Total!!UNRELATED INDIVIDUALS FOR WHOM POVERTY STATUS IS DETERMINED!!15 years", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C01_049EA,S1701_C01_049M,S1701_C01_049MA"}, "S0506_C01_015E": {"label": "Estimate!!Total!!Foreign-born population!!SEX AND AGE!!25 to 44 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_015EA,S0506_C01_015M,S0506_C01_015MA"}, "S1601_C03_008E": {"label": "Estimate!!Speak English only or speak English \"very well\"!!Percent of specified language speakers!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Other Indo-European languages", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C03_008EA,S1601_C03_008M,S1601_C03_008MA"}, "S0505_C01_131E": {"label": "Estimate!!Total!!Occupied housing units!!ROOMS!!4 or 5 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_131EA,S0505_C01_131M,S0505_C01_131MA"}, "S2601A_C04_067E": {"label": "Estimate!!Noninstitutionalized group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_067EA,S2601A_C04_067M,S2601A_C04_067MA"}, "S0506_C01_016E": {"label": "Estimate!!Total!!Foreign-born population!!SEX AND AGE!!45 to 54 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_016EA,S0506_C01_016M,S0506_C01_016MA"}, "S1601_C03_007E": {"label": "Estimate!!Speak English only or speak English \"very well\"!!Percent of specified language speakers!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Spanish!!65 years old and over", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C03_007EA,S1601_C03_007M,S1601_C03_007MA"}, "S0505_C01_132E": {"label": "Estimate!!Total!!Occupied housing units!!ROOMS!!6 or 7 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_132EA,S0505_C01_132M,S0505_C01_132MA"}, "S2601A_C04_068E": {"label": "Estimate!!Noninstitutionalized group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Male", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_068EA,S2601A_C04_068M,S2601A_C04_068MA"}, "S1702_C04_047E": {"label": "Estimate!!Percent below poverty level!!Married-couple families!!Families!!ALL FAMILIES WITH INCOME BELOW THE FOLLOWING POVERTY RATIOS!!200 percent of poverty level", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C04_047EA,S1702_C04_047M,S1702_C04_047MA"}, "S0502_C02_088E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C02_088EA,S0502_C02_088M,S0502_C02_088MA"}, "S1701_C01_044E": {"label": "Estimate!!Total!!Population for whom poverty status is determined!!ALL INDIVIDUALS WITH INCOME BELOW THE FOLLOWING POVERTY RATIOS!!400 percent of poverty level", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C01_044EA,S1701_C01_044M,S1701_C01_044MA"}, "S2411_C03_019E": {"label": "Estimate!!Median earnings (dollars) for female!!Civilian employed population 16 years and over with earnings!!Service occupations:!!Healthcare support occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C03_019EA,S2411_C03_019M,S2411_C03_019MA"}, "S1002_C02_032E": {"label": "Estimate!!Total!!Percent distribution of grandparents responsible for grandchildren!!PERCENT ALLOCATED!!Grandparents responsible for grandchildren", "concept": "Grandparents", "predicateType": "int", "group": "S1002", "limit": 0, "attributes": "S1002_C02_032EA,S1002_C02_032M,S1002_C02_032MA"}, "S2101_C03_034E": {"label": "Estimate!!Veterans!!EMPLOYMENT STATUS!!Civilian labor force 18 to 64 years!!Unemployment rate", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C03_034EA,S2101_C03_034M,S2101_C03_034MA"}, "S1501_C05_009E": {"label": "Estimate!!Female!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate (includes equivalency)", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C05_009EA,S1501_C05_009M,S1501_C05_009MA"}, "S1702_C04_046E": {"label": "Estimate!!Percent below poverty level!!Married-couple families!!Families!!ALL FAMILIES WITH INCOME BELOW THE FOLLOWING POVERTY RATIOS!!185 percent of poverty level", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C04_046EA,S1702_C04_046M,S1702_C04_046MA"}, "S0502_C02_089E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$1 to $9,999 or loss", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_089EA,S0502_C02_089M,S0502_C02_089MA"}, "S1701_C01_045E": {"label": "Estimate!!Total!!Population for whom poverty status is determined!!ALL INDIVIDUALS WITH INCOME BELOW THE FOLLOWING POVERTY RATIOS!!500 percent of poverty level", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C01_045EA,S1701_C01_045M,S1701_C01_045MA"}, "S1002_C02_031E": {"label": "Estimate!!Total!!Percent distribution of grandparents responsible for grandchildren!!PERCENT ALLOCATED!!Grandparents living with grandchildren", "concept": "Grandparents", "predicateType": "int", "group": "S1002", "limit": 0, "attributes": "S1002_C02_031EA,S1002_C02_031M,S1002_C02_031MA"}, "S1501_C05_008E": {"label": "Estimate!!Female!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 years and over!!9th to 12th grade, no diploma", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C05_008EA,S1501_C05_008M,S1501_C05_008MA"}, "S2101_C03_035E": {"label": "Estimate!!Veterans!!POVERTY STATUS IN THE PAST 12 MONTHS!!Civilian population 18 years and over for whom poverty status is determined", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C03_035EA,S2101_C03_035M,S2101_C03_035MA"}, "S2411_C03_017E": {"label": "Estimate!!Median earnings (dollars) for female!!Civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Healthcare practitioners and technical occupations:!!Health technologists and technicians", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C03_017EA,S2411_C03_017M,S2411_C03_017MA"}, "S1701_C01_046E": {"label": "Estimate!!Total!!UNRELATED INDIVIDUALS FOR WHOM POVERTY STATUS IS DETERMINED", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C01_046EA,S1701_C01_046M,S1701_C01_046MA"}, "S1501_C05_007E": {"label": "Estimate!!Female!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than 9th grade", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C05_007EA,S1501_C05_007M,S1501_C05_007MA"}, "S2101_C03_032E": {"label": "Estimate!!Veterans!!EMPLOYMENT STATUS!!Civilian population 18 to 64 years!!Labor force participation rate", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C03_032EA,S2101_C03_032M,S2101_C03_032MA"}, "S1702_C04_045E": {"label": "Estimate!!Percent below poverty level!!Married-couple families!!Families!!ALL FAMILIES WITH INCOME BELOW THE FOLLOWING POVERTY RATIOS!!150 percent of poverty level", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C04_045EA,S1702_C04_045M,S1702_C04_045MA"}, "S2411_C03_018E": {"label": "Estimate!!Median earnings (dollars) for female!!Civilian employed population 16 years and over with earnings!!Service occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C03_018EA,S2411_C03_018M,S2411_C03_018MA"}, "S1701_C01_047E": {"label": "Estimate!!Total!!UNRELATED INDIVIDUALS FOR WHOM POVERTY STATUS IS DETERMINED!!Male", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C01_047EA,S1701_C01_047M,S1701_C01_047MA"}, "S1501_C05_006E": {"label": "Estimate!!Female!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C05_006EA,S1501_C05_006M,S1501_C05_006MA"}, "S1702_C04_044E": {"label": "Estimate!!Percent below poverty level!!Married-couple families!!Families!!ALL FAMILIES WITH INCOME BELOW THE FOLLOWING POVERTY RATIOS!!125 percent of poverty level", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C04_044EA,S1702_C04_044M,S1702_C04_044MA"}, "S2101_C03_033E": {"label": "Estimate!!Veterans!!EMPLOYMENT STATUS!!Civilian labor force 18 to 64 years", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C03_033EA,S2101_C03_033M,S2101_C03_033MA"}, "S2603_C03_001E": {"label": "Estimate!!Adult correctional facilities!!Total population", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C03_001EA,S2603_C03_001M,S2603_C03_001MA"}, "S0502_C02_084E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Civilian employed population 16 years and over!!INDUSTRY!!Educational services, and health care and social assistance", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_084EA,S0502_C02_084M,S0502_C02_084MA"}, "S2101_C03_038E": {"label": "Estimate!!Veterans!!DISABILITY STATUS!!Civilian population 18 years and over for whom poverty status is determined", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C03_038EA,S2101_C03_038M,S2101_C03_038MA"}, "S2601A_C04_061E": {"label": "Estimate!!Noninstitutionalized group quarters population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the U.S.!!Different county!!Different state", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_061EA,S2601A_C04_061M,S2601A_C04_061MA"}, "S1201_C06_006E": {"label": "Estimate!!Never married!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over!!45 to 54 years", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C06_006EA,S1201_C06_006M,S1201_C06_006MA"}, "S1501_C05_005E": {"label": "Estimate!!Female!!AGE BY EDUCATIONAL ATTAINMENT!!Population 18 to 24 years!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C05_005EA,S1501_C05_005M,S1501_C05_005MA"}, "S1701_C01_040E": {"label": "Estimate!!Total!!Population for whom poverty status is determined!!ALL INDIVIDUALS WITH INCOME BELOW THE FOLLOWING POVERTY RATIOS!!150 percent of poverty level", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C01_040EA,S1701_C01_040M,S1701_C01_040MA"}, "S1702_C04_043E": {"label": "Estimate!!Percent below poverty level!!Married-couple families!!Families!!ALL FAMILIES WITH INCOME BELOW THE FOLLOWING POVERTY RATIOS!!50 percent of poverty level", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C04_043EA,S1702_C04_043M,S1702_C04_043MA"}, "S2603_C03_002E": {"label": "Estimate!!Adult correctional facilities!!Total population!!SEX AND AGE!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C03_002EA,S2603_C03_002M,S2603_C03_002MA"}, "S0502_C02_085E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Civilian employed population 16 years and over!!INDUSTRY!!Arts, entertainment, and recreation, and accommodation and food services", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_085EA,S0502_C02_085M,S0502_C02_085MA"}, "S2101_C03_039E": {"label": "Estimate!!Veterans!!DISABILITY STATUS!!Civilian population 18 years and over for whom poverty status is determined!!With any disability", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C03_039EA,S2101_C03_039M,S2101_C03_039MA"}, "S2601A_C04_062E": {"label": "Estimate!!Noninstitutionalized group quarters population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Abroad", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_062EA,S2601A_C04_062M,S2601A_C04_062MA"}, "S1501_C05_004E": {"label": "Estimate!!Female!!AGE BY EDUCATIONAL ATTAINMENT!!Population 18 to 24 years!!Some college or associate's degree", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C05_004EA,S1501_C05_004M,S1501_C05_004MA"}, "S1201_C06_007E": {"label": "Estimate!!Never married!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over!!55 to 64 years", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C06_007EA,S1201_C06_007M,S1201_C06_007MA"}, "S1701_C01_041E": {"label": "Estimate!!Total!!Population for whom poverty status is determined!!ALL INDIVIDUALS WITH INCOME BELOW THE FOLLOWING POVERTY RATIOS!!185 percent of poverty level", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C01_041EA,S1701_C01_041M,S1701_C01_041MA"}, "S1702_C04_042E": {"label": "Estimate!!Percent below poverty level!!Married-couple families!!Families!!TENURE!!Renter Occupied", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C04_042EA,S1702_C04_042M,S1702_C04_042MA"}, "S1501_C05_003E": {"label": "Estimate!!Female!!AGE BY EDUCATIONAL ATTAINMENT!!Population 18 to 24 years!!High school graduate (includes equivalency)", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C05_003EA,S1501_C05_003M,S1501_C05_003MA"}, "S0502_C02_086E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Civilian employed population 16 years and over!!INDUSTRY!!Other services (except public administration)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_086EA,S0502_C02_086M,S0502_C02_086MA"}, "S0505_C01_139E": {"label": "Estimate!!Total!!Occupied housing units!!SELECTED CHARACTERISTICS!!Limited English Speaking Households", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_139EA,S0505_C01_139M,S0505_C01_139MA"}, "S2101_C03_036E": {"label": "Estimate!!Veterans!!POVERTY STATUS IN THE PAST 12 MONTHS!!Civilian population 18 years and over for whom poverty status is determined!!Income in the past 12 months below poverty level", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C03_036EA,S2101_C03_036M,S2101_C03_036MA"}, "S1701_C01_042E": {"label": "Estimate!!Total!!Population for whom poverty status is determined!!ALL INDIVIDUALS WITH INCOME BELOW THE FOLLOWING POVERTY RATIOS!!200 percent of poverty level", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C01_042EA,S1701_C01_042M,S1701_C01_042MA"}, "S1201_C06_008E": {"label": "Estimate!!Never married!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over!!65 years and over", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C06_008EA,S1201_C06_008M,S1201_C06_008MA"}, "S1702_C04_041E": {"label": "Estimate!!Percent below poverty level!!Married-couple families!!Families!!TENURE!!Owner occupied", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C04_041EA,S1702_C04_041M,S1702_C04_041MA"}, "S1002_C02_030E": {"label": "Estimate!!Total!!Percent distribution of grandparents responsible for grandchildren!!HOUSEHOLDS!!Households!!With grandparents living with grandchildren", "concept": "Grandparents", "predicateType": "int", "group": "S1002", "limit": 0, "attributes": "S1002_C02_030EA,S1002_C02_030M,S1002_C02_030MA"}, "S1501_C05_002E": {"label": "Estimate!!Female!!AGE BY EDUCATIONAL ATTAINMENT!!Population 18 to 24 years!!Less than high school graduate", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C05_002EA,S1501_C05_002M,S1501_C05_002MA"}, "S0502_C02_087E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Civilian employed population 16 years and over!!INDUSTRY!!Public administration", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_087EA,S0502_C02_087M,S0502_C02_087MA"}, "S2101_C03_037E": {"label": "Estimate!!Veterans!!POVERTY STATUS IN THE PAST 12 MONTHS!!Civilian population 18 years and over for whom poverty status is determined!!Income in the past 12 months at or above poverty level", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C03_037EA,S2101_C03_037M,S2101_C03_037MA"}, "S1701_C01_043E": {"label": "Estimate!!Total!!Population for whom poverty status is determined!!ALL INDIVIDUALS WITH INCOME BELOW THE FOLLOWING POVERTY RATIOS!!300 percent of poverty level", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C01_043EA,S1701_C01_043M,S1701_C01_043MA"}, "S2601A_C04_060E": {"label": "Estimate!!Noninstitutionalized group quarters population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the U.S.!!Different county!!Same state", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_060EA,S2601A_C04_060M,S2601A_C04_060MA"}, "S1702_C04_040E": {"label": "Estimate!!Percent below poverty level!!Married-couple families!!Families!!INCOME DEFICIT!!Mean income deficit for families (dollars)", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C04_040EA,S1702_C04_040M,S1702_C04_040MA"}, "S1201_C06_009E": {"label": "Estimate!!Never married!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C06_009EA,S1201_C06_009M,S1201_C06_009MA"}, "S0502_C02_080E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Civilian employed population 16 years and over!!INDUSTRY!!Transportation and warehousing, and utilities", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_080EA,S0502_C02_080M,S0502_C02_080MA"}, "S1201_C06_014E": {"label": "Estimate!!Never married!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over!!55 to 64 years", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C06_014EA,S1201_C06_014M,S1201_C06_014MA"}, "S0103_C02_035E": {"label": "Estimate!!65 years and over!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate, GED, or alternative", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C02_035EA,S0103_C02_035M,S0103_C02_035MA"}, "S0802_C01_047E": {"label": "Estimate!!Total!!Workers 16 years and over!!OCCUPATION!!Production, transportation, and material moving occupations", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_047EA,S0802_C01_047M,S0802_C01_047MA"}, "S2411_C03_011E": {"label": "Estimate!!Median earnings (dollars) for female!!Civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:!!Community and social service occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C03_011EA,S2411_C03_011M,S2411_C03_011MA"}, "S1201_C06_015E": {"label": "Estimate!!Never married!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over!!65 years and over", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C06_015EA,S1201_C06_015M,S1201_C06_015MA"}, "S0502_C02_081E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Civilian employed population 16 years and over!!INDUSTRY!!Information", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_081EA,S0502_C02_081M,S0502_C02_081MA"}, "S0103_C02_036E": {"label": "Estimate!!65 years and over!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college or associate's degree", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C02_036EA,S0103_C02_036M,S0103_C02_036MA"}, "S0802_C01_046E": {"label": "Estimate!!Total!!Workers 16 years and over!!OCCUPATION!!Natural resources, construction, and maintenance occupations", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_046EA,S0802_C01_046M,S0802_C01_046MA"}, "S2411_C03_012E": {"label": "Estimate!!Median earnings (dollars) for female!!Civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:!!Legal occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C03_012EA,S2411_C03_012M,S2411_C03_012MA"}, "S1201_C06_016E": {"label": "Estimate!!Never married!!Population 15 years and over", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C06_016EA,S1201_C06_016M,S1201_C06_016MA"}, "S0502_C02_082E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Civilian employed population 16 years and over!!INDUSTRY!!Finance and insurance, and real estate and rental and leasing", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_082EA,S0502_C02_082M,S0502_C02_082MA"}, "S0802_C01_045E": {"label": "Estimate!!Total!!Workers 16 years and over!!OCCUPATION!!Sales and office occupations", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_045EA,S0802_C01_045M,S0802_C01_045MA"}, "S0103_C02_037E": {"label": "Estimate!!65 years and over!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree or higher", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C02_037EA,S0103_C02_037M,S0103_C02_037MA"}, "S0502_C02_083E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Civilian employed population 16 years and over!!INDUSTRY!!Professional, scientific, and management, and administrative and waste management services", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_083EA,S0502_C02_083M,S0502_C02_083MA"}, "S0103_C02_038E": {"label": "Estimate!!65 years and over!!RESPONSIBILITY FOR GRANDCHILDREN UNDER 18 YEARS!!Population 30 years and over", "concept": "Population 65 Years and Over in the United States", "predicateType": "int", "group": "S0103", "limit": 0, "attributes": "S0103_C02_038EA,S0103_C02_038M,S0103_C02_038MA"}, "S0802_C01_044E": {"label": "Estimate!!Total!!Workers 16 years and over!!OCCUPATION!!Service occupations", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_044EA,S0802_C01_044M,S0802_C01_044MA"}, "S2411_C03_010E": {"label": "Estimate!!Median earnings (dollars) for female!!Civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C03_010EA,S2411_C03_010M,S2411_C03_010MA"}, "S1201_C06_017E": {"label": "Estimate!!Never married!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C06_017EA,S1201_C06_017M,S1201_C06_017MA"}, "S1201_C06_010E": {"label": "Estimate!!Never married!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over!!15 to 19 years", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C06_010EA,S1201_C06_010M,S1201_C06_010MA"}, "S0802_C01_043E": {"label": "Estimate!!Total!!Workers 16 years and over!!OCCUPATION!!Management, business, science, and arts occupations", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_043EA,S0802_C01_043M,S0802_C01_043MA"}, "S0103_C02_039E": {"label": "Estimate!!65 years and over!!RESPONSIBILITY FOR GRANDCHILDREN UNDER 18 YEARS!!Population 30 years and over!!Living with grandchild(ren)", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C02_039EA,S0103_C02_039M,S0103_C02_039MA"}, "S0501_C01_107E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_107EA,S0501_C01_107M,S0501_C01_107MA"}, "S2411_C03_015E": {"label": "Estimate!!Median earnings (dollars) for female!!Civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Healthcare practitioners and technical occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C03_015EA,S2411_C03_015M,S2411_C03_015MA"}, "S2101_C03_030E": {"label": "Estimate!!Veterans!!EDUCATIONAL ATTAINMENT!!Civilian population 25 years and over!!Bachelor's degree or higher", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C03_030EA,S2101_C03_030M,S2101_C03_030MA"}, "S1201_C06_011E": {"label": "Estimate!!Never married!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over!!20 to 34 years", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C06_011EA,S1201_C06_011M,S1201_C06_011MA"}, "S0802_C01_042E": {"label": "Estimate!!Total!!Workers 16 years and over", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "int", "group": "S0802", "limit": 0, "attributes": "S0802_C01_042EA,S0802_C01_042M,S0802_C01_042MA"}, "S2411_C03_016E": {"label": "Estimate!!Median earnings (dollars) for female!!Civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Healthcare practitioners and technical occupations:!!Health diagnosing and treating practitioners and other technical occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C03_016EA,S2411_C03_016M,S2411_C03_016MA"}, "S0501_C01_108E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_108EA,S0501_C01_108M,S0501_C01_108MA"}, "S2503_C06_019E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS!!$1,500 to $1,999", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C06_019EA,S2503_C06_019M,S2503_C06_019MA"}, "S2101_C03_031E": {"label": "Estimate!!Veterans!!EMPLOYMENT STATUS!!Civilian population 18 to 64 years", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C03_031EA,S2101_C03_031M,S2101_C03_031MA"}, "S1201_C06_012E": {"label": "Estimate!!Never married!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over!!35 to 44 years", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C06_012EA,S1201_C06_012M,S1201_C06_012MA"}, "S1702_C04_049E": {"label": "Estimate!!Percent below poverty level!!Married-couple families!!Families!!ALL FAMILIES WITH INCOME BELOW THE FOLLOWING POVERTY RATIOS!!400 percent of poverty level", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C04_049EA,S1702_C04_049M,S1702_C04_049MA"}, "S2002_C03_074E": {"label": "Estimate!!Female!!Median earnings (dollars)!!PERCENT ALLOCATED!!Class of worker", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C03_074EA,S2002_C03_074M,S2002_C03_074MA"}, "S0802_C01_041E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Workers 16 years and over for whom poverty status is determined!!At or above 150 percent of the poverty level", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_041EA,S0802_C01_041M,S0802_C01_041MA"}, "S0501_C01_109E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_109EA,S0501_C01_109M,S0501_C01_109MA"}, "S2411_C03_013E": {"label": "Estimate!!Median earnings (dollars) for female!!Civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:!!Educational instruction, and library occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C03_013EA,S2411_C03_013M,S2411_C03_013MA"}, "S1702_C04_048E": {"label": "Estimate!!Percent below poverty level!!Married-couple families!!Families!!ALL FAMILIES WITH INCOME BELOW THE FOLLOWING POVERTY RATIOS!!300 percent of poverty level", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C04_048EA,S1702_C04_048M,S1702_C04_048MA"}, "S1201_C06_013E": {"label": "Estimate!!Never married!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over!!45 to 54 years", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C06_013EA,S1201_C06_013M,S1201_C06_013MA"}, "S0802_C01_040E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Workers 16 years and over for whom poverty status is determined!!100 to 149 percent of the poverty level", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_040EA,S0802_C01_040M,S0802_C01_040MA"}, "S2411_C03_014E": {"label": "Estimate!!Median earnings (dollars) for female!!Civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:!!Arts, design, entertainment, sports, and media occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C03_014EA,S2411_C03_014M,S2411_C03_014MA"}, "S2002_C03_072E": {"label": "Estimate!!Female!!Median earnings (dollars)!!PERCENT ALLOCATED!!Occupation", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C03_072EA,S2002_C03_072M,S2002_C03_072MA"}, "S0506_C01_005E": {"label": "Estimate!!Total!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen!!Entered before 2000", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_005EA,S0506_C01_005M,S0506_C01_005MA"}, "S0501_C01_103E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C01_103EA,S0501_C01_103M,S0501_C01_103MA"}, "S2503_C06_016E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS!!$500 to $799", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C06_016EA,S2503_C06_016M,S2503_C06_016MA"}, "S0901_C01_001E": {"label": "Estimate!!Total!!Children under 18 years in households", "concept": "Children Characteristics", "predicateType": "int", "group": "S0901", "limit": 0, "attributes": "S0901_C01_001EA,S0901_C01_001M,S0901_C01_001MA"}, "S0702_C03_006E": {"label": "Estimate!!Midwest!!Region of Current Residence!!Population 1 year and over!!Movers between regions by region of residence 1 year ago!!Midwest", "concept": "Movers Between Regions", "predicateType": "int", "group": "S0702", "limit": 0, "attributes": "S0702_C03_006EA,S0702_C03_006M,S0702_C03_006MA"}, "S2002_C03_071E": {"label": "Estimate!!Female!!Median earnings (dollars)!!PERCENT ALLOCATED!!Educational attainment", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C03_071EA,S2002_C03_071M,S2002_C03_071MA"}, "S2002_C03_073E": {"label": "Estimate!!Female!!Median earnings (dollars)!!PERCENT ALLOCATED!!Industry", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C03_073EA,S2002_C03_073M,S2002_C03_073MA"}, "S0506_C01_006E": {"label": "Estimate!!Total!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_006EA,S0506_C01_006M,S0506_C01_006MA"}, "S0501_C01_104E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!Below 100 percent of the poverty level", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_104EA,S0501_C01_104M,S0501_C01_104MA"}, "S0505_C01_130E": {"label": "Estimate!!Total!!Occupied housing units!!ROOMS!!2 or 3 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_130EA,S0505_C01_130M,S0505_C01_130MA"}, "S2503_C06_015E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS!!$300 to $499", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C06_015EA,S2503_C06_015M,S2503_C06_015MA"}, "S0702_C03_005E": {"label": "Estimate!!Midwest!!Region of Current Residence!!Population 1 year and over!!Movers between regions by region of residence 1 year ago!!Northeast", "concept": "Movers Between Regions", "predicateType": "int", "group": "S0702", "limit": 0, "attributes": "S0702_C03_005EA,S0702_C03_005M,S0702_C03_005MA"}, "S0506_C01_007E": {"label": "Estimate!!Total!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen!!Entered 2010 or later", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_007EA,S0506_C01_007M,S0506_C01_007MA"}, "S0501_C01_105E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!100 to 199 percent of the poverty level", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_105EA,S0501_C01_105M,S0501_C01_105MA"}, "S2503_C06_018E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS!!$1,000 to $1,499", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C06_018EA,S2503_C06_018M,S2503_C06_018MA"}, "S0702_C03_008E": {"label": "Estimate!!Midwest!!Region of Current Residence!!Population 1 year and over!!Movers between regions by region of residence 1 year ago!!West", "concept": "Movers Between Regions", "predicateType": "int", "group": "S0702", "limit": 0, "attributes": "S0702_C03_008EA,S0702_C03_008M,S0702_C03_008MA"}, "S0506_C01_008E": {"label": "Estimate!!Total!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen!!Entered 2000 to 2009", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_008EA,S0506_C01_008M,S0506_C01_008MA"}, "S0103_C02_030E": {"label": "Estimate!!65 years and over!!MARITAL STATUS!!Population 15 years and over!!Divorced", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C02_030EA,S0103_C02_030M,S0103_C02_030MA"}, "S0501_C01_106E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!At or above 200 percent of the poverty level", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_106EA,S0501_C01_106M,S0501_C01_106MA"}, "S2503_C06_017E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS!!$800 to $999", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C06_017EA,S2503_C06_017M,S2503_C06_017MA"}, "S2002_C03_070E": {"label": "Estimate!!Female!!Median earnings (dollars)!!PERCENT ALLOCATED!!Hispanic or Latino origin", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C03_070EA,S2002_C03_070M,S2002_C03_070MA"}, "S0702_C03_007E": {"label": "Estimate!!Midwest!!Region of Current Residence!!Population 1 year and over!!Movers between regions by region of residence 1 year ago!!South", "concept": "Movers Between Regions", "predicateType": "int", "group": "S0702", "limit": 0, "attributes": "S0702_C03_007EA,S0702_C03_007M,S0702_C03_007MA"}, "S0506_C01_009E": {"label": "Estimate!!Total!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen!!Entered before 2000", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_009EA,S0506_C01_009M,S0506_C01_009MA"}, "S0103_C02_031E": {"label": "Estimate!!65 years and over!!MARITAL STATUS!!Population 15 years and over!!Separated", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C02_031EA,S0103_C02_031M,S0103_C02_031MA"}, "S0901_C01_005E": {"label": "Estimate!!Total!!Children under 18 years in households!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C01_005EA,S0901_C01_005M,S0901_C01_005MA"}, "S2503_C06_012E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$150,000 or more", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C06_012EA,S2503_C06_012M,S2503_C06_012MA"}, "S0702_C03_002E": {"label": "Estimate!!Midwest!!Region of Current Residence!!Population 1 year and over!!Same residence (non-movers)", "concept": "Movers Between Regions", "predicateType": "int", "group": "S0702", "limit": 0, "attributes": "S0702_C03_002EA,S0702_C03_002M,S0702_C03_002MA"}, "S0702_C03_001E": {"label": "Estimate!!Midwest!!Region of Current Residence!!Population 1 year and over", "concept": "Movers Between Regions", "predicateType": "int", "group": "S0702", "limit": 0, "attributes": "S0702_C03_001EA,S0702_C03_001M,S0702_C03_001MA"}, "S0103_C02_032E": {"label": "Estimate!!65 years and over!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C02_032EA,S0103_C02_032M,S0103_C02_032MA"}, "S0501_C01_100E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Food Stamp/SNAP benefits", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_100EA,S0501_C01_100M,S0501_C01_100MA"}, "S0901_C01_004E": {"label": "Estimate!!Total!!Children under 18 years in households!!AGE!!12 to 17 years", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C01_004EA,S0901_C01_004M,S0901_C01_004MA"}, "S2503_C06_011E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$100,000 to $149,999", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C06_011EA,S2503_C06_011M,S2503_C06_011MA"}, "S0103_C02_033E": {"label": "Estimate!!65 years and over!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Population 65 Years and Over in the United States", "predicateType": "int", "group": "S0103", "limit": 0, "attributes": "S0103_C02_033EA,S0103_C02_033M,S0103_C02_033MA"}, "S0901_C01_003E": {"label": "Estimate!!Total!!Children under 18 years in households!!AGE!!6 to 11 years", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C01_003EA,S0901_C01_003M,S0901_C01_003MA"}, "S0501_C01_101E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!Median Household income (dollars)", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C01_101EA,S0501_C01_101M,S0501_C01_101MA"}, "S0802_C01_049E": {"label": "Estimate!!Total!!Workers 16 years and over!!INDUSTRY!!Agriculture, forestry, fishing and hunting, and mining", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_049EA,S0802_C01_049M,S0802_C01_049MA"}, "S2503_C06_014E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS!!Less than $300", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C06_014EA,S2503_C06_014M,S2503_C06_014MA"}, "S0702_C03_004E": {"label": "Estimate!!Midwest!!Region of Current Residence!!Population 1 year and over!!Movers between regions by region of residence 1 year ago", "concept": "Movers Between Regions", "predicateType": "int", "group": "S0702", "limit": 0, "attributes": "S0702_C03_004EA,S0702_C03_004M,S0702_C03_004MA"}, "S0103_C02_034E": {"label": "Estimate!!65 years and over!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than high school graduate", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C02_034EA,S0103_C02_034M,S0103_C02_034MA"}, "S0501_C01_102E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!Average number of workers per household", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_102EA,S0501_C01_102M,S0501_C01_102MA"}, "S2503_C06_013E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Median household income (dollars)", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C06_013EA,S2503_C06_013M,S2503_C06_013MA"}, "S0802_C01_048E": {"label": "Estimate!!Total!!Workers 16 years and over!!OCCUPATION!!Military specific occupations", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_048EA,S0802_C01_048M,S0802_C01_048MA"}, "S0901_C01_002E": {"label": "Estimate!!Total!!Children under 18 years in households!!AGE!!Under 6 years", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C01_002EA,S0901_C01_002M,S0901_C01_002MA"}, "S0702_C03_003E": {"label": "Estimate!!Midwest!!Region of Current Residence!!Population 1 year and over!!Movers within same region", "concept": "Movers Between Regions", "predicateType": "int", "group": "S0702", "limit": 0, "attributes": "S0702_C03_003EA,S0702_C03_003M,S0702_C03_003MA"}, "S1601_C03_014E": {"label": "Estimate!!Speak English only or speak English \"very well\"!!Percent of specified language speakers!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Asian and Pacific Island languages!!18 to 64 years old", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C03_014EA,S1601_C03_014M,S1601_C03_014MA"}, "S0901_C01_009E": {"label": "Estimate!!Total!!Children under 18 years in households!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C01_009EA,S0901_C01_009M,S0901_C01_009MA"}, "S1002_C02_028E": {"label": "Estimate!!Total!!Percent distribution of grandparents responsible for grandchildren!!Grandparents living with own grandchildren under 18 years in households!!PRESENCE OF PARENT(S) OF GRANDCHILDREN!!Householder or spouse responsible for grandchildren with no parent of grandchildren present", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C02_028EA,S1002_C02_028M,S1002_C02_028MA"}, "S2601A_C04_053E": {"label": "Estimate!!Noninstitutionalized group quarters population!!DISABILITY STATUS!!Population 65 years and over", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_053EA,S2601A_C04_053M,S2601A_C04_053MA"}, "S1601_C03_013E": {"label": "Estimate!!Speak English only or speak English \"very well\"!!Percent of specified language speakers!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Asian and Pacific Island languages!!5 to 17 years old", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C03_013EA,S1601_C03_013M,S1601_C03_013MA"}, "S0901_C01_008E": {"label": "Estimate!!Total!!Children under 18 years in households!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C01_008EA,S0901_C01_008M,S0901_C01_008MA"}, "S1002_C02_027E": {"label": "Estimate!!Total!!Percent distribution of grandparents responsible for grandchildren!!Grandparents living with own grandchildren under 18 years in households", "concept": "Grandparents", "predicateType": "int", "group": "S1002", "limit": 0, "attributes": "S1002_C02_027EA,S1002_C02_027M,S1002_C02_027MA"}, "S1702_C04_050E": {"label": "Estimate!!Percent below poverty level!!Married-couple families!!Families!!ALL FAMILIES WITH INCOME BELOW THE FOLLOWING POVERTY RATIOS!!500 percent of poverty level", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C04_050EA,S1702_C04_050M,S1702_C04_050MA"}, "S2601A_C04_054E": {"label": "Estimate!!Noninstitutionalized group quarters population!!DISABILITY STATUS!!Population 65 years and over!!With a disability", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_054EA,S2601A_C04_054M,S2601A_C04_054MA"}, "S2503_C06_010E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$75,000 to $99,999", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C06_010EA,S2503_C06_010M,S2503_C06_010MA"}, "S0901_C01_007E": {"label": "Estimate!!Total!!Children under 18 years in households!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C01_007EA,S0901_C01_007M,S0901_C01_007MA"}, "S1601_C03_016E": {"label": "Estimate!!Speak English only or speak English \"very well\"!!Percent of specified language speakers!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Other languages", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C03_016EA,S1601_C03_016M,S1601_C03_016MA"}, "S2601A_C04_051E": {"label": "Estimate!!Noninstitutionalized group quarters population!!DISABILITY STATUS!!Population 18 to 64 years!!With a disability", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_051EA,S2601A_C04_051M,S2601A_C04_051MA"}, "S0901_C01_006E": {"label": "Estimate!!Total!!Children under 18 years in households!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C01_006EA,S0901_C01_006M,S0901_C01_006MA"}, "S0501_C01_110E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_110EA,S0501_C01_110M,S0501_C01_110MA"}, "S1601_C03_015E": {"label": "Estimate!!Speak English only or speak English \"very well\"!!Percent of specified language speakers!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Asian and Pacific Island languages!!65 years old and over", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C03_015EA,S1601_C03_015M,S1601_C03_015MA"}, "S1002_C02_029E": {"label": "Estimate!!Total!!Percent distribution of grandparents responsible for grandchildren!!HOUSEHOLDS!!Households", "concept": "Grandparents", "predicateType": "int", "group": "S1002", "limit": 0, "attributes": "S1002_C02_029EA,S1002_C02_029M,S1002_C02_029MA"}, "S2601A_C04_052E": {"label": "Estimate!!Noninstitutionalized group quarters population!!DISABILITY STATUS!!Population 18 to 64 years!!No disability", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_052EA,S2601A_C04_052M,S2601A_C04_052MA"}, "S1601_C03_018E": {"label": "Estimate!!Speak English only or speak English \"very well\"!!Percent of specified language speakers!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Other languages!!18 to 64 years old", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C03_018EA,S1601_C03_018M,S1601_C03_018MA"}, "S0505_C01_145E": {"label": "Estimate!!Total!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_145EA,S0505_C01_145M,S0505_C01_145MA"}, "S1701_C01_036E": {"label": "Estimate!!Total!!Population for whom poverty status is determined!!WORK EXPERIENCE!!Population 16 years and over!!Worked part-time or part-year in the past 12 months", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C01_036EA,S1701_C01_036M,S1701_C01_036MA"}, "S0701PR_C04_002E": {"label": "Estimate!!Moved; from the U.S.!!Population 1 year and over!!AGE!!1 to 4 years", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C04_002EA,S0701PR_C04_002M,S0701PR_C04_002MA"}, "S0506_C01_001E": {"label": "Estimate!!Total!!Foreign-born population", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C01_001EA,S0506_C01_001M,S0506_C01_001MA"}, "S2601A_C04_057E": {"label": "Estimate!!Noninstitutionalized group quarters population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the U.S.", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_057EA,S2601A_C04_057M,S2601A_C04_057MA"}, "S1002_C02_024E": {"label": "Estimate!!Total!!Percent distribution of grandparents responsible for grandchildren!!POVERTY STATUS IN THE PAST 12 MONTHS!!Grandparents living with own grandchildren under 18 years for whom poverty status is determined", "concept": "Grandparents", "predicateType": "int", "group": "S1002", "limit": 0, "attributes": "S1002_C02_024EA,S1002_C02_024M,S1002_C02_024MA"}, "S2601A_C04_059E": {"label": "Estimate!!Noninstitutionalized group quarters population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the U.S.!!Different county", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_059EA,S2601A_C04_059M,S2601A_C04_059MA"}, "S0506_C01_002E": {"label": "Estimate!!Total!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_002EA,S0506_C01_002M,S0506_C01_002MA"}, "S0802_C03_101E": {"label": "Estimate!!Car, truck, or van -- carpooled!!PERCENT ALLOCATED!!Vehicles available", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "int", "group": "S0802", "limit": 0, "attributes": "S0802_C03_101EA,S0802_C03_101M,S0802_C03_101MA"}, "S1601_C03_017E": {"label": "Estimate!!Speak English only or speak English \"very well\"!!Percent of specified language speakers!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Other languages!!5 to 17 years old", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C03_017EA,S1601_C03_017M,S1601_C03_017MA"}, "S1701_C01_037E": {"label": "Estimate!!Total!!Population for whom poverty status is determined!!WORK EXPERIENCE!!Population 16 years and over!!Did not work", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C01_037EA,S1701_C01_037M,S1701_C01_037MA"}, "S0702_C03_009E": {"label": "Estimate!!Midwest!!Region of Current Residence!!Population 1 year and over!!Movers from abroad", "concept": "Movers Between Regions", "predicateType": "int", "group": "S0702", "limit": 0, "attributes": "S0702_C03_009EA,S0702_C03_009M,S0702_C03_009MA"}, "S1002_C02_023E": {"label": "Estimate!!Total!!Percent distribution of grandparents responsible for grandchildren!!DISABILITY STATUS!!Civilian grandparents living with own grandchildren under 18 years!!With any disability", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C02_023EA,S1002_C02_023M,S1002_C02_023MA"}, "S0701PR_C04_001E": {"label": "Estimate!!Moved; from the U.S.!!Population 1 year and over", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C04_001EA,S0701PR_C04_001M,S0701PR_C04_001MA"}, "S2601A_C04_058E": {"label": "Estimate!!Noninstitutionalized group quarters population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the U.S.!!Same county", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_058EA,S2601A_C04_058M,S2601A_C04_058MA"}, "S0506_C01_003E": {"label": "Estimate!!Total!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen!!Entered 2010 or later", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_003EA,S0506_C01_003M,S0506_C01_003MA"}, "S0802_C03_100E": {"label": "Estimate!!Car, truck, or van -- carpooled!!PERCENT ALLOCATED!!Travel time to work", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "int", "group": "S0802", "limit": 0, "attributes": "S0802_C03_100EA,S0802_C03_100M,S0802_C03_100MA"}, "S1002_C02_026E": {"label": "Estimate!!Total!!Percent distribution of grandparents responsible for grandchildren!!POVERTY STATUS IN THE PAST 12 MONTHS!!Grandparents living with own grandchildren under 18 years for whom poverty status is determined!!Income in the past 12 months at or above poverty level", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C02_026EA,S1002_C02_026M,S1002_C02_026MA"}, "S1701_C01_038E": {"label": "Estimate!!Total!!Population for whom poverty status is determined!!ALL INDIVIDUALS WITH INCOME BELOW THE FOLLOWING POVERTY RATIOS!!50 percent of poverty level", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C01_038EA,S1701_C01_038M,S1701_C01_038MA"}, "S0505_C01_143E": {"label": "Estimate!!Total!!Renter-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C01_143EA,S0505_C01_143M,S0505_C01_143MA"}, "S0701PR_C04_004E": {"label": "Estimate!!Moved; from the U.S.!!Population 1 year and over!!AGE!!18 to 24 years", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C04_004EA,S0701PR_C04_004M,S0701PR_C04_004MA"}, "S2601A_C04_055E": {"label": "Estimate!!Noninstitutionalized group quarters population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_055EA,S2601A_C04_055M,S2601A_C04_055MA"}, "S0506_C01_004E": {"label": "Estimate!!Total!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen!!Entered 2000 to 2009", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C01_004EA,S0506_C01_004M,S0506_C01_004MA"}, "S1701_C01_039E": {"label": "Estimate!!Total!!Population for whom poverty status is determined!!ALL INDIVIDUALS WITH INCOME BELOW THE FOLLOWING POVERTY RATIOS!!125 percent of poverty level", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C01_039EA,S1701_C01_039M,S1701_C01_039MA"}, "S1002_C02_025E": {"label": "Estimate!!Total!!Percent distribution of grandparents responsible for grandchildren!!POVERTY STATUS IN THE PAST 12 MONTHS!!Grandparents living with own grandchildren under 18 years for whom poverty status is determined!!Income in the past 12 months below poverty level", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C02_025EA,S1002_C02_025M,S1002_C02_025MA"}, "S1601_C03_019E": {"label": "Estimate!!Speak English only or speak English \"very well\"!!Percent of specified language speakers!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Other languages!!65 years old and over", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C03_019EA,S1601_C03_019M,S1601_C03_019MA"}, "S0505_C01_144E": {"label": "Estimate!!Total!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_144EA,S0505_C01_144M,S0505_C01_144MA"}, "S0701PR_C04_003E": {"label": "Estimate!!Moved; from the U.S.!!Population 1 year and over!!AGE!!5 to 17 years", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C04_003EA,S0701PR_C04_003M,S0701PR_C04_003MA"}, "S2601A_C04_056E": {"label": "Estimate!!Noninstitutionalized group quarters population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Same address", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_056EA,S2601A_C04_056M,S2601A_C04_056MA"}, "S2501_C06_038E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!FAMILY TYPE AND PRESENCE OF OWN CHILDREN!!No related children of householder under 18 years", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C06_038EA,S2501_C06_038M,S2501_C06_038MA"}, "S0502_C02_076E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Civilian employed population 16 years and over!!INDUSTRY!!Construction", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_076EA,S0502_C02_076M,S0502_C02_076MA"}, "S2411_C03_007E": {"label": "Estimate!!Median earnings (dollars) for female!!Civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Computer, engineering, and science occupations:!!Computer and mathematical occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C03_007EA,S2411_C03_007M,S2411_C03_007MA"}, "S0103_C02_019E": {"label": "Estimate!!65 years and over!!RELATIONSHIP!!Population in households!!Nonrelatives", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C02_019EA,S0103_C02_019M,S0103_C02_019MA"}, "S1701_C01_032E": {"label": "Estimate!!Total!!Population for whom poverty status is determined!!EMPLOYMENT STATUS!!Civilian labor force 16 years and over!!Unemployed!!Male", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C01_032EA,S1701_C01_032M,S1701_C01_032MA"}, "S1002_C02_020E": {"label": "Estimate!!Total!!Percent distribution of grandparents responsible for grandchildren!!Grandparents living with own grandchildren under 18 years!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Speak other language!!Speak English \"very well\"", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C02_020EA,S1002_C02_020M,S1002_C02_020MA"}, "S2501_C06_037E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!FAMILY TYPE AND PRESENCE OF OWN CHILDREN!!With related children of householder under 18 years!!No own children of householder under 18 years", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C06_037EA,S2501_C06_037M,S2501_C06_037MA"}, "S2603_C03_010E": {"label": "Estimate!!Adult correctional facilities!!Total population!!SEX AND AGE!!55 to 64 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C03_010EA,S2603_C03_010M,S2603_C03_010MA"}, "S0502_C02_077E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Civilian employed population 16 years and over!!INDUSTRY!!Manufacturing", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_077EA,S0502_C02_077M,S0502_C02_077MA"}, "S1701_C01_033E": {"label": "Estimate!!Total!!Population for whom poverty status is determined!!EMPLOYMENT STATUS!!Civilian labor force 16 years and over!!Unemployed!!Female", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C01_033EA,S1701_C01_033M,S1701_C01_033MA"}, "S2411_C03_008E": {"label": "Estimate!!Median earnings (dollars) for female!!Civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Computer, engineering, and science occupations:!!Architecture and engineering occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C03_008EA,S2411_C03_008M,S2411_C03_008MA"}, "S0502_C02_078E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Civilian employed population 16 years and over!!INDUSTRY!!Wholesale trade", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_078EA,S0502_C02_078M,S0502_C02_078MA"}, "S1701_C01_034E": {"label": "Estimate!!Total!!Population for whom poverty status is determined!!WORK EXPERIENCE!!Population 16 years and over", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C01_034EA,S1701_C01_034M,S1701_C01_034MA"}, "S2411_C03_005E": {"label": "Estimate!!Median earnings (dollars) for female!!Civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Management, business, and financial occupations:!!Business and financial operations occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C03_005EA,S2411_C03_005M,S2411_C03_005MA"}, "S1002_C02_022E": {"label": "Estimate!!Total!!Percent distribution of grandparents responsible for grandchildren!!DISABILITY STATUS!!Civilian grandparents living with own grandchildren under 18 years", "concept": "Grandparents", "predicateType": "int", "group": "S1002", "limit": 0, "attributes": "S1002_C02_022EA,S1002_C02_022M,S1002_C02_022MA"}, "S0502_C02_079E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Civilian employed population 16 years and over!!INDUSTRY!!Retail trade", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_079EA,S0502_C02_079M,S0502_C02_079MA"}, "S2411_C03_006E": {"label": "Estimate!!Median earnings (dollars) for female!!Civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Computer, engineering, and science occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C03_006EA,S2411_C03_006M,S2411_C03_006MA"}, "S1701_C01_035E": {"label": "Estimate!!Total!!Population for whom poverty status is determined!!WORK EXPERIENCE!!Population 16 years and over!!Worked full-time, year-round in the past 12 months", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C01_035EA,S1701_C01_035M,S1701_C01_035MA"}, "S1002_C02_021E": {"label": "Estimate!!Total!!Percent distribution of grandparents responsible for grandchildren!!Grandparents living with own grandchildren under 18 years!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Speak other language!!Speak English less than \"very well\"", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C02_021EA,S1002_C02_021M,S1002_C02_021MA"}, "S2603_C03_013E": {"label": "Estimate!!Adult correctional facilities!!Total population!!SEX AND AGE!!85 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C03_013EA,S2603_C03_013M,S2603_C03_013MA"}, "S0502_C02_072E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Civilian employed population 16 years and over!!OCCUPATION!!Sales and office occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_072EA,S0502_C02_072M,S0502_C02_072MA"}, "S1601_C03_010E": {"label": "Estimate!!Speak English only or speak English \"very well\"!!Percent of specified language speakers!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Other Indo-European languages!!18 to 64 years old", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C03_010EA,S1601_C03_010M,S1601_C03_010MA"}, "S2703_C01_030E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!COVERAGE ALONE!!Private health insurance alone!!Subsidized market place coverage alone", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2703", "limit": 0, "attributes": "S2703_C01_030EA,S2703_C01_030M,S2703_C01_030MA"}, "S1201_C06_018E": {"label": "Estimate!!Never married!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C06_018EA,S1201_C06_018M,S1201_C06_018MA"}, "S2603_C03_014E": {"label": "Estimate!!Adult correctional facilities!!Total population!!SEX AND AGE!!Under 18 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C03_014EA,S2603_C03_014M,S2603_C03_014MA"}, "S0502_C02_073E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Civilian employed population 16 years and over!!OCCUPATION!!Natural resources, construction, and maintenance occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_073EA,S0502_C02_073M,S0502_C02_073MA"}, "S2601A_C04_050E": {"label": "Estimate!!Noninstitutionalized group quarters population!!DISABILITY STATUS!!Population 18 to 64 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_050EA,S2601A_C04_050M,S2601A_C04_050MA"}, "S1201_C06_019E": {"label": "Estimate!!Never married!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C06_019EA,S1201_C06_019M,S1201_C06_019MA"}, "S2603_C03_011E": {"label": "Estimate!!Adult correctional facilities!!Total population!!SEX AND AGE!!65 to 74 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C03_011EA,S2603_C03_011M,S2603_C03_011MA"}, "S0502_C02_074E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Civilian employed population 16 years and over!!OCCUPATION!!Production, transportation, and material moving occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_074EA,S0502_C02_074M,S0502_C02_074MA"}, "S2411_C03_009E": {"label": "Estimate!!Median earnings (dollars) for female!!Civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Computer, engineering, and science occupations:!!Life, physical, and social science occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C03_009EA,S2411_C03_009M,S2411_C03_009MA"}, "S1601_C03_012E": {"label": "Estimate!!Speak English only or speak English \"very well\"!!Percent of specified language speakers!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Asian and Pacific Island languages", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C03_012EA,S1601_C03_012M,S1601_C03_012MA"}, "S1701_C01_030E": {"label": "Estimate!!Total!!Population for whom poverty status is determined!!EMPLOYMENT STATUS!!Civilian labor force 16 years and over!!Employed!!Female", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C01_030EA,S1701_C01_030M,S1701_C01_030MA"}, "S2603_C03_012E": {"label": "Estimate!!Adult correctional facilities!!Total population!!SEX AND AGE!!75 to 84 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C03_012EA,S2603_C03_012M,S2603_C03_012MA"}, "S1601_C03_011E": {"label": "Estimate!!Speak English only or speak English \"very well\"!!Percent of specified language speakers!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Other Indo-European languages!!65 years old and over", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C03_011EA,S1601_C03_011M,S1601_C03_011MA"}, "S0502_C02_075E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Civilian employed population 16 years and over!!INDUSTRY!!Agriculture, forestry, fishing and hunting, and mining", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_075EA,S0502_C02_075M,S0502_C02_075MA"}, "S1701_C01_031E": {"label": "Estimate!!Total!!Population for whom poverty status is determined!!EMPLOYMENT STATUS!!Civilian labor force 16 years and over!!Unemployed", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C01_031EA,S1701_C01_031M,S1701_C01_031MA"}, "S1201_C06_026E": {"label": "Estimate!!Never married!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C06_026EA,S1201_C06_026M,S1201_C06_026MA"}, "S0702_C03_010E": {"label": "Estimate!!Midwest!!Region of Current Residence!!PERCENT ALLOCATED!!Residence 1 year ago", "concept": "Movers Between Regions", "predicateType": "int", "group": "S0702", "limit": 0, "attributes": "S0702_C03_010EA,S0702_C03_010M,S0702_C03_010MA"}, "S2002_C03_068E": {"label": "Estimate!!Female!!Median earnings (dollars)!!PERCENT ALLOCATED!!Earnings in the past 12 months", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C03_068EA,S2002_C03_068M,S2002_C03_068MA"}, "S0103_C02_023E": {"label": "Estimate!!65 years and over!!HOUSEHOLDS BY TYPE!!Households!!Family households!!Married-couple family", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C02_023EA,S0103_C02_023M,S0103_C02_023MA"}, "S0802_C01_035E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$65,000 to $74,999", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_035EA,S0802_C01_035M,S0802_C01_035MA"}, "S2501_C06_030E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Nonfamily households!!Householder not living alone!!Householder 35 to 64 years", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C06_030EA,S2501_C06_030M,S2501_C06_030MA"}, "S2603_C03_005E": {"label": "Estimate!!Adult correctional facilities!!Total population!!SEX AND AGE!!15 to 17 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C03_005EA,S2603_C03_005M,S2603_C03_005MA"}, "S1201_C06_027E": {"label": "Estimate!!Never married!!LABOR FORCE PARTICIPATION!!Males 16 years and over", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C06_027EA,S1201_C06_027M,S1201_C06_027MA"}, "S2002_C03_069E": {"label": "Estimate!!Female!!Median earnings (dollars)!!PERCENT ALLOCATED!!Race", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C03_069EA,S2002_C03_069M,S2002_C03_069MA"}, "S0103_C02_024E": {"label": "Estimate!!65 years and over!!HOUSEHOLDS BY TYPE!!Households!!Family households!!Female householder, no spouse present, family", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C02_024EA,S0103_C02_024M,S0103_C02_024MA"}, "S0802_C01_034E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$50,000 to $64,999", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_034EA,S0802_C01_034M,S0802_C01_034MA"}, "S2603_C03_006E": {"label": "Estimate!!Adult correctional facilities!!Total population!!SEX AND AGE!!18 to 24 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C03_006EA,S2603_C03_006M,S2603_C03_006MA"}, "S2603_C03_003E": {"label": "Estimate!!Adult correctional facilities!!Total population!!SEX AND AGE!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C03_003EA,S2603_C03_003M,S2603_C03_003MA"}, "S2002_C03_066E": {"label": "Estimate!!Female!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!CLASS OF WORKER!!Federal government workers", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C03_066EA,S2002_C03_066M,S2002_C03_066MA"}, "S0502_C02_070E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Civilian employed population 16 years and over!!OCCUPATION!!Management, business, science, and arts occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_070EA,S0502_C02_070M,S0502_C02_070MA"}, "S0103_C02_025E": {"label": "Estimate!!65 years and over!!HOUSEHOLDS BY TYPE!!Households!!Nonfamily households", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C02_025EA,S0103_C02_025M,S0103_C02_025MA"}, "S0802_C01_033E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$35,000 to $49,999", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_033EA,S0802_C01_033M,S0802_C01_033MA"}, "S2501_C06_032E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!FAMILY TYPE AND PRESENCE OF OWN CHILDREN!!With related children of householder under 18 years", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C06_032EA,S2501_C06_032M,S2501_C06_032MA"}, "S1201_C06_028E": {"label": "Estimate!!Never married!!LABOR FORCE PARTICIPATION!!Males 16 years and over!!In labor force", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C06_028EA,S1201_C06_028M,S1201_C06_028MA"}, "S2002_C03_067E": {"label": "Estimate!!Female!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!CLASS OF WORKER!!Self employed in own not incorporated business workers and unpaid family workers", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C03_067EA,S2002_C03_067M,S2002_C03_067MA"}, "S0502_C02_071E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Civilian employed population 16 years and over!!OCCUPATION!!Service occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_071EA,S0502_C02_071M,S0502_C02_071MA"}, "S0103_C02_026E": {"label": "Estimate!!65 years and over!!HOUSEHOLDS BY TYPE!!Households!!Nonfamily households!!Householder living alone", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C02_026EA,S0103_C02_026M,S0103_C02_026MA"}, "S0802_C01_032E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$25,000 to $34,999", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_032EA,S0802_C01_032M,S0802_C01_032MA"}, "S2501_C06_031E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Nonfamily households!!Householder not living alone!!Householder 65 years and over", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C06_031EA,S2501_C06_031M,S2501_C06_031MA"}, "S1201_C06_029E": {"label": "Estimate!!Never married!!LABOR FORCE PARTICIPATION!!Females 16 years and over", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C06_029EA,S1201_C06_029M,S1201_C06_029MA"}, "S2603_C03_004E": {"label": "Estimate!!Adult correctional facilities!!Total population!!SEX AND AGE!!Under 15 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C03_004EA,S2603_C03_004M,S2603_C03_004MA"}, "S1201_C06_022E": {"label": "Estimate!!Never married!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C06_022EA,S1201_C06_022M,S1201_C06_022MA"}, "S2002_C03_064E": {"label": "Estimate!!Female!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!CLASS OF WORKER!!Local government workers", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C03_064EA,S2002_C03_064M,S2002_C03_064MA"}, "S0802_C01_031E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$15,000 to $24,999", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_031EA,S0802_C01_031M,S0802_C01_031MA"}, "S2703_C01_026E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!COVERAGE ALONE!!Private health insurance alone", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2703", "limit": 0, "attributes": "S2703_C01_026EA,S2703_C01_026M,S2703_C01_026MA"}, "S0103_C02_027E": {"label": "Estimate!!65 years and over!!MARITAL STATUS!!Population 15 years and over", "concept": "Population 65 Years and Over in the United States", "predicateType": "int", "group": "S0103", "limit": 0, "attributes": "S0103_C02_027EA,S0103_C02_027M,S0103_C02_027MA"}, "S0501_C01_119E": {"label": "Estimate!!Total!!Occupied housing units!!HOUSING TENURE!!Average household size of owner-occupied unit", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_119EA,S0501_C01_119M,S0501_C01_119MA"}, "S2411_C03_003E": {"label": "Estimate!!Median earnings (dollars) for female!!Civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Management, business, and financial occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C03_003EA,S2411_C03_003M,S2411_C03_003MA"}, "S2503_C06_008E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$35,000 to $49,999", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C06_008EA,S2503_C06_008M,S2503_C06_008MA"}, "S2603_C03_009E": {"label": "Estimate!!Adult correctional facilities!!Total population!!SEX AND AGE!!45 to 54 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C03_009EA,S2603_C03_009M,S2603_C03_009MA"}, "S2501_C06_034E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!FAMILY TYPE AND PRESENCE OF OWN CHILDREN!!With related children of householder under 18 years!!With own children of householder under 18 years!!Under 6 years only", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C06_034EA,S2501_C06_034M,S2501_C06_034MA"}, "S1201_C06_023E": {"label": "Estimate!!Never married!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C06_023EA,S1201_C06_023M,S1201_C06_023MA"}, "S2002_C03_065E": {"label": "Estimate!!Female!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!CLASS OF WORKER!!State government workers", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C03_065EA,S2002_C03_065M,S2002_C03_065MA"}, "S0802_C01_030E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$10,000 to $14,999", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_030EA,S0802_C01_030M,S0802_C01_030MA"}, "S0103_C02_028E": {"label": "Estimate!!65 years and over!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C02_028EA,S0103_C02_028M,S0103_C02_028MA"}, "S2703_C01_027E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!COVERAGE ALONE!!Private health insurance alone!!Employer-based health insurance alone", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2703", "limit": 0, "attributes": "S2703_C01_027EA,S2703_C01_027M,S2703_C01_027MA"}, "S2411_C03_004E": {"label": "Estimate!!Median earnings (dollars) for female!!Civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Management, business, and financial occupations:!!Management occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C03_004EA,S2411_C03_004M,S2411_C03_004MA"}, "S2503_C06_007E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$25,000 to $34,999", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C06_007EA,S2503_C06_007M,S2503_C06_007MA"}, "S2501_C06_033E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!FAMILY TYPE AND PRESENCE OF OWN CHILDREN!!With related children of householder under 18 years!!With own children of householder under 18 years", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C06_033EA,S2501_C06_033M,S2501_C06_033MA"}, "S2002_C03_062E": {"label": "Estimate!!Female!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!CLASS OF WORKER!!Self employed in own incorporated business workers", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C03_062EA,S2002_C03_062M,S2002_C03_062MA"}, "S1201_C06_024E": {"label": "Estimate!!Never married!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C06_024EA,S1201_C06_024M,S1201_C06_024MA"}, "S0103_C02_029E": {"label": "Estimate!!65 years and over!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C02_029EA,S0103_C02_029M,S0103_C02_029MA"}, "S2703_C01_028E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!COVERAGE ALONE!!Private health insurance alone!!Direct-purchase health insurance alone", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2703", "limit": 0, "attributes": "S2703_C01_028EA,S2703_C01_028M,S2703_C01_028MA"}, "S2411_C03_001E": {"label": "Estimate!!Median earnings (dollars) for female!!Civilian employed population 16 years and over with earnings", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C03_001EA,S2411_C03_001M,S2411_C03_001MA"}, "S2101_C03_040E": {"label": "Estimate!!Veterans!!DISABILITY STATUS!!Civilian population 18 years and over for whom poverty status is determined!!Without a disability", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C03_040EA,S2101_C03_040M,S2101_C03_040MA"}, "S2501_C06_036E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!FAMILY TYPE AND PRESENCE OF OWN CHILDREN!!With related children of householder under 18 years!!With own children of householder under 18 years!!6 to 17 years only", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C06_036EA,S2501_C06_036M,S2501_C06_036MA"}, "S2603_C03_007E": {"label": "Estimate!!Adult correctional facilities!!Total population!!SEX AND AGE!!25 to 34 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C03_007EA,S2603_C03_007M,S2603_C03_007MA"}, "S2002_C03_063E": {"label": "Estimate!!Female!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!CLASS OF WORKER!!Private not-for-profit wage and salary workers", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C03_063EA,S2002_C03_063M,S2002_C03_063MA"}, "S1201_C06_025E": {"label": "Estimate!!Never married!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C06_025EA,S1201_C06_025M,S1201_C06_025MA"}, "S2703_C01_029E": {"label": "Estimate!!Total!!Civilian noninstitutionalized population!!COVERAGE ALONE!!Private health insurance alone!!Tricare/military health coverage alone", "concept": "Private Health Insurance Coverage by Type and Selected Characteristics", "predicateType": "int", "group": "S2703", "limit": 0, "attributes": "S2703_C01_029EA,S2703_C01_029M,S2703_C01_029MA"}, "S2411_C03_002E": {"label": "Estimate!!Median earnings (dollars) for female!!Civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C03_002EA,S2411_C03_002M,S2411_C03_002MA"}, "S2503_C06_009E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$50,000 to $74,999", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C06_009EA,S2503_C06_009M,S2503_C06_009MA"}, "S2603_C03_008E": {"label": "Estimate!!Adult correctional facilities!!Total population!!SEX AND AGE!!35 to 44 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C03_008EA,S2603_C03_008M,S2603_C03_008MA"}, "S2501_C06_035E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!FAMILY TYPE AND PRESENCE OF OWN CHILDREN!!With related children of householder under 18 years!!With own children of householder under 18 years!!Under 6 years and 6 to 17 years", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C06_035EA,S2501_C06_035M,S2501_C06_035MA"}, "S0501_C01_115E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_115EA,S0501_C01_115M,S0501_C01_115MA"}, "S0505_C01_141E": {"label": "Estimate!!Total!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_141EA,S0505_C01_141M,S0505_C01_141MA"}, "S2503_C06_004E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$10,000 to $14,999", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C06_004EA,S2503_C06_004M,S2503_C06_004MA"}, "S0901_C01_013E": {"label": "Estimate!!Total!!Children under 18 years in households!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C01_013EA,S0901_C01_013M,S0901_C01_013MA"}, "S0701PR_C04_006E": {"label": "Estimate!!Moved; from the U.S.!!Population 1 year and over!!AGE!!35 to 44 years", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C04_006EA,S0701PR_C04_006M,S0701PR_C04_006MA"}, "S2002_C03_061E": {"label": "Estimate!!Female!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!CLASS OF WORKER!!Employee of private company workers", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C03_061EA,S2002_C03_061M,S2002_C03_061MA"}, "S0501_C01_116E": {"label": "Estimate!!Total!!Occupied housing units", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C01_116EA,S0501_C01_116M,S0501_C01_116MA"}, "S2503_C06_003E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$5,000 to $9,999", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C06_003EA,S2503_C06_003M,S2503_C06_003MA"}, "S0901_C01_012E": {"label": "Estimate!!Total!!Children under 18 years in households!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C01_012EA,S0901_C01_012M,S0901_C01_012MA"}, "S0505_C01_142E": {"label": "Estimate!!Total!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C01_142EA,S0505_C01_142M,S0505_C01_142MA"}, "S1601_C03_009E": {"label": "Estimate!!Speak English only or speak English \"very well\"!!Percent of specified language speakers!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Other Indo-European languages!!5 to 17 years old", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C03_009EA,S1601_C03_009M,S1601_C03_009MA"}, "S0701PR_C04_005E": {"label": "Estimate!!Moved; from the U.S.!!Population 1 year and over!!AGE!!25 to 34 years", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C04_005EA,S0701PR_C04_005M,S0701PR_C04_005MA"}, "S2002_C03_060E": {"label": "Estimate!!Female!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Public administration", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C03_060EA,S2002_C03_060M,S2002_C03_060MA"}, "S1201_C06_020E": {"label": "Estimate!!Never married!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C06_020EA,S1201_C06_020M,S1201_C06_020MA"}, "S0501_C01_117E": {"label": "Estimate!!Total!!Occupied housing units!!HOUSING TENURE!!Owner-occupied housing units", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_117EA,S0501_C01_117M,S0501_C01_117MA"}, "S2503_C06_006E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$20,000 to $24,999", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C06_006EA,S2503_C06_006M,S2503_C06_006MA"}, "S0701PR_C04_008E": {"label": "Estimate!!Moved; from the U.S.!!Population 1 year and over!!AGE!!55 to 64 years", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C04_008EA,S0701PR_C04_008M,S0701PR_C04_008MA"}, "S0901_C01_011E": {"label": "Estimate!!Total!!Children under 18 years in households!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C01_011EA,S0901_C01_011M,S0901_C01_011MA"}, "S1201_C06_021E": {"label": "Estimate!!Never married!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C06_021EA,S1201_C06_021M,S1201_C06_021MA"}, "S0505_C01_140E": {"label": "Estimate!!Total!!Owner-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C01_140EA,S0505_C01_140M,S0505_C01_140MA"}, "S0501_C01_118E": {"label": "Estimate!!Total!!Occupied housing units!!HOUSING TENURE!!Renter-occupied housing units", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_118EA,S0501_C01_118M,S0501_C01_118MA"}, "S2503_C06_005E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$15,000 to $19,999", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C06_005EA,S2503_C06_005M,S2503_C06_005MA"}, "S0901_C01_010E": {"label": "Estimate!!Total!!Children under 18 years in households!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C01_010EA,S0901_C01_010M,S0901_C01_010MA"}, "S0701PR_C04_007E": {"label": "Estimate!!Moved; from the U.S.!!Population 1 year and over!!AGE!!45 to 54 years", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C04_007EA,S0701PR_C04_007M,S0701PR_C04_007MA"}, "S0901_C01_017E": {"label": "Estimate!!Total!!Children under 18 years in households!!RELATIONSHIP TO HOUSEHOLDER!!Other relatives", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C01_017EA,S0901_C01_017M,S0901_C01_017MA"}, "S0501_C01_111E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_111EA,S0501_C01_111M,S0501_C01_111MA"}, "S0802_C01_039E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Workers 16 years and over for whom poverty status is determined!!Below 100 percent of the poverty level", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_039EA,S0802_C01_039M,S0802_C01_039MA"}, "S0103_C02_020E": {"label": "Estimate!!65 years and over!!RELATIONSHIP!!Population in households!!Nonrelatives!!Unmarried partner", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C02_020EA,S0103_C02_020M,S0103_C02_020MA"}, "S0901_C01_016E": {"label": "Estimate!!Total!!Children under 18 years in households!!RELATIONSHIP TO HOUSEHOLDER!!Grandchild", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C01_016EA,S0901_C01_016M,S0901_C01_016MA"}, "S0501_C01_112E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_112EA,S0501_C01_112M,S0501_C01_112MA"}, "S0802_C01_038E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Workers 16 years and over for whom poverty status is determined", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "int", "group": "S0802", "limit": 0, "attributes": "S0802_C01_038EA,S0802_C01_038M,S0802_C01_038MA"}, "S1002_C02_019E": {"label": "Estimate!!Total!!Percent distribution of grandparents responsible for grandchildren!!Grandparents living with own grandchildren under 18 years!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Speak other language", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C02_019EA,S1002_C02_019M,S1002_C02_019MA"}, "S0701PR_C04_009E": {"label": "Estimate!!Moved; from the U.S.!!Population 1 year and over!!AGE!!65 to 74 years", "concept": "Geographic Mobility by Selected Characteristics in Puerto Rico", "predicateType": "float", "group": "S0701PR", "limit": 0, "attributes": "S0701PR_C04_009EA,S0701PR_C04_009M,S0701PR_C04_009MA"}, "S0103_C02_021E": {"label": "Estimate!!65 years and over!!HOUSEHOLDS BY TYPE!!Households", "concept": "Population 65 Years and Over in the United States", "predicateType": "int", "group": "S0103", "limit": 0, "attributes": "S0103_C02_021EA,S0103_C02_021M,S0103_C02_021MA"}, "S0901_C01_015E": {"label": "Estimate!!Total!!Children under 18 years in households!!RELATIONSHIP TO HOUSEHOLDER!!Own child (biological, step or adopted)", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C01_015EA,S0901_C01_015M,S0901_C01_015MA"}, "S0501_C01_113E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_113EA,S0501_C01_113M,S0501_C01_113MA"}, "S2503_C06_002E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Less than $5,000", "concept": "Financial Characteristics", "predicateType": "float", "group": "S2503", "limit": 0, "attributes": "S2503_C06_002EA,S2503_C06_002M,S2503_C06_002MA"}, "S0802_C01_037E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!Median earnings (dollars)", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "int", "group": "S0802", "limit": 0, "attributes": "S0802_C01_037EA,S0802_C01_037M,S0802_C01_037MA"}, "S0103_C02_022E": {"label": "Estimate!!65 years and over!!HOUSEHOLDS BY TYPE!!Households!!Family households", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C02_022EA,S0103_C02_022M,S0103_C02_022MA"}, "S0901_C01_014E": {"label": "Estimate!!Total!!Children under 18 years in households!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C01_014EA,S0901_C01_014M,S0901_C01_014MA"}, "S0501_C01_114E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_114EA,S0501_C01_114M,S0501_C01_114MA"}, "S2503_C06_001E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C06_001EA,S2503_C06_001M,S2503_C06_001MA"}, "S0802_C01_036E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$75,000 or more", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_036EA,S0802_C01_036M,S0802_C01_036MA"}, "S1501_C05_025E": {"label": "Estimate!!Female!!AGE BY EDUCATIONAL ATTAINMENT!!Population 65 years and over", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C05_025EA,S1501_C05_025M,S1501_C05_025MA"}, "S2001_C05_016E": {"label": "Estimate!!Female!!MEDIAN EARNINGS BY EDUCATIONAL ATTAINMENT!!Population 25 years and over with earnings!!Less than high school graduate", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C05_016EA,S2001_C05_016M,S2001_C05_016MA"}, "S0505_C04_010E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Foreign-born population!!SEX AND AGE!!Male", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_010EA,S0505_C04_010M,S0505_C04_010MA"}, "S2201_C01_019E": {"label": "Estimate!!Total!!Households!!No children under 18 years!!Other family:!!Female householder, no spouse present", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C01_019EA,S2201_C01_019M,S2201_C01_019MA"}, "S2601A_C04_089E": {"label": "Estimate!!Noninstitutionalized group quarters population!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Armed Forces", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_089EA,S2601A_C04_089M,S2601A_C04_089MA"}, "SDELM": {"label": "School District (Elementary)", "group": "N/A", "limit": 0}, "S1501_C05_024E": {"label": "Estimate!!Female!!AGE BY EDUCATIONAL ATTAINMENT!!Population 45 to 64 years!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C05_024EA,S1501_C05_024M,S1501_C05_024MA"}, "S2001_C05_015E": {"label": "Estimate!!Female!!MEDIAN EARNINGS BY EDUCATIONAL ATTAINMENT!!Population 25 years and over with earnings", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C05_015EA,S2001_C05_015M,S2001_C05_015MA"}, "S1501_C05_023E": {"label": "Estimate!!Female!!AGE BY EDUCATIONAL ATTAINMENT!!Population 45 to 64 years!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C05_023EA,S1501_C05_023M,S1501_C05_023MA"}, "S2601CPR_C02_070E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Naturalized U.S. citizen", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "int", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_070EA,S2601CPR_C02_070M,S2601CPR_C02_070MA"}, "S2001_C05_014E": {"label": "Estimate!!Female!!Population 16 years and over with earnings!!FULL-TIME, YEAR-ROUND WORKERS WITH EARNINGS!!Mean earnings (dollars) for full-time, year-round workers with earnings", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C05_014EA,S2001_C05_014M,S2001_C05_014MA"}, "S2601A_C04_087E": {"label": "Estimate!!Noninstitutionalized group quarters population!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_087EA,S2601A_C04_087M,S2601A_C04_087MA"}, "S1501_C05_022E": {"label": "Estimate!!Female!!AGE BY EDUCATIONAL ATTAINMENT!!Population 45 to 64 years", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C05_022EA,S1501_C05_022M,S1501_C05_022MA"}, "S2001_C05_013E": {"label": "Estimate!!Female!!Population 16 years and over with earnings!!FULL-TIME, YEAR-ROUND WORKERS WITH EARNINGS!!Median earnings (dollars) for full-time, year-round workers with earnings", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C05_013EA,S2001_C05_013M,S2001_C05_013MA"}, "S0504_C01_019E": {"label": "Estimate!!Total!!Foreign-born population!!SEX AND AGE!!75 to 84 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_019EA,S0504_C01_019M,S0504_C01_019MA"}, "S2601A_C04_088E": {"label": "Estimate!!Noninstitutionalized group quarters population!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed!!Percent of civilian labor force", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_088EA,S2601A_C04_088M,S2601A_C04_088MA"}, "S1501_C05_021E": {"label": "Estimate!!Female!!AGE BY EDUCATIONAL ATTAINMENT!!Population 35 to 44 years!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C05_021EA,S1501_C05_021M,S1501_C05_021MA"}, "S2601CPR_C02_072E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Naturalized U.S. citizen!!Female", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_072EA,S2601CPR_C02_072M,S2601CPR_C02_072MA"}, "S2001_C05_012E": {"label": "Estimate!!Female!!Population 16 years and over with earnings!!FULL-TIME, YEAR-ROUND WORKERS WITH EARNINGS!!$100,000 or more", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C05_012EA,S2001_C05_012M,S2001_C05_012MA"}, "S2201_C01_015E": {"label": "Estimate!!Total!!Households!!No children under 18 years", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C01_015EA,S2201_C01_015M,S2201_C01_015MA"}, "S1501_C05_020E": {"label": "Estimate!!Female!!AGE BY EDUCATIONAL ATTAINMENT!!Population 35 to 44 years!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C05_020EA,S1501_C05_020M,S1501_C05_020MA"}, "S2601CPR_C02_071E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Naturalized U.S. citizen!!Male", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_071EA,S2601CPR_C02_071M,S2601CPR_C02_071MA"}, "S2001_C05_011E": {"label": "Estimate!!Female!!Population 16 years and over with earnings!!FULL-TIME, YEAR-ROUND WORKERS WITH EARNINGS!!$75,000 to $99,999", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C05_011EA,S2001_C05_011M,S2001_C05_011MA"}, "S2201_C01_016E": {"label": "Estimate!!Total!!Households!!No children under 18 years!!Married-couple family", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C01_016EA,S2201_C01_016M,S2201_C01_016MA"}, "S2601CPR_C02_074E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Not a U.S. citizen!!Male", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_074EA,S2601CPR_C02_074M,S2601CPR_C02_074MA"}, "S2001_C05_010E": {"label": "Estimate!!Female!!Population 16 years and over with earnings!!FULL-TIME, YEAR-ROUND WORKERS WITH EARNINGS!!$65,000 to $74,999", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C05_010EA,S2001_C05_010M,S2001_C05_010MA"}, "S2201_C01_017E": {"label": "Estimate!!Total!!Households!!No children under 18 years!!Other family:", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C01_017EA,S2201_C01_017M,S2201_C01_017MA"}, "S1401_C02_031E": {"label": "Estimate!!Percent!!Population 18 to 24 years!!Males 18 to 24 years", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C02_031EA,S1401_C02_031M,S1401_C02_031MA"}, "S2601CPR_C02_073E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Not a U.S. citizen", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "int", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_073EA,S2601CPR_C02_073M,S2601CPR_C02_073MA"}, "S2201_C01_018E": {"label": "Estimate!!Total!!Households!!No children under 18 years!!Other family:!!Male householder, no spouse present", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C01_018EA,S2201_C01_018M,S2201_C01_018MA"}, "S1401_C02_030E": {"label": "Estimate!!Percent!!Population 18 to 24 years!!Enrolled in college or graduate school", "concept": "School Enrollment", "predicateType": "float", "group": "S1401", "limit": 0, "attributes": "S1401_C02_030EA,S1401_C02_030M,S1401_C02_030MA"}, "S2601CPR_C02_076E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Entered 2010 or later", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_076EA,S2601CPR_C02_076M,S2601CPR_C02_076MA"}, "S2603_C03_021E": {"label": "Estimate!!Adult correctional facilities!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C03_021EA,S2603_C03_021M,S2603_C03_021MA"}, "S0502_C04_119E": {"label": "Estimate!!Foreign-born; Entered before 2000!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_119EA,S0502_C04_119M,S0502_C04_119MA"}, "S0103_C02_007E": {"label": "Estimate!!65 years and over!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C02_007EA,S0103_C02_007M,S0103_C02_007MA"}, "S1401_C02_033E": {"label": "Estimate!!Percent!!Population 18 to 24 years!!Females 18 to 24 years", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C02_033EA,S1401_C02_033M,S1401_C02_033MA"}, "S2201_C01_011E": {"label": "Estimate!!Total!!Households!!With children under 18 years!!Other family:", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C01_011EA,S2201_C01_011M,S2201_C01_011MA"}, "S2601A_C04_081E": {"label": "Estimate!!Noninstitutionalized group quarters population!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_081EA,S2601A_C04_081M,S2601A_C04_081MA"}, "S2603_C03_022E": {"label": "Estimate!!Adult correctional facilities!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!White", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C03_022EA,S2603_C03_022M,S2603_C03_022MA"}, "S2601CPR_C02_075E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Not a U.S. citizen!!Female", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_075EA,S2601CPR_C02_075M,S2601CPR_C02_075MA"}, "S0103_C02_008E": {"label": "Estimate!!65 years and over!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C02_008EA,S0103_C02_008M,S0103_C02_008MA"}, "S2201_C01_012E": {"label": "Estimate!!Total!!Households!!With children under 18 years!!Other family:!!Male householder, no spouse present", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C01_012EA,S2201_C01_012M,S2201_C01_012MA"}, "S2601A_C04_082E": {"label": "Estimate!!Noninstitutionalized group quarters population!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English!!Speak English less than \"very well\"", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_082EA,S2601A_C04_082M,S2601A_C04_082MA"}, "S1401_C02_032E": {"label": "Estimate!!Percent!!Population 18 to 24 years!!Males 18 to 24 years!!Enrolled in college or graduate school", "concept": "School Enrollment", "predicateType": "float", "group": "S1401", "limit": 0, "attributes": "S1401_C02_032EA,S1401_C02_032M,S1401_C02_032MA"}, "S2601CPR_C02_078E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Entered before 2000", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_078EA,S2601CPR_C02_078M,S2601CPR_C02_078MA"}, "S0103_C02_009E": {"label": "Estimate!!65 years and over!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C02_009EA,S0103_C02_009M,S0103_C02_009MA"}, "S2201_C01_013E": {"label": "Estimate!!Total!!Households!!With children under 18 years!!Other family:!!Female householder, no spouse present", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C01_013EA,S2201_C01_013M,S2201_C01_013MA"}, "S2601CPR_C02_079E": {"label": "Estimate!!Total group quarters population!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "int", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_079EA,S2601CPR_C02_079M,S2601CPR_C02_079MA"}, "S2601CPR_C02_077E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Entered 2000 to 2009", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_077EA,S2601CPR_C02_077M,S2601CPR_C02_077MA"}, "S2603_C03_020E": {"label": "Estimate!!Adult correctional facilities!!Total population!!SEX AND AGE!!Median age (years)", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C03_020EA,S2603_C03_020M,S2603_C03_020MA"}, "S1401_C02_034E": {"label": "Estimate!!Percent!!Population 18 to 24 years!!Females 18 to 24 years!!Enrolled in college or graduate school", "concept": "School Enrollment", "predicateType": "float", "group": "S1401", "limit": 0, "attributes": "S1401_C02_034EA,S1401_C02_034M,S1401_C02_034MA"}, "S2601A_C04_080E": {"label": "Estimate!!Noninstitutionalized group quarters population!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!English only", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_080EA,S2601A_C04_080M,S2601A_C04_080MA"}, "S2201_C01_014E": {"label": "Estimate!!Total!!Households!!With children under 18 years!!Nonfamily households", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C01_014EA,S2201_C01_014M,S2201_C01_014MA"}, "S2603_C03_025E": {"label": "Estimate!!Adult correctional facilities!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Asian", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C03_025EA,S2603_C03_025M,S2603_C03_025MA"}, "S1501_C05_029E": {"label": "Estimate!!Female!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!White alone!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C05_029EA,S1501_C05_029M,S1501_C05_029MA"}, "S2601A_C04_085E": {"label": "Estimate!!Noninstitutionalized group quarters population!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_085EA,S2601A_C04_085M,S2601A_C04_085MA"}, "S2001_C05_019E": {"label": "Estimate!!Female!!MEDIAN EARNINGS BY EDUCATIONAL ATTAINMENT!!Population 25 years and over with earnings!!Bachelor's degree", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C05_019EA,S2001_C05_019M,S2001_C05_019MA"}, "S1501_C05_028E": {"label": "Estimate!!Female!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!White alone", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C05_028EA,S1501_C05_028M,S1501_C05_028MA"}, "S2601A_C04_086E": {"label": "Estimate!!Noninstitutionalized group quarters population!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Employed", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_086EA,S2601A_C04_086M,S2601A_C04_086MA"}, "S2603_C03_026E": {"label": "Estimate!!Adult correctional facilities!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C03_026EA,S2603_C03_026M,S2603_C03_026MA"}, "S2603_C03_023E": {"label": "Estimate!!Adult correctional facilities!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C03_023EA,S2603_C03_023M,S2603_C03_023MA"}, "S2002_C03_058E": {"label": "Estimate!!Female!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Accommodation and food services", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C03_058EA,S2002_C03_058M,S2002_C03_058MA"}, "S2001_C05_018E": {"label": "Estimate!!Female!!MEDIAN EARNINGS BY EDUCATIONAL ATTAINMENT!!Population 25 years and over with earnings!!Some college or associate's degree", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C05_018EA,S2001_C05_018M,S2001_C05_018MA"}, "S2601A_C04_083E": {"label": "Estimate!!Noninstitutionalized group quarters population!!EMPLOYMENT STATUS!!Population 16 years and over", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_083EA,S2601A_C04_083M,S2601A_C04_083MA"}, "S1501_C05_027E": {"label": "Estimate!!Female!!AGE BY EDUCATIONAL ATTAINMENT!!Population 65 years and over!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C05_027EA,S1501_C05_027M,S1501_C05_027MA"}, "S2603_C03_024E": {"label": "Estimate!!Adult correctional facilities!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C03_024EA,S2603_C03_024M,S2603_C03_024MA"}, "S2002_C03_059E": {"label": "Estimate!!Female!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Other services (except public administration)", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C03_059EA,S2002_C03_059M,S2002_C03_059MA"}, "S2001_C05_017E": {"label": "Estimate!!Female!!MEDIAN EARNINGS BY EDUCATIONAL ATTAINMENT!!Population 25 years and over with earnings!!High school graduate (includes equivalency)", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C05_017EA,S2001_C05_017M,S2001_C05_017MA"}, "S2201_C01_010E": {"label": "Estimate!!Total!!Households!!With children under 18 years!!Married-couple family", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C01_010EA,S2201_C01_010M,S2201_C01_010MA"}, "S2601A_C04_084E": {"label": "Estimate!!Noninstitutionalized group quarters population!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_084EA,S2601A_C04_084M,S2601A_C04_084MA"}, "S1501_C05_026E": {"label": "Estimate!!Female!!AGE BY EDUCATIONAL ATTAINMENT!!Population 65 years and over!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C05_026EA,S1501_C05_026M,S1501_C05_026MA"}, "S2504_C02_003E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!UNITS IN STRUCTURE!!1, attached", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C02_003EA,S2504_C02_003M,S2504_C02_003MA"}, "S2002_C03_056E": {"label": "Estimate!!Female!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Health care and social assistance", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C03_056EA,S2002_C03_056M,S2002_C03_056MA"}, "S0103_C02_011E": {"label": "Estimate!!65 years and over!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C02_011EA,S0103_C02_011M,S0103_C02_011MA"}, "S0802_C01_023E": {"label": "Estimate!!Total!!Workers 16 years and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born!!Naturalized U.S. citizen", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_023EA,S0802_C01_023M,S0802_C01_023MA"}, "S1401_C02_029E": {"label": "Estimate!!Percent!!Population 18 to 24 years", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C02_029EA,S1401_C02_029M,S1401_C02_029MA"}, "S0502_C04_111E": {"label": "Estimate!!Foreign-born; Entered before 2000!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!Average number of workers per household", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_111EA,S0502_C04_111M,S0502_C04_111MA"}, "S2603_C03_017E": {"label": "Estimate!!Adult correctional facilities!!Total population!!SEX AND AGE!!65 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C03_017EA,S2603_C03_017M,S2603_C03_017MA"}, "S2504_C02_002E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!UNITS IN STRUCTURE!!1, detached", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C02_002EA,S2504_C02_002M,S2504_C02_002MA"}, "S2002_C03_057E": {"label": "Estimate!!Female!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Arts, entertainment, and recreation", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C03_057EA,S2002_C03_057M,S2002_C03_057MA"}, "S0103_C02_012E": {"label": "Estimate!!65 years and over!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C02_012EA,S0103_C02_012M,S0103_C02_012MA"}, "S0802_C01_022E": {"label": "Estimate!!Total!!Workers 16 years and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_022EA,S0802_C01_022M,S0802_C01_022MA"}, "S1401_C02_028E": {"label": "Estimate!!Percent!!Population 35 years and over!!35 years and over enrolled in school", "concept": "School Enrollment", "predicateType": "float", "group": "S1401", "limit": 0, "attributes": "S1401_C02_028EA,S1401_C02_028M,S1401_C02_028MA"}, "S0502_C04_112E": {"label": "Estimate!!Foreign-born; Entered before 2000!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C04_112EA,S0502_C04_112M,S0502_C04_112MA"}, "S2603_C03_018E": {"label": "Estimate!!Adult correctional facilities!!Total population!!SEX AND AGE!!65 years and over!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C03_018EA,S2603_C03_018M,S2603_C03_018MA"}, "S2405_C02_008E": {"label": "Estimate!!Management, business, science, and arts occupations!!Civilian employed population 16 years and over!!Information", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2405", "limit": 0, "attributes": "S2405_C02_008EA,S2405_C02_008M,S2405_C02_008MA"}, "S2002_C03_054E": {"label": "Estimate!!Female!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Administrative and support and waste management services", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C03_054EA,S2002_C03_054M,S2002_C03_054MA"}, "S0502_C04_113E": {"label": "Estimate!!Foreign-born; Entered before 2000!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!Below 100 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_113EA,S0502_C04_113M,S0502_C04_113MA"}, "S0103_C02_013E": {"label": "Estimate!!65 years and over!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C02_013EA,S0103_C02_013M,S0103_C02_013MA"}, "S0802_C01_021E": {"label": "Estimate!!Total!!Workers 16 years and over!!NATIVITY AND CITIZENSHIP STATUS!!Native", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_021EA,S0802_C01_021M,S0802_C01_021MA"}, "S2504_C02_005E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!UNITS IN STRUCTURE!!3 or 4 apartments", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C02_005EA,S2504_C02_005M,S2504_C02_005MA"}, "S2603_C03_015E": {"label": "Estimate!!Adult correctional facilities!!Total population!!SEX AND AGE!!Under 18 years!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C03_015EA,S2603_C03_015M,S2603_C03_015MA"}, "S2504_C02_004E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!UNITS IN STRUCTURE!!2 apartments", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C02_004EA,S2504_C02_004M,S2504_C02_004MA"}, "S2002_C03_055E": {"label": "Estimate!!Female!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Educational services", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C03_055EA,S2002_C03_055M,S2002_C03_055MA"}, "S2405_C02_009E": {"label": "Estimate!!Management, business, science, and arts occupations!!Civilian employed population 16 years and over!!Finance and insurance, and real estate and rental and leasing", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2405", "limit": 0, "attributes": "S2405_C02_009EA,S2405_C02_009M,S2405_C02_009MA"}, "S0802_C01_020E": {"label": "Estimate!!Total!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_020EA,S0802_C01_020M,S0802_C01_020MA"}, "S0502_C04_114E": {"label": "Estimate!!Foreign-born; Entered before 2000!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!100 to 199 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_114EA,S0502_C04_114M,S0502_C04_114MA"}, "S0103_C02_014E": {"label": "Estimate!!65 years and over!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C02_014EA,S0103_C02_014M,S0103_C02_014MA"}, "S2603_C03_016E": {"label": "Estimate!!Adult correctional facilities!!Total population!!SEX AND AGE!!Under 18 years!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C03_016EA,S2603_C03_016M,S2603_C03_016MA"}, "S2002_C03_052E": {"label": "Estimate!!Female!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Professional, scientific, and technical services", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C03_052EA,S2002_C03_052M,S2002_C03_052MA"}, "S2405_C02_006E": {"label": "Estimate!!Management, business, science, and arts occupations!!Civilian employed population 16 years and over!!Retail trade", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2405", "limit": 0, "attributes": "S2405_C02_006EA,S2405_C02_006M,S2405_C02_006MA"}, "S0502_C04_115E": {"label": "Estimate!!Foreign-born; Entered before 2000!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!At or above 200 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_115EA,S0502_C04_115M,S0502_C04_115MA"}, "S0103_C02_015E": {"label": "Estimate!!65 years and over!!RELATIONSHIP!!Population in households", "concept": "Population 65 Years and Over in the United States", "predicateType": "int", "group": "S0103", "limit": 0, "attributes": "S0103_C02_015EA,S0103_C02_015M,S0103_C02_015MA"}, "S0504_C01_010E": {"label": "Estimate!!Total!!Foreign-born population!!SEX AND AGE!!Male", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_010EA,S0504_C01_010M,S0504_C01_010MA"}, "S2504_C02_007E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!UNITS IN STRUCTURE!!10 or more apartments", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C02_007EA,S2504_C02_007M,S2504_C02_007MA"}, "S2405_C02_007E": {"label": "Estimate!!Management, business, science, and arts occupations!!Civilian employed population 16 years and over!!Transportation and warehousing, and utilities", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2405", "limit": 0, "attributes": "S2405_C02_007EA,S2405_C02_007M,S2405_C02_007MA"}, "S2002_C03_053E": {"label": "Estimate!!Female!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Management of companies and enterprises", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C03_053EA,S2002_C03_053M,S2002_C03_053MA"}, "S0505_C04_009E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen!!Entered before 2000", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_009EA,S0505_C04_009M,S0505_C04_009MA"}, "S0502_C04_116E": {"label": "Estimate!!Foreign-born; Entered before 2000!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_116EA,S0502_C04_116M,S0502_C04_116MA"}, "S0103_C02_016E": {"label": "Estimate!!65 years and over!!RELATIONSHIP!!Population in households!!Householder or spouse", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C02_016EA,S0103_C02_016M,S0103_C02_016MA"}, "S2601A_C04_090E": {"label": "Estimate!!Noninstitutionalized group quarters population!!EMPLOYMENT STATUS!!Population 16 years and over!!Not in labor force", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_090EA,S2601A_C04_090M,S2601A_C04_090MA"}, "S2504_C02_006E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!UNITS IN STRUCTURE!!5 to 9 apartments", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C02_006EA,S2504_C02_006M,S2504_C02_006MA"}, "S2002_C03_050E": {"label": "Estimate!!Female!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Finance and insurance", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C03_050EA,S2002_C03_050M,S2002_C03_050MA"}, "S0505_C04_008E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen!!Entered 2000 to 2009", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_008EA,S0505_C04_008M,S0505_C04_008MA"}, "S0902_C04_018E": {"label": "Estimate!!Hispanic or Latino origin (of any race)!!Population 16 to 19 years!!LABOR FORCE STATUS!!In the labor force", "concept": "Characteristics of Teenagers 15 to 19 Years Old", "predicateType": "float", "group": "S0902", "limit": 0, "attributes": "S0902_C04_018EA,S0902_C04_018M,S0902_C04_018MA"}, "S0502_C04_117E": {"label": "Estimate!!Foreign-born; Entered before 2000!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_117EA,S0502_C04_117M,S0502_C04_117MA"}, "S0103_C02_017E": {"label": "Estimate!!65 years and over!!RELATIONSHIP!!Population in households!!Parent", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C02_017EA,S0103_C02_017M,S0103_C02_017MA"}, "S2603_C03_019E": {"label": "Estimate!!Adult correctional facilities!!Total population!!SEX AND AGE!!65 years and over!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C03_019EA,S2603_C03_019M,S2603_C03_019MA"}, "S2405_C02_004E": {"label": "Estimate!!Management, business, science, and arts occupations!!Civilian employed population 16 years and over!!Manufacturing", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2405", "limit": 0, "attributes": "S2405_C02_004EA,S2405_C02_004M,S2405_C02_004MA"}, "S2504_C02_009E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!YEAR STRUCTURE BUILT!!2020 or later", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C02_009EA,S2504_C02_009M,S2504_C02_009MA"}, "S2002_C03_051E": {"label": "Estimate!!Female!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Real estate and rental and leasing", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C03_051EA,S2002_C03_051M,S2002_C03_051MA"}, "S2405_C02_005E": {"label": "Estimate!!Management, business, science, and arts occupations!!Civilian employed population 16 years and over!!Wholesale trade", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2405", "limit": 0, "attributes": "S2405_C02_005EA,S2405_C02_005M,S2405_C02_005MA"}, "S0505_C04_007E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen!!Entered 2010 or later", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_007EA,S0505_C04_007M,S0505_C04_007MA"}, "S0502_C04_118E": {"label": "Estimate!!Foreign-born; Entered before 2000!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_118EA,S0502_C04_118M,S0502_C04_118MA"}, "S0103_C02_018E": {"label": "Estimate!!65 years and over!!RELATIONSHIP!!Population in households!!Other relatives", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C02_018EA,S0103_C02_018M,S0103_C02_018MA"}, "S2504_C02_008E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!UNITS IN STRUCTURE!!Mobile home or other type of housing", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C02_008EA,S2504_C02_008M,S2504_C02_008MA"}, "S0902_C04_016E": {"label": "Estimate!!Hispanic or Latino origin (of any race)!!Population 16 to 19 years", "concept": "Characteristics of Teenagers 15 to 19 Years Old", "predicateType": "int", "group": "S0902", "limit": 0, "attributes": "S0902_C04_016EA,S0902_C04_016M,S0902_C04_016MA"}, "S2701_C02_060E": {"label": "Estimate!!Insured!!Civilian noninstitutionalized population!!RATIO OF INCOME TO POVERTY LEVEL IN THE PAST 12 MONTHS!!Civilian noninstitutionalized population for whom poverty status is determined!!At or above 400 percent of the poverty threshold", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C02_060EA,S2701_C02_060M,S2701_C02_060MA"}, "S0505_C04_006E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_006EA,S0505_C04_006M,S0505_C04_006MA"}, "S0504_C01_014E": {"label": "Estimate!!Total!!Foreign-born population!!SEX AND AGE!!18 to 24 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_014EA,S0504_C01_014M,S0504_C01_014MA"}, "S2405_C02_002E": {"label": "Estimate!!Management, business, science, and arts occupations!!Civilian employed population 16 years and over!!Agriculture, forestry, fishing and hunting, and mining", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2405", "limit": 0, "attributes": "S2405_C02_002EA,S2405_C02_002M,S2405_C02_002MA"}, "S0902_C04_017E": {"label": "Estimate!!Hispanic or Latino origin (of any race)!!Population 16 to 19 years!!IDLENESS!!Not enrolled in school and not in the labor force", "concept": "Characteristics of Teenagers 15 to 19 Years Old", "predicateType": "float", "group": "S0902", "limit": 0, "attributes": "S0902_C04_017EA,S0902_C04_017M,S0902_C04_017MA"}, "S0505_C04_005E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen!!Entered before 2000", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_005EA,S0505_C04_005M,S0505_C04_005MA"}, "S0504_C01_013E": {"label": "Estimate!!Total!!Foreign-born population!!SEX AND AGE!!5 to 17 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_013EA,S0504_C01_013M,S0504_C01_013MA"}, "S2405_C02_003E": {"label": "Estimate!!Management, business, science, and arts occupations!!Civilian employed population 16 years and over!!Construction", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2405", "limit": 0, "attributes": "S2405_C02_003EA,S2405_C02_003M,S2405_C02_003MA"}, "S0902_C04_014E": {"label": "Estimate!!Hispanic or Latino origin (of any race)!!HOUSEHOLD TYPE!!Population 15 to 19 years in households!!In female householder, no spouse present, family households", "concept": "Characteristics of Teenagers 15 to 19 Years Old", "predicateType": "float", "group": "S0902", "limit": 0, "attributes": "S0902_C04_014EA,S0902_C04_014M,S0902_C04_014MA"}, "S0505_C04_004E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen!!Entered 2000 to 2009", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_004EA,S0505_C04_004M,S0505_C04_004MA"}, "S0504_C01_012E": {"label": "Estimate!!Total!!Foreign-born population!!SEX AND AGE!!Under 5 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_012EA,S0504_C01_012M,S0504_C01_012MA"}, "S0802_C01_029E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$1 to $9,999 or loss", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_029EA,S0802_C01_029M,S0802_C01_029MA"}, "S2701_C02_061E": {"label": "Estimate!!Insured!!Civilian noninstitutionalized population!!RATIO OF INCOME TO POVERTY LEVEL IN THE PAST 12 MONTHS!!Civilian noninstitutionalized population for whom poverty status is determined!!Below 100 percent of the poverty threshold", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C02_061EA,S2701_C02_061M,S2701_C02_061MA"}, "S0902_C04_015E": {"label": "Estimate!!Hispanic or Latino origin (of any race)!!HOUSEHOLD TYPE!!Population 15 to 19 years in households!!In nonfamily households", "concept": "Characteristics of Teenagers 15 to 19 Years Old", "predicateType": "float", "group": "S0902", "limit": 0, "attributes": "S0902_C04_015EA,S0902_C04_015M,S0902_C04_015MA"}, "S0504_C01_011E": {"label": "Estimate!!Total!!Foreign-born population!!SEX AND AGE!!Female", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_011EA,S0504_C01_011M,S0504_C01_011MA"}, "S0505_C04_003E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen!!Entered 2010 or later", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_003EA,S0505_C04_003M,S0505_C04_003MA"}, "S0802_C01_028E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "int", "group": "S0802", "limit": 0, "attributes": "S0802_C01_028EA,S0802_C01_028M,S0802_C01_028MA"}, "S2405_C02_001E": {"label": "Estimate!!Management, business, science, and arts occupations!!Civilian employed population 16 years and over", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2405", "limit": 0, "attributes": "S2405_C02_001EA,S2405_C02_001M,S2405_C02_001MA"}, "S0902_C04_012E": {"label": "Estimate!!Hispanic or Latino origin (of any race)!!HOUSEHOLD TYPE!!Population 15 to 19 years in households!!In married-couple family households", "concept": "Characteristics of Teenagers 15 to 19 Years Old", "predicateType": "float", "group": "S0902", "limit": 0, "attributes": "S0902_C04_012EA,S0902_C04_012M,S0902_C04_012MA"}, "S0505_C04_002E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_002EA,S0505_C04_002M,S0505_C04_002MA"}, "S0802_C01_027E": {"label": "Estimate!!Total!!Workers 16 years and over!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Speak language other than English!!Speak English less than \"very well\"", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_027EA,S0802_C01_027M,S0802_C01_027MA"}, "S0504_C01_018E": {"label": "Estimate!!Total!!Foreign-born population!!SEX AND AGE!!65 to 74 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_018EA,S0504_C01_018M,S0504_C01_018MA"}, "S0902_C04_013E": {"label": "Estimate!!Hispanic or Latino origin (of any race)!!HOUSEHOLD TYPE!!Population 15 to 19 years in households!!In male householder, no spouse present, family households", "concept": "Characteristics of Teenagers 15 to 19 Years Old", "predicateType": "float", "group": "S0902", "limit": 0, "attributes": "S0902_C04_013EA,S0902_C04_013M,S0902_C04_013MA"}, "S0505_C04_001E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Foreign-born population", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C04_001EA,S0505_C04_001M,S0505_C04_001MA"}, "S0802_C01_026E": {"label": "Estimate!!Total!!Workers 16 years and over!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Speak language other than English!!Speak English \"very well\"", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_026EA,S0802_C01_026M,S0802_C01_026MA"}, "S0504_C01_017E": {"label": "Estimate!!Total!!Foreign-born population!!SEX AND AGE!!55 to 64 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_017EA,S0504_C01_017M,S0504_C01_017MA"}, "S0902_C04_010E": {"label": "Estimate!!Hispanic or Latino origin (of any race)!!Population 15 to 19 years!!MARITAL STATUS AND FERTILITY!!Female!!Female with a birth in the past 12 months", "concept": "Characteristics of Teenagers 15 to 19 Years Old", "predicateType": "float", "group": "S0902", "limit": 0, "attributes": "S0902_C04_010EA,S0902_C04_010M,S0902_C04_010MA"}, "S2504_C02_001E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C02_001EA,S2504_C02_001M,S2504_C02_001MA"}, "S0802_C01_025E": {"label": "Estimate!!Total!!Workers 16 years and over!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Speak language other than English", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_025EA,S0802_C01_025M,S0802_C01_025MA"}, "S0504_C01_016E": {"label": "Estimate!!Total!!Foreign-born population!!SEX AND AGE!!45 to 54 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_016EA,S0504_C01_016M,S0504_C01_016MA"}, "S0902_C04_011E": {"label": "Estimate!!Hispanic or Latino origin (of any race)!!HOUSEHOLD TYPE!!Population 15 to 19 years in households", "concept": "Characteristics of Teenagers 15 to 19 Years Old", "predicateType": "int", "group": "S0902", "limit": 0, "attributes": "S0902_C04_011EA,S0902_C04_011M,S0902_C04_011MA"}, "S0103_C02_010E": {"label": "Estimate!!65 years and over!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C02_010EA,S0103_C02_010M,S0103_C02_010MA"}, "S0802_C01_024E": {"label": "Estimate!!Total!!Workers 16 years and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born!!Not a U.S. citizen", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_024EA,S0802_C01_024M,S0802_C01_024MA"}, "S0504_C01_015E": {"label": "Estimate!!Total!!Foreign-born population!!SEX AND AGE!!25 to 44 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_015EA,S0504_C01_015M,S0504_C01_015MA"}, "S0502_C04_110E": {"label": "Estimate!!Foreign-born; Entered before 2000!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!Median Household income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C04_110EA,S0502_C04_110M,S0502_C04_110MA"}, "S1501_C05_013E": {"label": "Estimate!!Female!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Graduate or professional degree", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C05_013EA,S1501_C05_013M,S1501_C05_013MA"}, "S2407_C01_004E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Manufacturing", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2407", "limit": 0, "attributes": "S2407_C01_004EA,S2407_C01_004M,S2407_C01_004MA"}, "S2601CPR_C02_080E": {"label": "Estimate!!Total group quarters population!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!English only", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_080EA,S2601CPR_C02_080M,S2601CPR_C02_080MA"}, "S2001_C05_004E": {"label": "Estimate!!Female!!Population 16 years and over with earnings!!FULL-TIME, YEAR-ROUND WORKERS WITH EARNINGS!!$1 to $9,999 or loss", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C05_004EA,S2001_C05_004M,S2001_C05_004MA"}, "S2201_C01_007E": {"label": "Estimate!!Total!!Households!!Other family:!!Female householder, no spouse present", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C01_007EA,S2201_C01_007M,S2201_C01_007MA"}, "S2601A_C04_077E": {"label": "Estimate!!Noninstitutionalized group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Entered 2000 to 2009", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_077EA,S2601A_C04_077M,S2601A_C04_077MA"}, "S1501_C05_012E": {"label": "Estimate!!Female!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C05_012EA,S1501_C05_012M,S1501_C05_012MA"}, "S2001_C05_003E": {"label": "Estimate!!Female!!Population 16 years and over with earnings!!FULL-TIME, YEAR-ROUND WORKERS WITH EARNINGS", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C05_003EA,S2001_C05_003M,S2001_C05_003MA"}, "S0504_C01_009E": {"label": "Estimate!!Total!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen!!Entered before 2000", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_009EA,S0504_C01_009M,S0504_C01_009MA"}, "S2407_C01_003E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Construction", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2407", "limit": 0, "attributes": "S2407_C01_003EA,S2407_C01_003M,S2407_C01_003MA"}, "S2201_C01_008E": {"label": "Estimate!!Total!!Households!!Nonfamily households", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C01_008EA,S2201_C01_008M,S2201_C01_008MA"}, "S2601A_C04_078E": {"label": "Estimate!!Noninstitutionalized group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Entered before 2000", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_078EA,S2601A_C04_078M,S2601A_C04_078MA"}, "S1501_C05_011E": {"label": "Estimate!!Female!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Associate's degree", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C05_011EA,S1501_C05_011M,S1501_C05_011MA"}, "S2601CPR_C02_082E": {"label": "Estimate!!Total group quarters population!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English!!Speak English less than \"very well\"", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_082EA,S2601CPR_C02_082M,S2601CPR_C02_082MA"}, "S2407_C01_006E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Retail trade", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2407", "limit": 0, "attributes": "S2407_C01_006EA,S2407_C01_006M,S2407_C01_006MA"}, "S2001_C05_002E": {"label": "Estimate!!Female!!Population 16 years and over with earnings!!Median earnings (dollars)", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C05_002EA,S2001_C05_002M,S2001_C05_002MA"}, "S0504_C01_008E": {"label": "Estimate!!Total!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen!!Entered 2000 to 2009", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_008EA,S0504_C01_008M,S0504_C01_008MA"}, "S2601A_C04_075E": {"label": "Estimate!!Noninstitutionalized group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Not a U.S. citizen!!Female", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_075EA,S2601A_C04_075M,S2601A_C04_075MA"}, "S2201_C01_009E": {"label": "Estimate!!Total!!Households!!With children under 18 years", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C01_009EA,S2201_C01_009M,S2201_C01_009MA"}, "S0502PR_C04_091E": {"label": "Estimate!!Foreign-born; Entered before 2000!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$15,000 to $24,999", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_091EA,S0502PR_C04_091M,S0502PR_C04_091MA"}, "S1501_C05_010E": {"label": "Estimate!!Female!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college, no degree", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C05_010EA,S1501_C05_010M,S1501_C05_010MA"}, "S2407_C01_005E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Wholesale trade", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2407", "limit": 0, "attributes": "S2407_C01_005EA,S2407_C01_005M,S2407_C01_005MA"}, "S2001_C05_001E": {"label": "Estimate!!Female!!Population 16 years and over with earnings", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C05_001EA,S2001_C05_001M,S2001_C05_001MA"}, "S2601CPR_C02_081E": {"label": "Estimate!!Total group quarters population!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_081EA,S2601CPR_C02_081M,S2601CPR_C02_081MA"}, "S0504_C01_007E": {"label": "Estimate!!Total!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen!!Entered 2010 or later", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_007EA,S0504_C01_007M,S0504_C01_007MA"}, "S2601A_C04_076E": {"label": "Estimate!!Noninstitutionalized group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Entered 2010 or later", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_076EA,S2601A_C04_076M,S2601A_C04_076MA"}, "S0502PR_C04_090E": {"label": "Estimate!!Foreign-born; Entered before 2000!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$10,000 to $14,999", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_090EA,S0502PR_C04_090M,S0502PR_C04_090MA"}, "S2601CPR_C02_084E": {"label": "Estimate!!Total group quarters population!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_084EA,S2601CPR_C02_084M,S2601CPR_C02_084MA"}, "S0502PR_C04_093E": {"label": "Estimate!!Foreign-born; Entered before 2000!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$35,000 to $49,999", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_093EA,S0502PR_C04_093M,S0502PR_C04_093MA"}, "S2201_C01_003E": {"label": "Estimate!!Total!!Households!!No people in the household 60 years and over", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C01_003EA,S2201_C01_003M,S2201_C01_003MA"}, "S2603_C03_030E": {"label": "Estimate!!Adult correctional facilities!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!White alone, Not Hispanic or Latino", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C03_030EA,S2603_C03_030M,S2603_C03_030MA"}, "S2601CPR_C02_083E": {"label": "Estimate!!Total group quarters population!!EMPLOYMENT STATUS!!Population 16 years and over", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "int", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_083EA,S2601CPR_C02_083M,S2601CPR_C02_083MA"}, "S0502PR_C04_092E": {"label": "Estimate!!Foreign-born; Entered before 2000!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$25,000 to $34,999", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_092EA,S0502PR_C04_092M,S0502PR_C04_092MA"}, "S2201_C01_004E": {"label": "Estimate!!Total!!Households!!Married-couple family", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C01_004EA,S2201_C01_004M,S2201_C01_004MA"}, "S2601CPR_C02_086E": {"label": "Estimate!!Total group quarters population!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Employed", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_086EA,S2601CPR_C02_086M,S2601CPR_C02_086MA"}, "S0502PR_C04_095E": {"label": "Estimate!!Foreign-born; Entered before 2000!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$75,000 or more", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_095EA,S0502PR_C04_095M,S0502PR_C04_095MA"}, "S0802_C01_009E": {"label": "Estimate!!Total!!Workers 16 years and over!!SEX!!Male", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_009EA,S0802_C01_009M,S0802_C01_009MA"}, "S2201_C01_005E": {"label": "Estimate!!Total!!Households!!Other family:", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C01_005EA,S2201_C01_005M,S2201_C01_005MA"}, "S2407_C01_002E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Agriculture, forestry, fishing and hunting, and mining", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2407", "limit": 0, "attributes": "S2407_C01_002EA,S2407_C01_002M,S2407_C01_002MA"}, "S2601A_C04_079E": {"label": "Estimate!!Noninstitutionalized group quarters population!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_079EA,S2601A_C04_079M,S2601A_C04_079MA"}, "S2601CPR_C02_085E": {"label": "Estimate!!Total group quarters population!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_085EA,S2601CPR_C02_085M,S2601CPR_C02_085MA"}, "S0502PR_C04_094E": {"label": "Estimate!!Foreign-born; Entered before 2000!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$50,000 to $74,999", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_094EA,S0502PR_C04_094M,S0502PR_C04_094MA"}, "S0802_C01_008E": {"label": "Estimate!!Total!!Workers 16 years and over!!AGE!!Median age (years)", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_008EA,S0802_C01_008M,S0802_C01_008MA"}, "S2407_C01_001E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2407", "limit": 0, "attributes": "S2407_C01_001EA,S2407_C01_001M,S2407_C01_001MA"}, "S2201_C01_006E": {"label": "Estimate!!Total!!Households!!Other family:!!Male householder, no spouse present", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C01_006EA,S2201_C01_006M,S2201_C01_006MA"}, "S2601CPR_C02_088E": {"label": "Estimate!!Total group quarters population!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed!!Percent of civilian labor force", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_088EA,S2601CPR_C02_088M,S2601CPR_C02_088MA"}, "S2603_C03_033E": {"label": "Estimate!!Adult correctional facilities!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C03_033EA,S2603_C03_033M,S2603_C03_033MA"}, "S2406_C05_005E": {"label": "Estimate!!Local, state, and federal government workers!!Civilian employed population 16 years and over!!Natural resources, construction, and maintenance occupations", "concept": "Occupation by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2406", "limit": 0, "attributes": "S2406_C05_005EA,S2406_C05_005M,S2406_C05_005MA"}, "S2603_C03_034E": {"label": "Estimate!!Adult correctional facilities!!MARITAL STATUS!!Population 15 years and over!!Divorced", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C03_034EA,S2603_C03_034M,S2603_C03_034MA"}, "S2601CPR_C02_087E": {"label": "Estimate!!Total group quarters population!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_087EA,S2601CPR_C02_087M,S2601CPR_C02_087MA"}, "REGION": {"label": "Region", "group": "N/A", "limit": 0}, "S2601A_C04_070E": {"label": "Estimate!!Noninstitutionalized group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Naturalized U.S. citizen", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_070EA,S2601A_C04_070M,S2601A_C04_070MA"}, "S2406_C05_004E": {"label": "Estimate!!Local, state, and federal government workers!!Civilian employed population 16 years and over!!Sales and office occupations", "concept": "Occupation by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2406", "limit": 0, "attributes": "S2406_C05_004EA,S2406_C05_004M,S2406_C05_004MA"}, "S2603_C03_031E": {"label": "Estimate!!Adult correctional facilities!!MARITAL STATUS!!Population 15 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C03_031EA,S2603_C03_031M,S2603_C03_031MA"}, "S2201_C01_001E": {"label": "Estimate!!Total!!Households", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C01_001EA,S2201_C01_001M,S2201_C01_001MA"}, "S2406_C05_007E": {"label": "Estimate!!Local, state, and federal government workers!!PERCENT ALLOCATED!!Occupation", "concept": "Occupation by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2406", "limit": 0, "attributes": "S2406_C05_007EA,S2406_C05_007M,S2406_C05_007MA"}, "S1501_C05_019E": {"label": "Estimate!!Female!!AGE BY EDUCATIONAL ATTAINMENT!!Population 35 to 44 years", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C05_019EA,S1501_C05_019M,S1501_C05_019MA"}, "S2601CPR_C02_089E": {"label": "Estimate!!Total group quarters population!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Armed Forces", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_089EA,S2601CPR_C02_089M,S2601CPR_C02_089MA"}, "S2603_C03_032E": {"label": "Estimate!!Adult correctional facilities!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C03_032EA,S2603_C03_032M,S2603_C03_032MA"}, "S2001_C05_009E": {"label": "Estimate!!Female!!Population 16 years and over with earnings!!FULL-TIME, YEAR-ROUND WORKERS WITH EARNINGS!!$50,000 to $64,999", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C05_009EA,S2001_C05_009M,S2001_C05_009MA"}, "S2201_C01_002E": {"label": "Estimate!!Total!!Households!!With one or more people in the household 60 years and over", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C01_002EA,S2201_C01_002M,S2201_C01_002MA"}, "S1501_C05_018E": {"label": "Estimate!!Female!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 to 34 years!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C05_018EA,S1501_C05_018M,S1501_C05_018MA"}, "S2406_C05_006E": {"label": "Estimate!!Local, state, and federal government workers!!Civilian employed population 16 years and over!!Production, transportation, and material moving occupations", "concept": "Occupation by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2406", "limit": 0, "attributes": "S2406_C05_006EA,S2406_C05_006M,S2406_C05_006MA"}, "S2407_C01_008E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Information", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2407", "limit": 0, "attributes": "S2407_C01_008EA,S2407_C01_008M,S2407_C01_008MA"}, "S2002_C03_048E": {"label": "Estimate!!Female!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Utilities", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C03_048EA,S2002_C03_048M,S2002_C03_048MA"}, "S0502_C02_096E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!Median earnings (dollars) for full-time, year-round workers!!Male", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C02_096EA,S0502_C02_096M,S0502_C02_096MA"}, "S2001_C05_008E": {"label": "Estimate!!Female!!Population 16 years and over with earnings!!FULL-TIME, YEAR-ROUND WORKERS WITH EARNINGS!!$35,000 to $49,999", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C05_008EA,S2001_C05_008M,S2001_C05_008MA"}, "S1501_C05_017E": {"label": "Estimate!!Female!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 to 34 years!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C05_017EA,S1501_C05_017M,S1501_C05_017MA"}, "S2601A_C04_073E": {"label": "Estimate!!Noninstitutionalized group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Not a U.S. citizen", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_073EA,S2601A_C04_073M,S2601A_C04_073MA"}, "S2603_C03_037E": {"label": "Estimate!!Adult correctional facilities!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C03_037EA,S2603_C03_037M,S2603_C03_037MA"}, "S2407_C01_007E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Transportation and warehousing, and utilities", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2407", "limit": 0, "attributes": "S2407_C01_007EA,S2407_C01_007M,S2407_C01_007MA"}, "S2002_C03_049E": {"label": "Estimate!!Female!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Information", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C03_049EA,S2002_C03_049M,S2002_C03_049MA"}, "S0502_C02_097E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!Median earnings (dollars) for full-time, year-round workers!!Female", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C02_097EA,S0502_C02_097M,S0502_C02_097MA"}, "S2701_C02_059E": {"label": "Estimate!!Insured!!Civilian noninstitutionalized population!!RATIO OF INCOME TO POVERTY LEVEL IN THE PAST 12 MONTHS!!Civilian noninstitutionalized population for whom poverty status is determined!!138 to 399 percent of the poverty threshold", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C02_059EA,S2701_C02_059M,S2701_C02_059MA"}, "S2001_C05_007E": {"label": "Estimate!!Female!!Population 16 years and over with earnings!!FULL-TIME, YEAR-ROUND WORKERS WITH EARNINGS!!$25,000 to $34,999", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C05_007EA,S2001_C05_007M,S2001_C05_007MA"}, "S2601A_C04_074E": {"label": "Estimate!!Noninstitutionalized group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Not a U.S. citizen!!Male", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_074EA,S2601A_C04_074M,S2601A_C04_074MA"}, "S1501_C05_016E": {"label": "Estimate!!Female!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 to 34 years", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C05_016EA,S1501_C05_016M,S1501_C05_016MA"}, "S2603_C03_038E": {"label": "Estimate!!Adult correctional facilities!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Nursery school through 12th grade", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C03_038EA,S2603_C03_038M,S2603_C03_038MA"}, "S2603_C03_035E": {"label": "Estimate!!Adult correctional facilities!!MARITAL STATUS!!Population 15 years and over!!Separated", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C03_035EA,S2603_C03_035M,S2603_C03_035MA"}, "S2002_C03_046E": {"label": "Estimate!!Female!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Retail trade", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C03_046EA,S2002_C03_046M,S2002_C03_046MA"}, "S0502_C02_098E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C02_098EA,S0502_C02_098M,S0502_C02_098MA"}, "S2001_C05_006E": {"label": "Estimate!!Female!!Population 16 years and over with earnings!!FULL-TIME, YEAR-ROUND WORKERS WITH EARNINGS!!$15,000 to $24,999", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C05_006EA,S2001_C05_006M,S2001_C05_006MA"}, "S2601A_C04_071E": {"label": "Estimate!!Noninstitutionalized group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Naturalized U.S. citizen!!Male", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_071EA,S2601A_C04_071M,S2601A_C04_071MA"}, "S1501_C05_015E": {"label": "Estimate!!Female!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C05_015EA,S1501_C05_015M,S1501_C05_015MA"}, "S2407_C01_009E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Finance and insurance, and real estate and rental and leasing", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2407", "limit": 0, "attributes": "S2407_C01_009EA,S2407_C01_009M,S2407_C01_009MA"}, "S2603_C03_036E": {"label": "Estimate!!Adult correctional facilities!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C03_036EA,S2603_C03_036M,S2603_C03_036MA"}, "S1501_C05_014E": {"label": "Estimate!!Female!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C05_014EA,S1501_C05_014M,S1501_C05_014MA"}, "S2002_C03_047E": {"label": "Estimate!!Female!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Transportation and warehousing", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C03_047EA,S2002_C03_047M,S2002_C03_047MA"}, "S0502_C02_099E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_099EA,S0502_C02_099M,S0502_C02_099MA"}, "S2001_C05_005E": {"label": "Estimate!!Female!!Population 16 years and over with earnings!!FULL-TIME, YEAR-ROUND WORKERS WITH EARNINGS!!$10,000 to $14,999", "concept": "Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S2001", "limit": 0, "attributes": "S2001_C05_005EA,S2001_C05_005M,S2001_C05_005MA"}, "S2601A_C04_072E": {"label": "Estimate!!Noninstitutionalized group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Naturalized U.S. citizen!!Female", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_072EA,S2601A_C04_072M,S2601A_C04_072MA"}, "S2002_C03_044E": {"label": "Estimate!!Female!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Manufacturing", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C03_044EA,S2002_C03_044M,S2002_C03_044MA"}, "S0502_C02_092E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$25,000 to $34,999", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_092EA,S0502_C02_092M,S0502_C02_092MA"}, "S2701_C02_056E": {"label": "Estimate!!Insured!!Civilian noninstitutionalized population!!HOUSEHOLD INCOME (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Total household population!!$100,000 and over", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C02_056EA,S2701_C02_056M,S2701_C02_056MA"}, "S0802_C01_011E": {"label": "Estimate!!Total!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_011EA,S0802_C01_011M,S0802_C01_011MA"}, "S0102PR_C02_101E": {"label": "Estimate!!60 years and over!!Owner-occupied housing units!!OWNER CHARACTERISTICS!!Median selected monthly owner costs with a mortgage (dollars)", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_101EA,S0102PR_C02_101M,S0102PR_C02_101MA"}, "S0502_C04_123E": {"label": "Estimate!!Foreign-born; Entered before 2000!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_123EA,S0502_C04_123M,S0502_C04_123MA"}, "S2603_C03_029E": {"label": "Estimate!!Adult correctional facilities!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!Hispanic or Latino (of any race)", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C03_029EA,S2603_C03_029M,S2603_C03_029MA"}, "S2002_C03_045E": {"label": "Estimate!!Female!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Wholesale trade", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C03_045EA,S2002_C03_045M,S2002_C03_045MA"}, "S0502_C02_093E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$35,000 to $49,999", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_093EA,S0502_C02_093M,S0502_C02_093MA"}, "S2701_C02_055E": {"label": "Estimate!!Insured!!Civilian noninstitutionalized population!!HOUSEHOLD INCOME (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Total household population!!$75,000 to $99,999", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C02_055EA,S2701_C02_055M,S2701_C02_055MA"}, "S0502_C04_124E": {"label": "Estimate!!Foreign-born; Entered before 2000!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_124EA,S0502_C04_124M,S0502_C04_124MA"}, "S0802_C01_010E": {"label": "Estimate!!Total!!Workers 16 years and over!!SEX!!Female", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_010EA,S0802_C01_010M,S0802_C01_010MA"}, "S0102PR_C02_102E": {"label": "Estimate!!60 years and over!!Owner-occupied housing units!!OWNER CHARACTERISTICS!!Median selected monthly owner costs without a mortgage (dollars)", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_102EA,S0102PR_C02_102M,S0102PR_C02_102MA"}, "S2002_C03_042E": {"label": "Estimate!!Female!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Mining, quarrying, and oil and gas extraction", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C03_042EA,S2002_C03_042M,S2002_C03_042MA"}, "S0502_C02_094E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$50,000 to $74,999", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_094EA,S0502_C02_094M,S0502_C02_094MA"}, "S0103_C02_001E": {"label": "Estimate!!65 years and over!!Total population", "concept": "Population 65 Years and Over in the United States", "predicateType": "int", "group": "S0103", "limit": 0, "attributes": "S0103_C02_001EA,S0103_C02_001M,S0103_C02_001MA"}, "S0502_C04_125E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C04_125EA,S0502_C04_125M,S0502_C04_125MA"}, "S2701_C02_058E": {"label": "Estimate!!Insured!!Civilian noninstitutionalized population!!RATIO OF INCOME TO POVERTY LEVEL IN THE PAST 12 MONTHS!!Civilian noninstitutionalized population for whom poverty status is determined!!Below 138 percent of the poverty threshold", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C02_058EA,S2701_C02_058M,S2701_C02_058MA"}, "S2603_C03_027E": {"label": "Estimate!!Adult correctional facilities!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Some other race", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C03_027EA,S2603_C03_027M,S2603_C03_027MA"}, "S2002_C03_043E": {"label": "Estimate!!Female!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Construction", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C03_043EA,S2002_C03_043M,S2002_C03_043MA"}, "S0502_C02_095E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$75,000 or more", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_095EA,S0502_C02_095M,S0502_C02_095MA"}, "S0103_C02_002E": {"label": "Estimate!!65 years and over!!Total population!!SEX AND AGE!!Male", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C02_002EA,S0103_C02_002M,S0103_C02_002MA"}, "S0502_C04_126E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Occupied housing units!!HOUSING TENURE!!Owner-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_126EA,S0502_C04_126M,S0502_C04_126MA"}, "S2701_C02_057E": {"label": "Estimate!!Insured!!Civilian noninstitutionalized population!!RATIO OF INCOME TO POVERTY LEVEL IN THE PAST 12 MONTHS!!Civilian noninstitutionalized population for whom poverty status is determined", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C02_057EA,S2701_C02_057M,S2701_C02_057MA"}, "S0102PR_C02_100E": {"label": "Estimate!!60 years and over!!Owner-occupied housing units!!OWNER CHARACTERISTICS!!Median value (dollars)", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_100EA,S0102PR_C02_100M,S0102PR_C02_100MA"}, "S2603_C03_028E": {"label": "Estimate!!Adult correctional facilities!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!Two or more races", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C03_028EA,S2603_C03_028M,S2603_C03_028MA"}, "S2002_C03_040E": {"label": "Estimate!!Female!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Material moving occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C03_040EA,S2002_C03_040M,S2002_C03_040MA"}, "S2701_C02_052E": {"label": "Estimate!!Insured!!Civilian noninstitutionalized population!!HOUSEHOLD INCOME (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Total household population!!Under $25,000", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C02_052EA,S2701_C02_052M,S2701_C02_052MA"}, "S0103_C02_003E": {"label": "Estimate!!65 years and over!!Total population!!SEX AND AGE!!Female", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C02_003EA,S0103_C02_003M,S0103_C02_003MA"}, "S0502_C04_127E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Occupied housing units!!HOUSING TENURE!!Renter-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_127EA,S0502_C04_127M,S0502_C04_127MA"}, "S0102PR_C02_105E": {"label": "Estimate!!60 years and over!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_105EA,S0102PR_C02_105M,S0102PR_C02_105MA"}, "S2406_C05_001E": {"label": "Estimate!!Local, state, and federal government workers!!Civilian employed population 16 years and over", "concept": "Occupation by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2406", "limit": 0, "attributes": "S2406_C05_001EA,S2406_C05_001M,S2406_C05_001MA"}, "S2002_C03_041E": {"label": "Estimate!!Female!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!INDUSTRY!!Agriculture, forestry, fishing and hunting", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C03_041EA,S2002_C03_041M,S2002_C03_041MA"}, "S2701_C02_051E": {"label": "Estimate!!Insured!!Civilian noninstitutionalized population!!HOUSEHOLD INCOME (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Total household population", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C02_051EA,S2701_C02_051M,S2701_C02_051MA"}, "S0102PR_C02_106E": {"label": "Estimate!!60 years and over!!Renter-occupied housing units!!GROSS RENT!!Median gross rent (dollars)", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_106EA,S0102PR_C02_106M,S0102PR_C02_106MA"}, "S0502_C04_128E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Occupied housing units!!HOUSING TENURE!!Average household size of owner-occupied unit", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_128EA,S0502_C04_128M,S0502_C04_128MA"}, "S0103_C02_004E": {"label": "Estimate!!65 years and over!!Total population!!SEX AND AGE!!Median age (years)", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C02_004EA,S0103_C02_004M,S0103_C02_004MA"}, "S0502_C02_090E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$10,000 to $14,999", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_090EA,S0502_C02_090M,S0502_C02_090MA"}, "S2701_C02_054E": {"label": "Estimate!!Insured!!Civilian noninstitutionalized population!!HOUSEHOLD INCOME (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Total household population!!$50,000 to $74,999", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C02_054EA,S2701_C02_054M,S2701_C02_054MA"}, "S0502_C04_129E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Occupied housing units!!HOUSING TENURE!!Average household size of renter-occupied unit", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_129EA,S0502_C04_129M,S0502_C04_129MA"}, "S0103_C02_005E": {"label": "Estimate!!65 years and over!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C02_005EA,S0103_C02_005M,S0103_C02_005MA"}, "S0102PR_C02_103E": {"label": "Estimate!!60 years and over!!Renter-occupied housing units", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_103EA,S0102PR_C02_103M,S0102PR_C02_103MA"}, "S2406_C05_003E": {"label": "Estimate!!Local, state, and federal government workers!!Civilian employed population 16 years and over!!Service occupations", "concept": "Occupation by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2406", "limit": 0, "attributes": "S2406_C05_003EA,S2406_C05_003M,S2406_C05_003MA"}, "S0502_C02_091E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$15,000 to $24,999", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_091EA,S0502_C02_091M,S0502_C02_091MA"}, "S2701_C02_053E": {"label": "Estimate!!Insured!!Civilian noninstitutionalized population!!HOUSEHOLD INCOME (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Total household population!!$25,000 to $49,999", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C02_053EA,S2701_C02_053M,S2701_C02_053MA"}, "S0103_C02_006E": {"label": "Estimate!!65 years and over!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C02_006EA,S0103_C02_006M,S0103_C02_006MA"}, "S0102PR_C02_104E": {"label": "Estimate!!60 years and over!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Population 60 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0102PR", "limit": 0, "attributes": "S0102PR_C02_104EA,S0102PR_C02_104M,S0102PR_C02_104MA"}, "S2406_C05_002E": {"label": "Estimate!!Local, state, and federal government workers!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations", "concept": "Occupation by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2406", "limit": 0, "attributes": "S2406_C05_002EA,S2406_C05_002M,S2406_C05_002MA"}, "S0504_C01_002E": {"label": "Estimate!!Total!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_002EA,S0504_C01_002M,S0504_C01_002MA"}, "S0502PR_C04_097E": {"label": "Estimate!!Foreign-born; Entered before 2000!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!Median earnings (dollars) for full-time, year-round workers!!Female", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_097EA,S0502PR_C04_097M,S0502PR_C04_097MA"}, "S0802_C01_019E": {"label": "Estimate!!Total!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_019EA,S0802_C01_019M,S0802_C01_019MA"}, "S2405_C02_014E": {"label": "Estimate!!Management, business, science, and arts occupations!!Civilian employed population 16 years and over!!Public administration", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2405", "limit": 0, "attributes": "S2405_C02_014EA,S2405_C02_014M,S2405_C02_014MA"}, "S0504_C01_001E": {"label": "Estimate!!Total!!Foreign-born population", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C01_001EA,S0504_C01_001M,S0504_C01_001MA"}, "S0502PR_C04_096E": {"label": "Estimate!!Foreign-born; Entered before 2000!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!Median earnings (dollars) for full-time, year-round workers!!Male", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_096EA,S0502PR_C04_096M,S0502PR_C04_096MA"}, "S0802_C01_018E": {"label": "Estimate!!Total!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_018EA,S0802_C01_018M,S0802_C01_018MA"}, "S2405_C02_015E": {"label": "Estimate!!Management, business, science, and arts occupations!!PERCENT ALLOCATED!!Industry", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2405", "limit": 0, "attributes": "S2405_C02_015EA,S2405_C02_015M,S2405_C02_015MA"}, "S2701_C02_050E": {"label": "Estimate!!Insured!!Civilian noninstitutionalized population!!WORK EXPERIENCE!!Civilian noninstitutionalized population 19 to 64 years!!Did not work", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C02_050EA,S2701_C02_050M,S2701_C02_050MA"}, "S0802_C01_017E": {"label": "Estimate!!Total!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_017EA,S0802_C01_017M,S0802_C01_017MA"}, "S0502PR_C04_099E": {"label": "Estimate!!Foreign-born; Entered before 2000!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_099EA,S0502PR_C04_099M,S0502PR_C04_099MA"}, "S2405_C02_012E": {"label": "Estimate!!Management, business, science, and arts occupations!!Civilian employed population 16 years and over!!Arts, entertainment, and recreation, and accommodation and food services", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2405", "limit": 0, "attributes": "S2405_C02_012EA,S2405_C02_012M,S2405_C02_012MA"}, "S2407_C01_010E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Professional, scientific, and management, and administrative and waste management services", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2407", "limit": 0, "attributes": "S2407_C01_010EA,S2407_C01_010M,S2407_C01_010MA"}, "S0802_C01_016E": {"label": "Estimate!!Total!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_016EA,S0802_C01_016M,S0802_C01_016MA"}, "S0502PR_C04_098E": {"label": "Estimate!!Foreign-born; Entered before 2000!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_098EA,S0502PR_C04_098M,S0502PR_C04_098MA"}, "S2405_C02_013E": {"label": "Estimate!!Management, business, science, and arts occupations!!Civilian employed population 16 years and over!!Other services, except public administration", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2405", "limit": 0, "attributes": "S2405_C02_013EA,S2405_C02_013M,S2405_C02_013MA"}, "S0802_C01_015E": {"label": "Estimate!!Total!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_015EA,S0802_C01_015M,S0802_C01_015MA"}, "S0504_C01_006E": {"label": "Estimate!!Total!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_006EA,S0504_C01_006M,S0504_C01_006MA"}, "S2405_C02_010E": {"label": "Estimate!!Management, business, science, and arts occupations!!Civilian employed population 16 years and over!!Professional, scientific, and management, and administrative and waste management services", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2405", "limit": 0, "attributes": "S2405_C02_010EA,S2405_C02_010M,S2405_C02_010MA"}, "S0802_C01_014E": {"label": "Estimate!!Total!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_014EA,S0802_C01_014M,S0802_C01_014MA"}, "S0502_C04_120E": {"label": "Estimate!!Foreign-born; Entered before 2000!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_120EA,S0502_C04_120M,S0502_C04_120MA"}, "S0504_C01_005E": {"label": "Estimate!!Total!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen!!Entered before 2000", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_005EA,S0504_C01_005M,S0504_C01_005MA"}, "S2405_C02_011E": {"label": "Estimate!!Management, business, science, and arts occupations!!Civilian employed population 16 years and over!!Educational services, and health care and social assistance", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2405", "limit": 0, "attributes": "S2405_C02_011EA,S2405_C02_011M,S2405_C02_011MA"}, "S2601CPR_C02_090E": {"label": "Estimate!!Total group quarters population!!EMPLOYMENT STATUS!!Population 16 years and over!!Not in labor force", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_090EA,S2601CPR_C02_090M,S2601CPR_C02_090MA"}, "S0802_C01_013E": {"label": "Estimate!!Total!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_013EA,S0802_C01_013M,S0802_C01_013MA"}, "S0504_C01_004E": {"label": "Estimate!!Total!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen!!Entered 2000 to 2009", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_004EA,S0504_C01_004M,S0504_C01_004MA"}, "S0502_C04_121E": {"label": "Estimate!!Foreign-born; Entered before 2000!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_121EA,S0502_C04_121M,S0502_C04_121MA"}, "S0504_C01_003E": {"label": "Estimate!!Total!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen!!Entered 2010 or later", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_003EA,S0504_C01_003M,S0504_C01_003MA"}, "S0802_C01_012E": {"label": "Estimate!!Total!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_012EA,S0802_C01_012M,S0802_C01_012MA"}, "S0502_C04_122E": {"label": "Estimate!!Foreign-born; Entered before 2000!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_122EA,S0502_C04_122M,S0502_C04_122MA"}, "S2601CPR_C02_092E": {"label": "Estimate!!Total group quarters population!!OCCUPATION!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_092EA,S2601CPR_C02_092M,S2601CPR_C02_092MA"}, "S1810_C03_059E": {"label": "Estimate!!Percent with a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a self-care difficulty!!Population 18 to 64 years!!Population 35 to 64 years", "concept": "Disability Characteristics", "predicateType": "float", "group": "S1810", "limit": 0, "attributes": "S1810_C03_059EA,S1810_C03_059M,S1810_C03_059MA"}, "S0505_C04_034E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Foreign-born population!!Average household size", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_034EA,S0505_C04_034M,S0505_C04_034MA"}, "S2502_C02_001E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2502", "limit": 0, "attributes": "S2502_C02_001EA,S2502_C02_001M,S2502_C02_001MA"}, "S1501_C05_049E": {"label": "Estimate!!Female!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Two or more races", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C05_049EA,S1501_C05_049M,S1501_C05_049MA"}, "S2407_C01_015E": {"label": "Estimate!!Total!!PERCENT ALLOCATED!!Industry", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2407", "limit": 0, "attributes": "S2407_C01_015EA,S2407_C01_015M,S2407_C01_015MA"}, "S2501_C06_009E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C06_009EA,S2501_C06_009M,S2501_C06_009MA"}, "S2601CPR_C02_091E": {"label": "Estimate!!Total group quarters population!!OCCUPATION!!Civilian employed population 16 years and over", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "int", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_091EA,S2601CPR_C02_091M,S2601CPR_C02_091MA"}, "S1810_C03_058E": {"label": "Estimate!!Percent with a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a self-care difficulty!!Population 18 to 64 years!!Population 18 to 34 years", "concept": "Disability Characteristics", "predicateType": "float", "group": "S1810", "limit": 0, "attributes": "S1810_C03_058EA,S1810_C03_058M,S1810_C03_058MA"}, "S0505_C04_033E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Foreign-born population!!HOUSEHOLD TYPE!!In other households", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_033EA,S0505_C04_033M,S0505_C04_033MA"}, "S0101_C02_010E": {"label": "Estimate!!Percent!!Total population!!AGE!!40 to 44 years", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C02_010EA,S0101_C02_010M,S0101_C02_010MA"}, "S1501_C05_048E": {"label": "Estimate!!Female!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Some other race alone!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C05_048EA,S1501_C05_048M,S1501_C05_048MA"}, "S1501_C05_047E": {"label": "Estimate!!Female!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Some other race alone!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C05_047EA,S1501_C05_047M,S1501_C05_047MA"}, "S2601CPR_C02_094E": {"label": "Estimate!!Total group quarters population!!OCCUPATION!!Civilian employed population 16 years and over!!Sales and office occupations", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_094EA,S2601CPR_C02_094M,S2601CPR_C02_094MA"}, "S2502_C02_003E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!One race --!!Black or African American", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C02_003EA,S2502_C02_003M,S2502_C02_003MA"}, "S0505_C04_032E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Foreign-born population!!HOUSEHOLD TYPE!!In married-couple family", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_032EA,S0505_C04_032M,S0505_C04_032MA"}, "S0101_C02_011E": {"label": "Estimate!!Percent!!Total population!!AGE!!45 to 49 years", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C02_011EA,S0101_C02_011M,S0101_C02_011MA"}, "S1501_C05_046E": {"label": "Estimate!!Female!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Some other race alone", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C05_046EA,S1501_C05_046M,S1501_C05_046MA"}, "S2601CPR_C02_093E": {"label": "Estimate!!Total group quarters population!!OCCUPATION!!Civilian employed population 16 years and over!!Service occupations", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_093EA,S2601CPR_C02_093M,S2601CPR_C02_093MA"}, "S0505_C04_031E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_031EA,S0505_C04_031M,S0505_C04_031MA"}, "S0101_C02_012E": {"label": "Estimate!!Percent!!Total population!!AGE!!50 to 54 years", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C02_012EA,S0101_C02_012M,S0101_C02_012MA"}, "S2502_C02_002E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!One race --!!White", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C02_002EA,S2502_C02_002M,S2502_C02_002MA"}, "S2601CPR_C02_096E": {"label": "Estimate!!Total group quarters population!!OCCUPATION!!Civilian employed population 16 years and over!!Production, transportation, and material moving occupations", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_096EA,S2601CPR_C02_096M,S2601CPR_C02_096MA"}, "S2603_C03_041E": {"label": "Estimate!!Adult correctional facilities!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate or higher", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C03_041EA,S2603_C03_041M,S2603_C03_041MA"}, "S1501_C05_045E": {"label": "Estimate!!Female!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Native Hawaiian and Other Pacific Islander alone!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C05_045EA,S1501_C05_045M,S1501_C05_045MA"}, "S0502PR_C04_081E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Civilian employed population 16 years and over!!INDUSTRY!!Information", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_081EA,S0502PR_C04_081M,S0502PR_C04_081MA"}, "S0505_C04_030E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_030EA,S0505_C04_030M,S0505_C04_030MA"}, "S2407_C01_012E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Arts, entertainment, and recreation, and accommodation and food services", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2407", "limit": 0, "attributes": "S2407_C01_012EA,S2407_C01_012M,S2407_C01_012MA"}, "S2601CPR_C02_095E": {"label": "Estimate!!Total group quarters population!!OCCUPATION!!Civilian employed population 16 years and over!!Natural resources, construction, extraction, and maintenance occupations", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_095EA,S2601CPR_C02_095M,S2601CPR_C02_095MA"}, "S1501_C05_044E": {"label": "Estimate!!Female!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Native Hawaiian and Other Pacific Islander alone!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C05_044EA,S1501_C05_044M,S1501_C05_044MA"}, "S2603_C03_042E": {"label": "Estimate!!Adult correctional facilities!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree or higher", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C03_042EA,S2603_C03_042M,S2603_C03_042MA"}, "S2407_C01_011E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Educational services, and health care and social assistance", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2407", "limit": 0, "attributes": "S2407_C01_011EA,S2407_C01_011M,S2407_C01_011MA"}, "S0502PR_C04_080E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Civilian employed population 16 years and over!!INDUSTRY!!Transportation and warehousing, and utilities", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_080EA,S0502PR_C04_080M,S0502PR_C04_080MA"}, "S1501_C05_043E": {"label": "Estimate!!Female!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Native Hawaiian and Other Pacific Islander alone", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C05_043EA,S1501_C05_043M,S1501_C05_043MA"}, "S2601CPR_C02_098E": {"label": "Estimate!!Total group quarters population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!Per capita income (dollars)", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "int", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_098EA,S2601CPR_C02_098M,S2601CPR_C02_098MA"}, "S2413_C02_010E": {"label": "Estimate!!Median earnings (dollars) for male!!Civilian employed population 16 years and over with earnings!!Transportation and warehousing, and utilities:!!Transportation and warehousing", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C02_010EA,S2413_C02_010M,S2413_C02_010MA"}, "S0502PR_C04_083E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Civilian employed population 16 years and over!!INDUSTRY!!Professional, scientific, and management, and administrative and waste management services", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_083EA,S0502PR_C04_083M,S0502PR_C04_083MA"}, "S2407_C01_014E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Public administration", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2407", "limit": 0, "attributes": "S2407_C01_014EA,S2407_C01_014M,S2407_C01_014MA"}, "S1501_C05_042E": {"label": "Estimate!!Female!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Asian alone!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C05_042EA,S1501_C05_042M,S1501_C05_042MA"}, "S2601CPR_C02_097E": {"label": "Estimate!!Total group quarters population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "int", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_097EA,S2601CPR_C02_097M,S2601CPR_C02_097MA"}, "S2603_C03_040E": {"label": "Estimate!!Adult correctional facilities!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C03_040EA,S2603_C03_040M,S2603_C03_040MA"}, "S2413_C02_011E": {"label": "Estimate!!Median earnings (dollars) for male!!Civilian employed population 16 years and over with earnings!!Transportation and warehousing, and utilities:!!Utilities", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C02_011EA,S2413_C02_011M,S2413_C02_011MA"}, "S0502PR_C04_082E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Civilian employed population 16 years and over!!INDUSTRY!!Finance and insurance, and real estate and rental and leasing", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_082EA,S0502PR_C04_082M,S0502PR_C04_082MA"}, "S2407_C01_013E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Other services, except public administration", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2407", "limit": 0, "attributes": "S2407_C01_013EA,S2407_C01_013M,S2407_C01_013MA"}, "S2603_C03_045E": {"label": "Estimate!!Adult correctional facilities!!DISABILITY STATUS!!Total population", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C03_045EA,S2603_C03_045M,S2603_C03_045MA"}, "S1810_C03_051E": {"label": "Estimate!!Percent with a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With an ambulatory difficulty!!Population 18 to 64 years!!Population 35 to 64 years", "concept": "Disability Characteristics", "predicateType": "float", "group": "S1810", "limit": 0, "attributes": "S1810_C03_051EA,S1810_C03_051M,S1810_C03_051MA"}, "S2413_C02_012E": {"label": "Estimate!!Median earnings (dollars) for male!!Civilian employed population 16 years and over with earnings!!Information", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C02_012EA,S2413_C02_012M,S2413_C02_012MA"}, "S2502_C02_009E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Hispanic or Latino origin", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C02_009EA,S2502_C02_009M,S2502_C02_009MA"}, "S2201_C01_035E": {"label": "Estimate!!Total!!WORK STATUS!!Families", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C01_035EA,S2201_C01_035M,S2201_C01_035MA"}, "S2501_C06_002E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!HOUSEHOLD SIZE!!1-person household", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C06_002EA,S2501_C06_002M,S2501_C06_002MA"}, "S0101_C02_017E": {"label": "Estimate!!Percent!!Total population!!AGE!!75 to 79 years", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C02_017EA,S0101_C02_017M,S0101_C02_017MA"}, "S2601CPR_C02_099E": {"label": "Estimate!!Total group quarters population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!With earnings for full-time, year-round workers:!!Male", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "int", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_099EA,S2601CPR_C02_099M,S2601CPR_C02_099MA"}, "S2603_C03_046E": {"label": "Estimate!!Adult correctional facilities!!DISABILITY STATUS!!Total population!!With a disability", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C03_046EA,S2603_C03_046M,S2603_C03_046MA"}, "S1810_C03_050E": {"label": "Estimate!!Percent with a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With an ambulatory difficulty!!Population 18 to 64 years!!Population 18 to 34 years", "concept": "Disability Characteristics", "predicateType": "float", "group": "S1810", "limit": 0, "attributes": "S1810_C03_050EA,S1810_C03_050M,S1810_C03_050MA"}, "S2413_C02_013E": {"label": "Estimate!!Median earnings (dollars) for male!!Civilian employed population 16 years and over with earnings!!Finance and insurance, and real estate and rental and leasing:", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C02_013EA,S2413_C02_013M,S2413_C02_013MA"}, "S2502_C02_008E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Two or more races", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C02_008EA,S2502_C02_008M,S2502_C02_008MA"}, "S2201_C01_036E": {"label": "Estimate!!Total!!WORK STATUS!!Families!!No workers in past 12 months", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C01_036EA,S2201_C01_036M,S2201_C01_036MA"}, "S2501_C06_001E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C06_001EA,S2501_C06_001M,S2501_C06_001MA"}, "S0101_C02_018E": {"label": "Estimate!!Percent!!Total population!!AGE!!80 to 84 years", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C02_018EA,S0101_C02_018M,S0101_C02_018MA"}, "S2501_C06_004E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!HOUSEHOLD SIZE!!3-person household", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C06_004EA,S2501_C06_004M,S2501_C06_004MA"}, "S2603_C03_043E": {"label": "Estimate!!Adult correctional facilities!!VETERAN STATUS!!Civilian population 18 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C03_043EA,S2603_C03_043M,S2603_C03_043MA"}, "S2002_C03_038E": {"label": "Estimate!!Female!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Production occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C03_038EA,S2002_C03_038M,S2002_C03_038MA"}, "S2413_C02_014E": {"label": "Estimate!!Median earnings (dollars) for male!!Civilian employed population 16 years and over with earnings!!Finance and insurance, and real estate and rental and leasing:!!Finance and insurance", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C02_014EA,S2413_C02_014M,S2413_C02_014MA"}, "S1810_C03_053E": {"label": "Estimate!!Percent with a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With an ambulatory difficulty!!Population 65 years and over!!Population 65 to 74 years", "concept": "Disability Characteristics", "predicateType": "float", "group": "S1810", "limit": 0, "attributes": "S1810_C03_053EA,S1810_C03_053M,S1810_C03_053MA"}, "S1301_C04_009E": {"label": "Estimate!!Rate per 1,000 women!!Women with births in the past 12 months!!Women 15 to 50 years!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C04_009EA,S1301_C04_009M,S1301_C04_009MA"}, "S1401_C02_011E": {"label": "Estimate!!Percent!!Population enrolled in college or graduate school!!Males enrolled in college or graduate school", "concept": "School Enrollment", "predicateType": "float", "group": "S1401", "limit": 0, "attributes": "S1401_C02_011EA,S1401_C02_011M,S1401_C02_011MA"}, "S2201_C01_037E": {"label": "Estimate!!Total!!WORK STATUS!!Families!!1 worker in past 12 months", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C01_037EA,S2201_C01_037M,S2201_C01_037MA"}, "S0101_C02_019E": {"label": "Estimate!!Percent!!Total population!!AGE!!85 years and over", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C02_019EA,S0101_C02_019M,S0101_C02_019MA"}, "S2603_C03_044E": {"label": "Estimate!!Adult correctional facilities!!VETERAN STATUS!!Civilian population 18 years and over!!Civilian veteran", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C03_044EA,S2603_C03_044M,S2603_C03_044MA"}, "S2002_C03_039E": {"label": "Estimate!!Female!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Transportation occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C03_039EA,S2002_C03_039M,S2002_C03_039MA"}, "S1810_C03_052E": {"label": "Estimate!!Percent with a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With an ambulatory difficulty!!Population 65 years and over", "concept": "Disability Characteristics", "predicateType": "float", "group": "S1810", "limit": 0, "attributes": "S1810_C03_052EA,S1810_C03_052M,S1810_C03_052MA"}, "S2413_C02_015E": {"label": "Estimate!!Median earnings (dollars) for male!!Civilian employed population 16 years and over with earnings!!Finance and insurance, and real estate and rental and leasing:!!Real estate and rental and leasing", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C02_015EA,S2413_C02_015M,S2413_C02_015MA"}, "S2201_C01_038E": {"label": "Estimate!!Total!!WORK STATUS!!Families!!2 or more workers in past 12 months", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C01_038EA,S2201_C01_038M,S2201_C01_038MA"}, "S2501_C06_003E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!HOUSEHOLD SIZE!!2-person household", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C06_003EA,S2501_C06_003M,S2501_C06_003MA"}, "S1401_C02_010E": {"label": "Estimate!!Percent!!Population enrolled in college or graduate school", "concept": "School Enrollment", "predicateType": "float", "group": "S1401", "limit": 0, "attributes": "S1401_C02_010EA,S1401_C02_010M,S1401_C02_010MA"}, "S2501_C06_006E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!OCCUPANTS PER ROOM!!1.00 or less occupants per room", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C06_006EA,S2501_C06_006M,S2501_C06_006MA"}, "S2002_C03_036E": {"label": "Estimate!!Female!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Construction and extraction occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C03_036EA,S2002_C03_036M,S2002_C03_036MA"}, "S2701_C02_048E": {"label": "Estimate!!Insured!!Civilian noninstitutionalized population!!WORK EXPERIENCE!!Civilian noninstitutionalized population 19 to 64 years!!Worked full-time, year round in the past 12 months", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C02_048EA,S2701_C02_048M,S2701_C02_048MA"}, "S2413_C02_016E": {"label": "Estimate!!Median earnings (dollars) for male!!Civilian employed population 16 years and over with earnings!!Professional, scientific, and management, and administrative and waste management services:", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C02_016EA,S2413_C02_016M,S2413_C02_016MA"}, "S1810_C03_055E": {"label": "Estimate!!Percent with a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a self-care difficulty", "concept": "Disability Characteristics", "predicateType": "float", "group": "S1810", "limit": 0, "attributes": "S1810_C03_055EA,S1810_C03_055M,S1810_C03_055MA"}, "S1401_C02_013E": {"label": "Estimate!!Percent!!Population 3 to 4 years", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C02_013EA,S1401_C02_013M,S1401_C02_013MA"}, "S1301_C04_007E": {"label": "Estimate!!Rate per 1,000 women!!Women with births in the past 12 months!!Women 15 to 50 years!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C04_007EA,S1301_C04_007M,S1301_C04_007MA"}, "S2502_C02_005E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!One race --!!Asian", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C02_005EA,S2502_C02_005M,S2502_C02_005MA"}, "S2201_C01_031E": {"label": "Estimate!!Total!!Households!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Two or more races", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C01_031EA,S2201_C01_031M,S2201_C01_031MA"}, "S0101_C02_013E": {"label": "Estimate!!Percent!!Total population!!AGE!!55 to 59 years", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C02_013EA,S0101_C02_013M,S0101_C02_013MA"}, "S2603_C03_049E": {"label": "Estimate!!Adult correctional facilities!!DISABILITY STATUS!!Population 18 to 64 years!!No disability", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C03_049EA,S2603_C03_049M,S2603_C03_049MA"}, "S2501_C06_005E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!HOUSEHOLD SIZE!!4-or-more-person household", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C06_005EA,S2501_C06_005M,S2501_C06_005MA"}, "S2002_C03_037E": {"label": "Estimate!!Female!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Installation, maintenance, and repair occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C03_037EA,S2002_C03_037M,S2002_C03_037MA"}, "S2413_C02_017E": {"label": "Estimate!!Median earnings (dollars) for male!!Civilian employed population 16 years and over with earnings!!Professional, scientific, and management, and administrative and waste management services:!!Professional, scientific, and technical services", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C02_017EA,S2413_C02_017M,S2413_C02_017MA"}, "S1810_C03_054E": {"label": "Estimate!!Percent with a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With an ambulatory difficulty!!Population 65 years and over!!Population 75 years and over", "concept": "Disability Characteristics", "predicateType": "float", "group": "S1810", "limit": 0, "attributes": "S1810_C03_054EA,S1810_C03_054M,S1810_C03_054MA"}, "S2701_C02_047E": {"label": "Estimate!!Insured!!Civilian noninstitutionalized population!!WORK EXPERIENCE!!Civilian noninstitutionalized population 19 to 64 years", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C02_047EA,S2701_C02_047M,S2701_C02_047MA"}, "S2502_C02_004E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!One race --!!American Indian and Alaska Native", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C02_004EA,S2502_C02_004M,S2502_C02_004MA"}, "S1301_C04_008E": {"label": "Estimate!!Rate per 1,000 women!!Women with births in the past 12 months!!Women 15 to 50 years!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C04_008EA,S1301_C04_008M,S1301_C04_008MA"}, "S1401_C02_012E": {"label": "Estimate!!Percent!!Population enrolled in college or graduate school!!Females enrolled in college or graduate school", "concept": "School Enrollment", "predicateType": "float", "group": "S1401", "limit": 0, "attributes": "S1401_C02_012EA,S1401_C02_012M,S1401_C02_012MA"}, "S2201_C01_032E": {"label": "Estimate!!Total!!Households!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Hispanic or Latino origin (of any race)", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C01_032EA,S2201_C01_032M,S2201_C01_032MA"}, "S0101_C02_014E": {"label": "Estimate!!Percent!!Total population!!AGE!!60 to 64 years", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C02_014EA,S0101_C02_014M,S0101_C02_014MA"}, "S2603_C03_047E": {"label": "Estimate!!Adult correctional facilities!!DISABILITY STATUS!!Population 18 to 64 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C03_047EA,S2603_C03_047M,S2603_C03_047MA"}, "S2501_C06_008E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!OCCUPANTS PER ROOM!!1.51 or more occupants per room", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C06_008EA,S2501_C06_008M,S2501_C06_008MA"}, "S2002_C03_034E": {"label": "Estimate!!Female!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Office and administrative support occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C03_034EA,S2002_C03_034M,S2002_C03_034MA"}, "S1810_C03_057E": {"label": "Estimate!!Percent with a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a self-care difficulty!!Population 18 to 64 years", "concept": "Disability Characteristics", "predicateType": "float", "group": "S1810", "limit": 0, "attributes": "S1810_C03_057EA,S1810_C03_057M,S1810_C03_057MA"}, "S1301_C04_005E": {"label": "Estimate!!Rate per 1,000 women!!Women with births in the past 12 months!!Women 15 to 50 years!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C04_005EA,S1301_C04_005M,S1301_C04_005MA"}, "S2502_C02_007E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!One race --!!Some other race", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C02_007EA,S2502_C02_007M,S2502_C02_007MA"}, "S2413_C02_018E": {"label": "Estimate!!Median earnings (dollars) for male!!Civilian employed population 16 years and over with earnings!!Professional, scientific, and management, and administrative and waste management services:!!Management of companies and enterprises", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C02_018EA,S2413_C02_018M,S2413_C02_018MA"}, "S2201_C01_033E": {"label": "Estimate!!Total!!Households!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!White alone, not Hispanic or Latino", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C01_033EA,S2201_C01_033M,S2201_C01_033MA"}, "S1401_C02_015E": {"label": "Estimate!!Percent!!Population 5 to 9 years", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C02_015EA,S1401_C02_015M,S1401_C02_015MA"}, "S0101_C02_015E": {"label": "Estimate!!Percent!!Total population!!AGE!!65 to 69 years", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C02_015EA,S0101_C02_015M,S0101_C02_015MA"}, "S2501_C06_007E": {"label": "Estimate!!Percent renter-occupied housing units!!Occupied housing units!!OCCUPANTS PER ROOM!!1.01 to 1.50 occupants per room", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C06_007EA,S2501_C06_007M,S2501_C06_007MA"}, "S2002_C03_035E": {"label": "Estimate!!Female!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Farming, fishing, and forestry occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C03_035EA,S2002_C03_035M,S2002_C03_035MA"}, "S1810_C03_056E": {"label": "Estimate!!Percent with a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a self-care difficulty!!Population under 18 years", "concept": "Disability Characteristics", "predicateType": "float", "group": "S1810", "limit": 0, "attributes": "S1810_C03_056EA,S1810_C03_056M,S1810_C03_056MA"}, "S2701_C02_049E": {"label": "Estimate!!Insured!!Civilian noninstitutionalized population!!WORK EXPERIENCE!!Civilian noninstitutionalized population 19 to 64 years!!Worked less than full-time, year round in the past 12 months", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C02_049EA,S2701_C02_049M,S2701_C02_049MA"}, "S1301_C04_006E": {"label": "Estimate!!Rate per 1,000 women!!Women with births in the past 12 months!!Women 15 to 50 years!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C04_006EA,S1301_C04_006M,S1301_C04_006MA"}, "S2413_C02_019E": {"label": "Estimate!!Median earnings (dollars) for male!!Civilian employed population 16 years and over with earnings!!Professional, scientific, and management, and administrative and waste management services:!!Administrative and support and waste management services", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C02_019EA,S2413_C02_019M,S2413_C02_019MA"}, "S1401_C02_014E": {"label": "Estimate!!Percent!!Population 3 to 4 years!!3 to 4 year olds enrolled in school", "concept": "School Enrollment", "predicateType": "float", "group": "S1401", "limit": 0, "attributes": "S1401_C02_014EA,S1401_C02_014M,S1401_C02_014MA"}, "S2502_C02_006E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!One race --!!Native Hawaiian and Other Pacific Islander", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C02_006EA,S2502_C02_006M,S2502_C02_006MA"}, "S2201_C01_034E": {"label": "Estimate!!Total!!Households!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Median income (dollars)", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C01_034EA,S2201_C01_034M,S2201_C01_034MA"}, "S0101_C02_016E": {"label": "Estimate!!Percent!!Total population!!AGE!!70 to 74 years", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C02_016EA,S0101_C02_016M,S0101_C02_016MA"}, "S2603_C03_048E": {"label": "Estimate!!Adult correctional facilities!!DISABILITY STATUS!!Population 18 to 64 years!!With a disability", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C03_048EA,S2603_C03_048M,S2603_C03_048MA"}, "S2002_C03_032E": {"label": "Estimate!!Female!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Personal care and service occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C03_032EA,S2002_C03_032M,S2002_C03_032MA"}, "S2701_C02_044E": {"label": "Estimate!!Insured!!Civilian noninstitutionalized population!!EMPLOYMENT STATUS!!Civilian noninstitutionalized population 19 to 64 years!!In labor force!!Employed", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C02_044EA,S2701_C02_044M,S2701_C02_044MA"}, "S1301_C04_015E": {"label": "Estimate!!Rate per 1,000 women!!Women with births in the past 12 months!!Women 15 to 50 years!!NATIVITY!!Native", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C04_015EA,S1301_C04_015M,S1301_C04_015MA"}, "S2413_C02_008E": {"label": "Estimate!!Median earnings (dollars) for male!!Civilian employed population 16 years and over with earnings!!Retail trade", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C02_008EA,S2413_C02_008M,S2413_C02_008MA"}, "S1401_C02_005E": {"label": "Estimate!!Percent!!Population 3 years and over enrolled in school!!Kindergarten to 12th grade!!Elementary: grade 1 to grade 4", "concept": "School Enrollment", "predicateType": "float", "group": "S1401", "limit": 0, "attributes": "S1401_C02_005EA,S1401_C02_005M,S1401_C02_005MA"}, "S2002_C03_033E": {"label": "Estimate!!Female!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Sales and related occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C03_033EA,S2002_C03_033M,S2002_C03_033MA"}, "S2701_C02_043E": {"label": "Estimate!!Insured!!Civilian noninstitutionalized population!!EMPLOYMENT STATUS!!Civilian noninstitutionalized population 19 to 64 years!!In labor force", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C02_043EA,S2701_C02_043M,S2701_C02_043MA"}, "S1301_C04_016E": {"label": "Estimate!!Rate per 1,000 women!!Women with births in the past 12 months!!Women 15 to 50 years!!NATIVITY!!Foreign born", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C04_016EA,S1301_C04_016M,S1301_C04_016MA"}, "S2413_C02_009E": {"label": "Estimate!!Median earnings (dollars) for male!!Civilian employed population 16 years and over with earnings!!Transportation and warehousing, and utilities:", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C02_009EA,S2413_C02_009M,S2413_C02_009MA"}, "S1401_C02_004E": {"label": "Estimate!!Percent!!Population 3 years and over enrolled in school!!Kindergarten to 12th grade!!Kindergarten", "concept": "School Enrollment", "predicateType": "float", "group": "S1401", "limit": 0, "attributes": "S1401_C02_004EA,S1401_C02_004M,S1401_C02_004MA"}, "S2002_C03_030E": {"label": "Estimate!!Female!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Food preparation and serving related occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C03_030EA,S2002_C03_030M,S2002_C03_030MA"}, "S1301_C04_013E": {"label": "Estimate!!Rate per 1,000 women!!Women with births in the past 12 months!!Women 15 to 50 years!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C04_013EA,S1301_C04_013M,S1301_C04_013MA"}, "S2701_C02_046E": {"label": "Estimate!!Insured!!Civilian noninstitutionalized population!!EMPLOYMENT STATUS!!Civilian noninstitutionalized population 19 to 64 years!!Not in labor force", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C02_046EA,S2701_C02_046M,S2701_C02_046MA"}, "S1401_C02_007E": {"label": "Estimate!!Percent!!Population 3 years and over enrolled in school!!Kindergarten to 12th grade!!High school: grade 9 to grade 12", "concept": "School Enrollment", "predicateType": "float", "group": "S1401", "limit": 0, "attributes": "S1401_C02_007EA,S1401_C02_007M,S1401_C02_007MA"}, "S2603_C03_039E": {"label": "Estimate!!Adult correctional facilities!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!College or graduate school", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C03_039EA,S2603_C03_039M,S2603_C03_039MA"}, "S2002_C03_031E": {"label": "Estimate!!Female!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Building and grounds cleaning and maintenance occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C03_031EA,S2002_C03_031M,S2002_C03_031MA"}, "S2701_C02_045E": {"label": "Estimate!!Insured!!Civilian noninstitutionalized population!!EMPLOYMENT STATUS!!Civilian noninstitutionalized population 19 to 64 years!!In labor force!!Unemployed", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C02_045EA,S2701_C02_045M,S2701_C02_045MA"}, "S1301_C04_014E": {"label": "Estimate!!Rate per 1,000 women!!Women with births in the past 12 months!!Women 15 to 50 years!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C04_014EA,S1301_C04_014M,S1301_C04_014MA"}, "S2201_C01_030E": {"label": "Estimate!!Total!!Households!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Some other race alone", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C01_030EA,S2201_C01_030M,S2201_C01_030MA"}, "S1401_C02_006E": {"label": "Estimate!!Percent!!Population 3 years and over enrolled in school!!Kindergarten to 12th grade!!Elementary: grade 5 to grade 8", "concept": "School Enrollment", "predicateType": "float", "group": "S1401", "limit": 0, "attributes": "S1401_C02_006EA,S1401_C02_006M,S1401_C02_006MA"}, "S2701_C02_040E": {"label": "Estimate!!Insured!!Civilian noninstitutionalized population!!EDUCATIONAL ATTAINMENT!!Civilian noninstitutionalized population 26 years and over!!Some college or associate's degree", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C02_040EA,S2701_C02_040M,S2701_C02_040MA"}, "S1401_C02_009E": {"label": "Estimate!!Percent!!Population 3 years and over enrolled in school!!Graduate, professional school", "concept": "School Enrollment", "predicateType": "float", "group": "S1401", "limit": 0, "attributes": "S1401_C02_009EA,S1401_C02_009M,S1401_C02_009MA"}, "S1301_C04_011E": {"label": "Estimate!!Rate per 1,000 women!!Women with births in the past 12 months!!Women 15 to 50 years!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C04_011EA,S1301_C04_011M,S1301_C04_011MA"}, "S0503_C02_139E": {"label": "Estimate!!Foreign-born; Born in Europe!!Occupied housing units!!SELECTED CHARACTERISTICS!!Limited English Speaking Households", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_139EA,S0503_C02_139M,S0503_C02_139MA"}, "S1301_C04_012E": {"label": "Estimate!!Rate per 1,000 women!!Women with births in the past 12 months!!Women 15 to 50 years!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C04_012EA,S1301_C04_012M,S1301_C04_012MA"}, "S1401_C02_008E": {"label": "Estimate!!Percent!!Population 3 years and over enrolled in school!!College, undergraduate", "concept": "School Enrollment", "predicateType": "float", "group": "S1401", "limit": 0, "attributes": "S1401_C02_008EA,S1401_C02_008M,S1401_C02_008MA"}, "S0503_C02_138E": {"label": "Estimate!!Foreign-born; Born in Europe!!Occupied housing units!!SELECTED CHARACTERISTICS!!No telephone service available", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_138EA,S0503_C02_138M,S0503_C02_138MA"}, "S0503_C02_137E": {"label": "Estimate!!Foreign-born; Born in Europe!!Occupied housing units!!VEHICLES AVAILABLE!!1 or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_137EA,S0503_C02_137M,S0503_C02_137MA"}, "S2701_C02_042E": {"label": "Estimate!!Insured!!Civilian noninstitutionalized population!!EMPLOYMENT STATUS!!Civilian noninstitutionalized population 19 to 64 years", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C02_042EA,S2701_C02_042M,S2701_C02_042MA"}, "S2701_C02_041E": {"label": "Estimate!!Insured!!Civilian noninstitutionalized population!!EDUCATIONAL ATTAINMENT!!Civilian noninstitutionalized population 26 years and over!!Bachelor's degree or higher", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C02_041EA,S2701_C02_041M,S2701_C02_041MA"}, "S0503_C02_136E": {"label": "Estimate!!Foreign-born; Born in Europe!!Occupied housing units!!VEHICLES AVAILABLE!!None", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_136EA,S0503_C02_136M,S0503_C02_136MA"}, "S1301_C04_010E": {"label": "Estimate!!Rate per 1,000 women!!Women with births in the past 12 months!!Women 15 to 50 years!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C04_010EA,S1301_C04_010M,S1301_C04_010MA"}, "S1501_C05_041E": {"label": "Estimate!!Female!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Asian alone!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C05_041EA,S1501_C05_041M,S1501_C05_041MA"}, "S0502PR_C04_085E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Civilian employed population 16 years and over!!INDUSTRY!!Arts, entertainment, and recreation, and accommodation and food services", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_085EA,S0502PR_C04_085M,S0502PR_C04_085MA"}, "S0802_C01_007E": {"label": "Estimate!!Total!!Workers 16 years and over!!AGE!!60 years and over", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_007EA,S0802_C01_007M,S0802_C01_007MA"}, "S0503_C02_135E": {"label": "Estimate!!Foreign-born; Born in Europe!!Occupied housing units!!1.01 or more occupants per room", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_135EA,S0503_C02_135M,S0503_C02_135MA"}, "S1501_C05_040E": {"label": "Estimate!!Female!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Asian alone", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C05_040EA,S1501_C05_040M,S1501_C05_040MA"}, "S0505_C04_029E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_029EA,S0505_C04_029M,S0505_C04_029MA"}, "S0802_C01_006E": {"label": "Estimate!!Total!!Workers 16 years and over!!AGE!!55 to 59 years", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_006EA,S0802_C01_006M,S0802_C01_006MA"}, "S0502PR_C04_084E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Civilian employed population 16 years and over!!INDUSTRY!!Educational services, and health care and social assistance", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_084EA,S0502PR_C04_084M,S0502PR_C04_084MA"}, "S0503_C02_134E": {"label": "Estimate!!Foreign-born; Born in Europe!!Occupied housing units!!Median number of rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_134EA,S0503_C02_134M,S0503_C02_134MA"}, "S0505_C04_028E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_028EA,S0505_C04_028M,S0505_C04_028MA"}, "S0802_C01_005E": {"label": "Estimate!!Total!!Workers 16 years and over!!AGE!!45 to 54 years", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_005EA,S0802_C01_005M,S0802_C01_005MA"}, "S0503_C02_133E": {"label": "Estimate!!Foreign-born; Born in Europe!!Occupied housing units!!ROOMS!!8 or more rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_133EA,S0503_C02_133M,S0503_C02_133MA"}, "S0502PR_C04_087E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Civilian employed population 16 years and over!!INDUSTRY!!Public administration", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_087EA,S0502PR_C04_087M,S0502PR_C04_087MA"}, "S0505_C04_027E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_027EA,S0505_C04_027M,S0505_C04_027MA"}, "S0802_C01_004E": {"label": "Estimate!!Total!!Workers 16 years and over!!AGE!!25 to 44 years", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_004EA,S0802_C01_004M,S0802_C01_004MA"}, "S0503_C02_132E": {"label": "Estimate!!Foreign-born; Born in Europe!!Occupied housing units!!ROOMS!!6 or 7 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_132EA,S0503_C02_132M,S0503_C02_132MA"}, "S0502PR_C04_086E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Civilian employed population 16 years and over!!INDUSTRY!!Other services (except public administration)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_086EA,S0502PR_C04_086M,S0502PR_C04_086MA"}, "S0505_C04_026E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_026EA,S0505_C04_026M,S0505_C04_026MA"}, "S0502PR_C04_089E": {"label": "Estimate!!Foreign-born; Entered before 2000!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$1 to $9,999 or loss", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_089EA,S0502PR_C04_089M,S0502PR_C04_089MA"}, "S0802_C01_003E": {"label": "Estimate!!Total!!Workers 16 years and over!!AGE!!20 to 24 years", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_003EA,S0802_C01_003M,S0802_C01_003MA"}, "S0503_C02_131E": {"label": "Estimate!!Foreign-born; Born in Europe!!Occupied housing units!!ROOMS!!4 or 5 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_131EA,S0503_C02_131M,S0503_C02_131MA"}, "S0802_C01_002E": {"label": "Estimate!!Total!!Workers 16 years and over!!AGE!!16 to 19 years", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_002EA,S0802_C01_002M,S0802_C01_002MA"}, "S0505_C04_025E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_025EA,S0505_C04_025M,S0505_C04_025MA"}, "S0503_C02_130E": {"label": "Estimate!!Foreign-born; Born in Europe!!Occupied housing units!!ROOMS!!2 or 3 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_130EA,S0503_C02_130M,S0503_C02_130MA"}, "S0502PR_C04_088E": {"label": "Estimate!!Foreign-born; Entered before 2000!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_088EA,S0502PR_C04_088M,S0502PR_C04_088MA"}, "S0802_C01_001E": {"label": "Estimate!!Total!!Workers 16 years and over", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "int", "group": "S0802", "limit": 0, "attributes": "S0802_C01_001EA,S0802_C01_001M,S0802_C01_001MA"}, "S0505_C04_024E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_024EA,S0505_C04_024M,S0505_C04_024MA"}, "S0505_C04_023E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_023EA,S0505_C04_023M,S0505_C04_023MA"}, "S0506_C05_145E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_145EA,S0506_C05_145M,S0506_C05_145MA"}, "S0505_C04_022E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_022EA,S0505_C04_022M,S0505_C04_022MA"}, "S2101_C03_006E": {"label": "Estimate!!Veterans!!Civilian population 18 years and over!!PERIOD OF SERVICE!!World War II veterans", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C03_006EA,S2101_C03_006M,S2101_C03_006MA"}, "S1501_C05_037E": {"label": "Estimate!!Female!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!American Indian or Alaska Native alone", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C05_037EA,S1501_C05_037M,S1501_C05_037MA"}, "S1501_C05_036E": {"label": "Estimate!!Female!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Black alone!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C05_036EA,S1501_C05_036M,S1501_C05_036MA"}, "S2603_C03_050E": {"label": "Estimate!!Adult correctional facilities!!DISABILITY STATUS!!Population 65 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C03_050EA,S2603_C03_050M,S2603_C03_050MA"}, "S0506_C05_144E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_144EA,S0506_C05_144M,S0506_C05_144MA"}, "S0505_C04_021E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Foreign-born population!!SEX AND AGE!!Median age (years)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_021EA,S0505_C04_021M,S0505_C04_021MA"}, "S2101_C03_007E": {"label": "Estimate!!Veterans!!Civilian population 18 years and over!!SEX!!Male", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C03_007EA,S2101_C03_007M,S2101_C03_007MA"}, "S1501_C05_035E": {"label": "Estimate!!Female!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Black alone!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C05_035EA,S1501_C05_035M,S1501_C05_035MA"}, "S0506_C05_143E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Renter-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C05_143EA,S0506_C05_143M,S0506_C05_143MA"}, "S2101_C03_004E": {"label": "Estimate!!Veterans!!Civilian population 18 years and over!!PERIOD OF SERVICE!!Vietnam War veterans", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C03_004EA,S2101_C03_004M,S2101_C03_004MA"}, "S0505_C04_020E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Foreign-born population!!SEX AND AGE!!85 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_020EA,S0505_C04_020M,S0505_C04_020MA"}, "S2601A_C04_099E": {"label": "Estimate!!Noninstitutionalized group quarters population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!With earnings:!!Male", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_099EA,S2601A_C04_099M,S2601A_C04_099MA"}, "S1501_C05_034E": {"label": "Estimate!!Female!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Black alone", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C05_034EA,S1501_C05_034M,S1501_C05_034MA"}, "S0506_C05_142E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_142EA,S0506_C05_142M,S0506_C05_142MA"}, "S2101_C03_005E": {"label": "Estimate!!Veterans!!Civilian population 18 years and over!!PERIOD OF SERVICE!!Korean War veterans", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C03_005EA,S2101_C03_005M,S2101_C03_005MA"}, "S1501_C05_033E": {"label": "Estimate!!Female!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!White alone, not Hispanic or Latino!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C05_033EA,S1501_C05_033M,S1501_C05_033MA"}, "S2603_C03_053E": {"label": "Estimate!!Adult correctional facilities!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Same address", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C03_053EA,S2603_C03_053M,S2603_C03_053MA"}, "S0506_C05_141E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_141EA,S0506_C05_141M,S0506_C05_141MA"}, "S2201_C01_027E": {"label": "Estimate!!Total!!Households!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!American Indian and Alaska Native alone", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C01_027EA,S2201_C01_027M,S2201_C01_027MA"}, "S1501_C05_032E": {"label": "Estimate!!Female!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!White alone, not Hispanic or Latino!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C05_032EA,S1501_C05_032M,S1501_C05_032MA"}, "S2603_C03_054E": {"label": "Estimate!!Adult correctional facilities!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the United States", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C03_054EA,S2603_C03_054M,S2603_C03_054MA"}, "S0506_C05_140E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Owner-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C05_140EA,S0506_C05_140M,S0506_C05_140MA"}, "S2201_C01_028E": {"label": "Estimate!!Total!!Households!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Asian alone", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C01_028EA,S2201_C01_028M,S2201_C01_028MA"}, "S1501_C05_031E": {"label": "Estimate!!Female!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!White alone, not Hispanic or Latino", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C05_031EA,S1501_C05_031M,S1501_C05_031MA"}, "S2603_C03_051E": {"label": "Estimate!!Adult correctional facilities!!DISABILITY STATUS!!Population 65 years and over!!With a disability", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C03_051EA,S2603_C03_051M,S2603_C03_051MA"}, "S0502PR_C04_071E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Civilian employed population 16 years and over!!OCCUPATION!!Service occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_071EA,S0502PR_C04_071M,S0502PR_C04_071MA"}, "S2101_C03_008E": {"label": "Estimate!!Veterans!!Civilian population 18 years and over!!SEX!!Female", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C03_008EA,S2101_C03_008M,S2101_C03_008MA"}, "S2201_C01_029E": {"label": "Estimate!!Total!!Households!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Native Hawaiian and Other Pacific Islander alone", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C01_029EA,S2201_C01_029M,S2201_C01_029MA"}, "S1501_C05_030E": {"label": "Estimate!!Female!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!White alone!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C05_030EA,S1501_C05_030M,S1501_C05_030MA"}, "S2603_C03_052E": {"label": "Estimate!!Adult correctional facilities!!RESIDENCE 1 YEAR AGO!!Population 1 year and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C03_052EA,S2603_C03_052M,S2603_C03_052MA"}, "S0502PR_C04_070E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Civilian employed population 16 years and over!!OCCUPATION!!Management, business, science, and arts occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_070EA,S0502PR_C04_070M,S0502PR_C04_070MA"}, "S2101_C03_009E": {"label": "Estimate!!Veterans!!Civilian population 18 years and over!!AGE!!18 to 34 years", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C03_009EA,S2101_C03_009M,S2101_C03_009MA"}, "S2603_C03_057E": {"label": "Estimate!!Adult correctional facilities!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the United States!!Different county!!Same state", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C03_057EA,S2603_C03_057M,S2603_C03_057MA"}, "S2002_C03_028E": {"label": "Estimate!!Female!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Healthcare support occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C03_028EA,S2002_C03_028M,S2002_C03_028MA"}, "S1810_C03_063E": {"label": "Estimate!!Percent with a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With an independent living difficulty", "concept": "Disability Characteristics", "predicateType": "float", "group": "S1810", "limit": 0, "attributes": "S1810_C03_063EA,S1810_C03_063M,S1810_C03_063MA"}, "S0502_C04_107E": {"label": "Estimate!!Foreign-born; Entered before 2000!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_107EA,S0502_C04_107M,S0502_C04_107MA"}, "S2201_C01_023E": {"label": "Estimate!!Total!!Households!!DISABILITY STATUS!!With one or more people with a disability", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C01_023EA,S2201_C01_023M,S2201_C01_023MA"}, "S2601A_C04_093E": {"label": "Estimate!!Noninstitutionalized group quarters population!!OCCUPATION!!Civilian employed population 16 years and over!!Service occupations", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_093EA,S2601A_C04_093M,S2601A_C04_093MA"}, "S0101_C02_005E": {"label": "Estimate!!Percent!!Total population!!AGE!!15 to 19 years", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C02_005EA,S0101_C02_005M,S0101_C02_005MA"}, "S1401_C02_021E": {"label": "Estimate!!Percent!!Population 18 to 19 years", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C02_021EA,S1401_C02_021M,S1401_C02_021MA"}, "S2603_C03_058E": {"label": "Estimate!!Adult correctional facilities!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the United States!!Different county!!Different state", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C03_058EA,S2603_C03_058M,S2603_C03_058MA"}, "S1810_C03_062E": {"label": "Estimate!!Percent with a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a self-care difficulty!!Population 65 years and over!!Population 75 years and over", "concept": "Disability Characteristics", "predicateType": "float", "group": "S1810", "limit": 0, "attributes": "S1810_C03_062EA,S1810_C03_062M,S1810_C03_062MA"}, "S2413_C02_001E": {"label": "Estimate!!Median earnings (dollars) for male!!Civilian employed population 16 years and over with earnings", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C02_001EA,S2413_C02_001M,S2413_C02_001MA"}, "S2002_C03_029E": {"label": "Estimate!!Female!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Protective service occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C03_029EA,S2002_C03_029M,S2002_C03_029MA"}, "S0502_C04_108E": {"label": "Estimate!!Foreign-born; Entered before 2000!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income!!Mean retirement income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C04_108EA,S0502_C04_108M,S0502_C04_108MA"}, "S2701_C02_039E": {"label": "Estimate!!Insured!!Civilian noninstitutionalized population!!EDUCATIONAL ATTAINMENT!!Civilian noninstitutionalized population 26 years and over!!High school graduate (includes equivalency)", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C02_039EA,S2701_C02_039M,S2701_C02_039MA"}, "S2201_C01_024E": {"label": "Estimate!!Total!!Households!!DISABILITY STATUS!!With no persons with a disability", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C01_024EA,S2201_C01_024M,S2201_C01_024MA"}, "S2601A_C04_094E": {"label": "Estimate!!Noninstitutionalized group quarters population!!OCCUPATION!!Civilian employed population 16 years and over!!Sales and office occupations", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_094EA,S2601A_C04_094M,S2601A_C04_094MA"}, "S1401_C02_020E": {"label": "Estimate!!Percent!!Population 15 to 17!!15 to 17 year olds enrolled in school", "concept": "School Enrollment", "predicateType": "float", "group": "S1401", "limit": 0, "attributes": "S1401_C02_020EA,S1401_C02_020M,S1401_C02_020MA"}, "S0101_C02_006E": {"label": "Estimate!!Percent!!Total population!!AGE!!20 to 24 years", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C02_006EA,S0101_C02_006M,S0101_C02_006MA"}, "S2603_C03_055E": {"label": "Estimate!!Adult correctional facilities!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the United States!!Same county", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C03_055EA,S2603_C03_055M,S2603_C03_055MA"}, "S2002_C03_026E": {"label": "Estimate!!Female!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Arts, design, entertainment, sports, and media occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C03_026EA,S2002_C03_026M,S2002_C03_026MA"}, "S2413_C02_002E": {"label": "Estimate!!Median earnings (dollars) for male!!Civilian employed population 16 years and over with earnings!!Agriculture, forestry, fishing and hunting, and mining:", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C02_002EA,S2413_C02_002M,S2413_C02_002MA"}, "S1810_C03_065E": {"label": "Estimate!!Percent with a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With an independent living difficulty!!Population 18 to 64 years!!Population 18 to 34 years", "concept": "Disability Characteristics", "predicateType": "float", "group": "S1810", "limit": 0, "attributes": "S1810_C03_065EA,S1810_C03_065M,S1810_C03_065MA"}, "S0502_C04_109E": {"label": "Estimate!!Foreign-born; Entered before 2000!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Food Stamp/SNAP benefits", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_109EA,S0502_C04_109M,S0502_C04_109MA"}, "S1401_C02_023E": {"label": "Estimate!!Percent!!Population 20 to 24 years", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C02_023EA,S1401_C02_023M,S1401_C02_023MA"}, "S2601A_C04_091E": {"label": "Estimate!!Noninstitutionalized group quarters population!!OCCUPATION!!Civilian employed population 16 years and over", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_091EA,S2601A_C04_091M,S2601A_C04_091MA"}, "S2201_C01_025E": {"label": "Estimate!!Total!!Households!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!White alone", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C01_025EA,S2201_C01_025M,S2201_C01_025MA"}, "S0101_C02_007E": {"label": "Estimate!!Percent!!Total population!!AGE!!25 to 29 years", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C02_007EA,S0101_C02_007M,S0101_C02_007MA"}, "S2603_C03_056E": {"label": "Estimate!!Adult correctional facilities!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the United States!!Different county", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C03_056EA,S2603_C03_056M,S2603_C03_056MA"}, "S2002_C03_027E": {"label": "Estimate!!Female!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Healthcare practitioner and technical occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C03_027EA,S2002_C03_027M,S2002_C03_027MA"}, "S2413_C02_003E": {"label": "Estimate!!Median earnings (dollars) for male!!Civilian employed population 16 years and over with earnings!!Agriculture, forestry, fishing and hunting, and mining:!!Agriculture, forestry, fishing and hunting", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C02_003EA,S2413_C02_003M,S2413_C02_003MA"}, "S1810_C03_064E": {"label": "Estimate!!Percent with a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With an independent living difficulty!!Population 18 to 64 years", "concept": "Disability Characteristics", "predicateType": "float", "group": "S1810", "limit": 0, "attributes": "S1810_C03_064EA,S1810_C03_064M,S1810_C03_064MA"}, "S1401_C02_022E": {"label": "Estimate!!Percent!!Population 18 to 19 years!!18 and 19 year olds enrolled in school", "concept": "School Enrollment", "predicateType": "float", "group": "S1401", "limit": 0, "attributes": "S1401_C02_022EA,S1401_C02_022M,S1401_C02_022MA"}, "S2601A_C04_092E": {"label": "Estimate!!Noninstitutionalized group quarters population!!OCCUPATION!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_092EA,S2601A_C04_092M,S2601A_C04_092MA"}, "S2201_C01_026E": {"label": "Estimate!!Total!!Households!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Black or African American alone", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C01_026EA,S2201_C01_026M,S2201_C01_026MA"}, "S0101_C02_008E": {"label": "Estimate!!Percent!!Total population!!AGE!!30 to 34 years", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C02_008EA,S0101_C02_008M,S0101_C02_008MA"}, "S2002_C03_024E": {"label": "Estimate!!Female!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Legal occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C03_024EA,S2002_C03_024M,S2002_C03_024MA"}, "S1810_C03_067E": {"label": "Estimate!!Percent with a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With an independent living difficulty!!Population 65 years and over", "concept": "Disability Characteristics", "predicateType": "float", "group": "S1810", "limit": 0, "attributes": "S1810_C03_067EA,S1810_C03_067M,S1810_C03_067MA"}, "S2413_C02_004E": {"label": "Estimate!!Median earnings (dollars) for male!!Civilian employed population 16 years and over with earnings!!Agriculture, forestry, fishing and hunting, and mining:!!Mining, quarrying, and oil and gas extraction", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C02_004EA,S2413_C02_004M,S2413_C02_004MA"}, "S2701_C02_036E": {"label": "Estimate!!Insured!!Civilian noninstitutionalized population!!DISABILITY STATUS!!No disability", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C02_036EA,S2701_C02_036M,S2701_C02_036MA"}, "S1401_C02_025E": {"label": "Estimate!!Percent!!Population 25 to 34 years", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C02_025EA,S1401_C02_025M,S1401_C02_025MA"}, "S0101_C02_001E": {"label": "Estimate!!Percent!!Total population", "concept": "Age and Sex", "predicateType": "int", "group": "S0101", "limit": 0, "attributes": "S0101_C02_001EA,S0101_C02_001M,S0101_C02_001MA"}, "S2601A_C04_097E": {"label": "Estimate!!Noninstitutionalized group quarters population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_097EA,S2601A_C04_097M,S2601A_C04_097MA"}, "S2101_C03_002E": {"label": "Estimate!!Veterans!!Civilian population 18 years and over!!PERIOD OF SERVICE!!Gulf War (9/2001 or later) veterans", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C03_002EA,S2101_C03_002M,S2101_C03_002MA"}, "S2002_C03_025E": {"label": "Estimate!!Female!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Education, training, and library occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C03_025EA,S2002_C03_025M,S2002_C03_025MA"}, "S2413_C02_005E": {"label": "Estimate!!Median earnings (dollars) for male!!Civilian employed population 16 years and over with earnings!!Construction", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C02_005EA,S2413_C02_005M,S2413_C02_005MA"}, "S2701_C02_035E": {"label": "Estimate!!Insured!!Civilian noninstitutionalized population!!DISABILITY STATUS!!With a disability", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C02_035EA,S2701_C02_035M,S2701_C02_035MA"}, "S1810_C03_066E": {"label": "Estimate!!Percent with a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With an independent living difficulty!!Population 18 to 64 years!!Population 35 to 64 years", "concept": "Disability Characteristics", "predicateType": "float", "group": "S1810", "limit": 0, "attributes": "S1810_C03_066EA,S1810_C03_066M,S1810_C03_066MA"}, "S1401_C02_024E": {"label": "Estimate!!Percent!!Population 20 to 24 years!!20 to 24 year olds enrolled in school", "concept": "School Enrollment", "predicateType": "float", "group": "S1401", "limit": 0, "attributes": "S1401_C02_024EA,S1401_C02_024M,S1401_C02_024MA"}, "S2101_C03_003E": {"label": "Estimate!!Veterans!!Civilian population 18 years and over!!PERIOD OF SERVICE!!Gulf War (8/1990 to 8/2001) veterans", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C03_003EA,S2101_C03_003M,S2101_C03_003MA"}, "S2201_C01_020E": {"label": "Estimate!!Total!!Households!!No children under 18 years!!Nonfamily households", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C01_020EA,S2201_C01_020M,S2201_C01_020MA"}, "S0101_C02_002E": {"label": "Estimate!!Percent!!Total population!!AGE!!Under 5 years", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C02_002EA,S0101_C02_002M,S0101_C02_002MA"}, "S2601A_C04_098E": {"label": "Estimate!!Noninstitutionalized group quarters population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!Per capita income (dollars)", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_098EA,S2601A_C04_098M,S2601A_C04_098MA"}, "S2002_C03_022E": {"label": "Estimate!!Female!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Life, physical, and social science occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C03_022EA,S2002_C03_022M,S2002_C03_022MA"}, "S1810_C03_069E": {"label": "Estimate!!Percent with a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With an independent living difficulty!!Population 65 years and over!!Population 75 years and over", "concept": "Disability Characteristics", "predicateType": "float", "group": "S1810", "limit": 0, "attributes": "S1810_C03_069EA,S1810_C03_069M,S1810_C03_069MA"}, "S2701_C02_038E": {"label": "Estimate!!Insured!!Civilian noninstitutionalized population!!EDUCATIONAL ATTAINMENT!!Civilian noninstitutionalized population 26 years and over!!Less than high school graduate", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C02_038EA,S2701_C02_038M,S2701_C02_038MA"}, "S2413_C02_006E": {"label": "Estimate!!Median earnings (dollars) for male!!Civilian employed population 16 years and over with earnings!!Manufacturing", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C02_006EA,S2413_C02_006M,S2413_C02_006MA"}, "S2201_C01_021E": {"label": "Estimate!!Total!!Households!!POVERTY STATUS IN THE PAST 12 MONTHS!!Below poverty level", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C01_021EA,S2201_C01_021M,S2201_C01_021MA"}, "S1401_C02_027E": {"label": "Estimate!!Percent!!Population 35 years and over", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C02_027EA,S1401_C02_027M,S1401_C02_027MA"}, "S1501_C05_039E": {"label": "Estimate!!Female!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!American Indian or Alaska Native alone!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C05_039EA,S1501_C05_039M,S1501_C05_039MA"}, "S2601A_C04_095E": {"label": "Estimate!!Noninstitutionalized group quarters population!!OCCUPATION!!Civilian employed population 16 years and over!!Natural resources, construction, extraction, and maintenance occupations", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_095EA,S2601A_C04_095M,S2601A_C04_095MA"}, "S0101_C02_003E": {"label": "Estimate!!Percent!!Total population!!AGE!!5 to 9 years", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C02_003EA,S0101_C02_003M,S0101_C02_003MA"}, "S2603_C03_059E": {"label": "Estimate!!Adult correctional facilities!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Abroad", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C03_059EA,S2603_C03_059M,S2603_C03_059MA"}, "S2002_C03_023E": {"label": "Estimate!!Female!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Community and social services occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C03_023EA,S2002_C03_023M,S2002_C03_023MA"}, "S1810_C03_068E": {"label": "Estimate!!Percent with a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With an independent living difficulty!!Population 65 years and over!!Population 65 to 74 years", "concept": "Disability Characteristics", "predicateType": "float", "group": "S1810", "limit": 0, "attributes": "S1810_C03_068EA,S1810_C03_068M,S1810_C03_068MA"}, "S2701_C02_037E": {"label": "Estimate!!Insured!!Civilian noninstitutionalized population!!EDUCATIONAL ATTAINMENT!!Civilian noninstitutionalized population 26 years and over", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C02_037EA,S2701_C02_037M,S2701_C02_037MA"}, "S2413_C02_007E": {"label": "Estimate!!Median earnings (dollars) for male!!Civilian employed population 16 years and over with earnings!!Wholesale trade", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C02_007EA,S2413_C02_007M,S2413_C02_007MA"}, "S2201_C01_022E": {"label": "Estimate!!Total!!Households!!POVERTY STATUS IN THE PAST 12 MONTHS!!At or above poverty level", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C01_022EA,S2201_C01_022M,S2201_C01_022MA"}, "S1401_C02_026E": {"label": "Estimate!!Percent!!Population 25 to 34 years!!25 to 34 year olds enrolled in school", "concept": "School Enrollment", "predicateType": "float", "group": "S1401", "limit": 0, "attributes": "S1401_C02_026EA,S1401_C02_026M,S1401_C02_026MA"}, "S0101_C02_004E": {"label": "Estimate!!Percent!!Total population!!AGE!!10 to 14 years", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C02_004EA,S0101_C02_004M,S0101_C02_004MA"}, "S2601A_C04_096E": {"label": "Estimate!!Noninstitutionalized group quarters population!!OCCUPATION!!Civilian employed population 16 years and over!!Production, transportation, and material moving occupations", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_096EA,S2601A_C04_096M,S2601A_C04_096MA"}, "S1501_C05_038E": {"label": "Estimate!!Female!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!American Indian or Alaska Native alone!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C05_038EA,S1501_C05_038M,S1501_C05_038MA"}, "S2101_C03_001E": {"label": "Estimate!!Veterans!!Civilian population 18 years and over", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C03_001EA,S2101_C03_001M,S2101_C03_001MA"}, "S2002_C03_020E": {"label": "Estimate!!Female!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Computer and mathematical occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C03_020EA,S2002_C03_020M,S2002_C03_020MA"}, "S2701_C02_032E": {"label": "Estimate!!Insured!!Civilian noninstitutionalized population!!NATIVITY AND U.S. CITIZENSHIP STATUS!!Foreign born", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C02_032EA,S2701_C02_032M,S2701_C02_032MA"}, "S1301_C04_003E": {"label": "Estimate!!Rate per 1,000 women!!Women with births in the past 12 months!!Women 15 to 50 years!!20 to 34 years", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C04_003EA,S1301_C04_003M,S1301_C04_003MA"}, "S1401_C02_017E": {"label": "Estimate!!Percent!!Population 10 to 14 years", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C02_017EA,S1401_C02_017M,S1401_C02_017MA"}, "S2002_C03_021E": {"label": "Estimate!!Female!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Architecture and engineering occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C03_021EA,S2002_C03_021M,S2002_C03_021MA"}, "S2701_C02_031E": {"label": "Estimate!!Insured!!Civilian noninstitutionalized population!!NATIVITY AND U.S. CITIZENSHIP STATUS!!Native born", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C02_031EA,S2701_C02_031M,S2701_C02_031MA"}, "S1301_C04_004E": {"label": "Estimate!!Rate per 1,000 women!!Women with births in the past 12 months!!Women 15 to 50 years!!35 to 50 years", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C04_004EA,S1301_C04_004M,S1301_C04_004MA"}, "S0502_C04_100E": {"label": "Estimate!!Foreign-born; Entered before 2000!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings!!Mean earnings (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C04_100EA,S0502_C04_100M,S0502_C04_100MA"}, "S1401_C02_016E": {"label": "Estimate!!Percent!!Population 5 to 9 years!!5 to 9 year olds enrolled in school", "concept": "School Enrollment", "predicateType": "float", "group": "S1401", "limit": 0, "attributes": "S1401_C02_016EA,S1401_C02_016M,S1401_C02_016MA"}, "S1301_C04_001E": {"label": "Estimate!!Rate per 1,000 women!!Women with births in the past 12 months!!Women 15 to 50 years", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C04_001EA,S1301_C04_001M,S1301_C04_001MA"}, "S2701_C02_034E": {"label": "Estimate!!Insured!!Civilian noninstitutionalized population!!NATIVITY AND U.S. CITIZENSHIP STATUS!!Foreign born!!Not a citizen", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C02_034EA,S2701_C02_034M,S2701_C02_034MA"}, "S1401_C02_019E": {"label": "Estimate!!Percent!!Population 15 to 17", "concept": "School Enrollment", "predicateType": "int", "group": "S1401", "limit": 0, "attributes": "S1401_C02_019EA,S1401_C02_019M,S1401_C02_019MA"}, "S0502_C04_101E": {"label": "Estimate!!Foreign-born; Entered before 2000!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_101EA,S0502_C04_101M,S0502_C04_101MA"}, "S2701_C02_033E": {"label": "Estimate!!Insured!!Civilian noninstitutionalized population!!NATIVITY AND U.S. CITIZENSHIP STATUS!!Foreign born!!Naturalized", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C02_033EA,S2701_C02_033M,S2701_C02_033MA"}, "S0502_C04_102E": {"label": "Estimate!!Foreign-born; Entered before 2000!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income!!Mean Social Security income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C04_102EA,S0502_C04_102M,S0502_C04_102MA"}, "S1301_C04_002E": {"label": "Estimate!!Rate per 1,000 women!!Women with births in the past 12 months!!Women 15 to 50 years!!15 to 19 years", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C04_002EA,S1301_C04_002M,S1301_C04_002MA"}, "S1401_C02_018E": {"label": "Estimate!!Percent!!Population 10 to 14 years!!10 to 14 year olds enrolled in school", "concept": "School Enrollment", "predicateType": "float", "group": "S1401", "limit": 0, "attributes": "S1401_C02_018EA,S1401_C02_018M,S1401_C02_018MA"}, "S0502_C04_103E": {"label": "Estimate!!Foreign-born; Entered before 2000!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_103EA,S0502_C04_103M,S0502_C04_103MA"}, "S0902_C04_008E": {"label": "Estimate!!Hispanic or Latino origin (of any race)!!Population 15 to 19 years!!MARITAL STATUS AND FERTILITY!!Female", "concept": "Characteristics of Teenagers 15 to 19 Years Old", "predicateType": "int", "group": "S0902", "limit": 0, "attributes": "S0902_C04_008EA,S0902_C04_008M,S0902_C04_008MA"}, "S0101_C02_009E": {"label": "Estimate!!Percent!!Total population!!AGE!!35 to 39 years", "concept": "Age and Sex", "predicateType": "float", "group": "S0101", "limit": 0, "attributes": "S0101_C02_009EA,S0101_C02_009M,S0101_C02_009MA"}, "S0902_C04_009E": {"label": "Estimate!!Hispanic or Latino origin (of any race)!!Population 15 to 19 years!!MARITAL STATUS AND FERTILITY!!Female!!Ever married", "concept": "Characteristics of Teenagers 15 to 19 Years Old", "predicateType": "float", "group": "S0902", "limit": 0, "attributes": "S0902_C04_009EA,S0902_C04_009M,S0902_C04_009MA"}, "S0502_C04_104E": {"label": "Estimate!!Foreign-born; Entered before 2000!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income!!Mean Supplemental Security Income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C04_104EA,S0502_C04_104M,S0502_C04_104MA"}, "S1810_C03_061E": {"label": "Estimate!!Percent with a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a self-care difficulty!!Population 65 years and over!!Population 65 to 74 years", "concept": "Disability Characteristics", "predicateType": "float", "group": "S1810", "limit": 0, "attributes": "S1810_C03_061EA,S1810_C03_061M,S1810_C03_061MA"}, "S2701_C02_030E": {"label": "Estimate!!Insured!!Civilian noninstitutionalized population!!LIVING ARRANGEMENTS!!In non-family households and other living arrangements", "concept": "Selected Characteristics of Health Insurance Coverage in the United States", "predicateType": "int", "group": "S2701", "limit": 0, "attributes": "S2701_C02_030EA,S2701_C02_030M,S2701_C02_030MA"}, "S0902_C04_006E": {"label": "Estimate!!Hispanic or Latino origin (of any race)!!Population 15 to 19 years!!MARITAL STATUS AND FERTILITY!!Male", "concept": "Characteristics of Teenagers 15 to 19 Years Old", "predicateType": "int", "group": "S0902", "limit": 0, "attributes": "S0902_C04_006EA,S0902_C04_006M,S0902_C04_006MA"}, "S0502_C04_105E": {"label": "Estimate!!Foreign-born; Entered before 2000!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_105EA,S0502_C04_105M,S0502_C04_105MA"}, "S1810_C03_060E": {"label": "Estimate!!Percent with a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a self-care difficulty!!Population 65 years and over", "concept": "Disability Characteristics", "predicateType": "float", "group": "S1810", "limit": 0, "attributes": "S1810_C03_060EA,S1810_C03_060M,S1810_C03_060MA"}, "S0505_C04_019E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Foreign-born population!!SEX AND AGE!!75 to 84 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_019EA,S0505_C04_019M,S0505_C04_019MA"}, "S0902_C04_007E": {"label": "Estimate!!Hispanic or Latino origin (of any race)!!Population 15 to 19 years!!MARITAL STATUS AND FERTILITY!!Male!!Ever married", "concept": "Characteristics of Teenagers 15 to 19 Years Old", "predicateType": "float", "group": "S0902", "limit": 0, "attributes": "S0902_C04_007EA,S0902_C04_007M,S0902_C04_007MA"}, "S0502_C04_106E": {"label": "Estimate!!Foreign-born; Entered before 2000!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income!!Mean cash public assistance income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C04_106EA,S0502_C04_106M,S0502_C04_106MA"}, "S0902_C04_004E": {"label": "Estimate!!Hispanic or Latino origin (of any race)!!Population 15 to 19 years!!SCHOOL ENROLLMENT!!Enrolled in school!!Private", "concept": "Characteristics of Teenagers 15 to 19 Years Old", "predicateType": "float", "group": "S0902", "limit": 0, "attributes": "S0902_C04_004EA,S0902_C04_004M,S0902_C04_004MA"}, "S0505_C04_018E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Foreign-born population!!SEX AND AGE!!65 to 74 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_018EA,S0505_C04_018M,S0505_C04_018MA"}, "S0502PR_C04_073E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Civilian employed population 16 years and over!!OCCUPATION!!Natural resources, construction, and maintenance occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_073EA,S0502PR_C04_073M,S0502PR_C04_073MA"}, "S0902_C04_005E": {"label": "Estimate!!Hispanic or Latino origin (of any race)!!Population 15 to 19 years!!SCHOOL ENROLLMENT!!Not enrolled in school", "concept": "Characteristics of Teenagers 15 to 19 Years Old", "predicateType": "int", "group": "S0902", "limit": 0, "attributes": "S0902_C04_005EA,S0902_C04_005M,S0902_C04_005MA"}, "S0505_C04_017E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Foreign-born population!!SEX AND AGE!!55 to 64 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_017EA,S0505_C04_017M,S0505_C04_017MA"}, "S0502PR_C04_072E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Civilian employed population 16 years and over!!OCCUPATION!!Sales and office occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_072EA,S0502PR_C04_072M,S0502PR_C04_072MA"}, "S0902_C04_002E": {"label": "Estimate!!Hispanic or Latino origin (of any race)!!Population 15 to 19 years!!SCHOOL ENROLLMENT!!Enrolled in school", "concept": "Characteristics of Teenagers 15 to 19 Years Old", "predicateType": "int", "group": "S0902", "limit": 0, "attributes": "S0902_C04_002EA,S0902_C04_002M,S0902_C04_002MA"}, "S0505_C04_016E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Foreign-born population!!SEX AND AGE!!45 to 54 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_016EA,S0505_C04_016M,S0505_C04_016MA"}, "S0502PR_C04_075E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Civilian employed population 16 years and over!!INDUSTRY!!Agriculture, forestry, fishing and hunting, and mining", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_075EA,S0502PR_C04_075M,S0502PR_C04_075MA"}, "S0503_C02_145E": {"label": "Estimate!!Foreign-born; Born in Europe!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_145EA,S0503_C02_145M,S0503_C02_145MA"}, "S0902_C04_003E": {"label": "Estimate!!Hispanic or Latino origin (of any race)!!Population 15 to 19 years!!SCHOOL ENROLLMENT!!Enrolled in school!!Public", "concept": "Characteristics of Teenagers 15 to 19 Years Old", "predicateType": "float", "group": "S0902", "limit": 0, "attributes": "S0902_C04_003EA,S0902_C04_003M,S0902_C04_003MA"}, "S0505_C04_015E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Foreign-born population!!SEX AND AGE!!25 to 44 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_015EA,S0505_C04_015M,S0505_C04_015MA"}, "S0502PR_C04_074E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Civilian employed population 16 years and over!!OCCUPATION!!Production, transportation, and material moving occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_074EA,S0502PR_C04_074M,S0502PR_C04_074MA"}, "S0503_C02_144E": {"label": "Estimate!!Foreign-born; Born in Europe!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_144EA,S0503_C02_144M,S0503_C02_144MA"}, "S0505_C04_014E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Foreign-born population!!SEX AND AGE!!18 to 24 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_014EA,S0505_C04_014M,S0505_C04_014MA"}, "S0503_C02_143E": {"label": "Estimate!!Foreign-born; Born in Europe!!Renter-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C02_143EA,S0503_C02_143M,S0503_C02_143MA"}, "S0502PR_C04_077E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Civilian employed population 16 years and over!!INDUSTRY!!Manufacturing", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_077EA,S0502PR_C04_077M,S0502PR_C04_077MA"}, "S0902_C04_001E": {"label": "Estimate!!Hispanic or Latino origin (of any race)!!Population 15 to 19 years", "concept": "Characteristics of Teenagers 15 to 19 Years Old", "predicateType": "int", "group": "S0902", "limit": 0, "attributes": "S0902_C04_001EA,S0902_C04_001M,S0902_C04_001MA"}, "S0505_C04_013E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Foreign-born population!!SEX AND AGE!!5 to 17 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_013EA,S0505_C04_013M,S0505_C04_013MA"}, "S0503_C02_142E": {"label": "Estimate!!Foreign-born; Born in Europe!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_142EA,S0503_C02_142M,S0503_C02_142MA"}, "S0502PR_C04_076E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Civilian employed population 16 years and over!!INDUSTRY!!Construction", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_076EA,S0502PR_C04_076M,S0502PR_C04_076MA"}, "S0502PR_C04_079E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Civilian employed population 16 years and over!!INDUSTRY!!Retail trade", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_079EA,S0502PR_C04_079M,S0502PR_C04_079MA"}, "S0505_C04_012E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Foreign-born population!!SEX AND AGE!!Under 5 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_012EA,S0505_C04_012M,S0505_C04_012MA"}, "GEOCOMP": {"label": "GEO_ID Component", "required": "default displayed", "predicateType": "string", "group": "N/A", "limit": 0}, "S0503_C02_141E": {"label": "Estimate!!Foreign-born; Born in Europe!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C02_141EA,S0503_C02_141M,S0503_C02_141MA"}, "S0502PR_C04_078E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Civilian employed population 16 years and over!!INDUSTRY!!Wholesale trade", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_078EA,S0502PR_C04_078M,S0502PR_C04_078MA"}, "S0505_C04_011E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Foreign-born population!!SEX AND AGE!!Female", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_011EA,S0505_C04_011M,S0505_C04_011MA"}, "S0503_C02_140E": {"label": "Estimate!!Foreign-born; Born in Europe!!Owner-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C02_140EA,S0503_C02_140M,S0503_C02_140MA"}, "S0601PR_C04_032E": {"label": "Estimate!!Native; born outside Puerto Rico and the U.S.!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "int", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C04_032EA,S0601PR_C04_032M,S0601PR_C04_032MA"}, "S2603_C03_061E": {"label": "Estimate!!Adult correctional facilities!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Native", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C03_061EA,S2603_C03_061M,S2603_C03_061MA"}, "S0506_C05_133E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Occupied housing units!!ROOMS!!8 or more rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_133EA,S0506_C05_133M,S0506_C05_133MA"}, "S0505_C04_058E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_058EA,S0505_C04_058M,S0505_C04_058MA"}, "S2502_C02_025E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!YEAR HOUSEHOLDER MOVED INTO UNIT!!Moved in 2000 to 2009", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C02_025EA,S2502_C02_025M,S2502_C02_025MA"}, "S0801_C03_019E": {"label": "Estimate!!Female!!Workers 16 years and over!!PLACE OF WORK!!Living in a place!!Worked in place of residence", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C03_019EA,S0801_C03_019M,S0801_C03_019MA"}, "S0601PR_C04_033E": {"label": "Estimate!!Native; born outside Puerto Rico and the U.S.!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than high school graduate", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C04_033EA,S0601PR_C04_033M,S0601PR_C04_033MA"}, "S2603_C03_062E": {"label": "Estimate!!Adult correctional facilities!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Native!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C03_062EA,S2603_C03_062M,S2603_C03_062MA"}, "S0506_C05_132E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Occupied housing units!!ROOMS!!6 or 7 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_132EA,S0506_C05_132M,S0506_C05_132MA"}, "S0505_C04_057E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_057EA,S0505_C04_057M,S0505_C04_057MA"}, "S2502_C02_024E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!YEAR HOUSEHOLDER MOVED INTO UNIT!!Moved in 2010 to 2019", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C02_024EA,S2502_C02_024M,S2502_C02_024MA"}, "S0601PR_C04_030E": {"label": "Estimate!!Native; born outside Puerto Rico and the U.S.!!MARITAL STATUS!!Population 15 years and over!!Divorced or separated", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C04_030EA,S0601PR_C04_030M,S0601PR_C04_030MA"}, "S0505_C04_056E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!EMPLOYMENT STATUS!!Population 16 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C04_056EA,S0505_C04_056M,S0505_C04_056MA"}, "S0506_C05_131E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Occupied housing units!!ROOMS!!4 or 5 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_131EA,S0506_C05_131M,S0506_C05_131MA"}, "S2502_C02_027E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!YEAR HOUSEHOLDER MOVED INTO UNIT!!Moved in 1989 or earlier", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C02_027EA,S2502_C02_027M,S2502_C02_027MA"}, "S0601PR_C04_031E": {"label": "Estimate!!Native; born outside Puerto Rico and the U.S.!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C04_031EA,S0601PR_C04_031M,S0601PR_C04_031MA"}, "S2603_C03_060E": {"label": "Estimate!!Adult correctional facilities!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C03_060EA,S2603_C03_060M,S2603_C03_060MA"}, "S0505_C04_055E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English!!Speak English less than \"very well\"", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_055EA,S0505_C04_055M,S0505_C04_055MA"}, "S0506_C05_130E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Occupied housing units!!ROOMS!!2 or 3 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_130EA,S0506_C05_130M,S0506_C05_130MA"}, "S2502_C02_026E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!YEAR HOUSEHOLDER MOVED INTO UNIT!!Moved in 1990 to 1999", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C02_026EA,S2502_C02_026M,S2502_C02_026MA"}, "S2302_C02_011E": {"label": "Estimate!!Percent!!Families!!EMPLOYMENT STATUS CHARACTERISTICS!!Other families!!Male householder, no spouse present", "concept": "Employment Characteristics of Families", "predicateType": "float", "group": "S2302", "limit": 0, "attributes": "S2302_C02_011EA,S2302_C02_011M,S2302_C02_011MA"}, "S2603_C03_065E": {"label": "Estimate!!Adult correctional facilities!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C03_065EA,S2603_C03_065M,S2603_C03_065MA"}, "S0505_C04_054E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_054EA,S0505_C04_054M,S0505_C04_054MA"}, "S2502_C02_021E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!EDUCATIONAL ATTAINMENT OF HOUSEHOLDER!!Bachelor's degree or higher", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C02_021EA,S2502_C02_021M,S2502_C02_021MA"}, "S0601PR_C04_036E": {"label": "Estimate!!Native; born outside Puerto Rico and the U.S.!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C04_036EA,S0601PR_C04_036M,S0601PR_C04_036MA"}, "S2603_C03_066E": {"label": "Estimate!!Adult correctional facilities!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C03_066EA,S2603_C03_066M,S2603_C03_066MA"}, "S2302_C02_010E": {"label": "Estimate!!Percent!!Families!!EMPLOYMENT STATUS CHARACTERISTICS!!Other families!!Female householder, no spouse present!!Not in labor force", "concept": "Employment Characteristics of Families", "predicateType": "float", "group": "S2302", "limit": 0, "attributes": "S2302_C02_010EA,S2302_C02_010M,S2302_C02_010MA"}, "S0505_C04_053E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!English only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_053EA,S0505_C04_053M,S0505_C04_053MA"}, "S2502_C02_020E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!EDUCATIONAL ATTAINMENT OF HOUSEHOLDER!!Some college or associate's degree", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C02_020EA,S2502_C02_020M,S2502_C02_020MA"}, "S0601PR_C04_037E": {"label": "Estimate!!Native; born outside Puerto Rico and the U.S.!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Graduate or professional degree", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C04_037EA,S0601PR_C04_037M,S0601PR_C04_037MA"}, "S2603_C03_063E": {"label": "Estimate!!Adult correctional facilities!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Native!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C03_063EA,S2603_C03_063M,S2603_C03_063MA"}, "S2302_C02_013E": {"label": "Estimate!!Percent!!Families!!EMPLOYMENT STATUS CHARACTERISTICS!!Other families!!Male householder, no spouse present!!Not in labor force", "concept": "Employment Characteristics of Families", "predicateType": "float", "group": "S2302", "limit": 0, "attributes": "S2302_C02_013EA,S2302_C02_013M,S2302_C02_013MA"}, "S0505_C04_052E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C04_052EA,S0505_C04_052M,S0505_C04_052MA"}, "S2502_C02_023E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!YEAR HOUSEHOLDER MOVED INTO UNIT!!Moved in 2020 to 2022", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C02_023EA,S2502_C02_023M,S2502_C02_023MA"}, "S0601PR_C04_034E": {"label": "Estimate!!Native; born outside Puerto Rico and the U.S.!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate (includes equivalency)", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C04_034EA,S0601PR_C04_034M,S0601PR_C04_034MA"}, "S2603_C03_064E": {"label": "Estimate!!Adult correctional facilities!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C03_064EA,S2603_C03_064M,S2603_C03_064MA"}, "S2302_C02_012E": {"label": "Estimate!!Percent!!Families!!EMPLOYMENT STATUS CHARACTERISTICS!!Other families!!Male householder, no spouse present!!In labor force", "concept": "Employment Characteristics of Families", "predicateType": "float", "group": "S2302", "limit": 0, "attributes": "S2302_C02_012EA,S2302_C02_012M,S2302_C02_012MA"}, "S0505_C04_051E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Graduate or professional degree", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_051EA,S0505_C04_051M,S0505_C04_051MA"}, "S2502_C02_022E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!YEAR HOUSEHOLDER MOVED INTO UNIT!!Moved in 2023 or later", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C02_022EA,S2502_C02_022M,S2502_C02_022MA"}, "S0601PR_C04_035E": {"label": "Estimate!!Native; born outside Puerto Rico and the U.S.!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college or associate's degree", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C04_035EA,S0601PR_C04_035M,S0601PR_C04_035MA"}, "S2603_C03_069E": {"label": "Estimate!!Adult correctional facilities!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Naturalized U.S. citizen!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C03_069EA,S2603_C03_069M,S2603_C03_069MA"}, "S0505_C04_050E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_050EA,S0505_C04_050M,S0505_C04_050MA"}, "S2603_C03_067E": {"label": "Estimate!!Adult correctional facilities!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Naturalized U.S. citizen", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C03_067EA,S2603_C03_067M,S2603_C03_067MA"}, "S2601CPR_C02_030E": {"label": "Estimate!!Total group quarters population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!Not Hispanic or Latino", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_030EA,S2601CPR_C02_030M,S2601CPR_C02_030MA"}, "S2603_C03_068E": {"label": "Estimate!!Adult correctional facilities!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Naturalized U.S. citizen!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C03_068EA,S2603_C03_068M,S2603_C03_068MA"}, "S2601CPR_C02_032E": {"label": "Estimate!!Total group quarters population!!MARITAL STATUS!!Population 15 years and over", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "int", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_032EA,S2601CPR_C02_032M,S2601CPR_C02_032MA"}, "S0504_C01_062E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Armed Forces", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_062EA,S0504_C01_062M,S0504_C01_062MA"}, "S2802_C01_020E": {"label": "Estimate!!Total!!Total population in households!!EMPLOYMENT STATUS!!Civilian population 16 years and over!!In labor force!!Employed", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C01_020EA,S2802_C01_020M,S2802_C01_020MA"}, "S2601CPR_C02_031E": {"label": "Estimate!!Total group quarters population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!White alone, Not Hispanic or Latino", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_031EA,S2601CPR_C02_031M,S2601CPR_C02_031MA"}, "S0504_C01_061E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed!!Percent of civilian labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_061EA,S0504_C01_061M,S0504_C01_061MA"}, "S2802_C01_021E": {"label": "Estimate!!Total!!Total population in households!!EMPLOYMENT STATUS!!Civilian population 16 years and over!!In labor force!!Unemployed", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C01_021EA,S2802_C01_021M,S2802_C01_021MA"}, "S2601CPR_C02_034E": {"label": "Estimate!!Total group quarters population!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_034EA,S2601CPR_C02_034M,S2601CPR_C02_034MA"}, "S0504_C01_060E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_060EA,S0504_C01_060M,S0504_C01_060MA"}, "S2802_C01_022E": {"label": "Estimate!!Total!!Total population in households!!EMPLOYMENT STATUS!!Civilian population 16 years and over!!Not in labor force", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C01_022EA,S2802_C01_022M,S2802_C01_022MA"}, "S2601CPR_C02_035E": {"label": "Estimate!!Total group quarters population!!MARITAL STATUS!!Population 15 years and over!!Divorced", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_035EA,S2601CPR_C02_035M,S2601CPR_C02_035MA"}, "S2601CPR_C02_033E": {"label": "Estimate!!Total group quarters population!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_033EA,S2601CPR_C02_033M,S2601CPR_C02_033MA"}, "S0502PR_C04_069E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Unpaid family workers", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_069EA,S0502PR_C04_069M,S0502PR_C04_069MA"}, "S0504_C01_054E": {"label": "Estimate!!Total!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_054EA,S0504_C01_054M,S0504_C01_054MA"}, "S2802_C01_012E": {"label": "Estimate!!Total!!Total population in households!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C01_012EA,S2802_C01_012M,S2802_C01_012MA"}, "S2601CPR_C02_037E": {"label": "Estimate!!Total group quarters population!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_037EA,S2601CPR_C02_037M,S2601CPR_C02_037MA"}, "S0502PR_C04_068E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Self-employed workers in own not incorporated business", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_068EA,S0502PR_C04_068M,S0502PR_C04_068MA"}, "S0504_C01_053E": {"label": "Estimate!!Total!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!English only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_053EA,S0504_C01_053M,S0504_C01_053MA"}, "S2802_C01_013E": {"label": "Estimate!!Total!!Total population in households!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C01_013EA,S2802_C01_013M,S2802_C01_013MA"}, "S2601CPR_C02_036E": {"label": "Estimate!!Total group quarters population!!MARITAL STATUS!!Population 15 years and over!!Separated", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_036EA,S2601CPR_C02_036M,S2601CPR_C02_036MA"}, "S0504_C01_052E": {"label": "Estimate!!Total!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C01_052EA,S0504_C01_052M,S0504_C01_052MA"}, "S1603_C02_010E": {"label": "Estimate!!Speak only English at home!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population 5 years and over for whom poverty status is determined!!Below poverty level", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "int", "group": "S1603", "limit": 0, "attributes": "S1603_C02_010EA,S1603_C02_010M,S1603_C02_010MA"}, "S2802_C01_014E": {"label": "Estimate!!Total!!Total population in households!!EDUCATIONAL ATTAINMENT!!Household population 25 years and over", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C01_014EA,S2802_C01_014M,S2802_C01_014MA"}, "S2303_C05_001E": {"label": "Estimate!!Female!!Population 16 to 64 years", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C05_001EA,S2303_C05_001M,S2303_C05_001MA"}, "S2601CPR_C02_039E": {"label": "Estimate!!Total group quarters population!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Nursery school through 12th grade", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_039EA,S2601CPR_C02_039M,S2601CPR_C02_039MA"}, "S1603_C02_011E": {"label": "Estimate!!Speak only English at home!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population 5 years and over for whom poverty status is determined!!At or above poverty level", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "int", "group": "S1603", "limit": 0, "attributes": "S1603_C02_011EA,S1603_C02_011M,S1603_C02_011MA"}, "S0504_C01_051E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Graduate or professional degree", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_051EA,S0504_C01_051M,S0504_C01_051MA"}, "S2802_C01_015E": {"label": "Estimate!!Total!!Total population in households!!EDUCATIONAL ATTAINMENT!!Household population 25 years and over!!Less than high school graduate or equivalency", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C01_015EA,S2802_C01_015M,S2802_C01_015MA"}, "S2601CPR_C02_038E": {"label": "Estimate!!Total group quarters population!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "int", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_038EA,S2601CPR_C02_038M,S2601CPR_C02_038MA"}, "S1603_C02_012E": {"label": "Estimate!!Speak only English at home!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "int", "group": "S1603", "limit": 0, "attributes": "S1603_C02_012EA,S1603_C02_012M,S1603_C02_012MA"}, "S0504_C01_058E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_058EA,S0504_C01_058M,S0504_C01_058MA"}, "S2802_C01_016E": {"label": "Estimate!!Total!!Total population in households!!EDUCATIONAL ATTAINMENT!!Household population 25 years and over!!High school graduate (includes equivalency), some college or associate's degree", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C01_016EA,S2802_C01_016M,S2802_C01_016MA"}, "S0504_C01_057E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_057EA,S0504_C01_057M,S0504_C01_057MA"}, "S1603_C02_013E": {"label": "Estimate!!Speak only English at home!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than high school graduate", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "int", "group": "S1603", "limit": 0, "attributes": "S1603_C02_013EA,S1603_C02_013M,S1603_C02_013MA"}, "S2802_C01_017E": {"label": "Estimate!!Total!!Total population in households!!EDUCATIONAL ATTAINMENT!!Household population 25 years and over!!Bachelor's degree or higher", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C01_017EA,S2802_C01_017M,S2802_C01_017MA"}, "S0801_C03_020E": {"label": "Estimate!!Female!!Workers 16 years and over!!PLACE OF WORK!!Living in a place!!Worked outside place of residence", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C03_020EA,S0801_C03_020M,S0801_C03_020MA"}, "S0504_C01_056E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Population 16 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C01_056EA,S0504_C01_056M,S0504_C01_056MA"}, "S1603_C02_014E": {"label": "Estimate!!Speak only English at home!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate (includes equivalency)", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "int", "group": "S1603", "limit": 0, "attributes": "S1603_C02_014EA,S1603_C02_014M,S1603_C02_014MA"}, "S2802_C01_018E": {"label": "Estimate!!Total!!Total population in households!!EMPLOYMENT STATUS!!Civilian population 16 years and over", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C01_018EA,S2802_C01_018M,S2802_C01_018MA"}, "S0801_C03_021E": {"label": "Estimate!!Female!!Workers 16 years and over!!PLACE OF WORK!!Not living in a place", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C03_021EA,S0801_C03_021M,S0801_C03_021MA"}, "S0504_C01_055E": {"label": "Estimate!!Total!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English!!Speak English less than \"very well\"", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_055EA,S0504_C01_055M,S0504_C01_055MA"}, "S0801_C03_022E": {"label": "Estimate!!Female!!Workers 16 years and over!!PLACE OF WORK!!Living in 12 selected states", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C03_022EA,S0801_C03_022M,S0801_C03_022MA"}, "S2802_C01_019E": {"label": "Estimate!!Total!!Total population in households!!EMPLOYMENT STATUS!!Civilian population 16 years and over!!In labor force", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C01_019EA,S2802_C01_019M,S2802_C01_019MA"}, "S1603_C02_015E": {"label": "Estimate!!Speak only English at home!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college or associate's degree", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "int", "group": "S1603", "limit": 0, "attributes": "S1603_C02_015EA,S1603_C02_015M,S1603_C02_015MA"}, "S2303_C05_007E": {"label": "Estimate!!Female!!Population 16 to 64 years!!WEEKS WORKED!!Worked 1 to 13 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C05_007EA,S2303_C05_007M,S2303_C05_007MA"}, "S2302_C02_015E": {"label": "Estimate!!Percent!!WORK STATUS CHARACTERISTICS!!Families!!No workers in the past 12 months", "concept": "Employment Characteristics of Families", "predicateType": "float", "group": "S2302", "limit": 0, "attributes": "S2302_C02_015EA,S2302_C02_015M,S2302_C02_015MA"}, "S0801_C03_023E": {"label": "Estimate!!Female!!Workers 16 years and over!!PLACE OF WORK!!Living in 12 selected states!!Worked in minor civil division of residence", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C03_023EA,S0801_C03_023M,S0801_C03_023MA"}, "S0502PR_C04_061E": {"label": "Estimate!!Foreign-born; Entered before 2000!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_061EA,S0502PR_C04_061M,S0502PR_C04_061MA"}, "S1603_C02_016E": {"label": "Estimate!!Speak only English at home!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree or higher", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "int", "group": "S1603", "limit": 0, "attributes": "S1603_C02_016EA,S1603_C02_016M,S1603_C02_016MA"}, "S0804_C02_095E": {"label": "Estimate!!Car, truck, or van -- drove alone!!PERCENT ALLOCATED!!Time arriving at work from home", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "int", "group": "S0804", "limit": 0, "attributes": "S0804_C02_095EA,S0804_C02_095M,S0804_C02_095MA"}, "S0601PR_C04_028E": {"label": "Estimate!!Native; born outside Puerto Rico and the U.S.!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C04_028EA,S0601PR_C04_028M,S0601PR_C04_028MA"}, "S2303_C05_006E": {"label": "Estimate!!Female!!Population 16 to 64 years!!WEEKS WORKED!!Worked 14 to 26 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C05_006EA,S2303_C05_006M,S2303_C05_006MA"}, "S2302_C02_014E": {"label": "Estimate!!Percent!!WORK STATUS CHARACTERISTICS!!Families", "concept": "Employment Characteristics of Families", "predicateType": "int", "group": "S2302", "limit": 0, "attributes": "S2302_C02_014EA,S2302_C02_014M,S2302_C02_014MA"}, "S0502PR_C04_060E": {"label": "Estimate!!Foreign-born; Entered before 2000!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Employed", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_060EA,S0502PR_C04_060M,S0502PR_C04_060MA"}, "S0801_C03_024E": {"label": "Estimate!!Female!!Workers 16 years and over!!PLACE OF WORK!!Living in 12 selected states!!Worked outside minor civil division of residence", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C03_024EA,S0801_C03_024M,S0801_C03_024MA"}, "S0804_C02_096E": {"label": "Estimate!!Car, truck, or van -- drove alone!!PERCENT ALLOCATED!!Travel time to work", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "int", "group": "S0804", "limit": 0, "attributes": "S0804_C02_096EA,S0804_C02_096M,S0804_C02_096MA"}, "S0601PR_C04_029E": {"label": "Estimate!!Native; born outside Puerto Rico and the U.S.!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C04_029EA,S0601PR_C04_029M,S0601PR_C04_029MA"}, "S0506_C05_139E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Occupied housing units!!SELECTED CHARACTERISTICS!!Limited English Speaking Households", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_139EA,S0506_C05_139M,S0506_C05_139MA"}, "S2303_C05_009E": {"label": "Estimate!!Female!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 35 or more hours per week", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C05_009EA,S2303_C05_009M,S2303_C05_009MA"}, "S2302_C02_017E": {"label": "Estimate!!Percent!!WORK STATUS CHARACTERISTICS!!Families!!2 or more workers in the past 12 months", "concept": "Employment Characteristics of Families", "predicateType": "float", "group": "S2302", "limit": 0, "attributes": "S2302_C02_017EA,S2302_C02_017M,S2302_C02_017MA"}, "S0804_C02_093E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over in households!!VEHICLES AVAILABLE!!3 or more vehicles available", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_093EA,S0804_C02_093M,S0804_C02_093MA"}, "S0801_C03_025E": {"label": "Estimate!!Female!!Workers 16 years and over!!PLACE OF WORK!!Not living in 12 selected states", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C03_025EA,S0801_C03_025M,S0801_C03_025MA"}, "S0502PR_C04_063E": {"label": "Estimate!!Foreign-born; Entered before 2000!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Armed Forces", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_063EA,S0502PR_C04_063M,S0502PR_C04_063MA"}, "S0601PR_C04_026E": {"label": "Estimate!!Native; born outside Puerto Rico and the U.S.!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Speak language other than English!!Speak English less than \"very well\"", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C04_026EA,S0601PR_C04_026M,S0601PR_C04_026MA"}, "S0506_C05_138E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Occupied housing units!!SELECTED CHARACTERISTICS!!No telephone service available", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_138EA,S0506_C05_138M,S0506_C05_138MA"}, "S2303_C05_008E": {"label": "Estimate!!Female!!Population 16 to 64 years!!WEEKS WORKED!!Did not work", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C05_008EA,S2303_C05_008M,S2303_C05_008MA"}, "S2302_C02_016E": {"label": "Estimate!!Percent!!WORK STATUS CHARACTERISTICS!!Families!!1 worker in the past 12 months", "concept": "Employment Characteristics of Families", "predicateType": "float", "group": "S2302", "limit": 0, "attributes": "S2302_C02_016EA,S2302_C02_016M,S2302_C02_016MA"}, "S0801_C03_026E": {"label": "Estimate!!Female!!Workers 16 years and over who did not work from home", "concept": "Commuting Characteristics by Sex", "predicateType": "int", "group": "S0801", "limit": 0, "attributes": "S0801_C03_026EA,S0801_C03_026M,S0801_C03_026MA"}, "S0804_C02_094E": {"label": "Estimate!!Car, truck, or van -- drove alone!!PERCENT ALLOCATED!!Means of transportation to work", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "int", "group": "S0804", "limit": 0, "attributes": "S0804_C02_094EA,S0804_C02_094M,S0804_C02_094MA"}, "S0502PR_C04_062E": {"label": "Estimate!!Foreign-born; Entered before 2000!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed!!Percent of civilian labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_062EA,S0502PR_C04_062M,S0502PR_C04_062MA"}, "S0504_C01_059E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Employed", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_059EA,S0504_C01_059M,S0504_C01_059MA"}, "S0601PR_C04_027E": {"label": "Estimate!!Native; born outside Puerto Rico and the U.S.!!MARITAL STATUS!!Population 15 years and over", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "int", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C04_027EA,S0601PR_C04_027M,S0601PR_C04_027MA"}, "S0506_C05_137E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Occupied housing units!!VEHICLES AVAILABLE!!1 or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_137EA,S0506_C05_137M,S0506_C05_137MA"}, "S2302_C02_019E": {"label": "Estimate!!Percent!!WORK STATUS CHARACTERISTICS!!Married-couple families!!Householder worked full-time, year-round in the past 12 months:", "concept": "Employment Characteristics of Families", "predicateType": "float", "group": "S2302", "limit": 0, "attributes": "S2302_C02_019EA,S2302_C02_019M,S2302_C02_019MA"}, "S0801_C03_027E": {"label": "Estimate!!Female!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!12:00 a.m. to 4:59 a.m.", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C03_027EA,S0801_C03_027M,S0801_C03_027MA"}, "S2303_C05_003E": {"label": "Estimate!!Female!!Population 16 to 64 years!!WEEKS WORKED!!Worked 48 to 49 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C05_003EA,S2303_C05_003M,S2303_C05_003MA"}, "S0502PR_C04_065E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Civilian employed population 16 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_065EA,S0502PR_C04_065M,S0502PR_C04_065MA"}, "S0506_C05_136E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Occupied housing units!!VEHICLES AVAILABLE!!None", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_136EA,S0506_C05_136M,S0506_C05_136MA"}, "S0505_C04_049E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college or associate's degree", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_049EA,S0505_C04_049M,S0505_C04_049MA"}, "S2302_C02_018E": {"label": "Estimate!!Percent!!WORK STATUS CHARACTERISTICS!!Married-couple families", "concept": "Employment Characteristics of Families", "predicateType": "int", "group": "S2302", "limit": 0, "attributes": "S2302_C02_018EA,S2302_C02_018M,S2302_C02_018MA"}, "S2303_C05_002E": {"label": "Estimate!!Female!!Population 16 to 64 years!!WEEKS WORKED!!Worked 50 to 52 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C05_002EA,S2303_C05_002M,S2303_C05_002MA"}, "S0502PR_C04_064E": {"label": "Estimate!!Foreign-born; Entered before 2000!!EMPLOYMENT STATUS!!Population 16 years and over!!Not in labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_064EA,S0502PR_C04_064M,S0502PR_C04_064MA"}, "S0801_C03_028E": {"label": "Estimate!!Female!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!5:00 a.m. to 5:29 a.m.", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C03_028EA,S0801_C03_028M,S0801_C03_028MA"}, "S0505_C04_048E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate (includes equivalency)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_048EA,S0505_C04_048M,S0505_C04_048MA"}, "S2303_C05_005E": {"label": "Estimate!!Female!!Population 16 to 64 years!!WEEKS WORKED!!Worked 27 to 39 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C05_005EA,S2303_C05_005M,S2303_C05_005MA"}, "S0502PR_C04_067E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Government workers", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_067EA,S0502PR_C04_067M,S0502PR_C04_067MA"}, "S0506_C05_135E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Occupied housing units!!1.01 or more occupants per room", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_135EA,S0506_C05_135M,S0506_C05_135MA"}, "S0804_C02_097E": {"label": "Estimate!!Car, truck, or van -- drove alone!!PERCENT ALLOCATED!!Vehicles available", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "int", "group": "S0804", "limit": 0, "attributes": "S0804_C02_097EA,S0804_C02_097M,S0804_C02_097MA"}, "S0801_C03_029E": {"label": "Estimate!!Female!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!5:30 a.m. to 5:59 a.m.", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C03_029EA,S0801_C03_029M,S0801_C03_029MA"}, "S0506_C05_134E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Occupied housing units!!Median number of rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_134EA,S0506_C05_134M,S0506_C05_134MA"}, "S0505_C04_047E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than high school graduate", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_047EA,S0505_C04_047M,S0505_C04_047MA"}, "S0502PR_C04_066E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Private wage and salary workers", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_066EA,S0502PR_C04_066M,S0502PR_C04_066MA"}, "S2303_C05_004E": {"label": "Estimate!!Female!!Population 16 to 64 years!!WEEKS WORKED!!Worked 40 to 47 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C05_004EA,S2303_C05_004M,S2303_C05_004MA"}, "S0601PR_C04_020E": {"label": "Estimate!!Native; born outside Puerto Rico and the U.S.!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C04_020EA,S0601PR_C04_020M,S0601PR_C04_020MA"}, "S2603_C03_073E": {"label": "Estimate!!Adult correctional facilities!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Entered 2010 or later", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C03_073EA,S2603_C03_073M,S2603_C03_073MA"}, "S0506_C05_121E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_121EA,S0506_C05_121M,S0506_C05_121MA"}, "S0505_C04_046E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C04_046EA,S0505_C04_046M,S0505_C04_046MA"}, "S0801_C03_007E": {"label": "Estimate!!Female!!Workers 16 years and over!!MEANS OF TRANSPORTATION TO WORK!!Car, truck, or van!!Carpooled!!In 4-or-more person carpool", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C03_007EA,S0801_C03_007M,S0801_C03_007MA"}, "S2502_C02_013E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!AGE OF HOUSEHOLDER!!45 to 54 years", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C02_013EA,S2502_C02_013M,S2502_C02_013MA"}, "S0601PR_C04_021E": {"label": "Estimate!!Native; born outside Puerto Rico and the U.S.!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C04_021EA,S0601PR_C04_021M,S0601PR_C04_021MA"}, "S2603_C03_074E": {"label": "Estimate!!Adult correctional facilities!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Entered 2000 to 2009", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C03_074EA,S2603_C03_074M,S2603_C03_074MA"}, "S0505_C04_045E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!College or graduate school", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_045EA,S0505_C04_045M,S0505_C04_045MA"}, "S0506_C05_120E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_120EA,S0506_C05_120M,S0506_C05_120MA"}, "S0801_C03_008E": {"label": "Estimate!!Female!!Workers 16 years and over!!MEANS OF TRANSPORTATION TO WORK!!Car, truck, or van!!Workers per car, truck, or van", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C03_008EA,S0801_C03_008M,S0801_C03_008MA"}, "S2502_C02_012E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!AGE OF HOUSEHOLDER!!35 to 44 years", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C02_012EA,S2502_C02_012M,S2502_C02_012MA"}, "S2603_C03_071E": {"label": "Estimate!!Adult correctional facilities!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Not a U.S. citizen!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C03_071EA,S2603_C03_071M,S2603_C03_071MA"}, "S0505_C04_044E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!High school (grades 9-12)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_044EA,S0505_C04_044M,S0505_C04_044MA"}, "S2502_C02_015E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!AGE OF HOUSEHOLDER!!65 to 74 years", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C02_015EA,S2502_C02_015M,S2502_C02_015MA"}, "S0801_C03_009E": {"label": "Estimate!!Female!!Workers 16 years and over!!MEANS OF TRANSPORTATION TO WORK!!Public transportation", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C03_009EA,S0801_C03_009M,S0801_C03_009MA"}, "S2603_C03_072E": {"label": "Estimate!!Adult correctional facilities!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Not a U.S. citizen!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C03_072EA,S2603_C03_072M,S2603_C03_072MA"}, "S2502_C02_014E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!AGE OF HOUSEHOLDER!!55 to 64 years", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C02_014EA,S2502_C02_014M,S2502_C02_014MA"}, "S0505_C04_043E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Elementary school (grades K-8)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_043EA,S0505_C04_043M,S0505_C04_043MA"}, "S2603_C03_077E": {"label": "Estimate!!Adult correctional facilities!!WORLD REGION OF BIRTH OF FOREIGN BORN!!Foreign-born population excluding population born at sea!!Europe", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C03_077EA,S2603_C03_077M,S2603_C03_077MA"}, "S2413_C02_020E": {"label": "Estimate!!Median earnings (dollars) for male!!Civilian employed population 16 years and over with earnings!!Educational services, and health care and social assistance:", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C02_020EA,S2413_C02_020M,S2413_C02_020MA"}, "S0804_C02_091E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over in households!!VEHICLES AVAILABLE!!1 vehicle available", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_091EA,S0804_C02_091M,S0804_C02_091MA"}, "S0505_C04_042E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Nursery school, preschool", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_042EA,S0505_C04_042M,S0505_C04_042MA"}, "S0601PR_C04_024E": {"label": "Estimate!!Native; born outside Puerto Rico and the U.S.!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Speak language other than English", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C04_024EA,S0601PR_C04_024M,S0601PR_C04_024MA"}, "S2603_C03_078E": {"label": "Estimate!!Adult correctional facilities!!WORLD REGION OF BIRTH OF FOREIGN BORN!!Foreign-born population excluding population born at sea!!Asia", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C03_078EA,S2603_C03_078M,S2603_C03_078MA"}, "S2413_C02_021E": {"label": "Estimate!!Median earnings (dollars) for male!!Civilian employed population 16 years and over with earnings!!Educational services, and health care and social assistance:!!Educational services", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C02_021EA,S2413_C02_021M,S2413_C02_021MA"}, "S0505_C04_041E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C04_041EA,S0505_C04_041M,S0505_C04_041MA"}, "S0804_C02_092E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over in households!!VEHICLES AVAILABLE!!2 vehicles available", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_092EA,S0804_C02_092M,S0804_C02_092MA"}, "S0601PR_C04_025E": {"label": "Estimate!!Native; born outside Puerto Rico and the U.S.!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Speak language other than English!!Speak English \"very well\"", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C04_025EA,S0601PR_C04_025M,S0601PR_C04_025MA"}, "S0601PR_C04_022E": {"label": "Estimate!!Native; born outside Puerto Rico and the U.S.!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C04_022EA,S0601PR_C04_022M,S0601PR_C04_022MA"}, "S2603_C03_075E": {"label": "Estimate!!Adult correctional facilities!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Entered before 2000", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C03_075EA,S2603_C03_075M,S2603_C03_075MA"}, "S2413_C02_022E": {"label": "Estimate!!Median earnings (dollars) for male!!Civilian employed population 16 years and over with earnings!!Educational services, and health care and social assistance:!!Health care and social assistance", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C02_022EA,S2413_C02_022M,S2413_C02_022MA"}, "S2302_C02_001E": {"label": "Estimate!!Percent!!Families", "concept": "Employment Characteristics of Families", "predicateType": "int", "group": "S2302", "limit": 0, "attributes": "S2302_C02_001EA,S2302_C02_001M,S2302_C02_001MA"}, "S0505_C04_040E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_040EA,S0505_C04_040M,S0505_C04_040MA"}, "S2502_C02_011E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!AGE OF HOUSEHOLDER!!Under 35 years", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C02_011EA,S2502_C02_011M,S2502_C02_011MA"}, "S2603_C03_076E": {"label": "Estimate!!Adult correctional facilities!!WORLD REGION OF BIRTH OF FOREIGN BORN!!Foreign-born population excluding population born at sea", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C03_076EA,S2603_C03_076M,S2603_C03_076MA"}, "S2413_C02_023E": {"label": "Estimate!!Median earnings (dollars) for male!!Civilian employed population 16 years and over with earnings!!Arts, entertainment, and recreation, and accommodation and food services:", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C02_023EA,S2413_C02_023M,S2413_C02_023MA"}, "S2502_C02_010E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!White alone, not Hispanic or Latino", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C02_010EA,S2502_C02_010M,S2502_C02_010MA"}, "S0601PR_C04_023E": {"label": "Estimate!!Native; born outside Puerto Rico and the U.S.!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "int", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C04_023EA,S0601PR_C04_023M,S0601PR_C04_023MA"}, "S0804_C02_090E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over in households!!VEHICLES AVAILABLE!!No vehicle available", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_090EA,S0804_C02_090M,S0804_C02_090MA"}, "S2601CPR_C02_040E": {"label": "Estimate!!Total group quarters population!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!College or graduate school", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_040EA,S2601CPR_C02_040M,S2601CPR_C02_040MA"}, "S2413_C02_024E": {"label": "Estimate!!Median earnings (dollars) for male!!Civilian employed population 16 years and over with earnings!!Arts, entertainment, and recreation, and accommodation and food services:!!Arts, entertainment, and recreation", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C02_024EA,S2413_C02_024M,S2413_C02_024MA"}, "S2409_C02_007E": {"label": "Estimate!!Male!!Full-time, year-round civilian employed population 16 years and over!!State government workers", "concept": "Class of Worker by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2409", "limit": 0, "attributes": "S2409_C02_007EA,S2409_C02_007M,S2409_C02_007MA"}, "S2413_C02_025E": {"label": "Estimate!!Median earnings (dollars) for male!!Civilian employed population 16 years and over with earnings!!Arts, entertainment, and recreation, and accommodation and food services:!!Accommodation and food services", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C02_025EA,S2413_C02_025M,S2413_C02_025MA"}, "S2409_C02_006E": {"label": "Estimate!!Male!!Full-time, year-round civilian employed population 16 years and over!!Local government workers", "concept": "Class of Worker by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2409", "limit": 0, "attributes": "S2409_C02_006EA,S2409_C02_006M,S2409_C02_006MA"}, "S2601CPR_C02_042E": {"label": "Estimate!!Total group quarters population!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate or higher", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_042EA,S2601CPR_C02_042M,S2601CPR_C02_042MA"}, "S2603_C03_079E": {"label": "Estimate!!Adult correctional facilities!!WORLD REGION OF BIRTH OF FOREIGN BORN!!Foreign-born population excluding population born at sea!!Latin America", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C03_079EA,S2603_C03_079M,S2603_C03_079MA"}, "S2413_C02_026E": {"label": "Estimate!!Median earnings (dollars) for male!!Civilian employed population 16 years and over with earnings!!Other services, except public administration", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C02_026EA,S2413_C02_026M,S2413_C02_026MA"}, "S2409_C02_005E": {"label": "Estimate!!Male!!Full-time, year-round civilian employed population 16 years and over!!Private not-for-profit wage and salary workers", "concept": "Class of Worker by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2409", "limit": 0, "attributes": "S2409_C02_005EA,S2409_C02_005M,S2409_C02_005MA"}, "S2601CPR_C02_041E": {"label": "Estimate!!Total group quarters population!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "int", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_041EA,S2601CPR_C02_041M,S2601CPR_C02_041MA"}, "S2413_C02_027E": {"label": "Estimate!!Median earnings (dollars) for male!!Civilian employed population 16 years and over with earnings!!Public administration", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2413", "limit": 0, "attributes": "S2413_C02_027EA,S2413_C02_027M,S2413_C02_027MA"}, "S2409_C02_004E": {"label": "Estimate!!Male!!Full-time, year-round civilian employed population 16 years and over!!Private for-profit wage and salary workers:!!Self-employed in own incorporated business workers", "concept": "Class of Worker by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2409", "limit": 0, "attributes": "S2409_C02_004EA,S2409_C02_004M,S2409_C02_004MA"}, "S2601CPR_C02_044E": {"label": "Estimate!!Total group quarters population!!VETERAN STATUS!!Civilian population 18 years and over", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "int", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_044EA,S2601CPR_C02_044M,S2601CPR_C02_044MA"}, "S0504_C01_050E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_050EA,S0504_C01_050M,S0504_C01_050MA"}, "S2502_C02_017E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!AGE OF HOUSEHOLDER!!85 years and over", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C02_017EA,S2502_C02_017M,S2502_C02_017MA"}, "S2409_C02_003E": {"label": "Estimate!!Male!!Full-time, year-round civilian employed population 16 years and over!!Private for-profit wage and salary workers:!!Employee of private company workers", "concept": "Class of Worker by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2409", "limit": 0, "attributes": "S2409_C02_003EA,S2409_C02_003M,S2409_C02_003MA"}, "S2601CPR_C02_043E": {"label": "Estimate!!Total group quarters population!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree or higher", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_043EA,S2601CPR_C02_043M,S2601CPR_C02_043MA"}, "S2502_C02_016E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!AGE OF HOUSEHOLDER!!75 to 84 years", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C02_016EA,S2502_C02_016M,S2502_C02_016MA"}, "S2409_C02_002E": {"label": "Estimate!!Male!!Full-time, year-round civilian employed population 16 years and over!!Private for-profit wage and salary workers:", "concept": "Class of Worker by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2409", "limit": 0, "attributes": "S2409_C02_002EA,S2409_C02_002M,S2409_C02_002MA"}, "S2502_C02_019E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!EDUCATIONAL ATTAINMENT OF HOUSEHOLDER!!High school graduate (includes equivalency)", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C02_019EA,S2502_C02_019M,S2502_C02_019MA"}, "S2409_C02_001E": {"label": "Estimate!!Male!!Full-time, year-round civilian employed population 16 years and over", "concept": "Class of Worker by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2409", "limit": 0, "attributes": "S2409_C02_001EA,S2409_C02_001M,S2409_C02_001MA"}, "S2601CPR_C02_047E": {"label": "Estimate!!Total group quarters population!!DISABILITY STATUS!!Total population!!With a disability", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_047EA,S2601CPR_C02_047M,S2601CPR_C02_047MA"}, "S2601CPR_C02_045E": {"label": "Estimate!!Total group quarters population!!VETERAN STATUS!!Civilian population 18 years and over!!Civilian veteran", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_045EA,S2601CPR_C02_045M,S2601CPR_C02_045MA"}, "S2502_C02_018E": {"label": "Estimate!!Percent occupied housing units!!Occupied housing units!!EDUCATIONAL ATTAINMENT OF HOUSEHOLDER!!Less than high school graduate", "concept": "Demographic Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2502", "limit": 0, "attributes": "S2502_C02_018EA,S2502_C02_018M,S2502_C02_018MA"}, "S2601CPR_C02_046E": {"label": "Estimate!!Total group quarters population!!DISABILITY STATUS!!Total population", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "int", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_046EA,S2601CPR_C02_046M,S2601CPR_C02_046MA"}, "S0502PR_C04_057E": {"label": "Estimate!!Foreign-born; Entered before 2000!!EMPLOYMENT STATUS!!Population 16 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_057EA,S0502PR_C04_057M,S0502PR_C04_057MA"}, "S0504_C01_042E": {"label": "Estimate!!Total!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Nursery school, preschool", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_042EA,S0504_C01_042M,S0504_C01_042MA"}, "S2601CPR_C02_049E": {"label": "Estimate!!Total group quarters population!!DISABILITY STATUS!!Population under 18 years!!With a disability", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_049EA,S2601CPR_C02_049M,S2601CPR_C02_049MA"}, "S0502PR_C04_056E": {"label": "Estimate!!Foreign-born; Entered before 2000!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English!!Speak English less than \"very well\"", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_056EA,S0502PR_C04_056M,S0502PR_C04_056MA"}, "S0504_C01_041E": {"label": "Estimate!!Total!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C01_041EA,S0504_C01_041M,S0504_C01_041MA"}, "S2601CPR_C02_048E": {"label": "Estimate!!Total group quarters population!!DISABILITY STATUS!!Population under 18 years", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "int", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_048EA,S2601CPR_C02_048M,S2601CPR_C02_048MA"}, "S0804_C02_089E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over in households!!HOUSING TENURE!!Renter-occupied housing units", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_089EA,S0804_C02_089M,S0804_C02_089MA"}, "S0502PR_C04_059E": {"label": "Estimate!!Foreign-born; Entered before 2000!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_059EA,S0502PR_C04_059M,S0502PR_C04_059MA"}, "S0504_C01_040E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_040EA,S0504_C01_040M,S0504_C01_040MA"}, "S0502PR_C04_058E": {"label": "Estimate!!Foreign-born; Entered before 2000!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_058EA,S0502PR_C04_058M,S0502PR_C04_058MA"}, "PUMA": {"label": "Public Use Microdata Area", "group": "N/A", "limit": 0}, "S0504_C01_046E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C01_046EA,S0504_C01_046M,S0504_C01_046MA"}, "S0504_C01_045E": {"label": "Estimate!!Total!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!College or graduate school", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_045EA,S0504_C01_045M,S0504_C01_045MA"}, "S0504_C01_044E": {"label": "Estimate!!Total!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!High school (grades 9-12)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_044EA,S0504_C01_044M,S0504_C01_044MA"}, "S0801_C03_010E": {"label": "Estimate!!Female!!Workers 16 years and over!!MEANS OF TRANSPORTATION TO WORK!!Walked", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C03_010EA,S0801_C03_010M,S0801_C03_010MA"}, "S0504_C01_043E": {"label": "Estimate!!Total!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Elementary school (grades K-8)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_043EA,S0504_C01_043M,S0504_C01_043MA"}, "S0506_C05_129E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Occupied housing units!!ROOMS!!1 room", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_129EA,S0506_C05_129M,S0506_C05_129MA"}, "S2302_C02_003E": {"label": "Estimate!!Percent!!Families!!EMPLOYMENT STATUS CHARACTERISTICS!!Opposite-sex married-couple families!!Both husband and wife in labor force", "concept": "Employment Characteristics of Families", "predicateType": "float", "group": "S2302", "limit": 0, "attributes": "S2302_C02_003EA,S2302_C02_003M,S2302_C02_003MA"}, "S0801_C03_011E": {"label": "Estimate!!Female!!Workers 16 years and over!!MEANS OF TRANSPORTATION TO WORK!!Bicycle", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C03_011EA,S0801_C03_011M,S0801_C03_011MA"}, "S0804_C02_083E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!35 to 44 minutes", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_083EA,S0804_C02_083M,S0804_C02_083MA"}, "S0601PR_C04_016E": {"label": "Estimate!!Native; born outside Puerto Rico and the U.S.!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C04_016EA,S0601PR_C04_016M,S0601PR_C04_016MA"}, "S0506_C05_128E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Occupied housing units!!HOUSING TENURE!!Average household size of renter-occupied unit", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_128EA,S0506_C05_128M,S0506_C05_128MA"}, "S2302_C02_002E": {"label": "Estimate!!Percent!!Families!!EMPLOYMENT STATUS CHARACTERISTICS!!Opposite-sex married-couple families", "concept": "Employment Characteristics of Families", "predicateType": "int", "group": "S2302", "limit": 0, "attributes": "S2302_C02_002EA,S2302_C02_002M,S2302_C02_002MA"}, "S0801_C03_012E": {"label": "Estimate!!Female!!Workers 16 years and over!!MEANS OF TRANSPORTATION TO WORK!!Taxi or ride-hailing services, motorcycle, or other means", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C03_012EA,S0801_C03_012M,S0801_C03_012MA"}, "S0504_C01_049E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college or associate's degree", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_049EA,S0504_C01_049M,S0504_C01_049MA"}, "S0804_C02_084E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!45 to 59 minutes", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_084EA,S0804_C02_084M,S0804_C02_084MA"}, "S0601PR_C04_017E": {"label": "Estimate!!Native; born outside Puerto Rico and the U.S.!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C04_017EA,S0601PR_C04_017M,S0601PR_C04_017MA"}, "S0506_C05_127E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Occupied housing units!!HOUSING TENURE!!Average household size of owner-occupied unit", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_127EA,S0506_C05_127M,S0506_C05_127MA"}, "S2302_C02_005E": {"label": "Estimate!!Percent!!Families!!EMPLOYMENT STATUS CHARACTERISTICS!!Opposite-sex married-couple families!!Wife in labor force, husband not in labor force", "concept": "Employment Characteristics of Families", "predicateType": "float", "group": "S2302", "limit": 0, "attributes": "S2302_C02_005EA,S2302_C02_005M,S2302_C02_005MA"}, "S0801_C03_013E": {"label": "Estimate!!Female!!Workers 16 years and over!!MEANS OF TRANSPORTATION TO WORK!!Worked from home", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C03_013EA,S0801_C03_013M,S0801_C03_013MA"}, "S0804_C02_081E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!25 to 29 minutes", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_081EA,S0804_C02_081M,S0804_C02_081MA"}, "S0502PR_C04_051E": {"label": "Estimate!!Foreign-born; Entered before 2000!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_051EA,S0502PR_C04_051M,S0502PR_C04_051MA"}, "S0504_C01_048E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate (includes equivalency)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_048EA,S0504_C01_048M,S0504_C01_048MA"}, "S0601PR_C04_014E": {"label": "Estimate!!Native; born outside Puerto Rico and the U.S.!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C04_014EA,S0601PR_C04_014M,S0601PR_C04_014MA"}, "S0506_C05_126E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Occupied housing units!!HOUSING TENURE!!Renter-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_126EA,S0506_C05_126M,S0506_C05_126MA"}, "S0505_C04_039E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!MARITAL STATUS!!Population 15 years and over!!Divorced or separated", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_039EA,S0505_C04_039M,S0505_C04_039MA"}, "S2302_C02_004E": {"label": "Estimate!!Percent!!Families!!EMPLOYMENT STATUS CHARACTERISTICS!!Opposite-sex married-couple families!!Husband in labor force, wife not in labor force", "concept": "Employment Characteristics of Families", "predicateType": "float", "group": "S2302", "limit": 0, "attributes": "S2302_C02_004EA,S2302_C02_004M,S2302_C02_004MA"}, "S0504_C01_047E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than high school graduate", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_047EA,S0504_C01_047M,S0504_C01_047MA"}, "S0804_C02_082E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!30 to 34 minutes", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_082EA,S0804_C02_082M,S0804_C02_082MA"}, "S0502PR_C04_050E": {"label": "Estimate!!Foreign-born; Entered before 2000!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college or associate's degree", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_050EA,S0502PR_C04_050M,S0502PR_C04_050MA"}, "S0801_C03_014E": {"label": "Estimate!!Female!!Workers 16 years and over!!PLACE OF WORK!!Worked in state of residence", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C03_014EA,S0801_C03_014M,S0801_C03_014MA"}, "S0601PR_C04_015E": {"label": "Estimate!!Native; born outside Puerto Rico and the U.S.!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C04_015EA,S0601PR_C04_015M,S0601PR_C04_015MA"}, "S0506_C05_125E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Occupied housing units!!HOUSING TENURE!!Owner-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_125EA,S0506_C05_125M,S0506_C05_125MA"}, "S0505_C04_038E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_038EA,S0505_C04_038M,S0505_C04_038MA"}, "S2302_C02_007E": {"label": "Estimate!!Percent!!Families!!EMPLOYMENT STATUS CHARACTERISTICS!!Other families", "concept": "Employment Characteristics of Families", "predicateType": "int", "group": "S2302", "limit": 0, "attributes": "S2302_C02_007EA,S2302_C02_007M,S2302_C02_007MA"}, "S0801_C03_015E": {"label": "Estimate!!Female!!Workers 16 years and over!!PLACE OF WORK!!Worked in state of residence!!Worked in county of residence", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C03_015EA,S0801_C03_015M,S0801_C03_015MA"}, "S0804_C02_087E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over in households", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "int", "group": "S0804", "limit": 0, "attributes": "S0804_C02_087EA,S0804_C02_087M,S0804_C02_087MA"}, "S0502PR_C04_053E": {"label": "Estimate!!Foreign-born; Entered before 2000!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_053EA,S0502PR_C04_053M,S0502PR_C04_053MA"}, "S0505_C04_037E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_037EA,S0505_C04_037M,S0505_C04_037MA"}, "S2603_C03_070E": {"label": "Estimate!!Adult correctional facilities!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Not a U.S. citizen", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C03_070EA,S2603_C03_070M,S2603_C03_070MA"}, "S0804_C02_088E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over in households!!HOUSING TENURE!!Owner-occupied housing units", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_088EA,S0804_C02_088M,S0804_C02_088MA"}, "S0506_C05_124E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!Occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C05_124EA,S0506_C05_124M,S0506_C05_124MA"}, "S2302_C02_006E": {"label": "Estimate!!Percent!!Families!!EMPLOYMENT STATUS CHARACTERISTICS!!Opposite-sex married-couple families!!Both husband and wife not in labor force", "concept": "Employment Characteristics of Families", "predicateType": "float", "group": "S2302", "limit": 0, "attributes": "S2302_C02_006EA,S2302_C02_006M,S2302_C02_006MA"}, "S0801_C03_016E": {"label": "Estimate!!Female!!Workers 16 years and over!!PLACE OF WORK!!Worked in state of residence!!Worked outside county of residence", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C03_016EA,S0801_C03_016M,S0801_C03_016MA"}, "S0502PR_C04_052E": {"label": "Estimate!!Foreign-born; Entered before 2000!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Graduate or professional degree", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_052EA,S0502PR_C04_052M,S0502PR_C04_052MA"}, "S0506_C05_123E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_123EA,S0506_C05_123M,S0506_C05_123MA"}, "S0505_C04_036E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!MARITAL STATUS!!Population 15 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C04_036EA,S0505_C04_036M,S0505_C04_036MA"}, "S2302_C02_009E": {"label": "Estimate!!Percent!!Families!!EMPLOYMENT STATUS CHARACTERISTICS!!Other families!!Female householder, no spouse present!!In labor force", "concept": "Employment Characteristics of Families", "predicateType": "float", "group": "S2302", "limit": 0, "attributes": "S2302_C02_009EA,S2302_C02_009M,S2302_C02_009MA"}, "S0801_C03_017E": {"label": "Estimate!!Female!!Workers 16 years and over!!PLACE OF WORK!!Worked outside state of residence", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C03_017EA,S0801_C03_017M,S0801_C03_017MA"}, "S0804_C02_085E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!60 or more minutes", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_085EA,S0804_C02_085M,S0804_C02_085MA"}, "S0502PR_C04_055E": {"label": "Estimate!!Foreign-born; Entered before 2000!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_055EA,S0502PR_C04_055M,S0502PR_C04_055MA"}, "S0601PR_C04_018E": {"label": "Estimate!!Native; born outside Puerto Rico and the U.S.!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C04_018EA,S0601PR_C04_018M,S0601PR_C04_018MA"}, "S0506_C05_122E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_122EA,S0506_C05_122M,S0506_C05_122MA"}, "S0505_C04_035E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Foreign-born population!!Average family size", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_035EA,S0505_C04_035M,S0505_C04_035MA"}, "S2302_C02_008E": {"label": "Estimate!!Percent!!Families!!EMPLOYMENT STATUS CHARACTERISTICS!!Other families!!Female householder, no spouse present", "concept": "Employment Characteristics of Families", "predicateType": "float", "group": "S2302", "limit": 0, "attributes": "S2302_C02_008EA,S2302_C02_008M,S2302_C02_008MA"}, "S0804_C02_086E": {"label": "Estimate!!Car, truck, or van -- drove alone!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!Mean travel time to work (minutes)", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C02_086EA,S0804_C02_086M,S0804_C02_086MA"}, "S0502PR_C04_054E": {"label": "Estimate!!Foreign-born; Entered before 2000!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!English only", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_054EA,S0502PR_C04_054M,S0502PR_C04_054MA"}, "S0801_C03_018E": {"label": "Estimate!!Female!!Workers 16 years and over!!PLACE OF WORK!!Living in a place", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C03_018EA,S0801_C03_018M,S0801_C03_018MA"}, "S0601PR_C04_019E": {"label": "Estimate!!Native; born outside Puerto Rico and the U.S.!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C04_019EA,S0601PR_C04_019M,S0601PR_C04_019MA"}, "S2603_C03_085E": {"label": "Estimate!!Adult correctional facilities!!EMPLOYMENT STATUS!!Population 16 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C03_085EA,S2603_C03_085M,S2603_C03_085MA"}, "S2302_C02_030E": {"label": "Estimate!!Percent!!WORK STATUS CHARACTERISTICS!!Married-couple families!!Householder did not work in the past 12 months:!!Spouse did not work in the past 12 months", "concept": "Employment Characteristics of Families", "predicateType": "float", "group": "S2302", "limit": 0, "attributes": "S2302_C02_030EA,S2302_C02_030M,S2302_C02_030MA"}, "S2603_C03_086E": {"label": "Estimate!!Adult correctional facilities!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C03_086EA,S2603_C03_086M,S2603_C03_086MA"}, "S0502_C02_001E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Foreign-born population", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C02_001EA,S0502_C02_001M,S0502_C02_001MA"}, "S2603_C03_083E": {"label": "Estimate!!Adult correctional facilities!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C03_083EA,S2603_C03_083M,S2603_C03_083MA"}, "S0502_C02_002E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Foreign-born population!!CITIZENSHIP!!Naturalized citizen", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_002EA,S0502_C02_002M,S0502_C02_002MA"}, "S2401_C01_009E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Computer, engineering, and science occupations:!!Life, physical, and social science occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C01_009EA,S2401_C01_009M,S2401_C01_009MA"}, "S2603_C03_084E": {"label": "Estimate!!Adult correctional facilities!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English!!Speak English less than \"very well\"", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C03_084EA,S2603_C03_084M,S2603_C03_084MA"}, "S0502_C02_003E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Foreign-born population!!CITIZENSHIP!!Not a citizen", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_003EA,S0502_C02_003M,S0502_C02_003MA"}, "S0505_C04_079E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Civilian employed population 16 years and over!!INDUSTRY!!Transportation and warehousing, and utilities", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_079EA,S0505_C04_079M,S0505_C04_079MA"}, "S2603_C03_089E": {"label": "Estimate!!Adult correctional facilities!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C03_089EA,S2603_C03_089M,S2603_C03_089MA"}, "S2401_C01_008E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Computer, engineering, and science occupations:!!Architecture and engineering occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C01_008EA,S2401_C01_008M,S2401_C01_008MA"}, "S2402_C04_003E": {"label": "Estimate!!Female!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Management, business, and financial occupations:", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C04_003EA,S2402_C04_003M,S2402_C04_003MA"}, "S0505_C04_078E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Civilian employed population 16 years and over!!INDUSTRY!!Retail trade", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_078EA,S0505_C04_078M,S0505_C04_078MA"}, "S2401_C01_007E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Computer, engineering, and science occupations:!!Computer and mathematical occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C01_007EA,S2401_C01_007M,S2401_C01_007MA"}, "S2402_C04_004E": {"label": "Estimate!!Female!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Management, business, and financial occupations:!!Management occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C04_004EA,S2402_C04_004M,S2402_C04_004MA"}, "S0505_C04_077E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Civilian employed population 16 years and over!!INDUSTRY!!Wholesale trade", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_077EA,S0505_C04_077M,S0505_C04_077MA"}, "S2401_C01_006E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Computer, engineering, and science occupations:", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C01_006EA,S2401_C01_006M,S2401_C01_006MA"}, "S2601CPR_C02_050E": {"label": "Estimate!!Total group quarters population!!DISABILITY STATUS!!Population 18 to 64 years", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "int", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_050EA,S2601CPR_C02_050M,S2601CPR_C02_050MA"}, "S2603_C03_087E": {"label": "Estimate!!Adult correctional facilities!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C03_087EA,S2603_C03_087M,S2603_C03_087MA"}, "S2402_C04_001E": {"label": "Estimate!!Female!!Full-time, year-round civilian employed population 16 years and over", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C04_001EA,S2402_C04_001M,S2402_C04_001MA"}, "S0505_C04_076E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Civilian employed population 16 years and over!!INDUSTRY!!Manufacturing", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_076EA,S0505_C04_076M,S0505_C04_076MA"}, "S1810_C01_008E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!Native Hawaiian and Other Pacific Islander alone", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C01_008EA,S1810_C01_008M,S1810_C01_008MA"}, "S2603_C03_088E": {"label": "Estimate!!Adult correctional facilities!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Employed", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C03_088EA,S2603_C03_088M,S2603_C03_088MA"}, "S2401_C01_005E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Management, business, and financial occupations:!!Business and financial operations occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C01_005EA,S2401_C01_005M,S2401_C01_005MA"}, "S2402_C04_002E": {"label": "Estimate!!Female!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C04_002EA,S2402_C04_002M,S2402_C04_002MA"}, "S0505_C04_075E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Civilian employed population 16 years and over!!INDUSTRY!!Construction", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_075EA,S0505_C04_075M,S0505_C04_075MA"}, "S1810_C01_009E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!Some other race alone", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C01_009EA,S1810_C01_009M,S1810_C01_009MA"}, "S1810_C01_006E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!American Indian and Alaska Native alone", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C01_006EA,S1810_C01_006M,S1810_C01_006MA"}, "S2601CPR_C02_052E": {"label": "Estimate!!Total group quarters population!!DISABILITY STATUS!!Population 18 to 64 years!!No disability", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_052EA,S2601CPR_C02_052M,S2601CPR_C02_052MA"}, "S0505_C04_074E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Civilian employed population 16 years and over!!INDUSTRY!!Agriculture, forestry, fishing and hunting, and mining", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_074EA,S0505_C04_074M,S0505_C04_074MA"}, "S2402_C04_007E": {"label": "Estimate!!Female!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Computer, engineering, and science occupations:!!Computer and mathematical occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C04_007EA,S2402_C04_007M,S2402_C04_007MA"}, "S2601CPR_C02_051E": {"label": "Estimate!!Total group quarters population!!DISABILITY STATUS!!Population 18 to 64 years!!With a disability", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_051EA,S2601CPR_C02_051M,S2601CPR_C02_051MA"}, "S0505_C04_073E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Civilian employed population 16 years and over!!OCCUPATION!!Production, transportation, and material moving occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_073EA,S0505_C04_073M,S0505_C04_073MA"}, "S2402_C04_008E": {"label": "Estimate!!Female!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Computer, engineering, and science occupations:!!Architecture and engineering occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C04_008EA,S2402_C04_008M,S2402_C04_008MA"}, "S1810_C01_007E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!Asian alone", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C01_007EA,S1810_C01_007M,S1810_C01_007MA"}, "S1810_C01_004E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C01_004EA,S1810_C01_004M,S1810_C01_004MA"}, "S2601CPR_C02_054E": {"label": "Estimate!!Total group quarters population!!DISABILITY STATUS!!Population 65 years and over!!With a disability", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_054EA,S2601CPR_C02_054M,S2601CPR_C02_054MA"}, "S2402_C04_005E": {"label": "Estimate!!Female!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Management, business, and financial occupations:!!Business and financial operations occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C04_005EA,S2402_C04_005M,S2402_C04_005MA"}, "S0505_C04_072E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Civilian employed population 16 years and over!!OCCUPATION!!Natural resources, construction, and maintenance occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_072EA,S0505_C04_072M,S0505_C04_072MA"}, "S1810_C01_005E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!Black or African American alone", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C01_005EA,S1810_C01_005M,S1810_C01_005MA"}, "S2601CPR_C02_053E": {"label": "Estimate!!Total group quarters population!!DISABILITY STATUS!!Population 65 years and over", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "int", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_053EA,S2601CPR_C02_053M,S2601CPR_C02_053MA"}, "S2402_C04_006E": {"label": "Estimate!!Female!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Computer, engineering, and science occupations:", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C04_006EA,S2402_C04_006M,S2402_C04_006MA"}, "S0505_C04_071E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Civilian employed population 16 years and over!!OCCUPATION!!Sales and office occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_071EA,S0505_C04_071M,S0505_C04_071MA"}, "S0601PR_C04_052E": {"label": "Estimate!!Native; born outside Puerto Rico and the U.S.!!PERCENT ALLOCATED!!Citizenship status", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "int", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C04_052EA,S0601PR_C04_052M,S0601PR_C04_052MA"}, "S2601CPR_C02_056E": {"label": "Estimate!!Total group quarters population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Same address", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_056EA,S2601CPR_C02_056M,S2601CPR_C02_056MA"}, "S1810_C01_002E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!SEX!!Male", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C01_002EA,S1810_C01_002M,S1810_C01_002MA"}, "S0505_C04_070E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Civilian employed population 16 years and over!!OCCUPATION!!Service occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_070EA,S0505_C04_070M,S0505_C04_070MA"}, "S1502_C01_004E": {"label": "Estimate!!Total!!Total population 25 years and over with a Bachelor's degree or higher!!Business", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C01_004EA,S1502_C01_004M,S1502_C01_004MA"}, "S2601CPR_C02_057E": {"label": "Estimate!!Total group quarters population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in Puerto Rico or the United States", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_057EA,S2601CPR_C02_057M,S2601CPR_C02_057MA"}, "S2601CPR_C02_055E": {"label": "Estimate!!Total group quarters population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "int", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_055EA,S2601CPR_C02_055M,S2601CPR_C02_055MA"}, "S0601PR_C04_053E": {"label": "Estimate!!Native; born outside Puerto Rico and the U.S.!!PERCENT ALLOCATED!!Place of birth", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "int", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C04_053EA,S0601PR_C04_053M,S0601PR_C04_053MA"}, "S1810_C01_003E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!SEX!!Female", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C01_003EA,S1810_C01_003M,S1810_C01_003MA"}, "S1502_C01_003E": {"label": "Estimate!!Total!!Total population 25 years and over with a Bachelor's degree or higher!!Science and Engineering Related Fields", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C01_003EA,S1502_C01_003M,S1502_C01_003MA"}, "S0601PR_C04_050E": {"label": "Estimate!!Native; born outside Puerto Rico and the U.S.!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!100 to 149 percent of the poverty level", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C04_050EA,S0601PR_C04_050M,S0601PR_C04_050MA"}, "S2402_C04_009E": {"label": "Estimate!!Female!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Computer, engineering, and science occupations:!!Life, physical, and social science occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C04_009EA,S2402_C04_009M,S2402_C04_009MA"}, "S2601CPR_C02_059E": {"label": "Estimate!!Total group quarters population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in Puerto Rico or the United States!!In Puerto Rico!!Same municipio", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_059EA,S2601CPR_C02_059M,S2601CPR_C02_059MA"}, "S1502_C01_002E": {"label": "Estimate!!Total!!Total population 25 years and over with a Bachelor's degree or higher!!Science and Engineering", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C01_002EA,S1502_C01_002M,S1502_C01_002MA"}, "S1810_C01_001E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population", "concept": "Disability Characteristics", "predicateType": "int", "group": "S1810", "limit": 0, "attributes": "S1810_C01_001EA,S1810_C01_001M,S1810_C01_001MA"}, "S0601PR_C04_051E": {"label": "Estimate!!Native; born outside Puerto Rico and the U.S.!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!At or above 150 percent of the poverty level", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C04_051EA,S0601PR_C04_051M,S0601PR_C04_051MA"}, "S1502_C01_001E": {"label": "Estimate!!Total!!Total population 25 years and over with a Bachelor's degree or higher", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C01_001EA,S1502_C01_001M,S1502_C01_001MA"}, "S2601CPR_C02_058E": {"label": "Estimate!!Total group quarters population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in Puerto Rico or the United States!!In Puerto Rico", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_058EA,S2601CPR_C02_058M,S2601CPR_C02_058MA"}, "S1502_C01_008E": {"label": "Estimate!!Total!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!25 to 39 years!!Science and Engineering", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C01_008EA,S1502_C01_008M,S1502_C01_008MA"}, "S0502PR_C04_045E": {"label": "Estimate!!Foreign-born; Entered before 2000!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!High school (grades 9-12)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_045EA,S0502PR_C04_045M,S0502PR_C04_045MA"}, "S1903_C03_033E": {"label": "Estimate!!Median income (dollars)!!FAMILY INCOME BY NUMBER OF EARNERS!!3 or more earners", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C03_033EA,S1903_C03_033M,S1903_C03_033MA"}, "S0504_C01_030E": {"label": "Estimate!!Total!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_030EA,S0504_C01_030M,S0504_C01_030MA"}, "S1502_C01_007E": {"label": "Estimate!!Total!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!25 to 39 years", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C01_007EA,S1502_C01_007M,S1502_C01_007MA"}, "S1903_C03_032E": {"label": "Estimate!!Median income (dollars)!!FAMILY INCOME BY NUMBER OF EARNERS!!2 earners", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C03_032EA,S1903_C03_032M,S1903_C03_032MA"}, "S0502PR_C04_044E": {"label": "Estimate!!Foreign-born; Entered before 2000!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Elementary school (grades K-8)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_044EA,S0502PR_C04_044M,S0502PR_C04_044MA"}, "S0502PR_C04_047E": {"label": "Estimate!!Foreign-born; Entered before 2000!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_047EA,S0502PR_C04_047M,S0502PR_C04_047MA"}, "S1903_C03_031E": {"label": "Estimate!!Median income (dollars)!!FAMILY INCOME BY NUMBER OF EARNERS!!1 earner", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C03_031EA,S1903_C03_031M,S1903_C03_031MA"}, "S1502_C01_006E": {"label": "Estimate!!Total!!Total population 25 years and over with a Bachelor's degree or higher!!Arts, Humanities, and Others", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C01_006EA,S1502_C01_006M,S1502_C01_006MA"}, "S0502PR_C04_046E": {"label": "Estimate!!Foreign-born; Entered before 2000!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!College or graduate school", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_046EA,S0502PR_C04_046M,S0502PR_C04_046MA"}, "S1903_C03_030E": {"label": "Estimate!!Median income (dollars)!!FAMILY INCOME BY NUMBER OF EARNERS!!No earners", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C03_030EA,S1903_C03_030M,S1903_C03_030MA"}, "S1502_C01_005E": {"label": "Estimate!!Total!!Total population 25 years and over with a Bachelor's degree or higher!!Education", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C01_005EA,S1502_C01_005M,S1502_C01_005MA"}, "S0504_C01_034E": {"label": "Estimate!!Total!!Foreign-born population!!Average household size", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_034EA,S0504_C01_034M,S0504_C01_034MA"}, "S0502PR_C04_049E": {"label": "Estimate!!Foreign-born; Entered before 2000!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate (includes equivalency)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_049EA,S0502PR_C04_049M,S0502PR_C04_049MA"}, "S0504_C01_033E": {"label": "Estimate!!Total!!Foreign-born population!!HOUSEHOLD TYPE!!In other households", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_033EA,S0504_C01_033M,S0504_C01_033MA"}, "S0502PR_C04_048E": {"label": "Estimate!!Foreign-born; Entered before 2000!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than high school graduate", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_048EA,S0502PR_C04_048M,S0502PR_C04_048MA"}, "S0506_C05_119E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_119EA,S0506_C05_119M,S0506_C05_119MA"}, "S0504_C01_032E": {"label": "Estimate!!Total!!Foreign-born population!!HOUSEHOLD TYPE!!In married-couple family", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_032EA,S0504_C01_032M,S0504_C01_032MA"}, "S0506_C05_118E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_118EA,S0506_C05_118M,S0506_C05_118MA"}, "S1502_C01_009E": {"label": "Estimate!!Total!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!25 to 39 years!!Science and Engineering Related Fields", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C01_009EA,S1502_C01_009M,S1502_C01_009MA"}, "S0504_C01_031E": {"label": "Estimate!!Total!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_031EA,S0504_C01_031M,S0504_C01_031MA"}, "S2401_C01_004E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Management, business, and financial occupations:!!Management occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C01_004EA,S2401_C01_004M,S2401_C01_004MA"}, "S0506_C05_117E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_117EA,S0506_C05_117M,S0506_C05_117MA"}, "S0504_C01_038E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_038EA,S0504_C01_038M,S0504_C01_038MA"}, "S2401_C01_003E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Management, business, and financial occupations:", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C01_003EA,S2401_C01_003M,S2401_C01_003MA"}, "S0506_C05_116E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_116EA,S0506_C05_116M,S0506_C05_116MA"}, "S0504_C01_037E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_037EA,S0504_C01_037M,S0504_C01_037MA"}, "S2401_C01_002E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C01_002EA,S2401_C01_002M,S2401_C01_002MA"}, "S0506_C05_115E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_115EA,S0506_C05_115M,S0506_C05_115MA"}, "S0504_C01_036E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C01_036EA,S0504_C01_036M,S0504_C01_036MA"}, "S1903_C03_039E": {"label": "Estimate!!Median income (dollars)!!NONFAMILY HOUSEHOLDS!!Nonfamily households!!Male householder!!Living alone", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C03_039EA,S1903_C03_039M,S1903_C03_039MA"}, "S0801_C03_001E": {"label": "Estimate!!Female!!Workers 16 years and over", "concept": "Commuting Characteristics by Sex", "predicateType": "int", "group": "S0801", "limit": 0, "attributes": "S0801_C03_001EA,S0801_C03_001M,S0801_C03_001MA"}, "S0506_C05_114E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!At or above 200 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_114EA,S0506_C05_114M,S0506_C05_114MA"}, "S0504_C01_035E": {"label": "Estimate!!Total!!Foreign-born population!!Average family size", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_035EA,S0504_C01_035M,S0504_C01_035MA"}, "S2401_C01_001E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C01_001EA,S2401_C01_001M,S2401_C01_001MA"}, "S1903_C03_038E": {"label": "Estimate!!Median income (dollars)!!NONFAMILY HOUSEHOLDS!!Nonfamily households!!Male householder", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C03_038EA,S1903_C03_038M,S1903_C03_038MA"}, "S0801_C03_002E": {"label": "Estimate!!Female!!Workers 16 years and over!!MEANS OF TRANSPORTATION TO WORK!!Car, truck, or van", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C03_002EA,S0801_C03_002M,S0801_C03_002MA"}, "S2603_C03_081E": {"label": "Estimate!!Adult correctional facilities!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C03_081EA,S2603_C03_081M,S2603_C03_081MA"}, "S0506_C05_113E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!100 to 199 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_113EA,S0506_C05_113M,S0506_C05_113MA"}, "S1903_C03_037E": {"label": "Estimate!!Median income (dollars)!!NONFAMILY HOUSEHOLDS!!Nonfamily households!!Female householder!!Not living alone", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C03_037EA,S1903_C03_037M,S1903_C03_037MA"}, "S0801_C03_003E": {"label": "Estimate!!Female!!Workers 16 years and over!!MEANS OF TRANSPORTATION TO WORK!!Car, truck, or van!!Drove alone", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C03_003EA,S0801_C03_003M,S0801_C03_003MA"}, "S0502PR_C04_041E": {"label": "Estimate!!Foreign-born; Entered before 2000!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_041EA,S0502PR_C04_041M,S0502PR_C04_041MA"}, "S1903_C03_036E": {"label": "Estimate!!Median income (dollars)!!NONFAMILY HOUSEHOLDS!!Nonfamily households!!Female householder!!Living alone", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C03_036EA,S1903_C03_036M,S1903_C03_036MA"}, "S0506_C05_112E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!Below 100 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_112EA,S0506_C05_112M,S0506_C05_112MA"}, "S2603_C03_082E": {"label": "Estimate!!Adult correctional facilities!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!English only", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C03_082EA,S2603_C03_082M,S2603_C03_082MA"}, "S0801_C03_004E": {"label": "Estimate!!Female!!Workers 16 years and over!!MEANS OF TRANSPORTATION TO WORK!!Car, truck, or van!!Carpooled", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C03_004EA,S0801_C03_004M,S0801_C03_004MA"}, "S0502PR_C04_040E": {"label": "Estimate!!Foreign-born; Entered before 2000!!MARITAL STATUS!!Population 15 years and over!!Divorced or separated", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_040EA,S0502PR_C04_040M,S0502PR_C04_040MA"}, "S1903_C03_035E": {"label": "Estimate!!Median income (dollars)!!NONFAMILY HOUSEHOLDS!!Nonfamily households!!Female householder", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C03_035EA,S1903_C03_035M,S1903_C03_035MA"}, "S0506_C05_111E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C05_111EA,S0506_C05_111M,S0506_C05_111MA"}, "S0801_C03_005E": {"label": "Estimate!!Female!!Workers 16 years and over!!MEANS OF TRANSPORTATION TO WORK!!Car, truck, or van!!Carpooled!!In 2-person carpool", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C03_005EA,S0801_C03_005M,S0801_C03_005MA"}, "S0502PR_C04_043E": {"label": "Estimate!!Foreign-born; Entered before 2000!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Nursery school, preschool", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_043EA,S0502PR_C04_043M,S0502PR_C04_043MA"}, "S2603_C03_080E": {"label": "Estimate!!Adult correctional facilities!!WORLD REGION OF BIRTH OF FOREIGN BORN!!Foreign-born population excluding population born at sea!!Other", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C03_080EA,S2603_C03_080M,S2603_C03_080MA"}, "S1903_C03_034E": {"label": "Estimate!!Median income (dollars)!!NONFAMILY HOUSEHOLDS!!Nonfamily households", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C03_034EA,S1903_C03_034M,S1903_C03_034MA"}, "S0506_C05_110E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!Average number of workers per household", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_110EA,S0506_C05_110M,S0506_C05_110MA"}, "S0502PR_C04_042E": {"label": "Estimate!!Foreign-born; Entered before 2000!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_042EA,S0502PR_C04_042M,S0502PR_C04_042MA"}, "S0801_C03_006E": {"label": "Estimate!!Female!!Workers 16 years and over!!MEANS OF TRANSPORTATION TO WORK!!Car, truck, or van!!Carpooled!!In 3-person carpool", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C03_006EA,S0801_C03_006M,S0801_C03_006MA"}, "S0504_C01_039E": {"label": "Estimate!!Total!!MARITAL STATUS!!Population 15 years and over!!Divorced or separated", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_039EA,S0504_C01_039M,S0504_C01_039MA"}, "S0601PR_C04_044E": {"label": "Estimate!!Native; born outside Puerto Rico and the U.S.!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$50,000 to $64,999", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C04_044EA,S0601PR_C04_044M,S0601PR_C04_044MA"}, "S2603_C03_097E": {"label": "Estimate!!Adult correctional facilities!!OCCUPATION!!Civilian employed population 16 years and over!!Natural resources, construction, extraction, and maintenance occupations", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C03_097EA,S2603_C03_097M,S2603_C03_097MA"}, "S2402_C04_011E": {"label": "Estimate!!Female!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:!!Community and social service occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C04_011EA,S2402_C04_011M,S2402_C04_011MA"}, "S2603_C03_098E": {"label": "Estimate!!Adult correctional facilities!!OCCUPATION!!Civilian employed population 16 years and over!!Production, transportation, and material moving occupations", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C03_098EA,S2603_C03_098M,S2603_C03_098MA"}, "S2402_C04_012E": {"label": "Estimate!!Female!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:!!Legal occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C04_012EA,S2402_C04_012M,S2402_C04_012MA"}, "S0505_C04_069E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Civilian employed population 16 years and over!!OCCUPATION!!Management, business, science, and arts occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_069EA,S0505_C04_069M,S0505_C04_069MA"}, "S0601PR_C04_045E": {"label": "Estimate!!Native; born outside Puerto Rico and the U.S.!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$65,000 to $74,999", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C04_045EA,S0601PR_C04_045M,S0601PR_C04_045MA"}, "S0601PR_C04_042E": {"label": "Estimate!!Native; born outside Puerto Rico and the U.S.!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$25,000 to $34,999", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C04_042EA,S0601PR_C04_042M,S0601PR_C04_042MA"}, "S2603_C03_095E": {"label": "Estimate!!Adult correctional facilities!!OCCUPATION!!Civilian employed population 16 years and over!!Service occupations", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C03_095EA,S2603_C03_095M,S2603_C03_095MA"}, "S2302_C02_021E": {"label": "Estimate!!Percent!!WORK STATUS CHARACTERISTICS!!Married-couple families!!Householder worked full-time, year-round in the past 12 months:!!Spouse worked less than full-time, year-round in the past 12 months", "concept": "Employment Characteristics of Families", "predicateType": "float", "group": "S2302", "limit": 0, "attributes": "S2302_C02_021EA,S2302_C02_021M,S2302_C02_021MA"}, "S0505_C04_068E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Unpaid family workers", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_068EA,S0505_C04_068M,S0505_C04_068MA"}, "S0601PR_C04_043E": {"label": "Estimate!!Native; born outside Puerto Rico and the U.S.!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$35,000 to $49,999", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C04_043EA,S0601PR_C04_043M,S0601PR_C04_043MA"}, "S2603_C03_096E": {"label": "Estimate!!Adult correctional facilities!!OCCUPATION!!Civilian employed population 16 years and over!!Sales and office occupations", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C03_096EA,S2603_C03_096M,S2603_C03_096MA"}, "S2302_C02_020E": {"label": "Estimate!!Percent!!WORK STATUS CHARACTERISTICS!!Married-couple families!!Householder worked full-time, year-round in the past 12 months:!!Spouse worked full-time, year-round in the past 12 months", "concept": "Employment Characteristics of Families", "predicateType": "float", "group": "S2302", "limit": 0, "attributes": "S2302_C02_020EA,S2302_C02_020M,S2302_C02_020MA"}, "S2402_C04_010E": {"label": "Estimate!!Female!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C04_010EA,S2402_C04_010M,S2402_C04_010MA"}, "S0505_C04_067E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Self-employed workers in own not incorporated business", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_067EA,S0505_C04_067M,S0505_C04_067MA"}, "S2601CPR_C02_060E": {"label": "Estimate!!Total group quarters population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in Puerto Rico or the United States!!In Puerto Rico!!Different municipio", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_060EA,S2601CPR_C02_060M,S2601CPR_C02_060MA"}, "S2302_C02_023E": {"label": "Estimate!!Percent!!WORK STATUS CHARACTERISTICS!!Married-couple families!!Householder worked less than full-time, year-round in the past 12 months:", "concept": "Employment Characteristics of Families", "predicateType": "float", "group": "S2302", "limit": 0, "attributes": "S2302_C02_023EA,S2302_C02_023M,S2302_C02_023MA"}, "S2402_C04_015E": {"label": "Estimate!!Female!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Healthcare practitioners and technical occupations:", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C04_015EA,S2402_C04_015M,S2402_C04_015MA"}, "S0505_C04_066E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Government workers", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_066EA,S0505_C04_066M,S0505_C04_066MA"}, "S0601PR_C04_048E": {"label": "Estimate!!Native; born outside Puerto Rico and the U.S.!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "int", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C04_048EA,S0601PR_C04_048M,S0601PR_C04_048MA"}, "S2302_C02_022E": {"label": "Estimate!!Percent!!WORK STATUS CHARACTERISTICS!!Married-couple families!!Householder worked full-time, year-round in the past 12 months:!!Spouse did not work in the past 12 months", "concept": "Employment Characteristics of Families", "predicateType": "float", "group": "S2302", "limit": 0, "attributes": "S2302_C02_022EA,S2302_C02_022M,S2302_C02_022MA"}, "S2402_C04_016E": {"label": "Estimate!!Female!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Healthcare practitioners and technical occupations:!!Health diagnosing and treating practitioners and other technical occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C04_016EA,S2402_C04_016M,S2402_C04_016MA"}, "S0505_C04_065E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Private wage and salary workers", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_065EA,S0505_C04_065M,S0505_C04_065MA"}, "S0601PR_C04_049E": {"label": "Estimate!!Native; born outside Puerto Rico and the U.S.!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!Below 100 percent of the poverty level", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C04_049EA,S0601PR_C04_049M,S0601PR_C04_049MA"}, "S2603_C03_099E": {"label": "Estimate!!Adult correctional facilities!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C03_099EA,S2603_C03_099M,S2603_C03_099MA"}, "S2601CPR_C02_062E": {"label": "Estimate!!Total group quarters population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Elsewhere", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_062EA,S2601CPR_C02_062M,S2601CPR_C02_062MA"}, "S2402_C04_013E": {"label": "Estimate!!Female!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:!!Educational instruction, and library occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C04_013EA,S2402_C04_013M,S2402_C04_013MA"}, "S2302_C02_025E": {"label": "Estimate!!Percent!!WORK STATUS CHARACTERISTICS!!Married-couple families!!Householder worked less than full-time, year-round in the past 12 months:!!Spouse worked less than full-time, year-round in the past 12 months", "concept": "Employment Characteristics of Families", "predicateType": "float", "group": "S2302", "limit": 0, "attributes": "S2302_C02_025EA,S2302_C02_025M,S2302_C02_025MA"}, "S0505_C04_064E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Civilian employed population 16 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C04_064EA,S0505_C04_064M,S0505_C04_064MA"}, "S0601PR_C04_046E": {"label": "Estimate!!Native; born outside Puerto Rico and the U.S.!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$75,000 or more", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C04_046EA,S0601PR_C04_046M,S0601PR_C04_046MA"}, "S2601CPR_C02_061E": {"label": "Estimate!!Total group quarters population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in Puerto Rico or the United States!!In the United States", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_061EA,S2601CPR_C02_061M,S2601CPR_C02_061MA"}, "S2302_C02_024E": {"label": "Estimate!!Percent!!WORK STATUS CHARACTERISTICS!!Married-couple families!!Householder worked less than full-time, year-round in the past 12 months:!!Spouse worked full-time, year-round in the past 12 months", "concept": "Employment Characteristics of Families", "predicateType": "float", "group": "S2302", "limit": 0, "attributes": "S2302_C02_024EA,S2302_C02_024M,S2302_C02_024MA"}, "S2402_C04_014E": {"label": "Estimate!!Female!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:!!Arts, design, entertainment, sports, and media occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C04_014EA,S2402_C04_014M,S2402_C04_014MA"}, "S0505_C04_063E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!EMPLOYMENT STATUS!!Population 16 years and over!!Not in labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_063EA,S0505_C04_063M,S0505_C04_063MA"}, "S0601PR_C04_047E": {"label": "Estimate!!Native; born outside Puerto Rico and the U.S.!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!Median income (dollars)", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "int", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C04_047EA,S0601PR_C04_047M,S0601PR_C04_047MA"}, "S2601CPR_C02_064E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Native", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "int", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_064EA,S2601CPR_C02_064M,S2601CPR_C02_064MA"}, "S0502PR_C04_029E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_029EA,S0502PR_C04_029M,S0502PR_C04_029MA"}, "S0505_C04_062E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Armed Forces", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_062EA,S0505_C04_062M,S0505_C04_062MA"}, "S2402_C04_019E": {"label": "Estimate!!Female!!Full-time, year-round civilian employed population 16 years and over!!Service occupations:!!Healthcare support occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C04_019EA,S2402_C04_019M,S2402_C04_019MA"}, "S2601CPR_C02_063E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "int", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_063EA,S2601CPR_C02_063M,S2601CPR_C02_063MA"}, "S0502PR_C04_028E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_028EA,S0502PR_C04_028M,S0502PR_C04_028MA"}, "S0505_C04_061E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed!!Percent of civilian labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_061EA,S0505_C04_061M,S0505_C04_061MA"}, "S2601CPR_C02_066E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Native!!Female", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_066EA,S2601CPR_C02_066M,S2601CPR_C02_066MA"}, "S2402_C04_017E": {"label": "Estimate!!Female!!Full-time, year-round civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Healthcare practitioners and technical occupations:!!Health technologists and technicians", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C04_017EA,S2402_C04_017M,S2402_C04_017MA"}, "S0505_C04_060E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_060EA,S0505_C04_060M,S0505_C04_060MA"}, "S2601CPR_C02_065E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Native!!Male", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_065EA,S2601CPR_C02_065M,S2601CPR_C02_065MA"}, "S2402_C04_018E": {"label": "Estimate!!Female!!Full-time, year-round civilian employed population 16 years and over!!Service occupations:", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C04_018EA,S2402_C04_018M,S2402_C04_018MA"}, "S0601PR_C04_040E": {"label": "Estimate!!Native; born outside Puerto Rico and the U.S.!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$10,000 to $14,999", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C04_040EA,S0601PR_C04_040M,S0601PR_C04_040MA"}, "S2601CPR_C02_069E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Female", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_069EA,S2601CPR_C02_069M,S2601CPR_C02_069MA"}, "S0601PR_C04_041E": {"label": "Estimate!!Native; born outside Puerto Rico and the U.S.!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$15,000 to $24,999", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C04_041EA,S0601PR_C04_041M,S0601PR_C04_041MA"}, "S2601CPR_C02_067E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "int", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_067EA,S2601CPR_C02_067M,S2601CPR_C02_067MA"}, "S2601CPR_C02_068E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Male", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_068EA,S2601CPR_C02_068M,S2601CPR_C02_068MA"}, "S2802_C01_010E": {"label": "Estimate!!Total!!Total population in households!!RACE AND HISPANIC OR LATINO ORIGIN!!Some other race alone", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C01_010EA,S2802_C01_010M,S2802_C01_010MA"}, "S2802_C01_011E": {"label": "Estimate!!Total!!Total population in households!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C01_011EA,S2802_C01_011M,S2802_C01_011MA"}, "S0504_C03_109E": {"label": "Estimate!!Foreign-born; Born in Northern America!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!Median Household income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C03_109EA,S0504_C03_109M,S0504_C03_109MA"}, "S0502PR_C04_033E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Foreign-born population!!HOUSEHOLD TYPE!!In married-couple family", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_033EA,S0502PR_C04_033M,S0502PR_C04_033MA"}, "S0504_C03_108E": {"label": "Estimate!!Foreign-born; Born in Northern America!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Food Stamp/SNAP benefits", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_108EA,S0504_C03_108M,S0504_C03_108MA"}, "S2802_C01_001E": {"label": "Estimate!!Total!!Total population in households", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C01_001EA,S2802_C01_001M,S2802_C01_001MA"}, "S0502PR_C04_032E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_032EA,S0502PR_C04_032M,S0502PR_C04_032MA"}, "S0502PR_C04_035E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Foreign-born population!!Average household size", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_035EA,S0502PR_C04_035M,S0502PR_C04_035MA"}, "S0504_C03_107E": {"label": "Estimate!!Foreign-born; Born in Northern America!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income!!Mean retirement income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C03_107EA,S0504_C03_107M,S0504_C03_107MA"}, "S2802_C01_002E": {"label": "Estimate!!Total!!Total population in households!!AGE!!Under 18 years", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C01_002EA,S2802_C01_002M,S2802_C01_002MA"}, "S0502PR_C04_034E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Foreign-born population!!HOUSEHOLD TYPE!!In other households", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_034EA,S0502PR_C04_034M,S0502PR_C04_034MA"}, "S0504_C03_106E": {"label": "Estimate!!Foreign-born; Born in Northern America!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_106EA,S0504_C03_106M,S0504_C03_106MA"}, "S2802_C01_003E": {"label": "Estimate!!Total!!Total population in households!!AGE!!18 to 64 years", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C01_003EA,S2802_C01_003M,S2802_C01_003MA"}, "S0506_C05_109E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!Median Household income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C05_109EA,S0506_C05_109M,S0506_C05_109MA"}, "S0504_C01_022E": {"label": "Estimate!!Total!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_022EA,S0504_C01_022M,S0504_C01_022MA"}, "S0502PR_C04_037E": {"label": "Estimate!!Foreign-born; Entered before 2000!!MARITAL STATUS!!Population 15 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_037EA,S0502PR_C04_037M,S0502PR_C04_037MA"}, "S0504_C03_105E": {"label": "Estimate!!Foreign-born; Born in Northern America!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income!!Mean cash public assistance income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C03_105EA,S0504_C03_105M,S0504_C03_105MA"}, "S2802_C01_004E": {"label": "Estimate!!Total!!Total population in households!!AGE!!65 years and over", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C01_004EA,S2802_C01_004M,S2802_C01_004MA"}, "S0506_C05_108E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Food Stamp/SNAP benefits", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_108EA,S0506_C05_108M,S0506_C05_108MA"}, "S0504_C03_104E": {"label": "Estimate!!Foreign-born; Born in Northern America!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_104EA,S0504_C03_104M,S0504_C03_104MA"}, "S0502PR_C04_036E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Foreign-born population!!Average family size", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_036EA,S0502PR_C04_036M,S0502PR_C04_036MA"}, "S2802_C01_005E": {"label": "Estimate!!Total!!Total population in households!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C01_005EA,S2802_C01_005M,S2802_C01_005MA"}, "S0504_C01_021E": {"label": "Estimate!!Total!!Foreign-born population!!SEX AND AGE!!Median age (years)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_021EA,S0504_C01_021M,S0504_C01_021MA"}, "S1903_C03_040E": {"label": "Estimate!!Median income (dollars)!!NONFAMILY HOUSEHOLDS!!Nonfamily households!!Male householder!!Not living alone", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C03_040EA,S1903_C03_040M,S1903_C03_040MA"}, "COUSUB": {"label": "County Subdivision", "group": "N/A", "limit": 0}, "S0506_C05_107E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income!!Mean retirement income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C05_107EA,S0506_C05_107M,S0506_C05_107MA"}, "S0504_C03_103E": {"label": "Estimate!!Foreign-born; Born in Northern America!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income!!Mean Supplemental Security Income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C03_103EA,S0504_C03_103M,S0504_C03_103MA"}, "S2802_C01_006E": {"label": "Estimate!!Total!!Total population in households!!RACE AND HISPANIC OR LATINO ORIGIN!!Black or African American alone", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C01_006EA,S2802_C01_006M,S2802_C01_006MA"}, "S0502PR_C04_039E": {"label": "Estimate!!Foreign-born; Entered before 2000!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_039EA,S0502PR_C04_039M,S0502PR_C04_039MA"}, "S0504_C01_020E": {"label": "Estimate!!Total!!Foreign-born population!!SEX AND AGE!!85 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_020EA,S0504_C01_020M,S0504_C01_020MA"}, "S0506_C05_106E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_106EA,S0506_C05_106M,S0506_C05_106MA"}, "S0504_C03_102E": {"label": "Estimate!!Foreign-born; Born in Northern America!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_102EA,S0504_C03_102M,S0504_C03_102MA"}, "S0502PR_C04_038E": {"label": "Estimate!!Foreign-born; Entered before 2000!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_038EA,S0502PR_C04_038M,S0502PR_C04_038MA"}, "S2802_C01_007E": {"label": "Estimate!!Total!!Total population in households!!RACE AND HISPANIC OR LATINO ORIGIN!!American Indian and Alaska Native alone", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C01_007EA,S2802_C01_007M,S2802_C01_007MA"}, "S0506_C05_105E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income!!Mean cash public assistance income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C05_105EA,S0506_C05_105M,S0506_C05_105MA"}, "S0504_C03_101E": {"label": "Estimate!!Foreign-born; Born in Northern America!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income!!Mean Social Security income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C03_101EA,S0504_C03_101M,S0504_C03_101MA"}, "S2302_C02_027E": {"label": "Estimate!!Percent!!WORK STATUS CHARACTERISTICS!!Married-couple families!!Householder did not work in the past 12 months:", "concept": "Employment Characteristics of Families", "predicateType": "float", "group": "S2302", "limit": 0, "attributes": "S2302_C02_027EA,S2302_C02_027M,S2302_C02_027MA"}, "S2802_C01_008E": {"label": "Estimate!!Total!!Total population in households!!RACE AND HISPANIC OR LATINO ORIGIN!!Asian alone", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C01_008EA,S2802_C01_008M,S2802_C01_008MA"}, "S0504_C01_026E": {"label": "Estimate!!Total!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_026EA,S0504_C01_026M,S0504_C01_026MA"}, "S2802_C01_009E": {"label": "Estimate!!Total!!Total population in households!!RACE AND HISPANIC OR LATINO ORIGIN!!Native Hawaiian and Other Pacific Islander alone", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C01_009EA,S2802_C01_009M,S2802_C01_009MA"}, "S0506_C05_104E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_104EA,S0506_C05_104M,S0506_C05_104MA"}, "S2302_C02_026E": {"label": "Estimate!!Percent!!WORK STATUS CHARACTERISTICS!!Married-couple families!!Householder worked less than full-time, year-round in the past 12 months:!!Spouse did not work in the past 12 months", "concept": "Employment Characteristics of Families", "predicateType": "float", "group": "S2302", "limit": 0, "attributes": "S2302_C02_026EA,S2302_C02_026M,S2302_C02_026MA"}, "S0504_C01_025E": {"label": "Estimate!!Total!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_025EA,S0504_C01_025M,S0504_C01_025MA"}, "S2603_C03_090E": {"label": "Estimate!!Adult correctional facilities!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed!!Percent of civilian labor force", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C03_090EA,S2603_C03_090M,S2603_C03_090MA"}, "S0504_C03_100E": {"label": "Estimate!!Foreign-born; Born in Northern America!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_100EA,S0504_C03_100M,S0504_C03_100MA"}, "S0506_C05_103E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income!!Mean Supplemental Security Income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C05_103EA,S0506_C05_103M,S0506_C05_103MA"}, "S0504_C01_024E": {"label": "Estimate!!Total!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_024EA,S0504_C01_024M,S0504_C01_024MA"}, "S2302_C02_029E": {"label": "Estimate!!Percent!!WORK STATUS CHARACTERISTICS!!Married-couple families!!Householder did not work in the past 12 months:!!Spouse worked less than full-time, year-round in the past 12 months", "concept": "Employment Characteristics of Families", "predicateType": "float", "group": "S2302", "limit": 0, "attributes": "S2302_C02_029EA,S2302_C02_029M,S2302_C02_029MA"}, "S0601PR_C04_038E": {"label": "Estimate!!Native; born outside Puerto Rico and the U.S.!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "int", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C04_038EA,S0601PR_C04_038M,S0601PR_C04_038MA"}, "S0504_C01_023E": {"label": "Estimate!!Total!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_023EA,S0504_C01_023M,S0504_C01_023MA"}, "S0506_C05_102E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_102EA,S0506_C05_102M,S0506_C05_102MA"}, "S2302_C02_028E": {"label": "Estimate!!Percent!!WORK STATUS CHARACTERISTICS!!Married-couple families!!Householder did not work in the past 12 months:!!Spouse worked full-time, year-round in the past 12 months", "concept": "Employment Characteristics of Families", "predicateType": "float", "group": "S2302", "limit": 0, "attributes": "S2302_C02_028EA,S2302_C02_028M,S2302_C02_028MA"}, "S0601PR_C04_039E": {"label": "Estimate!!Native; born outside Puerto Rico and the U.S.!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$1 to $9,999 or loss", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C04_039EA,S0601PR_C04_039M,S0601PR_C04_039MA"}, "S0506_C05_101E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income!!Mean Social Security income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C05_101EA,S0506_C05_101M,S0506_C05_101MA"}, "S2603_C03_093E": {"label": "Estimate!!Adult correctional facilities!!OCCUPATION!!Civilian employed population 16 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C03_093EA,S2603_C03_093M,S2603_C03_093MA"}, "S2603_C03_094E": {"label": "Estimate!!Adult correctional facilities!!OCCUPATION!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C03_094EA,S2603_C03_094M,S2603_C03_094MA"}, "S2402_C04_020E": {"label": "Estimate!!Female!!Full-time, year-round civilian employed population 16 years and over!!Service occupations:!!Protective service occupations:", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C04_020EA,S2402_C04_020M,S2402_C04_020MA"}, "S0506_C05_100E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_100EA,S0506_C05_100M,S0506_C05_100MA"}, "S0504_C01_029E": {"label": "Estimate!!Total!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_029EA,S0504_C01_029M,S0504_C01_029MA"}, "S2603_C03_091E": {"label": "Estimate!!Adult correctional facilities!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Armed Forces", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C03_091EA,S2603_C03_091M,S2603_C03_091MA"}, "S0502PR_C04_031E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_031EA,S0502PR_C04_031M,S0502PR_C04_031MA"}, "S0504_C01_028E": {"label": "Estimate!!Total!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_028EA,S0504_C01_028M,S0504_C01_028MA"}, "S0505_C04_059E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Employed", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_059EA,S0505_C04_059M,S0505_C04_059MA"}, "S2603_C03_092E": {"label": "Estimate!!Adult correctional facilities!!EMPLOYMENT STATUS!!Population 16 years and over!!Not in labor force", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "float", "group": "S2603", "limit": 0, "attributes": "S2603_C03_092EA,S2603_C03_092M,S2603_C03_092MA"}, "S0502PR_C04_030E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_030EA,S0502PR_C04_030M,S0502PR_C04_030MA"}, "S0504_C01_027E": {"label": "Estimate!!Total!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_027EA,S0504_C01_027M,S0504_C01_027MA"}, "S1701_C01_028E": {"label": "Estimate!!Total!!Population for whom poverty status is determined!!EMPLOYMENT STATUS!!Civilian labor force 16 years and over!!Employed", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C01_028EA,S1701_C01_028M,S1701_C01_028MA"}, "S0502_C02_024E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_024EA,S0502_C02_024M,S0502_C02_024MA"}, "S2402_C04_023E": {"label": "Estimate!!Female!!Full-time, year-round civilian employed population 16 years and over!!Service occupations:!!Food preparation and serving related occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C04_023EA,S2402_C04_023M,S2402_C04_023MA"}, "S1002_C02_016E": {"label": "Estimate!!Total!!Percent distribution of grandparents responsible for grandchildren!!Grandparents living with own grandchildren under 18 years!!LABOR FORCE STATUS!!In labor force", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C02_016EA,S1002_C02_016M,S1002_C02_016MA"}, "S2603_C01_101E": {"label": "Estimate!!Total population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!With earnings:!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C01_101EA,S2603_C01_101M,S2603_C01_101MA"}, "S0701_C05_018E": {"label": "Estimate!!Moved; from abroad!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C05_018EA,S0701_C05_018M,S0701_C05_018MA"}, "S2402_C04_024E": {"label": "Estimate!!Female!!Full-time, year-round civilian employed population 16 years and over!!Service occupations:!!Building and grounds cleaning and maintenance occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C04_024EA,S2402_C04_024M,S2402_C04_024MA"}, "S1701_C01_029E": {"label": "Estimate!!Total!!Population for whom poverty status is determined!!EMPLOYMENT STATUS!!Civilian labor force 16 years and over!!Employed!!Male", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C01_029EA,S1701_C01_029M,S1701_C01_029MA"}, "S0502_C02_025E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_025EA,S0502_C02_025M,S0502_C02_025MA"}, "S1002_C02_015E": {"label": "Estimate!!Total!!Percent distribution of grandparents responsible for grandchildren!!Grandparents living with own grandchildren under 18 years!!MARITAL STATUS!!Unmarried (never married, widowed, and divorced)", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C02_015EA,S1002_C02_015M,S1002_C02_015MA"}, "S0701_C05_019E": {"label": "Estimate!!Moved; from abroad!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C05_019EA,S0701_C05_019M,S0701_C05_019MA"}, "S2603_C01_100E": {"label": "Estimate!!Total population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!Per capita income (dollars)", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C01_100EA,S2603_C01_100M,S2603_C01_100MA"}, "S0502_C02_026E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_026EA,S0502_C02_026M,S0502_C02_026MA"}, "S2402_C04_021E": {"label": "Estimate!!Female!!Full-time, year-round civilian employed population 16 years and over!!Service occupations:!!Protective service occupations:!!Firefighting and prevention, and other protective service workers including supervisors", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C04_021EA,S2402_C04_021M,S2402_C04_021MA"}, "S0901_C01_019E": {"label": "Estimate!!Total!!Children under 18 years in households!!NATIVITY!!Native", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C01_019EA,S0901_C01_019M,S0901_C01_019MA"}, "S1002_C02_018E": {"label": "Estimate!!Total!!Percent distribution of grandparents responsible for grandchildren!!Grandparents living with own grandchildren under 18 years!!NATIVITY!!Foreign born", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C02_018EA,S1002_C02_018M,S1002_C02_018MA"}, "S0701_C05_016E": {"label": "Estimate!!Moved; from abroad!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C05_016EA,S0701_C05_016M,S0701_C05_016MA"}, "S0901_C01_018E": {"label": "Estimate!!Total!!Children under 18 years in households!!RELATIONSHIP TO HOUSEHOLDER!!Foster child or other unrelated child", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C01_018EA,S0901_C01_018M,S0901_C01_018MA"}, "S2402_C04_022E": {"label": "Estimate!!Female!!Full-time, year-round civilian employed population 16 years and over!!Service occupations:!!Protective service occupations:!!Law enforcement workers including supervisors", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C04_022EA,S2402_C04_022M,S2402_C04_022MA"}, "S0502_C02_027E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_027EA,S0502_C02_027M,S0502_C02_027MA"}, "S1002_C02_017E": {"label": "Estimate!!Total!!Percent distribution of grandparents responsible for grandchildren!!Grandparents living with own grandchildren under 18 years!!NATIVITY!!Native", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C02_017EA,S1002_C02_017M,S1002_C02_017MA"}, "S0701_C05_017E": {"label": "Estimate!!Moved; from abroad!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C05_017EA,S0701_C05_017M,S0701_C05_017MA"}, "S0506_C03_082E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Civilian employed population 16 years and over!!INDUSTRY!!Professional, scientific, and management, and administrative and waste management services", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_082EA,S0506_C03_082M,S0506_C03_082MA"}, "S0502_C02_020E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Foreign-born population!!SEX AND AGE!!75 to 84 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_020EA,S0502_C02_020M,S0502_C02_020MA"}, "S2402_C04_027E": {"label": "Estimate!!Female!!Full-time, year-round civilian employed population 16 years and over!!Sales and office occupations:!!Sales and related occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C04_027EA,S2402_C04_027M,S2402_C04_027MA"}, "S1701_C01_024E": {"label": "Estimate!!Total!!Population for whom poverty status is determined!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate (includes equivalency)", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C01_024EA,S1701_C01_024M,S1701_C01_024MA"}, "S0701_C05_014E": {"label": "Estimate!!Moved; from abroad!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C05_014EA,S0701_C05_014M,S0701_C05_014MA"}, "S1002_C02_012E": {"label": "Estimate!!Total!!Percent distribution of grandparents responsible for grandchildren!!Grandparents living with own grandchildren under 18 years!!SEX!!Male", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C02_012EA,S1002_C02_012M,S1002_C02_012MA"}, "S0506_C03_081E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Civilian employed population 16 years and over!!INDUSTRY!!Finance and insurance, and real estate and rental and leasing", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_081EA,S0506_C03_081M,S0506_C03_081MA"}, "S0502_C02_021E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Foreign-born population!!SEX AND AGE!!85 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_021EA,S0502_C02_021M,S0502_C02_021MA"}, "S2402_C04_028E": {"label": "Estimate!!Female!!Full-time, year-round civilian employed population 16 years and over!!Sales and office occupations:!!Office and administrative support occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C04_028EA,S2402_C04_028M,S2402_C04_028MA"}, "S1701_C01_025E": {"label": "Estimate!!Total!!Population for whom poverty status is determined!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college, associate's degree", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C01_025EA,S1701_C01_025M,S1701_C01_025MA"}, "S0701_C05_015E": {"label": "Estimate!!Moved; from abroad!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C05_015EA,S0701_C05_015M,S0701_C05_015MA"}, "S1002_C02_011E": {"label": "Estimate!!Total!!Percent distribution of grandparents responsible for grandchildren!!Grandparents living with own grandchildren under 18 years!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C02_011EA,S1002_C02_011M,S1002_C02_011MA"}, "S0506_C03_080E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Civilian employed population 16 years and over!!INDUSTRY!!Information", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_080EA,S0506_C03_080M,S0506_C03_080MA"}, "S0502_C02_022E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Foreign-born population!!SEX AND AGE!!Median age (years)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_022EA,S0502_C02_022M,S0502_C02_022MA"}, "S2402_C04_025E": {"label": "Estimate!!Female!!Full-time, year-round civilian employed population 16 years and over!!Service occupations:!!Personal care and service occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C04_025EA,S2402_C04_025M,S2402_C04_025MA"}, "S1002_C02_014E": {"label": "Estimate!!Total!!Percent distribution of grandparents responsible for grandchildren!!Grandparents living with own grandchildren under 18 years!!MARITAL STATUS!!Now married (including separated and spouse absent)", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C02_014EA,S1002_C02_014M,S1002_C02_014MA"}, "S1701_C01_026E": {"label": "Estimate!!Total!!Population for whom poverty status is determined!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree or higher", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C01_026EA,S1701_C01_026M,S1701_C01_026MA"}, "S0701_C05_012E": {"label": "Estimate!!Moved; from abroad!!Population 1 year and over!!SEX!!Male", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C05_012EA,S0701_C05_012M,S0701_C05_012MA"}, "S2401_C01_029E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Natural resources, construction, and maintenance occupations:", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C01_029EA,S2401_C01_029M,S2401_C01_029MA"}, "S2403_C03_009E": {"label": "Estimate!!Percent Male!!Civilian employed population 16 years and over!!Transportation and warehousing, and utilities:", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2403", "limit": 0, "attributes": "S2403_C03_009EA,S2403_C03_009M,S2403_C03_009MA"}, "S2402_C04_026E": {"label": "Estimate!!Female!!Full-time, year-round civilian employed population 16 years and over!!Sales and office occupations:", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C04_026EA,S2402_C04_026M,S2402_C04_026MA"}, "S0505_C04_099E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings!!Mean earnings (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C04_099EA,S0505_C04_099M,S0505_C04_099MA"}, "S0502_C02_023E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_023EA,S0502_C02_023M,S0502_C02_023MA"}, "S1701_C01_027E": {"label": "Estimate!!Total!!Population for whom poverty status is determined!!EMPLOYMENT STATUS!!Civilian labor force 16 years and over", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C01_027EA,S1701_C01_027M,S1701_C01_027MA"}, "S0701_C05_013E": {"label": "Estimate!!Moved; from abroad!!Population 1 year and over!!SEX!!Female", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C05_013EA,S0701_C05_013M,S0701_C05_013MA"}, "S1002_C02_013E": {"label": "Estimate!!Total!!Percent distribution of grandparents responsible for grandchildren!!Grandparents living with own grandchildren under 18 years!!SEX!!Female", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C02_013EA,S1002_C02_013M,S1002_C02_013MA"}, "S0701_C05_010E": {"label": "Estimate!!Moved; from abroad!!Population 1 year and over!!AGE!!75 years and over", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C05_010EA,S0701_C05_010M,S0701_C05_010MA"}, "S0505_C06_104E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_104EA,S0505_C06_104M,S0505_C06_104MA"}, "S0506_C03_086E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Civilian employed population 16 years and over!!INDUSTRY!!Public administration", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_086EA,S0506_C03_086M,S0506_C03_086MA"}, "S0502PR_C04_017E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Foreign-born population!!SEX AND AGE!!45 to 54 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_017EA,S0502PR_C04_017M,S0502PR_C04_017MA"}, "S1701_C01_020E": {"label": "Estimate!!Total!!Population for whom poverty status is determined!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C01_020EA,S1701_C01_020M,S1701_C01_020MA"}, "S0505_C04_098E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_098EA,S0505_C04_098M,S0505_C04_098MA"}, "S1702_C04_023E": {"label": "Estimate!!Percent below poverty level!!Married-couple families!!Families!!EDUCATIONAL ATTAINMENT OF HOUSEHOLDER!!Bachelor's degree or higher", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C04_023EA,S1702_C04_023M,S1702_C04_023MA"}, "S0701_C05_011E": {"label": "Estimate!!Moved; from abroad!!Population 1 year and over!!AGE!!Median age (years)", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C05_011EA,S0701_C05_011M,S0701_C05_011MA"}, "S0506_C03_085E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Civilian employed population 16 years and over!!INDUSTRY!!Other services (except public administration)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_085EA,S0506_C03_085M,S0506_C03_085MA"}, "S0505_C06_105E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income!!Mean cash public assistance income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C06_105EA,S0505_C06_105M,S0505_C06_105MA"}, "S0502PR_C04_016E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Foreign-born population!!SEX AND AGE!!25 to 44 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_016EA,S0502PR_C04_016M,S0502PR_C04_016MA"}, "S0505_C04_097E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C04_097EA,S0505_C04_097M,S0505_C04_097MA"}, "S1701_C01_021E": {"label": "Estimate!!Total!!Population for whom poverty status is determined!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C01_021EA,S1701_C01_021M,S1701_C01_021MA"}, "S1702_C04_022E": {"label": "Estimate!!Percent below poverty level!!Married-couple families!!Families!!EDUCATIONAL ATTAINMENT OF HOUSEHOLDER!!Some college, associate's degree", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C04_022EA,S1702_C04_022M,S1702_C04_022MA"}, "S2603_C01_107E": {"label": "Estimate!!Total population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!With Food Stamp/SNAP benefits", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C01_107EA,S2603_C01_107M,S2603_C01_107MA"}, "S0506_C03_084E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Civilian employed population 16 years and over!!INDUSTRY!!Arts, entertainment, and recreation, and accommodation and food services", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_084EA,S0506_C03_084M,S0506_C03_084MA"}, "S0505_C06_102E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_102EA,S0505_C06_102M,S0505_C06_102MA"}, "S0502PR_C04_019E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Foreign-born population!!SEX AND AGE!!65 to 74 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_019EA,S0502PR_C04_019M,S0502PR_C04_019MA"}, "S1701_C01_022E": {"label": "Estimate!!Total!!Population for whom poverty status is determined!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C01_022EA,S1701_C01_022M,S1701_C01_022MA"}, "S0505_C04_096E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!Median earnings (dollars) for full-time, year-round workers!!Female", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C04_096EA,S0505_C04_096M,S0505_C04_096MA"}, "S2402_C04_029E": {"label": "Estimate!!Female!!Full-time, year-round civilian employed population 16 years and over!!Natural resources, construction, and maintenance occupations:", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C04_029EA,S2402_C04_029M,S2402_C04_029MA"}, "S1002_C02_010E": {"label": "Estimate!!Total!!Percent distribution of grandparents responsible for grandchildren!!Grandparents living with own grandchildren under 18 years!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C02_010EA,S1002_C02_010M,S1002_C02_010MA"}, "S1702_C04_021E": {"label": "Estimate!!Percent below poverty level!!Married-couple families!!Families!!EDUCATIONAL ATTAINMENT OF HOUSEHOLDER!!High school graduate (includes equivalency)", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C04_021EA,S1702_C04_021M,S1702_C04_021MA"}, "S0506_C03_083E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Civilian employed population 16 years and over!!INDUSTRY!!Educational services, and health care and social assistance", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_083EA,S0506_C03_083M,S0506_C03_083MA"}, "S0505_C06_103E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income!!Mean Supplemental Security Income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C06_103EA,S0505_C06_103M,S0505_C06_103MA"}, "S2603_C01_106E": {"label": "Estimate!!Total population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!Median earnings (dollars):!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C01_106EA,S2603_C01_106M,S2603_C01_106MA"}, "S0502PR_C04_018E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Foreign-born population!!SEX AND AGE!!55 to 64 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_018EA,S0502PR_C04_018M,S0502PR_C04_018MA"}, "S0505_C04_095E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!Median earnings (dollars) for full-time, year-round workers!!Male", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C04_095EA,S0505_C04_095M,S0505_C04_095MA"}, "S1701_C01_023E": {"label": "Estimate!!Total!!Population for whom poverty status is determined!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than high school graduate", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C01_023EA,S1701_C01_023M,S1701_C01_023MA"}, "S1702_C04_020E": {"label": "Estimate!!Percent below poverty level!!Married-couple families!!Families!!EDUCATIONAL ATTAINMENT OF HOUSEHOLDER!!Less than high school graduate", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C04_020EA,S1702_C04_020M,S1702_C04_020MA"}, "S2603_C01_105E": {"label": "Estimate!!Total population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!Median earnings (dollars):!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C01_105EA,S2603_C01_105M,S2603_C01_105MA"}, "S0505_C06_108E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Food Stamp/SNAP benefits", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_108EA,S0505_C06_108M,S0505_C06_108MA"}, "S0505_C04_094E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$75,000 or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_094EA,S0505_C04_094M,S0505_C04_094MA"}, "S0505_C06_109E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!Median Household income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C06_109EA,S0505_C06_109M,S0505_C06_109MA"}, "S0505_C04_093E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$50,000 to $74,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_093EA,S0505_C04_093M,S0505_C04_093MA"}, "S2603_C01_104E": {"label": "Estimate!!Total population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!Mean earnings (dollars):!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C01_104EA,S2603_C01_104M,S2603_C01_104MA"}, "S0506_C03_089E": {"label": "Estimate!!Foreign-born; Born in Mexico!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$10,000 to $14,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_089EA,S0506_C03_089M,S0506_C03_089MA"}, "S0505_C06_106E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_106EA,S0505_C06_106M,S0505_C06_106MA"}, "S0505_C04_092E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$35,000 to $49,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_092EA,S0505_C04_092M,S0505_C04_092MA"}, "S2603_C01_103E": {"label": "Estimate!!Total population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!Mean earnings (dollars):!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C01_103EA,S2603_C01_103M,S2603_C01_103MA"}, "S0506_C03_088E": {"label": "Estimate!!Foreign-born; Born in Mexico!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$1 to $9,999 or loss", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_088EA,S0506_C03_088M,S0506_C03_088MA"}, "S0506_C03_087E": {"label": "Estimate!!Foreign-born; Born in Mexico!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C03_087EA,S0506_C03_087M,S0506_C03_087MA"}, "S0505_C06_107E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income!!Mean retirement income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C06_107EA,S0505_C06_107M,S0505_C06_107MA"}, "S0505_C04_091E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$25,000 to $34,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_091EA,S0505_C04_091M,S0505_C04_091MA"}, "S2603_C01_102E": {"label": "Estimate!!Total population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!With earnings:!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C01_102EA,S2603_C01_102M,S2603_C01_102MA"}, "S2401_C01_020E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Service occupations:!!Protective service occupations:", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C01_020EA,S2401_C01_020M,S2401_C01_020MA"}, "S0502PR_C04_021E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Foreign-born population!!SEX AND AGE!!85 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_021EA,S0502PR_C04_021M,S0502PR_C04_021MA"}, "S0505_C04_090E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$15,000 to $24,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_090EA,S0505_C04_090M,S0505_C04_090MA"}, "S0502PR_C04_020E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Foreign-born population!!SEX AND AGE!!75 to 84 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_020EA,S0502PR_C04_020M,S0502PR_C04_020MA"}, "S1702_C04_029E": {"label": "Estimate!!Percent below poverty level!!Married-couple families!!Families!!NUMBER OF OWN CHILDREN OF THE HOUSEHOLDER UNDER 18 YEARS!!1 or 2 own children of the householder", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C04_029EA,S1702_C04_029M,S1702_C04_029MA"}, "S0502PR_C04_023E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_023EA,S0502PR_C04_023M,S0502PR_C04_023MA"}, "S1702_C04_028E": {"label": "Estimate!!Percent below poverty level!!Married-couple families!!Families!!NUMBER OF OWN CHILDREN OF THE HOUSEHOLDER UNDER 18 YEARS!!No own child of the householder", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C04_028EA,S1702_C04_028M,S1702_C04_028MA"}, "S0504_C01_099E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings!!Mean earnings (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C01_099EA,S0504_C01_099M,S0504_C01_099MA"}, "S0502PR_C04_022E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Foreign-born population!!SEX AND AGE!!Median age (years)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_022EA,S0502PR_C04_022M,S0502PR_C04_022MA"}, "S0506_C03_079E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Civilian employed population 16 years and over!!INDUSTRY!!Transportation and warehousing, and utilities", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_079EA,S0506_C03_079M,S0506_C03_079MA"}, "S0505_C06_100E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_100EA,S0505_C06_100M,S0505_C06_100MA"}, "S1702_C04_027E": {"label": "Estimate!!Percent below poverty level!!Married-couple families!!Families!!NUMBER OF RELATED CHILDREN OF THE HOUSEHOLDER UNDER 18 YEARS!!5 or more children", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C04_027EA,S1702_C04_027M,S1702_C04_027MA"}, "S0502PR_C04_025E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_025EA,S0502PR_C04_025M,S0502PR_C04_025MA"}, "S0901_C01_021E": {"label": "Estimate!!Total!!Children under 18 years in households!!PRESENCE OF OTHER ADULTS!!Unmarried partner of householder present", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C01_021EA,S0901_C01_021M,S0901_C01_021MA"}, "S1702_C04_026E": {"label": "Estimate!!Percent below poverty level!!Married-couple families!!Families!!NUMBER OF RELATED CHILDREN OF THE HOUSEHOLDER UNDER 18 YEARS!!3 or 4 children", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C04_026EA,S1702_C04_026M,S1702_C04_026MA"}, "S0505_C06_101E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income!!Mean Social Security income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C06_101EA,S0505_C06_101M,S0505_C06_101MA"}, "S0502PR_C04_024E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_024EA,S0502PR_C04_024M,S0502PR_C04_024MA"}, "S0901_C01_020E": {"label": "Estimate!!Total!!Children under 18 years in households!!NATIVITY!!Foreign born", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C01_020EA,S0901_C01_020M,S0901_C01_020MA"}, "S1702_C04_025E": {"label": "Estimate!!Percent below poverty level!!Married-couple families!!Families!!NUMBER OF RELATED CHILDREN OF THE HOUSEHOLDER UNDER 18 YEARS!!1 or 2 children", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C04_025EA,S1702_C04_025M,S1702_C04_025MA"}, "S0502PR_C04_027E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_027EA,S0502PR_C04_027M,S0502PR_C04_027MA"}, "S1702_C04_024E": {"label": "Estimate!!Percent below poverty level!!Married-couple families!!Families!!NUMBER OF RELATED CHILDREN OF THE HOUSEHOLDER UNDER 18 YEARS!!No child", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C04_024EA,S1702_C04_024M,S1702_C04_024MA"}, "S0502PR_C04_026E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_026EA,S0502PR_C04_026M,S0502PR_C04_026MA"}, "S2401_C01_028E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Sales and office occupations:!!Office and administrative support occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C01_028EA,S2401_C01_028M,S2401_C01_028MA"}, "S2403_C03_008E": {"label": "Estimate!!Percent Male!!Civilian employed population 16 years and over!!Retail trade", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2403", "limit": 0, "attributes": "S2403_C03_008EA,S2403_C03_008M,S2403_C03_008MA"}, "S0901_C01_025E": {"label": "Estimate!!Total!!SCHOOL ENROLLMENT!!Children 3 to 17 years in households!!Enrolled in school", "concept": "Children Characteristics", "predicateType": "int", "group": "S0901", "limit": 0, "attributes": "S0901_C01_025EA,S0901_C01_025M,S0901_C01_025MA"}, "S1201_C06_030E": {"label": "Estimate!!Never married!!LABOR FORCE PARTICIPATION!!Females 16 years and over!!In labor force", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C06_030EA,S1201_C06_030M,S1201_C06_030MA"}, "S2503_C01_041E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$75,000 or more", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C01_041EA,S2503_C01_041M,S2503_C01_041MA"}, "S2403_C03_007E": {"label": "Estimate!!Percent Male!!Civilian employed population 16 years and over!!Wholesale trade", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2403", "limit": 0, "attributes": "S2403_C03_007EA,S2403_C03_007M,S2403_C03_007MA"}, "S1201_C06_031E": {"label": "Estimate!!Never married!!SUMMARY INDICATOR!!Ratio of Unmarried Men 15 to 44 years per 100 unmarried women 15 to 44 years", "concept": "Marital Status", "predicateType": "int", "group": "S1201", "limit": 0, "attributes": "S1201_C06_031EA,S1201_C06_031M,S1201_C06_031MA"}, "S2401_C01_027E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Sales and office occupations:!!Sales and related occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C01_027EA,S2401_C01_027M,S2401_C01_027MA"}, "S2503_C01_040E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$50,000 to $74,999!!30 percent or more", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C01_040EA,S2503_C01_040M,S2503_C01_040MA"}, "S0901_C01_024E": {"label": "Estimate!!Total!!SCHOOL ENROLLMENT!!Children 3 to 17 years in households", "concept": "Children Characteristics", "predicateType": "int", "group": "S0901", "limit": 0, "attributes": "S0901_C01_024EA,S0901_C01_024M,S0901_C01_024MA"}, "S2403_C03_006E": {"label": "Estimate!!Percent Male!!Civilian employed population 16 years and over!!Manufacturing", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2403", "limit": 0, "attributes": "S2403_C03_006EA,S2403_C03_006M,S2403_C03_006MA"}, "S2503_C01_043E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$75,000 or more!!20 to 29 percent", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C01_043EA,S2503_C01_043M,S2503_C01_043MA"}, "S1201_C06_032E": {"label": "Estimate!!Never married!!PERCENT ALLOCATED!!Marital status", "concept": "Marital Status", "predicateType": "int", "group": "S1201", "limit": 0, "attributes": "S1201_C06_032EA,S1201_C06_032M,S1201_C06_032MA"}, "S2401_C01_026E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Sales and office occupations:", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C01_026EA,S2401_C01_026M,S2401_C01_026MA"}, "S0901_C01_023E": {"label": "Estimate!!Total!!DISABILITY STATUS!!Civilian children under 18 years in households!!With any disability", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C01_023EA,S0901_C01_023M,S0901_C01_023MA"}, "S2401_C01_025E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Service occupations:!!Personal care and service occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C01_025EA,S2401_C01_025M,S2401_C01_025MA"}, "S2503_C01_042E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$75,000 or more!!Less than 20 percent", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C01_042EA,S2503_C01_042M,S2503_C01_042MA"}, "S0901_C01_022E": {"label": "Estimate!!Total!!DISABILITY STATUS!!Civilian children under 18 years in households", "concept": "Children Characteristics", "predicateType": "int", "group": "S0901", "limit": 0, "attributes": "S0901_C01_022EA,S0901_C01_022M,S0901_C01_022MA"}, "S2403_C03_005E": {"label": "Estimate!!Percent Male!!Civilian employed population 16 years and over!!Construction", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2403", "limit": 0, "attributes": "S2403_C03_005EA,S2403_C03_005M,S2403_C03_005MA"}, "S2503_C01_045E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Zero or negative income", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C01_045EA,S2503_C01_045M,S2503_C01_045MA"}, "S2401_C01_024E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Service occupations:!!Building and grounds cleaning and maintenance occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C01_024EA,S2401_C01_024M,S2401_C01_024MA"}, "S2402_C04_031E": {"label": "Estimate!!Female!!Full-time, year-round civilian employed population 16 years and over!!Natural resources, construction, and maintenance occupations:!!Construction and extraction occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C04_031EA,S2402_C04_031M,S2402_C04_031MA"}, "S0901_C01_029E": {"label": "Estimate!!Total!!Special Subject!!Median income (dollars)", "concept": "Children Characteristics", "predicateType": "int", "group": "S0901", "limit": 0, "attributes": "S0901_C01_029EA,S0901_C01_029M,S0901_C01_029MA"}, "S0502_C02_016E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Foreign-born population!!SEX AND AGE!!25 to 44 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_016EA,S0502_C02_016M,S0502_C02_016MA"}, "S1002_C02_008E": {"label": "Estimate!!Total!!Percent distribution of grandparents responsible for grandchildren!!Grandparents living with own grandchildren under 18 years!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C02_008EA,S1002_C02_008M,S1002_C02_008MA"}, "S2403_C03_004E": {"label": "Estimate!!Percent Male!!Civilian employed population 16 years and over!!Agriculture, forestry, fishing and hunting, and mining:!!Mining, quarrying, and oil and gas extraction", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2403", "limit": 0, "attributes": "S2403_C03_004EA,S2403_C03_004M,S2403_C03_004MA"}, "COUNTY": {"label": "County", "group": "N/A", "limit": 0}, "S2503_C01_044E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$75,000 or more!!30 percent or more", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C01_044EA,S2503_C01_044M,S2503_C01_044MA"}, "S0901_C01_028E": {"label": "Estimate!!Total!!SCHOOL ENROLLMENT!!Children 3 to 17 years in households!!Not enrolled in school", "concept": "Children Characteristics", "predicateType": "int", "group": "S0901", "limit": 0, "attributes": "S0901_C01_028EA,S0901_C01_028M,S0901_C01_028MA"}, "S2401_C01_023E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Service occupations:!!Food preparation and serving related occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C01_023EA,S2401_C01_023M,S2401_C01_023MA"}, "S2402_C04_032E": {"label": "Estimate!!Female!!Full-time, year-round civilian employed population 16 years and over!!Natural resources, construction, and maintenance occupations:!!Installation, maintenance, and repair occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C04_032EA,S2402_C04_032M,S2402_C04_032MA"}, "S0502_C02_017E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Foreign-born population!!SEX AND AGE!!45 to 54 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_017EA,S0502_C02_017M,S0502_C02_017MA"}, "S1002_C02_007E": {"label": "Estimate!!Total!!Percent distribution of grandparents responsible for grandchildren!!Grandparents living with own grandchildren under 18 years!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C02_007EA,S1002_C02_007M,S1002_C02_007MA"}, "S2403_C03_003E": {"label": "Estimate!!Percent Male!!Civilian employed population 16 years and over!!Agriculture, forestry, fishing and hunting, and mining:!!Agriculture, forestry, fishing and hunting", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2403", "limit": 0, "attributes": "S2403_C03_003EA,S2403_C03_003M,S2403_C03_003MA"}, "S0901_C01_027E": {"label": "Estimate!!Total!!SCHOOL ENROLLMENT!!Children 3 to 17 years in households!!Enrolled in school!!Private", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C01_027EA,S0901_C01_027M,S0901_C01_027MA"}, "S2401_C01_022E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Service occupations:!!Protective service occupations:!!Law enforcement workers including supervisors", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C01_022EA,S2401_C01_022M,S2401_C01_022MA"}, "S0502_C02_018E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Foreign-born population!!SEX AND AGE!!55 to 64 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_018EA,S0502_C02_018M,S0502_C02_018MA"}, "S2403_C03_002E": {"label": "Estimate!!Percent Male!!Civilian employed population 16 years and over!!Agriculture, forestry, fishing and hunting, and mining:", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2403", "limit": 0, "attributes": "S2403_C03_002EA,S2403_C03_002M,S2403_C03_002MA"}, "S0701_C05_008E": {"label": "Estimate!!Moved; from abroad!!Population 1 year and over!!AGE!!55 to 64 years", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C05_008EA,S0701_C05_008M,S0701_C05_008MA"}, "S2503_C01_046E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!No cash rent", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C01_046EA,S2503_C01_046M,S2503_C01_046MA"}, "S2402_C04_030E": {"label": "Estimate!!Female!!Full-time, year-round civilian employed population 16 years and over!!Natural resources, construction, and maintenance occupations:!!Farming, fishing, and forestry occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C04_030EA,S2402_C04_030M,S2402_C04_030MA"}, "S2401_C01_021E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Service occupations:!!Protective service occupations:!!Firefighting and prevention, and other protective service workers including supervisors", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C01_021EA,S2401_C01_021M,S2401_C01_021MA"}, "S0901_C01_026E": {"label": "Estimate!!Total!!SCHOOL ENROLLMENT!!Children 3 to 17 years in households!!Enrolled in school!!Public", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C01_026EA,S0901_C01_026M,S0901_C01_026MA"}, "S0502_C02_019E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Foreign-born population!!SEX AND AGE!!65 to 74 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_019EA,S0502_C02_019M,S0502_C02_019MA"}, "S0701_C05_009E": {"label": "Estimate!!Moved; from abroad!!Population 1 year and over!!AGE!!65 to 74 years", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C05_009EA,S0701_C05_009M,S0701_C05_009MA"}, "S1002_C02_009E": {"label": "Estimate!!Total!!Percent distribution of grandparents responsible for grandchildren!!Grandparents living with own grandchildren under 18 years!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C02_009EA,S1002_C02_009M,S1002_C02_009MA"}, "S2403_C03_001E": {"label": "Estimate!!Percent Male!!Civilian employed population 16 years and over", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2403", "limit": 0, "attributes": "S2403_C03_001EA,S2403_C03_001M,S2403_C03_001MA"}, "S2402_C04_035E": {"label": "Estimate!!Female!!Full-time, year-round civilian employed population 16 years and over!!Production, transportation, and material moving occupations:!!Transportation occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C04_035EA,S2402_C04_035M,S2402_C04_035MA"}, "S0502_C02_012E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Foreign-born population!!SEX AND AGE!!Female", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_012EA,S0502_C02_012M,S0502_C02_012MA"}, "S0506_C03_090E": {"label": "Estimate!!Foreign-born; Born in Mexico!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$15,000 to $24,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_090EA,S0506_C03_090M,S0506_C03_090MA"}, "S2603_C05_103E": {"label": "Estimate!!Juvenile Facilities!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!Mean earnings (dollars):!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C05_103EA,S2603_C05_103M,S2603_C05_103MA"}, "S1002_C02_004E": {"label": "Estimate!!Total!!Percent distribution of grandparents responsible for grandchildren!!Grandparents living with own grandchildren under 18 years!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C02_004EA,S1002_C02_004M,S1002_C02_004MA"}, "S1701_C01_016E": {"label": "Estimate!!Total!!Population for whom poverty status is determined!!RACE AND HISPANIC OR LATINO ORIGIN!!Asian alone", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C01_016EA,S1701_C01_016M,S1701_C01_016MA"}, "S0701_C05_006E": {"label": "Estimate!!Moved; from abroad!!Population 1 year and over!!AGE!!35 to 44 years", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C05_006EA,S0701_C05_006M,S0701_C05_006MA"}, "S2402_C04_036E": {"label": "Estimate!!Female!!Full-time, year-round civilian employed population 16 years and over!!Production, transportation, and material moving occupations:!!Material moving occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C04_036EA,S2402_C04_036M,S2402_C04_036MA"}, "S1701_C01_017E": {"label": "Estimate!!Total!!Population for whom poverty status is determined!!RACE AND HISPANIC OR LATINO ORIGIN!!Native Hawaiian and Other Pacific Islander alone", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C01_017EA,S1701_C01_017M,S1701_C01_017MA"}, "S0502_C02_013E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Foreign-born population!!SEX AND AGE!!Under 5 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_013EA,S0502_C02_013M,S0502_C02_013MA"}, "S1002_C02_003E": {"label": "Estimate!!Total!!Percent distribution of grandparents responsible for grandchildren!!Grandparents living with own grandchildren under 18 years!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C02_003EA,S1002_C02_003M,S1002_C02_003MA"}, "S2603_C05_102E": {"label": "Estimate!!Juvenile Facilities!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!With earnings:!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C05_102EA,S2603_C05_102M,S2603_C05_102MA"}, "S0701_C05_007E": {"label": "Estimate!!Moved; from abroad!!Population 1 year and over!!AGE!!45 to 54 years", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C05_007EA,S0701_C05_007M,S0701_C05_007MA"}, "S1701_C01_018E": {"label": "Estimate!!Total!!Population for whom poverty status is determined!!RACE AND HISPANIC OR LATINO ORIGIN!!Some other race alone", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C01_018EA,S1701_C01_018M,S1701_C01_018MA"}, "S0502_C02_014E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Foreign-born population!!SEX AND AGE!!5 to 17 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_014EA,S0502_C02_014M,S0502_C02_014MA"}, "S2402_C04_033E": {"label": "Estimate!!Female!!Full-time, year-round civilian employed population 16 years and over!!Production, transportation, and material moving occupations:", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C04_033EA,S2402_C04_033M,S2402_C04_033MA"}, "S1002_C02_006E": {"label": "Estimate!!Total!!Percent distribution of grandparents responsible for grandchildren!!Grandparents living with own grandchildren under 18 years!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C02_006EA,S1002_C02_006M,S1002_C02_006MA"}, "S2603_C05_105E": {"label": "Estimate!!Juvenile Facilities!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!Median earnings (dollars):!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C05_105EA,S2603_C05_105M,S2603_C05_105MA"}, "S0701_C05_004E": {"label": "Estimate!!Moved; from abroad!!Population 1 year and over!!AGE!!18 to 24 years", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C05_004EA,S0701_C05_004M,S0701_C05_004MA"}, "S1701_C01_019E": {"label": "Estimate!!Total!!Population for whom poverty status is determined!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C01_019EA,S1701_C01_019M,S1701_C01_019MA"}, "S0502_C02_015E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Foreign-born population!!SEX AND AGE!!18 to 24 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_015EA,S0502_C02_015M,S0502_C02_015MA"}, "S2402_C04_034E": {"label": "Estimate!!Female!!Full-time, year-round civilian employed population 16 years and over!!Production, transportation, and material moving occupations:!!Production occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C04_034EA,S2402_C04_034M,S2402_C04_034MA"}, "S2603_C05_104E": {"label": "Estimate!!Juvenile Facilities!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!Mean earnings (dollars):!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C05_104EA,S2603_C05_104M,S2603_C05_104MA"}, "S1002_C02_005E": {"label": "Estimate!!Total!!Percent distribution of grandparents responsible for grandchildren!!Grandparents living with own grandchildren under 18 years!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C02_005EA,S1002_C02_005M,S1002_C02_005MA"}, "S0701_C05_005E": {"label": "Estimate!!Moved; from abroad!!Population 1 year and over!!AGE!!25 to 34 years", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C05_005EA,S0701_C05_005M,S0701_C05_005MA"}, "S0506_C03_094E": {"label": "Estimate!!Foreign-born; Born in Mexico!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$75,000 or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_094EA,S0506_C03_094M,S0506_C03_094MA"}, "S0504_C01_090E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$15,000 to $24,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_090EA,S0504_C01_090M,S0504_C01_090MA"}, "S1701_C01_012E": {"label": "Estimate!!Total!!Population for whom poverty status is determined!!SEX!!Female", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C01_012EA,S1701_C01_012M,S1701_C01_012MA"}, "S0701_C05_002E": {"label": "Estimate!!Moved; from abroad!!Population 1 year and over!!AGE!!1 to 4 years", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C05_002EA,S0701_C05_002M,S0701_C05_002MA"}, "S2401_C01_019E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Service occupations:!!Healthcare support occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C01_019EA,S2401_C01_019M,S2401_C01_019MA"}, "S0506_C03_093E": {"label": "Estimate!!Foreign-born; Born in Mexico!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$50,000 to $74,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_093EA,S0506_C03_093M,S0506_C03_093MA"}, "S0505_C04_089E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$10,000 to $14,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_089EA,S0505_C04_089M,S0505_C04_089MA"}, "S1701_C01_013E": {"label": "Estimate!!Total!!Population for whom poverty status is determined!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C01_013EA,S1701_C01_013M,S1701_C01_013MA"}, "S0701_C05_003E": {"label": "Estimate!!Moved; from abroad!!Population 1 year and over!!AGE!!5 to 17 years", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C05_003EA,S0701_C05_003M,S0701_C05_003MA"}, "S0506_C03_092E": {"label": "Estimate!!Foreign-born; Born in Mexico!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$35,000 to $49,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_092EA,S0506_C03_092M,S0506_C03_092MA"}, "S2401_C01_018E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Service occupations:", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C01_018EA,S2401_C01_018M,S2401_C01_018MA"}, "S0502_C02_010E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Foreign-born population!!WORLD REGION OF BIRTH OF FOREIGN-BORN!!Northern America", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_010EA,S0502_C02_010M,S0502_C02_010MA"}, "S0505_C04_088E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$1 to $9,999 or loss", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_088EA,S0505_C04_088M,S0505_C04_088MA"}, "S2603_C05_101E": {"label": "Estimate!!Juvenile Facilities!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!With earnings:!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C05_101EA,S2603_C05_101M,S2603_C05_101MA"}, "S1701_C01_014E": {"label": "Estimate!!Total!!Population for whom poverty status is determined!!RACE AND HISPANIC OR LATINO ORIGIN!!Black or African American alone", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C01_014EA,S1701_C01_014M,S1701_C01_014MA"}, "S1002_C02_002E": {"label": "Estimate!!Total!!Percent distribution of grandparents responsible for grandchildren!!Grandparents living with own grandchildren under 18 years!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C02_002EA,S1002_C02_002M,S1002_C02_002MA"}, "S2401_C01_017E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Healthcare practitioners and technical occupations:!!Health technologists and technicians", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C01_017EA,S2401_C01_017M,S2401_C01_017MA"}, "S0506_C03_091E": {"label": "Estimate!!Foreign-born; Born in Mexico!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$25,000 to $34,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_091EA,S0506_C03_091M,S0506_C03_091MA"}, "S0502_C02_011E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Foreign-born population!!SEX AND AGE!!Male", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_011EA,S0502_C02_011M,S0502_C02_011MA"}, "S2603_C05_100E": {"label": "Estimate!!Juvenile Facilities!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!Per capita income (dollars)", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C05_100EA,S2603_C05_100M,S2603_C05_100MA"}, "S0505_C04_087E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C04_087EA,S0505_C04_087M,S0505_C04_087MA"}, "S1701_C01_015E": {"label": "Estimate!!Total!!Population for whom poverty status is determined!!RACE AND HISPANIC OR LATINO ORIGIN!!American Indian and Alaska Native alone", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C01_015EA,S1701_C01_015M,S1701_C01_015MA"}, "S0701_C05_001E": {"label": "Estimate!!Moved; from abroad!!Population 1 year and over", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C05_001EA,S0701_C05_001M,S0701_C05_001MA"}, "S1002_C02_001E": {"label": "Estimate!!Total!!Percent distribution of grandparents responsible for grandchildren!!Grandparents living with own grandchildren under 18 years", "concept": "Grandparents", "predicateType": "int", "group": "S1002", "limit": 0, "attributes": "S1002_C02_001EA,S1002_C02_001M,S1002_C02_001MA"}, "S1702_C04_035E": {"label": "Estimate!!Percent below poverty level!!Married-couple families!!Families!!NUMBER OF PEOPLE IN FAMILY!!7 or more people", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C04_035EA,S1702_C04_035M,S1702_C04_035MA"}, "S0504_C01_094E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$75,000 or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_094EA,S0504_C01_094M,S0504_C01_094MA"}, "S0506_C03_098E": {"label": "Estimate!!Foreign-born; Born in Mexico!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_098EA,S0506_C03_098M,S0506_C03_098MA"}, "S0505_C06_116E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_116EA,S0505_C06_116M,S0505_C06_116MA"}, "S0502PR_C04_005E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Foreign-born population!!WORLD REGION OF BIRTH OF FOREIGN-BORN!!Europe", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_005EA,S0502PR_C04_005M,S0502PR_C04_005MA"}, "S0505_C04_086E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Civilian employed population 16 years and over!!INDUSTRY!!Public administration", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_086EA,S0505_C04_086M,S0505_C04_086MA"}, "S0504_C01_093E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$50,000 to $74,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_093EA,S0504_C01_093M,S0504_C01_093MA"}, "S0506_C03_097E": {"label": "Estimate!!Foreign-born; Born in Mexico!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C03_097EA,S0506_C03_097M,S0506_C03_097MA"}, "S0505_C06_117E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_117EA,S0505_C06_117M,S0505_C06_117MA"}, "S0502PR_C04_004E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Foreign-born population!!WORLD REGION OF BIRTH OF FOREIGN-BORN!!Foreign-born population excluding population born at sea", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_004EA,S0502PR_C04_004M,S0502PR_C04_004MA"}, "S0505_C04_085E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Civilian employed population 16 years and over!!INDUSTRY!!Other services (except public administration)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_085EA,S0505_C04_085M,S0505_C04_085MA"}, "S1702_C04_034E": {"label": "Estimate!!Percent below poverty level!!Married-couple families!!Families!!NUMBER OF PEOPLE IN FAMILY!!5 or 6 people", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C04_034EA,S1702_C04_034M,S1702_C04_034MA"}, "S0504_C01_092E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$35,000 to $49,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_092EA,S0504_C01_092M,S0504_C01_092MA"}, "S0505_C06_114E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!At or above 200 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_114EA,S0505_C06_114M,S0505_C06_114MA"}, "S0506_C03_096E": {"label": "Estimate!!Foreign-born; Born in Mexico!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!Median earnings (dollars) for full-time, year-round workers!!Female", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C03_096EA,S0506_C03_096M,S0506_C03_096MA"}, "S0502PR_C04_007E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Foreign-born population!!WORLD REGION OF BIRTH OF FOREIGN-BORN!!Africa", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_007EA,S0502PR_C04_007M,S0502PR_C04_007MA"}, "S0505_C04_084E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Civilian employed population 16 years and over!!INDUSTRY!!Arts, entertainment, and recreation, and accommodation and food services", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_084EA,S0505_C04_084M,S0505_C04_084MA"}, "S1701_C01_010E": {"label": "Estimate!!Total!!Population for whom poverty status is determined!!AGE!!65 years and over", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C01_010EA,S1701_C01_010M,S1701_C01_010MA"}, "S1702_C04_033E": {"label": "Estimate!!Percent below poverty level!!Married-couple families!!Families!!NUMBER OF PEOPLE IN FAMILY!!3 or 4 people", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C04_033EA,S1702_C04_033M,S1702_C04_033MA"}, "S0504_C01_091E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$25,000 to $34,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_091EA,S0504_C01_091M,S0504_C01_091MA"}, "S0506_C03_095E": {"label": "Estimate!!Foreign-born; Born in Mexico!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!Median earnings (dollars) for full-time, year-round workers!!Male", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C03_095EA,S0506_C03_095M,S0506_C03_095MA"}, "S0505_C06_115E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_115EA,S0505_C06_115M,S0505_C06_115MA"}, "S0502PR_C04_006E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Foreign-born population!!WORLD REGION OF BIRTH OF FOREIGN-BORN!!Asia", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_006EA,S0502PR_C04_006M,S0502PR_C04_006MA"}, "S1701_C01_011E": {"label": "Estimate!!Total!!Population for whom poverty status is determined!!SEX!!Male", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C01_011EA,S1701_C01_011M,S1701_C01_011MA"}, "S0505_C04_083E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Civilian employed population 16 years and over!!INDUSTRY!!Educational services, and health care and social assistance", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_083EA,S0505_C04_083M,S0505_C04_083MA"}, "S1702_C04_032E": {"label": "Estimate!!Percent below poverty level!!Married-couple families!!Families!!NUMBER OF PEOPLE IN FAMILY!!2 people", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C04_032EA,S1702_C04_032M,S1702_C04_032MA"}, "S0502PR_C04_009E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Foreign-born population!!WORLD REGION OF BIRTH OF FOREIGN-BORN!!Latin America", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_009EA,S0502PR_C04_009M,S0502PR_C04_009MA"}, "S0504_C01_098E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_098EA,S0504_C01_098M,S0504_C01_098MA"}, "S0505_C04_082E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Civilian employed population 16 years and over!!INDUSTRY!!Professional, scientific, and management, and administrative and waste management services", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_082EA,S0505_C04_082M,S0505_C04_082MA"}, "S1702_C04_031E": {"label": "Estimate!!Percent below poverty level!!Married-couple families!!Families!!NUMBER OF OWN CHILDREN OF THE HOUSEHOLDER UNDER 18 YEARS!!5 or more own children of the householder", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C04_031EA,S1702_C04_031M,S1702_C04_031MA"}, "S0504_C01_097E": {"label": "Estimate!!Total!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C01_097EA,S0504_C01_097M,S0504_C01_097MA"}, "S0502PR_C04_008E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Foreign-born population!!WORLD REGION OF BIRTH OF FOREIGN-BORN!!Oceania", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_008EA,S0502PR_C04_008M,S0502PR_C04_008MA"}, "S0505_C04_081E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Civilian employed population 16 years and over!!INDUSTRY!!Finance and insurance, and real estate and rental and leasing", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_081EA,S0505_C04_081M,S0505_C04_081MA"}, "S1702_C04_030E": {"label": "Estimate!!Percent below poverty level!!Married-couple families!!Families!!NUMBER OF OWN CHILDREN OF THE HOUSEHOLDER UNDER 18 YEARS!!3 or 4 own children of the householder", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C04_030EA,S1702_C04_030M,S1702_C04_030MA"}, "S0505_C06_118E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_118EA,S0505_C06_118M,S0505_C06_118MA"}, "S0504_C01_096E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!Median earnings (dollars) for full-time, year-round workers!!Female", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C01_096EA,S0504_C01_096M,S0504_C01_096MA"}, "S0505_C04_080E": {"label": "Estimate!!Foreign-born; Born in South Central Asia!!Civilian employed population 16 years and over!!INDUSTRY!!Information", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C04_080EA,S0505_C04_080M,S0505_C04_080MA"}, "S0505_C06_119E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_119EA,S0505_C06_119M,S0505_C06_119MA"}, "S0801_C03_050E": {"label": "Estimate!!Female!!VEHICLES AVAILABLE!!Workers 16 years and over in households!!2 vehicles available", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C03_050EA,S0801_C03_050M,S0801_C03_050MA"}, "S0504_C01_095E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!Median earnings (dollars) for full-time, year-round workers!!Male", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C01_095EA,S0504_C01_095M,S0504_C01_095MA"}, "S0506_C03_099E": {"label": "Estimate!!Foreign-born; Born in Mexico!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings!!Mean earnings (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C03_099EA,S0506_C03_099M,S0506_C03_099MA"}, "S2503_C01_037E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$50,000 to $74,999", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C01_037EA,S2503_C01_037M,S2503_C01_037MA"}, "S0801_C03_051E": {"label": "Estimate!!Female!!VEHICLES AVAILABLE!!Workers 16 years and over in households!!3 or more vehicles available", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C03_051EA,S0801_C03_051M,S0801_C03_051MA"}, "S1101_C01_004E": {"label": "Estimate!!Total!!FAMILIES!!Average family size", "concept": "Households and Families", "predicateType": "float", "group": "S1101", "limit": 0, "attributes": "S1101_C01_004EA,S1101_C01_004M,S1101_C01_004MA"}, "S2403_C03_012E": {"label": "Estimate!!Percent Male!!Civilian employed population 16 years and over!!Information", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2403", "limit": 0, "attributes": "S2403_C03_012EA,S2403_C03_012M,S2403_C03_012MA"}, "S2503_C01_036E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$35,000 to $49,999!!30 percent or more", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C01_036EA,S2503_C01_036M,S2503_C01_036MA"}, "S0801_C03_052E": {"label": "Estimate!!Female!!PERCENT ALLOCATED!!Means of transportation to work", "concept": "Commuting Characteristics by Sex", "predicateType": "int", "group": "S0801", "limit": 0, "attributes": "S0801_C03_052EA,S0801_C03_052M,S0801_C03_052MA"}, "S0504_C01_089E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$10,000 to $14,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_089EA,S0504_C01_089M,S0504_C01_089MA"}, "S1101_C01_005E": {"label": "Estimate!!Total!!AGE OF OWN CHILDREN!!Households with own children of the householder under 18 years", "concept": "Households and Families", "predicateType": "int", "group": "S1101", "limit": 0, "attributes": "S1101_C01_005EA,S1101_C01_005M,S1101_C01_005MA"}, "S2403_C03_011E": {"label": "Estimate!!Percent Male!!Civilian employed population 16 years and over!!Transportation and warehousing, and utilities:!!Utilities", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2403", "limit": 0, "attributes": "S2403_C03_011EA,S2403_C03_011M,S2403_C03_011MA"}, "S1101_C01_002E": {"label": "Estimate!!Total!!HOUSEHOLDS!!Average household size", "concept": "Households and Families", "predicateType": "float", "group": "S1101", "limit": 0, "attributes": "S1101_C01_002EA,S1101_C01_002M,S1101_C01_002MA"}, "S2503_C01_039E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$50,000 to $74,999!!20 to 29 percent", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C01_039EA,S2503_C01_039M,S2503_C01_039MA"}, "S0504_C01_088E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$1 to $9,999 or loss", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_088EA,S0504_C01_088M,S0504_C01_088MA"}, "S0801_C03_053E": {"label": "Estimate!!Female!!PERCENT ALLOCATED!!Private vehicle occupancy", "concept": "Commuting Characteristics by Sex", "predicateType": "int", "group": "S0801", "limit": 0, "attributes": "S0801_C03_053EA,S0801_C03_053M,S0801_C03_053MA"}, "S0502PR_C04_011E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Foreign-born population!!SEX AND AGE!!Male", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_011EA,S0502PR_C04_011M,S0502PR_C04_011MA"}, "S2403_C03_010E": {"label": "Estimate!!Percent Male!!Civilian employed population 16 years and over!!Transportation and warehousing, and utilities:!!Transportation and warehousing", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2403", "limit": 0, "attributes": "S2403_C03_010EA,S2403_C03_010M,S2403_C03_010MA"}, "S0601_C04_053E": {"label": "Estimate!!Native; born outside U.S.!!PERCENT ALLOCATED!!Place of birth", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "int", "group": "S0601", "limit": 0, "attributes": "S0601_C04_053EA,S0601_C04_053M,S0601_C04_053MA"}, "S2601CPR_C02_003E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!Female", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_003EA,S2601CPR_C02_003M,S2601CPR_C02_003MA"}, "S2601CPR_C02_001E": {"label": "Estimate!!Total group quarters population!!Total population", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "int", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_001EA,S2601CPR_C02_001M,S2601CPR_C02_001MA"}, "S1101_C01_003E": {"label": "Estimate!!Total!!FAMILIES!!Total families", "concept": "Households and Families", "predicateType": "int", "group": "S1101", "limit": 0, "attributes": "S1101_C01_003EA,S1101_C01_003M,S1101_C01_003MA"}, "S2503_C01_038E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$50,000 to $74,999!!Less than 20 percent", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C01_038EA,S2503_C01_038M,S2503_C01_038MA"}, "S0801_C03_054E": {"label": "Estimate!!Female!!PERCENT ALLOCATED!!Place of work", "concept": "Commuting Characteristics by Sex", "predicateType": "int", "group": "S0801", "limit": 0, "attributes": "S0801_C03_054EA,S0801_C03_054M,S0801_C03_054MA"}, "S0504_C01_087E": {"label": "Estimate!!Total!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C01_087EA,S0504_C01_087M,S0504_C01_087MA"}, "S0502PR_C04_010E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Foreign-born population!!WORLD REGION OF BIRTH OF FOREIGN-BORN!!Northern America", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_010EA,S0502PR_C04_010M,S0502PR_C04_010MA"}, "S0601_C04_052E": {"label": "Estimate!!Native; born outside U.S.!!PERCENT ALLOCATED!!Citizenship status", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "int", "group": "S0601", "limit": 0, "attributes": "S0601_C04_052EA,S0601_C04_052M,S0601_C04_052MA"}, "S2601CPR_C02_002E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!Male", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_002EA,S2601CPR_C02_002M,S2601CPR_C02_002MA"}, "S0505_C06_112E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!Below 100 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_112EA,S0505_C06_112M,S0505_C06_112MA"}, "S1702_C04_039E": {"label": "Estimate!!Percent below poverty level!!Married-couple families!!Families!!NUMBER OF WORKERS IN FAMILY!!3 or more workers", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C04_039EA,S1702_C04_039M,S1702_C04_039MA"}, "S1101_C01_008E": {"label": "Estimate!!Total!!AGE OF OWN CHILDREN!!Households with own children of the householder under 18 years!!6 to 17 years only", "concept": "Households and Families", "predicateType": "float", "group": "S1101", "limit": 0, "attributes": "S1101_C01_008EA,S1101_C01_008M,S1101_C01_008MA"}, "S0502PR_C04_013E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Foreign-born population!!SEX AND AGE!!Under 5 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_013EA,S0502PR_C04_013M,S0502PR_C04_013MA"}, "S0801_C03_055E": {"label": "Estimate!!Female!!PERCENT ALLOCATED!!Time of departure to go to work", "concept": "Commuting Characteristics by Sex", "predicateType": "int", "group": "S0801", "limit": 0, "attributes": "S0801_C03_055EA,S0801_C03_055M,S0801_C03_055MA"}, "S2303_C05_031E": {"label": "Estimate!!Female!!Population 16 to 64 years!!Mean usual hours worked for workers", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C05_031EA,S2303_C05_031M,S2303_C05_031MA"}, "S0901_C01_033E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Children in households for whom poverty status is determined!!Income in the past 12 months below poverty level", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C01_033EA,S0901_C01_033M,S0901_C01_033MA"}, "S2601CPR_C02_005E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!15 to 17 years", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_005EA,S2601CPR_C02_005M,S2601CPR_C02_005MA"}, "S1702_C04_038E": {"label": "Estimate!!Percent below poverty level!!Married-couple families!!Families!!NUMBER OF WORKERS IN FAMILY!!2 workers", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C04_038EA,S1702_C04_038M,S1702_C04_038MA"}, "S0505_C06_113E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!100 to 199 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_113EA,S0505_C06_113M,S0505_C06_113MA"}, "S0502PR_C04_012E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Foreign-born population!!SEX AND AGE!!Female", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_012EA,S0502PR_C04_012M,S0502PR_C04_012MA"}, "S1101_C01_009E": {"label": "Estimate!!Total!!Total households", "concept": "Households and Families", "predicateType": "int", "group": "S1101", "limit": 0, "attributes": "S1101_C01_009EA,S1101_C01_009M,S1101_C01_009MA"}, "S0801_C03_056E": {"label": "Estimate!!Female!!PERCENT ALLOCATED!!Travel time to work", "concept": "Commuting Characteristics by Sex", "predicateType": "int", "group": "S0801", "limit": 0, "attributes": "S0801_C03_056EA,S0801_C03_056M,S0801_C03_056MA"}, "S2303_C05_030E": {"label": "Estimate!!Female!!Population 16 to 64 years!!USUAL HOURS WORKED!!Did not work", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C05_030EA,S2303_C05_030M,S2303_C05_030MA"}, "S0901_C01_032E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Children in households for whom poverty status is determined", "concept": "Children Characteristics", "predicateType": "int", "group": "S0901", "limit": 0, "attributes": "S0901_C01_032EA,S0901_C01_032M,S0901_C01_032MA"}, "S2601CPR_C02_004E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!Under 15 years", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_004EA,S2601CPR_C02_004M,S2601CPR_C02_004MA"}, "S1702_C04_037E": {"label": "Estimate!!Percent below poverty level!!Married-couple families!!Families!!NUMBER OF WORKERS IN FAMILY!!1 worker", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C04_037EA,S1702_C04_037M,S1702_C04_037MA"}, "S0505_C06_110E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!Average number of workers per household", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_110EA,S0505_C06_110M,S0505_C06_110MA"}, "S0502PR_C04_015E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Foreign-born population!!SEX AND AGE!!18 to 24 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_015EA,S0502PR_C04_015M,S0502PR_C04_015MA"}, "S1101_C01_006E": {"label": "Estimate!!Total!!AGE OF OWN CHILDREN!!Households with own children of the householder under 18 years!!Under 6 years only", "concept": "Households and Families", "predicateType": "float", "group": "S1101", "limit": 0, "attributes": "S1101_C01_006EA,S1101_C01_006M,S1101_C01_006MA"}, "S0901_C01_031E": {"label": "Estimate!!Total!!Children under 18 years in households!!PUBLIC ASSISTANCE IN THE PAST 12 MONTHS!!Children living in households with Supplemental Security Income (SSI), cash public assistance income, or Food Stamp/SNAP benefits", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C01_031EA,S0901_C01_031M,S0901_C01_031MA"}, "S0801_C03_057E": {"label": "Estimate!!Female!!PERCENT ALLOCATED!!Vehicles available", "concept": "Commuting Characteristics by Sex", "predicateType": "int", "group": "S0801", "limit": 0, "attributes": "S0801_C03_057EA,S0801_C03_057M,S0801_C03_057MA"}, "S2303_C05_033E": {"label": "Estimate!!Female!!Population 16 to 64 years!!Workers 16 to 64 years who worked full-time, year-round", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C05_033EA,S2303_C05_033M,S2303_C05_033MA"}, "S2601CPR_C02_007E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!25 to 34 years", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_007EA,S2601CPR_C02_007M,S2601CPR_C02_007MA"}, "S0505_C06_111E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C06_111EA,S0505_C06_111M,S0505_C06_111MA"}, "S1702_C04_036E": {"label": "Estimate!!Percent below poverty level!!Married-couple families!!Families!!NUMBER OF WORKERS IN FAMILY!!No workers", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C04_036EA,S1702_C04_036M,S1702_C04_036MA"}, "S0502PR_C04_014E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Foreign-born population!!SEX AND AGE!!5 to 17 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_014EA,S0502PR_C04_014M,S0502PR_C04_014MA"}, "S1101_C01_007E": {"label": "Estimate!!Total!!AGE OF OWN CHILDREN!!Households with own children of the householder under 18 years!!Under 6 years and 6 to 17 years", "concept": "Households and Families", "predicateType": "float", "group": "S1101", "limit": 0, "attributes": "S1101_C01_007EA,S1101_C01_007M,S1101_C01_007MA"}, "S0901_C01_030E": {"label": "Estimate!!Total!!Children under 18 years in households", "concept": "Children Characteristics", "predicateType": "int", "group": "S0901", "limit": 0, "attributes": "S0901_C01_030EA,S0901_C01_030M,S0901_C01_030MA"}, "S2303_C05_032E": {"label": "Estimate!!Female!!Population 16 to 64 years!!Median age of workers 16 to 64 years", "concept": "Work Status in the Past 12 Months", "predicateType": "float", "group": "S2303", "limit": 0, "attributes": "S2303_C05_032EA,S2303_C05_032M,S2303_C05_032MA"}, "S2601CPR_C02_006E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!18 to 24 years", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_006EA,S2601CPR_C02_006M,S2601CPR_C02_006MA"}, "S2401_C01_016E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Healthcare practitioners and technical occupations:!!Health diagnosing and treating practitioners and other technical occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C01_016EA,S2401_C01_016M,S2401_C01_016MA"}, "S0901_C01_037E": {"label": "Estimate!!Total!!HOUSING TENURE!!Children under 18 years in occupied housing units!!In renter-occupied housing units", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C01_037EA,S0901_C01_037M,S0901_C01_037MA"}, "S0502_C02_008E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Foreign-born population!!WORLD REGION OF BIRTH OF FOREIGN-BORN!!Oceania", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_008EA,S0502_C02_008M,S0502_C02_008MA"}, "S2601CPR_C02_009E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!45 to 54 years", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_009EA,S2601CPR_C02_009M,S2601CPR_C02_009MA"}, "S2403_C03_019E": {"label": "Estimate!!Percent Male!!Civilian employed population 16 years and over!!Professional, scientific, and management, and administrative and waste management services:!!Administrative and support and waste management services", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2403", "limit": 0, "attributes": "S2403_C03_019EA,S2403_C03_019M,S2403_C03_019MA"}, "S2401_C01_015E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Healthcare practitioners and technical occupations:", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C01_015EA,S2401_C01_015M,S2401_C01_015MA"}, "S0901_C01_036E": {"label": "Estimate!!Total!!HOUSING TENURE!!Children under 18 years in occupied housing units!!In owner-occupied housing units", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C01_036EA,S0901_C01_036M,S0901_C01_036MA"}, "S0502_C02_009E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Foreign-born population!!WORLD REGION OF BIRTH OF FOREIGN-BORN!!Latin America", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_009EA,S0502_C02_009M,S0502_C02_009MA"}, "S2601CPR_C02_008E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!35 to 44 years", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_008EA,S2601CPR_C02_008M,S2601CPR_C02_008MA"}, "S2403_C03_018E": {"label": "Estimate!!Percent Male!!Civilian employed population 16 years and over!!Professional, scientific, and management, and administrative and waste management services:!!Management of companies and enterprises", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2403", "limit": 0, "attributes": "S2403_C03_018EA,S2403_C03_018M,S2403_C03_018MA"}, "S2401_C01_014E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:!!Arts, design, entertainment, sports, and media occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C01_014EA,S2401_C01_014M,S2401_C01_014MA"}, "S2503_C01_031E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$20,000 to $34,999!!20 to 29 percent", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C01_031EA,S2503_C01_031M,S2503_C01_031MA"}, "S0901_C01_035E": {"label": "Estimate!!Total!!HOUSING TENURE!!Children under 18 years in occupied housing units", "concept": "Children Characteristics", "predicateType": "int", "group": "S0901", "limit": 0, "attributes": "S0901_C01_035EA,S0901_C01_035M,S0901_C01_035MA"}, "S2403_C03_017E": {"label": "Estimate!!Percent Male!!Civilian employed population 16 years and over!!Professional, scientific, and management, and administrative and waste management services:!!Professional, scientific, and technical services", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2403", "limit": 0, "attributes": "S2403_C03_017EA,S2403_C03_017M,S2403_C03_017MA"}, "S2401_C01_013E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:!!Educational instruction, and library occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C01_013EA,S2401_C01_013M,S2401_C01_013MA"}, "S2503_C01_030E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$20,000 to $34,999!!Less than 20 percent", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C01_030EA,S2503_C01_030M,S2503_C01_030MA"}, "S0901_C01_034E": {"label": "Estimate!!Total!!POVERTY STATUS IN THE PAST 12 MONTHS!!Children in households for whom poverty status is determined!!Income in the past 12 months at or above poverty level", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C01_034EA,S0901_C01_034M,S0901_C01_034MA"}, "S2503_C01_033E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$35,000 to $49,999", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C01_033EA,S2503_C01_033M,S2503_C01_033MA"}, "S1701_C01_008E": {"label": "Estimate!!Total!!Population for whom poverty status is determined!!AGE!!18 to 64 years!!35 to 64 years", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C01_008EA,S1701_C01_008M,S1701_C01_008MA"}, "S2401_C01_012E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:!!Legal occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C01_012EA,S2401_C01_012M,S2401_C01_012MA"}, "S0502_C02_004E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Foreign-born population!!WORLD REGION OF BIRTH OF FOREIGN-BORN!!Foreign-born population excluding population born at sea", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C02_004EA,S0502_C02_004M,S0502_C02_004MA"}, "S2603_C05_107E": {"label": "Estimate!!Juvenile Facilities!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!With Food Stamp/SNAP benefits", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C05_107EA,S2603_C05_107M,S2603_C05_107MA"}, "S2403_C03_016E": {"label": "Estimate!!Percent Male!!Civilian employed population 16 years and over!!Professional, scientific, and management, and administrative and waste management services:", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2403", "limit": 0, "attributes": "S2403_C03_016EA,S2403_C03_016M,S2403_C03_016MA"}, "S2503_C01_032E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$20,000 to $34,999!!30 percent or more", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C01_032EA,S2503_C01_032M,S2503_C01_032MA"}, "S1101_C01_001E": {"label": "Estimate!!Total!!HOUSEHOLDS!!Total households", "concept": "Households and Families", "predicateType": "int", "group": "S1101", "limit": 0, "attributes": "S1101_C01_001EA,S1101_C01_001M,S1101_C01_001MA"}, "S1701_C01_009E": {"label": "Estimate!!Total!!Population for whom poverty status is determined!!AGE!!60 years and over", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C01_009EA,S1701_C01_009M,S1701_C01_009MA"}, "S2401_C01_011E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:!!Community and social service occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C01_011EA,S2401_C01_011M,S2401_C01_011MA"}, "S0502_C02_005E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Foreign-born population!!WORLD REGION OF BIRTH OF FOREIGN-BORN!!Europe", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_005EA,S0502_C02_005M,S0502_C02_005MA"}, "S2603_C05_106E": {"label": "Estimate!!Juvenile Facilities!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!Median earnings (dollars):!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (5 Types)", "predicateType": "int", "group": "S2603", "limit": 0, "attributes": "S2603_C05_106EA,S2603_C05_106M,S2603_C05_106MA"}, "S2403_C03_015E": {"label": "Estimate!!Percent Male!!Civilian employed population 16 years and over!!Finance and insurance, and real estate and rental and leasing:!!Real estate and rental and leasing", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2403", "limit": 0, "attributes": "S2403_C03_015EA,S2403_C03_015M,S2403_C03_015MA"}, "S2503_C01_035E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$35,000 to $49,999!!20 to 29 percent", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C01_035EA,S2503_C01_035M,S2503_C01_035MA"}, "S2401_C01_010E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C01_010EA,S2401_C01_010M,S2401_C01_010MA"}, "S0502_C02_006E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Foreign-born population!!WORLD REGION OF BIRTH OF FOREIGN-BORN!!Asia", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_006EA,S0502_C02_006M,S0502_C02_006MA"}, "S2403_C03_014E": {"label": "Estimate!!Percent Male!!Civilian employed population 16 years and over!!Finance and insurance, and real estate and rental and leasing:!!Finance and insurance", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2403", "limit": 0, "attributes": "S2403_C03_014EA,S2403_C03_014M,S2403_C03_014MA"}, "S2503_C01_034E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$35,000 to $49,999!!Less than 20 percent", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C01_034EA,S2503_C01_034M,S2503_C01_034MA"}, "S0502_C02_007E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Foreign-born population!!WORLD REGION OF BIRTH OF FOREIGN-BORN!!Africa", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_007EA,S0502_C02_007M,S0502_C02_007MA"}, "S2403_C03_013E": {"label": "Estimate!!Percent Male!!Civilian employed population 16 years and over!!Finance and insurance, and real estate and rental and leasing:", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2403", "limit": 0, "attributes": "S2403_C03_013EA,S2403_C03_013M,S2403_C03_013MA"}, "S1251_C05_011E": {"label": "Estimate!!Female!!Divorced in the last 12 months!!PRESENCE OF OWN CHILD UNDER 18 YEARS!!Population in households!!With an own child of the householder under 18 years", "concept": "Characteristics of People With a Marital Event in the Last 12 Months", "predicateType": "float", "group": "S1251", "limit": 0, "attributes": "S1251_C05_011EA,S1251_C05_011M,S1251_C05_011MA"}, "S0502_C02_048E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than high school graduate", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_048EA,S0502_C02_048M,S0502_C02_048MA"}, "S1701_C01_004E": {"label": "Estimate!!Total!!Population for whom poverty status is determined!!AGE!!Under 18 years!!5 to 17 years", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C01_004EA,S1701_C01_004M,S1701_C01_004MA"}, "S1251_C05_012E": {"label": "Estimate!!Female!!Divorced in the last 12 months!!HOUSING TENURE!!Population 15 years and over in occupied housing units", "concept": "Characteristics of People With a Marital Event in the Last 12 Months", "predicateType": "int", "group": "S1251", "limit": 0, "attributes": "S1251_C05_012EA,S1251_C05_012M,S1251_C05_012MA"}, "S0502_C02_049E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate (includes equivalency)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_049EA,S0502_C02_049M,S0502_C02_049MA"}, "S1701_C01_005E": {"label": "Estimate!!Total!!Population for whom poverty status is determined!!AGE!!Under 18 years!!Related children of householder under 18 years", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C01_005EA,S1701_C01_005M,S1701_C01_005MA"}, "S1701_C01_006E": {"label": "Estimate!!Total!!Population for whom poverty status is determined!!AGE!!18 to 64 years", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C01_006EA,S1701_C01_006M,S1701_C01_006MA"}, "S1701_C01_007E": {"label": "Estimate!!Total!!Population for whom poverty status is determined!!AGE!!18 to 64 years!!18 to 34 years", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C01_007EA,S1701_C01_007M,S1701_C01_007MA"}, "S1251_C05_010E": {"label": "Estimate!!Female!!Divorced in the last 12 months!!PRESENCE OF OWN CHILD UNDER 18 YEARS!!Population in households", "concept": "Characteristics of People With a Marital Event in the Last 12 Months", "predicateType": "int", "group": "S1251", "limit": 0, "attributes": "S1251_C05_010EA,S1251_C05_010M,S1251_C05_010MA"}, "S0502_C02_044E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Elementary school (grades K-8)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_044EA,S0502_C02_044M,S0502_C02_044MA"}, "S2301_C03_007E": {"label": "Estimate!!Employment/Population Ratio!!Population 16 years and over!!AGE!!45 to 54 years", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C03_007EA,S2301_C03_007M,S2301_C03_007MA"}, "S0601PR_C04_012E": {"label": "Estimate!!Native; born outside Puerto Rico and the U.S.!!Total population!!SEX!!Female", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C04_012EA,S0601PR_C04_012M,S0601PR_C04_012MA"}, "S0701_C05_038E": {"label": "Estimate!!Moved; from abroad!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Graduate or professional degree", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C05_038EA,S0701_C05_038M,S0701_C05_038MA"}, "S0502_C02_045E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!High school (grades 9-12)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_045EA,S0502_C02_045M,S0502_C02_045MA"}, "S1701_C01_001E": {"label": "Estimate!!Total!!Population for whom poverty status is determined", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C01_001EA,S1701_C01_001M,S1701_C01_001MA"}, "S2301_C03_006E": {"label": "Estimate!!Employment/Population Ratio!!Population 16 years and over!!AGE!!35 to 44 years", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C03_006EA,S2301_C03_006M,S2301_C03_006MA"}, "S0601PR_C04_013E": {"label": "Estimate!!Native; born outside Puerto Rico and the U.S.!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C04_013EA,S0601PR_C04_013M,S0601PR_C04_013MA"}, "S0701_C05_039E": {"label": "Estimate!!Moved; from abroad!!INDIVIDUAL INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C05_039EA,S0701_C05_039M,S0701_C05_039MA"}, "S0601PR_C04_010E": {"label": "Estimate!!Native; born outside Puerto Rico and the U.S.!!Total population!!AGE!!Median age (years)", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C04_010EA,S0601PR_C04_010M,S0601PR_C04_010MA"}, "S2301_C03_009E": {"label": "Estimate!!Employment/Population Ratio!!Population 16 years and over!!AGE!!60 to 64 years", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C03_009EA,S2301_C03_009M,S2301_C03_009MA"}, "S1251_C05_013E": {"label": "Estimate!!Female!!Divorced in the last 12 months!!HOUSING TENURE!!Population 15 years and over in occupied housing units!!Owner-occupied housing units", "concept": "Characteristics of People With a Marital Event in the Last 12 Months", "predicateType": "float", "group": "S1251", "limit": 0, "attributes": "S1251_C05_013EA,S1251_C05_013M,S1251_C05_013MA"}, "S0502_C02_046E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!College or graduate school", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_046EA,S0502_C02_046M,S0502_C02_046MA"}, "S1701_C01_002E": {"label": "Estimate!!Total!!Population for whom poverty status is determined!!AGE!!Under 18 years", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C01_002EA,S1701_C01_002M,S1701_C01_002MA"}, "S0701_C05_036E": {"label": "Estimate!!Moved; from abroad!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college or associate's degree", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C05_036EA,S0701_C05_036M,S0701_C05_036MA"}, "S0601PR_C04_011E": {"label": "Estimate!!Native; born outside Puerto Rico and the U.S.!!Total population!!SEX!!Male", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C04_011EA,S0601PR_C04_011M,S0601PR_C04_011MA"}, "S0502_C02_047E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C02_047EA,S0502_C02_047M,S0502_C02_047MA"}, "S1251_C05_014E": {"label": "Estimate!!Female!!Divorced in the last 12 months!!HOUSING TENURE!!Population 15 years and over in occupied housing units!!Renter-occupied housing units", "concept": "Characteristics of People With a Marital Event in the Last 12 Months", "predicateType": "float", "group": "S1251", "limit": 0, "attributes": "S1251_C05_014EA,S1251_C05_014M,S1251_C05_014MA"}, "S1701_C01_003E": {"label": "Estimate!!Total!!Population for whom poverty status is determined!!AGE!!Under 18 years!!Under 5 years", "concept": "Poverty Status in the Past 12 Months", "predicateType": "int", "group": "S1701", "limit": 0, "attributes": "S1701_C01_003EA,S1701_C01_003M,S1701_C01_003MA"}, "S0701_C05_037E": {"label": "Estimate!!Moved; from abroad!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C05_037EA,S0701_C05_037M,S0701_C05_037MA"}, "S2301_C03_008E": {"label": "Estimate!!Employment/Population Ratio!!Population 16 years and over!!AGE!!55 to 59 years", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C03_008EA,S2301_C03_008M,S2301_C03_008MA"}, "S0504_C01_082E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Professional, scientific, and management, and administrative and waste management services", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_082EA,S0504_C01_082M,S0504_C01_082MA"}, "S0506_C03_062E": {"label": "Estimate!!Foreign-born; Born in Mexico!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Armed Forces", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_062EA,S0506_C03_062M,S0506_C03_062MA"}, "S0502_C02_040E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!MARITAL STATUS!!Population 15 years and over!!Divorced or separated", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_040EA,S0502_C02_040M,S0502_C02_040MA"}, "S0701_C05_034E": {"label": "Estimate!!Moved; from abroad!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than high school graduate", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C05_034EA,S0701_C05_034M,S0701_C05_034MA"}, "S0502PR_C01_140E": {"label": "Estimate!!Total!!Occupied housing units!!SELECTED CHARACTERISTICS!!Limited English Speaking Households", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_140EA,S0502PR_C01_140M,S0502PR_C01_140MA"}, "S0504_C01_081E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Finance and insurance, and real estate and rental and leasing", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_081EA,S0504_C01_081M,S0504_C01_081MA"}, "S0506_C03_061E": {"label": "Estimate!!Foreign-born; Born in Mexico!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed!!Percent of civilian labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_061EA,S0506_C03_061M,S0506_C03_061MA"}, "S0502_C02_041E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_041EA,S0502_C02_041M,S0502_C02_041MA"}, "S0701_C05_035E": {"label": "Estimate!!Moved; from abroad!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate (includes equivalency)", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C05_035EA,S0701_C05_035M,S0701_C05_035MA"}, "S0502PR_C01_141E": {"label": "Estimate!!Total!!Owner-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_141EA,S0502PR_C01_141M,S0502PR_C01_141MA"}, "S0504_C01_080E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Information", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_080EA,S0504_C01_080M,S0504_C01_080MA"}, "S0506_C03_060E": {"label": "Estimate!!Foreign-born; Born in Mexico!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_060EA,S0506_C03_060M,S0506_C03_060MA"}, "S0701_C05_032E": {"label": "Estimate!!Moved; from abroad!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C05_032EA,S0701_C05_032M,S0701_C05_032MA"}, "S0502_C02_042E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C02_042EA,S0502_C02_042M,S0502_C02_042MA"}, "S0502PR_C01_142E": {"label": "Estimate!!Total!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_142EA,S0502PR_C01_142M,S0502PR_C01_142MA"}, "S0701_C05_033E": {"label": "Estimate!!Moved; from abroad!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C05_033EA,S0701_C05_033M,S0701_C05_033MA"}, "S0502_C02_043E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Nursery school, preschool", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_043EA,S0502_C02_043M,S0502_C02_043MA"}, "S0502PR_C01_143E": {"label": "Estimate!!Total!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_143EA,S0502PR_C01_143M,S0502PR_C01_143MA"}, "S0701_C05_030E": {"label": "Estimate!!Moved; from abroad!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C05_030EA,S0701_C05_030M,S0701_C05_030MA"}, "S0504_C01_086E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Public administration", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_086EA,S0504_C01_086M,S0504_C01_086MA"}, "S0506_C03_066E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Government workers", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_066EA,S0506_C03_066M,S0506_C03_066MA"}, "S0601_C04_051E": {"label": "Estimate!!Native; born outside U.S.!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!At or above 150 percent of the poverty level", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C04_051EA,S0601_C04_051M,S0601_C04_051MA"}, "S0502PR_C01_144E": {"label": "Estimate!!Total!!Renter-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_144EA,S0502PR_C01_144M,S0502PR_C01_144MA"}, "S0701_C05_031E": {"label": "Estimate!!Moved; from abroad!!MARITAL STATUS!!Population 15 years and over!!Divorced or separated", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C05_031EA,S0701_C05_031M,S0701_C05_031MA"}, "S0506_C03_065E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Private wage and salary workers", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_065EA,S0506_C03_065M,S0506_C03_065MA"}, "S0504_C01_085E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Other services (except public administration)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_085EA,S0504_C01_085M,S0504_C01_085MA"}, "S0502PR_C01_145E": {"label": "Estimate!!Total!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_145EA,S0502PR_C01_145M,S0502PR_C01_145MA"}, "S0601_C04_050E": {"label": "Estimate!!Native; born outside U.S.!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!100 to 149 percent of the poverty level", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C04_050EA,S0601_C04_050M,S0601_C04_050MA"}, "S2601CPR_C02_010E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!55 to 64 years", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_010EA,S2601CPR_C02_010M,S2601CPR_C02_010MA"}, "S0506_C03_064E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Civilian employed population 16 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C03_064EA,S0506_C03_064M,S0506_C03_064MA"}, "S0504_C01_084E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Arts, entertainment, and recreation, and accommodation and food services", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_084EA,S0504_C01_084M,S0504_C01_084MA"}, "S0502PR_C01_146E": {"label": "Estimate!!Total!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C01_146EA,S0502PR_C01_146M,S0502PR_C01_146MA"}, "S0504_C01_083E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Educational services, and health care and social assistance", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_083EA,S0504_C01_083M,S0504_C01_083MA"}, "S0506_C03_063E": {"label": "Estimate!!Foreign-born; Born in Mexico!!EMPLOYMENT STATUS!!Population 16 years and over!!Not in labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_063EA,S0506_C03_063M,S0506_C03_063MA"}, "S2601CPR_C02_012E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!75 to 84 years", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_012EA,S2601CPR_C02_012M,S2601CPR_C02_012MA"}, "S1702_C04_007E": {"label": "Estimate!!Percent below poverty level!!Married-couple families!!Families!!RACE AND HISPANIC OR LATINO ORIGIN!!Families with a householder who is--!!Black or African American alone", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C04_007EA,S1702_C04_007M,S1702_C04_007MA"}, "S0504_C01_078E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Retail trade", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_078EA,S0504_C01_078M,S0504_C01_078MA"}, "S1101_C01_016E": {"label": "Estimate!!Total!!Total households!!UNITS IN STRUCTURE!!2-or-more-unit structures", "concept": "Households and Families", "predicateType": "float", "group": "S1101", "limit": 0, "attributes": "S1101_C01_016EA,S1101_C01_016M,S1101_C01_016MA"}, "S2303_C05_023E": {"label": "Estimate!!Female!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 1 to 14 hours per week", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C05_023EA,S2303_C05_023M,S2303_C05_023MA"}, "S0506_C03_058E": {"label": "Estimate!!Foreign-born; Born in Mexico!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_058EA,S0506_C03_058M,S0506_C03_058MA"}, "S0601_C04_043E": {"label": "Estimate!!Native; born outside U.S.!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$35,000 to $49,999", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C04_043EA,S0601_C04_043M,S0601_C04_043MA"}, "S2403_C03_024E": {"label": "Estimate!!Percent Male!!Civilian employed population 16 years and over!!Arts, entertainment, and recreation, and accommodation and food services:!!Arts, entertainment, and recreation", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2403", "limit": 0, "attributes": "S2403_C03_024EA,S2403_C03_024M,S2403_C03_024MA"}, "S2601CPR_C02_013E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!85 years and over", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_013EA,S2601CPR_C02_013M,S2601CPR_C02_013MA"}, "S2601CPR_C02_011E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!65 to 74 years", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_011EA,S2601CPR_C02_011M,S2601CPR_C02_011MA"}, "S1702_C04_006E": {"label": "Estimate!!Percent below poverty level!!Married-couple families!!Families!!RACE AND HISPANIC OR LATINO ORIGIN!!Families with a householder who is--!!White alone", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C04_006EA,S1702_C04_006M,S1702_C04_006MA"}, "S0801_C03_040E": {"label": "Estimate!!Female!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!20 to 24 minutes", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C03_040EA,S0801_C03_040M,S0801_C03_040MA"}, "S0504_C01_077E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Wholesale trade", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_077EA,S0504_C01_077M,S0504_C01_077MA"}, "S1101_C01_017E": {"label": "Estimate!!Total!!Total households!!UNITS IN STRUCTURE!!Mobile homes and all other types of units", "concept": "Households and Families", "predicateType": "float", "group": "S1101", "limit": 0, "attributes": "S1101_C01_017EA,S1101_C01_017M,S1101_C01_017MA"}, "S2303_C05_022E": {"label": "Estimate!!Female!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 15 to 34 hours per week!!1 to 13 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C05_022EA,S2303_C05_022M,S2303_C05_022MA"}, "S0506_C03_057E": {"label": "Estimate!!Foreign-born; Born in Mexico!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_057EA,S0506_C03_057M,S0506_C03_057MA"}, "S2403_C03_023E": {"label": "Estimate!!Percent Male!!Civilian employed population 16 years and over!!Arts, entertainment, and recreation, and accommodation and food services:", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2403", "limit": 0, "attributes": "S2403_C03_023EA,S2403_C03_023M,S2403_C03_023MA"}, "S0601_C04_042E": {"label": "Estimate!!Native; born outside U.S.!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$25,000 to $34,999", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C04_042EA,S0601_C04_042M,S0601_C04_042MA"}, "S1702_C04_005E": {"label": "Estimate!!Percent below poverty level!!Married-couple families!!Families!!With related children of householder under 18 years!!With related children of householder 5 to 17 years", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C04_005EA,S1702_C04_005M,S1702_C04_005MA"}, "S1101_C01_014E": {"label": "Estimate!!Total!!Total households!!SELECTED HOUSEHOLDS BY TYPE!!Householder living alone!!65 years and over", "concept": "Households and Families", "predicateType": "float", "group": "S1101", "limit": 0, "attributes": "S1101_C01_014EA,S1101_C01_014M,S1101_C01_014MA"}, "S0801_C03_041E": {"label": "Estimate!!Female!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!25 to 29 minutes", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C03_041EA,S0801_C03_041M,S0801_C03_041MA"}, "S0504_C01_076E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Manufacturing", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_076EA,S0504_C01_076M,S0504_C01_076MA"}, "S2303_C05_025E": {"label": "Estimate!!Female!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 1 to 14 hours per week!!48 to 49 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C05_025EA,S2303_C05_025M,S2303_C05_025MA"}, "S0506_C03_056E": {"label": "Estimate!!Foreign-born; Born in Mexico!!EMPLOYMENT STATUS!!Population 16 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C03_056EA,S0506_C03_056M,S0506_C03_056MA"}, "S0601_C04_041E": {"label": "Estimate!!Native; born outside U.S.!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$15,000 to $24,999", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C04_041EA,S0601_C04_041M,S0601_C04_041MA"}, "S2403_C03_022E": {"label": "Estimate!!Percent Male!!Civilian employed population 16 years and over!!Educational services, and health care and social assistance:!!Health care and social assistance", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2403", "limit": 0, "attributes": "S2403_C03_022EA,S2403_C03_022M,S2403_C03_022MA"}, "S2601CPR_C02_015E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!Under 18 years!!Male", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_015EA,S2601CPR_C02_015M,S2601CPR_C02_015MA"}, "S1702_C04_004E": {"label": "Estimate!!Percent below poverty level!!Married-couple families!!Families!!With related children of householder under 18 years!!With related children of householder under 5 years and 5 to 17 years", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C04_004EA,S1702_C04_004M,S1702_C04_004MA"}, "S1101_C01_015E": {"label": "Estimate!!Total!!Total households!!UNITS IN STRUCTURE!!1-unit structures", "concept": "Households and Families", "predicateType": "float", "group": "S1101", "limit": 0, "attributes": "S1101_C01_015EA,S1101_C01_015M,S1101_C01_015MA"}, "S0801_C03_042E": {"label": "Estimate!!Female!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!30 to 34 minutes", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C03_042EA,S0801_C03_042M,S0801_C03_042MA"}, "S0504_C01_075E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Construction", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_075EA,S0504_C01_075M,S0504_C01_075MA"}, "S2303_C05_024E": {"label": "Estimate!!Female!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 1 to 14 hours per week!!50 to 52 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C05_024EA,S2303_C05_024M,S2303_C05_024MA"}, "S0506_C03_055E": {"label": "Estimate!!Foreign-born; Born in Mexico!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English!!Speak English less than \"very well\"", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_055EA,S0506_C03_055M,S0506_C03_055MA"}, "S2403_C03_021E": {"label": "Estimate!!Percent Male!!Civilian employed population 16 years and over!!Educational services, and health care and social assistance:!!Educational services", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2403", "limit": 0, "attributes": "S2403_C03_021EA,S2403_C03_021M,S2403_C03_021MA"}, "S0601_C04_040E": {"label": "Estimate!!Native; born outside U.S.!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$10,000 to $14,999", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C04_040EA,S0601_C04_040M,S0601_C04_040MA"}, "S2601CPR_C02_014E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!Under 18 years", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "int", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_014EA,S2601CPR_C02_014M,S2601CPR_C02_014MA"}, "S0601_C04_047E": {"label": "Estimate!!Native; born outside U.S.!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!Median income (dollars)", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "int", "group": "S0601", "limit": 0, "attributes": "S0601_C04_047EA,S0601_C04_047M,S0601_C04_047MA"}, "S1702_C04_003E": {"label": "Estimate!!Percent below poverty level!!Married-couple families!!Families!!With related children of householder under 18 years!!With related children of householder under 5 years", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C04_003EA,S1702_C04_003M,S1702_C04_003MA"}, "S0502PR_C04_001E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Foreign-born population", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_001EA,S0502PR_C04_001M,S0502PR_C04_001MA"}, "S0801_C03_043E": {"label": "Estimate!!Female!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!35 to 44 minutes", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C03_043EA,S0801_C03_043M,S0801_C03_043MA"}, "S2403_C03_020E": {"label": "Estimate!!Percent Male!!Civilian employed population 16 years and over!!Educational services, and health care and social assistance:", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2403", "limit": 0, "attributes": "S2403_C03_020EA,S2403_C03_020M,S2403_C03_020MA"}, "S2601CPR_C02_017E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!65 years and over", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "int", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_017EA,S2601CPR_C02_017M,S2601CPR_C02_017MA"}, "S1702_C04_002E": {"label": "Estimate!!Percent below poverty level!!Married-couple families!!Families!!With related children of householder under 18 years", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C04_002EA,S1702_C04_002M,S1702_C04_002MA"}, "S0801_C03_044E": {"label": "Estimate!!Female!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!45 to 59 minutes", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C03_044EA,S0801_C03_044M,S0801_C03_044MA"}, "S2601CPR_C02_016E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!Under 18 years!!Female", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_016EA,S2601CPR_C02_016M,S2601CPR_C02_016MA"}, "S0601_C04_046E": {"label": "Estimate!!Native; born outside U.S.!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$75,000 or more", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C04_046EA,S0601_C04_046M,S0601_C04_046MA"}, "S0502PR_C04_003E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Foreign-born population!!CITIZENSHIP!!Not a citizen", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_003EA,S0502PR_C04_003M,S0502PR_C04_003MA"}, "S0801_C03_045E": {"label": "Estimate!!Female!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!60 or more minutes", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C03_045EA,S0801_C03_045M,S0801_C03_045MA"}, "S1101_C01_018E": {"label": "Estimate!!Total!!Total households!!HOUSING TENURE!!Owner-occupied housing units", "concept": "Households and Families", "predicateType": "float", "group": "S1101", "limit": 0, "attributes": "S1101_C01_018EA,S1101_C01_018M,S1101_C01_018MA"}, "S2303_C05_021E": {"label": "Estimate!!Female!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 15 to 34 hours per week!!14 to 26 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C05_021EA,S2303_C05_021M,S2303_C05_021MA"}, "S2409_C02_009E": {"label": "Estimate!!Male!!Full-time, year-round civilian employed population 16 years and over!!Self-employed in own not incorporated business workers and unpaid family workers", "concept": "Class of Worker by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2409", "limit": 0, "attributes": "S2409_C02_009EA,S2409_C02_009M,S2409_C02_009MA"}, "S2601CPR_C02_019E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!65 years and over!!Female", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_019EA,S2601CPR_C02_019M,S2601CPR_C02_019MA"}, "S1702_C04_001E": {"label": "Estimate!!Percent below poverty level!!Married-couple families!!Families", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C04_001EA,S1702_C04_001M,S1702_C04_001MA"}, "S0601_C04_045E": {"label": "Estimate!!Native; born outside U.S.!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$65,000 to $74,999", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C04_045EA,S0601_C04_045M,S0601_C04_045MA"}, "S1101_C01_019E": {"label": "Estimate!!Total!!Total households!!HOUSING TENURE!!Renter-occupied housing units", "concept": "Households and Families", "predicateType": "float", "group": "S1101", "limit": 0, "attributes": "S1101_C01_019EA,S1101_C01_019M,S1101_C01_019MA"}, "S0502PR_C04_002E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Foreign-born population!!CITIZENSHIP!!Naturalized citizen", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_002EA,S0502PR_C04_002M,S0502PR_C04_002MA"}, "S0504_C01_079E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Transportation and warehousing, and utilities", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_079EA,S0504_C01_079M,S0504_C01_079MA"}, "S2303_C05_020E": {"label": "Estimate!!Female!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 15 to 34 hours per week!!27 to 39 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C05_020EA,S2303_C05_020M,S2303_C05_020MA"}, "S0801_C03_046E": {"label": "Estimate!!Female!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!Mean travel time to work (minutes)", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C03_046EA,S0801_C03_046M,S0801_C03_046MA"}, "S2601CPR_C02_018E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!65 years and over!!Male", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_018EA,S2601CPR_C02_018M,S2601CPR_C02_018MA"}, "S2409_C02_008E": {"label": "Estimate!!Male!!Full-time, year-round civilian employed population 16 years and over!!Federal government workers", "concept": "Class of Worker by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2409", "limit": 0, "attributes": "S2409_C02_008EA,S2409_C02_008M,S2409_C02_008MA"}, "S0506_C03_059E": {"label": "Estimate!!Foreign-born; Born in Mexico!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Employed", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_059EA,S0506_C03_059M,S0506_C03_059MA"}, "S0601_C04_044E": {"label": "Estimate!!Native; born outside U.S.!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$50,000 to $64,999", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C04_044EA,S0601_C04_044M,S0601_C04_044MA"}, "S0801_C03_047E": {"label": "Estimate!!Female!!VEHICLES AVAILABLE!!Workers 16 years and over in households", "concept": "Commuting Characteristics by Sex", "predicateType": "int", "group": "S0801", "limit": 0, "attributes": "S0801_C03_047EA,S0801_C03_047M,S0801_C03_047MA"}, "S2301_C03_003E": {"label": "Estimate!!Employment/Population Ratio!!Population 16 years and over!!AGE!!20 to 24 years", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C03_003EA,S2301_C03_003M,S2301_C03_003MA"}, "S0601PR_C04_004E": {"label": "Estimate!!Native; born outside Puerto Rico and the U.S.!!Total population!!AGE!!18 to 24 years", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C04_004EA,S0601PR_C04_004M,S0601PR_C04_004MA"}, "S0801_C03_048E": {"label": "Estimate!!Female!!VEHICLES AVAILABLE!!Workers 16 years and over in households!!No vehicle available", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C03_048EA,S0801_C03_048M,S0801_C03_048MA"}, "S0601PR_C04_005E": {"label": "Estimate!!Native; born outside Puerto Rico and the U.S.!!Total population!!AGE!!25 to 44 years", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C04_005EA,S0601PR_C04_005M,S0601PR_C04_005MA"}, "S2301_C03_002E": {"label": "Estimate!!Employment/Population Ratio!!Population 16 years and over!!AGE!!16 to 19 years", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C03_002EA,S2301_C03_002M,S2301_C03_002MA"}, "S0601_C04_049E": {"label": "Estimate!!Native; born outside U.S.!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!Below 100 percent of the poverty level", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C04_049EA,S0601_C04_049M,S0601_C04_049MA"}, "S0801_C03_049E": {"label": "Estimate!!Female!!VEHICLES AVAILABLE!!Workers 16 years and over in households!!1 vehicle available", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C03_049EA,S0801_C03_049M,S0801_C03_049MA"}, "S2301_C03_005E": {"label": "Estimate!!Employment/Population Ratio!!Population 16 years and over!!AGE!!30 to 34 years", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C03_005EA,S2301_C03_005M,S2301_C03_005MA"}, "S0601PR_C04_002E": {"label": "Estimate!!Native; born outside Puerto Rico and the U.S.!!Total population!!AGE!!Under 5 years", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C04_002EA,S0601PR_C04_002M,S0601PR_C04_002MA"}, "S0601_C04_048E": {"label": "Estimate!!Native; born outside U.S.!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "int", "group": "S0601", "limit": 0, "attributes": "S0601_C04_048EA,S0601_C04_048M,S0601_C04_048MA"}, "S0601PR_C04_003E": {"label": "Estimate!!Native; born outside Puerto Rico and the U.S.!!Total population!!AGE!!5 to 17 years", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C04_003EA,S0601PR_C04_003M,S0601PR_C04_003MA"}, "S2301_C03_004E": {"label": "Estimate!!Employment/Population Ratio!!Population 16 years and over!!AGE!!25 to 29 years", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C03_004EA,S2301_C03_004M,S2301_C03_004MA"}, "S1101_C01_012E": {"label": "Estimate!!Total!!Total households!!SELECTED HOUSEHOLDS BY TYPE!!Households with one or more people 65 years and over", "concept": "Households and Families", "predicateType": "float", "group": "S1101", "limit": 0, "attributes": "S1101_C01_012EA,S1101_C01_012M,S1101_C01_012MA"}, "S2303_C05_027E": {"label": "Estimate!!Female!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 1 to 14 hours per week!!27 to 39 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C05_027EA,S2303_C05_027M,S2303_C05_027MA"}, "S0601PR_C04_008E": {"label": "Estimate!!Native; born outside Puerto Rico and the U.S.!!Total population!!AGE!!65 to 74 years", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C04_008EA,S0601PR_C04_008M,S0601PR_C04_008MA"}, "S1101_C01_013E": {"label": "Estimate!!Total!!Total households!!SELECTED HOUSEHOLDS BY TYPE!!Householder living alone", "concept": "Households and Families", "predicateType": "float", "group": "S1101", "limit": 0, "attributes": "S1101_C01_013EA,S1101_C01_013M,S1101_C01_013MA"}, "S0601PR_C04_009E": {"label": "Estimate!!Native; born outside Puerto Rico and the U.S.!!Total population!!AGE!!75 years and over", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C04_009EA,S0601PR_C04_009M,S0601PR_C04_009MA"}, "S2303_C05_026E": {"label": "Estimate!!Female!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 1 to 14 hours per week!!40 to 47 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C05_026EA,S2303_C05_026M,S2303_C05_026MA"}, "S2403_C03_027E": {"label": "Estimate!!Percent Male!!Civilian employed population 16 years and over!!Public administration", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2403", "limit": 0, "attributes": "S2403_C03_027EA,S2403_C03_027M,S2403_C03_027MA"}, "S1702_C04_009E": {"label": "Estimate!!Percent below poverty level!!Married-couple families!!Families!!RACE AND HISPANIC OR LATINO ORIGIN!!Families with a householder who is--!!Asian alone", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C04_009EA,S1702_C04_009M,S1702_C04_009MA"}, "S1101_C01_010E": {"label": "Estimate!!Total!!Total households!!SELECTED HOUSEHOLDS BY TYPE!!Households with one or more people under 18 years", "concept": "Households and Families", "predicateType": "float", "group": "S1101", "limit": 0, "attributes": "S1101_C01_010EA,S1101_C01_010M,S1101_C01_010MA"}, "S2303_C05_029E": {"label": "Estimate!!Female!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 1 to 14 hours per week!!1 to 13 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C05_029EA,S2303_C05_029M,S2303_C05_029MA"}, "S0601PR_C04_006E": {"label": "Estimate!!Native; born outside Puerto Rico and the U.S.!!Total population!!AGE!!45 to 54 years", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C04_006EA,S0601PR_C04_006M,S0601PR_C04_006MA"}, "S2301_C03_001E": {"label": "Estimate!!Employment/Population Ratio!!Population 16 years and over", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C03_001EA,S2301_C03_001M,S2301_C03_001MA"}, "S2403_C03_026E": {"label": "Estimate!!Percent Male!!Civilian employed population 16 years and over!!Other services, except public administration", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2403", "limit": 0, "attributes": "S2403_C03_026EA,S2403_C03_026M,S2403_C03_026MA"}, "S1101_C01_011E": {"label": "Estimate!!Total!!Total households!!SELECTED HOUSEHOLDS BY TYPE!!Households with one or more people 60 years and over", "concept": "Households and Families", "predicateType": "float", "group": "S1101", "limit": 0, "attributes": "S1101_C01_011EA,S1101_C01_011M,S1101_C01_011MA"}, "S1702_C04_008E": {"label": "Estimate!!Percent below poverty level!!Married-couple families!!Families!!RACE AND HISPANIC OR LATINO ORIGIN!!Families with a householder who is--!!American Indian and Alaska Native alone", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C04_008EA,S1702_C04_008M,S1702_C04_008MA"}, "S2303_C05_028E": {"label": "Estimate!!Female!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 1 to 14 hours per week!!14 to 26 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C05_028EA,S2303_C05_028M,S2303_C05_028MA"}, "S0601PR_C04_007E": {"label": "Estimate!!Native; born outside Puerto Rico and the U.S.!!Total population!!AGE!!55 to 64 years", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C04_007EA,S0601PR_C04_007M,S0601PR_C04_007MA"}, "S2403_C03_025E": {"label": "Estimate!!Percent Male!!Civilian employed population 16 years and over!!Arts, entertainment, and recreation, and accommodation and food services:!!Accommodation and food services", "concept": "Industry by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2403", "limit": 0, "attributes": "S2403_C03_025EA,S2403_C03_025M,S2403_C03_025MA"}, "S0502_C02_036E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Foreign-born population!!Average family size", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_036EA,S0502_C02_036M,S0502_C02_036MA"}, "S0502_C02_037E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!MARITAL STATUS!!Population 15 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C02_037EA,S0502_C02_037M,S0502_C02_037MA"}, "S0502_C02_038E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_038EA,S0502_C02_038M,S0502_C02_038MA"}, "S0701_C05_028E": {"label": "Estimate!!Moved; from abroad!!MARITAL STATUS!!Population 15 years and over", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C05_028EA,S0701_C05_028M,S0701_C05_028MA"}, "S0502_C02_039E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_039EA,S0502_C02_039M,S0502_C02_039MA"}, "S0701_C05_029E": {"label": "Estimate!!Moved; from abroad!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C05_029EA,S0701_C05_029M,S0701_C05_029MA"}, "S0506_C03_070E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Civilian employed population 16 years and over!!OCCUPATION!!Service occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_070EA,S0506_C03_070M,S0506_C03_070MA"}, "S0502_C02_032E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_032EA,S0502_C02_032M,S0502_C02_032MA"}, "S0701_C05_026E": {"label": "Estimate!!Moved; from abroad!!Population 1 year and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born!!Naturalized U.S. citizen", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C05_026EA,S0701_C05_026M,S0701_C05_026MA"}, "S2301_C03_019E": {"label": "Estimate!!Employment/Population Ratio!!Population 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C03_019EA,S2301_C03_019M,S2301_C03_019MA"}, "S0502_C02_033E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Foreign-born population!!HOUSEHOLD TYPE!!In married-couple family", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_033EA,S0502_C02_033M,S0502_C02_033MA"}, "S2301_C03_018E": {"label": "Estimate!!Employment/Population Ratio!!Population 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C03_018EA,S2301_C03_018M,S2301_C03_018MA"}, "S0601PR_C04_001E": {"label": "Estimate!!Native; born outside Puerto Rico and the U.S.!!Total population", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "int", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C04_001EA,S0601PR_C04_001M,S0601PR_C04_001MA"}, "S0701_C05_027E": {"label": "Estimate!!Moved; from abroad!!Population 1 year and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born!!Not a U.S. citizen", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C05_027EA,S0701_C05_027M,S0701_C05_027MA"}, "S0502_C02_034E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Foreign-born population!!HOUSEHOLD TYPE!!In other households", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_034EA,S0502_C02_034M,S0502_C02_034MA"}, "S0701_C05_024E": {"label": "Estimate!!Moved; from abroad!!Population 1 year and over!!NATIVITY AND CITIZENSHIP STATUS!!Native", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C05_024EA,S0701_C05_024M,S0701_C05_024MA"}, "S0502_C02_035E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Foreign-born population!!Average household size", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_035EA,S0502_C02_035M,S0502_C02_035MA"}, "S0701_C05_025E": {"label": "Estimate!!Moved; from abroad!!Population 1 year and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C05_025EA,S0701_C05_025M,S0701_C05_025MA"}, "S0504_C01_070E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!OCCUPATION!!Service occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_070EA,S0504_C01_070M,S0504_C01_070MA"}, "S0701_C05_022E": {"label": "Estimate!!Moved; from abroad!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C05_022EA,S0701_C05_022M,S0701_C05_022MA"}, "S0506_C03_074E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Civilian employed population 16 years and over!!INDUSTRY!!Agriculture, forestry, fishing and hunting, and mining", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_074EA,S0506_C03_074M,S0506_C03_074MA"}, "S1702_C04_011E": {"label": "Estimate!!Percent below poverty level!!Married-couple families!!Families!!RACE AND HISPANIC OR LATINO ORIGIN!!Families with a householder who is--!!Some other race alone", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C04_011EA,S1702_C04_011M,S1702_C04_011MA"}, "S0506_C03_073E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Civilian employed population 16 years and over!!OCCUPATION!!Production, transportation, and material moving occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_073EA,S0506_C03_073M,S0506_C03_073MA"}, "S0701_C05_023E": {"label": "Estimate!!Moved; from abroad!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C05_023EA,S0701_C05_023M,S0701_C05_023MA"}, "S1702_C04_010E": {"label": "Estimate!!Percent below poverty level!!Married-couple families!!Families!!RACE AND HISPANIC OR LATINO ORIGIN!!Families with a householder who is--!!Native Hawaiian and Other Pacific Islander alone", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C04_010EA,S1702_C04_010M,S1702_C04_010MA"}, "S0506_C03_072E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Civilian employed population 16 years and over!!OCCUPATION!!Natural resources, construction, and maintenance occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_072EA,S0506_C03_072M,S0506_C03_072MA"}, "S0701_C05_020E": {"label": "Estimate!!Moved; from abroad!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C05_020EA,S0701_C05_020M,S0701_C05_020MA"}, "S0502_C02_030E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_030EA,S0502_C02_030M,S0502_C02_030MA"}, "S0506_C03_071E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Civilian employed population 16 years and over!!OCCUPATION!!Sales and office occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_071EA,S0506_C03_071M,S0506_C03_071MA"}, "S0701_C05_021E": {"label": "Estimate!!Moved; from abroad!!Population 1 year and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Geographic Mobility by Selected Characteristics in the United States", "predicateType": "float", "group": "S0701", "limit": 0, "attributes": "S0701_C05_021EA,S0701_C05_021M,S0701_C05_021MA"}, "S0502_C02_031E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_031EA,S0502_C02_031M,S0502_C02_031MA"}, "S2601CPR_C02_020E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!Median age (years)", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_020EA,S2601CPR_C02_020M,S2601CPR_C02_020MA"}, "S0504_C01_074E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!INDUSTRY!!Agriculture, forestry, fishing and hunting, and mining", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_074EA,S0504_C01_074M,S0504_C01_074MA"}, "S0506_C03_078E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Civilian employed population 16 years and over!!INDUSTRY!!Retail trade", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_078EA,S0506_C03_078M,S0506_C03_078MA"}, "S0504_C01_073E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!OCCUPATION!!Production, transportation, and material moving occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_073EA,S0504_C01_073M,S0504_C01_073MA"}, "S0506_C03_077E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Civilian employed population 16 years and over!!INDUSTRY!!Wholesale trade", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_077EA,S0506_C03_077M,S0506_C03_077MA"}, "S2601CPR_C02_022E": {"label": "Estimate!!Total group quarters population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!White", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_022EA,S2601CPR_C02_022M,S2601CPR_C02_022MA"}, "S0504_C01_072E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!OCCUPATION!!Natural resources, construction, and maintenance occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_072EA,S0504_C01_072M,S0504_C01_072MA"}, "S0506_C03_076E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Civilian employed population 16 years and over!!INDUSTRY!!Manufacturing", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_076EA,S0506_C03_076M,S0506_C03_076MA"}, "S0504_C01_071E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!OCCUPATION!!Sales and office occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_071EA,S0504_C01_071M,S0504_C01_071MA"}, "S2601CPR_C02_021E": {"label": "Estimate!!Total group quarters population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "int", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_021EA,S2601CPR_C02_021M,S2601CPR_C02_021MA"}, "S0506_C03_075E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Civilian employed population 16 years and over!!INDUSTRY!!Construction", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_075EA,S0506_C03_075M,S0506_C03_075MA"}, "GEO_ID": {"label": "Geography", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico;Geographic Mobility by Selected Characteristics in the United States;Geographic Mobility by Selected Characteristics in Puerto Rico;Movers Between Regions;Commuting Characteristics by Sex;Children Characteristics;Characteristics of Teenagers 15 to 19 Years Old;Means of Transportation to Work by Selected Characteristics;Means of Transportation to Work by Selected Characteristics for Workplace Geography;Grandchildren Characteristics;Financial Characteristics;Physical Housing Characteristics for Occupied Housing Units;Financial Characteristics for Housing Units With a Mortgage;Financial Characteristics for Housing Units Without a Mortgage;Characteristics of the Group Quarters Population in the United States;Characteristics of the Group Quarters Population in the United States;Characteristics of the Group Quarters Population in Puerto Rico;Characteristics of the Group Quarters Population by Group Quarters Type (3 Types);Characteristics of the Group Quarters Population by Group Quarters Type (5 Types);Selected Characteristics of Health Insurance Coverage in the United States;Grandparents;Households and Families;Marital Status;Characteristics of People With a Marital Event in the Last 12 Months;Fertility;School Enrollment;Educational Attainment;Field of Bachelor's Degree for First Major;Language Spoken at Home;Limited English Speaking Households;Characteristics of People by Language Spoken at Home;Poverty Status in the Past 12 Months;Poverty Status in the Past 12 Months of Families;Selected Characteristics of People at Specified Levels of Poverty in the Past 12 Months;Disability Characteristics;Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status;Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars);Mean Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars);Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars);Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars);Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics;Veteran Status;Food Stamps/Supplemental Nutrition Assistance Program (SNAP);Employment Status;Work Status in the Past 12 Months;Occupation by Sex for the Civilian Employed Population 16 Years and Over;Employment Characteristics of Families;Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over;Industry by Sex for the Civilian Employed Population 16 Years and Over;Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over;Industry by Occupation for the Civilian Employed Population 16 Years and Over;Age and Sex;Population 60 Years and Over in the United States;Occupation by Class of Worker for the Civilian Employed Population 16 Years and Over;Industry by Class of Worker for the Civilian Employed Population 16 Years and Over;Class of Worker by Sex for the Civilian Employed Population 16 Years and Over;Class of Worker by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over;Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over;Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over;Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over;Population 60 Years and Over in Puerto Rico;Population 65 Years and Over in the United States;Population 65 Years and Over in Puerto Rico;Selected Characteristics of the Native and Foreign-Born Populations;Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States;Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over;Class of Worker by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over;Class of Worker by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over;Occupancy Characteristics;Demographic Characteristics for Occupied Housing Units;Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico;Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe;Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania;Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia;Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America;Selected Characteristics of the Total and Native Populations in the United States;Selected Characteristics of the Uninsured in the United States;Selected Characteristics of the Uninsured in Puerto Rico;Private Health Insurance Coverage by Type and Selected Characteristics;Public Health Insurance Coverage by Type and Selected Characteristics;Types of Computers and Internet Subscriptions;Types of Internet Subscriptions by Selected Characteristics;Citizen, Voting-Age Population by Selected Characteristics", "predicateType": "string", "group": "S0103PR,S1601,S2414,S1602,S1603,S0502PR,S2419,S2418,S1001,S1002,S2411,S1201,S2413,S1401,S2412,S2602,S2404,S2403,S0501,S2406,S0502,S2802,S0701,S2603,S2405,S0503,S2801,S0702,S2408,S0504,S0901,S2407,S0505,S0902,S0506,S2601CPR,S2409,S2002,S2001,S2201,S0101,S2402,S0102,S2401,S0103,S0601PR,S2702PR,S0102PR,S1501,S1502,S1701,S1702,S1703,S1901,S2601A,S1902,S1903,S2601C,S1101,S1301,S2503,S2701,S1810,S2502,S1811,S0601,S2703,S2901,S2504,S2702,S0801,S2507,S0802,S2506,S2704,S0701PR,S0804,S1251,S2101,S2301,S2303,S2501,S2302", "limit": 0, "attributes": "NAME"}, "S1702_C04_019E": {"label": "Estimate!!Percent below poverty level!!Married-couple families!!Families!!Family received --!!Social security income in the past 12 months", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C04_019EA,S1702_C04_019M,S1702_C04_019MA"}, "S0504_C01_066E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Government workers", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_066EA,S0504_C01_066M,S0504_C01_066MA"}, "S2401_C01_032E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Natural resources, construction, and maintenance occupations:!!Installation, maintenance, and repair occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C01_032EA,S2401_C01_032M,S2401_C01_032MA"}, "S2303_C05_011E": {"label": "Estimate!!Female!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 35 or more hours per week!!48 to 49 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C05_011EA,S2303_C05_011M,S2303_C05_011MA"}, "S0601_C04_031E": {"label": "Estimate!!Native; born outside U.S.!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C04_031EA,S0601_C04_031M,S0601_C04_031MA"}, "S2601CPR_C02_025E": {"label": "Estimate!!Total group quarters population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Asian", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_025EA,S2601CPR_C02_025M,S2601CPR_C02_025MA"}, "S2601CPR_C02_023E": {"label": "Estimate!!Total group quarters population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_023EA,S2601CPR_C02_023M,S2601CPR_C02_023MA"}, "S1702_C04_018E": {"label": "Estimate!!Percent below poverty level!!Married-couple families!!Families!!Family received --!!Supplemental Security Income (SSI) and/or cash public assistance income in the past 12 months", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C04_018EA,S1702_C04_018M,S1702_C04_018MA"}, "S2401_C01_031E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Natural resources, construction, and maintenance occupations:!!Construction and extraction occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C01_031EA,S2401_C01_031M,S2401_C01_031MA"}, "S0504_C01_065E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Private wage and salary workers", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_065EA,S0504_C01_065M,S0504_C01_065MA"}, "S2303_C05_010E": {"label": "Estimate!!Female!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 35 or more hours per week!!50 to 52 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C05_010EA,S2303_C05_010M,S2303_C05_010MA"}, "S0601_C04_030E": {"label": "Estimate!!Native; born outside U.S.!!MARITAL STATUS!!Population 15 years and over!!Divorced or separated", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C04_030EA,S0601_C04_030M,S0601_C04_030MA"}, "S0506_C03_069E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Civilian employed population 16 years and over!!OCCUPATION!!Management, business, science, and arts occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_069EA,S0506_C03_069M,S0506_C03_069MA"}, "S2601CPR_C02_024E": {"label": "Estimate!!Total group quarters population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_024EA,S2601CPR_C02_024M,S2601CPR_C02_024MA"}, "S1702_C04_017E": {"label": "Estimate!!Percent below poverty level!!Married-couple families!!Families!!Householder 65 years and over", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C04_017EA,S1702_C04_017M,S1702_C04_017MA"}, "S0504_C01_064E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C01_064EA,S0504_C01_064M,S0504_C01_064MA"}, "S2401_C01_030E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Natural resources, construction, and maintenance occupations:!!Farming, fishing, and forestry occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C01_030EA,S2401_C01_030M,S2401_C01_030MA"}, "S2303_C05_013E": {"label": "Estimate!!Female!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 35 or more hours per week!!27 to 39 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C05_013EA,S2303_C05_013M,S2303_C05_013MA"}, "S0506_C03_068E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Unpaid family workers", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_068EA,S0506_C03_068M,S0506_C03_068MA"}, "S2601CPR_C02_027E": {"label": "Estimate!!Total group quarters population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Some other race", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_027EA,S2601CPR_C02_027M,S2601CPR_C02_027MA"}, "S1702_C04_016E": {"label": "Estimate!!Percent below poverty level!!Married-couple families!!Families!!Householder worked!!Householder worked full-time, year-round in the past 12 months", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C04_016EA,S1702_C04_016M,S1702_C04_016MA"}, "S0801_C03_030E": {"label": "Estimate!!Female!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!6:00 a.m. to 6:29 a.m.", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C03_030EA,S0801_C03_030M,S0801_C03_030MA"}, "S0504_C01_063E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Population 16 years and over!!Not in labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_063EA,S0504_C01_063M,S0504_C01_063MA"}, "S2303_C05_012E": {"label": "Estimate!!Female!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 35 or more hours per week!!40 to 47 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C05_012EA,S2303_C05_012M,S2303_C05_012MA"}, "S0506_C03_067E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Self-employed workers in own not incorporated business", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_067EA,S0506_C03_067M,S0506_C03_067MA"}, "S2601CPR_C02_026E": {"label": "Estimate!!Total group quarters population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_026EA,S2601CPR_C02_026M,S2601CPR_C02_026MA"}, "S1702_C04_015E": {"label": "Estimate!!Percent below poverty level!!Married-couple families!!Families!!Householder worked", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C04_015EA,S1702_C04_015M,S1702_C04_015MA"}, "S0801_C03_031E": {"label": "Estimate!!Female!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!6:30 a.m. to 6:59 a.m.", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C03_031EA,S0801_C03_031M,S0801_C03_031MA"}, "S2601CPR_C02_029E": {"label": "Estimate!!Total group quarters population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!Hispanic or Latino (of any race)", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "float", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_029EA,S2601CPR_C02_029M,S2601CPR_C02_029MA"}, "S0601_C04_035E": {"label": "Estimate!!Native; born outside U.S.!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college or associate's degree", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C04_035EA,S0601_C04_035M,S0601_C04_035MA"}, "S1702_C04_014E": {"label": "Estimate!!Percent below poverty level!!Married-couple families!!Families!!RACE AND HISPANIC OR LATINO ORIGIN!!Families with a householder who is--!!White alone, not Hispanic or Latino", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C04_014EA,S1702_C04_014M,S1702_C04_014MA"}, "S1603_C02_001E": {"label": "Estimate!!Speak only English at home!!Total population 5 years and over", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "int", "group": "S1603", "limit": 0, "attributes": "S1603_C02_001EA,S1603_C02_001M,S1603_C02_001MA"}, "S0504_C01_069E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!OCCUPATION!!Management, business, science, and arts occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_069EA,S0504_C01_069M,S0504_C01_069MA"}, "S0801_C03_032E": {"label": "Estimate!!Female!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!7:00 a.m. to 7:29 a.m.", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C03_032EA,S0801_C03_032M,S0801_C03_032MA"}, "S2601CPR_C02_028E": {"label": "Estimate!!Total group quarters population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!Two or more races", "concept": "Characteristics of the Group Quarters Population in Puerto Rico", "predicateType": "int", "group": "S2601CPR", "limit": 0, "attributes": "S2601CPR_C02_028EA,S2601CPR_C02_028M,S2601CPR_C02_028MA"}, "S0601_C04_034E": {"label": "Estimate!!Native; born outside U.S.!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate (includes equivalency)", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C04_034EA,S0601_C04_034M,S0601_C04_034MA"}, "S1702_C04_013E": {"label": "Estimate!!Percent below poverty level!!Married-couple families!!Families!!RACE AND HISPANIC OR LATINO ORIGIN!!Families with a householder who is--!!Hispanic or Latino origin (of any race)", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C04_013EA,S1702_C04_013M,S1702_C04_013MA"}, "S1603_C02_002E": {"label": "Estimate!!Speak only English at home!!Total population 5 years and over!!AGE!!5 to 17 years", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "int", "group": "S1603", "limit": 0, "attributes": "S1603_C02_002EA,S1603_C02_002M,S1603_C02_002MA"}, "S0504_C01_068E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Unpaid family workers", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_068EA,S0504_C01_068M,S0504_C01_068MA"}, "S0801_C03_033E": {"label": "Estimate!!Female!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!7:30 a.m. to 7:59 a.m.", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C03_033EA,S0801_C03_033M,S0801_C03_033MA"}, "S0601_C04_033E": {"label": "Estimate!!Native; born outside U.S.!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than high school graduate", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C04_033EA,S0601_C04_033M,S0601_C04_033MA"}, "S0504_C01_067E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Self-employed workers in own not incorporated business", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C01_067EA,S0504_C01_067M,S0504_C01_067MA"}, "S1603_C02_003E": {"label": "Estimate!!Speak only English at home!!Total population 5 years and over!!AGE!!18 to 64 years", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "int", "group": "S1603", "limit": 0, "attributes": "S1603_C02_003EA,S1603_C02_003M,S1603_C02_003MA"}, "S0801_C03_034E": {"label": "Estimate!!Female!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!8:00 a.m. to 8:29 a.m.", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C03_034EA,S0801_C03_034M,S0801_C03_034MA"}, "S0601_C04_032E": {"label": "Estimate!!Native; born outside U.S.!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "int", "group": "S0601", "limit": 0, "attributes": "S0601_C04_032EA,S0601_C04_032M,S0601_C04_032MA"}, "S1702_C04_012E": {"label": "Estimate!!Percent below poverty level!!Married-couple families!!Families!!RACE AND HISPANIC OR LATINO ORIGIN!!Families with a householder who is--!!Two or more races", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C04_012EA,S1702_C04_012M,S1702_C04_012MA"}, "S0601_C04_039E": {"label": "Estimate!!Native; born outside U.S.!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$1 to $9,999 or loss", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C04_039EA,S0601_C04_039M,S0601_C04_039MA"}, "S2303_C05_019E": {"label": "Estimate!!Female!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 15 to 34 hours per week!!40 to 47 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C05_019EA,S2303_C05_019M,S2303_C05_019MA"}, "S0801_C03_035E": {"label": "Estimate!!Female!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!8:30 a.m. to 8:59 a.m.", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C03_035EA,S0801_C03_035M,S0801_C03_035MA"}, "S1603_C02_004E": {"label": "Estimate!!Speak only English at home!!Total population 5 years and over!!AGE!!65 years and over", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "int", "group": "S1603", "limit": 0, "attributes": "S1603_C02_004EA,S1603_C02_004M,S1603_C02_004MA"}, "S2301_C03_015E": {"label": "Estimate!!Employment/Population Ratio!!Population 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Asian alone", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C03_015EA,S2301_C03_015M,S2301_C03_015MA"}, "S0601_C04_038E": {"label": "Estimate!!Native; born outside U.S.!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "int", "group": "S0601", "limit": 0, "attributes": "S0601_C04_038EA,S0601_C04_038M,S0601_C04_038MA"}, "S2303_C05_018E": {"label": "Estimate!!Female!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 15 to 34 hours per week!!48 to 49 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C05_018EA,S2303_C05_018M,S2303_C05_018MA"}, "S0801_C03_036E": {"label": "Estimate!!Female!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!9:00 a.m. to 11:59 p.m.", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C03_036EA,S0801_C03_036M,S0801_C03_036MA"}, "S1603_C02_005E": {"label": "Estimate!!Speak only English at home!!Total population 5 years and over!!NATIVITY AND CITIZENSHIP STATUS!!Native", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "int", "group": "S1603", "limit": 0, "attributes": "S1603_C02_005EA,S1603_C02_005M,S1603_C02_005MA"}, "S2301_C03_014E": {"label": "Estimate!!Employment/Population Ratio!!Population 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!American Indian and Alaska Native alone", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C03_014EA,S2301_C03_014M,S2301_C03_014MA"}, "S0601_C04_037E": {"label": "Estimate!!Native; born outside U.S.!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Graduate or professional degree", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C04_037EA,S0601_C04_037M,S0601_C04_037MA"}, "S0801_C03_037E": {"label": "Estimate!!Female!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!Less than 10 minutes", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C03_037EA,S0801_C03_037M,S0801_C03_037MA"}, "S1603_C02_006E": {"label": "Estimate!!Speak only English at home!!Total population 5 years and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "int", "group": "S1603", "limit": 0, "attributes": "S1603_C02_006EA,S1603_C02_006M,S1603_C02_006MA"}, "S2301_C03_017E": {"label": "Estimate!!Employment/Population Ratio!!Population 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Some other race alone", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C03_017EA,S2301_C03_017M,S2301_C03_017MA"}, "S0601_C04_036E": {"label": "Estimate!!Native; born outside U.S.!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C04_036EA,S0601_C04_036M,S0601_C04_036MA"}, "S0801_C03_038E": {"label": "Estimate!!Female!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!10 to 14 minutes", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C03_038EA,S0801_C03_038M,S0801_C03_038MA"}, "S1603_C02_007E": {"label": "Estimate!!Speak only English at home!!Total population 5 years and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born!!Naturalized U.S. citizen", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "int", "group": "S1603", "limit": 0, "attributes": "S1603_C02_007EA,S1603_C02_007M,S1603_C02_007MA"}, "S2301_C03_016E": {"label": "Estimate!!Employment/Population Ratio!!Population 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Native Hawaiian and Other Pacific Islander alone", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C03_016EA,S2301_C03_016M,S2301_C03_016MA"}, "S2401_C01_036E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Production, transportation, and material moving occupations:!!Material moving occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C01_036EA,S2401_C01_036M,S2401_C01_036MA"}, "S1603_C02_008E": {"label": "Estimate!!Speak only English at home!!Total population 5 years and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born!!Not a U.S. citizen", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "int", "group": "S1603", "limit": 0, "attributes": "S1603_C02_008EA,S1603_C02_008M,S1603_C02_008MA"}, "S0502_C02_028E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_028EA,S0502_C02_028M,S0502_C02_028MA"}, "S2301_C03_011E": {"label": "Estimate!!Employment/Population Ratio!!Population 16 years and over!!AGE!!75 years and over", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C03_011EA,S2301_C03_011M,S2301_C03_011MA"}, "S0801_C03_039E": {"label": "Estimate!!Female!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!15 to 19 minutes", "concept": "Commuting Characteristics by Sex", "predicateType": "float", "group": "S0801", "limit": 0, "attributes": "S0801_C03_039EA,S0801_C03_039M,S0801_C03_039MA"}, "S2303_C05_015E": {"label": "Estimate!!Female!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 35 or more hours per week!!1 to 13 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C05_015EA,S2303_C05_015M,S2303_C05_015MA"}, "S2401_C01_035E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Production, transportation, and material moving occupations:!!Transportation occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C01_035EA,S2401_C01_035M,S2401_C01_035MA"}, "S0502_C02_029E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C02_029EA,S0502_C02_029M,S0502_C02_029MA"}, "S1603_C02_009E": {"label": "Estimate!!Speak only English at home!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population 5 years and over for whom poverty status is determined", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "int", "group": "S1603", "limit": 0, "attributes": "S1603_C02_009EA,S1603_C02_009M,S1603_C02_009MA"}, "S2301_C03_010E": {"label": "Estimate!!Employment/Population Ratio!!Population 16 years and over!!AGE!!65 to 74 years", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C03_010EA,S2301_C03_010M,S2301_C03_010MA"}, "S2303_C05_014E": {"label": "Estimate!!Female!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 35 or more hours per week!!14 to 26 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C05_014EA,S2303_C05_014M,S2303_C05_014MA"}, "S2303_C05_017E": {"label": "Estimate!!Female!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 15 to 34 hours per week!!50 to 52 weeks", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C05_017EA,S2303_C05_017M,S2303_C05_017MA"}, "S2401_C01_034E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Production, transportation, and material moving occupations:!!Production occupations", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C01_034EA,S2401_C01_034M,S2401_C01_034MA"}, "S2301_C03_013E": {"label": "Estimate!!Employment/Population Ratio!!Population 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Black or African American alone", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C03_013EA,S2301_C03_013M,S2301_C03_013MA"}, "S2303_C05_016E": {"label": "Estimate!!Female!!Population 16 to 64 years!!USUAL HOURS WORKED!!Usually worked 15 to 34 hours per week", "concept": "Work Status in the Past 12 Months", "predicateType": "int", "group": "S2303", "limit": 0, "attributes": "S2303_C05_016EA,S2303_C05_016M,S2303_C05_016MA"}, "S2401_C01_033E": {"label": "Estimate!!Total!!Civilian employed population 16 years and over!!Production, transportation, and material moving occupations:", "concept": "Occupation by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2401", "limit": 0, "attributes": "S2401_C01_033EA,S2401_C01_033M,S2401_C01_033MA"}, "S2301_C03_012E": {"label": "Estimate!!Employment/Population Ratio!!Population 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C03_012EA,S2301_C03_012M,S2301_C03_012MA"}, "S0804_C05_005E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!AGE!!45 to 54 years", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C05_005EA,S0804_C05_005M,S0804_C05_005MA"}, "S1702_C02_018E": {"label": "Estimate!!Percent below poverty level!!All families!!Families!!Family received --!!Supplemental Security Income (SSI) and/or cash public assistance income in the past 12 months", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C02_018EA,S1702_C02_018M,S1702_C02_018MA"}, "S2504_C04_004E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!UNITS IN STRUCTURE!!2 apartments", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C04_004EA,S2504_C04_004M,S2504_C04_004MA"}, "S0503_C03_014E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Foreign-born population!!SEX AND AGE!!18 to 24 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_014EA,S0503_C03_014M,S0503_C03_014MA"}, "S0502PR_C04_109E": {"label": "Estimate!!Foreign-born; Entered before 2000!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Food Stamp/SNAP benefits", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_109EA,S0502PR_C04_109M,S0502PR_C04_109MA"}, "S1702_C02_019E": {"label": "Estimate!!Percent below poverty level!!All families!!Families!!Family received --!!Social security income in the past 12 months", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C02_019EA,S1702_C02_019M,S1702_C02_019MA"}, "S0804_C05_004E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!AGE!!25 to 44 years", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C05_004EA,S0804_C05_004M,S0804_C05_004MA"}, "S2504_C04_005E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!UNITS IN STRUCTURE!!3 or 4 apartments", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C04_005EA,S2504_C04_005M,S2504_C04_005MA"}, "S0503_C03_015E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Foreign-born population!!SEX AND AGE!!25 to 44 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_015EA,S0503_C03_015M,S0503_C03_015MA"}, "S2901_C01_019E": {"label": "Estimate!!Total!!Citizens 18 years and over!!EDUCATIONAL ATTAINMENT!!High school graduate (includes equivalency)", "concept": "Citizen, Voting-Age Population by Selected Characteristics", "predicateType": "int", "group": "S2901", "limit": 0, "attributes": "S2901_C01_019EA,S2901_C01_019M,S2901_C01_019MA"}, "S0804_C05_003E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!AGE!!20 to 24 years", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C05_003EA,S0804_C05_003M,S0804_C05_003MA"}, "S2504_C04_006E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!UNITS IN STRUCTURE!!5 to 9 apartments", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C04_006EA,S2504_C04_006M,S2504_C04_006MA"}, "S0503_C03_016E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Foreign-born population!!SEX AND AGE!!45 to 54 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_016EA,S0503_C03_016M,S0503_C03_016MA"}, "S2901_C01_018E": {"label": "Estimate!!Total!!Citizens 18 years and over!!EDUCATIONAL ATTAINMENT!!9th to 12th grade, no diploma", "concept": "Citizen, Voting-Age Population by Selected Characteristics", "predicateType": "int", "group": "S2901", "limit": 0, "attributes": "S2901_C01_018EA,S2901_C01_018M,S2901_C01_018MA"}, "S0804_C05_002E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!AGE!!16 to 19 years", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C05_002EA,S0804_C05_002M,S0804_C05_002MA"}, "S2504_C04_007E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!UNITS IN STRUCTURE!!10 or more apartments", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C04_007EA,S2504_C04_007M,S2504_C04_007MA"}, "S0503_C03_017E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Foreign-born population!!SEX AND AGE!!55 to 64 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_017EA,S0503_C03_017M,S0503_C03_017MA"}, "S0804_C05_009E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!SEX!!Male", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C05_009EA,S0804_C05_009M,S0804_C05_009MA"}, "S0503_C03_010E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Foreign-born population!!SEX AND AGE!!Male", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_010EA,S0503_C03_010M,S0503_C03_010MA"}, "S2507_C01_042E": {"label": "Estimate!!Owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$35,000 to $49,999!!Less than 20 percent", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "int", "group": "S2507", "limit": 0, "attributes": "S2507_C01_042EA,S2507_C01_042M,S2507_C01_042MA"}, "S0502PR_C02_099E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_099EA,S0502PR_C02_099M,S0502PR_C02_099MA"}, "S1702_C02_014E": {"label": "Estimate!!Percent below poverty level!!All families!!Families!!RACE AND HISPANIC OR LATINO ORIGIN!!Families with a householder who is--!!White alone, not Hispanic or Latino", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C02_014EA,S1702_C02_014M,S1702_C02_014MA"}, "S0804_C05_008E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!AGE!!Median age (years)", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C05_008EA,S0804_C05_008M,S0804_C05_008MA"}, "S0503_C03_011E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Foreign-born population!!SEX AND AGE!!Female", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_011EA,S0503_C03_011M,S0503_C03_011MA"}, "S1702_C02_015E": {"label": "Estimate!!Percent below poverty level!!All families!!Families!!Householder worked", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C02_015EA,S1702_C02_015M,S1702_C02_015MA"}, "S0502PR_C02_098E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_098EA,S0502PR_C02_098M,S0502PR_C02_098MA"}, "S2507_C01_043E": {"label": "Estimate!!Owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$35,000 to $49,999!!20 to 29 percent", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "int", "group": "S2507", "limit": 0, "attributes": "S2507_C01_043EA,S2507_C01_043M,S2507_C01_043MA"}, "S2504_C04_001E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "int", "group": "S2504", "limit": 0, "attributes": "S2504_C04_001EA,S2504_C04_001M,S2504_C04_001MA"}, "S0804_C05_007E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!AGE!!60 years and over", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C05_007EA,S0804_C05_007M,S0804_C05_007MA"}, "S0503_C03_012E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Foreign-born population!!SEX AND AGE!!Under 5 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_012EA,S0503_C03_012M,S0503_C03_012MA"}, "S2507_C01_040E": {"label": "Estimate!!Owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$20,000 to $34,999!!30 percent or more", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "int", "group": "S2507", "limit": 0, "attributes": "S2507_C01_040EA,S2507_C01_040M,S2507_C01_040MA"}, "S1702_C02_016E": {"label": "Estimate!!Percent below poverty level!!All families!!Families!!Householder worked!!Householder worked full-time, year-round in the past 12 months", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C02_016EA,S1702_C02_016M,S1702_C02_016MA"}, "S2504_C04_002E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!UNITS IN STRUCTURE!!1, detached", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C04_002EA,S2504_C04_002M,S2504_C04_002MA"}, "S0804_C05_006E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!AGE!!55 to 59 years", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C05_006EA,S0804_C05_006M,S0804_C05_006MA"}, "S2507_C01_041E": {"label": "Estimate!!Owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$35,000 to $49,999", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "int", "group": "S2507", "limit": 0, "attributes": "S2507_C01_041EA,S2507_C01_041M,S2507_C01_041MA"}, "S0503_C03_013E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Foreign-born population!!SEX AND AGE!!5 to 17 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_013EA,S0503_C03_013M,S0503_C03_013MA"}, "S1702_C02_017E": {"label": "Estimate!!Percent below poverty level!!All families!!Families!!Householder 65 years and over", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C02_017EA,S1702_C02_017M,S1702_C02_017MA"}, "S2504_C04_003E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!UNITS IN STRUCTURE!!1, attached", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C04_003EA,S2504_C04_003M,S2504_C04_003MA"}, "S0502PR_C04_102E": {"label": "Estimate!!Foreign-born; Entered before 2000!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income!!Mean Social Security income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_102EA,S0502PR_C04_102M,S0502PR_C04_102MA"}, "S0502PR_C02_095E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$75,000 or more", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_095EA,S0502PR_C02_095M,S0502PR_C02_095MA"}, "S2507_C01_046E": {"label": "Estimate!!Owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$50,000 to $74,999!!Less than 20 percent", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "int", "group": "S2507", "limit": 0, "attributes": "S2507_C01_046EA,S2507_C01_046M,S2507_C01_046MA"}, "S1702_C02_010E": {"label": "Estimate!!Percent below poverty level!!All families!!Families!!RACE AND HISPANIC OR LATINO ORIGIN!!Families with a householder who is--!!Native Hawaiian and Other Pacific Islander alone", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C02_010EA,S1702_C02_010M,S1702_C02_010MA"}, "S2901_C01_013E": {"label": "Estimate!!Total!!Citizens 18 years and over!!RACE AND HISPANIC ORIGIN!!Some Other Race alone", "concept": "Citizen, Voting-Age Population by Selected Characteristics", "predicateType": "int", "group": "S2901", "limit": 0, "attributes": "S2901_C01_013EA,S2901_C01_013M,S2901_C01_013MA"}, "S2503_C01_009E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$50,000 to $74,999", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C01_009EA,S2503_C01_009M,S2503_C01_009MA"}, "S2602_C05_017E": {"label": "Estimate!!College/university housing!!Total population!!SEX AND AGE!!65 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C05_017EA,S2602_C05_017M,S2602_C05_017MA"}, "S0502PR_C04_101E": {"label": "Estimate!!Foreign-born; Entered before 2000!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_101EA,S0502PR_C04_101M,S0502PR_C04_101MA"}, "S0502PR_C02_094E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$50,000 to $74,999", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_094EA,S0502PR_C02_094M,S0502PR_C02_094MA"}, "S1702_C02_011E": {"label": "Estimate!!Percent below poverty level!!All families!!Families!!RACE AND HISPANIC OR LATINO ORIGIN!!Families with a householder who is--!!Some other race alone", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C02_011EA,S1702_C02_011M,S1702_C02_011MA"}, "S2507_C01_047E": {"label": "Estimate!!Owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$50,000 to $74,999!!20 to 29 percent", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "int", "group": "S2507", "limit": 0, "attributes": "S2507_C01_047EA,S2507_C01_047M,S2507_C01_047MA"}, "S2901_C01_012E": {"label": "Estimate!!Total!!Citizens 18 years and over!!RACE AND HISPANIC ORIGIN!!Native Hawaiian and Other Pacific Islander alone", "concept": "Citizen, Voting-Age Population by Selected Characteristics", "predicateType": "int", "group": "S2901", "limit": 0, "attributes": "S2901_C01_012EA,S2901_C01_012M,S2901_C01_012MA"}, "S2503_C01_008E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$35,000 to $49,999", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C01_008EA,S2503_C01_008M,S2503_C01_008MA"}, "S2602_C05_016E": {"label": "Estimate!!College/university housing!!Total population!!SEX AND AGE!!Under 18 years!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C05_016EA,S2602_C05_016M,S2602_C05_016MA"}, "S0502PR_C02_097E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!Median earnings (dollars) for full-time, year-round workers!!Female", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_097EA,S0502PR_C02_097M,S0502PR_C02_097MA"}, "S0502PR_C04_104E": {"label": "Estimate!!Foreign-born; Entered before 2000!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income!!Mean Supplemental Security Income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_104EA,S0502PR_C04_104M,S0502PR_C04_104MA"}, "S2507_C01_044E": {"label": "Estimate!!Owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$35,000 to $49,999!!30 percent or more", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "int", "group": "S2507", "limit": 0, "attributes": "S2507_C01_044EA,S2507_C01_044M,S2507_C01_044MA"}, "S1702_C02_012E": {"label": "Estimate!!Percent below poverty level!!All families!!Families!!RACE AND HISPANIC OR LATINO ORIGIN!!Families with a householder who is--!!Two or more races", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C02_012EA,S1702_C02_012M,S1702_C02_012MA"}, "S2602_C05_015E": {"label": "Estimate!!College/university housing!!Total population!!SEX AND AGE!!Under 18 years!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C05_015EA,S2602_C05_015M,S2602_C05_015MA"}, "S2901_C01_011E": {"label": "Estimate!!Total!!Citizens 18 years and over!!RACE AND HISPANIC ORIGIN!!American Indian and Alaska Native alone", "concept": "Citizen, Voting-Age Population by Selected Characteristics", "predicateType": "int", "group": "S2901", "limit": 0, "attributes": "S2901_C01_011EA,S2901_C01_011M,S2901_C01_011MA"}, "S0502PR_C02_096E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!Median earnings (dollars) for full-time, year-round workers!!Male", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_096EA,S0502PR_C02_096M,S0502PR_C02_096MA"}, "S0502PR_C04_103E": {"label": "Estimate!!Foreign-born; Entered before 2000!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_103EA,S0502PR_C04_103M,S0502PR_C04_103MA"}, "S2507_C01_045E": {"label": "Estimate!!Owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$50,000 to $74,999", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "int", "group": "S2507", "limit": 0, "attributes": "S2507_C01_045EA,S2507_C01_045M,S2507_C01_045MA"}, "S1702_C02_013E": {"label": "Estimate!!Percent below poverty level!!All families!!Families!!RACE AND HISPANIC OR LATINO ORIGIN!!Families with a householder who is--!!Hispanic or Latino origin (of any race)", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C02_013EA,S1702_C02_013M,S1702_C02_013MA"}, "S2702PR_C01_029E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!NATIVITY AND U.S. CITIZENSHIP STATUS!!Foreign born!!Naturalized", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_029EA,S2702PR_C01_029M,S2702PR_C01_029MA"}, "S2602_C05_014E": {"label": "Estimate!!College/university housing!!Total population!!SEX AND AGE!!Under 18 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C05_014EA,S2602_C05_014M,S2602_C05_014MA"}, "S2901_C01_010E": {"label": "Estimate!!Total!!Citizens 18 years and over!!RACE AND HISPANIC ORIGIN!!Asian alone", "concept": "Citizen, Voting-Age Population by Selected Characteristics", "predicateType": "int", "group": "S2901", "limit": 0, "attributes": "S2901_C01_010EA,S2901_C01_010M,S2901_C01_010MA"}, "S2407_C03_001E": {"label": "Estimate!!Self-employed in own incorporated business workers!!Civilian employed population 16 years and over", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2407", "limit": 0, "attributes": "S2407_C03_001EA,S2407_C03_001M,S2407_C03_001MA"}, "S2901_C01_017E": {"label": "Estimate!!Total!!Citizens 18 years and over!!EDUCATIONAL ATTAINMENT!!Less than 9th grade", "concept": "Citizen, Voting-Age Population by Selected Characteristics", "predicateType": "int", "group": "S2901", "limit": 0, "attributes": "S2901_C01_017EA,S2901_C01_017M,S2901_C01_017MA"}, "S0506_C03_042E": {"label": "Estimate!!Foreign-born; Born in Mexico!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Nursery school, preschool", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_042EA,S0506_C03_042M,S0506_C03_042MA"}, "S0502PR_C02_091E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$15,000 to $24,999", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_091EA,S0502PR_C02_091M,S0502PR_C02_091MA"}, "S0502PR_C04_106E": {"label": "Estimate!!Foreign-born; Entered before 2000!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income!!Mean cash public assistance income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_106EA,S0502PR_C04_106M,S0502PR_C04_106MA"}, "S2504_C04_008E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!UNITS IN STRUCTURE!!Mobile home or other type of housing", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C04_008EA,S2504_C04_008M,S2504_C04_008MA"}, "S2901_C01_016E": {"label": "Estimate!!Total!!Citizens 18 years and over!!RACE AND HISPANIC ORIGIN!!White alone, Not Hispanic or Latino", "concept": "Citizen, Voting-Age Population by Selected Characteristics", "predicateType": "int", "group": "S2901", "limit": 0, "attributes": "S2901_C01_016EA,S2901_C01_016M,S2901_C01_016MA"}, "S0506_C03_041E": {"label": "Estimate!!Foreign-born; Born in Mexico!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C03_041EA,S0506_C03_041M,S0506_C03_041MA"}, "S0502PR_C02_090E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$10,000 to $14,999", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_090EA,S0502PR_C02_090M,S0502PR_C02_090MA"}, "S0502PR_C04_105E": {"label": "Estimate!!Foreign-born; Entered before 2000!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_105EA,S0502PR_C04_105M,S0502PR_C04_105MA"}, "S2504_C04_009E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!YEAR STRUCTURE BUILT!!2020 or later", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C04_009EA,S2504_C04_009M,S2504_C04_009MA"}, "S2407_C03_002E": {"label": "Estimate!!Self-employed in own incorporated business workers!!Civilian employed population 16 years and over!!Agriculture, forestry, fishing and hunting, and mining", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2407", "limit": 0, "attributes": "S2407_C03_002EA,S2407_C03_002M,S2407_C03_002MA"}, "S0502PR_C04_108E": {"label": "Estimate!!Foreign-born; Entered before 2000!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income!!Mean retirement income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_108EA,S0502PR_C04_108M,S0502PR_C04_108MA"}, "S0506_C03_040E": {"label": "Estimate!!Foreign-born; Born in Mexico!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_040EA,S0506_C03_040M,S0506_C03_040MA"}, "S0502PR_C02_093E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$35,000 to $49,999", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_093EA,S0502PR_C02_093M,S0502PR_C02_093MA"}, "S2507_C01_048E": {"label": "Estimate!!Owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$50,000 to $74,999!!30 percent or more", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "int", "group": "S2507", "limit": 0, "attributes": "S2507_C01_048EA,S2507_C01_048M,S2507_C01_048MA"}, "S2602_C05_019E": {"label": "Estimate!!College/university housing!!Total population!!SEX AND AGE!!65 years and over!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C05_019EA,S2602_C05_019M,S2602_C05_019MA"}, "S2407_C03_003E": {"label": "Estimate!!Self-employed in own incorporated business workers!!Civilian employed population 16 years and over!!Construction", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2407", "limit": 0, "attributes": "S2407_C03_003EA,S2407_C03_003M,S2407_C03_003MA"}, "S2901_C01_015E": {"label": "Estimate!!Total!!Citizens 18 years and over!!RACE AND HISPANIC ORIGIN!!Hispanic or Latino", "concept": "Citizen, Voting-Age Population by Selected Characteristics", "predicateType": "int", "group": "S2901", "limit": 0, "attributes": "S2901_C01_015EA,S2901_C01_015M,S2901_C01_015MA"}, "S0502PR_C02_092E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$25,000 to $34,999", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_092EA,S0502PR_C02_092M,S0502PR_C02_092MA"}, "S0502PR_C04_107E": {"label": "Estimate!!Foreign-born; Entered before 2000!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_107EA,S0502PR_C04_107M,S0502PR_C04_107MA"}, "S2507_C01_049E": {"label": "Estimate!!Owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$75,000 or more", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "int", "group": "S2507", "limit": 0, "attributes": "S2507_C01_049EA,S2507_C01_049M,S2507_C01_049MA"}, "S2407_C03_004E": {"label": "Estimate!!Self-employed in own incorporated business workers!!Civilian employed population 16 years and over!!Manufacturing", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2407", "limit": 0, "attributes": "S2407_C03_004EA,S2407_C03_004M,S2407_C03_004MA"}, "S2602_C05_018E": {"label": "Estimate!!College/university housing!!Total population!!SEX AND AGE!!65 years and over!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C05_018EA,S2602_C05_018M,S2602_C05_018MA"}, "S2901_C01_014E": {"label": "Estimate!!Total!!Citizens 18 years and over!!RACE AND HISPANIC ORIGIN!!Two or More Races", "concept": "Citizen, Voting-Age Population by Selected Characteristics", "predicateType": "int", "group": "S2901", "limit": 0, "attributes": "S2901_C01_014EA,S2901_C01_014M,S2901_C01_014MA"}, "S2602_C05_021E": {"label": "Estimate!!College/university housing!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C05_021EA,S2602_C05_021M,S2602_C05_021MA"}, "S0505_C06_144E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_144EA,S0505_C06_144M,S0505_C06_144MA"}, "S2503_C01_001E": {"label": "Estimate!!Occupied housing units!!Occupied housing units", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C01_001EA,S2503_C01_001M,S2503_C01_001MA"}, "S2702PR_C01_024E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_024EA,S2702PR_C01_024M,S2702PR_C01_024MA"}, "S2407_C03_005E": {"label": "Estimate!!Self-employed in own incorporated business workers!!Civilian employed population 16 years and over!!Wholesale trade", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2407", "limit": 0, "attributes": "S2407_C03_005EA,S2407_C03_005M,S2407_C03_005MA"}, "S0506_C03_034E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Foreign-born population!!Average household size", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_034EA,S0506_C03_034M,S0506_C03_034MA"}, "S0505_C06_145E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_145EA,S0505_C06_145M,S0505_C06_145MA"}, "S2602_C05_020E": {"label": "Estimate!!College/university housing!!Total population!!SEX AND AGE!!Median age (years)", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C05_020EA,S2602_C05_020M,S2602_C05_020MA"}, "S2702PR_C01_023E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race alone", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_023EA,S2702PR_C01_023M,S2702PR_C01_023MA"}, "S0506_C03_033E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Foreign-born population!!HOUSEHOLD TYPE!!In other households", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_033EA,S0506_C03_033M,S0506_C03_033MA"}, "S2407_C03_006E": {"label": "Estimate!!Self-employed in own incorporated business workers!!Civilian employed population 16 years and over!!Retail trade", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2407", "limit": 0, "attributes": "S2407_C03_006EA,S2407_C03_006M,S2407_C03_006MA"}, "S0505_C06_142E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_142EA,S0505_C06_142M,S0505_C06_142MA"}, "S2503_C01_003E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$5,000 to $9,999", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C01_003EA,S2503_C01_003M,S2503_C01_003MA"}, "S0506_C03_032E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Foreign-born population!!HOUSEHOLD TYPE!!In married-couple family", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_032EA,S0506_C03_032M,S0506_C03_032MA"}, "S2702PR_C01_022E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander alone", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_022EA,S2702PR_C01_022M,S2702PR_C01_022MA"}, "S2301_C03_021E": {"label": "Estimate!!Employment/Population Ratio!!Population 20 to 64 years", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C03_021EA,S2301_C03_021M,S2301_C03_021MA"}, "S2407_C03_007E": {"label": "Estimate!!Self-employed in own incorporated business workers!!Civilian employed population 16 years and over!!Transportation and warehousing, and utilities", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2407", "limit": 0, "attributes": "S2407_C03_007EA,S2407_C03_007M,S2407_C03_007MA"}, "S0505_C06_143E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Renter-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C06_143EA,S0505_C06_143M,S0505_C06_143MA"}, "S2503_C01_002E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Less than $5,000", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C01_002EA,S2503_C01_002M,S2503_C01_002MA"}, "S0506_C03_031E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_031EA,S0506_C03_031M,S0506_C03_031MA"}, "S2702PR_C01_021E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian alone", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_021EA,S2702PR_C01_021M,S2702PR_C01_021MA"}, "S2301_C03_020E": {"label": "Estimate!!Employment/Population Ratio!!Population 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C03_020EA,S2301_C03_020M,S2301_C03_020MA"}, "S2407_C03_008E": {"label": "Estimate!!Self-employed in own incorporated business workers!!Civilian employed population 16 years and over!!Information", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2407", "limit": 0, "attributes": "S2407_C03_008EA,S2407_C03_008M,S2407_C03_008MA"}, "S0901_C03_018E": {"label": "Estimate!!In male householder, no spouse present, family household!!Children under 18 years in households!!RELATIONSHIP TO HOUSEHOLDER!!Foster child or other unrelated child", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C03_018EA,S0901_C03_018M,S0901_C03_018MA"}, "S2503_C01_005E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$15,000 to $19,999", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C01_005EA,S2503_C01_005M,S2503_C01_005MA"}, "S2702PR_C01_028E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!NATIVITY AND U.S. CITIZENSHIP STATUS!!Foreign born", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_028EA,S2702PR_C01_028M,S2702PR_C01_028MA"}, "S0502PR_C04_110E": {"label": "Estimate!!Foreign-born; Entered before 2000!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!Median Household income (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_110EA,S0502PR_C04_110M,S0502PR_C04_110MA"}, "S2602_C05_025E": {"label": "Estimate!!College/university housing!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Asian", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C05_025EA,S2602_C05_025M,S2602_C05_025MA"}, "S2407_C03_009E": {"label": "Estimate!!Self-employed in own incorporated business workers!!Civilian employed population 16 years and over!!Finance and insurance, and real estate and rental and leasing", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2407", "limit": 0, "attributes": "S2407_C03_009EA,S2407_C03_009M,S2407_C03_009MA"}, "S0506_C03_038E": {"label": "Estimate!!Foreign-born; Born in Mexico!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_038EA,S0506_C03_038M,S0506_C03_038MA"}, "S2901_C01_021E": {"label": "Estimate!!Total!!Citizens 18 years and over!!EDUCATIONAL ATTAINMENT!!Associate's degree", "concept": "Citizen, Voting-Age Population by Selected Characteristics", "predicateType": "int", "group": "S2901", "limit": 0, "attributes": "S2901_C01_021EA,S2901_C01_021M,S2901_C01_021MA"}, "S2602_C05_024E": {"label": "Estimate!!College/university housing!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C05_024EA,S2602_C05_024M,S2602_C05_024MA"}, "S2503_C01_004E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$10,000 to $14,999", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C01_004EA,S2503_C01_004M,S2503_C01_004MA"}, "S0901_C03_019E": {"label": "Estimate!!In male householder, no spouse present, family household!!Children under 18 years in households!!NATIVITY!!Native", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C03_019EA,S0901_C03_019M,S0901_C03_019MA"}, "S2702PR_C01_027E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!NATIVITY AND U.S. CITIZENSHIP STATUS!!Native born", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_027EA,S2702PR_C01_027M,S2702PR_C01_027MA"}, "S0506_C03_037E": {"label": "Estimate!!Foreign-born; Born in Mexico!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_037EA,S0506_C03_037M,S0506_C03_037MA"}, "S2901_C01_020E": {"label": "Estimate!!Total!!Citizens 18 years and over!!EDUCATIONAL ATTAINMENT!!Some college, no degree", "concept": "Citizen, Voting-Age Population by Selected Characteristics", "predicateType": "int", "group": "S2901", "limit": 0, "attributes": "S2901_C01_020EA,S2901_C01_020M,S2901_C01_020MA"}, "S2602_C05_023E": {"label": "Estimate!!College/university housing!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C05_023EA,S2602_C05_023M,S2602_C05_023MA"}, "S0901_C03_016E": {"label": "Estimate!!In male householder, no spouse present, family household!!Children under 18 years in households!!RELATIONSHIP TO HOUSEHOLDER!!Grandchild", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C03_016EA,S0901_C03_016M,S0901_C03_016MA"}, "S0502PR_C04_112E": {"label": "Estimate!!Foreign-born; Entered before 2000!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_112EA,S0502PR_C04_112M,S0502PR_C04_112MA"}, "S2702PR_C01_026E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_026EA,S2702PR_C01_026M,S2702PR_C01_026MA"}, "S2503_C01_007E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$25,000 to $34,999", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C01_007EA,S2503_C01_007M,S2503_C01_007MA"}, "S0506_C03_036E": {"label": "Estimate!!Foreign-born; Born in Mexico!!MARITAL STATUS!!Population 15 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C03_036EA,S0506_C03_036M,S0506_C03_036MA"}, "S2602_C05_022E": {"label": "Estimate!!College/university housing!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!White", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C05_022EA,S2602_C05_022M,S2602_C05_022MA"}, "S0901_C03_017E": {"label": "Estimate!!In male householder, no spouse present, family household!!Children under 18 years in households!!RELATIONSHIP TO HOUSEHOLDER!!Other relatives", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C03_017EA,S0901_C03_017M,S0901_C03_017MA"}, "S2503_C01_006E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$20,000 to $24,999", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C01_006EA,S2503_C01_006M,S2503_C01_006MA"}, "S0502PR_C04_111E": {"label": "Estimate!!Foreign-born; Entered before 2000!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!Average number of workers per household", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_111EA,S0502PR_C04_111M,S0502PR_C04_111MA"}, "S2702PR_C01_025E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino (of any race)", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_025EA,S2702PR_C01_025M,S2702PR_C01_025MA"}, "S0506_C03_035E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Foreign-born population!!Average family size", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_035EA,S0506_C03_035M,S0506_C03_035MA"}, "S0901_C03_014E": {"label": "Estimate!!In male householder, no spouse present, family household!!Children under 18 years in households!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C03_014EA,S0901_C03_014M,S0901_C03_014MA"}, "S2301_C03_027E": {"label": "Estimate!!Employment/Population Ratio!!Population 20 to 64 years!!SEX!!Female!!With own children under 18 years!!With own children 6 to 17 years only", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C03_027EA,S2301_C03_027M,S2301_C03_027MA"}, "S0901_C03_015E": {"label": "Estimate!!In male householder, no spouse present, family household!!Children under 18 years in households!!RELATIONSHIP TO HOUSEHOLDER!!Own child (biological, step or adopted)", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C03_015EA,S0901_C03_015M,S0901_C03_015MA"}, "S2301_C03_026E": {"label": "Estimate!!Employment/Population Ratio!!Population 20 to 64 years!!SEX!!Female!!With own children under 18 years!!With own children under 6 years and 6 to 17 years", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C03_026EA,S2301_C03_026M,S2301_C03_026MA"}, "S0901_C03_012E": {"label": "Estimate!!In male householder, no spouse present, family household!!Children under 18 years in households!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C03_012EA,S0901_C03_012M,S0901_C03_012MA"}, "S2504_C04_010E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!YEAR STRUCTURE BUILT!!2010 to 2019", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C04_010EA,S2504_C04_010M,S2504_C04_010MA"}, "S2301_C03_029E": {"label": "Estimate!!Employment/Population Ratio!!Population 20 to 64 years!!POVERTY STATUS IN THE PAST 12 MONTHS!!At or above the poverty level", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C03_029EA,S2301_C03_029M,S2301_C03_029MA"}, "S0901_C03_013E": {"label": "Estimate!!In male householder, no spouse present, family household!!Children under 18 years in households!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C03_013EA,S0901_C03_013M,S0901_C03_013MA"}, "S2504_C04_011E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!YEAR STRUCTURE BUILT!!2000 to 2009", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C04_011EA,S2504_C04_011M,S2504_C04_011MA"}, "S2301_C03_028E": {"label": "Estimate!!Employment/Population Ratio!!Population 20 to 64 years!!POVERTY STATUS IN THE PAST 12 MONTHS!!Below poverty level", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C03_028EA,S2301_C03_028M,S2301_C03_028MA"}, "S0506_C03_039E": {"label": "Estimate!!Foreign-born; Born in Mexico!!MARITAL STATUS!!Population 15 years and over!!Divorced or separated", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_039EA,S0506_C03_039M,S0506_C03_039MA"}, "S0804_C05_013E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C05_013EA,S0804_C05_013M,S0804_C05_013MA"}, "S2702PR_C01_020E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native alone", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_020EA,S2702PR_C01_020M,S2702PR_C01_020MA"}, "S0503_C03_018E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Foreign-born population!!SEX AND AGE!!65 to 74 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_018EA,S0503_C03_018M,S0503_C03_018MA"}, "S2301_C03_023E": {"label": "Estimate!!Employment/Population Ratio!!Population 20 to 64 years!!SEX!!Female", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C03_023EA,S2301_C03_023M,S2301_C03_023MA"}, "S0505_C06_140E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Owner-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C06_140EA,S0505_C06_140M,S0505_C06_140MA"}, "S0901_C03_010E": {"label": "Estimate!!In male householder, no spouse present, family household!!Children under 18 years in households!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C03_010EA,S0901_C03_010M,S0901_C03_010MA"}, "S0505_C06_141E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_141EA,S0505_C06_141M,S0505_C06_141MA"}, "S0804_C05_012E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C05_012EA,S0804_C05_012M,S0804_C05_012MA"}, "S0503_C03_019E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Foreign-born population!!SEX AND AGE!!75 to 84 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_019EA,S0503_C03_019M,S0503_C03_019MA"}, "S2301_C03_022E": {"label": "Estimate!!Employment/Population Ratio!!Population 20 to 64 years!!SEX!!Male", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C03_022EA,S2301_C03_022M,S2301_C03_022MA"}, "S0901_C03_011E": {"label": "Estimate!!In male householder, no spouse present, family household!!Children under 18 years in households!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C03_011EA,S0901_C03_011M,S0901_C03_011MA"}, "S0804_C05_011E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C05_011EA,S0804_C05_011M,S0804_C05_011MA"}, "S2301_C03_025E": {"label": "Estimate!!Employment/Population Ratio!!Population 20 to 64 years!!SEX!!Female!!With own children under 18 years!!With own children under 6 years only", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C03_025EA,S2301_C03_025M,S2301_C03_025MA"}, "S0804_C05_010E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!SEX!!Female", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C05_010EA,S0804_C05_010M,S0804_C05_010MA"}, "S2301_C03_024E": {"label": "Estimate!!Employment/Population Ratio!!Population 20 to 64 years!!SEX!!Female!!With own children under 18 years", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C03_024EA,S2301_C03_024M,S2301_C03_024MA"}, "S2901_C01_009E": {"label": "Estimate!!Total!!Citizens 18 years and over!!RACE AND HISPANIC ORIGIN!!Black or African American alone", "concept": "Citizen, Voting-Age Population by Selected Characteristics", "predicateType": "int", "group": "S2901", "limit": 0, "attributes": "S2901_C01_009EA,S2901_C01_009M,S2901_C01_009MA"}, "S2601A_C02_009E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!45 to 54 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_009EA,S2601A_C02_009M,S2601A_C02_009MA"}, "S2507_C01_050E": {"label": "Estimate!!Owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$75,000 or more!!Less than 20 percent", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "int", "group": "S2507", "limit": 0, "attributes": "S2507_C01_050EA,S2507_C01_050M,S2507_C01_050MA"}, "S0503_C03_002E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_002EA,S0503_C03_002M,S0503_C03_002MA"}, "S1702_C02_006E": {"label": "Estimate!!Percent below poverty level!!All families!!Families!!RACE AND HISPANIC OR LATINO ORIGIN!!Families with a householder who is--!!White alone", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C02_006EA,S1702_C02_006M,S1702_C02_006MA"}, "S2504_C04_016E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!ROOMS!!1 room", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C04_016EA,S2504_C04_016M,S2504_C04_016MA"}, "S0901_C03_030E": {"label": "Estimate!!In male householder, no spouse present, family household!!Children under 18 years in households", "concept": "Children Characteristics", "predicateType": "int", "group": "S0901", "limit": 0, "attributes": "S0901_C03_030EA,S0901_C03_030M,S0901_C03_030MA"}, "S2901_C01_008E": {"label": "Estimate!!Total!!Citizens 18 years and over!!RACE AND HISPANIC ORIGIN!!White alone", "concept": "Citizen, Voting-Age Population by Selected Characteristics", "predicateType": "int", "group": "S2901", "limit": 0, "attributes": "S2901_C01_008EA,S2901_C01_008M,S2901_C01_008MA"}, "S2601A_C02_008E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!35 to 44 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_008EA,S2601A_C02_008M,S2601A_C02_008MA"}, "S2507_C01_051E": {"label": "Estimate!!Owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$75,000 or more!!20 to 29 percent", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "int", "group": "S2507", "limit": 0, "attributes": "S2507_C01_051EA,S2507_C01_051M,S2507_C01_051MA"}, "S0501_C04_099E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income!!Mean retirement income (dollars)", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C04_099EA,S0501_C04_099M,S0501_C04_099MA"}, "S1702_C02_007E": {"label": "Estimate!!Percent below poverty level!!All families!!Families!!RACE AND HISPANIC OR LATINO ORIGIN!!Families with a householder who is--!!Black or African American alone", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C02_007EA,S1702_C02_007M,S1702_C02_007MA"}, "S2504_C04_017E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!ROOMS!!2 or 3 rooms", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C04_017EA,S2504_C04_017M,S2504_C04_017MA"}, "S0503_C03_003E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen!!Entered 2010 or later", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_003EA,S0503_C03_003M,S0503_C03_003MA"}, "S0901_C03_031E": {"label": "Estimate!!In male householder, no spouse present, family household!!Children under 18 years in households!!PUBLIC ASSISTANCE IN THE PAST 12 MONTHS!!Children living in households with Supplemental Security Income (SSI), cash public assistance income, or Food Stamp/SNAP benefits", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C03_031EA,S0901_C03_031M,S0901_C03_031MA"}, "S2901_C01_007E": {"label": "Estimate!!Total!!Citizens 18 years and over!!SEX!!Female", "concept": "Citizen, Voting-Age Population by Selected Characteristics", "predicateType": "int", "group": "S2901", "limit": 0, "attributes": "S2901_C01_007EA,S2901_C01_007M,S2901_C01_007MA"}, "S1702_C02_008E": {"label": "Estimate!!Percent below poverty level!!All families!!Families!!RACE AND HISPANIC OR LATINO ORIGIN!!Families with a householder who is--!!American Indian and Alaska Native alone", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C02_008EA,S1702_C02_008M,S1702_C02_008MA"}, "S2601A_C02_007E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!25 to 34 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_007EA,S2601A_C02_007M,S2601A_C02_007MA"}, "S2504_C04_018E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!ROOMS!!4 or 5 rooms", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C04_018EA,S2504_C04_018M,S2504_C04_018MA"}, "S0503_C03_004E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen!!Entered 2000 to 2009", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_004EA,S0503_C03_004M,S0503_C03_004MA"}, "S2901_C01_006E": {"label": "Estimate!!Total!!Citizens 18 years and over!!SEX!!Male", "concept": "Citizen, Voting-Age Population by Selected Characteristics", "predicateType": "int", "group": "S2901", "limit": 0, "attributes": "S2901_C01_006EA,S2901_C01_006M,S2901_C01_006MA"}, "S1702_C02_009E": {"label": "Estimate!!Percent below poverty level!!All families!!Families!!RACE AND HISPANIC OR LATINO ORIGIN!!Families with a householder who is--!!Asian alone", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C02_009EA,S1702_C02_009M,S1702_C02_009MA"}, "S2601A_C02_006E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!18 to 24 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_006EA,S2601A_C02_006M,S2601A_C02_006MA"}, "S2601A_C02_005E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!15 to 17 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_005EA,S2601A_C02_005M,S2601A_C02_005MA"}, "S2504_C04_019E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!ROOMS!!6 or 7 rooms", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C04_019EA,S2504_C04_019M,S2504_C04_019MA"}, "S0503_C03_005E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen!!Entered before 2000", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_005EA,S0503_C03_005M,S0503_C03_005MA"}, "S0501_C04_096E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_096EA,S0501_C04_096M,S0501_C04_096MA"}, "S2507_C01_054E": {"label": "Estimate!!Owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!REAL ESTATE TAXES!!Less than $800", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "int", "group": "S2507", "limit": 0, "attributes": "S2507_C01_054EA,S2507_C01_054M,S2507_C01_054MA"}, "S2504_C04_012E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!YEAR STRUCTURE BUILT!!1980 to 1999", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C04_012EA,S2504_C04_012M,S2504_C04_012MA"}, "S1251_C05_003E": {"label": "Estimate!!Female!!Divorced in the last 12 months!!EDUCATIONAL ATTAINMENT!!Population 18 years and over", "concept": "Characteristics of People With a Marital Event in the Last 12 Months", "predicateType": "int", "group": "S1251", "limit": 0, "attributes": "S1251_C05_003EA,S1251_C05_003M,S1251_C05_003MA"}, "S1702_C02_002E": {"label": "Estimate!!Percent below poverty level!!All families!!Families!!With related children of householder under 18 years", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C02_002EA,S1702_C02_002M,S1702_C02_002MA"}, "S2601A_C02_004E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!Under 15 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_004EA,S2601A_C02_004M,S2601A_C02_004MA"}, "S0103PR_C01_002E": {"label": "Estimate!!Total!!Total population!!SEX AND AGE!!Male", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_002EA,S0103PR_C01_002M,S0103PR_C01_002MA"}, "S1251_C05_004E": {"label": "Estimate!!Female!!Divorced in the last 12 months!!EDUCATIONAL ATTAINMENT!!Population 18 years and over!!Bachelor's degree or higher", "concept": "Characteristics of People With a Marital Event in the Last 12 Months", "predicateType": "float", "group": "S1251", "limit": 0, "attributes": "S1251_C05_004EA,S1251_C05_004M,S1251_C05_004MA"}, "S0501_C04_095E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income!!Mean Supplemental Security Income (dollars)", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C04_095EA,S0501_C04_095M,S0501_C04_095MA"}, "S2507_C01_055E": {"label": "Estimate!!Owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!REAL ESTATE TAXES!!$800 to $1,499", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "int", "group": "S2507", "limit": 0, "attributes": "S2507_C01_055EA,S2507_C01_055M,S2507_C01_055MA"}, "S2504_C04_013E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!YEAR STRUCTURE BUILT!!1960 to 1979", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C04_013EA,S2504_C04_013M,S2504_C04_013MA"}, "S0103PR_C01_003E": {"label": "Estimate!!Total!!Total population!!SEX AND AGE!!Female", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_003EA,S0103PR_C01_003M,S0103PR_C01_003MA"}, "S1702_C02_003E": {"label": "Estimate!!Percent below poverty level!!All families!!Families!!With related children of householder under 18 years!!With related children of householder under 5 years", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C02_003EA,S1702_C02_003M,S1702_C02_003MA"}, "S2601A_C02_003E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!Female", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_003EA,S2601A_C02_003M,S2601A_C02_003MA"}, "S2507_C01_052E": {"label": "Estimate!!Owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$75,000 or more!!30 percent or more", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "int", "group": "S2507", "limit": 0, "attributes": "S2507_C01_052EA,S2507_C01_052M,S2507_C01_052MA"}, "S0501_C04_098E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With retirement income", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_098EA,S0501_C04_098M,S0501_C04_098MA"}, "S1702_C02_004E": {"label": "Estimate!!Percent below poverty level!!All families!!Families!!With related children of householder under 18 years!!With related children of householder under 5 years and 5 to 17 years", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C02_004EA,S1702_C02_004M,S1702_C02_004MA"}, "S1251_C05_001E": {"label": "Estimate!!Female!!Divorced in the last 12 months!!Population 15 years and over", "concept": "Characteristics of People With a Marital Event in the Last 12 Months", "predicateType": "int", "group": "S1251", "limit": 0, "attributes": "S1251_C05_001EA,S1251_C05_001M,S1251_C05_001MA"}, "S2504_C04_014E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!YEAR STRUCTURE BUILT!!1940 to 1959", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C04_014EA,S2504_C04_014M,S2504_C04_014MA"}, "S2601A_C02_002E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!Male", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_002EA,S2601A_C02_002M,S2601A_C02_002MA"}, "S0501_C04_097E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With cash public assistance income!!Mean cash public assistance income (dollars)", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C04_097EA,S0501_C04_097M,S0501_C04_097MA"}, "S2507_C01_053E": {"label": "Estimate!!Owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Zero or negative income", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "int", "group": "S2507", "limit": 0, "attributes": "S2507_C01_053EA,S2507_C01_053M,S2507_C01_053MA"}, "S0503_C03_001E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Foreign-born population", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C03_001EA,S0503_C03_001M,S0503_C03_001MA"}, "S1702_C02_005E": {"label": "Estimate!!Percent below poverty level!!All families!!Families!!With related children of householder under 18 years!!With related children of householder 5 to 17 years", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C02_005EA,S1702_C02_005M,S1702_C02_005MA"}, "S1251_C05_002E": {"label": "Estimate!!Female!!Divorced in the last 12 months!!Population 15 years and over!!AGE!!Median age", "concept": "Characteristics of People With a Marital Event in the Last 12 Months", "predicateType": "float", "group": "S1251", "limit": 0, "attributes": "S1251_C05_002EA,S1251_C05_002M,S1251_C05_002MA"}, "S2601A_C02_001E": {"label": "Estimate!!Total group quarters population!!Total population", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_001EA,S2601A_C02_001M,S2601A_C02_001MA"}, "S2504_C04_015E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!YEAR STRUCTURE BUILT!!1939 or earlier", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C04_015EA,S2504_C04_015M,S2504_C04_015MA"}, "S0103PR_C01_001E": {"label": "Estimate!!Total!!Total population", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "int", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_001EA,S0103PR_C01_001M,S0103PR_C01_001MA"}, "S0506_C03_050E": {"label": "Estimate!!Foreign-born; Born in Mexico!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_050EA,S0506_C03_050M,S0506_C03_050MA"}, "S1251_C05_007E": {"label": "Estimate!!Female!!Divorced in the last 12 months!!LABOR FORCE PARTICIPATION!!Population 16 years and over!!Not in labor force", "concept": "Characteristics of People With a Marital Event in the Last 12 Months", "predicateType": "float", "group": "S1251", "limit": 0, "attributes": "S1251_C05_007EA,S1251_C05_007M,S1251_C05_007MA"}, "S2507_C01_058E": {"label": "Estimate!!Owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!REAL ESTATE TAXES!!Median (dollars)", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "int", "group": "S2507", "limit": 0, "attributes": "S2507_C01_058EA,S2507_C01_058M,S2507_C01_058MA"}, "S0103PR_C01_006E": {"label": "Estimate!!Total!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_006EA,S0103PR_C01_006M,S0103PR_C01_006MA"}, "S2602_C05_029E": {"label": "Estimate!!College/university housing!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!Hispanic or Latino (of any race)", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C05_029EA,S2602_C05_029M,S2602_C05_029MA"}, "S2901_C01_001E": {"label": "Estimate!!Total!!Citizens 18 years and over", "concept": "Citizen, Voting-Age Population by Selected Characteristics", "predicateType": "int", "group": "S2901", "limit": 0, "attributes": "S2901_C01_001EA,S2901_C01_001M,S2901_C01_001MA"}, "S1251_C05_008E": {"label": "Estimate!!Female!!Divorced in the last 12 months!!POVERTY STATUS IN PAST 12 MONTHS!!Population for whom poverty status is determined", "concept": "Characteristics of People With a Marital Event in the Last 12 Months", "predicateType": "int", "group": "S1251", "limit": 0, "attributes": "S1251_C05_008EA,S1251_C05_008M,S1251_C05_008MA"}, "S0103PR_C01_007E": {"label": "Estimate!!Total!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_007EA,S0103PR_C01_007M,S0103PR_C01_007MA"}, "S2702PR_C01_019E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American alone", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_019EA,S2702PR_C01_019M,S2702PR_C01_019MA"}, "S2602_C05_028E": {"label": "Estimate!!College/university housing!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!Two or more races", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C05_028EA,S2602_C05_028M,S2602_C05_028MA"}, "S1251_C05_005E": {"label": "Estimate!!Female!!Divorced in the last 12 months!!LABOR FORCE PARTICIPATION!!Population 16 years and over", "concept": "Characteristics of People With a Marital Event in the Last 12 Months", "predicateType": "int", "group": "S1251", "limit": 0, "attributes": "S1251_C05_005EA,S1251_C05_005M,S1251_C05_005MA"}, "S2507_C01_056E": {"label": "Estimate!!Owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!REAL ESTATE TAXES!!$1,500 or more", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "int", "group": "S2507", "limit": 0, "attributes": "S2507_C01_056EA,S2507_C01_056M,S2507_C01_056MA"}, "S0103PR_C01_004E": {"label": "Estimate!!Total!!Total population!!SEX AND AGE!!Median age (years)", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_004EA,S0103PR_C01_004M,S0103PR_C01_004MA"}, "S2702PR_C01_018E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White alone", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_018EA,S2702PR_C01_018M,S2702PR_C01_018MA"}, "S2602_C05_027E": {"label": "Estimate!!College/university housing!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Some other race", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C05_027EA,S2602_C05_027M,S2602_C05_027MA"}, "S1251_C05_006E": {"label": "Estimate!!Female!!Divorced in the last 12 months!!LABOR FORCE PARTICIPATION!!Population 16 years and over!!In labor force", "concept": "Characteristics of People With a Marital Event in the Last 12 Months", "predicateType": "float", "group": "S1251", "limit": 0, "attributes": "S1251_C05_006EA,S1251_C05_006M,S1251_C05_006MA"}, "S2507_C01_057E": {"label": "Estimate!!Owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!REAL ESTATE TAXES!!No real estate taxes paid", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "int", "group": "S2507", "limit": 0, "attributes": "S2507_C01_057EA,S2507_C01_057M,S2507_C01_057MA"}, "S1702_C02_001E": {"label": "Estimate!!Percent below poverty level!!All families!!Families", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C02_001EA,S1702_C02_001M,S1702_C02_001MA"}, "S0103PR_C01_005E": {"label": "Estimate!!Total!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_005EA,S0103PR_C01_005M,S0103PR_C01_005MA"}, "S2702PR_C01_017E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_017EA,S2702PR_C01_017M,S2702PR_C01_017MA"}, "S2602_C05_026E": {"label": "Estimate!!College/university housing!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C05_026EA,S2602_C05_026M,S2602_C05_026MA"}, "S2901_C01_005E": {"label": "Estimate!!Total!!Citizens 18 years and over!!AGE!!65 years and over", "concept": "Citizen, Voting-Age Population by Selected Characteristics", "predicateType": "int", "group": "S2901", "limit": 0, "attributes": "S2901_C01_005EA,S2901_C01_005M,S2901_C01_005MA"}, "S0506_C03_054E": {"label": "Estimate!!Foreign-born; Born in Mexico!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_054EA,S0506_C03_054M,S0506_C03_054MA"}, "S0506_C03_053E": {"label": "Estimate!!Foreign-born; Born in Mexico!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!English only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_053EA,S0506_C03_053M,S0506_C03_053MA"}, "S2901_C01_004E": {"label": "Estimate!!Total!!Citizens 18 years and over!!AGE!!45 to 64 years", "concept": "Citizen, Voting-Age Population by Selected Characteristics", "predicateType": "int", "group": "S2901", "limit": 0, "attributes": "S2901_C01_004EA,S2901_C01_004M,S2901_C01_004MA"}, "S0506_C03_052E": {"label": "Estimate!!Foreign-born; Born in Mexico!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C03_052EA,S0506_C03_052M,S0506_C03_052MA"}, "S1251_C05_009E": {"label": "Estimate!!Female!!Divorced in the last 12 months!!POVERTY STATUS IN PAST 12 MONTHS!!Population for whom poverty status is determined!!Below poverty", "concept": "Characteristics of People With a Marital Event in the Last 12 Months", "predicateType": "float", "group": "S1251", "limit": 0, "attributes": "S1251_C05_009EA,S1251_C05_009M,S1251_C05_009MA"}, "S0103PR_C01_008E": {"label": "Estimate!!Total!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_008EA,S0103PR_C01_008M,S0103PR_C01_008MA"}, "S2901_C01_003E": {"label": "Estimate!!Total!!Citizens 18 years and over!!AGE!!30 to 44 years", "concept": "Citizen, Voting-Age Population by Selected Characteristics", "predicateType": "int", "group": "S2901", "limit": 0, "attributes": "S2901_C01_003EA,S2901_C01_003M,S2901_C01_003MA"}, "S0506_C03_051E": {"label": "Estimate!!Foreign-born; Born in Mexico!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Graduate or professional degree", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_051EA,S0506_C03_051M,S0506_C03_051MA"}, "S0103PR_C01_009E": {"label": "Estimate!!Total!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Population 65 Years and Over in Puerto Rico", "predicateType": "float", "group": "S0103PR", "limit": 0, "attributes": "S0103PR_C01_009EA,S0103PR_C01_009M,S0103PR_C01_009MA"}, "S2901_C01_002E": {"label": "Estimate!!Total!!Citizens 18 years and over!!AGE!!18 to 29 years", "concept": "Citizen, Voting-Age Population by Selected Characteristics", "predicateType": "int", "group": "S2901", "limit": 0, "attributes": "S2901_C01_002EA,S2901_C01_002M,S2901_C01_002MA"}, "S2602_C05_033E": {"label": "Estimate!!College/university housing!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C05_033EA,S2602_C05_033M,S2602_C05_033MA"}, "S2702PR_C01_012E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!AGE!!65 years and older!!65 to 74 years", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_012EA,S2702PR_C01_012M,S2702PR_C01_012MA"}, "S2301_C03_031E": {"label": "Estimate!!Employment/Population Ratio!!EDUCATIONAL ATTAINMENT!!Population 25 to 64 years", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C03_031EA,S2301_C03_031M,S2301_C03_031MA"}, "S0506_C03_046E": {"label": "Estimate!!Foreign-born; Born in Mexico!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C03_046EA,S0506_C03_046M,S0506_C03_046MA"}, "S2602_C05_032E": {"label": "Estimate!!College/university housing!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C05_032EA,S2602_C05_032M,S2602_C05_032MA"}, "S2702PR_C01_011E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!AGE!!65 years and older", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_011EA,S2702PR_C01_011M,S2702PR_C01_011MA"}, "S2301_C03_030E": {"label": "Estimate!!Employment/Population Ratio!!Population 20 to 64 years!!DISABILITY STATUS!!With any disability", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C03_030EA,S2301_C03_030M,S2301_C03_030MA"}, "S0506_C03_045E": {"label": "Estimate!!Foreign-born; Born in Mexico!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!College or graduate school", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_045EA,S0506_C03_045M,S0506_C03_045MA"}, "S2602_C05_031E": {"label": "Estimate!!College/university housing!!MARITAL STATUS!!Population 15 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C05_031EA,S2602_C05_031M,S2602_C05_031MA"}, "S2702PR_C01_010E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!AGE!!19 to 64 years!!55 to 64 years", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_010EA,S2702PR_C01_010M,S2702PR_C01_010MA"}, "S2301_C03_033E": {"label": "Estimate!!Employment/Population Ratio!!EDUCATIONAL ATTAINMENT!!Population 25 to 64 years!!High school graduate (includes equivalency)", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C03_033EA,S2301_C03_033M,S2301_C03_033MA"}, "S0506_C03_044E": {"label": "Estimate!!Foreign-born; Born in Mexico!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!High school (grades 9-12)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_044EA,S0506_C03_044M,S0506_C03_044MA"}, "S2602_C05_030E": {"label": "Estimate!!College/university housing!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!White alone, Not Hispanic or Latino", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C05_030EA,S2602_C05_030M,S2602_C05_030MA"}, "S0506_C03_043E": {"label": "Estimate!!Foreign-born; Born in Mexico!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Elementary school (grades K-8)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_043EA,S0506_C03_043M,S0506_C03_043MA"}, "S2301_C03_032E": {"label": "Estimate!!Employment/Population Ratio!!EDUCATIONAL ATTAINMENT!!Population 25 to 64 years!!Less than high school graduate", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C03_032EA,S2301_C03_032M,S2301_C03_032MA"}, "S2702PR_C01_016E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!SEX!!Female", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_016EA,S2702PR_C01_016M,S2702PR_C01_016MA"}, "S2602_C05_037E": {"label": "Estimate!!College/university housing!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C05_037EA,S2602_C05_037M,S2602_C05_037MA"}, "S2702PR_C01_015E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!SEX!!Male", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_015EA,S2702PR_C01_015M,S2702PR_C01_015MA"}, "S2602_C05_036E": {"label": "Estimate!!College/university housing!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C05_036EA,S2602_C05_036M,S2602_C05_036MA"}, "S0506_C03_049E": {"label": "Estimate!!Foreign-born; Born in Mexico!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college or associate's degree", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_049EA,S0506_C03_049M,S0506_C03_049MA"}, "S2602_C05_035E": {"label": "Estimate!!College/university housing!!MARITAL STATUS!!Population 15 years and over!!Separated", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C05_035EA,S2602_C05_035M,S2602_C05_035MA"}, "S0901_C03_028E": {"label": "Estimate!!In male householder, no spouse present, family household!!SCHOOL ENROLLMENT!!Children 3 to 17 years in households!!Not enrolled in school", "concept": "Children Characteristics", "predicateType": "int", "group": "S0901", "limit": 0, "attributes": "S0901_C03_028EA,S0901_C03_028M,S0901_C03_028MA"}, "S0502PR_C04_100E": {"label": "Estimate!!Foreign-born; Entered before 2000!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings!!Mean earnings (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C04_100EA,S0502PR_C04_100M,S0502PR_C04_100MA"}, "S2702PR_C01_014E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!AGE!!Median age (years)", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_014EA,S2702PR_C01_014M,S2702PR_C01_014MA"}, "S0506_C03_048E": {"label": "Estimate!!Foreign-born; Born in Mexico!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate (includes equivalency)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_048EA,S0506_C03_048M,S0506_C03_048MA"}, "S2602_C05_034E": {"label": "Estimate!!College/university housing!!MARITAL STATUS!!Population 15 years and over!!Divorced", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C05_034EA,S2602_C05_034M,S2602_C05_034MA"}, "S0901_C03_029E": {"label": "Estimate!!In male householder, no spouse present, family household!!Special Subject!!Median income (dollars)", "concept": "Children Characteristics", "predicateType": "int", "group": "S0901", "limit": 0, "attributes": "S0901_C03_029EA,S0901_C03_029M,S0901_C03_029MA"}, "S2702PR_C01_013E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!AGE!!65 years and older!!75 years and older", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_013EA,S2702PR_C01_013M,S2702PR_C01_013MA"}, "S0506_C03_047E": {"label": "Estimate!!Foreign-born; Born in Mexico!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than high school graduate", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_047EA,S0506_C03_047M,S0506_C03_047MA"}, "S0901_C03_026E": {"label": "Estimate!!In male householder, no spouse present, family household!!SCHOOL ENROLLMENT!!Children 3 to 17 years in households!!Enrolled in school!!Public", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C03_026EA,S0901_C03_026M,S0901_C03_026MA"}, "S0501_C04_092E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_092EA,S0501_C04_092M,S0501_C04_092MA"}, "S2504_C04_020E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!ROOMS!!8 or more rooms", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C04_020EA,S2504_C04_020M,S2504_C04_020MA"}, "S0901_C03_027E": {"label": "Estimate!!In male householder, no spouse present, family household!!SCHOOL ENROLLMENT!!Children 3 to 17 years in households!!Enrolled in school!!Private", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C03_027EA,S0901_C03_027M,S0901_C03_027MA"}, "S0501_C04_091E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings!!Mean earnings (dollars)", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C04_091EA,S0501_C04_091M,S0501_C04_091MA"}, "S2504_C04_021E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!BEDROOMS!!No bedroom", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C04_021EA,S2504_C04_021M,S2504_C04_021MA"}, "S0901_C03_024E": {"label": "Estimate!!In male householder, no spouse present, family household!!SCHOOL ENROLLMENT!!Children 3 to 17 years in households", "concept": "Children Characteristics", "predicateType": "int", "group": "S0901", "limit": 0, "attributes": "S0901_C03_024EA,S0901_C03_024M,S0901_C03_024MA"}, "S0501_C04_094E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Supplemental Security Income", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_094EA,S0501_C04_094M,S0501_C04_094MA"}, "S2504_C04_022E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!BEDROOMS!!1 bedroom", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C04_022EA,S2504_C04_022M,S2504_C04_022MA"}, "S0901_C03_025E": {"label": "Estimate!!In male householder, no spouse present, family household!!SCHOOL ENROLLMENT!!Children 3 to 17 years in households!!Enrolled in school", "concept": "Children Characteristics", "predicateType": "int", "group": "S0901", "limit": 0, "attributes": "S0901_C03_025EA,S0901_C03_025M,S0901_C03_025MA"}, "S0501_C04_093E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With Social Security income!!Mean Social Security income (dollars)", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C04_093EA,S0501_C04_093M,S0501_C04_093MA"}, "S2504_C04_023E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!BEDROOMS!!2 or 3 bedrooms", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C04_023EA,S2504_C04_023M,S2504_C04_023MA"}, "S0804_C05_001E": {"label": "Estimate!!Worked from home!!Workers 16 years and over", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "int", "group": "S0804", "limit": 0, "attributes": "S0804_C05_001EA,S0804_C05_001M,S0804_C05_001MA"}, "S0503_C03_006E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_006EA,S0503_C03_006M,S0503_C03_006MA"}, "S2301_C03_035E": {"label": "Estimate!!Employment/Population Ratio!!EDUCATIONAL ATTAINMENT!!Population 25 to 64 years!!Bachelor's degree or higher", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C03_035EA,S2301_C03_035M,S2301_C03_035MA"}, "S0901_C03_022E": {"label": "Estimate!!In male householder, no spouse present, family household!!DISABILITY STATUS!!Civilian children under 18 years in households", "concept": "Children Characteristics", "predicateType": "int", "group": "S0901", "limit": 0, "attributes": "S0901_C03_022EA,S0901_C03_022M,S0901_C03_022MA"}, "S0901_C03_023E": {"label": "Estimate!!In male householder, no spouse present, family household!!DISABILITY STATUS!!Civilian children under 18 years in households!!With any disability", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C03_023EA,S0901_C03_023M,S0901_C03_023MA"}, "S0503_C03_007E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen!!Entered 2010 or later", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_007EA,S0503_C03_007M,S0503_C03_007MA"}, "S2301_C03_034E": {"label": "Estimate!!Employment/Population Ratio!!EDUCATIONAL ATTAINMENT!!Population 25 to 64 years!!Some college or associate's degree", "concept": "Employment Status", "predicateType": "float", "group": "S2301", "limit": 0, "attributes": "S2301_C03_034EA,S2301_C03_034M,S2301_C03_034MA"}, "S0501_C04_090E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_090EA,S0501_C04_090M,S0501_C04_090MA"}, "S0503_C03_008E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen!!Entered 2000 to 2009", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_008EA,S0503_C03_008M,S0503_C03_008MA"}, "S0901_C03_020E": {"label": "Estimate!!In male householder, no spouse present, family household!!Children under 18 years in households!!NATIVITY!!Foreign born", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C03_020EA,S0901_C03_020M,S0901_C03_020MA"}, "S0503_C03_009E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen!!Entered before 2000", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_009EA,S0503_C03_009M,S0503_C03_009MA"}, "S0901_C03_021E": {"label": "Estimate!!In male householder, no spouse present, family household!!Children under 18 years in households!!PRESENCE OF OTHER ADULTS!!Unmarried partner of householder present", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C03_021EA,S0901_C03_021M,S0901_C03_021MA"}, "S1301_C02_002E": {"label": "Estimate!!Number!!Women with births in the past 12 months!!Women 15 to 50 years!!15 to 19 years", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C02_002EA,S1301_C02_002M,S1301_C02_002MA"}, "S0502PR_C02_079E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Civilian employed population 16 years and over!!INDUSTRY!!Retail trade", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_079EA,S0502PR_C02_079M,S0502PR_C02_079MA"}, "S2504_C04_028E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!VEHICLES AVAILABLE!!1 vehicle available", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C04_028EA,S2504_C04_028M,S2504_C04_028MA"}, "S1301_C02_001E": {"label": "Estimate!!Number!!Women with births in the past 12 months!!Women 15 to 50 years", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C02_001EA,S1301_C02_001M,S1301_C02_001MA"}, "S0502PR_C02_078E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Civilian employed population 16 years and over!!INDUSTRY!!Wholesale trade", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_078EA,S0502PR_C02_078M,S0502PR_C02_078MA"}, "S2504_C04_029E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!VEHICLES AVAILABLE!!2 vehicles available", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C04_029EA,S2504_C04_029M,S2504_C04_029MA"}, "S2601A_C02_019E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!65 years and over!!Female", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_019EA,S2601A_C02_019M,S2601A_C02_019MA"}, "S2601A_C02_018E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!65 years and over!!Male", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_018EA,S2601A_C02_018M,S2601A_C02_018MA"}, "S1301_C02_006E": {"label": "Estimate!!Number!!Women with births in the past 12 months!!Women 15 to 50 years!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C02_006EA,S1301_C02_006M,S1301_C02_006MA"}, "S0502PR_C02_075E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Civilian employed population 16 years and over!!INDUSTRY!!Agriculture, forestry, fishing and hunting, and mining", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_075EA,S0502PR_C02_075M,S0502PR_C02_075MA"}, "S2601A_C02_017E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!65 years and over", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_017EA,S2601A_C02_017M,S2601A_C02_017MA"}, "S1702_C02_038E": {"label": "Estimate!!Percent below poverty level!!All families!!Families!!NUMBER OF WORKERS IN FAMILY!!2 workers", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C02_038EA,S1702_C02_038M,S1702_C02_038MA"}, "S2504_C04_024E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!BEDROOMS!!4 or more bedrooms", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C04_024EA,S2504_C04_024M,S2504_C04_024MA"}, "S2601A_C02_016E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!Under 18 years!!Female", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_016EA,S2601A_C02_016M,S2601A_C02_016MA"}, "S1301_C02_005E": {"label": "Estimate!!Number!!Women with births in the past 12 months!!Women 15 to 50 years!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C02_005EA,S1301_C02_005M,S1301_C02_005MA"}, "S0502PR_C02_074E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Civilian employed population 16 years and over!!OCCUPATION!!Production, transportation, and material moving occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_074EA,S0502PR_C02_074M,S0502PR_C02_074MA"}, "S1702_C02_039E": {"label": "Estimate!!Percent below poverty level!!All families!!Families!!NUMBER OF WORKERS IN FAMILY!!3 or more workers", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C02_039EA,S1702_C02_039M,S1702_C02_039MA"}, "S2504_C04_025E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!COMPLETE FACILITIES!!With complete plumbing facilities", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C04_025EA,S2504_C04_025M,S2504_C04_025MA"}, "S2601A_C02_015E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!Under 18 years!!Male", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_015EA,S2601A_C02_015M,S2601A_C02_015MA"}, "S1301_C02_004E": {"label": "Estimate!!Number!!Women with births in the past 12 months!!Women 15 to 50 years!!35 to 50 years", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C02_004EA,S1301_C02_004M,S1301_C02_004MA"}, "S0502PR_C02_077E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Civilian employed population 16 years and over!!INDUSTRY!!Manufacturing", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_077EA,S0502PR_C02_077M,S0502PR_C02_077MA"}, "S2504_C04_026E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!COMPLETE FACILITIES!!With complete kitchen facilities", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C04_026EA,S2504_C04_026M,S2504_C04_026MA"}, "S2601A_C02_014E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!Under 18 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_014EA,S2601A_C02_014M,S2601A_C02_014MA"}, "S1301_C02_003E": {"label": "Estimate!!Number!!Women with births in the past 12 months!!Women 15 to 50 years!!20 to 34 years", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C02_003EA,S1301_C02_003M,S1301_C02_003MA"}, "S0502PR_C02_076E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Civilian employed population 16 years and over!!INDUSTRY!!Construction", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_076EA,S0502PR_C02_076M,S0502PR_C02_076MA"}, "S2504_C04_027E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!VEHICLES AVAILABLE!!No vehicle available", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C04_027EA,S2504_C04_027M,S2504_C04_027MA"}, "S2601A_C02_013E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!85 years and over", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_013EA,S2601A_C02_013M,S2601A_C02_013MA"}, "S0502PR_C02_071E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Civilian employed population 16 years and over!!OCCUPATION!!Service occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_071EA,S0502PR_C02_071M,S0502PR_C02_071MA"}, "S0505_C06_128E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Occupied housing units!!HOUSING TENURE!!Average household size of renter-occupied unit", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_128EA,S0505_C06_128M,S0505_C06_128MA"}, "S2507_C01_022E": {"label": "Estimate!!Owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!RATIO OF VALUE TO HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!3.0 to 3.9", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "int", "group": "S2507", "limit": 0, "attributes": "S2507_C01_022EA,S2507_C01_022M,S2507_C01_022MA"}, "S2702PR_C01_008E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!AGE!!19 to 64 years!!35 to 44 years", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_008EA,S2702PR_C01_008M,S2702PR_C01_008MA"}, "S2601A_C02_012E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!75 to 84 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_012EA,S2601A_C02_012M,S2601A_C02_012MA"}, "S2412_C04_008E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Full-time, year-round civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Computer, engineering, and science occupations:!!Architecture and engineering occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2412", "limit": 0, "attributes": "S2412_C04_008EA,S2412_C04_008M,S2412_C04_008MA"}, "S1702_C02_034E": {"label": "Estimate!!Percent below poverty level!!All families!!Families!!NUMBER OF PEOPLE IN FAMILY!!5 or 6 people", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C02_034EA,S1702_C02_034M,S1702_C02_034MA"}, "S0502PR_C02_070E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Civilian employed population 16 years and over!!OCCUPATION!!Management, business, science, and arts occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_070EA,S0502PR_C02_070M,S0502PR_C02_070MA"}, "S0505_C06_129E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Occupied housing units!!ROOMS!!1 room", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_129EA,S0505_C06_129M,S0505_C06_129MA"}, "S2507_C01_023E": {"label": "Estimate!!Owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!RATIO OF VALUE TO HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!4.0 or more", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "int", "group": "S2507", "limit": 0, "attributes": "S2507_C01_023EA,S2507_C01_023M,S2507_C01_023MA"}, "S2601A_C02_011E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!65 to 74 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_011EA,S2601A_C02_011M,S2601A_C02_011MA"}, "S2412_C04_007E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Full-time, year-round civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Computer, engineering, and science occupations:!!Computer and mathematical occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2412", "limit": 0, "attributes": "S2412_C04_007EA,S2412_C04_007M,S2412_C04_007MA"}, "S1702_C02_035E": {"label": "Estimate!!Percent below poverty level!!All families!!Families!!NUMBER OF PEOPLE IN FAMILY!!7 or more people", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C02_035EA,S1702_C02_035M,S1702_C02_035MA"}, "S2702PR_C01_007E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!AGE!!19 to 64 years!!26 to 34 years", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_007EA,S2702PR_C01_007M,S2702PR_C01_007MA"}, "S1301_C02_009E": {"label": "Estimate!!Number!!Women with births in the past 12 months!!Women 15 to 50 years!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C02_009EA,S1301_C02_009M,S1301_C02_009MA"}, "S1301_C02_008E": {"label": "Estimate!!Number!!Women with births in the past 12 months!!Women 15 to 50 years!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C02_008EA,S1301_C02_008M,S1301_C02_008MA"}, "S0505_C06_126E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Occupied housing units!!HOUSING TENURE!!Renter-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_126EA,S0505_C06_126M,S0505_C06_126MA"}, "S2507_C01_020E": {"label": "Estimate!!Owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!RATIO OF VALUE TO HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 2.0", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "int", "group": "S2507", "limit": 0, "attributes": "S2507_C01_020EA,S2507_C01_020M,S2507_C01_020MA"}, "S0502PR_C02_073E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Civilian employed population 16 years and over!!OCCUPATION!!Natural resources, construction, and maintenance occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_073EA,S0502PR_C02_073M,S0502PR_C02_073MA"}, "S2601A_C02_010E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!55 to 64 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_010EA,S2601A_C02_010M,S2601A_C02_010MA"}, "S1702_C02_036E": {"label": "Estimate!!Percent below poverty level!!All families!!Families!!NUMBER OF WORKERS IN FAMILY!!No workers", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C02_036EA,S1702_C02_036M,S1702_C02_036MA"}, "S2702PR_C01_006E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!AGE!!19 to 64 years!!19 to 25 years", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_006EA,S2702PR_C01_006M,S2702PR_C01_006MA"}, "S2602_C05_039E": {"label": "Estimate!!College/university housing!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!College or graduate school", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C05_039EA,S2602_C05_039M,S2602_C05_039MA"}, "S1301_C02_007E": {"label": "Estimate!!Number!!Women with births in the past 12 months!!Women 15 to 50 years!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C02_007EA,S1301_C02_007M,S1301_C02_007MA"}, "S0502PR_C02_072E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Civilian employed population 16 years and over!!OCCUPATION!!Sales and office occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_072EA,S0502PR_C02_072M,S0502PR_C02_072MA"}, "S0505_C06_127E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Occupied housing units!!HOUSING TENURE!!Average household size of owner-occupied unit", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_127EA,S0505_C06_127M,S0505_C06_127MA"}, "S1702_C02_037E": {"label": "Estimate!!Percent below poverty level!!All families!!Families!!NUMBER OF WORKERS IN FAMILY!!1 worker", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C02_037EA,S1702_C02_037M,S1702_C02_037MA"}, "S2507_C01_021E": {"label": "Estimate!!Owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!RATIO OF VALUE TO HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!2.0 to 2.9", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "int", "group": "S2507", "limit": 0, "attributes": "S2507_C01_021EA,S2507_C01_021M,S2507_C01_021MA"}, "S2412_C04_009E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Full-time, year-round civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Computer, engineering, and science occupations:!!Life, physical, and social science occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2412", "limit": 0, "attributes": "S2412_C04_009EA,S2412_C04_009M,S2412_C04_009MA"}, "S2702PR_C01_005E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!AGE!!19 to 64 years", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_005EA,S2702PR_C01_005M,S2702PR_C01_005MA"}, "S2602_C05_038E": {"label": "Estimate!!College/university housing!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Nursery school through 12th grade", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C05_038EA,S2602_C05_038M,S2602_C05_038MA"}, "S2507_C01_026E": {"label": "Estimate!!Owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!MONTHLY HOUSING COSTS!!$200 to $399", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "int", "group": "S2507", "limit": 0, "attributes": "S2507_C01_026EA,S2507_C01_026M,S2507_C01_026MA"}, "S1702_C02_030E": {"label": "Estimate!!Percent below poverty level!!All families!!Families!!NUMBER OF OWN CHILDREN OF THE HOUSEHOLDER UNDER 18 YEARS!!3 or 4 own children of the householder", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C02_030EA,S1702_C02_030M,S1702_C02_030MA"}, "S2507_C01_027E": {"label": "Estimate!!Owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!MONTHLY HOUSING COSTS!!$400 to $599", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "int", "group": "S2507", "limit": 0, "attributes": "S2507_C01_027EA,S2507_C01_027M,S2507_C01_027MA"}, "S1702_C02_031E": {"label": "Estimate!!Percent below poverty level!!All families!!Families!!NUMBER OF OWN CHILDREN OF THE HOUSEHOLDER UNDER 18 YEARS!!5 or more own children of the householder", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C02_031EA,S1702_C02_031M,S1702_C02_031MA"}, "S2507_C01_024E": {"label": "Estimate!!Owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!RATIO OF VALUE TO HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Not computed", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "int", "group": "S2507", "limit": 0, "attributes": "S2507_C01_024EA,S2507_C01_024M,S2507_C01_024MA"}, "S1702_C02_032E": {"label": "Estimate!!Percent below poverty level!!All families!!Families!!NUMBER OF PEOPLE IN FAMILY!!2 people", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C02_032EA,S1702_C02_032M,S1702_C02_032MA"}, "S1702_C02_033E": {"label": "Estimate!!Percent below poverty level!!All families!!Families!!NUMBER OF PEOPLE IN FAMILY!!3 or 4 people", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C02_033EA,S1702_C02_033M,S1702_C02_033MA"}, "S2702PR_C01_009E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!AGE!!19 to 64 years!!45 to 54 years", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_009EA,S2702PR_C01_009M,S2702PR_C01_009MA"}, "S2507_C01_025E": {"label": "Estimate!!Owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!MONTHLY HOUSING COSTS!!Less than $200", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "int", "group": "S2507", "limit": 0, "attributes": "S2507_C01_025EA,S2507_C01_025M,S2507_C01_025MA"}, "S2602_C05_045E": {"label": "Estimate!!College/university housing!!DISABILITY STATUS!!Total population", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C05_045EA,S2602_C05_045M,S2602_C05_045MA"}, "S0505_C06_120E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_120EA,S0505_C06_120M,S0505_C06_120MA"}, "S2503_C01_025E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than $20,000", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C01_025EA,S2503_C01_025M,S2503_C01_025MA"}, "S0506_C03_010E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Foreign-born population!!SEX AND AGE!!Male", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_010EA,S0506_C03_010M,S0506_C03_010MA"}, "S2412_C04_012E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Full-time, year-round civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:!!Legal occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2412", "limit": 0, "attributes": "S2412_C04_012EA,S2412_C04_012M,S2412_C04_012MA"}, "S0505_C06_121E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_121EA,S0505_C06_121M,S0505_C06_121MA"}, "S2602_C05_044E": {"label": "Estimate!!College/university housing!!VETERAN STATUS!!Civilian population 18 years and over!!Civilian veteran", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C05_044EA,S2602_C05_044M,S2602_C05_044MA"}, "S2503_C01_024E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS!!Median (dollars)", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C01_024EA,S2503_C01_024M,S2503_C01_024MA"}, "S2412_C04_011E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Full-time, year-round civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:!!Community and social service occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2412", "limit": 0, "attributes": "S2412_C04_011EA,S2412_C04_011M,S2412_C04_011MA"}, "S2602_C05_043E": {"label": "Estimate!!College/university housing!!VETERAN STATUS!!Civilian population 18 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C05_043EA,S2602_C05_043M,S2602_C05_043MA"}, "S2503_C01_027E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than $20,000!!20 to 29 percent", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C01_027EA,S2503_C01_027M,S2503_C01_027MA"}, "S2412_C04_014E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Full-time, year-round civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:!!Arts, design, entertainment, sports, and media occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2412", "limit": 0, "attributes": "S2412_C04_014EA,S2412_C04_014M,S2412_C04_014MA"}, "S2507_C01_028E": {"label": "Estimate!!Owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!MONTHLY HOUSING COSTS!!$600 to $999", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "int", "group": "S2507", "limit": 0, "attributes": "S2507_C01_028EA,S2507_C01_028M,S2507_C01_028MA"}, "S1702_C02_040E": {"label": "Estimate!!Percent below poverty level!!All families!!Families!!INCOME DEFICIT!!Mean income deficit for families (dollars)", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C02_040EA,S1702_C02_040M,S1702_C02_040MA"}, "S2503_C01_026E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than $20,000!!Less than 20 percent", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C01_026EA,S2503_C01_026M,S2503_C01_026MA"}, "S2602_C05_042E": {"label": "Estimate!!College/university housing!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree or higher", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C05_042EA,S2602_C05_042M,S2602_C05_042MA"}, "S2412_C04_013E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Full-time, year-round civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:!!Educational instruction, and library occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2412", "limit": 0, "attributes": "S2412_C04_013EA,S2412_C04_013M,S2412_C04_013MA"}, "S1702_C02_041E": {"label": "Estimate!!Percent below poverty level!!All families!!Families!!TENURE!!Owner occupied", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C02_041EA,S1702_C02_041M,S1702_C02_041MA"}, "S2507_C01_029E": {"label": "Estimate!!Owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!MONTHLY HOUSING COSTS!!$1,000 to $1,299", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "int", "group": "S2507", "limit": 0, "attributes": "S2507_C01_029EA,S2507_C01_029M,S2507_C01_029MA"}, "S0505_C06_124E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C06_124EA,S0505_C06_124M,S0505_C06_124MA"}, "S2412_C04_016E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Full-time, year-round civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Healthcare practitioners and technical occupations:!!Health diagnosing and treating practitioners and other technical occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2412", "limit": 0, "attributes": "S2412_C04_016EA,S2412_C04_016M,S2412_C04_016MA"}, "S2702PR_C01_004E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!AGE!!Under 19 years!!6 to 18 years", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_004EA,S2702PR_C01_004M,S2702PR_C01_004MA"}, "S2503_C01_029E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$20,000 to $34,999", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C01_029EA,S2503_C01_029M,S2503_C01_029MA"}, "S0506_C03_014E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Foreign-born population!!SEX AND AGE!!18 to 24 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_014EA,S0506_C03_014M,S0506_C03_014MA"}, "S2602_C05_049E": {"label": "Estimate!!College/university housing!!DISABILITY STATUS!!Population 18 to 64 years!!No disability", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C05_049EA,S2602_C05_049M,S2602_C05_049MA"}, "S0505_C06_125E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Occupied housing units!!HOUSING TENURE!!Owner-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_125EA,S0505_C06_125M,S0505_C06_125MA"}, "S2503_C01_028E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than $20,000!!30 percent or more", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C01_028EA,S2503_C01_028M,S2503_C01_028MA"}, "S2702PR_C01_003E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!AGE!!Under 19 years!!Under 6 years", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_003EA,S2702PR_C01_003M,S2702PR_C01_003MA"}, "S2412_C04_015E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Full-time, year-round civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Healthcare practitioners and technical occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2412", "limit": 0, "attributes": "S2412_C04_015EA,S2412_C04_015M,S2412_C04_015MA"}, "S0506_C03_013E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Foreign-born population!!SEX AND AGE!!5 to 17 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_013EA,S0506_C03_013M,S0506_C03_013MA"}, "S2602_C05_048E": {"label": "Estimate!!College/university housing!!DISABILITY STATUS!!Population 18 to 64 years!!With a disability", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C05_048EA,S2602_C05_048M,S2602_C05_048MA"}, "S0505_C06_122E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_122EA,S0505_C06_122M,S0505_C06_122MA"}, "S2702PR_C01_002E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!AGE!!Under 19 years", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_002EA,S2702PR_C01_002M,S2702PR_C01_002MA"}, "S2412_C04_018E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Full-time, year-round civilian employed population 16 years and over with earnings!!Service occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2412", "limit": 0, "attributes": "S2412_C04_018EA,S2412_C04_018M,S2412_C04_018MA"}, "S0506_C03_012E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Foreign-born population!!SEX AND AGE!!Under 5 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_012EA,S0506_C03_012M,S0506_C03_012MA"}, "S2602_C05_047E": {"label": "Estimate!!College/university housing!!DISABILITY STATUS!!Population 18 to 64 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C05_047EA,S2602_C05_047M,S2602_C05_047MA"}, "S2602_C05_046E": {"label": "Estimate!!College/university housing!!DISABILITY STATUS!!Total population!!With a disability", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C05_046EA,S2602_C05_046M,S2602_C05_046MA"}, "S0505_C06_123E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_123EA,S0505_C06_123M,S0505_C06_123MA"}, "S2702PR_C01_001E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "int", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_001EA,S2702PR_C01_001M,S2702PR_C01_001MA"}, "S2412_C04_017E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Full-time, year-round civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Healthcare practitioners and technical occupations:!!Health technologists and technicians", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2412", "limit": 0, "attributes": "S2412_C04_017EA,S2412_C04_017M,S2412_C04_017MA"}, "S0506_C03_011E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Foreign-born population!!SEX AND AGE!!Female", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_011EA,S0506_C03_011M,S0506_C03_011MA"}, "S2504_C04_032E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!HOUSE HEATING FUEL!!Utility gas", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C04_032EA,S2504_C04_032M,S2504_C04_032MA"}, "S0506_C03_018E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Foreign-born population!!SEX AND AGE!!65 to 74 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_018EA,S0506_C03_018M,S0506_C03_018MA"}, "S2504_C04_033E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!HOUSE HEATING FUEL!!Bottled or tank gas (propane, butane, etc.)", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C04_033EA,S2504_C04_033M,S2504_C04_033MA"}, "S0506_C03_017E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Foreign-born population!!SEX AND AGE!!55 to 64 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_017EA,S0506_C03_017M,S0506_C03_017MA"}, "S0901_C03_036E": {"label": "Estimate!!In male householder, no spouse present, family household!!HOUSING TENURE!!Children under 18 years in occupied housing units!!In owner-occupied housing units", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C03_036EA,S0901_C03_036M,S0901_C03_036MA"}, "S2504_C04_034E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!HOUSE HEATING FUEL!!Electricity", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C04_034EA,S2504_C04_034M,S2504_C04_034MA"}, "S0506_C03_016E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Foreign-born population!!SEX AND AGE!!45 to 54 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_016EA,S0506_C03_016M,S0506_C03_016MA"}, "S0901_C03_037E": {"label": "Estimate!!In male householder, no spouse present, family household!!HOUSING TENURE!!Children under 18 years in occupied housing units!!In renter-occupied housing units", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C03_037EA,S0901_C03_037M,S0901_C03_037MA"}, "S2504_C04_035E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!HOUSE HEATING FUEL!!Fuel oil, kerosene, etc.", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C04_035EA,S2504_C04_035M,S2504_C04_035MA"}, "S0506_C03_015E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Foreign-born population!!SEX AND AGE!!25 to 44 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_015EA,S0506_C03_015M,S0506_C03_015MA"}, "S2503_C01_021E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS!!$2,500 to $2,999", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C01_021EA,S2503_C01_021M,S2503_C01_021MA"}, "S0901_C03_034E": {"label": "Estimate!!In male householder, no spouse present, family household!!POVERTY STATUS IN THE PAST 12 MONTHS!!Children in households for whom poverty status is determined!!Income in the past 12 months at or above poverty level", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C03_034EA,S0901_C03_034M,S0901_C03_034MA"}, "S2602_C05_041E": {"label": "Estimate!!College/university housing!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate or higher", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C05_041EA,S2602_C05_041M,S2602_C05_041MA"}, "NATION": {"label": "Nation", "group": "N/A", "limit": 0}, "S0901_C03_035E": {"label": "Estimate!!In male householder, no spouse present, family household!!HOUSING TENURE!!Children under 18 years in occupied housing units", "concept": "Children Characteristics", "predicateType": "int", "group": "S0901", "limit": 0, "attributes": "S0901_C03_035EA,S0901_C03_035M,S0901_C03_035MA"}, "S2602_C05_040E": {"label": "Estimate!!College/university housing!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C05_040EA,S2602_C05_040M,S2602_C05_040MA"}, "S2503_C01_020E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS!!$2,000 to $2,499", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C01_020EA,S2503_C01_020M,S2503_C01_020MA"}, "S2503_C01_023E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS!!No cash rent", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C01_023EA,S2503_C01_023M,S2503_C01_023MA"}, "S2412_C04_010E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Full-time, year-round civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2412", "limit": 0, "attributes": "S2412_C04_010EA,S2412_C04_010M,S2412_C04_010MA"}, "S2504_C04_030E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!VEHICLES AVAILABLE!!3 or more vehicles available", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C04_030EA,S2504_C04_030M,S2504_C04_030MA"}, "S0901_C03_032E": {"label": "Estimate!!In male householder, no spouse present, family household!!POVERTY STATUS IN THE PAST 12 MONTHS!!Children in households for whom poverty status is determined", "concept": "Children Characteristics", "predicateType": "int", "group": "S0901", "limit": 0, "attributes": "S0901_C03_032EA,S0901_C03_032M,S0901_C03_032MA"}, "S2503_C01_022E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS!!$3,000 or more", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C01_022EA,S2503_C01_022M,S2503_C01_022MA"}, "S2504_C04_031E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!TELEPHONE SERVICE AVAILABLE!!With telephone service", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C04_031EA,S2504_C04_031M,S2504_C04_031MA"}, "S0506_C03_019E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Foreign-born population!!SEX AND AGE!!75 to 84 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_019EA,S0506_C03_019M,S0506_C03_019MA"}, "S0901_C03_033E": {"label": "Estimate!!In male householder, no spouse present, family household!!POVERTY STATUS IN THE PAST 12 MONTHS!!Children in households for whom poverty status is determined!!Income in the past 12 months below poverty level", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C03_033EA,S0901_C03_033M,S0901_C03_033MA"}, "S1301_C02_014E": {"label": "Estimate!!Number!!Women with births in the past 12 months!!Women 15 to 50 years!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C02_014EA,S1301_C02_014M,S1301_C02_014MA"}, "S1602_C04_004E": {"label": "Estimate!!Percent limited English-speaking households!!All households!!Households speaking --!!Asian and Pacific Island languages", "concept": "Limited English Speaking Households", "predicateType": "float", "group": "S1602", "limit": 0, "attributes": "S1602_C04_004EA,S1602_C04_004M,S1602_C04_004MA"}, "S1301_C02_013E": {"label": "Estimate!!Number!!Women with births in the past 12 months!!Women 15 to 50 years!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C02_013EA,S1301_C02_013M,S1301_C02_013MA"}, "S1602_C04_003E": {"label": "Estimate!!Percent limited English-speaking households!!All households!!Households speaking --!!Other Indo-European languages", "concept": "Limited English Speaking Households", "predicateType": "float", "group": "S1602", "limit": 0, "attributes": "S1602_C04_003EA,S1602_C04_003M,S1602_C04_003MA"}, "S1301_C02_012E": {"label": "Estimate!!Number!!Women with births in the past 12 months!!Women 15 to 50 years!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C02_012EA,S1301_C02_012M,S1301_C02_012MA"}, "S1301_C02_011E": {"label": "Estimate!!Number!!Women with births in the past 12 months!!Women 15 to 50 years!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C02_011EA,S1301_C02_011M,S1301_C02_011MA"}, "S1602_C04_005E": {"label": "Estimate!!Percent limited English-speaking households!!All households!!Households speaking --!!Other languages", "concept": "Limited English Speaking Households", "predicateType": "float", "group": "S1602", "limit": 0, "attributes": "S1602_C04_005EA,S1602_C04_005M,S1602_C04_005MA"}, "S1301_C02_018E": {"label": "Estimate!!Number!!Women with births in the past 12 months!!Women 15 to 50 years!!EDUCATIONAL ATTAINMENT!!High school graduate (includes equivalency)", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C02_018EA,S1301_C02_018M,S1301_C02_018MA"}, "S2507_C01_030E": {"label": "Estimate!!Owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!MONTHLY HOUSING COSTS!!$1,300 to $1,499", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "int", "group": "S2507", "limit": 0, "attributes": "S2507_C01_030EA,S2507_C01_030M,S2507_C01_030MA"}, "S2601A_C02_029E": {"label": "Estimate!!Total group quarters population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!Hispanic or Latino (of any race)", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_029EA,S2601A_C02_029M,S2601A_C02_029MA"}, "S1702_C02_026E": {"label": "Estimate!!Percent below poverty level!!All families!!Families!!NUMBER OF RELATED CHILDREN OF THE HOUSEHOLDER UNDER 18 YEARS!!3 or 4 children", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C02_026EA,S1702_C02_026M,S1702_C02_026MA"}, "S0502PR_C02_087E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Civilian employed population 16 years and over!!INDUSTRY!!Public administration", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_087EA,S0502PR_C02_087M,S0502PR_C02_087MA"}, "S2504_C04_036E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!HOUSE HEATING FUEL!!Coal or coke", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C04_036EA,S2504_C04_036M,S2504_C04_036MA"}, "S1301_C02_017E": {"label": "Estimate!!Number!!Women with births in the past 12 months!!Women 15 to 50 years!!EDUCATIONAL ATTAINMENT!!Less than high school graduate", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C02_017EA,S1301_C02_017M,S1301_C02_017MA"}, "S0502PR_C02_086E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Civilian employed population 16 years and over!!INDUSTRY!!Other services (except public administration)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_086EA,S0502PR_C02_086M,S0502PR_C02_086MA"}, "S2507_C01_031E": {"label": "Estimate!!Owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!MONTHLY HOUSING COSTS!!$1,500 or more", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "int", "group": "S2507", "limit": 0, "attributes": "S2507_C01_031EA,S2507_C01_031M,S2507_C01_031MA"}, "S2601A_C02_028E": {"label": "Estimate!!Total group quarters population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!Two or more races", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_028EA,S2601A_C02_028M,S2601A_C02_028MA"}, "S1702_C02_027E": {"label": "Estimate!!Percent below poverty level!!All families!!Families!!NUMBER OF RELATED CHILDREN OF THE HOUSEHOLDER UNDER 18 YEARS!!5 or more children", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C02_027EA,S1702_C02_027M,S1702_C02_027MA"}, "S2504_C04_037E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!HOUSE HEATING FUEL!!All other fuels", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C04_037EA,S2504_C04_037M,S2504_C04_037MA"}, "S2601A_C02_027E": {"label": "Estimate!!Total group quarters population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Some other race", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_027EA,S2601A_C02_027M,S2601A_C02_027MA"}, "S1301_C02_016E": {"label": "Estimate!!Number!!Women with births in the past 12 months!!Women 15 to 50 years!!NATIVITY!!Foreign born", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C02_016EA,S1301_C02_016M,S1301_C02_016MA"}, "S0502PR_C02_089E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$1 to $9,999 or loss", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_089EA,S0502PR_C02_089M,S0502PR_C02_089MA"}, "S1702_C02_028E": {"label": "Estimate!!Percent below poverty level!!All families!!Families!!NUMBER OF OWN CHILDREN OF THE HOUSEHOLDER UNDER 18 YEARS!!No own child of the householder", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C02_028EA,S1702_C02_028M,S1702_C02_028MA"}, "S2504_C04_038E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!HOUSE HEATING FUEL!!No fuel used", "concept": "Physical Housing Characteristics for Occupied Housing Units", "predicateType": "float", "group": "S2504", "limit": 0, "attributes": "S2504_C04_038EA,S2504_C04_038M,S2504_C04_038MA"}, "S2601A_C02_026E": {"label": "Estimate!!Total group quarters population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_026EA,S2601A_C02_026M,S2601A_C02_026MA"}, "S1301_C02_015E": {"label": "Estimate!!Number!!Women with births in the past 12 months!!Women 15 to 50 years!!NATIVITY!!Native", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C02_015EA,S1301_C02_015M,S1301_C02_015MA"}, "S0502PR_C02_088E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_088EA,S0502PR_C02_088M,S0502PR_C02_088MA"}, "S1702_C02_029E": {"label": "Estimate!!Percent below poverty level!!All families!!Families!!NUMBER OF OWN CHILDREN OF THE HOUSEHOLDER UNDER 18 YEARS!!1 or 2 own children of the householder", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C02_029EA,S1702_C02_029M,S1702_C02_029MA"}, "SDSEC": {"label": "School District (Secondary)", "group": "N/A", "limit": 0}, "S2601A_C02_025E": {"label": "Estimate!!Total group quarters population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Asian", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_025EA,S2601A_C02_025M,S2601A_C02_025MA"}, "S2802_C06_003E": {"label": "Estimate!!No computer in household!!Total population in households!!AGE!!18 to 64 years", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C06_003EA,S2802_C06_003M,S2802_C06_003MA"}, "S0502PR_C02_083E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Civilian employed population 16 years and over!!INDUSTRY!!Professional, scientific, and management, and administrative and waste management services", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_083EA,S0502PR_C02_083M,S0502PR_C02_083MA"}, "S2507_C01_034E": {"label": "Estimate!!Owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than $20,000!!Less than 20 percent", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "int", "group": "S2507", "limit": 0, "attributes": "S2507_C01_034EA,S2507_C01_034M,S2507_C01_034MA"}, "S1702_C02_022E": {"label": "Estimate!!Percent below poverty level!!All families!!Families!!EDUCATIONAL ATTAINMENT OF HOUSEHOLDER!!Some college, associate's degree", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C02_022EA,S1702_C02_022M,S1702_C02_022MA"}, "S2601A_C02_024E": {"label": "Estimate!!Total group quarters population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_024EA,S2601A_C02_024M,S2601A_C02_024MA"}, "S2802_C06_004E": {"label": "Estimate!!No computer in household!!Total population in households!!AGE!!65 years and over", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C06_004EA,S2802_C06_004M,S2802_C06_004MA"}, "S0502PR_C02_082E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Civilian employed population 16 years and over!!INDUSTRY!!Finance and insurance, and real estate and rental and leasing", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_082EA,S0502PR_C02_082M,S0502PR_C02_082MA"}, "S2407_C03_010E": {"label": "Estimate!!Self-employed in own incorporated business workers!!Civilian employed population 16 years and over!!Professional, scientific, and management, and administrative and waste management services", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2407", "limit": 0, "attributes": "S2407_C03_010EA,S2407_C03_010M,S2407_C03_010MA"}, "S2507_C01_035E": {"label": "Estimate!!Owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than $20,000!!20 to 29 percent", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "int", "group": "S2507", "limit": 0, "attributes": "S2507_C01_035EA,S2507_C01_035M,S2507_C01_035MA"}, "S2601A_C02_023E": {"label": "Estimate!!Total group quarters population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_023EA,S2601A_C02_023M,S2601A_C02_023MA"}, "S1702_C02_023E": {"label": "Estimate!!Percent below poverty level!!All families!!Families!!EDUCATIONAL ATTAINMENT OF HOUSEHOLDER!!Bachelor's degree or higher", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C02_023EA,S1702_C02_023M,S1702_C02_023MA"}, "S2802_C06_005E": {"label": "Estimate!!No computer in household!!Total population in households!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C06_005EA,S2802_C06_005M,S2802_C06_005MA"}, "S2407_C03_011E": {"label": "Estimate!!Self-employed in own incorporated business workers!!Civilian employed population 16 years and over!!Educational services, and health care and social assistance", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2407", "limit": 0, "attributes": "S2407_C03_011EA,S2407_C03_011M,S2407_C03_011MA"}, "S0502PR_C02_085E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Civilian employed population 16 years and over!!INDUSTRY!!Arts, entertainment, and recreation, and accommodation and food services", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_085EA,S0502PR_C02_085M,S0502PR_C02_085MA"}, "S0505_C06_138E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Occupied housing units!!SELECTED CHARACTERISTICS!!No telephone service available", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_138EA,S0505_C06_138M,S0505_C06_138MA"}, "S2507_C01_032E": {"label": "Estimate!!Owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!MONTHLY HOUSING COSTS!!Median (dollars)", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "int", "group": "S2507", "limit": 0, "attributes": "S2507_C01_032EA,S2507_C01_032M,S2507_C01_032MA"}, "S2601A_C02_022E": {"label": "Estimate!!Total group quarters population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race!!White", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_022EA,S2601A_C02_022M,S2601A_C02_022MA"}, "S1702_C02_024E": {"label": "Estimate!!Percent below poverty level!!All families!!Families!!NUMBER OF RELATED CHILDREN OF THE HOUSEHOLDER UNDER 18 YEARS!!No child", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C02_024EA,S1702_C02_024M,S1702_C02_024MA"}, "S2802_C06_006E": {"label": "Estimate!!No computer in household!!Total population in households!!RACE AND HISPANIC OR LATINO ORIGIN!!Black or African American alone", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C06_006EA,S2802_C06_006M,S2802_C06_006MA"}, "S1301_C02_019E": {"label": "Estimate!!Number!!Women with births in the past 12 months!!Women 15 to 50 years!!EDUCATIONAL ATTAINMENT!!Some college or associate's degree", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C02_019EA,S1301_C02_019M,S1301_C02_019MA"}, "S2407_C03_012E": {"label": "Estimate!!Self-employed in own incorporated business workers!!Civilian employed population 16 years and over!!Arts, entertainment, and recreation, and accommodation and food services", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2407", "limit": 0, "attributes": "S2407_C03_012EA,S2407_C03_012M,S2407_C03_012MA"}, "S0502PR_C02_084E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Civilian employed population 16 years and over!!INDUSTRY!!Educational services, and health care and social assistance", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_084EA,S0502PR_C02_084M,S0502PR_C02_084MA"}, "S0505_C06_139E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Occupied housing units!!SELECTED CHARACTERISTICS!!Limited English Speaking Households", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_139EA,S0505_C06_139M,S0505_C06_139MA"}, "S2507_C01_033E": {"label": "Estimate!!Owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than $20,000", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "int", "group": "S2507", "limit": 0, "attributes": "S2507_C01_033EA,S2507_C01_033M,S2507_C01_033MA"}, "S2601A_C02_021E": {"label": "Estimate!!Total group quarters population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!One race", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_021EA,S2601A_C02_021M,S2601A_C02_021MA"}, "S1702_C02_025E": {"label": "Estimate!!Percent below poverty level!!All families!!Families!!NUMBER OF RELATED CHILDREN OF THE HOUSEHOLDER UNDER 18 YEARS!!1 or 2 children", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C02_025EA,S1702_C02_025M,S1702_C02_025MA"}, "S0506_C03_030E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_030EA,S0506_C03_030M,S0506_C03_030MA"}, "S2507_C01_038E": {"label": "Estimate!!Owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$20,000 to $34,999!!Less than 20 percent", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "int", "group": "S2507", "limit": 0, "attributes": "S2507_C01_038EA,S2507_C01_038M,S2507_C01_038MA"}, "S2601A_C02_020E": {"label": "Estimate!!Total group quarters population!!Total population!!SEX AND AGE!!Median age (years)", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_020EA,S2601A_C02_020M,S2601A_C02_020MA"}, "S2407_C03_013E": {"label": "Estimate!!Self-employed in own incorporated business workers!!Civilian employed population 16 years and over!!Other services, except public administration", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2407", "limit": 0, "attributes": "S2407_C03_013EA,S2407_C03_013M,S2407_C03_013MA"}, "S2507_C01_039E": {"label": "Estimate!!Owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$20,000 to $34,999!!20 to 29 percent", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "int", "group": "S2507", "limit": 0, "attributes": "S2507_C01_039EA,S2507_C01_039M,S2507_C01_039MA"}, "S2407_C03_014E": {"label": "Estimate!!Self-employed in own incorporated business workers!!Civilian employed population 16 years and over!!Public administration", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2407", "limit": 0, "attributes": "S2407_C03_014EA,S2407_C03_014M,S2407_C03_014MA"}, "S0502PR_C02_081E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Civilian employed population 16 years and over!!INDUSTRY!!Information", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_081EA,S0502PR_C02_081M,S0502PR_C02_081MA"}, "S2802_C06_001E": {"label": "Estimate!!No computer in household!!Total population in households", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C06_001EA,S2802_C06_001M,S2802_C06_001MA"}, "S1602_C04_002E": {"label": "Estimate!!Percent limited English-speaking households!!All households!!Households speaking --!!Spanish", "concept": "Limited English Speaking Households", "predicateType": "float", "group": "S1602", "limit": 0, "attributes": "S1602_C04_002EA,S1602_C04_002M,S1602_C04_002MA"}, "S2507_C01_036E": {"label": "Estimate!!Owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than $20,000!!30 percent or more", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "int", "group": "S2507", "limit": 0, "attributes": "S2507_C01_036EA,S2507_C01_036M,S2507_C01_036MA"}, "S1702_C02_020E": {"label": "Estimate!!Percent below poverty level!!All families!!Families!!EDUCATIONAL ATTAINMENT OF HOUSEHOLDER!!Less than high school graduate", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C02_020EA,S1702_C02_020M,S1702_C02_020MA"}, "S2407_C03_015E": {"label": "Estimate!!Self-employed in own incorporated business workers!!PERCENT ALLOCATED!!Industry", "concept": "Industry by Class of Worker for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2407", "limit": 0, "attributes": "S2407_C03_015EA,S2407_C03_015M,S2407_C03_015MA"}, "S1811_C01_050E": {"label": "Estimate!!Total Civilian Noninstitutionalized Population!!EARNINGS IN PAST 12 MONTHS (IN 2024 INFLATION ADJUSTED DOLLARS)!!Population Age 16 and over with earnings!!$50,000 to $74,999", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C01_050EA,S1811_C01_050M,S1811_C01_050MA"}, "S2802_C06_002E": {"label": "Estimate!!No computer in household!!Total population in households!!AGE!!Under 18 years", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C06_002EA,S2802_C06_002M,S2802_C06_002MA"}, "S0502PR_C02_080E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Civilian employed population 16 years and over!!INDUSTRY!!Transportation and warehousing, and utilities", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_080EA,S0502PR_C02_080M,S0502PR_C02_080MA"}, "S1602_C04_001E": {"label": "Estimate!!Percent limited English-speaking households!!All households", "concept": "Limited English Speaking Households", "predicateType": "float", "group": "S1602", "limit": 0, "attributes": "S1602_C04_001EA,S1602_C04_001M,S1602_C04_001MA"}, "S2507_C01_037E": {"label": "Estimate!!Owner-occupied housing units without a mortgage!!Owner-occupied housing units without a mortgage!!MONTHLY HOUSING COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!$20,000 to $34,999", "concept": "Financial Characteristics for Housing Units Without a Mortgage", "predicateType": "int", "group": "S2507", "limit": 0, "attributes": "S2507_C01_037EA,S2507_C01_037M,S2507_C01_037MA"}, "S1702_C02_021E": {"label": "Estimate!!Percent below poverty level!!All families!!Families!!EDUCATIONAL ATTAINMENT OF HOUSEHOLDER!!High school graduate (includes equivalency)", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C02_021EA,S1702_C02_021M,S1702_C02_021MA"}, "S0505_C06_132E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Occupied housing units!!ROOMS!!6 or 7 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_132EA,S0505_C06_132M,S0505_C06_132MA"}, "S1811_C01_051E": {"label": "Estimate!!Total Civilian Noninstitutionalized Population!!EARNINGS IN PAST 12 MONTHS (IN 2024 INFLATION ADJUSTED DOLLARS)!!Population Age 16 and over with earnings!!$75,000 or more", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C01_051EA,S1811_C01_051M,S1811_C01_051MA"}, "S2602_C05_057E": {"label": "Estimate!!College/university housing!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the United States!!Different county!!Same state", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C05_057EA,S2602_C05_057M,S2602_C05_057MA"}, "S2503_C01_013E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Median household income (dollars)", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C01_013EA,S2503_C01_013M,S2503_C01_013MA"}, "S2501_C04_009E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C04_009EA,S2501_C04_009M,S2501_C04_009MA"}, "S0506_C03_022E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_022EA,S0506_C03_022M,S0506_C03_022MA"}, "S0505_C06_133E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Occupied housing units!!ROOMS!!8 or more rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_133EA,S0505_C06_133M,S0505_C06_133MA"}, "S2503_C01_012E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$150,000 or more", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C01_012EA,S2503_C01_012M,S2503_C01_012MA"}, "S2602_C05_056E": {"label": "Estimate!!College/university housing!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the United States!!Different county", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C05_056EA,S2602_C05_056M,S2602_C05_056MA"}, "S1811_C01_052E": {"label": "Estimate!!Total Civilian Noninstitutionalized Population!!EARNINGS IN PAST 12 MONTHS (IN 2024 INFLATION ADJUSTED DOLLARS)!!Population Age 16 and over with earnings!!Median Earnings", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "int", "group": "S1811", "limit": 0, "attributes": "S1811_C01_052EA,S1811_C01_052M,S1811_C01_052MA"}, "S0506_C03_021E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Foreign-born population!!SEX AND AGE!!Median age (years)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_021EA,S0506_C03_021M,S0506_C03_021MA"}, "S2602_C05_055E": {"label": "Estimate!!College/university housing!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the United States!!Same county", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C05_055EA,S2602_C05_055M,S2602_C05_055MA"}, "S0505_C06_130E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Occupied housing units!!ROOMS!!2 or 3 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_130EA,S0505_C06_130M,S0505_C06_130MA"}, "S2503_C01_015E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS!!$300 to $499", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C01_015EA,S2503_C01_015M,S2503_C01_015MA"}, "S0506_C03_020E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Foreign-born population!!SEX AND AGE!!85 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_020EA,S0506_C03_020M,S0506_C03_020MA"}, "S2412_C04_002E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Full-time, year-round civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2412", "limit": 0, "attributes": "S2412_C04_002EA,S2412_C04_002M,S2412_C04_002MA"}, "S1811_C01_053E": {"label": "Estimate!!Total Civilian Noninstitutionalized Population!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population Age 16 and over for whom poverty status is determined", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "int", "group": "S1811", "limit": 0, "attributes": "S1811_C01_053EA,S1811_C01_053M,S1811_C01_053MA"}, "S2501_C04_007E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!OCCUPANTS PER ROOM!!1.01 to 1.50 occupants per room", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C04_007EA,S2501_C04_007M,S2501_C04_007MA"}, "S2602_C05_054E": {"label": "Estimate!!College/university housing!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the United States", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C05_054EA,S2602_C05_054M,S2602_C05_054MA"}, "S0505_C06_131E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Occupied housing units!!ROOMS!!4 or 5 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_131EA,S0505_C06_131M,S0505_C06_131MA"}, "S2503_C01_014E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS!!Less than $300", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C01_014EA,S2503_C01_014M,S2503_C01_014MA"}, "S2412_C04_001E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Full-time, year-round civilian employed population 16 years and over with earnings", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2412", "limit": 0, "attributes": "S2412_C04_001EA,S2412_C04_001M,S2412_C04_001MA"}, "S1811_C01_054E": {"label": "Estimate!!Total Civilian Noninstitutionalized Population!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population Age 16 and over for whom poverty status is determined!!Below 100 percent of the poverty level", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C01_054EA,S1811_C01_054M,S1811_C01_054MA"}, "S2501_C04_008E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!OCCUPANTS PER ROOM!!1.51 or more occupants per room", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C04_008EA,S2501_C04_008M,S2501_C04_008MA"}, "S0505_C06_136E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Occupied housing units!!VEHICLES AVAILABLE!!None", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_136EA,S0505_C06_136M,S0505_C06_136MA"}, "S2503_C01_017E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS!!$800 to $999", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C01_017EA,S2503_C01_017M,S2503_C01_017MA"}, "S2412_C04_004E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Full-time, year-round civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Management, business, and financial occupations:!!Management occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2412", "limit": 0, "attributes": "S2412_C04_004EA,S2412_C04_004M,S2412_C04_004MA"}, "S1811_C01_055E": {"label": "Estimate!!Total Civilian Noninstitutionalized Population!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population Age 16 and over for whom poverty status is determined!!100 to 149 percent of the poverty level", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C01_055EA,S1811_C01_055M,S1811_C01_055MA"}, "S2501_C04_005E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!HOUSEHOLD SIZE!!4-or-more-person household", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C04_005EA,S2501_C04_005M,S2501_C04_005MA"}, "S0506_C03_026E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_026EA,S0506_C03_026M,S0506_C03_026MA"}, "S0505_C06_137E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Occupied housing units!!VEHICLES AVAILABLE!!1 or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_137EA,S0505_C06_137M,S0505_C06_137MA"}, "S2503_C01_016E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS!!$500 to $799", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C01_016EA,S2503_C01_016M,S2503_C01_016MA"}, "S2501_C04_006E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!OCCUPANTS PER ROOM!!1.00 or less occupants per room", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C04_006EA,S2501_C04_006M,S2501_C04_006MA"}, "S2412_C04_003E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Full-time, year-round civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Management, business, and financial occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2412", "limit": 0, "attributes": "S2412_C04_003EA,S2412_C04_003M,S2412_C04_003MA"}, "S1811_C01_056E": {"label": "Estimate!!Total Civilian Noninstitutionalized Population!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population Age 16 and over for whom poverty status is determined!!At or above 150 percent of the poverty level", "concept": "Selected Economic Characteristics for the Civilian Noninstitutionalized Population by Disability Status", "predicateType": "float", "group": "S1811", "limit": 0, "attributes": "S1811_C01_056EA,S1811_C01_056M,S1811_C01_056MA"}, "S0506_C03_025E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_025EA,S0506_C03_025M,S0506_C03_025MA"}, "S0505_C06_134E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Occupied housing units!!Median number of rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_134EA,S0505_C06_134M,S0505_C06_134MA"}, "S2412_C04_006E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Full-time, year-round civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Computer, engineering, and science occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2412", "limit": 0, "attributes": "S2412_C04_006EA,S2412_C04_006M,S2412_C04_006MA"}, "S2501_C04_003E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!HOUSEHOLD SIZE!!2-person household", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C04_003EA,S2501_C04_003M,S2501_C04_003MA"}, "S2503_C01_019E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS!!$1,500 to $1,999", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C01_019EA,S2503_C01_019M,S2503_C01_019MA"}, "S0506_C03_024E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_024EA,S0506_C03_024M,S0506_C03_024MA"}, "S2602_C05_059E": {"label": "Estimate!!College/university housing!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Abroad", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C05_059EA,S2602_C05_059M,S2602_C05_059MA"}, "S0505_C06_135E": {"label": "Estimate!!Foreign-born; Born in Western Asia!!Occupied housing units!!1.01 or more occupants per room", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C06_135EA,S0505_C06_135M,S0505_C06_135MA"}, "S2412_C04_005E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Full-time, year-round civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Management, business, and financial occupations:!!Business and financial operations occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2412", "limit": 0, "attributes": "S2412_C04_005EA,S2412_C04_005M,S2412_C04_005MA"}, "S2501_C04_004E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!HOUSEHOLD SIZE!!3-person household", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C04_004EA,S2501_C04_004M,S2501_C04_004MA"}, "S2503_C01_018E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!MONTHLY HOUSING COSTS!!$1,000 to $1,499", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C01_018EA,S2503_C01_018M,S2503_C01_018MA"}, "S0506_C03_023E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_023EA,S0506_C03_023M,S0506_C03_023MA"}, "S2602_C05_058E": {"label": "Estimate!!College/university housing!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the United States!!Different county!!Different state", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C05_058EA,S2602_C05_058M,S2602_C05_058MA"}, "S2501_C04_001E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units", "concept": "Occupancy Characteristics", "predicateType": "int", "group": "S2501", "limit": 0, "attributes": "S2501_C04_001EA,S2501_C04_001M,S2501_C04_001MA"}, "S2501_C04_002E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!HOUSEHOLD SIZE!!1-person household", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C04_002EA,S2501_C04_002M,S2501_C04_002MA"}, "S0506_C03_029E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_029EA,S0506_C03_029M,S0506_C03_029MA"}, "S0506_C03_028E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_028EA,S0506_C03_028M,S0506_C03_028MA"}, "S0506_C03_027E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_027EA,S0506_C03_027M,S0506_C03_027MA"}, "S2602_C05_053E": {"label": "Estimate!!College/university housing!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Same address", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C05_053EA,S2602_C05_053M,S2602_C05_053MA"}, "S1301_C02_010E": {"label": "Estimate!!Number!!Women with births in the past 12 months!!Women 15 to 50 years!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C02_010EA,S1301_C02_010M,S1301_C02_010MA"}, "S2602_C05_052E": {"label": "Estimate!!College/university housing!!RESIDENCE 1 YEAR AGO!!Population 1 year and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C05_052EA,S2602_C05_052M,S2602_C05_052MA"}, "S2503_C01_011E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$100,000 to $149,999", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C01_011EA,S2503_C01_011M,S2503_C01_011MA"}, "S2602_C05_051E": {"label": "Estimate!!College/university housing!!DISABILITY STATUS!!Population 65 years and over!!With a disability", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C05_051EA,S2602_C05_051M,S2602_C05_051MA"}, "S2503_C01_010E": {"label": "Estimate!!Occupied housing units!!Occupied housing units!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!$75,000 to $99,999", "concept": "Financial Characteristics", "predicateType": "int", "group": "S2503", "limit": 0, "attributes": "S2503_C01_010EA,S2503_C01_010M,S2503_C01_010MA"}, "S2602_C05_050E": {"label": "Estimate!!College/university housing!!DISABILITY STATUS!!Population 65 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C05_050EA,S2602_C05_050M,S2602_C05_050MA"}, "S0501_C04_064E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!Civilian employed population 16 years and over!!OCCUPATION!!Natural resources, construction, and maintenance occupations", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_064EA,S0501_C04_064M,S0501_C04_064MA"}, "S0502PR_C02_055E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_055EA,S0502PR_C02_055M,S0502PR_C02_055MA"}, "S0501_C04_063E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!Civilian employed population 16 years and over!!OCCUPATION!!Sales and office occupations", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_063EA,S0501_C04_063M,S0501_C04_063MA"}, "S0502PR_C02_054E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!English only", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_054EA,S0502PR_C02_054M,S0502PR_C02_054MA"}, "S0502PR_C02_057E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!EMPLOYMENT STATUS!!Population 16 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_057EA,S0502PR_C02_057M,S0502PR_C02_057MA"}, "S0501_C04_066E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!Civilian employed population 16 years and over!!INDUSTRY!!Agriculture, forestry, fishing and hunting, and mining", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_066EA,S0501_C04_066M,S0501_C04_066MA"}, "S0501_C04_065E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!Civilian employed population 16 years and over!!OCCUPATION!!Production, transportation, and material moving occupations", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_065EA,S0501_C04_065M,S0501_C04_065MA"}, "S0502PR_C02_056E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English!!Speak English less than \"very well\"", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_056EA,S0502PR_C02_056M,S0502PR_C02_056MA"}, "S2802_C06_010E": {"label": "Estimate!!No computer in household!!Total population in households!!RACE AND HISPANIC OR LATINO ORIGIN!!Some other race alone", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C06_010EA,S2802_C06_010M,S2802_C06_010MA"}, "S2702PR_C01_072E": {"label": "Estimate!!Total!!Civilian noninstitutionalized workers 16 years and over!!INDUSTRY!!Finance and insurance, and real estate and rental and leasing", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_072EA,S2702PR_C01_072M,S2702PR_C01_072MA"}, "S0501_C04_060E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Unpaid family workers", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_060EA,S0501_C04_060M,S0501_C04_060MA"}, "S0502PR_C02_051E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_051EA,S0502PR_C02_051M,S0502PR_C02_051MA"}, "S1502_C01_020E": {"label": "Estimate!!Total!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!65 years and over!!Science and Engineering", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C01_020EA,S1502_C01_020M,S1502_C01_020MA"}, "S2702PR_C01_071E": {"label": "Estimate!!Total!!Civilian noninstitutionalized workers 16 years and over!!INDUSTRY!!Information", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_071EA,S2702PR_C01_071M,S2702PR_C01_071MA"}, "S0502PR_C02_050E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college or associate's degree", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_050EA,S0502PR_C02_050M,S0502PR_C02_050MA"}, "S2702PR_C01_070E": {"label": "Estimate!!Total!!Civilian noninstitutionalized workers 16 years and over!!INDUSTRY!!Transportation and warehousing, and utilities", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_070EA,S2702PR_C01_070M,S2702PR_C01_070MA"}, "S0502PR_C02_053E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_053EA,S0502PR_C02_053M,S0502PR_C02_053MA"}, "S2601A_C02_039E": {"label": "Estimate!!Total group quarters population!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Nursery school through 12th grade", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_039EA,S2601A_C02_039M,S2601A_C02_039MA"}, "S0501_C04_062E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!Civilian employed population 16 years and over!!OCCUPATION!!Service occupations", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_062EA,S0501_C04_062M,S0501_C04_062MA"}, "S2601A_C02_038E": {"label": "Estimate!!Total group quarters population!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_038EA,S2601A_C02_038M,S2601A_C02_038MA"}, "S0501_C04_061E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!Civilian employed population 16 years and over!!OCCUPATION!!Management, business, science, and arts occupations", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_061EA,S0501_C04_061M,S0501_C04_061MA"}, "S0502PR_C02_052E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Graduate or professional degree", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_052EA,S0502PR_C02_052M,S0502PR_C02_052MA"}, "S2601A_C02_037E": {"label": "Estimate!!Total group quarters population!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_037EA,S2601A_C02_037M,S2601A_C02_037MA"}, "S2802_C06_015E": {"label": "Estimate!!No computer in household!!Total population in households!!EDUCATIONAL ATTAINMENT!!Household population 25 years and over!!Less than high school graduate or equivalency", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C06_015EA,S2802_C06_015M,S2802_C06_015MA"}, "S2101_C05_023E": {"label": "Estimate!!Nonveterans!!MEDIAN INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Civilian population 18 years and over with income", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C05_023EA,S2101_C05_023M,S2101_C05_023MA"}, "S2601A_C02_036E": {"label": "Estimate!!Total group quarters population!!MARITAL STATUS!!Population 15 years and over!!Separated", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_036EA,S2601A_C02_036M,S2601A_C02_036MA"}, "S1502_C01_024E": {"label": "Estimate!!Total!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!65 years and over!!Arts, Humanities, and Others", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C01_024EA,S1502_C01_024M,S1502_C01_024MA"}, "S2802_C06_016E": {"label": "Estimate!!No computer in household!!Total population in households!!EDUCATIONAL ATTAINMENT!!Household population 25 years and over!!High school graduate (includes equivalency), some college or associate's degree", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C06_016EA,S2802_C06_016M,S2802_C06_016MA"}, "S2101_C05_022E": {"label": "Estimate!!Nonveterans!!Civilian population 18 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C05_022EA,S2101_C05_022M,S2101_C05_022MA"}, "S2601A_C02_035E": {"label": "Estimate!!Total group quarters population!!MARITAL STATUS!!Population 15 years and over!!Divorced", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_035EA,S2601A_C02_035M,S2601A_C02_035MA"}, "S1502_C01_023E": {"label": "Estimate!!Total!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!65 years and over!!Education", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C01_023EA,S1502_C01_023M,S1502_C01_023MA"}, "S2802_C06_017E": {"label": "Estimate!!No computer in household!!Total population in households!!EDUCATIONAL ATTAINMENT!!Household population 25 years and over!!Bachelor's degree or higher", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C06_017EA,S2802_C06_017M,S2802_C06_017MA"}, "S2101_C05_025E": {"label": "Estimate!!Nonveterans!!MEDIAN INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Civilian population 18 years and over with income!!Female", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C05_025EA,S2101_C05_025M,S2101_C05_025MA"}, "S2601A_C02_034E": {"label": "Estimate!!Total group quarters population!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_034EA,S2601A_C02_034M,S2601A_C02_034MA"}, "S1601_C01_019E": {"label": "Estimate!!Total!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Other languages!!65 years old and over", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C01_019EA,S1601_C01_019M,S1601_C01_019MA"}, "S1502_C01_022E": {"label": "Estimate!!Total!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!65 years and over!!Business", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C01_022EA,S1502_C01_022M,S1502_C01_022MA"}, "S2802_C06_018E": {"label": "Estimate!!No computer in household!!Total population in households!!EMPLOYMENT STATUS!!Civilian population 16 years and over", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C06_018EA,S2802_C06_018M,S2802_C06_018MA"}, "S2101_C05_024E": {"label": "Estimate!!Nonveterans!!MEDIAN INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Civilian population 18 years and over with income!!Male", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C05_024EA,S2101_C05_024M,S2101_C05_024MA"}, "S2601A_C02_033E": {"label": "Estimate!!Total group quarters population!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_033EA,S2601A_C02_033M,S2601A_C02_033MA"}, "S1502_C01_021E": {"label": "Estimate!!Total!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!65 years and over!!Science and Engineering Related Fields", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C01_021EA,S1502_C01_021M,S1502_C01_021MA"}, "S1601_C01_017E": {"label": "Estimate!!Total!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Other languages!!5 to 17 years old", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C01_017EA,S1601_C01_017M,S1601_C01_017MA"}, "S2802_C06_011E": {"label": "Estimate!!No computer in household!!Total population in households!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C06_011EA,S2802_C06_011M,S2802_C06_011MA"}, "S0501_C04_068E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!Civilian employed population 16 years and over!!INDUSTRY!!Manufacturing", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_068EA,S0501_C04_068M,S0501_C04_068MA"}, "S2601A_C02_032E": {"label": "Estimate!!Total group quarters population!!MARITAL STATUS!!Population 15 years and over", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_032EA,S2601A_C02_032M,S2601A_C02_032MA"}, "S2802_C06_012E": {"label": "Estimate!!No computer in household!!Total population in households!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C06_012EA,S2802_C06_012M,S2802_C06_012MA"}, "S0501_C04_067E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!Civilian employed population 16 years and over!!INDUSTRY!!Construction", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_067EA,S0501_C04_067M,S0501_C04_067MA"}, "S2601A_C02_031E": {"label": "Estimate!!Total group quarters population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!White alone, Not Hispanic or Latino", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_031EA,S2601A_C02_031M,S2601A_C02_031MA"}, "S1601_C01_018E": {"label": "Estimate!!Total!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Other languages!!18 to 64 years old", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C01_018EA,S1601_C01_018M,S1601_C01_018MA"}, "S1601_C01_015E": {"label": "Estimate!!Total!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Asian and Pacific Island languages!!65 years old and over", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C01_015EA,S1601_C01_015M,S1601_C01_015MA"}, "S2802_C06_013E": {"label": "Estimate!!No computer in household!!Total population in households!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C06_013EA,S2802_C06_013M,S2802_C06_013MA"}, "S2101_C05_021E": {"label": "Estimate!!Nonveterans!!Civilian population 18 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino (of any race)", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C05_021EA,S2101_C05_021M,S2101_C05_021MA"}, "S2601A_C02_030E": {"label": "Estimate!!Total group quarters population!!Total population!!RACE AND HISPANIC ORIGIN OR LATINO ORIGIN!!Not Hispanic or Latino", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_030EA,S2601A_C02_030M,S2601A_C02_030MA"}, "S1601_C01_016E": {"label": "Estimate!!Total!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Other languages", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C01_016EA,S1601_C01_016M,S1601_C01_016MA"}, "S2802_C06_014E": {"label": "Estimate!!No computer in household!!Total population in households!!EDUCATIONAL ATTAINMENT!!Household population 25 years and over", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C06_014EA,S2802_C06_014M,S2802_C06_014MA"}, "S2101_C05_020E": {"label": "Estimate!!Nonveterans!!Civilian population 18 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C05_020EA,S2101_C05_020M,S2101_C05_020MA"}, "S0501_C04_069E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!Civilian employed population 16 years and over!!INDUSTRY!!Wholesale trade", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_069EA,S0501_C04_069M,S0501_C04_069MA"}, "S2101_C05_019E": {"label": "Estimate!!Nonveterans!!Civilian population 18 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Some other race alone", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C05_019EA,S2101_C05_019M,S2101_C05_019MA"}, "S1601_C01_013E": {"label": "Estimate!!Total!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Asian and Pacific Island languages!!5 to 17 years old", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C01_013EA,S1601_C01_013M,S1601_C01_013MA"}, "S2601A_C02_040E": {"label": "Estimate!!Total group quarters population!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!College or graduate school", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_040EA,S2601A_C02_040M,S2601A_C02_040MA"}, "S2101_C05_018E": {"label": "Estimate!!Nonveterans!!Civilian population 18 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Native Hawaiian and Other Pacific Islander alone", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C05_018EA,S2101_C05_018M,S2101_C05_018MA"}, "S1601_C01_014E": {"label": "Estimate!!Total!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Asian and Pacific Island languages!!18 to 64 years old", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C01_014EA,S1601_C01_014M,S1601_C01_014MA"}, "S1601_C01_011E": {"label": "Estimate!!Total!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Other Indo-European languages!!65 years old and over", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C01_011EA,S1601_C01_011M,S1601_C01_011MA"}, "S0504_C03_119E": {"label": "Estimate!!Foreign-born; Born in Northern America!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_119EA,S0504_C03_119M,S0504_C03_119MA"}, "S1601_C01_012E": {"label": "Estimate!!Total!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Asian and Pacific Island languages", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C01_012EA,S1601_C01_012M,S1601_C01_012MA"}, "S2702PR_C01_069E": {"label": "Estimate!!Total!!Civilian noninstitutionalized workers 16 years and over!!INDUSTRY!!Retail trade", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_069EA,S2702PR_C01_069M,S2702PR_C01_069MA"}, "S0504_C03_118E": {"label": "Estimate!!Foreign-born; Born in Northern America!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_118EA,S0504_C03_118M,S0504_C03_118MA"}, "S2802_C06_007E": {"label": "Estimate!!No computer in household!!Total population in households!!RACE AND HISPANIC OR LATINO ORIGIN!!American Indian and Alaska Native alone", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C06_007EA,S2802_C06_007M,S2802_C06_007MA"}, "S2101_C05_015E": {"label": "Estimate!!Nonveterans!!Civilian population 18 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Black or African American alone", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C05_015EA,S2101_C05_015M,S2101_C05_015MA"}, "S0804_C05_053E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!INDUSTRY!!Retail trade", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C05_053EA,S0804_C05_053M,S0804_C05_053MA"}, "S0504_C03_117E": {"label": "Estimate!!Foreign-born; Born in Northern America!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_117EA,S0504_C03_117M,S0504_C03_117MA"}, "S2101_C05_014E": {"label": "Estimate!!Nonveterans!!Civilian population 18 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C05_014EA,S2101_C05_014M,S2101_C05_014MA"}, "S1601_C01_010E": {"label": "Estimate!!Total!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Other Indo-European languages!!18 to 64 years old", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C01_010EA,S1601_C01_010M,S1601_C01_010MA"}, "S2802_C06_008E": {"label": "Estimate!!No computer in household!!Total population in households!!RACE AND HISPANIC OR LATINO ORIGIN!!Asian alone", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C06_008EA,S2802_C06_008M,S2802_C06_008MA"}, "S0804_C05_052E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!INDUSTRY!!Wholesale trade", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C05_052EA,S0804_C05_052M,S0804_C05_052MA"}, "S0504_C03_116E": {"label": "Estimate!!Foreign-born; Born in Northern America!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_116EA,S0504_C03_116M,S0504_C03_116MA"}, "S2101_C05_017E": {"label": "Estimate!!Nonveterans!!Civilian population 18 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Asian alone", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C05_017EA,S2101_C05_017M,S2101_C05_017MA"}, "S0504_C03_115E": {"label": "Estimate!!Foreign-born; Born in Northern America!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!All families", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_115EA,S0504_C03_115M,S0504_C03_115MA"}, "S2802_C06_009E": {"label": "Estimate!!No computer in household!!Total population in households!!RACE AND HISPANIC OR LATINO ORIGIN!!Native Hawaiian and Other Pacific Islander alone", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C06_009EA,S2802_C06_009M,S2802_C06_009MA"}, "S0804_C05_051E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!INDUSTRY!!Manufacturing", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C05_051EA,S0804_C05_051M,S0804_C05_051MA"}, "S2101_C05_016E": {"label": "Estimate!!Nonveterans!!Civilian population 18 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!American Indian and Alaska Native alone", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C05_016EA,S2101_C05_016M,S2101_C05_016MA"}, "S0504_C03_114E": {"label": "Estimate!!Foreign-born; Born in Northern America!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!At or above 200 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_114EA,S0504_C03_114M,S0504_C03_114MA"}, "S0804_C05_050E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!INDUSTRY!!Construction", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C05_050EA,S0804_C05_050M,S0804_C05_050MA"}, "S0804_C05_057E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!INDUSTRY!!Educational services, and health care and social assistance", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C05_057EA,S0804_C05_057M,S0804_C05_057MA"}, "S0504_C03_113E": {"label": "Estimate!!Foreign-born; Born in Northern America!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!100 to 199 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_113EA,S0504_C03_113M,S0504_C03_113MA"}, "S2702PR_C01_064E": {"label": "Estimate!!Total!!Civilian noninstitutionalized workers 16 years and over!!CLASS OF WORKER!!Unpaid family workers", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_064EA,S2702PR_C01_064M,S2702PR_C01_064MA"}, "S0804_C05_056E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!INDUSTRY!!Professional, scientific, and management, and administrative and waste management services", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C05_056EA,S0804_C05_056M,S0804_C05_056MA"}, "S0504_C03_112E": {"label": "Estimate!!Foreign-born; Born in Northern America!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!Below 100 percent of the poverty level", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_112EA,S0504_C03_112M,S0504_C03_112MA"}, "S2702PR_C01_063E": {"label": "Estimate!!Total!!Civilian noninstitutionalized workers 16 years and over!!CLASS OF WORKER!!Self-employed workers in own not incorporated business workers", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_063EA,S2702PR_C01_063M,S2702PR_C01_063MA"}, "S2702PR_C01_062E": {"label": "Estimate!!Total!!Civilian noninstitutionalized workers 16 years and over!!CLASS OF WORKER!!Federal government workers", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_062EA,S2702PR_C01_062M,S2702PR_C01_062MA"}, "S0804_C05_055E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!INDUSTRY!!Information and finance and insurance, and real estate and rental and leasing", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C05_055EA,S0804_C05_055M,S0804_C05_055MA"}, "S0504_C03_111E": {"label": "Estimate!!Foreign-born; Born in Northern America!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C03_111EA,S0504_C03_111M,S0504_C03_111MA"}, "S2702PR_C01_061E": {"label": "Estimate!!Total!!Civilian noninstitutionalized workers 16 years and over!!CLASS OF WORKER!!State government workers", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_061EA,S2702PR_C01_061M,S2702PR_C01_061MA"}, "S0804_C05_054E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!INDUSTRY!!Transportation and warehousing, and utilities", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C05_054EA,S0804_C05_054M,S0804_C05_054MA"}, "S0504_C03_110E": {"label": "Estimate!!Foreign-born; Born in Northern America!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!Average number of workers per household", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_110EA,S0504_C03_110M,S0504_C03_110MA"}, "S2702PR_C01_068E": {"label": "Estimate!!Total!!Civilian noninstitutionalized workers 16 years and over!!INDUSTRY!!Wholesale trade", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_068EA,S2702PR_C01_068M,S2702PR_C01_068MA"}, "S0502PR_C02_059E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_059EA,S0502PR_C02_059M,S0502PR_C02_059MA"}, "S2702PR_C01_067E": {"label": "Estimate!!Total!!Civilian noninstitutionalized workers 16 years and over!!INDUSTRY!!Manufacturing", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_067EA,S2702PR_C01_067M,S2702PR_C01_067MA"}, "S0502PR_C02_058E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_058EA,S0502PR_C02_058M,S0502PR_C02_058MA"}, "S2702PR_C01_066E": {"label": "Estimate!!Total!!Civilian noninstitutionalized workers 16 years and over!!INDUSTRY!!Construction", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_066EA,S2702PR_C01_066M,S2702PR_C01_066MA"}, "S0804_C05_059E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!INDUSTRY!!Other services (except public administration)", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C05_059EA,S0804_C05_059M,S0804_C05_059MA"}, "S0804_C05_058E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!INDUSTRY!!Arts, entertainment, and recreation, and accommodation and food services", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C05_058EA,S0804_C05_058M,S0804_C05_058MA"}, "S2702PR_C01_065E": {"label": "Estimate!!Total!!Civilian noninstitutionalized workers 16 years and over!!INDUSTRY!!Agriculture, forestry, fishing and hunting, and mining", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_065EA,S2702PR_C01_065M,S2702PR_C01_065MA"}, "S2419_C01_008E": {"label": "Estimate!!Median earnings (dollars)!!Full-time, year-round civilian employed population 16 years and over with earnings!!Federal government workers", "concept": "Class of Worker by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2419", "limit": 0, "attributes": "S2419_C01_008EA,S2419_C01_008M,S2419_C01_008MA"}, "S0501_C04_052E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_052EA,S0501_C04_052M,S0501_C04_052MA"}, "S0502PR_C02_067E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Government workers", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_067EA,S0502PR_C02_067M,S0502PR_C02_067MA"}, "S2419_C01_007E": {"label": "Estimate!!Median earnings (dollars)!!Full-time, year-round civilian employed population 16 years and over with earnings!!State government workers", "concept": "Class of Worker by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2419", "limit": 0, "attributes": "S2419_C01_007EA,S2419_C01_007M,S2419_C01_007MA"}, "S0501_C04_051E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Employed", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_051EA,S0501_C04_051M,S0501_C04_051MA"}, "S0502PR_C02_066E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Private wage and salary workers", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_066EA,S0502PR_C02_066M,S0502PR_C02_066MA"}, "S2802_C06_020E": {"label": "Estimate!!No computer in household!!Total population in households!!EMPLOYMENT STATUS!!Civilian population 16 years and over!!In labor force!!Employed", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C06_020EA,S2802_C06_020M,S2802_C06_020MA"}, "S0804_C05_039E": {"label": "Estimate!!Worked from home!!POVERTY STATUS IN THE PAST 12 MONTHS!!Workers 16 years and over for whom poverty status is determined!!Below 100 percent of the poverty level", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C05_039EA,S0804_C05_039M,S0804_C05_039MA"}, "S0501_C04_054E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Armed Forces", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_054EA,S0501_C04_054M,S0501_C04_054MA"}, "S0502PR_C02_069E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Unpaid family workers", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_069EA,S0502PR_C02_069M,S0502PR_C02_069MA"}, "S2802_C06_021E": {"label": "Estimate!!No computer in household!!Total population in households!!EMPLOYMENT STATUS!!Civilian population 16 years and over!!In labor force!!Unemployed", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C06_021EA,S2802_C06_021M,S2802_C06_021MA"}, "S2802_C06_022E": {"label": "Estimate!!No computer in household!!Total population in households!!EMPLOYMENT STATUS!!Civilian population 16 years and over!!Not in labor force", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C06_022EA,S2802_C06_022M,S2802_C06_022MA"}, "S0804_C05_038E": {"label": "Estimate!!Worked from home!!POVERTY STATUS IN THE PAST 12 MONTHS!!Workers 16 years and over for whom poverty status is determined", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "int", "group": "S0804", "limit": 0, "attributes": "S0804_C05_038EA,S0804_C05_038M,S0804_C05_038MA"}, "S0501_C04_053E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed!!Percent of civilian labor force", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_053EA,S0501_C04_053M,S0501_C04_053MA"}, "S2419_C01_009E": {"label": "Estimate!!Median earnings (dollars)!!Full-time, year-round civilian employed population 16 years and over with earnings!!Self-employed in own not incorporated business workers and unpaid family workers", "concept": "Class of Worker by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2419", "limit": 0, "attributes": "S2419_C01_009EA,S2419_C01_009M,S2419_C01_009MA"}, "S0502PR_C02_068E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Self-employed workers in own not incorporated business", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_068EA,S0502PR_C02_068M,S0502PR_C02_068MA"}, "SDUNI": {"label": "School District (Unified)", "group": "N/A", "limit": 0}, "S2702PR_C01_060E": {"label": "Estimate!!Total!!Civilian noninstitutionalized workers 16 years and over!!CLASS OF WORKER!!Local government workers", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_060EA,S2702PR_C01_060M,S2702PR_C01_060MA"}, "S0502PR_C02_063E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Armed Forces", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_063EA,S0502PR_C02_063M,S0502PR_C02_063MA"}, "S0502PR_C02_062E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed!!Percent of civilian labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_062EA,S0502PR_C02_062M,S0502PR_C02_062MA"}, "S0501_C04_050E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_050EA,S0501_C04_050M,S0501_C04_050MA"}, "S0502PR_C02_065E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Civilian employed population 16 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_065EA,S0502PR_C02_065M,S0502PR_C02_065MA"}, "S0502PR_C02_064E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!EMPLOYMENT STATUS!!Population 16 years and over!!Not in labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_064EA,S0502PR_C02_064M,S0502PR_C02_064MA"}, "S2601A_C02_049E": {"label": "Estimate!!Total group quarters population!!DISABILITY STATUS!!Population under 18 years!!With a disability", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_049EA,S2601A_C02_049M,S2601A_C02_049MA"}, "S2101_C05_011E": {"label": "Estimate!!Nonveterans!!Civilian population 18 years and over!!AGE!!55 to 64 years", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C05_011EA,S2101_C05_011M,S2101_C05_011MA"}, "S1702_C02_046E": {"label": "Estimate!!Percent below poverty level!!All families!!Families!!ALL FAMILIES WITH INCOME BELOW THE FOLLOWING POVERTY RATIOS!!185 percent of poverty level", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C02_046EA,S1702_C02_046M,S1702_C02_046MA"}, "S2601A_C02_048E": {"label": "Estimate!!Total group quarters population!!DISABILITY STATUS!!Population under 18 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_048EA,S2601A_C02_048M,S2601A_C02_048MA"}, "S1601_C01_009E": {"label": "Estimate!!Total!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Other Indo-European languages!!5 to 17 years old", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C01_009EA,S1601_C01_009M,S1601_C01_009MA"}, "S1502_C01_012E": {"label": "Estimate!!Total!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!25 to 39 years!!Arts, Humanities, and Others", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C01_012EA,S1502_C01_012M,S1502_C01_012MA"}, "S2101_C05_010E": {"label": "Estimate!!Nonveterans!!Civilian population 18 years and over!!AGE!!35 to 54 years", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C05_010EA,S2101_C05_010M,S2101_C05_010MA"}, "S0501_C04_059E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Self-employed workers in own not incorporated business", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_059EA,S0501_C04_059M,S0501_C04_059MA"}, "S1702_C02_047E": {"label": "Estimate!!Percent below poverty level!!All families!!Families!!ALL FAMILIES WITH INCOME BELOW THE FOLLOWING POVERTY RATIOS!!200 percent of poverty level", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C02_047EA,S1702_C02_047M,S1702_C02_047MA"}, "S2601A_C02_047E": {"label": "Estimate!!Total group quarters population!!DISABILITY STATUS!!Total population!!With a disability", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_047EA,S2601A_C02_047M,S2601A_C02_047MA"}, "S1502_C01_011E": {"label": "Estimate!!Total!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!25 to 39 years!!Education", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C01_011EA,S1502_C01_011M,S1502_C01_011MA"}, "S2101_C05_013E": {"label": "Estimate!!Nonveterans!!Civilian population 18 years and over!!AGE!!75 years and over", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C05_013EA,S2101_C05_013M,S2101_C05_013MA"}, "S0502PR_C02_061E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_061EA,S0502PR_C02_061M,S0502PR_C02_061MA"}, "S1702_C02_048E": {"label": "Estimate!!Percent below poverty level!!All families!!Families!!ALL FAMILIES WITH INCOME BELOW THE FOLLOWING POVERTY RATIOS!!300 percent of poverty level", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C02_048EA,S1702_C02_048M,S1702_C02_048MA"}, "S2601A_C02_046E": {"label": "Estimate!!Total group quarters population!!DISABILITY STATUS!!Total population", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_046EA,S2601A_C02_046M,S2601A_C02_046MA"}, "S1502_C01_010E": {"label": "Estimate!!Total!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!25 to 39 years!!Business", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C01_010EA,S1502_C01_010M,S1502_C01_010MA"}, "S1601_C01_007E": {"label": "Estimate!!Total!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Spanish!!65 years old and over", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C01_007EA,S1601_C01_007M,S1601_C01_007MA"}, "S0502PR_C02_060E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Employed", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_060EA,S0502PR_C02_060M,S0502PR_C02_060MA"}, "S2101_C05_012E": {"label": "Estimate!!Nonveterans!!Civilian population 18 years and over!!AGE!!65 to 74 years", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C05_012EA,S2101_C05_012M,S2101_C05_012MA"}, "S1702_C02_049E": {"label": "Estimate!!Percent below poverty level!!All families!!Families!!ALL FAMILIES WITH INCOME BELOW THE FOLLOWING POVERTY RATIOS!!400 percent of poverty level", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C02_049EA,S1702_C02_049M,S1702_C02_049MA"}, "S2601A_C02_045E": {"label": "Estimate!!Total group quarters population!!VETERAN STATUS!!Civilian population 18 years and over!!Civilian veteran", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_045EA,S2601A_C02_045M,S2601A_C02_045MA"}, "S1601_C01_008E": {"label": "Estimate!!Total!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Other Indo-European languages", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C01_008EA,S1601_C01_008M,S1601_C01_008MA"}, "S1601_C01_005E": {"label": "Estimate!!Total!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Spanish!!5 to 17 years old", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C01_005EA,S1601_C01_005M,S1601_C01_005MA"}, "S0501_C04_056E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!Civilian employed population 16 years and over", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C04_056EA,S0501_C04_056M,S0501_C04_056MA"}, "S2601A_C02_044E": {"label": "Estimate!!Total group quarters population!!VETERAN STATUS!!Civilian population 18 years and over", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_044EA,S2601A_C02_044M,S2601A_C02_044MA"}, "S1702_C02_042E": {"label": "Estimate!!Percent below poverty level!!All families!!Families!!TENURE!!Renter Occupied", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "float", "group": "S1702", "limit": 0, "attributes": "S1702_C02_042EA,S1702_C02_042M,S1702_C02_042MA"}, "S1502_C01_016E": {"label": "Estimate!!Total!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!40 to 64 years!!Business", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C01_016EA,S1502_C01_016M,S1502_C01_016MA"}, "S1601_C01_006E": {"label": "Estimate!!Total!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Spanish!!18 to 64 years old", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C01_006EA,S1601_C01_006M,S1601_C01_006MA"}, "S0501_C04_055E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!EMPLOYMENT STATUS!!Population 16 years and over!!Not in labor force", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_055EA,S0501_C04_055M,S0501_C04_055MA"}, "S2601A_C02_043E": {"label": "Estimate!!Total group quarters population!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree or higher", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_043EA,S2601A_C02_043M,S2601A_C02_043MA"}, "S1702_C02_043E": {"label": "Estimate!!Percent below poverty level!!All families!!Families!!ALL FAMILIES WITH INCOME BELOW THE FOLLOWING POVERTY RATIOS!!50 percent of poverty level", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C02_043EA,S1702_C02_043M,S1702_C02_043MA"}, "S1502_C01_015E": {"label": "Estimate!!Total!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!40 to 64 years!!Science and Engineering Related Fields", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C01_015EA,S1502_C01_015M,S1502_C01_015MA"}, "S1601_C01_003E": {"label": "Estimate!!Total!!Population 5 years and over!!Speak a language other than English", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C01_003EA,S1601_C01_003M,S1601_C01_003MA"}, "S0501_C04_058E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Government workers", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_058EA,S0501_C04_058M,S0501_C04_058MA"}, "S1702_C02_044E": {"label": "Estimate!!Percent below poverty level!!All families!!Families!!ALL FAMILIES WITH INCOME BELOW THE FOLLOWING POVERTY RATIOS!!125 percent of poverty level", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C02_044EA,S1702_C02_044M,S1702_C02_044MA"}, "S2601A_C02_042E": {"label": "Estimate!!Total group quarters population!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate or higher", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_042EA,S2601A_C02_042M,S2601A_C02_042MA"}, "S1502_C01_014E": {"label": "Estimate!!Total!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!40 to 64 years!!Science and Engineering", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C01_014EA,S1502_C01_014M,S1502_C01_014MA"}, "S1601_C01_004E": {"label": "Estimate!!Total!!Population 5 years and over!!SPEAK A LANGUAGE OTHER THAN ENGLISH!!Spanish", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C01_004EA,S1601_C01_004M,S1601_C01_004MA"}, "S0501_C04_057E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Private wage and salary workers", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_057EA,S0501_C04_057M,S0501_C04_057MA"}, "S1702_C02_045E": {"label": "Estimate!!Percent below poverty level!!All families!!Families!!ALL FAMILIES WITH INCOME BELOW THE FOLLOWING POVERTY RATIOS!!150 percent of poverty level", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C02_045EA,S1702_C02_045M,S1702_C02_045MA"}, "S2601A_C02_041E": {"label": "Estimate!!Total group quarters population!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_041EA,S2601A_C02_041M,S2601A_C02_041MA"}, "S1502_C01_013E": {"label": "Estimate!!Total!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!40 to 64 years", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C01_013EA,S1502_C01_013M,S1502_C01_013MA"}, "S2101_C05_007E": {"label": "Estimate!!Nonveterans!!Civilian population 18 years and over!!SEX!!Male", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C05_007EA,S2101_C05_007M,S2101_C05_007MA"}, "S1601_C01_001E": {"label": "Estimate!!Total!!Population 5 years and over", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C01_001EA,S1601_C01_001M,S1601_C01_001MA"}, "S1702_C02_050E": {"label": "Estimate!!Percent below poverty level!!All families!!Families!!ALL FAMILIES WITH INCOME BELOW THE FOLLOWING POVERTY RATIOS!!500 percent of poverty level", "concept": "Poverty Status in the Past 12 Months of Families", "predicateType": "int", "group": "S1702", "limit": 0, "attributes": "S1702_C02_050EA,S1702_C02_050M,S1702_C02_050MA"}, "S2601A_C02_052E": {"label": "Estimate!!Total group quarters population!!DISABILITY STATUS!!Population 18 to 64 years!!No disability", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_052EA,S2601A_C02_052M,S2601A_C02_052MA"}, "S2101_C05_006E": {"label": "Estimate!!Nonveterans!!Civilian population 18 years and over!!PERIOD OF SERVICE!!World War II veterans", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C05_006EA,S2101_C05_006M,S2101_C05_006MA"}, "S1502_C01_019E": {"label": "Estimate!!Total!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!65 years and over", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C01_019EA,S1502_C01_019M,S1502_C01_019MA"}, "S1601_C01_002E": {"label": "Estimate!!Total!!Population 5 years and over!!Speak only English", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C01_002EA,S1601_C01_002M,S1601_C01_002MA"}, "S2702PR_C01_059E": {"label": "Estimate!!Total!!Civilian noninstitutionalized workers 16 years and over!!CLASS OF WORKER!!Private not-for-profit wage and salary workers", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_059EA,S2702PR_C01_059M,S2702PR_C01_059MA"}, "S2601A_C02_051E": {"label": "Estimate!!Total group quarters population!!DISABILITY STATUS!!Population 18 to 64 years!!With a disability", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_051EA,S2601A_C02_051M,S2601A_C02_051MA"}, "S1502_C01_018E": {"label": "Estimate!!Total!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!40 to 64 years!!Arts, Humanities, and Others", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C01_018EA,S1502_C01_018M,S1502_C01_018MA"}, "S2702PR_C01_058E": {"label": "Estimate!!Total!!Civilian noninstitutionalized workers 16 years and over!!CLASS OF WORKER!!Private for-profit wage and salary workers!!Self-employed in own incorporated business workers", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_058EA,S2702PR_C01_058M,S2702PR_C01_058MA"}, "S2101_C05_009E": {"label": "Estimate!!Nonveterans!!Civilian population 18 years and over!!AGE!!18 to 34 years", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C05_009EA,S2101_C05_009M,S2101_C05_009MA"}, "S2601A_C02_050E": {"label": "Estimate!!Total group quarters population!!DISABILITY STATUS!!Population 18 to 64 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_050EA,S2601A_C02_050M,S2601A_C02_050MA"}, "S2101_C05_008E": {"label": "Estimate!!Nonveterans!!Civilian population 18 years and over!!SEX!!Female", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C05_008EA,S2101_C05_008M,S2101_C05_008MA"}, "S2702PR_C01_057E": {"label": "Estimate!!Total!!Civilian noninstitutionalized workers 16 years and over!!CLASS OF WORKER!!Private for-profit wage and salary workers!!Employee of private company workers", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_057EA,S2702PR_C01_057M,S2702PR_C01_057MA"}, "S1502_C01_017E": {"label": "Estimate!!Total!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!40 to 64 years!!Education", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C01_017EA,S1502_C01_017M,S1502_C01_017MA"}, "S2101_C05_003E": {"label": "Estimate!!Nonveterans!!Civilian population 18 years and over!!PERIOD OF SERVICE!!Gulf War (8/1990 to 8/2001) veterans", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C05_003EA,S2101_C05_003M,S2101_C05_003MA"}, "S0504_C03_129E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Occupied housing units!!ROOMS!!1 room", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_129EA,S0504_C03_129M,S0504_C03_129MA"}, "S2802_C06_019E": {"label": "Estimate!!No computer in household!!Total population in households!!EMPLOYMENT STATUS!!Civilian population 16 years and over!!In labor force", "concept": "Types of Internet Subscriptions by Selected Characteristics", "predicateType": "int", "group": "S2802", "limit": 0, "attributes": "S2802_C06_019EA,S2802_C06_019M,S2802_C06_019MA"}, "S0804_C05_041E": {"label": "Estimate!!Worked from home!!POVERTY STATUS IN THE PAST 12 MONTHS!!Workers 16 years and over for whom poverty status is determined!!At or above 150 percent of the poverty level", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C05_041EA,S0804_C05_041M,S0804_C05_041MA"}, "S0506_C03_002E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_002EA,S0506_C03_002M,S0506_C03_002MA"}, "S2101_C05_002E": {"label": "Estimate!!Nonveterans!!Civilian population 18 years and over!!PERIOD OF SERVICE!!Gulf War (9/2001 or later) veterans", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C05_002EA,S2101_C05_002M,S2101_C05_002MA"}, "S0504_C03_128E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Occupied housing units!!HOUSING TENURE!!Average household size of renter-occupied unit", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_128EA,S0504_C03_128M,S0504_C03_128MA"}, "S0804_C05_040E": {"label": "Estimate!!Worked from home!!POVERTY STATUS IN THE PAST 12 MONTHS!!Workers 16 years and over for whom poverty status is determined!!100 to 149 percent of the poverty level", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C05_040EA,S0804_C05_040M,S0804_C05_040MA"}, "S0506_C03_001E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Foreign-born population", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C03_001EA,S0506_C03_001M,S0506_C03_001MA"}, "S2101_C05_005E": {"label": "Estimate!!Nonveterans!!Civilian population 18 years and over!!PERIOD OF SERVICE!!Korean War veterans", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C05_005EA,S2101_C05_005M,S2101_C05_005MA"}, "S0504_C03_127E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Occupied housing units!!HOUSING TENURE!!Average household size of owner-occupied unit", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_127EA,S0504_C03_127M,S0504_C03_127MA"}, "S2101_C05_004E": {"label": "Estimate!!Nonveterans!!Civilian population 18 years and over!!PERIOD OF SERVICE!!Vietnam War veterans", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C05_004EA,S2101_C05_004M,S2101_C05_004MA"}, "S0504_C03_126E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Occupied housing units!!HOUSING TENURE!!Renter-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_126EA,S0504_C03_126M,S0504_C03_126MA"}, "S0504_C03_125E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Occupied housing units!!HOUSING TENURE!!Owner-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_125EA,S0504_C03_125M,S0504_C03_125MA"}, "S0804_C05_045E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!OCCUPATION!!Sales and office occupations", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C05_045EA,S0804_C05_045M,S0804_C05_045MA"}, "S2702PR_C01_052E": {"label": "Estimate!!Total!!WORK EXPERIENCE!!Civilian noninstitutionalized population 16 to 64 years!!Worked full-time, year round in the past 12 months", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_052EA,S2702PR_C01_052M,S2702PR_C01_052MA"}, "S0506_C03_006E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_006EA,S0506_C03_006M,S0506_C03_006MA"}, "S0504_C03_124E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C03_124EA,S0504_C03_124M,S0504_C03_124MA"}, "S2702PR_C01_051E": {"label": "Estimate!!Total!!WORK EXPERIENCE!!Civilian noninstitutionalized population 16 to 64 years", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "int", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_051EA,S2702PR_C01_051M,S2702PR_C01_051MA"}, "S0804_C05_044E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!OCCUPATION!!Service occupations", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C05_044EA,S0804_C05_044M,S0804_C05_044MA"}, "S0506_C03_005E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen!!Entered before 2000", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_005EA,S0506_C03_005M,S0506_C03_005MA"}, "S2702PR_C01_050E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Civilian noninstitutionalized population 16 years and over!!Not in labor force", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_050EA,S2702PR_C01_050M,S2702PR_C01_050MA"}, "S0504_C03_123E": {"label": "Estimate!!Foreign-born; Born in Northern America!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_123EA,S0504_C03_123M,S0504_C03_123MA"}, "S0804_C05_043E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!OCCUPATION!!Management, business, science, and arts occupations", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C05_043EA,S0804_C05_043M,S0804_C05_043MA"}, "S2419_C01_002E": {"label": "Estimate!!Median earnings (dollars)!!Full-time, year-round civilian employed population 16 years and over with earnings!!Private for-profit wage and salary workers:", "concept": "Class of Worker by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2419", "limit": 0, "attributes": "S2419_C01_002EA,S2419_C01_002M,S2419_C01_002MA"}, "S0506_C03_004E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen!!Entered 2000 to 2009", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_004EA,S0506_C03_004M,S0506_C03_004MA"}, "S0804_C05_042E": {"label": "Estimate!!Worked from home!!Workers 16 years and over", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "int", "group": "S0804", "limit": 0, "attributes": "S0804_C05_042EA,S0804_C05_042M,S0804_C05_042MA"}, "S2419_C01_001E": {"label": "Estimate!!Median earnings (dollars)!!Full-time, year-round civilian employed population 16 years and over with earnings", "concept": "Class of Worker by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2419", "limit": 0, "attributes": "S2419_C01_001EA,S2419_C01_001M,S2419_C01_001MA"}, "S0504_C03_122E": {"label": "Estimate!!Foreign-born; Born in Northern America!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family!!With related children of the householder under 18 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_122EA,S0504_C03_122M,S0504_C03_122MA"}, "S0506_C03_003E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen!!Entered 2010 or later", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_003EA,S0506_C03_003M,S0506_C03_003MA"}, "S0804_C05_049E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!INDUSTRY!!Agriculture, forestry, fishing and hunting, and mining", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C05_049EA,S0804_C05_049M,S0804_C05_049MA"}, "S2702PR_C01_056E": {"label": "Estimate!!Total!!Civilian noninstitutionalized workers 16 years and over!!CLASS OF WORKER!!Private for-profit wage and salary workers", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_056EA,S2702PR_C01_056M,S2702PR_C01_056MA"}, "S2419_C01_004E": {"label": "Estimate!!Median earnings (dollars)!!Full-time, year-round civilian employed population 16 years and over with earnings!!Private for-profit wage and salary workers:!!Self-employed in own incorporated business workers", "concept": "Class of Worker by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2419", "limit": 0, "attributes": "S2419_C01_004EA,S2419_C01_004M,S2419_C01_004MA"}, "S0504_C03_121E": {"label": "Estimate!!Foreign-born; Born in Northern America!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Female householder, no spouse present, family", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_121EA,S0504_C03_121M,S0504_C03_121MA"}, "S2702PR_C01_055E": {"label": "Estimate!!Total!!Civilian noninstitutionalized workers 16 years and over", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "int", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_055EA,S2702PR_C01_055M,S2702PR_C01_055MA"}, "S0804_C05_048E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!OCCUPATION!!Military specific occupations", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C05_048EA,S0804_C05_048M,S0804_C05_048MA"}, "S2419_C01_003E": {"label": "Estimate!!Median earnings (dollars)!!Full-time, year-round civilian employed population 16 years and over with earnings!!Private for-profit wage and salary workers:!!Employee of private company workers", "concept": "Class of Worker by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2419", "limit": 0, "attributes": "S2419_C01_003EA,S2419_C01_003M,S2419_C01_003MA"}, "S0506_C03_009E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen!!Entered before 2000", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_009EA,S0506_C03_009M,S0506_C03_009MA"}, "S0504_C03_120E": {"label": "Estimate!!Foreign-born; Born in Northern America!!POVERTY STATUS IN THE PAST 12 MONTHS!!POVERTY RATES FOR FAMILIES FOR WHOM POVERTY STATUS IS DETERMINED!!Married-couple family!!With related children of the householder under 5 years only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_120EA,S0504_C03_120M,S0504_C03_120MA"}, "S0804_C05_047E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!OCCUPATION!!Production, transportation, and material moving occupations", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C05_047EA,S0804_C05_047M,S0804_C05_047MA"}, "S2702PR_C01_054E": {"label": "Estimate!!Total!!WORK EXPERIENCE!!Civilian noninstitutionalized population 16 to 64 years!!Did not work", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_054EA,S2702PR_C01_054M,S2702PR_C01_054MA"}, "S2419_C01_006E": {"label": "Estimate!!Median earnings (dollars)!!Full-time, year-round civilian employed population 16 years and over with earnings!!Local government workers", "concept": "Class of Worker by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2419", "limit": 0, "attributes": "S2419_C01_006EA,S2419_C01_006M,S2419_C01_006MA"}, "S0506_C03_008E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen!!Entered 2000 to 2009", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_008EA,S0506_C03_008M,S0506_C03_008MA"}, "S0804_C05_046E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!OCCUPATION!!Natural resources, construction, and maintenance occupations", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C05_046EA,S0804_C05_046M,S0804_C05_046MA"}, "S2419_C01_005E": {"label": "Estimate!!Median earnings (dollars)!!Full-time, year-round civilian employed population 16 years and over with earnings!!Private not-for-profit wage and salary workers", "concept": "Class of Worker by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2419", "limit": 0, "attributes": "S2419_C01_005EA,S2419_C01_005M,S2419_C01_005MA"}, "S2702PR_C01_053E": {"label": "Estimate!!Total!!WORK EXPERIENCE!!Civilian noninstitutionalized population 16 to 64 years!!Worked less than full-time, year round in the past 12 months", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_053EA,S2702PR_C01_053M,S2702PR_C01_053MA"}, "S0506_C03_007E": {"label": "Estimate!!Foreign-born; Born in Mexico!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen!!Entered 2010 or later", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C03_007EA,S0506_C03_007M,S0506_C03_007MA"}, "S0804_C05_029E": {"label": "Estimate!!Worked from home!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$1 to $9,999 or loss", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C05_029EA,S0804_C05_029M,S0804_C05_029MA"}, "S0502PR_C02_031E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_031EA,S0502PR_C02_031M,S0502PR_C02_031MA"}, "S0501_C04_088E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!Median earnings (dollars) for full-time, year-round workers!!Female", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C04_088EA,S0501_C04_088M,S0501_C04_088MA"}, "S0804_C05_028E": {"label": "Estimate!!Worked from home!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "int", "group": "S0804", "limit": 0, "attributes": "S0804_C05_028EA,S0804_C05_028M,S0804_C05_028MA"}, "S0502PR_C02_030E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_030EA,S0502PR_C02_030M,S0502PR_C02_030MA"}, "S0501_C04_087E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!Median earnings (dollars) for full-time, year-round workers!!Male", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C04_087EA,S0501_C04_087M,S0501_C04_087MA"}, "S0804_C05_027E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Speak language other than English!!Speak English less than \"very well\"", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C05_027EA,S0804_C05_027M,S0804_C05_027MA"}, "S0502PR_C02_033E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Foreign-born population!!HOUSEHOLD TYPE!!In married-couple family", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_033EA,S0502PR_C02_033M,S0502PR_C02_033MA"}, "S0804_C05_026E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Speak language other than English!!Speak English \"very well\"", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C05_026EA,S0804_C05_026M,S0804_C05_026MA"}, "S2101_C05_040E": {"label": "Estimate!!Nonveterans!!DISABILITY STATUS!!Civilian population 18 years and over for whom poverty status is determined!!Without a disability", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C05_040EA,S2101_C05_040M,S2101_C05_040MA"}, "S0502PR_C02_032E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_032EA,S0502PR_C02_032M,S0502PR_C02_032MA"}, "S0501_C04_089E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C04_089EA,S0501_C04_089M,S0501_C04_089MA"}, "S0501_C04_084E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$35,000 to $49,999", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_084EA,S0501_C04_084M,S0501_C04_084MA"}, "S0501_C04_083E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$25,000 to $34,999", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_083EA,S0501_C04_083M,S0501_C04_083MA"}, "S0501_C04_086E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$75,000 or more", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_086EA,S0501_C04_086M,S0501_C04_086MA"}, "S0501_C04_085E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$50,000 to $74,999", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_085EA,S0501_C04_085M,S0501_C04_085MA"}, "S2601A_C02_059E": {"label": "Estimate!!Total group quarters population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the U.S.!!Different county", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_059EA,S2601A_C02_059M,S2601A_C02_059MA"}, "S2601A_C02_058E": {"label": "Estimate!!Total group quarters population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the U.S.!!Same county", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_058EA,S2601A_C02_058M,S2601A_C02_058MA"}, "S2601A_C02_057E": {"label": "Estimate!!Total group quarters population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the U.S.", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_057EA,S2601A_C02_057M,S2601A_C02_057MA"}, "S2601A_C02_056E": {"label": "Estimate!!Total group quarters population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Same address", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_056EA,S2601A_C02_056M,S2601A_C02_056MA"}, "S2601A_C02_055E": {"label": "Estimate!!Total group quarters population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_055EA,S2601A_C02_055M,S2601A_C02_055MA"}, "S2601A_C02_054E": {"label": "Estimate!!Total group quarters population!!DISABILITY STATUS!!Population 65 years and over!!With a disability", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_054EA,S2601A_C02_054M,S2601A_C02_054MA"}, "S2601A_C02_053E": {"label": "Estimate!!Total group quarters population!!DISABILITY STATUS!!Population 65 years and over", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_053EA,S2601A_C02_053M,S2601A_C02_053MA"}, "S2419_C03_009E": {"label": "Estimate!!Median earnings (dollars) for female!!Full-time, year-round civilian employed population 16 years and over with earnings!!Self-employed in own not incorporated business workers and unpaid family workers", "concept": "Class of Worker by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2419", "limit": 0, "attributes": "S2419_C03_009EA,S2419_C03_009M,S2419_C03_009MA"}, "S2601A_C02_064E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Native", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_064EA,S2601A_C02_064M,S2601A_C02_064MA"}, "S2702PR_C01_048E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Civilian noninstitutionalized population 16 years and over!!In labor force!!Employed", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_048EA,S2702PR_C01_048M,S2702PR_C01_048MA"}, "S2702PR_C01_047E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Civilian noninstitutionalized population 16 years and over!!In labor force", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_047EA,S2702PR_C01_047M,S2702PR_C01_047MA"}, "S2601A_C02_063E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_063EA,S2601A_C02_063M,S2601A_C02_063MA"}, "S2702PR_C01_046E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Civilian noninstitutionalized population 16 years and over", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "int", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_046EA,S2702PR_C01_046M,S2702PR_C01_046MA"}, "S2601A_C02_062E": {"label": "Estimate!!Total group quarters population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Abroad", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_062EA,S2601A_C02_062M,S2601A_C02_062MA"}, "S2702PR_C01_045E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Civilian noninstitutionalized population 25 years and over!!Bachelor's degree or higher", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_045EA,S2702PR_C01_045M,S2702PR_C01_045MA"}, "S2601A_C02_061E": {"label": "Estimate!!Total group quarters population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the U.S.!!Different county!!Different state", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_061EA,S2601A_C02_061M,S2601A_C02_061MA"}, "S2602_C05_001E": {"label": "Estimate!!College/university housing!!Total population", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C05_001EA,S2602_C05_001M,S2602_C05_001MA"}, "S2101_C05_039E": {"label": "Estimate!!Nonveterans!!DISABILITY STATUS!!Civilian population 18 years and over for whom poverty status is determined!!With any disability", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C05_039EA,S2101_C05_039M,S2101_C05_039MA"}, "S2419_C03_005E": {"label": "Estimate!!Median earnings (dollars) for female!!Full-time, year-round civilian employed population 16 years and over with earnings!!Private not-for-profit wage and salary workers", "concept": "Class of Worker by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2419", "limit": 0, "attributes": "S2419_C03_005EA,S2419_C03_005M,S2419_C03_005MA"}, "S2601A_C02_060E": {"label": "Estimate!!Total group quarters population!!RESIDENCE 1 YEAR AGO!!Population 1 year and over!!Different address in the U.S.!!Different county!!Same state", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_060EA,S2601A_C02_060M,S2601A_C02_060MA"}, "S2101_C05_038E": {"label": "Estimate!!Nonveterans!!DISABILITY STATUS!!Civilian population 18 years and over for whom poverty status is determined", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C05_038EA,S2101_C05_038M,S2101_C05_038MA"}, "S2419_C03_006E": {"label": "Estimate!!Median earnings (dollars) for female!!Full-time, year-round civilian employed population 16 years and over with earnings!!Local government workers", "concept": "Class of Worker by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2419", "limit": 0, "attributes": "S2419_C03_006EA,S2419_C03_006M,S2419_C03_006MA"}, "S2419_C03_007E": {"label": "Estimate!!Median earnings (dollars) for female!!Full-time, year-round civilian employed population 16 years and over with earnings!!State government workers", "concept": "Class of Worker by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2419", "limit": 0, "attributes": "S2419_C03_007EA,S2419_C03_007M,S2419_C03_007MA"}, "S2201_C03_038E": {"label": "Estimate!!Households receiving food stamps/SNAP!!WORK STATUS!!Families!!2 or more workers in past 12 months", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C03_038EA,S2201_C03_038M,S2201_C03_038MA"}, "S0504_C03_139E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Occupied housing units!!SELECTED CHARACTERISTICS!!Limited English Speaking Households", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_139EA,S0504_C03_139M,S0504_C03_139MA"}, "S2419_C03_008E": {"label": "Estimate!!Median earnings (dollars) for female!!Full-time, year-round civilian employed population 16 years and over with earnings!!Federal government workers", "concept": "Class of Worker by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2419", "limit": 0, "attributes": "S2419_C03_008EA,S2419_C03_008M,S2419_C03_008MA"}, "S2201_C03_037E": {"label": "Estimate!!Households receiving food stamps/SNAP!!WORK STATUS!!Families!!1 worker in past 12 months", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C03_037EA,S2201_C03_037M,S2201_C03_037MA"}, "S0504_C03_138E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Occupied housing units!!SELECTED CHARACTERISTICS!!No telephone service available", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_138EA,S0504_C03_138M,S0504_C03_138MA"}, "S2702PR_C01_049E": {"label": "Estimate!!Total!!EMPLOYMENT STATUS!!Civilian noninstitutionalized population 16 years and over!!In labor force!!Unemployed", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_049EA,S2702PR_C01_049M,S2702PR_C01_049MA"}, "S2419_C03_001E": {"label": "Estimate!!Median earnings (dollars) for female!!Full-time, year-round civilian employed population 16 years and over with earnings", "concept": "Class of Worker by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2419", "limit": 0, "attributes": "S2419_C03_001EA,S2419_C03_001M,S2419_C03_001MA"}, "S0501_C04_080E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$1 to $9,999 or loss", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_080EA,S0501_C04_080M,S0501_C04_080MA"}, "S0504_C03_137E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Occupied housing units!!VEHICLES AVAILABLE!!1 or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_137EA,S0504_C03_137M,S0504_C03_137MA"}, "S2702PR_C01_040E": {"label": "Estimate!!Total!!RESIDENCE 1 YEAR AGO!!Civilian noninstitutionalized population 1 year and over!!Elsewhere", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_040EA,S2702PR_C01_040M,S2702PR_C01_040MA"}, "S0804_C05_033E": {"label": "Estimate!!Worked from home!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$35,000 to $49,999", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C05_033EA,S0804_C05_033M,S0804_C05_033MA"}, "S0502PR_C02_039E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_039EA,S0502PR_C02_039M,S0502PR_C02_039MA"}, "S2419_C03_002E": {"label": "Estimate!!Median earnings (dollars) for female!!Full-time, year-round civilian employed population 16 years and over with earnings!!Private for-profit wage and salary workers:", "concept": "Class of Worker by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2419", "limit": 0, "attributes": "S2419_C03_002EA,S2419_C03_002M,S2419_C03_002MA"}, "S0504_C03_136E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Occupied housing units!!VEHICLES AVAILABLE!!None", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_136EA,S0504_C03_136M,S0504_C03_136MA"}, "S0804_C05_032E": {"label": "Estimate!!Worked from home!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$25,000 to $34,999", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C05_032EA,S0804_C05_032M,S0804_C05_032MA"}, "S0502PR_C02_038E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_038EA,S0502PR_C02_038M,S0502PR_C02_038MA"}, "S2419_C03_003E": {"label": "Estimate!!Median earnings (dollars) for female!!Full-time, year-round civilian employed population 16 years and over with earnings!!Private for-profit wage and salary workers:!!Employee of private company workers", "concept": "Class of Worker by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2419", "limit": 0, "attributes": "S2419_C03_003EA,S2419_C03_003M,S2419_C03_003MA"}, "S0501_C04_082E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$15,000 to $24,999", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_082EA,S0501_C04_082M,S0501_C04_082MA"}, "S0504_C03_135E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Occupied housing units!!1.01 or more occupants per room", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_135EA,S0504_C03_135M,S0504_C03_135MA"}, "S0804_C05_031E": {"label": "Estimate!!Worked from home!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$15,000 to $24,999", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C05_031EA,S0804_C05_031M,S0804_C05_031MA"}, "S2419_C03_004E": {"label": "Estimate!!Median earnings (dollars) for female!!Full-time, year-round civilian employed population 16 years and over with earnings!!Private for-profit wage and salary workers:!!Self-employed in own incorporated business workers", "concept": "Class of Worker by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2419", "limit": 0, "attributes": "S2419_C03_004EA,S2419_C03_004M,S2419_C03_004MA"}, "S0501_C04_081E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$10,000 to $14,999", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_081EA,S0501_C04_081M,S0501_C04_081MA"}, "S0504_C03_134E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Occupied housing units!!Median number of rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_134EA,S0504_C03_134M,S0504_C03_134MA"}, "S0804_C05_030E": {"label": "Estimate!!Worked from home!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$10,000 to $14,999", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C05_030EA,S0804_C05_030M,S0804_C05_030MA"}, "S2702PR_C01_044E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Civilian noninstitutionalized population 25 years and over!!Some college or associate's degree", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_044EA,S2702PR_C01_044M,S2702PR_C01_044MA"}, "S0804_C05_037E": {"label": "Estimate!!Worked from home!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!Median earnings (dollars)", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "int", "group": "S0804", "limit": 0, "attributes": "S0804_C05_037EA,S0804_C05_037M,S0804_C05_037MA"}, "S0502PR_C02_035E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Foreign-born population!!Average household size", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_035EA,S0502PR_C02_035M,S0502PR_C02_035MA"}, "S0504_C03_133E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Occupied housing units!!ROOMS!!8 or more rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_133EA,S0504_C03_133M,S0504_C03_133MA"}, "S0804_C05_036E": {"label": "Estimate!!Worked from home!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$75,000 or more", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C05_036EA,S0804_C05_036M,S0804_C05_036MA"}, "S0502PR_C02_034E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Foreign-born population!!HOUSEHOLD TYPE!!In other households", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_034EA,S0502PR_C02_034M,S0502PR_C02_034MA"}, "S2702PR_C01_043E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Civilian noninstitutionalized population 25 years and over!!High school graduate (includes equivalency)", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_043EA,S2702PR_C01_043M,S2702PR_C01_043MA"}, "S0504_C03_132E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Occupied housing units!!ROOMS!!6 or 7 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_132EA,S0504_C03_132M,S0504_C03_132MA"}, "S0804_C05_035E": {"label": "Estimate!!Worked from home!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$65,000 to $74,999", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C05_035EA,S0804_C05_035M,S0804_C05_035MA"}, "S2702PR_C01_042E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Civilian noninstitutionalized population 25 years and over!!Less than high school graduate", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_042EA,S2702PR_C01_042M,S2702PR_C01_042MA"}, "S0502PR_C02_037E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!MARITAL STATUS!!Population 15 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_037EA,S0502PR_C02_037M,S0502PR_C02_037MA"}, "S0504_C03_131E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Occupied housing units!!ROOMS!!4 or 5 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_131EA,S0504_C03_131M,S0504_C03_131MA"}, "S0804_C05_034E": {"label": "Estimate!!Worked from home!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR WORKERS!!Workers 16 years and over with earnings!!$50,000 to $64,999", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C05_034EA,S0804_C05_034M,S0804_C05_034MA"}, "S2702PR_C01_041E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Civilian noninstitutionalized population 25 years and over", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "int", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_041EA,S2702PR_C01_041M,S2702PR_C01_041MA"}, "S0502PR_C02_036E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Foreign-born population!!Average family size", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_036EA,S0502PR_C02_036M,S0502PR_C02_036MA"}, "S0504_C03_130E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Occupied housing units!!ROOMS!!2 or 3 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_130EA,S0504_C03_130M,S0504_C03_130MA"}, "S0804_C05_017E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C05_017EA,S0804_C05_017M,S0804_C05_017MA"}, "S0501_C04_076E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!Civilian employed population 16 years and over!!INDUSTRY!!Arts, entertainment, and recreation, and accommodation and food services", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_076EA,S0501_C04_076M,S0501_C04_076MA"}, "S0502PR_C02_043E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Nursery school, preschool", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_043EA,S0502PR_C02_043M,S0502PR_C02_043MA"}, "S0504_C03_141E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_141EA,S0504_C03_141M,S0504_C03_141MA"}, "S0804_C05_016E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C05_016EA,S0804_C05_016M,S0804_C05_016MA"}, "S0501_C04_075E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!Civilian employed population 16 years and over!!INDUSTRY!!Educational services, and health care and social assistance", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_075EA,S0501_C04_075M,S0501_C04_075MA"}, "S0502PR_C02_042E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_042EA,S0502PR_C02_042M,S0502PR_C02_042MA"}, "S0504_C03_140E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Owner-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C03_140EA,S0504_C03_140M,S0504_C03_140MA"}, "S0804_C05_015E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C05_015EA,S0804_C05_015M,S0804_C05_015MA"}, "S0502PR_C02_045E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!High school (grades 9-12)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_045EA,S0502PR_C02_045M,S0502PR_C02_045MA"}, "S0501_C04_078E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!Civilian employed population 16 years and over!!INDUSTRY!!Public administration", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_078EA,S0501_C04_078M,S0501_C04_078MA"}, "S0804_C05_014E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C05_014EA,S0804_C05_014M,S0804_C05_014MA"}, "S0501_C04_077E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!Civilian employed population 16 years and over!!INDUSTRY!!Other services (except public administration)", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_077EA,S0501_C04_077M,S0501_C04_077MA"}, "S0502PR_C02_044E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Elementary school (grades K-8)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_044EA,S0502PR_C02_044M,S0502PR_C02_044MA"}, "S0501_C04_072E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!Civilian employed population 16 years and over!!INDUSTRY!!Information", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_072EA,S0501_C04_072M,S0501_C04_072MA"}, "S0501_C04_071E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!Civilian employed population 16 years and over!!INDUSTRY!!Transportation and warehousing, and utilities", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_071EA,S0501_C04_071M,S0501_C04_071MA"}, "S0804_C05_019E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C05_019EA,S0804_C05_019M,S0804_C05_019MA"}, "S0502PR_C02_041E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_041EA,S0502PR_C02_041M,S0502PR_C02_041MA"}, "S0501_C04_074E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!Civilian employed population 16 years and over!!INDUSTRY!!Professional, scientific, and management, and administrative and waste management services", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_074EA,S0501_C04_074M,S0501_C04_074MA"}, "S0804_C05_018E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C05_018EA,S0804_C05_018M,S0804_C05_018MA"}, "S0501_C04_073E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!Civilian employed population 16 years and over!!INDUSTRY!!Finance and insurance, and real estate and rental and leasing", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_073EA,S0501_C04_073M,S0501_C04_073MA"}, "S0502PR_C02_040E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!MARITAL STATUS!!Population 15 years and over!!Divorced or separated", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_040EA,S0502PR_C02_040M,S0502PR_C02_040MA"}, "S1501_C03_008E": {"label": "Estimate!!Male!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 years and over!!9th to 12th grade, no diploma", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C03_008EA,S1501_C03_008M,S1501_C03_008MA"}, "S2101_C05_035E": {"label": "Estimate!!Nonveterans!!POVERTY STATUS IN THE PAST 12 MONTHS!!Civilian population 18 years and over for whom poverty status is determined", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C05_035EA,S2101_C05_035M,S2101_C05_035MA"}, "S2405_C04_015E": {"label": "Estimate!!Sales and office occupations!!PERCENT ALLOCATED!!Industry", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2405", "limit": 0, "attributes": "S2405_C04_015EA,S2405_C04_015M,S2405_C04_015MA"}, "S2901_C01_025E": {"label": "Estimate!!Total!!Citizens 18 years and over!!EDUCATIONAL ATTAINMENT!!Bachelor's degree or higher", "concept": "Citizen, Voting-Age Population by Selected Characteristics", "predicateType": "int", "group": "S2901", "limit": 0, "attributes": "S2901_C01_025EA,S2901_C01_025M,S2901_C01_025MA"}, "S2602_C05_005E": {"label": "Estimate!!College/university housing!!Total population!!SEX AND AGE!!15 to 17 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C05_005EA,S2602_C05_005M,S2602_C05_005MA"}, "S2101_C05_034E": {"label": "Estimate!!Nonveterans!!EMPLOYMENT STATUS!!Civilian labor force 18 to 64 years!!Unemployment rate", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C05_034EA,S2101_C05_034M,S2101_C05_034MA"}, "S1501_C03_009E": {"label": "Estimate!!Male!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate (includes equivalency)", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C03_009EA,S1501_C03_009M,S1501_C03_009MA"}, "S2405_C04_014E": {"label": "Estimate!!Sales and office occupations!!Civilian employed population 16 years and over!!Public administration", "concept": "Industry by Occupation for the Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2405", "limit": 0, "attributes": "S2405_C04_014EA,S2405_C04_014M,S2405_C04_014MA"}, "S2901_C01_024E": {"label": "Estimate!!Total!!Citizens 18 years and over!!EDUCATIONAL ATTAINMENT!!High school degree or higher", "concept": "Citizen, Voting-Age Population by Selected Characteristics", "predicateType": "int", "group": "S2901", "limit": 0, "attributes": "S2901_C01_024EA,S2901_C01_024M,S2901_C01_024MA"}, "S2602_C05_004E": {"label": "Estimate!!College/university housing!!Total population!!SEX AND AGE!!Under 15 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C05_004EA,S2602_C05_004M,S2602_C05_004MA"}, "S2101_C05_037E": {"label": "Estimate!!Nonveterans!!POVERTY STATUS IN THE PAST 12 MONTHS!!Civilian population 18 years and over for whom poverty status is determined!!Income in the past 12 months at or above poverty level", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C05_037EA,S2101_C05_037M,S2101_C05_037MA"}, "S2901_C01_023E": {"label": "Estimate!!Total!!Citizens 18 years and over!!EDUCATIONAL ATTAINMENT!!Graduate or professional degree", "concept": "Citizen, Voting-Age Population by Selected Characteristics", "predicateType": "int", "group": "S2901", "limit": 0, "attributes": "S2901_C01_023EA,S2901_C01_023M,S2901_C01_023MA"}, "S2602_C05_003E": {"label": "Estimate!!College/university housing!!Total population!!SEX AND AGE!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C05_003EA,S2602_C05_003M,S2602_C05_003MA"}, "S2602_C05_002E": {"label": "Estimate!!College/university housing!!Total population!!SEX AND AGE!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C05_002EA,S2602_C05_002M,S2602_C05_002MA"}, "S2101_C05_036E": {"label": "Estimate!!Nonveterans!!POVERTY STATUS IN THE PAST 12 MONTHS!!Civilian population 18 years and over for whom poverty status is determined!!Income in the past 12 months below poverty level", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C05_036EA,S2101_C05_036M,S2101_C05_036MA"}, "S2601A_C02_069E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Female", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_069EA,S2601A_C02_069M,S2601A_C02_069MA"}, "S2901_C01_022E": {"label": "Estimate!!Total!!Citizens 18 years and over!!EDUCATIONAL ATTAINMENT!!Bachelor's degree", "concept": "Citizen, Voting-Age Population by Selected Characteristics", "predicateType": "int", "group": "S2901", "limit": 0, "attributes": "S2901_C01_022EA,S2901_C01_022M,S2901_C01_022MA"}, "S2901_C01_029E": {"label": "Estimate!!Total!!Citizens 18 years and over!!HOUSEHOLD INCOME (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Median Household Income for Households with a Citizen, Voting-Age Householder", "concept": "Citizen, Voting-Age Population by Selected Characteristics", "predicateType": "int", "group": "S2901", "limit": 0, "attributes": "S2901_C01_029EA,S2901_C01_029M,S2901_C01_029MA"}, "S2101_C05_031E": {"label": "Estimate!!Nonveterans!!EMPLOYMENT STATUS!!Civilian population 18 to 64 years", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C05_031EA,S2101_C05_031M,S2101_C05_031MA"}, "S2601A_C02_068E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Male", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_068EA,S2601A_C02_068M,S2601A_C02_068MA"}, "S1501_C03_004E": {"label": "Estimate!!Male!!AGE BY EDUCATIONAL ATTAINMENT!!Population 18 to 24 years!!Some college or associate's degree", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C03_004EA,S1501_C03_004M,S1501_C03_004MA"}, "S2602_C05_009E": {"label": "Estimate!!College/university housing!!Total population!!SEX AND AGE!!45 to 54 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C05_009EA,S2602_C05_009M,S2602_C05_009MA"}, "S2901_C01_028E": {"label": "Estimate!!Total!!Citizens 18 years and over!!POVERTY STATUS!!Income in the past 12 months at or above the poverty level", "concept": "Citizen, Voting-Age Population by Selected Characteristics", "predicateType": "int", "group": "S2901", "limit": 0, "attributes": "S2901_C01_028EA,S2901_C01_028M,S2901_C01_028MA"}, "S2101_C05_030E": {"label": "Estimate!!Nonveterans!!EDUCATIONAL ATTAINMENT!!Civilian population 25 years and over!!Bachelor's degree or higher", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C05_030EA,S2101_C05_030M,S2101_C05_030MA"}, "S0501_C04_079E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C04_079EA,S0501_C04_079M,S0501_C04_079MA"}, "S2601A_C02_067E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_067EA,S2601A_C02_067M,S2601A_C02_067MA"}, "S2602_C05_008E": {"label": "Estimate!!College/university housing!!Total population!!SEX AND AGE!!35 to 44 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C05_008EA,S2602_C05_008M,S2602_C05_008MA"}, "S1501_C03_005E": {"label": "Estimate!!Male!!AGE BY EDUCATIONAL ATTAINMENT!!Population 18 to 24 years!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C03_005EA,S1501_C03_005M,S1501_C03_005MA"}, "S2901_C01_027E": {"label": "Estimate!!Total!!Citizens 18 years and over!!POVERTY STATUS!!Income in the past 12 months below poverty level", "concept": "Citizen, Voting-Age Population by Selected Characteristics", "predicateType": "int", "group": "S2901", "limit": 0, "attributes": "S2901_C01_027EA,S2901_C01_027M,S2901_C01_027MA"}, "S1501_C03_006E": {"label": "Estimate!!Male!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C03_006EA,S1501_C03_006M,S1501_C03_006MA"}, "S2101_C05_033E": {"label": "Estimate!!Nonveterans!!EMPLOYMENT STATUS!!Civilian labor force 18 to 64 years", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C05_033EA,S2101_C05_033M,S2101_C05_033MA"}, "S2601A_C02_066E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Native!!Female", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_066EA,S2601A_C02_066M,S2601A_C02_066MA"}, "S2602_C05_007E": {"label": "Estimate!!College/university housing!!Total population!!SEX AND AGE!!25 to 34 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C05_007EA,S2602_C05_007M,S2602_C05_007MA"}, "S1501_C03_007E": {"label": "Estimate!!Male!!AGE BY EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than 9th grade", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C03_007EA,S1501_C03_007M,S1501_C03_007MA"}, "S2101_C05_032E": {"label": "Estimate!!Nonveterans!!EMPLOYMENT STATUS!!Civilian population 18 to 64 years!!Labor force participation rate", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C05_032EA,S2101_C05_032M,S2101_C05_032MA"}, "S2601A_C02_065E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Native!!Male", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_065EA,S2601A_C02_065M,S2601A_C02_065MA"}, "S2901_C01_026E": {"label": "Estimate!!Total!!Citizens 18 years and over!!POVERTY STATUS!!Total Citizens, 18 years and older, for whom poverty status is determined", "concept": "Citizen, Voting-Age Population by Selected Characteristics", "predicateType": "int", "group": "S2901", "limit": 0, "attributes": "S2901_C01_026EA,S2901_C01_026M,S2901_C01_026MA"}, "S2602_C05_006E": {"label": "Estimate!!College/university housing!!Total population!!SEX AND AGE!!18 to 24 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C05_006EA,S2602_C05_006M,S2602_C05_006MA"}, "S2702PR_C01_036E": {"label": "Estimate!!Total!!RESIDENCE 1 YEAR AGO!!Civilian noninstitutionalized population 1 year and over!!Different House in Puerto Rico or the United States!!In Puerto Rico", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_036EA,S2702PR_C01_036M,S2702PR_C01_036MA"}, "S2601A_C02_076E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Entered 2010 or later", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_076EA,S2601A_C02_076M,S2601A_C02_076MA"}, "S2702PR_C01_035E": {"label": "Estimate!!Total!!RESIDENCE 1 YEAR AGO!!Civilian noninstitutionalized population 1 year and over!!Different House in Puerto Rico or the United States", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_035EA,S2702PR_C01_035M,S2702PR_C01_035MA"}, "S2601A_C02_075E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Not a U.S. citizen!!Female", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_075EA,S2601A_C02_075M,S2601A_C02_075MA"}, "S1501_C03_001E": {"label": "Estimate!!Male!!AGE BY EDUCATIONAL ATTAINMENT!!Population 18 to 24 years", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C03_001EA,S1501_C03_001M,S1501_C03_001MA"}, "S1601_C01_023E": {"label": "Estimate!!Total!!CITIZENS 18 YEARS AND OVER!!All citizens 18 years old and over!!Speak a language other than English!!Spanish", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C01_023EA,S1601_C01_023M,S1601_C01_023MA"}, "S0901_C03_008E": {"label": "Estimate!!In male householder, no spouse present, family household!!Children under 18 years in households!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C03_008EA,S0901_C03_008M,S0901_C03_008MA"}, "S2702PR_C01_034E": {"label": "Estimate!!Total!!RESIDENCE 1 YEAR AGO!!Civilian noninstitutionalized population 1 year and over!!Same house", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_034EA,S2702PR_C01_034M,S2702PR_C01_034MA"}, "S1501_C03_002E": {"label": "Estimate!!Male!!AGE BY EDUCATIONAL ATTAINMENT!!Population 18 to 24 years!!Less than high school graduate", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C03_002EA,S1501_C03_002M,S1501_C03_002MA"}, "S2601A_C02_074E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Not a U.S. citizen!!Male", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_074EA,S2601A_C02_074M,S2601A_C02_074MA"}, "S1601_C01_024E": {"label": "Estimate!!Total!!CITIZENS 18 YEARS AND OVER!!All citizens 18 years old and over!!Speak a language other than English!!Other languages", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C01_024EA,S1601_C01_024M,S1601_C01_024MA"}, "S2702PR_C01_033E": {"label": "Estimate!!Total!!RESIDENCE 1 YEAR AGO!!Civilian noninstitutionalized population 1 year and over", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "int", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_033EA,S2702PR_C01_033M,S2702PR_C01_033MA"}, "S0901_C03_009E": {"label": "Estimate!!In male householder, no spouse present, family household!!Children under 18 years in households!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C03_009EA,S0901_C03_009M,S0901_C03_009MA"}, "S1501_C03_003E": {"label": "Estimate!!Male!!AGE BY EDUCATIONAL ATTAINMENT!!Population 18 to 24 years!!High school graduate (includes equivalency)", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C03_003EA,S1501_C03_003M,S1501_C03_003MA"}, "S2601A_C02_073E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Not a U.S. citizen", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_073EA,S2601A_C02_073M,S2601A_C02_073MA"}, "S2101_C05_027E": {"label": "Estimate!!Nonveterans!!EDUCATIONAL ATTAINMENT!!Civilian population 25 years and over!!Less than high school graduate", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C05_027EA,S2101_C05_027M,S2101_C05_027MA"}, "S2602_C05_013E": {"label": "Estimate!!College/university housing!!Total population!!SEX AND AGE!!85 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C05_013EA,S2602_C05_013M,S2602_C05_013MA"}, "S1601_C01_021E": {"label": "Estimate!!Total!!CITIZENS 18 YEARS AND OVER!!All citizens 18 years old and over!!Speak only English", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C01_021EA,S1601_C01_021M,S1601_C01_021MA"}, "S0901_C03_006E": {"label": "Estimate!!In male householder, no spouse present, family household!!Children under 18 years in households!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C03_006EA,S0901_C03_006M,S0901_C03_006MA"}, "S2601A_C02_072E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Naturalized U.S. citizen!!Female", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_072EA,S2601A_C02_072M,S2601A_C02_072MA"}, "S2602_C05_012E": {"label": "Estimate!!College/university housing!!Total population!!SEX AND AGE!!75 to 84 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C05_012EA,S2602_C05_012M,S2602_C05_012MA"}, "S2101_C05_026E": {"label": "Estimate!!Nonveterans!!EDUCATIONAL ATTAINMENT!!Civilian population 25 years and over", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C05_026EA,S2101_C05_026M,S2101_C05_026MA"}, "S1601_C01_022E": {"label": "Estimate!!Total!!CITIZENS 18 YEARS AND OVER!!All citizens 18 years old and over!!Speak a language other than English", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C01_022EA,S1601_C01_022M,S1601_C01_022MA"}, "S0901_C03_007E": {"label": "Estimate!!In male householder, no spouse present, family household!!Children under 18 years in households!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C03_007EA,S0901_C03_007M,S0901_C03_007MA"}, "S2702PR_C01_039E": {"label": "Estimate!!Total!!RESIDENCE 1 YEAR AGO!!Civilian noninstitutionalized population 1 year and over!!Different House in Puerto Rico or the United States!!Same municipio!!In the United States", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_039EA,S2702PR_C01_039M,S2702PR_C01_039MA"}, "S2601A_C02_071E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Naturalized U.S. citizen!!Male", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_071EA,S2601A_C02_071M,S2601A_C02_071MA"}, "S2101_C05_029E": {"label": "Estimate!!Nonveterans!!EDUCATIONAL ATTAINMENT!!Civilian population 25 years and over!!Some college or associate's degree", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C05_029EA,S2101_C05_029M,S2101_C05_029MA"}, "S2602_C05_011E": {"label": "Estimate!!College/university housing!!Total population!!SEX AND AGE!!65 to 74 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C05_011EA,S2602_C05_011M,S2602_C05_011MA"}, "S0901_C03_004E": {"label": "Estimate!!In male householder, no spouse present, family household!!Children under 18 years in households!!AGE!!12 to 17 years", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C03_004EA,S0901_C03_004M,S0901_C03_004MA"}, "S2702PR_C01_038E": {"label": "Estimate!!Total!!RESIDENCE 1 YEAR AGO!!Civilian noninstitutionalized population 1 year and over!!Different House in Puerto Rico or the United States!!Same municipio!!Different municipio", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_038EA,S2702PR_C01_038M,S2702PR_C01_038MA"}, "S2601A_C02_070E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Naturalized U.S. citizen", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_070EA,S2601A_C02_070M,S2601A_C02_070MA"}, "S2602_C05_010E": {"label": "Estimate!!College/university housing!!Total population!!SEX AND AGE!!55 to 64 years", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C05_010EA,S2602_C05_010M,S2602_C05_010MA"}, "S2101_C05_028E": {"label": "Estimate!!Nonveterans!!EDUCATIONAL ATTAINMENT!!Civilian population 25 years and over!!High school graduate (includes equivalency)", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C05_028EA,S2101_C05_028M,S2101_C05_028MA"}, "S0901_C03_005E": {"label": "Estimate!!In male householder, no spouse present, family household!!Children under 18 years in households!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C03_005EA,S0901_C03_005M,S0901_C03_005MA"}, "S1601_C01_020E": {"label": "Estimate!!Total!!CITIZENS 18 YEARS AND OVER!!All citizens 18 years old and over", "concept": "Language Spoken at Home", "predicateType": "int", "group": "S1601", "limit": 0, "attributes": "S1601_C01_020EA,S1601_C01_020M,S1601_C01_020MA"}, "S2702PR_C01_037E": {"label": "Estimate!!Total!!RESIDENCE 1 YEAR AGO!!Civilian noninstitutionalized population 1 year and over!!Different House in Puerto Rico or the United States!!Same municipio", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_037EA,S2702PR_C01_037M,S2702PR_C01_037MA"}, "S0901_C03_002E": {"label": "Estimate!!In male householder, no spouse present, family household!!Children under 18 years in households!!AGE!!Under 6 years", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C03_002EA,S0901_C03_002M,S0901_C03_002MA"}, "S0804_C05_021E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!NATIVITY AND CITIZENSHIP STATUS!!Native", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C05_021EA,S0804_C05_021M,S0804_C05_021MA"}, "S0901_C03_003E": {"label": "Estimate!!In male householder, no spouse present, family household!!Children under 18 years in households!!AGE!!6 to 11 years", "concept": "Children Characteristics", "predicateType": "float", "group": "S0901", "limit": 0, "attributes": "S0901_C03_003EA,S0901_C03_003M,S0901_C03_003MA"}, "S0804_C05_020E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino origin", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C05_020EA,S0804_C05_020M,S0804_C05_020MA"}, "S0501_C04_070E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!Civilian employed population 16 years and over!!INDUSTRY!!Retail trade", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_070EA,S0501_C04_070M,S0501_C04_070MA"}, "S0901_C03_001E": {"label": "Estimate!!In male householder, no spouse present, family household!!Children under 18 years in households", "concept": "Children Characteristics", "predicateType": "int", "group": "S0901", "limit": 0, "attributes": "S0901_C03_001EA,S0901_C03_001M,S0901_C03_001MA"}, "S0504_C03_145E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_145EA,S0504_C03_145M,S0504_C03_145MA"}, "S0804_C05_025E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Speak language other than English", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C05_025EA,S0804_C05_025M,S0804_C05_025MA"}, "S2702PR_C01_032E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!DISABILITY STATUS!!No disability", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_032EA,S2702PR_C01_032M,S2702PR_C01_032MA"}, "S0502PR_C02_047E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_047EA,S0502PR_C02_047M,S0502PR_C02_047MA"}, "S0804_C05_024E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born!!Not a U.S. citizen", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C05_024EA,S0804_C05_024M,S0804_C05_024MA"}, "S0502PR_C02_046E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!College or graduate school", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_046EA,S0502PR_C02_046M,S0502PR_C02_046MA"}, "S2702PR_C01_031E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!DISABILITY STATUS!!With a disability", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_031EA,S2702PR_C01_031M,S2702PR_C01_031MA"}, "S0504_C03_144E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_144EA,S0504_C03_144M,S0504_C03_144MA"}, "S0804_C05_023E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born!!Naturalized U.S. citizen", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C05_023EA,S0804_C05_023M,S0804_C05_023MA"}, "S2702PR_C01_030E": {"label": "Estimate!!Total!!Total civilian noninstitutionalized population!!NATIVITY AND U.S. CITIZENSHIP STATUS!!Foreign born!!Not a citizen", "concept": "Selected Characteristics of the Uninsured in Puerto Rico", "predicateType": "float", "group": "S2702PR", "limit": 0, "attributes": "S2702PR_C01_030EA,S2702PR_C01_030M,S2702PR_C01_030MA"}, "S0502PR_C02_049E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate (includes equivalency)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_049EA,S0502PR_C02_049M,S0502PR_C02_049MA"}, "S0504_C03_143E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Renter-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "int", "group": "S0504", "limit": 0, "attributes": "S0504_C03_143EA,S0504_C03_143M,S0504_C03_143MA"}, "S0804_C05_022E": {"label": "Estimate!!Worked from home!!Workers 16 years and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born", "concept": "Means of Transportation to Work by Selected Characteristics for Workplace Geography", "predicateType": "float", "group": "S0804", "limit": 0, "attributes": "S0804_C05_022EA,S0804_C05_022M,S0804_C05_022MA"}, "S0502PR_C02_048E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than high school graduate", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_048EA,S0502PR_C02_048M,S0502PR_C02_048MA"}, "S0504_C03_142E": {"label": "Estimate!!Foreign-born; Born in Northern America!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Africa, Northern America, and Oceania", "predicateType": "float", "group": "S0504", "limit": 0, "attributes": "S0504_C03_142EA,S0504_C03_142M,S0504_C03_142MA"}, "S1810_C03_035E": {"label": "Estimate!!Percent with a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a vision difficulty!!Population 18 to 64 years!!Population 35 to 64 years", "concept": "Disability Characteristics", "predicateType": "float", "group": "S1810", "limit": 0, "attributes": "S1810_C03_035EA,S1810_C03_035M,S1810_C03_035MA"}, "S1001_C01_026E": {"label": "Estimate!!Total!!Grandchildren under 18 years living with a grandparent householder in occupied housing units!!UNITS IN STRUCTURE!!In 2-or-more-unit structures", "concept": "Grandchildren Characteristics", "predicateType": "float", "group": "S1001", "limit": 0, "attributes": "S1001_C01_026EA,S1001_C01_026M,S1001_C01_026MA"}, "S1502_C06_015E": {"label": "Estimate!!Percent Female!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!40 to 64 years!!Science and Engineering Related Fields", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "float", "group": "S1502", "limit": 0, "attributes": "S1502_C06_015EA,S1502_C06_015M,S1502_C06_015MA"}, "S1201_C04_025E": {"label": "Estimate!!Divorced!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C04_025EA,S1201_C04_025M,S1201_C04_025MA"}, "S1810_C03_034E": {"label": "Estimate!!Percent with a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a vision difficulty!!Population 18 to 64 years!!Population 18 to 34 years", "concept": "Disability Characteristics", "predicateType": "float", "group": "S1810", "limit": 0, "attributes": "S1810_C03_034EA,S1810_C03_034M,S1810_C03_034MA"}, "S1001_C01_025E": {"label": "Estimate!!Total!!Grandchildren under 18 years living with a grandparent householder in occupied housing units!!UNITS IN STRUCTURE!!In 1-unit structures", "concept": "Grandchildren Characteristics", "predicateType": "float", "group": "S1001", "limit": 0, "attributes": "S1001_C01_025EA,S1001_C01_025M,S1001_C01_025MA"}, "S1502_C06_014E": {"label": "Estimate!!Percent Female!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!40 to 64 years!!Science and Engineering", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "float", "group": "S1502", "limit": 0, "attributes": "S1502_C06_014EA,S1502_C06_014M,S1502_C06_014MA"}, "S1201_C04_024E": {"label": "Estimate!!Divorced!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C04_024EA,S1201_C04_024M,S1201_C04_024MA"}, "S1810_C03_037E": {"label": "Estimate!!Percent with a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a vision difficulty!!Population 65 years and over!!Population 65 to 74 years", "concept": "Disability Characteristics", "predicateType": "float", "group": "S1810", "limit": 0, "attributes": "S1810_C03_037EA,S1810_C03_037M,S1810_C03_037MA"}, "S1201_C04_027E": {"label": "Estimate!!Divorced!!LABOR FORCE PARTICIPATION!!Males 16 years and over", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C04_027EA,S1201_C04_027M,S1201_C04_027MA"}, "S1502_C06_013E": {"label": "Estimate!!Percent Female!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!40 to 64 years", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C06_013EA,S1502_C06_013M,S1502_C06_013MA"}, "S1502_C06_012E": {"label": "Estimate!!Percent Female!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!25 to 39 years!!Arts, Humanities, and Others", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "float", "group": "S1502", "limit": 0, "attributes": "S1502_C06_012EA,S1502_C06_012M,S1502_C06_012MA"}, "S1810_C03_036E": {"label": "Estimate!!Percent with a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a vision difficulty!!Population 65 years and over", "concept": "Disability Characteristics", "predicateType": "float", "group": "S1810", "limit": 0, "attributes": "S1810_C03_036EA,S1810_C03_036M,S1810_C03_036MA"}, "S0505_C02_009E": {"label": "Estimate!!Foreign-born; Born in Asia!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen!!Entered before 2000", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_009EA,S0505_C02_009M,S0505_C02_009MA"}, "S1201_C04_026E": {"label": "Estimate!!Divorced!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C04_026EA,S1201_C04_026M,S1201_C04_026MA"}, "S1001_C01_027E": {"label": "Estimate!!Total!!Grandchildren under 18 years living with a grandparent householder in occupied housing units!!UNITS IN STRUCTURE!!In mobile homes and all other types of units", "concept": "Grandchildren Characteristics", "predicateType": "float", "group": "S1001", "limit": 0, "attributes": "S1001_C01_027EA,S1001_C01_027M,S1001_C01_027MA"}, "S1502_C06_011E": {"label": "Estimate!!Percent Female!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!25 to 39 years!!Education", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "float", "group": "S1502", "limit": 0, "attributes": "S1502_C06_011EA,S1502_C06_011M,S1502_C06_011MA"}, "S1903_C01_011E": {"label": "Estimate!!Number!!HOUSEHOLD INCOME BY AGE OF HOUSEHOLDER!!15 to 24 years", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C01_011EA,S1903_C01_011M,S1903_C01_011MA"}, "S1001_C01_022E": {"label": "Estimate!!Total!!Grandchildren under 18 years living with a grandparent householder in occupied housing units", "concept": "Grandchildren Characteristics", "predicateType": "int", "group": "S1001", "limit": 0, "attributes": "S1001_C01_022EA,S1001_C01_022M,S1001_C01_022MA"}, "S1810_C03_039E": {"label": "Estimate!!Percent with a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a cognitive difficulty", "concept": "Disability Characteristics", "predicateType": "float", "group": "S1810", "limit": 0, "attributes": "S1810_C03_039EA,S1810_C03_039M,S1810_C03_039MA"}, "S1201_C04_029E": {"label": "Estimate!!Divorced!!LABOR FORCE PARTICIPATION!!Females 16 years and over", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C04_029EA,S1201_C04_029M,S1201_C04_029MA"}, "S1502_C06_010E": {"label": "Estimate!!Percent Female!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!25 to 39 years!!Business", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "float", "group": "S1502", "limit": 0, "attributes": "S1502_C06_010EA,S1502_C06_010M,S1502_C06_010MA"}, "S1903_C01_010E": {"label": "Estimate!!Number!!HOUSEHOLD INCOME BY RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Households!!White alone, not Hispanic or Latino", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C01_010EA,S1903_C01_010M,S1903_C01_010MA"}, "S1001_C01_021E": {"label": "Estimate!!Total!!Grandchildren under 18 years living with a grandparent householder!!POVERTY STATUS IN THE PAST 12 MONTHS!!Income in the past 12 months at or above poverty level", "concept": "Grandchildren Characteristics", "predicateType": "float", "group": "S1001", "limit": 0, "attributes": "S1001_C01_021EA,S1001_C01_021M,S1001_C01_021MA"}, "S1810_C03_038E": {"label": "Estimate!!Percent with a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a vision difficulty!!Population 65 years and over!!Population 75 years and over", "concept": "Disability Characteristics", "predicateType": "float", "group": "S1810", "limit": 0, "attributes": "S1810_C03_038EA,S1810_C03_038M,S1810_C03_038MA"}, "S1201_C04_028E": {"label": "Estimate!!Divorced!!LABOR FORCE PARTICIPATION!!Males 16 years and over!!In labor force", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C04_028EA,S1201_C04_028M,S1201_C04_028MA"}, "S2002_C03_018E": {"label": "Estimate!!Female!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Management occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C03_018EA,S2002_C03_018M,S2002_C03_018MA"}, "S1001_C01_024E": {"label": "Estimate!!Total!!Grandchildren under 18 years living with a grandparent householder in occupied housing units!!HOUSING TENURE!!In renter-occupied housing units", "concept": "Grandchildren Characteristics", "predicateType": "float", "group": "S1001", "limit": 0, "attributes": "S1001_C01_024EA,S1001_C01_024M,S1001_C01_024MA"}, "S1002_C04_020E": {"label": "Estimate!!60 years and over!!Percent distribution of grandparents responsible for grandchildren!!Grandparents living with own grandchildren under 18 years!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Speak other language!!Speak English \"very well\"", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C04_020EA,S1002_C04_020M,S1002_C04_020MA"}, "S2002_C03_019E": {"label": "Estimate!!Female!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings!!OCCUPATION!!Business and financial operations occupations", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C03_019EA,S2002_C03_019M,S2002_C03_019MA"}, "S1001_C01_023E": {"label": "Estimate!!Total!!Grandchildren under 18 years living with a grandparent householder in occupied housing units!!HOUSING TENURE!!In owner-occupied housing units", "concept": "Grandchildren Characteristics", "predicateType": "float", "group": "S1001", "limit": 0, "attributes": "S1001_C01_023EA,S1001_C01_023M,S1001_C01_023MA"}, "S2002_C03_016E": {"label": "Estimate!!Female!!Median earnings (dollars)!!EDUCATIONAL ATTAINMENT!!Population 25 years and over with earnings!!Graduate or professional degree", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C03_016EA,S2002_C03_016M,S2002_C03_016MA"}, "S0501_C04_024E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!Total population!!HOUSEHOLD TYPE!!In married-couple family", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_024EA,S0501_C04_024M,S0501_C04_024MA"}, "S2201_C03_024E": {"label": "Estimate!!Households receiving food stamps/SNAP!!Households!!DISABILITY STATUS!!With no persons with a disability", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C03_024EA,S2201_C03_024M,S2201_C03_024MA"}, "S2201_C03_023E": {"label": "Estimate!!Households receiving food stamps/SNAP!!Households!!DISABILITY STATUS!!With one or more people with a disability", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C03_023EA,S2201_C03_023M,S2201_C03_023MA"}, "S2002_C03_017E": {"label": "Estimate!!Female!!Median earnings (dollars)!!Full-time, year-round civilian workers 16 years and over with earnings", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C03_017EA,S2002_C03_017M,S2002_C03_017MA"}, "S0501_C04_023E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_023EA,S0501_C04_023M,S0501_C04_023MA"}, "S2201_C03_022E": {"label": "Estimate!!Households receiving food stamps/SNAP!!Households!!POVERTY STATUS IN THE PAST 12 MONTHS!!At or above poverty level", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C03_022EA,S2201_C03_022M,S2201_C03_022MA"}, "S2002_C03_014E": {"label": "Estimate!!Female!!Median earnings (dollars)!!EDUCATIONAL ATTAINMENT!!Population 25 years and over with earnings!!Some college or associate's degree", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C03_014EA,S2002_C03_014M,S2002_C03_014MA"}, "S0501_C04_026E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!Total population!!Average household size", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_026EA,S0501_C04_026M,S0501_C04_026MA"}, "S1001_C01_020E": {"label": "Estimate!!Total!!Grandchildren under 18 years living with a grandparent householder!!POVERTY STATUS IN THE PAST 12 MONTHS!!Income in the past 12 months below poverty level", "concept": "Grandchildren Characteristics", "predicateType": "float", "group": "S1001", "limit": 0, "attributes": "S1001_C01_020EA,S1001_C01_020M,S1001_C01_020MA"}, "S2201_C03_021E": {"label": "Estimate!!Households receiving food stamps/SNAP!!Households!!POVERTY STATUS IN THE PAST 12 MONTHS!!Below poverty level", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C03_021EA,S2201_C03_021M,S2201_C03_021MA"}, "S2002_C03_015E": {"label": "Estimate!!Female!!Median earnings (dollars)!!EDUCATIONAL ATTAINMENT!!Population 25 years and over with earnings!!Bachelor's degree", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C03_015EA,S2002_C03_015M,S2002_C03_015MA"}, "S0501_C04_025E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!Total population!!HOUSEHOLD TYPE!!In other households", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_025EA,S0501_C04_025M,S0501_C04_025MA"}, "S2201_C03_020E": {"label": "Estimate!!Households receiving food stamps/SNAP!!Households!!No children under 18 years!!Nonfamily households", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C03_020EA,S2201_C03_020M,S2201_C03_020MA"}, "S2002_C03_012E": {"label": "Estimate!!Female!!Median earnings (dollars)!!EDUCATIONAL ATTAINMENT!!Population 25 years and over with earnings!!Less than high school graduate", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C03_012EA,S2002_C03_012M,S2002_C03_012MA"}, "S0501_C04_020E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_020EA,S0501_C04_020M,S0501_C04_020MA"}, "S0503_C03_098E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_098EA,S0503_C03_098M,S0503_C03_098MA"}, "S1810_C03_031E": {"label": "Estimate!!Percent with a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a vision difficulty!!Population under 18 years!!Population under 5 years", "concept": "Disability Characteristics", "predicateType": "float", "group": "S1810", "limit": 0, "attributes": "S1810_C03_031EA,S1810_C03_031M,S1810_C03_031MA"}, "S1502_C06_019E": {"label": "Estimate!!Percent Female!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!65 years and over", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C06_019EA,S1502_C06_019M,S1502_C06_019MA"}, "S2002_C03_013E": {"label": "Estimate!!Female!!Median earnings (dollars)!!EDUCATIONAL ATTAINMENT!!Population 25 years and over with earnings!!High school graduate (includes equivalency)", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C03_013EA,S2002_C03_013M,S2002_C03_013MA"}, "S0503_C03_099E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings!!Mean earnings (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C03_099EA,S0503_C03_099M,S0503_C03_099MA"}, "S1810_C03_030E": {"label": "Estimate!!Percent with a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a vision difficulty!!Population under 18 years", "concept": "Disability Characteristics", "predicateType": "float", "group": "S1810", "limit": 0, "attributes": "S1810_C03_030EA,S1810_C03_030M,S1810_C03_030MA"}, "S2601A_C02_079E": {"label": "Estimate!!Total group quarters population!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_079EA,S2601A_C02_079M,S2601A_C02_079MA"}, "S1502_C06_018E": {"label": "Estimate!!Percent Female!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!40 to 64 years!!Arts, Humanities, and Others", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "float", "group": "S1502", "limit": 0, "attributes": "S1502_C06_018EA,S1502_C06_018M,S1502_C06_018MA"}, "S2002_C03_010E": {"label": "Estimate!!Female!!Median earnings (dollars)!!Full-time, year-round workers 16 years and over with earnings!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C03_010EA,S2002_C03_010M,S2002_C03_010MA"}, "S0501_C04_022E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_022EA,S0501_C04_022M,S0501_C04_022MA"}, "S1810_C03_033E": {"label": "Estimate!!Percent with a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a vision difficulty!!Population 18 to 64 years", "concept": "Disability Characteristics", "predicateType": "float", "group": "S1810", "limit": 0, "attributes": "S1810_C03_033EA,S1810_C03_033M,S1810_C03_033MA"}, "S2601A_C02_078E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Entered before 2000", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_078EA,S2601A_C02_078M,S2601A_C02_078MA"}, "S1502_C06_017E": {"label": "Estimate!!Percent Female!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!40 to 64 years!!Education", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "float", "group": "S1502", "limit": 0, "attributes": "S1502_C06_017EA,S1502_C06_017M,S1502_C06_017MA"}, "S2002_C03_011E": {"label": "Estimate!!Female!!Median earnings (dollars)!!EDUCATIONAL ATTAINMENT!!Population 25 years and over with earnings", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C03_011EA,S2002_C03_011M,S2002_C03_011MA"}, "S0501_C04_021E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_021EA,S0501_C04_021M,S0501_C04_021MA"}, "S1810_C03_032E": {"label": "Estimate!!Percent with a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a vision difficulty!!Population under 18 years!!Population 5 to 17 years", "concept": "Disability Characteristics", "predicateType": "float", "group": "S1810", "limit": 0, "attributes": "S1810_C03_032EA,S1810_C03_032M,S1810_C03_032MA"}, "S2601A_C02_077E": {"label": "Estimate!!Total group quarters population!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Entered 2000 to 2009", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_077EA,S2601A_C02_077M,S2601A_C02_077MA"}, "S1502_C06_016E": {"label": "Estimate!!Percent Female!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!40 to 64 years!!Business", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "float", "group": "S1502", "limit": 0, "attributes": "S1502_C06_016EA,S1502_C06_016M,S1502_C06_016MA"}, "S2404_C01_008E": {"label": "Estimate!!Total!!Full-time, year-round civilian employed population 16 years and over!!Retail trade", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C01_008EA,S2404_C01_008M,S2404_C01_008MA"}, "S1002_C04_017E": {"label": "Estimate!!60 years and over!!Percent distribution of grandparents responsible for grandchildren!!Grandparents living with own grandchildren under 18 years!!NATIVITY!!Native", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C04_017EA,S1002_C04_017M,S1002_C04_017MA"}, "S2601A_C02_088E": {"label": "Estimate!!Total group quarters population!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed!!Percent of civilian labor force", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_088EA,S2601A_C02_088M,S2601A_C02_088MA"}, "S1002_C04_018E": {"label": "Estimate!!60 years and over!!Percent distribution of grandparents responsible for grandchildren!!Grandparents living with own grandchildren under 18 years!!NATIVITY!!Foreign born", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C04_018EA,S1002_C04_018M,S1002_C04_018MA"}, "S2404_C01_009E": {"label": "Estimate!!Total!!Full-time, year-round civilian employed population 16 years and over!!Transportation and warehousing, and utilities:", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C01_009EA,S2404_C01_009M,S2404_C01_009MA"}, "S2201_C03_019E": {"label": "Estimate!!Households receiving food stamps/SNAP!!Households!!No children under 18 years!!Other family:!!Female householder, no spouse present", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C03_019EA,S2201_C03_019M,S2201_C03_019MA"}, "S2601A_C02_087E": {"label": "Estimate!!Total group quarters population!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_087EA,S2601A_C02_087M,S2601A_C02_087MA"}, "S0501_C04_019E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_019EA,S0501_C04_019M,S0501_C04_019MA"}, "S1002_C04_019E": {"label": "Estimate!!60 years and over!!Percent distribution of grandparents responsible for grandchildren!!Grandparents living with own grandchildren under 18 years!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Speak other language", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C04_019EA,S1002_C04_019M,S1002_C04_019MA"}, "S2201_C03_018E": {"label": "Estimate!!Households receiving food stamps/SNAP!!Households!!No children under 18 years!!Other family:!!Male householder, no spouse present", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C03_018EA,S2201_C03_018M,S2201_C03_018MA"}, "S2601A_C02_086E": {"label": "Estimate!!Total group quarters population!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Employed", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_086EA,S2601A_C02_086M,S2601A_C02_086MA"}, "S1903_C01_009E": {"label": "Estimate!!Number!!HOUSEHOLD INCOME BY RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Households!!Hispanic or Latino origin (of any race)", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C01_009EA,S1903_C01_009M,S1903_C01_009MA"}, "S2404_C01_006E": {"label": "Estimate!!Total!!Full-time, year-round civilian employed population 16 years and over!!Manufacturing", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C01_006EA,S2404_C01_006M,S2404_C01_006MA"}, "S2404_C01_007E": {"label": "Estimate!!Total!!Full-time, year-round civilian employed population 16 years and over!!Wholesale trade", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C01_007EA,S2404_C01_007M,S2404_C01_007MA"}, "S2201_C03_017E": {"label": "Estimate!!Households receiving food stamps/SNAP!!Households!!No children under 18 years!!Other family:", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C03_017EA,S2201_C03_017M,S2201_C03_017MA"}, "S1903_C01_008E": {"label": "Estimate!!Number!!HOUSEHOLD INCOME BY RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Households!!Two or more races", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C01_008EA,S1903_C01_008M,S1903_C01_008MA"}, "S2601A_C02_085E": {"label": "Estimate!!Total group quarters population!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_085EA,S2601A_C02_085M,S2601A_C02_085MA"}, "S0505_C02_012E": {"label": "Estimate!!Foreign-born; Born in Asia!!Foreign-born population!!SEX AND AGE!!Under 5 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_012EA,S0505_C02_012M,S0505_C02_012MA"}, "S2201_C03_016E": {"label": "Estimate!!Households receiving food stamps/SNAP!!Households!!No children under 18 years!!Married-couple family", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C03_016EA,S2201_C03_016M,S2201_C03_016MA"}, "S0501_C04_016E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_016EA,S0501_C04_016M,S0501_C04_016MA"}, "S0502PR_C02_019E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Foreign-born population!!SEX AND AGE!!65 to 74 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_019EA,S0502PR_C02_019M,S0502PR_C02_019MA"}, "S2601A_C02_084E": {"label": "Estimate!!Total group quarters population!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_084EA,S2601A_C02_084M,S2601A_C02_084MA"}, "S2404_C01_004E": {"label": "Estimate!!Total!!Full-time, year-round civilian employed population 16 years and over!!Agriculture, forestry, fishing and hunting, and mining:!!Mining, quarrying, and oil and gas extraction", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C01_004EA,S2404_C01_004M,S2404_C01_004MA"}, "S0505_C02_011E": {"label": "Estimate!!Foreign-born; Born in Asia!!Foreign-born population!!SEX AND AGE!!Female", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_011EA,S0505_C02_011M,S0505_C02_011MA"}, "S2201_C03_015E": {"label": "Estimate!!Households receiving food stamps/SNAP!!Households!!No children under 18 years", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C03_015EA,S2201_C03_015M,S2201_C03_015MA"}, "S0501_C04_015E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_015EA,S0501_C04_015M,S0501_C04_015MA"}, "S0502PR_C02_018E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Foreign-born population!!SEX AND AGE!!55 to 64 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_018EA,S0502PR_C02_018M,S0502PR_C02_018MA"}, "S2404_C01_005E": {"label": "Estimate!!Total!!Full-time, year-round civilian employed population 16 years and over!!Construction", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C01_005EA,S2404_C01_005M,S2404_C01_005MA"}, "S2601A_C02_083E": {"label": "Estimate!!Total group quarters population!!EMPLOYMENT STATUS!!Population 16 years and over", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_083EA,S2601A_C02_083M,S2601A_C02_083MA"}, "S0505_C02_010E": {"label": "Estimate!!Foreign-born; Born in Asia!!Foreign-born population!!SEX AND AGE!!Male", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_010EA,S0505_C02_010M,S0505_C02_010MA"}, "S2201_C03_014E": {"label": "Estimate!!Households receiving food stamps/SNAP!!Households!!With children under 18 years!!Nonfamily households", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C03_014EA,S2201_C03_014M,S2201_C03_014MA"}, "S0501_C04_018E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_018EA,S0501_C04_018M,S0501_C04_018MA"}, "S2404_C01_002E": {"label": "Estimate!!Total!!Full-time, year-round civilian employed population 16 years and over!!Agriculture, forestry, fishing and hunting, and mining:", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C01_002EA,S2404_C01_002M,S2404_C01_002MA"}, "S2601A_C02_082E": {"label": "Estimate!!Total group quarters population!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English!!Speak English less than \"very well\"", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_082EA,S2601A_C02_082M,S2601A_C02_082MA"}, "S2201_C03_013E": {"label": "Estimate!!Households receiving food stamps/SNAP!!Households!!With children under 18 years!!Other family:!!Female householder, no spouse present", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C03_013EA,S2201_C03_013M,S2201_C03_013MA"}, "S0501_C04_017E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_017EA,S0501_C04_017M,S0501_C04_017MA"}, "S2601A_C02_081E": {"label": "Estimate!!Total group quarters population!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_081EA,S2601A_C02_081M,S2601A_C02_081MA"}, "S2404_C01_003E": {"label": "Estimate!!Total!!Full-time, year-round civilian employed population 16 years and over!!Agriculture, forestry, fishing and hunting, and mining:!!Agriculture, forestry, fishing and hunting", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C01_003EA,S2404_C01_003M,S2404_C01_003MA"}, "S0502PR_C02_015E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Foreign-born population!!SEX AND AGE!!18 to 24 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_015EA,S0502PR_C02_015M,S0502PR_C02_015MA"}, "S0505_C02_016E": {"label": "Estimate!!Foreign-born; Born in Asia!!Foreign-born population!!SEX AND AGE!!45 to 54 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_016EA,S0505_C02_016M,S0505_C02_016MA"}, "S1903_C01_003E": {"label": "Estimate!!Number!!HOUSEHOLD INCOME BY RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Households!!One race--!!Black or African American", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C01_003EA,S1903_C01_003M,S1903_C01_003MA"}, "S2601A_C02_080E": {"label": "Estimate!!Total group quarters population!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!English only", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_080EA,S2601A_C02_080M,S2601A_C02_080MA"}, "S1501_C05_064E": {"label": "Estimate!!Female!!MEDIAN EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 25 years and over with earnings!!Graduate or professional degree", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C05_064EA,S1501_C05_064M,S1501_C05_064MA"}, "S1002_C04_010E": {"label": "Estimate!!60 years and over!!Percent distribution of grandparents responsible for grandchildren!!Grandparents living with own grandchildren under 18 years!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C04_010EA,S1002_C04_010M,S1002_C04_010MA"}, "S0502PR_C02_014E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Foreign-born population!!SEX AND AGE!!5 to 17 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_014EA,S0502PR_C02_014M,S0502PR_C02_014MA"}, "S0505_C02_015E": {"label": "Estimate!!Foreign-born; Born in Asia!!Foreign-born population!!SEX AND AGE!!25 to 44 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_015EA,S0505_C02_015M,S0505_C02_015MA"}, "S1903_C01_002E": {"label": "Estimate!!Number!!HOUSEHOLD INCOME BY RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Households!!One race--!!White", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C01_002EA,S1903_C01_002M,S1903_C01_002MA"}, "S2404_C01_001E": {"label": "Estimate!!Total!!Full-time, year-round civilian employed population 16 years and over", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C01_001EA,S2404_C01_001M,S2404_C01_001MA"}, "S1501_C05_063E": {"label": "Estimate!!Female!!MEDIAN EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 25 years and over with earnings!!Bachelor's degree", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C05_063EA,S1501_C05_063M,S1501_C05_063MA"}, "S1002_C04_011E": {"label": "Estimate!!60 years and over!!Percent distribution of grandparents responsible for grandchildren!!Grandparents living with own grandchildren under 18 years!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C04_011EA,S1002_C04_011M,S1002_C04_011MA"}, "S1903_C01_001E": {"label": "Estimate!!Number!!HOUSEHOLD INCOME BY RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Households", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C01_001EA,S1903_C01_001M,S1903_C01_001MA"}, "S0502PR_C02_017E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Foreign-born population!!SEX AND AGE!!45 to 54 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_017EA,S0502PR_C02_017M,S0502PR_C02_017MA"}, "S0505_C02_014E": {"label": "Estimate!!Foreign-born; Born in Asia!!Foreign-born population!!SEX AND AGE!!18 to 24 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_014EA,S0505_C02_014M,S0505_C02_014MA"}, "S1501_C05_062E": {"label": "Estimate!!Female!!MEDIAN EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 25 years and over with earnings!!Some college or associate's degree", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C05_062EA,S1501_C05_062M,S1501_C05_062MA"}, "S1002_C04_012E": {"label": "Estimate!!60 years and over!!Percent distribution of grandparents responsible for grandchildren!!Grandparents living with own grandchildren under 18 years!!SEX!!Male", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C04_012EA,S1002_C04_012M,S1002_C04_012MA"}, "S0502PR_C02_016E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Foreign-born population!!SEX AND AGE!!25 to 44 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_016EA,S0502PR_C02_016M,S0502PR_C02_016MA"}, "S0505_C02_013E": {"label": "Estimate!!Foreign-born; Born in Asia!!Foreign-born population!!SEX AND AGE!!5 to 17 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_013EA,S0505_C02_013M,S0505_C02_013MA"}, "S1002_C04_013E": {"label": "Estimate!!60 years and over!!Percent distribution of grandparents responsible for grandchildren!!Grandparents living with own grandchildren under 18 years!!SEX!!Female", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C04_013EA,S1002_C04_013M,S1002_C04_013MA"}, "S1501_C05_061E": {"label": "Estimate!!Female!!MEDIAN EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 25 years and over with earnings!!High school graduate (includes equivalency)", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C05_061EA,S1501_C05_061M,S1501_C05_061MA"}, "S0502PR_C02_011E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Foreign-born population!!SEX AND AGE!!Male", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_011EA,S0502PR_C02_011M,S0502PR_C02_011MA"}, "S1903_C01_007E": {"label": "Estimate!!Number!!HOUSEHOLD INCOME BY RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Households!!One race--!!Some other race", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C01_007EA,S1903_C01_007M,S1903_C01_007MA"}, "S1201_C04_021E": {"label": "Estimate!!Divorced!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C04_021EA,S1201_C04_021M,S1201_C04_021MA"}, "S1002_C04_014E": {"label": "Estimate!!60 years and over!!Percent distribution of grandparents responsible for grandchildren!!Grandparents living with own grandchildren under 18 years!!MARITAL STATUS!!Now married (including separated and spouse absent)", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C04_014EA,S1002_C04_014M,S1002_C04_014MA"}, "S1501_C05_060E": {"label": "Estimate!!Female!!MEDIAN EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 25 years and over with earnings!!Less than high school graduate", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C05_060EA,S1501_C05_060M,S1501_C05_060MA"}, "S0502PR_C02_010E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Foreign-born population!!WORLD REGION OF BIRTH OF FOREIGN-BORN!!Northern America", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_010EA,S0502PR_C02_010M,S0502PR_C02_010MA"}, "S0505_C02_019E": {"label": "Estimate!!Foreign-born; Born in Asia!!Foreign-born population!!SEX AND AGE!!75 to 84 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_019EA,S0505_C02_019M,S0505_C02_019MA"}, "S1903_C01_006E": {"label": "Estimate!!Number!!HOUSEHOLD INCOME BY RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Households!!One race--!!Native Hawaiian and Other Pacific Islander", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C01_006EA,S1903_C01_006M,S1903_C01_006MA"}, "S1201_C04_020E": {"label": "Estimate!!Divorced!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C04_020EA,S1201_C04_020M,S1201_C04_020MA"}, "S1002_C04_015E": {"label": "Estimate!!60 years and over!!Percent distribution of grandparents responsible for grandchildren!!Grandparents living with own grandchildren under 18 years!!MARITAL STATUS!!Unmarried (never married, widowed, and divorced)", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C04_015EA,S1002_C04_015M,S1002_C04_015MA"}, "S0502PR_C02_013E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Foreign-born population!!SEX AND AGE!!Under 5 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_013EA,S0502PR_C02_013M,S0502PR_C02_013MA"}, "S0505_C02_018E": {"label": "Estimate!!Foreign-born; Born in Asia!!Foreign-born population!!SEX AND AGE!!65 to 74 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_018EA,S0505_C02_018M,S0505_C02_018MA"}, "S1903_C01_005E": {"label": "Estimate!!Number!!HOUSEHOLD INCOME BY RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Households!!One race--!!Asian", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C01_005EA,S1903_C01_005M,S1903_C01_005MA"}, "S1201_C04_023E": {"label": "Estimate!!Divorced!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C04_023EA,S1201_C04_023M,S1201_C04_023MA"}, "S1002_C04_016E": {"label": "Estimate!!60 years and over!!Percent distribution of grandparents responsible for grandchildren!!Grandparents living with own grandchildren under 18 years!!LABOR FORCE STATUS!!In labor force", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C04_016EA,S1002_C04_016M,S1002_C04_016MA"}, "S0502PR_C02_012E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Foreign-born population!!SEX AND AGE!!Female", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_012EA,S0502PR_C02_012M,S0502PR_C02_012MA"}, "S0505_C02_017E": {"label": "Estimate!!Foreign-born; Born in Asia!!Foreign-born population!!SEX AND AGE!!55 to 64 years", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_017EA,S0505_C02_017M,S0505_C02_017MA"}, "S1903_C01_004E": {"label": "Estimate!!Number!!HOUSEHOLD INCOME BY RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Households!!One race--!!American Indian and Alaska Native", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C01_004EA,S1903_C01_004M,S1903_C01_004MA"}, "S1201_C04_022E": {"label": "Estimate!!Divorced!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C04_022EA,S1201_C04_022M,S1201_C04_022MA"}, "S1810_C03_047E": {"label": "Estimate!!Percent with a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With an ambulatory difficulty", "concept": "Disability Characteristics", "predicateType": "float", "group": "S1810", "limit": 0, "attributes": "S1810_C03_047EA,S1810_C03_047M,S1810_C03_047MA"}, "S1502_C06_003E": {"label": "Estimate!!Percent Female!!Total population 25 years and over with a Bachelor's degree or higher!!Science and Engineering Related Fields", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "float", "group": "S1502", "limit": 0, "attributes": "S1502_C06_003EA,S1502_C06_003M,S1502_C06_003MA"}, "S1201_C04_013E": {"label": "Estimate!!Divorced!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over!!45 to 54 years", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C04_013EA,S1201_C04_013M,S1201_C04_013MA"}, "S1810_C03_046E": {"label": "Estimate!!Percent with a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a cognitive difficulty!!Population 65 years and over!!Population 75 years and over", "concept": "Disability Characteristics", "predicateType": "float", "group": "S1810", "limit": 0, "attributes": "S1810_C03_046EA,S1810_C03_046M,S1810_C03_046MA"}, "S1502_C06_002E": {"label": "Estimate!!Percent Female!!Total population 25 years and over with a Bachelor's degree or higher!!Science and Engineering", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "float", "group": "S1502", "limit": 0, "attributes": "S1502_C06_002EA,S1502_C06_002M,S1502_C06_002MA"}, "S1201_C04_012E": {"label": "Estimate!!Divorced!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over!!35 to 44 years", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C04_012EA,S1201_C04_012M,S1201_C04_012MA"}, "S1502_C06_001E": {"label": "Estimate!!Percent Female!!Total population 25 years and over with a Bachelor's degree or higher", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C06_001EA,S1502_C06_001M,S1502_C06_001MA"}, "S0502PR_C02_021E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Foreign-born population!!SEX AND AGE!!85 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_021EA,S0502PR_C02_021M,S0502PR_C02_021MA"}, "S1810_C03_049E": {"label": "Estimate!!Percent with a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With an ambulatory difficulty!!Population 18 to 64 years", "concept": "Disability Characteristics", "predicateType": "float", "group": "S1810", "limit": 0, "attributes": "S1810_C03_049EA,S1810_C03_049M,S1810_C03_049MA"}, "S1201_C04_015E": {"label": "Estimate!!Divorced!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over!!65 years and over", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C04_015EA,S1201_C04_015M,S1201_C04_015MA"}, "S1501_C05_059E": {"label": "Estimate!!Female!!MEDIAN EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 25 years and over with earnings", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C05_059EA,S1501_C05_059M,S1501_C05_059MA"}, "S1501_C05_058E": {"label": "Estimate!!Female!!POVERTY RATE FOR THE POPULATION 25 YEARS AND OVER FOR WHOM POVERTY STATUS IS DETERMINED BY EDUCATIONAL ATTAINMENT LEVEL!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C05_058EA,S1501_C05_058M,S1501_C05_058MA"}, "S0502PR_C02_020E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Foreign-born population!!SEX AND AGE!!75 to 84 years", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_020EA,S0502PR_C02_020M,S0502PR_C02_020MA"}, "S1810_C03_048E": {"label": "Estimate!!Percent with a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With an ambulatory difficulty!!Population under 18 years", "concept": "Disability Characteristics", "predicateType": "float", "group": "S1810", "limit": 0, "attributes": "S1810_C03_048EA,S1810_C03_048M,S1810_C03_048MA"}, "S1201_C04_014E": {"label": "Estimate!!Divorced!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over!!55 to 64 years", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C04_014EA,S1201_C04_014M,S1201_C04_014MA"}, "S1501_C05_057E": {"label": "Estimate!!Female!!POVERTY RATE FOR THE POPULATION 25 YEARS AND OVER FOR WHOM POVERTY STATUS IS DETERMINED BY EDUCATIONAL ATTAINMENT LEVEL!!Some college or associate's degree", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C05_057EA,S1501_C05_057M,S1501_C05_057MA"}, "S2002_C03_008E": {"label": "Estimate!!Female!!Median earnings (dollars)!!Full-time, year-round workers 16 years and over with earnings!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C03_008EA,S2002_C03_008M,S2002_C03_008MA"}, "S1201_C04_017E": {"label": "Estimate!!Divorced!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C04_017EA,S1201_C04_017M,S1201_C04_017MA"}, "S1501_C05_056E": {"label": "Estimate!!Female!!POVERTY RATE FOR THE POPULATION 25 YEARS AND OVER FOR WHOM POVERTY STATUS IS DETERMINED BY EDUCATIONAL ATTAINMENT LEVEL!!High school graduate (includes equivalency)", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C05_056EA,S1501_C05_056M,S1501_C05_056MA"}, "S1002_C04_030E": {"label": "Estimate!!60 years and over!!Percent distribution of grandparents responsible for grandchildren!!HOUSEHOLDS!!Households!!With grandparents living with grandchildren", "concept": "Grandparents", "predicateType": "int", "group": "S1002", "limit": 0, "attributes": "S1002_C04_030EA,S1002_C04_030M,S1002_C04_030MA"}, "S2002_C03_009E": {"label": "Estimate!!Female!!Median earnings (dollars)!!Full-time, year-round workers 16 years and over with earnings!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C03_009EA,S2002_C03_009M,S2002_C03_009MA"}, "S1201_C04_016E": {"label": "Estimate!!Divorced!!Population 15 years and over", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C04_016EA,S1201_C04_016M,S1201_C04_016MA"}, "S1201_C04_019E": {"label": "Estimate!!Divorced!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C04_019EA,S1201_C04_019M,S1201_C04_019MA"}, "S1501_C05_055E": {"label": "Estimate!!Female!!POVERTY RATE FOR THE POPULATION 25 YEARS AND OVER FOR WHOM POVERTY STATUS IS DETERMINED BY EDUCATIONAL ATTAINMENT LEVEL!!Less than high school graduate", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C05_055EA,S1501_C05_055M,S1501_C05_055MA"}, "S1002_C04_031E": {"label": "Estimate!!60 years and over!!Percent distribution of grandparents responsible for grandchildren!!PERCENT ALLOCATED!!Grandparents living with grandchildren", "concept": "Grandparents", "predicateType": "int", "group": "S1002", "limit": 0, "attributes": "S1002_C04_031EA,S1002_C04_031M,S1002_C04_031MA"}, "S2002_C03_006E": {"label": "Estimate!!Female!!Median earnings (dollars)!!Full-time, year-round workers 16 years and over with earnings!!RACE AND HISPANIC OR LATINO ORIGIN!!One race--!!Native Hawaiian and Other Pacific Islander", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C03_006EA,S2002_C03_006M,S2002_C03_006MA"}, "S1501_C05_054E": {"label": "Estimate!!Female!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Hispanic or Latino Origin!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C05_054EA,S1501_C05_054M,S1501_C05_054MA"}, "S1002_C04_032E": {"label": "Estimate!!60 years and over!!Percent distribution of grandparents responsible for grandchildren!!PERCENT ALLOCATED!!Grandparents responsible for grandchildren", "concept": "Grandparents", "predicateType": "int", "group": "S1002", "limit": 0, "attributes": "S1002_C04_032EA,S1002_C04_032M,S1002_C04_032MA"}, "S2002_C03_007E": {"label": "Estimate!!Female!!Median earnings (dollars)!!Full-time, year-round workers 16 years and over with earnings!!RACE AND HISPANIC OR LATINO ORIGIN!!One race--!!Some other race", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C03_007EA,S2002_C03_007M,S2002_C03_007MA"}, "S1201_C04_018E": {"label": "Estimate!!Divorced!!Population 15 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C04_018EA,S1201_C04_018M,S1201_C04_018MA"}, "S2002_C03_004E": {"label": "Estimate!!Female!!Median earnings (dollars)!!Full-time, year-round workers 16 years and over with earnings!!RACE AND HISPANIC OR LATINO ORIGIN!!One race--!!American Indian and Alaska Native", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C03_004EA,S2002_C03_004M,S2002_C03_004MA"}, "S2201_C03_036E": {"label": "Estimate!!Households receiving food stamps/SNAP!!WORK STATUS!!Families!!No workers in past 12 months", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C03_036EA,S2201_C03_036M,S2201_C03_036MA"}, "S0501_C04_012E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!Total population!!SEX AND AGE!!85 years and over", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_012EA,S0501_C04_012M,S0501_C04_012MA"}, "S2002_C03_005E": {"label": "Estimate!!Female!!Median earnings (dollars)!!Full-time, year-round workers 16 years and over with earnings!!RACE AND HISPANIC OR LATINO ORIGIN!!One race--!!Asian", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C03_005EA,S2002_C03_005M,S2002_C03_005MA"}, "S2201_C03_035E": {"label": "Estimate!!Households receiving food stamps/SNAP!!WORK STATUS!!Families", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C03_035EA,S2201_C03_035M,S2201_C03_035MA"}, "S0501_C04_011E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!Total population!!SEX AND AGE!!75 to 84 years", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_011EA,S0501_C04_011M,S0501_C04_011MA"}, "S2201_C03_034E": {"label": "Estimate!!Households receiving food stamps/SNAP!!Households!!HOUSEHOLD INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Median income (dollars)", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C03_034EA,S2201_C03_034M,S2201_C03_034MA"}, "S2002_C03_002E": {"label": "Estimate!!Female!!Median earnings (dollars)!!Full-time, year-round workers 16 years and over with earnings!!RACE AND HISPANIC OR LATINO ORIGIN!!One race--!!White", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C03_002EA,S2002_C03_002M,S2002_C03_002MA"}, "S1810_C03_041E": {"label": "Estimate!!Percent with a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a cognitive difficulty!!Population 18 to 64 years", "concept": "Disability Characteristics", "predicateType": "float", "group": "S1810", "limit": 0, "attributes": "S1810_C03_041EA,S1810_C03_041M,S1810_C03_041MA"}, "S0501_C04_014E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_014EA,S0501_C04_014M,S0501_C04_014MA"}, "S1502_C06_009E": {"label": "Estimate!!Percent Female!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!25 to 39 years!!Science and Engineering Related Fields", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "float", "group": "S1502", "limit": 0, "attributes": "S1502_C06_009EA,S1502_C06_009M,S1502_C06_009MA"}, "S2201_C03_033E": {"label": "Estimate!!Households receiving food stamps/SNAP!!Households!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!White alone, not Hispanic or Latino", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C03_033EA,S2201_C03_033M,S2201_C03_033MA"}, "S1810_C03_040E": {"label": "Estimate!!Percent with a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a cognitive difficulty!!Population under 18 years", "concept": "Disability Characteristics", "predicateType": "float", "group": "S1810", "limit": 0, "attributes": "S1810_C03_040EA,S1810_C03_040M,S1810_C03_040MA"}, "S2002_C03_003E": {"label": "Estimate!!Female!!Median earnings (dollars)!!Full-time, year-round workers 16 years and over with earnings!!RACE AND HISPANIC OR LATINO ORIGIN!!One race--!!Black or African American", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C03_003EA,S2002_C03_003M,S2002_C03_003MA"}, "S0501_C04_013E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!Total population!!SEX AND AGE!!Median age (years)", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_013EA,S0501_C04_013M,S0501_C04_013MA"}, "S1502_C06_008E": {"label": "Estimate!!Percent Female!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!25 to 39 years!!Science and Engineering", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "float", "group": "S1502", "limit": 0, "attributes": "S1502_C06_008EA,S1502_C06_008M,S1502_C06_008MA"}, "S2201_C03_032E": {"label": "Estimate!!Households receiving food stamps/SNAP!!Households!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Hispanic or Latino origin (of any race)", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C03_032EA,S2201_C03_032M,S2201_C03_032MA"}, "S1810_C03_043E": {"label": "Estimate!!Percent with a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a cognitive difficulty!!Population 18 to 64 years!!Population 35 to 64 years", "concept": "Disability Characteristics", "predicateType": "float", "group": "S1810", "limit": 0, "attributes": "S1810_C03_043EA,S1810_C03_043M,S1810_C03_043MA"}, "S0503_C03_086E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Civilian employed population 16 years and over!!INDUSTRY!!Public administration", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_086EA,S0503_C03_086M,S0503_C03_086MA"}, "S1502_C06_007E": {"label": "Estimate!!Percent Female!!Total population 25 years and over with a Bachelor's degree or higher!!DETAILED AGE!!25 to 39 years", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "int", "group": "S1502", "limit": 0, "attributes": "S1502_C06_007EA,S1502_C06_007M,S1502_C06_007MA"}, "S2201_C03_031E": {"label": "Estimate!!Households receiving food stamps/SNAP!!Households!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Two or more races", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C03_031EA,S2201_C03_031M,S2201_C03_031MA"}, "S2002_C03_001E": {"label": "Estimate!!Female!!Median earnings (dollars)!!Full-time, year-round workers 16 years and over with earnings", "concept": "Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) of Workers by Sex and Women's Earnings as a Percentage of Men's Earnings by Selected Characteristics", "predicateType": "int", "group": "S2002", "limit": 0, "attributes": "S2002_C03_001EA,S2002_C03_001M,S2002_C03_001MA"}, "S0503_C03_087E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C03_087EA,S0503_C03_087M,S0503_C03_087MA"}, "S1810_C03_042E": {"label": "Estimate!!Percent with a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a cognitive difficulty!!Population 18 to 64 years!!Population 18 to 34 years", "concept": "Disability Characteristics", "predicateType": "float", "group": "S1810", "limit": 0, "attributes": "S1810_C03_042EA,S1810_C03_042M,S1810_C03_042MA"}, "S1502_C06_006E": {"label": "Estimate!!Percent Female!!Total population 25 years and over with a Bachelor's degree or higher!!Arts, Humanities, and Others", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "float", "group": "S1502", "limit": 0, "attributes": "S1502_C06_006EA,S1502_C06_006M,S1502_C06_006MA"}, "S2201_C03_030E": {"label": "Estimate!!Households receiving food stamps/SNAP!!Households!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Some other race alone", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C03_030EA,S2201_C03_030M,S2201_C03_030MA"}, "S1810_C03_045E": {"label": "Estimate!!Percent with a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a cognitive difficulty!!Population 65 years and over!!Population 65 to 74 years", "concept": "Disability Characteristics", "predicateType": "float", "group": "S1810", "limit": 0, "attributes": "S1810_C03_045EA,S1810_C03_045M,S1810_C03_045MA"}, "S0501_C04_010E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!Total population!!SEX AND AGE!!65 to 74 years", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_010EA,S0501_C04_010M,S0501_C04_010MA"}, "S0503_C03_088E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$1 to $9,999 or loss", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_088EA,S0503_C03_088M,S0503_C03_088MA"}, "S1502_C06_005E": {"label": "Estimate!!Percent Female!!Total population 25 years and over with a Bachelor's degree or higher!!Education", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "float", "group": "S1502", "limit": 0, "attributes": "S1502_C06_005EA,S1502_C06_005M,S1502_C06_005MA"}, "S0503_C03_089E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$10,000 to $14,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_089EA,S0503_C03_089M,S0503_C03_089MA"}, "S1810_C03_044E": {"label": "Estimate!!Percent with a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a cognitive difficulty!!Population 65 years and over", "concept": "Disability Characteristics", "predicateType": "float", "group": "S1810", "limit": 0, "attributes": "S1810_C03_044EA,S1810_C03_044M,S1810_C03_044MA"}, "S2601A_C02_089E": {"label": "Estimate!!Total group quarters population!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Armed Forces", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_089EA,S2601A_C02_089M,S2601A_C02_089MA"}, "S1502_C06_004E": {"label": "Estimate!!Percent Female!!Total population 25 years and over with a Bachelor's degree or higher!!Business", "concept": "Field of Bachelor's Degree for First Major", "predicateType": "float", "group": "S1502", "limit": 0, "attributes": "S1502_C06_004EA,S1502_C06_004M,S1502_C06_004MA"}, "S1002_C04_029E": {"label": "Estimate!!60 years and over!!Percent distribution of grandparents responsible for grandchildren!!HOUSEHOLDS!!Households", "concept": "Grandparents", "predicateType": "int", "group": "S1002", "limit": 0, "attributes": "S1002_C04_029EA,S1002_C04_029M,S1002_C04_029MA"}, "S0503_C03_094E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$75,000 or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_094EA,S0503_C03_094M,S0503_C03_094MA"}, "S0501_C04_008E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!Total population!!SEX AND AGE!!45 to 54 years", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_008EA,S0501_C04_008M,S0501_C04_008MA"}, "S0503_C03_095E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!Median earnings (dollars) for full-time, year-round workers!!Male", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C03_095EA,S0503_C03_095M,S0503_C03_095MA"}, "S2601A_C02_099E": {"label": "Estimate!!Total group quarters population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!With earnings:!!Male", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_099EA,S2601A_C02_099M,S2601A_C02_099MA"}, "S0501_C04_007E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!Total population!!SEX AND AGE!!25 to 44 years", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_007EA,S0501_C04_007M,S0501_C04_007MA"}, "S2404_C01_018E": {"label": "Estimate!!Total!!Full-time, year-round civilian employed population 16 years and over!!Professional, scientific, and management, and administrative and waste management services:!!Management of companies and enterprises", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C01_018EA,S2404_C01_018M,S2404_C01_018MA"}, "S0503_C03_096E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!Median earnings (dollars) for full-time, year-round workers!!Female", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C03_096EA,S0503_C03_096M,S0503_C03_096MA"}, "S2601A_C02_098E": {"label": "Estimate!!Total group quarters population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!Per capita income (dollars)", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_098EA,S2601A_C02_098M,S2601A_C02_098MA"}, "S2404_C01_019E": {"label": "Estimate!!Total!!Full-time, year-round civilian employed population 16 years and over!!Professional, scientific, and management, and administrative and waste management services:!!Administrative and support and waste management services", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C01_019EA,S2404_C01_019M,S2404_C01_019MA"}, "S2201_C03_029E": {"label": "Estimate!!Households receiving food stamps/SNAP!!Households!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Native Hawaiian and Other Pacific Islander alone", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C03_029EA,S2201_C03_029M,S2201_C03_029MA"}, "S0503_C03_097E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C03_097EA,S0503_C03_097M,S0503_C03_097MA"}, "S2601A_C02_097E": {"label": "Estimate!!Total group quarters population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_097EA,S2601A_C02_097M,S2601A_C02_097MA"}, "S0501_C04_009E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!Total population!!SEX AND AGE!!55 to 64 years", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_009EA,S0501_C04_009M,S0501_C04_009MA"}, "S0503_C03_090E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$15,000 to $24,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_090EA,S0503_C03_090M,S0503_C03_090MA"}, "S2201_C03_028E": {"label": "Estimate!!Households receiving food stamps/SNAP!!Households!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Asian alone", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C03_028EA,S2201_C03_028M,S2201_C03_028MA"}, "S0501_C04_004E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!Total population!!SEX AND AGE!!Under 5 years", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_004EA,S0501_C04_004M,S0501_C04_004MA"}, "S2601A_C02_096E": {"label": "Estimate!!Total group quarters population!!OCCUPATION!!Civilian employed population 16 years and over!!Production, transportation, and material moving occupations", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_096EA,S2601A_C02_096M,S2601A_C02_096MA"}, "S2404_C01_016E": {"label": "Estimate!!Total!!Full-time, year-round civilian employed population 16 years and over!!Professional, scientific, and management, and administrative and waste management services:", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C01_016EA,S2404_C01_016M,S2404_C01_016MA"}, "S0503_C03_091E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$25,000 to $34,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_091EA,S0503_C03_091M,S0503_C03_091MA"}, "S0501_C04_003E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!Total population!!SEX AND AGE!!Female", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_003EA,S0501_C04_003M,S0501_C04_003MA"}, "S2201_C03_027E": {"label": "Estimate!!Households receiving food stamps/SNAP!!Households!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!American Indian and Alaska Native alone", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C03_027EA,S2201_C03_027M,S2201_C03_027MA"}, "S2601A_C02_095E": {"label": "Estimate!!Total group quarters population!!OCCUPATION!!Civilian employed population 16 years and over!!Natural resources, construction, extraction, and maintenance occupations", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_095EA,S2601A_C02_095M,S2601A_C02_095MA"}, "S2404_C01_017E": {"label": "Estimate!!Total!!Full-time, year-round civilian employed population 16 years and over!!Professional, scientific, and management, and administrative and waste management services:!!Professional, scientific, and technical services", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C01_017EA,S2404_C01_017M,S2404_C01_017MA"}, "S0503_C03_092E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$35,000 to $49,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_092EA,S0503_C03_092M,S0503_C03_092MA"}, "S2201_C03_026E": {"label": "Estimate!!Households receiving food stamps/SNAP!!Households!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!Black or African American alone", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C03_026EA,S2201_C03_026M,S2201_C03_026MA"}, "S0501_C04_006E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!Total population!!SEX AND AGE!!18 to 24 years", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_006EA,S0501_C04_006M,S0501_C04_006MA"}, "S2404_C01_014E": {"label": "Estimate!!Total!!Full-time, year-round civilian employed population 16 years and over!!Finance and insurance, and real estate and rental and leasing:!!Finance and insurance", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C01_014EA,S2404_C01_014M,S2404_C01_014MA"}, "S2601A_C02_094E": {"label": "Estimate!!Total group quarters population!!OCCUPATION!!Civilian employed population 16 years and over!!Sales and office occupations", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_094EA,S2601A_C02_094M,S2601A_C02_094MA"}, "S0503_C03_093E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$50,000 to $74,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_093EA,S0503_C03_093M,S0503_C03_093MA"}, "S2201_C03_025E": {"label": "Estimate!!Households receiving food stamps/SNAP!!Households!!RACE AND HISPANIC OR LATINO ORIGIN OF HOUSEHOLDER!!White alone", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C03_025EA,S2201_C03_025M,S2201_C03_025MA"}, "S0501_C04_005E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!Total population!!SEX AND AGE!!5 to 17 years", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_005EA,S0501_C04_005M,S0501_C04_005MA"}, "S2404_C01_015E": {"label": "Estimate!!Total!!Full-time, year-round civilian employed population 16 years and over!!Finance and insurance, and real estate and rental and leasing:!!Real estate and rental and leasing", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C01_015EA,S2404_C01_015M,S2404_C01_015MA"}, "S2601A_C02_093E": {"label": "Estimate!!Total group quarters population!!OCCUPATION!!Civilian employed population 16 years and over!!Service occupations", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_093EA,S2601A_C02_093M,S2601A_C02_093MA"}, "S1501_C05_053E": {"label": "Estimate!!Female!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Hispanic or Latino Origin!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C05_053EA,S1501_C05_053M,S1501_C05_053MA"}, "S1002_C04_021E": {"label": "Estimate!!60 years and over!!Percent distribution of grandparents responsible for grandchildren!!Grandparents living with own grandchildren under 18 years!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Speak other language!!Speak English less than \"very well\"", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C04_021EA,S1002_C04_021M,S1002_C04_021MA"}, "S0502PR_C02_027E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_027EA,S0502PR_C02_027M,S0502PR_C02_027MA"}, "S0505_C02_004E": {"label": "Estimate!!Foreign-born; Born in Asia!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen!!Entered 2000 to 2009", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_004EA,S0505_C02_004M,S0505_C02_004MA"}, "S2601A_C02_092E": {"label": "Estimate!!Total group quarters population!!OCCUPATION!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_092EA,S2601A_C02_092M,S2601A_C02_092MA"}, "S2404_C01_012E": {"label": "Estimate!!Total!!Full-time, year-round civilian employed population 16 years and over!!Information", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C01_012EA,S2404_C01_012M,S2404_C01_012MA"}, "S1501_C05_052E": {"label": "Estimate!!Female!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Hispanic or Latino Origin", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C05_052EA,S1501_C05_052M,S1501_C05_052MA"}, "S1002_C04_022E": {"label": "Estimate!!60 years and over!!Percent distribution of grandparents responsible for grandchildren!!DISABILITY STATUS!!Civilian grandparents living with own grandchildren under 18 years", "concept": "Grandparents", "predicateType": "int", "group": "S1002", "limit": 0, "attributes": "S1002_C04_022EA,S1002_C04_022M,S1002_C04_022MA"}, "S0502PR_C02_026E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_026EA,S0502PR_C02_026M,S0502PR_C02_026MA"}, "S0505_C02_003E": {"label": "Estimate!!Foreign-born; Born in Asia!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen!!Entered 2010 or later", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_003EA,S0505_C02_003M,S0505_C02_003MA"}, "S2601A_C02_091E": {"label": "Estimate!!Total group quarters population!!OCCUPATION!!Civilian employed population 16 years and over", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_091EA,S2601A_C02_091M,S2601A_C02_091MA"}, "S2404_C01_013E": {"label": "Estimate!!Total!!Full-time, year-round civilian employed population 16 years and over!!Finance and insurance, and real estate and rental and leasing:", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C01_013EA,S2404_C01_013M,S2404_C01_013MA"}, "S1501_C05_051E": {"label": "Estimate!!Female!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Two or more races!!Bachelor's degree or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C05_051EA,S1501_C05_051M,S1501_C05_051MA"}, "S1002_C04_023E": {"label": "Estimate!!60 years and over!!Percent distribution of grandparents responsible for grandchildren!!DISABILITY STATUS!!Civilian grandparents living with own grandchildren under 18 years!!With any disability", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C04_023EA,S1002_C04_023M,S1002_C04_023MA"}, "S0505_C02_002E": {"label": "Estimate!!Foreign-born; Born in Asia!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_002EA,S0505_C02_002M,S0505_C02_002MA"}, "S0502PR_C02_029E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_029EA,S0502PR_C02_029M,S0502PR_C02_029MA"}, "S2404_C01_010E": {"label": "Estimate!!Total!!Full-time, year-round civilian employed population 16 years and over!!Transportation and warehousing, and utilities:!!Transportation and warehousing", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C01_010EA,S2404_C01_010M,S2404_C01_010MA"}, "S2601A_C02_090E": {"label": "Estimate!!Total group quarters population!!EMPLOYMENT STATUS!!Population 16 years and over!!Not in labor force", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C02_090EA,S2601A_C02_090M,S2601A_C02_090MA"}, "S1002_C04_024E": {"label": "Estimate!!60 years and over!!Percent distribution of grandparents responsible for grandchildren!!POVERTY STATUS IN THE PAST 12 MONTHS!!Grandparents living with own grandchildren under 18 years for whom poverty status is determined", "concept": "Grandparents", "predicateType": "int", "group": "S1002", "limit": 0, "attributes": "S1002_C04_024EA,S1002_C04_024M,S1002_C04_024MA"}, "S0505_C02_001E": {"label": "Estimate!!Foreign-born; Born in Asia!!Foreign-born population", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C02_001EA,S0505_C02_001M,S0505_C02_001MA"}, "S1501_C05_050E": {"label": "Estimate!!Female!!RACE AND HISPANIC OR LATINO ORIGIN BY EDUCATIONAL ATTAINMENT!!Two or more races!!High school graduate or higher", "concept": "Educational Attainment", "predicateType": "int", "group": "S1501", "limit": 0, "attributes": "S1501_C05_050EA,S1501_C05_050M,S1501_C05_050MA"}, "S0502PR_C02_028E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_028EA,S0502PR_C02_028M,S0502PR_C02_028MA"}, "S2404_C01_011E": {"label": "Estimate!!Total!!Full-time, year-round civilian employed population 16 years and over!!Transportation and warehousing, and utilities:!!Utilities", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C01_011EA,S2404_C01_011M,S2404_C01_011MA"}, "S1002_C04_025E": {"label": "Estimate!!60 years and over!!Percent distribution of grandparents responsible for grandchildren!!POVERTY STATUS IN THE PAST 12 MONTHS!!Grandparents living with own grandchildren under 18 years for whom poverty status is determined!!Income in the past 12 months below poverty level", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C04_025EA,S1002_C04_025M,S1002_C04_025MA"}, "S0502PR_C02_023E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_023EA,S0502PR_C02_023M,S0502PR_C02_023MA"}, "S0505_C02_008E": {"label": "Estimate!!Foreign-born; Born in Asia!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen!!Entered 2000 to 2009", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_008EA,S0505_C02_008M,S0505_C02_008MA"}, "S1002_C04_026E": {"label": "Estimate!!60 years and over!!Percent distribution of grandparents responsible for grandchildren!!POVERTY STATUS IN THE PAST 12 MONTHS!!Grandparents living with own grandchildren under 18 years for whom poverty status is determined!!Income in the past 12 months at or above poverty level", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C04_026EA,S1002_C04_026M,S1002_C04_026MA"}, "S0502PR_C02_022E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Foreign-born population!!SEX AND AGE!!Median age (years)", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_022EA,S0502PR_C02_022M,S0502PR_C02_022MA"}, "S0505_C02_007E": {"label": "Estimate!!Foreign-born; Born in Asia!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen!!Entered 2010 or later", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_007EA,S0505_C02_007M,S0505_C02_007MA"}, "S1002_C04_027E": {"label": "Estimate!!60 years and over!!Percent distribution of grandparents responsible for grandchildren!!Grandparents living with own grandchildren under 18 years in households", "concept": "Grandparents", "predicateType": "int", "group": "S1002", "limit": 0, "attributes": "S1002_C04_027EA,S1002_C04_027M,S1002_C04_027MA"}, "S0505_C02_006E": {"label": "Estimate!!Foreign-born; Born in Asia!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Not a citizen", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_006EA,S0505_C02_006M,S0505_C02_006MA"}, "S0502PR_C02_025E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_025EA,S0502PR_C02_025M,S0502PR_C02_025MA"}, "S1201_C04_011E": {"label": "Estimate!!Divorced!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over!!20 to 34 years", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C04_011EA,S1201_C04_011M,S1201_C04_011MA"}, "S1002_C04_028E": {"label": "Estimate!!60 years and over!!Percent distribution of grandparents responsible for grandchildren!!Grandparents living with own grandchildren under 18 years in households!!PRESENCE OF PARENT(S) OF GRANDCHILDREN!!Householder or spouse responsible for grandchildren with no parent of grandchildren present", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C04_028EA,S1002_C04_028M,S1002_C04_028MA"}, "S0502PR_C02_024E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_024EA,S0502PR_C02_024M,S0502PR_C02_024MA"}, "S1201_C04_010E": {"label": "Estimate!!Divorced!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over!!15 to 19 years", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C04_010EA,S1201_C04_010M,S1201_C04_010MA"}, "S0505_C02_005E": {"label": "Estimate!!Foreign-born; Born in Asia!!Foreign-born population!!CITIZENSHIP AND PERIOD OF ENTRY!!Naturalized citizen!!Entered before 2000", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_005EA,S0505_C02_005M,S0505_C02_005MA"}, "S1903_C01_031E": {"label": "Estimate!!Number!!FAMILY INCOME BY NUMBER OF EARNERS!!1 earner", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C01_031EA,S1903_C01_031M,S1903_C01_031MA"}, "S0501_C04_040E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate (includes equivalency)", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_040EA,S0501_C04_040M,S0501_C04_040MA"}, "S1810_C03_011E": {"label": "Estimate!!Percent with a disability!!Total civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Disability Characteristics", "predicateType": "float", "group": "S1810", "limit": 0, "attributes": "S1810_C03_011EA,S1810_C03_011M,S1810_C03_011MA"}, "S0601_C02_042E": {"label": "Estimate!!Native; born in state of residence!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$25,000 to $34,999", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C02_042EA,S0601_C02_042M,S0601_C02_042MA"}, "S1001_C01_002E": {"label": "Estimate!!Total!!Grandchildren under 18 years living with a grandparent householder!!AGE!!Under 6 years", "concept": "Grandchildren Characteristics", "predicateType": "float", "group": "S1001", "limit": 0, "attributes": "S1001_C01_002EA,S1001_C01_002M,S1001_C01_002MA"}, "S1201_C04_001E": {"label": "Estimate!!Divorced!!Population 15 years and over", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C04_001EA,S1201_C04_001M,S1201_C04_001MA"}, "S1810_C03_010E": {"label": "Estimate!!Percent with a disability!!Total civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Disability Characteristics", "predicateType": "float", "group": "S1810", "limit": 0, "attributes": "S1810_C03_010EA,S1810_C03_010M,S1810_C03_010MA"}, "S1903_C01_030E": {"label": "Estimate!!Number!!FAMILY INCOME BY NUMBER OF EARNERS!!No earners", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C01_030EA,S1903_C01_030M,S1903_C01_030MA"}, "S0601_C02_043E": {"label": "Estimate!!Native; born in state of residence!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$35,000 to $49,999", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C02_043EA,S0601_C02_043M,S0601_C02_043MA"}, "S1001_C01_001E": {"label": "Estimate!!Total!!Grandchildren under 18 years living with a grandparent householder", "concept": "Grandchildren Characteristics", "predicateType": "int", "group": "S1001", "limit": 0, "attributes": "S1001_C01_001EA,S1001_C01_001M,S1001_C01_001MA"}, "S0601PR_C02_009E": {"label": "Estimate!!Native; born in Puerto Rico!!Total population!!AGE!!75 years and over", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C02_009EA,S0601PR_C02_009M,S0601PR_C02_009MA"}, "S0501_C04_042E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_042EA,S0501_C04_042M,S0501_C04_042MA"}, "S1810_C03_013E": {"label": "Estimate!!Percent with a disability!!Total civilian noninstitutionalized population!!AGE!!Under 5 years", "concept": "Disability Characteristics", "predicateType": "float", "group": "S1810", "limit": 0, "attributes": "S1810_C03_013EA,S1810_C03_013M,S1810_C03_013MA"}, "S1001_C01_004E": {"label": "Estimate!!Total!!Grandchildren under 18 years living with a grandparent householder!!AGE!!12 to 17 years", "concept": "Grandchildren Characteristics", "predicateType": "float", "group": "S1001", "limit": 0, "attributes": "S1001_C01_004EA,S1001_C01_004M,S1001_C01_004MA"}, "S0601_C02_044E": {"label": "Estimate!!Native; born in state of residence!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$50,000 to $64,999", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C02_044EA,S0601_C02_044M,S0601_C02_044MA"}, "S1201_C04_003E": {"label": "Estimate!!Divorced!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over!!15 to 19 years", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C04_003EA,S1201_C04_003M,S1201_C04_003MA"}, "S0601PR_C02_008E": {"label": "Estimate!!Native; born in Puerto Rico!!Total population!!AGE!!65 to 74 years", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C02_008EA,S0601PR_C02_008M,S0601PR_C02_008MA"}, "S1810_C03_012E": {"label": "Estimate!!Percent with a disability!!Total civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino (of any race)", "concept": "Disability Characteristics", "predicateType": "float", "group": "S1810", "limit": 0, "attributes": "S1810_C03_012EA,S1810_C03_012M,S1810_C03_012MA"}, "S0501_C04_041E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college or associate's degree", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_041EA,S0501_C04_041M,S0501_C04_041MA"}, "S1001_C01_003E": {"label": "Estimate!!Total!!Grandchildren under 18 years living with a grandparent householder!!AGE!!6 to 11 years", "concept": "Grandchildren Characteristics", "predicateType": "float", "group": "S1001", "limit": 0, "attributes": "S1001_C01_003EA,S1001_C01_003M,S1001_C01_003MA"}, "S0601_C02_045E": {"label": "Estimate!!Native; born in state of residence!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$65,000 to $74,999", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C02_045EA,S0601_C02_045M,S0601_C02_045MA"}, "S1201_C04_002E": {"label": "Estimate!!Divorced!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C04_002EA,S1201_C04_002M,S1201_C04_002MA"}, "S0601PR_C02_007E": {"label": "Estimate!!Native; born in Puerto Rico!!Total population!!AGE!!55 to 64 years", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C02_007EA,S0601PR_C02_007M,S0601PR_C02_007MA"}, "S1810_C03_015E": {"label": "Estimate!!Percent with a disability!!Total civilian noninstitutionalized population!!AGE!!18 to 34 years", "concept": "Disability Characteristics", "predicateType": "float", "group": "S1810", "limit": 0, "attributes": "S1810_C03_015EA,S1810_C03_015M,S1810_C03_015MA"}, "S1903_C01_035E": {"label": "Estimate!!Number!!NONFAMILY HOUSEHOLDS!!Nonfamily households!!Female householder", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C01_035EA,S1903_C01_035M,S1903_C01_035MA"}, "S0601_C02_046E": {"label": "Estimate!!Native; born in state of residence!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$75,000 or more", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C02_046EA,S0601_C02_046M,S0601_C02_046MA"}, "S1201_C04_005E": {"label": "Estimate!!Divorced!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over!!35 to 44 years", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C04_005EA,S1201_C04_005M,S1201_C04_005MA"}, "S0601PR_C02_006E": {"label": "Estimate!!Native; born in Puerto Rico!!Total population!!AGE!!45 to 54 years", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C02_006EA,S0601PR_C02_006M,S0601PR_C02_006MA"}, "S1810_C03_014E": {"label": "Estimate!!Percent with a disability!!Total civilian noninstitutionalized population!!AGE!!5 to 17 years", "concept": "Disability Characteristics", "predicateType": "float", "group": "S1810", "limit": 0, "attributes": "S1810_C03_014EA,S1810_C03_014M,S1810_C03_014MA"}, "S1903_C01_034E": {"label": "Estimate!!Number!!NONFAMILY HOUSEHOLDS!!Nonfamily households", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C01_034EA,S1903_C01_034M,S1903_C01_034MA"}, "S0601_C02_047E": {"label": "Estimate!!Native; born in state of residence!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!Median income (dollars)", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "int", "group": "S0601", "limit": 0, "attributes": "S0601_C02_047EA,S0601_C02_047M,S0601_C02_047MA"}, "S1201_C04_004E": {"label": "Estimate!!Divorced!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over!!20 to 34 years", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C04_004EA,S1201_C04_004M,S1201_C04_004MA"}, "S0601PR_C02_005E": {"label": "Estimate!!Native; born in Puerto Rico!!Total population!!AGE!!25 to 44 years", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C02_005EA,S0601PR_C02_005M,S0601PR_C02_005MA"}, "S1903_C01_033E": {"label": "Estimate!!Number!!FAMILY INCOME BY NUMBER OF EARNERS!!3 or more earners", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C01_033EA,S1903_C01_033M,S1903_C01_033MA"}, "S0601_C02_048E": {"label": "Estimate!!Native; born in state of residence!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "int", "group": "S0601", "limit": 0, "attributes": "S0601_C02_048EA,S0601_C02_048M,S0601_C02_048MA"}, "S1810_C03_017E": {"label": "Estimate!!Percent with a disability!!Total civilian noninstitutionalized population!!AGE!!65 to 74 years", "concept": "Disability Characteristics", "predicateType": "float", "group": "S1810", "limit": 0, "attributes": "S1810_C03_017EA,S1810_C03_017M,S1810_C03_017MA"}, "S1201_C04_007E": {"label": "Estimate!!Divorced!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over!!55 to 64 years", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C04_007EA,S1201_C04_007M,S1201_C04_007MA"}, "S0601PR_C02_004E": {"label": "Estimate!!Native; born in Puerto Rico!!Total population!!AGE!!18 to 24 years", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C02_004EA,S0601PR_C02_004M,S0601PR_C02_004MA"}, "S1903_C01_032E": {"label": "Estimate!!Number!!FAMILY INCOME BY NUMBER OF EARNERS!!2 earners", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C01_032EA,S1903_C01_032M,S1903_C01_032MA"}, "S0601_C02_049E": {"label": "Estimate!!Native; born in state of residence!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!Below 100 percent of the poverty level", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C02_049EA,S0601_C02_049M,S0601_C02_049MA"}, "S1810_C03_016E": {"label": "Estimate!!Percent with a disability!!Total civilian noninstitutionalized population!!AGE!!35 to 64 years", "concept": "Disability Characteristics", "predicateType": "float", "group": "S1810", "limit": 0, "attributes": "S1810_C03_016EA,S1810_C03_016M,S1810_C03_016MA"}, "S1201_C04_006E": {"label": "Estimate!!Divorced!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over!!45 to 54 years", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C04_006EA,S1201_C04_006M,S1201_C04_006MA"}, "S1201_C04_009E": {"label": "Estimate!!Divorced!!Population 15 years and over!!AGE AND SEX!!Females 15 years and over", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C04_009EA,S1201_C04_009M,S1201_C04_009MA"}, "S0601PR_C02_003E": {"label": "Estimate!!Native; born in Puerto Rico!!Total population!!AGE!!5 to 17 years", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C02_003EA,S0601PR_C02_003M,S0601PR_C02_003MA"}, "S0503_C03_078E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Civilian employed population 16 years and over!!INDUSTRY!!Retail trade", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_078EA,S0503_C03_078M,S0503_C03_078MA"}, "S0501_C04_048E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!EMPLOYMENT STATUS!!Population 16 years and over", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C04_048EA,S0501_C04_048M,S0501_C04_048MA"}, "S1201_C04_008E": {"label": "Estimate!!Divorced!!Population 15 years and over!!AGE AND SEX!!Males 15 years and over!!65 years and over", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C04_008EA,S1201_C04_008M,S1201_C04_008MA"}, "S0503_C03_079E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Civilian employed population 16 years and over!!INDUSTRY!!Transportation and warehousing, and utilities", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_079EA,S0503_C03_079M,S0503_C03_079MA"}, "S0501_C04_047E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English!!Speak English less than \"very well\"", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_047EA,S0501_C04_047M,S0501_C04_047MA"}, "S0601PR_C02_002E": {"label": "Estimate!!Native; born in Puerto Rico!!Total population!!AGE!!Under 5 years", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C02_002EA,S0601PR_C02_002M,S0601PR_C02_002MA"}, "S2101_C05_001E": {"label": "Estimate!!Nonveterans!!Civilian population 18 years and over", "concept": "Veteran Status", "predicateType": "int", "group": "S2101", "limit": 0, "attributes": "S2101_C05_001EA,S2101_C05_001M,S2101_C05_001MA"}, "S0601PR_C02_001E": {"label": "Estimate!!Native; born in Puerto Rico!!Total population", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "int", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C02_001EA,S0601PR_C02_001M,S0601PR_C02_001MA"}, "S0501_C04_049E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_049EA,S0501_C04_049M,S0501_C04_049MA"}, "S0501_C04_044E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C04_044EA,S0501_C04_044M,S0501_C04_044MA"}, "S0503_C03_074E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Civilian employed population 16 years and over!!INDUSTRY!!Agriculture, forestry, fishing and hunting, and mining", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_074EA,S0503_C03_074M,S0503_C03_074MA"}, "S2414_C02_022E": {"label": "Estimate!!Median earnings (dollars) for male!!Full-time, year-round civilian employed population 16 years and over with earnings!!Educational services, and health care and social assistance:!!Health care and social assistance", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C02_022EA,S2414_C02_022M,S2414_C02_022MA"}, "S0501_C04_043E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Graduate or professional degree", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_043EA,S0501_C04_043M,S0501_C04_043MA"}, "S0503_C03_075E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Civilian employed population 16 years and over!!INDUSTRY!!Construction", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_075EA,S0503_C03_075M,S0503_C03_075MA"}, "S2414_C02_021E": {"label": "Estimate!!Median earnings (dollars) for male!!Full-time, year-round civilian employed population 16 years and over with earnings!!Educational services, and health care and social assistance:!!Educational services", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C02_021EA,S2414_C02_021M,S2414_C02_021MA"}, "S0503_C03_076E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Civilian employed population 16 years and over!!INDUSTRY!!Manufacturing", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_076EA,S0503_C03_076M,S0503_C03_076MA"}, "S0501_C04_046E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_046EA,S0501_C04_046M,S0501_C04_046MA"}, "S2414_C02_020E": {"label": "Estimate!!Median earnings (dollars) for male!!Full-time, year-round civilian employed population 16 years and over with earnings!!Educational services, and health care and social assistance:", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C02_020EA,S2414_C02_020M,S2414_C02_020MA"}, "S0601_C02_040E": {"label": "Estimate!!Native; born in state of residence!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$10,000 to $14,999", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C02_040EA,S0601_C02_040M,S0601_C02_040MA"}, "S0503_C03_077E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Civilian employed population 16 years and over!!INDUSTRY!!Wholesale trade", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_077EA,S0503_C03_077M,S0503_C03_077MA"}, "S0501_C04_045E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!English only", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_045EA,S0501_C04_045M,S0501_C04_045MA"}, "S0601_C02_041E": {"label": "Estimate!!Native; born in state of residence!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$15,000 to $24,999", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C02_041EA,S0601_C02_041M,S0601_C02_041MA"}, "S0503_C03_082E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Civilian employed population 16 years and over!!INDUSTRY!!Professional, scientific, and management, and administrative and waste management services", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_082EA,S0503_C03_082M,S0503_C03_082MA"}, "S0502_C04_135E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Occupied housing units!!Median number of rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_135EA,S0502_C04_135M,S0502_C04_135MA"}, "S0505_C02_032E": {"label": "Estimate!!Foreign-born; Born in Asia!!Foreign-born population!!HOUSEHOLD TYPE!!In married-couple family", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_032EA,S0505_C02_032M,S0505_C02_032MA"}, "S2414_C02_014E": {"label": "Estimate!!Median earnings (dollars) for male!!Full-time, year-round civilian employed population 16 years and over with earnings!!Finance and insurance, and real estate and rental and leasing:!!Finance and insurance", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C02_014EA,S2414_C02_014M,S2414_C02_014MA"}, "S2408_C04_007E": {"label": "Estimate!!Female!!Civilian employed population 16 years and over!!State government workers", "concept": "Class of Worker by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2408", "limit": 0, "attributes": "S2408_C04_007EA,S2408_C04_007M,S2408_C04_007MA"}, "S0502_C04_136E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Occupied housing units!!1.01 or more occupants per room", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_136EA,S0502_C04_136M,S0502_C04_136MA"}, "S0505_C02_031E": {"label": "Estimate!!Foreign-born; Born in Asia!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_031EA,S0505_C02_031M,S0505_C02_031MA"}, "S0503_C03_083E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Civilian employed population 16 years and over!!INDUSTRY!!Educational services, and health care and social assistance", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_083EA,S0503_C03_083M,S0503_C03_083MA"}, "S2408_C04_008E": {"label": "Estimate!!Female!!Civilian employed population 16 years and over!!Federal government workers", "concept": "Class of Worker by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2408", "limit": 0, "attributes": "S2408_C04_008EA,S2408_C04_008M,S2408_C04_008MA"}, "S2414_C02_013E": {"label": "Estimate!!Median earnings (dollars) for male!!Full-time, year-round civilian employed population 16 years and over with earnings!!Finance and insurance, and real estate and rental and leasing:", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C02_013EA,S2414_C02_013M,S2414_C02_013MA"}, "S0502_C04_137E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Occupied housing units!!VEHICLES AVAILABLE!!None", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_137EA,S0502_C04_137M,S0502_C04_137MA"}, "S0505_C02_030E": {"label": "Estimate!!Foreign-born; Born in Asia!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_030EA,S0505_C02_030M,S0505_C02_030MA"}, "S0503_C03_084E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Civilian employed population 16 years and over!!INDUSTRY!!Arts, entertainment, and recreation, and accommodation and food services", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_084EA,S0503_C03_084M,S0503_C03_084MA"}, "S2408_C04_009E": {"label": "Estimate!!Female!!Civilian employed population 16 years and over!!Self-employed in own not incorporated business workers and unpaid family workers", "concept": "Class of Worker by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2408", "limit": 0, "attributes": "S2408_C04_009EA,S2408_C04_009M,S2408_C04_009MA"}, "S2414_C02_012E": {"label": "Estimate!!Median earnings (dollars) for male!!Full-time, year-round civilian employed population 16 years and over with earnings!!Information", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C02_012EA,S2414_C02_012M,S2414_C02_012MA"}, "S0502_C04_138E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Occupied housing units!!VEHICLES AVAILABLE!!1 or more", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_138EA,S0502_C04_138M,S0502_C04_138MA"}, "S0503_C03_085E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Civilian employed population 16 years and over!!INDUSTRY!!Other services (except public administration)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_085EA,S0503_C03_085M,S0503_C03_085MA"}, "S2414_C02_011E": {"label": "Estimate!!Median earnings (dollars) for male!!Full-time, year-round civilian employed population 16 years and over with earnings!!Transportation and warehousing, and utilities:!!Utilities", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C02_011EA,S2414_C02_011M,S2414_C02_011MA"}, "S2414_C02_018E": {"label": "Estimate!!Median earnings (dollars) for male!!Full-time, year-round civilian employed population 16 years and over with earnings!!Professional, scientific, and management, and administrative and waste management services:!!Management of companies and enterprises", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C02_018EA,S2414_C02_018M,S2414_C02_018MA"}, "S0502_C04_139E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Occupied housing units!!SELECTED CHARACTERISTICS!!No telephone service available", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_139EA,S0502_C04_139M,S0502_C04_139MA"}, "S0505_C02_036E": {"label": "Estimate!!Foreign-born; Born in Asia!!MARITAL STATUS!!Population 15 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C02_036EA,S0505_C02_036M,S0505_C02_036MA"}, "S0501_C04_039E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than high school graduate", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_039EA,S0501_C04_039M,S0501_C04_039MA"}, "S0505_C02_035E": {"label": "Estimate!!Foreign-born; Born in Asia!!Foreign-born population!!Average family size", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_035EA,S0505_C02_035M,S0505_C02_035MA"}, "S2414_C02_017E": {"label": "Estimate!!Median earnings (dollars) for male!!Full-time, year-round civilian employed population 16 years and over with earnings!!Professional, scientific, and management, and administrative and waste management services:!!Professional, scientific, and technical services", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C02_017EA,S2414_C02_017M,S2414_C02_017MA"}, "S0503_C03_080E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Civilian employed population 16 years and over!!INDUSTRY!!Information", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_080EA,S0503_C03_080M,S0503_C03_080MA"}, "S0505_C02_034E": {"label": "Estimate!!Foreign-born; Born in Asia!!Foreign-born population!!Average household size", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_034EA,S0505_C02_034M,S0505_C02_034MA"}, "S2414_C02_016E": {"label": "Estimate!!Median earnings (dollars) for male!!Full-time, year-round civilian employed population 16 years and over with earnings!!Professional, scientific, and management, and administrative and waste management services:", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C02_016EA,S2414_C02_016M,S2414_C02_016MA"}, "S2404_C01_026E": {"label": "Estimate!!Total!!Full-time, year-round civilian employed population 16 years and over!!Other services, except public administration", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C01_026EA,S2404_C01_026M,S2404_C01_026MA"}, "S0503_C03_081E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Civilian employed population 16 years and over!!INDUSTRY!!Finance and insurance, and real estate and rental and leasing", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_081EA,S0503_C03_081M,S0503_C03_081MA"}, "S0505_C02_033E": {"label": "Estimate!!Foreign-born; Born in Asia!!Foreign-born population!!HOUSEHOLD TYPE!!In other households", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_033EA,S0505_C02_033M,S0505_C02_033MA"}, "S2414_C02_015E": {"label": "Estimate!!Median earnings (dollars) for male!!Full-time, year-round civilian employed population 16 years and over with earnings!!Finance and insurance, and real estate and rental and leasing:!!Real estate and rental and leasing", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C02_015EA,S2414_C02_015M,S2414_C02_015MA"}, "S2404_C01_027E": {"label": "Estimate!!Total!!Full-time, year-round civilian employed population 16 years and over!!Public administration", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C01_027EA,S2404_C01_027M,S2404_C01_027MA"}, "S0601_C02_038E": {"label": "Estimate!!Native; born in state of residence!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "int", "group": "S0601", "limit": 0, "attributes": "S0601_C02_038EA,S0601_C02_038M,S0601_C02_038MA"}, "S1810_C03_007E": {"label": "Estimate!!Percent with a disability!!Total civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!Asian alone", "concept": "Disability Characteristics", "predicateType": "float", "group": "S1810", "limit": 0, "attributes": "S1810_C03_007EA,S1810_C03_007M,S1810_C03_007MA"}, "S1903_C01_027E": {"label": "Estimate!!Number!!FAMILY INCOME BY FAMILY SIZE!!5-person families", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C01_027EA,S1903_C01_027M,S1903_C01_027MA"}, "S2404_C01_024E": {"label": "Estimate!!Total!!Full-time, year-round civilian employed population 16 years and over!!Arts, entertainment, and recreation, and accommodation and food services:!!Arts, entertainment, and recreation", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C01_024EA,S2404_C01_024M,S2404_C01_024MA"}, "S0601_C02_039E": {"label": "Estimate!!Native; born in state of residence!!INDIVIDUALS' INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Population 15 years and over!!$1 to $9,999 or loss", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C02_039EA,S0601_C02_039M,S0601_C02_039MA"}, "S0505_C02_039E": {"label": "Estimate!!Foreign-born; Born in Asia!!MARITAL STATUS!!Population 15 years and over!!Divorced or separated", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_039EA,S0505_C02_039M,S0505_C02_039MA"}, "S1810_C03_006E": {"label": "Estimate!!Percent with a disability!!Total civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!American Indian and Alaska Native alone", "concept": "Disability Characteristics", "predicateType": "float", "group": "S1810", "limit": 0, "attributes": "S1810_C03_006EA,S1810_C03_006M,S1810_C03_006MA"}, "S1903_C01_026E": {"label": "Estimate!!Number!!FAMILY INCOME BY FAMILY SIZE!!4-person families", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C01_026EA,S1903_C01_026M,S1903_C01_026MA"}, "S1001_C01_009E": {"label": "Estimate!!Total!!Grandchildren under 18 years living with a grandparent householder!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Grandchildren Characteristics", "predicateType": "float", "group": "S1001", "limit": 0, "attributes": "S1001_C01_009EA,S1001_C01_009M,S1001_C01_009MA"}, "S2404_C01_025E": {"label": "Estimate!!Total!!Full-time, year-round civilian employed population 16 years and over!!Arts, entertainment, and recreation, and accommodation and food services:!!Accommodation and food services", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C01_025EA,S2404_C01_025M,S2404_C01_025MA"}, "S1810_C03_009E": {"label": "Estimate!!Percent with a disability!!Total civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!Some other race alone", "concept": "Disability Characteristics", "predicateType": "float", "group": "S1810", "limit": 0, "attributes": "S1810_C03_009EA,S1810_C03_009M,S1810_C03_009MA"}, "S0505_C02_038E": {"label": "Estimate!!Foreign-born; Born in Asia!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_038EA,S0505_C02_038M,S0505_C02_038MA"}, "S1903_C01_025E": {"label": "Estimate!!Number!!FAMILY INCOME BY FAMILY SIZE!!3-person families", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C01_025EA,S1903_C01_025M,S1903_C01_025MA"}, "S2404_C01_022E": {"label": "Estimate!!Total!!Full-time, year-round civilian employed population 16 years and over!!Educational services, and health care and social assistance:!!Health care and social assistance", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C01_022EA,S2404_C01_022M,S2404_C01_022MA"}, "S2414_C02_019E": {"label": "Estimate!!Median earnings (dollars) for male!!Full-time, year-round civilian employed population 16 years and over with earnings!!Professional, scientific, and management, and administrative and waste management services:!!Administrative and support and waste management services", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C02_019EA,S2414_C02_019M,S2414_C02_019MA"}, "S0502_C04_130E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Occupied housing units!!ROOMS!!1 room", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_130EA,S0502_C04_130M,S0502_C04_130MA"}, "S0505_C02_037E": {"label": "Estimate!!Foreign-born; Born in Asia!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_037EA,S0505_C02_037M,S0505_C02_037MA"}, "S1903_C01_024E": {"label": "Estimate!!Number!!FAMILY INCOME BY FAMILY SIZE!!2-person families", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C01_024EA,S1903_C01_024M,S1903_C01_024MA"}, "S1810_C03_008E": {"label": "Estimate!!Percent with a disability!!Total civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!Native Hawaiian and Other Pacific Islander alone", "concept": "Disability Characteristics", "predicateType": "float", "group": "S1810", "limit": 0, "attributes": "S1810_C03_008EA,S1810_C03_008M,S1810_C03_008MA"}, "S2404_C01_023E": {"label": "Estimate!!Total!!Full-time, year-round civilian employed population 16 years and over!!Arts, entertainment, and recreation, and accommodation and food services:", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C01_023EA,S2404_C01_023M,S2404_C01_023MA"}, "S0502_C04_131E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Occupied housing units!!ROOMS!!2 or 3 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_131EA,S0502_C04_131M,S0502_C04_131MA"}, "S2404_C01_020E": {"label": "Estimate!!Total!!Full-time, year-round civilian employed population 16 years and over!!Educational services, and health care and social assistance:", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C01_020EA,S2404_C01_020M,S2404_C01_020MA"}, "S1001_C01_006E": {"label": "Estimate!!Total!!Grandchildren under 18 years living with a grandparent householder!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Grandchildren Characteristics", "predicateType": "float", "group": "S1001", "limit": 0, "attributes": "S1001_C01_006EA,S1001_C01_006M,S1001_C01_006MA"}, "S0502_C04_132E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Occupied housing units!!ROOMS!!4 or 5 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_132EA,S0502_C04_132M,S0502_C04_132MA"}, "S2404_C01_021E": {"label": "Estimate!!Total!!Full-time, year-round civilian employed population 16 years and over!!Educational services, and health care and social assistance:!!Educational services", "concept": "Industry by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2404", "limit": 0, "attributes": "S2404_C01_021EA,S2404_C01_021M,S2404_C01_021MA"}, "S1001_C01_005E": {"label": "Estimate!!Total!!Grandchildren under 18 years living with a grandparent householder!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Grandchildren Characteristics", "predicateType": "float", "group": "S1001", "limit": 0, "attributes": "S1001_C01_005EA,S1001_C01_005M,S1001_C01_005MA"}, "S1903_C01_029E": {"label": "Estimate!!Number!!FAMILY INCOME BY FAMILY SIZE!!7-or-more person families", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C01_029EA,S1903_C01_029M,S1903_C01_029MA"}, "S0502_C04_133E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Occupied housing units!!ROOMS!!6 or 7 rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_133EA,S0502_C04_133M,S0502_C04_133MA"}, "S1001_C01_008E": {"label": "Estimate!!Total!!Grandchildren under 18 years living with a grandparent householder!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Grandchildren Characteristics", "predicateType": "float", "group": "S1001", "limit": 0, "attributes": "S1001_C01_008EA,S1001_C01_008M,S1001_C01_008MA"}, "S1903_C01_028E": {"label": "Estimate!!Number!!FAMILY INCOME BY FAMILY SIZE!!6-person families", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C01_028EA,S1903_C01_028M,S1903_C01_028MA"}, "S0502_C04_134E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Occupied housing units!!ROOMS!!8 or more rooms", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_134EA,S0502_C04_134M,S0502_C04_134MA"}, "S1001_C01_007E": {"label": "Estimate!!Total!!Grandchildren under 18 years living with a grandparent householder!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Grandchildren Characteristics", "predicateType": "float", "group": "S1001", "limit": 0, "attributes": "S1001_C01_007EA,S1001_C01_007M,S1001_C01_007MA"}, "S1810_C03_023E": {"label": "Estimate!!Percent with a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a hearing difficulty!!Population 18 to 64 years", "concept": "Disability Characteristics", "predicateType": "float", "group": "S1810", "limit": 0, "attributes": "S1810_C03_023EA,S1810_C03_023M,S1810_C03_023MA"}, "S1001_C01_014E": {"label": "Estimate!!Total!!Grandchildren under 18 years living with a grandparent householder!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Grandchildren Characteristics", "predicateType": "float", "group": "S1001", "limit": 0, "attributes": "S1001_C01_014EA,S1001_C01_014M,S1001_C01_014MA"}, "S2301_C01_030E": {"label": "Estimate!!Total!!Population 20 to 64 years!!DISABILITY STATUS!!With any disability", "concept": "Employment Status", "predicateType": "int", "group": "S2301", "limit": 0, "attributes": "S2301_C01_030EA,S2301_C01_030M,S2301_C01_030MA"}, "S1810_C03_022E": {"label": "Estimate!!Percent with a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a hearing difficulty!!Population under 18 years!!Population 5 to 17 years", "concept": "Disability Characteristics", "predicateType": "float", "group": "S1810", "limit": 0, "attributes": "S1810_C03_022EA,S1810_C03_022M,S1810_C03_022MA"}, "S1001_C01_013E": {"label": "Estimate!!Total!!Grandchildren under 18 years living with a grandparent householder!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Grandchildren Characteristics", "predicateType": "float", "group": "S1001", "limit": 0, "attributes": "S1001_C01_013EA,S1001_C01_013M,S1001_C01_013MA"}, "S2301_C01_031E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 to 64 years", "concept": "Employment Status", "predicateType": "int", "group": "S2301", "limit": 0, "attributes": "S2301_C01_031EA,S2301_C01_031M,S2301_C01_031MA"}, "S1810_C03_025E": {"label": "Estimate!!Percent with a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a hearing difficulty!!Population 18 to 64 years!!Population 35 to 64 years", "concept": "Disability Characteristics", "predicateType": "float", "group": "S1810", "limit": 0, "attributes": "S1810_C03_025EA,S1810_C03_025M,S1810_C03_025MA"}, "S0501_C04_030E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_030EA,S0501_C04_030M,S0501_C04_030MA"}, "S1001_C01_016E": {"label": "Estimate!!Total!!Grandchildren under 18 years living with a grandparent householder!!NATIVITY!!Foreign born", "concept": "Grandchildren Characteristics", "predicateType": "float", "group": "S1001", "limit": 0, "attributes": "S1001_C01_016EA,S1001_C01_016M,S1001_C01_016MA"}, "S1810_C03_024E": {"label": "Estimate!!Percent with a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a hearing difficulty!!Population 18 to 64 years!!Population 18 to 34 years", "concept": "Disability Characteristics", "predicateType": "float", "group": "S1810", "limit": 0, "attributes": "S1810_C03_024EA,S1810_C03_024M,S1810_C03_024MA"}, "S1001_C01_015E": {"label": "Estimate!!Total!!Grandchildren under 18 years living with a grandparent householder!!NATIVITY!!Native", "concept": "Grandchildren Characteristics", "predicateType": "float", "group": "S1001", "limit": 0, "attributes": "S1001_C01_015EA,S1001_C01_015M,S1001_C01_015MA"}, "S0601PR_C02_019E": {"label": "Estimate!!Native; born in Puerto Rico!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C02_019EA,S0601PR_C02_019M,S0601PR_C02_019MA"}, "S1903_C01_023E": {"label": "Estimate!!Number!!FAMILIES!!Families!!Male householder, no spouse present!!With own children under 18 years", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C01_023EA,S1903_C01_023M,S1903_C01_023MA"}, "S1001_C01_010E": {"label": "Estimate!!Total!!Grandchildren under 18 years living with a grandparent householder!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Grandchildren Characteristics", "predicateType": "float", "group": "S1001", "limit": 0, "attributes": "S1001_C01_010EA,S1001_C01_010M,S1001_C01_010MA"}, "S1810_C03_027E": {"label": "Estimate!!Percent with a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a hearing difficulty!!Population 65 years and over!!Population 65 to 74 years", "concept": "Disability Characteristics", "predicateType": "float", "group": "S1810", "limit": 0, "attributes": "S1810_C03_027EA,S1810_C03_027M,S1810_C03_027MA"}, "S2301_C01_034E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 to 64 years!!Some college or associate's degree", "concept": "Employment Status", "predicateType": "int", "group": "S2301", "limit": 0, "attributes": "S2301_C01_034EA,S2301_C01_034M,S2301_C01_034MA"}, "S0601PR_C02_018E": {"label": "Estimate!!Native; born in Puerto Rico!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C02_018EA,S0601PR_C02_018M,S0601PR_C02_018MA"}, "S1903_C01_022E": {"label": "Estimate!!Number!!FAMILIES!!Families!!Male householder, no spouse present", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C01_022EA,S1903_C01_022M,S1903_C01_022MA"}, "S1810_C03_026E": {"label": "Estimate!!Percent with a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a hearing difficulty!!Population 65 years and over", "concept": "Disability Characteristics", "predicateType": "float", "group": "S1810", "limit": 0, "attributes": "S1810_C03_026EA,S1810_C03_026M,S1810_C03_026MA"}, "S2301_C01_035E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 to 64 years!!Bachelor's degree or higher", "concept": "Employment Status", "predicateType": "int", "group": "S2301", "limit": 0, "attributes": "S2301_C01_035EA,S2301_C01_035M,S2301_C01_035MA"}, "S0601PR_C02_017E": {"label": "Estimate!!Native; born in Puerto Rico!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C02_017EA,S0601PR_C02_017M,S0601PR_C02_017MA"}, "S1903_C01_021E": {"label": "Estimate!!Number!!FAMILIES!!Families!!Female householder, no spouse present!!With own children under 18 years", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C01_021EA,S1903_C01_021M,S1903_C01_021MA"}, "S1001_C01_012E": {"label": "Estimate!!Total!!Grandchildren under 18 years living with a grandparent householder!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Grandchildren Characteristics", "predicateType": "float", "group": "S1001", "limit": 0, "attributes": "S1001_C01_012EA,S1001_C01_012M,S1001_C01_012MA"}, "S1810_C03_029E": {"label": "Estimate!!Percent with a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a vision difficulty", "concept": "Disability Characteristics", "predicateType": "float", "group": "S1810", "limit": 0, "attributes": "S1810_C03_029EA,S1810_C03_029M,S1810_C03_029MA"}, "S2301_C01_032E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 to 64 years!!Less than high school graduate", "concept": "Employment Status", "predicateType": "int", "group": "S2301", "limit": 0, "attributes": "S2301_C01_032EA,S2301_C01_032M,S2301_C01_032MA"}, "S0601PR_C02_016E": {"label": "Estimate!!Native; born in Puerto Rico!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C02_016EA,S0601PR_C02_016M,S0601PR_C02_016MA"}, "S1903_C01_020E": {"label": "Estimate!!Number!!FAMILIES!!Families!!Female householder, no spouse present", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C01_020EA,S1903_C01_020M,S1903_C01_020MA"}, "S1001_C01_011E": {"label": "Estimate!!Total!!Grandchildren under 18 years living with a grandparent householder!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Grandchildren Characteristics", "predicateType": "float", "group": "S1001", "limit": 0, "attributes": "S1001_C01_011EA,S1001_C01_011M,S1001_C01_011MA"}, "S1810_C03_028E": {"label": "Estimate!!Percent with a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a hearing difficulty!!Population 65 years and over!!Population 75 years and over", "concept": "Disability Characteristics", "predicateType": "float", "group": "S1810", "limit": 0, "attributes": "S1810_C03_028EA,S1810_C03_028M,S1810_C03_028MA"}, "S2301_C01_033E": {"label": "Estimate!!Total!!EDUCATIONAL ATTAINMENT!!Population 25 to 64 years!!High school graduate (includes equivalency)", "concept": "Employment Status", "predicateType": "int", "group": "S2301", "limit": 0, "attributes": "S2301_C01_033EA,S2301_C01_033M,S2301_C01_033MA"}, "S2201_C03_012E": {"label": "Estimate!!Households receiving food stamps/SNAP!!Households!!With children under 18 years!!Other family:!!Male householder, no spouse present", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C03_012EA,S2201_C03_012M,S2201_C03_012MA"}, "S0601PR_C02_015E": {"label": "Estimate!!Native; born in Puerto Rico!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C02_015EA,S0601PR_C02_015M,S0601PR_C02_015MA"}, "S0503_C03_066E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Government workers", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_066EA,S0503_C03_066M,S0503_C03_066MA"}, "S0501_C04_036E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!High school (grades 9-12)", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_036EA,S0501_C04_036M,S0501_C04_036MA"}, "S2201_C03_011E": {"label": "Estimate!!Households receiving food stamps/SNAP!!Households!!With children under 18 years!!Other family:", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C03_011EA,S2201_C03_011M,S2201_C03_011MA"}, "S0601PR_C02_014E": {"label": "Estimate!!Native; born in Puerto Rico!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C02_014EA,S0601PR_C02_014M,S0601PR_C02_014MA"}, "S0503_C03_067E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Self-employed workers in own not incorporated business", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_067EA,S0503_C03_067M,S0503_C03_067MA"}, "S0501_C04_035E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Elementary school (grades K-8)", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_035EA,S0501_C04_035M,S0501_C04_035MA"}, "S2201_C03_010E": {"label": "Estimate!!Households receiving food stamps/SNAP!!Households!!With children under 18 years!!Married-couple family", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C03_010EA,S2201_C03_010M,S2201_C03_010MA"}, "S0503_C03_068E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Unpaid family workers", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_068EA,S0503_C03_068M,S0503_C03_068MA"}, "S0501_C04_038E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C04_038EA,S0501_C04_038M,S0501_C04_038MA"}, "S0601PR_C02_013E": {"label": "Estimate!!Native; born in Puerto Rico!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C02_013EA,S0601PR_C02_013M,S0601PR_C02_013MA"}, "S0501_C04_037E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!College or graduate school", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_037EA,S0501_C04_037M,S0501_C04_037MA"}, "S0503_C03_069E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Civilian employed population 16 years and over!!OCCUPATION!!Management, business, science, and arts occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_069EA,S0503_C03_069M,S0503_C03_069MA"}, "S0601PR_C02_012E": {"label": "Estimate!!Native; born in Puerto Rico!!Total population!!SEX!!Female", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C02_012EA,S0601PR_C02_012M,S0601PR_C02_012MA"}, "S0501_C04_032E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_032EA,S0501_C04_032M,S0501_C04_032MA"}, "S0503_C03_062E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Armed Forces", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_062EA,S0503_C03_062M,S0503_C03_062MA"}, "S0601PR_C02_011E": {"label": "Estimate!!Native; born in Puerto Rico!!Total population!!SEX!!Male", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C02_011EA,S0601PR_C02_011M,S0601PR_C02_011MA"}, "S0601_C02_050E": {"label": "Estimate!!Native; born in state of residence!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!100 to 149 percent of the poverty level", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C02_050EA,S0601_C02_050M,S0601_C02_050MA"}, "S0501_C04_031E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!MARITAL STATUS!!Population 15 years and over!!Divorced or separated", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_031EA,S0501_C04_031M,S0501_C04_031MA"}, "S0503_C03_063E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!EMPLOYMENT STATUS!!Population 16 years and over!!Not in labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_063EA,S0503_C03_063M,S0503_C03_063MA"}, "S0601PR_C02_010E": {"label": "Estimate!!Native; born in Puerto Rico!!Total population!!AGE!!Median age (years)", "concept": "Selected Characteristics of the Total and Native Populations in Puerto Rico", "predicateType": "float", "group": "S0601PR", "limit": 0, "attributes": "S0601PR_C02_010EA,S0601PR_C02_010M,S0601PR_C02_010MA"}, "S0601_C02_051E": {"label": "Estimate!!Native; born in state of residence!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population for whom poverty status is determined!!At or above 150 percent of the poverty level", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C02_051EA,S0601_C02_051M,S0601_C02_051MA"}, "S1810_C03_021E": {"label": "Estimate!!Percent with a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a hearing difficulty!!Population under 18 years!!Population under 5 years", "concept": "Disability Characteristics", "predicateType": "float", "group": "S1810", "limit": 0, "attributes": "S1810_C03_021EA,S1810_C03_021M,S1810_C03_021MA"}, "S0501_C04_034E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Nursery school, preschool", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_034EA,S0501_C04_034M,S0501_C04_034MA"}, "S0503_C03_064E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Civilian employed population 16 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C03_064EA,S0503_C03_064M,S0503_C03_064MA"}, "S0601_C02_052E": {"label": "Estimate!!Native; born in state of residence!!PERCENT ALLOCATED!!Citizenship status", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "int", "group": "S0601", "limit": 0, "attributes": "S0601_C02_052EA,S0601_C02_052M,S0601_C02_052MA"}, "S0503_C03_065E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Private wage and salary workers", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_065EA,S0503_C03_065M,S0503_C03_065MA"}, "S1810_C03_020E": {"label": "Estimate!!Percent with a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a hearing difficulty!!Population under 18 years", "concept": "Disability Characteristics", "predicateType": "float", "group": "S1810", "limit": 0, "attributes": "S1810_C03_020EA,S1810_C03_020M,S1810_C03_020MA"}, "S0501_C04_033E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C04_033EA,S0501_C04_033M,S0501_C04_033MA"}, "S0601_C02_053E": {"label": "Estimate!!Native; born in state of residence!!PERCENT ALLOCATED!!Place of birth", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "int", "group": "S0601", "limit": 0, "attributes": "S0601_C02_053EA,S0601_C02_053M,S0601_C02_053MA"}, "S0503_C03_070E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Civilian employed population 16 years and over!!OCCUPATION!!Service occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_070EA,S0503_C03_070M,S0503_C03_070MA"}, "S2601A_C04_107E": {"label": "Estimate!!Noninstitutionalized group quarters population!!POVERTY RATES FOR PEOPLE FOR WHOM POVERTY STATUS IS DETERMINED!!All people!!18 years and over", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_107EA,S2601A_C04_107M,S2601A_C04_107MA"}, "S2201_C03_008E": {"label": "Estimate!!Households receiving food stamps/SNAP!!Households!!Nonfamily households", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C03_008EA,S2201_C03_008M,S2201_C03_008MA"}, "S0505_C02_020E": {"label": "Estimate!!Foreign-born; Born in Asia!!Foreign-born population!!SEX AND AGE!!85 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_020EA,S0505_C02_020M,S0505_C02_020MA"}, "S2414_C02_026E": {"label": "Estimate!!Median earnings (dollars) for male!!Full-time, year-round civilian employed population 16 years and over with earnings!!Other services, except public administration", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C02_026EA,S2414_C02_026M,S2414_C02_026MA"}, "S0503_C03_071E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Civilian employed population 16 years and over!!OCCUPATION!!Sales and office occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_071EA,S0503_C03_071M,S0503_C03_071MA"}, "S2601A_C04_108E": {"label": "Estimate!!Noninstitutionalized group quarters population!!POVERTY RATES FOR PEOPLE FOR WHOM POVERTY STATUS IS DETERMINED!!All people!!18 to 64 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_108EA,S2601A_C04_108M,S2601A_C04_108MA"}, "S2201_C03_007E": {"label": "Estimate!!Households receiving food stamps/SNAP!!Households!!Other family:!!Female householder, no spouse present", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C03_007EA,S2201_C03_007M,S2201_C03_007MA"}, "S2414_C02_025E": {"label": "Estimate!!Median earnings (dollars) for male!!Full-time, year-round civilian employed population 16 years and over with earnings!!Arts, entertainment, and recreation, and accommodation and food services:!!Accommodation and food services", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C02_025EA,S2414_C02_025M,S2414_C02_025MA"}, "S2601A_C04_105E": {"label": "Estimate!!Noninstitutionalized group quarters population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!With Food Stamp/SNAP benefits", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_105EA,S2601A_C04_105M,S2601A_C04_105MA"}, "S2201_C03_006E": {"label": "Estimate!!Households receiving food stamps/SNAP!!Households!!Other family:!!Male householder, no spouse present", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C03_006EA,S2201_C03_006M,S2201_C03_006MA"}, "S0503_C03_072E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Civilian employed population 16 years and over!!OCCUPATION!!Natural resources, construction, and maintenance occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_072EA,S0503_C03_072M,S0503_C03_072MA"}, "S2414_C02_024E": {"label": "Estimate!!Median earnings (dollars) for male!!Full-time, year-round civilian employed population 16 years and over with earnings!!Arts, entertainment, and recreation, and accommodation and food services:!!Arts, entertainment, and recreation", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C02_024EA,S2414_C02_024M,S2414_C02_024MA"}, "S2601A_C04_106E": {"label": "Estimate!!Noninstitutionalized group quarters population!!POVERTY RATES FOR PEOPLE FOR WHOM POVERTY STATUS IS DETERMINED!!All people", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_106EA,S2601A_C04_106M,S2601A_C04_106MA"}, "S2201_C03_005E": {"label": "Estimate!!Households receiving food stamps/SNAP!!Households!!Other family:", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C03_005EA,S2201_C03_005M,S2201_C03_005MA"}, "S0503_C03_073E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Civilian employed population 16 years and over!!OCCUPATION!!Production, transportation, and material moving occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_073EA,S0503_C03_073M,S0503_C03_073MA"}, "S2414_C02_023E": {"label": "Estimate!!Median earnings (dollars) for male!!Full-time, year-round civilian employed population 16 years and over with earnings!!Arts, entertainment, and recreation, and accommodation and food services:", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C02_023EA,S2414_C02_023M,S2414_C02_023MA"}, "S2201_C03_004E": {"label": "Estimate!!Households receiving food stamps/SNAP!!Households!!Married-couple family", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C03_004EA,S2201_C03_004M,S2201_C03_004MA"}, "S0501_C04_028E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!MARITAL STATUS!!Population 15 years and over", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C04_028EA,S0501_C04_028M,S0501_C04_028MA"}, "S0502PR_C02_007E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Foreign-born population!!WORLD REGION OF BIRTH OF FOREIGN-BORN!!Africa", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_007EA,S0502PR_C02_007M,S0502PR_C02_007MA"}, "S0505_C02_024E": {"label": "Estimate!!Foreign-born; Born in Asia!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_024EA,S0505_C02_024M,S0505_C02_024MA"}, "S0505_C02_023E": {"label": "Estimate!!Foreign-born; Born in Asia!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_023EA,S0505_C02_023M,S0505_C02_023MA"}, "S2201_C03_003E": {"label": "Estimate!!Households receiving food stamps/SNAP!!Households!!No people in the household 60 years and over", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C03_003EA,S2201_C03_003M,S2201_C03_003MA"}, "S0502PR_C02_006E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Foreign-born population!!WORLD REGION OF BIRTH OF FOREIGN-BORN!!Asia", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_006EA,S0502PR_C02_006M,S0502PR_C02_006MA"}, "S0501_C04_027E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!Total population!!Average family size", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_027EA,S0501_C04_027M,S0501_C04_027MA"}, "S2601A_C04_109E": {"label": "Estimate!!Noninstitutionalized group quarters population!!POVERTY RATES FOR PEOPLE FOR WHOM POVERTY STATUS IS DETERMINED!!All people!!65 years and over", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_109EA,S2601A_C04_109M,S2601A_C04_109MA"}, "S0505_C02_022E": {"label": "Estimate!!Foreign-born; Born in Asia!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_022EA,S0505_C02_022M,S0505_C02_022MA"}, "S2201_C03_002E": {"label": "Estimate!!Households receiving food stamps/SNAP!!Households!!With one or more people in the household 60 years and over", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C03_002EA,S2201_C03_002M,S2201_C03_002MA"}, "S0502PR_C02_009E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Foreign-born population!!WORLD REGION OF BIRTH OF FOREIGN-BORN!!Latin America", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_009EA,S0502PR_C02_009M,S0502PR_C02_009MA"}, "S2201_C03_001E": {"label": "Estimate!!Households receiving food stamps/SNAP!!Households", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C03_001EA,S2201_C03_001M,S2201_C03_001MA"}, "S0505_C02_021E": {"label": "Estimate!!Foreign-born; Born in Asia!!Foreign-born population!!SEX AND AGE!!Median age (years)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_021EA,S0505_C02_021M,S0505_C02_021MA"}, "S0501_C04_029E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_029EA,S0501_C04_029M,S0501_C04_029MA"}, "S0502PR_C02_008E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Foreign-born population!!WORLD REGION OF BIRTH OF FOREIGN-BORN!!Oceania", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_008EA,S0502PR_C02_008M,S0502PR_C02_008MA"}, "S2414_C02_027E": {"label": "Estimate!!Median earnings (dollars) for male!!Full-time, year-round civilian employed population 16 years and over with earnings!!Public administration", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C02_027EA,S2414_C02_027M,S2414_C02_027MA"}, "S0505_C02_028E": {"label": "Estimate!!Foreign-born; Born in Asia!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_028EA,S0505_C02_028M,S0505_C02_028MA"}, "S0502PR_C02_003E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Foreign-born population!!CITIZENSHIP!!Not a citizen", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_003EA,S0502PR_C02_003M,S0502PR_C02_003MA"}, "S1903_C01_015E": {"label": "Estimate!!Number!!FAMILIES!!Families", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C01_015EA,S1903_C01_015M,S1903_C01_015MA"}, "S2301_C01_026E": {"label": "Estimate!!Total!!Population 20 to 64 years!!SEX!!Female!!With own children under 18 years!!With own children under 6 years and 6 to 17 years", "concept": "Employment Status", "predicateType": "int", "group": "S2301", "limit": 0, "attributes": "S2301_C01_026EA,S2301_C01_026M,S2301_C01_026MA"}, "S1810_C03_019E": {"label": "Estimate!!Percent with a disability!!Total civilian noninstitutionalized population!!DISABILITY TYPE BY DETAILED AGE!!With a hearing difficulty", "concept": "Disability Characteristics", "predicateType": "float", "group": "S1810", "limit": 0, "attributes": "S1810_C03_019EA,S1810_C03_019M,S1810_C03_019MA"}, "S0502PR_C02_002E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Foreign-born population!!CITIZENSHIP!!Naturalized citizen", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_002EA,S0502PR_C02_002M,S0502PR_C02_002MA"}, "S0502_C04_140E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Occupied housing units!!SELECTED CHARACTERISTICS!!Limited English Speaking Households", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_140EA,S0502_C04_140M,S0502_C04_140MA"}, "S2301_C01_027E": {"label": "Estimate!!Total!!Population 20 to 64 years!!SEX!!Female!!With own children under 18 years!!With own children 6 to 17 years only", "concept": "Employment Status", "predicateType": "int", "group": "S2301", "limit": 0, "attributes": "S2301_C01_027EA,S2301_C01_027M,S2301_C01_027MA"}, "S0505_C02_027E": {"label": "Estimate!!Foreign-born; Born in Asia!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_027EA,S0505_C02_027M,S0505_C02_027MA"}, "S1903_C01_014E": {"label": "Estimate!!Number!!HOUSEHOLD INCOME BY AGE OF HOUSEHOLDER!!65 years and over", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C01_014EA,S1903_C01_014M,S1903_C01_014MA"}, "S1810_C03_018E": {"label": "Estimate!!Percent with a disability!!Total civilian noninstitutionalized population!!AGE!!75 years and over", "concept": "Disability Characteristics", "predicateType": "float", "group": "S1810", "limit": 0, "attributes": "S1810_C03_018EA,S1810_C03_018M,S1810_C03_018MA"}, "S0502PR_C02_005E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Foreign-born population!!WORLD REGION OF BIRTH OF FOREIGN-BORN!!Europe", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "float", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_005EA,S0502PR_C02_005M,S0502PR_C02_005MA"}, "S0502_C04_141E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Owner-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C04_141EA,S0502_C04_141M,S0502_C04_141MA"}, "S0505_C02_026E": {"label": "Estimate!!Foreign-born; Born in Asia!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_026EA,S0505_C02_026M,S0505_C02_026MA"}, "S1903_C01_013E": {"label": "Estimate!!Number!!HOUSEHOLD INCOME BY AGE OF HOUSEHOLDER!!45 to 64 years", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C01_013EA,S1903_C01_013M,S1903_C01_013MA"}, "S2301_C01_024E": {"label": "Estimate!!Total!!Population 20 to 64 years!!SEX!!Female!!With own children under 18 years", "concept": "Employment Status", "predicateType": "int", "group": "S2301", "limit": 0, "attributes": "S2301_C01_024EA,S2301_C01_024M,S2301_C01_024MA"}, "S1903_C01_012E": {"label": "Estimate!!Number!!HOUSEHOLD INCOME BY AGE OF HOUSEHOLDER!!25 to 44 years", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C01_012EA,S1903_C01_012M,S1903_C01_012MA"}, "S0502PR_C02_004E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Foreign-born population!!WORLD REGION OF BIRTH OF FOREIGN-BORN!!Foreign-born population excluding population born at sea", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_004EA,S0502PR_C02_004M,S0502PR_C02_004MA"}, "S0502_C04_142E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_142EA,S0502_C04_142M,S0502_C04_142MA"}, "S2301_C01_025E": {"label": "Estimate!!Total!!Population 20 to 64 years!!SEX!!Female!!With own children under 18 years!!With own children under 6 years only", "concept": "Employment Status", "predicateType": "int", "group": "S2301", "limit": 0, "attributes": "S2301_C01_025EA,S2301_C01_025M,S2301_C01_025MA"}, "S0505_C02_025E": {"label": "Estimate!!Foreign-born; Born in Asia!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_025EA,S0505_C02_025M,S0505_C02_025MA"}, "S2601A_C04_103E": {"label": "Estimate!!Noninstitutionalized group quarters population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!Median earnings (dollars):!!Male", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_103EA,S2601A_C04_103M,S2601A_C04_103MA"}, "S1903_C01_019E": {"label": "Estimate!!Number!!FAMILIES!!Families!!Married-couple families!!With own children under 18 years", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C01_019EA,S1903_C01_019M,S1903_C01_019MA"}, "S0502_C04_143E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_143EA,S0502_C04_143M,S0502_C04_143MA"}, "S1001_C01_018E": {"label": "Estimate!!Total!!Grandchildren under 18 years living with a grandparent householder", "concept": "Grandchildren Characteristics", "predicateType": "int", "group": "S1001", "limit": 0, "attributes": "S1001_C01_018EA,S1001_C01_018M,S1001_C01_018MA"}, "S2601A_C04_102E": {"label": "Estimate!!Noninstitutionalized group quarters population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!Mean earnings (dollars):!!Female", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_102EA,S2601A_C04_102M,S2601A_C04_102MA"}, "S2601A_C04_104E": {"label": "Estimate!!Noninstitutionalized group quarters population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!Median earnings (dollars):!!Female", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_104EA,S2601A_C04_104M,S2601A_C04_104MA"}, "S1903_C01_018E": {"label": "Estimate!!Number!!FAMILIES!!Families!!Married-couple families", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C01_018EA,S1903_C01_018M,S1903_C01_018MA"}, "S0502_C04_144E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Renter-occupied housing units", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "int", "group": "S0502", "limit": 0, "attributes": "S0502_C04_144EA,S0502_C04_144M,S0502_C04_144MA"}, "S1001_C01_017E": {"label": "Estimate!!Total!!Special Subject!!Median income (dollars)", "concept": "Grandchildren Characteristics", "predicateType": "int", "group": "S1001", "limit": 0, "attributes": "S1001_C01_017EA,S1001_C01_017M,S1001_C01_017MA"}, "S0502PR_C02_001E": {"label": "Estimate!!Foreign-born; Entered 2010 or later!!Foreign-born population", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into Puerto Rico", "predicateType": "int", "group": "S0502PR", "limit": 0, "attributes": "S0502PR_C02_001EA,S0502PR_C02_001M,S0502PR_C02_001MA"}, "S1903_C01_017E": {"label": "Estimate!!Number!!FAMILIES!!Families!!With no own children of householder under 18 years", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C01_017EA,S1903_C01_017M,S1903_C01_017MA"}, "S2301_C01_028E": {"label": "Estimate!!Total!!Population 20 to 64 years!!POVERTY STATUS IN THE PAST 12 MONTHS!!Below poverty level", "concept": "Employment Status", "predicateType": "int", "group": "S2301", "limit": 0, "attributes": "S2301_C01_028EA,S2301_C01_028M,S2301_C01_028MA"}, "S0502_C04_145E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_145EA,S0502_C04_145M,S0502_C04_145MA"}, "S2601A_C04_100E": {"label": "Estimate!!Noninstitutionalized group quarters population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!With earnings:!!Female", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_100EA,S2601A_C04_100M,S2601A_C04_100MA"}, "S0502_C04_146E": {"label": "Estimate!!Foreign-born; Entered before 2000!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Selected Characteristics of the Foreign-Born Population by Period of Entry Into the United States", "predicateType": "float", "group": "S0502", "limit": 0, "attributes": "S0502_C04_146EA,S0502_C04_146M,S0502_C04_146MA"}, "S2201_C03_009E": {"label": "Estimate!!Households receiving food stamps/SNAP!!Households!!With children under 18 years", "concept": "Food Stamps/Supplemental Nutrition Assistance Program (SNAP)", "predicateType": "int", "group": "S2201", "limit": 0, "attributes": "S2201_C03_009EA,S2201_C03_009M,S2201_C03_009MA"}, "S2301_C01_029E": {"label": "Estimate!!Total!!Population 20 to 64 years!!POVERTY STATUS IN THE PAST 12 MONTHS!!At or above the poverty level", "concept": "Employment Status", "predicateType": "int", "group": "S2301", "limit": 0, "attributes": "S2301_C01_029EA,S2301_C01_029M,S2301_C01_029MA"}, "S0505_C02_029E": {"label": "Estimate!!Foreign-born; Born in Asia!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_029EA,S0505_C02_029M,S0505_C02_029MA"}, "S1903_C01_016E": {"label": "Estimate!!Number!!FAMILIES!!Families!!With own children of householder under 18 years", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C01_016EA,S1903_C01_016M,S1903_C01_016MA"}, "S1001_C01_019E": {"label": "Estimate!!Total!!Grandchildren under 18 years living with a grandparent householder!!PUBLIC ASSISTANCE IN THE PAST 12 MONTHS!!Grandchildren living in households with Supplemental Security Income (SSI), cash public assistance income, or Food Stamp/SNAP benefits", "concept": "Grandchildren Characteristics", "predicateType": "float", "group": "S1001", "limit": 0, "attributes": "S1001_C01_019EA,S1001_C01_019M,S1001_C01_019MA"}, "S2601A_C04_101E": {"label": "Estimate!!Noninstitutionalized group quarters population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!Mean earnings (dollars):!!Male", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601A", "limit": 0, "attributes": "S2601A_C04_101EA,S2601A_C04_101M,S2601A_C04_101MA"}, "S1301_C02_026E": {"label": "Estimate!!Number!!Women with births in the past 12 months!!LABOR FORCE STATUS!!Women 16 to 50 years", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C02_026EA,S1301_C02_026M,S1301_C02_026MA"}, "S2411_C01_033E": {"label": "Estimate!!Median earnings (dollars)!!Civilian employed population 16 years and over with earnings!!Production, transportation, and material moving occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C01_033EA,S2411_C01_033M,S2411_C01_033MA"}, "S1301_C02_025E": {"label": "Estimate!!Number!!Women with births in the past 12 months!!POVERTY STATUS IN THE PAST 12 MONTHS!!Women 15 to 50 years for whom poverty status is determined!!200 percent or more above poverty level", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C02_025EA,S1301_C02_025M,S1301_C02_025MA"}, "S0501_C01_120E": {"label": "Estimate!!Total!!Occupied housing units!!HOUSING TENURE!!Average household size of renter-occupied unit", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_120EA,S0501_C01_120M,S0501_C01_120MA"}, "S2411_C01_034E": {"label": "Estimate!!Median earnings (dollars)!!Civilian employed population 16 years and over with earnings!!Production, transportation, and material moving occupations:!!Production occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C01_034EA,S2411_C01_034M,S2411_C01_034MA"}, "S1301_C02_024E": {"label": "Estimate!!Number!!Women with births in the past 12 months!!POVERTY STATUS IN THE PAST 12 MONTHS!!Women 15 to 50 years for whom poverty status is determined!!100 to 199 percent of poverty level", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C02_024EA,S1301_C02_024M,S1301_C02_024MA"}, "S0501_C01_121E": {"label": "Estimate!!Total!!Occupied housing units!!ROOMS!!1 room", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_121EA,S0501_C01_121M,S0501_C01_121MA"}, "S2411_C01_031E": {"label": "Estimate!!Median earnings (dollars)!!Civilian employed population 16 years and over with earnings!!Natural resources, construction, and maintenance occupations:!!Construction and extraction occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C01_031EA,S2411_C01_031M,S2411_C01_031MA"}, "S0601_C02_020E": {"label": "Estimate!!Native; born in state of residence!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C02_020EA,S0601_C02_020M,S0601_C02_020MA"}, "S1301_C02_023E": {"label": "Estimate!!Number!!Women with births in the past 12 months!!POVERTY STATUS IN THE PAST 12 MONTHS!!Women 15 to 50 years for whom poverty status is determined!!Below 100 percent of poverty level", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C02_023EA,S1301_C02_023M,S1301_C02_023MA"}, "S0501_C01_122E": {"label": "Estimate!!Total!!Occupied housing units!!ROOMS!!2 or 3 rooms", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_122EA,S0501_C01_122M,S0501_C01_122MA"}, "S2411_C01_032E": {"label": "Estimate!!Median earnings (dollars)!!Civilian employed population 16 years and over with earnings!!Natural resources, construction, and maintenance occupations:!!Installation, maintenance, and repair occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C01_032EA,S2411_C01_032M,S2411_C01_032MA"}, "S0601_C02_021E": {"label": "Estimate!!Native; born in state of residence!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C02_021EA,S0601_C02_021M,S0601_C02_021MA"}, "S0601_C02_022E": {"label": "Estimate!!Native; born in state of residence!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C02_022EA,S0601_C02_022M,S0601_C02_022MA"}, "S0503_C03_058E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_058EA,S0503_C03_058M,S0503_C03_058MA"}, "S2301_C01_022E": {"label": "Estimate!!Total!!Population 20 to 64 years!!SEX!!Male", "concept": "Employment Status", "predicateType": "int", "group": "S2301", "limit": 0, "attributes": "S2301_C01_022EA,S2301_C01_022M,S2301_C01_022MA"}, "S1301_C02_029E": {"label": "Estimate!!Number!!Women with births in the past 12 months!!PUBLIC ASSISTANCE INCOME IN THE PAST 12 MONTHS!!Women 15 to 50 years!!Received public assistance income", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C02_029EA,S1301_C02_029M,S1301_C02_029MA"}, "S2411_C01_030E": {"label": "Estimate!!Median earnings (dollars)!!Civilian employed population 16 years and over with earnings!!Natural resources, construction, and maintenance occupations:!!Farming, fishing, and forestry occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C01_030EA,S2411_C01_030M,S2411_C01_030MA"}, "S0503_C03_059E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Employed", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_059EA,S0503_C03_059M,S0503_C03_059MA"}, "S0601_C02_023E": {"label": "Estimate!!Native; born in state of residence!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "int", "group": "S0601", "limit": 0, "attributes": "S0601_C02_023EA,S0601_C02_023M,S0601_C02_023MA"}, "S2301_C01_023E": {"label": "Estimate!!Total!!Population 20 to 64 years!!SEX!!Female", "concept": "Employment Status", "predicateType": "int", "group": "S2301", "limit": 0, "attributes": "S2301_C01_023EA,S2301_C01_023M,S2301_C01_023MA"}, "S1301_C02_028E": {"label": "Estimate!!Number!!Women with births in the past 12 months!!PUBLIC ASSISTANCE INCOME IN THE PAST 12 MONTHS!!Women 15 to 50 years", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C02_028EA,S1301_C02_028M,S1301_C02_028MA"}, "S0601_C02_024E": {"label": "Estimate!!Native; born in state of residence!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Speak language other than English", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C02_024EA,S0601_C02_024M,S0601_C02_024MA"}, "S2301_C01_020E": {"label": "Estimate!!Total!!Population 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Employment Status", "predicateType": "int", "group": "S2301", "limit": 0, "attributes": "S2301_C01_020EA,S2301_C01_020M,S2301_C01_020MA"}, "S1301_C02_027E": {"label": "Estimate!!Number!!Women with births in the past 12 months!!LABOR FORCE STATUS!!Women 16 to 50 years!!In labor force", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C02_027EA,S1301_C02_027M,S1301_C02_027MA"}, "S0601_C02_025E": {"label": "Estimate!!Native; born in state of residence!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Speak language other than English!!Speak English \"very well\"", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C02_025EA,S0601_C02_025M,S0601_C02_025MA"}, "S2301_C01_021E": {"label": "Estimate!!Total!!Population 20 to 64 years", "concept": "Employment Status", "predicateType": "int", "group": "S2301", "limit": 0, "attributes": "S2301_C01_021EA,S2301_C01_021M,S2301_C01_021MA"}, "S0503_C03_054E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_054EA,S0503_C03_054M,S0503_C03_054MA"}, "S2601C_C02_100E": {"label": "Estimate!!Total group quarters population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!With earnings for full-time, year-round workers:!!Female", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_100EA,S2601C_C02_100M,S2601C_C02_100MA"}, "S1603_C07_012E": {"label": "Estimate!!Percent speak Spanish at home!!Speak a language other than English at home!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "int", "group": "S1603", "limit": 0, "attributes": "S1603_C07_012EA,S1603_C07_012M,S1603_C07_012MA"}, "S2601C_C02_101E": {"label": "Estimate!!Total group quarters population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!Mean earnings (dollars) for full-time, year-round workers:!!Male", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_101EA,S2601C_C02_101M,S2601C_C02_101MA"}, "S0503_C03_055E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English!!Speak English less than \"very well\"", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_055EA,S0503_C03_055M,S0503_C03_055MA"}, "S1603_C07_011E": {"label": "Estimate!!Percent speak Spanish at home!!Speak a language other than English at home!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population 5 years and over for whom poverty status is determined!!At or above poverty level", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "float", "group": "S1603", "limit": 0, "attributes": "S1603_C07_011EA,S1603_C07_011M,S1603_C07_011MA"}, "S1603_C07_014E": {"label": "Estimate!!Percent speak Spanish at home!!Speak a language other than English at home!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate (includes equivalency)", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "float", "group": "S1603", "limit": 0, "attributes": "S1603_C07_014EA,S1603_C07_014M,S1603_C07_014MA"}, "S2601C_C02_102E": {"label": "Estimate!!Total group quarters population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!Mean earnings (dollars) for full-time, year-round workers:!!Female", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_102EA,S2601C_C02_102M,S2601C_C02_102MA"}, "S0503_C03_056E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!EMPLOYMENT STATUS!!Population 16 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C03_056EA,S0503_C03_056M,S0503_C03_056MA"}, "S2601C_C02_103E": {"label": "Estimate!!Total group quarters population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!Median earnings (dollars) full-time, year-round workers:!!Male", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_103EA,S2601C_C02_103M,S2601C_C02_103MA"}, "S0503_C03_057E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_057EA,S0503_C03_057M,S0503_C03_057MA"}, "S1603_C07_013E": {"label": "Estimate!!Percent speak Spanish at home!!Speak a language other than English at home!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than high school graduate", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "float", "group": "S1603", "limit": 0, "attributes": "S1603_C07_013EA,S1603_C07_013M,S1603_C07_013MA"}, "S2601C_C02_104E": {"label": "Estimate!!Total group quarters population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!Median earnings (dollars) full-time, year-round workers:!!Female", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_104EA,S2601C_C02_104M,S2601C_C02_104MA"}, "S0503_C03_050E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_050EA,S0503_C03_050M,S0503_C03_050MA"}, "S0505_C02_052E": {"label": "Estimate!!Foreign-born; Born in Asia!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C02_052EA,S0505_C02_052M,S0505_C02_052MA"}, "S0505_C02_051E": {"label": "Estimate!!Foreign-born; Born in Asia!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Graduate or professional degree", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_051EA,S0505_C02_051M,S0505_C02_051MA"}, "S0503_C03_051E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Graduate or professional degree", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_051EA,S0503_C03_051M,S0503_C03_051MA"}, "S1603_C07_010E": {"label": "Estimate!!Percent speak Spanish at home!!Speak a language other than English at home!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population 5 years and over for whom poverty status is determined!!Below poverty level", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "float", "group": "S1603", "limit": 0, "attributes": "S1603_C07_010EA,S1603_C07_010M,S1603_C07_010MA"}, "S0503_C03_052E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C03_052EA,S0503_C03_052M,S0503_C03_052MA"}, "S0505_C02_050E": {"label": "Estimate!!Foreign-born; Born in Asia!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_050EA,S0505_C02_050M,S0505_C02_050MA"}, "S0503_C03_053E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!English only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_053EA,S0503_C03_053M,S0503_C03_053MA"}, "S1603_C07_008E": {"label": "Estimate!!Percent speak Spanish at home!!Speak a language other than English at home!!Total population 5 years and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born!!Not a U.S. citizen", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "float", "group": "S1603", "limit": 0, "attributes": "S1603_C07_008EA,S1603_C07_008M,S1603_C07_008MA"}, "S0505_C02_056E": {"label": "Estimate!!Foreign-born; Born in Asia!!EMPLOYMENT STATUS!!Population 16 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C02_056EA,S0505_C02_056M,S0505_C02_056MA"}, "S2412_C04_036E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Full-time, year-round civilian employed population 16 years and over with earnings!!Production, transportation, and material moving occupations:!!Material moving occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2412", "limit": 0, "attributes": "S2412_C04_036EA,S2412_C04_036M,S2412_C04_036MA"}, "S2602_C05_069E": {"label": "Estimate!!College/university housing!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Naturalized U.S. citizen!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C05_069EA,S2602_C05_069M,S2602_C05_069MA"}, "S2302_C04_021E": {"label": "Estimate!!Percent Families with own children under 18 years!!WORK STATUS CHARACTERISTICS!!Married-couple families!!Householder worked full-time, year-round in the past 12 months:!!Spouse worked less than full-time, year-round in the past 12 months", "concept": "Employment Characteristics of Families", "predicateType": "float", "group": "S2302", "limit": 0, "attributes": "S2302_C04_021EA,S2302_C04_021M,S2302_C04_021MA"}, "S2602_C05_068E": {"label": "Estimate!!College/university housing!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Naturalized U.S. citizen!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C05_068EA,S2602_C05_068M,S2602_C05_068MA"}, "S1603_C07_007E": {"label": "Estimate!!Percent speak Spanish at home!!Speak a language other than English at home!!Total population 5 years and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born!!Naturalized U.S. citizen", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "float", "group": "S1603", "limit": 0, "attributes": "S1603_C07_007EA,S1603_C07_007M,S1603_C07_007MA"}, "S0505_C02_055E": {"label": "Estimate!!Foreign-born; Born in Asia!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English!!Speak English less than \"very well\"", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_055EA,S0505_C02_055M,S0505_C02_055MA"}, "S2412_C04_035E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Full-time, year-round civilian employed population 16 years and over with earnings!!Production, transportation, and material moving occupations:!!Transportation occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2412", "limit": 0, "attributes": "S2412_C04_035EA,S2412_C04_035M,S2412_C04_035MA"}, "S2302_C04_020E": {"label": "Estimate!!Percent Families with own children under 18 years!!WORK STATUS CHARACTERISTICS!!Married-couple families!!Householder worked full-time, year-round in the past 12 months:!!Spouse worked full-time, year-round in the past 12 months", "concept": "Employment Characteristics of Families", "predicateType": "float", "group": "S2302", "limit": 0, "attributes": "S2302_C04_020EA,S2302_C04_020M,S2302_C04_020MA"}, "S2602_C05_067E": {"label": "Estimate!!College/university housing!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Naturalized U.S. citizen", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C05_067EA,S2602_C05_067M,S2602_C05_067MA"}, "S0503_C03_060E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_060EA,S0503_C03_060M,S0503_C03_060MA"}, "S0505_C02_054E": {"label": "Estimate!!Foreign-born; Born in Asia!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_054EA,S0505_C02_054M,S0505_C02_054MA"}, "S2501_C04_019E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Other family!!Female householder, no spouse present", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C04_019EA,S2501_C04_019M,S2501_C04_019MA"}, "S2302_C04_023E": {"label": "Estimate!!Percent Families with own children under 18 years!!WORK STATUS CHARACTERISTICS!!Married-couple families!!Householder worked less than full-time, year-round in the past 12 months:", "concept": "Employment Characteristics of Families", "predicateType": "float", "group": "S2302", "limit": 0, "attributes": "S2302_C04_023EA,S2302_C04_023M,S2302_C04_023MA"}, "S2602_C05_066E": {"label": "Estimate!!College/university housing!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C05_066EA,S2602_C05_066M,S2602_C05_066MA"}, "S1603_C07_009E": {"label": "Estimate!!Percent speak Spanish at home!!Speak a language other than English at home!!POVERTY STATUS IN THE PAST 12 MONTHS!!Population 5 years and over for whom poverty status is determined", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "int", "group": "S1603", "limit": 0, "attributes": "S1603_C07_009EA,S1603_C07_009M,S1603_C07_009MA"}, "S0505_C02_053E": {"label": "Estimate!!Foreign-born; Born in Asia!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!English only", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_053EA,S0505_C02_053M,S0505_C02_053MA"}, "S0503_C03_061E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed!!Percent of civilian labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_061EA,S0503_C03_061M,S0503_C03_061MA"}, "S2302_C04_022E": {"label": "Estimate!!Percent Families with own children under 18 years!!WORK STATUS CHARACTERISTICS!!Married-couple families!!Householder worked full-time, year-round in the past 12 months:!!Spouse did not work in the past 12 months", "concept": "Employment Characteristics of Families", "predicateType": "float", "group": "S2302", "limit": 0, "attributes": "S2302_C04_022EA,S2302_C04_022M,S2302_C04_022MA"}, "S1603_C07_004E": {"label": "Estimate!!Percent speak Spanish at home!!Speak a language other than English at home!!Total population 5 years and over!!AGE!!65 years and over", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "float", "group": "S1603", "limit": 0, "attributes": "S1603_C07_004EA,S1603_C07_004M,S1603_C07_004MA"}, "S2501_C04_017E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Other family!!Male householder, no spouse present!!Householder 35 to 64 years", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C04_017EA,S2501_C04_017M,S2501_C04_017MA"}, "S1603_C07_003E": {"label": "Estimate!!Percent speak Spanish at home!!Speak a language other than English at home!!Total population 5 years and over!!AGE!!18 to 64 years", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "float", "group": "S1603", "limit": 0, "attributes": "S1603_C07_003EA,S1603_C07_003M,S1603_C07_003MA"}, "S2501_C04_018E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Other family!!Male householder, no spouse present!!Householder 65 years and over", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C04_018EA,S2501_C04_018M,S2501_C04_018MA"}, "S0505_C02_059E": {"label": "Estimate!!Foreign-born; Born in Asia!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Employed", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_059EA,S0505_C02_059M,S0505_C02_059MA"}, "S1603_C07_006E": {"label": "Estimate!!Percent speak Spanish at home!!Speak a language other than English at home!!Total population 5 years and over!!NATIVITY AND CITIZENSHIP STATUS!!Foreign born", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "float", "group": "S1603", "limit": 0, "attributes": "S1603_C07_006EA,S1603_C07_006M,S1603_C07_006MA"}, "S2501_C04_015E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Other family!!Male householder, no spouse present", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C04_015EA,S2501_C04_015M,S2501_C04_015MA"}, "S0505_C02_058E": {"label": "Estimate!!Foreign-born; Born in Asia!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_058EA,S0505_C02_058M,S0505_C02_058MA"}, "S1603_C07_005E": {"label": "Estimate!!Percent speak Spanish at home!!Speak a language other than English at home!!Total population 5 years and over!!NATIVITY AND CITIZENSHIP STATUS!!Native", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "float", "group": "S1603", "limit": 0, "attributes": "S1603_C07_005EA,S1603_C07_005M,S1603_C07_005MA"}, "S2501_C04_016E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Other family!!Male householder, no spouse present!!Householder 15 to 34 years", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C04_016EA,S2501_C04_016M,S2501_C04_016MA"}, "S0505_C02_057E": {"label": "Estimate!!Foreign-born; Born in Asia!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_057EA,S0505_C02_057M,S0505_C02_057MA"}, "S2411_C01_029E": {"label": "Estimate!!Median earnings (dollars)!!Civilian employed population 16 years and over with earnings!!Natural resources, construction, and maintenance occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C01_029EA,S2411_C01_029M,S2411_C01_029MA"}, "S2602_C05_061E": {"label": "Estimate!!College/university housing!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Native", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C05_061EA,S2602_C05_061M,S2602_C05_061MA"}, "S2302_C04_029E": {"label": "Estimate!!Percent Families with own children under 18 years!!WORK STATUS CHARACTERISTICS!!Married-couple families!!Householder did not work in the past 12 months:!!Spouse worked less than full-time, year-round in the past 12 months", "concept": "Employment Characteristics of Families", "predicateType": "float", "group": "S2302", "limit": 0, "attributes": "S2302_C04_029EA,S2302_C04_029M,S2302_C04_029MA"}, "S0501_C01_127E": {"label": "Estimate!!Total!!Occupied housing units!!1.01 or more occupants per room", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_127EA,S0501_C01_127M,S0501_C01_127MA"}, "S2501_C04_013E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Married-couple family!!Householder 65 years and over", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C04_013EA,S2501_C04_013M,S2501_C04_013MA"}, "S0601_C02_014E": {"label": "Estimate!!Native; born in state of residence!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C02_014EA,S0601_C02_014M,S0601_C02_014MA"}, "S2301_C01_014E": {"label": "Estimate!!Total!!Population 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!American Indian and Alaska Native alone", "concept": "Employment Status", "predicateType": "int", "group": "S2301", "limit": 0, "attributes": "S2301_C01_014EA,S2301_C01_014M,S2301_C01_014MA"}, "S2602_C05_060E": {"label": "Estimate!!College/university housing!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C05_060EA,S2602_C05_060M,S2602_C05_060MA"}, "S0501_C01_128E": {"label": "Estimate!!Total!!Occupied housing units!!VEHICLES AVAILABLE!!None", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_128EA,S0501_C01_128M,S0501_C01_128MA"}, "S2501_C04_014E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Other family", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C04_014EA,S2501_C04_014M,S2501_C04_014MA"}, "S0601_C02_015E": {"label": "Estimate!!Native; born in state of residence!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C02_015EA,S0601_C02_015M,S0601_C02_015MA"}, "S2301_C01_015E": {"label": "Estimate!!Total!!Population 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Asian alone", "concept": "Employment Status", "predicateType": "int", "group": "S2301", "limit": 0, "attributes": "S2301_C01_015EA,S2301_C01_015M,S2301_C01_015MA"}, "S2302_C04_028E": {"label": "Estimate!!Percent Families with own children under 18 years!!WORK STATUS CHARACTERISTICS!!Married-couple families!!Householder did not work in the past 12 months:!!Spouse worked full-time, year-round in the past 12 months", "concept": "Employment Characteristics of Families", "predicateType": "float", "group": "S2302", "limit": 0, "attributes": "S2302_C04_028EA,S2302_C04_028M,S2302_C04_028MA"}, "S2411_C01_027E": {"label": "Estimate!!Median earnings (dollars)!!Civilian employed population 16 years and over with earnings!!Sales and office occupations:!!Sales and related occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C01_027EA,S2411_C01_027M,S2411_C01_027MA"}, "S2412_C04_030E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Full-time, year-round civilian employed population 16 years and over with earnings!!Natural resources, construction, and maintenance occupations:!!Farming, fishing, and forestry occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2412", "limit": 0, "attributes": "S2412_C04_030EA,S2412_C04_030M,S2412_C04_030MA"}, "S0601_C02_016E": {"label": "Estimate!!Native; born in state of residence!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C02_016EA,S0601_C02_016M,S0601_C02_016MA"}, "S0501_C01_129E": {"label": "Estimate!!Total!!Occupied housing units!!VEHICLES AVAILABLE!!1 or more", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_129EA,S0501_C01_129M,S0501_C01_129MA"}, "S2501_C04_011E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Married-couple family!!Householder 15 to 34 years", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C04_011EA,S2501_C04_011M,S2501_C04_011MA"}, "S2301_C01_012E": {"label": "Estimate!!Total!!Population 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone", "concept": "Employment Status", "predicateType": "int", "group": "S2301", "limit": 0, "attributes": "S2301_C01_012EA,S2301_C01_012M,S2301_C01_012MA"}, "S2411_C01_028E": {"label": "Estimate!!Median earnings (dollars)!!Civilian employed population 16 years and over with earnings!!Sales and office occupations:!!Office and administrative support occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C01_028EA,S2411_C01_028M,S2411_C01_028MA"}, "S0601_C02_017E": {"label": "Estimate!!Native; born in state of residence!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C02_017EA,S0601_C02_017M,S0601_C02_017MA"}, "S2501_C04_012E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Married-couple family!!Householder 35 to 64 years", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C04_012EA,S2501_C04_012M,S2501_C04_012MA"}, "S2301_C01_013E": {"label": "Estimate!!Total!!Population 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Black or African American alone", "concept": "Employment Status", "predicateType": "int", "group": "S2301", "limit": 0, "attributes": "S2301_C01_013EA,S2301_C01_013M,S2301_C01_013MA"}, "S2411_C01_025E": {"label": "Estimate!!Median earnings (dollars)!!Civilian employed population 16 years and over with earnings!!Service occupations:!!Personal care and service occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C01_025EA,S2411_C01_025M,S2411_C01_025MA"}, "S2602_C05_065E": {"label": "Estimate!!College/university housing!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C05_065EA,S2602_C05_065M,S2602_C05_065MA"}, "S0601_C02_018E": {"label": "Estimate!!Native; born in state of residence!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C02_018EA,S0601_C02_018M,S0601_C02_018MA"}, "S2412_C04_032E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Full-time, year-round civilian employed population 16 years and over with earnings!!Natural resources, construction, and maintenance occupations:!!Installation, maintenance, and repair occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2412", "limit": 0, "attributes": "S2412_C04_032EA,S2412_C04_032M,S2412_C04_032MA"}, "S0501_C01_123E": {"label": "Estimate!!Total!!Occupied housing units!!ROOMS!!4 or 5 rooms", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_123EA,S0501_C01_123M,S0501_C01_123MA"}, "S1301_C02_022E": {"label": "Estimate!!Number!!Women with births in the past 12 months!!POVERTY STATUS IN THE PAST 12 MONTHS!!Women 15 to 50 years for whom poverty status is determined", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C02_022EA,S1301_C02_022M,S1301_C02_022MA"}, "S2301_C01_018E": {"label": "Estimate!!Total!!Population 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Employment Status", "predicateType": "int", "group": "S2301", "limit": 0, "attributes": "S2301_C01_018EA,S2301_C01_018M,S2301_C01_018MA"}, "S2302_C04_025E": {"label": "Estimate!!Percent Families with own children under 18 years!!WORK STATUS CHARACTERISTICS!!Married-couple families!!Householder worked less than full-time, year-round in the past 12 months:!!Spouse worked less than full-time, year-round in the past 12 months", "concept": "Employment Characteristics of Families", "predicateType": "float", "group": "S2302", "limit": 0, "attributes": "S2302_C04_025EA,S2302_C04_025M,S2302_C04_025MA"}, "S2411_C01_026E": {"label": "Estimate!!Median earnings (dollars)!!Civilian employed population 16 years and over with earnings!!Sales and office occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C01_026EA,S2411_C01_026M,S2411_C01_026MA"}, "S2412_C04_031E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Full-time, year-round civilian employed population 16 years and over with earnings!!Natural resources, construction, and maintenance occupations:!!Construction and extraction occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2412", "limit": 0, "attributes": "S2412_C04_031EA,S2412_C04_031M,S2412_C04_031MA"}, "S2602_C05_064E": {"label": "Estimate!!College/university housing!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C05_064EA,S2602_C05_064M,S2602_C05_064MA"}, "S0601_C02_019E": {"label": "Estimate!!Native; born in state of residence!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C02_019EA,S0601_C02_019M,S0601_C02_019MA"}, "S1301_C02_021E": {"label": "Estimate!!Number!!Women with births in the past 12 months!!Women 15 to 50 years!!EDUCATIONAL ATTAINMENT!!Graduate or professional degree", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C02_021EA,S1301_C02_021M,S1301_C02_021MA"}, "S0501_C01_124E": {"label": "Estimate!!Total!!Occupied housing units!!ROOMS!!6 or 7 rooms", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_124EA,S0501_C01_124M,S0501_C01_124MA"}, "S2301_C01_019E": {"label": "Estimate!!Total!!Population 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Employment Status", "predicateType": "int", "group": "S2301", "limit": 0, "attributes": "S2301_C01_019EA,S2301_C01_019M,S2301_C01_019MA"}, "S2501_C04_010E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Married-couple family", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C04_010EA,S2501_C04_010M,S2501_C04_010MA"}, "S2302_C04_024E": {"label": "Estimate!!Percent Families with own children under 18 years!!WORK STATUS CHARACTERISTICS!!Married-couple families!!Householder worked less than full-time, year-round in the past 12 months:!!Spouse worked full-time, year-round in the past 12 months", "concept": "Employment Characteristics of Families", "predicateType": "float", "group": "S2302", "limit": 0, "attributes": "S2302_C04_024EA,S2302_C04_024M,S2302_C04_024MA"}, "S2602_C05_063E": {"label": "Estimate!!College/university housing!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Native!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C05_063EA,S2602_C05_063M,S2602_C05_063MA"}, "S1301_C02_020E": {"label": "Estimate!!Number!!Women with births in the past 12 months!!Women 15 to 50 years!!EDUCATIONAL ATTAINMENT!!Bachelor's degree", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C02_020EA,S1301_C02_020M,S1301_C02_020MA"}, "S2412_C04_034E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Full-time, year-round civilian employed population 16 years and over with earnings!!Production, transportation, and material moving occupations:!!Production occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2412", "limit": 0, "attributes": "S2412_C04_034EA,S2412_C04_034M,S2412_C04_034MA"}, "S0501_C01_125E": {"label": "Estimate!!Total!!Occupied housing units!!ROOMS!!8 or more rooms", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_125EA,S0501_C01_125M,S0501_C01_125MA"}, "S2411_C01_023E": {"label": "Estimate!!Median earnings (dollars)!!Civilian employed population 16 years and over with earnings!!Service occupations:!!Food preparation and serving related occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C01_023EA,S2411_C01_023M,S2411_C01_023MA"}, "S2301_C01_016E": {"label": "Estimate!!Total!!Population 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Native Hawaiian and Other Pacific Islander alone", "concept": "Employment Status", "predicateType": "int", "group": "S2301", "limit": 0, "attributes": "S2301_C01_016EA,S2301_C01_016M,S2301_C01_016MA"}, "S2302_C04_027E": {"label": "Estimate!!Percent Families with own children under 18 years!!WORK STATUS CHARACTERISTICS!!Married-couple families!!Householder did not work in the past 12 months:", "concept": "Employment Characteristics of Families", "predicateType": "float", "group": "S2302", "limit": 0, "attributes": "S2302_C04_027EA,S2302_C04_027M,S2302_C04_027MA"}, "S2602_C05_062E": {"label": "Estimate!!College/university housing!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Native!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C05_062EA,S2602_C05_062M,S2602_C05_062MA"}, "S2412_C04_033E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Full-time, year-round civilian employed population 16 years and over with earnings!!Production, transportation, and material moving occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2412", "limit": 0, "attributes": "S2412_C04_033EA,S2412_C04_033M,S2412_C04_033MA"}, "S0501_C01_126E": {"label": "Estimate!!Total!!Occupied housing units!!Median number of rooms", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_126EA,S0501_C01_126M,S0501_C01_126MA"}, "S2411_C01_024E": {"label": "Estimate!!Median earnings (dollars)!!Civilian employed population 16 years and over with earnings!!Service occupations:!!Building and grounds cleaning and maintenance occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C01_024EA,S2411_C01_024M,S2411_C01_024MA"}, "S2301_C01_017E": {"label": "Estimate!!Total!!Population 16 years and over!!RACE AND HISPANIC OR LATINO ORIGIN!!Some other race alone", "concept": "Employment Status", "predicateType": "int", "group": "S2301", "limit": 0, "attributes": "S2301_C01_017EA,S2301_C01_017M,S2301_C01_017MA"}, "S2302_C04_026E": {"label": "Estimate!!Percent Families with own children under 18 years!!WORK STATUS CHARACTERISTICS!!Married-couple families!!Householder worked less than full-time, year-round in the past 12 months:!!Spouse did not work in the past 12 months", "concept": "Employment Characteristics of Families", "predicateType": "float", "group": "S2302", "limit": 0, "attributes": "S2302_C04_026EA,S2302_C04_026M,S2302_C04_026MA"}, "S0802_C01_091E": {"label": "Estimate!!Total!!Workers 16 years and over in households", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "int", "group": "S0802", "limit": 0, "attributes": "S0802_C01_091EA,S0802_C01_091M,S0802_C01_091MA"}, "S0501_C01_131E": {"label": "Estimate!!Total!!Occupied housing units!!SELECTED CHARACTERISTICS!!Limited English Speaking Households", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_131EA,S0501_C01_131M,S0501_C01_131MA"}, "S0601_C02_030E": {"label": "Estimate!!Native; born in state of residence!!MARITAL STATUS!!Population 15 years and over!!Divorced or separated", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C02_030EA,S0601_C02_030M,S0601_C02_030MA"}, "S0802_C01_090E": {"label": "Estimate!!Total!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!Mean travel time to work (minutes)", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_090EA,S0802_C01_090M,S0802_C01_090MA"}, "S0501_C01_132E": {"label": "Estimate!!Total!!Owner-occupied housing units", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C01_132EA,S0501_C01_132M,S0501_C01_132MA"}, "S0601_C02_031E": {"label": "Estimate!!Native; born in state of residence!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C02_031EA,S0601_C02_031M,S0601_C02_031MA"}, "S2501_C04_030E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Nonfamily households!!Householder not living alone!!Householder 35 to 64 years", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C04_030EA,S2501_C04_030M,S2501_C04_030MA"}, "S1810_C03_001E": {"label": "Estimate!!Percent with a disability!!Total civilian noninstitutionalized population", "concept": "Disability Characteristics", "predicateType": "float", "group": "S1810", "limit": 0, "attributes": "S1810_C03_001EA,S1810_C03_001M,S1810_C03_001MA"}, "S0501_C01_133E": {"label": "Estimate!!Total!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_133EA,S0501_C01_133M,S0501_C01_133MA"}, "S0601_C02_032E": {"label": "Estimate!!Native; born in state of residence!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "int", "group": "S0601", "limit": 0, "attributes": "S0601_C02_032EA,S0601_C02_032M,S0601_C02_032MA"}, "S0501_C01_134E": {"label": "Estimate!!Total!!Owner-occupied housing units!!SELECTED MONTHLY OWNER COSTS AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_134EA,S0501_C01_134M,S0501_C01_134MA"}, "S1903_C01_040E": {"label": "Estimate!!Number!!NONFAMILY HOUSEHOLDS!!Nonfamily households!!Male householder!!Not living alone", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C01_040EA,S1903_C01_040M,S1903_C01_040MA"}, "S0601_C02_033E": {"label": "Estimate!!Native; born in state of residence!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than high school graduate", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C02_033EA,S0601_C02_033M,S0601_C02_033MA"}, "S1810_C03_003E": {"label": "Estimate!!Percent with a disability!!Total civilian noninstitutionalized population!!SEX!!Female", "concept": "Disability Characteristics", "predicateType": "float", "group": "S1810", "limit": 0, "attributes": "S1810_C03_003EA,S1810_C03_003M,S1810_C03_003MA"}, "S0503_C03_046E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C03_046EA,S0503_C03_046M,S0503_C03_046MA"}, "S0601_C02_034E": {"label": "Estimate!!Native; born in state of residence!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate (includes equivalency)", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C02_034EA,S0601_C02_034M,S0601_C02_034MA"}, "S2301_C01_010E": {"label": "Estimate!!Total!!Population 16 years and over!!AGE!!65 to 74 years", "concept": "Employment Status", "predicateType": "int", "group": "S2301", "limit": 0, "attributes": "S2301_C01_010EA,S2301_C01_010M,S2301_C01_010MA"}, "S1810_C03_002E": {"label": "Estimate!!Percent with a disability!!Total civilian noninstitutionalized population!!SEX!!Male", "concept": "Disability Characteristics", "predicateType": "float", "group": "S1810", "limit": 0, "attributes": "S1810_C03_002EA,S1810_C03_002M,S1810_C03_002MA"}, "S0503_C03_047E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than high school graduate", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_047EA,S0503_C03_047M,S0503_C03_047MA"}, "S0601_C02_035E": {"label": "Estimate!!Native; born in state of residence!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college or associate's degree", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C02_035EA,S0601_C02_035M,S0601_C02_035MA"}, "S2301_C01_011E": {"label": "Estimate!!Total!!Population 16 years and over!!AGE!!75 years and over", "concept": "Employment Status", "predicateType": "int", "group": "S2301", "limit": 0, "attributes": "S2301_C01_011EA,S2301_C01_011M,S2301_C01_011MA"}, "S0601_C02_036E": {"label": "Estimate!!Native; born in state of residence!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C02_036EA,S0601_C02_036M,S0601_C02_036MA"}, "S1810_C03_005E": {"label": "Estimate!!Percent with a disability!!Total civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!Black or African American alone", "concept": "Disability Characteristics", "predicateType": "float", "group": "S1810", "limit": 0, "attributes": "S1810_C03_005EA,S1810_C03_005M,S1810_C03_005MA"}, "S0503_C03_048E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate (includes equivalency)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_048EA,S0503_C03_048M,S0503_C03_048MA"}, "S0501_C01_130E": {"label": "Estimate!!Total!!Occupied housing units!!SELECTED CHARACTERISTICS!!No telephone service available", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_130EA,S0501_C01_130M,S0501_C01_130MA"}, "S1810_C03_004E": {"label": "Estimate!!Percent with a disability!!Total civilian noninstitutionalized population!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone", "concept": "Disability Characteristics", "predicateType": "float", "group": "S1810", "limit": 0, "attributes": "S1810_C03_004EA,S1810_C03_004M,S1810_C03_004MA"}, "S0601_C02_037E": {"label": "Estimate!!Native; born in state of residence!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Graduate or professional degree", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C02_037EA,S0601_C02_037M,S0601_C02_037MA"}, "S0503_C03_049E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college or associate's degree", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_049EA,S0503_C03_049M,S0503_C03_049MA"}, "S0802_C01_099E": {"label": "Estimate!!Total!!PERCENT ALLOCATED!!Time of departure to go to work", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_099EA,S0802_C01_099M,S0802_C01_099MA"}, "S0503_C03_042E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Nursery school, preschool", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_042EA,S0503_C03_042M,S0503_C03_042MA"}, "S0503_C03_043E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Elementary school (grades K-8)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_043EA,S0503_C03_043M,S0503_C03_043MA"}, "S0802_C01_098E": {"label": "Estimate!!Total!!PERCENT ALLOCATED!!Means of transportation to work", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_098EA,S0802_C01_098M,S0802_C01_098MA"}, "S2412_C04_019E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Full-time, year-round civilian employed population 16 years and over with earnings!!Service occupations:!!Healthcare support occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2412", "limit": 0, "attributes": "S2412_C04_019EA,S2412_C04_019M,S2412_C04_019MA"}, "S0802_C01_097E": {"label": "Estimate!!Total!!Workers 16 years and over in households!!VEHICLES AVAILABLE!!3 or more vehicles available", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_097EA,S0802_C01_097M,S0802_C01_097MA"}, "S0503_C03_044E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!High school (grades 9-12)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_044EA,S0503_C03_044M,S0503_C03_044MA"}, "S2408_C04_001E": {"label": "Estimate!!Female!!Civilian employed population 16 years and over", "concept": "Class of Worker by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2408", "limit": 0, "attributes": "S2408_C04_001EA,S2408_C04_001M,S2408_C04_001MA"}, "S0802_C01_096E": {"label": "Estimate!!Total!!Workers 16 years and over in households!!VEHICLES AVAILABLE!!2 vehicles available", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_096EA,S0802_C01_096M,S0802_C01_096MA"}, "S0503_C03_045E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!College or graduate school", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_045EA,S0503_C03_045M,S0503_C03_045MA"}, "S2408_C04_002E": {"label": "Estimate!!Female!!Civilian employed population 16 years and over!!Private for-profit wage and salary workers:", "concept": "Class of Worker by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2408", "limit": 0, "attributes": "S2408_C04_002EA,S2408_C04_002M,S2408_C04_002MA"}, "S0802_C01_095E": {"label": "Estimate!!Total!!Workers 16 years and over in households!!VEHICLES AVAILABLE!!1 vehicle available", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_095EA,S0802_C01_095M,S0802_C01_095MA"}, "S0505_C02_040E": {"label": "Estimate!!Foreign-born; Born in Asia!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_040EA,S0505_C02_040M,S0505_C02_040MA"}, "S2414_C02_010E": {"label": "Estimate!!Median earnings (dollars) for male!!Full-time, year-round civilian employed population 16 years and over with earnings!!Transportation and warehousing, and utilities:!!Transportation and warehousing", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C02_010EA,S2414_C02_010M,S2414_C02_010MA"}, "S2408_C04_003E": {"label": "Estimate!!Female!!Civilian employed population 16 years and over!!Private for-profit wage and salary workers:!!Employee of private company workers", "concept": "Class of Worker by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2408", "limit": 0, "attributes": "S2408_C04_003EA,S2408_C04_003M,S2408_C04_003MA"}, "S0802_C01_094E": {"label": "Estimate!!Total!!Workers 16 years and over in households!!VEHICLES AVAILABLE!!No vehicle available", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_094EA,S0802_C01_094M,S0802_C01_094MA"}, "S2408_C04_004E": {"label": "Estimate!!Female!!Civilian employed population 16 years and over!!Private for-profit wage and salary workers:!!Self-employed in own incorporated business workers", "concept": "Class of Worker by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2408", "limit": 0, "attributes": "S2408_C04_004EA,S2408_C04_004M,S2408_C04_004MA"}, "S0802_C01_093E": {"label": "Estimate!!Total!!Workers 16 years and over in households!!HOUSING TENURE!!Renter-occupied housing units", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_093EA,S0802_C01_093M,S0802_C01_093MA"}, "S0503_C03_040E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!MARITAL STATUS!!Population 15 years and over!!Widowed", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_040EA,S0503_C03_040M,S0503_C03_040MA"}, "S2408_C04_005E": {"label": "Estimate!!Female!!Civilian employed population 16 years and over!!Private not-for-profit wage and salary workers", "concept": "Class of Worker by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2408", "limit": 0, "attributes": "S2408_C04_005EA,S2408_C04_005M,S2408_C04_005MA"}, "S0802_C01_092E": {"label": "Estimate!!Total!!Workers 16 years and over in households!!HOUSING TENURE!!Owner-occupied housing units", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_092EA,S0802_C01_092M,S0802_C01_092MA"}, "S0503_C03_041E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C03_041EA,S0503_C03_041M,S0503_C03_041MA"}, "S2408_C04_006E": {"label": "Estimate!!Female!!Civilian employed population 16 years and over!!Local government workers", "concept": "Class of Worker by Sex for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2408", "limit": 0, "attributes": "S2408_C04_006EA,S2408_C04_006M,S2408_C04_006MA"}, "S0505_C02_044E": {"label": "Estimate!!Foreign-born; Born in Asia!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!High school (grades 9-12)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_044EA,S0505_C02_044M,S0505_C02_044MA"}, "S2412_C04_024E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Full-time, year-round civilian employed population 16 years and over with earnings!!Service occupations:!!Building and grounds cleaning and maintenance occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2412", "limit": 0, "attributes": "S2412_C04_024EA,S2412_C04_024M,S2412_C04_024MA"}, "S2601C_C02_109E": {"label": "Estimate!!Total group quarters population!!POVERTY RATES FOR PEOPLE FOR WHOM POVERTY STATUS IS DETERMINED!!All people!!65 years and over", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_109EA,S2601C_C02_109M,S2601C_C02_109MA"}, "S2414_C02_002E": {"label": "Estimate!!Median earnings (dollars) for male!!Full-time, year-round civilian employed population 16 years and over with earnings!!Agriculture, forestry, fishing and hunting, and mining:", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C02_002EA,S2414_C02_002M,S2414_C02_002MA"}, "S2412_C04_023E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Full-time, year-round civilian employed population 16 years and over with earnings!!Service occupations:!!Food preparation and serving related occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2412", "limit": 0, "attributes": "S2412_C04_023EA,S2412_C04_023M,S2412_C04_023MA"}, "S0505_C02_043E": {"label": "Estimate!!Foreign-born; Born in Asia!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Elementary school (grades K-8)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_043EA,S0505_C02_043M,S0505_C02_043MA"}, "S2414_C02_001E": {"label": "Estimate!!Median earnings (dollars) for male!!Full-time, year-round civilian employed population 16 years and over with earnings", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C02_001EA,S2414_C02_001M,S2414_C02_001MA"}, "S2602_C05_079E": {"label": "Estimate!!College/university housing!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C05_079EA,S2602_C05_079M,S2602_C05_079MA"}, "S0505_C02_042E": {"label": "Estimate!!Foreign-born; Born in Asia!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!Nursery school, preschool", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_042EA,S0505_C02_042M,S0505_C02_042MA"}, "S2412_C04_026E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Full-time, year-round civilian employed population 16 years and over with earnings!!Sales and office occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2412", "limit": 0, "attributes": "S2412_C04_026EA,S2412_C04_026M,S2412_C04_026MA"}, "S2301_C01_008E": {"label": "Estimate!!Total!!Population 16 years and over!!AGE!!55 to 59 years", "concept": "Employment Status", "predicateType": "int", "group": "S2301", "limit": 0, "attributes": "S2301_C01_008EA,S2301_C01_008M,S2301_C01_008MA"}, "S2602_C05_078E": {"label": "Estimate!!College/university housing!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C05_078EA,S2602_C05_078M,S2602_C05_078MA"}, "S2412_C04_025E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Full-time, year-round civilian employed population 16 years and over with earnings!!Service occupations:!!Personal care and service occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2412", "limit": 0, "attributes": "S2412_C04_025EA,S2412_C04_025M,S2412_C04_025MA"}, "S0505_C02_041E": {"label": "Estimate!!Foreign-born; Born in Asia!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C02_041EA,S0505_C02_041M,S0505_C02_041MA"}, "S2301_C01_009E": {"label": "Estimate!!Total!!Population 16 years and over!!AGE!!60 to 64 years", "concept": "Employment Status", "predicateType": "int", "group": "S2301", "limit": 0, "attributes": "S2301_C01_009EA,S2301_C01_009M,S2301_C01_009MA"}, "S1603_C07_016E": {"label": "Estimate!!Percent speak Spanish at home!!Speak a language other than English at home!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Bachelor's degree or higher", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "float", "group": "S1603", "limit": 0, "attributes": "S1603_C07_016EA,S1603_C07_016M,S1603_C07_016MA"}, "S2501_C04_029E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Nonfamily households!!Householder not living alone!!Householder 15 to 34 years", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C04_029EA,S2501_C04_029M,S2501_C04_029MA"}, "S2412_C04_028E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Full-time, year-round civilian employed population 16 years and over with earnings!!Sales and office occupations:!!Office and administrative support occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2412", "limit": 0, "attributes": "S2412_C04_028EA,S2412_C04_028M,S2412_C04_028MA"}, "S0505_C02_048E": {"label": "Estimate!!Foreign-born; Born in Asia!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!High school graduate (includes equivalency)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_048EA,S0505_C02_048M,S0505_C02_048MA"}, "S2601C_C02_105E": {"label": "Estimate!!Total group quarters population!!INCOME AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Individuals!!With Food Stamp/SNAP benefits", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "int", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_105EA,S2601C_C02_105M,S2601C_C02_105MA"}, "S2414_C02_006E": {"label": "Estimate!!Median earnings (dollars) for male!!Full-time, year-round civilian employed population 16 years and over with earnings!!Manufacturing", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C02_006EA,S2414_C02_006M,S2414_C02_006MA"}, "S1603_C07_015E": {"label": "Estimate!!Percent speak Spanish at home!!Speak a language other than English at home!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college or associate's degree", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "float", "group": "S1603", "limit": 0, "attributes": "S1603_C07_015EA,S1603_C07_015M,S1603_C07_015MA"}, "S2412_C04_027E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Full-time, year-round civilian employed population 16 years and over with earnings!!Sales and office occupations:!!Sales and related occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2412", "limit": 0, "attributes": "S2412_C04_027EA,S2412_C04_027M,S2412_C04_027MA"}, "S2601C_C02_106E": {"label": "Estimate!!Total group quarters population!!POVERTY RATES FOR PEOPLE FOR WHOM POVERTY STATUS IS DETERMINED!!All people", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_106EA,S2601C_C02_106M,S2601C_C02_106MA"}, "S0505_C02_047E": {"label": "Estimate!!Foreign-born; Born in Asia!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Less than high school graduate", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_047EA,S0505_C02_047M,S0505_C02_047MA"}, "S2414_C02_005E": {"label": "Estimate!!Median earnings (dollars) for male!!Full-time, year-round civilian employed population 16 years and over with earnings!!Construction", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C02_005EA,S2414_C02_005M,S2414_C02_005MA"}, "S2601C_C02_107E": {"label": "Estimate!!Total group quarters population!!POVERTY RATES FOR PEOPLE FOR WHOM POVERTY STATUS IS DETERMINED!!All people!!18 years and over", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_107EA,S2601C_C02_107M,S2601C_C02_107MA"}, "S2501_C04_027E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Nonfamily households!!Householder living alone!!Householder 65 years and over", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C04_027EA,S2501_C04_027M,S2501_C04_027MA"}, "S0505_C02_046E": {"label": "Estimate!!Foreign-born; Born in Asia!!EDUCATIONAL ATTAINMENT!!Population 25 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C02_046EA,S0505_C02_046M,S0505_C02_046MA"}, "S2414_C02_004E": {"label": "Estimate!!Median earnings (dollars) for male!!Full-time, year-round civilian employed population 16 years and over with earnings!!Agriculture, forestry, fishing and hunting, and mining:!!Mining, quarrying, and oil and gas extraction", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C02_004EA,S2414_C02_004M,S2414_C02_004MA"}, "S0505_C02_045E": {"label": "Estimate!!Foreign-born; Born in Asia!!SCHOOL ENROLLMENT!!Population 3 years and over enrolled in school!!College or graduate school", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_045EA,S0505_C02_045M,S0505_C02_045MA"}, "S2501_C04_028E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Nonfamily households!!Householder not living alone", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C04_028EA,S2501_C04_028M,S2501_C04_028MA"}, "S2302_C04_030E": {"label": "Estimate!!Percent Families with own children under 18 years!!WORK STATUS CHARACTERISTICS!!Married-couple families!!Householder did not work in the past 12 months:!!Spouse did not work in the past 12 months", "concept": "Employment Characteristics of Families", "predicateType": "float", "group": "S2302", "limit": 0, "attributes": "S2302_C04_030EA,S2302_C04_030M,S2302_C04_030MA"}, "S2412_C04_029E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Full-time, year-round civilian employed population 16 years and over with earnings!!Natural resources, construction, and maintenance occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2412", "limit": 0, "attributes": "S2412_C04_029EA,S2412_C04_029M,S2412_C04_029MA"}, "S2601C_C02_108E": {"label": "Estimate!!Total group quarters population!!POVERTY RATES FOR PEOPLE FOR WHOM POVERTY STATUS IS DETERMINED!!All people!!18 to 64 years", "concept": "Characteristics of the Group Quarters Population in the United States", "predicateType": "float", "group": "S2601C", "limit": 0, "attributes": "S2601C_C02_108EA,S2601C_C02_108M,S2601C_C02_108MA"}, "S2414_C02_003E": {"label": "Estimate!!Median earnings (dollars) for male!!Full-time, year-round civilian employed population 16 years and over with earnings!!Agriculture, forestry, fishing and hunting, and mining:!!Agriculture, forestry, fishing and hunting", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C02_003EA,S2414_C02_003M,S2414_C02_003MA"}, "S2602_C05_073E": {"label": "Estimate!!College/university housing!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C05_073EA,S2602_C05_073M,S2602_C05_073MA"}, "S1301_C02_030E": {"label": "Estimate!!Number!!Women with births in the past 12 months!!PUBLIC ASSISTANCE INCOME IN THE PAST 12 MONTHS!!Women 15 to 50 years!!Did not receive public assistance income", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C02_030EA,S1301_C02_030M,S1301_C02_030MA"}, "S1903_C01_039E": {"label": "Estimate!!Number!!NONFAMILY HOUSEHOLDS!!Nonfamily households!!Male householder!!Living alone", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C01_039EA,S1903_C01_039M,S1903_C01_039MA"}, "S2501_C04_025E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Nonfamily households!!Householder living alone!!Householder 15 to 34 years", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C04_025EA,S2501_C04_025M,S2501_C04_025MA"}, "S0601_C02_026E": {"label": "Estimate!!Native; born in state of residence!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Speak language other than English!!Speak English less than \"very well\"", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C02_026EA,S0601_C02_026M,S0601_C02_026MA"}, "S2301_C01_002E": {"label": "Estimate!!Total!!Population 16 years and over!!AGE!!16 to 19 years", "concept": "Employment Status", "predicateType": "int", "group": "S2301", "limit": 0, "attributes": "S2301_C01_002EA,S2301_C01_002M,S2301_C01_002MA"}, "S2414_C02_009E": {"label": "Estimate!!Median earnings (dollars) for male!!Full-time, year-round civilian employed population 16 years and over with earnings!!Transportation and warehousing, and utilities:", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C02_009EA,S2414_C02_009M,S2414_C02_009MA"}, "S2602_C05_072E": {"label": "Estimate!!College/university housing!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Not a U.S. citizen!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C05_072EA,S2602_C05_072M,S2602_C05_072MA"}, "S0601_C02_027E": {"label": "Estimate!!Native; born in state of residence!!MARITAL STATUS!!Population 15 years and over", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "int", "group": "S0601", "limit": 0, "attributes": "S0601_C02_027EA,S0601_C02_027M,S0601_C02_027MA"}, "S2501_C04_026E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Nonfamily households!!Householder living alone!!Householder 35 to 64 years", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C04_026EA,S2501_C04_026M,S2501_C04_026MA"}, "S2301_C01_003E": {"label": "Estimate!!Total!!Population 16 years and over!!AGE!!20 to 24 years", "concept": "Employment Status", "predicateType": "int", "group": "S2301", "limit": 0, "attributes": "S2301_C01_003EA,S2301_C01_003M,S2301_C01_003MA"}, "S1903_C01_038E": {"label": "Estimate!!Number!!NONFAMILY HOUSEHOLDS!!Nonfamily households!!Male householder", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C01_038EA,S1903_C01_038M,S1903_C01_038MA"}, "S2414_C02_008E": {"label": "Estimate!!Median earnings (dollars) for male!!Full-time, year-round civilian employed population 16 years and over with earnings!!Retail trade", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C02_008EA,S2414_C02_008M,S2414_C02_008MA"}, "S0601_C02_028E": {"label": "Estimate!!Native; born in state of residence!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C02_028EA,S0601_C02_028M,S0601_C02_028MA"}, "S2602_C05_071E": {"label": "Estimate!!College/university housing!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Not a U.S. citizen!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C05_071EA,S2602_C05_071M,S2602_C05_071MA"}, "S1903_C01_037E": {"label": "Estimate!!Number!!NONFAMILY HOUSEHOLDS!!Nonfamily households!!Female householder!!Not living alone", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C01_037EA,S1903_C01_037M,S1903_C01_037MA"}, "S2501_C04_023E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Nonfamily households", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C04_023EA,S2501_C04_023M,S2501_C04_023MA"}, "S2414_C02_007E": {"label": "Estimate!!Median earnings (dollars) for male!!Full-time, year-round civilian employed population 16 years and over with earnings!!Wholesale trade", "concept": "Industry by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2414", "limit": 0, "attributes": "S2414_C02_007EA,S2414_C02_007M,S2414_C02_007MA"}, "S0601_C02_029E": {"label": "Estimate!!Native; born in state of residence!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C02_029EA,S0601_C02_029M,S0601_C02_029MA"}, "S2602_C05_070E": {"label": "Estimate!!College/university housing!!PLACE OF BIRTH, NATIVITY AND CITIZENSHIP STATUS, AND YEAR OF ENTRY!!Total population!!Foreign born!!Not a U.S. citizen", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C05_070EA,S2602_C05_070M,S2602_C05_070MA"}, "S2501_C04_024E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Nonfamily households!!Householder living alone", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C04_024EA,S2501_C04_024M,S2501_C04_024MA"}, "S0505_C02_049E": {"label": "Estimate!!Foreign-born; Born in Asia!!EDUCATIONAL ATTAINMENT!!Population 25 years and over!!Some college or associate's degree", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_049EA,S0505_C02_049M,S0505_C02_049MA"}, "S1903_C01_036E": {"label": "Estimate!!Number!!NONFAMILY HOUSEHOLDS!!Nonfamily households!!Female householder!!Living alone", "concept": "Median Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1903", "limit": 0, "attributes": "S1903_C01_036EA,S1903_C01_036M,S1903_C01_036MA"}, "S2301_C01_001E": {"label": "Estimate!!Total!!Population 16 years and over", "concept": "Employment Status", "predicateType": "int", "group": "S2301", "limit": 0, "attributes": "S2301_C01_001EA,S2301_C01_001M,S2301_C01_001MA"}, "S2602_C05_077E": {"label": "Estimate!!College/university housing!!EMPLOYMENT STATUS!!Population 16 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C05_077EA,S2602_C05_077M,S2602_C05_077MA"}, "S2412_C04_020E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Full-time, year-round civilian employed population 16 years and over with earnings!!Service occupations:!!Protective service occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2412", "limit": 0, "attributes": "S2412_C04_020EA,S2412_C04_020M,S2412_C04_020MA"}, "S0501_C01_135E": {"label": "Estimate!!Total!!Renter-occupied housing units", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C01_135EA,S0501_C01_135M,S0501_C01_135MA"}, "S2301_C01_006E": {"label": "Estimate!!Total!!Population 16 years and over!!AGE!!35 to 44 years", "concept": "Employment Status", "predicateType": "int", "group": "S2301", "limit": 0, "attributes": "S2301_C01_006EA,S2301_C01_006M,S2301_C01_006MA"}, "S2501_C04_021E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Other family!!Female householder, no spouse present!!Householder 35 to 64 years", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C04_021EA,S2501_C04_021M,S2501_C04_021MA"}, "S2602_C05_076E": {"label": "Estimate!!College/university housing!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English!!Speak English less than \"very well\"", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C05_076EA,S2602_C05_076M,S2602_C05_076MA"}, "S0501_C01_136E": {"label": "Estimate!!Total!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_136EA,S0501_C01_136M,S0501_C01_136MA"}, "S2301_C01_007E": {"label": "Estimate!!Total!!Population 16 years and over!!AGE!!45 to 54 years", "concept": "Employment Status", "predicateType": "int", "group": "S2301", "limit": 0, "attributes": "S2301_C01_007EA,S2301_C01_007M,S2301_C01_007MA"}, "S2501_C04_022E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Other family!!Female householder, no spouse present!!Householder 65 years and over", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C04_022EA,S2501_C04_022M,S2501_C04_022MA"}, "S2602_C05_075E": {"label": "Estimate!!College/university housing!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!Language other than English", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C05_075EA,S2602_C05_075M,S2602_C05_075MA"}, "S2412_C04_022E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Full-time, year-round civilian employed population 16 years and over with earnings!!Service occupations:!!Protective service occupations:!!Law enforcement workers including supervisors", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2412", "limit": 0, "attributes": "S2412_C04_022EA,S2412_C04_022M,S2412_C04_022MA"}, "S1301_C02_032E": {"label": "Estimate!!Number!!Women with births in the past 12 months!!PERCENT ALLOCATED!!Fertility", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C02_032EA,S1301_C02_032M,S1301_C02_032MA"}, "S0501_C01_137E": {"label": "Estimate!!Total!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C01_137EA,S0501_C01_137M,S0501_C01_137MA"}, "S2411_C01_035E": {"label": "Estimate!!Median earnings (dollars)!!Civilian employed population 16 years and over with earnings!!Production, transportation, and material moving occupations:!!Transportation occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C01_035EA,S2411_C01_035M,S2411_C01_035MA"}, "S2301_C01_004E": {"label": "Estimate!!Total!!Population 16 years and over!!AGE!!25 to 29 years", "concept": "Employment Status", "predicateType": "int", "group": "S2301", "limit": 0, "attributes": "S2301_C01_004EA,S2301_C01_004M,S2301_C01_004MA"}, "S2411_C01_036E": {"label": "Estimate!!Median earnings (dollars)!!Civilian employed population 16 years and over with earnings!!Production, transportation, and material moving occupations:!!Material moving occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C01_036EA,S2411_C01_036M,S2411_C01_036MA"}, "S2602_C05_074E": {"label": "Estimate!!College/university housing!!LANGUAGE SPOKEN AT HOME AND ABILITY TO SPEAK ENGLISH!!Population 5 years and over!!English only", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C05_074EA,S2602_C05_074M,S2602_C05_074MA"}, "S2412_C04_021E": {"label": "Estimate!!Women's earnings as a percentage of men's earning!!Full-time, year-round civilian employed population 16 years and over with earnings!!Service occupations:!!Protective service occupations:!!Firefighting and prevention, and other protective service workers including supervisors", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "float", "group": "S2412", "limit": 0, "attributes": "S2412_C04_021EA,S2412_C04_021M,S2412_C04_021MA"}, "S1301_C02_031E": {"label": "Estimate!!Number!!Women with births in the past 12 months!!PERCENT ALLOCATED!!Marital status", "concept": "Fertility", "predicateType": "int", "group": "S1301", "limit": 0, "attributes": "S1301_C02_031EA,S1301_C02_031M,S1301_C02_031MA"}, "S2301_C01_005E": {"label": "Estimate!!Total!!Population 16 years and over!!AGE!!30 to 34 years", "concept": "Employment Status", "predicateType": "int", "group": "S2301", "limit": 0, "attributes": "S2301_C01_005EA,S2301_C01_005M,S2301_C01_005MA"}, "S2501_C04_020E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Family households!!Other family!!Female householder, no spouse present!!Householder 15 to 34 years", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C04_020EA,S2501_C04_020M,S2501_C04_020MA"}, "S0503_C03_038E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!MARITAL STATUS!!Population 15 years and over!!Now married, except separated", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_038EA,S0503_C03_038M,S0503_C03_038MA"}, "S2411_C01_010E": {"label": "Estimate!!Median earnings (dollars)!!Civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C01_010EA,S2411_C01_010M,S2411_C01_010MA"}, "S0503_C03_039E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!MARITAL STATUS!!Population 15 years and over!!Divorced or separated", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_039EA,S0503_C03_039M,S0503_C03_039MA"}, "S2602_C05_081E": {"label": "Estimate!!College/university housing!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C05_081EA,S2602_C05_081M,S2602_C05_081MA"}, "S0503_C03_034E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Foreign-born population!!Average household size", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_034EA,S0503_C03_034M,S0503_C03_034MA"}, "S2602_C05_080E": {"label": "Estimate!!College/university housing!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Employed", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C05_080EA,S2602_C05_080M,S2602_C05_080MA"}, "S0503_C03_035E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Foreign-born population!!Average family size", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_035EA,S0503_C03_035M,S0503_C03_035MA"}, "S0503_C03_036E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!MARITAL STATUS!!Population 15 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "int", "group": "S0503", "limit": 0, "attributes": "S0503_C03_036EA,S0503_C03_036M,S0503_C03_036MA"}, "S0503_C03_037E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!MARITAL STATUS!!Population 15 years and over!!Never married", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_037EA,S0503_C03_037M,S0503_C03_037MA"}, "S0601_C02_001E": {"label": "Estimate!!Native; born in state of residence!!Total population", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "int", "group": "S0601", "limit": 0, "attributes": "S0601_C02_001EA,S0601_C02_001M,S0601_C02_001MA"}, "S0802_C01_087E": {"label": "Estimate!!Total!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!35 to 44 minutes", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_087EA,S0802_C01_087M,S0802_C01_087MA"}, "S0503_C03_030E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!Hispanic or Latino origin (of any race)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_030EA,S0503_C03_030M,S0503_C03_030MA"}, "S0505_C02_072E": {"label": "Estimate!!Foreign-born; Born in Asia!!Civilian employed population 16 years and over!!OCCUPATION!!Natural resources, construction, and maintenance occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_072EA,S0505_C02_072M,S0505_C02_072MA"}, "S0802_C01_086E": {"label": "Estimate!!Total!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!30 to 34 minutes", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_086EA,S0802_C01_086M,S0802_C01_086MA"}, "S0505_C02_071E": {"label": "Estimate!!Foreign-born; Born in Asia!!Civilian employed population 16 years and over!!OCCUPATION!!Sales and office occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_071EA,S0505_C02_071M,S0505_C02_071MA"}, "S0503_C03_031E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!White alone, not Hispanic or Latino", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_031EA,S0503_C03_031M,S0503_C03_031MA"}, "S0505_C02_070E": {"label": "Estimate!!Foreign-born; Born in Asia!!Civilian employed population 16 years and over!!OCCUPATION!!Service occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_070EA,S0505_C02_070M,S0505_C02_070MA"}, "S0802_C01_085E": {"label": "Estimate!!Total!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!25 to 29 minutes", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_085EA,S0802_C01_085M,S0802_C01_085MA"}, "S0503_C03_032E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Foreign-born population!!HOUSEHOLD TYPE!!In married-couple family", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_032EA,S0503_C03_032M,S0503_C03_032MA"}, "S0501_C04_002E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!Total population!!SEX AND AGE!!Male", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "float", "group": "S0501", "limit": 0, "attributes": "S0501_C04_002EA,S0501_C04_002M,S0501_C04_002MA"}, "S0503_C03_033E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Foreign-born population!!HOUSEHOLD TYPE!!In other households", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_033EA,S0503_C03_033M,S0503_C03_033MA"}, "S0802_C01_084E": {"label": "Estimate!!Total!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!20 to 24 minutes", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_084EA,S0802_C01_084M,S0802_C01_084MA"}, "S0501_C04_001E": {"label": "Estimate!!Foreign-born; Naturalized citizen!!Total population", "concept": "Selected Characteristics of the Native and Foreign-Born Populations", "predicateType": "int", "group": "S0501", "limit": 0, "attributes": "S0501_C04_001EA,S0501_C04_001M,S0501_C04_001MA"}, "S0802_C01_083E": {"label": "Estimate!!Total!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!15 to 19 minutes", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_083EA,S0802_C01_083M,S0802_C01_083MA"}, "S0505_C02_076E": {"label": "Estimate!!Foreign-born; Born in Asia!!Civilian employed population 16 years and over!!INDUSTRY!!Manufacturing", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_076EA,S0505_C02_076M,S0505_C02_076MA"}, "S0802_C01_082E": {"label": "Estimate!!Total!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!10 to 14 minutes", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_082EA,S0802_C01_082M,S0802_C01_082MA"}, "S0505_C02_075E": {"label": "Estimate!!Foreign-born; Born in Asia!!Civilian employed population 16 years and over!!INDUSTRY!!Construction", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_075EA,S0505_C02_075M,S0505_C02_075MA"}, "S0802_C01_081E": {"label": "Estimate!!Total!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!Less than 10 minutes", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_081EA,S0802_C01_081M,S0802_C01_081MA"}, "S0505_C02_074E": {"label": "Estimate!!Foreign-born; Born in Asia!!Civilian employed population 16 years and over!!INDUSTRY!!Agriculture, forestry, fishing and hunting, and mining", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_074EA,S0505_C02_074M,S0505_C02_074MA"}, "S0802_C01_080E": {"label": "Estimate!!Total!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!9:00 a.m. to 11:59 p.m.", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_080EA,S0802_C01_080M,S0802_C01_080MA"}, "S0505_C02_073E": {"label": "Estimate!!Foreign-born; Born in Asia!!Civilian employed population 16 years and over!!OCCUPATION!!Production, transportation, and material moving occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_073EA,S0505_C02_073M,S0505_C02_073MA"}, "S1901_C02_001E": {"label": "Estimate!!Families!!Total", "concept": "Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1901", "limit": 0, "attributes": "S1901_C02_001EA,S1901_C02_001M,S1901_C02_001MA"}, "S1901_C02_002E": {"label": "Estimate!!Families!!Total!!Less than $10,000", "concept": "Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1901", "limit": 0, "attributes": "S1901_C02_002EA,S1901_C02_002M,S1901_C02_002MA"}, "S0505_C02_079E": {"label": "Estimate!!Foreign-born; Born in Asia!!Civilian employed population 16 years and over!!INDUSTRY!!Transportation and warehousing, and utilities", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_079EA,S0505_C02_079M,S0505_C02_079MA"}, "S0505_C02_078E": {"label": "Estimate!!Foreign-born; Born in Asia!!Civilian employed population 16 years and over!!INDUSTRY!!Retail trade", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_078EA,S0505_C02_078M,S0505_C02_078MA"}, "S1901_C02_003E": {"label": "Estimate!!Families!!Total!!$10,000 to $14,999", "concept": "Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1901", "limit": 0, "attributes": "S1901_C02_003EA,S1901_C02_003M,S1901_C02_003MA"}, "S0505_C02_077E": {"label": "Estimate!!Foreign-born; Born in Asia!!Civilian employed population 16 years and over!!INDUSTRY!!Wholesale trade", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_077EA,S0505_C02_077M,S0505_C02_077MA"}, "S1901_C02_004E": {"label": "Estimate!!Families!!Total!!$15,000 to $24,999", "concept": "Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1901", "limit": 0, "attributes": "S1901_C02_004EA,S1901_C02_004M,S1901_C02_004MA"}, "S2411_C01_009E": {"label": "Estimate!!Median earnings (dollars)!!Civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Computer, engineering, and science occupations:!!Life, physical, and social science occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C01_009EA,S2411_C01_009M,S2411_C01_009MA"}, "S2411_C01_007E": {"label": "Estimate!!Median earnings (dollars)!!Civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Computer, engineering, and science occupations:!!Computer and mathematical occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C01_007EA,S2411_C01_007M,S2411_C01_007MA"}, "S0802_C01_089E": {"label": "Estimate!!Total!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!60 or more minutes", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_089EA,S0802_C01_089M,S0802_C01_089MA"}, "S2411_C01_008E": {"label": "Estimate!!Median earnings (dollars)!!Civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Computer, engineering, and science occupations:!!Architecture and engineering occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C01_008EA,S2411_C01_008M,S2411_C01_008MA"}, "S0802_C01_088E": {"label": "Estimate!!Total!!Workers 16 years and over who did not work from home!!TRAVEL TIME TO WORK!!45 to 59 minutes", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_088EA,S0802_C01_088M,S0802_C01_088MA"}, "S2411_C01_005E": {"label": "Estimate!!Median earnings (dollars)!!Civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Management, business, and financial occupations:!!Business and financial operations occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C01_005EA,S2411_C01_005M,S2411_C01_005MA"}, "S2602_C05_085E": {"label": "Estimate!!College/university housing!!OCCUPATION!!Civilian employed population 16 years and over", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C05_085EA,S2602_C05_085M,S2602_C05_085MA"}, "S2501_C04_037E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!FAMILY TYPE AND PRESENCE OF OWN CHILDREN!!With related children of householder under 18 years!!No own children of householder under 18 years", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C04_037EA,S2501_C04_037M,S2501_C04_037MA"}, "S1901_C02_009E": {"label": "Estimate!!Families!!Total!!$100,000 to $149,999", "concept": "Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1901", "limit": 0, "attributes": "S1901_C02_009EA,S1901_C02_009M,S1901_C02_009MA"}, "S2302_C04_005E": {"label": "Estimate!!Percent Families with own children under 18 years!!Families!!EMPLOYMENT STATUS CHARACTERISTICS!!Opposite-sex married-couple families!!Wife in labor force, husband not in labor force", "concept": "Employment Characteristics of Families", "predicateType": "float", "group": "S2302", "limit": 0, "attributes": "S2302_C04_005EA,S2302_C04_005M,S2302_C04_005MA"}, "S2411_C01_006E": {"label": "Estimate!!Median earnings (dollars)!!Civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Computer, engineering, and science occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C01_006EA,S2411_C01_006M,S2411_C01_006MA"}, "S2602_C05_084E": {"label": "Estimate!!College/university housing!!EMPLOYMENT STATUS!!Population 16 years and over!!Not in labor force", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C05_084EA,S2602_C05_084M,S2602_C05_084MA"}, "S2501_C04_038E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!FAMILY TYPE AND PRESENCE OF OWN CHILDREN!!No related children of householder under 18 years", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C04_038EA,S2501_C04_038M,S2501_C04_038MA"}, "S2302_C04_004E": {"label": "Estimate!!Percent Families with own children under 18 years!!Families!!EMPLOYMENT STATUS CHARACTERISTICS!!Opposite-sex married-couple families!!Husband in labor force, wife not in labor force", "concept": "Employment Characteristics of Families", "predicateType": "float", "group": "S2302", "limit": 0, "attributes": "S2302_C04_004EA,S2302_C04_004M,S2302_C04_004MA"}, "S2411_C01_003E": {"label": "Estimate!!Median earnings (dollars)!!Civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Management, business, and financial occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C01_003EA,S2411_C01_003M,S2411_C01_003MA"}, "S2602_C05_083E": {"label": "Estimate!!College/university housing!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Armed Forces", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C05_083EA,S2602_C05_083M,S2602_C05_083MA"}, "S2302_C04_007E": {"label": "Estimate!!Percent Families with own children under 18 years!!Families!!EMPLOYMENT STATUS CHARACTERISTICS!!Other families", "concept": "Employment Characteristics of Families", "predicateType": "int", "group": "S2302", "limit": 0, "attributes": "S2302_C04_007EA,S2302_C04_007M,S2302_C04_007MA"}, "S2501_C04_035E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!FAMILY TYPE AND PRESENCE OF OWN CHILDREN!!With related children of householder under 18 years!!With own children of householder under 18 years!!Under 6 years and 6 to 17 years", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C04_035EA,S2501_C04_035M,S2501_C04_035MA"}, "S2411_C01_004E": {"label": "Estimate!!Median earnings (dollars)!!Civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Management, business, and financial occupations:!!Management occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C01_004EA,S2411_C01_004M,S2411_C01_004MA"}, "S2602_C05_082E": {"label": "Estimate!!College/university housing!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed!!Percent of civilian labor force", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C05_082EA,S2602_C05_082M,S2602_C05_082MA"}, "S2501_C04_036E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!FAMILY TYPE AND PRESENCE OF OWN CHILDREN!!With related children of householder under 18 years!!With own children of householder under 18 years!!6 to 17 years only", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C04_036EA,S2501_C04_036M,S2501_C04_036MA"}, "S2302_C04_006E": {"label": "Estimate!!Percent Families with own children under 18 years!!Families!!EMPLOYMENT STATUS CHARACTERISTICS!!Opposite-sex married-couple families!!Both husband and wife not in labor force", "concept": "Employment Characteristics of Families", "predicateType": "float", "group": "S2302", "limit": 0, "attributes": "S2302_C04_006EA,S2302_C04_006M,S2302_C04_006MA"}, "S2602_C05_089E": {"label": "Estimate!!College/university housing!!OCCUPATION!!Civilian employed population 16 years and over!!Natural resources, construction, extraction, and maintenance occupations", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C05_089EA,S2602_C05_089M,S2602_C05_089MA"}, "S2411_C01_001E": {"label": "Estimate!!Median earnings (dollars)!!Civilian employed population 16 years and over with earnings", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C01_001EA,S2411_C01_001M,S2411_C01_001MA"}, "S1901_C02_005E": {"label": "Estimate!!Families!!Total!!$25,000 to $34,999", "concept": "Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1901", "limit": 0, "attributes": "S1901_C02_005EA,S1901_C02_005M,S1901_C02_005MA"}, "S2501_C04_033E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!FAMILY TYPE AND PRESENCE OF OWN CHILDREN!!With related children of householder under 18 years!!With own children of householder under 18 years", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C04_033EA,S2501_C04_033M,S2501_C04_033MA"}, "S2302_C04_001E": {"label": "Estimate!!Percent Families with own children under 18 years!!Families", "concept": "Employment Characteristics of Families", "predicateType": "int", "group": "S2302", "limit": 0, "attributes": "S2302_C04_001EA,S2302_C04_001M,S2302_C04_001MA"}, "S2602_C05_088E": {"label": "Estimate!!College/university housing!!OCCUPATION!!Civilian employed population 16 years and over!!Sales and office occupations", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C05_088EA,S2602_C05_088M,S2602_C05_088MA"}, "S2411_C01_002E": {"label": "Estimate!!Median earnings (dollars)!!Civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C01_002EA,S2411_C01_002M,S2411_C01_002MA"}, "S1901_C02_006E": {"label": "Estimate!!Families!!Total!!$35,000 to $49,999", "concept": "Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1901", "limit": 0, "attributes": "S1901_C02_006EA,S1901_C02_006M,S1901_C02_006MA"}, "S2501_C04_034E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!FAMILY TYPE AND PRESENCE OF OWN CHILDREN!!With related children of householder under 18 years!!With own children of householder under 18 years!!Under 6 years only", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C04_034EA,S2501_C04_034M,S2501_C04_034MA"}, "S2602_C05_087E": {"label": "Estimate!!College/university housing!!OCCUPATION!!Civilian employed population 16 years and over!!Service occupations", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C05_087EA,S2602_C05_087M,S2602_C05_087MA"}, "S2501_C04_031E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!HOUSEHOLD TYPE (INCLUDING LIVING ALONE) AND AGE OF HOUSEHOLDER!!Nonfamily households!!Householder not living alone!!Householder 65 years and over", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C04_031EA,S2501_C04_031M,S2501_C04_031MA"}, "S1901_C02_007E": {"label": "Estimate!!Families!!Total!!$50,000 to $74,999", "concept": "Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1901", "limit": 0, "attributes": "S1901_C02_007EA,S1901_C02_007M,S1901_C02_007MA"}, "S2302_C04_003E": {"label": "Estimate!!Percent Families with own children under 18 years!!Families!!EMPLOYMENT STATUS CHARACTERISTICS!!Opposite-sex married-couple families!!Both husband and wife in labor force", "concept": "Employment Characteristics of Families", "predicateType": "float", "group": "S2302", "limit": 0, "attributes": "S2302_C04_003EA,S2302_C04_003M,S2302_C04_003MA"}, "S2602_C05_086E": {"label": "Estimate!!College/university housing!!OCCUPATION!!Civilian employed population 16 years and over!!Management, business, science, and arts occupations", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C05_086EA,S2602_C05_086M,S2602_C05_086MA"}, "S2501_C04_032E": {"label": "Estimate!!Percent owner-occupied housing units!!Occupied housing units!!FAMILY TYPE AND PRESENCE OF OWN CHILDREN!!With related children of householder under 18 years", "concept": "Occupancy Characteristics", "predicateType": "float", "group": "S2501", "limit": 0, "attributes": "S2501_C04_032EA,S2501_C04_032M,S2501_C04_032MA"}, "S1901_C02_008E": {"label": "Estimate!!Families!!Total!!$75,000 to $99,999", "concept": "Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1901", "limit": 0, "attributes": "S1901_C02_008EA,S1901_C02_008M,S1901_C02_008MA"}, "S2302_C04_002E": {"label": "Estimate!!Percent Families with own children under 18 years!!Families!!EMPLOYMENT STATUS CHARACTERISTICS!!Opposite-sex married-couple families", "concept": "Employment Characteristics of Families", "predicateType": "int", "group": "S2302", "limit": 0, "attributes": "S2302_C04_002EA,S2302_C04_002M,S2302_C04_002MA"}, "S2411_C01_021E": {"label": "Estimate!!Median earnings (dollars)!!Civilian employed population 16 years and over with earnings!!Service occupations:!!Protective service occupations:!!Firefighting and prevention, and other protective service workers including supervisors", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C01_021EA,S2411_C01_021M,S2411_C01_021MA"}, "S0503_C03_026E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_026EA,S0503_C03_026M,S0503_C03_026MA"}, "S0103_C01_104E": {"label": "Estimate!!Total!!Renter-occupied housing units!!GROSS RENT!!Median gross rent (dollars)", "concept": "Population 65 Years and Over in the United States", "predicateType": "int", "group": "S0103", "limit": 0, "attributes": "S0103_C01_104EA,S0103_C01_104M,S0103_C01_104MA"}, "S2411_C01_022E": {"label": "Estimate!!Median earnings (dollars)!!Civilian employed population 16 years and over with earnings!!Service occupations:!!Protective service occupations:!!Law enforcement workers including supervisors", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C01_022EA,S2411_C01_022M,S2411_C01_022MA"}, "S0503_C03_027E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_027EA,S0503_C03_027M,S0503_C03_027MA"}, "S0103_C01_103E": {"label": "Estimate!!Total!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!30 percent or more", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C01_103EA,S0103_C01_103M,S0103_C01_103MA"}, "S0503_C03_028E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_028EA,S0503_C03_028M,S0503_C03_028MA"}, "S0103_C01_102E": {"label": "Estimate!!Total!!Renter-occupied housing units!!GROSS RENT AS A PERCENTAGE OF HOUSEHOLD INCOME IN THE PAST 12 MONTHS!!Less than 30 percent", "concept": "Population 65 Years and Over in the United States", "predicateType": "float", "group": "S0103", "limit": 0, "attributes": "S0103_C01_102EA,S0103_C01_102M,S0103_C01_102MA"}, "S2411_C01_020E": {"label": "Estimate!!Median earnings (dollars)!!Civilian employed population 16 years and over with earnings!!Service occupations:!!Protective service occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C01_020EA,S2411_C01_020M,S2411_C01_020MA"}, "S0503_C03_029E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_029EA,S0503_C03_029M,S0503_C03_029MA"}, "S0103_C01_101E": {"label": "Estimate!!Total!!Renter-occupied housing units", "concept": "Population 65 Years and Over in the United States", "predicateType": "int", "group": "S0103", "limit": 0, "attributes": "S0103_C01_101EA,S0103_C01_101M,S0103_C01_101MA"}, "S2302_C04_009E": {"label": "Estimate!!Percent Families with own children under 18 years!!Families!!EMPLOYMENT STATUS CHARACTERISTICS!!Other families!!Female householder, no spouse present!!In labor force", "concept": "Employment Characteristics of Families", "predicateType": "float", "group": "S2302", "limit": 0, "attributes": "S2302_C04_009EA,S2302_C04_009M,S2302_C04_009MA"}, "S0503_C03_022E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_022EA,S0503_C03_022M,S0503_C03_022MA"}, "S2602_C05_093E": {"label": "Estimate!!College/university housing!!EARNINGS AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Mean earnings (dollars):!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C05_093EA,S2602_C05_093M,S2602_C05_093MA"}, "S0601_C02_010E": {"label": "Estimate!!Native; born in state of residence!!Total population!!AGE!!Median age (years)", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C02_010EA,S0601_C02_010M,S0601_C02_010MA"}, "S2302_C04_008E": {"label": "Estimate!!Percent Families with own children under 18 years!!Families!!EMPLOYMENT STATUS CHARACTERISTICS!!Other families!!Female householder, no spouse present", "concept": "Employment Characteristics of Families", "predicateType": "float", "group": "S2302", "limit": 0, "attributes": "S2302_C04_008EA,S2302_C04_008M,S2302_C04_008MA"}, "S0503_C03_023E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_023EA,S0503_C03_023M,S0503_C03_023MA"}, "S2602_C05_092E": {"label": "Estimate!!College/university housing!!EARNINGS AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!With earnings:!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C05_092EA,S2602_C05_092M,S2602_C05_092MA"}, "S0601_C02_011E": {"label": "Estimate!!Native; born in state of residence!!Total population!!SEX!!Male", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C02_011EA,S0601_C02_011M,S0601_C02_011MA"}, "S2602_C05_091E": {"label": "Estimate!!College/university housing!!EARNINGS AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!With earnings:!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C05_091EA,S2602_C05_091M,S2602_C05_091MA"}, "S0503_C03_024E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_024EA,S0503_C03_024M,S0503_C03_024MA"}, "S0601_C02_012E": {"label": "Estimate!!Native; born in state of residence!!Total population!!SEX!!Female", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C02_012EA,S0601_C02_012M,S0601_C02_012MA"}, "S2602_C05_090E": {"label": "Estimate!!College/university housing!!OCCUPATION!!Civilian employed population 16 years and over!!Production, transportation, and material moving occupations", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "float", "group": "S2602", "limit": 0, "attributes": "S2602_C05_090EA,S2602_C05_090M,S2602_C05_090MA"}, "S0503_C03_025E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Foreign-born population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_025EA,S0503_C03_025M,S0503_C03_025MA"}, "S0601_C02_013E": {"label": "Estimate!!Native; born in state of residence!!Total population!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C02_013EA,S0601_C02_013M,S0601_C02_013MA"}, "S0802_C01_075E": {"label": "Estimate!!Total!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!6:30 a.m. to 6:59 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_075EA,S0802_C01_075M,S0802_C01_075MA"}, "S0505_C02_060E": {"label": "Estimate!!Foreign-born; Born in Asia!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_060EA,S0505_C02_060M,S0505_C02_060MA"}, "S0802_C01_074E": {"label": "Estimate!!Total!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!6:00 a.m. to 6:29 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_074EA,S0802_C01_074M,S0802_C01_074MA"}, "S0506_C05_099E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings!!Mean earnings (dollars)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C05_099EA,S0506_C05_099M,S0506_C05_099MA"}, "S0802_C01_073E": {"label": "Estimate!!Total!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!5:30 a.m. to 5:59 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_073EA,S0802_C01_073M,S0802_C01_073MA"}, "S0506_C05_098E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households!!With earnings", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_098EA,S0506_C05_098M,S0506_C05_098MA"}, "S1603_C07_002E": {"label": "Estimate!!Percent speak Spanish at home!!Speak a language other than English at home!!Total population 5 years and over!!AGE!!5 to 17 years", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "float", "group": "S1603", "limit": 0, "attributes": "S1603_C07_002EA,S1603_C07_002M,S1603_C07_002MA"}, "S0503_C03_020E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Foreign-born population!!SEX AND AGE!!85 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_020EA,S0503_C03_020M,S0503_C03_020MA"}, "S0503_C03_021E": {"label": "Estimate!!Foreign-born; Born in Northern and Western Europe!!Foreign-born population!!SEX AND AGE!!Median age (years)", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Europe", "predicateType": "float", "group": "S0503", "limit": 0, "attributes": "S0503_C03_021EA,S0503_C03_021M,S0503_C03_021MA"}, "S0802_C01_072E": {"label": "Estimate!!Total!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!5:00 a.m. to 5:29 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_072EA,S0802_C01_072M,S0802_C01_072MA"}, "S0506_C05_097E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!INCOME IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Households", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C05_097EA,S0506_C05_097M,S0506_C05_097MA"}, "S1603_C07_001E": {"label": "Estimate!!Percent speak Spanish at home!!Speak a language other than English at home!!Total population 5 years and over", "concept": "Characteristics of People by Language Spoken at Home", "predicateType": "int", "group": "S1603", "limit": 0, "attributes": "S1603_C07_001EA,S1603_C07_001M,S1603_C07_001MA"}, "S0802_C01_071E": {"label": "Estimate!!Total!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!12:00 a.m. to 4:59 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_071EA,S0802_C01_071M,S0802_C01_071MA"}, "S0505_C02_064E": {"label": "Estimate!!Foreign-born; Born in Asia!!Civilian employed population 16 years and over", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "int", "group": "S0505", "limit": 0, "attributes": "S0505_C02_064EA,S0505_C02_064M,S0505_C02_064MA"}, "S0506_C05_096E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!Median earnings (dollars) for full-time, year-round workers!!Female", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C05_096EA,S0506_C05_096M,S0506_C05_096MA"}, "S0103_C01_100E": {"label": "Estimate!!Total!!Owner-occupied housing units!!OWNER CHARACTERISTICS!!Median selected monthly owner costs without a mortgage (dollars)", "concept": "Population 65 Years and Over in the United States", "predicateType": "int", "group": "S0103", "limit": 0, "attributes": "S0103_C01_100EA,S0103_C01_100M,S0103_C01_100MA"}, "S0802_C01_070E": {"label": "Estimate!!Total!!Workers 16 years and over who did not work from home", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "int", "group": "S0802", "limit": 0, "attributes": "S0802_C01_070EA,S0802_C01_070M,S0802_C01_070MA"}, "S0505_C02_063E": {"label": "Estimate!!Foreign-born; Born in Asia!!EMPLOYMENT STATUS!!Population 16 years and over!!Not in labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_063EA,S0505_C02_063M,S0505_C02_063MA"}, "S0506_C05_095E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!Median earnings (dollars) for full-time, year-round workers!!Male", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "int", "group": "S0506", "limit": 0, "attributes": "S0506_C05_095EA,S0506_C05_095M,S0506_C05_095MA"}, "S0505_C02_062E": {"label": "Estimate!!Foreign-born; Born in Asia!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Armed Forces", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_062EA,S0505_C02_062M,S0505_C02_062MA"}, "S0506_C05_094E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$75,000 or more", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_094EA,S0506_C05_094M,S0506_C05_094MA"}, "S0505_C02_061E": {"label": "Estimate!!Foreign-born; Born in Asia!!EMPLOYMENT STATUS!!Population 16 years and over!!In labor force!!Civilian labor force!!Unemployed!!Percent of civilian labor force", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_061EA,S0505_C02_061M,S0505_C02_061MA"}, "S0506_C05_093E": {"label": "Estimate!!Foreign-born; Born in Caribbean!!EARNINGS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS) FOR FULL-TIME, YEAR-ROUND WORKERS!!Population 16 years and over with earnings!!$50,000 to $74,999", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Latin America", "predicateType": "float", "group": "S0506", "limit": 0, "attributes": "S0506_C05_093EA,S0506_C05_093M,S0506_C05_093MA"}, "S1002_C04_005E": {"label": "Estimate!!60 years and over!!Percent distribution of grandparents responsible for grandchildren!!Grandparents living with own grandchildren under 18 years!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!American Indian and Alaska Native", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C04_005EA,S1002_C04_005M,S1002_C04_005MA"}, "S2402_C02_034E": {"label": "Estimate!!Male!!Full-time, year-round civilian employed population 16 years and over!!Production, transportation, and material moving occupations:!!Production occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C02_034EA,S2402_C02_034M,S2402_C02_034MA"}, "S1901_C02_013E": {"label": "Estimate!!Families!!Mean income (dollars)", "concept": "Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1901", "limit": 0, "attributes": "S1901_C02_013EA,S1901_C02_013M,S1901_C02_013MA"}, "S0505_C02_068E": {"label": "Estimate!!Foreign-born; Born in Asia!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Unpaid family workers", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_068EA,S0505_C02_068M,S0505_C02_068MA"}, "S1002_C04_006E": {"label": "Estimate!!60 years and over!!Percent distribution of grandparents responsible for grandchildren!!Grandparents living with own grandchildren under 18 years!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Asian", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C04_006EA,S1002_C04_006M,S1002_C04_006MA"}, "S2402_C02_033E": {"label": "Estimate!!Male!!Full-time, year-round civilian employed population 16 years and over!!Production, transportation, and material moving occupations:", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C02_033EA,S2402_C02_033M,S2402_C02_033MA"}, "S0505_C02_067E": {"label": "Estimate!!Foreign-born; Born in Asia!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Self-employed workers in own not incorporated business", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_067EA,S0505_C02_067M,S0505_C02_067MA"}, "S1901_C02_014E": {"label": "Estimate!!Families!!PERCENT ALLOCATED!!Household income in the past 12 months", "concept": "Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1901", "limit": 0, "attributes": "S1901_C02_014EA,S1901_C02_014M,S1901_C02_014MA"}, "S1002_C04_007E": {"label": "Estimate!!60 years and over!!Percent distribution of grandparents responsible for grandchildren!!Grandparents living with own grandchildren under 18 years!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Native Hawaiian and Other Pacific Islander", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C04_007EA,S1002_C04_007M,S1002_C04_007MA"}, "S0505_C02_066E": {"label": "Estimate!!Foreign-born; Born in Asia!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Government workers", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_066EA,S0505_C02_066M,S0505_C02_066MA"}, "S2402_C02_032E": {"label": "Estimate!!Male!!Full-time, year-round civilian employed population 16 years and over!!Natural resources, construction, and maintenance occupations:!!Installation, maintenance, and repair occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C02_032EA,S2402_C02_032M,S2402_C02_032MA"}, "S1901_C02_015E": {"label": "Estimate!!Families!!PERCENT ALLOCATED!!Family income in the past 12 months", "concept": "Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1901", "limit": 0, "attributes": "S1901_C02_015EA,S1901_C02_015M,S1901_C02_015MA"}, "S2302_C04_011E": {"label": "Estimate!!Percent Families with own children under 18 years!!Families!!EMPLOYMENT STATUS CHARACTERISTICS!!Other families!!Male householder, no spouse present", "concept": "Employment Characteristics of Families", "predicateType": "float", "group": "S2302", "limit": 0, "attributes": "S2302_C04_011EA,S2302_C04_011M,S2302_C04_011MA"}, "S1002_C04_008E": {"label": "Estimate!!60 years and over!!Percent distribution of grandparents responsible for grandchildren!!Grandparents living with own grandchildren under 18 years!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Some other race", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C04_008EA,S1002_C04_008M,S1002_C04_008MA"}, "S2402_C02_031E": {"label": "Estimate!!Male!!Full-time, year-round civilian employed population 16 years and over!!Natural resources, construction, and maintenance occupations:!!Construction and extraction occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C02_031EA,S2402_C02_031M,S2402_C02_031MA"}, "S0505_C02_065E": {"label": "Estimate!!Foreign-born; Born in Asia!!Civilian employed population 16 years and over!!CLASS OF WORKER!!Private wage and salary workers", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_065EA,S0505_C02_065M,S0505_C02_065MA"}, "S1901_C02_016E": {"label": "Estimate!!Families!!PERCENT ALLOCATED!!Nonfamily income in the past 12 months", "concept": "Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1901", "limit": 0, "attributes": "S1901_C02_016EA,S1901_C02_016M,S1901_C02_016MA"}, "S2302_C04_010E": {"label": "Estimate!!Percent Families with own children under 18 years!!Families!!EMPLOYMENT STATUS CHARACTERISTICS!!Other families!!Female householder, no spouse present!!Not in labor force", "concept": "Employment Characteristics of Families", "predicateType": "float", "group": "S2302", "limit": 0, "attributes": "S2302_C04_010EA,S2302_C04_010M,S2302_C04_010MA"}, "S2402_C02_030E": {"label": "Estimate!!Male!!Full-time, year-round civilian employed population 16 years and over!!Natural resources, construction, and maintenance occupations:!!Farming, fishing, and forestry occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C02_030EA,S2402_C02_030M,S2402_C02_030MA"}, "S0802_C01_079E": {"label": "Estimate!!Total!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!8:30 a.m. to 8:59 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_079EA,S0802_C01_079M,S0802_C01_079MA"}, "S1002_C04_009E": {"label": "Estimate!!60 years and over!!Percent distribution of grandparents responsible for grandchildren!!Grandparents living with own grandchildren under 18 years!!RACE AND HISPANIC OR LATINO ORIGIN!!Two or more races", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C04_009EA,S1002_C04_009M,S1002_C04_009MA"}, "S0802_C01_078E": {"label": "Estimate!!Total!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!8:00 a.m. to 8:29 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_078EA,S0802_C01_078M,S0802_C01_078MA"}, "S1901_C02_010E": {"label": "Estimate!!Families!!Total!!$150,000 to $199,999", "concept": "Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1901", "limit": 0, "attributes": "S1901_C02_010EA,S1901_C02_010M,S1901_C02_010MA"}, "S2411_C01_019E": {"label": "Estimate!!Median earnings (dollars)!!Civilian employed population 16 years and over with earnings!!Service occupations:!!Healthcare support occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C01_019EA,S2411_C01_019M,S2411_C01_019MA"}, "S0802_C01_077E": {"label": "Estimate!!Total!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!7:30 a.m. to 7:59 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_077EA,S0802_C01_077M,S0802_C01_077MA"}, "S1901_C02_011E": {"label": "Estimate!!Families!!Total!!$200,000 or more", "concept": "Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "float", "group": "S1901", "limit": 0, "attributes": "S1901_C02_011EA,S1901_C02_011M,S1901_C02_011MA"}, "S1901_C02_012E": {"label": "Estimate!!Families!!Median income (dollars)", "concept": "Income in the Past 12 Months (in 2024 Inflation-Adjusted Dollars)", "predicateType": "int", "group": "S1901", "limit": 0, "attributes": "S1901_C02_012EA,S1901_C02_012M,S1901_C02_012MA"}, "S0802_C01_076E": {"label": "Estimate!!Total!!Workers 16 years and over who did not work from home!!TIME OF DEPARTURE TO GO TO WORK!!7:00 a.m. to 7:29 a.m.", "concept": "Means of Transportation to Work by Selected Characteristics", "predicateType": "float", "group": "S0802", "limit": 0, "attributes": "S0802_C01_076EA,S0802_C01_076M,S0802_C01_076MA"}, "S0505_C02_069E": {"label": "Estimate!!Foreign-born; Born in Asia!!Civilian employed population 16 years and over!!OCCUPATION!!Management, business, science, and arts occupations", "concept": "Selected Characteristics of the Foreign-Born Population by Region of Birth: Asia", "predicateType": "float", "group": "S0505", "limit": 0, "attributes": "S0505_C02_069EA,S0505_C02_069M,S0505_C02_069MA"}, "S2411_C01_017E": {"label": "Estimate!!Median earnings (dollars)!!Civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Healthcare practitioners and technical occupations:!!Health technologists and technicians", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C01_017EA,S2411_C01_017M,S2411_C01_017MA"}, "S2602_C05_097E": {"label": "Estimate!!College/university housing!!EARNINGS AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!With Food Stamp/SNAP benefits", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C05_097EA,S2602_C05_097M,S2602_C05_097MA"}, "S0601_C02_002E": {"label": "Estimate!!Native; born in state of residence!!Total population!!AGE!!Under 5 years", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C02_002EA,S0601_C02_002M,S0601_C02_002MA"}, "S2302_C04_017E": {"label": "Estimate!!Percent Families with own children under 18 years!!WORK STATUS CHARACTERISTICS!!Families!!2 or more workers in the past 12 months", "concept": "Employment Characteristics of Families", "predicateType": "float", "group": "S2302", "limit": 0, "attributes": "S2302_C04_017EA,S2302_C04_017M,S2302_C04_017MA"}, "S2411_C01_018E": {"label": "Estimate!!Median earnings (dollars)!!Civilian employed population 16 years and over with earnings!!Service occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C01_018EA,S2411_C01_018M,S2411_C01_018MA"}, "S2602_C05_096E": {"label": "Estimate!!College/university housing!!EARNINGS AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Median earnings (dollars):!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C05_096EA,S2602_C05_096M,S2602_C05_096MA"}, "S0601_C02_003E": {"label": "Estimate!!Native; born in state of residence!!Total population!!AGE!!5 to 17 years", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C02_003EA,S0601_C02_003M,S0601_C02_003MA"}, "S2302_C04_016E": {"label": "Estimate!!Percent Families with own children under 18 years!!WORK STATUS CHARACTERISTICS!!Families!!1 worker in the past 12 months", "concept": "Employment Characteristics of Families", "predicateType": "float", "group": "S2302", "limit": 0, "attributes": "S2302_C04_016EA,S2302_C04_016M,S2302_C04_016MA"}, "S2411_C01_015E": {"label": "Estimate!!Median earnings (dollars)!!Civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Healthcare practitioners and technical occupations:", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C01_015EA,S2411_C01_015M,S2411_C01_015MA"}, "S2602_C05_095E": {"label": "Estimate!!College/university housing!!EARNINGS AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Median earnings (dollars):!!Male", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C05_095EA,S2602_C05_095M,S2602_C05_095MA"}, "S2302_C04_019E": {"label": "Estimate!!Percent Families with own children under 18 years!!WORK STATUS CHARACTERISTICS!!Married-couple families!!Householder worked full-time, year-round in the past 12 months:", "concept": "Employment Characteristics of Families", "predicateType": "float", "group": "S2302", "limit": 0, "attributes": "S2302_C04_019EA,S2302_C04_019M,S2302_C04_019MA"}, "S1201_C04_031E": {"label": "Estimate!!Divorced!!SUMMARY INDICATOR!!Ratio of Unmarried Men 15 to 44 years per 100 unmarried women 15 to 44 years", "concept": "Marital Status", "predicateType": "int", "group": "S1201", "limit": 0, "attributes": "S1201_C04_031EA,S1201_C04_031M,S1201_C04_031MA"}, "S0601_C02_004E": {"label": "Estimate!!Native; born in state of residence!!Total population!!AGE!!18 to 24 years", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C02_004EA,S0601_C02_004M,S0601_C02_004MA"}, "S2411_C01_016E": {"label": "Estimate!!Median earnings (dollars)!!Civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Healthcare practitioners and technical occupations:!!Health diagnosing and treating practitioners and other technical occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C01_016EA,S2411_C01_016M,S2411_C01_016MA"}, "S2602_C05_094E": {"label": "Estimate!!College/university housing!!EARNINGS AND BENEFITS IN THE PAST 12 MONTHS (IN 2024 INFLATION-ADJUSTED DOLLARS)!!Mean earnings (dollars):!!Female", "concept": "Characteristics of the Group Quarters Population by Group Quarters Type (3 Types)", "predicateType": "int", "group": "S2602", "limit": 0, "attributes": "S2602_C05_094EA,S2602_C05_094M,S2602_C05_094MA"}, "S2302_C04_018E": {"label": "Estimate!!Percent Families with own children under 18 years!!WORK STATUS CHARACTERISTICS!!Married-couple families", "concept": "Employment Characteristics of Families", "predicateType": "int", "group": "S2302", "limit": 0, "attributes": "S2302_C04_018EA,S2302_C04_018M,S2302_C04_018MA"}, "S0601_C02_005E": {"label": "Estimate!!Native; born in state of residence!!Total population!!AGE!!25 to 44 years", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C02_005EA,S0601_C02_005M,S0601_C02_005MA"}, "S1201_C04_030E": {"label": "Estimate!!Divorced!!LABOR FORCE PARTICIPATION!!Females 16 years and over!!In labor force", "concept": "Marital Status", "predicateType": "float", "group": "S1201", "limit": 0, "attributes": "S1201_C04_030EA,S1201_C04_030M,S1201_C04_030MA"}, "S1002_C04_001E": {"label": "Estimate!!60 years and over!!Percent distribution of grandparents responsible for grandchildren!!Grandparents living with own grandchildren under 18 years", "concept": "Grandparents", "predicateType": "int", "group": "S1002", "limit": 0, "attributes": "S1002_C04_001EA,S1002_C04_001M,S1002_C04_001MA"}, "S0601_C02_006E": {"label": "Estimate!!Native; born in state of residence!!Total population!!AGE!!45 to 54 years", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C02_006EA,S0601_C02_006M,S0601_C02_006MA"}, "S2411_C01_013E": {"label": "Estimate!!Median earnings (dollars)!!Civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:!!Educational instruction, and library occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C01_013EA,S2411_C01_013M,S2411_C01_013MA"}, "S2302_C04_013E": {"label": "Estimate!!Percent Families with own children under 18 years!!Families!!EMPLOYMENT STATUS CHARACTERISTICS!!Other families!!Male householder, no spouse present!!Not in labor force", "concept": "Employment Characteristics of Families", "predicateType": "float", "group": "S2302", "limit": 0, "attributes": "S2302_C04_013EA,S2302_C04_013M,S2302_C04_013MA"}, "S2411_C01_014E": {"label": "Estimate!!Median earnings (dollars)!!Civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:!!Arts, design, entertainment, sports, and media occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C01_014EA,S2411_C01_014M,S2411_C01_014MA"}, "S1002_C04_002E": {"label": "Estimate!!60 years and over!!Percent distribution of grandparents responsible for grandchildren!!Grandparents living with own grandchildren under 18 years!!RACE AND HISPANIC OR LATINO ORIGIN!!One race", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C04_002EA,S1002_C04_002M,S1002_C04_002MA"}, "S0601_C02_007E": {"label": "Estimate!!Native; born in state of residence!!Total population!!AGE!!55 to 64 years", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C02_007EA,S0601_C02_007M,S0601_C02_007MA"}, "S1201_C04_032E": {"label": "Estimate!!Divorced!!PERCENT ALLOCATED!!Marital status", "concept": "Marital Status", "predicateType": "int", "group": "S1201", "limit": 0, "attributes": "S1201_C04_032EA,S1201_C04_032M,S1201_C04_032MA"}, "S2302_C04_012E": {"label": "Estimate!!Percent Families with own children under 18 years!!Families!!EMPLOYMENT STATUS CHARACTERISTICS!!Other families!!Male householder, no spouse present!!In labor force", "concept": "Employment Characteristics of Families", "predicateType": "float", "group": "S2302", "limit": 0, "attributes": "S2302_C04_012EA,S2302_C04_012M,S2302_C04_012MA"}, "S1002_C04_003E": {"label": "Estimate!!60 years and over!!Percent distribution of grandparents responsible for grandchildren!!Grandparents living with own grandchildren under 18 years!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!White", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C04_003EA,S1002_C04_003M,S1002_C04_003MA"}, "S2402_C02_036E": {"label": "Estimate!!Male!!Full-time, year-round civilian employed population 16 years and over!!Production, transportation, and material moving occupations:!!Material moving occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C02_036EA,S2402_C02_036M,S2402_C02_036MA"}, "S0601_C02_008E": {"label": "Estimate!!Native; born in state of residence!!Total population!!AGE!!65 to 74 years", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C02_008EA,S0601_C02_008M,S0601_C02_008MA"}, "S2411_C01_011E": {"label": "Estimate!!Median earnings (dollars)!!Civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:!!Community and social service occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C01_011EA,S2411_C01_011M,S2411_C01_011MA"}, "S2302_C04_015E": {"label": "Estimate!!Percent Families with own children under 18 years!!WORK STATUS CHARACTERISTICS!!Families!!No workers in the past 12 months", "concept": "Employment Characteristics of Families", "predicateType": "float", "group": "S2302", "limit": 0, "attributes": "S2302_C04_015EA,S2302_C04_015M,S2302_C04_015MA"}, "S2402_C02_035E": {"label": "Estimate!!Male!!Full-time, year-round civilian employed population 16 years and over!!Production, transportation, and material moving occupations:!!Transportation occupations", "concept": "Occupation by Sex for the Full-Time, Year-Round Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2402", "limit": 0, "attributes": "S2402_C02_035EA,S2402_C02_035M,S2402_C02_035MA"}, "S1002_C04_004E": {"label": "Estimate!!60 years and over!!Percent distribution of grandparents responsible for grandchildren!!Grandparents living with own grandchildren under 18 years!!RACE AND HISPANIC OR LATINO ORIGIN!!One race!!Black or African American", "concept": "Grandparents", "predicateType": "float", "group": "S1002", "limit": 0, "attributes": "S1002_C04_004EA,S1002_C04_004M,S1002_C04_004MA"}, "S0601_C02_009E": {"label": "Estimate!!Native; born in state of residence!!Total population!!AGE!!75 years and over", "concept": "Selected Characteristics of the Total and Native Populations in the United States", "predicateType": "float", "group": "S0601", "limit": 0, "attributes": "S0601_C02_009EA,S0601_C02_009M,S0601_C02_009MA"}, "S2411_C01_012E": {"label": "Estimate!!Median earnings (dollars)!!Civilian employed population 16 years and over with earnings!!Management, business, science, and arts occupations:!!Education, legal, community service, arts, and media occupations:!!Legal occupations", "concept": "Occupation by Sex and Median Earnings in the Past 12 Months (in 2024 Inflation-Adjusted Dollars) for the Civilian Employed Population 16 Years and Over", "predicateType": "int", "group": "S2411", "limit": 0, "attributes": "S2411_C01_012EA,S2411_C01_012M,S2411_C01_012MA"}, "S2302_C04_014E": {"label": "Estimate!!Percent Families with own children under 18 years!!WORK STATUS CHARACTERISTICS!!Families", "concept": "Employment Characteristics of Families", "predicateType": "int", "group": "S2302", "limit": 0, "attributes": "S2302_C04_014EA,S2302_C04_014M,S2302_C04_014MA"}}} \ No newline at end of file diff --git a/policyengine_us_data/storage/calibration/raw_inputs/census_stc_individual_income_tax_2024.json b/policyengine_us_data/storage/calibration/raw_inputs/census_stc_individual_income_tax_2024.json new file mode 100644 index 00000000..7a2c683a --- /dev/null +++ b/policyengine_us_data/storage/calibration/raw_inputs/census_stc_individual_income_tax_2024.json @@ -0,0 +1 @@ +[{"state_fips": "01", "state_abbrev": "AL", "income_tax_collections": 5881000000}, {"state_fips": "02", "state_abbrev": "AK", "income_tax_collections": 0}, {"state_fips": "04", "state_abbrev": "AZ", "income_tax_collections": 5424000000}, {"state_fips": "05", "state_abbrev": "AR", "income_tax_collections": 4352000000}, {"state_fips": "06", "state_abbrev": "CA", "income_tax_collections": 115845000000}, {"state_fips": "08", "state_abbrev": "CO", "income_tax_collections": 13671000000}, {"state_fips": "09", "state_abbrev": "CT", "income_tax_collections": 10716000000}, {"state_fips": "10", "state_abbrev": "DE", "income_tax_collections": 1747000000}, {"state_fips": "11", "state_abbrev": "DC", "income_tax_collections": 3456000000}, {"state_fips": "12", "state_abbrev": "FL", "income_tax_collections": 0}, {"state_fips": "13", "state_abbrev": "GA", "income_tax_collections": 15297000000}, {"state_fips": "15", "state_abbrev": "HI", "income_tax_collections": 2725000000}, {"state_fips": "16", "state_abbrev": "ID", "income_tax_collections": 2593000000}, {"state_fips": "17", "state_abbrev": "IL", "income_tax_collections": 21453000000}, {"state_fips": "18", "state_abbrev": "IN", "income_tax_collections": 8098000000}, {"state_fips": "19", "state_abbrev": "IA", "income_tax_collections": 5243000000}, {"state_fips": "20", "state_abbrev": "KS", "income_tax_collections": 4304000000}, {"state_fips": "21", "state_abbrev": "KY", "income_tax_collections": 6163000000}, {"state_fips": "22", "state_abbrev": "LA", "income_tax_collections": 4088000000}, {"state_fips": "23", "state_abbrev": "ME", "income_tax_collections": 2246000000}, {"state_fips": "24", "state_abbrev": "MD", "income_tax_collections": 11635000000}, {"state_fips": "25", "state_abbrev": "MA", "income_tax_collections": 18645000000}, {"state_fips": "26", "state_abbrev": "MI", "income_tax_collections": 12139000000}, {"state_fips": "27", "state_abbrev": "MN", "income_tax_collections": 14239000000}, {"state_fips": "28", "state_abbrev": "MS", "income_tax_collections": 2477000000}, {"state_fips": "29", "state_abbrev": "MO", "income_tax_collections": 9006000000}, {"state_fips": "30", "state_abbrev": "MT", "income_tax_collections": 1718000000}, {"state_fips": "31", "state_abbrev": "NE", "income_tax_collections": 3248000000}, {"state_fips": "32", "state_abbrev": "NV", "income_tax_collections": 0}, {"state_fips": "33", "state_abbrev": "NH", "income_tax_collections": 0}, {"state_fips": "34", "state_abbrev": "NJ", "income_tax_collections": 17947000000}, {"state_fips": "35", "state_abbrev": "NM", "income_tax_collections": 2224000000}, {"state_fips": "36", "state_abbrev": "NY", "income_tax_collections": 63247000000}, {"state_fips": "37", "state_abbrev": "NC", "income_tax_collections": 17171000000}, {"state_fips": "38", "state_abbrev": "ND", "income_tax_collections": 534000000}, {"state_fips": "39", "state_abbrev": "OH", "income_tax_collections": 9520000000}, {"state_fips": "40", "state_abbrev": "OK", "income_tax_collections": 4253000000}, {"state_fips": "41", "state_abbrev": "OR", "income_tax_collections": 11583000000}, {"state_fips": "42", "state_abbrev": "PA", "income_tax_collections": 16898000000}, {"state_fips": "44", "state_abbrev": "RI", "income_tax_collections": 1739000000}, {"state_fips": "45", "state_abbrev": "SC", "income_tax_collections": 6367000000}, {"state_fips": "46", "state_abbrev": "SD", "income_tax_collections": 0}, {"state_fips": "47", "state_abbrev": "TN", "income_tax_collections": 0}, {"state_fips": "48", "state_abbrev": "TX", "income_tax_collections": 0}, {"state_fips": "49", "state_abbrev": "UT", "income_tax_collections": 5464000000}, {"state_fips": "50", "state_abbrev": "VT", "income_tax_collections": 1035000000}, {"state_fips": "51", "state_abbrev": "VA", "income_tax_collections": 17934000000}, {"state_fips": "53", "state_abbrev": "WA", "income_tax_collections": 0}, {"state_fips": "54", "state_abbrev": "WV", "income_tax_collections": 2163000000}, {"state_fips": "55", "state_abbrev": "WI", "income_tax_collections": 10396000000}, {"state_fips": "56", "state_abbrev": "WY", "income_tax_collections": 0}] \ No newline at end of file diff --git a/policyengine_us_data/storage/calibration/raw_inputs/medicaid_enrollment_2024.csv b/policyengine_us_data/storage/calibration/raw_inputs/medicaid_enrollment_2024.csv new file mode 100644 index 00000000..c6cfee94 --- /dev/null +++ b/policyengine_us_data/storage/calibration/raw_inputs/medicaid_enrollment_2024.csv @@ -0,0 +1,10303 @@ +State Abbreviation,State Name,Reporting Period,State Expanded Medicaid,Preliminary or Updated,Final Report,New Applications Submitted to Medicaid and CHIP Agencies,New Applications Submitted to Medicaid and CHIP Agencies - footnotes,Applications for Financial Assistance Submitted to the State Based Marketplace,Applications for Financial Assistance Submitted to the State Based Marketplace - footnotes,Total Applications for Financial Assistance Submitted at State Level,Total Applications for Financial Assistance Submitted at State Level - footnotes,Individuals Determined Eligible for Medicaid at Application,Individuals Determined Eligible for Medicaid at Application - footnotes,Individuals Determined Eligible for CHIP at Application,Individuals Determined Eligible for CHIP at Application - footnotes,Total Medicaid and CHIP Determinations,Total Medicaid and CHIP Determinations - footnotes,Medicaid and CHIP Child Enrollment,Medicaid and CHIP Child Enrollment - footnotes,Total Medicaid and CHIP Enrollment,Total Medicaid and CHIP Enrollment - footnotes,Total Medicaid Enrollment,Total Medicaid Enrollment - footnotes,Total CHIP Enrollment,Total CHIP Enrollment - footnotes,Total Adult Medicaid Enrollment,Total Adult Medicaid Enrollment - footnotes,Total Medicaid and CHIP Determinations Processed in Less than 24 Hours,Total Medicaid and CHIP Determinations Processed in Less than 24 Hours - footnotes,Total Medicaid and CHIP Determinations Processed Between 24 Hours and 7 Days,Total Medicaid and CHIP Determinations Processed Between 24 Hours and 7 Days - footnotes,Total Medicaid and CHIP Determinations Processed Between 8 Days and 30 Days,Total Medicaid and CHIP Determinations Processed Between 8 Days and 30 Days - footnotes,Total Medicaid and CHIP Determinations Processed between 31 days and 45 days,Total Medicaid and CHIP Determinations Processed between 31 days and 45 days - footnotes,Total Medicaid and CHIP Determinations Processed in More than 45 Days,Total Medicaid and CHIP Determinations Processed in More than 45 Days - footnotes,Total Call Center Volume (Number of Calls),Total Call Center Volume (Number of Calls) - footnotes,Average Call Center Wait Time (Minutes),Average Call Center Wait Time (Minutes) - footnotes,Average Call Center Abandonment Rate,Average Call Center Abandonment Rate - footnotes +AK,Alaska,201309,N,U,Y,,,,,,,,,,,,,,,122334.0,,,,,,,,,,,,,,,,,,,,,,, +AK,Alaska,201706,Y,P,N,3017.0,Includes Renewals and/or Redeterminations,0.0,,3017.0,Includes Renewals and/or Redeterminations,3422.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,3422.0,Includes Renewals and/or Redeterminations,88766.0,,191171.0,,179001.0,,12170.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,201706,Y,U,Y,3069.0,Includes Renewals and/or Redeterminations,0.0,,3069.0,Includes Renewals and/or Redeterminations,3422.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,3422.0,Includes Renewals and/or Redeterminations,90081.0,,194534.0,,182080.0,,12454.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,201707,Y,P,N,3187.0,Includes Renewals and/or Redeterminations,0.0,,3187.0,Includes Renewals and/or Redeterminations,3159.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,3159.0,Includes Renewals and/or Redeterminations,89358.0,,193019.0,,180641.0,,12378.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,201707,Y,U,Y,3265.0,Includes Renewals and/or Redeterminations,0.0,,3265.0,Includes Renewals and/or Redeterminations,3159.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,3159.0,Includes Renewals and/or Redeterminations,90562.0,,196121.0,,183516.0,,12605.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,201708,Y,P,N,3911.0,Includes Renewals and/or Redeterminations,0.0,,3911.0,Includes Renewals and/or Redeterminations,3187.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,3187.0,Includes Renewals and/or Redeterminations,90085.0,,194909.0,,182349.0,,12560.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,201708,Y,U,Y,3967.0,Includes Renewals and/or Redeterminations,0.0,,3967.0,Includes Renewals and/or Redeterminations,3187.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,3187.0,Includes Renewals and/or Redeterminations,91294.0,,197834.0,,185071.0,,12763.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,201709,Y,P,N,3492.0,Includes Renewals and/or Redeterminations,0.0,,3492.0,Includes Renewals and/or Redeterminations,2664.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,2664.0,Includes Renewals and/or Redeterminations,90439.0,,195913.0,,183311.0,,12602.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,201709,Y,U,Y,3553.0,Includes Renewals and/or Redeterminations,0.0,,3553.0,Includes Renewals and/or Redeterminations,2664.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,2664.0,Includes Renewals and/or Redeterminations,91550.0,,198742.0,,185974.0,,12768.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,201710,Y,P,N,3497.0,Includes Renewals and/or Redeterminations,0.0,,3497.0,Includes Renewals and/or Redeterminations,2961.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,2961.0,Includes Renewals and/or Redeterminations,90933.0,,197433.0,,184678.0,,12755.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,201710,Y,U,Y,3574.0,,0.0,,3574.0,,2961.0,,0.0,,2961.0,,92122.0,,200627.0,,187664.0,,12963.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,201711,Y,P,N,4320.0,,0.0,,4320.0,,3337.0,,0.0,,3337.0,,91254.0,,198880.0,,186078.0,,12802.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,201711,Y,U,Y,4320.0,,0.0,,4320.0,,3337.0,,0.0,,3337.0,,92203.0,,201672.0,,188630.0,,13042.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,201712,Y,P,N,3854.0,,0.0,,3854.0,,3825.0,,0.0,,3825.0,,91516.0,,200185.0,,187272.0,,12913.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,201712,Y,U,Y,3446.0,,0.0,,3446.0,,3825.0,,0.0,,3825.0,,91360.0,,200369.0,,187450.0,,12919.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,201801,Y,P,N,3735.0,,0.0,,3735.0,,2838.0,,0.0,,2838.0,,92260.0,,202912.0,,189696.0,,13216.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,201801,Y,U,Y,3735.0,,0.0,,3735.0,,2838.0,,0.0,,2838.0,,92495.0,,203654.0,,190513.0,,13141.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,201802,Y,P,N,3052.0,,0.0,,3052.0,,2334.0,,0.0,,2334.0,,92415.0,,203672.0,,190509.0,,13163.0,,,,261.0,,855.0,,719.0,,188.0,,976.0,,,,,,, +AK,Alaska,201802,Y,U,Y,3052.0,,0.0,,3052.0,,2334.0,,0.0,,2334.0,,92649.0,,204311.0,,191133.0,,13178.0,,,,261.0,,855.0,,719.0,,188.0,,976.0,,,,,,, +AK,Alaska,201803,Y,P,N,3373.0,Includes Renewals and/or Redeterminations,0.0,,3373.0,Includes Renewals and/or Redeterminations,2584.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,2584.0,Includes Renewals and/or Redeterminations,93019.0,,205234.0,,191959.0,,13275.0,,,,409.0,,843.0,,864.0,,192.0,,1086.0,,,,,,, +AK,Alaska,201803,Y,U,Y,3373.0,Includes Renewals and/or Redeterminations,0.0,,3373.0,Includes Renewals and/or Redeterminations,2584.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,2584.0,Includes Renewals and/or Redeterminations,93203.0,,205761.0,,192481.0,,13280.0,,,,409.0,,843.0,,864.0,,192.0,,1086.0,,,,,,, +AK,Alaska,201804,Y,P,N,3046.0,Includes Renewals and/or Redeterminations,0.0,,3046.0,Includes Renewals and/or Redeterminations,2315.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,2315.0,Includes Renewals and/or Redeterminations,93511.0,,206808.0,,193515.0,,13293.0,,,,285.0,,771.0,,771.0,,174.0,,1178.0,,,,,,, +AK,Alaska,201804,Y,U,Y,3352.0,Includes Renewals and/or Redeterminations,0.0,,3352.0,Includes Renewals and/or Redeterminations,2315.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,2315.0,Includes Renewals and/or Redeterminations,93680.0,,207337.0,,194039.0,,13298.0,,,,285.0,,771.0,,771.0,,174.0,,1178.0,,,,,,, +AK,Alaska,201805,Y,P,N,3549.0,Includes Renewals and/or Redeterminations,0.0,,3549.0,Includes Renewals and/or Redeterminations,2312.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,2312.0,Includes Renewals and/or Redeterminations,93834.0,,207765.0,,194362.0,,13403.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,201805,Y,U,Y,3549.0,Includes Renewals and/or Redeterminations,0.0,,3549.0,Includes Renewals and/or Redeterminations,2312.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,2312.0,Includes Renewals and/or Redeterminations,93840.0,,207771.0,,194367.0,,13404.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,201806,Y,P,N,3239.0,Includes Renewals and/or Redeterminations,0.0,,3239.0,Includes Renewals and/or Redeterminations,2245.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,2245.0,Includes Renewals and/or Redeterminations,93416.0,,206727.0,,193286.0,,13441.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,201806,Y,U,Y,3239.0,Includes Renewals and/or Redeterminations,0.0,,3239.0,Includes Renewals and/or Redeterminations,2245.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,2245.0,Includes Renewals and/or Redeterminations,95006.0,,211054.0,,197325.0,,13729.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,201807,Y,P,N,2911.0,Includes Renewals and/or Redeterminations,0.0,,2911.0,Includes Renewals and/or Redeterminations,2232.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,2232.0,Includes Renewals and/or Redeterminations,94270.0,,209491.0,,195832.0,,13659.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,201807,Y,U,Y,2911.0,Includes Renewals and/or Redeterminations,0.0,,2911.0,Includes Renewals and/or Redeterminations,2232.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,2232.0,Includes Renewals and/or Redeterminations,95035.0,,211609.0,,197806.0,,13803.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,201808,Y,P,N,3216.0,Includes Renewals and/or Redeterminations,0.0,,3216.0,Includes Renewals and/or Redeterminations,2409.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,2409.0,Includes Renewals and/or Redeterminations,94422.0,,210217.0,,196460.0,,13757.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,201808,Y,U,Y,3216.0,Includes Renewals and/or Redeterminations,0.0,,3216.0,Includes Renewals and/or Redeterminations,2409.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,2409.0,Includes Renewals and/or Redeterminations,95080.0,,211945.0,,197981.0,,13964.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,201809,Y,P,N,2806.0,Includes Renewals and/or Redeterminations,0.0,,2806.0,Includes Renewals and/or Redeterminations,2126.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,2126.0,Includes Renewals and/or Redeterminations,93908.0,,208867.0,,194952.0,,13915.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,201809,Y,U,Y,2806.0,Includes Renewals and/or Redeterminations,0.0,,2806.0,Includes Renewals and/or Redeterminations,2126.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,2126.0,Includes Renewals and/or Redeterminations,94323.0,,210368.0,,196445.0,,13923.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,201810,Y,P,N,3797.0,Includes Renewals and/or Redeterminations,0.0,,3797.0,Includes Renewals and/or Redeterminations,2883.0,Includes Renewals and/or Redeterminations; Includes CHIP,143.0,,3026.0,Includes Renewals and/or Redeterminations,94422.0,,210276.0,,195891.0,,14385.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,201810,Y,U,Y,3797.0,Includes Renewals and/or Redeterminations,0.0,,3797.0,Includes Renewals and/or Redeterminations,2883.0,Includes Renewals and/or Redeterminations; Includes CHIP,143.0,,3026.0,Includes Renewals and/or Redeterminations,94829.0,,211746.0,,197355.0,,14391.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,201811,Y,P,N,3552.0,Includes Renewals and/or Redeterminations,0.0,,3552.0,Includes Renewals and/or Redeterminations,3396.0,Includes Renewals and/or Redeterminations; Includes CHIP,218.0,,3614.0,Includes Renewals and/or Redeterminations,94539.0,,211386.0,,196699.0,,14687.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,201811,Y,U,Y,3685.0,Includes Renewals and/or Redeterminations,0.0,,3685.0,Includes Renewals and/or Redeterminations,3396.0,Includes Renewals and/or Redeterminations; Includes CHIP,218.0,,3614.0,Includes Renewals and/or Redeterminations,95187.0,,213702.0,,198867.0,,14835.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,201812,Y,P,N,3012.0,Includes Renewals and/or Redeterminations,0.0,,3012.0,Includes Renewals and/or Redeterminations,2798.0,Includes Renewals and/or Redeterminations; Includes CHIP,130.0,,2928.0,Includes Renewals and/or Redeterminations,95187.0,,213702.0,,198867.0,,14835.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,201812,Y,U,Y,3205.0,Includes Renewals and/or Redeterminations,0.0,,3205.0,Includes Renewals and/or Redeterminations,2798.0,Includes Renewals and/or Redeterminations; Includes CHIP,130.0,,2928.0,Includes Renewals and/or Redeterminations,94469.0,,211912.0,,197143.0,,14769.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,201901,Y,P,N,3472.0,Includes Renewals and/or Redeterminations,0.0,,3472.0,Includes Renewals and/or Redeterminations,3156.0,Includes Renewals and/or Redeterminations; Includes CHIP,158.0,,3314.0,Includes Renewals and/or Redeterminations,95259.0,,214541.0,,199656.0,,14885.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,201901,Y,U,Y,3032.0,Includes Renewals and/or Redeterminations,0.0,,3032.0,Includes Renewals and/or Redeterminations,3156.0,Includes Renewals and/or Redeterminations; Includes CHIP,158.0,,3314.0,Includes Renewals and/or Redeterminations,95796.0,,216175.0,,201038.0,,15137.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,201902,Y,P,N,3724.0,Includes Renewals and/or Redeterminations,0.0,,3724.0,Includes Renewals and/or Redeterminations,3084.0,Includes Renewals and/or Redeterminations; Includes CHIP,173.0,,3257.0,Includes Renewals and/or Redeterminations,94924.0,,213493.0,,198519.0,,14974.0,,,,492.0,,833.0,,699.0,,281.0,,3613.0,,,,,,, +AK,Alaska,201902,Y,U,Y,3865.0,Includes Renewals and/or Redeterminations,0.0,,3865.0,Includes Renewals and/or Redeterminations,3084.0,Includes Renewals and/or Redeterminations; Includes CHIP,173.0,,3257.0,Includes Renewals and/or Redeterminations,96172.0,,217468.0,,202090.0,,15378.0,,,,492.0,,833.0,,699.0,,281.0,,3613.0,,,,,,, +AK,Alaska,201903,Y,P,N,3588.0,Includes Renewals and/or Redeterminations,0.0,,3588.0,Includes Renewals and/or Redeterminations,3363.0,Includes Renewals and/or Redeterminations; Includes CHIP,271.0,,3634.0,Includes Renewals and/or Redeterminations,95745.0,,216168.0,,200790.0,,15378.0,,,,586.0,,835.0,,878.0,,332.0,,5572.0,,,,,,, +AK,Alaska,201903,Y,U,Y,3588.0,Includes Renewals and/or Redeterminations,0.0,,3588.0,Includes Renewals and/or Redeterminations,3363.0,Includes Renewals and/or Redeterminations; Includes CHIP,271.0,,3634.0,Includes Renewals and/or Redeterminations,96256.0,,217793.0,,202397.0,,15396.0,,,,586.0,,835.0,,878.0,,332.0,,5572.0,,,,,,, +AK,Alaska,201904,Y,P,N,3368.0,Includes Renewals and/or Redeterminations,0.0,,3368.0,Includes Renewals and/or Redeterminations,3053.0,Includes Renewals and/or Redeterminations; Includes CHIP,202.0,,3255.0,Includes Renewals and/or Redeterminations,96183.0,,217678.0,,202234.0,,15444.0,,,,535.0,,818.0,,1064.0,,343.0,,3829.0,,,,,,, +AK,Alaska,201904,Y,U,Y,3368.0,Includes Renewals and/or Redeterminations,0.0,,3368.0,Includes Renewals and/or Redeterminations,3053.0,Includes Renewals and/or Redeterminations; Includes CHIP,202.0,,3255.0,Includes Renewals and/or Redeterminations,96593.0,,218972.0,,203524.0,,15448.0,,,,535.0,,818.0,,1064.0,,343.0,,3829.0,,,,,,, +AK,Alaska,201905,Y,P,N,3107.0,Includes Renewals and/or Redeterminations,0.0,,3107.0,Includes Renewals and/or Redeterminations,2675.0,Includes Renewals and/or Redeterminations; Includes CHIP,113.0,,2788.0,Includes Renewals and/or Redeterminations,96506.0,,218680.0,,203115.0,,15565.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,201905,Y,U,Y,3107.0,Includes Renewals and/or Redeterminations,0.0,,3107.0,Includes Renewals and/or Redeterminations,2675.0,Includes Renewals and/or Redeterminations; Includes CHIP,113.0,,2788.0,Includes Renewals and/or Redeterminations,97003.0,,220384.0,,204803.0,,15581.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,201906,Y,P,N,3108.0,Includes Renewals and/or Redeterminations,0.0,,3108.0,Includes Renewals and/or Redeterminations,2400.0,Includes Renewals and/or Redeterminations; Includes CHIP,99.0,,2499.0,Includes Renewals and/or Redeterminations,96953.0,,220341.0,,204820.0,,15521.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,201906,Y,U,Y,3108.0,Includes Renewals and/or Redeterminations,0.0,,3108.0,Includes Renewals and/or Redeterminations,2400.0,Includes Renewals and/or Redeterminations; Includes CHIP,99.0,,2499.0,Includes Renewals and/or Redeterminations,97672.0,,221746.0,,206033.0,,15713.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,201907,Y,P,N,3147.0,Includes Renewals and/or Redeterminations,0.0,,3147.0,Includes Renewals and/or Redeterminations,2693.0,Includes Renewals and/or Redeterminations; Includes CHIP,157.0,,2850.0,Includes Renewals and/or Redeterminations,96772.0,,220043.0,,204317.0,,15726.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,201907,Y,U,Y,3147.0,Includes Renewals and/or Redeterminations,0.0,,3147.0,Includes Renewals and/or Redeterminations,2693.0,Includes Renewals and/or Redeterminations; Includes CHIP,157.0,,2850.0,Includes Renewals and/or Redeterminations,97913.0,,223117.0,,207174.0,,15943.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,201908,Y,P,N,3183.0,Includes Renewals and/or Redeterminations,0.0,,3183.0,Includes Renewals and/or Redeterminations,2820.0,Includes Renewals and/or Redeterminations; Includes CHIP,134.0,,2954.0,Includes Renewals and/or Redeterminations,97069.0,,220700.0,,204782.0,,15918.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,201908,Y,U,Y,3183.0,Includes Renewals and/or Redeterminations,0.0,,3183.0,Includes Renewals and/or Redeterminations,2820.0,Includes Renewals and/or Redeterminations; Includes CHIP,134.0,,2954.0,Includes Renewals and/or Redeterminations,97472.0,,221946.0,,206020.0,,15926.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,201909,Y,P,N,2955.0,Includes Renewals and/or Redeterminations,0.0,,2955.0,Includes Renewals and/or Redeterminations,2197.0,Includes Renewals and/or Redeterminations; Includes CHIP,131.0,,2328.0,Includes Renewals and/or Redeterminations,97040.0,,220340.0,,204233.0,,16107.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,201909,Y,U,Y,2955.0,Includes Renewals and/or Redeterminations,0.0,,2955.0,Includes Renewals and/or Redeterminations,2197.0,Includes Renewals and/or Redeterminations; Includes CHIP,131.0,,2328.0,Includes Renewals and/or Redeterminations,97402.0,,221587.0,,205472.0,,16115.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,201910,Y,P,N,3274.0,Includes Renewals and/or Redeterminations,0.0,,3274.0,Includes Renewals and/or Redeterminations,2314.0,Includes Renewals and/or Redeterminations; Includes CHIP,137.0,,2451.0,Includes Renewals and/or Redeterminations,97187.0,,220690.0,,204348.0,,16342.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,201910,Y,U,Y,3274.0,Includes Renewals and/or Redeterminations,0.0,,3274.0,Includes Renewals and/or Redeterminations,2314.0,Includes Renewals and/or Redeterminations; Includes CHIP,137.0,,2451.0,Includes Renewals and/or Redeterminations,97434.0,,221675.0,,205320.0,,16355.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,201911,Y,P,N,2936.0,Includes Renewals and/or Redeterminations,0.0,,2936.0,Includes Renewals and/or Redeterminations,2601.0,Includes Renewals and/or Redeterminations; Includes CHIP,190.0,,2791.0,Includes Renewals and/or Redeterminations,97338.0,,221152.0,,204574.0,,16578.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,201911,Y,U,Y,2936.0,Includes Renewals and/or Redeterminations,0.0,,2936.0,Includes Renewals and/or Redeterminations,2601.0,Includes Renewals and/or Redeterminations; Includes CHIP,190.0,,2791.0,Includes Renewals and/or Redeterminations,97737.0,,222498.0,,205909.0,,16589.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,201912,Y,P,N,3283.0,Includes Renewals and/or Redeterminations,0.0,,3283.0,Includes Renewals and/or Redeterminations,2925.0,Includes Renewals and/or Redeterminations; Includes CHIP,175.0,,3100.0,Includes Renewals and/or Redeterminations,97527.0,,222156.0,,205527.0,,16629.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,201912,Y,U,Y,3283.0,Includes Renewals and/or Redeterminations,0.0,,3283.0,Includes Renewals and/or Redeterminations,2925.0,Includes Renewals and/or Redeterminations; Includes CHIP,175.0,,3100.0,Includes Renewals and/or Redeterminations,97820.0,,223065.0,,206423.0,,16642.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,202001,Y,P,N,4321.0,Includes Renewals and/or Redeterminations,0.0,,4321.0,Includes Renewals and/or Redeterminations,3232.0,Includes Renewals and/or Redeterminations; Includes CHIP,125.0,,3357.0,Includes Renewals and/or Redeterminations,97734.0,,222524.0,,205821.0,,16703.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,202001,Y,U,Y,4321.0,Includes Renewals and/or Redeterminations,0.0,,4321.0,Includes Renewals and/or Redeterminations,3232.0,Includes Renewals and/or Redeterminations; Includes CHIP,125.0,,3357.0,Includes Renewals and/or Redeterminations,98096.0,,223963.0,,207251.0,,16712.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,202002,Y,P,N,3811.0,Includes Renewals and/or Redeterminations,0.0,,3811.0,Includes Renewals and/or Redeterminations,3211.0,Includes Renewals and/or Redeterminations; Includes CHIP,114.0,,3325.0,Includes Renewals and/or Redeterminations,97066.0,,221584.0,,204910.0,,16674.0,,,,498.0,,649.0,,1395.0,,173.0,,975.0,,,,,,, +AK,Alaska,202002,Y,U,Y,3811.0,Includes Renewals and/or Redeterminations,0.0,,3811.0,Includes Renewals and/or Redeterminations,3211.0,Includes Renewals and/or Redeterminations; Includes CHIP,114.0,,3325.0,Includes Renewals and/or Redeterminations,97379.0,,222941.0,,206251.0,,16690.0,,,,498.0,,649.0,,1395.0,,173.0,,975.0,,,,,,, +AK,Alaska,202003,Y,P,N,3852.0,Includes Renewals and/or Redeterminations,0.0,,3852.0,Includes Renewals and/or Redeterminations,3309.0,Includes Renewals and/or Redeterminations; Includes CHIP,137.0,,3446.0,Includes Renewals and/or Redeterminations,97959.0,,223820.0,,206986.0,,16834.0,,,,401.0,,810.0,,1231.0,,570.0,,1358.0,,,,,,, +AK,Alaska,202003,Y,U,Y,3852.0,Includes Renewals and/or Redeterminations,0.0,,3852.0,Includes Renewals and/or Redeterminations,3309.0,Includes Renewals and/or Redeterminations; Includes CHIP,137.0,,3446.0,Includes Renewals and/or Redeterminations,98254.0,,224965.0,,208129.0,,16836.0,,,,401.0,,810.0,,1231.0,,570.0,,1358.0,,,,,,, +AK,Alaska,202004,Y,P,N,3041.0,Includes Renewals and/or Redeterminations,0.0,,3041.0,Includes Renewals and/or Redeterminations,3439.0,Includes Renewals and/or Redeterminations; Includes CHIP,184.0,,3623.0,Includes Renewals and/or Redeterminations,98473.0,,226559.0,,210484.0,,16075.0,,,,297.0,,2100.0,,738.0,,486.0,,2049.0,,,,,,, +AK,Alaska,202004,Y,U,Y,3041.0,Includes Renewals and/or Redeterminations,0.0,,3041.0,Includes Renewals and/or Redeterminations,3439.0,Includes Renewals and/or Redeterminations; Includes CHIP,184.0,,3623.0,Includes Renewals and/or Redeterminations,99035.0,,228270.0,,212183.0,,16087.0,,,,297.0,,2100.0,,738.0,,486.0,,2049.0,,,,,,, +AK,Alaska,202005,Y,P,N,2497.0,,0.0,,2497.0,,3407.0,,213.0,,3620.0,,98912.0,,230043.0,,214692.0,,15351.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,202005,Y,U,Y,2497.0,Includes Renewals and/or Redeterminations,0.0,,2497.0,Includes Renewals and/or Redeterminations,3407.0,Includes Renewals and/or Redeterminations; Includes CHIP,213.0,,3620.0,Includes Renewals and/or Redeterminations,98912.0,,230043.0,,214692.0,,15351.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,202006,Y,P,N,2844.0,Includes Renewals and/or Redeterminations,0.0,,2844.0,Includes Renewals and/or Redeterminations,3238.0,Includes Renewals and/or Redeterminations; Includes CHIP,231.0,,3469.0,Includes Renewals and/or Redeterminations,98484.0,,231145.0,,216568.0,,14577.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,202006,Y,U,Y,2844.0,Includes Renewals and/or Redeterminations,0.0,,2844.0,Includes Renewals and/or Redeterminations,3238.0,Includes Renewals and/or Redeterminations; Includes CHIP,231.0,,3469.0,Includes Renewals and/or Redeterminations,98792.0,,232069.0,,217484.0,,14585.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,202007,Y,P,N,2402.0,Includes Renewals and/or Redeterminations,0.0,,2402.0,Includes Renewals and/or Redeterminations,2081.0,Includes Renewals and/or Redeterminations; Includes CHIP,127.0,,2208.0,Includes Renewals and/or Redeterminations,98287.0,,232578.0,,218487.0,,14091.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,202007,Y,U,Y,2402.0,Includes Renewals and/or Redeterminations,0.0,,2402.0,Includes Renewals and/or Redeterminations,2081.0,Includes Renewals and/or Redeterminations; Includes CHIP,127.0,,2208.0,Includes Renewals and/or Redeterminations,98580.0,,233334.0,,219239.0,,14095.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,202008,Y,P,N,2737.0,Includes Renewals and/or Redeterminations,0.0,,2737.0,Includes Renewals and/or Redeterminations,1950.0,Includes Renewals and/or Redeterminations; Includes CHIP,93.0,,2043.0,Includes Renewals and/or Redeterminations,98556.0,,234622.0,,220778.0,,13844.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,202008,Y,U,Y,2737.0,Includes Renewals and/or Redeterminations,0.0,,2737.0,Includes Renewals and/or Redeterminations,1950.0,Includes Renewals and/or Redeterminations; Includes CHIP,93.0,,2043.0,Includes Renewals and/or Redeterminations,98804.0,,235261.0,,221414.0,,13847.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,202009,Y,P,N,2657.0,Includes Renewals and/or Redeterminations,0.0,,2657.0,Includes Renewals and/or Redeterminations,1944.0,Includes Renewals and/or Redeterminations; Includes CHIP,95.0,,2039.0,Includes Renewals and/or Redeterminations,98788.0,,235600.0,,221926.0,,13674.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,202009,Y,U,Y,2657.0,Includes Renewals and/or Redeterminations,0.0,,2657.0,Includes Renewals and/or Redeterminations,1944.0,Includes Renewals and/or Redeterminations; Includes CHIP,95.0,,2039.0,Includes Renewals and/or Redeterminations,99035.0,,236362.0,,222686.0,,13676.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,202010,Y,P,N,2849.0,Includes Renewals and/or Redeterminations,0.0,,2849.0,Includes Renewals and/or Redeterminations,2001.0,Includes Renewals and/or Redeterminations; Includes CHIP,79.0,,2080.0,Includes Renewals and/or Redeterminations,99143.0,,236719.0,,223272.0,,13447.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,202010,Y,U,Y,2849.0,Includes Renewals and/or Redeterminations,0.0,,2849.0,Includes Renewals and/or Redeterminations,2001.0,Includes Renewals and/or Redeterminations; Includes CHIP,79.0,,2080.0,Includes Renewals and/or Redeterminations,99443.0,,237786.0,,224338.0,,13448.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,202011,Y,P,N,3756.0,Includes Renewals and/or Redeterminations,0.0,,3756.0,Includes Renewals and/or Redeterminations,1976.0,Includes Renewals and/or Redeterminations; Includes CHIP,120.0,,2096.0,Includes Renewals and/or Redeterminations,99352.0,,237622.0,,224273.0,,13349.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,202011,Y,U,Y,3756.0,Includes Renewals and/or Redeterminations,0.0,,3756.0,Includes Renewals and/or Redeterminations,1976.0,Includes Renewals and/or Redeterminations; Includes CHIP,120.0,,2096.0,Includes Renewals and/or Redeterminations,99655.0,,238873.0,,225513.0,,13360.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,202012,Y,P,N,2620.0,Includes Renewals and/or Redeterminations,0.0,,2620.0,Includes Renewals and/or Redeterminations,2096.0,Includes Renewals and/or Redeterminations; Includes CHIP,106.0,,2202.0,Includes Renewals and/or Redeterminations,99613.0,,238433.0,,225053.0,,13380.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,202012,Y,U,Y,2620.0,Includes Renewals and/or Redeterminations,0.0,,2620.0,Includes Renewals and/or Redeterminations,2096.0,Includes Renewals and/or Redeterminations; Includes CHIP,106.0,,2202.0,Includes Renewals and/or Redeterminations,99940.0,,239981.0,,226591.0,,13390.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,202101,Y,P,N,2574.0,Includes Renewals and/or Redeterminations,0.0,,2574.0,Includes Renewals and/or Redeterminations,1543.0,Includes Renewals and/or Redeterminations; Includes CHIP,71.0,,1614.0,Includes Renewals and/or Redeterminations,99533.0,,237582.0,,224304.0,,13278.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,202101,Y,U,Y,2574.0,Includes Renewals and/or Redeterminations,0.0,,2574.0,Includes Renewals and/or Redeterminations,1543.0,Includes Renewals and/or Redeterminations; Includes CHIP,71.0,,1614.0,Includes Renewals and/or Redeterminations,100171.0,,241410.0,,228118.0,,13292.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,202102,Y,P,N,2795.0,Includes Renewals and/or Redeterminations,0.0,,2795.0,Includes Renewals and/or Redeterminations,1243.0,Includes Renewals and/or Redeterminations; Includes CHIP,48.0,,1291.0,Includes Renewals and/or Redeterminations,100499.0,,242991.0,,229755.0,,13236.0,,,,109.0,Incorrectly includes redeterminations,437.0,Incorrectly includes redeterminations,388.0,Incorrectly includes redeterminations,195.0,Incorrectly includes redeterminations,1532.0,Incorrectly includes redeterminations,,,,,, +AK,Alaska,202102,Y,U,Y,2795.0,Includes Renewals and/or Redeterminations,0.0,,2795.0,Includes Renewals and/or Redeterminations,1243.0,Includes Renewals and/or Redeterminations; Includes CHIP,48.0,,1291.0,Includes Renewals and/or Redeterminations,100499.0,,242991.0,,229755.0,,13236.0,,,,109.0,Incorrectly includes redeterminations,437.0,Incorrectly includes redeterminations,388.0,Incorrectly includes redeterminations,195.0,Incorrectly includes redeterminations,1532.0,Incorrectly includes redeterminations,,,,,, +AK,Alaska,202103,Y,P,N,2987.0,Includes Renewals and/or Redeterminations,0.0,,2987.0,Includes Renewals and/or Redeterminations,1543.0,Includes Renewals and/or Redeterminations; Includes CHIP,67.0,,1610.0,Includes Renewals and/or Redeterminations,100555.0,,243824.0,,230715.0,,13109.0,,,,179.0,Incorrectly includes redeterminations,431.0,Incorrectly includes redeterminations,430.0,Incorrectly includes redeterminations,183.0,Incorrectly includes redeterminations,2261.0,Incorrectly includes redeterminations,,,,,, +AK,Alaska,202103,Y,U,Y,2987.0,Includes Renewals and/or Redeterminations,0.0,,2987.0,Includes Renewals and/or Redeterminations,1543.0,Includes Renewals and/or Redeterminations; Includes CHIP,67.0,,1610.0,Includes Renewals and/or Redeterminations,100827.0,,244860.0,,231747.0,,13113.0,,,,179.0,Incorrectly includes redeterminations,431.0,Incorrectly includes redeterminations,430.0,Incorrectly includes redeterminations,183.0,Incorrectly includes redeterminations,2261.0,Incorrectly includes redeterminations,,,,,, +AK,Alaska,202104,Y,P,N,2536.0,Includes Renewals and/or Redeterminations,0.0,,2536.0,Includes Renewals and/or Redeterminations,1453.0,Includes Renewals and/or Redeterminations; Includes CHIP,88.0,,1541.0,Includes Renewals and/or Redeterminations,101124.0,,246179.0,,233149.0,,13030.0,,,,283.0,Incorrectly includes redeterminations,493.0,Incorrectly includes redeterminations,436.0,Incorrectly includes redeterminations,387.0,Incorrectly includes redeterminations,1516.0,Incorrectly includes redeterminations,,,,,, +AK,Alaska,202104,Y,U,Y,2536.0,Includes Renewals and/or Redeterminations,0.0,,2536.0,Includes Renewals and/or Redeterminations,1453.0,Includes Renewals and/or Redeterminations; Includes CHIP,88.0,,1541.0,Includes Renewals and/or Redeterminations,101494.0,,247180.0,,234147.0,,13033.0,,,,283.0,Incorrectly includes redeterminations,493.0,Incorrectly includes redeterminations,436.0,Incorrectly includes redeterminations,387.0,Incorrectly includes redeterminations,1516.0,Incorrectly includes redeterminations,,,,,, +AK,Alaska,202105,Y,P,N,2282.0,Includes Renewals and/or Redeterminations,0.0,,2282.0,Includes Renewals and/or Redeterminations,1837.0,Includes Renewals and/or Redeterminations; Includes CHIP,115.0,,1952.0,Includes Renewals and/or Redeterminations,101548.0,,247581.0,,234706.0,,12875.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,202105,Y,U,Y,2282.0,Includes Renewals and/or Redeterminations,0.0,,2282.0,Includes Renewals and/or Redeterminations,1837.0,Includes Renewals and/or Redeterminations; Includes CHIP,115.0,,1952.0,Includes Renewals and/or Redeterminations,101974.0,,248739.0,,235858.0,,12881.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,202106,Y,P,N,2484.0,Includes Renewals and/or Redeterminations,0.0,,2484.0,Includes Renewals and/or Redeterminations,1782.0,Includes Renewals and/or Redeterminations; Includes CHIP,75.0,,1857.0,Includes Renewals and/or Redeterminations,102218.0,,249502.0,,236720.0,,12782.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,202106,Y,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,102501.0,,250285.0,,237500.0,,12785.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,202107,Y,P,N,2214.0,,0.0,,2214.0,,1519.0,,76.0,,1595.0,,102312.0,,250151.0,,237497.0,,12654.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,202107,Y,U,Y,2214.0,,0.0,,2214.0,,1519.0,,76.0,,1595.0,,102632.0,,251024.0,,238365.0,,12659.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,202108,Y,P,N,2379.0,,0.0,,2379.0,,1726.0,,70.0,,1796.0,,101831.0,,249781.0,,237271.0,,12510.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,202108,Y,U,Y,2379.0,,0.0,,2379.0,,1726.0,,70.0,,1796.0,,102819.0,,251977.0,,239402.0,,12575.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,202109,Y,P,N,2208.0,,0.0,,2208.0,,1500.0,,68.0,,1568.0,,102778.0,,252090.0,,239595.0,,12495.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,202109,Y,U,Y,2208.0,,0.0,,2208.0,,1500.0,,68.0,,1568.0,,102993.0,,252736.0,,240240.0,,12496.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,202110,Y,P,N,2430.0,,0.0,,2430.0,,1432.0,,54.0,,1486.0,,102942.0,,252935.0,,240527.0,,12408.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,202110,Y,U,Y,2430.0,,0.0,,2430.0,,1432.0,,54.0,,1486.0,,103391.0,,254169.0,,241822.0,,12347.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,202111,Y,P,N,2396.0,,0.0,,2396.0,,1696.0,,84.0,,1780.0,,103143.0,,253841.0,,241504.0,,12337.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,202111,Y,U,Y,2396.0,,0.0,,2396.0,,1696.0,,84.0,,1780.0,,103632.0,,255230.0,,242946.0,,12284.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,202112,Y,P,N,2216.0,,0.0,,2216.0,,1865.0,,93.0,,1958.0,,103473.0,,255009.0,,242720.0,,12289.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,202112,Y,U,Y,2214.0,,0.0,,2214.0,,1865.0,,93.0,,1958.0,,103707.0,,255746.0,,243455.0,,12291.0,,,,,,,,,,,,,,,,,,, +AK,Alaska,202201,Y,P,N,2302.0,,0.0,,2302.0,,1749.0,,82.0,,1831.0,,103666.0,,256139.0,,243874.0,,12265.0,,,,113.0,Incorrectly includes redeterminations,668.0,Incorrectly includes redeterminations,577.0,Incorrectly includes redeterminations,396.0,Incorrectly includes redeterminations,1043.0,Incorrectly includes redeterminations,,,,,, +AK,Alaska,202201,Y,U,Y,2302.0,,0.0,,2302.0,,1749.0,,82.0,,1831.0,,104013.0,,257035.0,,244766.0,,12269.0,,,,113.0,Incorrectly includes redeterminations,668.0,Incorrectly includes redeterminations,577.0,Incorrectly includes redeterminations,396.0,Incorrectly includes redeterminations,1043.0,Incorrectly includes redeterminations,,,,,, +AK,Alaska,202202,Y,P,N,1965.0,,0.0,,1965.0,,1390.0,,43.0,,1433.0,,103879.0,,256992.0,,244795.0,,12197.0,,,,226.0,Incorrectly includes redeterminations,344.0,Incorrectly includes redeterminations,388.0,Incorrectly includes redeterminations,269.0,Incorrectly includes redeterminations,1172.0,Incorrectly includes redeterminations,,,,,, +AK,Alaska,202202,Y,U,Y,1965.0,,0.0,,1965.0,,1390.0,,43.0,,1433.0,,104139.0,,257691.0,,245489.0,,12202.0,,,,226.0,Incorrectly includes redeterminations,344.0,Incorrectly includes redeterminations,388.0,Incorrectly includes redeterminations,269.0,Incorrectly includes redeterminations,1172.0,Incorrectly includes redeterminations,,,,,, +AK,Alaska,202203,Y,P,N,2263.0,,0.0,,2263.0,,1592.0,,70.0,,1662.0,,104332.0,,258363.0,,246201.0,,12162.0,,,,192.0,Incorrectly includes redeterminations,357.0,Incorrectly includes redeterminations,498.0,Incorrectly includes redeterminations,352.0,Incorrectly includes redeterminations,1421.0,Incorrectly includes redeterminations,,,,,, +AK,Alaska,202203,Y,U,Y,2263.0,,0.0,,2263.0,,1592.0,,70.0,,1662.0,,104741.0,,259457.0,,247295.0,,12162.0,,,,192.0,Incorrectly includes redeterminations,357.0,Incorrectly includes redeterminations,498.0,Incorrectly includes redeterminations,352.0,Incorrectly includes redeterminations,1421.0,Incorrectly includes redeterminations,,,,,, +AK,Alaska,202204,Y,P,N,1869.0,,0.0,,1869.0,,1758.0,,94.0,,1852.0,,104729.0,,259971.0,,247976.0,,11995.0,,,,171.0,Incorrectly includes redeterminations,252.0,Incorrectly includes redeterminations,623.0,Incorrectly includes redeterminations,299.0,Incorrectly includes redeterminations,1991.0,Incorrectly includes redeterminations,,,,,, +AK,Alaska,202204,Y,U,Y,1869.0,,0.0,,1869.0,,1758.0,,94.0,,1852.0,,104729.0,,259971.0,,247976.0,,11995.0,,,,171.0,Incorrectly includes redeterminations,252.0,Incorrectly includes redeterminations,623.0,Incorrectly includes redeterminations,299.0,Incorrectly includes redeterminations,1991.0,Incorrectly includes redeterminations,,,,,, +AK,Alaska,202205,Y,P,N,2037.0,,0.0,,2037.0,,1481.0,,66.0,,1547.0,,104591.0,,260041.0,,248137.0,,11904.0,,,,138.0,Incorrectly includes redeterminations,460.0,Incorrectly includes redeterminations,624.0,Incorrectly includes redeterminations,288.0,Incorrectly includes redeterminations,990.0,Incorrectly includes redeterminations,,,,,, +AK,Alaska,202205,Y,U,Y,2037.0,,0.0,,2037.0,,1481.0,,66.0,,1547.0,,104836.0,,260768.0,,248863.0,,11905.0,,,,138.0,Incorrectly includes redeterminations,460.0,Incorrectly includes redeterminations,624.0,Incorrectly includes redeterminations,288.0,Incorrectly includes redeterminations,990.0,Incorrectly includes redeterminations,,,,,, +AK,Alaska,202206,Y,P,N,2006.0,,0.0,,2006.0,,1189.0,,66.0,,1255.0,,104809.0,,260981.0,,249106.0,,11875.0,,,,51.0,Incorrectly includes redeterminations,188.0,Incorrectly includes redeterminations,236.0,Incorrectly includes redeterminations,134.0,Incorrectly includes redeterminations,1497.0,Incorrectly includes redeterminations,,,,,, +AK,Alaska,202206,Y,U,Y,2006.0,,0.0,,2006.0,,1189.0,,66.0,,1255.0,,105193.0,,262031.0,,250149.0,,11882.0,,,,51.0,Incorrectly includes redeterminations,188.0,Incorrectly includes redeterminations,236.0,Incorrectly includes redeterminations,134.0,Incorrectly includes redeterminations,1497.0,Incorrectly includes redeterminations,,,,,, +AK,Alaska,202207,Y,P,N,1845.0,,0.0,,1845.0,,998.0,,50.0,,1048.0,,104920.0,,261816.0,,249966.0,,11850.0,,,,133.0,Incorrectly includes redeterminations,261.0,Incorrectly includes redeterminations,505.0,Incorrectly includes redeterminations,131.0,Incorrectly includes redeterminations,238.0,Incorrectly includes redeterminations,,,,,, +AK,Alaska,202207,Y,U,Y,1845.0,,0.0,,1845.0,,998.0,,50.0,,1048.0,,104920.0,,261816.0,,249966.0,,11850.0,,,,133.0,Incorrectly includes redeterminations,261.0,Incorrectly includes redeterminations,505.0,Incorrectly includes redeterminations,131.0,Incorrectly includes redeterminations,238.0,Incorrectly includes redeterminations,,,,,, +AK,Alaska,202208,Y,P,N,1995.0,,0.0,,1995.0,,1217.0,,46.0,,1263.0,,104813.0,,261724.0,,249945.0,,11779.0,,,,102.0,Incorrectly includes redeterminations,268.0,Incorrectly includes redeterminations,714.0,Incorrectly includes redeterminations,210.0,Incorrectly includes redeterminations,410.0,Incorrectly includes redeterminations,,,,,, +AK,Alaska,202208,Y,U,Y,1995.0,,0.0,,1995.0,,1217.0,,46.0,,1263.0,,105055.0,,262417.0,,250637.0,,11780.0,,,,102.0,Incorrectly includes redeterminations,268.0,Incorrectly includes redeterminations,714.0,Incorrectly includes redeterminations,210.0,Incorrectly includes redeterminations,410.0,Incorrectly includes redeterminations,,,,,, +AK,Alaska,202209,Y,P,N,1497.0,,0.0,,1497.0,,963.0,,38.0,,1001.0,,104840.0,,261929.0,,250132.0,,11797.0,,,,78.0,Incorrectly includes redeterminations,141.0,Incorrectly includes redeterminations,511.0,Incorrectly includes redeterminations,176.0,Incorrectly includes redeterminations,312.0,Incorrectly includes redeterminations,,,,,, +AK,Alaska,202209,Y,U,Y,1497.0,,0.0,,1497.0,,963.0,,38.0,,1001.0,,105106.0,,262624.0,,250824.0,,11800.0,,,,78.0,Incorrectly includes redeterminations,141.0,Incorrectly includes redeterminations,511.0,Incorrectly includes redeterminations,176.0,Incorrectly includes redeterminations,312.0,Incorrectly includes redeterminations,,,,,, +AK,Alaska,202210,Y,P,N,1686.0,,0.0,,1686.0,,1038.0,,40.0,,1078.0,,104525.0,,261773.0,,249959.0,,11814.0,,,,105.0,Incorrectly includes redeterminations,89.0,Incorrectly includes redeterminations,489.0,Incorrectly includes redeterminations,159.0,Incorrectly includes redeterminations,362.0,Incorrectly includes redeterminations,,,,,, +AK,Alaska,202210,Y,U,Y,1686.0,,0.0,,1686.0,,1038.0,,40.0,,1078.0,,105017.0,,262586.0,,250772.0,,11814.0,,,,105.0,Incorrectly includes redeterminations,89.0,Incorrectly includes redeterminations,489.0,Incorrectly includes redeterminations,159.0,Incorrectly includes redeterminations,362.0,Incorrectly includes redeterminations,,,,,, +AK,Alaska,202211,Y,P,N,1415.0,,0.0,,1415.0,,1543.0,,113.0,,1656.0,,105252.0,,263529.0,,251627.0,,11902.0,,,,95.0,Incorrectly includes redeterminations,127.0,Incorrectly includes redeterminations,495.0,Incorrectly includes redeterminations,653.0,Incorrectly includes redeterminations,904.0,Incorrectly includes redeterminations,,,,,, +AK,Alaska,202211,Y,U,Y,1415.0,,0.0,,1415.0,,1543.0,,113.0,,1656.0,,105252.0,,263529.0,,251627.0,,11902.0,,,,95.0,Incorrectly includes redeterminations,127.0,Incorrectly includes redeterminations,495.0,Incorrectly includes redeterminations,653.0,Incorrectly includes redeterminations,904.0,Incorrectly includes redeterminations,,,,,, +AK,Alaska,202212,Y,P,N,1287.0,,0.0,,1287.0,,1061.0,,73.0,,1134.0,,105067.0,,263206.0,,251276.0,,11930.0,,,,60.0,Incorrectly includes redeterminations,58.0,Incorrectly includes redeterminations,164.0,Incorrectly includes redeterminations,577.0,Incorrectly includes redeterminations,488.0,Incorrectly includes redeterminations,,,,,, +AK,Alaska,202212,Y,U,Y,1287.0,,0.0,,1287.0,,1061.0,,73.0,,1134.0,,105143.0,,263656.0,,251726.0,,11930.0,,,,60.0,Incorrectly includes redeterminations,58.0,Incorrectly includes redeterminations,164.0,Incorrectly includes redeterminations,577.0,Incorrectly includes redeterminations,488.0,Incorrectly includes redeterminations,,,,,, +AK,Alaska,202301,Y,P,N,1625.0,,0.0,,1625.0,,1668.0,,82.0,,1750.0,,104942.0,,263306.0,,251327.0,,11979.0,,,,70.0,Incorrectly includes redeterminations,83.0,Incorrectly includes redeterminations,86.0,Incorrectly includes redeterminations,743.0,Incorrectly includes redeterminations,1257.0,Incorrectly includes redeterminations,,,,,, +AK,Alaska,202301,Y,U,Y,1625.0,,0.0,,1625.0,,1668.0,,82.0,,1750.0,,105769.0,,265528.0,,253531.0,,11997.0,,,,70.0,Incorrectly includes redeterminations,83.0,Incorrectly includes redeterminations,86.0,Incorrectly includes redeterminations,743.0,Incorrectly includes redeterminations,1257.0,Incorrectly includes redeterminations,,,,,, +AK,Alaska,202302,Y,P,N,1392.0,,0.0,,1392.0,,1612.0,,80.0,,1692.0,,105579.0,,265565.0,,253526.0,,12039.0,,,,83.0,Incorrectly includes redeterminations,110.0,Incorrectly includes redeterminations,195.0,Incorrectly includes redeterminations,158.0,Incorrectly includes redeterminations,1528.0,Incorrectly includes redeterminations,,,,,, +AK,Alaska,202302,Y,U,Y,1392.0,,0.0,,1392.0,,0.0,,0.0,,0.0,,105700.0,,266213.0,,254124.0,,12089.0,,,,83.0,Incorrectly includes redeterminations,110.0,Incorrectly includes redeterminations,195.0,Incorrectly includes redeterminations,158.0,Incorrectly includes redeterminations,1528.0,Incorrectly includes redeterminations,,,,,, +AK,Alaska,202303,Y,P,N,2318.0,,0.0,,2318.0,,1902.0,,112.0,,2014.0,,105666.0,,266110.0,,253960.0,,12150.0,,,,84.0,Incorrectly includes redeterminations,282.0,Incorrectly includes redeterminations,497.0,Incorrectly includes redeterminations,207.0,Incorrectly includes redeterminations,1251.0,Incorrectly includes redeterminations,20564.0,Includes calls for other benefit programs,17.0,Call centers offer callbacks; Includes calls for other benefit programs; Wait times for callbacks are included but reported separately from live calls,0.27,Includes calls for other benefit programs +AK,Alaska,202303,Y,U,Y,2318.0,,0.0,,2318.0,,1902.0,,112.0,,2014.0,,106018.0,,267278.0,,254947.0,,12331.0,,,,84.0,Incorrectly includes redeterminations,282.0,Incorrectly includes redeterminations,497.0,Incorrectly includes redeterminations,207.0,Incorrectly includes redeterminations,1251.0,Incorrectly includes redeterminations,20564.0,Includes calls for other benefit programs,17.0,Call centers offer callbacks; Includes calls for other benefit programs; Wait times for callbacks are included but reported separately from live calls,0.27,Includes calls for other benefit programs +AK,Alaska,202304,Y,P,N,2019.0,,0.0,,2019.0,,1095.0,,34.0,,1129.0,,105816.0,,266740.0,,254499.0,,12241.0,,,,76.0,Incorrectly includes redeterminations,394.0,Incorrectly includes redeterminations,188.0,Incorrectly includes redeterminations,41.0,Incorrectly includes redeterminations,578.0,Incorrectly includes redeterminations,19377.0,Includes calls for other benefit programs,17.0,Call centers offer callbacks; Includes calls for other benefit programs; Wait times for callbacks are included but reported separately from live calls,0.27,Includes calls for other benefit programs +AK,Alaska,202304,Y,U,Y,2019.0,,0.0,,2019.0,,1095.0,,34.0,,1129.0,,106235.0,,268069.0,,255688.0,,12381.0,,,,76.0,Incorrectly includes redeterminations,394.0,Incorrectly includes redeterminations,188.0,Incorrectly includes redeterminations,41.0,Incorrectly includes redeterminations,578.0,Incorrectly includes redeterminations,19377.0,Includes calls for other benefit programs,17.0,Call centers offer callbacks; Includes calls for other benefit programs; Wait times for callbacks are included but reported separately from live calls,0.27,Includes calls for other benefit programs +AK,Alaska,202305,Y,P,N,2204.0,,0.0,,2204.0,,1291.0,,77.0,,1368.0,,105920.0,,266917.0,,254439.0,,12478.0,,,,50.0,Incorrectly includes redeterminations,498.0,Incorrectly includes redeterminations,246.0,Incorrectly includes redeterminations,135.0,Incorrectly includes redeterminations,619.0,Incorrectly includes redeterminations,29402.0,Includes calls for other benefit programs,16.0,Call centers offer callbacks; Includes calls for other benefit programs; Wait times for callbacks are included but reported separately from live calls,0.24,Includes calls for other benefit programs +AK,Alaska,202305,Y,U,Y,2204.0,,0.0,,2204.0,,1291.0,,77.0,,1368.0,,105920.0,,266917.0,,254439.0,,12478.0,,,,50.0,Incorrectly includes redeterminations,498.0,Incorrectly includes redeterminations,246.0,Incorrectly includes redeterminations,135.0,Incorrectly includes redeterminations,619.0,Incorrectly includes redeterminations,29402.0,Includes calls for other benefit programs,16.0,Call centers offer callbacks; Includes calls for other benefit programs; Wait times for callbacks are included but reported separately from live calls,0.24,Includes calls for other benefit programs +AK,Alaska,202306,Y,P,N,2206.0,,0.0,,2206.0,,1442.0,,45.0,,1487.0,,109158.0,,256916.0,,242624.0,,14292.0,,,,147.0,Incorrectly includes redeterminations,369.0,Incorrectly includes redeterminations,271.0,Incorrectly includes redeterminations,106.0,Incorrectly includes redeterminations,723.0,Incorrectly includes redeterminations,30361.0,Includes calls for other benefit programs,13.0,Call centers offer callbacks; Includes calls for other benefit programs; Wait times for callbacks are included but reported separately from live calls,0.15,Includes calls for other benefit programs +AK,Alaska,202306,Y,U,Y,2206.0,,0.0,,2206.0,,1442.0,,45.0,,1487.0,,105090.0,,265952.0,,252977.0,,12975.0,,,,147.0,Incorrectly includes redeterminations,369.0,Incorrectly includes redeterminations,271.0,Incorrectly includes redeterminations,106.0,Incorrectly includes redeterminations,723.0,Incorrectly includes redeterminations,30361.0,Includes calls for other benefit programs,13.0,Call centers offer callbacks; Includes calls for other benefit programs; Wait times for callbacks are included but reported separately from live calls,0.15,Includes calls for other benefit programs +AK,Alaska,202307,Y,P,N,2159.0,,0.0,,2159.0,,1332.0,,50.0,,1382.0,,103096.0,,261521.0,,248523.0,,12998.0,,,,14.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,382.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,137.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,44.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,346.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,30310.0,Includes calls for other benefit programs,13.0,Call centers offer callbacks; Includes calls for other benefit programs; Wait times for callbacks are included but reported separately from live calls,0.15,Includes calls for other benefit programs +AK,Alaska,202307,Y,U,Y,2159.0,,0.0,,2159.0,,1332.0,,50.0,,1382.0,,103351.0,,262806.0,,249808.0,,12998.0,,,,14.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,382.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,137.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,44.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,346.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,30310.0,Includes calls for other benefit programs,13.0,Call centers offer callbacks; Includes calls for other benefit programs; Wait times for callbacks are included but reported separately from live calls,0.15,Includes calls for other benefit programs +AK,Alaska,202308,Y,P,N,2718.0,,0.0,,2718.0,,1805.0,,95.0,,1900.0,,100381.0,,255097.0,,241999.0,,13098.0,,,,39.0,Incorrectly includes redeterminations,400.0,Incorrectly includes redeterminations,200.0,Incorrectly includes redeterminations,38.0,Incorrectly includes redeterminations,552.0,Incorrectly includes redeterminations,39407.0,Includes calls for other benefit programs,16.0,Call centers offer callbacks; Includes calls for other benefit programs; Wait times for callbacks are included but reported separately from live calls,0.19,Includes calls for other benefit programs +AK,Alaska,202308,Y,U,Y,2718.0,,0.0,,2718.0,,1805.0,,95.0,,1900.0,,100805.0,,256543.0,,243445.0,,13098.0,,,,39.0,Incorrectly includes redeterminations,400.0,Incorrectly includes redeterminations,200.0,Incorrectly includes redeterminations,38.0,Incorrectly includes redeterminations,552.0,Incorrectly includes redeterminations,39407.0,Includes calls for other benefit programs,16.0,Call centers offer callbacks; Includes calls for other benefit programs; Wait times for callbacks are included but reported separately from live calls,0.19,Includes calls for other benefit programs +AK,Alaska,202309,Y,P,N,2840.0,,0.0,,2840.0,,1586.0,,101.0,,1687.0,,97433.0,,247112.0,,234194.0,,12918.0,,,,95.0,Incorrectly includes redeterminations,345.0,Incorrectly includes redeterminations,300.0,Incorrectly includes redeterminations,60.0,Incorrectly includes redeterminations,289.0,Incorrectly includes redeterminations,34517.0,Includes calls for other benefit programs,13.0,Call centers offer callbacks; Includes calls for other benefit programs; Wait times for callbacks are included but reported separately from live calls,0.2,Includes calls for other benefit programs +AK,Alaska,202309,Y,U,Y,2840.0,,0.0,,2840.0,,1586.0,,101.0,,1687.0,,97359.0,Does Not Include All Full-Benefit MAGI Child enrollees,246817.0,Does Not Include All Full-Benefit Non-MAGI enrollees,233372.0,Does Not Include All Full-Benefit Non-MAGI enrollees,13445.0,Does Not Include All CHIP enrollees,,,95.0,Incorrectly includes redeterminations,345.0,Incorrectly includes redeterminations,300.0,Incorrectly includes redeterminations,60.0,Incorrectly includes redeterminations,289.0,Incorrectly includes redeterminations,34517.0,Includes calls for other benefit programs,13.0,Call centers offer callbacks; Includes calls for other benefit programs; Wait times for callbacks are included but reported separately from live calls,0.2,Includes calls for other benefit programs +AK,Alaska,202310,Y,P,N,2807.0,,0.0,,2807.0,,1494.0,,71.0,,1565.0,,96454.0,Does Not Include All Full-Benefit MAGI Child enrollees,244425.0,Does Not Include All Full-Benefit Non-MAGI enrollees,231257.0,Does Not Include All Full-Benefit Non-MAGI enrollees,13168.0,Does Not Include All CHIP enrollees,,,42.0,Incorrectly includes redeterminations,278.0,Incorrectly includes redeterminations,247.0,Incorrectly includes redeterminations,63.0,Incorrectly includes redeterminations,371.0,Incorrectly includes redeterminations,33374.0,Includes calls for other benefit programs,16.0,Call centers offer callbacks; Includes calls for other benefit programs; Wait times for callbacks are included but reported separately from live calls,0.21,Includes calls for other benefit programs +AK,Alaska,202310,Y,U,Y,2807.0,,0.0,,2807.0,,1494.0,,71.0,,1565.0,,97103.0,Does Not Include All Full-Benefit MAGI Child enrollees,246026.0,Does Not Include All Full-Benefit Non-MAGI enrollees,232584.0,Does Not Include All Full-Benefit Non-MAGI enrollees,13442.0,Does Not Include All CHIP enrollees,,,42.0,Incorrectly includes redeterminations,278.0,Incorrectly includes redeterminations,247.0,Incorrectly includes redeterminations,63.0,Incorrectly includes redeterminations,371.0,Incorrectly includes redeterminations,33374.0,Includes calls for other benefit programs,16.0,Call centers offer callbacks; Includes calls for other benefit programs; Wait times for callbacks are included but reported separately from live calls,0.21,Includes calls for other benefit programs +AK,Alaska,202311,Y,P,N,2230.0,,0.0,,2230.0,,1644.0,,108.0,,1752.0,,96790.0,Does Not Include All Full-Benefit MAGI Child enrollees,244193.0,Does Not Include All Full-Benefit Non-MAGI enrollees,230760.0,Does Not Include All Full-Benefit Non-MAGI enrollees,13433.0,Does Not Include All CHIP enrollees,,,40.0,Incorrectly includes redeterminations,287.0,Incorrectly includes redeterminations,536.0,Incorrectly includes redeterminations,142.0,Incorrectly includes redeterminations,380.0,Incorrectly includes redeterminations,35938.0,Includes calls for other benefit programs,17.0,Call centers offer callbacks; Includes calls for other benefit programs; Wait times for callbacks are included but reported separately from live calls,0.29,Includes calls for other benefit programs +AK,Alaska,202311,Y,U,Y,2230.0,,0.0,,2230.0,,1644.0,,108.0,,1752.0,,96790.0,Does Not Include All Full-Benefit MAGI Child enrollees,244193.0,Does Not Include All Full-Benefit Non-MAGI enrollees,230760.0,Does Not Include All Full-Benefit Non-MAGI enrollees,13433.0,Does Not Include All CHIP enrollees,,,40.0,Incorrectly includes redeterminations,287.0,Incorrectly includes redeterminations,536.0,Incorrectly includes redeterminations,142.0,Incorrectly includes redeterminations,380.0,Incorrectly includes redeterminations,35938.0,Includes calls for other benefit programs,17.0,Call centers offer callbacks; Includes calls for other benefit programs; Wait times for callbacks are included but reported separately from live calls,0.29,Includes calls for other benefit programs +AK,Alaska,202312,Y,P,N,2768.0,,0.0,,2768.0,,4739.0,,381.0,,5120.0,,96673.0,Does Not Include All Full-Benefit MAGI Child enrollees,242860.0,Does Not Include All Full-Benefit Non-MAGI enrollees,229034.0,Does Not Include All Full-Benefit Non-MAGI enrollees,13826.0,Does Not Include All CHIP enrollees,,,122.0,Incorrectly includes redeterminations,2023.0,Incorrectly includes redeterminations,2099.0,Incorrectly includes redeterminations,502.0,Incorrectly includes redeterminations,2279.0,Incorrectly includes redeterminations,36070.0,Includes calls for other benefit programs,20.0,Call centers offer callbacks; Includes calls for other benefit programs; Wait times for callbacks are included but reported separately from live calls,0.31,Includes calls for other benefit programs +AK,Alaska,202312,Y,U,Y,2768.0,,0.0,,2768.0,,4739.0,,381.0,,5120.0,,96673.0,Does Not Include All Full-Benefit MAGI Child enrollees,242860.0,Does Not Include All Full-Benefit Non-MAGI enrollees,229034.0,Does Not Include All Full-Benefit Non-MAGI enrollees,13826.0,Does Not Include All CHIP enrollees,,,122.0,Incorrectly includes redeterminations,2023.0,Incorrectly includes redeterminations,2099.0,Incorrectly includes redeterminations,502.0,Incorrectly includes redeterminations,2279.0,Incorrectly includes redeterminations,36070.0,Includes calls for other benefit programs,20.0,Call centers offer callbacks; Includes calls for other benefit programs; Wait times for callbacks are included but reported separately from live calls,0.31,Includes calls for other benefit programs +AK,Alaska,202401,Y,P,N,2929.0,,0.0,,2929.0,,2373.0,,150.0,,2523.0,,96835.0,Does Not Include All Full-Benefit MAGI Child enrollees,242873.0,Does Not Include All Full-Benefit Non-MAGI enrollees,228769.0,Does Not Include All Full-Benefit Non-MAGI enrollees,14104.0,Does Not Include All CHIP enrollees,,,51.0,Incorrectly includes redeterminations,951.0,Incorrectly includes redeterminations,567.0,Incorrectly includes redeterminations,176.0,Incorrectly includes redeterminations,1083.0,Incorrectly includes redeterminations,42202.0,Includes calls for other benefit programs,46.0,Call centers offer callbacks; Includes calls for other benefit programs; Wait times for callbacks are included but reported separately from live calls,0.36,Includes calls for other benefit programs +AK,Alaska,202401,Y,U,Y,2929.0,,0.0,,2929.0,,2373.0,,150.0,,2523.0,,98234.0,Does Not Include All Full-Benefit MAGI Child enrollees,246669.0,Does Not Include All Full-Benefit Non-MAGI enrollees,232162.0,Does Not Include All Full-Benefit Non-MAGI enrollees,14507.0,Does Not Include All CHIP enrollees,,,51.0,Incorrectly includes redeterminations,951.0,Incorrectly includes redeterminations,567.0,Incorrectly includes redeterminations,176.0,Incorrectly includes redeterminations,1083.0,Incorrectly includes redeterminations,42202.0,Includes calls for other benefit programs,46.0,Call centers offer callbacks; Includes calls for other benefit programs; Wait times for callbacks are included but reported separately from live calls,0.36,Includes calls for other benefit programs +AK,Alaska,202402,Y,P,N,3460.0,,0.0,,3460.0,,2046.0,,89.0,,2135.0,,97360.0,Does Not Include All Full-Benefit MAGI Child enrollees,245382.0,Does Not Include All Full-Benefit Non-MAGI enrollees,230862.0,Does Not Include All Full-Benefit Non-MAGI enrollees,14520.0,Does Not Include All CHIP enrollees,,,82.0,Incorrectly includes redeterminations,439.0,Incorrectly includes redeterminations,456.0,Incorrectly includes redeterminations,111.0,Incorrectly includes redeterminations,1234.0,Incorrectly includes redeterminations,30415.0,Includes calls for other benefit programs,40.0,Call centers offer callbacks; Includes calls for other benefit programs; Wait times for callbacks are included but reported separately from live calls,0.26,Includes calls for other benefit programs +AK,Alaska,202402,Y,U,Y,3460.0,,0.0,,3460.0,,2046.0,,89.0,,2135.0,,98414.0,Does Not Include All Full-Benefit MAGI Child enrollees,247580.0,Does Not Include All Full-Benefit Non-MAGI enrollees,232876.0,Does Not Include All Full-Benefit Non-MAGI enrollees,14704.0,Does Not Include All CHIP enrollees,,,82.0,Incorrectly includes redeterminations,439.0,Incorrectly includes redeterminations,456.0,Incorrectly includes redeterminations,111.0,Incorrectly includes redeterminations,1234.0,Incorrectly includes redeterminations,30415.0,Includes calls for other benefit programs,40.0,Call centers offer callbacks; Includes calls for other benefit programs; Wait times for callbacks are included but reported separately from live calls,0.26,Includes calls for other benefit programs +AK,Alaska,202403,Y,P,N,3531.0,,0.0,,3531.0,,1503.0,,58.0,,1561.0,,98030.0,,246116.0,,231544.0,,14572.0,,,,57.0,Incorrectly includes redeterminations,408.0,Incorrectly includes redeterminations,419.0,Incorrectly includes redeterminations,107.0,Incorrectly includes redeterminations,752.0,Incorrectly includes redeterminations,25370.0,Includes calls for other benefit programs,18.0,Call centers offer callbacks; Includes calls for other benefit programs; Wait times for callbacks are included but reported separately from live calls,0.16,Includes calls for other benefit programs +AK,Alaska,202403,Y,U,Y,3531.0,,0.0,,3531.0,,1503.0,,58.0,,1561.0,,98492.0,,248719.0,,234082.0,,14637.0,,,,57.0,Incorrectly includes redeterminations,408.0,Incorrectly includes redeterminations,419.0,Incorrectly includes redeterminations,107.0,Incorrectly includes redeterminations,752.0,Incorrectly includes redeterminations,25370.0,Includes calls for other benefit programs,18.0,Call centers offer callbacks; Includes calls for other benefit programs; Wait times for callbacks are included but reported separately from live calls,0.16,Includes calls for other benefit programs +AK,Alaska,202404,Y,P,N,2926.0,,0.0,,2926.0,,1498.0,,63.0,,1561.0,,98535.0,,248307.0,,233649.0,,14658.0,,,,73.0,Incorrectly includes redeterminations,305.0,Incorrectly includes redeterminations,514.0,Incorrectly includes redeterminations,138.0,Incorrectly includes redeterminations,954.0,Incorrectly includes redeterminations,24009.0,Includes calls for other benefit programs,12.0,Call centers offer callbacks; Includes calls for other benefit programs; Wait times for callbacks are included but reported separately from live calls,0.15,Includes calls for other benefit programs +AK,Alaska,202404,Y,U,Y,2926.0,,0.0,,2926.0,,1498.0,,63.0,,1561.0,,98773.0,,249616.0,,234883.0,,14733.0,,,,73.0,Incorrectly includes redeterminations,305.0,Incorrectly includes redeterminations,514.0,Incorrectly includes redeterminations,138.0,Incorrectly includes redeterminations,954.0,Incorrectly includes redeterminations,24009.0,Includes calls for other benefit programs,12.0,Call centers offer callbacks; Includes calls for other benefit programs; Wait times for callbacks are included but reported separately from live calls,0.15,Includes calls for other benefit programs +AK,Alaska,202405,Y,P,N,2697.0,,0.0,,2697.0,,1632.0,,85.0,,1717.0,,98853.0,,249770.0,,234950.0,,14820.0,,,,76.0,Incorrectly includes redeterminations,488.0,Incorrectly includes redeterminations,393.0,Incorrectly includes redeterminations,94.0,Incorrectly includes redeterminations,1406.0,Incorrectly includes redeterminations,21965.0,Includes calls for other benefit programs,8.0,Call centers offer callbacks; Includes calls for other benefit programs; Wait times for callbacks are included but reported separately from live calls,0.12,Includes calls for other benefit programs +AK,Alaska,202405,Y,U,Y,2697.0,,0.0,,2697.0,,1632.0,,85.0,,1717.0,,99281.0,,251345.0,,236543.0,,14802.0,,,,76.0,Incorrectly includes redeterminations,488.0,Incorrectly includes redeterminations,393.0,Incorrectly includes redeterminations,94.0,Incorrectly includes redeterminations,1406.0,Incorrectly includes redeterminations,21965.0,Includes calls for other benefit programs,8.0,Call centers offer callbacks; Includes calls for other benefit programs; Wait times for callbacks are included but reported separately from live calls,0.12,Includes calls for other benefit programs +AK,Alaska,202406,Y,P,N,2219.0,,0.0,,2219.0,,1551.0,,92.0,,1643.0,,98117.0,,248401.0,,233756.0,,14645.0,,,,63.0,Incorrectly includes redeterminations,784.0,Incorrectly includes redeterminations,376.0,Incorrectly includes redeterminations,174.0,Incorrectly includes redeterminations,864.0,Incorrectly includes redeterminations,22372.0,Includes calls for other benefit programs,8.0,Call centers offer callbacks; Includes calls for other benefit programs; Wait times for callbacks are included but reported separately from live calls,0.13,Includes calls for other benefit programs +AK,Alaska,202406,Y,U,Y,2219.0,,0.0,,2219.0,,1551.0,,92.0,,1643.0,,99470.0,,251685.0,,236933.0,,14752.0,,,,63.0,Incorrectly includes redeterminations,784.0,Incorrectly includes redeterminations,376.0,Incorrectly includes redeterminations,174.0,Incorrectly includes redeterminations,864.0,Incorrectly includes redeterminations,22372.0,Includes calls for other benefit programs,8.0,Call centers offer callbacks; Includes calls for other benefit programs; Wait times for callbacks are included but reported separately from live calls,0.13,Includes calls for other benefit programs +AK,Alaska,202407,Y,P,N,2459.0,,0.0,,2459.0,,1618.0,,80.0,,1698.0,,98913.0,,250740.0,,235950.0,,14790.0,,151827.0,,26.0,Incorrectly includes redeterminations,116.0,Incorrectly includes redeterminations,110.0,Incorrectly includes redeterminations,84.0,Incorrectly includes redeterminations,526.0,Incorrectly includes redeterminations,28449.0,Includes calls for other benefit programs,20.0,Call centers offer callbacks; Includes calls for other benefit programs; Wait times for callbacks are included but reported separately from live calls,0.22,Includes calls for other benefit programs +AK,Alaska,202407,Y,U,Y,2459.0,,0.0,,2459.0,,1618.0,,80.0,,1698.0,,99530.0,,252541.0,,237658.0,,14883.0,,153011.0,,26.0,Incorrectly includes redeterminations,116.0,Incorrectly includes redeterminations,110.0,Incorrectly includes redeterminations,84.0,Incorrectly includes redeterminations,526.0,Incorrectly includes redeterminations,28449.0,Includes calls for other benefit programs,20.0,Call centers offer callbacks; Includes calls for other benefit programs; Wait times for callbacks are included but reported separately from live calls,0.22,Includes calls for other benefit programs +AK,Alaska,202408,Y,P,N,2138.0,,0.0,,2138.0,,1487.0,,84.0,,1571.0,,99496.0,,252398.0,,237414.0,,14984.0,,152902.0,,106.0,Incorrectly includes redeterminations,661.0,Incorrectly includes redeterminations,278.0,Incorrectly includes redeterminations,189.0,Incorrectly includes redeterminations,904.0,Incorrectly includes redeterminations,33589.0,Includes calls for other benefit programs,44.0,Call centers offer callbacks; Includes calls for other benefit programs; Wait times for callbacks are included but reported separately from live calls,0.39,Includes calls for other benefit programs +AK,Alaska,202408,Y,U,Y,2138.0,,0.0,,2138.0,,1487.0,,84.0,,1571.0,,99547.0,,252630.0,,237623.0,,15007.0,,153083.0,,106.0,Incorrectly includes redeterminations,661.0,Incorrectly includes redeterminations,278.0,Incorrectly includes redeterminations,189.0,Incorrectly includes redeterminations,904.0,Incorrectly includes redeterminations,33589.0,Includes calls for other benefit programs,44.0,Call centers offer callbacks; Includes calls for other benefit programs; Wait times for callbacks are included but reported separately from live calls,0.39,Includes calls for other benefit programs +AK,Alaska,202409,Y,P,N,1911.0,,0.0,,1911.0,,1320.0,,73.0,,1393.0,,98898.0,,251174.0,,236216.0,,14958.0,,152276.0,,61.0,Incorrectly includes redeterminations,247.0,Incorrectly includes redeterminations,320.0,Incorrectly includes redeterminations,106.0,Incorrectly includes redeterminations,668.0,Incorrectly includes redeterminations,31983.0,Includes calls for other benefit programs,53.0,Call centers offer callbacks; Includes calls for other benefit programs; Wait times for callbacks are included but reported separately from live calls,0.47,Includes calls for other benefit programs +AK,Alaska,202409,Y,U,Y,1911.0,,0.0,,1911.0,,1320.0,,73.0,,1393.0,,99733.0,,253275.0,,238239.0,,15036.0,,153542.0,,61.0,Incorrectly includes redeterminations,247.0,Incorrectly includes redeterminations,320.0,Incorrectly includes redeterminations,106.0,Incorrectly includes redeterminations,668.0,Incorrectly includes redeterminations,31983.0,Includes calls for other benefit programs,53.0,Call centers offer callbacks; Includes calls for other benefit programs; Wait times for callbacks are included but reported separately from live calls,0.47,Includes calls for other benefit programs +AK,Alaska,202410,Y,P,N,1931.0,,0.0,,1931.0,,1352.0,,105.0,,1457.0,,98400.0,,250131.0,,235214.0,,14917.0,,151731.0,,40.0,Incorrectly includes redeterminations,148.0,Incorrectly includes redeterminations,389.0,Incorrectly includes redeterminations,96.0,Incorrectly includes redeterminations,649.0,Incorrectly includes redeterminations,32776.0,Includes calls for other benefit programs,37.0,Call centers offer callbacks; Includes calls for other benefit programs; Wait times for callbacks are included but reported separately from live calls,0.38,Includes calls for other benefit programs +AK,Alaska,202410,Y,U,Y,1931.0,,0.0,,1931.0,,1352.0,,105.0,,1457.0,,99707.0,,252800.0,,237710.0,,15090.0,,153093.0,,40.0,Incorrectly includes redeterminations,148.0,Incorrectly includes redeterminations,389.0,Incorrectly includes redeterminations,96.0,Incorrectly includes redeterminations,649.0,Incorrectly includes redeterminations,32776.0,Includes calls for other benefit programs,37.0,Call centers offer callbacks; Includes calls for other benefit programs; Wait times for callbacks are included but reported separately from live calls,0.38,Includes calls for other benefit programs +AK,Alaska,202411,Y,P,N,1582.0,,0.0,,1582.0,,1157.0,,62.0,,1219.0,,98604.0,,249774.0,,234784.0,,14990.0,,151170.0,,125.0,Incorrectly includes redeterminations,197.0,Incorrectly includes redeterminations,477.0,Incorrectly includes redeterminations,111.0,Incorrectly includes redeterminations,665.0,Incorrectly includes redeterminations,34569.0,Includes calls for other benefit programs,44.0,Call centers offer callbacks; Includes calls for other benefit programs; Wait times for callbacks are included but reported separately from live calls,0.42,Includes calls for other benefit programs +AK,Alaska,202411,Y,U,Y,1582.0,,0.0,,1582.0,,1157.0,,62.0,,1219.0,,98705.0,,250349.0,,235374.0,,14975.0,,151644.0,,125.0,Incorrectly includes redeterminations,197.0,Incorrectly includes redeterminations,477.0,Incorrectly includes redeterminations,111.0,Incorrectly includes redeterminations,665.0,Incorrectly includes redeterminations,34569.0,Includes calls for other benefit programs,44.0,Call centers offer callbacks; Includes calls for other benefit programs; Wait times for callbacks are included but reported separately from live calls,0.42,Includes calls for other benefit programs +AK,Alaska,202412,Y,P,N,1718.0,,0.0,,1718.0,,1160.0,,78.0,,1238.0,,97533.0,,246366.0,,231577.0,,14789.0,,148833.0,,88.0,Incorrectly includes redeterminations,217.0,Incorrectly includes redeterminations,260.0,Incorrectly includes redeterminations,218.0,Incorrectly includes redeterminations,768.0,Incorrectly includes redeterminations,36306.0,Includes calls for other benefit programs,35.0,Call centers offer callbacks; Includes calls for other benefit programs; Wait times for callbacks are included but reported separately from live calls,0.43,Includes calls for other benefit programs +AK,Alaska,202412,Y,U,Y,1718.0,,0.0,,1718.0,,1160.0,,78.0,,1238.0,,97671.0,,246920.0,,232106.0,,14814.0,,149249.0,,88.0,Incorrectly includes redeterminations,217.0,Incorrectly includes redeterminations,260.0,Incorrectly includes redeterminations,218.0,Incorrectly includes redeterminations,768.0,Incorrectly includes redeterminations,36306.0,Includes calls for other benefit programs,35.0,Call centers offer callbacks; Includes calls for other benefit programs; Wait times for callbacks are included but reported separately from live calls,0.43,Includes calls for other benefit programs +AK,Alaska,202501,Y,P,N,1888.0,,0.0,,1888.0,,1447.0,,50.0,,1497.0,,96982.0,,244438.0,,229677.0,,14761.0,,147456.0,,86.0,Incorrectly includes redeterminations,202.0,Incorrectly includes redeterminations,170.0,Incorrectly includes redeterminations,64.0,Incorrectly includes redeterminations,696.0,Incorrectly includes redeterminations,46656.0,Includes calls for other benefit programs,50.0,Call centers offer callbacks; Includes calls for other benefit programs; Wait times for callbacks are included but reported separately from live calls,0.45,Includes calls for other benefit programs +AK,Alaska,202501,Y,U,Y,1888.0,,0.0,,1888.0,,1447.0,,50.0,,1497.0,,97560.0,,246432.0,,231448.0,,14984.0,,148872.0,,86.0,Incorrectly includes redeterminations,202.0,Incorrectly includes redeterminations,170.0,Incorrectly includes redeterminations,64.0,Incorrectly includes redeterminations,696.0,Incorrectly includes redeterminations,46656.0,Includes calls for other benefit programs,50.0,Call centers offer callbacks; Includes calls for other benefit programs; Wait times for callbacks are included but reported separately from live calls,0.45,Includes calls for other benefit programs +AK,Alaska,202502,Y,P,N,1759.0,,0.0,,1759.0,,1373.0,,80.0,,1453.0,,95669.0,,240405.0,,225782.0,,14623.0,,144736.0,,65.0,Incorrectly includes redeterminations,131.0,Incorrectly includes redeterminations,146.0,Incorrectly includes redeterminations,57.0,Incorrectly includes redeterminations,860.0,Incorrectly includes redeterminations,40949.0,Includes calls for other benefit programs,58.0,Call centers offer callbacks; Includes calls for other benefit programs; Wait times for callbacks are included but reported separately from live calls,0.47,Includes calls for other benefit programs +AK,Alaska,202502,Y,U,Y,1759.0,,0.0,,1759.0,,1373.0,,80.0,,1453.0,,96644.0,,243847.0,,229186.0,,14661.0,,147203.0,,65.0,,131.0,,146.0,,57.0,,860.0,,40949.0,Includes calls for other benefit programs,58.0,Call centers offer callbacks; Includes calls for other benefit programs; Wait times for callbacks are included but reported separately from live calls,0.47,Includes calls for other benefit programs +AK,Alaska,202503,Y,P,N,2158.0,,0.0,,2158.0,,1969.0,,114.0,,2083.0,,93999.0,,235835.0,,221504.0,,14331.0,,141836.0,,87.0,,223.0,,245.0,,146.0,,2161.0,,38729.0,Includes calls for other benefit programs,26.0,Call centers offer callbacks; Includes calls for other benefit programs; Wait times for callbacks are included but reported separately from live calls,0.34,Includes calls for other benefit programs +AK,Alaska,202503,Y,U,Y,2158.0,,0.0,,2158.0,,1969.0,,114.0,,2083.0,,96384.0,,243077.0,,228508.0,,14569.0,,146693.0,,87.0,,223.0,,245.0,,146.0,,2161.0,,38729.0,Includes calls for other benefit programs,26.0,Call centers offer callbacks; Includes calls for other benefit programs; Wait times for callbacks are included but reported separately from live calls,0.34,Includes calls for other benefit programs +AK,Alaska,202504,Y,P,N,2742.0,,0.0,,2742.0,,2101.0,,128.0,,2229.0,,91888.0,,231077.0,,217291.0,,13786.0,,139189.0,,142.0,,566.0,,536.0,,253.0,,1535.0,,36885.0,Includes calls for other benefit programs,34.0,Call centers offer callbacks; Includes calls for other benefit programs; Wait times for callbacks are included but reported separately from live calls,0.36,Includes calls for other benefit programs +AK,Alaska,202504,Y,U,Y,2742.0,,0.0,,2742.0,,2101.0,,128.0,,2229.0,,94885.0,,238271.0,,224131.0,,14140.0,,143386.0,,142.0,,566.0,,536.0,,253.0,,1535.0,,36885.0,,34.0,,0.36, +AK,Alaska,202505,Y,P,N,2551.0,,0.0,,2551.0,,1588.0,,91.0,,1679.0,,88616.0,,223020.0,,209810.0,,13210.0,,134404.0,,763.0,,530.0,,282.0,,66.0,,548.0,,35028.0,Includes calls for other benefit programs,18.0,Call centers offer callbacks; Includes calls for other benefit programs; Wait times for callbacks are included but reported separately from live calls,0.26,Includes calls for other benefit programs +AK,Alaska,202505,Y,U,Y,2551.0,,0.0,,2551.0,,1588.0,,91.0,,1679.0,,86706.0,,225031.0,,211333.0,,13698.0,,138325.0,,763.0,,530.0,,282.0,,66.0,,548.0,,35028.0,Includes calls for other benefit programs,18.0,Call centers offer callbacks; Includes calls for other benefit programs; Wait times for callbacks are included but reported separately from live calls,0.26,Includes calls for other benefit programs +AK,Alaska,202506,Y,P,N,2454.0,,0.0,,2454.0,,1431.0,,107.0,,1538.0,,78216.0,,202268.0,,189661.0,,12607.0,,124052.0,,79.0,,475.0,,335.0,,126.0,,823.0,,35279.0,Includes calls for other benefit programs,12.0,Call centers offer callbacks; Includes calls for other benefit programs; Wait times for callbacks are included but reported separately from live calls,0.2,Includes calls for other benefit programs +AK,Alaska,202506,Y,U,Y,2454.0,,0.0,,2454.0,,1431.0,,107.0,,1538.0,,90017.0,,224980.0,,211659.0,,13321.0,,134963.0,,79.0,,475.0,,335.0,,126.0,,823.0,,35279.0,Includes calls for other benefit programs,12.0,Call centers offer callbacks; Includes calls for other benefit programs; Wait times for callbacks are included but reported separately from live calls,0.2,Includes calls for other benefit programs +AK,Alaska,202507,Y,P,N,2658.0,,0.0,,2658.0,,1655.0,,69.0,,1724.0,,82662.0,,208266.0,,195887.0,,12379.0,,125604.0,,852.0,,812.0,,192.0,,17.0,,293.0,,36010.0,Includes calls for other benefit programs,10.0,Call centers offer callbacks; Includes calls for other benefit programs; Wait times for callbacks are included but reported separately from live calls,0.16,Includes calls for other benefit programs +AK,Alaska,202507,Y,U,Y,2658.0,,0.0,,2658.0,,1655.0,,69.0,,1724.0,,88348.0,,220373.0,,207221.0,,13152.0,,132025.0,,852.0,,812.0,,192.0,,17.0,,293.0,,36010.0,Includes calls for other benefit programs,10.0,Call centers offer callbacks; Includes calls for other benefit programs; Wait times for callbacks are included but reported separately from live calls,0.16,Includes calls for other benefit programs +AK,Alaska,202508,Y,P,N,2652.0,,0.0,,2652.0,,1477.0,,80.0,,1557.0,,81557.0,,205737.0,,193413.0,,12324.0,,124180.0,,124.0,,649.0,,419.0,,104.0,,812.0,,32485.0,Includes calls for other benefit programs,10.0,Call centers offer callbacks; Includes calls for other benefit programs; Wait times for callbacks are included but reported separately from live calls,0.15,Includes calls for other benefit programs +AK,Alaska,202508,Y,U,Y,2652.0,,0.0,,2652.0,,1477.0,,80.0,,1557.0,,87906.0,,218824.0,,205768.0,,13056.0,,130918.0,,124.0,,649.0,,419.0,,104.0,,812.0,,32485.0,Includes calls for other benefit programs,10.0,Call centers offer callbacks; Includes calls for other benefit programs; Wait times for callbacks are included but reported separately from live calls,0.15,Includes calls for other benefit programs +AK,Alaska,202509,Y,P,N,2494.0,,0.0,,2494.0,,1425.0,,75.0,,1500.0,,86376.0,,214400.0,,201512.0,,12888.0,,128024.0,,598.0,,734.0,,465.0,,25.0,,339.0,,35506.0,Includes calls for other benefit programs,15.0,Call centers offer callbacks; Includes calls for other benefit programs; Wait times for callbacks are included but reported separately from live calls,0.23,Includes calls for other benefit programs +AK,Alaska,202509,Y,U,Y,2494.0,,0.0,,2494.0,,1425.0,,75.0,,1500.0,,86718.0,,215641.0,,202632.0,,13009.0,,128923.0,,598.0,,734.0,,465.0,,25.0,,339.0,,35506.0,Includes calls for other benefit programs,15.0,Call centers offer callbacks; Includes calls for other benefit programs; Wait times for callbacks are included but reported separately from live calls,0.23,Includes calls for other benefit programs +AK,Alaska,202510,Y,P,N,2442.0,,0.0,,2442.0,,1659.0,,146.0,,1805.0,,85271.0,,211854.0,,199110.0,,12744.0,,126583.0,,630.0,,642.0,,1029.0,,90.0,,420.0,,37455.0,Includes calls for other benefit programs,19.0,Call centers offer callbacks; Includes calls for other benefit programs; Wait times for callbacks are included but reported separately from live calls,0.19,Includes calls for other benefit programs +AL,Alabama,201309,N,U,Y,,,,,,,,,,,,,,,799176.0,,,,,,,,,,,,,,,,,,,,,,, +AL,Alabama,201706,N,P,N,16449.0,,0.0,,16449.0,,25370.0,,3264.0,,28634.0,,629763.0,,885767.0,,729368.0,,156399.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,201706,N,U,Y,16449.0,,0.0,,16449.0,,25370.0,,3264.0,,28634.0,,629763.0,,885767.0,,729368.0,,156399.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,201707,N,P,N,17118.0,,0.0,,17118.0,,25311.0,,3352.0,,28663.0,,632822.0,,890639.0,,733065.0,,157574.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,201707,N,U,Y,17118.0,,0.0,,17118.0,,25313.0,,3352.0,,28665.0,,632822.0,,890639.0,,733065.0,,157574.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,201708,N,P,N,20055.0,,0.0,,20055.0,,30256.0,,4205.0,,34461.0,,633050.0,,890747.0,,732419.0,,158328.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,201708,N,U,Y,20055.0,,0.0,,20055.0,,30256.0,,4205.0,,34461.0,,633050.0,,890747.0,,732419.0,,158328.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,201709,N,P,N,18308.0,,0.0,,18308.0,,27798.0,,3592.0,,31390.0,,632920.0,,890170.0,,732026.0,,158144.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,201709,N,U,Y,18308.0,,0.0,,18308.0,,27798.0,,3592.0,,31390.0,,632920.0,,890170.0,,732026.0,,158144.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,201710,N,P,N,18913.0,,0.0,,18913.0,,28167.0,,4200.0,,32367.0,,634304.0,,891729.0,,732649.0,,159080.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,201710,N,U,Y,18913.0,,0.0,,18913.0,,28167.0,,4200.0,,32367.0,,634304.0,,891729.0,,732649.0,,159080.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,201711,N,P,N,17690.0,,0.0,,17690.0,,25298.0,,3781.0,,29079.0,,635937.0,,893227.0,,720563.0,,172664.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,201711,N,U,Y,17690.0,,0.0,,17690.0,,25298.0,,3781.0,,29079.0,,635937.0,,893227.0,,720563.0,,172664.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,201712,N,P,N,16429.0,,0.0,,16429.0,,23207.0,,2701.0,,25908.0,,635498.0,,891650.0,,718798.0,,172852.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,201712,N,U,Y,16429.0,,0.0,,16429.0,,23207.0,,2701.0,,25908.0,,635498.0,,891650.0,,718798.0,,172852.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,201801,N,P,N,19650.0,,0.0,,19650.0,,28689.0,,3182.0,,31871.0,,636831.0,,893494.0,,720994.0,,172500.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,201801,N,U,Y,19650.0,,0.0,,19650.0,,28689.0,,3182.0,,31871.0,,636831.0,,893494.0,,720994.0,,172500.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,201802,N,P,N,18090.0,,0.0,,18090.0,,27859.0,,2716.0,,30575.0,,640136.0,,896429.0,,720508.0,,175921.0,,,,26783.0,,5663.0,,2926.0,,346.0,,299.0,,,,,,, +AL,Alabama,201802,N,U,Y,18090.0,,0.0,,18090.0,,27859.0,,2716.0,,30575.0,,640136.0,,896429.0,,720508.0,,175921.0,,,,26783.0,,5663.0,,2926.0,,346.0,,299.0,,,,,,, +AL,Alabama,201803,N,P,N,19632.0,,0.0,,19632.0,,30340.0,,2623.0,,32963.0,,643948.0,,901074.0,,723056.0,,178018.0,,,,28274.0,,5970.0,,3011.0,,373.0,,172.0,,,,,,, +AL,Alabama,201803,N,U,Y,19632.0,,0.0,,19632.0,,30340.0,,2623.0,,32963.0,,643948.0,,901074.0,,723056.0,,178018.0,,,,28274.0,,5970.0,,3011.0,,373.0,,172.0,,,,,,, +AL,Alabama,201804,N,P,N,18348.0,,0.0,,18348.0,,27178.0,,2438.0,,29616.0,,644899.0,,902580.0,,724564.0,,178016.0,,,,23987.0,,4889.0,,2631.0,,260.0,,213.0,,,,,,, +AL,Alabama,201804,N,U,Y,18348.0,,0.0,,18348.0,,27178.0,,2438.0,,29616.0,,644899.0,,902580.0,,724564.0,,178016.0,,,,23987.0,,4889.0,,2631.0,,260.0,,213.0,,,,,,, +AL,Alabama,201805,N,P,N,19326.0,,0.0,,19326.0,,28625.0,,2577.0,,31202.0,,636042.0,,893984.0,,722678.0,,171306.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,201805,N,U,Y,19326.0,,0.0,,19326.0,,28625.0,,2577.0,,31202.0,,636042.0,,893984.0,,722678.0,,171306.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,201806,N,P,N,16859.0,,0.0,,16859.0,,24244.0,,2443.0,,26687.0,,635099.0,,893615.0,,722779.0,,170836.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,201806,N,U,Y,16859.0,,0.0,,16859.0,,24244.0,,2443.0,,26687.0,,635099.0,,893615.0,,722779.0,,170836.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,201807,N,P,N,20490.0,,0.0,,20490.0,,28274.0,,3002.0,,31276.0,,636789.0,,896938.0,,726166.0,,170772.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,201807,N,U,Y,20490.0,,0.0,,20490.0,,28274.0,,3002.0,,31276.0,,636789.0,,896938.0,,726166.0,,170772.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,201808,N,P,N,22186.0,,0.0,,22186.0,,31296.0,,3289.0,,34585.0,,639334.0,,899907.0,,728894.0,,171013.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,201808,N,U,Y,22186.0,,0.0,,22186.0,,31296.0,,3289.0,,34585.0,,639334.0,,899907.0,,728894.0,,171013.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,201809,N,P,N,19871.0,,0.0,,19871.0,,25818.0,,2964.0,,28782.0,,642309.0,,902832.0,,731276.0,,171556.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,201809,N,U,Y,19871.0,,0.0,,19871.0,,25818.0,,2964.0,,28782.0,,642309.0,,902832.0,,731276.0,,171556.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,201810,N,P,N,22130.0,,0.0,,22130.0,,16776.0,,2307.0,,19083.0,,647423.0,,908735.0,,735734.0,,173001.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,201810,N,U,Y,22130.0,,0.0,,22130.0,,16776.0,,2307.0,,19083.0,,647423.0,,908735.0,,735734.0,,173001.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,201811,N,P,N,18671.0,,0.0,,18671.0,,13468.0,,1994.0,,15462.0,,645907.0,,907124.0,,734229.0,,172895.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,201811,N,U,Y,18671.0,,0.0,,18671.0,,13468.0,,1994.0,,15462.0,,645907.0,,907124.0,,734229.0,,172895.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,201812,N,P,N,16919.0,,0.0,,16919.0,,12219.0,,1584.0,,13803.0,,643985.0,,904487.0,,731818.0,,172669.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,201812,N,U,Y,16919.0,,0.0,,16919.0,,12219.0,,1584.0,,13803.0,,643985.0,,904487.0,,731818.0,,172669.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,201901,N,P,N,20505.0,,0.0,,20505.0,,14957.0,,2510.0,,17467.0,,646832.0,,908319.0,,735098.0,,173221.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,201901,N,U,Y,20505.0,,0.0,,20505.0,,14957.0,,2510.0,,17467.0,,646832.0,,908319.0,,735098.0,,173221.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,201902,N,P,N,18173.0,,0.0,,18173.0,,14284.0,,2069.0,,16353.0,,649363.0,,911123.0,,737234.0,,173889.0,,,,26952.0,,2655.0,,2942.0,,321.0,,328.0,,,,,,, +AL,Alabama,201902,N,U,Y,18173.0,,0.0,,18173.0,,14284.0,,2069.0,,16353.0,,649363.0,,911123.0,,737234.0,,173889.0,,,,26952.0,,2655.0,,2942.0,,321.0,,328.0,,,,,,, +AL,Alabama,201903,N,P,N,18688.0,,0.0,,18688.0,,15347.0,,1967.0,,17314.0,,648513.0,,910123.0,,736744.0,,173379.0,,,,24346.0,,2100.0,,1567.0,,170.0,,114.0,,,,,,, +AL,Alabama,201903,N,U,Y,18688.0,,0.0,,18688.0,,15347.0,,1967.0,,17314.0,,648513.0,,910123.0,,736744.0,,173379.0,,,,24346.0,,2100.0,,1567.0,,170.0,,114.0,,,,,,, +AL,Alabama,201904,N,P,N,15057.0,,0.0,,15057.0,,14461.0,,1768.0,,16229.0,,644765.0,,907273.0,,734653.0,,172620.0,,,,30106.0,,3504.0,,2095.0,,46.0,,37.0,,,,,,, +AL,Alabama,201904,N,U,Y,15057.0,,0.0,,15057.0,,14461.0,,1768.0,,16229.0,,644765.0,,907273.0,,734653.0,,172620.0,,,,30106.0,,3504.0,,2095.0,,46.0,,37.0,,,,,,, +AL,Alabama,201905,N,P,N,12966.0,,0.0,,12966.0,,13388.0,,1542.0,,14930.0,,644147.0,,906716.0,,736276.0,,170440.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,201905,N,U,Y,12966.0,,0.0,,12966.0,,13388.0,,1542.0,,14930.0,,644147.0,,906716.0,,736276.0,,170440.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,201906,N,P,N,12752.0,,0.0,,12752.0,,13684.0,,1679.0,,15363.0,,647703.0,,909902.0,,737176.0,,172726.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,201906,N,U,Y,12752.0,,0.0,,12752.0,,13684.0,,1679.0,,15363.0,,647703.0,,909902.0,,737176.0,,172726.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,201907,N,P,N,13994.0,,0.0,,13994.0,,15219.0,,1966.0,,17185.0,,651212.0,,913555.0,,740190.0,,173365.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,201907,N,U,Y,13994.0,,0.0,,13994.0,,15219.0,,1966.0,,17185.0,,651212.0,,913555.0,,740190.0,,173365.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,201908,N,P,N,14285.0,,0.0,,14285.0,,15599.0,,2133.0,,17732.0,,653861.0,,916300.0,,742911.0,,173389.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,201908,N,U,Y,14285.0,,0.0,,14285.0,,15599.0,,2133.0,,17732.0,,653861.0,,916300.0,,742911.0,,173389.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,201909,N,P,N,13058.0,,0.0,,13058.0,,13775.0,,1861.0,,15636.0,,655164.0,,917216.0,,744469.0,,172747.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,201909,N,U,Y,13058.0,,0.0,,13058.0,,13775.0,,1861.0,,15636.0,,655164.0,,917216.0,,744469.0,,172747.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,201910,N,P,N,13367.0,,0.0,,13367.0,,13653.0,,1607.0,,15260.0,,657121.0,,918906.0,,746199.0,,172707.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,201910,N,U,Y,13367.0,,0.0,,13367.0,,13653.0,,1607.0,,15260.0,,657121.0,,918906.0,,746199.0,,172707.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,201911,N,P,N,11536.0,,0.0,,11536.0,,11792.0,,1610.0,,13402.0,,658526.0,,919500.0,,746311.0,,173189.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,201911,N,U,Y,11536.0,,0.0,,11536.0,,11792.0,,1610.0,,13402.0,,658526.0,,919500.0,,746311.0,,173189.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,201912,N,P,N,12103.0,,0.0,,12103.0,,12072.0,,1289.0,,13361.0,,658585.0,,919245.0,,745882.0,,173363.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,201912,N,U,Y,12103.0,,0.0,,12103.0,,12072.0,,1289.0,,13361.0,,658585.0,,919245.0,,745882.0,,173363.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,202001,N,P,N,14342.0,,0.0,,14342.0,,14602.0,,2006.0,,16608.0,,659696.0,,920713.0,,749028.0,,171685.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,202001,N,U,Y,14342.0,,0.0,,14342.0,,14602.0,,2006.0,,16608.0,,659696.0,,920713.0,,749028.0,,171685.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,202002,N,P,N,12237.0,,0.0,,12237.0,,13411.0,,1609.0,,15020.0,,660859.0,,921462.0,,750048.0,,171414.0,,,,18119.0,,2400.0,,2643.0,,645.0,,323.0,,,,,,, +AL,Alabama,202002,N,U,Y,12237.0,,0.0,,12237.0,,13411.0,,1609.0,,15020.0,,660859.0,,921462.0,,750048.0,,171414.0,,,,18119.0,,2400.0,,2643.0,,645.0,,323.0,,,,,,, +AL,Alabama,202003,N,P,N,12456.0,,0.0,,12456.0,,13302.0,,1530.0,,14832.0,,660575.0,,921190.0,,750161.0,,171029.0,,,,18421.0,,2304.0,,2736.0,,411.0,,204.0,,,,,,, +AL,Alabama,202003,N,U,Y,12456.0,,0.0,,12456.0,,13302.0,,1530.0,,14832.0,,660575.0,,921190.0,,750161.0,,171029.0,,,,18421.0,,2304.0,,2736.0,,411.0,,204.0,,,,,,, +AL,Alabama,202004,N,P,N,8280.0,,0.0,,8280.0,,9387.0,,940.0,,10327.0,,666508.0,,931863.0,,758633.0,,173230.0,,,,12930.0,,1659.0,,1868.0,,280.0,,182.0,,,,,,, +AL,Alabama,202004,N,U,Y,8280.0,,0.0,,8280.0,,9387.0,,940.0,,10327.0,,666508.0,,931863.0,,758633.0,,173230.0,,,,12930.0,,1659.0,,1868.0,,280.0,,182.0,,,,,,, +AL,Alabama,202005,N,P,N,8167.0,,0.0,,8167.0,,9481.0,,1134.0,,10615.0,,671742.0,,941395.0,,766512.0,,174883.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,202005,N,U,Y,8167.0,,0.0,,8167.0,,9481.0,,1134.0,,10615.0,,671742.0,,941395.0,,766512.0,,174883.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,202006,N,P,N,9334.0,,0.0,,9334.0,,10274.0,,1372.0,,11646.0,,675900.0,,949662.0,,774350.0,,175312.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,202006,N,U,Y,9334.0,,0.0,,9334.0,,10274.0,,1372.0,,11646.0,,675900.0,,949662.0,,774350.0,,175312.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,202007,N,P,N,8349.0,,0.0,,8349.0,,9250.0,,1210.0,,10460.0,,679136.0,,957129.0,,782619.0,,174510.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,202007,N,U,Y,8349.0,,0.0,,8349.0,,9250.0,,1210.0,,10460.0,,679136.0,,957129.0,,782619.0,,174510.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,202008,N,P,N,8675.0,,0.0,,8675.0,,9875.0,,1372.0,,11247.0,,682839.0,,964613.0,,790708.0,,173905.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,202008,N,U,Y,8675.0,,0.0,,8675.0,,9875.0,,1372.0,,11247.0,,682839.0,,964613.0,,790708.0,,173905.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,202009,N,P,N,9291.0,,0.0,,9291.0,,10266.0,,1591.0,,11857.0,,687971.0,,973431.0,,798847.0,,174584.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,202009,N,U,Y,9291.0,,0.0,,9291.0,,10266.0,,1591.0,,11857.0,,687971.0,,973431.0,,798847.0,,174584.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,202010,N,P,N,8459.0,,0.0,,8459.0,,10667.0,,1493.0,,12160.0,,692395.0,,982013.0,,806987.0,,175026.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,202010,N,U,Y,8459.0,,0.0,,8459.0,,10667.0,,1493.0,,12160.0,,692395.0,,982013.0,,806987.0,,175026.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,202011,N,P,N,7250.0,,0.0,,7250.0,,8763.0,,1207.0,,9970.0,,696166.0,,990301.0,,814952.0,,175349.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,202011,N,U,Y,7250.0,,0.0,,7250.0,,8763.0,,1207.0,,9970.0,,696166.0,,990301.0,,814952.0,,175349.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,202012,N,P,N,7202.0,,0.0,,7202.0,,9131.0,,1123.0,,10254.0,,699862.0,,997966.0,,822240.0,,175726.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,202012,N,U,Y,7202.0,,0.0,,7202.0,,9131.0,,1123.0,,10254.0,,699862.0,,997966.0,,822240.0,,175726.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,202101,N,P,N,7660.0,,0.0,,7660.0,,9424.0,,1599.0,,11023.0,,703633.0,,1005375.0,,828731.0,,176644.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,202101,N,U,Y,7660.0,,0.0,,7660.0,,9424.0,,1599.0,,11023.0,,703633.0,,1005375.0,,828731.0,,176644.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,202102,N,P,N,6914.0,,0.0,,6914.0,,8854.0,,1241.0,,10095.0,,707174.0,,1011982.0,,834598.0,,177384.0,,,,12873.0,,2047.0,,2196.0,,241.0,,82.0,,,,,,, +AL,Alabama,202102,N,U,Y,6914.0,,0.0,,6914.0,,8854.0,,1241.0,,10095.0,,707174.0,,1011982.0,,834598.0,,177384.0,,,,12873.0,,2047.0,,2196.0,,241.0,,82.0,,,,,,, +AL,Alabama,202103,N,P,N,7710.0,,0.0,,7710.0,,9336.0,,1407.0,,10743.0,,710710.0,,1019279.0,,840769.0,,178510.0,,,,14243.0,,2495.0,,2016.0,,324.0,,382.0,,,,,,, +AL,Alabama,202103,N,U,Y,7710.0,,0.0,,7710.0,,9336.0,,1407.0,,10743.0,,710710.0,,1019279.0,,840769.0,,178510.0,,,,14243.0,,2495.0,,2016.0,,324.0,,382.0,,,,,,, +AL,Alabama,202104,N,P,N,7197.0,,0.0,,7197.0,,8740.0,,1247.0,,9987.0,,714890.0,,1027465.0,,847477.0,,179988.0,,,,13628.0,,1754.0,,1623.0,,241.0,,149.0,,,,,,, +AL,Alabama,202104,N,U,Y,7197.0,,0.0,,7197.0,,8740.0,,1247.0,,9987.0,,714890.0,,1027465.0,,847477.0,,179988.0,,,,13628.0,,1754.0,,1623.0,,241.0,,149.0,,,,,,, +AL,Alabama,202105,N,P,N,6826.0,,0.0,,6826.0,,9642.0,,2958.0,,12600.0,,718589.0,,1034461.0,,852968.0,,181493.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,202105,N,U,Y,6826.0,,0.0,,6826.0,,9642.0,,2958.0,,12600.0,,718589.0,,1034461.0,,852968.0,,181493.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,202106,N,P,N,7456.0,,0.0,,7456.0,,10277.0,,3280.0,,13557.0,,722551.0,,1043035.0,,860236.0,,182799.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,202106,N,U,Y,7456.0,,0.0,,7456.0,,10277.0,,3280.0,,13557.0,,722551.0,,1043035.0,,860236.0,,182799.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,202107,N,P,N,7683.0,,0.0,,7683.0,,11119.0,,3263.0,,14382.0,,726432.0,,1050694.0,,866627.0,,184067.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,202107,N,U,Y,7683.0,,0.0,,7683.0,,11119.0,,3263.0,,14382.0,,726432.0,,1050694.0,,866627.0,,184067.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,202108,N,P,N,8422.0,,0.0,,8422.0,,11731.0,,3518.0,,15249.0,,730658.0,,1058674.0,,873449.0,,185225.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,202108,N,U,Y,8422.0,,0.0,,8422.0,,11731.0,,3518.0,,15249.0,,730658.0,,1058674.0,,873449.0,,185225.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,202109,N,P,N,7233.0,,0.0,,7233.0,,10109.0,,2920.0,,13029.0,,734890.0,,1066227.0,,879630.0,,186597.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,202109,N,U,Y,7233.0,,0.0,,7233.0,,10109.0,,2920.0,,13029.0,,734890.0,,1066227.0,,879630.0,,186597.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,202110,N,P,N,7263.0,,0.0,,7263.0,,10581.0,,2975.0,,13556.0,,737998.0,,1072381.0,,885400.0,,186981.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,202110,N,U,Y,7263.0,,0.0,,7263.0,,10581.0,,2975.0,,13556.0,,737998.0,,1072381.0,,885400.0,,186981.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,202111,N,P,N,6940.0,,0.0,,6940.0,,9038.0,,2816.0,,11854.0,,741380.0,,1079278.0,,891290.0,,187988.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,202111,N,U,Y,6940.0,,0.0,,6940.0,,9038.0,,2816.0,,11854.0,,741380.0,,1079278.0,,891290.0,,187988.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,202112,N,P,N,6659.0,,0.0,,6659.0,,9251.0,,2644.0,,11895.0,,744769.0,,1086345.0,,897571.0,,188774.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,202112,N,U,Y,6659.0,,0.0,,6659.0,,9251.0,,2644.0,,11895.0,,744769.0,,1086345.0,,897571.0,,188774.0,,,,,,,,,,,,,,,,,,, +AL,Alabama,202201,N,P,N,7331.0,,0.0,,7331.0,,9514.0,,2776.0,,12290.0,,748341.0,,1093761.0,,903790.0,,189971.0,,,,15312.0,,1226.0,,1493.0,,163.0,,192.0,,,,,,, +AL,Alabama,202201,N,U,Y,7331.0,,0.0,,7331.0,,9514.0,,2776.0,,12290.0,,748341.0,,1093761.0,,903790.0,,189971.0,,,,15312.0,,1226.0,,1493.0,,163.0,,192.0,,,,,,, +AL,Alabama,202202,N,P,N,6650.0,,0.0,,6650.0,,9032.0,,2585.0,,11617.0,,751117.0,,1099538.0,,908709.0,,190829.0,,,,13075.0,,998.0,,1420.0,,138.0,,176.0,,,,,,, +AL,Alabama,202202,N,U,Y,6650.0,,0.0,,6650.0,,9032.0,,2585.0,,11617.0,,751117.0,,1099538.0,,908709.0,,190829.0,,,,13075.0,,998.0,,1420.0,,138.0,,176.0,,,,,,, +AL,Alabama,202203,N,P,N,7387.0,,0.0,,7387.0,,10174.0,,2905.0,,13079.0,,753958.0,,1105560.0,,913895.0,,191665.0,,,,14644.0,,1204.0,,1572.0,,155.0,,166.0,,,,,,, +AL,Alabama,202203,N,U,Y,7387.0,,0.0,,7387.0,,10174.0,,2905.0,,13079.0,,753958.0,,1105560.0,,913895.0,,191665.0,,,,14644.0,,1204.0,,1572.0,,155.0,,166.0,,,,,,, +AL,Alabama,202204,N,P,N,6588.0,,0.0,,6588.0,,9038.0,,3110.0,,12148.0,,756371.0,,1111232.0,,919231.0,,192001.0,,,,12739.0,,1057.0,,1539.0,,181.0,,182.0,,,,,,, +AL,Alabama,202204,N,U,Y,6588.0,,0.0,,6588.0,,9038.0,,3110.0,,12148.0,,756371.0,,1111232.0,,919231.0,,192001.0,,,,12739.0,,1057.0,,1539.0,,181.0,,182.0,,,,,,, +AL,Alabama,202205,N,P,N,6906.0,,0.0,,6906.0,,9231.0,,2978.0,,12209.0,,759181.0,,1117657.0,,924905.0,,192752.0,,,,14146.0,,1212.0,,1486.0,,182.0,,145.0,,,,,,, +AL,Alabama,202205,N,U,Y,6906.0,,0.0,,6906.0,,9231.0,,2978.0,,12209.0,,759181.0,,1117657.0,,924905.0,,192752.0,,,,14146.0,,1212.0,,1486.0,,182.0,,145.0,,,,,,, +AL,Alabama,202206,N,P,N,7031.0,,0.0,,7031.0,,9167.0,,3110.0,,12277.0,,762134.0,,1124686.0,,931097.0,,193589.0,,,,13598.0,,1142.0,,1480.0,,128.0,,138.0,,,,,,, +AL,Alabama,202206,N,U,Y,7031.0,,0.0,,7031.0,,9167.0,,3110.0,,12277.0,,762134.0,,1124686.0,,931097.0,,193589.0,,,,13598.0,,1142.0,,1480.0,,128.0,,138.0,,,,,,, +AL,Alabama,202207,N,P,N,7174.0,,0.0,,7174.0,,9740.0,,3017.0,,12757.0,,765240.0,,1131447.0,,937078.0,,194369.0,,,,14305.0,,1256.0,,1547.0,,210.0,,167.0,,,,,,, +AL,Alabama,202207,N,U,Y,7174.0,,0.0,,7174.0,,9740.0,,3017.0,,12757.0,,765240.0,,1131447.0,,937078.0,,194369.0,,,,14305.0,,1256.0,,1547.0,,210.0,,167.0,,,,,,, +AL,Alabama,202208,N,P,N,8413.0,,0.0,,8413.0,,10794.0,,3255.0,,14049.0,,768824.0,,1138432.0,,943003.0,,195429.0,,,,16197.0,,2146.0,,2006.0,,258.0,,162.0,,,,,,, +AL,Alabama,202208,N,U,Y,8413.0,,0.0,,8413.0,,10794.0,,3255.0,,14049.0,,768824.0,,1138432.0,,943003.0,,195429.0,,,,16197.0,,2146.0,,2006.0,,258.0,,162.0,,,,,,, +AL,Alabama,202209,N,P,N,7053.0,,0.0,,7053.0,,9188.0,,2737.0,,11925.0,,772120.0,,1145077.0,,948813.0,,196264.0,,,,13580.0,,1955.0,,1782.0,,277.0,,143.0,,,,,,, +AL,Alabama,202209,N,U,Y,7053.0,,0.0,,7053.0,,9188.0,,2737.0,,11925.0,,772120.0,,1145077.0,,948813.0,,196264.0,,,,13580.0,,1955.0,,1782.0,,277.0,,143.0,,,,,,, +AL,Alabama,202210,N,P,N,6981.0,,0.0,,6981.0,,8635.0,,2858.0,,11493.0,,774641.0,,1150791.0,,954060.0,,196731.0,,,,13808.0,,1406.0,,1566.0,,381.0,,161.0,,,,,,, +AL,Alabama,202210,N,U,Y,6981.0,,0.0,,6981.0,,8635.0,,2858.0,,11493.0,,774641.0,,1150791.0,,954060.0,,196731.0,,,,13808.0,,1406.0,,1566.0,,381.0,,161.0,,,,,,, +AL,Alabama,202211,N,P,N,6863.0,,0.0,,6863.0,,8343.0,,2760.0,,11103.0,,777629.0,,1157386.0,,959550.0,,197836.0,,,,13682.0,,1443.0,,1684.0,,277.0,,157.0,,,,,,, +AL,Alabama,202211,N,U,Y,6863.0,,0.0,,6863.0,,8343.0,,2760.0,,11103.0,,777629.0,,1157386.0,,959550.0,,197836.0,,,,13682.0,,1443.0,,1684.0,,277.0,,157.0,,,,,,, +AL,Alabama,202212,N,P,N,6362.0,,0.0,,6362.0,,8541.0,,2594.0,,11135.0,,780261.0,,1163783.0,,965385.0,,198398.0,,,,11858.0,,1471.0,,1564.0,,328.0,,157.0,,,,,,, +AL,Alabama,202212,N,U,Y,6362.0,,0.0,,6362.0,,8541.0,,2594.0,,11135.0,,780261.0,,1163783.0,,965385.0,,198398.0,,,,11858.0,,1471.0,,1564.0,,328.0,,157.0,,,,,,, +AL,Alabama,202301,N,P,N,7463.0,,0.0,,7463.0,,9083.0,,2959.0,,12042.0,,783315.0,,1170867.0,,971368.0,,199499.0,,,,14746.0,,1875.0,,1781.0,,328.0,,501.0,,,,,,, +AL,Alabama,202301,N,U,Y,7463.0,,0.0,,7463.0,,9083.0,,2959.0,,12042.0,,783315.0,,1170867.0,,971368.0,,199499.0,,,,14746.0,,1875.0,,1781.0,,328.0,,501.0,,,,,,, +AL,Alabama,202302,N,P,N,6814.0,,0.0,,6814.0,,8578.0,,2582.0,,11160.0,,797981.0,,1189507.0,,985219.0,,204288.0,,,,13253.0,,1429.0,,1794.0,,270.0,,189.0,,,,,,, +AL,Alabama,202302,N,U,Y,6814.0,,0.0,,6814.0,,8578.0,,2582.0,,11160.0,,797981.0,,1189507.0,,985219.0,,204288.0,,,,13253.0,,1429.0,,1794.0,,270.0,,189.0,,,,,,, +AL,Alabama,202303,N,P,N,8100.0,,0.0,,8100.0,,10263.0,,3175.0,,13438.0,,801731.0,,1197004.0,,991468.0,,205536.0,,,,15709.0,,2091.0,,1820.0,,252.0,,118.0,,60568.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,1.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.058,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AL,Alabama,202303,N,U,Y,8100.0,,0.0,,8100.0,,10263.0,,3175.0,,13438.0,,801731.0,,1197004.0,,991468.0,,205536.0,,,,15709.0,,2091.0,,1820.0,,252.0,,118.0,,60568.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,1.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.058,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AL,Alabama,202304,N,P,N,6928.0,,0.0,,6928.0,,9109.0,,2868.0,,11977.0,,803333.0,,1201648.0,,995789.0,,205859.0,,,,13387.0,,1623.0,,1595.0,,300.0,,110.0,,47158.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.028,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AL,Alabama,202304,N,U,Y,6928.0,,0.0,,6928.0,,9109.0,,2868.0,,11977.0,,803333.0,,1201648.0,,995789.0,,205859.0,,,,13387.0,,1623.0,,1595.0,,300.0,,110.0,,47158.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.028,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AL,Alabama,202305,N,P,N,7406.0,,0.0,,7406.0,,9392.0,,2894.0,,12286.0,,797608.0,,1198884.0,,999970.0,,198914.0,,,,14762.0,,1556.0,,1601.0,,241.0,,158.0,,51441.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,1.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.039,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AL,Alabama,202305,N,U,Y,7406.0,,0.0,,7406.0,,9392.0,,2894.0,,12286.0,,797608.0,,1198884.0,,999970.0,,198914.0,,,,14762.0,,1556.0,,1601.0,,241.0,,158.0,,51441.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,1.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.039,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AL,Alabama,202306,N,P,N,7631.0,,0.0,,7631.0,,9090.0,,3638.0,,12728.0,,800240.0,,1204334.0,,1004521.0,,199813.0,,,,15328.0,,1354.0,,1449.0,,293.0,,199.0,,49226.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,1.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.052,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AL,Alabama,202306,N,U,Y,7631.0,,0.0,,7631.0,,9090.0,,3638.0,,12728.0,,800240.0,,1204334.0,,1004521.0,,199813.0,,,,15328.0,,1354.0,,1449.0,,293.0,,199.0,,49226.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,1.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.052,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AL,Alabama,202307,N,P,N,8563.0,,0.0,,8563.0,,9859.0,,4377.0,,14236.0,,787444.0,,1184172.0,,987621.0,,196551.0,,,,17716.0,,1521.0,,1714.0,,265.0,,207.0,,54615.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,4.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.116,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AL,Alabama,202307,N,U,Y,8563.0,,0.0,,8563.0,,9859.0,,4377.0,,14236.0,,787444.0,,1184172.0,,987621.0,,196551.0,,,,17716.0,,1521.0,,1714.0,,265.0,,207.0,,54615.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,4.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.116,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AL,Alabama,202308,N,P,N,10422.0,,0.0,,10422.0,,11578.0,,6425.0,,18003.0,,774176.0,,1162135.0,,968465.0,,193670.0,,,,22167.0,,2065.0,,2329.0,,293.0,,134.0,,67120.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,3.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.132,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AL,Alabama,202308,N,U,Y,10421.0,,0.0,,10421.0,,11578.0,,6425.0,,18003.0,,774176.0,,1162135.0,,968465.0,,193670.0,,,,22167.0,,2065.0,,2329.0,,293.0,,134.0,,67120.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,3.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.132,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AL,Alabama,202309,N,P,N,9221.0,,0.0,,9221.0,,10152.0,,5601.0,,15753.0,,762539.0,,1140768.0,,949244.0,,191524.0,,,,19232.0,,1577.0,,2208.0,,467.0,,161.0,,58903.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,2.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.112,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AL,Alabama,202309,N,U,Y,9221.0,,0.0,,9221.0,,10152.0,,5601.0,,15753.0,,762539.0,,1140768.0,,949244.0,,191524.0,,,,19232.0,,1577.0,,2208.0,,467.0,,161.0,,58903.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,2.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.112,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AL,Alabama,202310,N,P,N,10213.0,,0.0,,10213.0,,10593.0,,5993.0,,16586.0,,752632.0,,1123210.0,,933428.0,,189782.0,,,,20814.0,,2122.0,,2763.0,,531.0,,153.0,,63457.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,3.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.109,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AL,Alabama,202310,N,U,Y,10213.0,,0.0,,10213.0,,10593.0,,5993.0,,16586.0,,752632.0,,1123210.0,,933428.0,,189782.0,,,,20814.0,,2122.0,,2763.0,,531.0,,153.0,,63457.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,3.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.109,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AL,Alabama,202311,N,P,N,9601.0,,0.0,,9601.0,,10299.0,,5741.0,,16040.0,,743829.0,,1105197.0,,917225.0,,187972.0,,,,20326.0,,1513.0,,2587.0,,446.0,,280.0,,62158.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,2.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.137,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AL,Alabama,202311,N,U,Y,9601.0,,0.0,,9601.0,,10299.0,,5741.0,,16040.0,,743829.0,,1105197.0,,917225.0,,187972.0,,,,20326.0,,1513.0,,2587.0,,446.0,,280.0,,62158.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,2.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.137,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AL,Alabama,202312,N,P,N,8954.0,,0.0,,8954.0,,10148.0,,5637.0,,15785.0,,735038.0,,1087049.0,,900709.0,,186340.0,,,,18382.0,,1524.0,,2144.0,,447.0,,271.0,,51361.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,2.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.063,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AL,Alabama,202312,N,U,Y,8954.0,,0.0,,8954.0,,10148.0,,5637.0,,15785.0,,735038.0,,1087049.0,,900709.0,,186340.0,,,,18382.0,,1524.0,,2144.0,,447.0,,271.0,,51361.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,2.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.063,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AL,Alabama,202401,N,P,N,10783.0,,0.0,,10783.0,,11325.0,,6769.0,,18094.0,,726447.0,,1070043.0,,884754.0,,185289.0,,,,22875.0,,1677.0,,2710.0,,492.0,,508.0,,65593.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,2.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.103,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AL,Alabama,202401,N,U,Y,10783.0,,0.0,,10783.0,,11325.0,,6769.0,,18094.0,,726447.0,,1070043.0,,884754.0,,185289.0,,,,22875.0,,1677.0,,2710.0,,492.0,,508.0,,65593.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,2.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.103,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AL,Alabama,202402,N,P,N,10577.0,,0.0,,10577.0,,11734.0,,6483.0,,18217.0,,719846.0,,1056159.0,,871580.0,,184579.0,,,,21865.0,,1852.0,,2587.0,,482.0,,188.0,,57741.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,2.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.089,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AL,Alabama,202402,N,U,Y,10577.0,,0.0,,10577.0,,11734.0,,6483.0,,18217.0,,719846.0,,1056159.0,,871580.0,,184579.0,,,,21865.0,,1852.0,,2587.0,,482.0,,188.0,,57741.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,2.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.089,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AL,Alabama,202403,N,P,N,10666.0,,0.0,,10666.0,,12146.0,,7041.0,,19187.0,,712452.0,,1040632.0,,856809.0,,183823.0,,,,22690.0,,1879.0,,2752.0,,417.0,,214.0,,54690.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,1.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.048,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AL,Alabama,202403,N,U,Y,10666.0,,0.0,,10666.0,,12146.0,,7041.0,,19187.0,,712452.0,,1040632.0,,856809.0,,183823.0,,,,22690.0,,1879.0,,2752.0,,417.0,,214.0,,54690.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,1.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.048,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AL,Alabama,202404,N,P,N,10909.0,,0.0,,10909.0,,11981.0,,6865.0,,18846.0,,698780.0,,1015099.0,,832740.0,,182359.0,,,,22847.0,,1971.0,,2830.0,,482.0,,307.0,,58114.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,1.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.049,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AL,Alabama,202404,N,U,Y,10909.0,,0.0,,10909.0,,11981.0,,6865.0,,18846.0,,698780.0,,1015099.0,,832740.0,,182359.0,,,,22847.0,,1971.0,,2830.0,,482.0,,307.0,,58114.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,1.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.049,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AL,Alabama,202405,N,P,N,11682.0,,0.0,,11682.0,,13011.0,,6862.0,,19873.0,,685273.0,,988783.0,,809244.0,,179539.0,,,,23940.0,,1756.0,,2273.0,,574.0,,364.0,,53295.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,1.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.042,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AL,Alabama,202405,N,U,Y,11682.0,,0.0,,11682.0,,13011.0,,6862.0,,19873.0,,689917.0,,996574.0,,815198.0,,181376.0,,,,23940.0,,1756.0,,2273.0,,574.0,,364.0,,53295.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,1.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.042,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AL,Alabama,202406,N,P,N,11121.0,,0.0,,11121.0,,12234.0,,6577.0,,18811.0,,673511.0,,965423.0,,787611.0,,177812.0,,,,23089.0,,1693.0,,1596.0,,986.0,,313.0,,49492.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,1.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.046,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AL,Alabama,202406,N,U,Y,11121.0,,0.0,,11121.0,,12234.0,,6577.0,,18811.0,,679108.0,,974585.0,,794917.0,,179668.0,,,,23089.0,,1693.0,,1596.0,,986.0,,313.0,,49492.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,1.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.046,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AL,Alabama,202407,N,P,N,10989.0,,0.0,,10989.0,,12114.0,,6201.0,,18315.0,,675267.0,,966928.0,,787325.0,,179603.0,,291661.0,,23107.0,,2307.0,,2212.0,,834.0,,299.0,,56724.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,1.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.058,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AL,Alabama,202407,N,U,Y,10989.0,,0.0,,10989.0,,12114.0,,6201.0,,18315.0,,680847.0,,975887.0,,794429.0,,181458.0,,295040.0,,23107.0,,2307.0,,2212.0,,834.0,,299.0,,56724.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,1.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.058,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AL,Alabama,202408,N,P,N,12007.0,,0.0,,12007.0,,13788.0,,5979.0,,19767.0,,675137.0,,951159.0,,770813.0,,180346.0,,276022.0,,22989.0,,2464.0,,2151.0,,1003.0,,353.0,,60986.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,2.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.073,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AL,Alabama,202408,N,U,Y,12007.0,,0.0,,12007.0,,13788.0,,5979.0,,19767.0,,681916.0,,962386.0,,780061.0,,182325.0,,280470.0,,22989.0,,2464.0,,2151.0,,1003.0,,353.0,,60986.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,2.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.073,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AL,Alabama,202409,N,P,N,13271.0,,0.0,,13271.0,,11763.0,,4775.0,,16538.0,,676631.0,,953367.0,,772769.0,,180598.0,,276736.0,,20152.0,,1967.0,,2289.0,,1231.0,,355.0,,53876.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,2.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.082,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AL,Alabama,202409,N,U,Y,13271.0,,0.0,,13271.0,,11763.0,,4775.0,,16538.0,,681811.0,,962028.0,,779805.0,,182223.0,,280217.0,,20152.0,,1967.0,,2289.0,,1231.0,,355.0,,53876.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,2.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.082,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AL,Alabama,202410,N,P,N,13802.0,,0.0,,13802.0,,12523.0,,5433.0,,17956.0,,676170.0,,952073.0,,771020.0,,181053.0,,275903.0,,19935.0,,1891.0,,2359.0,,1254.0,,629.0,,60538.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,3.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.13,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AL,Alabama,202410,N,U,Y,13802.0,,0.0,,13802.0,,12523.0,,5433.0,,17956.0,,682364.0,,962449.0,,779266.0,,183183.0,,280085.0,,19935.0,,1891.0,,2359.0,,1254.0,,629.0,,60538.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,3.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.13,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AL,Alabama,202411,N,P,N,12238.0,,0.0,,12238.0,,12439.0,,5046.0,,17485.0,,676903.0,,953706.0,,771880.0,,181826.0,,276803.0,,17804.0,,1610.0,,1895.0,,1018.0,,607.0,,49358.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,3.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.135,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AL,Alabama,202411,N,U,Y,12238.0,,0.0,,12238.0,,12439.0,,5046.0,,17485.0,,680790.0,,960142.0,,776859.0,,183283.0,,279352.0,,17804.0,,1610.0,,1895.0,,1018.0,,607.0,,49358.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,3.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.135,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AL,Alabama,202412,N,P,N,12115.0,,0.0,,12115.0,,9701.0,,4852.0,,14553.0,,675487.0,,948093.0,,766009.0,,182084.0,,272606.0,,17495.0,,1956.0,,1865.0,,1061.0,,675.0,,51060.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,3.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.128,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AL,Alabama,202412,N,U,Y,12115.0,,0.0,,12115.0,,9701.0,,4852.0,,14553.0,,680219.0,,956343.0,,772748.0,,183595.0,,276124.0,,17495.0,,1956.0,,1865.0,,1061.0,,675.0,,51060.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,3.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.128,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AL,Alabama,202501,N,P,N,15654.0,,0.0,,15654.0,,12387.0,,6517.0,,18904.0,,674158.0,,945069.0,,762844.0,,182225.0,,270911.0,,22574.0,,2044.0,,2080.0,,1096.0,,637.0,,61864.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,3.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.157,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AL,Alabama,202501,N,U,Y,15654.0,,0.0,,15654.0,,12387.0,,6517.0,,18904.0,,680890.0,,956651.0,,771806.0,,184845.0,,275761.0,,22574.0,,2044.0,,2080.0,,1096.0,,637.0,,61864.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,3.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.157,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AL,Alabama,202502,N,P,N,13569.0,,0.0,,13569.0,,11217.0,,5294.0,,16511.0,,675396.0,,946644.0,,762737.0,,183907.0,,271248.0,,19472.0,,2015.0,,1950.0,,795.0,,576.0,,50799.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,2.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.105,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AL,Alabama,202502,N,U,Y,13569.0,,0.0,,13569.0,,11217.0,,5294.0,,16511.0,,680622.0,,955498.0,,769769.0,,185729.0,,274876.0,,19472.0,,2015.0,,1950.0,,795.0,,576.0,,50799.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,2.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.105,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AL,Alabama,202503,N,P,N,13467.0,,0.0,,13467.0,,12130.0,,5399.0,,17529.0,,674180.0,,944327.0,,760145.0,,184182.0,,270147.0,,20203.0,,2368.0,,2129.0,,1086.0,,618.0,,47907.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,2.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.08,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AL,Alabama,202503,N,U,Y,13467.0,,0.0,,13467.0,,12130.0,,5399.0,,17529.0,,679521.0,,953505.0,,767428.0,,186077.0,,273984.0,,20203.0,,2368.0,,2129.0,,1086.0,,618.0,,47907.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,2.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.08,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AL,Alabama,202504,N,P,N,13359.0,,0.0,,13359.0,,12380.0,,5315.0,,17695.0,,679470.0,,953178.0,,768446.0,,184732.0,,273708.0,,19621.0,,2826.0,,2178.0,,878.0,,504.0,,57830.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,2.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.103,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AL,Alabama,202504,N,U,Y,13359.0,,0.0,,13359.0,,12380.0,,5315.0,,17695.0,,684013.0,,961550.0,,775147.0,,186403.0,,277537.0,,19621.0,,2826.0,,2178.0,,878.0,,504.0,,57830.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,2.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.103,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AL,Alabama,202505,N,P,N,13272.0,,0.0,,13272.0,,12211.0,,5896.0,,18107.0,,669652.0,,938679.0,,754311.0,,184368.0,,269027.0,,20410.0,,2240.0,,2110.0,,980.0,,531.0,,53914.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,2.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.108,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AL,Alabama,202505,N,U,Y,13272.0,,0.0,,13272.0,,12211.0,,5896.0,,18107.0,,674850.0,,947601.0,,761378.0,,186223.0,,272751.0,,20410.0,,2240.0,,2110.0,,980.0,,531.0,,53914.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,2.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.108,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AL,Alabama,202506,N,P,N,12541.0,,0.0,,12541.0,,11368.0,,5473.0,,16841.0,,669444.0,,937844.0,,752608.0,,185236.0,,268400.0,,20572.0,,1356.0,,2226.0,,853.0,,563.0,,47309.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,1.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.071,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AL,Alabama,202506,N,U,Y,12541.0,,0.0,,12541.0,,11368.0,,5473.0,,16841.0,,674469.0,,946316.0,,759359.0,,186957.0,,271847.0,,20572.0,,1356.0,,2226.0,,853.0,,563.0,,47309.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,1.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.071,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AL,Alabama,202507,N,P,N,13903.0,,0.0,,13903.0,,12754.0,,6048.0,,18802.0,,668511.0,,936239.0,,750162.0,,186077.0,,267728.0,,22455.0,,2095.0,,2892.0,,882.0,,573.0,,52843.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,2.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.094,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AL,Alabama,202507,N,U,Y,13903.0,,0.0,,13903.0,,12754.0,,6048.0,,18802.0,,675764.0,,948369.0,,760049.0,,188320.0,,272605.0,,22455.0,,2095.0,,2892.0,,882.0,,573.0,,52843.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,2.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.094,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AL,Alabama,202508,N,P,N,12936.0,,0.0,,12936.0,,12499.0,,6294.0,,18793.0,,670822.0,,938822.0,,750998.0,,187824.0,,268000.0,,21810.0,,1722.0,,2753.0,,822.0,,614.0,,48657.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,2.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.081,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AL,Alabama,202508,N,U,Y,12936.0,,0.0,,12936.0,,12499.0,,6294.0,,18793.0,,675575.0,,947380.0,,758080.0,,189300.0,,271805.0,,21810.0,,1722.0,,2753.0,,822.0,,614.0,,48657.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,2.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.081,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AL,Alabama,202509,N,P,N,12979.0,,0.0,,12979.0,,11790.0,,5554.0,,17344.0,,670669.0,,937597.0,,748438.0,,189159.0,,266928.0,,21739.0,,1785.0,,2150.0,,1066.0,,552.0,,52908.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,3.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.277,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AL,Alabama,202509,N,U,Y,12979.0,,0.0,,12979.0,,11790.0,,5554.0,,17344.0,,676222.0,,947718.0,,756883.0,,190835.0,,271496.0,,21739.0,,1785.0,,2150.0,,1066.0,,552.0,,52908.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,3.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.277,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AL,Alabama,202510,N,P,N,12899.0,,0.0,,12899.0,,10770.0,,5607.0,,16377.0,,672491.0,,940264.0,,749334.0,,190930.0,,267773.0,,20506.0,,1622.0,,1906.0,,1082.0,,458.0,,49595.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,1.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.07,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AR,Arkansas,201309,N,U,Y,,,,,,,,,,,,,,,556851.0,,,,,,,,,,,,,,,,,,,,,,, +AR,Arkansas,201706,Y,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,437556.0,,923807.0,,842290.0,,81517.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,201706,Y,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,437556.0,,923807.0,,842290.0,,81517.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,201707,Y,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,431880.0,,911171.0,,829793.0,,81378.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,201707,Y,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,431880.0,,911171.0,,829793.0,,81378.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,201708,Y,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,432796.0,,909960.0,,827909.0,,82051.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,201708,Y,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,432796.0,,909960.0,,827909.0,,82051.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,201709,Y,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,437421.0,,917847.0,,835686.0,,82161.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,201709,Y,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,437421.0,,917847.0,,835686.0,,82161.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,201710,Y,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,437488.0,,917342.0,,834320.0,,83022.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,201710,Y,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,437488.0,,917342.0,,834320.0,,83022.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,201711,Y,P,N,17877.0,,0.0,,17877.0,,10201.0,,333.0,,10534.0,,433364.0,,907592.0,,824163.0,,83429.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,201711,Y,U,Y,17877.0,,0.0,,17877.0,,10201.0,,333.0,,10534.0,,439453.0,,919965.0,,836536.0,,83429.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,201712,Y,P,N,19191.0,,0.0,,19191.0,,10740.0,,345.0,,11085.0,,434289.0,,904217.0,,819574.0,,84643.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,201712,Y,U,Y,19191.0,,0.0,,19191.0,,10740.0,,345.0,,11085.0,,438040.0,,914913.0,,830270.0,,84643.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,201801,Y,P,N,22549.0,,0.0,,22549.0,,11951.0,,435.0,,12386.0,,432138.0,,896053.0,,811229.0,,84824.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,201801,Y,U,Y,22549.0,,0.0,,22549.0,,11951.0,,435.0,,12386.0,,432138.0,,896053.0,,811229.0,,84824.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,201802,Y,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,433210.0,,895639.0,,810550.0,,85089.0,,,,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,,,,,, +AR,Arkansas,201802,Y,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,433210.0,,895639.0,,810550.0,,85089.0,,,,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,,,,,, +AR,Arkansas,201803,Y,P,N,19726.0,,0.0,,19726.0,,0.0,,0.0,,0.0,,434069.0,,894890.0,,809356.0,,85534.0,,,,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,,,,,, +AR,Arkansas,201803,Y,U,Y,19726.0,,0.0,,19726.0,,0.0,,0.0,,0.0,,434069.0,,894890.0,,809356.0,,85534.0,,,,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,,,,,, +AR,Arkansas,201804,Y,P,N,19085.0,,0.0,,19085.0,,10787.0,,414.0,,11201.0,,437814.0,,902350.0,,817428.0,,84922.0,,,,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,,,,,, +AR,Arkansas,201804,Y,U,Y,19085.0,,0.0,,19085.0,,10787.0,,414.0,,11201.0,,437814.0,,902350.0,,817428.0,,84922.0,,,,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,,,,,, +AR,Arkansas,201805,Y,P,N,18698.0,,0.0,,18698.0,,9689.0,,426.0,,10115.0,,437943.0,,899238.0,,814720.0,,84518.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,201805,Y,U,Y,18698.0,,0.0,,18698.0,,9689.0,,426.0,,10115.0,,437943.0,,899238.0,,814720.0,,84518.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,201806,Y,P,N,18098.0,,0.0,,18098.0,,8842.0,,257.0,,9099.0,,437942.0,,895127.0,,809991.0,,85136.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,201806,Y,U,Y,18098.0,,0.0,,18098.0,,8842.0,,257.0,,9099.0,,437942.0,,895127.0,,809991.0,,85136.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,201807,Y,P,N,19144.0,,0.0,,19144.0,,259839.0,,244.0,,260083.0,,438625.0,,894192.0,,808262.0,,85930.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,201807,Y,U,Y,19144.0,,0.0,,19144.0,,259839.0,,244.0,,260083.0,,438625.0,,894192.0,,808262.0,,85930.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,201808,Y,P,N,21955.0,,0.0,,21955.0,,11615.0,,392.0,,12007.0,,439456.0,,891151.0,,804402.0,,86749.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,201808,Y,U,Y,21955.0,,0.0,,21955.0,,11615.0,,392.0,,12007.0,,439458.0,,895332.0,,808583.0,,86749.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,201809,Y,P,N,13915.0,,0.0,,13915.0,,0.0,,0.0,,0.0,,437644.0,,880425.0,,793223.0,,87202.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,201809,Y,U,Y,13915.0,,0.0,,13915.0,,0.0,,0.0,,0.0,,433379.0,,871873.0,,784671.0,,87202.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,201810,Y,P,N,20474.0,,0.0,,20474.0,,0.0,,0.0,,0.0,,434086.0,,867350.0,,779292.0,,88058.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,201810,Y,U,Y,20474.0,,0.0,,20474.0,,0.0,,0.0,,0.0,,438068.0,,876235.0,,788177.0,,88058.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,201811,Y,P,N,28959.0,,0.0,,28959.0,,9491.0,,588.0,,10079.0,,430516.0,,857634.0,,768579.0,,89055.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,201811,Y,U,Y,28959.0,,0.0,,28959.0,,9491.0,,588.0,,10079.0,,429405.0,,853151.0,,764096.0,,89055.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,201812,Y,P,N,28858.0,,0.0,,28858.0,,9506.0,,547.0,,10053.0,,423594.0,,840484.0,,751053.0,,89431.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,201812,Y,U,Y,29159.0,,0.0,,29159.0,,9506.0,,547.0,,10053.0,,429781.0,,853527.0,,764096.0,,89431.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,201901,Y,P,N,22763.0,,0.0,,22763.0,,9516.0,,382.0,,9898.0,,429630.0,,850564.0,,760071.0,,90493.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,201901,Y,U,Y,22763.0,,0.0,,22763.0,,9516.0,,382.0,,9898.0,,429619.0,,850344.0,,759851.0,,90493.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,201902,Y,P,N,19542.0,,0.0,,19542.0,,7758.0,,303.0,,8061.0,,422982.0,,835630.0,,744596.0,,91034.0,,,,5278.0,,4244.0,,1126.0,,832.0,,218.0,,,,,,, +AR,Arkansas,201902,Y,U,Y,19769.0,,0.0,,19769.0,,7758.0,,303.0,,8061.0,,429976.0,,849756.0,,758722.0,,91034.0,,,,5278.0,,4244.0,,1126.0,,832.0,,218.0,,,,,,, +AR,Arkansas,201903,Y,P,N,20209.0,,0.0,,20209.0,,7885.0,,328.0,,8213.0,,427230.0,,842935.0,,751488.0,,91447.0,,,,5490.0,,4121.0,,1344.0,,1034.0,,171.0,,,,,,, +AR,Arkansas,201903,Y,U,Y,20328.0,,0.0,,20328.0,,9410.0,,444.0,,9854.0,,431523.0,,853203.0,,761756.0,,91447.0,,,,5490.0,,4121.0,,1344.0,,1034.0,,171.0,,,,,,, +AR,Arkansas,201904,Y,P,N,21842.0,,0.0,,21842.0,,9453.0,,406.0,,9859.0,,428149.0,,846831.0,,756350.0,,90481.0,,,,6212.0,,4265.0,,2127.0,,139.0,,160.0,,,,,,, +AR,Arkansas,201904,Y,U,Y,21996.0,,0.0,,21996.0,,9452.0,,407.0,,9859.0,,432217.0,,855735.0,,765254.0,,90481.0,,,,6127.0,,4835.0,,10633.0,,1162.0,,1037.0,,,,,,, +AR,Arkansas,201905,Y,P,N,20514.0,,0.0,,20514.0,,8713.0,,377.0,,9090.0,,423853.0,,839884.0,,749653.0,,90231.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,201905,Y,U,Y,20625.0,,0.0,,20625.0,,8729.0,,361.0,,9090.0,,429534.0,,852441.0,,762210.0,,90231.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,201906,Y,P,N,18968.0,,0.0,,18968.0,,8381.0,,327.0,,8708.0,,424778.0,,842543.0,,752206.0,,90337.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,201906,Y,U,Y,19135.0,,0.0,,19135.0,,8381.0,,327.0,,8708.0,,428965.0,,851477.0,,761140.0,,90337.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,201907,Y,P,N,21294.0,,0.0,,21294.0,,9909.0,,330.0,,10239.0,,427136.0,,847018.0,,756373.0,,90645.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,201907,Y,U,Y,21294.0,,0.0,,21294.0,,9909.0,,330.0,,10239.0,,431468.0,,856008.0,,765363.0,,90645.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,201908,Y,P,N,21657.0,,0.0,,21657.0,,15822.0,,1008.0,,16830.0,,427133.0,,847901.0,,756754.0,,91147.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,201908,Y,U,Y,21808.0,,0.0,,21808.0,,15822.0,,1008.0,,16830.0,,431731.0,,857097.0,,765950.0,,91147.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,201909,Y,P,N,19576.0,,0.0,,19576.0,,12078.0,,787.0,,12865.0,,428079.0,,849878.0,,758081.0,,91797.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,201909,Y,U,Y,19790.0,,0.0,,19790.0,,12078.0,,787.0,,12865.0,,433345.0,,860469.0,,768672.0,,91797.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,201910,Y,P,N,21080.0,,0.0,,21080.0,,16829.0,,1271.0,,18100.0,,429719.0,,853432.0,,761041.0,,92391.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,201910,Y,U,Y,21241.0,,0.0,,21241.0,,26461.0,,2352.0,,28813.0,,434801.0,,863737.0,,771346.0,,92391.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,201911,Y,P,N,28291.0,,0.0,,28291.0,,12450.0,,1081.0,,13531.0,,430117.0,,854622.0,,760825.0,,93797.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,201911,Y,U,Y,28421.0,,0.0,,28421.0,,12594.0,,1109.0,,13703.0,,435355.0,,862669.0,,768872.0,,93797.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,201912,Y,P,N,30707.0,,0.0,,30707.0,,14941.0,,1367.0,,16308.0,,431895.0,,855608.0,,761041.0,,94567.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,201912,Y,U,Y,30851.0,,0.0,,30851.0,,14941.0,,1367.0,,16308.0,,435582.0,,871819.0,,777252.0,,94567.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,202001,Y,P,N,22668.0,,0.0,,22668.0,,15173.0,,1264.0,,16437.0,,429612.0,,859695.0,,764647.0,,95048.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,202001,Y,U,Y,22830.0,,0.0,,22830.0,,15173.0,,1264.0,,16437.0,,434792.0,,869987.0,,774939.0,,95048.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,202002,Y,P,N,19138.0,,0.0,,19138.0,,18427.0,,1064.0,,19491.0,,427650.0,,855049.0,,759960.0,,95089.0,,,,5416.0,,4110.0,,4268.0,,4227.0,,1235.0,,,,,,, +AR,Arkansas,202002,Y,U,Y,19260.0,,0.0,,19260.0,,18427.0,,1064.0,,19491.0,,432235.0,,864334.0,,769245.0,,95089.0,,,,5416.0,,4110.0,,4268.0,,4227.0,,1235.0,,,,,,, +AR,Arkansas,202003,Y,P,N,19391.0,,0.0,,19391.0,,12971.0,,933.0,,13904.0,,425861.0,,852514.0,,757794.0,,94720.0,,,,5431.0,,3513.0,,4274.0,,4909.0,,919.0,,,,,,, +AR,Arkansas,202003,Y,U,Y,19615.0,,0.0,,19615.0,,12944.0,,929.0,,13873.0,,430265.0,,861426.0,,766706.0,,94720.0,,,,5457.0,,3519.0,,4304.0,,4947.0,,911.0,,,,,,, +AR,Arkansas,202004,Y,P,N,17616.0,,0.0,,17616.0,,13622.0,,866.0,,14488.0,,428172.0,,861720.0,,768057.0,,93663.0,,,,5172.0,,3598.0,,8674.0,,1317.0,,869.0,,,,,,, +AR,Arkansas,202004,Y,U,Y,17649.0,,0.0,,17649.0,,13460.0,,845.0,,14305.0,,433006.0,,873260.0,,779597.0,,93663.0,,,,5172.0,,3601.0,,8652.0,,1317.0,,869.0,,,,,,, +AR,Arkansas,202005,Y,P,N,14754.0,,0.0,,14754.0,,10248.0,,573.0,,10821.0,,435794.0,,883583.0,,790395.0,,93188.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,202005,Y,U,Y,14754.0,,0.0,,14754.0,,10248.0,,573.0,,10821.0,,433848.0,,879441.0,,786253.0,,93188.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,202006,Y,P,N,16074.0,,0.0,,16074.0,,9959.0,,668.0,,10627.0,,436816.0,,889348.0,,796259.0,,93089.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,202006,Y,U,Y,16106.0,,0.0,,16106.0,,9801.0,,667.0,,10468.0,,439251.0,,894831.0,,801742.0,,93089.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,202007,Y,P,N,16309.0,,0.0,,16309.0,,10072.0,,678.0,,10750.0,,439656.0,,898494.0,,803192.0,,95302.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,202007,Y,U,Y,16350.0,,0.0,,16350.0,,9873.0,,673.0,,10546.0,,441363.0,,902134.0,,806832.0,,95302.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,202008,Y,P,N,15841.0,,0.0,,15841.0,,9583.0,,714.0,,10297.0,,441339.0,,906456.0,,809647.0,,96809.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,202008,Y,U,Y,15914.0,,0.0,,15914.0,,9418.0,,706.0,,10124.0,,443694.0,,911413.0,,814604.0,,96809.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,202009,Y,P,N,15818.0,,0.0,,15818.0,,9788.0,,749.0,,10537.0,,443702.0,,915390.0,,818314.0,,97076.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,202009,Y,U,Y,15918.0,,0.0,,15918.0,,9598.0,,735.0,,10333.0,,447275.0,,922498.0,,825422.0,,97076.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,202010,Y,P,N,15672.0,,0.0,,15672.0,,9183.0,,681.0,,9864.0,,447000.0,,926090.0,,830203.0,,95887.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,202010,Y,U,Y,15774.0,,0.0,,15774.0,,9039.0,,676.0,,9715.0,,449506.0,,930571.0,,834684.0,,95887.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,202011,Y,P,N,23738.0,,0.0,,23738.0,,8750.0,,745.0,,9495.0,,448362.0,,933700.0,,837821.0,,95879.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,202011,Y,U,Y,23936.0,,0.0,,23936.0,,8578.0,,732.0,,9310.0,,451135.0,,940571.0,,844692.0,,95879.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,202012,Y,P,N,25126.0,,0.0,,25126.0,,9943.0,,761.0,,10704.0,,448839.0,,942856.0,,847464.0,,95392.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,202012,Y,U,Y,26126.0,,0.0,,26126.0,,9915.0,,757.0,,10672.0,,452854.0,,950751.0,,855359.0,,95392.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,202101,Y,P,N,13265.0,,0.0,,13265.0,,8194.0,,541.0,,8735.0,,451178.0,,951687.0,,857506.0,,94181.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,202101,Y,U,Y,14583.0,,0.0,,14583.0,,8511.0,,562.0,,9073.0,,453885.0,,956452.0,,862271.0,,94181.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,202102,Y,P,N,12014.0,,0.0,,12014.0,,5142.0,,429.0,,5571.0,,451581.0,,955933.0,,862141.0,,93792.0,,,,2852.0,,1641.0,,2794.0,,2561.0,,1496.0,,,,,,, +AR,Arkansas,202102,Y,U,Y,12162.0,,0.0,,12162.0,,6078.0,,429.0,,6507.0,,453736.0,,959831.0,,866039.0,,93792.0,,,,2874.0,,1629.0,,2778.0,,2569.0,,1514.0,,,,,,, +AR,Arkansas,202103,Y,P,N,16274.0,,0.0,,16274.0,,7844.0,,415.0,,8259.0,,450942.0,,959849.0,,867802.0,,92047.0,,,,2716.0,,1792.0,,2635.0,,2526.0,,838.0,,,,,,, +AR,Arkansas,202103,Y,U,Y,17253.0,,0.0,,17253.0,,7839.0,,415.0,,8254.0,,453825.0,,965133.0,,873086.0,,92047.0,,,,2714.0,,1789.0,,2617.0,,2496.0,,838.0,,,,,,, +AR,Arkansas,202104,Y,P,N,14676.0,,0.0,,14676.0,,6760.0,,437.0,,7197.0,,450868.0,,964929.0,,876057.0,,88872.0,,,,1226.0,,910.0,,2372.0,,2451.0,,624.0,,,,,,, +AR,Arkansas,202104,Y,U,Y,15294.0,,0.0,,15294.0,,6764.0,,437.0,,7201.0,,452743.0,,968361.0,,879489.0,,88872.0,,,,1226.0,,910.0,,2372.0,,2450.0,,624.0,,,,,,, +AR,Arkansas,202105,Y,P,N,10376.0,,0.0,,10376.0,,5225.0,,225.0,,5450.0,,451431.0,,968559.0,,880279.0,,88280.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,202105,Y,U,Y,13163.0,,0.0,,13163.0,,5203.0,,225.0,,5428.0,,453431.0,,971884.0,,883604.0,,88280.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,202106,Y,P,N,14152.0,,0.0,,14152.0,,6197.0,,269.0,,6466.0,,452230.0,,972191.0,,884495.0,,87696.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,202106,Y,U,Y,14152.0,,0.0,,14152.0,,6197.0,,269.0,,6466.0,,454589.0,,977975.0,,890279.0,,87696.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,202107,Y,P,N,9556.0,,0.0,,9556.0,,6489.0,,336.0,,6825.0,,453119.0,,978756.0,,891821.0,,86935.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,202107,Y,U,Y,12695.0,,0.0,,12695.0,,6492.0,,336.0,,6828.0,,455945.0,,985204.0,,898269.0,,86935.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,202108,Y,P,N,11128.0,,0.0,,11128.0,,9742.0,,466.0,,10208.0,,454528.0,,985740.0,,899509.0,,86231.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,202108,Y,U,Y,13844.0,,0.0,,13844.0,,9766.0,,466.0,,10232.0,,457292.0,,991687.0,,905456.0,,86231.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,202109,Y,P,N,10601.0,,0.0,,10601.0,,8288.0,,446.0,,8734.0,,455687.0,,991428.0,,905806.0,,85622.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,202109,Y,U,Y,11894.0,,0.0,,11894.0,,8305.0,,446.0,,8751.0,,459666.0,,998854.0,,913232.0,,85622.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,202110,Y,P,N,10790.0,,0.0,,10790.0,,7741.0,,430.0,,8171.0,,458434.0,,999105.0,,914083.0,,85022.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,202110,Y,U,Y,12229.0,,0.0,,12229.0,,7749.0,,430.0,,8179.0,,460741.0,,1002975.0,,917953.0,,85022.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,202111,Y,P,N,9247.0,,0.0,,9247.0,,6702.0,,364.0,,7066.0,,458798.0,,1002164.0,,918236.0,,83928.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,202111,Y,U,Y,11936.0,,0.0,,11936.0,,7165.0,,392.0,,7557.0,,461752.0,,1007113.0,,923185.0,,83928.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,202112,Y,P,N,7929.0,,0.0,,7929.0,,7462.0,,431.0,,7893.0,,459511.0,,1006334.0,,923600.0,,82734.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,202112,Y,U,Y,10894.0,,0.0,,10894.0,,7463.0,,431.0,,7894.0,,461605.0,,1011385.0,,928651.0,,82734.0,,,,,,,,,,,,,,,,,,, +AR,Arkansas,202201,Y,P,N,11049.0,,0.0,,11049.0,,8590.0,,540.0,,9130.0,,459292.0,,1011958.0,,930363.0,,81595.0,,,,1040.0,,547.0,,2043.0,,1006.0,,11948.0,,,,,,, +AR,Arkansas,202201,Y,U,Y,12407.0,,0.0,,12407.0,,8621.0,,544.0,,9165.0,,462954.0,,1019488.0,,937893.0,,81595.0,,,,1040.0,,549.0,,2051.0,,1012.0,,12020.0,,,,,,, +AR,Arkansas,202202,Y,P,N,8347.0,,0.0,,8347.0,,9718.0,,693.0,,10411.0,,461716.0,,1018809.0,,937622.0,,81187.0,,,,613.0,,512.0,,1407.0,,704.0,,18377.0,,,,,,, +AR,Arkansas,202202,Y,U,Y,9577.0,,0.0,,9577.0,,9730.0,,693.0,,10423.0,,464703.0,,1026459.0,,945272.0,,81187.0,,,,614.0,,512.0,,1415.0,,716.0,,18412.0,,,,,,, +AR,Arkansas,202203,Y,P,N,11517.0,,0.0,,11517.0,,12725.0,,761.0,,13486.0,,463285.0,,1025749.0,,945341.0,,80408.0,,,,774.0,,1146.0,,2769.0,,1948.0,,22976.0,,,,,,, +AR,Arkansas,202203,Y,U,Y,12513.0,,0.0,,12513.0,,12757.0,,770.0,,13527.0,,466838.0,,1032880.0,,952472.0,,80408.0,,,,774.0,,1150.0,,2790.0,,1969.0,,23049.0,,,,,,, +AR,Arkansas,202204,Y,P,N,10608.0,,0.0,,10608.0,,11230.0,,788.0,,12018.0,,466138.0,,1033874.0,,957677.0,,76197.0,,,,899.0,,3011.0,,4739.0,,2205.0,,9294.0,,,,,,, +AR,Arkansas,202204,Y,U,Y,11743.0,,0.0,,11743.0,,11242.0,,789.0,,12031.0,,467817.0,,1036775.0,,960578.0,,76197.0,,,,902.0,,3020.0,,4759.0,,2209.0,,9303.0,,,,,,, +AR,Arkansas,202205,Y,P,N,11523.0,,0.0,,11523.0,,8017.0,,452.0,,8469.0,,467538.0,,1038650.0,,962380.0,,76270.0,,,,1025.0,,2847.0,,3638.0,,649.0,,1692.0,,,,,,, +AR,Arkansas,202205,Y,U,Y,12470.0,,0.0,,12470.0,,8019.0,,452.0,,8471.0,,469473.0,,1042058.0,,965788.0,,76270.0,,,,1026.0,,2854.0,,3655.0,,653.0,,1692.0,,,,,,, +AR,Arkansas,202206,Y,P,N,12382.0,,0.0,,12382.0,,8155.0,,446.0,,8601.0,,468831.0,,1043601.0,,967483.0,,76118.0,,,,1243.0,,3189.0,,3782.0,,826.0,,694.0,,,,,,, +AR,Arkansas,202206,Y,U,Y,13337.0,,0.0,,13337.0,,8147.0,,446.0,,8593.0,,470683.0,,1046757.0,,970639.0,,76118.0,,,,1243.0,,3190.0,,3785.0,,827.0,,694.0,,,,,,, +AR,Arkansas,202207,Y,P,N,11788.0,,0.0,,11788.0,,7286.0,,428.0,,7714.0,,469738.0,,1047121.0,,971035.0,,76086.0,,,,1048.0,,2787.0,,2985.0,,1246.0,,590.0,,,,,,, +AR,Arkansas,202207,Y,U,Y,13060.0,,0.0,,13060.0,,7293.0,,427.0,,7720.0,,471840.0,,1050577.0,,974491.0,,76086.0,,,,1049.0,,2789.0,,2989.0,,1246.0,,592.0,,,,,,, +AR,Arkansas,202208,Y,P,N,13698.0,,0.0,,13698.0,,9962.0,,565.0,,10527.0,,471648.0,,1052378.0,,976583.0,,75795.0,,,,1328.0,,3290.0,,4041.0,,1681.0,,1343.0,,,,,,, +AR,Arkansas,202208,Y,U,Y,15043.0,,0.0,,15043.0,,9973.0,,565.0,,10538.0,,474329.0,,1056949.0,,981154.0,,75795.0,,,,1329.0,,3294.0,,4044.0,,1686.0,,1343.0,,,,,,, +AR,Arkansas,202209,Y,P,N,11975.0,,0.0,,11975.0,,9083.0,,543.0,,9626.0,,473386.0,,1057843.0,,982418.0,,75425.0,,,,993.0,,2217.0,,4641.0,,1568.0,,1286.0,,,,,,, +AR,Arkansas,202209,Y,U,Y,13153.0,,0.0,,13153.0,,9090.0,,543.0,,9633.0,,475622.0,,1061632.0,,986207.0,,75425.0,,,,993.0,,2218.0,,4646.0,,1570.0,,1289.0,,,,,,, +AR,Arkansas,202210,Y,P,N,12047.0,,0.0,,12047.0,,10008.0,,610.0,,10618.0,,474975.0,,1063011.0,,987731.0,,75280.0,,,,1050.0,,3146.0,,5082.0,,1162.0,,1042.0,,,,,,, +AR,Arkansas,202210,Y,U,Y,13445.0,,0.0,,13445.0,,10048.0,,611.0,,10659.0,,477499.0,,1066912.0,,991632.0,,75280.0,,,,1050.0,,3156.0,,5092.0,,1162.0,,1047.0,,,,,,, +AR,Arkansas,202211,Y,P,N,12194.0,,0.0,,12194.0,,9721.0,,563.0,,10284.0,,475814.0,,1067213.0,,992158.0,,75055.0,,,,1807.0,,3061.0,,6480.0,,906.0,,545.0,,,,,,, +AR,Arkansas,202211,Y,U,Y,13357.0,,0.0,,13357.0,,9728.0,,565.0,,10293.0,,478847.0,,1072504.0,,997449.0,,75055.0,,,,1808.0,,3063.0,,6489.0,,906.0,,546.0,,,,,,, +AR,Arkansas,202212,Y,P,N,11657.0,,0.0,,11657.0,,8559.0,,523.0,,9082.0,,477717.0,,1074115.0,,999262.0,,74853.0,,,,1770.0,,1144.0,,8052.0,,1794.0,,684.0,,,,,,, +AR,Arkansas,202212,Y,U,Y,12811.0,,0.0,,12811.0,,8742.0,,523.0,,9265.0,,480178.0,,1079411.0,,1004558.0,,74853.0,,,,1774.0,,1145.0,,8060.0,,1794.0,,685.0,,,,,,, +AR,Arkansas,202301,Y,P,N,12764.0,,0.0,,12764.0,,11014.0,,726.0,,11740.0,,479406.0,,1082804.0,,1007796.0,,75008.0,,,,1373.0,,755.0,,7602.0,,4957.0,,1732.0,,,,,,, +AR,Arkansas,202301,Y,U,Y,13861.0,,0.0,,13861.0,,11021.0,,724.0,,11745.0,,481409.0,,1086615.0,,1011607.0,,75008.0,,,,1373.0,,755.0,,7612.0,,4963.0,,1734.0,,,,,,, +AR,Arkansas,202302,Y,P,N,10901.0,,0.0,,10901.0,,9063.0,,564.0,,9627.0,,480184.0,,1086085.0,,1011290.0,,74795.0,,,,646.0,,645.0,,6524.0,,2894.0,,1129.0,,,,,,, +AR,Arkansas,202302,Y,U,Y,11915.0,,0.0,,11915.0,,9067.0,,564.0,,9631.0,,481150.0,,1085727.0,,1010932.0,,74795.0,,,,646.0,,646.0,,6529.0,,2897.0,,1131.0,,,,,,, +AR,Arkansas,202303,Y,P,N,15183.0,,0.0,,15183.0,,10144.0,,664.0,,10808.0,,479905.0,,1085536.0,,1010510.0,,75026.0,,,,1014.0,,1274.0,,7766.0,,1664.0,,726.0,,79139.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.152,Includes calls for other benefit programs; Includes only calls transferred to a live agent +AR,Arkansas,202303,Y,U,Y,16606.0,,0.0,,16606.0,,10123.0,,664.0,,10787.0,,481181.0,,1087844.0,,1012818.0,,75026.0,,,,1015.0,,1275.0,,7773.0,,1667.0,,726.0,,79139.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.152,Includes calls for other benefit programs; Includes only calls transferred to a live agent +AR,Arkansas,202304,Y,P,N,16691.0,,0.0,,16691.0,,10185.0,,765.0,,10950.0,,472229.0,,1067802.0,,998074.0,,69728.0,,,,847.0,,1870.0,,7121.0,,1252.0,,490.0,,86735.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,5.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.128,Includes calls for other benefit programs; Includes only calls transferred to a live agent +AR,Arkansas,202304,Y,U,Y,18761.0,,0.0,,18761.0,,10188.0,,765.0,,10953.0,,474788.0,,1073908.0,,1004180.0,,69728.0,,,,848.0,,1873.0,,7136.0,,1254.0,,490.0,,86735.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,5.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.128,Includes calls for other benefit programs; Includes only calls transferred to a live agent +AR,Arkansas,202305,Y,P,N,22059.0,,0.0,,22059.0,,11344.0,,845.0,,12189.0,,453221.0,,1017064.0,,946778.0,,70286.0,,,,1159.0,,1389.0,,9804.0,,1905.0,,745.0,,79625.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,10.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.163,Includes calls for other benefit programs; Includes only calls transferred to a live agent +AR,Arkansas,202305,Y,U,Y,22059.0,,0.0,,22059.0,,11350.0,,845.0,,12195.0,,457165.0,,1024969.0,,954683.0,,70286.0,,,,1159.0,,1389.0,,9804.0,,1905.0,,745.0,,79625.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,10.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.163,Includes calls for other benefit programs; Includes only calls transferred to a live agent +AR,Arkansas,202306,Y,P,N,22172.0,,0.0,,22172.0,,11982.0,,1195.0,,13177.0,,439412.0,,973770.0,,901271.0,,72499.0,,,,1187.0,,1413.0,,9550.0,,3633.0,,1302.0,,78532.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,6.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.152,Includes calls for other benefit programs; Includes only calls transferred to a live agent +AR,Arkansas,202306,Y,U,Y,22172.0,,0.0,,22172.0,,12000.0,,1195.0,,13195.0,,443411.0,,982471.0,,909972.0,,72499.0,,,,1187.0,,1413.0,,9550.0,,3633.0,,1302.0,,78532.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,6.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.152,Includes calls for other benefit programs; Includes only calls transferred to a live agent +AR,Arkansas,202307,Y,P,N,22943.0,,0.0,,22943.0,,12203.0,,1275.0,,13478.0,,424625.0,,945102.0,,870100.0,,75002.0,,,,1125.0,,962.0,,7726.0,,5747.0,,2028.0,,142817.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,4.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.086,Includes calls for other benefit programs; Includes only calls transferred to a live agent +AR,Arkansas,202307,Y,U,Y,22943.0,,0.0,,22943.0,,12222.0,,1276.0,,13498.0,,430473.0,,936514.0,,861512.0,,75002.0,,,,1125.0,,962.0,,7726.0,,5747.0,,2028.0,,142817.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,4.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.086,Includes calls for other benefit programs; Includes only calls transferred to a live agent +AR,Arkansas,202308,Y,P,N,28666.0,,0.0,,28666.0,,18282.0,,2290.0,,20572.0,,413020.0,,876943.0,,798734.0,,78209.0,,,,1387.0,,1893.0,,13264.0,,6424.0,,2882.0,,193686.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,4.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.073,Includes calls for other benefit programs; Includes only calls transferred to a live agent +AR,Arkansas,202308,Y,U,Y,28666.0,,0.0,,28666.0,,18306.0,,2291.0,,20597.0,,420775.0,,892739.0,,814530.0,,78209.0,,,,1387.0,,1893.0,,13264.0,,6424.0,,2882.0,,193686.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,4.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.073,Includes calls for other benefit programs; Includes only calls transferred to a live agent +AR,Arkansas,202309,Y,P,N,26742.0,,0.0,,26742.0,,20430.0,,2625.0,,23055.0,,406450.0,,849232.0,,768818.0,,80414.0,,,,1235.0,,1455.0,,17354.0,,7235.0,,2424.0,,208291.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,16.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.082,Includes calls for other benefit programs; Includes only calls transferred to a live agent +AR,Arkansas,202309,Y,U,Y,26742.0,,0.0,,26742.0,,20476.0,,2627.0,,23103.0,,416631.0,,874573.0,,794159.0,,80414.0,,,,1235.0,,1455.0,,17354.0,,7235.0,,2424.0,,208291.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,16.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.082,Includes calls for other benefit programs; Includes only calls transferred to a live agent +AR,Arkansas,202310,Y,P,N,28094.0,,0.0,,28094.0,,21712.0,,2589.0,,24301.0,,407407.0,,852966.0,,769764.0,,83202.0,,,,1365.0,,4146.0,,16350.0,,5239.0,,2327.0,,183639.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,4.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.08,Includes calls for other benefit programs; Includes only calls transferred to a live agent +AR,Arkansas,202310,Y,U,Y,28094.0,,0.0,,28094.0,,21726.0,,2591.0,,24317.0,,409322.0,,856988.0,,773786.0,,83202.0,,,,1365.0,,4146.0,,16350.0,,5239.0,,2327.0,,183639.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,4.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.08,Includes calls for other benefit programs; Includes only calls transferred to a live agent +AR,Arkansas,202311,Y,P,N,24667.0,,0.0,,24667.0,,18490.0,,2050.0,,20540.0,,404537.0,,840032.0,,754560.0,,85472.0,,,,2393.0,,5960.0,,15210.0,,2618.0,,1718.0,,185120.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,9.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.073,Includes calls for other benefit programs; Includes only calls transferred to a live agent +AR,Arkansas,202311,Y,U,Y,24667.0,,0.0,,24667.0,,18500.0,,2052.0,,20552.0,,410012.0,,856456.0,,770984.0,,85472.0,,,,2393.0,,5960.0,,15210.0,,2618.0,,1718.0,,185120.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,9.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.073,Includes calls for other benefit programs; Includes only calls transferred to a live agent +AR,Arkansas,202312,Y,P,N,21922.0,,0.0,,21922.0,,18561.0,,2162.0,,20723.0,,397631.0,,822319.0,,735474.0,,86845.0,,,,2603.0,,5144.0,,18797.0,,2649.0,,1452.0,,134948.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,6.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.1,Includes calls for other benefit programs; Includes only calls transferred to a live agent +AR,Arkansas,202312,Y,U,Y,21922.0,,0.0,,21922.0,,18568.0,,2165.0,,20733.0,,402374.0,,831483.0,,744638.0,,86845.0,,,,2603.0,,5144.0,,18797.0,,2649.0,,1452.0,,134948.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,6.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.1,Includes calls for other benefit programs; Includes only calls transferred to a live agent +AR,Arkansas,202401,Y,P,N,25342.0,,0.0,,25342.0,,23374.0,,2487.0,,25861.0,,387687.0,,826808.0,,740318.0,,86490.0,,,,2204.0,,8417.0,,15225.0,,3002.0,,2120.0,,194660.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,10.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.052,Includes calls for other benefit programs; Includes only calls transferred to a live agent +AR,Arkansas,202401,Y,U,Y,25342.0,,0.0,,25342.0,,23391.0,,2488.0,,25879.0,,391994.0,,834095.0,,747605.0,,86490.0,,,,2204.0,,8417.0,,15225.0,,3002.0,,2120.0,,194660.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,10.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.052,Includes calls for other benefit programs; Includes only calls transferred to a live agent +AR,Arkansas,202402,Y,P,N,22614.0,,0.0,,22614.0,,16549.0,,1643.0,,18192.0,,393804.0,,826470.0,,740363.0,,86107.0,,,,1222.0,,5413.0,,11387.0,,999.0,,1292.0,,162629.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,7.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.026,Includes calls for other benefit programs; Includes only calls transferred to a live agent +AR,Arkansas,202402,Y,U,Y,22614.0,,0.0,,22614.0,,16579.0,,1647.0,,18226.0,,397985.0,,832512.0,,746405.0,,86107.0,,,,1222.0,,5413.0,,11387.0,,999.0,,1292.0,,162629.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,7.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.026,Includes calls for other benefit programs; Includes only calls transferred to a live agent +AR,Arkansas,202403,Y,P,N,20990.0,,0.0,,20990.0,,16347.0,,1528.0,,17875.0,,398999.0,,824855.0,,739299.0,,85556.0,,,,1412.0,,6414.0,,7987.0,,1259.0,,1123.0,,155522.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,7.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.021,Includes calls for other benefit programs; Includes only calls transferred to a live agent +AR,Arkansas,202403,Y,U,Y,20990.0,,0.0,,20990.0,,16379.0,,1536.0,,17915.0,,402987.0,,834534.0,,748978.0,,85556.0,,,,1411.0,,6414.0,,7987.0,,1259.0,,1123.0,,155522.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,7.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.021,Includes calls for other benefit programs; Includes only calls transferred to a live agent +AR,Arkansas,202404,Y,P,N,22527.0,,0.0,,22527.0,,15607.0,,1192.0,,16799.0,,403068.0,,822434.0,,742382.0,,80052.0,,,,1402.0,,5288.0,,9489.0,,803.0,,927.0,,189903.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,7.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.053,Includes calls for other benefit programs; Includes only calls transferred to a live agent +AR,Arkansas,202404,Y,U,Y,22527.0,,0.0,,22527.0,,15637.0,,1196.0,,16833.0,,407416.0,,833752.0,,753700.0,,80052.0,,,,1402.0,,5288.0,,9489.0,,803.0,,927.0,,189903.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,7.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.053,Includes calls for other benefit programs; Includes only calls transferred to a live agent +AR,Arkansas,202405,Y,P,N,21105.0,,0.0,,21105.0,,16087.0,,1408.0,,17495.0,,407537.0,,827617.0,,747526.0,,80091.0,,,,1333.0,,6333.0,,8930.0,,968.0,,904.0,,125722.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,2.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.023,Includes calls for other benefit programs; Includes only calls transferred to a live agent +AR,Arkansas,202405,Y,U,Y,21105.0,,0.0,,21105.0,,16117.0,,1411.0,,17528.0,,410330.0,,833504.0,,753413.0,,80091.0,,,,1333.0,,6333.0,,8930.0,,968.0,,904.0,,125722.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,2.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.023,Includes calls for other benefit programs; Includes only calls transferred to a live agent +AR,Arkansas,202406,Y,P,N,19700.0,,0.0,,19700.0,,13423.0,,1088.0,,14511.0,,409497.0,,825119.0,,745296.0,,79823.0,,,,1317.0,,5841.0,,6661.0,,794.0,,685.0,,132297.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,5.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.029,Includes calls for other benefit programs; Includes only calls transferred to a live agent +AR,Arkansas,202406,Y,U,Y,19700.0,,0.0,,19700.0,,13425.0,,1089.0,,14514.0,,412457.0,,831669.0,,751645.0,,80024.0,,,,1317.0,,5841.0,,6661.0,,794.0,,685.0,,132297.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,5.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.029,Includes calls for other benefit programs; Includes only calls transferred to a live agent +AR,Arkansas,202407,Y,P,N,22461.0,,0.0,,22461.0,,14031.0,,1195.0,,15226.0,,411649.0,,821866.0,,742168.0,,79698.0,,410217.0,,1473.0,,4991.0,,8559.0,,1163.0,,629.0,,143709.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,2.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.013,Includes calls for other benefit programs; Includes only calls transferred to a live agent +AR,Arkansas,202407,Y,U,Y,22461.0,,0.0,,22461.0,,14047.0,,1196.0,,15243.0,,416517.0,,832794.0,,752678.0,,80116.0,,416277.0,,1473.0,,4991.0,,8559.0,,1163.0,,629.0,,143709.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,2.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.013,Includes calls for other benefit programs; Includes only calls transferred to a live agent +AR,Arkansas,202408,Y,P,N,22594.0,,0.0,,22594.0,,14889.0,,1398.0,,16287.0,,415990.0,,825834.0,,745593.0,,80241.0,,409844.0,,1590.0,,6293.0,,8850.0,,1448.0,,308.0,,194353.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,13.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.02,Includes calls for other benefit programs; Includes only calls transferred to a live agent +AR,Arkansas,202408,Y,U,Y,22594.0,,0.0,,22594.0,,14913.0,,1398.0,,16311.0,,419480.0,,832730.0,,752164.0,,80566.0,,413250.0,,1590.0,,6293.0,,8850.0,,1448.0,,308.0,,194353.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,13.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.02,Includes calls for other benefit programs; Includes only calls transferred to a live agent +AR,Arkansas,202409,Y,P,N,21261.0,,0.0,,21261.0,,13315.0,,1227.0,,14542.0,,418432.0,,820338.0,,740105.0,,80233.0,,401906.0,,1264.0,,5562.0,,8508.0,,1032.0,,361.0,,253580.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,10.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.016,Includes calls for other benefit programs; Includes only calls transferred to a live agent +AR,Arkansas,202409,Y,U,Y,21261.0,,0.0,,21261.0,,13325.0,,1228.0,,14553.0,,421908.0,,827996.0,,747442.0,,80554.0,,406088.0,,1264.0,,5562.0,,8508.0,,1032.0,,361.0,,253580.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,10.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.016,Includes calls for other benefit programs; Includes only calls transferred to a live agent +AR,Arkansas,202410,Y,P,N,23161.0,,0.0,,23161.0,,39543.0,,1230.0,,40773.0,,420469.0,,821017.0,,740193.0,,80824.0,,400548.0,,1491.0,,6243.0,,8616.0,,770.0,,333.0,,218671.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,13.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.015,Includes calls for other benefit programs; Includes only calls transferred to a live agent +AR,Arkansas,202410,Y,U,Y,23161.0,,0.0,,23161.0,,39553.0,,1230.0,,40783.0,,422810.0,,826212.0,,745045.0,,81167.0,,403402.0,,1491.0,,6243.0,,8616.0,,770.0,,333.0,,218671.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,13.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.015,Includes calls for other benefit programs; Includes only calls transferred to a live agent +AR,Arkansas,202411,Y,P,N,19778.0,,0.0,,19778.0,,13915.0,,1306.0,,15221.0,,419496.0,,817144.0,,736281.0,,80863.0,,397648.0,,3009.0,,5989.0,,9931.0,,554.0,,287.0,,178079.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,10.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.024,Includes calls for other benefit programs; Includes only calls transferred to a live agent +AR,Arkansas,202411,Y,U,Y,19778.0,,0.0,,19778.0,,13935.0,,1306.0,,15241.0,,423089.0,,824423.0,,742849.0,,81574.0,,401334.0,,3009.0,,5989.0,,9931.0,,554.0,,287.0,,178079.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,10.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.024,Includes calls for other benefit programs; Includes only calls transferred to a live agent +AR,Arkansas,202412,Y,P,N,21156.0,,0.0,,21156.0,,13343.0,,1397.0,,14740.0,,420270.0,,815047.0,,733561.0,,81486.0,,394777.0,,2594.0,,3334.0,,13749.0,,1810.0,,347.0,,194631.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,12.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.018,Includes calls for other benefit programs; Includes only calls transferred to a live agent +AR,Arkansas,202412,Y,U,Y,21156.0,,0.0,,21156.0,,13358.0,,1397.0,,14755.0,,423791.0,,823234.0,,741143.0,,82091.0,,399443.0,,2594.0,,3334.0,,13749.0,,1810.0,,347.0,,194631.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,12.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.018,Includes calls for other benefit programs; Includes only calls transferred to a live agent +AR,Arkansas,202501,Y,P,N,23010.0,,0.0,,23010.0,,16547.0,,1371.0,,17918.0,,403970.0,,816385.0,,734461.0,,81924.0,,412415.0,,2123.0,,3739.0,,10269.0,,5867.0,,1337.0,,206448.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,13.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.018,Includes calls for other benefit programs; Includes only calls transferred to a live agent +AR,Arkansas,202501,Y,U,Y,23010.0,,0.0,,23010.0,,16580.0,,1375.0,,17955.0,,407896.0,,825477.0,,742682.0,,82795.0,,417581.0,,2123.0,,3739.0,,10269.0,,5867.0,,1337.0,,206448.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,13.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.018,Includes calls for other benefit programs; Includes only calls transferred to a live agent +AR,Arkansas,202502,Y,P,N,17243.0,,0.0,,17243.0,,13152.0,,1429.0,,14581.0,,406759.0,,822228.0,,739524.0,,82704.0,,415469.0,,1452.0,,2746.0,,9830.0,,2631.0,,1649.0,,162889.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,9.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.013,Includes calls for other benefit programs; Includes only calls transferred to a live agent +AR,Arkansas,202502,Y,U,Y,17243.0,,0.0,,17243.0,,13163.0,,1428.0,,14591.0,,408744.0,,824245.0,,741361.0,,82884.0,,415501.0,,1452.0,,2746.0,,9830.0,,2631.0,,1649.0,,162889.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,9.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.013,Includes calls for other benefit programs; Includes only calls transferred to a live agent +AR,Arkansas,202503,Y,P,N,19585.0,,0.0,,19585.0,,12117.0,,1053.0,,13170.0,,408744.0,,824245.0,,741361.0,,82884.0,,415501.0,,1834.0,,3331.0,,6983.0,,1785.0,,401.0,,174710.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,11.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.015,Includes calls for other benefit programs; Includes only calls transferred to a live agent +AR,Arkansas,202503,Y,U,Y,19585.0,,0.0,,19585.0,,12130.0,,1054.0,,13184.0,,410657.0,,828054.0,,744815.0,,83239.0,,417397.0,,1834.0,,3331.0,,6983.0,,1785.0,,401.0,,174710.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,11.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.015,Includes calls for other benefit programs; Includes only calls transferred to a live agent +AR,Arkansas,202504,Y,P,N,22964.0,,0.0,,22964.0,,14127.0,,1378.0,,15505.0,,409048.0,,820916.0,,741402.0,,79514.0,,411868.0,,1767.0,,4918.0,,8558.0,,1491.0,,273.0,,186118.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,12.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.019,Includes calls for other benefit programs; Includes only calls transferred to a live agent +AR,Arkansas,202504,Y,U,Y,22964.0,,0.0,,22964.0,,14157.0,,1378.0,,15535.0,,411210.0,,825857.0,,746164.0,,79693.0,,414647.0,,1767.0,,4918.0,,8558.0,,1491.0,,273.0,,186118.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,12.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.019,Includes calls for other benefit programs; Includes only calls transferred to a live agent +AR,Arkansas,202505,Y,P,N,19653.0,,0.0,,19653.0,,13115.0,,1339.0,,14454.0,,409592.0,,816798.0,,737110.0,,79688.0,,407206.0,,1714.0,,6679.0,,6356.0,,455.0,,341.0,,175702.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,11.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.016,Includes calls for other benefit programs; Includes only calls transferred to a live agent +AR,Arkansas,202505,Y,U,Y,19653.0,,0.0,,19653.0,,13131.0,,1343.0,,14474.0,,411926.0,,821900.0,,741988.0,,79912.0,,409974.0,,1714.0,,6679.0,,6356.0,,455.0,,341.0,,175702.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,11.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.016,Includes calls for other benefit programs; Includes only calls transferred to a live agent +AR,Arkansas,202506,Y,P,N,19188.0,,0.0,,19188.0,,13135.0,,1146.0,,14281.0,,410482.0,,816018.0,,736068.0,,79950.0,,405536.0,,2148.0,,7529.0,,4465.0,,249.0,,162.0,,128192.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,2.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.001,Includes calls for other benefit programs; Includes only calls transferred to a live agent +AR,Arkansas,202506,Y,U,Y,19188.0,,0.0,,19188.0,,13145.0,,1148.0,,14293.0,,412907.0,,821198.0,,741050.0,,80148.0,,408291.0,,2148.0,,7529.0,,4465.0,,249.0,,162.0,,128192.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,2.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.001,Includes calls for other benefit programs; Includes only calls transferred to a live agent +AR,Arkansas,202507,Y,P,N,21187.0,,0.0,,21187.0,,13220.0,,1241.0,,14461.0,,411854.0,,814615.0,,734196.0,,80419.0,,402761.0,,1944.0,,6834.0,,4466.0,,362.0,,124.0,,132096.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.012,Includes calls for other benefit programs; Includes only calls transferred to a live agent +AR,Arkansas,202507,Y,U,Y,21187.0,,0.0,,21187.0,,13234.0,,1242.0,,14476.0,,413947.0,,818956.0,,738379.0,,80577.0,,405009.0,,1944.0,,6834.0,,4466.0,,362.0,,124.0,,132096.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.012,Includes calls for other benefit programs; Includes only calls transferred to a live agent +AR,Arkansas,202508,Y,P,N,20698.0,,0.0,,20698.0,,13199.0,,1253.0,,14452.0,,413084.0,,810357.0,,729355.0,,81002.0,,397273.0,,1852.0,,6402.0,,5443.0,,617.0,,234.0,,144881.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.016,Includes calls for other benefit programs; Includes only calls transferred to a live agent +AR,Arkansas,202508,Y,U,Y,20698.0,,0.0,,20698.0,,13216.0,,1255.0,,14471.0,,415287.0,,815146.0,,733824.0,,81322.0,,399859.0,,1852.0,,6402.0,,5443.0,,617.0,,234.0,,144881.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.016,Includes calls for other benefit programs; Includes only calls transferred to a live agent +AR,Arkansas,202509,Y,P,N,20847.0,,0.0,,20847.0,,12875.0,,1217.0,,14092.0,,413296.0,,808278.0,,726938.0,,81340.0,,394982.0,,1933.0,,5702.0,,5651.0,,826.0,,552.0,,206239.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,12.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.019,Includes calls for other benefit programs; Includes only calls transferred to a live agent +AR,Arkansas,202509,Y,U,Y,20847.0,,0.0,,20847.0,,12887.0,,1220.0,,14107.0,,416469.0,,814767.0,,732961.0,,81806.0,,398298.0,,1933.0,,5702.0,,5651.0,,826.0,,552.0,,206239.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,12.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.019,Includes calls for other benefit programs; Includes only calls transferred to a live agent +AR,Arkansas,202510,Y,P,N,19985.0,,0.0,,19985.0,,13306.0,,1291.0,,14597.0,,415014.0,,808325.0,,726141.0,,82184.0,,393311.0,,1889.0,,6195.0,,5550.0,,683.0,,1088.0,,197526.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,8.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.011,Includes calls for other benefit programs; Includes only calls transferred to a live agent +AZ,Arizona,201309,N,U,Y,,,,,,,,,,,,,,,1201770.0,,,,,,,,,,,,,,,,,,,,,,, +AZ,Arizona,201706,Y,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1744617.0,,1649411.0,,95206.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,201706,Y,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1744617.0,,1649411.0,,95206.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,201707,Y,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1745097.0,,1649135.0,,95962.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,201707,Y,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1745097.0,,1649135.0,,95962.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,201708,Y,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1742701.0,,1646612.0,,96089.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,201708,Y,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1742701.0,,1646612.0,,96089.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,201709,Y,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1742125.0,,1646000.0,,96125.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,201709,Y,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1743139.0,,1646000.0,,97139.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,201710,Y,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1739554.0,,1641699.0,,97855.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,201710,Y,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1739554.0,,1641699.0,,97855.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,201711,Y,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1728003.0,,1630614.0,,97389.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,201711,Y,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1728003.0,,1630614.0,,97389.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,201712,Y,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1716236.0,,1619477.0,,96759.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,201712,Y,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1716236.0,,1619477.0,,96759.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,201801,Y,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1685219.0,,1591805.0,,93414.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,201801,Y,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1685219.0,,1591805.0,,93414.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,201802,Y,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1673728.0,,1579801.0,,93927.0,,,,17283.0,,4449.0,,8376.0,,6166.0,,2487.0,,,,,,, +AZ,Arizona,201802,Y,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1673728.0,,1579801.0,,93927.0,,,,17283.0,,4449.0,,8376.0,,6166.0,,2487.0,,,,,,, +AZ,Arizona,201803,Y,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1678077.0,,1581222.0,,96855.0,,,,19897.0,,5148.0,,9094.0,,8978.0,,2242.0,,,,,,, +AZ,Arizona,201803,Y,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1678077.0,,1581222.0,,96855.0,,,,19897.0,,5148.0,,9094.0,,8978.0,,2242.0,,,,,,, +AZ,Arizona,201804,Y,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1679239.0,,1579537.0,,99702.0,,,,20127.0,,5143.0,,8482.0,,5641.0,,1380.0,,,,,,, +AZ,Arizona,201804,Y,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1679239.0,,1579537.0,,99702.0,,,,20127.0,,5143.0,,8482.0,,5641.0,,1380.0,,,,,,, +AZ,Arizona,201805,Y,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1678798.0,,1580306.0,,98492.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,201805,Y,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1678798.0,,1580306.0,,98492.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,201806,Y,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1683690.0,,1584929.0,,98761.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,201806,Y,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1683690.0,,1584929.0,,98761.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,201807,Y,P,N,113328.0,,0.0,,113328.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1688791.0,,1589042.0,,99749.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,201807,Y,U,Y,113328.0,,0.0,,113328.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1688791.0,,1589042.0,,99749.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,201808,Y,P,N,119772.0,,0.0,,119772.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1691877.0,,1591718.0,,100159.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,201808,Y,U,Y,119772.0,,0.0,,119772.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1691877.0,,1591718.0,,100159.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,201809,Y,P,N,100637.0,,0.0,,100637.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1697061.0,,1592142.0,,104919.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,201809,Y,U,Y,100637.0,,0.0,,100637.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1697061.0,,1592142.0,,104919.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,201810,Y,P,N,111445.0,,0.0,,111445.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1693508.0,,1591124.0,,102384.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,201810,Y,U,Y,111445.0,,0.0,,111445.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1693508.0,,1591124.0,,102384.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,201811,Y,P,N,103771.0,,0.0,,103771.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1695656.0,,1593436.0,,102220.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,201811,Y,U,Y,103771.0,,0.0,,103771.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1701640.0,,1599420.0,,102220.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,201812,Y,P,N,91536.0,,0.0,,91536.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1700470.0,,1597487.0,,102983.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,201812,Y,U,Y,91536.0,,0.0,,91536.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1700470.0,,1597487.0,,102983.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,201901,Y,P,N,112351.0,,0.0,,112351.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1701450.0,,1597610.0,,103840.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,201901,Y,U,Y,112351.0,,0.0,,112351.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1701450.0,,1597610.0,,103840.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,201902,Y,P,N,94300.0,,0.0,,94300.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1701411.0,,1596840.0,,104571.0,,,,18873.0,,7234.0,,17731.0,,3469.0,,2740.0,,,,,,, +AZ,Arizona,201902,Y,U,Y,94300.0,,0.0,,94300.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1701411.0,,1596840.0,,104571.0,,,,18873.0,,7234.0,,17731.0,,3469.0,,2740.0,,,,,,, +AZ,Arizona,201903,Y,P,N,102019.0,,0.0,,102019.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1703074.0,,1598692.0,,104382.0,,,,20660.0,,7842.0,,17852.0,,3685.0,,2495.0,,,,,,, +AZ,Arizona,201903,Y,U,Y,102019.0,,0.0,,102019.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1703074.0,,1598692.0,,104382.0,,,,20660.0,,7842.0,,17852.0,,3685.0,,2495.0,,,,,,, +AZ,Arizona,201904,Y,P,N,101454.0,,0.0,,101454.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1702739.0,,1599598.0,,103141.0,,,,22150.0,,7901.0,,17402.0,,3468.0,,2164.0,,,,,,, +AZ,Arizona,201904,Y,U,Y,101454.0,,0.0,,101454.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1702739.0,,1599598.0,,103141.0,,,,22150.0,,7901.0,,17402.0,,3468.0,,2164.0,,,,,,, +AZ,Arizona,201905,Y,P,N,108127.0,,0.0,,108127.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1697945.0,,1596372.0,,101573.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,201905,Y,U,Y,108127.0,,0.0,,108127.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1697945.0,,1596372.0,,101573.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,201906,Y,P,N,99470.0,,0.0,,99470.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1705679.0,,1604805.0,,100874.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,201906,Y,U,Y,99470.0,,0.0,,99470.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1705679.0,,1604805.0,,100874.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,201907,Y,P,N,112109.0,,0.0,,112109.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1715655.0,,1614557.0,,101098.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,201907,Y,U,Y,112109.0,,0.0,,112109.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1715655.0,,1614557.0,,101098.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,201908,Y,P,N,116957.0,,0.0,,116957.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1722540.0,,1621721.0,,100819.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,201908,Y,U,Y,116957.0,,0.0,,116957.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1722540.0,,1621721.0,,100819.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,201909,Y,P,N,109308.0,,0.0,,109308.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1725477.0,,1624952.0,,100525.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,201909,Y,U,Y,109308.0,,0.0,,109308.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1725477.0,,1624952.0,,100525.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,201910,Y,P,N,117684.0,,0.0,,117684.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1719616.0,,1620566.0,,99050.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,201910,Y,U,Y,117684.0,,0.0,,117684.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1719616.0,,1620566.0,,99050.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,201911,Y,P,N,98064.0,,0.0,,98064.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1716801.0,,1618910.0,,97891.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,201911,Y,U,Y,98064.0,,0.0,,98064.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1716801.0,,1618910.0,,97891.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,201912,Y,P,N,94909.0,,0.0,,94909.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1708073.0,,1610623.0,,97450.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,201912,Y,U,Y,94909.0,,0.0,,94909.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1708073.0,,1610623.0,,97450.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,202001,Y,P,N,106155.0,,0.0,,106155.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1702632.0,,1605917.0,,96715.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,202001,Y,U,Y,106155.0,,0.0,,106155.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1702632.0,,1605917.0,,96715.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,202002,Y,P,N,87142.0,,0.0,,87142.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1705789.0,,1608272.0,,97517.0,,,,20986.0,,10317.0,,12791.0,,4140.0,,2399.0,,,,,,, +AZ,Arizona,202002,Y,U,Y,87142.0,,0.0,,87142.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1705789.0,,1608272.0,,97517.0,,,,20986.0,,10317.0,,12791.0,,4140.0,,2399.0,,,,,,, +AZ,Arizona,202003,Y,P,N,101256.0,,0.0,,101256.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1746744.0,,1645851.0,,100893.0,,,,22527.0,,12021.0,,10858.0,,2718.0,,3499.0,,,,,,, +AZ,Arizona,202003,Y,U,Y,101256.0,,0.0,,101256.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1746744.0,,1645851.0,,100893.0,,,,22527.0,,12021.0,,10858.0,,2718.0,,3499.0,,,,,,, +AZ,Arizona,202004,Y,P,N,84566.0,,0.0,,84566.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1781233.0,,1680112.0,,101121.0,,,,14217.0,,12404.0,,27835.0,,9008.0,,3027.0,,,,,,, +AZ,Arizona,202004,Y,U,Y,84566.0,,0.0,,84566.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1781233.0,,1680112.0,,101121.0,,,,14217.0,,12404.0,,27835.0,,9008.0,,3027.0,,,,,,, +AZ,Arizona,202005,Y,P,N,63387.0,,0.0,,63387.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1817362.0,,1714470.0,,102892.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,202005,Y,U,Y,63387.0,,0.0,,63387.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1817362.0,,1714470.0,,102892.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,202006,Y,P,N,66374.0,,0.0,,66374.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1839932.0,,1735141.0,,104791.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,202006,Y,U,Y,66374.0,,0.0,,66374.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1839932.0,,1735141.0,,104791.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,202007,Y,P,N,82612.0,,0.0,,82612.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1862408.0,,1754618.0,,107790.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,202007,Y,U,Y,82612.0,,0.0,,82612.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1862408.0,,1754618.0,,107790.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,202008,Y,P,N,92884.0,,0.0,,92884.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1887382.0,,1777992.0,,109390.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,202008,Y,U,Y,92884.0,,0.0,,92884.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1887382.0,,1777992.0,,109390.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,202009,Y,P,N,94441.0,,0.0,,94441.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1903428.0,,1791620.0,,111808.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,202009,Y,U,Y,94441.0,,0.0,,94441.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1903428.0,,1791620.0,,111808.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,202010,Y,P,N,97927.0,,0.0,,97927.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1924686.0,,1810171.0,,114515.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,202010,Y,U,Y,97927.0,,0.0,,97927.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1924686.0,,1810171.0,,114515.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,202011,Y,P,N,78956.0,,0.0,,78956.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1942802.0,,1825481.0,,117321.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,202011,Y,U,Y,78956.0,,0.0,,78956.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1942802.0,,1825481.0,,117321.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,202012,Y,P,N,73798.0,,0.0,,73798.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1963007.0,,1843452.0,,119555.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,202012,Y,U,Y,73798.0,,0.0,,73798.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1963007.0,,1843452.0,,119555.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,202101,Y,P,N,67905.0,,0.0,,67905.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1981809.0,,1860386.0,,121423.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,202101,Y,U,Y,67905.0,,0.0,,67905.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1981809.0,,1860386.0,,121423.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,202102,Y,P,N,60661.0,,0.0,,60661.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1998341.0,,1875137.0,,123204.0,,,,10864.0,,6020.0,,14748.0,,2069.0,,1111.0,,,,,,, +AZ,Arizona,202102,Y,U,Y,60661.0,,0.0,,60661.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1998341.0,,1875137.0,,123204.0,,,,10864.0,,6020.0,,14748.0,,2069.0,,1111.0,,,,,,, +AZ,Arizona,202103,Y,P,N,64308.0,,0.0,,64308.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,2011270.0,,1886377.0,,124893.0,,,,11354.0,,6894.0,,15150.0,,3190.0,,167.0,,,,,,, +AZ,Arizona,202103,Y,U,Y,64308.0,,0.0,,64308.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,2011270.0,,1886377.0,,124893.0,,,,11354.0,,6894.0,,15150.0,,3190.0,,167.0,,,,,,, +AZ,Arizona,202104,Y,P,N,63341.0,,0.0,,63341.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,2027065.0,,1900330.0,,126735.0,,,,11426.0,,6462.0,,12625.0,,3346.0,,1571.0,,,,,,, +AZ,Arizona,202104,Y,U,Y,63341.0,,0.0,,63341.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,2027065.0,,1900330.0,,126735.0,,,,11426.0,,6462.0,,12625.0,,3346.0,,1571.0,,,,,,, +AZ,Arizona,202105,Y,P,N,67619.0,,0.0,,67619.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,2044604.0,,1916492.0,,128112.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,202105,Y,U,Y,67619.0,,0.0,,67619.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,2044604.0,,1916492.0,,128112.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,202106,Y,P,N,78334.0,,0.0,,78334.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,2059556.0,,1929445.0,,130111.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,202106,Y,U,Y,78334.0,,0.0,,78334.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,2059556.0,,1929445.0,,130111.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,202107,Y,P,N,55179.0,,0.0,,55179.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,2072102.0,,1940386.0,,131716.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,202107,Y,U,Y,55179.0,,0.0,,55179.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,2072102.0,,1940386.0,,131716.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,202108,Y,P,N,97180.0,,0.0,,97180.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,2088145.0,,1954910.0,,133235.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,202108,Y,U,Y,97180.0,,0.0,,97180.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,2088145.0,,1954910.0,,133235.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,202109,Y,P,N,99212.0,,0.0,,99212.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,2101598.0,,1967773.0,,133825.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,202109,Y,U,Y,99212.0,,0.0,,99212.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,2101598.0,,1967773.0,,133825.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,202110,Y,P,N,97240.0,,0.0,,97240.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,2113571.0,,1979294.0,,134277.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,202110,Y,U,Y,97240.0,,0.0,,97240.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,2113571.0,,1979294.0,,134277.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,202111,Y,P,N,85285.0,,0.0,,85285.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,2128187.0,,1992731.0,,135456.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,202111,Y,U,Y,85285.0,,0.0,,85285.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,2128187.0,,1992731.0,,135456.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,202112,Y,P,N,81522.0,,0.0,,81522.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,2139682.0,,2003218.0,,136464.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,202112,Y,U,Y,81522.0,,0.0,,81522.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,2139682.0,,2003218.0,,136464.0,,,,,,,,,,,,,,,,,,, +AZ,Arizona,202201,Y,P,N,86564.0,,0.0,,86564.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,2155732.0,,2018099.0,,137633.0,,,,11271.0,,4467.0,,24609.0,,5681.0,,1614.0,,,,,,, +AZ,Arizona,202201,Y,U,Y,86564.0,,0.0,,86564.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,2155732.0,,2018099.0,,137633.0,,,,11271.0,,4467.0,,24609.0,,5681.0,,1614.0,,,,,,, +AZ,Arizona,202202,Y,P,N,69507.0,,0.0,,69507.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,2169228.0,,2031463.0,,137765.0,,,,9308.0,,4211.0,,18446.0,,2202.0,,1381.0,,,,,,, +AZ,Arizona,202202,Y,U,Y,69507.0,,0.0,,69507.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,2169228.0,,2031463.0,,137765.0,,,,9308.0,,4211.0,,18446.0,,2202.0,,1381.0,,,,,,, +AZ,Arizona,202203,Y,P,N,84474.0,,0.0,,84474.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,2178981.0,,2040517.0,,138464.0,,,,11535.0,,4520.0,,18235.0,,1648.0,,1379.0,,,,,,, +AZ,Arizona,202203,Y,U,Y,84474.0,,0.0,,84474.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,2178981.0,,2040517.0,,138464.0,,,,11535.0,,4520.0,,18235.0,,1648.0,,1379.0,,,,,,, +AZ,Arizona,202204,Y,P,N,78074.0,,0.0,,78074.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,2192656.0,,2053047.0,,139609.0,,,,10741.0,,4296.0,,14231.0,,1858.0,,1247.0,,,,,,, +AZ,Arizona,202204,Y,U,Y,78074.0,,0.0,,78074.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,2192656.0,,2053047.0,,139609.0,,,,10741.0,,4296.0,,14231.0,,1858.0,,1247.0,,,,,,, +AZ,Arizona,202205,Y,P,N,80632.0,,0.0,,80632.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,2206792.0,,2066864.0,,139928.0,,,,10155.0,,4417.0,,16494.0,,1500.0,,965.0,,,,,,, +AZ,Arizona,202205,Y,U,Y,80632.0,,0.0,,80632.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,2206792.0,,2066864.0,,139928.0,,,,10155.0,,4417.0,,16494.0,,1500.0,,965.0,,,,,,, +AZ,Arizona,202206,Y,P,N,79789.0,,0.0,,79789.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,2216371.0,,2076270.0,,140101.0,,,,9229.0,,4010.0,,12699.0,,1353.0,,1025.0,,,,,,, +AZ,Arizona,202206,Y,U,Y,79789.0,,0.0,,79789.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,2216371.0,,2076270.0,,140101.0,,,,9229.0,,4010.0,,12699.0,,1353.0,,1025.0,,,,,,, +AZ,Arizona,202207,Y,P,N,93694.0,,0.0,,93694.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,2227971.0,,2087366.0,,140605.0,,,,12066.0,,4152.0,,9813.0,,6880.0,,1301.0,,,,,,, +AZ,Arizona,202207,Y,U,Y,93694.0,,0.0,,93694.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,2227971.0,,2087366.0,,140605.0,,,,12066.0,,4152.0,,9813.0,,6880.0,,1301.0,,,,,,, +AZ,Arizona,202208,Y,P,N,100096.0,,0.0,,100096.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,2245107.0,,2103797.0,,141310.0,,,,13403.0,,4656.0,,14607.0,,4176.0,,1984.0,,,,,,, +AZ,Arizona,202208,Y,U,Y,100096.0,,0.0,,100096.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,2245107.0,,2103797.0,,141310.0,,,,13403.0,,4656.0,,14607.0,,4176.0,,1984.0,,,,,,, +AZ,Arizona,202209,Y,P,N,101735.0,,0.0,,101735.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,2257808.0,,2115269.0,,142539.0,,,,11444.0,,4165.0,,20211.0,,1693.0,,1267.0,,,,,,, +AZ,Arizona,202209,Y,U,Y,101735.0,,0.0,,101735.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,2257808.0,,2115269.0,,142539.0,,,,11444.0,,4165.0,,20211.0,,1693.0,,1267.0,,,,,,, +AZ,Arizona,202210,Y,P,N,99216.0,,0.0,,99216.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,2268007.0,,2123518.0,,144489.0,,,,10867.0,,3574.0,,13502.0,,1605.0,,903.0,,,,,,, +AZ,Arizona,202210,Y,U,Y,99216.0,,0.0,,99216.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,2268007.0,,2123518.0,,144489.0,,,,10867.0,,3574.0,,13502.0,,1605.0,,903.0,,,,,,, +AZ,Arizona,202211,Y,P,N,91160.0,,0.0,,91160.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,2283133.0,,2140101.0,,143032.0,,,,10910.0,,3555.0,,15160.0,,4091.0,,1191.0,,,,,,, +AZ,Arizona,202211,Y,U,Y,91160.0,,0.0,,91160.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,2283133.0,,2140101.0,,143032.0,,,,10910.0,,3555.0,,15160.0,,4091.0,,1191.0,,,,,,, +AZ,Arizona,202212,Y,P,N,86277.0,,0.0,,86277.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,2291196.0,,2143482.0,,147714.0,,,,11384.0,,3489.0,,27851.0,,2674.0,,1342.0,,,,,,, +AZ,Arizona,202212,Y,U,Y,86277.0,,0.0,,86277.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,2291196.0,,2143482.0,,147714.0,,,,11384.0,,3489.0,,27851.0,,2674.0,,1342.0,,,,,,, +AZ,Arizona,202301,Y,P,N,105409.0,,0.0,,105409.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,2309576.0,,2162826.0,,146750.0,,,,12273.0,,4210.0,,23458.0,,6342.0,,1302.0,,,,,,, +AZ,Arizona,202301,Y,U,Y,105409.0,,0.0,,105409.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,2309576.0,,2162826.0,,146750.0,,,,12273.0,,4210.0,,23458.0,,6342.0,,1302.0,,,,,,, +AZ,Arizona,202302,Y,P,N,94257.0,,0.0,,94257.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,2319692.0,,2172058.0,,147634.0,,,,10294.0,,3411.0,,18986.0,,1738.0,,1285.0,,,,,,, +AZ,Arizona,202302,Y,U,Y,94257.0,,0.0,,94257.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,2319692.0,,2172058.0,,147634.0,,,,10294.0,,3411.0,,18986.0,,1738.0,,1285.0,,,,,,, +AZ,Arizona,202303,Y,P,N,106330.0,,0.0,,106330.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,2332111.0,,2184898.0,,147213.0,,,,11691.0,,3979.0,,16875.0,,1717.0,,998.0,,531247.0,Does not include all calls received after business hours; Includes calls for other benefit programs,11.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.139,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +AZ,Arizona,202303,Y,U,Y,106330.0,,0.0,,106330.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,2332111.0,,2184898.0,,147213.0,,,,11691.0,,3979.0,,16875.0,,1717.0,,998.0,,531247.0,Does not include all calls received after business hours; Includes calls for other benefit programs,11.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.139,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +AZ,Arizona,202304,Y,P,N,98825.0,,0.0,,98825.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,2303620.0,,2158929.0,,144691.0,,,,15280.0,Incorrectly includes redeterminations,6225.0,Incorrectly includes redeterminations,13999.0,Incorrectly includes redeterminations,1459.0,Incorrectly includes redeterminations,1009.0,Incorrectly includes redeterminations,461059.0,Does not include all calls received after business hours; Includes calls for other benefit programs; New call center added in reporting period,12.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; New call center added in reporting period,0.142,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; New call center added in reporting period +AZ,Arizona,202304,Y,U,Y,98825.0,,0.0,,98825.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,2303620.0,,2158929.0,,144691.0,,,,15280.0,Incorrectly includes redeterminations,6225.0,Incorrectly includes redeterminations,13999.0,Incorrectly includes redeterminations,1459.0,Incorrectly includes redeterminations,1009.0,Incorrectly includes redeterminations,461059.0,Does not include all calls received after business hours; Includes calls for other benefit programs; New call center added in reporting period,12.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; New call center added in reporting period,0.142,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; New call center added in reporting period +AZ,Arizona,202305,Y,P,N,118108.0,,0.0,,118108.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,2283588.0,,2141319.0,,142269.0,,,,19356.0,Incorrectly includes redeterminations,8081.0,Incorrectly includes redeterminations,17329.0,Incorrectly includes redeterminations,1901.0,Incorrectly includes redeterminations,1252.0,Incorrectly includes redeterminations,627158.0,Does not include all calls received after business hours; Includes calls for other benefit programs,21.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.179,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +AZ,Arizona,202305,Y,U,Y,118108.0,,0.0,,118108.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,2283588.0,,2141319.0,,142269.0,,,,19356.0,Incorrectly includes redeterminations,8081.0,Incorrectly includes redeterminations,17329.0,Incorrectly includes redeterminations,1901.0,Incorrectly includes redeterminations,1252.0,Incorrectly includes redeterminations,627158.0,Does not include all calls received after business hours; Includes calls for other benefit programs,21.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.179,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +AZ,Arizona,202306,Y,P,N,121839.0,,0.0,,121839.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,2181664.0,,2048651.0,,133013.0,,,,25817.0,Incorrectly includes redeterminations,10815.0,Incorrectly includes redeterminations,20694.0,Incorrectly includes redeterminations,2952.0,Incorrectly includes redeterminations,1469.0,Incorrectly includes redeterminations,674685.0,Does not include all calls received after business hours; Includes calls for other benefit programs,18.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.178,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +AZ,Arizona,202306,Y,U,Y,121839.0,,0.0,,121839.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,2181664.0,,2048651.0,,133013.0,,,,25817.0,Incorrectly includes redeterminations,10815.0,Incorrectly includes redeterminations,20694.0,Incorrectly includes redeterminations,2952.0,Incorrectly includes redeterminations,1469.0,Incorrectly includes redeterminations,674685.0,Does not include all calls received after business hours; Includes calls for other benefit programs,18.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.178,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +AZ,Arizona,202307,Y,P,N,111729.0,,0.0,,111729.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,2134921.0,,2007607.0,,127314.0,,,,24706.0,Incorrectly includes redeterminations,10840.0,Incorrectly includes redeterminations,23845.0,Incorrectly includes redeterminations,2799.0,Incorrectly includes redeterminations,1057.0,Incorrectly includes redeterminations,766593.0,Does not include all calls received after business hours; Includes calls for other benefit programs,34.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.227,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +AZ,Arizona,202307,Y,U,Y,111729.0,,0.0,,111729.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,2134921.0,,2007607.0,,127314.0,,,,24706.0,Incorrectly includes redeterminations,10840.0,Incorrectly includes redeterminations,23845.0,Incorrectly includes redeterminations,2799.0,Incorrectly includes redeterminations,1057.0,Incorrectly includes redeterminations,766593.0,Does not include all calls received after business hours; Includes calls for other benefit programs,34.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.227,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +AZ,Arizona,202308,Y,P,N,125644.0,,0.0,,125644.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,2108891.0,,1984537.0,,124354.0,,,,26386.0,,11477.0,,30106.0,,3013.0,,1259.0,,1159356.0,Does not include all calls received after business hours; Includes calls for other benefit programs,31.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.212,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +AZ,Arizona,202308,Y,U,Y,125644.0,,0.0,,125644.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,2108891.0,,1984537.0,,124354.0,,,,26386.0,,11477.0,,30106.0,,3013.0,,1259.0,,1159356.0,Does not include all calls received after business hours; Includes calls for other benefit programs,31.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.212,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +AZ,Arizona,202309,Y,P,N,107458.0,,0.0,,107458.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,2016756.0,,1894814.0,,121942.0,,,,19042.0,,6170.0,,23692.0,,3457.0,,1296.0,,365189.0,Does not include all calls received after business hours; Includes calls for other benefit programs,15.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.216,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +AZ,Arizona,202309,Y,U,Y,107458.0,,0.0,,107458.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,2016756.0,,1894814.0,,121942.0,,,,19042.0,,6170.0,,23692.0,,3457.0,,1296.0,,365189.0,Does not include all calls received after business hours; Includes calls for other benefit programs,15.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.216,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +AZ,Arizona,202310,Y,P,N,131093.0,,0.0,,131093.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,2052705.0,,1931065.0,,121640.0,,,,24687.0,,7909.0,,30309.0,,5245.0,,1153.0,,120709.0,Does not include all calls received after business hours,6.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.093,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AZ,Arizona,202310,Y,U,Y,131093.0,,0.0,,131093.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,2052705.0,,1931065.0,,121640.0,,,,24687.0,,7909.0,,30309.0,,5245.0,,1153.0,,,Does not include all calls received after business hours,,Does not include all calls received after business hours; Includes only calls transferred to a live agent,,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AZ,Arizona,202311,Y,P,N,111888.0,,0.0,,111888.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,2040084.0,,1917798.0,,122286.0,,,,26459.0,,6099.0,,29981.0,,4682.0,,1181.0,,105667.0,Does not include all calls received after business hours,5.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.082,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AZ,Arizona,202311,Y,U,Y,111888.0,,0.0,,111888.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,2040084.0,,1917798.0,,122286.0,,,,26459.0,,6099.0,,29981.0,,4682.0,,1181.0,,105667.0,Does not include all calls received after business hours,5.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.082,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AZ,Arizona,202312,Y,P,N,107203.0,,0.0,,107203.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,2037255.0,,1913793.0,,123462.0,,,,25694.0,,6613.0,,35840.0,,6458.0,,1168.0,,95704.0,Does not include all calls received after business hours,5.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.079,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AZ,Arizona,202312,Y,U,Y,107203.0,,0.0,,107203.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,2037255.0,,1913793.0,,123462.0,,,,25694.0,,6613.0,,35840.0,,6458.0,,1168.0,,95704.0,Does not include all calls received after business hours,5.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.079,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AZ,Arizona,202401,Y,P,N,79096.0,,0.0,,79096.0,,36087.0,,3421.0,,39508.0,,0.0,Unable to provide data due to system limitations,2031553.0,,1908284.0,,123269.0,,,,29518.0,,8340.0,,36709.0,,10494.0,,1178.0,,110829.0,Does not include all calls received after business hours,5.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.077,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AZ,Arizona,202401,Y,U,Y,79096.0,,0.0,,79096.0,,36087.0,,3421.0,,39508.0,,0.0,Unable to provide data due to system limitations,2031553.0,,1908284.0,,123269.0,,,,29518.0,,8340.0,,36709.0,,10494.0,,1178.0,,110829.0,Does not include all calls received after business hours,5.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.077,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AZ,Arizona,202402,Y,P,N,68954.0,,0.0,,68954.0,,31440.0,,2852.0,,34292.0,,0.0,Unable to provide data due to system limitations,2040639.0,,1915533.0,,125106.0,,,,25288.0,,6858.0,,30513.0,,5513.0,,887.0,,95477.0,Does not include all calls received after business hours,6.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.1,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AZ,Arizona,202402,Y,U,Y,68954.0,,0.0,,68954.0,,31440.0,,2852.0,,34292.0,,0.0,Unable to provide data due to system limitations,2040639.0,,1915533.0,,125106.0,,,,25288.0,,6858.0,,30513.0,,5513.0,,887.0,,95477.0,Does not include all calls received after business hours,6.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.1,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AZ,Arizona,202403,Y,P,N,87757.0,,0.0,,87757.0,,30964.0,,2794.0,,33758.0,,0.0,Unable to provide data due to system limitations,2049752.0,,1923176.0,,126576.0,,,,25318.0,,7272.0,,23511.0,,5225.0,,1140.0,,96917.0,Does not include all calls received after business hours,5.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.094,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AZ,Arizona,202403,Y,U,Y,87757.0,,0.0,,87757.0,,30964.0,,2794.0,,33758.0,,0.0,Unable to provide data due to system limitations,2049752.0,,1923176.0,,126576.0,,,,25318.0,,7272.0,,23511.0,,5225.0,,1140.0,,96917.0,Does not include all calls received after business hours,5.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.094,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AZ,Arizona,202404,Y,P,N,46035.0,,0.0,,46035.0,,35116.0,,2850.0,,37966.0,,0.0,Unable to provide data due to system limitations,2032704.0,,1906198.0,,126506.0,,,,26735.0,,7409.0,,25889.0,,4389.0,,890.0,,91722.0,Does not include all calls received after business hours,5.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.1,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AZ,Arizona,202404,Y,U,Y,46035.0,,0.0,,46035.0,,35116.0,,2850.0,,37966.0,,0.0,Unable to provide data due to system limitations,2032704.0,,1906198.0,,126506.0,,,,26735.0,,7409.0,,25889.0,,4389.0,,890.0,,91722.0,Does not include all calls received after business hours,5.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.1,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AZ,Arizona,202405,Y,P,N,49494.0,,0.0,,49494.0,,36408.0,,2785.0,,39193.0,,846530.0,,2025230.0,,1896946.0,,128284.0,,,,26143.0,,5845.0,,22920.0,,6232.0,,644.0,,96466.0,Does not include all calls received after business hours,5.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.073,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AZ,Arizona,202405,Y,U,Y,49494.0,,0.0,,49494.0,,36408.0,,2785.0,,39193.0,,846530.0,,2025230.0,,1896946.0,,128284.0,,,,26143.0,,5845.0,,22920.0,,6232.0,,644.0,,96466.0,Does not include all calls received after business hours,5.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.073,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AZ,Arizona,202406,Y,P,N,44820.0,,0.0,,44820.0,,32354.0,,2415.0,,34769.0,,845760.0,,2018755.0,,1890596.0,,128159.0,,,,25205.0,,5802.0,,19655.0,,5231.0,,1667.0,,84722.0,Does not include all calls received after business hours,5.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.074,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AZ,Arizona,202406,Y,U,Y,44820.0,,0.0,,44820.0,,32354.0,,2415.0,,34769.0,,845760.0,,2018755.0,,1890596.0,,128159.0,,,,25205.0,,5802.0,,19655.0,,5231.0,,1667.0,,84722.0,Does not include all calls received after business hours,5.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.074,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AZ,Arizona,202407,Y,P,N,34798.0,,0.0,,34798.0,,34737.0,,2677.0,,37414.0,,842652.0,,2004314.0,,1877216.0,,127098.0,,1161662.0,,27729.0,,6796.0,,21289.0,,4616.0,,1487.0,,85938.0,Does not include all calls received after business hours,7.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.117,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AZ,Arizona,202407,Y,U,Y,34798.0,,0.0,,34798.0,,34737.0,,2677.0,,37414.0,,842652.0,,2004314.0,,1877216.0,,127098.0,,1161662.0,,27729.0,,6796.0,,21289.0,,4616.0,,1487.0,,85938.0,Does not include all calls received after business hours,7.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.117,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AZ,Arizona,202408,Y,P,N,37183.0,,0.0,,37183.0,,37817.0,,3324.0,,41141.0,,840849.0,,1994710.0,,1869385.0,,125325.0,,1153861.0,,27697.0,,6737.0,,20651.0,,11323.0,,4519.0,,94566.0,Does not include all calls received after business hours,6.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.086,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AZ,Arizona,202408,Y,U,Y,37183.0,,0.0,,37183.0,,37817.0,,3324.0,,41141.0,,840849.0,,1994710.0,,1869385.0,,125325.0,,1153861.0,,27697.0,,6737.0,,20651.0,,11323.0,,4519.0,,94566.0,Does not include all calls received after business hours,6.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.086,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AZ,Arizona,202409,Y,P,N,32506.0,,0.0,,32506.0,,32151.0,,2703.0,,34854.0,,836539.0,,1975515.0,,1848285.0,,127230.0,,1138976.0,,23355.0,,5130.0,,22395.0,,11267.0,,2698.0,,81920.0,Does not include all calls received after business hours,6.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.093,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AZ,Arizona,202409,Y,U,Y,32506.0,,0.0,,32506.0,,32151.0,,2703.0,,34854.0,,836539.0,,1975515.0,,1848285.0,,127230.0,,1138976.0,,23355.0,,5130.0,,22395.0,,11267.0,,2698.0,,81920.0,Does not include all calls received after business hours,6.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.093,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AZ,Arizona,202410,Y,P,N,35207.0,,0.0,,35207.0,,34789.0,,2562.0,,37351.0,,833327.0,,1963200.0,,1837274.0,,125926.0,,1129873.0,,25500.0,,6740.0,,19963.0,,6970.0,,2684.0,,75214.0,Does not include all calls received after business hours,7.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.103,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AZ,Arizona,202410,Y,U,Y,35207.0,,0.0,,35207.0,,34789.0,,2562.0,,37351.0,,833327.0,,1963200.0,,1837274.0,,125926.0,,1129873.0,,25500.0,,6740.0,,19963.0,,6970.0,,2684.0,,75214.0,Does not include all calls received after business hours,7.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.103,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AZ,Arizona,202411,Y,P,N,42985.0,,0.0,,42985.0,,33854.0,,2907.0,,36761.0,,825906.0,,1934256.0,,1810967.0,,123289.0,,1108350.0,,24703.0,,5966.0,,15631.0,,11805.0,,1512.0,,73903.0,Does not include all calls received after business hours,7.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.127,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AZ,Arizona,202411,Y,U,Y,42985.0,,0.0,,42985.0,,33854.0,,2907.0,,36761.0,,825906.0,,1934256.0,,1810967.0,,123289.0,,1108350.0,,24703.0,,5966.0,,15631.0,,11805.0,,1512.0,,73903.0,Does not include all calls received after business hours,7.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.127,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AZ,Arizona,202412,Y,P,N,46266.0,,0.0,,46266.0,,36290.0,,3371.0,,39661.0,,814873.0,,1899615.0,,1778734.0,,120881.0,,1084742.0,,25550.0,,5956.0,,21120.0,,11767.0,,2083.0,,53893.0,Does not include all calls received after business hours,4.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.135,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AZ,Arizona,202412,Y,U,Y,46266.0,,0.0,,46266.0,,36290.0,,3371.0,,39661.0,,814873.0,,1899615.0,,1778734.0,,120881.0,,1084742.0,,25550.0,,5956.0,,21120.0,,11767.0,,2083.0,,53893.0,Does not include all calls received after business hours,4.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.135,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AZ,Arizona,202501,Y,P,N,42567.0,,0.0,,42567.0,,39627.0,,3920.0,,43547.0,,806168.0,,1872834.0,,1754999.0,,117835.0,,1066666.0,,29254.0,,8654.0,,25928.0,,24471.0,,19958.0,,80224.0,Does not include all calls received after business hours,6.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.167,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AZ,Arizona,202501,Y,U,Y,42567.0,,0.0,,42567.0,,39627.0,,3920.0,,43547.0,,806168.0,,1872834.0,,1754999.0,,117835.0,,1066666.0,,29254.0,,8654.0,,25928.0,,24471.0,,19958.0,,80224.0,Does not include all calls received after business hours,6.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.167,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AZ,Arizona,202502,Y,P,N,30656.0,,0.0,,30656.0,,35139.0,,3502.0,,38641.0,,800905.0,,1859290.0,,1741232.0,,118058.0,,1058385.0,,23078.0,,10410.0,,27617.0,,7088.0,,2681.0,,66351.0,Does not include all calls received after business hours,4.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.128,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AZ,Arizona,202502,Y,U,Y,30656.0,,0.0,,30656.0,,35139.0,,3502.0,,38641.0,,800905.0,,1859290.0,,1741232.0,,118058.0,,1058385.0,,23078.0,,10410.0,,27617.0,,7088.0,,2681.0,,66351.0,Does not include all calls received after business hours,4.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.128,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AZ,Arizona,202503,Y,P,N,32782.0,,0.0,,32782.0,,35045.0,,3430.0,,38475.0,,796057.0,,1849039.0,,1731858.0,,117181.0,,1052982.0,,24256.0,,10123.0,,23259.0,,5131.0,,2130.0,,73898.0,Does not include all calls received after business hours,4.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.117,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AZ,Arizona,202503,Y,U,Y,32782.0,,0.0,,32782.0,,35045.0,,3430.0,,38475.0,,796057.0,,1849039.0,,1731858.0,,117181.0,,1052982.0,,24256.0,,10123.0,,23259.0,,5131.0,,2130.0,,73898.0,Does not include all calls received after business hours,4.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.117,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AZ,Arizona,202504,Y,P,N,33703.0,,0.0,,33703.0,,38496.0,,3696.0,,42192.0,,792152.0,,1830028.0,,1713183.0,,116845.0,,1037876.0,,24422.0,,12313.0,,24875.0,,3484.0,,1483.0,,73754.0,Does not include all calls received after business hours,4.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.118,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AZ,Arizona,202504,Y,U,Y,33703.0,,0.0,,33703.0,,38496.0,,3696.0,,42192.0,,792152.0,,1830028.0,,1713183.0,,116845.0,,1037876.0,,24422.0,,12313.0,,24875.0,,3484.0,,1483.0,,73754.0,Does not include all calls received after business hours,4.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.118,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AZ,Arizona,202505,Y,P,N,32065.0,,0.0,,32065.0,,34203.0,,3422.0,,37625.0,,787506.0,,1818912.0,,1702775.0,,116137.0,,1031406.0,,25363.0,,10117.0,,24293.0,,3632.0,,1648.0,,65662.0,Does not include all calls received after business hours,3.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.089,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AZ,Arizona,202505,Y,U,Y,32065.0,,0.0,,32065.0,,34203.0,,3422.0,,37625.0,,787506.0,,1818912.0,,1702775.0,,116137.0,,1031406.0,,25363.0,,10117.0,,24293.0,,3632.0,,1648.0,,65662.0,Does not include all calls received after business hours,3.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.089,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AZ,Arizona,202506,Y,P,N,34465.0,,0.0,,34465.0,,34643.0,,3605.0,,38248.0,,776639.0,,1793424.0,,1678419.0,,115005.0,,1016785.0,,25878.0,,9881.0,,20160.0,,4690.0,,1623.0,,60453.0,Does not include all calls received after business hours,3.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.109,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AZ,Arizona,202506,Y,U,Y,34465.0,,0.0,,34465.0,,34643.0,,3605.0,,38248.0,,776639.0,,1793424.0,,1678419.0,,115005.0,,1016785.0,,25878.0,,9881.0,,20160.0,,4690.0,,1623.0,,60453.0,Does not include all calls received after business hours,3.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.109,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AZ,Arizona,202507,Y,P,N,35804.0,,0.0,,35804.0,,32631.0,,2998.0,,35629.0,,776202.0,,1788695.0,,1674282.0,,114413.0,,1012493.0,,25498.0,,6590.0,,19299.0,,6718.0,,2743.0,,64091.0,Does not include all calls received after business hours,4.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.129,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AZ,Arizona,202507,Y,U,Y,35804.0,,0.0,,35804.0,,32631.0,,2998.0,,35629.0,,776202.0,,1788695.0,,1674282.0,,114413.0,,1012493.0,,25498.0,,6590.0,,19299.0,,6718.0,,2743.0,,64091.0,Does not include all calls received after business hours,4.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.129,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AZ,Arizona,202508,Y,P,N,37250.0,,0.0,,37250.0,,32831.0,,3185.0,,36016.0,,767389.0,,1761638.0,,1646143.0,,115495.0,,994249.0,,25456.0,,7158.0,,18140.0,,7250.0,,4564.0,,63710.0,Does not include all calls received after business hours,5.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.149,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AZ,Arizona,202508,Y,U,Y,37250.0,,0.0,,37250.0,,32831.0,,3185.0,,36016.0,,767389.0,,1761638.0,,1646143.0,,115495.0,,994249.0,,25456.0,,7158.0,,18140.0,,7250.0,,4564.0,,63710.0,Does not include all calls received after business hours,5.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.149,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AZ,Arizona,202509,Y,P,N,36472.0,,0.0,,36472.0,,26643.0,,2973.0,,29616.0,,760947.0,,1744625.0,,1628913.0,,115712.0,,983678.0,,20525.0,,4745.0,,19388.0,,12268.0,,4148.0,,64355.0,Does not include all calls received after business hours,4.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.131,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AZ,Arizona,202509,Y,U,Y,36472.0,,0.0,,36472.0,,26643.0,,2973.0,,29616.0,,760947.0,,1744625.0,,1628913.0,,115712.0,,983678.0,,20525.0,,4745.0,,19388.0,,12268.0,,4148.0,,64355.0,Does not include all calls received after business hours,4.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.131,Does not include all calls received after business hours; Includes only calls transferred to a live agent +AZ,Arizona,202510,Y,P,N,36854.0,,0.0,,36854.0,,25562.0,,2333.0,,27895.0,,751998.0,,1720153.0,,1605769.0,,114384.0,,968155.0,,18753.0,,3718.0,,17975.0,,12464.0,,3998.0,,65860.0,Does not include all calls received after business hours,5.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.152,Does not include all calls received after business hours; Includes only calls transferred to a live agent +CA,California,201309,N,U,Y,,,,,,,,,,,,,,,7755381.0,,,,,,,,,,,,,,,,,,,,,,, +CA,California,201706,Y,P,N,163743.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,163743.0,,161761.0,Does Not Include All Medicaid Determinations Made At Application,12486.0,Does Not Include All CHIP Determinations Made At Application,174247.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,5147878.0,,12213234.0,,10933222.0,,1280012.0,,,,,,,,,,,,,,,,,,, +CA,California,201706,Y,U,Y,163743.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,163743.0,,162289.0,Does Not Include All Medicaid Determinations Made At Application,12486.0,Does Not Include All CHIP Determinations Made At Application,174775.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,5181237.0,,12293428.0,,11004981.0,,1288447.0,,,,,,,,,,,,,,,,,,, +CA,California,201707,Y,P,N,148595.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,148595.0,,148682.0,Does Not Include All Medicaid Determinations Made At Application,10213.0,Does Not Include All CHIP Determinations Made At Application,158895.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,5129215.0,,12182095.0,,10903473.0,,1278622.0,,,,,,,,,,,,,,,,,,, +CA,California,201707,Y,U,Y,148595.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,148595.0,,148733.0,Does Not Include All Medicaid Determinations Made At Application,10213.0,Does Not Include All CHIP Determinations Made At Application,158946.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,5170276.0,,12277389.0,,10988391.0,,1288998.0,,,,,,,,,,,,,,,,,,, +CA,California,201708,Y,P,N,180390.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,180390.0,,164568.0,Does Not Include All Medicaid Determinations Made At Application,12561.0,Does Not Include All CHIP Determinations Made At Application,177129.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,5156201.0,,12233859.0,,10940569.0,,1293290.0,,,,,,,,,,,,,,,,,,, +CA,California,201708,Y,U,Y,180390.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,180390.0,,164578.0,Does Not Include All Medicaid Determinations Made At Application,12561.0,Does Not Include All CHIP Determinations Made At Application,177139.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,5188669.0,,12310936.0,,11010221.0,,1300715.0,,,,,,,,,,,,,,,,,,, +CA,California,201709,Y,P,N,150780.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,150780.0,,162872.0,Does Not Include All Medicaid Determinations Made At Application,11939.0,Does Not Include All CHIP Determinations Made At Application,174811.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,5136737.0,,12201514.0,,10906303.0,,1295211.0,,,,,,,,,,,,,,,,,,, +CA,California,201709,Y,U,Y,150780.0,,0.0,,150780.0,,162875.0,,11939.0,,174814.0,,5168103.0,,12268887.0,,10966252.0,,1302635.0,,,,,,,,,,,,,,,,,,, +CA,California,201710,Y,P,N,165040.0,,0.0,,165040.0,,165600.0,,11952.0,,177552.0,,5114440.0,,12153496.0,,10857259.0,,1296237.0,,,,,,,,,,,,,,,,,,, +CA,California,201710,Y,U,Y,165040.0,,0.0,,165040.0,,165600.0,,11952.0,,177552.0,,5145644.0,,12227560.0,,10924224.0,,1303336.0,,,,,,,,,,,,,,,,,,, +CA,California,201711,Y,P,N,236257.0,,0.0,,236257.0,,155199.0,,11959.0,,167158.0,,5084390.0,,12097065.0,,10805454.0,,1291611.0,,,,,,,,,,,,,,,,,,, +CA,California,201711,Y,U,Y,236257.0,,0.0,,236257.0,,155204.0,,11959.0,,167163.0,,5124462.0,,12194344.0,,10892189.0,,1302155.0,,,,,,,,,,,,,,,,,,, +CA,California,201712,Y,P,N,251890.0,,0.0,,251890.0,,160472.0,,12901.0,,173373.0,,5074298.0,,12096392.0,,10800685.0,,1295707.0,,,,,,,,,,,,,,,,,,, +CA,California,201712,Y,U,Y,251890.0,,0.0,,251890.0,,160475.0,,12901.0,,173376.0,,5124031.0,,12220546.0,,10911820.0,,1308726.0,,,,,,,,,,,,,,,,,,, +CA,California,201801,Y,P,N,231090.0,,0.0,,231090.0,,172819.0,,15423.0,,188242.0,,5083974.0,,12103881.0,,10803299.0,,1300582.0,,,,,,,,,,,,,,,,,,, +CA,California,201801,Y,U,Y,231090.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,231090.0,,172824.0,Does Not Include All Medicaid Determinations Made At Application,15423.0,Does Not Include All CHIP Determinations Made At Application,188247.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,5083974.0,,12103881.0,,10803299.0,,1300582.0,,,,,,,,,,,,,,,,,,, +CA,California,201802,Y,P,N,182818.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,182818.0,,167178.0,Does Not Include All Medicaid Determinations Made At Application,15031.0,Does Not Include All CHIP Determinations Made At Application,182209.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,5098261.0,,12132921.0,,10825344.0,,1307577.0,,,,18704.0,Does not include all MAGI determinations on applications,14502.0,Does not include all MAGI determinations on applications,25903.0,Does not include all MAGI determinations on applications,12311.0,Does not include all MAGI determinations on applications,12429.0,Does not include all MAGI determinations on applications,,,,,, +CA,California,201802,Y,U,Y,182818.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,182818.0,,167179.0,Does Not Include All Medicaid Determinations Made At Application,15031.0,Does Not Include All CHIP Determinations Made At Application,182210.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,5131976.0,,12215946.0,,10898599.0,,1317347.0,,,,18704.0,Does not include all MAGI determinations on applications,14502.0,Does not include all MAGI determinations on applications,25903.0,Does not include all MAGI determinations on applications,12311.0,Does not include all MAGI determinations on applications,12429.0,Does not include all MAGI determinations on applications,,,,,, +CA,California,201803,Y,P,N,171095.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,171095.0,,170837.0,Does Not Include All Medicaid Determinations Made At Application,15140.0,Does Not Include All CHIP Determinations Made At Application,185977.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,5089565.0,,12115113.0,,10806573.0,,1308540.0,,,,19127.0,Does not include all MAGI determinations on applications,16052.0,Does not include all MAGI determinations on applications,26955.0,Does not include all MAGI determinations on applications,12938.0,Does not include all MAGI determinations on applications,9946.0,Does not include all MAGI determinations on applications,,,,,, +CA,California,201803,Y,U,Y,171095.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,171095.0,,170838.0,Does Not Include All Medicaid Determinations Made At Application,15140.0,Does Not Include All CHIP Determinations Made At Application,185978.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,5121657.0,,12193802.0,,10876767.0,,1317035.0,,,,19127.0,Does not include all MAGI determinations on applications,16052.0,Does not include all MAGI determinations on applications,26955.0,Does not include all MAGI determinations on applications,12938.0,Does not include all MAGI determinations on applications,9946.0,Does not include all MAGI determinations on applications,,,,,, +CA,California,201804,Y,P,N,164485.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,164485.0,,156945.0,Does Not Include All Medicaid Determinations Made At Application,12508.0,Does Not Include All CHIP Determinations Made At Application,169453.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,5064645.0,,12054906.0,,10747607.0,,1307299.0,,,,17084.0,Does not include all MAGI determinations on applications,15844.0,Does not include all MAGI determinations on applications,24321.0,Does not include all MAGI determinations on applications,10023.0,Does not include all MAGI determinations on applications,6237.0,Does not include all MAGI determinations on applications,,,,,, +CA,California,201804,Y,U,Y,164485.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,164485.0,,156945.0,Does Not Include All Medicaid Determinations Made At Application,12508.0,Does Not Include All CHIP Determinations Made At Application,169453.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,5102585.0,,12147513.0,,10830732.0,,1316781.0,,,,17084.0,Does not include all MAGI determinations on applications,15844.0,Does not include all MAGI determinations on applications,24321.0,Does not include all MAGI determinations on applications,10023.0,Does not include all MAGI determinations on applications,6237.0,Does not include all MAGI determinations on applications,,,,,, +CA,California,201805,Y,P,N,167635.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,167635.0,,158965.0,Does Not Include All Medicaid Determinations Made At Application,12258.0,Does Not Include All CHIP Determinations Made At Application,171223.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,5057147.0,,12040183.0,,10735491.0,,1304692.0,,,,,,,,,,,,,,,,,,, +CA,California,201805,Y,U,Y,167635.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,167635.0,,158967.0,Does Not Include All Medicaid Determinations Made At Application,12258.0,Does Not Include All CHIP Determinations Made At Application,171225.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,5086121.0,,12109710.0,,10797473.0,,1312237.0,,,,,,,,,,,,,,,,,,, +CA,California,201806,Y,P,N,156439.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,156439.0,,150580.0,Does Not Include All Medicaid Determinations Made At Application,10818.0,Does Not Include All CHIP Determinations Made At Application,161398.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,5031295.0,,11984671.0,,10684308.0,,1300363.0,,,,,,,,,,,,,,,,,,, +CA,California,201806,Y,U,Y,156439.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,156439.0,,150585.0,Does Not Include All Medicaid Determinations Made At Application,10818.0,Does Not Include All CHIP Determinations Made At Application,161403.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,5065212.0,,12064332.0,,10755540.0,,1308792.0,,,,,,,,,,,,,,,,,,, +CA,California,201807,Y,P,N,165763.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,165763.0,,153506.0,Does Not Include All Medicaid Determinations Made At Application,10917.0,Does Not Include All CHIP Determinations Made At Application,164423.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,5019446.0,,11960965.0,,10661264.0,,1299701.0,,,,,,,,,,,,,,,,,,, +CA,California,201807,Y,U,Y,165763.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,165763.0,,153506.0,Does Not Include All Medicaid Determinations Made At Application,10917.0,Does Not Include All CHIP Determinations Made At Application,164423.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,5062391.0,,12059138.0,,10748634.0,,1310504.0,,,,,,,,,,,,,,,,,,, +CA,California,201808,Y,P,N,181504.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,181504.0,,166695.0,Does Not Include All Medicaid Determinations Made At Application,13411.0,Does Not Include All CHIP Determinations Made At Application,180106.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,5027520.0,,11973907.0,,10674891.0,,1299016.0,,,,,,,,,,,,,,,,,,, +CA,California,201808,Y,U,Y,181504.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,181504.0,,166696.0,Does Not Include All Medicaid Determinations Made At Application,13411.0,Does Not Include All CHIP Determinations Made At Application,180107.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,5063155.0,,12055099.0,,10746671.0,,1308428.0,,,,,,,,,,,,,,,,,,, +CA,California,201809,Y,P,N,151841.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,151841.0,,145617.0,Does Not Include All Medicaid Determinations Made At Application,11128.0,Does Not Include All CHIP Determinations Made At Application,156745.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,5002534.0,,11933367.0,,10637685.0,,1295682.0,,,,,,,,,,,,,,,,,,, +CA,California,201809,Y,U,Y,151841.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,151841.0,,145620.0,Does Not Include All Medicaid Determinations Made At Application,11128.0,Does Not Include All CHIP Determinations Made At Application,156748.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,5037017.0,,12011621.0,,10706541.0,,1305080.0,,,,,,,,,,,,,,,,,,, +CA,California,201810,Y,P,N,210104.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,210104.0,,162826.0,Does Not Include All Medicaid Determinations Made At Application,12766.0,Does Not Include All CHIP Determinations Made At Application,175592.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,4980110.0,,11908665.0,,10612204.0,,1296461.0,,,,,,,,,,,,,,,,,,, +CA,California,201810,Y,U,Y,210104.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,210104.0,,162826.0,Does Not Include All Medicaid Determinations Made At Application,12766.0,Does Not Include All CHIP Determinations Made At Application,175592.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,5012998.0,,11984993.0,,10679957.0,,1305036.0,,,,,,,,,,,,,,,,,,, +CA,California,201811,Y,P,N,214164.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,214164.0,,139537.0,Does Not Include All Medicaid Determinations Made At Application,11492.0,Does Not Include All CHIP Determinations Made At Application,151029.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,4949223.0,,11848844.0,,10556067.0,,1292777.0,,,,,,,,,,,,,,,,,,, +CA,California,201811,Y,U,Y,214164.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,214164.0,,139541.0,Does Not Include All Medicaid Determinations Made At Application,11492.0,Does Not Include All CHIP Determinations Made At Application,151033.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,4994072.0,,11954943.0,,10649768.0,,1305175.0,,,,,,,,,,,,,,,,,,, +CA,California,201812,Y,P,N,220853.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,220853.0,,143745.0,Does Not Include All Medicaid Determinations Made At Application,12141.0,Does Not Include All CHIP Determinations Made At Application,155886.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,4928106.0,,11822272.0,,10532445.0,,1289827.0,,,,,,,,,,,,,,,,,,, +CA,California,201812,Y,U,Y,220853.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,220853.0,,143749.0,Does Not Include All Medicaid Determinations Made At Application,12141.0,Does Not Include All CHIP Determinations Made At Application,155890.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,4971516.0,,11927676.0,,10625303.0,,1302373.0,,,,,,,,,,,,,,,,,,, +CA,California,201901,Y,P,N,236381.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,236381.0,,166676.0,Does Not Include All Medicaid Determinations Made At Application,15837.0,Does Not Include All CHIP Determinations Made At Application,182513.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,4929808.0,,11823859.0,,10530288.0,,1293571.0,,,,,,,,,,,,,,,,,,, +CA,California,201901,Y,U,Y,236381.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,236381.0,,166680.0,Does Not Include All Medicaid Determinations Made At Application,15837.0,Does Not Include All CHIP Determinations Made At Application,182517.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,4972495.0,,11914394.0,,10603177.0,,1311217.0,,,,,,,,,,,,,,,,,,, +CA,California,201902,Y,P,N,160957.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,160957.0,,149919.0,Does Not Include All Medicaid Determinations Made At Application,14302.0,Does Not Include All CHIP Determinations Made At Application,164221.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,4928005.0,,11803882.0,,10503025.0,,1300857.0,,,,15740.0,Does not include all MAGI determinations on applications,12687.0,Does not include all MAGI determinations on applications,25727.0,Does not include all MAGI determinations on applications,11161.0,Does not include all MAGI determinations on applications,12893.0,Does not include all MAGI determinations on applications,,,,,, +CA,California,201902,Y,U,Y,160957.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,160957.0,,149920.0,Does Not Include All Medicaid Determinations Made At Application,14302.0,Does Not Include All CHIP Determinations Made At Application,164222.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,4962936.0,,11884268.0,,10573509.0,,1310759.0,,,,15740.0,Does not include all MAGI determinations on applications,12687.0,Does not include all MAGI determinations on applications,25727.0,Does not include all MAGI determinations on applications,11161.0,Does not include all MAGI determinations on applications,12893.0,Does not include all MAGI determinations on applications,,,,,, +CA,California,201903,Y,P,N,154829.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,154829.0,,153725.0,Does Not Include All Medicaid Determinations Made At Application,13946.0,Does Not Include All CHIP Determinations Made At Application,167671.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,4922525.0,,11793148.0,,10489216.0,,1303932.0,,,,16129.0,Does not include all MAGI determinations on applications,14705.0,Does not include all MAGI determinations on applications,24712.0,Does not include all MAGI determinations on applications,10619.0,Does not include all MAGI determinations on applications,11467.0,Does not include all MAGI determinations on applications,,,,,, +CA,California,201903,Y,U,Y,154829.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,154829.0,,153728.0,Does Not Include All Medicaid Determinations Made At Application,13946.0,Does Not Include All CHIP Determinations Made At Application,167674.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,4956900.0,,11874143.0,,10560707.0,,1313436.0,,,,16129.0,Does not include all MAGI determinations on applications,14705.0,Does not include all MAGI determinations on applications,24712.0,Does not include all MAGI determinations on applications,10619.0,Does not include all MAGI determinations on applications,11467.0,Does not include all MAGI determinations on applications,,,,,, +CA,California,201904,Y,P,N,162234.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,162234.0,,156263.0,Does Not Include All Medicaid Determinations Made At Application,13817.0,Does Not Include All CHIP Determinations Made At Application,170080.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,4896703.0,,11727572.0,,10423721.0,,1303851.0,,,,15688.0,Does not include all MAGI determinations on applications,16067.0,Does not include all MAGI determinations on applications,25260.0,Does not include all MAGI determinations on applications,9492.0,Does not include all MAGI determinations on applications,6967.0,Does not include all MAGI determinations on applications,,,,,, +CA,California,201904,Y,U,Y,162234.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,162234.0,,156263.0,Does Not Include All Medicaid Determinations Made At Application,13817.0,Does Not Include All CHIP Determinations Made At Application,170080.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,4937307.0,,11824373.0,,10509928.0,,1314445.0,,,,15688.0,Does not include all MAGI determinations on applications,16067.0,Does not include all MAGI determinations on applications,25260.0,Does not include all MAGI determinations on applications,9492.0,Does not include all MAGI determinations on applications,6967.0,Does not include all MAGI determinations on applications,,,,,, +CA,California,201905,Y,P,N,164529.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,164529.0,,163835.0,Does Not Include All Medicaid Determinations Made At Application,12629.0,Does Not Include All CHIP Determinations Made At Application,176464.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,4891370.0,,11715252.0,,10414669.0,,1300583.0,,,,,,,,,,,,,,,,,,, +CA,California,201905,Y,U,Y,164529.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,164529.0,,163835.0,Does Not Include All Medicaid Determinations Made At Application,12629.0,Does Not Include All CHIP Determinations Made At Application,176464.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,4925847.0,,11798654.0,,10488884.0,,1309770.0,,,,,,,,,,,,,,,,,,, +CA,California,201906,Y,P,N,153566.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,153566.0,,149649.0,Does Not Include All Medicaid Determinations Made At Application,10684.0,Does Not Include All CHIP Determinations Made At Application,160333.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,4871452.0,,11686020.0,,10390661.0,,1295359.0,,,,,,,,,,,,,,,,,,, +CA,California,201906,Y,U,Y,153566.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,153566.0,,149649.0,Does Not Include All Medicaid Determinations Made At Application,10684.0,Does Not Include All CHIP Determinations Made At Application,160333.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,4896374.0,,11744007.0,,10441601.0,,1302406.0,,,,,,,,,,,,,,,,,,, +CA,California,201907,Y,P,N,176698.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,176698.0,,167271.0,Does Not Include All Medicaid Determinations Made At Application,11738.0,Does Not Include All CHIP Determinations Made At Application,179009.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,4842807.0,,11625691.0,,10336184.0,,1289507.0,,,,,,,,,,,,,,,,,,, +CA,California,201907,Y,U,Y,176698.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,176698.0,,167271.0,Does Not Include All Medicaid Determinations Made At Application,11738.0,Does Not Include All CHIP Determinations Made At Application,179009.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,4896086.0,,11743500.0,,10439839.0,,1303661.0,,,,,,,,,,,,,,,,,,, +CA,California,201908,Y,P,N,173329.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,173329.0,,168543.0,Does Not Include All Medicaid Determinations Made At Application,13305.0,Does Not Include All CHIP Determinations Made At Application,181848.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,4872474.0,,11669917.0,,10371362.0,,1298555.0,,,,,,,,,,,,,,,,,,, +CA,California,201908,Y,U,Y,173329.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,173329.0,,168543.0,Does Not Include All Medicaid Determinations Made At Application,13305.0,Does Not Include All CHIP Determinations Made At Application,181848.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,4908538.0,,11752681.0,,10444841.0,,1307840.0,,,,,,,,,,,,,,,,,,, +CA,California,201909,Y,P,N,155867.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,155867.0,,156911.0,Does Not Include All Medicaid Determinations Made At Application,12202.0,Does Not Include All CHIP Determinations Made At Application,169113.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,4855328.0,,11643125.0,,10344701.0,,1298424.0,,,,,,,,,,,,,,,,,,, +CA,California,201909,Y,U,Y,155867.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,155867.0,,156911.0,Does Not Include All Medicaid Determinations Made At Application,12202.0,Does Not Include All CHIP Determinations Made At Application,169113.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,4893256.0,,11728031.0,,10419822.0,,1308209.0,,,,,,,,,,,,,,,,,,, +CA,California,201910,Y,P,N,178291.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,178291.0,,162019.0,Does Not Include All Medicaid Determinations Made At Application,12796.0,Does Not Include All CHIP Determinations Made At Application,174815.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,4842484.0,,11625083.0,,10318715.0,,1306368.0,,,,,,,,,,,,,,,,,,, +CA,California,201910,Y,U,Y,178291.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,178291.0,,162019.0,Does Not Include All Medicaid Determinations Made At Application,12796.0,Does Not Include All CHIP Determinations Made At Application,174815.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,4874521.0,,11697526.0,,10382097.0,,1315429.0,,,,,,,,,,,,,,,,,,, +CA,California,201911,Y,P,N,188768.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,188768.0,,141422.0,Does Not Include All Medicaid Determinations Made At Application,11249.0,Does Not Include All CHIP Determinations Made At Application,152671.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,4810691.0,,11548401.0,,10243773.0,,1304628.0,,,,,,,,,,,,,,,,,,, +CA,California,201911,Y,U,Y,188768.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,188768.0,,141422.0,Does Not Include All Medicaid Determinations Made At Application,11249.0,Does Not Include All CHIP Determinations Made At Application,152671.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,4842435.0,,11622664.0,,10309314.0,,1313350.0,,,,,,,,,,,,,,,,,,, +CA,California,201912,Y,P,N,200344.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,200344.0,,146232.0,Does Not Include All Medicaid Determinations Made At Application,11660.0,Does Not Include All CHIP Determinations Made At Application,157892.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,4773035.0,,11465576.0,,10167172.0,,1298404.0,,,,,,,,,,,,,,,,,,, +CA,California,201912,Y,U,Y,200344.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,200344.0,,146232.0,Does Not Include All Medicaid Determinations Made At Application,11660.0,Does Not Include All CHIP Determinations Made At Application,157892.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,4824710.0,,11588323.0,,10275195.0,,1313128.0,,,,,,,,,,,,,,,,,,, +CA,California,202001,Y,P,N,220943.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,220943.0,,166823.0,Does Not Include All Medicaid Determinations Made At Application,15041.0,Does Not Include All CHIP Determinations Made At Application,181864.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,4769117.0,,11512864.0,,10213647.0,,1299217.0,,,,,,,,,,,,,,,,,,, +CA,California,202001,Y,U,Y,220943.0,,0.0,,220943.0,,166823.0,,15041.0,,181864.0,,4815946.0,,11614902.0,,10300580.0,,1314322.0,,,,,,,,,,,,,,,,,,, +CA,California,202002,Y,P,N,178503.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,178503.0,,181946.0,Does Not Include All Medicaid Determinations Made At Application,17916.0,Does Not Include All CHIP Determinations Made At Application,199862.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,4763801.0,,11484357.0,,10182382.0,,1301975.0,,,,29825.0,Includes some non-MAGI determinations on applications; Does not include all MAGI determinations on applications,27455.0,Includes some non-MAGI determinations on applications; Does not include all MAGI determinations on applications,64170.0,Includes some non-MAGI determinations on applications; Does not include all MAGI determinations on applications,33661.0,Includes some non-MAGI determinations on applications; Does not include all MAGI determinations on applications,48429.0,Includes some non-MAGI determinations on applications; Does not include all MAGI determinations on applications,,,,,, +CA,California,202002,Y,U,Y,178503.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,178503.0,,181946.0,Does Not Include All Medicaid Determinations Made At Application,17916.0,Does Not Include All CHIP Determinations Made At Application,199862.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,4806615.0,,11590601.0,,10274859.0,,1315742.0,,,,29825.0,Includes some non-MAGI determinations on applications; Does not include all MAGI determinations on applications,27455.0,Includes some non-MAGI determinations on applications; Does not include all MAGI determinations on applications,64170.0,Includes some non-MAGI determinations on applications; Does not include all MAGI determinations on applications,33661.0,Includes some non-MAGI determinations on applications; Does not include all MAGI determinations on applications,48429.0,Includes some non-MAGI determinations on applications; Does not include all MAGI determinations on applications,,,,,, +CA,California,202003,Y,P,N,165906.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,165906.0,,172135.0,Does Not Include All Medicaid Determinations Made At Application,17941.0,Does Not Include All CHIP Determinations Made At Application,190076.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,4747073.0,,11450896.0,,10146536.0,,1304360.0,,,,28175.0,Includes some non-MAGI determinations on applications; Does not include all MAGI determinations on applications,30821.0,Includes some non-MAGI determinations on applications; Does not include all MAGI determinations on applications,58344.0,Includes some non-MAGI determinations on applications; Does not include all MAGI determinations on applications,38897.0,Includes some non-MAGI determinations on applications; Does not include all MAGI determinations on applications,48592.0,Includes some non-MAGI determinations on applications; Does not include all MAGI determinations on applications,,,,,, +CA,California,202003,Y,U,Y,165906.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,165906.0,,172135.0,Does Not Include All Medicaid Determinations Made At Application,17941.0,Does Not Include All CHIP Determinations Made At Application,190076.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,4793477.0,,11576877.0,,10263185.0,,1313692.0,,,,28175.0,Includes some non-MAGI determinations on applications; Does not include all MAGI determinations on applications,30821.0,Includes some non-MAGI determinations on applications; Does not include all MAGI determinations on applications,58344.0,Includes some non-MAGI determinations on applications; Does not include all MAGI determinations on applications,38897.0,Includes some non-MAGI determinations on applications; Does not include all MAGI determinations on applications,48592.0,Includes some non-MAGI determinations on applications; Does not include all MAGI determinations on applications,,,,,, +CA,California,202004,Y,P,N,181032.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,181032.0,,182453.0,Does Not Include All Medicaid Determinations Made At Application,14284.0,Does Not Include All CHIP Determinations Made At Application,196737.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,4758270.0,,11540623.0,,10240492.0,,1300131.0,,,,26324.0,Includes some non-MAGI determinations on applications; Does not include all MAGI determinations on applications,38416.0,Includes some non-MAGI determinations on applications; Does not include all MAGI determinations on applications,73002.0,Includes some non-MAGI determinations on applications; Does not include all MAGI determinations on applications,31343.0,Includes some non-MAGI determinations on applications; Does not include all MAGI determinations on applications,45644.0,Includes some non-MAGI determinations on applications; Does not include all MAGI determinations on applications,,,,,, +CA,California,202004,Y,U,Y,181032.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,181032.0,,182453.0,Does Not Include All Medicaid Determinations Made At Application,14284.0,Does Not Include All CHIP Determinations Made At Application,196737.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,4788308.0,,11622708.0,,10318968.0,,1303740.0,,,,26324.0,Includes some non-MAGI determinations on applications; Does not include all MAGI determinations on applications,38416.0,Includes some non-MAGI determinations on applications; Does not include all MAGI determinations on applications,73002.0,Includes some non-MAGI determinations on applications; Does not include all MAGI determinations on applications,31343.0,Includes some non-MAGI determinations on applications; Does not include all MAGI determinations on applications,45644.0,Includes some non-MAGI determinations on applications; Does not include all MAGI determinations on applications,,,,,, +CA,California,202005,Y,P,N,143469.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,143469.0,,162372.0,Does Not Include All Medicaid Determinations Made At Application,13194.0,Does Not Include All CHIP Determinations Made At Application,175566.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,4789369.0,,11669795.0,,10380774.0,,1289021.0,,,,,,,,,,,,,,,,,,, +CA,California,202005,Y,U,Y,143469.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,143469.0,,162372.0,Does Not Include All Medicaid Determinations Made At Application,13194.0,Does Not Include All CHIP Determinations Made At Application,175566.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,4815991.0,,11740127.0,,10448023.0,,1292104.0,,,,,,,,,,,,,,,,,,, +CA,California,202006,Y,P,N,148524.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,148524.0,,169741.0,Does Not Include All Medicaid Determinations Made At Application,12978.0,Does Not Include All CHIP Determinations Made At Application,182719.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,4845851.0,,11847711.0,,10561031.0,,1286680.0,,,,,,,,,,,,,,,,,,, +CA,California,202006,Y,U,Y,148524.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,148524.0,,169741.0,Does Not Include All Medicaid Determinations Made At Application,12978.0,Does Not Include All CHIP Determinations Made At Application,182719.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,4845851.0,,11847711.0,,10561031.0,,1286680.0,,,,,,,,,,,,,,,,,,, +CA,California,202007,Y,P,N,157938.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,157938.0,,172266.0,Does Not Include All Medicaid Determinations Made At Application,12417.0,Does Not Include All CHIP Determinations Made At Application,184683.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,4851611.0,,11899370.0,,10615782.0,,1283588.0,,,,,,,,,,,,,,,,,,, +CA,California,202007,Y,U,Y,157938.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,157938.0,,172266.0,Does Not Include All Medicaid Determinations Made At Application,12417.0,Does Not Include All CHIP Determinations Made At Application,184683.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,4896135.0,,12016056.0,,10725497.0,,1290559.0,,,,,,,,,,,,,,,,,,, +CA,California,202008,Y,P,N,143968.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,143968.0,,161113.0,Does Not Include All Medicaid Determinations Made At Application,11848.0,Does Not Include All CHIP Determinations Made At Application,172961.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,4898917.0,,12053848.0,,10765802.0,,1288046.0,,,,,,,,,,,,,,,,,,, +CA,California,202008,Y,U,Y,143968.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,143968.0,,161113.0,Does Not Include All Medicaid Determinations Made At Application,11848.0,Does Not Include All CHIP Determinations Made At Application,172961.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,4923732.0,,12116855.0,,10826435.0,,1290420.0,,,,,,,,,,,,,,,,,,, +CA,California,202009,Y,P,N,140042.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,140042.0,,176089.0,Does Not Include All Medicaid Determinations Made At Application,11483.0,Does Not Include All CHIP Determinations Made At Application,187572.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,4921173.0,,12148521.0,,10860126.0,,1288395.0,,,,,,,,,,,,,,,,,,, +CA,California,202009,Y,U,Y,140042.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,140042.0,,176089.0,Does Not Include All Medicaid Determinations Made At Application,11483.0,Does Not Include All CHIP Determinations Made At Application,187572.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,4943261.0,,12212599.0,,10922274.0,,1290325.0,,,,,,,,,,,,,,,,,,, +CA,California,202010,Y,P,N,144560.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,144560.0,,174785.0,Does Not Include All Medicaid Determinations Made At Application,10019.0,Does Not Include All CHIP Determinations Made At Application,184804.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,4936098.0,,12236735.0,,10947142.0,,1289593.0,,,,,,,,,,,,,,,,,,, +CA,California,202010,Y,U,Y,144560.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,144560.0,,174785.0,Does Not Include All Medicaid Determinations Made At Application,10019.0,Does Not Include All CHIP Determinations Made At Application,184804.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,4959133.0,,12298138.0,,11006603.0,,1291535.0,,,,,,,,,,,,,,,,,,, +CA,California,202011,Y,P,N,167587.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,167587.0,,151125.0,Does Not Include All Medicaid Determinations Made At Application,8802.0,Does Not Include All CHIP Determinations Made At Application,159927.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,4949938.0,,12313086.0,,11021968.0,,1291118.0,,,,,,,,,,,,,,,,,,, +CA,California,202011,Y,U,Y,167587.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,167587.0,,151125.0,Does Not Include All Medicaid Determinations Made At Application,8802.0,Does Not Include All CHIP Determinations Made At Application,159927.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,4966534.0,,12359049.0,,11066366.0,,1292683.0,,,,,,,,,,,,,,,,,,, +CA,California,202012,Y,P,N,177152.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,177152.0,,150648.0,Does Not Include All Medicaid Determinations Made At Application,9938.0,Does Not Include All CHIP Determinations Made At Application,160586.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,4956224.0,,12411517.0,,11119026.0,,1292491.0,,,,,,,,,,,,,,,,,,, +CA,California,202012,Y,U,Y,177152.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,177152.0,,150648.0,Does Not Include All Medicaid Determinations Made At Application,9938.0,Does Not Include All CHIP Determinations Made At Application,160586.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,4981740.0,,12491149.0,,11196553.0,,1294596.0,,,,,,,,,,,,,,,,,,, +CA,California,202101,Y,P,N,168090.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,168090.0,,150689.0,Does Not Include All Medicaid Determinations Made At Application,9862.0,Does Not Include All CHIP Determinations Made At Application,160551.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,4979673.0,,12530093.0,,11235172.0,,1294921.0,,,,,,,,,,,,,,,,,,, +CA,California,202101,Y,U,Y,168090.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,168090.0,,150689.0,Does Not Include All Medicaid Determinations Made At Application,9862.0,Does Not Include All CHIP Determinations Made At Application,160551.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,4998996.0,,12586999.0,,11289937.0,,1297062.0,,,,,,,,,,,,,,,,,,, +CA,California,202102,Y,P,N,134454.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,134454.0,,147493.0,Does Not Include All Medicaid Determinations Made At Application,9688.0,Does Not Include All CHIP Determinations Made At Application,157181.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,4992329.0,,12589137.0,,11294761.0,,1294376.0,,,,22885.0,Does not include all MAGI determinations on applications,29799.0,Does not include all MAGI determinations on applications,55170.0,Does not include all MAGI determinations on applications,26184.0,Does not include all MAGI determinations on applications,27009.0,Does not include all MAGI determinations on applications,,,,,, +CA,California,202102,Y,U,Y,134454.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,134454.0,,147493.0,Does Not Include All Medicaid Determinations Made At Application,9688.0,Does Not Include All CHIP Determinations Made At Application,157181.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,5011097.0,,12643124.0,,11346930.0,,1296194.0,,,,22885.0,Does not include all MAGI determinations on applications,29799.0,Does not include all MAGI determinations on applications,55170.0,Does not include all MAGI determinations on applications,26184.0,Does not include all MAGI determinations on applications,27009.0,Does not include all MAGI determinations on applications,,,,,, +CA,California,202103,Y,P,N,141334.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,141334.0,,138978.0,Does Not Include All Medicaid Determinations Made At Application,10796.0,Does Not Include All CHIP Determinations Made At Application,149774.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,5010640.0,,12670740.0,,11376144.0,,1294596.0,,,,25061.0,Does not include all MAGI determinations on applications,30786.0,Does not include all MAGI determinations on applications,46319.0,Does not include all MAGI determinations on applications,22041.0,Does not include all MAGI determinations on applications,17778.0,Does not include all MAGI determinations on applications,,,,,, +CA,California,202103,Y,U,Y,141334.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,141334.0,,138978.0,Does Not Include All Medicaid Determinations Made At Application,10796.0,Does Not Include All CHIP Determinations Made At Application,149774.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,5030858.0,,12724578.0,,11428449.0,,1296129.0,,,,25061.0,Does not include all MAGI determinations on applications,30786.0,Does not include all MAGI determinations on applications,46319.0,Does not include all MAGI determinations on applications,22041.0,Does not include all MAGI determinations on applications,17778.0,Does not include all MAGI determinations on applications,,,,,, +CA,California,202104,Y,P,N,143832.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,143832.0,,121471.0,Does Not Include All Medicaid Determinations Made At Application,9088.0,Does Not Include All CHIP Determinations Made At Application,130559.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,5027445.0,,12752776.0,,11457160.0,,1295616.0,,,,22824.0,Does not include all MAGI determinations on applications,29052.0,Does not include all MAGI determinations on applications,42148.0,Does not include all MAGI determinations on applications,18618.0,Does not include all MAGI determinations on applications,12201.0,Does not include all MAGI determinations on applications,,,,,, +CA,California,202104,Y,U,Y,143832.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,143832.0,,121471.0,Does Not Include All Medicaid Determinations Made At Application,9088.0,Does Not Include All CHIP Determinations Made At Application,130559.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,5042245.0,,12790804.0,,11493507.0,,1297297.0,,,,22824.0,Does not include all MAGI determinations on applications,29052.0,Does not include all MAGI determinations on applications,42148.0,Does not include all MAGI determinations on applications,18618.0,Does not include all MAGI determinations on applications,12201.0,Does not include all MAGI determinations on applications,,,,,, +CA,California,202105,Y,P,N,123827.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,123827.0,,110040.0,Does Not Include All Medicaid Determinations Made At Application,8365.0,Does Not Include All CHIP Determinations Made At Application,118405.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,5036629.0,,12810442.0,,11514302.0,,1296140.0,,,,,,,,,,,,,,,,,,, +CA,California,202105,Y,U,Y,123827.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,123827.0,,110040.0,Does Not Include All Medicaid Determinations Made At Application,8365.0,Does Not Include All CHIP Determinations Made At Application,118405.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,5052218.0,,12850229.0,,11552568.0,,1297661.0,,,,,,,,,,,,,,,,,,, +CA,California,202106,Y,P,N,129020.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,129020.0,,116099.0,Does Not Include All Medicaid Determinations Made At Application,8321.0,Does Not Include All CHIP Determinations Made At Application,124420.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,5046857.0,,12866487.0,,11569327.0,,1297160.0,,,,,,,,,,,,,,,,,,, +CA,California,202106,Y,U,Y,129020.0,,0.0,,129020.0,,116099.0,,8321.0,,124420.0,,5065962.0,,12913441.0,,11614770.0,,1298671.0,,,,,,,,,,,,,,,,,,, +CA,California,202107,Y,P,N,124263.0,,0.0,,124263.0,,112839.0,,7489.0,,120328.0,,5065127.0,,12945248.0,,11645638.0,,1299610.0,,,,,,,,,,,,,,,,,,, +CA,California,202107,Y,U,Y,124263.0,,0.0,,124263.0,,112839.0,,7489.0,,120328.0,,5081072.0,,12983442.0,,11682804.0,,1300638.0,,,,,,,,,,,,,,,,,,, +CA,California,202108,Y,P,N,131114.0,,0.0,,131114.0,,121335.0,,8556.0,,129891.0,,5087983.0,,13017873.0,,11715401.0,,1302472.0,,,,,,,,,,,,,,,,,,, +CA,California,202108,Y,U,Y,131114.0,,0.0,,131114.0,,121335.0,,8556.0,,129891.0,,5105225.0,,13058458.0,,11754524.0,,1303934.0,,,,,,,,,,,,,,,,,,, +CA,California,202109,Y,P,N,130938.0,,0.0,,130938.0,,104141.0,,8001.0,,112142.0,,5097712.0,,13071763.0,,11767542.0,,1304221.0,,,,,,,,,,,,,,,,,,, +CA,California,202109,Y,U,Y,130938.0,,0.0,,130938.0,,104141.0,,8001.0,,112142.0,,5118258.0,,13120745.0,,11815357.0,,1305388.0,,,,,,,,,,,,,,,,,,, +CA,California,202110,Y,P,N,138555.0,,0.0,,138555.0,,95665.0,,6752.0,,102417.0,,5106638.0,,13135464.0,,11831587.0,,1303877.0,,,,,,,,,,,,,,,,,,, +CA,California,202110,Y,U,Y,138555.0,,0.0,,138555.0,,95665.0,,6752.0,,102417.0,,5121854.0,,13173192.0,,11868718.0,,1304474.0,,,,,,,,,,,,,,,,,,, +CA,California,202111,Y,P,N,155396.0,,0.0,,155396.0,,96460.0,,6447.0,,102907.0,,5109607.0,,13179168.0,,11875831.0,,1303337.0,,,,,,,,,,,,,,,,,,, +CA,California,202111,Y,U,Y,155396.0,,0.0,,155396.0,,96460.0,,6447.0,,102907.0,,5128672.0,,13227010.0,,11922748.0,,1304262.0,,,,,,,,,,,,,,,,,,, +CA,California,202112,Y,P,N,154552.0,,0.0,,154552.0,,107083.0,,7302.0,,114385.0,,5122152.0,,13251871.0,,11947941.0,,1303930.0,,,,,,,,,,,,,,,,,,, +CA,California,202112,Y,U,Y,154552.0,,0.0,,154552.0,,107083.0,,7302.0,,114385.0,,5138770.0,,13292295.0,,11987431.0,,1304864.0,,,,,,,,,,,,,,,,,,, +CA,California,202201,Y,P,N,150325.0,,0.0,,150325.0,,109131.0,,7591.0,,116722.0,,5134181.0,,13323616.0,,12018403.0,,1305213.0,,,,33530.0,Does not include all MAGI determinations on applications,24747.0,Does not include all MAGI determinations on applications,44845.0,Does not include all MAGI determinations on applications,30677.0,Does not include all MAGI determinations on applications,37918.0,Does not include all MAGI determinations on applications,,,,,, +CA,California,202201,Y,U,Y,150325.0,,0.0,,150325.0,,109131.0,,7591.0,,116722.0,,5152287.0,,13368893.0,,12062708.0,,1306185.0,,,,33530.0,Does not include all MAGI determinations on applications,24747.0,Does not include all MAGI determinations on applications,44845.0,Does not include all MAGI determinations on applications,30677.0,Does not include all MAGI determinations on applications,37918.0,Does not include all MAGI determinations on applications,,,,,, +CA,California,202202,Y,P,N,131459.0,,0.0,,131459.0,,101994.0,,7218.0,,109212.0,,5141197.0,,13367435.0,,12064935.0,,1302500.0,,,,30050.0,Does not include all MAGI determinations on applications,22097.0,Does not include all MAGI determinations on applications,39717.0,Does not include all MAGI determinations on applications,23786.0,Does not include all MAGI determinations on applications,29173.0,Does not include all MAGI determinations on applications,,,,,, +CA,California,202202,Y,U,Y,131459.0,,0.0,,131459.0,,101994.0,,7218.0,,109212.0,,5159492.0,,13411356.0,,12107977.0,,1303379.0,,,,30050.0,Does not include all MAGI determinations on applications,22097.0,Does not include all MAGI determinations on applications,39717.0,Does not include all MAGI determinations on applications,23786.0,Does not include all MAGI determinations on applications,29173.0,Does not include all MAGI determinations on applications,,,,,, +CA,California,202203,Y,P,N,145764.0,,0.0,,145764.0,,123440.0,,8407.0,,131847.0,,5155387.0,,13429760.0,,12127506.0,,1302254.0,,,,32738.0,Does not include all MAGI determinations on applications,26293.0,Does not include all MAGI determinations on applications,44393.0,Does not include all MAGI determinations on applications,28268.0,Does not include all MAGI determinations on applications,34396.0,Does not include all MAGI determinations on applications,,,,,, +CA,California,202203,Y,U,Y,145764.0,,0.0,,145764.0,,123440.0,,8407.0,,131847.0,,5177494.0,,13482237.0,,12178827.0,,1303410.0,,,,32738.0,Does not include all MAGI determinations on applications,26293.0,Does not include all MAGI determinations on applications,44393.0,Does not include all MAGI determinations on applications,28268.0,Does not include all MAGI determinations on applications,34396.0,Does not include all MAGI determinations on applications,,,,,, +CA,California,202204,Y,P,N,130471.0,,0.0,,130471.0,,110088.0,,7202.0,,117290.0,,5168236.0,,13498561.0,,12200162.0,,1298399.0,,,,27921.0,Does not include all MAGI determinations on applications,26106.0,Does not include all MAGI determinations on applications,45916.0,Does not include all MAGI determinations on applications,26113.0,Does not include all MAGI determinations on applications,31746.0,Does not include all MAGI determinations on applications,,,,,, +CA,California,202204,Y,U,Y,130471.0,,0.0,,130471.0,,110088.0,,7202.0,,117290.0,,5183538.0,,13534548.0,,12235380.0,,1299168.0,,,,27921.0,Does not include all MAGI determinations on applications,26106.0,Does not include all MAGI determinations on applications,45916.0,Does not include all MAGI determinations on applications,26113.0,Does not include all MAGI determinations on applications,31746.0,Does not include all MAGI determinations on applications,,,,,, +CA,California,202205,Y,P,N,118063.0,,14660.0,,132723.0,,106248.0,,6979.0,,113227.0,,5201133.0,,13625983.0,,12334834.0,,1291149.0,,,,60973.0,Does not include all MAGI determinations on applications,58262.0,Does not include all MAGI determinations on applications,77119.0,Does not include all MAGI determinations on applications,58176.0,Does not include all MAGI determinations on applications,57215.0,Does not include all MAGI determinations on applications,,,,,, +CA,California,202205,Y,U,Y,118063.0,,14660.0,,132723.0,,106248.0,,6979.0,,113227.0,,5201133.0,,13625983.0,,12334834.0,,1291149.0,,,,60973.0,Does not include all MAGI determinations on applications,58262.0,Does not include all MAGI determinations on applications,77119.0,Does not include all MAGI determinations on applications,58176.0,Does not include all MAGI determinations on applications,57215.0,Does not include all MAGI determinations on applications,,,,,, +CA,California,202206,Y,P,N,126823.0,,15425.0,,142248.0,,107974.0,,6692.0,,114666.0,,5212670.0,,13688202.0,,12398124.0,,1290078.0,,,,60260.0,Does not include all MAGI determinations on applications,56096.0,Does not include all MAGI determinations on applications,74353.0,Does not include all MAGI determinations on applications,57596.0,Does not include all MAGI determinations on applications,52489.0,Does not include all MAGI determinations on applications,,,,,, +CA,California,202206,Y,U,Y,126823.0,,15425.0,,142248.0,,107974.0,,6692.0,,114666.0,,5212670.0,,13688202.0,,12398124.0,,1290078.0,,,,60260.0,Does not include all MAGI determinations on applications,56096.0,Does not include all MAGI determinations on applications,74353.0,Does not include all MAGI determinations on applications,57596.0,Does not include all MAGI determinations on applications,52489.0,Does not include all MAGI determinations on applications,,,,,, +CA,California,202207,Y,P,N,120214.0,,14388.0,,134602.0,,100388.0,,6146.0,,106534.0,,5222141.0,,13744313.0,,12454462.0,,1289851.0,,,,55931.0,Includes some non-MAGI determinations on applications,51774.0,Includes some non-MAGI determinations on applications,69928.0,Includes some non-MAGI determinations on applications,52273.0,Includes some non-MAGI determinations on applications,47806.0,Includes some non-MAGI determinations on applications,,,,,, +CA,California,202207,Y,U,Y,120214.0,,14388.0,,134602.0,,100388.0,,6146.0,,106534.0,,5221871.0,,13744043.0,,12454462.0,,1289581.0,,,,55931.0,Includes some non-MAGI determinations on applications,51774.0,Includes some non-MAGI determinations on applications,69928.0,Includes some non-MAGI determinations on applications,52273.0,Includes some non-MAGI determinations on applications,47806.0,Includes some non-MAGI determinations on applications,,,,,, +CA,California,202208,Y,P,N,139871.0,,17619.0,,157490.0,,120731.0,,7559.0,,128290.0,,5241933.0,,13820824.0,,12530662.0,,1290162.0,,,,33006.0,Includes some non-MAGI determinations on applications,28255.0,Includes some non-MAGI determinations on applications,52776.0,Includes some non-MAGI determinations on applications,28206.0,Includes some non-MAGI determinations on applications,22926.0,Includes some non-MAGI determinations on applications,,,,,, +CA,California,202208,Y,U,Y,139871.0,,17619.0,,157490.0,,120731.0,,7559.0,,128290.0,,5241933.0,,13820824.0,,12530662.0,,1290162.0,,,,33006.0,Includes some non-MAGI determinations on applications,28255.0,Includes some non-MAGI determinations on applications,52776.0,Includes some non-MAGI determinations on applications,28206.0,Includes some non-MAGI determinations on applications,22926.0,Includes some non-MAGI determinations on applications,,,,,, +CA,California,202209,Y,P,N,131295.0,,20220.0,,151515.0,,114380.0,,6955.0,,121335.0,,5239084.0,,13849800.0,,12560328.0,,1289472.0,,,,30045.0,Includes some non-MAGI determinations on applications,25343.0,Includes some non-MAGI determinations on applications,51083.0,Includes some non-MAGI determinations on applications,28642.0,Includes some non-MAGI determinations on applications,22341.0,Includes some non-MAGI determinations on applications,,,,,, +CA,California,202209,Y,U,Y,131295.0,,20220.0,,151515.0,,114380.0,,6955.0,,121335.0,,5254855.0,,13885444.0,,12595135.0,,1290309.0,,,,30045.0,Includes some non-MAGI determinations on applications,25343.0,Includes some non-MAGI determinations on applications,51083.0,Includes some non-MAGI determinations on applications,28642.0,Includes some non-MAGI determinations on applications,22341.0,Includes some non-MAGI determinations on applications,,,,,, +CA,California,202210,Y,P,N,128371.0,,15936.0,,144307.0,,112132.0,,6860.0,,118992.0,,5241705.0,,13901970.0,,12612287.0,,1289683.0,,,,32009.0,Includes some non-MAGI determinations on applications,25925.0,Includes some non-MAGI determinations on applications,48082.0,Includes some non-MAGI determinations on applications,27528.0,Includes some non-MAGI determinations on applications,24117.0,Includes some non-MAGI determinations on applications,,,,,, +CA,California,202210,Y,U,Y,128371.0,,15936.0,,144307.0,,112132.0,,6860.0,,118992.0,,5257165.0,,13939749.0,,12649339.0,,1290410.0,,,,32009.0,Includes some non-MAGI determinations on applications,25925.0,Includes some non-MAGI determinations on applications,48082.0,Includes some non-MAGI determinations on applications,27528.0,Includes some non-MAGI determinations on applications,24117.0,Includes some non-MAGI determinations on applications,,,,,, +CA,California,202211,Y,P,N,146961.0,,40747.0,,187708.0,,103364.0,,6306.0,,109670.0,,5248356.0,,13959148.0,,12668401.0,,1290747.0,,,,29309.0,Includes some non-MAGI determinations on applications,21843.0,Includes some non-MAGI determinations on applications,49545.0,Includes some non-MAGI determinations on applications,24603.0,Includes some non-MAGI determinations on applications,22849.0,Includes some non-MAGI determinations on applications,,,,,, +CA,California,202211,Y,U,Y,146961.0,,40747.0,,187708.0,,103364.0,,6306.0,,109670.0,,5267845.0,,14009516.0,,12717571.0,,1291945.0,,,,29309.0,Includes some non-MAGI determinations on applications,21843.0,Includes some non-MAGI determinations on applications,49545.0,Includes some non-MAGI determinations on applications,24603.0,Includes some non-MAGI determinations on applications,22849.0,Includes some non-MAGI determinations on applications,,,,,, +CA,California,202212,Y,P,N,134023.0,,30990.0,,165013.0,,112148.0,,7209.0,,119357.0,,5261475.0,,14035625.0,,12743585.0,,1292040.0,,,,30824.0,Includes some non-MAGI determinations on applications,22718.0,Includes some non-MAGI determinations on applications,49666.0,Includes some non-MAGI determinations on applications,40523.0,Includes some non-MAGI determinations on applications,29275.0,Includes some non-MAGI determinations on applications,,,,,, +CA,California,202212,Y,U,Y,134023.0,,30990.0,,165013.0,,112148.0,,7209.0,,119357.0,,5279506.0,,14078007.0,,12784839.0,,1293168.0,,,,30824.0,Includes some non-MAGI determinations on applications,22718.0,Includes some non-MAGI determinations on applications,49666.0,Includes some non-MAGI determinations on applications,40523.0,Includes some non-MAGI determinations on applications,29275.0,Includes some non-MAGI determinations on applications,,,,,, +CA,California,202301,Y,P,N,139756.0,,24205.0,,163961.0,,120061.0,,7819.0,,127880.0,,5277292.0,,14122814.0,,12828621.0,,1294193.0,,,,32852.0,Includes some non-MAGI determinations on applications,23478.0,Includes some non-MAGI determinations on applications,47579.0,Includes some non-MAGI determinations on applications,34511.0,Includes some non-MAGI determinations on applications,50852.0,Includes some non-MAGI determinations on applications,,,,,, +CA,California,202301,Y,U,Y,139756.0,,24205.0,,163961.0,,120061.0,,7819.0,,127880.0,,5298943.0,,14176618.0,,12880690.0,,1295928.0,,,,32852.0,Includes some non-MAGI determinations on applications,23478.0,Includes some non-MAGI determinations on applications,47579.0,Includes some non-MAGI determinations on applications,34511.0,Includes some non-MAGI determinations on applications,50852.0,Includes some non-MAGI determinations on applications,,,,,, +CA,California,202302,Y,P,N,128739.0,,18917.0,,147656.0,,110266.0,,7171.0,,117437.0,,5287031.0,,14175459.0,,12880735.0,,1294724.0,,,,31412.0,Includes some non-MAGI determinations on applications,24708.0,Includes some non-MAGI determinations on applications,46990.0,Includes some non-MAGI determinations on applications,25046.0,Includes some non-MAGI determinations on applications,40668.0,Includes some non-MAGI determinations on applications,,,,,, +CA,California,202302,Y,U,Y,128739.0,,18917.0,,147656.0,,110266.0,,7171.0,,117437.0,,5305033.0,,14218802.0,,12922748.0,,1296054.0,,,,31412.0,Includes some non-MAGI determinations on applications,24708.0,Includes some non-MAGI determinations on applications,46990.0,Includes some non-MAGI determinations on applications,25046.0,Includes some non-MAGI determinations on applications,40668.0,Includes some non-MAGI determinations on applications,,,,,, +CA,California,202303,Y,P,N,116151.0,,37031.0,,153182.0,,125332.0,,7993.0,,133325.0,,5295554.0,,14229292.0,,12931478.0,,1297814.0,,,,41739.0,Includes some non-MAGI determinations on applications,26849.0,Includes some non-MAGI determinations on applications,49162.0,Includes some non-MAGI determinations on applications,27842.0,Includes some non-MAGI determinations on applications,33816.0,Includes some non-MAGI determinations on applications,266143.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,4.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.018,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CA,California,202303,Y,U,Y,116151.0,,37031.0,,153182.0,,125332.0,,7993.0,,133325.0,,5317124.0,,14285643.0,,12987086.0,,1298557.0,,,,41739.0,Includes some non-MAGI determinations on applications,26849.0,Includes some non-MAGI determinations on applications,49162.0,Includes some non-MAGI determinations on applications,27842.0,Includes some non-MAGI determinations on applications,33816.0,Includes some non-MAGI determinations on applications,266143.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,4.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.018,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CA,California,202304,Y,P,N,99894.0,,34653.0,,134547.0,,109459.0,,6229.0,,115688.0,,5302936.0,,14288351.0,,12983973.0,,1304378.0,,,,35251.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,23839.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,38487.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,22795.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,29035.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,228985.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,4.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.01,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CA,California,202304,Y,U,Y,99894.0,,34653.0,,134547.0,,109459.0,,6229.0,,115688.0,,5324017.0,,14344876.0,,13039978.0,,1304898.0,,,,35251.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,23839.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,38487.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,22795.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,29035.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,228985.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,4.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.01,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CA,California,202305,Y,P,N,108720.0,,32182.0,,140902.0,,117651.0,,6934.0,,124585.0,,5315317.0,,14358898.0,,13057126.0,,1301772.0,,,,38212.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,27261.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,45949.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,22640.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,30317.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,240168.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,2.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.043,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CA,California,202305,Y,U,Y,108720.0,,32182.0,,140902.0,,117651.0,,6934.0,,124585.0,,5332027.0,,14401941.0,,13099619.0,,1302322.0,,,,38212.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,27261.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,45949.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,22640.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,30317.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,240168.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,2.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.043,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CA,California,202306,Y,P,N,109670.0,,33399.0,,143069.0,,118168.0,,6977.0,,125145.0,,5321942.0,,14412626.0,,13111485.0,,1301141.0,,,,40602.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,24935.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,42658.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,24731.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,31584.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,221721.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,2.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.009,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CA,California,202306,Y,U,Y,109670.0,,33399.0,,143069.0,,118168.0,,6977.0,,125145.0,,5339904.0,,14462560.0,,13160563.0,,1301997.0,,,,40602.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,24935.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,42658.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,24731.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,31584.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,221721.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,2.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.009,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CA,California,202307,Y,P,N,110424.0,,31628.0,,142052.0,,111890.0,,6739.0,,118629.0,,5290453.0,,14325437.0,,13031948.0,,1293489.0,,,,44375.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,24400.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,41376.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,21423.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,27206.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,214314.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,3.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.012,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CA,California,202307,Y,U,Y,110424.0,,31628.0,,142052.0,,111890.0,,6739.0,,118629.0,,5320102.0,,14399877.0,,13104161.0,,1295716.0,,,,44375.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,24400.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,41376.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,21423.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,27206.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,214314.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,3.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.012,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CA,California,202308,Y,P,N,136850.0,,34948.0,,171798.0,,140177.0,,8614.0,,148791.0,,5307246.0,,14356457.0,,13058115.0,,1298342.0,,,,54374.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,31114.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,52563.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,27465.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,29517.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,249027.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,4.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.009,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CA,California,202308,Y,U,Y,136850.0,,34948.0,,171798.0,,140177.0,,8614.0,,148791.0,,5323417.0,,14397473.0,,13097920.0,,1299553.0,,,,54374.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,31114.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,52563.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,27465.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,29517.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,249027.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,4.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.009,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CA,California,202309,Y,P,N,126223.0,,32200.0,,158423.0,,122081.0,,7783.0,,129864.0,,5229561.0,,14103833.0,,12818626.0,,1285207.0,,,,49313.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,27755.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,46278.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,25401.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,25409.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,227642.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,4.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.024,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CA,California,202309,Y,U,Y,126223.0,,32200.0,,158423.0,,122081.0,,7783.0,,129864.0,,5274445.0,,14219930.0,,12929618.0,,1290312.0,,,,49313.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,27755.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,46278.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,25401.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,25409.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,227642.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,4.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.024,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CA,California,202310,Y,P,N,137502.0,,59074.0,,196576.0,,135216.0,,8754.0,,143970.0,,5202801.0,,14008964.0,,12727660.0,,1281304.0,,,,71723.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,29616.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,49788.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,29226.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,26354.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,254698.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,4.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.037,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CA,California,202310,Y,U,Y,137502.0,,59074.0,,196576.0,,135216.0,,8754.0,,143970.0,,5232314.0,,14085764.0,,12800850.0,,1284914.0,,,,71723.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,29616.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,49788.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,29226.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,26354.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,254698.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,4.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.037,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CA,California,202311,Y,P,N,98332.0,,135879.0,,234211.0,,125846.0,,6615.0,,132461.0,,5157881.0,,13852804.0,,12577134.0,,1275670.0,,,,87272.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,21192.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,40627.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,22832.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,18579.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,287475.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,5.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.016,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CA,California,202311,Y,U,Y,98332.0,,135879.0,,234211.0,,125846.0,,6615.0,,132461.0,,5203103.0,,13976686.0,,12695246.0,,1281440.0,,,,87272.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,21192.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,40627.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,22832.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,18579.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,287475.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,5.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.016,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CA,California,202312,Y,P,N,100580.0,,171193.0,,271773.0,,141125.0,,7791.0,,148916.0,,5142279.0,,13789507.0,,12517306.0,,1272201.0,,,,146836.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,23950.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,41501.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,30501.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,23768.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,374234.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,5.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.011,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CA,California,202312,Y,U,Y,100580.0,,171193.0,,271773.0,,141125.0,,7791.0,,148916.0,,5173149.0,,13805628.0,,12529315.0,,1276313.0,,,,146836.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,23950.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,41501.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,30501.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,23768.0,Includes some non-MAGI determinations on applications; Incorrectly includes redeterminations,374234.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,5.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.011,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CA,California,202401,Y,P,N,138543.0,,145185.0,,283728.0,,194026.0,,10447.0,,204473.0,,5122044.0,,13716259.0,,12456744.0,,1259515.0,,,,151655.0,Includes some non-Medicaid or CHIP determinations on applications; Reflects incorrect start dates for processing time on some reopened applications,28736.0,Includes some non-Medicaid or CHIP determinations on applications; Reflects incorrect start dates for processing time on some reopened applications,47077.0,Includes some non-Medicaid or CHIP determinations on applications; Reflects incorrect start dates for processing time on some reopened applications,32045.0,Includes some non-Medicaid or CHIP determinations on applications; Reflects incorrect start dates for processing time on some reopened applications,40416.0,Includes some non-Medicaid or CHIP determinations on applications; Reflects incorrect start dates for processing time on some reopened applications,486771.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,6.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.034,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CA,California,202401,Y,U,Y,138543.0,,145185.0,,283728.0,,194026.0,,10447.0,,204473.0,,5166271.0,,13836944.0,,12570996.0,,1265948.0,,,,151655.0,Includes some non-Medicaid or CHIP determinations on applications; Reflects incorrect start dates for processing time on some reopened applications,28736.0,Includes some non-Medicaid or CHIP determinations on applications; Reflects incorrect start dates for processing time on some reopened applications,47077.0,Includes some non-Medicaid or CHIP determinations on applications; Reflects incorrect start dates for processing time on some reopened applications,32045.0,Includes some non-Medicaid or CHIP determinations on applications; Reflects incorrect start dates for processing time on some reopened applications,40416.0,Includes some non-Medicaid or CHIP determinations on applications; Reflects incorrect start dates for processing time on some reopened applications,486771.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,6.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.034,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CA,California,202402,Y,P,N,126965.0,,92946.0,,219911.0,,188922.0,,11471.0,,200393.0,,5113532.0,,13690809.0,,12434139.0,,1256670.0,,,,116474.0,Includes some non-Medicaid or CHIP determinations on applications; Reflects incorrect start dates for processing time on some reopened applications,29490.0,Includes some non-Medicaid or CHIP determinations on applications; Reflects incorrect start dates for processing time on some reopened applications,53530.0,Includes some non-Medicaid or CHIP determinations on applications; Reflects incorrect start dates for processing time on some reopened applications,26905.0,Includes some non-Medicaid or CHIP determinations on applications; Reflects incorrect start dates for processing time on some reopened applications,43840.0,Includes some non-Medicaid or CHIP determinations on applications; Reflects incorrect start dates for processing time on some reopened applications,348874.0,Does not include all calls received by call centers,5.0,Does not include all calls received by call centers,0.008,Does not include all calls received by call centers +CA,California,202402,Y,U,Y,126965.0,,92946.0,,219911.0,,188922.0,,11471.0,,200393.0,,5166194.0,,13839566.0,,12575627.0,,1263939.0,,,,116474.0,Includes some non-Medicaid or CHIP determinations on applications; Reflects incorrect start dates for processing time on some reopened applications,29490.0,Includes some non-Medicaid or CHIP determinations on applications; Reflects incorrect start dates for processing time on some reopened applications,53530.0,Includes some non-Medicaid or CHIP determinations on applications; Reflects incorrect start dates for processing time on some reopened applications,26905.0,Includes some non-Medicaid or CHIP determinations on applications; Reflects incorrect start dates for processing time on some reopened applications,43840.0,Includes some non-Medicaid or CHIP determinations on applications; Reflects incorrect start dates for processing time on some reopened applications,348874.0,Does not include all calls received by call centers,5.0,Does not include all calls received by call centers,0.008,Does not include all calls received by call centers +CA,California,202403,Y,P,N,132255.0,,90048.0,,222303.0,,204030.0,,12079.0,,216109.0,,5113279.0,,13695057.0,,12439804.0,,1255253.0,,,,130170.0,Includes some non-Medicaid or CHIP determinations on applications; Reflects incorrect start dates for processing time on some reopened applications,20503.0,Includes some non-Medicaid or CHIP determinations on applications; Reflects incorrect start dates for processing time on some reopened applications,44750.0,Includes some non-Medicaid or CHIP determinations on applications; Reflects incorrect start dates for processing time on some reopened applications,20822.0,Includes some non-Medicaid or CHIP determinations on applications; Reflects incorrect start dates for processing time on some reopened applications,26192.0,Includes some non-Medicaid or CHIP determinations on applications; Reflects incorrect start dates for processing time on some reopened applications,316182.0,Does not include all calls received by call centers,5.0,Does not include all calls received by call centers,0.009,Does not include all calls received by call centers +CA,California,202403,Y,U,Y,132255.0,,90048.0,,222303.0,,204030.0,,12079.0,,216109.0,,5147186.0,,13790911.0,,12531082.0,,1259829.0,,,,130170.0,Includes some non-Medicaid or CHIP determinations on applications; Reflects incorrect start dates for processing time on some reopened applications,20503.0,Includes some non-Medicaid or CHIP determinations on applications; Reflects incorrect start dates for processing time on some reopened applications,44750.0,Includes some non-Medicaid or CHIP determinations on applications; Reflects incorrect start dates for processing time on some reopened applications,20822.0,Includes some non-Medicaid or CHIP determinations on applications; Reflects incorrect start dates for processing time on some reopened applications,26192.0,Includes some non-Medicaid or CHIP determinations on applications; Reflects incorrect start dates for processing time on some reopened applications,316182.0,Does not include all calls received by call centers,5.0,Does not include all calls received by call centers,0.009,Does not include all calls received by call centers +CA,California,202404,Y,P,N,134886.0,,84144.0,,219030.0,,191254.0,,11900.0,,203154.0,,5085648.0,,13617100.0,,12371220.0,,1245880.0,,,,127294.0,Includes some non-Medicaid or CHIP determinations on applications; Reflects incorrect start dates for processing time on some reopened applications,21562.0,Includes some non-Medicaid or CHIP determinations on applications; Reflects incorrect start dates for processing time on some reopened applications,43461.0,Includes some non-Medicaid or CHIP determinations on applications; Reflects incorrect start dates for processing time on some reopened applications,19804.0,Includes some non-Medicaid or CHIP determinations on applications; Reflects incorrect start dates for processing time on some reopened applications,27326.0,Includes some non-Medicaid or CHIP determinations on applications; Reflects incorrect start dates for processing time on some reopened applications,316173.0,Does not include all calls received by call centers,3.0,Does not include all calls received by call centers,0.146,Does not include all calls received by call centers +CA,California,202404,Y,U,Y,134886.0,,84144.0,,219030.0,,191254.0,,11900.0,,203154.0,,5124886.0,,13718156.0,,12466599.0,,1251557.0,,,,127294.0,Includes some non-Medicaid or CHIP determinations on applications; Reflects incorrect start dates for processing time on some reopened applications,21562.0,Includes some non-Medicaid or CHIP determinations on applications; Reflects incorrect start dates for processing time on some reopened applications,43461.0,Includes some non-Medicaid or CHIP determinations on applications; Reflects incorrect start dates for processing time on some reopened applications,19804.0,Includes some non-Medicaid or CHIP determinations on applications; Reflects incorrect start dates for processing time on some reopened applications,27326.0,Includes some non-Medicaid or CHIP determinations on applications; Reflects incorrect start dates for processing time on some reopened applications,316173.0,Does not include all calls received by call centers,3.0,Does not include all calls received by call centers,0.146,Does not include all calls received by call centers +CA,California,202405,Y,P,N,131194.0,,78318.0,,209512.0,,188590.0,,12222.0,,200812.0,,5064581.0,,13541144.0,,12299255.0,,1241889.0,,,,120999.0,Reflects incorrect start dates for processing time on some reopened applications,23346.0,Reflects incorrect start dates for processing time on some reopened applications,47099.0,Reflects incorrect start dates for processing time on some reopened applications,19870.0,Reflects incorrect start dates for processing time on some reopened applications,26154.0,Reflects incorrect start dates for processing time on some reopened applications,289981.0,Does not include all calls received by call centers,3.0,Does not include all calls received by call centers,0.002,Does not include all calls received by call centers +CA,California,202405,Y,U,Y,131194.0,,78318.0,,209512.0,,188590.0,,12222.0,,200812.0,,5108703.0,,13662057.0,,12413515.0,,1248542.0,,,,120999.0,Reflects incorrect start dates for processing time on some reopened applications,23346.0,Reflects incorrect start dates for processing time on some reopened applications,47099.0,Reflects incorrect start dates for processing time on some reopened applications,19870.0,Reflects incorrect start dates for processing time on some reopened applications,26154.0,Reflects incorrect start dates for processing time on some reopened applications,289981.0,Does not include all calls received by call centers,3.0,Does not include all calls received by call centers,0.002,Does not include all calls received by call centers +CA,California,202406,Y,P,N,115147.0,,73741.0,,188888.0,,164183.0,,10479.0,,174662.0,,5040330.0,,13484884.0,,12248486.0,,1236398.0,,,,111420.0,Reflects incorrect start dates for processing time on some reopened applications,21146.0,Reflects incorrect start dates for processing time on some reopened applications,38322.0,Reflects incorrect start dates for processing time on some reopened applications,16288.0,Reflects incorrect start dates for processing time on some reopened applications,22013.0,Reflects incorrect start dates for processing time on some reopened applications,267644.0,Does not include all calls received by call centers,3.0,Does not include all calls received by call centers,0.115,Does not include all calls received by call centers +CA,California,202406,Y,U,Y,115147.0,,73741.0,,188888.0,,164183.0,,10479.0,,174662.0,,5073385.0,,13569483.0,,12327797.0,,1241686.0,,,,111420.0,Reflects incorrect start dates for processing time on some reopened applications,21146.0,Reflects incorrect start dates for processing time on some reopened applications,38322.0,Reflects incorrect start dates for processing time on some reopened applications,16288.0,Reflects incorrect start dates for processing time on some reopened applications,22013.0,Reflects incorrect start dates for processing time on some reopened applications,267644.0,Does not include all calls received by call centers,3.0,Does not include all calls received by call centers,0.115,Does not include all calls received by call centers +CA,California,202407,Y,P,N,132327.0,,74154.0,,206481.0,,184903.0,,12128.0,,197031.0,,5019488.0,,13442757.0,,12209342.0,,1233415.0,,8423269.0,,120776.0,Reflects incorrect start dates for processing time on some reopened applications,23757.0,Reflects incorrect start dates for processing time on some reopened applications,46231.0,Reflects incorrect start dates for processing time on some reopened applications,16999.0,Reflects incorrect start dates for processing time on some reopened applications,24473.0,Reflects incorrect start dates for processing time on some reopened applications,290758.0,Does not include all calls received by call centers,5.0,Does not include all calls received by call centers,0.008,Does not include all calls received by call centers +CA,California,202407,Y,U,Y,132327.0,,74154.0,,206481.0,,184903.0,,12128.0,,197031.0,,5063031.0,,13554050.0,,12314258.0,,1239792.0,,8491019.0,,120776.0,Reflects incorrect start dates for processing time on some reopened applications,23757.0,Reflects incorrect start dates for processing time on some reopened applications,46231.0,Reflects incorrect start dates for processing time on some reopened applications,16999.0,Reflects incorrect start dates for processing time on some reopened applications,24473.0,Reflects incorrect start dates for processing time on some reopened applications,290758.0,Does not include all calls received by call centers,5.0,Does not include all calls received by call centers,0.008,Does not include all calls received by call centers +CA,California,202408,Y,P,N,132851.0,,77689.0,,210540.0,,189681.0,,13625.0,,203306.0,,5016453.0,,13431844.0,,12199763.0,,1232081.0,,8415391.0,,131834.0,Reflects incorrect start dates for processing time on some reopened applications,23699.0,Reflects incorrect start dates for processing time on some reopened applications,46430.0,Reflects incorrect start dates for processing time on some reopened applications,16462.0,Reflects incorrect start dates for processing time on some reopened applications,24090.0,Reflects incorrect start dates for processing time on some reopened applications,285548.0,Does not include all calls received by call centers,5.0,Does not include all calls received by call centers,0.007,Does not include all calls received by call centers +CA,California,202408,Y,U,Y,132851.0,,77689.0,,210540.0,,189681.0,,13625.0,,203306.0,,5070079.0,,13567369.0,,12326102.0,,1241267.0,,8497290.0,,131834.0,Reflects incorrect start dates for processing time on some reopened applications,23699.0,Reflects incorrect start dates for processing time on some reopened applications,46430.0,Reflects incorrect start dates for processing time on some reopened applications,16462.0,Reflects incorrect start dates for processing time on some reopened applications,24090.0,Reflects incorrect start dates for processing time on some reopened applications,285548.0,Does not include all calls received by call centers,5.0,Does not include all calls received by call centers,0.007,Does not include all calls received by call centers +CA,California,202409,Y,P,N,118339.0,,67963.0,,186302.0,,169524.0,,12462.0,,181986.0,,5020022.0,,13450495.0,,12215643.0,,1234852.0,,8430473.0,,109352.0,Reflects incorrect start dates for processing time on some reopened applications,21401.0,Reflects incorrect start dates for processing time on some reopened applications,44776.0,Reflects incorrect start dates for processing time on some reopened applications,18315.0,Reflects incorrect start dates for processing time on some reopened applications,20242.0,Reflects incorrect start dates for processing time on some reopened applications,272058.0,Does not include all calls received by call centers,5.0,Does not include all calls received by call centers,0.017,Does not include all calls received by call centers +CA,California,202409,Y,U,Y,118339.0,,67963.0,,186302.0,,169524.0,,12462.0,,181986.0,,5055527.0,,13539795.0,,12298348.0,,1241447.0,,8484268.0,,109352.0,Reflects incorrect start dates for processing time on some reopened applications,21401.0,Reflects incorrect start dates for processing time on some reopened applications,44776.0,Reflects incorrect start dates for processing time on some reopened applications,18315.0,Reflects incorrect start dates for processing time on some reopened applications,20242.0,Reflects incorrect start dates for processing time on some reopened applications,272058.0,Does not include all calls received by call centers,5.0,Does not include all calls received by call centers,0.017,Does not include all calls received by call centers +CA,California,202410,Y,P,N,130079.0,,95396.0,,225475.0,,189354.0,,13958.0,,203312.0,,5001451.0,,13431928.0,,12199634.0,,1232294.0,,8430477.0,,121949.0,,25074.0,,50968.0,,19140.0,,19713.0,,283628.0,Does not include all calls received by call centers,4.0,Does not include all calls received by call centers,0.099,Does not include all calls received by call centers +CA,California,202410,Y,U,Y,130079.0,,95396.0,,225475.0,,189354.0,,13958.0,,203312.0,,5042218.0,,13530999.0,,12291055.0,,1239944.0,,8488781.0,,121949.0,,25074.0,,50968.0,,19140.0,,19713.0,,283628.0,Does not include all calls received by call centers,4.0,Does not include all calls received by call centers,0.099,Does not include all calls received by call centers +CA,California,202411,Y,P,N,103948.0,,164546.0,,268494.0,,155927.0,,11010.0,,166937.0,,4988256.0,,13407935.0,,12175605.0,,1232330.0,,8419679.0,,145446.0,,20548.0,,43903.0,,16619.0,,14716.0,,244327.0,Does not include all calls received by call centers,4.0,Does not include all calls received by call centers,0.107,Does not include all calls received by call centers +CA,California,202411,Y,U,Y,103948.0,,164546.0,,268494.0,,155927.0,,11010.0,,166937.0,,5028251.0,,13502553.0,,12264045.0,,1238508.0,,8474302.0,,145446.0,,20548.0,,43903.0,,16619.0,,14716.0,,244327.0,Does not include all calls received by call centers,4.0,Does not include all calls received by call centers,0.107,Does not include all calls received by call centers +CA,California,202412,Y,P,N,109889.0,,193480.0,,303369.0,,173167.0,,12178.0,,185345.0,,4980039.0,,13399885.0,,12172695.0,,1227190.0,,8419846.0,,190284.0,,19884.0,,50800.0,,22919.0,,15100.0,,277298.0,Does not include all calls received by call centers,4.0,Does not include all calls received by call centers,0.09,Does not include all calls received by call centers +CA,California,202412,Y,U,Y,109889.0,,193480.0,,303369.0,,173167.0,,12178.0,,185345.0,,5011449.0,,13487072.0,,12254163.0,,1232909.0,,8475623.0,,190284.0,,19884.0,,50800.0,,22919.0,,15100.0,,277298.0,Does not include all calls received by call centers,4.0,Does not include all calls received by call centers,0.09,Does not include all calls received by call centers +CA,California,202501,Y,P,N,129542.0,,162391.0,,291933.0,,185711.0,,14084.0,,199795.0,,4976780.0,,13382585.0,,12152033.0,,1230552.0,,8405805.0,,186095.0,,23413.0,,52480.0,,22412.0,,21977.0,,322348.0,Does not include all calls received by call centers,5.0,Does not include all calls received by call centers,0.109,Does not include all calls received by call centers +CA,California,202501,Y,U,Y,129542.0,,162391.0,,291933.0,,185711.0,,14084.0,,199795.0,,5021152.0,,13507653.0,,12268267.0,,1239386.0,,8486501.0,,186095.0,,23413.0,,52480.0,,22412.0,,21977.0,,322348.0,Does not include all calls received by call centers,5.0,Does not include all calls received by call centers,0.109,Does not include all calls received by call centers +CA,California,202502,Y,P,N,108176.0,,82368.0,,190544.0,,161768.0,,13576.0,,175344.0,,4962639.0,,13362845.0,,12136865.0,,1225980.0,,8400206.0,,114210.0,,20926.0,,49311.0,,16623.0,,19060.0,,260844.0,Does not include all calls received by call centers,13.0,Does not include all calls received by call centers,0.023,Does not include all calls received by call centers +CA,California,202502,Y,U,Y,108176.0,,82368.0,,190544.0,,161768.0,,13576.0,,175344.0,,5010702.0,,13498666.0,,12262804.0,,1235862.0,,8487964.0,,114210.0,,20926.0,,49311.0,,16623.0,,19060.0,,260844.0,Does not include all calls received by call centers,13.0,Does not include all calls received by call centers,0.023,Does not include all calls received by call centers +CA,California,202503,Y,P,N,111540.0,,83814.0,,195354.0,,180455.0,,14745.0,,195200.0,,4969848.0,,13392566.0,,12164108.0,,1228458.0,,8422718.0,,122503.0,,25419.0,,47969.0,,17931.0,,21577.0,,279655.0,Does not include all calls received by call centers,4.0,Does not include all calls received by call centers,0.016,Does not include all calls received by call centers +CA,California,202503,Y,U,Y,111540.0,,83814.0,,195354.0,,180455.0,,14745.0,,195200.0,,4998839.0,,13476132.0,,12241886.0,,1234246.0,,8477293.0,,122503.0,,25419.0,,47969.0,,17931.0,,21577.0,,279655.0,Does not include all calls received by call centers,4.0,Does not include all calls received by call centers,0.016,Does not include all calls received by call centers +CA,California,202504,Y,P,N,117381.0,,78298.0,,195679.0,,181860.0,,14811.0,,196671.0,,4943305.0,,13334947.0,,12111973.0,,1222974.0,,8391642.0,,128053.0,,29639.0,,59218.0,,26437.0,,31822.0,,294165.0,Does not include all calls received by call centers,4.0,Does not include all calls received by call centers,0.018,Does not include all calls received by call centers +CA,California,202504,Y,U,Y,117381.0,,78298.0,,195679.0,,181860.0,,14811.0,,196671.0,,4976086.0,,13429081.0,,12199798.0,,1229283.0,,8452995.0,,128053.0,,29639.0,,59218.0,,26437.0,,31822.0,,294165.0,Does not include all calls received by call centers,4.0,Does not include all calls received by call centers,0.018,Does not include all calls received by call centers +CA,California,202505,Y,P,N,77284.0,,70875.0,,148159.0,,166661.0,,12884.0,,179545.0,,4929202.0,,13305471.0,,12086295.0,,1219176.0,,8376269.0,,114305.0,,24914.0,,47366.0,,14385.0,,11811.0,,274623.0,Does not include all calls received by call centers,4.0,Does not include all calls received by call centers,0.063,Does not include all calls received by call centers +CA,California,202505,Y,U,Y,77284.0,,70875.0,,148159.0,,166661.0,,12884.0,,179545.0,,4965106.0,,13409214.0,,12183309.0,,1225905.0,,8444108.0,,114305.0,,24914.0,,47366.0,,14385.0,,11811.0,,274623.0,Does not include all calls received by call centers,4.0,Does not include all calls received by call centers,0.063,Does not include all calls received by call centers +CA,California,202506,Y,P,N,71175.0,,63629.0,,134804.0,,149178.0,,11274.0,,160452.0,,4922603.0,,13310060.0,,12088385.0,,1221675.0,,8387457.0,,89346.0,,34043.0,,45467.0,,14427.0,,11186.0,,256492.0,Does not include all calls received by call centers,3.0,Does not include all calls received by call centers,0.15,Does not include all calls received by call centers +CA,California,202506,Y,U,Y,71175.0,,63629.0,,134804.0,,149178.0,,11274.0,,160452.0,,4947634.0,,13382455.0,,12156059.0,,1226396.0,,8434821.0,,89346.0,,34043.0,,45467.0,,14427.0,,11186.0,,256492.0,Does not include all calls received by call centers,3.0,Does not include all calls received by call centers,0.15,Does not include all calls received by call centers +CA,California,202507,Y,P,N,78795.0,,60645.0,,139440.0,,152825.0,,11754.0,,164579.0,,4911147.0,,13297637.0,,12075354.0,,1222283.0,,8386490.0,,91089.0,,37789.0,,47508.0,,14069.0,,9138.0,,272635.0,Does not include all calls received by call centers,3.0,Does not include all calls received by call centers,0.243,Does not include all calls received by call centers +CA,California,202507,Y,U,Y,78795.0,,60645.0,,139440.0,,152825.0,,11754.0,,164579.0,,4945975.0,,13394082.0,,12165425.0,,1228657.0,,8448107.0,,91089.0,,37789.0,,47508.0,,14069.0,,9138.0,,272635.0,Does not include all calls received by call centers,3.0,Does not include all calls received by call centers,0.243,Does not include all calls received by call centers +CA,California,202508,Y,P,N,78395.0,,61930.0,,140325.0,,145288.0,,11566.0,,156854.0,,4897448.0,,13226087.0,,11999597.0,,1226490.0,,8328639.0,,89415.0,,38780.0,,46750.0,,13134.0,,7442.0,,256354.0,Does not include all calls received by call centers,2.0,Does not include all calls received by call centers,0.197,Does not include all calls received by call centers +CA,California,202508,Y,U,Y,78395.0,,61930.0,,140325.0,,145288.0,,11566.0,,156854.0,,4920461.0,,13292415.0,,12061800.0,,1230615.0,,8371954.0,,89415.0,,38780.0,,46750.0,,13134.0,,7442.0,,256354.0,Does not include all calls received by call centers,2.0,Does not include all calls received by call centers,0.197,Does not include all calls received by call centers +CA,California,202509,Y,P,N,85373.0,,57179.0,,142552.0,,146803.0,,11238.0,,158041.0,,4863003.0,,13127822.0,,11896822.0,,1231000.0,,8264819.0,,88928.0,,36880.0,,47700.0,,14656.0,,7451.0,,259913.0,Does not include all calls received by call centers,2.0,Does not include all calls received by call centers,0.004,Does not include all calls received by call centers +CA,California,202509,Y,U,Y,85373.0,,57179.0,,142552.0,,146803.0,,11238.0,,158041.0,,4892268.0,,13214259.0,,11978256.0,,1236003.0,,8321991.0,,88928.0,,36880.0,,47700.0,,14656.0,,7451.0,,259913.0,Does not include all calls received by call centers,2.0,Does not include all calls received by call centers,0.004,Does not include all calls received by call centers +CA,California,202510,Y,P,N,83760.0,,80573.0,,164333.0,,156685.0,,12026.0,,168711.0,,4835377.0,,13065328.0,,11826775.0,,1238553.0,,8229951.0,,88583.0,,40553.0,,50601.0,,15814.0,,8086.0,,268127.0,Does not include all calls received by call centers,5.0,Does not include all calls received by call centers,0.013,Does not include all calls received by call centers +CO,Colorado,201309,N,U,Y,,,,,,,,,,,,,,,783420.0,,,,,,,,,,,,,,,,,,,,,,, +CO,Colorado,201706,Y,P,N,18278.0,,1738.0,,20016.0,,15926.0,,217.0,,16143.0,,628764.0,,1419415.0,,1288167.0,,131248.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,201706,Y,U,Y,18278.0,,1738.0,,20016.0,,15926.0,,217.0,,16143.0,,628764.0,,1419415.0,,1288167.0,,131248.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,201707,Y,P,N,17469.0,,1629.0,,19098.0,,15363.0,,215.0,,15578.0,,624159.0,,1415488.0,,1284323.0,,131165.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,201707,Y,U,Y,17469.0,,1629.0,,19098.0,,15363.0,,215.0,,15578.0,,624159.0,,1415488.0,,1284323.0,,131165.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,201708,Y,P,N,21298.0,,1754.0,,23052.0,,19010.0,,320.0,,19330.0,,625230.0,,1421240.0,,1288647.0,,132593.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,201708,Y,U,Y,21298.0,,1754.0,,23052.0,,19010.0,,320.0,,19330.0,,625230.0,,1421240.0,,1288647.0,,132593.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,201709,Y,P,N,19244.0,,1314.0,,20558.0,,16878.0,,236.0,,17114.0,,620706.0,,1416111.0,,1284785.0,,131326.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,201709,Y,U,Y,19244.0,,1314.0,,20558.0,,16878.0,,236.0,,17114.0,,620706.0,,1416111.0,,1284785.0,,131326.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,201710,Y,P,N,21799.0,,1235.0,,23034.0,,18512.0,,314.0,,18826.0,,614334.0,,1378140.0,,1248396.0,,129744.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,201710,Y,U,Y,21799.0,,1235.0,,23034.0,,18512.0,,314.0,,18826.0,,614334.0,,1378140.0,,1248396.0,,129744.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,201711,Y,P,N,30544.0,,8046.0,,38590.0,,22111.0,,340.0,,22451.0,,611762.0,,1372887.0,,1242969.0,,129918.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,201711,Y,U,Y,30544.0,,8046.0,,38590.0,,22111.0,,340.0,,22451.0,,611762.0,,1372887.0,,1242969.0,,129918.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,201712,Y,P,N,31335.0,,12231.0,,43566.0,,24967.0,,371.0,,25338.0,,609800.0,,1376762.0,,1247005.0,,129757.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,201712,Y,U,Y,31335.0,,12231.0,,43566.0,,24967.0,,371.0,,25338.0,,609800.0,,1376762.0,,1247005.0,,129757.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,201801,Y,P,N,29728.0,,4366.0,,34094.0,,23237.0,,411.0,,23648.0,,608056.0,,1362702.0,,1233907.0,,128795.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,201801,Y,U,Y,29728.0,,4366.0,,34094.0,,23237.0,,411.0,,23648.0,,608056.0,,1362702.0,,1233907.0,,128795.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,201802,Y,P,N,23227.0,,1351.0,,24578.0,,18760.0,,356.0,,19116.0,,607026.0,,1359670.0,,1226555.0,,133115.0,,,,16927.0,,6889.0,,6427.0,,896.0,,1327.0,,,,,,, +CO,Colorado,201802,Y,U,Y,23227.0,,1351.0,,24578.0,,18760.0,,356.0,,19116.0,,607026.0,,1359670.0,,1226555.0,,133115.0,,,,16927.0,,6889.0,,6427.0,,896.0,,1327.0,,,,,,, +CO,Colorado,201803,Y,P,N,24682.0,,1418.0,,26100.0,,20567.0,,376.0,,20943.0,,603635.0,,1355620.0,,1221133.0,,134487.0,,,,16865.0,,8846.0,,5825.0,,1167.0,,1261.0,,,,,,, +CO,Colorado,201803,Y,U,Y,24682.0,,1418.0,,26100.0,,20567.0,,376.0,,20943.0,,603635.0,,1355620.0,,1221133.0,,134487.0,,,,16865.0,,8846.0,,5825.0,,1167.0,,1261.0,,,,,,, +CO,Colorado,201804,Y,P,N,23379.0,,1412.0,,24791.0,,19435.0,,354.0,,19789.0,,599720.0,,1342889.0,,1207650.0,,135239.0,,,,16689.0,,8137.0,,5453.0,,917.0,,1101.0,,,,,,, +CO,Colorado,201804,Y,U,Y,23379.0,,1412.0,,24791.0,,19435.0,,354.0,,19789.0,,599720.0,,1342889.0,,1207650.0,,135239.0,,,,16689.0,,8137.0,,5453.0,,917.0,,1101.0,,,,,,, +CO,Colorado,201805,Y,P,N,22969.0,,1455.0,,24424.0,,19162.0,,400.0,,19562.0,,597480.0,,1341583.0,,1206514.0,,135069.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,201805,Y,U,Y,22969.0,,1455.0,,24424.0,,19162.0,,400.0,,19562.0,,597480.0,,1341583.0,,1206514.0,,135069.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,201806,Y,P,N,21443.0,,1385.0,,22828.0,,17774.0,,327.0,,18101.0,,597752.0,,1345504.0,,1210851.0,,134653.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,201806,Y,U,Y,21443.0,,1385.0,,22828.0,,17774.0,,327.0,,18101.0,,597752.0,,1345504.0,,1210851.0,,134653.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,201807,Y,P,N,23138.0,,1467.0,,24605.0,,19632.0,,367.0,,19999.0,,597689.0,,1341768.0,,1206017.0,,135751.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,201807,Y,U,Y,23138.0,,1467.0,,24605.0,,19632.0,,367.0,,19999.0,,597689.0,,1341768.0,,1206017.0,,135751.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,201808,Y,P,N,25349.0,,1588.0,,26937.0,,21745.0,,423.0,,22168.0,,597913.0,,1345880.0,,1210111.0,,135769.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,201808,Y,U,Y,25349.0,,1588.0,,26937.0,,21745.0,,423.0,,22168.0,,597913.0,,1345880.0,,1210111.0,,135769.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,201809,Y,P,N,19967.0,,1141.0,,21108.0,,17395.0,,311.0,,17706.0,,596731.0,,1346964.0,,1212594.0,,134370.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,201809,Y,U,Y,19967.0,,1141.0,,21108.0,,17395.0,,311.0,,17706.0,,596731.0,,1346964.0,,1212594.0,,134370.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,201810,Y,P,N,23650.0,,519.0,,24169.0,,21765.0,,386.0,,22151.0,,593690.0,,1337106.0,,1202712.0,,134394.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,201810,Y,U,Y,23650.0,,519.0,,24169.0,,21765.0,,386.0,,22151.0,,593690.0,,1337106.0,,1202712.0,,134394.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,201811,Y,P,N,22829.0,,169.0,,22998.0,,19729.0,,430.0,,20159.0,,593376.0,,1327166.0,,1191172.0,,135994.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,201811,Y,U,Y,22829.0,,169.0,,22998.0,,19729.0,,430.0,,20159.0,,593376.0,,1327166.0,,1191172.0,,135994.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,201812,Y,P,N,23423.0,,259.0,,23682.0,,20823.0,,371.0,,21194.0,,588671.0,,1320924.0,,1187278.0,,133646.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,201812,Y,U,Y,23423.0,,259.0,,23682.0,,20823.0,,371.0,,21194.0,,588671.0,,1320924.0,,1187278.0,,133646.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,201901,Y,P,N,28392.0,,214.0,,28606.0,,24309.0,,452.0,,24761.0,,587535.0,,1310744.0,,1178085.0,,132659.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,201901,Y,U,Y,28392.0,,214.0,,28606.0,,24309.0,,452.0,,24761.0,,587535.0,,1310744.0,,1178085.0,,132659.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,201902,Y,P,N,22554.0,,100.0,,22654.0,,19023.0,,380.0,,19403.0,,587850.0,,1308718.0,,1175760.0,,132958.0,,,,11879.0,,7759.0,,5417.0,,1788.0,,1881.0,,,,,,, +CO,Colorado,201902,Y,U,Y,22554.0,,100.0,,22654.0,,19023.0,,380.0,,19403.0,,587850.0,,1308718.0,,1175760.0,,132958.0,,,,11879.0,,7759.0,,5417.0,,1788.0,,1881.0,,,,,,, +CO,Colorado,201903,Y,P,N,22705.0,,103.0,,22808.0,,19553.0,,421.0,,19974.0,,585286.0,,1301526.0,,1168803.0,,132723.0,,,,12678.0,,8124.0,,6059.0,,1530.0,,1049.0,,,,,,, +CO,Colorado,201903,Y,U,Y,22705.0,,103.0,,22808.0,,19553.0,,421.0,,19974.0,,585286.0,,1301526.0,,1168803.0,,132723.0,,,,12678.0,,8124.0,,6059.0,,1530.0,,1049.0,,,,,,, +CO,Colorado,201904,Y,P,N,24605.0,,111.0,,24716.0,,20962.0,,380.0,,21342.0,,583144.0,,1290326.0,,1158583.0,,131743.0,,,,12844.0,,10300.0,,6793.0,,879.0,,854.0,,,,,,, +CO,Colorado,201904,Y,U,Y,24605.0,,111.0,,24716.0,,20962.0,,380.0,,21342.0,,583144.0,,1290326.0,,1158583.0,,131743.0,,,,12844.0,,10300.0,,6793.0,,879.0,,854.0,,,,,,, +CO,Colorado,201905,Y,P,N,22969.0,,115.0,,23084.0,,19573.0,,358.0,,19931.0,,582711.0,,1290573.0,,1159254.0,,131319.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,201905,Y,U,Y,22969.0,,115.0,,23084.0,,19573.0,,358.0,,19931.0,,582711.0,,1290573.0,,1159254.0,,131319.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,201906,Y,P,N,21837.0,,90.0,,21927.0,,18509.0,,338.0,,18847.0,,579681.0,,1287236.0,,1157665.0,,129571.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,201906,Y,U,Y,21837.0,,90.0,,21927.0,,18509.0,,338.0,,18847.0,,579681.0,,1287236.0,,1157665.0,,129571.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,201907,Y,P,N,24993.0,,111.0,,25104.0,,20960.0,,370.0,,21330.0,,577807.0,,1280142.0,,1150467.0,,129675.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,201907,Y,U,Y,24993.0,,111.0,,25104.0,,20960.0,,370.0,,21330.0,,577807.0,,1280142.0,,1150467.0,,129675.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,201908,Y,P,N,22220.0,,77.0,,22297.0,,18999.0,,326.0,,19325.0,,577053.0,,1282442.0,,1153331.0,,129111.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,201908,Y,U,Y,22220.0,,77.0,,22297.0,,18999.0,,326.0,,19325.0,,577053.0,,1282442.0,,1153331.0,,129111.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,201909,Y,P,N,19024.0,,2.0,,19026.0,,16287.0,,266.0,,16553.0,,575228.0,,1282653.0,,1154733.0,,127920.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,201909,Y,U,Y,19024.0,,2.0,,19026.0,,16287.0,,266.0,,16553.0,,575228.0,,1282653.0,,1154733.0,,127920.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,201910,Y,P,N,23826.0,,46.0,,23872.0,,19727.0,,361.0,,20088.0,,573673.0,,1279668.0,,1151665.0,,128003.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,201910,Y,U,Y,23826.0,,46.0,,23872.0,,19727.0,,361.0,,20088.0,,573673.0,,1279668.0,,1151665.0,,128003.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,201911,Y,P,N,22784.0,,176.0,,22960.0,,18693.0,,285.0,,18978.0,,572126.0,,1281127.0,,1153375.0,,127752.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,201911,Y,U,Y,22784.0,,176.0,,22960.0,,18693.0,,285.0,,18978.0,,572126.0,,1281127.0,,1153375.0,,127752.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,201912,Y,P,N,27684.0,,180.0,,27864.0,,21809.0,,383.0,,22192.0,,570312.0,,1275430.0,,1148814.0,,126616.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,201912,Y,U,Y,27684.0,,180.0,,27864.0,,21809.0,,383.0,,22192.0,,570312.0,,1275430.0,,1148814.0,,126616.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,202001,Y,P,N,28508.0,,204.0,,28712.0,,20315.0,,410.0,,20725.0,,570131.0,,1272902.0,,1146727.0,,126175.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,202001,Y,U,Y,28508.0,,204.0,,28712.0,,20315.0,,410.0,,20725.0,,570131.0,,1272902.0,,1146727.0,,126175.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,202002,Y,P,N,23534.0,,99.0,,23633.0,,16935.0,,310.0,,17245.0,,566484.0,,1266680.0,,1141149.0,,125531.0,,,,10384.0,,6332.0,,6127.0,,3667.0,,1580.0,,,,,,, +CO,Colorado,202002,Y,U,Y,23534.0,,99.0,,23633.0,,16935.0,,310.0,,17245.0,,566484.0,,1266680.0,,1141149.0,,125531.0,,,,10384.0,,6332.0,,6127.0,,3667.0,,1580.0,,,,,,, +CO,Colorado,202003,Y,P,N,29304.0,,243.0,,29547.0,,22876.0,,399.0,,23275.0,,563380.0,,1259742.0,,1135604.0,,124138.0,,,,15964.0,,8201.0,,6884.0,,2486.0,,2293.0,,,,,,, +CO,Colorado,202003,Y,U,Y,29304.0,,243.0,,29547.0,,22876.0,,399.0,,23275.0,,563380.0,,1259742.0,,1135604.0,,124138.0,,,,15964.0,,8201.0,,6884.0,,2486.0,,2293.0,,,,,,, +CO,Colorado,202004,Y,P,N,27624.0,,227.0,,27851.0,,24039.0,,335.0,,24374.0,,571783.0,,1296936.0,,1174876.0,,122060.0,,,,13833.0,,10697.0,,8744.0,,2041.0,,1823.0,,,,,,, +CO,Colorado,202004,Y,U,Y,27624.0,,227.0,,27851.0,,24039.0,,335.0,,24374.0,,571783.0,,1296936.0,,1174876.0,,122060.0,,,,13833.0,,10697.0,,8744.0,,2041.0,,1823.0,,,,,,, +CO,Colorado,202005,Y,P,N,18908.0,,133.0,,19041.0,,13905.0,,197.0,,14102.0,,576913.0,,1316135.0,,1194350.0,,121785.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,202005,Y,U,Y,18908.0,,133.0,,19041.0,,13905.0,,197.0,,14102.0,,576913.0,,1316135.0,,1194350.0,,121785.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,202006,Y,P,N,18724.0,,107.0,,18831.0,,13245.0,,224.0,,13469.0,,582631.0,,1336974.0,,1215158.0,,121816.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,202006,Y,U,Y,18724.0,,107.0,,18831.0,,13245.0,,224.0,,13469.0,,582631.0,,1336974.0,,1215158.0,,121816.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,202007,Y,P,N,19753.0,,111.0,,19864.0,,13853.0,,178.0,,14031.0,,588111.0,,1357050.0,,1235343.0,,121707.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,202007,Y,U,Y,19753.0,,111.0,,19864.0,,13853.0,,178.0,,14031.0,,588111.0,,1357050.0,,1235343.0,,121707.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,202008,Y,P,N,19638.0,,107.0,,19745.0,,13720.0,,172.0,,13892.0,,593389.0,,1377505.0,,1256191.0,,121314.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,202008,Y,U,Y,19638.0,,107.0,,19745.0,,13720.0,,172.0,,13892.0,,593389.0,,1377505.0,,1256191.0,,121314.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,202009,Y,P,N,18349.0,,80.0,,18429.0,,12805.0,,205.0,,13010.0,,598589.0,,1396635.0,,1276185.0,,120450.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,202009,Y,U,Y,18349.0,,80.0,,18429.0,,12805.0,,205.0,,13010.0,,598589.0,,1396635.0,,1276185.0,,120450.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,202010,Y,P,N,16891.0,,67.0,,16958.0,,12756.0,,198.0,,12954.0,,602600.0,,1414220.0,,1295141.0,,119079.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,202010,Y,U,Y,16891.0,,67.0,,16958.0,,12756.0,,198.0,,12954.0,,602600.0,,1414220.0,,1295141.0,,119079.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,202011,Y,P,N,19225.0,,159.0,,19384.0,,12197.0,,195.0,,12392.0,,605595.0,,1431754.0,,1313665.0,,118089.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,202011,Y,U,Y,19225.0,,159.0,,19384.0,,12197.0,,195.0,,12392.0,,605595.0,,1431754.0,,1313665.0,,118089.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,202012,Y,P,N,19447.0,,203.0,,19650.0,,15466.0,,165.0,,15631.0,,607985.0,,1449824.0,,1333559.0,,116265.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,202012,Y,U,Y,19447.0,,203.0,,19650.0,,15466.0,,165.0,,15631.0,,607985.0,,1449824.0,,1333559.0,,116265.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,202101,Y,P,N,16717.0,,137.0,,16854.0,,14802.0,,144.0,,14946.0,,610870.0,,1466436.0,,1352832.0,,113604.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,202101,Y,U,Y,16717.0,,137.0,,16854.0,,14802.0,,144.0,,14946.0,,610870.0,,1466436.0,,1352832.0,,113604.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,202102,Y,P,N,13895.0,,49.0,,13944.0,,12104.0,,307.0,,12411.0,,612802.0,,1477439.0,,1364361.0,,113078.0,,,,6960.0,,6318.0,,4939.0,,552.0,,336.0,,,,,,, +CO,Colorado,202102,Y,U,Y,13895.0,,49.0,,13944.0,,12104.0,,307.0,,12411.0,,612802.0,,1477439.0,,1364361.0,,113078.0,,,,6960.0,,6318.0,,4939.0,,552.0,,336.0,,,,,,, +CO,Colorado,202103,Y,P,N,14134.0,,49.0,,14183.0,,11418.0,,318.0,,11736.0,,614788.0,,1489827.0,,1376628.0,,113199.0,,,,6695.0,,7206.0,,3175.0,,665.0,,301.0,,,,,,, +CO,Colorado,202103,Y,U,Y,14134.0,,49.0,,14183.0,,11418.0,,318.0,,11736.0,,614788.0,,1489827.0,,1376628.0,,113199.0,,,,6695.0,,7206.0,,3175.0,,665.0,,301.0,,,,,,, +CO,Colorado,202104,Y,P,N,13660.0,,63.0,,13723.0,,10755.0,,128.0,,10883.0,,616407.0,,1501448.0,,1390142.0,,111306.0,,,,7008.0,,7067.0,,2355.0,,294.0,,224.0,,,,,,, +CO,Colorado,202104,Y,U,Y,13660.0,,63.0,,13723.0,,10755.0,,128.0,,10883.0,,616407.0,,1501448.0,,1390142.0,,111306.0,,,,7008.0,,7067.0,,2355.0,,294.0,,224.0,,,,,,, +CO,Colorado,202105,Y,P,N,12923.0,,69.0,,12992.0,,10074.0,,117.0,,10191.0,,617975.0,,1511858.0,,1401524.0,,110334.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,202105,Y,U,Y,12923.0,,69.0,,12992.0,,10074.0,,117.0,,10191.0,,617975.0,,1511858.0,,1401524.0,,110334.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,202106,Y,P,N,13893.0,,40.0,,13933.0,,10515.0,,124.0,,10639.0,,619719.0,,1522471.0,,1412780.0,,109691.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,202106,Y,U,Y,13893.0,,40.0,,13933.0,,10515.0,,124.0,,10639.0,,619719.0,,1522471.0,,1412780.0,,109691.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,202107,Y,P,N,13938.0,,61.0,,13999.0,,10807.0,,134.0,,10941.0,,621256.0,,1532326.0,,1423267.0,,109059.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,202107,Y,U,Y,13938.0,,61.0,,13999.0,,10807.0,,134.0,,10941.0,,621256.0,,1532326.0,,1423267.0,,109059.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,202108,Y,P,N,15986.0,,91.0,,16077.0,,11782.0,,131.0,,11913.0,,623489.0,,1544088.0,,1435110.0,,108978.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,202108,Y,U,Y,15986.0,,91.0,,16077.0,,11782.0,,131.0,,11913.0,,623489.0,,1544088.0,,1435110.0,,108978.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,202109,Y,P,N,13775.0,,63.0,,13838.0,,11223.0,,112.0,,11335.0,,625019.0,,1553677.0,,1444409.0,,109268.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,202109,Y,U,Y,13775.0,,63.0,,13838.0,,11223.0,,112.0,,11335.0,,625019.0,,1553677.0,,1444409.0,,109268.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,202110,Y,P,N,13547.0,,54.0,,13601.0,,9604.0,,109.0,,9713.0,,626208.0,,1563568.0,,1456320.0,,107248.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,202110,Y,U,Y,13547.0,,54.0,,13601.0,,9604.0,,109.0,,9713.0,,626208.0,,1563568.0,,1456320.0,,107248.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,202111,Y,P,N,16358.0,,142.0,,16500.0,,11360.0,,111.0,,11471.0,,627637.0,,1574298.0,,1467166.0,,107132.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,202111,Y,U,Y,16358.0,,142.0,,16500.0,,11360.0,,111.0,,11471.0,,627637.0,,1574298.0,,1467166.0,,107132.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,202112,Y,P,N,16153.0,,160.0,,16313.0,,12249.0,,183.0,,12432.0,,629380.0,,1585726.0,,1478627.0,,107099.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,202112,Y,U,Y,16153.0,,160.0,,16313.0,,12249.0,,183.0,,12432.0,,629380.0,,1585726.0,,1478627.0,,107099.0,,,,,,,,,,,,,,,,,,, +CO,Colorado,202201,Y,P,N,15595.0,,173.0,,15768.0,,12175.0,,140.0,,12315.0,,630969.0,,1598614.0,,1492249.0,,106365.0,,,,6164.0,,5456.0,,6904.0,,860.0,,762.0,,,,,,, +CO,Colorado,202201,Y,U,Y,15595.0,,173.0,,15768.0,,12175.0,,140.0,,12315.0,,630969.0,,1598614.0,,1492249.0,,106365.0,,,,6164.0,,5456.0,,6904.0,,860.0,,762.0,,,,,,, +CO,Colorado,202202,Y,P,N,11810.0,,85.0,,11895.0,,9497.0,,123.0,,9620.0,,631759.0,,1604957.0,,1499029.0,,105928.0,,,,5246.0,,4759.0,,4235.0,,726.0,,890.0,,,,,,, +CO,Colorado,202202,Y,U,Y,11810.0,,85.0,,11895.0,,9497.0,,123.0,,9620.0,,631759.0,,1604957.0,,1499029.0,,105928.0,,,,5246.0,,4759.0,,4235.0,,726.0,,890.0,,,,,,, +CO,Colorado,202203,Y,P,N,13215.0,,77.0,,13292.0,,10823.0,,141.0,,10964.0,,632763.0,,1613405.0,,1508177.0,,105228.0,,,,5732.0,,5634.0,,4843.0,,819.0,,512.0,,,,,,, +CO,Colorado,202203,Y,U,Y,13215.0,,77.0,,13292.0,,10823.0,,141.0,,10964.0,,632763.0,,1613405.0,,1508177.0,,105228.0,,,,5732.0,,5634.0,,4843.0,,819.0,,512.0,,,,,,, +CO,Colorado,202204,Y,P,N,12226.0,,80.0,,12306.0,,9643.0,,94.0,,9737.0,,633031.0,,1620385.0,,1517028.0,,103357.0,,,,5651.0,,5324.0,,3567.0,,657.0,,302.0,,,,,,, +CO,Colorado,202204,Y,U,Y,12226.0,,80.0,,12306.0,,9643.0,,94.0,,9737.0,,633031.0,,1620385.0,,1517028.0,,103357.0,,,,5651.0,,5324.0,,3567.0,,657.0,,302.0,,,,,,, +CO,Colorado,202205,Y,P,N,12324.0,,68.0,,12392.0,,9236.0,,90.0,,9326.0,,633197.0,,1625864.0,,1523033.0,,102831.0,,,,5747.0,,5394.0,,3207.0,,571.0,,303.0,,,,,,, +CO,Colorado,202205,Y,U,Y,12324.0,,68.0,,12392.0,,9236.0,,90.0,,9326.0,,633197.0,,1625864.0,,1523033.0,,102831.0,,,,5747.0,,5394.0,,3207.0,,571.0,,303.0,,,,,,, +CO,Colorado,202206,Y,P,N,12778.0,,69.0,,12847.0,,10174.0,,357.0,,10531.0,,633037.0,,1630445.0,,1529380.0,,101065.0,,,,4719.0,,4798.0,,3466.0,,337.0,,210.0,,,,,,, +CO,Colorado,202206,Y,U,Y,12778.0,,69.0,,12847.0,,10174.0,,357.0,,10531.0,,634936.0,,1635385.0,,1534581.0,,100804.0,,,,4719.0,,4798.0,,3466.0,,337.0,,210.0,,,,,,, +CO,Colorado,202207,Y,P,N,12942.0,,61.0,,13003.0,,11384.0,,489.0,,11873.0,,635458.0,,1641925.0,,1541229.0,,100696.0,,,,4364.0,,4628.0,,4856.0,,452.0,,201.0,,,,,,, +CO,Colorado,202207,Y,U,Y,12942.0,,61.0,,13003.0,,11384.0,,489.0,,11873.0,,637768.0,,1646836.0,,1545522.0,,101314.0,,,,4364.0,,4628.0,,4856.0,,452.0,,201.0,,,,,,, +CO,Colorado,202208,Y,P,N,14952.0,,89.0,,15041.0,,13186.0,,658.0,,13844.0,,638274.0,,1651983.0,,1550973.0,,101010.0,,,,4983.0,,5495.0,,5690.0,,452.0,,201.0,,,,,,, +CO,Colorado,202208,Y,U,Y,14952.0,,89.0,,15041.0,,13186.0,,658.0,,13844.0,,640225.0,,1656830.0,,1555695.0,,101135.0,,,,4983.0,,5495.0,,5690.0,,452.0,,201.0,,,,,,, +CO,Colorado,202209,Y,P,N,13244.0,,56.0,,13300.0,,11905.0,,558.0,,12463.0,,640141.0,,1660825.0,,1560456.0,,100369.0,,,,4802.0,,4980.0,,4771.0,,492.0,,203.0,,,,,,, +CO,Colorado,202209,Y,U,Y,13244.0,,56.0,,13300.0,,11905.0,,558.0,,12463.0,,642522.0,,1666668.0,,1565724.0,,100944.0,,,,4802.0,,4980.0,,4771.0,,492.0,,203.0,,,,,,, +CO,Colorado,202210,Y,P,N,12702.0,,70.0,,12772.0,,10849.0,,486.0,,11335.0,,642038.0,,1670835.0,,1570303.0,,100532.0,,,,4589.0,,4467.0,,4322.0,,592.0,,310.0,,,,,,, +CO,Colorado,202210,Y,U,Y,12702.0,,70.0,,12772.0,,10849.0,,486.0,,11335.0,,644069.0,,1676215.0,,1575376.0,,100839.0,,,,4589.0,,4467.0,,4322.0,,592.0,,310.0,,,,,,, +CO,Colorado,202211,Y,P,N,13650.0,,121.0,,13771.0,,10849.0,,486.0,,11335.0,,644315.0,,1681967.0,,1581704.0,,100263.0,,,,4633.0,,4070.0,,4788.0,,705.0,,227.0,,,,,,, +CO,Colorado,202211,Y,U,Y,13650.0,,121.0,,13771.0,,10849.0,,486.0,,11335.0,,646127.0,,1687184.0,,1585335.0,,101849.0,,,,4633.0,,4070.0,,4788.0,,705.0,,227.0,,,,,,, +CO,Colorado,202212,Y,P,N,12752.0,,105.0,,12857.0,,11786.0,,562.0,,12348.0,,645834.0,,1692321.0,,1591007.0,,101314.0,,,,4744.0,,3979.0,,4708.0,,994.0,,612.0,,,,,,, +CO,Colorado,202212,Y,U,Y,12752.0,,105.0,,12857.0,,11786.0,,562.0,,12348.0,,648445.0,,1699630.0,,1596841.0,,102789.0,,,,4744.0,,3979.0,,4708.0,,994.0,,612.0,,,,,,, +CO,Colorado,202301,Y,P,N,15416.0,,142.0,,15558.0,,12486.0,,674.0,,13160.0,,648068.0,,1705866.0,,1604242.0,,101624.0,,,,5035.0,,4289.0,,4079.0,,1043.0,,1169.0,,,,,,, +CO,Colorado,202301,Y,U,Y,15416.0,,142.0,,15558.0,,12486.0,,674.0,,13160.0,,650249.0,,1712273.0,,1610060.0,,102213.0,,,,5035.0,,4289.0,,4079.0,,1043.0,,1169.0,,,,,,, +CO,Colorado,202302,Y,P,N,12055.0,,73.0,,12128.0,,12599.0,,738.0,,13337.0,,650049.0,,1715943.0,,1613872.0,,102071.0,,,,4067.0,,4791.0,,3671.0,,1723.0,,1131.0,,,,,,, +CO,Colorado,202302,Y,U,Y,12055.0,,73.0,,12128.0,,12599.0,,738.0,,13337.0,,652517.0,,1722639.0,,1619548.0,,103091.0,,,,4067.0,,4791.0,,3671.0,,1723.0,,1131.0,,,,,,, +CO,Colorado,202303,Y,P,N,13503.0,,93.0,,13596.0,,16188.0,,1066.0,,17254.0,,651850.0,,1726651.0,,1624378.0,,102273.0,,,,4477.0,,5905.0,,4215.0,,1390.0,,3241.0,,25216.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.011,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CO,Colorado,202303,Y,U,Y,13503.0,,93.0,,13596.0,,16188.0,,1066.0,,17254.0,,647698.0,,1705007.0,,1603310.0,,101697.0,,,,4477.0,,5905.0,,4215.0,,1390.0,,3241.0,,25216.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.011,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CO,Colorado,202304,Y,P,N,12112.0,,65.0,,12177.0,,12486.0,,674.0,,13160.0,,646410.0,,1709809.0,,1611316.0,,98493.0,,,,5035.0,,4289.0,,4079.0,,1043.0,,1169.0,,21565.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.02,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CO,Colorado,202304,Y,U,Y,12112.0,,65.0,,12177.0,,12486.0,,674.0,,13160.0,,647669.0,,1713809.0,,1614994.0,,98815.0,,,,5035.0,,4289.0,,4079.0,,1043.0,,1169.0,,21565.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.02,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CO,Colorado,202305,Y,P,N,14130.0,,79.0,,14209.0,,10986.0,,757.0,,11743.0,,646253.0,,1715088.0,,1617163.0,,97925.0,,,,6563.0,,5987.0,,3823.0,,813.0,,564.0,,24408.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,4.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.084,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CO,Colorado,202305,Y,U,Y,14130.0,,79.0,,14209.0,,10986.0,,757.0,,11743.0,,649030.0,,1722323.0,,1623277.0,,99046.0,,,,6563.0,,5987.0,,3823.0,,813.0,,564.0,,24408.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,4.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.084,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CO,Colorado,202306,Y,P,N,17234.0,,74.0,,17308.0,,13500.0,,1028.0,,14528.0,,634932.0,,1682785.0,,1583941.0,,98844.0,,,,8696.0,,6138.0,,5235.0,,1171.0,,516.0,,27961.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,10.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.213,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CO,Colorado,202306,Y,U,Y,17234.0,,74.0,,17308.0,,13500.0,,1028.0,,14528.0,,637844.0,,1689842.0,,1590633.0,,99209.0,,,,8696.0,,6138.0,,5235.0,,1171.0,,516.0,,27961.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,10.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.213,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CO,Colorado,202307,Y,P,N,21187.0,,84.0,,21271.0,,16386.0,,1340.0,,17726.0,,620727.0,,1640664.0,,1541554.0,,99110.0,,,,12560.0,,5438.0,,6821.0,,1111.0,,473.0,,30150.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,14.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.277,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CO,Colorado,202307,Y,U,Y,21187.0,,84.0,,21271.0,,16386.0,,1340.0,,17726.0,,624861.0,,1649658.0,,1549986.0,,99672.0,,,,12560.0,,5438.0,,6821.0,,1111.0,,473.0,,30150.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,14.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.277,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CO,Colorado,202308,Y,P,N,27449.0,,88.0,,27537.0,,20833.0,,1881.0,,22714.0,,609746.0,,1597010.0,,1494884.0,,102126.0,,,,15192.0,,7711.0,,8603.0,,1889.0,,640.0,,31818.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,12.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.23,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CO,Colorado,202308,Y,U,Y,27449.0,,88.0,,27537.0,,20833.0,,1881.0,,22714.0,,614515.0,,1608510.0,,1505306.0,,103204.0,,,,15192.0,,7711.0,,8603.0,,1889.0,,640.0,,31818.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,12.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.23,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CO,Colorado,202309,Y,P,N,24504.0,,77.0,,24581.0,,19638.0,,1734.0,,21372.0,,597561.0,,1552346.0,,1446435.0,,105911.0,,,,13560.0,,6346.0,,8122.0,,3430.0,,1072.0,,29251.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,12.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.233,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CO,Colorado,202309,Y,U,Y,24504.0,,77.0,,24581.0,,19638.0,,1734.0,,21372.0,,601247.0,,1561424.0,,1454652.0,,106772.0,,,,13560.0,,6346.0,,8122.0,,3430.0,,1072.0,,29251.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,12.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.233,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CO,Colorado,202310,Y,P,N,26384.0,,98.0,,26482.0,,19987.0,,1821.0,,21808.0,,595092.0,,1534304.0,,1423959.0,,110345.0,,,,12435.0,,7074.0,,10232.0,,3149.0,,990.0,,30842.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,10.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.2,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CO,Colorado,202310,Y,U,Y,26384.0,,98.0,,26482.0,,19987.0,,1821.0,,21808.0,,602561.0,,1550789.0,,1439821.0,,110968.0,,,,12435.0,,7074.0,,10232.0,,3149.0,,990.0,,30842.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,10.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.2,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CO,Colorado,202311,Y,P,N,31253.0,,164.0,,31417.0,,22333.0,,2241.0,,24574.0,,572457.0,,1452438.0,,1338984.0,,113454.0,,,,14865.0,,7993.0,,12378.0,,2243.0,,1026.0,,34266.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,15.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.269,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CO,Colorado,202311,Y,U,Y,31253.0,,164.0,,31417.0,,22333.0,,2241.0,,24574.0,,578338.0,,1467478.0,,1353977.0,,113501.0,,,,14865.0,,7993.0,,12378.0,,2243.0,,1026.0,,34266.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,15.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.269,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CO,Colorado,202312,Y,P,N,30268.0,,178.0,,30446.0,,23661.0,,2129.0,,25790.0,,562929.0,,1405707.0,,1289428.0,,116279.0,,,,14793.0,,11085.0,,9651.0,,3638.0,,1562.0,,31179.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,15.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.228,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CO,Colorado,202312,Y,U,Y,30268.0,,178.0,,30446.0,,23661.0,,2129.0,,25790.0,,568670.0,,1420075.0,,1303902.0,,116173.0,,,,14793.0,,11085.0,,9651.0,,3638.0,,1562.0,,31179.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,15.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.228,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CO,Colorado,202401,Y,P,N,36113.0,,175.0,,36288.0,,30055.0,,2570.0,,32625.0,,554061.0,,1357319.0,,1238439.0,,118880.0,,,,20497.0,,11397.0,,10623.0,,4950.0,,2468.0,,34576.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,14.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.352,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CO,Colorado,202401,Y,U,Y,36113.0,,175.0,,36288.0,,30055.0,,2570.0,,32625.0,,559240.0,,1370169.0,,1250231.0,,119938.0,,,,20497.0,,11397.0,,10623.0,,4950.0,,2468.0,,34576.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,14.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.352,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CO,Colorado,202402,Y,P,N,29420.0,,98.0,,29518.0,,25304.0,,2228.0,,27532.0,,543301.0,,1308507.0,,1186420.0,,122087.0,,,,17332.0,,8116.0,,11117.0,,3257.0,,1928.0,,36516.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,15.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.28,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CO,Colorado,202402,Y,U,Y,29420.0,,98.0,,29518.0,,25304.0,,2228.0,,27532.0,,549071.0,,1322264.0,,1199804.0,,122460.0,,,,17332.0,,8116.0,,11117.0,,3257.0,,1928.0,,36516.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,15.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.28,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CO,Colorado,202403,Y,P,N,28148.0,,128.0,,28276.0,,25027.0,,1802.0,,26829.0,,534934.0,,1230193.0,,1104219.0,,125974.0,,,,16645.0,,8972.0,,8979.0,,3969.0,,1766.0,,29267.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,10.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.203,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CO,Colorado,202403,Y,U,Y,28148.0,,128.0,,28276.0,,25027.0,,1802.0,,26829.0,,534934.0,,1230193.0,,1104219.0,,125974.0,,,,16645.0,,8972.0,,8979.0,,3969.0,,1766.0,,29267.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,10.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.203,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CO,Colorado,202404,Y,P,N,29420.0,,126.0,,29546.0,,25561.0,,1960.0,,27521.0,,518905.0,,1174868.0,,1048634.0,,126234.0,,,,16659.0,,11305.0,,9578.0,,3117.0,,1555.0,,26278.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,8.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.145,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CO,Colorado,202404,Y,U,Y,29420.0,,126.0,,29546.0,,25561.0,,1960.0,,27521.0,,524750.0,,1189864.0,,1063726.0,,126138.0,,,,16659.0,,11305.0,,9578.0,,3117.0,,1555.0,,26278.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,8.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.145,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CO,Colorado,202405,Y,P,N,28614.0,,121.0,,28735.0,,24967.0,,1801.0,,26768.0,,512384.0,,1146718.0,,1016611.0,,130107.0,,,,17014.0,,11976.0,,8867.0,,2078.0,,1545.0,,32089.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,10.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.171,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CO,Colorado,202405,Y,U,Y,28614.0,,121.0,,28735.0,,22405.0,,1680.0,,24085.0,,517198.0,,1159130.0,,1029565.0,,129565.0,,,,17014.0,,11976.0,,8867.0,,2078.0,,1545.0,,32089.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,10.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.171,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CO,Colorado,202406,Y,P,N,26518.0,,128.0,,26646.0,,24967.0,,1801.0,,26768.0,,513482.0,,1147223.0,,1015699.0,,131524.0,,,,17014.0,,11976.0,,8867.0,,2078.0,,1545.0,,26963.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,8.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.119,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CO,Colorado,202406,Y,U,Y,26518.0,,128.0,,26646.0,,24967.0,,1801.0,,26768.0,,518780.0,,1160609.0,,1029614.0,,130995.0,,,,17014.0,,11976.0,,8867.0,,2078.0,,1545.0,,26963.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,8.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.119,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CO,Colorado,202407,Y,P,N,29703.0,,139.0,,29842.0,,24790.0,,1927.0,,26717.0,,518780.0,,1160609.0,,1029614.0,,130995.0,,641829.0,,17020.0,,11274.0,,9598.0,,1559.0,,1901.0,,28935.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,6.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.112,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CO,Colorado,202407,Y,U,Y,29703.0,,139.0,,29842.0,,24790.0,,1927.0,,26717.0,,522360.0,,1172019.0,,1040256.0,,131763.0,,649659.0,,17020.0,,11274.0,,9598.0,,1559.0,,1901.0,,28935.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,6.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.112,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CO,Colorado,202408,Y,P,N,29603.0,,169.0,,29772.0,,25091.0,,2050.0,,27141.0,,520641.0,,1172334.0,,1040205.0,,132129.0,,651693.0,,16817.0,,12003.0,,9983.0,,1637.0,,1387.0,,30833.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,7.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.048,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CO,Colorado,202408,Y,U,Y,29603.0,,169.0,,29772.0,,25091.0,,2050.0,,27141.0,,526093.0,,1185195.0,,1052426.0,,132769.0,,659102.0,,16817.0,,12003.0,,9983.0,,1637.0,,1387.0,,30833.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,7.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.048,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CO,Colorado,202409,Y,P,N,27361.0,,111.0,,27472.0,,22645.0,,1670.0,,24315.0,,522443.0,,1174588.0,,1040621.0,,133967.0,,652145.0,,15886.0,,10767.0,,9074.0,,1559.0,,833.0,,27170.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,4.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.022,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CO,Colorado,202409,Y,U,Y,27361.0,,111.0,,27472.0,,22645.0,,1670.0,,24315.0,,527058.0,,1186510.0,,1052694.0,,133816.0,,659452.0,,15886.0,,10767.0,,9074.0,,1559.0,,833.0,,27170.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,4.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.022,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CO,Colorado,202410,Y,P,N,29031.0,,94.0,,29125.0,,24463.0,,1780.0,,26243.0,,525429.0,,1185011.0,,1050373.0,,134638.0,,659582.0,,16551.0,,11832.0,,9277.0,,1610.0,,926.0,,25742.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,2.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.007,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CO,Colorado,202410,Y,U,Y,29031.0,,94.0,,29125.0,,24463.0,,1780.0,,26243.0,,528989.0,,1194765.0,,1060589.0,,134176.0,,665776.0,,16551.0,,11832.0,,9277.0,,1610.0,,926.0,,25742.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,2.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.007,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CO,Colorado,202411,Y,P,N,29211.0,,119.0,,29330.0,,23759.0,,2174.0,,25933.0,,528989.0,,1194765.0,,1060589.0,,134176.0,,665776.0,,15570.0,,12576.0,,9612.0,,1298.0,,835.0,,21910.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,2.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.013,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CO,Colorado,202411,Y,U,Y,29211.0,,119.0,,29330.0,,23759.0,,2174.0,,25933.0,,531687.0,,1202943.0,,1066840.0,,136103.0,,671256.0,,15570.0,,12576.0,,9612.0,,1298.0,,835.0,,21910.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,2.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.013,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CO,Colorado,202412,Y,P,N,27547.0,,218.0,,27765.0,,22230.0,,2016.0,,24246.0,,527529.0,,1194852.0,,1058326.0,,136526.0,,667323.0,,12118.0,,13486.0,,9797.0,,1384.0,,719.0,,23612.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,2.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.029,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CO,Colorado,202412,Y,U,Y,27547.0,,218.0,,27765.0,,22230.0,,2016.0,,24246.0,,534065.0,,1212638.0,,1077236.0,,135402.0,,678573.0,,12118.0,,13486.0,,9797.0,,1384.0,,719.0,,23612.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,2.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.029,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CO,Colorado,202501,Y,P,N,29929.0,,186.0,,30115.0,,25215.0,,2097.0,,27312.0,,527528.0,,1208864.0,,1070533.0,,138331.0,,681336.0,,13952.0,,13522.0,,10332.0,,1874.0,,1720.0,,29695.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,3.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.027,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CO,Colorado,202501,Y,U,Y,29929.0,,186.0,,30115.0,,25215.0,,2097.0,,27312.0,,527528.0,,1208864.0,,1070533.0,,138331.0,,681336.0,,13952.0,,13522.0,,10332.0,,1874.0,,1720.0,,29695.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,3.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.027,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CO,Colorado,202502,Y,P,N,21660.0,,117.0,,21777.0,,19331.0,,1473.0,,20804.0,,519049.0,,1190587.0,,1053521.0,,137066.0,,671538.0,,11123.0,,8820.0,,7991.0,,2148.0,,1254.0,,25753.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,2.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.014,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CO,Colorado,202502,Y,U,Y,21660.0,,117.0,,21777.0,,19331.0,,1473.0,,20804.0,,523012.0,,1201137.0,,1064925.0,,136212.0,,678125.0,,11123.0,,8820.0,,7991.0,,2148.0,,1254.0,,25753.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,2.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.014,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CO,Colorado,202503,Y,P,N,22390.0,,87.0,,22477.0,,19610.0,,1514.0,,21124.0,,519089.0,,1191549.0,,1055023.0,,136526.0,,672460.0,,11509.0,,9261.0,,8186.0,,2212.0,,880.0,,26463.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,2.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.022,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CO,Colorado,202503,Y,U,Y,22390.0,,87.0,,22477.0,,19610.0,,1514.0,,21124.0,,523572.0,,1203155.0,,1067615.0,,135540.0,,679583.0,,11509.0,,9261.0,,8186.0,,2212.0,,880.0,,26463.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,2.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.022,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CO,Colorado,202504,Y,P,N,22904.0,,95.0,,22999.0,,19792.0,,1366.0,,21158.0,,520668.0,,1196520.0,,1065939.0,,130581.0,,675852.0,,12093.0,,10761.0,,6865.0,,1618.0,,574.0,,27512.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,2.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.028,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CO,Colorado,202504,Y,U,Y,22904.0,,95.0,,22999.0,,19792.0,,1366.0,,21158.0,,523720.0,,1204829.0,,1074866.0,,129963.0,,681109.0,,12093.0,,10761.0,,6865.0,,1618.0,,574.0,,27512.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,2.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.028,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CO,Colorado,202505,Y,P,N,21235.0,,86.0,,21321.0,,17808.0,,1212.0,,19020.0,,519327.0,,1191958.0,,1065822.0,,126136.0,,672631.0,,11074.0,,10091.0,,6331.0,,1141.0,,353.0,,25586.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,2.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.038,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CO,Colorado,202505,Y,U,Y,21235.0,,86.0,,21321.0,,17808.0,,1212.0,,19020.0,,522353.0,,1200945.0,,1074751.0,,126194.0,,678592.0,,11074.0,,10091.0,,6331.0,,1141.0,,353.0,,25586.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,2.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.038,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CO,Colorado,202506,Y,P,N,20397.0,,96.0,,20493.0,,16595.0,,1105.0,,17700.0,,520489.0,,1193176.0,,1068627.0,,124549.0,,672687.0,,9951.0,,9271.0,,6227.0,,889.0,,357.0,,24589.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,2.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.043,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CO,Colorado,202506,Y,U,Y,20397.0,,96.0,,20493.0,,16595.0,,1105.0,,17700.0,,523232.0,,1202014.0,,1076432.0,,125582.0,,678782.0,,9951.0,,9271.0,,6227.0,,889.0,,357.0,,24589.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,2.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.043,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CO,Colorado,202507,Y,P,N,22067.0,,99.0,,22166.0,,18239.0,,1309.0,,19548.0,,520595.0,,1194665.0,,1070714.0,,123951.0,,674070.0,,10311.0,,10602.0,,7759.0,,749.0,,251.0,,28382.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,3.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.025,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CO,Colorado,202507,Y,U,Y,22067.0,,99.0,,22166.0,,18239.0,,1309.0,,19548.0,,525033.0,,1205045.0,,1080236.0,,124809.0,,680012.0,,10311.0,,10602.0,,7759.0,,749.0,,251.0,,28382.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,3.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.025,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CO,Colorado,202508,Y,P,N,22566.0,,80.0,,22646.0,,17661.0,,1397.0,,19058.0,,522879.0,,1196877.0,,1073465.0,,123412.0,,673998.0,,10824.0,,11174.0,,5677.0,,610.0,,279.0,,27568.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,6.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.049,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CO,Colorado,202508,Y,U,Y,22566.0,,80.0,,22646.0,,17661.0,,1397.0,,19058.0,,544866.0,,1228359.0,,1082131.0,,146228.0,,683493.0,,10824.0,,11174.0,,5677.0,,610.0,,279.0,,27568.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,6.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.049,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CO,Colorado,202509,Y,P,N,22292.0,,61.0,,22353.0,,17559.0,,1289.0,,18848.0,,524619.0,Includes Retroactive Enrollments,1197220.0,Includes Retroactive Enrollments,1057804.0,Includes Retroactive Enrollments,139416.0,Includes Retroactive Enrollments,672601.0,Includes Retroactive Enrollments,10686.0,,11196.0,,5766.0,,997.0,,278.0,,26401.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,6.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.083,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CO,Colorado,202509,Y,U,Y,22292.0,,61.0,,22353.0,,17559.0,,1289.0,,18848.0,,524619.0,Includes Retroactive Enrollments,1197220.0,Includes Retroactive Enrollments,1057804.0,Includes Retroactive Enrollments,139416.0,Includes Retroactive Enrollments,672601.0,Includes Retroactive Enrollments,10686.0,,11196.0,,5766.0,,997.0,,278.0,,26401.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,6.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.083,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CO,Colorado,202510,Y,P,N,21043.0,,69.0,,21112.0,,16309.0,,1190.0,,17499.0,,522907.0,Includes Retroactive Enrollments,1191047.0,Includes Retroactive Enrollments,1051871.0,Includes Retroactive Enrollments,139176.0,Includes Retroactive Enrollments,668140.0,Includes Retroactive Enrollments,10807.0,,10079.0,,5836.0,,825.0,,1198.0,,28420.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,6.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.047,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +CT,Connecticut,201309,N,U,Y,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +CT,Connecticut,201706,Y,P,N,4793.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Includes Duplicates,4452.0,Does Not Include All Medicaid Applications Received By the SBM; Includes Duplicates; Includes Renewals and/or Redeterminations,9245.0,Does Not Include All Medicaid Applications; Includes Duplicates,9405.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,88.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,9493.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,316717.0,Does Not Include All Full-Benefit Child Medicaid enrollees; Does Not Include All CHIP enrollees,794805.0,Does Not Include All Full-Benefit Medicaid enrollees; Does Not Include All CHIP enrollees,777208.0,Does Not Include All Full-Benefit Medicaid enrollees,17597.0,Does Not Include All CHIP enrollees,,,,,,,,,,,,,,,,,, +CT,Connecticut,201706,Y,U,Y,4793.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Includes Duplicates,4452.0,Does Not Include All Medicaid Applications Received By the SBM; Includes Duplicates; Includes Renewals and/or Redeterminations,9245.0,Does Not Include All Medicaid Applications; Includes Duplicates,9405.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,88.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,9493.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,316717.0,Does Not Include All Full-Benefit Child Medicaid enrollees,794805.0,Does Not Include All Full-Benefit Medicaid enrollees; Does Not Include All CHIP enrollees,777208.0,Does Not Include All Full-Benefit Medicaid enrollees,17597.0,Does Not Include All CHIP enrollees,,,,,,,,,,,,,,,,,, +CT,Connecticut,201707,Y,P,N,3718.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Includes Duplicates,4513.0,Does Not Include All Medicaid Applications Received By the SBM; Includes Duplicates; Includes Renewals and/or Redeterminations,8231.0,Does Not Include All Medicaid Applications; Includes Duplicates,8788.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,113.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,8901.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,318734.0,Does Not Include All Full-Benefit Child Medicaid enrollees; Does Not Include All CHIP enrollees,799837.0,Does Not Include All Full-Benefit Medicaid enrollees; Does Not Include All CHIP enrollees,782506.0,Does Not Include All Full-Benefit Medicaid enrollees,17331.0,Does Not Include All CHIP enrollees,,,,,,,,,,,,,,,,,, +CT,Connecticut,201707,Y,U,Y,3718.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Includes Duplicates,4513.0,Does Not Include All Medicaid Applications Received By the SBM; Includes Duplicates; Includes Renewals and/or Redeterminations,8231.0,Does Not Include All Medicaid Applications; Includes Duplicates,8788.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,113.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,8901.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,318734.0,Does Not Include All Full-Benefit Child Medicaid enrollees,799837.0,Does Not Include All Full-Benefit Medicaid enrollees; Does Not Include All CHIP enrollees,782506.0,Does Not Include All Full-Benefit Medicaid enrollees,17331.0,Does Not Include All CHIP enrollees,,,,,,,,,,,,,,,,,, +CT,Connecticut,201708,Y,P,N,3133.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Includes Duplicates,4998.0,Does Not Include All Medicaid Applications Received By the SBM; Includes Duplicates; Includes Renewals and/or Redeterminations,8131.0,Does Not Include All Medicaid Applications; Includes Duplicates,9282.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,121.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,9403.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,318533.0,Does Not Include All Full-Benefit Child Medicaid enrollees; Does Not Include All CHIP enrollees,801870.0,Does Not Include All Full-Benefit Medicaid enrollees; Does Not Include All CHIP enrollees,784375.0,Does Not Include All Full-Benefit Medicaid enrollees,17495.0,Does Not Include All CHIP enrollees,,,,,,,,,,,,,,,,,, +CT,Connecticut,201708,Y,U,Y,3133.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Includes Duplicates,4998.0,Does Not Include All Medicaid Applications Received By the SBM; Includes Duplicates; Includes Renewals and/or Redeterminations,8131.0,Does Not Include All Medicaid Applications; Includes Duplicates,9282.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,121.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,9403.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,318533.0,Does Not Include All Full-Benefit Child Medicaid enrollees,801870.0,Does Not Include All Full-Benefit Medicaid enrollees; Does Not Include All CHIP enrollees,784375.0,Does Not Include All Full-Benefit Medicaid enrollees,17495.0,Does Not Include All CHIP enrollees,,,,,,,,,,,,,,,,,, +CT,Connecticut,201709,Y,P,N,3084.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Includes Duplicates,4081.0,Does Not Include All Medicaid Applications Received By the SBM; Includes Duplicates; Includes Renewals and/or Redeterminations,7165.0,Does Not Include All Medicaid Applications; Includes Duplicates,7681.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,96.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,7777.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,326540.0,Does Not Include All Full-Benefit Child Medicaid enrollees; Does Not Include All CHIP enrollees,813767.0,Does Not Include All Full-Benefit Medicaid enrollees; Does Not Include All CHIP enrollees,796032.0,Does Not Include All Full-Benefit Medicaid enrollees,17735.0,Does Not Include All CHIP enrollees,,,,,,,,,,,,,,,,,, +CT,Connecticut,201709,Y,U,Y,3084.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Includes Duplicates,4081.0,Does Not Include All Medicaid Applications Received By the SBM; Includes Duplicates; Includes Renewals and/or Redeterminations,7165.0,Does Not Include All Medicaid Applications; Includes Duplicates,7681.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,96.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,7777.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,326540.0,Does Not Include All Full-Benefit Child Medicaid enrollees,813767.0,Does Not Include All Full-Benefit Medicaid enrollees; Does Not Include All CHIP enrollees,796032.0,Does Not Include All Full-Benefit Medicaid enrollees,17735.0,Does Not Include All CHIP enrollees,,,,,,,,,,,,,,,,,, +CT,Connecticut,201710,Y,P,N,3931.0,,9199.0,,13130.0,,18626.0,,244.0,,18870.0,,334518.0,,835724.0,,817984.0,,17740.0,,,,,,,,,,,,,,,,,,, +CT,Connecticut,201710,Y,U,Y,3931.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Includes Duplicates,9199.0,Does Not Include All Medicaid Applications Received By the SBM; Includes Duplicates; Includes Renewals and/or Redeterminations,13130.0,Does Not Include All Medicaid Applications; Includes Duplicates,18626.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,244.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,18870.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,334518.0,Does Not Include All Full-Benefit Child Medicaid enrollees,835724.0,Does Not Include All Full-Benefit Medicaid enrollees; Does Not Include All CHIP enrollees,817984.0,,17740.0,,,,,,,,,,,,,,,,,,, +CT,Connecticut,201711,Y,P,N,3615.0,,25192.0,,28807.0,,19084.0,,671.0,,19755.0,,335531.0,,835934.0,,817708.0,,18226.0,,,,,,,,,,,,,,,,,,, +CT,Connecticut,201711,Y,U,Y,3615.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Includes Duplicates,25192.0,Does Not Include All Medicaid Applications Received By the SBM; Includes Duplicates; Includes Renewals and/or Redeterminations,28807.0,Does Not Include All Medicaid Applications; Includes Duplicates,19084.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,671.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,19755.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,335531.0,Does Not Include All Full-Benefit Child Medicaid enrollees,835934.0,Does Not Include All Full-Benefit Medicaid enrollees; Does Not Include All CHIP enrollees,817708.0,,18226.0,,,,,,,,,,,,,,,,,,, +CT,Connecticut,201712,Y,P,N,3240.0,,27430.0,,30670.0,,19933.0,,816.0,,20749.0,,331812.0,,836906.0,,818543.0,,18363.0,,,,,,,,,,,,,,,,,,, +CT,Connecticut,201712,Y,U,Y,3240.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Includes Duplicates,27430.0,Does Not Include All Medicaid Applications Received By the SBM; Includes Duplicates; Includes Renewals and/or Redeterminations,30670.0,Does Not Include All Medicaid Applications; Includes Duplicates,19933.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,816.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,20749.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,331812.0,Does Not Include All Full-Benefit Child Medicaid enrollees,836906.0,Does Not Include All Full-Benefit Medicaid enrollees; Does Not Include All CHIP enrollees,818543.0,,18363.0,,,,,,,,,,,,,,,,,,, +CT,Connecticut,201801,Y,P,N,3873.0,,15373.0,,19246.0,,17203.0,,339.0,,17542.0,,334701.0,,844856.0,,826797.0,,18059.0,,,,,,,,,,,,,,,,,,, +CT,Connecticut,201801,Y,U,Y,3873.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Includes Duplicates,15373.0,Does Not Include All Medicaid Applications Received By the SBM; Includes Duplicates; Includes Renewals and/or Redeterminations,19246.0,Does Not Include All Medicaid Applications; Includes Duplicates,17203.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,339.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,17542.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,334701.0,Does Not Include All Full-Benefit Child Medicaid enrollees,844856.0,Does Not Include All Full-Benefit Medicaid enrollees; Does Not Include All CHIP enrollees,826797.0,,18059.0,,,,,,,,,,,,,,,,,,, +CT,Connecticut,201802,Y,P,N,3558.0,,12612.0,,16170.0,,14111.0,,395.0,,14506.0,,333335.0,,840412.0,,822695.0,,17717.0,,,,16894.0,Does not include all MAGI determinations on applications,1165.0,Does not include all MAGI determinations on applications,469.0,Does not include all MAGI determinations on applications,76.0,Does not include all MAGI determinations on applications,124.0,Does not include all MAGI determinations on applications,,,,,, +CT,Connecticut,201802,Y,U,Y,3558.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Includes Duplicates,12612.0,Does Not Include All Medicaid Applications Received By the SBM; Includes Duplicates; Includes Renewals and/or Redeterminations,16170.0,Does Not Include All Medicaid Applications; Includes Duplicates,14111.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,395.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,14506.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,333335.0,Does Not Include All Full-Benefit Child Medicaid enrollees,840412.0,Does Not Include All Full-Benefit Medicaid enrollees; Does Not Include All CHIP enrollees,822695.0,,17717.0,,,,16894.0,Does not include all MAGI determinations on applications,1165.0,Does not include all MAGI determinations on applications,469.0,Does not include all MAGI determinations on applications,76.0,Does not include all MAGI determinations on applications,124.0,Does not include all MAGI determinations on applications,,,,,, +CT,Connecticut,201803,Y,P,N,3711.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Includes Duplicates,12310.0,Does Not Include All Medicaid Applications Received By the SBM; Includes Duplicates; Includes Renewals and/or Redeterminations,16021.0,Does Not Include All Medicaid Applications; Includes Duplicates,13922.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,339.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,14261.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,333759.0,Does Not Include All Full-Benefit Child Medicaid enrollees; Does Not Include All CHIP enrollees,842582.0,Does Not Include All Full-Benefit Medicaid enrollees; Does Not Include All CHIP enrollees,825122.0,Does Not Include All Full-Benefit Medicaid enrollees,17460.0,Does Not Include All CHIP enrollees,,,16689.0,Does not include all MAGI determinations on applications,1310.0,Does not include all MAGI determinations on applications,554.0,Does not include all MAGI determinations on applications,52.0,Does not include all MAGI determinations on applications,113.0,Does not include all MAGI determinations on applications,,,,,, +CT,Connecticut,201803,Y,U,Y,3711.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Includes Duplicates,12310.0,Does Not Include All Medicaid Applications Received By the SBM; Includes Duplicates; Includes Renewals and/or Redeterminations,16021.0,Does Not Include All Medicaid Applications; Includes Duplicates,13922.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,339.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,14261.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,333759.0,Does Not Include All Full-Benefit Child Medicaid enrollees,842582.0,Does Not Include All Full-Benefit Medicaid enrollees; Does Not Include All CHIP enrollees,825122.0,Does Not Include All Full-Benefit Medicaid enrollees,17460.0,Does Not Include All CHIP enrollees,,,16689.0,Does not include all MAGI determinations on applications,1310.0,Does not include all MAGI determinations on applications,554.0,Does not include all MAGI determinations on applications,52.0,Does not include all MAGI determinations on applications,113.0,Does not include all MAGI determinations on applications,,,,,, +CT,Connecticut,201804,Y,P,N,4158.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Includes Duplicates,12192.0,Does Not Include All Medicaid Applications Received By the SBM; Includes Duplicates; Includes Renewals and/or Redeterminations,16350.0,Does Not Include All Medicaid Applications; Includes Duplicates,14559.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,422.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,14981.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,334328.0,Does Not Include All Full-Benefit Child Medicaid enrollees; Does Not Include All CHIP enrollees,843388.0,Does Not Include All Full-Benefit Medicaid enrollees; Does Not Include All CHIP enrollees,825333.0,Does Not Include All Full-Benefit Medicaid enrollees,18055.0,Does Not Include All CHIP enrollees,,,16479.0,Does not include all MAGI determinations on applications,1163.0,Does not include all MAGI determinations on applications,390.0,Does not include all MAGI determinations on applications,107.0,Does not include all MAGI determinations on applications,85.0,Does not include all MAGI determinations on applications,,,,,, +CT,Connecticut,201804,Y,U,Y,4158.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Includes Duplicates,12192.0,Does Not Include All Medicaid Applications Received By the SBM; Includes Duplicates; Includes Renewals and/or Redeterminations,16350.0,Does Not Include All Medicaid Applications; Includes Duplicates,14559.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,422.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,14981.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,334328.0,Does Not Include All Full-Benefit Child Medicaid enrollees,843388.0,Does Not Include All Full-Benefit Medicaid enrollees; Does Not Include All CHIP enrollees,825333.0,Does Not Include All Full-Benefit Medicaid enrollees,18055.0,Does Not Include All CHIP enrollees,,,16479.0,Does not include all MAGI determinations on applications,1163.0,Does not include all MAGI determinations on applications,390.0,Does not include all MAGI determinations on applications,107.0,Does not include all MAGI determinations on applications,85.0,Does not include all MAGI determinations on applications,,,,,, +CT,Connecticut,201805,Y,P,N,4792.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Includes Duplicates,12138.0,Does Not Include All Medicaid Applications Received By the SBM; Includes Duplicates; Includes Renewals and/or Redeterminations,16930.0,Does Not Include All Medicaid Applications; Includes Duplicates,14787.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,304.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,15091.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,334841.0,Does Not Include All Full-Benefit Child Medicaid enrollees; Does Not Include All CHIP enrollees,844938.0,Does Not Include All Full-Benefit Medicaid enrollees; Does Not Include All CHIP enrollees,826771.0,Does Not Include All Full-Benefit Medicaid enrollees,18167.0,Does Not Include All CHIP enrollees,,,,,,,,,,,,,,,,,, +CT,Connecticut,201805,Y,U,Y,4792.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Includes Duplicates,12138.0,Does Not Include All Medicaid Applications Received By the SBM; Includes Duplicates; Includes Renewals and/or Redeterminations,16930.0,Does Not Include All Medicaid Applications; Includes Duplicates,14787.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,304.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,15091.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,334841.0,Does Not Include All Full-Benefit Child Medicaid enrollees,844938.0,Does Not Include All Full-Benefit Medicaid enrollees; Does Not Include All CHIP enrollees,826771.0,Does Not Include All Full-Benefit Medicaid enrollees,18167.0,Does Not Include All CHIP enrollees,,,,,,,,,,,,,,,,,, +CT,Connecticut,201806,Y,P,N,4841.0,Includes Duplicates,11032.0,Includes Duplicates; Includes Renewals and/or Redeterminations,15873.0,Includes Duplicates,14588.0,Includes Renewals and/or Redeterminations,338.0,Includes Renewals and/or Redeterminations,14926.0,Includes Renewals and/or Redeterminations,322226.0,,834343.0,,815730.0,,18613.0,,,,,,,,,,,,,,,,,,, +CT,Connecticut,201806,Y,U,Y,4841.0,Includes Duplicates,11032.0,Includes Duplicates; Includes Renewals and/or Redeterminations,15873.0,Includes Duplicates,14588.0,Includes Renewals and/or Redeterminations,338.0,Includes Renewals and/or Redeterminations,14926.0,Includes Renewals and/or Redeterminations,322226.0,,834343.0,,815730.0,,18613.0,,,,,,,,,,,,,,,,,,, +CT,Connecticut,201807,Y,P,N,4702.0,Includes Duplicates,11289.0,Includes Duplicates; Includes Renewals and/or Redeterminations,15991.0,Includes Duplicates,14860.0,Includes Renewals and/or Redeterminations,347.0,Includes Renewals and/or Redeterminations,15207.0,Includes Renewals and/or Redeterminations,328869.0,,845276.0,,826557.0,,18719.0,,,,,,,,,,,,,,,,,,, +CT,Connecticut,201807,Y,U,Y,4702.0,Includes Duplicates,11289.0,Includes Duplicates; Includes Renewals and/or Redeterminations,15991.0,Includes Duplicates,14860.0,Includes Renewals and/or Redeterminations,347.0,Includes Renewals and/or Redeterminations,15207.0,Includes Renewals and/or Redeterminations,328869.0,,845276.0,,826557.0,,18719.0,,,,,,,,,,,,,,,,,,, +CT,Connecticut,201808,Y,P,N,5097.0,Includes Duplicates,12337.0,Includes Duplicates; Includes Renewals and/or Redeterminations,17434.0,Includes Duplicates,16284.0,Includes Renewals and/or Redeterminations,365.0,Includes Renewals and/or Redeterminations,16649.0,Includes Renewals and/or Redeterminations,329030.0,,845892.0,,827262.0,,18630.0,,,,,,,,,,,,,,,,,,, +CT,Connecticut,201808,Y,U,Y,5097.0,Includes Duplicates,12337.0,Includes Duplicates; Includes Renewals and/or Redeterminations,17434.0,Includes Duplicates,16284.0,Includes Renewals and/or Redeterminations,365.0,Includes Renewals and/or Redeterminations,16649.0,Includes Renewals and/or Redeterminations,329137.0,,847023.0,,828292.0,,18731.0,,,,,,,,,,,,,,,,,,, +CT,Connecticut,201809,Y,P,N,4460.0,Includes Duplicates,10385.0,Includes Duplicates; Includes Renewals and/or Redeterminations,14845.0,Includes Duplicates,13944.0,Includes Renewals and/or Redeterminations,315.0,Includes Renewals and/or Redeterminations,14259.0,Includes Renewals and/or Redeterminations,329162.0,,847594.0,,828885.0,,18709.0,,,,,,,,,,,,,,,,,,, +CT,Connecticut,201809,Y,U,Y,4460.0,Includes Duplicates,10385.0,Includes Duplicates; Includes Renewals and/or Redeterminations,14845.0,Includes Duplicates,13944.0,Includes Renewals and/or Redeterminations,315.0,Includes Renewals and/or Redeterminations,14259.0,Includes Renewals and/or Redeterminations,329162.0,,847594.0,,828885.0,,18709.0,,,,,,,,,,,,,,,,,,, +CT,Connecticut,201810,Y,P,N,5561.0,Includes Duplicates,12002.0,Includes Duplicates; Includes Renewals and/or Redeterminations,17563.0,Includes Duplicates,15693.0,Includes Renewals and/or Redeterminations,365.0,Includes Renewals and/or Redeterminations,16058.0,Includes Renewals and/or Redeterminations,330514.0,,847899.0,,828957.0,,18942.0,,,,,,,,,,,,,,,,,,, +CT,Connecticut,201810,Y,U,Y,5561.0,Includes Duplicates,12002.0,Includes Duplicates; Includes Renewals and/or Redeterminations,17563.0,Includes Duplicates,15693.0,Includes Renewals and/or Redeterminations,365.0,Includes Renewals and/or Redeterminations,16058.0,Includes Renewals and/or Redeterminations,330514.0,,847899.0,,828957.0,,18942.0,,,,,,,,,,,,,,,,,,, +CT,Connecticut,201811,Y,P,N,5313.0,Includes Duplicates,17214.0,Includes Duplicates; Includes Renewals and/or Redeterminations,22527.0,Includes Duplicates,15583.0,Includes Renewals and/or Redeterminations,570.0,Includes Renewals and/or Redeterminations,16153.0,Includes Renewals and/or Redeterminations,329960.0,,852186.0,,832770.0,,19416.0,,,,,,,,,,,,,,,,,,, +CT,Connecticut,201811,Y,U,Y,5313.0,Includes Duplicates,17214.0,Includes Duplicates; Includes Renewals and/or Redeterminations,22527.0,Includes Duplicates,15583.0,Includes Renewals and/or Redeterminations,570.0,Includes Renewals and/or Redeterminations,16153.0,Includes Renewals and/or Redeterminations,329960.0,,852186.0,,832770.0,,19416.0,,,,,,,,,,,,,,,,,,, +CT,Connecticut,201812,Y,P,N,5167.0,Includes Duplicates,21435.0,Includes Duplicates; Includes Renewals and/or Redeterminations,26602.0,Includes Duplicates,16834.0,Includes Renewals and/or Redeterminations,683.0,Includes Renewals and/or Redeterminations,17517.0,Includes Renewals and/or Redeterminations,330253.0,,855943.0,,836069.0,,19874.0,,,,,,,,,,,,,,,,,,, +CT,Connecticut,201812,Y,U,Y,5167.0,Includes Duplicates,21435.0,Includes Duplicates; Includes Renewals and/or Redeterminations,26602.0,Includes Duplicates,16834.0,Includes Renewals and/or Redeterminations,683.0,Includes Renewals and/or Redeterminations,17517.0,Includes Renewals and/or Redeterminations,330253.0,,855943.0,,836069.0,,19874.0,,,,,,,,,,,,,,,,,,, +CT,Connecticut,201901,Y,P,N,5294.0,Includes Duplicates,13976.0,Includes Duplicates; Includes Renewals and/or Redeterminations,19270.0,Includes Duplicates,16806.0,Includes Renewals and/or Redeterminations,414.0,Includes Renewals and/or Redeterminations,17220.0,Includes Renewals and/or Redeterminations,337116.0,,861977.0,,841860.0,,20117.0,,,,,,,,,,,,,,,,,,, +CT,Connecticut,201901,Y,U,Y,5294.0,Includes Duplicates,13976.0,Includes Duplicates; Includes Renewals and/or Redeterminations,19270.0,Includes Duplicates,16806.0,Includes Renewals and/or Redeterminations,414.0,Includes Renewals and/or Redeterminations,17220.0,Includes Renewals and/or Redeterminations,337116.0,,861977.0,,841860.0,,20117.0,,,,,,,,,,,,,,,,,,, +CT,Connecticut,201902,Y,P,N,4496.0,Includes Duplicates,10652.0,Includes Duplicates; Includes Renewals and/or Redeterminations,15148.0,Includes Duplicates,13403.0,Includes Renewals and/or Redeterminations,321.0,Includes Renewals and/or Redeterminations,13724.0,Includes Renewals and/or Redeterminations,337555.0,,862725.0,,842741.0,,19984.0,,,,15333.0,,369.0,,129.0,,17.0,,36.0,,,,,,, +CT,Connecticut,201902,Y,U,Y,4496.0,Includes Duplicates,10652.0,Includes Duplicates; Includes Renewals and/or Redeterminations,15148.0,Includes Duplicates,13403.0,Includes Renewals and/or Redeterminations,321.0,Includes Renewals and/or Redeterminations,13724.0,Includes Renewals and/or Redeterminations,337555.0,,862725.0,,842741.0,,19984.0,,,,15333.0,,369.0,,129.0,,17.0,,36.0,,,,,,, +CT,Connecticut,201903,Y,P,N,5522.0,Includes Duplicates,11352.0,Includes Duplicates; Includes Renewals and/or Redeterminations,16874.0,Includes Duplicates,14364.0,Includes Renewals and/or Redeterminations,339.0,Includes Renewals and/or Redeterminations,14703.0,Includes Renewals and/or Redeterminations,338013.0,,867305.0,,847517.0,,19788.0,,,,16667.0,,441.0,,155.0,,12.0,,40.0,,,,,,, +CT,Connecticut,201903,Y,U,Y,5522.0,Includes Duplicates,11352.0,Includes Duplicates; Includes Renewals and/or Redeterminations,16874.0,Includes Duplicates,14364.0,Includes Renewals and/or Redeterminations,339.0,Includes Renewals and/or Redeterminations,14703.0,Includes Renewals and/or Redeterminations,338013.0,,867305.0,,847517.0,,19788.0,,,,16667.0,,441.0,,155.0,,12.0,,40.0,,,,,,, +CT,Connecticut,201904,Y,P,N,5501.0,Includes Duplicates,11473.0,Includes Duplicates; Includes Renewals and/or Redeterminations,16974.0,Includes Duplicates,14993.0,Includes Renewals and/or Redeterminations,353.0,Includes Renewals and/or Redeterminations,15346.0,Includes Renewals and/or Redeterminations,336758.0,,863051.0,,843376.0,,19675.0,,,,17162.0,,427.0,,149.0,,31.0,,27.0,,,,,,, +CT,Connecticut,201904,Y,U,Y,5501.0,Includes Duplicates,11473.0,Includes Duplicates; Includes Renewals and/or Redeterminations,16974.0,Includes Duplicates,14993.0,Includes Renewals and/or Redeterminations,353.0,Includes Renewals and/or Redeterminations,15346.0,Includes Renewals and/or Redeterminations,336758.0,,863051.0,,843376.0,,19675.0,,,,17162.0,,427.0,,149.0,,31.0,,27.0,,,,,,, +CT,Connecticut,201905,Y,P,N,5637.0,Includes Duplicates,11565.0,Includes Duplicates; Includes Renewals and/or Redeterminations,17202.0,Includes Duplicates,15116.0,Includes Renewals and/or Redeterminations,369.0,Includes Renewals and/or Redeterminations,15485.0,Includes Renewals and/or Redeterminations,336970.0,,862405.0,,842612.0,,19793.0,,,,,,,,,,,,,,,,,,, +CT,Connecticut,201905,Y,U,Y,5637.0,Includes Duplicates,11565.0,Includes Duplicates; Includes Renewals and/or Redeterminations,17202.0,Includes Duplicates,15116.0,Includes Renewals and/or Redeterminations,369.0,Includes Renewals and/or Redeterminations,15485.0,Includes Renewals and/or Redeterminations,336970.0,,862405.0,,842612.0,,19793.0,,,,,,,,,,,,,,,,,,, +CT,Connecticut,201906,Y,P,N,4866.0,Includes Duplicates,10905.0,Includes Duplicates; Includes Renewals and/or Redeterminations,15771.0,Includes Duplicates,14060.0,Includes Renewals and/or Redeterminations,332.0,Includes Renewals and/or Redeterminations,14392.0,Includes Renewals and/or Redeterminations,335347.0,,858543.0,,838673.0,,19870.0,,,,,,,,,,,,,,,,,,, +CT,Connecticut,201906,Y,U,Y,4866.0,Includes Duplicates,10905.0,Includes Duplicates; Includes Renewals and/or Redeterminations,15771.0,Includes Duplicates,14060.0,Includes Renewals and/or Redeterminations,332.0,Includes Renewals and/or Redeterminations,14392.0,Includes Renewals and/or Redeterminations,335347.0,,858543.0,,838673.0,,19870.0,,,,,,,,,,,,,,,,,,, +CT,Connecticut,201907,Y,P,N,5634.0,,12194.0,,17828.0,,15779.0,,427.0,,16206.0,,335331.0,,857415.0,,837367.0,,20048.0,,,,,,,,,,,,,,,,,,, +CT,Connecticut,201907,Y,U,Y,5634.0,,12194.0,,17828.0,,15779.0,,427.0,,16206.0,,335331.0,,857415.0,,837367.0,,20048.0,,,,,,,,,,,,,,,,,,, +CT,Connecticut,201908,Y,P,N,5535.0,,12187.0,,17722.0,,16383.0,,447.0,,16830.0,,334971.0,,855505.0,,835429.0,,20076.0,,,,,,,,,,,,,,,,,,, +CT,Connecticut,201908,Y,U,Y,5535.0,,12187.0,,17722.0,,16383.0,,447.0,,16830.0,,334971.0,,855505.0,,835429.0,,20076.0,,,,,,,,,,,,,,,,,,, +CT,Connecticut,201909,Y,P,N,5555.0,,11189.0,,16744.0,,15007.0,,398.0,,15405.0,,334944.0,,855043.0,,835049.0,,19994.0,,,,,,,,,,,,,,,,,,, +CT,Connecticut,201909,Y,U,Y,5555.0,,11189.0,,16744.0,,15007.0,,398.0,,15405.0,,334944.0,,855043.0,,835049.0,,19994.0,,,,,,,,,,,,,,,,,,, +CT,Connecticut,201910,Y,P,N,6031.0,,12475.0,,18506.0,,16728.0,,392.0,,17120.0,,333764.0,,851428.0,,831289.0,,20139.0,,,,,,,,,,,,,,,,,,, +CT,Connecticut,201910,Y,U,Y,6031.0,,12475.0,,18506.0,,16728.0,,392.0,,17120.0,,333764.0,,851428.0,,831289.0,,20139.0,,,,,,,,,,,,,,,,,,, +CT,Connecticut,201911,Y,P,N,5725.0,,16348.0,,22073.0,,17602.0,,502.0,,18104.0,,332088.0,,847287.0,,827095.0,,20192.0,,,,,,,,,,,,,,,,,,, +CT,Connecticut,201911,Y,U,Y,5725.0,,16348.0,,22073.0,,17602.0,,502.0,,18104.0,,332088.0,,847287.0,,827095.0,,20192.0,,,,,,,,,,,,,,,,,,, +CT,Connecticut,201912,Y,P,N,5304.0,,20612.0,,25916.0,,17605.0,,678.0,,18283.0,,332715.0,,850657.0,,830030.0,,20627.0,,,,,,,,,,,,,,,,,,, +CT,Connecticut,201912,Y,U,Y,5304.0,,20612.0,,25916.0,,17605.0,,678.0,,18283.0,,332715.0,,850657.0,,830030.0,,20627.0,,,,,,,,,,,,,,,,,,, +CT,Connecticut,202001,Y,P,N,6043.0,,16312.0,,22355.0,,20333.0,,514.0,,20847.0,,332514.0,,847119.0,,826738.0,,20381.0,,,,,,,,,,,,,,,,,,, +CT,Connecticut,202001,Y,U,Y,6043.0,,16312.0,,22355.0,,20333.0,,514.0,,20847.0,,332514.0,,847119.0,,826738.0,,20381.0,,,,,,,,,,,,,,,,,,, +CT,Connecticut,202002,Y,P,N,5048.0,,12401.0,,17449.0,,15642.0,,342.0,,15984.0,,331656.0,,844967.0,,824549.0,,20418.0,,,,17457.0,,360.0,,73.0,,22.0,,19.0,,,,,,, +CT,Connecticut,202002,Y,U,Y,5048.0,,12401.0,,17449.0,,15642.0,,342.0,,15984.0,,331656.0,,844967.0,,824549.0,,20418.0,,,,17457.0,,360.0,,73.0,,22.0,,19.0,,,,,,, +CT,Connecticut,202003,Y,P,N,4893.0,,15475.0,,20368.0,,17480.0,,432.0,,17912.0,,331375.0,,845434.0,,825094.0,,20340.0,,,,21675.0,,367.0,,83.0,,23.0,,14.0,,,,,,, +CT,Connecticut,202003,Y,U,Y,4893.0,,15475.0,,20368.0,,17480.0,,432.0,,17912.0,,331375.0,,845434.0,,825094.0,,20340.0,,,,21675.0,,367.0,,83.0,,23.0,,14.0,,,,,,, +CT,Connecticut,202004,Y,P,N,3613.0,,12989.0,,16602.0,,14222.0,,253.0,,14475.0,,334354.0,,860826.0,,840763.0,,20063.0,,,,17285.0,,304.0,,62.0,,10.0,,10.0,,,,,,, +CT,Connecticut,202004,Y,U,Y,3613.0,,12989.0,,16602.0,,14222.0,,253.0,,14475.0,,334354.0,,860826.0,,840763.0,,20063.0,,,,17285.0,,304.0,,62.0,,10.0,,10.0,,,,,,, +CT,Connecticut,202005,Y,P,N,2957.0,,7366.0,,10323.0,,9758.0,,192.0,,9950.0,,336747.0,,868067.0,,848280.0,,19787.0,,,,,,,,,,,,,,,,,,, +CT,Connecticut,202005,Y,U,Y,2957.0,,7366.0,,10323.0,,9758.0,,192.0,,9950.0,,336747.0,,868067.0,,848280.0,,19787.0,,,,,,,,,,,,,,,,,,, +CT,Connecticut,202006,Y,P,N,3336.0,,9161.0,,12497.0,,10684.0,,261.0,,10945.0,,337997.0,,874974.0,,855252.0,,19722.0,,,,,,,,,,,,,,,,,,, +CT,Connecticut,202006,Y,U,Y,3336.0,,9161.0,,12497.0,,10684.0,,261.0,,10945.0,,337997.0,,874974.0,,855252.0,,19722.0,,,,,,,,,,,,,,,,,,, +CT,Connecticut,202007,Y,P,N,3770.0,,9376.0,,13146.0,,12057.0,,263.0,,12320.0,,341030.0,,885365.0,,865495.0,,19870.0,,,,,,,,,,,,,,,,,,, +CT,Connecticut,202007,Y,U,Y,3770.0,,9376.0,,13146.0,,12057.0,,263.0,,12320.0,,341030.0,,885365.0,,865495.0,,19870.0,,,,,,,,,,,,,,,,,,, +CT,Connecticut,202008,Y,P,N,3817.0,,8747.0,,12564.0,,10367.0,,230.0,,10597.0,,343225.0,,893114.0,,873283.0,,19831.0,,,,,,,,,,,,,,,,,,, +CT,Connecticut,202008,Y,U,Y,3817.0,,8747.0,,12564.0,,10367.0,,230.0,,10597.0,,343225.0,,893114.0,,873283.0,,19831.0,,,,,,,,,,,,,,,,,,, +CT,Connecticut,202009,Y,P,N,3799.0,,8520.0,,12319.0,,12583.0,,226.0,,12809.0,,345228.0,,900777.0,,881308.0,,19469.0,,,,,,,,,,,,,,,,,,, +CT,Connecticut,202009,Y,U,Y,3799.0,,8520.0,,12319.0,,12583.0,,226.0,,12809.0,,345228.0,,900777.0,,881308.0,,19469.0,,,,,,,,,,,,,,,,,,, +CT,Connecticut,202010,Y,P,N,4340.0,,8488.0,,12828.0,,12417.0,,251.0,,12668.0,,347143.0,,909492.0,,890180.0,,19312.0,,,,,,,,,,,,,,,,,,, +CT,Connecticut,202010,Y,U,Y,4340.0,,8488.0,,12828.0,,12417.0,,251.0,,12668.0,,347143.0,,909492.0,,890180.0,,19312.0,,,,,,,,,,,,,,,,,,, +CT,Connecticut,202011,Y,P,N,4750.0,,11804.0,,16554.0,,14524.0,,317.0,,14841.0,,348368.0,,917572.0,,898364.0,,19208.0,,,,,,,,,,,,,,,,,,, +CT,Connecticut,202011,Y,U,Y,4750.0,,11804.0,,16554.0,,14524.0,,317.0,,14841.0,,348368.0,,917572.0,,898364.0,,19208.0,,,,,,,,,,,,,,,,,,, +CT,Connecticut,202012,Y,P,N,4118.0,,15816.0,,19934.0,,14128.0,,466.0,,14594.0,,349021.0,,927770.0,,908351.0,,19419.0,,,,,,,,,,,,,,,,,,, +CT,Connecticut,202012,Y,U,Y,4118.0,,15816.0,,19934.0,,14128.0,,466.0,,14594.0,,349021.0,,927770.0,,908351.0,,19419.0,,,,,,,,,,,,,,,,,,, +CT,Connecticut,202101,Y,P,N,3884.0,,9594.0,,13478.0,,11683.0,,258.0,,11941.0,,346078.0,,937667.0,,918751.0,,18916.0,,,,,,,,,,,,,,,,,,, +CT,Connecticut,202101,Y,U,Y,3884.0,,9594.0,,13478.0,,11683.0,,258.0,,11941.0,,346078.0,,937667.0,,918751.0,,18916.0,,,,,,,,,,,,,,,,,,, +CT,Connecticut,202102,Y,P,N,3453.0,,7177.0,,10630.0,,10834.0,,184.0,,11018.0,,348074.0,,941576.0,,923127.0,,18449.0,,,,9465.0,,187.0,,57.0,,6.0,,3.0,,,,,,, +CT,Connecticut,202102,Y,U,Y,3453.0,,7177.0,,10630.0,,10834.0,,184.0,,11018.0,,348074.0,,941576.0,,923127.0,,18449.0,,,,9465.0,,187.0,,57.0,,6.0,,3.0,,,,,,, +CT,Connecticut,202103,Y,P,N,4209.0,,7824.0,,12033.0,,11431.0,,223.0,,11654.0,,350746.0,,948002.0,,929761.0,,18241.0,,,,9979.0,,208.0,,50.0,,1.0,,12.0,,,,,,, +CT,Connecticut,202103,Y,U,Y,4209.0,,7824.0,,12033.0,,11431.0,,223.0,,11654.0,,350746.0,,948002.0,,929761.0,,18241.0,,,,9979.0,,208.0,,50.0,,1.0,,12.0,,,,,,, +CT,Connecticut,202104,Y,P,N,3379.0,,7042.0,,10421.0,,11962.0,,173.0,,12135.0,,352057.0,,949551.0,,931558.0,,17993.0,,,,8949.0,,219.0,,38.0,,9.0,,8.0,,,,,,, +CT,Connecticut,202104,Y,U,Y,3379.0,,7042.0,,10421.0,,11962.0,,173.0,,12135.0,,352057.0,,949551.0,,931558.0,,17993.0,,,,8949.0,,219.0,,38.0,,9.0,,8.0,,,,,,, +CT,Connecticut,202105,Y,P,N,3424.0,,7803.0,,11227.0,,10877.0,,228.0,,11105.0,,353468.0,,951563.0,,933715.0,,17848.0,,,,,,,,,,,,,,,,,,, +CT,Connecticut,202105,Y,U,Y,3424.0,,7803.0,,11227.0,,10877.0,,228.0,,11105.0,,353468.0,,951563.0,,933715.0,,17848.0,,,,,,,,,,,,,,,,,,, +CT,Connecticut,202106,Y,P,N,4280.0,,8067.0,,12347.0,,10673.0,,253.0,,10926.0,,357691.0,,961399.0,,943740.0,,17659.0,,,,,,,,,,,,,,,,,,, +CT,Connecticut,202106,Y,U,Y,4280.0,,8067.0,,12347.0,,10673.0,,253.0,,10926.0,,357691.0,,961399.0,,943740.0,,17659.0,,,,,,,,,,,,,,,,,,, +CT,Connecticut,202107,Y,P,N,4154.0,,8112.0,,12266.0,,10543.0,,283.0,,10826.0,,356725.0,,960844.0,,943205.0,,17639.0,,,,,,,,,,,,,,,,,,, +CT,Connecticut,202107,Y,U,Y,4154.0,,8112.0,,12266.0,,10543.0,,283.0,,10826.0,,356725.0,,960844.0,,943205.0,,17639.0,,,,,,,,,,,,,,,,,,, +CT,Connecticut,202108,Y,P,N,4572.0,,8913.0,,13485.0,,11958.0,,278.0,,12236.0,,358747.0,,962673.0,,945102.0,,17571.0,,,,,,,,,,,,,,,,,,, +CT,Connecticut,202108,Y,U,Y,4572.0,,8913.0,,13485.0,,11958.0,,278.0,,12236.0,,358747.0,,962673.0,,945102.0,,17571.0,,,,,,,,,,,,,,,,,,, +CT,Connecticut,202109,Y,P,N,4386.0,,7643.0,,12029.0,,11122.0,,239.0,,11361.0,,357910.0,,960961.0,,943607.0,,17354.0,,,,,,,,,,,,,,,,,,, +CT,Connecticut,202109,Y,U,Y,4386.0,,7643.0,,12029.0,,11122.0,,239.0,,11361.0,,356737.0,,962044.0,,944690.0,,17354.0,,,,,,,,,,,,,,,,,,, +CT,Connecticut,202110,Y,P,N,4958.0,,7154.0,,12112.0,,10740.0,,255.0,,10995.0,,356987.0,,959197.0,,942132.0,,17065.0,,,,,,,,,,,,,,,,,,, +CT,Connecticut,202110,Y,U,Y,4958.0,,7154.0,,12112.0,,10740.0,,255.0,,10995.0,,355730.0,,960108.0,,943043.0,,17065.0,,,,,,,,,,,,,,,,,,, +CT,Connecticut,202111,Y,P,N,5916.0,,9187.0,,15103.0,,11548.0,,257.0,,11805.0,,357612.0,,963139.0,,946458.0,,16681.0,,,,,,,,,,,,,,,,,,, +CT,Connecticut,202111,Y,U,Y,5916.0,,9187.0,,15103.0,,11548.0,,257.0,,11805.0,,356541.0,,963995.0,,947314.0,,16681.0,,,,,,,,,,,,,,,,,,, +CT,Connecticut,202112,Y,P,N,5055.0,,12192.0,,17247.0,,11422.0,,349.0,,11771.0,,358613.0,,967463.0,,951186.0,,16277.0,,,,,,,,,,,,,,,,,,, +CT,Connecticut,202112,Y,U,Y,5055.0,,12192.0,,17247.0,,11422.0,,349.0,,11771.0,,358722.0,,968210.0,,951998.0,,16212.0,,,,,,,,,,,,,,,,,,, +CT,Connecticut,202201,Y,P,N,4886.0,,9607.0,,14493.0,,10756.0,,319.0,,11075.0,,358107.0,,968967.0,,953951.0,,15016.0,,,,12622.0,,181.0,,46.0,,6.0,,14.0,,,,,,, +CT,Connecticut,202201,Y,U,Y,4886.0,,9607.0,,14493.0,,10756.0,,319.0,,11075.0,,356918.0,,969817.0,,954801.0,,15016.0,,,,12622.0,,181.0,,46.0,,6.0,,14.0,,,,,,, +CT,Connecticut,202202,Y,P,N,4753.0,,6161.0,,10914.0,,9530.0,,181.0,,9711.0,,358067.0,,970162.0,,955501.0,,14661.0,,,,8053.0,,164.0,,47.0,,9.0,,7.0,,,,,,, +CT,Connecticut,202202,Y,U,Y,4753.0,,6161.0,,10914.0,,9530.0,,181.0,,9711.0,,357096.0,,971179.0,,956518.0,,14661.0,,,,8053.0,,164.0,,47.0,,9.0,,7.0,,,,,,, +CT,Connecticut,202203,Y,P,N,5705.0,,6912.0,,12617.0,,10796.0,,224.0,,11020.0,,359057.0,,970464.0,,956031.0,,14433.0,,,,9257.0,,231.0,,50.0,,12.0,,13.0,,,,,,, +CT,Connecticut,202203,Y,U,Y,5705.0,,6912.0,,12617.0,,10796.0,,224.0,,11020.0,,357875.0,,971185.0,,956752.0,,14433.0,,,,9257.0,,231.0,,50.0,,12.0,,13.0,,,,,,, +CT,Connecticut,202204,Y,P,N,4794.0,,5840.0,,10634.0,,11451.0,,168.0,,11619.0,,358822.0,,970443.0,,956356.0,,14087.0,,,,7757.0,,192.0,,28.0,,4.0,,13.0,,,,,,, +CT,Connecticut,202204,Y,U,Y,4794.0,,5840.0,,10634.0,,11451.0,,168.0,,11619.0,,357742.0,,971354.0,,957136.0,,14218.0,,,,7757.0,,192.0,,28.0,,4.0,,13.0,,,,,,, +CT,Connecticut,202205,Y,P,N,4851.0,,6253.0,,11104.0,,10891.0,,208.0,,11099.0,,359707.0,,973329.0,,958933.0,,14396.0,,,,8504.0,,155.0,,18.0,,7.0,,10.0,,,,,,, +CT,Connecticut,202205,Y,U,Y,4851.0,,6253.0,,11104.0,,10891.0,,208.0,,11099.0,,358903.0,,974428.0,,959936.0,,14492.0,,,,8504.0,,155.0,,18.0,,7.0,,10.0,,,,,,, +CT,Connecticut,202206,Y,P,N,4782.0,,6399.0,,11181.0,,10009.0,,246.0,,10255.0,,359997.0,,973657.0,,959088.0,,14569.0,,,,8739.0,,135.0,,46.0,,6.0,,8.0,,,,,,, +CT,Connecticut,202206,Y,U,Y,4782.0,,6399.0,,11181.0,,10009.0,,246.0,,10255.0,,359148.0,,974747.0,,960062.0,,14685.0,,,,8739.0,,135.0,,46.0,,6.0,,8.0,,,,,,, +CT,Connecticut,202207,Y,P,N,4728.0,,6352.0,,11080.0,,9787.0,,205.0,,9992.0,,361338.0,,977908.0,,963316.0,,14592.0,,,,8652.0,,177.0,,48.0,,5.0,,16.0,,,,,,, +CT,Connecticut,202207,Y,U,Y,4728.0,,6352.0,,11080.0,,9787.0,,205.0,,9992.0,,360326.0,,979293.0,,964632.0,,14661.0,,,,8652.0,,177.0,,48.0,,5.0,,16.0,,,,,,, +CT,Connecticut,202208,Y,P,N,5630.0,,7372.0,,13002.0,,11735.0,,253.0,,11988.0,,363183.0,,984700.0,,970031.0,,14669.0,,,,10442.0,,173.0,,71.0,,5.0,,4.0,,,,,,, +CT,Connecticut,202208,Y,U,Y,5630.0,,7372.0,,13002.0,,11735.0,,253.0,,11988.0,,362198.0,,985813.0,,971092.0,,14721.0,,,,10442.0,,173.0,,71.0,,5.0,,4.0,,,,,,, +CT,Connecticut,202209,Y,P,N,4689.0,,6620.0,,11309.0,,11075.0,,218.0,,11293.0,,361671.0,,981315.0,,966772.0,,14543.0,,,,9480.0,,156.0,,44.0,,8.0,,11.0,,,,,,, +CT,Connecticut,202209,Y,U,Y,4689.0,,6620.0,,11309.0,,11075.0,,218.0,,11293.0,,365195.0,,993236.0,,978640.0,,14596.0,,,,9480.0,,156.0,,44.0,,8.0,,11.0,,,,,,, +CT,Connecticut,202210,Y,P,N,5674.0,,7239.0,,12913.0,,12117.0,,232.0,,12349.0,,367290.0,,997029.0,,982440.0,,14589.0,,,,10725.0,,190.0,,52.0,,8.0,,5.0,,,,,,, +CT,Connecticut,202210,Y,U,Y,5674.0,,7239.0,,12913.0,,12117.0,,232.0,,12349.0,,366408.0,,998216.0,,983573.0,,14643.0,,,,10725.0,,190.0,,52.0,,8.0,,5.0,,,,,,, +CT,Connecticut,202211,Y,P,N,5555.0,,9752.0,,15307.0,,12644.0,,340.0,,12984.0,,368655.0,,1001583.0,,987049.0,,14534.0,,,,13563.0,,185.0,,58.0,,11.0,,7.0,,,,,,, +CT,Connecticut,202211,Y,U,Y,5555.0,,9752.0,,15307.0,,12644.0,,340.0,,12984.0,,367514.0,,1002567.0,,987984.0,,14583.0,,,,13563.0,,185.0,,58.0,,11.0,,7.0,,,,,,, +CT,Connecticut,202212,Y,P,N,5076.0,,11597.0,,16673.0,,13337.0,,391.0,,13728.0,,369792.0,,1007603.0,,993073.0,,14530.0,,,,16067.0,,176.0,,78.0,,12.0,,1.0,,,,,,, +CT,Connecticut,202212,Y,U,Y,5076.0,,11597.0,,16673.0,,13337.0,,391.0,,13728.0,,370314.0,,1008718.0,,994116.0,,14602.0,,,,16067.0,,176.0,,78.0,,12.0,,1.0,,,,,,, +CT,Connecticut,202301,Y,P,N,5224.0,,10653.0,,15877.0,,14474.0,,328.0,,14802.0,,371045.0,,1012499.0,,998498.0,,14001.0,,,,15123.0,,169.0,,69.0,,5.0,,8.0,,,,,,, +CT,Connecticut,202301,Y,U,Y,5224.0,,10653.0,,15877.0,,14474.0,,328.0,,14802.0,,368918.0,,1012131.0,,998077.0,,14054.0,,,,15123.0,,169.0,,69.0,,5.0,,8.0,,,,,,, +CT,Connecticut,202302,Y,P,N,4757.0,,6839.0,,11596.0,,11849.0,,198.0,,12047.0,,370632.0,,1013896.0,,1000083.0,,13813.0,,,,9970.0,,121.0,,39.0,,7.0,,15.0,,,,,,, +CT,Connecticut,202302,Y,U,Y,4757.0,,6839.0,,11596.0,,11849.0,,198.0,,12047.0,,369440.0,,1016060.0,,1002177.0,,13883.0,,,,9970.0,,121.0,,39.0,,7.0,,15.0,,,,,,, +CT,Connecticut,202303,Y,P,N,5752.0,,7760.0,,13512.0,,14457.0,,205.0,,14662.0,,371168.0,,1018707.0,,1005040.0,,13667.0,,,,11183.0,,157.0,,56.0,,14.0,,7.0,,146164.0,Includes state-based marketplace (SBM) data,4.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.061,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +CT,Connecticut,202303,Y,U,Y,5752.0,,7760.0,,13512.0,,14457.0,,205.0,,14662.0,,369905.0,,1020137.0,,1006400.0,,13737.0,,,,11183.0,,157.0,,56.0,,14.0,,7.0,,146164.0,Includes state-based marketplace (SBM) data,4.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.061,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +CT,Connecticut,202304,Y,P,N,5107.0,,6441.0,,11548.0,,9703.0,,375.0,,10078.0,,370589.0,,1020561.0,,1007069.0,,13492.0,,,,9136.0,,133.0,,51.0,,5.0,,7.0,,121220.0,Includes state-based marketplace (SBM) data,3.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.041,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +CT,Connecticut,202304,Y,U,Y,5107.0,,6441.0,,11548.0,,9703.0,,375.0,,10078.0,,369502.0,,1021298.0,,1007740.0,,13558.0,,,,9136.0,,133.0,,51.0,,5.0,,7.0,,121220.0,Includes state-based marketplace (SBM) data,3.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.041,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +CT,Connecticut,202305,Y,P,N,6041.0,,8098.0,,14139.0,,9001.0,,406.0,,9407.0,,367150.0,,1007852.0,,994340.0,,13512.0,,,,11261.0,,188.0,,53.0,,7.0,,7.0,,136233.0,Includes state-based marketplace (SBM) data,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.025,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +CT,Connecticut,202305,Y,U,Y,6041.0,,8098.0,,14139.0,,9001.0,,406.0,,9407.0,,365982.0,,1008465.0,,994888.0,,13577.0,,,,11261.0,,188.0,,53.0,,7.0,,7.0,,136233.0,Includes state-based marketplace (SBM) data,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.025,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +CT,Connecticut,202306,Y,P,N,5225.0,,8303.0,,13528.0,,8947.0,,391.0,,9338.0,,364815.0,,999927.0,,986020.0,,13907.0,,,,11626.0,,157.0,,75.0,,5.0,,4.0,,130614.0,Includes state-based marketplace (SBM) data,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.026,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +CT,Connecticut,202306,Y,U,Y,5225.0,,8303.0,,13528.0,,8947.0,,391.0,,9338.0,,363560.0,,1000711.0,,986740.0,,13971.0,,,,11626.0,,157.0,,75.0,,5.0,,4.0,,130614.0,Includes state-based marketplace (SBM) data,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.026,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +CT,Connecticut,202307,Y,P,N,4619.0,,8470.0,,13089.0,,8574.0,,473.0,,9047.0,,363743.0,,995155.0,,980879.0,,14276.0,,,,11887.0,,136.0,,100.0,,3.0,,9.0,,135978.0,Includes state-based marketplace (SBM) data,2.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.045,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +CT,Connecticut,202307,Y,U,Y,4619.0,,8470.0,,13089.0,,8574.0,,473.0,,9047.0,,363135.0,,996632.0,,982286.0,,14346.0,,,,11887.0,,136.0,,100.0,,3.0,,9.0,,135978.0,Includes state-based marketplace (SBM) data,2.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.045,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +CT,Connecticut,202308,Y,P,N,4844.0,,10767.0,,15611.0,,11067.0,,537.0,,11604.0,,361066.0,,975757.0,,960956.0,,14801.0,,,,15655.0,,180.0,,100.0,,17.0,,7.0,,151441.0,Includes state-based marketplace (SBM) data,4.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.078,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +CT,Connecticut,202308,Y,U,Y,4844.0,,10767.0,,15611.0,,11067.0,,537.0,,11604.0,,360168.0,,976859.0,,961999.0,,14860.0,,,,15655.0,,180.0,,100.0,,17.0,,7.0,,151441.0,Includes state-based marketplace (SBM) data,4.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.078,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +CT,Connecticut,202309,Y,P,N,4406.0,,10045.0,,14451.0,,10226.0,,488.0,,10714.0,,358926.0,,961063.0,,945920.0,,15143.0,,,,14667.0,,284.0,,136.0,,20.0,,1.0,,136446.0,Includes state-based marketplace (SBM) data,11.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.172,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +CT,Connecticut,202309,Y,U,Y,4406.0,,10045.0,,14451.0,,10226.0,,488.0,,10714.0,,357943.0,,962196.0,,947004.0,,15192.0,,,,14667.0,,284.0,,136.0,,20.0,,1.0,,136446.0,Includes state-based marketplace (SBM) data,11.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.172,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +CT,Connecticut,202310,Y,P,N,5932.0,,11342.0,,17274.0,,11586.0,,550.0,,12136.0,,360285.0,,962954.0,,947432.0,,15522.0,,,,16280.0,,637.0,,176.0,,16.0,,7.0,,154631.0,Includes state-based marketplace (SBM) data,9.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.106,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +CT,Connecticut,202310,Y,U,Y,5932.0,,11342.0,,17274.0,,11586.0,,550.0,,12136.0,,359323.0,,963462.0,,947900.0,,15562.0,,,,16280.0,,637.0,,176.0,,16.0,,7.0,,154631.0,Includes state-based marketplace (SBM) data,9.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.106,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +CT,Connecticut,202311,Y,P,N,5558.0,,14615.0,,20173.0,,11852.0,,652.0,,12504.0,,369075.0,,983622.0,,967667.0,,15955.0,,,,20781.0,,337.0,,121.0,,24.0,,20.0,,156606.0,Includes state-based marketplace (SBM) data,8.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.075,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +CT,Connecticut,202311,Y,U,Y,5558.0,,14615.0,,20173.0,,11852.0,,652.0,,12504.0,,368125.0,,984604.0,,968606.0,,15998.0,,,,20781.0,,337.0,,121.0,,24.0,,20.0,,156606.0,Includes state-based marketplace (SBM) data,8.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.075,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +CT,Connecticut,202312,Y,P,N,5347.0,,16124.0,,21471.0,,12191.0,,689.0,,12880.0,,368697.0,,979492.0,,963179.0,,16313.0,,,,22803.0,,257.0,,88.0,,16.0,,12.0,,156309.0,Includes state-based marketplace (SBM) data,4.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.051,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +CT,Connecticut,202312,Y,U,Y,5347.0,,16124.0,,21471.0,,12191.0,,689.0,,12880.0,,369111.0,,980628.0,,964256.0,,16372.0,,,,22803.0,,257.0,,88.0,,16.0,,12.0,,156309.0,Includes state-based marketplace (SBM) data,4.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.051,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +CT,Connecticut,202401,Y,P,N,5892.0,,15651.0,,21543.0,,13180.0,,689.0,,13869.0,,369508.0,,973452.0,,956801.0,,16651.0,,,,21843.0,,234.0,,127.0,,17.0,,10.0,,176577.0,Includes state-based marketplace (SBM) data,5.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.039,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +CT,Connecticut,202401,Y,U,Y,5892.0,,15651.0,,21543.0,,13180.0,,689.0,,13869.0,,368461.0,,974364.0,,957663.0,,16701.0,,,,21843.0,,234.0,,127.0,,17.0,,10.0,,176577.0,Includes state-based marketplace (SBM) data,5.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.039,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +CT,Connecticut,202402,Y,P,N,5469.0,,10987.0,,16456.0,,10823.0,,485.0,,11308.0,,369103.0,,968793.0,,952043.0,,16750.0,,,,15368.0,,255.0,,84.0,,11.0,,4.0,,166888.0,Includes state-based marketplace (SBM) data,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.016,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +CT,Connecticut,202402,Y,U,Y,5469.0,,10987.0,,16456.0,,10823.0,,485.0,,11308.0,,368153.0,,969682.0,,952889.0,,16793.0,,,,15368.0,,255.0,,84.0,,11.0,,4.0,,166888.0,Includes state-based marketplace (SBM) data,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.016,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +CT,Connecticut,202403,Y,P,N,5820.0,,11141.0,,16961.0,,11154.0,,429.0,,11583.0,,369348.0,,960156.0,,943367.0,,16789.0,,,,15302.0,,207.0,,115.0,,9.0,,10.0,,129138.0,Includes state-based marketplace (SBM) data,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.013,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +CT,Connecticut,202403,Y,U,Y,5820.0,,11141.0,,16961.0,,11154.0,,429.0,,11583.0,,368378.0,,961117.0,,944282.0,,16835.0,,,,15302.0,,207.0,,115.0,,9.0,,10.0,,129138.0,Includes state-based marketplace (SBM) data,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.013,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +CT,Connecticut,202404,Y,P,N,6166.0,,11360.0,,17526.0,,11647.0,,422.0,,12069.0,,369003.0,,951387.0,,934611.0,,16776.0,,,,15927.0,,238.0,,69.0,,14.0,,24.0,,134478.0,Includes state-based marketplace (SBM) data,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.02,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +CT,Connecticut,202404,Y,U,Y,6166.0,,11360.0,,17526.0,,11647.0,,422.0,,12069.0,,368055.0,,952326.0,,935513.0,,16813.0,,,,15927.0,,238.0,,69.0,,14.0,,24.0,,134478.0,Includes state-based marketplace (SBM) data,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.02,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +CT,Connecticut,202405,Y,P,N,5527.0,,10919.0,,16446.0,,10980.0,,469.0,,11449.0,,368314.0,,945931.0,,928787.0,,17144.0,,,,14986.0,,237.0,,70.0,,9.0,,4.0,,123066.0,Includes state-based marketplace (SBM) data,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.014,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +CT,Connecticut,202405,Y,U,Y,5527.0,,10919.0,,16446.0,,10980.0,,469.0,,11449.0,,367350.0,,946784.0,,929594.0,,17190.0,,,,14986.0,,237.0,,70.0,,9.0,,4.0,,123066.0,Includes state-based marketplace (SBM) data,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.014,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +CT,Connecticut,202406,Y,P,N,4735.0,,10449.0,,15184.0,,10222.0,,497.0,,10719.0,,367653.0,,941142.0,,922885.0,,18257.0,,,,14311.0,,201.0,,81.0,,8.0,,7.0,,118578.0,Includes state-based marketplace (SBM) data,3.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.04,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +CT,Connecticut,202406,Y,U,Y,4735.0,,10449.0,,15184.0,,10222.0,,497.0,,10719.0,,366752.0,,942161.0,,923843.0,,18318.0,,,,14311.0,,201.0,,81.0,,8.0,,7.0,,118578.0,Includes state-based marketplace (SBM) data,3.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.04,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +CT,Connecticut,202407,Y,P,N,5344.0,,12899.0,,18243.0,,12343.0,,572.0,,12915.0,,368339.0,,940531.0,,921207.0,,19324.0,,572192.0,,17828.0,,237.0,,122.0,,9.0,,9.0,,137742.0,Includes state-based marketplace (SBM) data,5.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.055,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +CT,Connecticut,202407,Y,U,Y,5344.0,,12899.0,,18243.0,,12343.0,,572.0,,12915.0,,367297.0,,941447.0,,922078.0,,19369.0,,574150.0,,17828.0,,237.0,,122.0,,9.0,,9.0,,137742.0,Includes state-based marketplace (SBM) data,5.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.055,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +CT,Connecticut,202408,Y,P,N,5362.0,,12551.0,,17913.0,,12506.0,,610.0,,13116.0,,368276.0,,938762.0,,918241.0,,20521.0,,570486.0,,17821.0,,243.0,,148.0,,24.0,,14.0,,142586.0,Includes state-based marketplace (SBM) data,12.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.149,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +CT,Connecticut,202408,Y,U,Y,5362.0,,12551.0,,17913.0,,12506.0,,610.0,,13116.0,,367199.0,,939791.0,,919222.0,,20569.0,,572592.0,,17821.0,,243.0,,148.0,,24.0,,14.0,,142586.0,Includes state-based marketplace (SBM) data,12.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.149,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +CT,Connecticut,202409,Y,P,N,5452.0,,11341.0,,16793.0,,11220.0,,538.0,,11758.0,,368261.0,,936547.0,,915005.0,,21542.0,,568286.0,,15957.0,,231.0,,55.0,,8.0,,7.0,,122694.0,Includes state-based marketplace (SBM) data,14.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.113,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +CT,Connecticut,202409,Y,U,Y,5452.0,,11341.0,,16793.0,,11220.0,,538.0,,11758.0,,367219.0,,937556.0,,915975.0,,21581.0,,570337.0,,15957.0,,231.0,,55.0,,8.0,,7.0,,122694.0,Includes state-based marketplace (SBM) data,14.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.113,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +CT,Connecticut,202410,Y,P,N,6693.0,,12044.0,,18737.0,,11515.0,,502.0,,12017.0,,368238.0,,932771.0,,910673.0,,22098.0,,564533.0,,16397.0,,216.0,,100.0,,11.0,,8.0,,145286.0,Includes state-based marketplace (SBM) data,19.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.171,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +CT,Connecticut,202410,Y,U,Y,6693.0,,12044.0,,18737.0,,11515.0,,502.0,,12017.0,,367251.0,,933797.0,,911648.0,,22149.0,,566546.0,,16397.0,,216.0,,100.0,,11.0,,8.0,,145286.0,Includes state-based marketplace (SBM) data,19.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.171,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +CT,Connecticut,202411,Y,P,N,5858.0,,15146.0,,21004.0,,10741.0,,555.0,,11296.0,,367918.0,,928454.0,,905755.0,,22699.0,,560536.0,,20568.0,,179.0,,76.0,,10.0,,9.0,,147860.0,Includes state-based marketplace (SBM) data,19.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.175,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +CT,Connecticut,202411,Y,U,Y,5858.0,,15146.0,,21004.0,,10741.0,,555.0,,11296.0,,366990.0,,929526.0,,906789.0,,22737.0,,562536.0,,20568.0,,179.0,,76.0,,10.0,,9.0,,147860.0,Includes state-based marketplace (SBM) data,19.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.175,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +CT,Connecticut,202412,Y,P,N,5679.0,,18678.0,,24357.0,,12122.0,,648.0,,12770.0,,368190.0,,927701.0,,904321.0,,23380.0,,559511.0,,25586.0,,178.0,,66.0,,2.0,,19.0,,158195.0,Includes state-based marketplace (SBM) data,26.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.156,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +CT,Connecticut,202412,Y,U,Y,5679.0,,18678.0,,24357.0,,12122.0,,648.0,,12770.0,,368530.0,,928823.0,,905379.0,,23444.0,,560293.0,,25586.0,,178.0,,66.0,,2.0,,19.0,,158195.0,Includes state-based marketplace (SBM) data,26.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.156,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +CT,Connecticut,202501,Y,P,N,5424.0,,16819.0,,22243.0,,12710.0,,570.0,,13280.0,,370497.0,,928986.0,,904915.0,,24071.0,,558489.0,,22184.0,,226.0,,86.0,,10.0,,17.0,,166126.0,Includes state-based marketplace (SBM) data,23.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.175,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +CT,Connecticut,202501,Y,U,Y,5424.0,,16819.0,,22243.0,,12710.0,,570.0,,13280.0,,369543.0,,929983.0,,905866.0,,24117.0,,560440.0,,22184.0,,226.0,,86.0,,10.0,,17.0,,166126.0,Includes state-based marketplace (SBM) data,23.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.175,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +CT,Connecticut,202502,Y,P,N,4585.0,,10752.0,,15337.0,,9701.0,,393.0,,10094.0,,370269.0,,928254.0,,903917.0,,24337.0,,557985.0,,14336.0,,164.0,,95.0,,12.0,,5.0,,123848.0,Includes state-based marketplace (SBM) data,18.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.138,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +CT,Connecticut,202502,Y,U,Y,4585.0,,10752.0,,15337.0,,9701.0,,393.0,,10094.0,,369320.0,,929063.0,,904678.0,,24385.0,,559743.0,,14336.0,,164.0,,95.0,,12.0,,5.0,,123848.0,Includes state-based marketplace (SBM) data,18.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.138,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +CT,Connecticut,202503,Y,P,N,6048.0,,11607.0,,17655.0,,10646.0,,476.0,,11122.0,,370436.0,,926905.0,,902188.0,,24717.0,,556469.0,,15693.0,,135.0,,104.0,,4.0,,12.0,,117677.0,Includes state-based marketplace (SBM) data,15.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.152,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +CT,Connecticut,202503,Y,U,Y,6048.0,,11607.0,,17655.0,,10646.0,,476.0,,11122.0,,369456.0,,927823.0,,903080.0,,24743.0,,558367.0,,15693.0,,135.0,,104.0,,4.0,,12.0,,117677.0,Includes state-based marketplace (SBM) data,15.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.152,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +CT,Connecticut,202504,Y,P,N,6599.0,,12065.0,,18664.0,,11678.0,,493.0,,12171.0,,368336.0,,918951.0,,893834.0,,25117.0,,550615.0,,16236.0,,176.0,,70.0,,12.0,,3.0,,126820.0,Includes state-based marketplace (SBM) data,18.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.156,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +CT,Connecticut,202504,Y,U,Y,6599.0,,12065.0,,18664.0,,11678.0,,493.0,,12171.0,,367310.0,,920084.0,,894937.0,,25147.0,,552774.0,,16236.0,,176.0,,70.0,,12.0,,3.0,,126820.0,Includes state-based marketplace (SBM) data,18.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.156,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +CT,Connecticut,202505,Y,P,N,6509.0,,11357.0,,17866.0,,10761.0,,479.0,,11240.0,,367847.0,,917261.0,,892022.0,,25239.0,,549414.0,,15165.0,,177.0,,52.0,,5.0,,9.0,,111007.0,Includes state-based marketplace (SBM) data,20.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.165,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +CT,Connecticut,202505,Y,U,Y,6509.0,,11357.0,,17866.0,,10761.0,,479.0,,11240.0,,366898.0,,918345.0,,893063.0,,25282.0,,551447.0,,15165.0,,177.0,,52.0,,5.0,,9.0,,111007.0,Includes state-based marketplace (SBM) data,20.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.165,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +CT,Connecticut,202506,Y,P,N,6219.0,,10952.0,,17171.0,,10336.0,,437.0,,10773.0,,367127.0,,915068.0,,890047.0,,25021.0,,547941.0,,14668.0,,163.0,,37.0,,6.0,,4.0,,111146.0,Includes state-based marketplace (SBM) data,20.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.119,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +CT,Connecticut,202506,Y,U,Y,6219.0,,10952.0,,17171.0,,10336.0,,437.0,,10773.0,,366124.0,,916189.0,,891132.0,,25057.0,,550065.0,,14668.0,,163.0,,37.0,,6.0,,4.0,,111146.0,Includes state-based marketplace (SBM) data,20.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.12,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +CT,Connecticut,202507,Y,P,N,6307.0,,11198.0,,17505.0,,10597.0,,536.0,,11133.0,,367292.0,,914739.0,,889753.0,,24986.0,,547447.0,,15015.0,,165.0,,39.0,,1.0,,10.0,,119957.0,Includes state-based marketplace (SBM) data,24.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.119,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +CT,Connecticut,202507,Y,U,Y,6307.0,,11198.0,,17505.0,,10597.0,,536.0,,11133.0,,366242.0,,915836.0,,890819.0,,25017.0,,549594.0,,15015.0,,165.0,,39.0,,1.0,,10.0,,119957.0,Includes state-based marketplace (SBM) data,24.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.119,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +CT,Connecticut,202508,Y,P,N,5755.0,,11372.0,,17127.0,,10762.0,,476.0,,11238.0,,367199.0,,913826.0,,889042.0,,24784.0,,546627.0,,14900.0,,217.0,,42.0,,5.0,,4.0,,119433.0,Includes state-based marketplace (SBM) data,23.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.088,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +CT,Connecticut,202508,Y,U,Y,5755.0,,11372.0,,17127.0,,10762.0,,476.0,,11238.0,,366256.0,,915136.0,,890315.0,,24821.0,,548880.0,,14900.0,,217.0,,42.0,,5.0,,4.0,,119433.0,Includes state-based marketplace (SBM) data,23.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.088,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +CT,Connecticut,202509,Y,P,N,5997.0,,11552.0,,17549.0,,10543.0,,552.0,,11095.0,,367264.0,,913408.0,,888643.0,,24765.0,,546144.0,,15011.0,,210.0,,42.0,,6.0,,12.0,,127998.0,Includes state-based marketplace (SBM) data,19.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.099,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +CT,Connecticut,202509,Y,U,Y,5997.0,,11552.0,,17549.0,,10543.0,,552.0,,11095.0,,366153.0,,914518.0,,889736.0,,24782.0,,548365.0,,15011.0,,210.0,,42.0,,6.0,,12.0,,127998.0,Includes state-based marketplace (SBM) data,19.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.099,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +CT,Connecticut,202510,Y,P,N,5874.0,,11702.0,,17576.0,,10669.0,,495.0,,11164.0,,366608.0,,911816.0,,887046.0,,24770.0,,545208.0,,15008.0,,136.0,,63.0,,2.0,,4.0,,144513.0,Includes state-based marketplace (SBM) data,19.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.079,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +DC,District of Columbia,201309,N,U,Y,,,,,,,,,,,,,,,235786.0,,,,,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,201706,Y,P,N,2313.0,Includes SBM data,1895.0,,4208.0,Includes Renewals and/or Redeterminations,4436.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,4436.0,,90783.0,,254253.0,,242621.0,,11632.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,201706,Y,U,Y,2313.0,Includes SBM data,1895.0,,4208.0,Includes Renewals and/or Redeterminations,4436.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,4436.0,,90783.0,,254253.0,,242621.0,,11632.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,201707,Y,P,N,2133.0,Includes SBM data,1675.0,,3808.0,Includes Renewals and/or Redeterminations,3762.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,3762.0,,91419.0,,255601.0,,243189.0,,12412.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,201707,Y,U,Y,2133.0,Includes SBM data,1675.0,,3808.0,Includes Renewals and/or Redeterminations,3762.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,3762.0,,91419.0,,255601.0,,243189.0,,12412.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,201708,Y,P,N,2903.0,Includes SBM data,1820.0,,4723.0,Includes Renewals and/or Redeterminations,4855.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,4855.0,,92096.0,,257388.0,,244250.0,,13138.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,201708,Y,U,Y,2903.0,Includes SBM data,1820.0,,4723.0,Includes Renewals and/or Redeterminations,4855.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,4855.0,,92096.0,,257388.0,,244250.0,,13138.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,201709,Y,P,N,2238.0,Includes SBM data,1820.0,,4058.0,Includes Renewals and/or Redeterminations,6187.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,6187.0,,92520.0,,258187.0,,244961.0,,13226.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,201709,Y,U,Y,2238.0,Includes SBM data,1820.0,,4058.0,Includes Renewals and/or Redeterminations,6187.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,6187.0,,92520.0,,258187.0,,244961.0,,13226.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,201710,Y,P,N,1953.0,Includes SBM data,1924.0,,3877.0,Includes Renewals and/or Redeterminations,3640.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,3640.0,,92836.0,,258896.0,,245582.0,,13314.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,201710,Y,U,Y,1953.0,Includes SBM data,1924.0,,3877.0,Includes Renewals and/or Redeterminations,3640.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,3640.0,,92836.0,,258896.0,,245582.0,,13314.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,201711,Y,P,N,1190.0,Includes SBM data,2250.0,,3440.0,Includes Renewals and/or Redeterminations,3440.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,3440.0,,92610.0,,258835.0,,245448.0,,13387.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,201711,Y,U,Y,1190.0,Includes SBM data,2250.0,,3440.0,Includes Renewals and/or Redeterminations,3440.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,3440.0,,92610.0,,258835.0,,245448.0,,13387.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,201712,Y,P,N,3503.0,Includes SBM data,2801.0,,6304.0,Includes Renewals and/or Redeterminations,3363.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,3363.0,,92460.0,,258949.0,,245483.0,,13466.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,201712,Y,U,Y,3503.0,Includes SBM data,2801.0,,6304.0,Includes Renewals and/or Redeterminations,3363.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,3363.0,,92460.0,,258949.0,,245483.0,,13466.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,201801,Y,P,N,3458.0,Includes SBM data,2190.0,,5648.0,Includes Renewals and/or Redeterminations,3707.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,3707.0,,92583.0,,259110.0,,245632.0,,13478.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,201801,Y,U,Y,3458.0,Includes SBM data,2190.0,,5648.0,Includes Renewals and/or Redeterminations,3707.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,3707.0,,92583.0,,259110.0,,245632.0,,13478.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,201802,Y,P,N,1017.0,Includes SBM data,2190.0,,3207.0,Includes Renewals and/or Redeterminations,3357.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,3357.0,,92695.0,,259318.0,,244793.0,,14525.0,,,,895.0,,40.0,,72.0,,0.0,,0.0,,,,,,, +DC,District of Columbia,201802,Y,U,Y,1017.0,Includes SBM data,2190.0,,3207.0,Includes Renewals and/or Redeterminations,3357.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,3357.0,,92695.0,,259318.0,,244793.0,,14525.0,,,,772.0,,53.0,,82.0,,57.0,,8.0,,,,,,, +DC,District of Columbia,201803,Y,P,N,3499.0,Includes SBM data,1823.0,,5322.0,Includes Renewals and/or Redeterminations,3717.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,3717.0,,92127.0,,256315.0,,241584.0,,14731.0,,,,815.0,,51.0,,119.0,,54.0,,18.0,,,,,,, +DC,District of Columbia,201803,Y,U,Y,3499.0,Includes SBM data,1823.0,,5322.0,Includes Renewals and/or Redeterminations,3717.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,3717.0,,92127.0,,256315.0,,241584.0,,14731.0,,,,815.0,,51.0,,119.0,,54.0,,18.0,,,,,,, +DC,District of Columbia,201804,Y,P,N,1584.0,Includes SBM data,1835.0,,3419.0,Includes Renewals and/or Redeterminations,3537.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,3537.0,,92231.0,,255702.0,,240812.0,,14890.0,,,,813.0,,41.0,,93.0,,3.0,,0.0,,,,,,, +DC,District of Columbia,201804,Y,U,Y,1584.0,Includes SBM data,1835.0,,3419.0,Includes Renewals and/or Redeterminations,3537.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,3537.0,,92231.0,,255702.0,,240812.0,,14890.0,,,,807.0,,40.0,,131.0,,32.0,,10.0,,,,,,, +DC,District of Columbia,201805,Y,P,N,3537.0,Includes SBM data,1739.0,,5276.0,Includes Renewals and/or Redeterminations,3705.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,3705.0,,92485.0,,255580.0,,240358.0,,15222.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,201805,Y,U,Y,3537.0,Includes SBM data,1739.0,,5276.0,Includes Renewals and/or Redeterminations,3705.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,3705.0,,92485.0,,255580.0,,240358.0,,15222.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,201806,Y,P,N,1552.0,Includes SBM data,1732.0,,3284.0,Includes Renewals and/or Redeterminations,3269.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,3269.0,,92749.0,,255054.0,,239602.0,,15452.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,201806,Y,U,Y,1552.0,Includes SBM data,1732.0,,3284.0,Includes Renewals and/or Redeterminations,3269.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,3269.0,,92749.0,,255054.0,,239602.0,,15452.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,201807,Y,P,N,2403.0,Includes SBM data,813.0,,3216.0,Includes Renewals and/or Redeterminations,3195.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,3195.0,,92894.0,,254646.0,,238989.0,,15657.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,201807,Y,U,Y,2403.0,Includes SBM data,813.0,,3216.0,Includes Renewals and/or Redeterminations,3195.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,3195.0,,92894.0,,254646.0,,238989.0,,15657.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,201808,Y,P,N,2655.0,Includes SBM data,996.0,,3651.0,Includes Renewals and/or Redeterminations,3868.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,3868.0,,93184.0,,254123.0,,238334.0,,15789.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,201808,Y,U,Y,2655.0,Includes SBM data,996.0,,3651.0,Includes Renewals and/or Redeterminations,3868.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,3868.0,,93184.0,,254123.0,,238334.0,,15789.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,201809,Y,P,N,3121.0,Includes SBM data,0.0,,3121.0,Includes Renewals and/or Redeterminations,2917.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,2917.0,,93309.0,,253373.0,,237463.0,,15910.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,201809,Y,U,Y,3121.0,Includes SBM data,0.0,,3121.0,Includes Renewals and/or Redeterminations,2917.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,2917.0,,93309.0,,253373.0,,237463.0,,15910.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,201810,Y,P,N,1374.0,Includes SBM data,1866.0,,3240.0,Includes Renewals and/or Redeterminations,3739.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,3739.0,,93534.0,,253592.0,,237232.0,,16360.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,201810,Y,U,Y,1374.0,Includes SBM data,1866.0,,3240.0,Includes Renewals and/or Redeterminations,3739.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,3739.0,,93534.0,,253592.0,,237232.0,,16360.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,201811,Y,P,N,829.0,Includes SBM data,1928.0,,2757.0,Includes Renewals and/or Redeterminations,2834.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,2834.0,,93666.0,,254173.0,,237754.0,,16419.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,201811,Y,U,Y,829.0,Includes SBM data,1928.0,,2757.0,Includes Renewals and/or Redeterminations,2834.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,2834.0,,93666.0,,254173.0,,237754.0,,16419.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,201812,Y,P,N,1134.0,Includes SBM data,2324.0,,3458.0,Includes Renewals and/or Redeterminations,3454.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,3454.0,,93862.0,,254275.0,,237769.0,,16506.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,201812,Y,U,Y,1134.0,Includes SBM data,2324.0,,3458.0,Includes Renewals and/or Redeterminations,3454.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,3454.0,,93862.0,,254275.0,,237769.0,,16506.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,201901,Y,P,N,1809.0,Includes SBM data,2036.0,,3845.0,Includes Renewals and/or Redeterminations,3916.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,3916.0,,93690.0,,253658.0,,237216.0,,16442.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,201901,Y,U,Y,1809.0,Includes SBM data,2036.0,,3845.0,Includes Renewals and/or Redeterminations,3916.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,3916.0,,93690.0,,253658.0,,237216.0,,16442.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,201902,Y,P,N,1484.0,Includes SBM data,1613.0,,3097.0,Includes Renewals and/or Redeterminations,3141.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,3141.0,,93715.0,,253823.0,,237343.0,,16480.0,,,,733.0,,51.0,,70.0,,0.0,,0.0,,,,,,, +DC,District of Columbia,201902,Y,U,Y,1484.0,Includes SBM data,1613.0,,3097.0,Includes Renewals and/or Redeterminations,3141.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,3141.0,,93715.0,,253823.0,,237343.0,,16480.0,,,,727.0,,51.0,,113.0,,55.0,,12.0,,,,,,, +DC,District of Columbia,201903,Y,P,N,2075.0,Includes SBM data,1758.0,,3833.0,Includes Renewals and/or Redeterminations,4001.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,4001.0,,94019.0,,254384.0,,237887.0,,16497.0,,,,866.0,,49.0,,78.0,,3.0,,0.0,,,,,,, +DC,District of Columbia,201903,Y,U,Y,2075.0,Includes SBM data,1758.0,,3833.0,Includes Renewals and/or Redeterminations,4001.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,4001.0,,94019.0,,254384.0,,237887.0,,16497.0,,,,861.0,,49.0,,138.0,,47.0,,15.0,,,,,,, +DC,District of Columbia,201904,Y,P,N,2220.0,Includes SBM data,1722.0,,3942.0,Includes Renewals and/or Redeterminations,3973.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,3973.0,,94168.0,,254683.0,,238310.0,,16373.0,,,,833.0,,45.0,,66.0,,0.0,,0.0,,,,,,, +DC,District of Columbia,201904,Y,U,Y,2220.0,Includes SBM data,1722.0,,3942.0,Includes Renewals and/or Redeterminations,3973.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,3973.0,,94168.0,,254683.0,,238310.0,,16373.0,,,,832.0,,46.0,,123.0,,78.0,,22.0,,,,,,, +DC,District of Columbia,201905,Y,P,N,2605.0,Includes SBM data,1732.0,,4337.0,Includes Renewals and/or Redeterminations,3850.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,3850.0,,94352.0,,254935.0,,238147.0,,16788.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,201905,Y,U,Y,2605.0,Includes SBM data,1785.0,,4390.0,Includes Renewals and/or Redeterminations,3850.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,3850.0,,94352.0,,254935.0,,238147.0,,16788.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,201906,Y,P,N,2041.0,Includes SBM data,1670.0,,3711.0,Includes Renewals and/or Redeterminations,1754.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,1754.0,,94478.0,,254774.0,,237743.0,,17031.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,201906,Y,U,Y,2041.0,Includes SBM data,1743.0,,3784.0,Includes Renewals and/or Redeterminations,1754.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,1754.0,,94478.0,,254774.0,,237743.0,,17031.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,201907,Y,P,N,2496.0,Includes SBM data,2244.0,,4740.0,Includes Renewals and/or Redeterminations,1564.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,1564.0,,94977.0,,256101.0,,238923.0,,17178.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,201907,Y,U,Y,2496.0,Includes SBM data,2332.0,,4828.0,Includes Renewals and/or Redeterminations,1564.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,1564.0,,94977.0,,256101.0,,238923.0,,17178.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,201908,Y,P,N,4098.0,Includes SBM data,2363.0,,6461.0,Includes Renewals and/or Redeterminations,4137.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,4137.0,,95106.0,,255952.0,,238684.0,,17268.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,201908,Y,U,Y,4098.0,Includes SBM data,2485.0,,6583.0,Includes Renewals and/or Redeterminations,4137.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,4137.0,,95106.0,,255952.0,,238684.0,,17268.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,201909,Y,P,N,4213.0,Includes SBM data,1936.0,,6149.0,Includes Renewals and/or Redeterminations,4448.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,4448.0,,93149.0,,252102.0,,234912.0,,17190.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,201909,Y,U,Y,4213.0,Includes SBM data,2077.0,,6290.0,Includes Renewals and/or Redeterminations,4448.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,4448.0,,93149.0,,252102.0,,234912.0,,17190.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,201910,Y,P,N,4116.0,Includes SBM data,2151.0,,6267.0,Includes Renewals and/or Redeterminations,4263.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,4263.0,,93816.0,,253818.0,,236278.0,,17540.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,201910,Y,U,Y,4116.0,Includes SBM data,2151.0,,6267.0,Includes Renewals and/or Redeterminations,4263.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,4263.0,,93816.0,,253818.0,,236278.0,,17540.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,201911,Y,P,N,3132.0,Includes SBM data,2066.0,,5198.0,Includes Renewals and/or Redeterminations,3055.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,3055.0,,93880.0,,254018.0,,236504.0,,17514.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,201911,Y,U,Y,3132.0,Includes SBM data,2066.0,,5198.0,Includes Renewals and/or Redeterminations,3055.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,3055.0,,93880.0,,254018.0,,236504.0,,17514.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,201912,Y,P,N,3814.0,Includes SBM data,3117.0,,6931.0,Includes Renewals and/or Redeterminations,3775.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,3775.0,,93969.0,,253546.0,,235995.0,,17551.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,201912,Y,U,Y,3814.0,Includes SBM data,3117.0,,6931.0,Includes Renewals and/or Redeterminations,3775.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,3775.0,,93969.0,,253546.0,,235995.0,,17551.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,202001,Y,P,N,7673.0,Includes SBM data,0.0,,7673.0,Includes Renewals and/or Redeterminations,4310.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,4310.0,,93978.0,,253265.0,,235636.0,,17629.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,202001,Y,U,Y,7673.0,Includes SBM data,0.0,,7673.0,Includes Renewals and/or Redeterminations,4310.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,4310.0,,93978.0,,253265.0,,235636.0,,17629.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,202002,Y,P,N,4945.0,Includes SBM data,3769.0,,8714.0,Includes Renewals and/or Redeterminations,5208.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,5208.0,,90421.0,,241674.0,,224771.0,,16903.0,,,,2261.0,,143.0,,218.0,,4.0,,0.0,,,,,,, +DC,District of Columbia,202002,Y,U,Y,4945.0,Includes SBM data,3769.0,,8714.0,Includes Renewals and/or Redeterminations,5208.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,5208.0,,90421.0,,241674.0,,224771.0,,16903.0,,,,2255.0,,142.0,,320.0,,75.0,,23.0,,,,,,, +DC,District of Columbia,202003,Y,P,N,3625.0,Includes SBM data,2595.0,,6220.0,Includes Renewals and/or Redeterminations,4200.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,4200.0,,91054.0,,243503.0,,226137.0,,17366.0,,,,1382.0,,114.0,,140.0,,0.0,,0.0,,,,,,, +DC,District of Columbia,202003,Y,U,Y,3625.0,Includes SBM data,2595.0,,6220.0,Includes Renewals and/or Redeterminations,4200.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,4200.0,,91054.0,,243503.0,,226137.0,,17366.0,,,,1380.0,,114.0,,537.0,,143.0,,46.0,,,,,,, +DC,District of Columbia,202004,Y,P,N,2265.0,Includes SBM data,1725.0,,3990.0,Includes Renewals and/or Redeterminations,3341.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,3341.0,,91792.0,,246464.0,,228967.0,,17497.0,,,,712.0,,333.0,,307.0,,1.0,,0.0,,,,,,, +DC,District of Columbia,202004,Y,U,Y,2265.0,Includes SBM data,1725.0,,3990.0,Includes Renewals and/or Redeterminations,3341.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,3341.0,,91792.0,,246464.0,,228967.0,,17497.0,,,,710.0,,332.0,,383.0,,33.0,,10.0,,,,,,, +DC,District of Columbia,202005,Y,P,N,2795.0,Includes SBM data,1535.0,,4330.0,Includes Renewals and/or Redeterminations,3323.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,3323.0,,92352.0,,248554.0,,231191.0,,17363.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,202005,Y,U,Y,2795.0,Includes SBM data,1535.0,,4330.0,Includes Renewals and/or Redeterminations,3323.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,3323.0,,92352.0,,248554.0,,231191.0,,17363.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,202006,Y,P,N,2419.0,Includes SBM data,1711.0,,4130.0,Includes Renewals and/or Redeterminations,2651.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,2651.0,,92956.0,,250860.0,,233511.0,,17349.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,202006,Y,U,Y,2419.0,Includes SBM data,1711.0,,4130.0,Includes Renewals and/or Redeterminations,2651.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,2651.0,,92956.0,,250860.0,,233511.0,,17349.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,202007,Y,P,N,2418.0,Includes SBM data,1864.0,,4282.0,Includes Renewals and/or Redeterminations,2640.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,2640.0,,93560.0,,253009.0,,235667.0,,17342.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,202007,Y,U,Y,2495.0,Includes SBM data,0.0,,2495.0,Includes Renewals and/or Redeterminations,2640.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,2640.0,,93560.0,,253009.0,,235667.0,,17342.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,202008,Y,P,N,2226.0,Includes SBM data,1740.0,,3966.0,Includes Renewals and/or Redeterminations,2476.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,2476.0,,94046.0,,254885.0,,237526.0,,17359.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,202008,Y,U,Y,2296.0,Includes SBM data,0.0,,2296.0,Includes Renewals and/or Redeterminations,2476.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,2476.0,,94046.0,,254885.0,,237526.0,,17359.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,202009,Y,P,N,2331.0,Includes SBM data,1582.0,,3913.0,Includes Renewals and/or Redeterminations,2472.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,2472.0,,94330.0,,256300.0,,238919.0,,17381.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,202009,Y,U,Y,2341.0,Includes SBM data,0.0,,2341.0,Includes Renewals and/or Redeterminations,2472.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,2472.0,,94330.0,,256300.0,,238919.0,,17381.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,202010,Y,P,N,2926.0,Includes SBM data,1629.0,,4555.0,Includes Renewals and/or Redeterminations,2854.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,2854.0,,94670.0,,257933.0,,240511.0,,17422.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,202010,Y,U,Y,2806.0,Includes SBM data,0.0,,2806.0,Includes Renewals and/or Redeterminations,2854.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,2854.0,,94771.0,,258225.0,,240793.0,,17432.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,202011,Y,P,N,2446.0,Includes SBM data,1652.0,,4098.0,Includes Renewals and/or Redeterminations,2408.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,2408.0,,94727.0,,258915.0,,241541.0,,17374.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,202011,Y,U,Y,2445.0,Includes SBM data,0.0,,2445.0,Includes Renewals and/or Redeterminations,2408.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,2408.0,,94992.0,,259642.0,,242264.0,,17378.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,202012,Y,P,N,2619.0,Includes SBM data,2192.0,,4811.0,Includes Renewals and/or Redeterminations,2524.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,2524.0,,95082.0,,260717.0,,243348.0,,17369.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,202012,Y,U,Y,1179.0,Includes SBM data,1280.0,,2459.0,Includes Renewals and/or Redeterminations,2524.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,2524.0,,95618.0,,262327.0,,244923.0,,17404.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,202101,Y,P,N,1362.0,Includes SBM data,800.0,,2162.0,Includes Renewals and/or Redeterminations,2283.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,2283.0,,95747.0,,263419.0,,246018.0,,17401.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,202101,Y,U,Y,1364.0,Includes SBM data,810.0,,2174.0,Includes Renewals and/or Redeterminations,2283.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,2283.0,,95915.0,,264086.0,,246677.0,,17409.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,202102,Y,P,N,1293.0,Includes SBM data,616.0,,1909.0,Includes Renewals and/or Redeterminations,1673.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,1673.0,,95544.0,,264528.0,,247180.0,,17348.0,,,,1176.0,,25.0,,25.0,,7.0,,46.0,,,,,,, +DC,District of Columbia,202102,Y,U,Y,1295.0,Includes SBM data,627.0,,1922.0,Includes Renewals and/or Redeterminations,1673.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,1673.0,,95785.0,,265037.0,,247688.0,,17349.0,,,,1185.0,,24.0,,25.0,,7.0,,45.0,,,,,,, +DC,District of Columbia,202103,Y,P,N,1305.0,Includes SBM data,682.0,,1987.0,Includes Renewals and/or Redeterminations,2362.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,2362.0,,95680.0,,265403.0,,248099.0,,17304.0,,,,1220.0,,40.0,,24.0,,5.0,,56.0,,,,,,, +DC,District of Columbia,202103,Y,U,Y,1461.0,Includes SBM data,684.0,,2145.0,Includes Renewals and/or Redeterminations,2362.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,2362.0,,96027.0,,266374.0,,249051.0,,17323.0,,,,1282.0,,43.0,,24.0,,5.0,,55.0,,,,,,, +DC,District of Columbia,202104,Y,P,N,1988.0,Includes SBM data,556.0,,2544.0,Includes Renewals and/or Redeterminations,1697.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,1697.0,,95886.0,,266742.0,,249462.0,,17280.0,,,,901.0,,23.0,,13.0,,1.0,,36.0,,,,,,, +DC,District of Columbia,202104,Y,U,Y,1261.0,Includes SBM data,569.0,,1830.0,Includes Renewals and/or Redeterminations,1697.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,1697.0,,96226.0,,267598.0,,250316.0,,17282.0,,,,1045.0,,26.0,,13.0,,2.0,,36.0,,,,,,, +DC,District of Columbia,202105,Y,P,N,1253.0,Includes SBM data,508.0,,1761.0,Includes Renewals and/or Redeterminations,1939.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,1939.0,,95951.0,,267598.0,,250354.0,,17244.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,202105,Y,U,Y,1255.0,Includes SBM data,510.0,,1765.0,Includes Renewals and/or Redeterminations,1939.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,1939.0,,96336.0,,268308.0,,251060.0,,17248.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,202106,Y,P,N,1166.0,Includes SBM data,498.0,,1664.0,Includes Renewals and/or Redeterminations,1701.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,1701.0,,96069.0,,268413.0,,251207.0,,17206.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,202106,Y,U,Y,1171.0,Includes SBM data,505.0,,1676.0,Includes Renewals and/or Redeterminations,1701.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,1701.0,,96566.0,,269591.0,,252371.0,,17220.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,202107,Y,P,N,1064.0,Includes SBM data,605.0,,1669.0,Includes Renewals and/or Redeterminations,1730.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,1730.0,,96339.0,,269916.0,,252730.0,,17186.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,202107,Y,U,Y,1071.0,,613.0,,1684.0,,1730.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,1730.0,,96765.0,,270938.0,,253740.0,,17198.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,202108,Y,P,N,1279.0,,734.0,,2013.0,,2304.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,2304.0,,96380.0,,270741.0,,253590.0,,17151.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,202108,Y,U,Y,1282.0,,741.0,,2023.0,,2304.0,,0.0,,2304.0,,96932.0,,272037.0,,254871.0,,17166.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,202109,Y,P,N,1194.0,,523.0,,1717.0,,1867.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,1867.0,,96560.0,,272151.0,,254937.0,,17214.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,202109,Y,U,Y,1195.0,,526.0,,1721.0,,1867.0,,0.0,,1867.0,,97013.0,,273146.0,,255921.0,,17225.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,202110,Y,P,N,1228.0,,366.0,,1594.0,,1609.0,,0.0,,1609.0,,96532.0,,272948.0,,255728.0,,17220.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,202110,Y,U,Y,1233.0,,368.0,,1601.0,,1609.0,,0.0,,1609.0,,96989.0,,273882.0,,256633.0,,17249.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,202111,Y,P,N,796.0,,352.0,,1148.0,,0.0,,0.0,,0.0,,96613.0,,273646.0,,256451.0,,17195.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,202111,Y,U,Y,1188.0,,0.0,,1188.0,,0.0,,0.0,,0.0,,97057.0,,274475.0,,257262.0,,17213.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,202112,Y,P,N,1455.0,,0.0,,1455.0,,0.0,,0.0,,0.0,,96624.0,,274317.0,,257175.0,,17142.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,202112,Y,U,Y,1470.0,,0.0,,1470.0,,0.0,,0.0,,0.0,,97171.0,,275771.0,,258605.0,,17166.0,,,,,,,,,,,,,,,,,,, +DC,District of Columbia,202201,Y,P,N,1547.0,,0.0,,1547.0,,0.0,,0.0,,0.0,,97152.0,,276641.0,,259487.0,,17154.0,,,,248.0,,248.0,,192.0,,14.0,,109.0,,,,,,, +DC,District of Columbia,202201,Y,U,Y,1547.0,,0.0,,1547.0,,0.0,,0.0,,0.0,,97531.0,,277586.0,,260429.0,,17157.0,,,,248.0,,248.0,,192.0,,14.0,,104.0,,,,,,, +DC,District of Columbia,202202,Y,P,N,1015.0,,0.0,,1015.0,,0.0,,0.0,,0.0,,97188.0,,277534.0,,260371.0,,17163.0,,,,139.0,,100.0,,441.0,,152.0,,10.0,,,,,,, +DC,District of Columbia,202202,Y,U,Y,1015.0,,0.0,,1015.0,,0.0,,0.0,,0.0,,97870.0,,278984.0,,261805.0,,17179.0,,,,139.0,,100.0,,441.0,,152.0,,10.0,,,,,,, +DC,District of Columbia,202203,Y,P,N,1629.0,,0.0,,1629.0,,0.0,,0.0,,0.0,,97684.0,,278884.0,,261703.0,,17181.0,,,,178.0,,163.0,,443.0,,97.0,,125.0,,,,,,, +DC,District of Columbia,202203,Y,U,Y,1629.0,,0.0,,1629.0,,0.0,,0.0,,0.0,,98171.0,,279965.0,,262782.0,,17183.0,,,,178.0,,163.0,,443.0,,97.0,,125.0,,,,,,, +DC,District of Columbia,202204,Y,P,N,986.0,,0.0,,986.0,,0.0,,0.0,,0.0,,97941.0,,280069.0,,262960.0,,17109.0,,,,170.0,,173.0,,347.0,,79.0,,99.0,,,,,,, +DC,District of Columbia,202204,Y,U,Y,986.0,,0.0,,986.0,,0.0,,0.0,,0.0,,99222.0,,283267.0,,265983.0,,17284.0,,,,170.0,,173.0,,347.0,,79.0,,99.0,,,,,,, +DC,District of Columbia,202205,Y,P,N,1112.0,,0.0,,1112.0,,0.0,,0.0,,0.0,,98988.0,,283352.0,,266223.0,,17129.0,,,,202.0,,363.0,,396.0,,102.0,,82.0,,,,,,, +DC,District of Columbia,202205,Y,U,Y,1112.0,,0.0,,1112.0,,0.0,,0.0,,0.0,,99917.0,,285248.0,,268110.0,,17138.0,,,,202.0,,363.0,,396.0,,102.0,,82.0,,,,,,, +DC,District of Columbia,202206,Y,P,N,1169.0,,0.0,,1169.0,,0.0,,0.0,,0.0,,99806.0,,285811.0,,268718.0,,17093.0,,,,210.0,,219.0,,273.0,,38.0,,61.0,,,,,,, +DC,District of Columbia,202206,Y,U,Y,1169.0,,0.0,,1169.0,,0.0,,0.0,,0.0,,100068.0,,286000.0,,268910.0,,17090.0,,,,210.0,,219.0,,273.0,,38.0,,61.0,,,,,,, +DC,District of Columbia,202207,Y,P,N,1107.0,,0.0,,1107.0,,0.0,,0.0,,0.0,,99788.0,,286016.0,,269061.0,,16955.0,,,,182.0,,189.0,,467.0,,57.0,,68.0,,,,,,, +DC,District of Columbia,202207,Y,U,Y,1107.0,,0.0,,1107.0,,0.0,,0.0,,0.0,,100126.0,,286672.0,,269716.0,,16956.0,,,,182.0,,189.0,,467.0,,57.0,,68.0,,,,,,, +DC,District of Columbia,202208,Y,P,N,1383.0,,0.0,,1383.0,,0.0,,0.0,,0.0,,99727.0,,286551.0,,269619.0,,16932.0,,,,185.0,,257.0,,544.0,,94.0,,75.0,,,,,,, +DC,District of Columbia,202208,Y,U,Y,1383.0,,0.0,,1383.0,,0.0,,0.0,,0.0,,100287.0,,287984.0,,271064.0,,16920.0,,,,185.0,,257.0,,544.0,,94.0,,75.0,,,,,,, +DC,District of Columbia,202209,Y,P,N,1111.0,,0.0,,1111.0,,0.0,,0.0,,0.0,,100023.0,,288217.0,,271437.0,,16780.0,,,,192.0,,249.0,,522.0,,83.0,,65.0,,,,,,, +DC,District of Columbia,202209,Y,U,Y,1111.0,,0.0,,1111.0,,0.0,,0.0,,0.0,,100743.0,,289546.0,,272743.0,,16803.0,,,,192.0,,249.0,,522.0,,83.0,,65.0,,,,,,, +DC,District of Columbia,202210,Y,P,N,1077.0,,0.0,,1077.0,,0.0,,0.0,,0.0,,100539.0,,289770.0,,272995.0,,16775.0,,,,149.0,,186.0,,303.0,,93.0,,77.0,,,,,,, +DC,District of Columbia,202210,Y,U,Y,1077.0,,0.0,,1077.0,,0.0,,0.0,,0.0,,100825.0,,290430.0,,273645.0,,16785.0,,,,149.0,,186.0,,303.0,,93.0,,77.0,,,,,,, +DC,District of Columbia,202211,Y,P,N,1040.0,,0.0,,1040.0,,0.0,,0.0,,0.0,,100496.0,,290550.0,,273888.0,,16662.0,,,,92.0,,157.0,,453.0,,105.0,,84.0,,,,,,, +DC,District of Columbia,202211,Y,U,Y,1040.0,,0.0,,1040.0,,0.0,,0.0,,0.0,,100868.0,,291227.0,,274554.0,,16673.0,,,,92.0,,157.0,,453.0,,105.0,,84.0,,,,,,, +DC,District of Columbia,202212,Y,P,N,1057.0,,0.0,,1057.0,,0.0,,0.0,,0.0,,100629.0,,291341.0,,274798.0,,16543.0,,,,141.0,,70.0,,319.0,,76.0,,136.0,,,,,,, +DC,District of Columbia,202212,Y,U,Y,1057.0,,0.0,,1057.0,,0.0,,0.0,,0.0,,101178.0,,292727.0,,276168.0,,16559.0,,,,141.0,,70.0,,319.0,,76.0,,136.0,,,,,,, +DC,District of Columbia,202301,Y,P,N,1278.0,,0.0,,1278.0,,0.0,,0.0,,0.0,,100894.0,,293179.0,,276632.0,,16547.0,,,,167.0,,225.0,,389.0,,72.0,,161.0,,,,,,, +DC,District of Columbia,202301,Y,U,Y,1278.0,,0.0,,1278.0,,0.0,,0.0,,0.0,,101184.0,,293970.0,,277407.0,,16563.0,,,,167.0,,225.0,,389.0,,72.0,,161.0,,,,,,, +DC,District of Columbia,202302,Y,P,N,918.0,,0.0,,918.0,,0.0,,0.0,,0.0,,100765.0,,293526.0,,277042.0,,16484.0,,,,124.0,,133.0,,415.0,,81.0,,242.0,,,,,,, +DC,District of Columbia,202302,Y,U,Y,918.0,,0.0,,918.0,,0.0,,0.0,,0.0,,101477.0,,295152.0,,278637.0,,16515.0,,,,124.0,,133.0,,415.0,,81.0,,242.0,,,,,,, +DC,District of Columbia,202303,Y,P,N,1124.0,,0.0,,1124.0,,0.0,,0.0,,0.0,,101188.0,,295078.0,,278836.0,,16242.0,,,,168.0,,41.0,,368.0,,162.0,,335.0,,50453.0,Does not include all calls received by call centers; Includes calls for other benefit programs,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.03,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +DC,District of Columbia,202303,Y,U,Y,1124.0,,0.0,,1124.0,,0.0,,0.0,,0.0,,101791.0,,296412.0,,280143.0,,16269.0,,,,168.0,,41.0,,368.0,,162.0,,335.0,,50453.0,Does not include all calls received by call centers; Includes calls for other benefit programs,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.03,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +DC,District of Columbia,202304,Y,P,N,860.0,,0.0,,860.0,,0.0,,0.0,,0.0,,101478.0,,296714.0,,280710.0,,16004.0,,,,132.0,,30.0,,296.0,,153.0,,160.0,,40481.0,Does not include all calls received by call centers; Includes calls for other benefit programs,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.04,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +DC,District of Columbia,202304,Y,U,Y,860.0,,0.0,,860.0,,0.0,,0.0,,0.0,,101861.0,,297053.0,,281048.0,,16005.0,,,,132.0,,30.0,,296.0,,153.0,,160.0,,40481.0,Does not include all calls received by call centers; Includes calls for other benefit programs,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.04,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +DC,District of Columbia,202305,Y,P,N,1050.0,,0.0,,1050.0,,0.0,,0.0,,0.0,,101499.0,,296827.0,,280846.0,,15981.0,,,,175.0,,168.0,,287.0,,142.0,,117.0,,44088.0,Does not include all calls received by call centers; Includes calls for other benefit programs,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.05,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +DC,District of Columbia,202305,Y,U,Y,1050.0,,0.0,,1050.0,,0.0,,0.0,,0.0,,101870.0,,297395.0,,281409.0,,15986.0,,,,175.0,,168.0,,287.0,,142.0,,117.0,,44088.0,Does not include all calls received by call centers; Includes calls for other benefit programs,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.05,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +DC,District of Columbia,202306,Y,P,N,1135.0,,0.0,,1135.0,,0.0,,0.0,,0.0,,100473.0,,293918.0,,277790.0,,16128.0,,,,230.0,,199.0,,264.0,,253.0,,246.0,,43568.0,Does not include all calls received by call centers; Includes calls for other benefit programs,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.05,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +DC,District of Columbia,202306,Y,U,Y,1135.0,,0.0,,1135.0,,0.0,,0.0,,0.0,,101030.0,,295185.0,,279024.0,,16161.0,,,,230.0,,199.0,,264.0,,253.0,,246.0,,43568.0,Does not include all calls received by call centers; Includes calls for other benefit programs,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.05,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +DC,District of Columbia,202307,Y,P,N,1362.0,,0.0,,1362.0,,0.0,,0.0,,0.0,,98639.0,,289252.0,,273250.0,,16002.0,,,,167.0,,148.0,,324.0,,277.0,,162.0,,45531.0,Does not include all calls received by call centers; Includes calls for other benefit programs,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.04,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +DC,District of Columbia,202307,Y,U,Y,1362.0,,0.0,,1362.0,,0.0,,0.0,,0.0,,100451.0,,292976.0,,276833.0,,16143.0,,,,167.0,,148.0,,324.0,,277.0,,162.0,,45531.0,Does not include all calls received by call centers; Includes calls for other benefit programs,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.04,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +DC,District of Columbia,202308,Y,P,N,1294.0,,0.0,,1294.0,,0.0,,0.0,,0.0,,95363.0,,281144.0,,265621.0,,15523.0,,,,231.0,,234.0,,269.0,,481.0,,173.0,,53711.0,Does not include all calls received by call centers; Includes calls for other benefit programs,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.04,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +DC,District of Columbia,202308,Y,U,Y,1294.0,,0.0,,1294.0,,0.0,,0.0,,0.0,,102115.0,,290845.0,,274300.0,,16545.0,,,,231.0,,234.0,,269.0,,481.0,,173.0,,53711.0,Does not include all calls received by call centers; Includes calls for other benefit programs,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.04,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +DC,District of Columbia,202309,Y,P,N,978.0,,0.0,,978.0,,0.0,,0.0,,0.0,,101578.0,,285360.0,,268739.0,,16621.0,,,,252.0,,74.0,,307.0,,209.0,,251.0,,52328.0,Does not include all calls received by call centers; Includes calls for other benefit programs,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.04,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +DC,District of Columbia,202309,Y,U,Y,978.0,,0.0,,978.0,,0.0,,0.0,,0.0,,102048.0,,286831.0,,270174.0,,16657.0,,,,252.0,,74.0,,307.0,,209.0,,251.0,,52328.0,Does not include all calls received by call centers; Includes calls for other benefit programs,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.04,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +DC,District of Columbia,202310,Y,P,N,965.0,,0.0,,965.0,,0.0,,0.0,,0.0,,101237.0,,283612.0,,266855.0,,16757.0,,,,267.0,,159.0,,262.0,,84.0,,480.0,,60608.0,Does not include all calls received by call centers; Includes calls for other benefit programs,3.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.11,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +DC,District of Columbia,202310,Y,U,Y,965.0,,0.0,,965.0,,0.0,,0.0,,0.0,,101744.0,,285518.0,,268724.0,,16794.0,,,,267.0,,159.0,,262.0,,84.0,,480.0,,60608.0,Does not include all calls received by call centers; Includes calls for other benefit programs,3.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.11,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +DC,District of Columbia,202311,Y,P,N,994.0,,0.0,,994.0,,0.0,,0.0,,0.0,,99968.0,,276505.0,,259764.0,,16741.0,,,,310.0,,202.0,,152.0,,122.0,,576.0,,60590.0,Does not include all calls received by call centers; Includes calls for other benefit programs,3.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.08,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +DC,District of Columbia,202311,Y,U,Y,994.0,,0.0,,994.0,,0.0,,0.0,,0.0,,101419.0,,281192.0,,264317.0,,16875.0,,,,310.0,,202.0,,152.0,,122.0,,576.0,,60590.0,Does not include all calls received by call centers; Includes calls for other benefit programs,3.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.08,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +DC,District of Columbia,202312,Y,P,N,1025.0,,0.0,,1025.0,,0.0,,0.0,,0.0,,100394.0,,274863.0,,257878.0,,16985.0,,,,285.0,,284.0,,213.0,,121.0,,383.0,,64214.0,Does not include all calls received by call centers; Includes calls for other benefit programs,3.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.24,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +DC,District of Columbia,202312,Y,U,Y,1025.0,,0.0,,1025.0,,0.0,,0.0,,0.0,,101136.0,,277511.0,,260487.0,,17024.0,,,,285.0,,284.0,,213.0,,121.0,,383.0,,64214.0,Does not include all calls received by call centers; Includes calls for other benefit programs,3.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.24,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +DC,District of Columbia,202401,Y,P,N,1412.0,,0.0,,1412.0,,0.0,,0.0,,0.0,,100143.0,,272591.0,,255483.0,,17108.0,,,,335.0,,401.0,,250.0,,140.0,,464.0,,63363.0,Does not include all calls received by call centers; Includes calls for other benefit programs,8.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.24,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +DC,District of Columbia,202401,Y,U,Y,1412.0,,0.0,,1412.0,,0.0,,0.0,,0.0,,101616.0,,276959.0,,259774.0,,17185.0,,,,335.0,,401.0,,250.0,,140.0,,464.0,,63363.0,Does not include all calls received by call centers; Includes calls for other benefit programs,8.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.24,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +DC,District of Columbia,202402,Y,P,N,1050.0,,0.0,,1050.0,,0.0,,0.0,,0.0,,92276.0,,266235.0,,250288.0,,15947.0,,,,220.0,,313.0,,232.0,,128.0,,694.0,,50866.0,Includes calls for other benefit programs,2.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.06,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DC,District of Columbia,202402,Y,U,Y,1050.0,,0.0,,1050.0,,0.0,,0.0,,0.0,,93454.0,,269060.0,,252976.0,,16084.0,,,,220.0,,313.0,,232.0,,128.0,,694.0,,50866.0,Includes calls for other benefit programs,2.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.06,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DC,District of Columbia,202403,Y,P,N,1163.0,,0.0,,1163.0,,0.0,,0.0,,0.0,,92702.0,,264986.0,,248679.0,,16307.0,,,,268.0,,420.0,,361.0,,208.0,,1115.0,,47896.0,Includes calls for other benefit programs,1.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.03,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DC,District of Columbia,202403,Y,U,Y,1163.0,,0.0,,1163.0,,0.0,,0.0,,0.0,,94123.0,,268229.0,,251780.0,,16449.0,,,,268.0,,420.0,,361.0,,208.0,,1115.0,,47896.0,Includes calls for other benefit programs,1.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.03,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DC,District of Columbia,202404,Y,P,N,1056.0,,0.0,,1056.0,,0.0,,0.0,,0.0,,93351.0,,264332.0,,247908.0,,16424.0,,,,307.0,,388.0,,306.0,,98.0,,961.0,,48606.0,Includes calls for other benefit programs,1.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.02,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DC,District of Columbia,202404,Y,U,Y,1056.0,,0.0,,1056.0,,0.0,,0.0,,0.0,,95007.0,,268215.0,,251593.0,,16622.0,,,,307.0,,388.0,,306.0,,98.0,,961.0,,48606.0,Includes calls for other benefit programs,1.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.02,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DC,District of Columbia,202405,Y,P,N,1237.0,,0.0,,1237.0,,0.0,,0.0,,0.0,,94041.0,,263400.0,,246402.0,,16998.0,,,,446.0,,415.0,,356.0,,316.0,,653.0,,46555.0,Includes calls for other benefit programs,0.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.02,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DC,District of Columbia,202405,Y,U,Y,1237.0,,0.0,,1237.0,,0.0,,0.0,,0.0,,94849.0,,265658.0,,248639.0,,17019.0,,,,446.0,,415.0,,356.0,,316.0,,653.0,,46555.0,Includes calls for other benefit programs,0.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.02,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DC,District of Columbia,202406,Y,P,N,1241.0,,0.0,,1241.0,,0.0,,0.0,,0.0,,94347.0,,260218.0,,242946.0,,17272.0,,,,428.0,,398.0,,592.0,,353.0,,346.0,,35526.0,Includes calls for other benefit programs,0.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.01,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DC,District of Columbia,202406,Y,U,Y,1241.0,,0.0,,1241.0,,0.0,,0.0,,0.0,,95232.0,,262528.0,,245169.0,,17359.0,,,,428.0,,398.0,,592.0,,353.0,,346.0,,35526.0,Includes calls for other benefit programs,0.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.01,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DC,District of Columbia,202407,Y,P,N,1480.0,,0.0,,1480.0,,0.0,,0.0,,0.0,,95635.0,,260958.0,,243420.0,,17538.0,,165323.0,,466.0,,444.0,,751.0,,105.0,,333.0,,41011.0,Includes calls for other benefit programs,1.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.02,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DC,District of Columbia,202407,Y,U,Y,1480.0,,0.0,,1480.0,,0.0,,0.0,,0.0,,95635.0,,260958.0,,243420.0,,17538.0,,165323.0,,466.0,,444.0,,751.0,,105.0,,333.0,,41011.0,Includes calls for other benefit programs,1.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.02,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DC,District of Columbia,202408,Y,P,N,1563.0,,0.0,,1563.0,,0.0,,0.0,,0.0,,94858.0,,256426.0,,238990.0,,17436.0,,161568.0,,484.0,,458.0,,779.0,,159.0,,287.0,,38946.0,Includes calls for other benefit programs,0.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.02,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DC,District of Columbia,202408,Y,U,Y,1563.0,,0.0,,1563.0,,0.0,,0.0,,0.0,,95725.0,,258851.0,,241329.0,,17522.0,,163126.0,,484.0,,458.0,,779.0,,159.0,,287.0,,38946.0,Includes calls for other benefit programs,0.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.02,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DC,District of Columbia,202409,Y,P,N,1351.0,,0.0,,1351.0,,0.0,,0.0,,0.0,,95569.0,,257197.0,,239793.0,,17404.0,,161628.0,,439.0,,395.0,,593.0,,139.0,,264.0,,38857.0,Includes calls for other benefit programs,0.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.01,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DC,District of Columbia,202409,Y,U,Y,1351.0,,0.0,,1351.0,,0.0,,0.0,,0.0,,95569.0,,257197.0,,239793.0,,17404.0,,161628.0,,439.0,,395.0,,593.0,,139.0,,264.0,,38857.0,Includes calls for other benefit programs,0.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.01,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DC,District of Columbia,202410,Y,P,N,1500.0,,0.0,,1500.0,,0.0,,0.0,,0.0,,94688.0,,255313.0,,238028.0,,17285.0,,160625.0,,492.0,,405.0,,629.0,,159.0,,281.0,,43414.0,Includes calls for other benefit programs,0.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.02,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DC,District of Columbia,202410,Y,U,Y,1500.0,,0.0,,1500.0,,0.0,,0.0,,0.0,,96001.0,,258527.0,,241089.0,,17438.0,,162526.0,,492.0,,405.0,,629.0,,159.0,,281.0,,43414.0,Includes calls for other benefit programs,0.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.02,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DC,District of Columbia,202411,Y,P,N,1359.0,,0.0,,1359.0,,0.0,,0.0,,0.0,,95223.0,,256206.0,,238822.0,,17384.0,,160983.0,,473.0,,658.0,,376.0,,127.0,,214.0,,36061.0,Includes calls for other benefit programs,0.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.02,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DC,District of Columbia,202411,Y,U,Y,1359.0,,0.0,,1359.0,,0.0,,0.0,,0.0,,96164.0,,258632.0,,241125.0,,17507.0,,162468.0,,473.0,,658.0,,376.0,,127.0,,214.0,,36061.0,Includes calls for other benefit programs,0.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.02,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DC,District of Columbia,202412,Y,P,N,1528.0,,0.0,,1528.0,,0.0,,0.0,,0.0,,95424.0,,257408.0,,240020.0,,17388.0,,161984.0,,523.0,,648.0,,361.0,,120.0,,217.0,,39765.0,Includes calls for other benefit programs,0.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.02,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DC,District of Columbia,202412,Y,U,Y,1528.0,,0.0,,1528.0,,0.0,,0.0,,0.0,,96406.0,,260045.0,,242560.0,,17485.0,,163639.0,,523.0,,648.0,,361.0,,120.0,,217.0,,39765.0,Includes calls for other benefit programs,0.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.02,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DC,District of Columbia,202501,Y,P,N,1737.0,,0.0,,1737.0,,0.0,,0.0,,0.0,,95997.0,,257333.0,,239963.0,,17370.0,,161336.0,,643.0,,740.0,,388.0,,93.0,,257.0,,40248.0,Includes calls for other benefit programs,0.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.02,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DC,District of Columbia,202501,Y,U,Y,1737.0,,0.0,,1737.0,,0.0,,0.0,,0.0,,96594.0,,259022.0,,241590.0,,17432.0,,162428.0,,643.0,,740.0,,388.0,,93.0,,257.0,,40248.0,Includes calls for other benefit programs,0.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.02,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DC,District of Columbia,202502,Y,P,N,1416.0,,0.0,,1416.0,,0.0,,0.0,,0.0,,95920.0,,258221.0,,240877.0,,17344.0,,162301.0,,546.0,,608.0,,379.0,,48.0,,138.0,,32197.0,Includes calls for other benefit programs,0.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.01,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DC,District of Columbia,202502,Y,U,Y,1416.0,,0.0,,1416.0,,0.0,,0.0,,0.0,,96545.0,,260125.0,,242721.0,,17404.0,,163580.0,,546.0,,608.0,,379.0,,48.0,,138.0,,32197.0,Includes calls for other benefit programs,0.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.01,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DC,District of Columbia,202503,Y,P,N,1718.0,,0.0,,1718.0,,0.0,,0.0,,0.0,,96167.0,,259493.0,,242059.0,,17434.0,,163326.0,,692.0,,703.0,,369.0,,83.0,,169.0,,33017.0,Includes calls for other benefit programs,0.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.01,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DC,District of Columbia,202503,Y,U,Y,1718.0,,0.0,,1718.0,,0.0,,0.0,,0.0,,96746.0,,261474.0,,243989.0,,17485.0,,164728.0,,692.0,,703.0,,369.0,,83.0,,169.0,,33017.0,Includes calls for other benefit programs,0.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.01,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DC,District of Columbia,202504,Y,P,N,1462.0,,0.0,,1462.0,,0.0,,0.0,,0.0,,96064.0,,259116.0,,241663.0,,17453.0,,163052.0,,611.0,,616.0,,372.0,,101.0,,233.0,,32540.0,Includes calls for other benefit programs,0.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.01,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DC,District of Columbia,202504,Y,U,Y,1462.0,,0.0,,1462.0,,0.0,,0.0,,0.0,,97162.0,,261668.0,,244138.0,,17530.0,,164506.0,,611.0,,616.0,,372.0,,101.0,,233.0,,32540.0,Includes calls for other benefit programs,0.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.01,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DC,District of Columbia,202505,Y,P,N,1364.0,,0.0,,1364.0,,0.0,,0.0,,0.0,,96094.0,,258770.0,,241337.0,,17433.0,,162676.0,,545.0,,350.0,,423.0,,75.0,,151.0,,32328.0,Includes calls for other benefit programs,0.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.01,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DC,District of Columbia,202505,Y,U,Y,1364.0,,0.0,,1364.0,,0.0,,0.0,,0.0,,96850.0,,260734.0,,243211.0,,17523.0,,163884.0,,545.0,,350.0,,423.0,,75.0,,151.0,,32328.0,Includes calls for other benefit programs,0.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.01,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DC,District of Columbia,202506,Y,P,N,1172.0,,0.0,,1172.0,,0.0,,0.0,,0.0,,95775.0,,257586.0,,240162.0,,17424.0,,161811.0,,539.0,,244.0,,401.0,,79.0,,168.0,,32438.0,Includes calls for other benefit programs,0.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.02,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DC,District of Columbia,202506,Y,U,Y,1172.0,,0.0,,1172.0,,0.0,,0.0,,0.0,,96703.0,,260002.0,,242480.0,,17522.0,,163299.0,,539.0,,244.0,,401.0,,79.0,,168.0,,32438.0,Includes calls for other benefit programs,0.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.02,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DC,District of Columbia,202507,Y,P,N,1359.0,,0.0,,1359.0,,0.0,,0.0,,0.0,,95635.0,,257763.0,,240384.0,,17379.0,,162128.0,,512.0,,331.0,,247.0,,225.0,,221.0,,38382.0,Includes calls for other benefit programs,0.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.02,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DC,District of Columbia,202507,Y,U,Y,1359.0,,0.0,,1359.0,,0.0,,0.0,,0.0,,96458.0,,259767.0,,242427.0,,17340.0,,163309.0,,512.0,,331.0,,247.0,,225.0,,221.0,,38382.0,Includes calls for other benefit programs,0.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.02,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DC,District of Columbia,202508,Y,P,N,1213.0,,0.0,,1213.0,,0.0,,0.0,,0.0,,95036.0,,256737.0,,239692.0,,17045.0,,161701.0,,513.0,,299.0,,196.0,,132.0,,280.0,,37269.0,Includes calls for other benefit programs,0.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.02,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DC,District of Columbia,202508,Y,U,Y,1213.0,,0.0,,1213.0,,0.0,,0.0,,0.0,,95802.0,,258668.0,,241742.0,,16926.0,,162866.0,,513.0,,299.0,,196.0,,132.0,,280.0,,37269.0,Includes calls for other benefit programs,0.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.02,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DC,District of Columbia,202509,Y,P,N,1263.0,,0.0,,1263.0,,0.0,,0.0,,0.0,,95487.0,,258470.0,,242158.0,,16312.0,,162983.0,,530.0,,296.0,,200.0,,103.0,,374.0,,43218.0,Includes calls for other benefit programs,0.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.03,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DC,District of Columbia,202509,Y,U,Y,1263.0,,0.0,,1263.0,,0.0,,0.0,,0.0,,95682.0,,258880.0,,242408.0,,16472.0,,163198.0,,530.0,,296.0,,200.0,,103.0,,374.0,,43218.0,Includes calls for other benefit programs,0.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.03,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DC,District of Columbia,202510,Y,P,N,1173.0,,0.0,,1173.0,,0.0,,0.0,,0.0,,94918.0,,257703.0,,241418.0,,16285.0,,162785.0,,466.0,,252.0,,201.0,,105.0,,389.0,,39554.0,Includes calls for other benefit programs,0.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.02,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DE,Delaware,201309,N,U,Y,,,,,,,,,,,,,,,223324.0,,,,,,,,,,,,,,,,,,,,,,, +DE,Delaware,201706,Y,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,105633.0,,227659.0,,215041.0,,12618.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,201706,Y,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,105633.0,,227659.0,,215041.0,,12618.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,201707,Y,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,106080.0,,228630.0,,216012.0,,12618.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,201707,Y,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,106080.0,,228630.0,,216012.0,,12618.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,201708,Y,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,106646.0,,229944.0,,217339.0,,12605.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,201708,Y,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,106646.0,,229944.0,,217339.0,,12605.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,201709,Y,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,106672.0,,230339.0,,217588.0,,12751.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,201709,Y,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,106672.0,,230339.0,,217588.0,,12751.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,201710,Y,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,106724.0,,230748.0,,217936.0,,12812.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,201710,Y,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,106724.0,,230748.0,,217936.0,,12812.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,201711,Y,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,106738.0,,231385.0,,218568.0,,12817.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,201711,Y,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,106738.0,,231385.0,,218568.0,,12817.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,201712,Y,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,106852.0,,232315.0,,219516.0,,12799.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,201712,Y,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,106852.0,,232315.0,,219516.0,,12799.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,201801,Y,P,N,3370.0,,0.0,,3370.0,,4994.0,,716.0,,5710.0,,106567.0,,232016.0,,219263.0,,12753.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,201801,Y,U,Y,3370.0,,0.0,,3370.0,,4994.0,,716.0,,5710.0,,106567.0,,232016.0,,219263.0,,12753.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,201802,Y,P,N,2828.0,,0.0,,2828.0,,4753.0,,715.0,,5468.0,,106442.0,,231967.0,,219338.0,,12629.0,,,,534.0,,713.0,,738.0,,0.0,,0.0,,,,,,, +DE,Delaware,201802,Y,U,Y,2828.0,,0.0,,2828.0,,4753.0,,715.0,,5468.0,,106442.0,,231967.0,,219338.0,,12629.0,,,,534.0,,713.0,,738.0,,0.0,,0.0,,,,,,, +DE,Delaware,201803,Y,P,N,2743.0,,0.0,,2743.0,,4844.0,,778.0,,5622.0,,105972.0,,231282.0,,218785.0,,12497.0,,,,480.0,,547.0,,689.0,,0.0,,0.0,,,,,,, +DE,Delaware,201803,Y,U,Y,2743.0,,0.0,,2743.0,,4844.0,,778.0,,5622.0,,105972.0,,231282.0,,218785.0,,12497.0,,,,480.0,,547.0,,689.0,,0.0,,0.0,,,,,,, +DE,Delaware,201804,Y,P,N,2920.0,,0.0,,2920.0,,4961.0,,765.0,,5726.0,,105552.0,,230656.0,,218347.0,,12309.0,,,,474.0,,542.0,,656.0,,0.0,,0.0,,,,,,, +DE,Delaware,201804,Y,U,Y,2920.0,,0.0,,2920.0,,4961.0,,765.0,,5726.0,,105552.0,,230656.0,,218347.0,,12309.0,,,,474.0,,542.0,,656.0,,0.0,,0.0,,,,,,, +DE,Delaware,201805,Y,P,N,2802.0,,0.0,,2802.0,,5018.0,,687.0,,5705.0,,105407.0,,230525.0,,218247.0,,12278.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,201805,Y,U,Y,2802.0,,0.0,,2802.0,,5018.0,,687.0,,5705.0,,105407.0,,230525.0,,218247.0,,12278.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,201806,Y,P,N,2713.0,,0.0,,2713.0,,4819.0,,705.0,,5524.0,,105429.0,,230590.0,,218248.0,,12342.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,201806,Y,U,Y,2713.0,,0.0,,2713.0,,4819.0,,705.0,,5524.0,,105429.0,,230590.0,,218248.0,,12342.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,201807,Y,P,N,2900.0,,0.0,,2900.0,,5079.0,,756.0,,5835.0,,105633.0,,231090.0,,218692.0,,12398.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,201807,Y,U,Y,2900.0,,0.0,,2900.0,,5079.0,,756.0,,5835.0,,105633.0,,231090.0,,218692.0,,12398.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,201808,Y,P,N,3116.0,,0.0,,3116.0,,5425.0,,761.0,,6186.0,,106178.0,,231919.0,,219431.0,,12488.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,201808,Y,U,Y,3116.0,,0.0,,3116.0,,5425.0,,761.0,,6186.0,,106178.0,,231919.0,,219431.0,,12488.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,201809,Y,P,N,2774.0,,0.0,,2774.0,,4970.0,,842.0,,5812.0,,106201.0,,231952.0,,219469.0,,12483.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,201809,Y,U,Y,2774.0,,0.0,,2774.0,,4970.0,,842.0,,5812.0,,106201.0,,231952.0,,219469.0,,12483.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,201810,Y,P,N,3243.0,,0.0,,3243.0,,5206.0,,860.0,,6066.0,,106313.0,,232137.0,,219483.0,,12654.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,201810,Y,U,Y,3243.0,,0.0,,3243.0,,5206.0,,860.0,,6066.0,,106313.0,,232137.0,,219483.0,,12654.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,201811,Y,P,N,4659.0,,0.0,,4659.0,,4808.0,,828.0,,5636.0,,106203.0,,232123.0,,219376.0,,12747.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,201811,Y,U,Y,4659.0,,0.0,,4659.0,,4808.0,,828.0,,5636.0,,106203.0,,232123.0,,219376.0,,12747.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,201812,Y,P,N,4832.0,,0.0,,4832.0,,4756.0,,715.0,,5471.0,,106479.0,,232712.0,,219901.0,,12811.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,201812,Y,U,Y,4832.0,,0.0,,4832.0,,4756.0,,715.0,,5471.0,,106479.0,,232712.0,,219901.0,,12811.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,201901,Y,P,N,3059.0,,0.0,,3059.0,,5078.0,,701.0,,5779.0,,106450.0,,232614.0,,219799.0,,12815.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,201901,Y,U,Y,3059.0,,0.0,,3059.0,,5078.0,,701.0,,5779.0,,106450.0,,232614.0,,219799.0,,12815.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,201902,Y,P,N,2606.0,,0.0,,2606.0,,4381.0,,659.0,,5040.0,,106426.0,,232772.0,,219953.0,,12819.0,,,,512.0,,670.0,,775.0,,0.0,,0.0,,,,,,, +DE,Delaware,201902,Y,U,Y,2606.0,,0.0,,2606.0,,4381.0,,659.0,,5040.0,,106426.0,,232772.0,,219953.0,,12819.0,,,,512.0,,670.0,,775.0,,0.0,,0.0,,,,,,, +DE,Delaware,201903,Y,P,N,2847.0,,0.0,,2847.0,,4763.0,,754.0,,5517.0,,106192.0,,232357.0,,219546.0,,12811.0,,,,603.0,,649.0,,635.0,,0.0,,0.0,,,,,,, +DE,Delaware,201903,Y,U,Y,2847.0,,0.0,,2847.0,,4763.0,,754.0,,5517.0,,106192.0,,232357.0,,219546.0,,12811.0,,,,603.0,,649.0,,635.0,,0.0,,0.0,,,,,,, +DE,Delaware,201904,Y,P,N,2756.0,,0.0,,2756.0,,5075.0,,746.0,,5821.0,,105773.0,,231788.0,,219284.0,,12504.0,,,,507.0,,536.0,,615.0,,0.0,,0.0,,,,,,, +DE,Delaware,201904,Y,U,Y,2756.0,,0.0,,2756.0,,5075.0,,746.0,,5821.0,,105773.0,,231788.0,,219284.0,,12504.0,,,,507.0,,536.0,,615.0,,0.0,,0.0,,,,,,, +DE,Delaware,201905,Y,P,N,2733.0,,0.0,,2733.0,,4799.0,,696.0,,5495.0,,105635.0,,231598.0,,219090.0,,12508.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,201905,Y,U,Y,2733.0,,0.0,,2733.0,,4799.0,,696.0,,5495.0,,105635.0,,231598.0,,219090.0,,12508.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,201906,Y,P,N,2572.0,,0.0,,2572.0,,4626.0,,746.0,,5372.0,,105227.0,,230930.0,,218360.0,,12570.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,201906,Y,U,Y,2572.0,,0.0,,2572.0,,4626.0,,746.0,,5372.0,,105227.0,,230930.0,,218360.0,,12570.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,201907,Y,P,N,2928.0,,0.0,,2928.0,,5220.0,,719.0,,5939.0,,105619.0,,231586.0,,218940.0,,12646.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,201907,Y,U,Y,2928.0,,0.0,,2928.0,,5220.0,,719.0,,5939.0,,105619.0,,231586.0,,218940.0,,12646.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,201908,Y,P,N,3024.0,,0.0,,3024.0,,5115.0,,802.0,,5917.0,,105795.0,,231674.0,,218912.0,,12762.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,201908,Y,U,Y,3024.0,,0.0,,3024.0,,5115.0,,802.0,,5917.0,,105795.0,,231674.0,,218912.0,,12762.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,201909,Y,P,N,2701.0,,0.0,,2701.0,,4865.0,,807.0,,5672.0,,105753.0,,231251.0,,218455.0,,12796.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,201909,Y,U,Y,2701.0,,0.0,,2701.0,,4865.0,,807.0,,5672.0,,105753.0,,231251.0,,218455.0,,12796.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,201910,Y,P,N,2955.0,,0.0,,2955.0,,4849.0,,757.0,,5606.0,,105657.0,,230969.0,,218123.0,,12846.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,201910,Y,U,Y,2955.0,,0.0,,2955.0,,4849.0,,757.0,,5606.0,,105657.0,,230969.0,,218123.0,,12846.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,201911,Y,P,N,4745.0,,0.0,,4745.0,,4428.0,,762.0,,5190.0,,105633.0,,231026.0,,218123.0,,12903.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,201911,Y,U,Y,4745.0,,0.0,,4745.0,,4428.0,,762.0,,5190.0,,105633.0,,231026.0,,218123.0,,12903.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,201912,Y,P,N,5245.0,,0.0,,5245.0,,4270.0,,726.0,,4996.0,,105532.0,,231285.0,,218227.0,,13058.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,201912,Y,U,Y,5245.0,,0.0,,5245.0,,4270.0,,726.0,,4996.0,,105532.0,,231285.0,,218227.0,,13058.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,202001,Y,P,N,3445.0,,0.0,,3445.0,,4785.0,,783.0,,5568.0,,105547.0,,231455.0,,218292.0,,13163.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,202001,Y,U,Y,3445.0,,0.0,,3445.0,,4785.0,,783.0,,5568.0,,105547.0,,231455.0,,218292.0,,13163.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,202002,Y,P,N,3127.0,,0.0,,3127.0,,4378.0,,723.0,,5101.0,,105630.0,,231742.0,,218629.0,,13113.0,,,,329.0,,454.0,,591.0,,554.0,,9.0,,,,,,, +DE,Delaware,202002,Y,U,Y,3127.0,,0.0,,3127.0,,4378.0,,723.0,,5101.0,,105630.0,,231742.0,,218629.0,,13113.0,,,,329.0,,1045.0,,135.0,,425.0,,0.0,,,,,,, +DE,Delaware,202003,Y,P,N,4071.0,,0.0,,4071.0,,4756.0,,799.0,,5555.0,,105427.0,,231862.0,,218830.0,,13032.0,,,,329.0,,454.0,,591.0,,554.0,,9.0,,,,,,, +DE,Delaware,202003,Y,U,Y,4071.0,,0.0,,4071.0,,4756.0,,799.0,,5555.0,,105427.0,,231862.0,,218830.0,,13032.0,,,,329.0,,454.0,,591.0,,554.0,,9.0,,,,,,, +DE,Delaware,202004,Y,P,N,4388.0,,0.0,,4388.0,,5066.0,,678.0,,5744.0,,106795.0,,235286.0,,222339.0,,12947.0,,,,545.0,,574.0,,117.0,,215.0,,0.0,,,,,,, +DE,Delaware,202004,Y,U,Y,4388.0,,0.0,,4388.0,,5066.0,,678.0,,5744.0,,106795.0,,235286.0,,222339.0,,12947.0,,,,545.0,,574.0,,117.0,,215.0,,0.0,,,,,,, +DE,Delaware,202005,Y,P,N,3132.0,,0.0,,3132.0,,3119.0,,278.0,,3397.0,,107546.0,,238113.0,,225462.0,,12651.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,202005,Y,U,Y,3132.0,,0.0,,3132.0,,3119.0,,278.0,,3397.0,,107546.0,,238113.0,,225462.0,,12651.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,202006,Y,P,N,2930.0,,0.0,,2930.0,,2698.0,,138.0,,2836.0,,108568.0,,240476.0,,228088.0,,12388.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,202006,Y,U,Y,2930.0,,0.0,,2930.0,,2698.0,,138.0,,2836.0,,108568.0,,240476.0,,228088.0,,12388.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,202007,Y,P,N,3294.0,,0.0,,3294.0,,2602.0,,149.0,,2751.0,,109766.0,,243349.0,,230971.0,,12378.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,202007,Y,U,Y,3294.0,,0.0,,3294.0,,2602.0,,149.0,,2751.0,,109766.0,,243349.0,,230971.0,,12378.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,202008,Y,P,N,3587.0,,0.0,,3587.0,,2298.0,,125.0,,2423.0,,110980.0,,246249.0,,233833.0,,12416.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,202008,Y,U,Y,3587.0,,0.0,,3587.0,,2298.0,,125.0,,2423.0,,110980.0,,246249.0,,233833.0,,12416.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,202009,Y,P,N,3394.0,,0.0,,3394.0,,2335.0,,126.0,,2461.0,,112111.0,,248868.0,,236452.0,,12416.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,202009,Y,U,Y,3394.0,,0.0,,3394.0,,2335.0,,126.0,,2461.0,,112111.0,,248868.0,,236452.0,,12416.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,202010,Y,P,N,3388.0,,0.0,,3388.0,,2310.0,,139.0,,2449.0,,113111.0,,251502.0,,239082.0,,12420.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,202010,Y,U,Y,3388.0,,0.0,,3388.0,,2310.0,,139.0,,2449.0,,113111.0,,251502.0,,239082.0,,12420.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,202011,Y,P,N,5593.0,,0.0,,5593.0,,2168.0,,143.0,,2311.0,,114113.0,,254552.0,,242043.0,,12509.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,202011,Y,U,Y,5593.0,,0.0,,5593.0,,2168.0,,143.0,,2311.0,,114113.0,,254552.0,,242043.0,,12509.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,202012,Y,P,N,6380.0,,0.0,,6380.0,,2076.0,,121.0,,2197.0,,115295.0,,258025.0,,245397.0,,12628.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,202012,Y,U,Y,6380.0,,0.0,,6380.0,,2076.0,,121.0,,2197.0,,115295.0,,258025.0,,245397.0,,12628.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,202101,Y,P,N,3592.0,,0.0,,3592.0,,1786.0,,104.0,,1890.0,,116068.0,,260236.0,,247610.0,,12626.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,202101,Y,U,Y,3592.0,,0.0,,3592.0,,1786.0,,104.0,,1890.0,,116068.0,,260236.0,,247610.0,,12626.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,202102,Y,P,N,3317.0,,0.0,,3317.0,,1788.0,,106.0,,1894.0,,116682.0,,262185.0,,249553.0,,12632.0,,,,91.0,,269.0,,1378.0,,10.0,,36.0,,,,,,, +DE,Delaware,202102,Y,U,Y,3317.0,,0.0,,3317.0,,1788.0,,106.0,,1894.0,,116682.0,,262185.0,,249553.0,,12632.0,,,,91.0,,269.0,,1378.0,,10.0,,36.0,,,,,,, +DE,Delaware,202103,Y,P,N,3770.0,,0.0,,3770.0,,2431.0,,179.0,,2610.0,,117342.0,,264446.0,,251792.0,,12654.0,,,,116.0,,1155.0,,146.0,,426.0,,0.0,,,,,,, +DE,Delaware,202103,Y,U,Y,3770.0,,0.0,,3770.0,,2431.0,,179.0,,2610.0,,117342.0,,264446.0,,251792.0,,12654.0,,,,116.0,,1155.0,,146.0,,426.0,,0.0,,,,,,, +DE,Delaware,202104,Y,P,N,3434.0,,0.0,,3434.0,,2198.0,,155.0,,2353.0,,117468.0,,265098.0,,253712.0,,11386.0,,,,127.0,,916.0,,144.0,,316.0,,0.0,,,,,,, +DE,Delaware,202104,Y,U,Y,3434.0,,0.0,,3434.0,,2198.0,,155.0,,2353.0,,117468.0,,265098.0,,253712.0,,11386.0,,,,127.0,,916.0,,144.0,,316.0,,0.0,,,,,,, +DE,Delaware,202105,Y,P,N,3022.0,,0.0,,3022.0,,1972.0,,143.0,,2115.0,,118134.0,,267045.0,,255645.0,,11400.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,202105,Y,U,Y,3022.0,,0.0,,3022.0,,1972.0,,143.0,,2115.0,,118134.0,,267045.0,,255645.0,,11400.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,202106,Y,P,N,3048.0,,0.0,,3048.0,,2219.0,,145.0,,2364.0,,118833.0,,268963.0,,257584.0,,11379.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,202106,Y,U,Y,3048.0,,0.0,,3048.0,,2219.0,,145.0,,2364.0,,118833.0,,268963.0,,257584.0,,11379.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,202107,Y,P,N,3221.0,,0.0,,3221.0,,2269.0,,137.0,,2406.0,,119762.0,,271159.0,,259796.0,,11363.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,202107,Y,U,Y,3221.0,,0.0,,3221.0,,2269.0,,137.0,,2406.0,,119762.0,,271159.0,,259796.0,,11363.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,202108,Y,P,N,3603.0,,0.0,,3603.0,,2359.0,,165.0,,2524.0,,120642.0,,273386.0,,262071.0,,11315.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,202108,Y,U,Y,3603.0,,0.0,,3603.0,,2359.0,,165.0,,2524.0,,120642.0,,273386.0,,262071.0,,11315.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,202109,Y,P,N,3099.0,,0.0,,3099.0,,2584.0,,159.0,,2743.0,,121028.0,,275242.0,,264661.0,,10581.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,202109,Y,U,Y,3099.0,,0.0,,3099.0,,2584.0,,159.0,,2743.0,,121028.0,,275242.0,,264661.0,,10581.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,202110,Y,P,N,2961.0,,0.0,,2961.0,,2109.0,,111.0,,2220.0,,121360.0,,276686.0,,266541.0,,10145.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,202110,Y,U,Y,2961.0,,0.0,,2961.0,,2109.0,,111.0,,2220.0,,121360.0,,276686.0,,266541.0,,10145.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,202111,Y,P,N,4992.0,,0.0,,4992.0,,2415.0,,205.0,,2620.0,,121585.0,,278408.0,,268912.0,,9496.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,202111,Y,U,Y,4992.0,,0.0,,4992.0,,2415.0,,205.0,,2620.0,,121585.0,,278408.0,,268912.0,,9496.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,202112,Y,P,N,5046.0,,0.0,,5046.0,,2368.0,,320.0,,2688.0,,119834.0,,278171.0,,269552.0,,8619.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,202112,Y,U,Y,5046.0,,0.0,,5046.0,,2368.0,,320.0,,2688.0,,119834.0,,278171.0,,269552.0,,8619.0,,,,,,,,,,,,,,,,,,, +DE,Delaware,202201,Y,P,N,4204.0,,0.0,,4204.0,,2353.0,,493.0,,2846.0,,118304.0,,280153.0,,271567.0,,8586.0,,,,131.0,,964.0,,356.0,,326.0,,0.0,,,,,,, +DE,Delaware,202201,Y,U,Y,4204.0,,0.0,,4204.0,,2353.0,,493.0,,2846.0,,118304.0,,280153.0,,271567.0,,8586.0,,,,131.0,,964.0,,356.0,,326.0,,0.0,,,,,,, +DE,Delaware,202202,Y,P,N,2836.0,,0.0,,2836.0,,2158.0,,327.0,,2485.0,,118651.0,,282299.0,,274064.0,,8235.0,,,,161.0,,1063.0,,328.0,,316.0,,0.0,,,,,,, +DE,Delaware,202202,Y,U,Y,2836.0,,0.0,,2836.0,,2158.0,,327.0,,2485.0,,118651.0,,282299.0,,274064.0,,8235.0,,,,161.0,,1063.0,,328.0,,316.0,,0.0,,,,,,, +DE,Delaware,202203,Y,P,N,3245.0,,0.0,,3245.0,,2707.0,,398.0,,3105.0,,118742.0,,283950.0,,276341.0,,7609.0,,,,183.0,,1000.0,,126.0,,267.0,,0.0,,,,,,, +DE,Delaware,202203,Y,U,Y,3245.0,,0.0,,3245.0,,2707.0,,398.0,,3105.0,,118742.0,,283950.0,,276341.0,,7609.0,,,,183.0,,1000.0,,126.0,,267.0,,0.0,,,,,,, +DE,Delaware,202204,Y,P,N,2790.0,,0.0,,2790.0,,2412.0,,364.0,,2776.0,,119143.0,,285541.0,,278126.0,,7415.0,,,,145.0,,913.0,,98.0,,190.0,,0.0,,,,,,, +DE,Delaware,202204,Y,U,Y,2790.0,,0.0,,2790.0,,2412.0,,364.0,,2776.0,,119143.0,,285541.0,,278126.0,,7415.0,,,,145.0,,913.0,,98.0,,190.0,,0.0,,,,,,, +DE,Delaware,202205,Y,P,N,2902.0,,0.0,,2902.0,,2269.0,,404.0,,2673.0,,119736.0,,287300.0,,279904.0,,7396.0,,,,139.0,,924.0,,116.0,,233.0,,0.0,,,,,,, +DE,Delaware,202205,Y,U,Y,2902.0,,0.0,,2902.0,,2269.0,,404.0,,2673.0,,119736.0,,287300.0,,279904.0,,7396.0,,,,139.0,,924.0,,116.0,,233.0,,0.0,,,,,,, +DE,Delaware,202206,Y,P,N,3049.0,,0.0,,3049.0,,2329.0,,295.0,,2624.0,,120268.0,,289032.0,,281747.0,,7285.0,,,,152.0,,1072.0,,109.0,,262.0,,0.0,,,,,,, +DE,Delaware,202206,Y,U,Y,3049.0,,0.0,,3049.0,,2329.0,,295.0,,2624.0,,120268.0,,289032.0,,281747.0,,7285.0,,,,152.0,,1072.0,,109.0,,262.0,,0.0,,,,,,, +DE,Delaware,202207,Y,P,N,2992.0,,0.0,,2992.0,,2142.0,,266.0,,2408.0,,120887.0,,290979.0,,283805.0,,7174.0,,,,122.0,,1028.0,,110.0,,252.0,,0.0,,,,,,, +DE,Delaware,202207,Y,U,Y,2992.0,,0.0,,2992.0,,2142.0,,266.0,,2408.0,,120887.0,,290979.0,,283805.0,,7174.0,,,,122.0,,1028.0,,110.0,,252.0,,0.0,,,,,,, +DE,Delaware,202208,Y,P,N,3462.0,,0.0,,3462.0,,2412.0,,313.0,,2725.0,,121590.0,,293136.0,,285962.0,,7174.0,,,,124.0,,1195.0,,158.0,,244.0,,0.0,,,,,,, +DE,Delaware,202208,Y,U,Y,3462.0,,0.0,,3462.0,,2412.0,,313.0,,2725.0,,121590.0,,293136.0,,285962.0,,7174.0,,,,124.0,,1195.0,,158.0,,244.0,,0.0,,,,,,, +DE,Delaware,202209,Y,P,N,2978.0,,0.0,,2978.0,,2272.0,,324.0,,2596.0,,122114.0,,294956.0,,287891.0,,7065.0,,,,111.0,,482.0,,777.0,,310.0,,0.0,,,,,,, +DE,Delaware,202209,Y,U,Y,2978.0,,0.0,,2978.0,,2272.0,,324.0,,2596.0,,122114.0,,294956.0,,287891.0,,7065.0,,,,111.0,,482.0,,777.0,,310.0,,0.0,,,,,,, +DE,Delaware,202210,Y,P,N,3058.0,,0.0,,3058.0,,2143.0,,375.0,,2518.0,,122636.0,,296811.0,,289744.0,,7067.0,,,,103.0,,1099.0,,159.0,,229.0,,0.0,,,,,,, +DE,Delaware,202210,Y,U,Y,3058.0,,0.0,,3058.0,,2143.0,,375.0,,2518.0,,122636.0,,296811.0,,289744.0,,7067.0,,,,103.0,,1099.0,,159.0,,229.0,,0.0,,,,,,, +DE,Delaware,202211,Y,P,N,5820.0,,0.0,,5820.0,,2090.0,,307.0,,2397.0,,122772.0,,298221.0,,291405.0,,6816.0,,,,86.0,,378.0,,722.0,,252.0,,0.0,,,,,,, +DE,Delaware,202211,Y,U,Y,5820.0,,0.0,,5820.0,,2090.0,,307.0,,2397.0,,122772.0,,298221.0,,291405.0,,6816.0,,,,86.0,,378.0,,722.0,,252.0,,0.0,,,,,,, +DE,Delaware,202212,Y,P,N,5627.0,,0.0,,5627.0,,2064.0,,239.0,,2303.0,,123244.0,,300480.0,,293872.0,,6608.0,,,,123.0,,985.0,,382.0,,301.0,,0.0,,,,,,, +DE,Delaware,202212,Y,U,Y,5627.0,,0.0,,5627.0,,2064.0,,239.0,,2303.0,,123244.0,,300480.0,,293872.0,,6608.0,,,,123.0,,985.0,,382.0,,301.0,,0.0,,,,,,, +DE,Delaware,202301,Y,P,N,4410.0,,0.0,,4410.0,,2191.0,,298.0,,2489.0,,123976.0,,303192.0,,296497.0,,6695.0,,,,112.0,,353.0,,1012.0,,385.0,,0.0,,,,,,, +DE,Delaware,202301,Y,U,Y,4410.0,,0.0,,4410.0,,2191.0,,298.0,,2489.0,,123976.0,,303192.0,,296497.0,,6695.0,,,,112.0,,353.0,,1012.0,,385.0,,0.0,,,,,,, +DE,Delaware,202302,Y,P,N,2906.0,,0.0,,2906.0,,1993.0,,336.0,,2329.0,,124474.0,,305292.0,,298567.0,,6725.0,,,,167.0,,979.0,,307.0,,249.0,,0.0,,,,,,, +DE,Delaware,202302,Y,U,Y,2906.0,,0.0,,2906.0,,1993.0,,336.0,,2329.0,,124474.0,,305292.0,,298567.0,,6725.0,,,,167.0,,979.0,,307.0,,249.0,,0.0,,,,,,, +DE,Delaware,202303,Y,P,N,3412.0,,0.0,,3412.0,,2483.0,,374.0,,2857.0,,124893.0,,306822.0,,300281.0,,6541.0,,,,150.0,,1094.0,,112.0,,285.0,,0.0,,35516.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,2.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.134,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DE,Delaware,202303,Y,U,Y,3412.0,,0.0,,3412.0,,2483.0,,374.0,,2857.0,,124893.0,,306822.0,,300281.0,,6541.0,,,,150.0,,1094.0,,112.0,,285.0,,0.0,,35516.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,2.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.134,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DE,Delaware,202304,Y,P,N,2992.0,,0.0,,2992.0,,2277.0,,360.0,,2637.0,,125156.0,,308105.0,,301739.0,,6366.0,,,,91.0,,971.0,,96.0,,261.0,,0.0,,30369.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent; New call center added in reporting period,1.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent; New call center added in reporting period,0.143,Includes calls for other benefit programs; Includes only calls transferred to a live agent; New call center added in reporting period +DE,Delaware,202304,Y,U,Y,2992.0,,0.0,,2992.0,,2277.0,,360.0,,2637.0,,125156.0,,308105.0,,301739.0,,6366.0,,,,91.0,,971.0,,96.0,,261.0,,0.0,,30369.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent; New call center added in reporting period,1.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent; New call center added in reporting period,0.143,Includes calls for other benefit programs; Includes only calls transferred to a live agent; New call center added in reporting period +DE,Delaware,202305,Y,P,N,3257.0,,0.0,,3257.0,,2373.0,,339.0,,2712.0,,125543.0,,309636.0,,303471.0,,6165.0,,,,144.0,,1057.0,,100.0,,247.0,,0.0,,30567.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.095,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DE,Delaware,202305,Y,U,Y,3257.0,,0.0,,3257.0,,2373.0,,339.0,,2712.0,,125543.0,,309636.0,,303471.0,,6165.0,,,,144.0,,1057.0,,100.0,,247.0,,0.0,,30567.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.095,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DE,Delaware,202306,Y,P,N,3340.0,,0.0,,3340.0,,2201.0,,700.0,,2901.0,,125561.0,,309753.0,,303184.0,,6569.0,,,,105.0,,886.0,,120.0,,245.0,,0.0,,36380.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.129,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DE,Delaware,202306,Y,U,Y,3340.0,,0.0,,3340.0,,2201.0,,700.0,,2901.0,,125561.0,,309753.0,,303184.0,,6569.0,,,,105.0,,886.0,,120.0,,245.0,,0.0,,36380.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.129,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DE,Delaware,202307,Y,P,N,3306.0,,0.0,,3306.0,,2461.0,,869.0,,3330.0,,124915.0,,310479.0,,303470.0,,7009.0,,,,120.0,,1085.0,,122.0,,258.0,,0.0,,35306.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.112,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DE,Delaware,202307,Y,U,Y,3306.0,,0.0,,3306.0,,2461.0,,869.0,,3330.0,,124915.0,,310479.0,,303470.0,,7009.0,,,,120.0,,1085.0,,122.0,,258.0,,0.0,,35306.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.112,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DE,Delaware,202308,Y,P,N,4363.0,,0.0,,4363.0,,2679.0,,1144.0,,3823.0,,122563.0,,303388.0,,295629.0,,7759.0,,,,139.0,,1087.0,,185.0,,242.0,,0.0,,44805.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.132,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DE,Delaware,202308,Y,U,Y,4363.0,,0.0,,4363.0,,2679.0,,1144.0,,3823.0,,122563.0,,303388.0,,295629.0,,7759.0,,,,139.0,,1087.0,,185.0,,242.0,,0.0,,44805.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.132,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DE,Delaware,202309,Y,P,N,3958.0,,0.0,,3958.0,,3142.0,,1248.0,,4390.0,,120738.0,,297267.0,,288772.0,,8495.0,,,,113.0,,1160.0,,155.0,,265.0,,0.0,,46578.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.198,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DE,Delaware,202309,Y,U,Y,3958.0,,0.0,,3958.0,,3142.0,,1248.0,,4390.0,,120738.0,,297267.0,,288772.0,,8495.0,,,,113.0,,1160.0,,155.0,,265.0,,0.0,,46578.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.198,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DE,Delaware,202310,Y,P,N,4063.0,,0.0,,4063.0,,3694.0,,1359.0,,5053.0,,120701.0,,296149.0,,286856.0,,9293.0,,,,128.0,,1422.0,,208.0,,283.0,,0.0,,42130.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.15,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DE,Delaware,202310,Y,U,Y,4063.0,,0.0,,4063.0,,3694.0,,1359.0,,5053.0,,120701.0,,296149.0,,286856.0,,9293.0,,,,128.0,,1422.0,,208.0,,283.0,,0.0,,42130.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.15,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DE,Delaware,202311,Y,P,N,7150.0,,0.0,,7150.0,,3830.0,,1371.0,,5201.0,,120166.0,,292466.0,,282276.0,,10190.0,,,,103.0,,1249.0,,133.0,,295.0,,0.0,,42043.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.194,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DE,Delaware,202311,Y,U,Y,7150.0,,0.0,,7150.0,,3830.0,,1371.0,,5201.0,,120166.0,,292466.0,,282276.0,,10190.0,,,,103.0,,1249.0,,133.0,,295.0,,0.0,,42043.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.194,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DE,Delaware,202312,Y,P,N,7263.0,,0.0,,7263.0,,3406.0,,947.0,,4353.0,,119758.0,,289484.0,,278802.0,,10682.0,,,,118.0,,1157.0,,323.0,,261.0,,0.0,,40233.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.193,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DE,Delaware,202312,Y,U,Y,7263.0,,0.0,,7263.0,,3406.0,,947.0,,4353.0,,119758.0,,289484.0,,278802.0,,10682.0,,,,118.0,,1157.0,,323.0,,261.0,,0.0,,40233.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.193,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DE,Delaware,202401,Y,P,N,6269.0,,0.0,,6269.0,,3450.0,,1205.0,,4655.0,,117715.0,,280711.0,,269299.0,,11412.0,,,,113.0,,1334.0,,397.0,,524.0,,0.0,,37058.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.254,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DE,Delaware,202401,Y,U,Y,6269.0,,0.0,,6269.0,,3450.0,,1205.0,,4655.0,,117715.0,,280711.0,,269299.0,,11412.0,,,,113.0,,1334.0,,397.0,,524.0,,0.0,,37058.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.254,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DE,Delaware,202402,Y,P,N,4402.0,,0.0,,4402.0,,3429.0,,633.0,,4062.0,,117313.0,,277898.0,,266251.0,,11647.0,,,,100.0,,1062.0,,624.0,,432.0,,0.0,,43513.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.187,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DE,Delaware,202402,Y,U,Y,4402.0,,0.0,,4402.0,,3429.0,,633.0,,4062.0,,117313.0,,277898.0,,266251.0,,11647.0,,,,100.0,,1062.0,,624.0,,432.0,,0.0,,43513.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.187,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DE,Delaware,202403,Y,P,N,5126.0,,0.0,,5126.0,,3795.0,,615.0,,4410.0,,117101.0,,274751.0,,263207.0,,11544.0,,,,93.0,,1346.0,,257.0,,297.0,,0.0,,42989.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.213,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DE,Delaware,202403,Y,U,Y,5126.0,,0.0,,5126.0,,3795.0,,615.0,,4410.0,,117101.0,,274751.0,,263207.0,,11544.0,,,,93.0,,1346.0,,257.0,,297.0,,0.0,,42989.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.213,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DE,Delaware,202404,Y,P,N,4994.0,,0.0,,4994.0,,4085.0,,685.0,,4770.0,,116301.0,,270248.0,,258864.0,,11384.0,,,,117.0,,1283.0,,178.0,,290.0,,0.0,,43380.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.185,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DE,Delaware,202404,Y,U,Y,4994.0,,0.0,,4994.0,,4085.0,,685.0,,4770.0,,116301.0,,270248.0,,258864.0,,11384.0,,,,117.0,,1283.0,,178.0,,290.0,,0.0,,43380.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.185,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DE,Delaware,202405,Y,P,N,4918.0,,0.0,,4918.0,,3888.0,,623.0,,4511.0,,115289.0,,265507.0,,254217.0,,11290.0,,,,130.0,,1229.0,,121.0,,315.0,,0.0,,30632.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.202,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DE,Delaware,202405,Y,U,Y,4918.0,,0.0,,4918.0,,3888.0,,623.0,,4511.0,,115289.0,,265507.0,,254217.0,,11290.0,,,,130.0,,1229.0,,121.0,,315.0,,0.0,,30632.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.202,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DE,Delaware,202406,Y,P,N,4651.0,,0.0,,4651.0,,3952.0,,806.0,,4758.0,,110883.0,,252239.0,,240829.0,,11410.0,,,,114.0,,1165.0,,151.0,,269.0,,0.0,,31477.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.226,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DE,Delaware,202406,Y,U,Y,4651.0,,0.0,,4651.0,,3952.0,,806.0,,4758.0,,110883.0,,252239.0,,240829.0,,11410.0,,,,114.0,,1165.0,,151.0,,269.0,,0.0,,31477.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.226,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DE,Delaware,202407,Y,P,N,5272.0,,0.0,,5272.0,,4521.0,,676.0,,5197.0,,110399.0,,250910.0,,239348.0,,11562.0,,140511.0,,150.0,,1299.0,,178.0,,302.0,,0.0,,35905.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.229,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DE,Delaware,202407,Y,U,Y,5272.0,,0.0,,5272.0,,4521.0,,676.0,,5197.0,,110399.0,,250910.0,,239348.0,,11562.0,,140511.0,,150.0,,1299.0,,178.0,,302.0,,0.0,,35905.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.229,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DE,Delaware,202408,Y,P,N,5077.0,,0.0,,5077.0,,4337.0,,585.0,,4922.0,,110804.0,,251307.0,,239770.0,,11537.0,,140503.0,,130.0,,1444.0,,171.0,,364.0,,0.0,,23151.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.174,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DE,Delaware,202408,Y,U,Y,5077.0,,0.0,,5077.0,,4337.0,,585.0,,4922.0,,110804.0,,251307.0,,239770.0,,11537.0,,140503.0,,130.0,,1444.0,,171.0,,364.0,,0.0,,23151.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.174,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DE,Delaware,202409,Y,P,N,4979.0,,0.0,,4979.0,,4510.0,,561.0,,5071.0,,110977.0,,251745.0,,240276.0,,11469.0,,140768.0,,127.0,,1442.0,,239.0,,339.0,,0.0,,23703.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.194,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DE,Delaware,202409,Y,U,Y,4979.0,,0.0,,4979.0,,4510.0,,561.0,,5071.0,,110977.0,,251745.0,,240276.0,,11469.0,,140768.0,,127.0,,1442.0,,239.0,,339.0,,0.0,,23703.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.194,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DE,Delaware,202410,Y,P,N,5298.0,,0.0,,5298.0,,4267.0,,924.0,,5191.0,,110990.0,,250651.0,,238843.0,,11808.0,,139661.0,,109.0,,1444.0,,216.0,,386.0,,0.0,,24501.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.196,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DE,Delaware,202410,Y,U,Y,5298.0,,0.0,,5298.0,,4267.0,,924.0,,5191.0,,110990.0,,250651.0,,238843.0,,11808.0,,139661.0,,109.0,,1444.0,,216.0,,386.0,,0.0,,24501.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.196,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DE,Delaware,202411,Y,P,N,10200.0,,0.0,,10200.0,,4359.0,,1265.0,,5624.0,,110198.0,,249009.0,,236760.0,,12249.0,,138811.0,,100.0,,1047.0,,145.0,,265.0,,0.0,,17478.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.184,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DE,Delaware,202411,Y,U,Y,10200.0,,0.0,,10200.0,,4359.0,,1265.0,,5624.0,,110198.0,,249009.0,,236760.0,,12249.0,,138811.0,,100.0,,1047.0,,145.0,,265.0,,0.0,,17478.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.184,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DE,Delaware,202412,Y,P,N,12234.0,,0.0,,12234.0,,4006.0,,829.0,,4835.0,,110344.0,,249368.0,,236840.0,,12528.0,,139024.0,,102.0,,960.0,,283.0,,324.0,,0.0,,23577.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.274,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DE,Delaware,202412,Y,U,Y,12234.0,,0.0,,12234.0,,4006.0,,829.0,,4835.0,,110344.0,,249368.0,,236840.0,,12528.0,,139024.0,,102.0,,960.0,,283.0,,324.0,,0.0,,23577.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.274,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DE,Delaware,202501,Y,P,N,8356.0,,0.0,,8356.0,,3937.0,,916.0,,4853.0,,110002.0,,247850.0,,235074.0,,12776.0,,137848.0,,105.0,,1375.0,,216.0,,523.0,,0.0,,31323.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.314,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DE,Delaware,202501,Y,U,Y,8356.0,,0.0,,8356.0,,3937.0,,916.0,,4853.0,,110002.0,,247850.0,,235074.0,,12776.0,,137848.0,,105.0,,1375.0,,216.0,,523.0,,0.0,,31323.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.314,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DE,Delaware,202502,Y,P,N,5277.0,,0.0,,5277.0,,3731.0,,816.0,,4547.0,,109994.0,,247850.0,,234793.0,,13057.0,,137856.0,,98.0,,790.0,,160.0,,682.0,,0.0,,24939.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.251,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DE,Delaware,202502,Y,U,Y,5277.0,,0.0,,5277.0,,3731.0,,816.0,,4547.0,,109994.0,,247850.0,,234793.0,,13057.0,,137856.0,,98.0,,790.0,,160.0,,682.0,,0.0,,24939.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.251,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DE,Delaware,202503,Y,P,N,4979.0,,0.0,,4979.0,,4088.0,,823.0,,4911.0,,109611.0,,247380.0,,234184.0,,13196.0,,137769.0,,94.0,,904.0,,167.0,,598.0,,0.0,,22681.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.223,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DE,Delaware,202503,Y,U,Y,4979.0,,0.0,,4979.0,,4088.0,,823.0,,4911.0,,109611.0,,247380.0,,234184.0,,13196.0,,137769.0,,94.0,,904.0,,167.0,,598.0,,0.0,,22681.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.223,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DE,Delaware,202504,Y,P,N,4632.0,,0.0,,4632.0,,4170.0,,918.0,,5088.0,,108795.0,,246306.0,,232967.0,,13339.0,,137511.0,,65.0,,197.0,,150.0,,503.0,,0.0,,23782.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,2.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.248,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DE,Delaware,202504,Y,U,Y,4632.0,,0.0,,4632.0,,4170.0,,918.0,,5088.0,,108795.0,,246306.0,,232967.0,,13339.0,,137511.0,,65.0,,197.0,,150.0,,503.0,,0.0,,23782.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,2.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.248,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DE,Delaware,202505,Y,P,N,4524.0,,0.0,,4524.0,,4742.0,,888.0,,5630.0,,108660.0,,245472.0,,232080.0,,13392.0,,136812.0,,60.0,,984.0,,229.0,,318.0,,0.0,,23363.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,2.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.231,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DE,Delaware,202505,Y,U,Y,4524.0,,0.0,,4524.0,,4742.0,,888.0,,5630.0,,108660.0,,245472.0,,232080.0,,13392.0,,136812.0,,60.0,,984.0,,229.0,,318.0,,0.0,,23363.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,2.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.231,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DE,Delaware,202506,Y,P,N,4257.0,,0.0,,4257.0,,4347.0,,814.0,,5161.0,,108326.0,,244962.0,,231565.0,,13397.0,,136636.0,,83.0,,1006.0,,128.0,,249.0,,0.0,,29607.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,2.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.301,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DE,Delaware,202506,Y,U,Y,4257.0,,0.0,,4257.0,,4347.0,,814.0,,5161.0,,108326.0,,244962.0,,231565.0,,13397.0,,136636.0,,83.0,,1006.0,,128.0,,249.0,,0.0,,29607.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,2.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.301,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DE,Delaware,202507,Y,P,N,3986.0,,0.0,,3986.0,,4074.0,,829.0,,4903.0,,108170.0,,244501.0,,231021.0,,13480.0,,136331.0,,61.0,,989.0,,121.0,,219.0,,0.0,,32096.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,2.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.319,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DE,Delaware,202507,Y,U,Y,3986.0,,0.0,,3986.0,,4074.0,,829.0,,4903.0,,108170.0,,244501.0,,231021.0,,13480.0,,136331.0,,61.0,,989.0,,121.0,,219.0,,0.0,,32096.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,2.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.319,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DE,Delaware,202508,Y,P,N,3879.0,,0.0,,3879.0,,4100.0,,809.0,,4909.0,,107955.0,,244057.0,,230525.0,,13532.0,,136102.0,,80.0,,1108.0,,88.0,,216.0,,0.0,,19532.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,2.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.259,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DE,Delaware,202508,Y,U,Y,3879.0,,0.0,,3879.0,,4100.0,,809.0,,4909.0,,107955.0,,244057.0,,230525.0,,13532.0,,136102.0,,80.0,,1108.0,,88.0,,216.0,,0.0,,19532.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,2.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.259,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DE,Delaware,202509,Y,P,N,4068.0,,0.0,,4068.0,,4340.0,,815.0,,5155.0,,107967.0,,243805.0,,230166.0,,13639.0,,135838.0,,80.0,,1156.0,,99.0,,250.0,,0.0,,20787.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,2.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.272,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DE,Delaware,202509,Y,U,Y,4068.0,,0.0,,4068.0,,4340.0,,815.0,,5155.0,,107967.0,,243805.0,,230166.0,,13639.0,,135838.0,,80.0,,1156.0,,99.0,,250.0,,0.0,,20787.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,2.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.272,Includes calls for other benefit programs; Includes only calls transferred to a live agent +DE,Delaware,202510,Y,P,N,4054.0,,0.0,,4054.0,,4197.0,,1003.0,,5200.0,,107720.0,,242745.0,,228908.0,,13837.0,,135025.0,,91.0,,1093.0,,142.0,,239.0,,0.0,,18459.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,2.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.226,Includes calls for other benefit programs; Includes only calls transferred to a live agent +FL,Florida,201309,N,U,Y,,,,,,,,,,,,,,,3695306.0,,,,,,,,,,,,,,,,,,,,,,, +FL,Florida,201706,N,P,N,280705.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,280705.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,171706.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,16654.0,,188360.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2592522.0,,3874106.0,,3678987.0,,195119.0,,,,,,,,,,,,,,,,,,, +FL,Florida,201706,N,U,Y,280705.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,280705.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,171706.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,16654.0,,188360.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2592522.0,,3874106.0,,3678987.0,,195119.0,,,,,,,,,,,,,,,,,,, +FL,Florida,201707,N,P,N,286222.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,286222.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,129725.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,16752.0,,146477.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2596499.0,,3882461.0,,3686820.0,,195641.0,,,,,,,,,,,,,,,,,,, +FL,Florida,201707,N,U,Y,286222.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,286222.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,129725.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,16752.0,,146477.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2596499.0,,3882461.0,,3686820.0,,195641.0,,,,,,,,,,,,,,,,,,, +FL,Florida,201708,N,P,N,311323.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,311323.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,150768.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,22554.0,,173322.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2567311.0,,3843679.0,,3646981.0,,196698.0,,,,,,,,,,,,,,,,,,, +FL,Florida,201708,N,U,Y,311323.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,311323.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,150768.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,22554.0,,173322.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2567311.0,,3843679.0,,3646981.0,,196698.0,,,,,,,,,,,,,,,,,,, +FL,Florida,201709,N,P,N,344688.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,344688.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,106671.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,16052.0,,122723.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2544326.0,,3806151.0,,3607546.0,,198605.0,,,,,,,,,,,,,,,,,,, +FL,Florida,201709,N,U,Y,344688.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,344688.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,106671.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,16052.0,,122723.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2544326.0,,3806151.0,,3607546.0,,198605.0,,,,,,,,,,,,,,,,,,, +FL,Florida,201710,N,P,N,315907.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,315907.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,123492.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,18747.0,,142239.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2565652.0,,3839336.0,,3644087.0,,195249.0,,,,,,,,,,,,,,,,,,, +FL,Florida,201710,N,U,Y,315907.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,315907.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,123492.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,18747.0,,142239.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2565652.0,,3839336.0,,3644087.0,,195249.0,,,,,,,,,,,,,,,,,,, +FL,Florida,201711,N,P,N,248287.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,248287.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,137235.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,23557.0,,160792.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2548960.0,,3810911.0,,3610069.0,,200842.0,,,,,,,,,,,,,,,,,,, +FL,Florida,201711,N,U,Y,248287.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,248287.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,137235.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,23557.0,,160792.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2548960.0,,3810911.0,,3610069.0,,200842.0,,,,,,,,,,,,,,,,,,, +FL,Florida,201712,N,P,N,277235.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,277235.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,160765.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,23133.0,,183898.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2553249.0,,3814637.0,,3615126.0,,199511.0,,,,,,,,,,,,,,,,,,, +FL,Florida,201712,N,U,Y,277235.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,277235.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,160765.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,23133.0,,183898.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2553249.0,,3814637.0,,3615126.0,,199511.0,,,,,,,,,,,,,,,,,,, +FL,Florida,201801,N,P,N,364722.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,364722.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,173919.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,23791.0,,197710.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2539151.0,,3800552.0,,3602908.0,,197644.0,,,,,,,,,,,,,,,,,,, +FL,Florida,201801,N,U,Y,364722.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,364722.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,173919.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,23791.0,,197710.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2539151.0,,3800552.0,,3602908.0,,197644.0,,,,,,,,,,,,,,,,,,, +FL,Florida,201802,N,P,N,301836.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,301836.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,174329.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,21896.0,,196225.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2542830.0,,3801846.0,,3600824.0,,201022.0,,,,91797.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",56984.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",90543.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",15906.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",7067.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +FL,Florida,201802,N,U,Y,301836.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,301836.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,174329.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,21896.0,,196225.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2542830.0,,3801846.0,,3600824.0,,201022.0,,,,91797.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",56984.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",90543.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",15906.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",7067.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +FL,Florida,201803,N,P,N,276810.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,276810.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,178193.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,23669.0,,201862.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2528984.0,,3778635.0,,3575187.0,,203448.0,,,,107309.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",57286.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",83424.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",11617.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",10515.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +FL,Florida,201803,N,U,Y,276810.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,276810.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,178193.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,23669.0,,201862.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2528984.0,,3778635.0,,3575187.0,,203448.0,,,,107309.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",57286.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",83424.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",11617.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",10515.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +FL,Florida,201804,N,P,N,276017.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,276017.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,153899.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,21967.0,,175866.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2523928.0,,3768663.0,,3560556.0,,208107.0,,,,92540.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",55666.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",60602.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",9798.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",9710.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +FL,Florida,201804,N,U,Y,276017.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,276017.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,153899.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,21967.0,,175866.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2523928.0,,3768663.0,,3560556.0,,208107.0,,,,92540.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",55666.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",60602.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",9798.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",9710.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +FL,Florida,201805,N,P,N,285820.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,285820.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,160784.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,24498.0,,185282.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2489247.0,,3717972.0,,3506937.0,,211035.0,,,,,,,,,,,,,,,,,,, +FL,Florida,201805,N,U,Y,285820.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,285820.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,160784.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,24498.0,,185282.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2489247.0,,3717972.0,,3506937.0,,211035.0,,,,,,,,,,,,,,,,,,, +FL,Florida,201806,N,P,N,278643.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,278643.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,194271.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,22652.0,,216923.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2488968.0,,3716933.0,,3503598.0,,213335.0,,,,,,,,,,,,,,,,,,, +FL,Florida,201806,N,U,Y,278643.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,278643.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,194271.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,22652.0,,216923.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2488968.0,,3716933.0,,3503598.0,,213335.0,,,,,,,,,,,,,,,,,,, +FL,Florida,201807,N,P,N,312278.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,312278.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,190972.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,23065.0,,214037.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2497262.0,,3729831.0,,3513481.0,,216350.0,,,,,,,,,,,,,,,,,,, +FL,Florida,201807,N,U,Y,312278.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,312278.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,190972.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,23065.0,,214037.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2497262.0,,3729831.0,,3513481.0,,216350.0,,,,,,,,,,,,,,,,,,, +FL,Florida,201808,N,P,N,326143.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,326143.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,195074.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,25086.0,,220160.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2498479.0,,3729920.0,,3509312.0,,220608.0,,,,,,,,,,,,,,,,,,, +FL,Florida,201808,N,U,Y,326143.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,326143.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,195074.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,25086.0,,220160.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2498479.0,,3729920.0,,3509312.0,,220608.0,,,,,,,,,,,,,,,,,,, +FL,Florida,201809,N,P,N,259678.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,259678.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,168252.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,19725.0,,187977.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2495011.0,,3724654.0,,3499699.0,,224955.0,,,,,,,,,,,,,,,,,,, +FL,Florida,201809,N,U,Y,259678.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,259678.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,168252.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,19725.0,,187977.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2495011.0,,3724654.0,,3499699.0,,224955.0,,,,,,,,,,,,,,,,,,, +FL,Florida,201810,N,P,N,288896.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,288896.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,167352.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,21845.0,,189197.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2497413.0,,3728146.0,,3503285.0,,224861.0,,,,,,,,,,,,,,,,,,, +FL,Florida,201810,N,U,Y,288896.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,288896.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,167352.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,21845.0,,189197.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2497413.0,,3728146.0,,3503285.0,,224861.0,,,,,,,,,,,,,,,,,,, +FL,Florida,201811,N,P,N,235358.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,235358.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,174410.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,21471.0,,195881.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2487442.0,,3709647.0,,3482705.0,,226942.0,,,,,,,,,,,,,,,,,,, +FL,Florida,201811,N,U,Y,235358.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,235358.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,174410.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,21471.0,,195881.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2487442.0,,3709647.0,,3482705.0,,226942.0,,,,,,,,,,,,,,,,,,, +FL,Florida,201812,N,P,N,226089.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,226089.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,157152.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,23804.0,,180956.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2483564.0,,3703423.0,,3476981.0,,226442.0,,,,,,,,,,,,,,,,,,, +FL,Florida,201812,N,U,Y,226089.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,226089.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,157152.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,23804.0,,180956.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2483564.0,,3703423.0,,3476981.0,,226442.0,,,,,,,,,,,,,,,,,,, +FL,Florida,201901,N,P,N,333583.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,333583.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,182942.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,24840.0,,207782.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2467917.0,,3679990.0,,3450613.0,,229377.0,,,,,,,,,,,,,,,,,,, +FL,Florida,201901,N,U,Y,333583.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,333583.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,182942.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,24840.0,,207782.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2467917.0,,3679990.0,,3450613.0,,229377.0,,,,,,,,,,,,,,,,,,, +FL,Florida,201902,N,P,N,251794.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,251794.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,201395.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,21669.0,,223064.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2465449.0,,3678155.0,,3444643.0,,233512.0,,,,109619.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",82407.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",102417.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",12607.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6132.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +FL,Florida,201902,N,U,Y,251794.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,251794.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,201395.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,21669.0,,223064.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2465449.0,,3678155.0,,3444643.0,,233512.0,,,,109619.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",82407.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",102417.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",12607.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6132.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +FL,Florida,201903,N,P,N,251925.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,251925.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,172800.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,22702.0,,195502.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2448784.0,,3655668.0,,3423439.0,,232229.0,,,,109212.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",68941.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",83636.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",10192.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",8698.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +FL,Florida,201903,N,U,Y,251925.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,251925.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,172800.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,22702.0,,195502.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2448784.0,,3655668.0,,3423439.0,,232229.0,,,,109212.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",68941.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",83636.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",10192.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",8698.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +FL,Florida,201904,N,P,N,278239.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,278239.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,169823.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,20510.0,,190333.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2455146.0,,3662149.0,,3426817.0,,235332.0,,,,109989.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",71719.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",78910.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",11619.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",9155.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +FL,Florida,201904,N,U,Y,278239.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,278239.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,169823.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,20510.0,,190333.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2455146.0,,3662149.0,,3426817.0,,235332.0,,,,109989.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",71719.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",78910.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",11619.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",9155.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +FL,Florida,201905,N,P,N,258610.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,258610.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,166154.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,20694.0,,186848.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2450258.0,,3654076.0,,3417122.0,,236954.0,,,,,,,,,,,,,,,,,,, +FL,Florida,201905,N,U,Y,258610.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,258610.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,166154.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,20694.0,,186848.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2450258.0,,3654076.0,,3417122.0,,236954.0,,,,,,,,,,,,,,,,,,, +FL,Florida,201906,N,P,N,267353.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,267353.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,163446.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,18646.0,,182092.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2447218.0,,3650441.0,,3412209.0,,238232.0,,,,,,,,,,,,,,,,,,, +FL,Florida,201906,N,U,Y,267353.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,267353.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,163446.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,18646.0,,182092.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2447218.0,,3650441.0,,3412209.0,,238232.0,,,,,,,,,,,,,,,,,,, +FL,Florida,201907,N,P,N,294310.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,294310.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,178349.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,21513.0,,199862.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2449430.0,,3657394.0,,3420248.0,,237146.0,,,,,,,,,,,,,,,,,,, +FL,Florida,201907,N,U,Y,294310.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,294310.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,178349.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,21513.0,,199862.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2449430.0,,3657394.0,,3420248.0,,237146.0,,,,,,,,,,,,,,,,,,, +FL,Florida,201908,N,P,N,284481.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,284481.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,185644.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,21109.0,,206753.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2444994.0,,3652059.0,,3412500.0,,239559.0,,,,,,,,,,,,,,,,,,, +FL,Florida,201908,N,U,Y,284481.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,284481.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,185644.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,21109.0,,206753.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2444994.0,,3652059.0,,3412500.0,,239559.0,,,,,,,,,,,,,,,,,,, +FL,Florida,201909,N,P,N,256111.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,256111.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,152304.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,18044.0,,170348.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2440529.0,,3648067.0,,3408446.0,,239621.0,,,,,,,,,,,,,,,,,,, +FL,Florida,201909,N,U,Y,256111.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,256111.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,152304.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,18044.0,,170348.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2440529.0,,3648067.0,,3408446.0,,239621.0,,,,,,,,,,,,,,,,,,, +FL,Florida,201910,N,P,N,271644.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,271644.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,173442.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,20997.0,,194439.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2435574.0,,3640328.0,,3400609.0,,239719.0,,,,,,,,,,,,,,,,,,, +FL,Florida,201910,N,U,Y,271644.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,271644.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,173442.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,20997.0,,194439.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2435574.0,,3640328.0,,3400609.0,,239719.0,,,,,,,,,,,,,,,,,,, +FL,Florida,201911,N,P,N,252287.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,252287.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,148939.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,19861.0,,168800.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2423583.0,,3621088.0,,3380922.0,,240166.0,,,,,,,,,,,,,,,,,,, +FL,Florida,201911,N,U,Y,252287.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,252287.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,148939.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,19861.0,,168800.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2423583.0,,3621088.0,,3380922.0,,240166.0,,,,,,,,,,,,,,,,,,, +FL,Florida,201912,N,P,N,241234.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,241234.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,145627.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,22977.0,,168604.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2418906.0,,3613005.0,,3374862.0,,238143.0,,,,,,,,,,,,,,,,,,, +FL,Florida,201912,N,U,Y,241234.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,241234.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,145627.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,22977.0,,168604.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2418906.0,,3613005.0,,3374862.0,,238143.0,,,,,,,,,,,,,,,,,,, +FL,Florida,202001,N,P,N,319373.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,319373.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,176679.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,23653.0,,200332.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2412646.0,,3601113.0,,3364100.0,,237013.0,,,,,,,,,,,,,,,,,,, +FL,Florida,202001,N,U,Y,319373.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,319373.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,176679.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,23653.0,,200332.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2412646.0,,3601113.0,,3364100.0,,237013.0,,,,,,,,,,,,,,,,,,, +FL,Florida,202002,N,P,N,257496.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,257496.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,176622.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,20964.0,,197586.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2410942.0,,3600457.0,,3359727.0,,240730.0,,,,92924.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",81873.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",99080.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",14245.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6274.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +FL,Florida,202002,N,U,Y,257496.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,257496.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,176622.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,20964.0,,197586.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2410942.0,,3600457.0,,3359727.0,,240730.0,,,,92924.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",81873.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",99080.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",14245.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6274.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +FL,Florida,202003,N,P,N,389954.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,389954.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,162714.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,21517.0,,184231.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2411354.0,,3605857.0,,3361994.0,,243863.0,,,,91439.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",84843.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",77907.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",14122.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",9807.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +FL,Florida,202003,N,U,Y,389954.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,389954.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,162714.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,21517.0,,184231.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2411354.0,,3605857.0,,3361994.0,,243863.0,,,,91439.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",84843.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",77907.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",14122.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",9807.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +FL,Florida,202004,N,P,N,733651.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,733651.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,245757.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,17202.0,,262959.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2454210.0,,3694863.0,,3448494.0,,246369.0,,,,84072.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",102719.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",155529.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",10940.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",9860.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +FL,Florida,202004,N,U,Y,733651.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,733651.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,245757.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,17202.0,,262959.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2454210.0,,3694863.0,,3448494.0,,246369.0,,,,84072.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",102719.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",155529.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",10940.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",9860.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +FL,Florida,202005,N,P,N,319429.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,319429.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,237020.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,11487.0,,248507.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2519996.0,,3823393.0,,3588226.0,,235167.0,,,,,,,,,,,,,,,,,,, +FL,Florida,202005,N,U,Y,319429.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,319429.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,237020.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,11487.0,,248507.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2519996.0,,3823393.0,,3588226.0,,235167.0,,,,,,,,,,,,,,,,,,, +FL,Florida,202006,N,P,N,253509.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,253509.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,159343.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,9595.0,,168938.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2554779.0,,3892552.0,,3673324.0,,219228.0,,,,,,,,,,,,,,,,,,, +FL,Florida,202006,N,U,Y,253509.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,253509.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,159343.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,9595.0,,168938.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2554779.0,,3892552.0,,3673324.0,,219228.0,,,,,,,,,,,,,,,,,,, +FL,Florida,202007,N,P,N,264846.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,264846.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,125187.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,9595.0,,134782.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2577304.0,,3930734.0,,3716747.0,,213987.0,,,,,,,,,,,,,,,,,,, +FL,Florida,202007,N,U,Y,264846.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,264846.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,125187.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,9595.0,,134782.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2577304.0,,3930734.0,,3716747.0,,213987.0,,,,,,,,,,,,,,,,,,, +FL,Florida,202008,N,P,N,275752.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,275752.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,123676.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,9592.0,,133268.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2605180.0,,3977970.0,,3768981.0,,208989.0,,,,,,,,,,,,,,,,,,, +FL,Florida,202008,N,U,Y,275752.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,275752.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,123676.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,9592.0,,133268.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2605180.0,,3977970.0,,3768981.0,,208989.0,,,,,,,,,,,,,,,,,,, +FL,Florida,202009,N,P,N,235800.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,235800.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,123242.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,9279.0,,132521.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2619221.0,,4006720.0,,3805520.0,,201200.0,,,,,,,,,,,,,,,,,,, +FL,Florida,202009,N,U,Y,235800.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,235800.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,123242.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,9279.0,,132521.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2619221.0,,4006720.0,,3805520.0,,201200.0,,,,,,,,,,,,,,,,,,, +FL,Florida,202010,N,P,N,273400.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,273400.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,145380.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,10029.0,,155409.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2636843.0,,4037892.0,,3842645.0,,195247.0,,,,,,,,,,,,,,,,,,, +FL,Florida,202010,N,U,Y,273400.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,273400.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,145380.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,10029.0,,155409.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2636843.0,,4037892.0,,3842645.0,,195247.0,,,,,,,,,,,,,,,,,,, +FL,Florida,202011,N,P,N,242132.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,242132.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,125281.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,11381.0,,136662.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2655697.0,,4076951.0,,3887091.0,,189860.0,,,,,,,,,,,,,,,,,,, +FL,Florida,202011,N,U,Y,242132.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,242132.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,125281.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,11381.0,,136662.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2655697.0,,4076951.0,,3887091.0,,189860.0,,,,,,,,,,,,,,,,,,, +FL,Florida,202012,N,P,N,262745.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,262745.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,127499.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,13218.0,,140717.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2667866.0,,4104699.0,,3921731.0,,182968.0,,,,,,,,,,,,,,,,,,, +FL,Florida,202012,N,U,Y,262745.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,262745.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,127499.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,13218.0,,140717.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2667866.0,,4104699.0,,3921731.0,,182968.0,,,,,,,,,,,,,,,,,,, +FL,Florida,202101,N,P,N,317090.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,317090.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,135005.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,9156.0,,144161.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2684724.0,,4144712.0,,3967818.0,,176894.0,,,,,,,,,,,,,,,,,,, +FL,Florida,202101,N,U,Y,317090.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,317090.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,135005.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,9156.0,,144161.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2684724.0,,4144712.0,,3967818.0,,176894.0,,,,,,,,,,,,,,,,,,, +FL,Florida,202102,N,P,N,289385.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,289385.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,133814.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,8529.0,,142343.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2699162.0,,4169637.0,,3997232.0,,172405.0,,,,57013.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",55509.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",73942.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",9573.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",9319.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +FL,Florida,202102,N,U,Y,289385.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,289385.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,133814.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,8529.0,,142343.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2699162.0,,4169637.0,,3997232.0,,172405.0,,,,57013.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",55509.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",73942.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",9573.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",9319.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +FL,Florida,202103,N,P,N,283150.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,283150.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,133609.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,8884.0,,142493.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2719092.0,,4213933.0,,4046841.0,,167092.0,,,,61689.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",61449.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",61976.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",8384.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",16389.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +FL,Florida,202103,N,U,Y,283150.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,283150.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,133609.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,8884.0,,142493.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2719092.0,,4213933.0,,4046841.0,,167092.0,,,,61689.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",61449.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",61976.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",8384.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",16389.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +FL,Florida,202104,N,P,N,263395.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,263395.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,125284.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,9002.0,,134286.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2736749.0,,4249167.0,,4084741.0,,164426.0,,,,65546.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",72084.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",42240.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",4788.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",17919.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +FL,Florida,202104,N,U,Y,263395.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,263395.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,125284.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,9002.0,,134286.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2736749.0,,4249167.0,,4084741.0,,164426.0,,,,65546.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",72084.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",42240.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",4788.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",17919.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +FL,Florida,202105,N,P,N,213429.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,213429.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,112978.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,5193.0,,118171.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2750804.0,,4281662.0,,4122539.0,,159123.0,,,,,,,,,,,,,,,,,,, +FL,Florida,202105,N,U,Y,213429.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,213429.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,112978.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,5193.0,,118171.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2750804.0,,4281662.0,,4122539.0,,159123.0,,,,,,,,,,,,,,,,,,, +FL,Florida,202106,N,P,N,237497.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,237497.0,Includes Accounts Transferred from FFM; Does Not Include All Applications for Limited-Benefit Programs,115135.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,7289.0,,122424.0,Does Not Include All Determinations for Limited-Benefit Programs Made At Application,2765737.0,,4316655.0,,4162462.0,,154193.0,,,,,,,,,,,,,,,,,,, +FL,Florida,202106,N,U,Y,237497.0,,0.0,,237497.0,,115135.0,,7289.0,,122424.0,,2765737.0,,4316655.0,,4162462.0,,154193.0,,,,,,,,,,,,,,,,,,, +FL,Florida,202107,N,P,N,262526.0,,0.0,,262526.0,,106328.0,,7399.0,,113727.0,,2780127.0,,4350511.0,,4199842.0,,150669.0,,,,,,,,,,,,,,,,,,, +FL,Florida,202107,N,U,Y,262526.0,,0.0,,262526.0,,106328.0,,7399.0,,113727.0,,2780127.0,,4350511.0,,4199842.0,,150669.0,,,,,,,,,,,,,,,,,,, +FL,Florida,202108,N,P,N,298705.0,,0.0,,298705.0,,103322.0,,8354.0,,111676.0,,2800260.0,,4396610.0,,4249189.0,,147421.0,,,,,,,,,,,,,,,,,,, +FL,Florida,202108,N,U,Y,298705.0,,0.0,,298705.0,,103322.0,,8354.0,,111676.0,,2800260.0,,4396610.0,,4249189.0,,147421.0,,,,,,,,,,,,,,,,,,, +FL,Florida,202109,N,P,N,310205.0,,0.0,,310205.0,,98595.0,,7500.0,,106095.0,,2813419.0,,4427217.0,,4282045.0,,145172.0,,,,,,,,,,,,,,,,,,, +FL,Florida,202109,N,U,Y,310205.0,,0.0,,310205.0,,98595.0,,7500.0,,106095.0,,2813419.0,,4427217.0,,4282045.0,,145172.0,,,,,,,,,,,,,,,,,,, +FL,Florida,202110,N,P,N,279200.0,,0.0,,279200.0,,101710.0,,7030.0,,108740.0,,2825006.0,,4457869.0,,4317048.0,,140821.0,,,,,,,,,,,,,,,,,,, +FL,Florida,202110,N,U,Y,279200.0,,0.0,,279200.0,,101710.0,,7030.0,,108740.0,,2825006.0,,4457869.0,,4317048.0,,140821.0,,,,,,,,,,,,,,,,,,, +FL,Florida,202111,N,P,N,274852.0,,0.0,,274852.0,,86110.0,,8474.0,,94584.0,,2836695.0,,4488890.0,,4352490.0,,136400.0,,,,,,,,,,,,,,,,,,, +FL,Florida,202111,N,U,Y,274852.0,,0.0,,274852.0,,86110.0,,8474.0,,94584.0,,2836695.0,,4488890.0,,4352490.0,,136400.0,,,,,,,,,,,,,,,,,,, +FL,Florida,202112,N,P,N,251830.0,,0.0,,251830.0,,83976.0,,8213.0,,92189.0,,2844788.0,,4507461.0,,4374640.0,,132821.0,,,,,,,,,,,,,,,,,,, +FL,Florida,202112,N,U,Y,251830.0,,0.0,,251830.0,,83976.0,,8213.0,,92189.0,,2844788.0,,4507461.0,,4374640.0,,132821.0,,,,,,,,,,,,,,,,,,, +FL,Florida,202201,N,P,N,307950.0,,0.0,,307950.0,,90816.0,,8431.0,,99247.0,,2860871.0,,4539216.0,,4410616.0,,128600.0,,,,41450.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",24733.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",36150.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",25520.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",28219.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +FL,Florida,202201,N,U,Y,307950.0,,0.0,,307950.0,,90816.0,,8431.0,,99247.0,,2860871.0,,4539216.0,,4410616.0,,128600.0,,,,41450.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",24733.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",36150.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",25520.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",28219.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +FL,Florida,202202,N,P,N,266082.0,,0.0,,266082.0,,87771.0,,6549.0,,94320.0,,2872930.0,,4564104.0,,4439042.0,,125062.0,,,,39647.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",18598.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",42166.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",24458.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",28169.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +FL,Florida,202202,N,U,Y,266082.0,,0.0,,266082.0,,87771.0,,6549.0,,94320.0,,2872930.0,,4564104.0,,4439042.0,,125062.0,,,,39647.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",18598.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",42166.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",24458.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",28169.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +FL,Florida,202203,N,P,N,282827.0,,0.0,,282827.0,,108833.0,,7496.0,,116329.0,,2888365.0,,4596546.0,,4476192.0,,120354.0,,,,42077.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",22991.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",47720.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",26469.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",38059.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +FL,Florida,202203,N,U,Y,282827.0,,0.0,,282827.0,,108833.0,,7496.0,,116329.0,,2888365.0,,4596546.0,,4476192.0,,120354.0,,,,42077.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",22991.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",47720.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",26469.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",38059.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +FL,Florida,202204,N,P,N,273109.0,,0.0,,273109.0,,100807.0,,6764.0,,107571.0,,2907911.0,,4631017.0,,4512436.0,,118581.0,,,,37661.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",24802.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",55555.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",25831.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",21182.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +FL,Florida,202204,N,U,Y,273109.0,,0.0,,273109.0,,100807.0,,6764.0,,107571.0,,2907911.0,,4631017.0,,4512436.0,,118581.0,,,,37661.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",24802.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",55555.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",25831.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",21182.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +FL,Florida,202205,N,P,N,267536.0,,0.0,,267536.0,,88153.0,,5682.0,,93835.0,,2925612.0,,4670235.0,,4555896.0,,114339.0,,,,34308.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",28120.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",49849.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",24445.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",14974.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +FL,Florida,202205,N,U,Y,267536.0,,0.0,,267536.0,,88153.0,,5682.0,,93835.0,,2925612.0,,4670235.0,,4555896.0,,114339.0,,,,34308.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",28120.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",49849.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",24445.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",9264.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +FL,Florida,202206,N,P,N,274661.0,,0.0,,274661.0,,88432.0,,6135.0,,94567.0,,2942186.0,,4704468.0,,4592578.0,,111890.0,,,,36486.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",31168.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",52683.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",18998.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",9871.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +FL,Florida,202206,N,U,Y,274661.0,,0.0,,274661.0,,88432.0,,6135.0,,94567.0,,2942186.0,,4704468.0,,4592578.0,,111890.0,,,,36486.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",31168.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",52683.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",18998.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",9871.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +FL,Florida,202207,N,P,N,272606.0,,0.0,,272606.0,,86341.0,,7442.0,,93783.0,,2957230.0,,4735250.0,,4626041.0,,109209.0,,,,37413.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",24653.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",58121.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",19972.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",9094.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +FL,Florida,202207,N,U,Y,272606.0,,0.0,,272606.0,,86341.0,,7442.0,,93783.0,,2957230.0,,4734996.0,,4625787.0,,109209.0,,,,37413.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",24653.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",58121.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",19972.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",9094.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +FL,Florida,202208,N,P,N,298836.0,,0.0,,298836.0,,97253.0,,8526.0,,105779.0,,2976759.0,,4773338.0,,4667364.0,,105974.0,,,,39748.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",24851.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",64737.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",24806.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",7600.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +FL,Florida,202208,N,U,Y,298836.0,,0.0,,298836.0,,97253.0,,8526.0,,105779.0,,2976759.0,,4773338.0,,4667364.0,,105974.0,,,,39748.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",24851.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",64737.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",24806.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",7600.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +FL,Florida,202209,N,P,N,257399.0,,0.0,,257399.0,,83650.0,,6726.0,,90376.0,,2986819.0,,4796092.0,,4692209.0,,103883.0,,,,35151.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",20031.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",53112.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",25034.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",13010.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +FL,Florida,202209,N,U,Y,257399.0,,0.0,,257399.0,,83650.0,,6726.0,,90376.0,,2986819.0,,4796092.0,,4692209.0,,103883.0,,,,35151.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",20031.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",53112.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",25034.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",13010.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +FL,Florida,202210,N,P,N,308704.0,,0.0,,308704.0,,82810.0,,7015.0,,89825.0,,3001947.0,,4828580.0,,4728467.0,,100113.0,,,,33852.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",21032.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",49116.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",23235.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",14335.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +FL,Florida,202210,N,U,Y,308704.0,,0.0,,308704.0,,82810.0,,7015.0,,89825.0,,3001947.0,,4828580.0,,4728467.0,,100113.0,,,,33852.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",21032.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",49116.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",23235.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",14335.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +FL,Florida,202211,N,P,N,250291.0,,0.0,,250291.0,,72996.0,,9638.0,,82634.0,,3012904.0,,4851799.0,,4752201.0,,99598.0,,,,34811.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",23927.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",32554.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",25903.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",14732.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +FL,Florida,202211,N,U,Y,250291.0,,0.0,,250291.0,,72996.0,,9638.0,,82634.0,,3012904.0,,4851799.0,,4752201.0,,99598.0,,,,34811.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",23927.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",32554.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",25903.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",14732.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +FL,Florida,202212,N,P,N,303771.0,,0.0,,303771.0,,93950.0,,9379.0,,103329.0,,3029286.0,,4883951.0,,4786372.0,,97579.0,,,,41100.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",25083.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",51040.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",26041.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",24232.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +FL,Florida,202212,N,U,Y,303771.0,,0.0,,303771.0,,93950.0,,9379.0,,103329.0,,3029286.0,,4883951.0,,4786372.0,,97579.0,,,,41100.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",25083.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",51040.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",26041.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",24232.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +FL,Florida,202301,N,P,N,274605.0,,0.0,,274605.0,,94915.0,,8024.0,,102939.0,,3050266.0,,4924826.0,,4832131.0,,92695.0,,,,38284.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",24409.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",35881.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",30277.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",26940.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +FL,Florida,202301,N,U,Y,274605.0,,0.0,,274605.0,,94915.0,,8024.0,,102939.0,,3050266.0,,4924826.0,,4832131.0,,92695.0,,,,38284.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",24408.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",35881.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",30277.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",26940.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +FL,Florida,202302,N,P,N,220785.0,,0.0,,220785.0,,80964.0,,6123.0,,87087.0,,3063512.0,,4949019.0,,4859249.0,,89770.0,,,,34323.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",18137.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",38927.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",27046.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",17254.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +FL,Florida,202302,N,U,Y,220785.0,,0.0,,220785.0,,80964.0,,6123.0,,87087.0,,3063512.0,,4949019.0,,4859249.0,,89770.0,,,,34323.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",18137.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",38927.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",27046.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",17254.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +FL,Florida,202303,N,P,N,269135.0,,0.0,,269135.0,,88176.0,,7273.0,,95449.0,,3094306.0,,5088076.0,,5000278.0,,87798.0,,,,32341.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",24329.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",40491.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",30893.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",17420.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1784439.0,Includes calls for other benefit programs,29.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.388,Includes calls for other benefit programs; Includes only calls transferred to a live agent +FL,Florida,202303,N,U,Y,269135.0,,0.0,,269135.0,,88176.0,,7273.0,,95449.0,,3094306.0,,5088076.0,,5000278.0,,87798.0,,,,32341.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",24329.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",40491.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",30893.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",17420.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1784439.0,Includes calls for other benefit programs,29.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.388,Includes calls for other benefit programs; Includes only calls transferred to a live agent +FL,Florida,202304,N,P,N,265552.0,,0.0,,265552.0,,139446.0,,13947.0,,153393.0,,3111737.0,,5118562.0,,5030399.0,,88163.0,,,,59949.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",32442.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",56842.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",38955.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",21565.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1640165.0,Includes calls for other benefit programs,40.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.498,Includes calls for other benefit programs; Includes only calls transferred to a live agent +FL,Florida,202304,N,U,Y,265552.0,,0.0,,265552.0,,139446.0,,13947.0,,153393.0,,3111737.0,,5118562.0,,5030399.0,,88163.0,,,,59949.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",32442.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",56842.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",38955.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",21565.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1640165.0,Includes calls for other benefit programs,40.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.498,Includes calls for other benefit programs; Includes only calls transferred to a live agent +FL,Florida,202305,N,P,N,323798.0,,0.0,,323798.0,,182729.0,,26544.0,,209273.0,,2979322.0,,4862823.0,,4776245.0,,86578.0,,,,63883.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",32575.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",102748.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",43496.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",25724.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1955824.0,Includes calls for other benefit programs,31.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.376,Includes calls for other benefit programs; Includes only calls transferred to a live agent +FL,Florida,202305,N,U,Y,323798.0,,0.0,,323798.0,,182729.0,,26544.0,,209273.0,,2979322.0,,4862823.0,,4776245.0,,86578.0,,,,63883.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",32575.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",102748.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",43496.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",25724.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1955824.0,Includes calls for other benefit programs,31.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.376,Includes calls for other benefit programs; Includes only calls transferred to a live agent +FL,Florida,202306,N,P,N,336147.0,,0.0,,336147.0,,190431.0,,34655.0,,225086.0,,2908619.0,,4717983.0,,4629613.0,,88370.0,,,,67709.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",31603.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",107359.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",50250.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",30049.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2230796.0,Includes calls for other benefit programs,32.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.364,Includes calls for other benefit programs; Includes only calls transferred to a live agent +FL,Florida,202306,N,U,Y,336147.0,,0.0,,336147.0,,190431.0,,34655.0,,225086.0,,2908619.0,,4717983.0,,4629613.0,,88370.0,,,,67709.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",31603.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",107359.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",50250.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",30049.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2230796.0,Includes calls for other benefit programs,32.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.364,Includes calls for other benefit programs; Includes only calls transferred to a live agent +FL,Florida,202307,N,P,N,340705.0,,0.0,,340705.0,,179272.0,,34270.0,,213542.0,,2872071.0,,4632565.0,,4538284.0,,94281.0,,,,65688.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",33040.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",86228.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",54919.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",34295.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2531455.0,Includes calls for other benefit programs,41.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.43,Includes calls for other benefit programs; Includes only calls transferred to a live agent +FL,Florida,202307,N,U,Y,340705.0,,0.0,,340705.0,,179272.0,,34270.0,,213542.0,,2872071.0,,4632565.0,,4538284.0,,94281.0,,,,65688.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",33040.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",86228.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",54919.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",34295.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2531455.0,Includes calls for other benefit programs,41.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.43,Includes calls for other benefit programs; Includes only calls transferred to a live agent +FL,Florida,202308,N,P,N,365064.0,,0.0,,365064.0,,227830.0,,44881.0,,272711.0,,2811644.0,,4506017.0,,4404211.0,,101806.0,,,,81210.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",39755.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",104017.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",81475.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",43530.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2063653.0,Includes calls for other benefit programs,29.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.313,Includes calls for other benefit programs; Includes only calls transferred to a live agent +FL,Florida,202308,N,U,Y,365064.0,,0.0,,365064.0,,227830.0,,44881.0,,272711.0,,2811644.0,,4506017.0,,4404211.0,,101806.0,,,,81210.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",39755.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",104017.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",81475.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",43530.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2063653.0,Includes calls for other benefit programs,29.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.313,Includes calls for other benefit programs; Includes only calls transferred to a live agent +FL,Florida,202309,N,P,N,317970.0,,0.0,,317970.0,,191625.0,,32957.0,,224582.0,,2728518.0,,4385300.0,,4273207.0,,112093.0,,,,69638.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",33856.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",114023.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",55734.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",29102.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2136321.0,Includes calls for other benefit programs,32.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.363,Includes calls for other benefit programs; Includes only calls transferred to a live agent +FL,Florida,202309,N,U,Y,317970.0,,0.0,,317970.0,,191625.0,,32957.0,,224582.0,,2728518.0,,4385300.0,,4273207.0,,112093.0,,,,69638.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",33856.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",114023.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",55734.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",29102.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2136321.0,Includes calls for other benefit programs,32.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.363,Includes calls for other benefit programs; Includes only calls transferred to a live agent +FL,Florida,202310,N,P,N,330447.0,,0.0,,330447.0,,193056.0,,32814.0,,225870.0,,2699096.0,,4346232.0,,4226807.0,,119425.0,,,,71537.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",40510.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",119378.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",58446.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",20956.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1935119.0,Includes calls for other benefit programs,33.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.372,Includes calls for other benefit programs; Includes only calls transferred to a live agent +FL,Florida,202310,N,U,Y,330447.0,,0.0,,330447.0,,193056.0,,32814.0,,225870.0,,2699096.0,,4346232.0,,4226807.0,,119425.0,,,,71537.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",40510.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",119378.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",58446.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",20956.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1935119.0,Includes calls for other benefit programs,33.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.372,Includes calls for other benefit programs; Includes only calls transferred to a live agent +FL,Florida,202311,N,P,N,320582.0,,0.0,,320582.0,,158772.0,,31781.0,,190553.0,,2584713.0,,4227277.0,,4100290.0,,126987.0,,,,59662.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",48925.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",98392.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",45968.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",11715.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1892899.0,Includes calls for other benefit programs,42.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.444,Includes calls for other benefit programs; Includes only calls transferred to a live agent +FL,Florida,202311,N,U,Y,320582.0,,0.0,,320582.0,,158772.0,,31781.0,,190553.0,,2584713.0,,4227277.0,,4100290.0,,126987.0,,,,59662.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",48925.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",98392.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",45968.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",11715.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1892899.0,Includes calls for other benefit programs,42.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.444,Includes calls for other benefit programs; Includes only calls transferred to a live agent +FL,Florida,202312,N,P,N,290868.0,,0.0,,290868.0,,294582.0,,30648.0,,325230.0,,2503520.0,,4155117.0,,4022988.0,,132129.0,,,,79291.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",133996.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",128597.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",47087.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",14992.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1788035.0,Includes calls for other benefit programs,31.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.389,Includes calls for other benefit programs; Includes only calls transferred to a live agent +FL,Florida,202312,N,U,Y,290868.0,,0.0,,290868.0,,294582.0,,30648.0,,325230.0,,2503520.0,,4155117.0,,4022988.0,,132129.0,,,,79291.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",133996.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",128597.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",47087.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",14992.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1788035.0,Includes calls for other benefit programs,31.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.389,Includes calls for other benefit programs; Includes only calls transferred to a live agent +FL,Florida,202401,N,P,N,390641.0,,0.0,,390641.0,,145822.0,,28675.0,,174497.0,,2451153.0,,4081001.0,,3946249.0,,134752.0,,,,53977.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",26811.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",68409.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",71960.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",34078.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2615575.0,Includes calls for other benefit programs,36.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.393,Includes calls for other benefit programs; Includes only calls transferred to a live agent +FL,Florida,202401,N,U,Y,390641.0,,0.0,,390641.0,,145822.0,,28675.0,,174497.0,,2451153.0,,4081001.0,,3946249.0,,134752.0,,,,53977.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",26811.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",68409.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",71960.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",34078.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2615575.0,Includes calls for other benefit programs,36.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.393,Includes calls for other benefit programs; Includes only calls transferred to a live agent +FL,Florida,202402,N,P,N,323984.0,,0.0,,323984.0,,184290.0,,33302.0,,217592.0,,2463084.0,,4100852.0,,3960191.0,,140661.0,,,,58057.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",32836.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",104435.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",65819.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",51136.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2576456.0,Includes calls for other benefit programs,32.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.411,Includes calls for other benefit programs; Includes only calls transferred to a live agent +FL,Florida,202402,N,U,Y,323984.0,,0.0,,323984.0,,184290.0,,33302.0,,217592.0,,2463084.0,,4100852.0,,3960191.0,,140661.0,,,,58057.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",32836.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",104435.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",65819.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",51136.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2576456.0,Includes calls for other benefit programs,32.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.411,Includes calls for other benefit programs; Includes only calls transferred to a live agent +FL,Florida,202403,N,P,N,319179.0,,0.0,,319179.0,,182255.0,,32399.0,,214654.0,,2459827.0,,4029584.0,,3882679.0,,146905.0,,,,61449.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",37522.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",103971.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",59424.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",33405.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2249520.0,Includes calls for other benefit programs,23.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.373,Includes calls for other benefit programs; Includes only calls transferred to a live agent +FL,Florida,202403,N,U,Y,319179.0,,0.0,,319179.0,,182255.0,,32399.0,,214654.0,,2459827.0,,4029584.0,,3882679.0,,146905.0,,,,61449.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",37522.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",103971.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",59424.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",33405.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2249520.0,Includes calls for other benefit programs,23.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.373,Includes calls for other benefit programs; Includes only calls transferred to a live agent +FL,Florida,202404,N,P,N,337267.0,,0.0,,337267.0,,171328.0,,30203.0,,201531.0,,2449555.0,,3901821.0,,3748509.0,,153312.0,,,,62008.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",40432.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",96317.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",54242.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",30189.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2088079.0,Includes calls for other benefit programs,19.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.294,Includes calls for other benefit programs; Includes only calls transferred to a live agent +FL,Florida,202404,N,U,Y,337267.0,,0.0,,337267.0,,171328.0,,30203.0,,201531.0,,2449555.0,,3901821.0,,3748509.0,,153312.0,,,,62008.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",40432.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",96317.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",54242.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",30189.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2088079.0,Includes calls for other benefit programs,19.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.294,Includes calls for other benefit programs; Includes only calls transferred to a live agent +FL,Florida,202405,N,P,N,323720.0,,0.0,,323720.0,,167666.0,,26265.0,,193931.0,,2445865.0,,3867608.0,,3708267.0,,159341.0,,,,58860.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",40220.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",98258.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",49506.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",23945.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2000854.0,Includes calls for other benefit programs,26.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.267,Includes calls for other benefit programs; Includes only calls transferred to a live agent +FL,Florida,202405,N,U,Y,323720.0,,0.0,,323720.0,,167666.0,,26265.0,,193931.0,,2445865.0,,3867608.0,,3708267.0,,159341.0,,,,58860.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",40220.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",98258.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",49506.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",23945.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2000854.0,Includes calls for other benefit programs,26.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.267,Includes calls for other benefit programs; Includes only calls transferred to a live agent +FL,Florida,202406,N,P,N,329668.0,,0.0,,329668.0,,164985.0,,23922.0,,188907.0,,2435985.0,,3796115.0,,3634386.0,,161729.0,,,,57112.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",38756.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",101974.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",42957.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",17908.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1953406.0,Includes calls for other benefit programs,20.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.306,Includes calls for other benefit programs; Includes only calls transferred to a live agent +FL,Florida,202406,N,U,Y,329668.0,,0.0,,329668.0,,164985.0,,23922.0,,188907.0,,2435985.0,,3796115.0,,3634386.0,,161729.0,,,,57112.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",38756.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",101974.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",42957.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",17908.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1953406.0,Includes calls for other benefit programs,20.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.306,Includes calls for other benefit programs; Includes only calls transferred to a live agent +FL,Florida,202407,N,P,N,354994.0,,0.0,,354994.0,,164782.0,,25157.0,,189939.0,,2439171.0,,3796877.0,,3635266.0,,161611.0,,1357706.0,,61311.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",37832.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",99888.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",53220.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",13728.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2385025.0,Includes calls for other benefit programs,27.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.376,Includes calls for other benefit programs; Includes only calls transferred to a live agent +FL,Florida,202407,N,U,Y,354994.0,,0.0,,354994.0,,164782.0,,25157.0,,189939.0,,2439171.0,,3796877.0,,3635266.0,,161611.0,,1357706.0,,61311.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",37832.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",99888.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",53220.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",13728.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2385025.0,Includes calls for other benefit programs,27.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.376,Includes calls for other benefit programs; Includes only calls transferred to a live agent +FL,Florida,202408,N,P,N,334541.0,,0.0,,334541.0,,195943.0,,27362.0,,223305.0,,2446118.0,,3808822.0,,3645397.0,,163425.0,,1362704.0,,67711.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",55347.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",121843.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",39716.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",13986.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2543762.0,Includes calls for other benefit programs,33.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.316,Includes calls for other benefit programs; Includes only calls transferred to a live agent +FL,Florida,202408,N,U,Y,334541.0,,0.0,,334541.0,,195943.0,,27362.0,,223305.0,,2446118.0,,3808822.0,,3645397.0,,163425.0,,1362704.0,,67711.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",55347.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",121843.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",39716.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",13986.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2543762.0,Includes calls for other benefit programs,33.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.316,Includes calls for other benefit programs; Includes only calls transferred to a live agent +FL,Florida,202409,N,P,N,324619.0,,0.0,,324619.0,,169978.0,,23815.0,,193793.0,,2439726.0,,3797328.0,,3633341.0,,163987.0,,1357602.0,,60316.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",50912.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",107784.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",31583.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",9014.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2182616.0,Includes calls for other benefit programs,29.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.288,Includes calls for other benefit programs; Includes only calls transferred to a live agent +FL,Florida,202409,N,U,Y,324619.0,,0.0,,324619.0,,169978.0,,23815.0,,193793.0,,2439726.0,,3797328.0,,3633341.0,,163987.0,,1357602.0,,60316.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",50912.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",107784.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",31583.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",9014.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2182616.0,Includes calls for other benefit programs,29.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.288,Includes calls for other benefit programs; Includes only calls transferred to a live agent +FL,Florida,202410,N,P,N,328248.0,,0.0,,328248.0,,166125.0,,21795.0,,187920.0,,2424906.0,,3765231.0,,3601937.0,,163294.0,,1340325.0,,58157.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",57550.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",105632.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",25237.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",8840.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2421231.0,Includes calls for other benefit programs,18.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.235,Includes calls for other benefit programs; Includes only calls transferred to a live agent +FL,Florida,202410,N,U,Y,328248.0,,0.0,,328248.0,,166125.0,,21795.0,,187920.0,,2424906.0,,3765231.0,,3601937.0,,163294.0,,1340325.0,,58157.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",57550.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",105632.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",25237.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",8840.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2421231.0,Includes calls for other benefit programs,18.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.235,Includes calls for other benefit programs; Includes only calls transferred to a live agent +FL,Florida,202411,N,P,N,260136.0,,0.0,,260136.0,,145370.0,,21920.0,,167290.0,,2443958.0,,3788467.0,,3624248.0,,164219.0,,1344509.0,,56494.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",59019.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",84964.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",16764.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",8770.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1948210.0,Includes calls for other benefit programs,21.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.252,Includes calls for other benefit programs; Includes only calls transferred to a live agent +FL,Florida,202411,N,U,Y,260136.0,,0.0,,260136.0,,145370.0,,21920.0,,167290.0,,2443958.0,,3788467.0,,3624248.0,,164219.0,,1344509.0,,56494.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",59019.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",84964.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",16764.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",8770.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1948210.0,Includes calls for other benefit programs,21.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.252,Includes calls for other benefit programs; Includes only calls transferred to a live agent +FL,Florida,202412,N,P,N,380300.0,,0.0,,380300.0,,145348.0,,23706.0,,169054.0,,2423453.0,,3740669.0,,3568648.0,,172021.0,,1317216.0,,54817.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",41954.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",98349.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",32339.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",8309.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1965677.0,Includes calls for other benefit programs,16.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.223,Includes calls for other benefit programs; Includes only calls transferred to a live agent +FL,Florida,202412,N,U,Y,380300.0,,0.0,,380300.0,,145348.0,,23706.0,,169054.0,,2423453.0,,3740669.0,,3568648.0,,172021.0,,1317216.0,,54817.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",41954.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",98349.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",32339.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",8309.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1965677.0,Includes calls for other benefit programs,16.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.223,Includes calls for other benefit programs; Includes only calls transferred to a live agent +FL,Florida,202501,N,P,N,330318.0,,0.0,,330318.0,,176196.0,,20766.0,,196962.0,,2425098.0,,3739787.0,,3572785.0,,167002.0,,1314689.0,,58526.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",39184.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",124567.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",44914.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",11526.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2274426.0,Includes calls for other benefit programs,13.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.222,Includes calls for other benefit programs; Includes only calls transferred to a live agent +FL,Florida,202501,N,U,Y,330318.0,,0.0,,330318.0,,176196.0,,20766.0,,196962.0,,2425098.0,,3739787.0,,3572785.0,,167002.0,,1314689.0,,58526.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",39184.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",124567.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",44914.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",11526.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2274426.0,Includes calls for other benefit programs,13.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.222,Includes calls for other benefit programs; Includes only calls transferred to a live agent +FL,Florida,202502,N,P,N,255832.0,,0.0,,255832.0,,178113.0,,20463.0,,198576.0,,2420757.0,,3737528.0,,3570363.0,,167165.0,,1316771.0,,65411.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",46781.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",111857.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",23142.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",9655.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1694272.0,Includes calls for other benefit programs,18.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.25,Includes calls for other benefit programs; Includes only calls transferred to a live agent +FL,Florida,202502,N,U,Y,255832.0,,0.0,,255832.0,,178113.0,,20463.0,,198576.0,,2420757.0,,3737528.0,,3570363.0,,167165.0,,1316771.0,,65411.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",46781.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",111857.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",23142.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",9655.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1694272.0,Includes calls for other benefit programs,18.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.25,Includes calls for other benefit programs; Includes only calls transferred to a live agent +FL,Florida,202503,N,P,N,268629.0,,0.0,,268629.0,,163477.0,,21344.0,,184821.0,,2417786.0,,3735641.0,,3569105.0,,166536.0,,1317855.0,,73179.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",66847.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",87758.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",11947.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",15945.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1468788.0,Includes calls for other benefit programs,20.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.202,Includes calls for other benefit programs; Includes only calls transferred to a live agent +FL,Florida,202503,N,U,Y,268629.0,,0.0,,268629.0,,163477.0,,21344.0,,184821.0,,2417786.0,,3735641.0,,3569105.0,,166536.0,,1317855.0,,73179.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",66847.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",87758.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",11947.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",15945.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1468788.0,Includes calls for other benefit programs,20.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.202,Includes calls for other benefit programs; Includes only calls transferred to a live agent +FL,Florida,202504,N,P,N,265884.0,,0.0,,265884.0,,153809.0,,17965.0,,171774.0,,2408879.0,,3715495.0,,3547116.0,,168379.0,,1306616.0,,70421.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",66639.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",82303.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",10078.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",16101.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1300233.0,Includes calls for other benefit programs,12.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.145,Includes calls for other benefit programs; Includes only calls transferred to a live agent +FL,Florida,202504,N,U,Y,265884.0,,0.0,,265884.0,,153809.0,,17965.0,,171774.0,,2408879.0,,3715495.0,,3547116.0,,168379.0,,1306616.0,,70421.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",66639.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",82303.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",10078.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",16101.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1300233.0,Includes calls for other benefit programs,12.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.145,Includes calls for other benefit programs; Includes only calls transferred to a live agent +FL,Florida,202505,N,P,N,254915.0,,0.0,,254915.0,,140098.0,,17410.0,,157508.0,,2397034.0,,3699610.0,,3532443.0,,167167.0,,1302576.0,,64281.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",65635.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",74316.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6888.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",8707.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1191841.0,Includes calls for other benefit programs,12.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.141,Includes calls for other benefit programs; Includes only calls transferred to a live agent +FL,Florida,202505,N,U,Y,254915.0,,0.0,,254915.0,,140098.0,,17410.0,,157508.0,,2397034.0,,3699610.0,,3532443.0,,167167.0,,1302576.0,,64281.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",65635.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",74316.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6888.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",8707.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1191841.0,Includes calls for other benefit programs,12.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.141,Includes calls for other benefit programs; Includes only calls transferred to a live agent +FL,Florida,202506,N,P,N,251711.0,,0.0,,251711.0,,131211.0,,17119.0,,148330.0,,2391614.0,,3695066.0,,3529355.0,,165711.0,,1303452.0,,57073.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",65656.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",70113.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",7394.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",7129.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1254331.0,Includes calls for other benefit programs,11.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.124,Includes calls for other benefit programs; Includes only calls transferred to a live agent +FL,Florida,202506,N,U,Y,251711.0,,0.0,,251711.0,,131211.0,,17119.0,,148330.0,,2391614.0,,3695066.0,,3529355.0,,165711.0,,1303452.0,,57073.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",65656.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",70113.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",7394.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",7129.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1254331.0,Includes calls for other benefit programs,11.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.124,Includes calls for other benefit programs; Includes only calls transferred to a live agent +FL,Florida,202507,N,P,N,275527.0,,0.0,,275527.0,,105936.0,,15655.0,,121591.0,,2377877.0,,3671259.0,,3506368.0,,164891.0,,1293382.0,,51814.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",28788.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",78896.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",19106.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",7149.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1779660.0,Includes calls for other benefit programs,18.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.178,Includes calls for other benefit programs; Includes only calls transferred to a live agent +FL,Florida,202507,N,U,Y,275527.0,,0.0,,275527.0,,105936.0,,15655.0,,121591.0,,2377877.0,,3671259.0,,3506368.0,,164891.0,,1293382.0,,51814.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",28788.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",78896.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",19106.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",7149.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1779660.0,Includes calls for other benefit programs,18.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.178,Includes calls for other benefit programs; Includes only calls transferred to a live agent +FL,Florida,202508,N,P,N,259304.0,,0.0,,259304.0,,134870.0,,19381.0,,154251.0,,2377844.0,,3674391.0,,3509167.0,,165224.0,,1296547.0,,57853.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",27894.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",96004.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",28723.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",8737.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2016107.0,Includes calls for other benefit programs,27.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.236,Includes calls for other benefit programs; Includes only calls transferred to a live agent +FL,Florida,202508,N,U,Y,259304.0,,0.0,,259304.0,,134870.0,,19381.0,,154251.0,,2377844.0,,3674391.0,,3509167.0,,165224.0,,1296547.0,,57853.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",27894.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",96004.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",28723.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",8737.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2016107.0,Includes calls for other benefit programs,27.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.236,Includes calls for other benefit programs; Includes only calls transferred to a live agent +FL,Florida,202509,N,P,N,272285.0,,0.0,,272285.0,,150446.0,,21321.0,,171767.0,,2342269.0,,3639607.0,,3476089.0,,163518.0,,1297338.0,,66087.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",29965.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",94052.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",46759.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",13631.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2296413.0,Includes calls for other benefit programs,31.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.248,Includes calls for other benefit programs; Includes only calls transferred to a live agent +FL,Florida,202509,N,U,Y,272285.0,,0.0,,272285.0,,150446.0,,21321.0,,171767.0,,2342269.0,,3639607.0,,3476089.0,,163518.0,,1297338.0,,66087.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",29965.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",94052.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",46759.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",13631.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2296413.0,Includes calls for other benefit programs,31.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.248,Includes calls for other benefit programs; Includes only calls transferred to a live agent +FL,Florida,202510,N,P,N,249840.0,,0.0,,249840.0,,160974.0,,23067.0,,184041.0,,2355956.0,,3648091.0,,3485075.0,,163016.0,,1292135.0,,63550.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",51386.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",101861.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",29123.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",11626.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1843708.0,Includes calls for other benefit programs,22.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.188,Includes calls for other benefit programs; Includes only calls transferred to a live agent +GA,Georgia,201309,N,U,Y,,,,,,,,,,,,,,,1535090.0,,,,,,,,,,,,,,,,,,,,,,, +GA,Georgia,201706,N,P,N,44689.0,,0.0,,44689.0,,30972.0,,875.0,,31847.0,,1218107.0,,1735648.0,,1557391.0,,178257.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,201706,N,U,Y,44689.0,,0.0,,44689.0,,30972.0,,875.0,,31847.0,,1239691.0,,1765789.0,,1584883.0,,180906.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,201707,N,P,N,55987.0,,0.0,,55987.0,,29474.0,,836.0,,30310.0,,1203311.0,,1718560.0,,1548721.0,,169839.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,201707,N,U,Y,55987.0,,0.0,,55987.0,,29474.0,,836.0,,30310.0,,1229982.0,,1754492.0,,1577997.0,,176495.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,201708,N,P,N,55319.0,,0.0,,55319.0,,26420.0,,1251.0,,27671.0,,1209345.0,,1727015.0,,1549570.0,,177445.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,201708,N,U,Y,55319.0,,0.0,,55319.0,,26420.0,,1251.0,,27671.0,,1238585.0,,1766183.0,,1585673.0,,180510.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,201709,N,P,N,47096.0,,0.0,,47096.0,,25973.0,,1085.0,,27058.0,,1208204.0,,1726688.0,,1549339.0,,177349.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,201709,N,U,Y,47096.0,,0.0,,47096.0,,25973.0,,1085.0,,27058.0,,1238623.0,,1769089.0,,1587970.0,,181119.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,201710,N,P,N,54894.0,,0.0,,54894.0,,36210.0,,1197.0,,37407.0,,1239158.0,,1768663.0,,1585484.0,,183179.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,201710,N,U,Y,54894.0,,0.0,,54894.0,,36210.0,,1197.0,,37407.0,,1265189.0,,1805143.0,,1618380.0,,186763.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,201711,N,P,N,49329.0,,0.0,,49329.0,,32942.0,,1184.0,,34126.0,,1238182.0,,1770333.0,,1587125.0,,183208.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,201711,N,U,Y,49329.0,,0.0,,49329.0,,32942.0,,1184.0,,34126.0,,1263920.0,,1806068.0,,1618925.0,,187143.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,201712,N,P,N,43295.0,,0.0,,43295.0,,31112.0,,1235.0,,32347.0,,1235926.0,,1769234.0,,1582489.0,,186745.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,201712,N,U,Y,43295.0,,0.0,,43295.0,,31112.0,,1235.0,,32347.0,,1266151.0,,1812561.0,,1620540.0,,192021.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,201801,N,P,N,54480.0,,0.0,,54480.0,,36144.0,,1352.0,,37496.0,,1235122.0,,1771089.0,,1580135.0,,190954.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,201801,N,U,Y,54480.0,,0.0,,54480.0,,36144.0,,1352.0,,37496.0,,1268025.0,,1818601.0,,1622947.0,,195654.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,201802,N,P,N,48870.0,,0.0,,48870.0,,39158.0,,1466.0,,40624.0,,1246083.0,,1787104.0,,1589715.0,,197389.0,,,,1426.0,,3485.0,,10810.0,,6761.0,,17487.0,,,,,,, +GA,Georgia,201802,N,U,Y,48870.0,,0.0,,48870.0,,39158.0,,1466.0,,40624.0,,1282924.0,,1840410.0,,1637681.0,,202729.0,,,,1426.0,,3485.0,,10810.0,,6761.0,,17487.0,,,,,,, +GA,Georgia,201803,N,P,N,49146.0,,0.0,,49146.0,,36828.0,,1220.0,,38048.0,,1263280.0,,1812195.0,,1607952.0,,204243.0,,,,1726.0,,6134.0,,15172.0,,10314.0,,23171.0,,,,,,, +GA,Georgia,201803,N,U,Y,49146.0,,0.0,,49146.0,,36828.0,,1220.0,,38048.0,,1290229.0,,1876354.0,,1668843.0,,207511.0,,,,1726.0,,6134.0,,15172.0,,10314.0,,23171.0,,,,,,, +GA,Georgia,201804,N,P,N,46419.0,,0.0,,46419.0,,38182.0,,1188.0,,39370.0,,1253628.0,,1824433.0,,1625095.0,,199338.0,,,,1792.0,,6940.0,,15745.0,,6185.0,,18100.0,,,,,,, +GA,Georgia,201804,N,U,Y,46419.0,,0.0,,46419.0,,38182.0,,1188.0,,39370.0,,1278954.0,,1862452.0,,1659045.0,,203407.0,,,,1792.0,,6940.0,,15745.0,,6185.0,,18100.0,,,,,,, +GA,Georgia,201805,N,P,N,47284.0,,0.0,,47284.0,,33297.0,,1179.0,,34476.0,,1257272.0,,1829917.0,,1625903.0,,204014.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,201805,N,U,Y,47284.0,,0.0,,47284.0,,33297.0,,1179.0,,34476.0,,1278542.0,,1862562.0,,1655637.0,,206925.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,201806,N,P,N,46328.0,,0.0,,46328.0,,28352.0,,926.0,,29278.0,,1256138.0,,1830121.0,,1622907.0,,207214.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,201806,N,U,Y,46328.0,,0.0,,46328.0,,28352.0,,926.0,,29278.0,,1278027.0,,1863305.0,,1653328.0,,209977.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,201807,N,P,N,47138.0,,0.0,,47138.0,,29131.0,,1078.0,,30209.0,,1256936.0,,1834246.0,,1626213.0,,208033.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,201807,N,U,Y,47138.0,,0.0,,47138.0,,29131.0,,1078.0,,30209.0,,1284074.0,,1874411.0,,1663520.0,,210891.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,201808,N,P,N,53171.0,,0.0,,53171.0,,36735.0,,1199.0,,37934.0,,1211235.0,,1775549.0,,1568982.0,,206567.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,201808,N,U,Y,53171.0,,0.0,,53171.0,,36735.0,,1199.0,,37934.0,,1239005.0,,1815109.0,,1605541.0,,209568.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,201809,N,P,N,43340.0,,0.0,,43340.0,,29648.0,,1094.0,,30742.0,,1203730.0,,1764356.0,,1557216.0,,207140.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,201809,N,U,Y,43340.0,,0.0,,43340.0,,29648.0,,1094.0,,30742.0,,1234311.0,,1808021.0,,1597709.0,,210312.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,201810,N,P,N,47268.0,,0.0,,47268.0,,31723.0,,1149.0,,32872.0,,1210553.0,,1774913.0,,1568229.0,,206684.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,201810,N,U,Y,47268.0,,0.0,,47268.0,,31723.0,,1149.0,,32872.0,,1237338.0,,1813129.0,,1603555.0,,209574.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,201811,N,P,N,42115.0,,0.0,,42115.0,,25424.0,,972.0,,26396.0,,1208511.0,,1771598.0,,1566540.0,,205058.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,201811,N,U,Y,42115.0,,0.0,,42115.0,,25424.0,,972.0,,26396.0,,1238767.0,,1813852.0,,1603830.0,,210022.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,201812,N,P,N,37762.0,,0.0,,37762.0,,25284.0,,1116.0,,26400.0,,1212860.0,,1775639.0,,1568350.0,,207289.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,201812,N,U,Y,37762.0,,0.0,,37762.0,,25284.0,,1116.0,,26400.0,,1245555.0,,1821852.0,,1608972.0,,212880.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,201901,N,P,N,45292.0,,0.0,,45292.0,,30826.0,,1186.0,,32012.0,,1230227.0,,1798195.0,,1588271.0,,209924.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,201901,N,U,Y,45292.0,,0.0,,45292.0,,30826.0,,1186.0,,32012.0,,1258486.0,,1838259.0,,1623095.0,,215164.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,201902,N,P,N,39862.0,,0.0,,39862.0,,27493.0,,1046.0,,28539.0,,1228711.0,,1796200.0,,1584900.0,,211300.0,,,,1166.0,,4239.0,,11837.0,,7174.0,,13824.0,,,,,,, +GA,Georgia,201902,N,U,Y,39862.0,,0.0,,39862.0,,27493.0,,1046.0,,28539.0,,1255853.0,,1835052.0,,1618389.0,,216663.0,,,,1166.0,,4239.0,,11837.0,,7174.0,,13824.0,,,,,,, +GA,Georgia,201903,N,P,N,42435.0,,0.0,,42435.0,,27076.0,,919.0,,27995.0,,1226001.0,,1791982.0,,1582741.0,,209241.0,,,,1460.0,,4765.0,,12140.0,,6974.0,,9370.0,,,,,,, +GA,Georgia,201903,N,U,Y,42435.0,,0.0,,42435.0,,27076.0,,919.0,,27995.0,,1254284.0,,1832021.0,,1617553.0,,214468.0,,,,1460.0,,4765.0,,12140.0,,6974.0,,9370.0,,,,,,, +GA,Georgia,201904,N,P,N,43982.0,,0.0,,43982.0,,25886.0,,934.0,,26820.0,,1232779.0,,1797953.0,,1590319.0,,207634.0,,,,1302.0,,4550.0,,12350.0,,7381.0,,6797.0,,,,,,, +GA,Georgia,201904,N,U,Y,43982.0,,0.0,,43982.0,,25886.0,,934.0,,26820.0,,1260091.0,,1837180.0,,1624790.0,,212390.0,,,,1302.0,,4550.0,,12350.0,,7381.0,,6797.0,,,,,,, +GA,Georgia,201905,N,P,N,44289.0,,0.0,,44289.0,,25190.0,,846.0,,26036.0,,1235738.0,,1801666.0,,1592217.0,,209449.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,201905,N,U,Y,44289.0,,0.0,,44289.0,,25190.0,,846.0,,26036.0,,1261054.0,,1837888.0,,1624504.0,,213384.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,201906,N,P,N,41789.0,,0.0,,41789.0,,22981.0,,729.0,,23710.0,,1239636.0,,1805884.0,,1600621.0,,205263.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,201906,N,U,Y,41789.0,,0.0,,41789.0,,22981.0,,729.0,,23710.0,,1263951.0,,1841182.0,,1631816.0,,209366.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,201907,N,P,N,47828.0,,0.0,,47828.0,,24102.0,,731.0,,24833.0,,1241923.0,,1808764.0,,1602931.0,,205833.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,201907,N,U,Y,47828.0,,0.0,,47828.0,,24102.0,,731.0,,24833.0,,1270146.0,,1848553.0,,1638216.0,,210337.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,201908,N,P,N,48255.0,,0.0,,48255.0,,27882.0,,840.0,,28722.0,,1245773.0,,1812703.0,,1606304.0,,206399.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,201908,N,U,Y,48255.0,,0.0,,48255.0,,27882.0,,840.0,,28722.0,,1273444.0,,1851137.0,,1640383.0,,210754.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,201909,N,P,N,42424.0,,0.0,,42424.0,,24959.0,,749.0,,25708.0,,1244963.0,,1811121.0,,1606315.0,,204806.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,201909,N,U,Y,42424.0,,0.0,,42424.0,,24959.0,,749.0,,25708.0,,1274437.0,,1851830.0,,1640471.0,,211359.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,201910,N,P,N,46389.0,,0.0,,46389.0,,24028.0,,708.0,,24736.0,,1249634.0,,1815750.0,,1607925.0,,207825.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,201910,N,U,Y,46389.0,,0.0,,46389.0,,24028.0,,708.0,,24736.0,,1273274.0,,1847785.0,,1635870.0,,211915.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,201911,N,P,N,37939.0,,0.0,,37939.0,,19673.0,,661.0,,20334.0,,1240764.0,,1801767.0,,1596947.0,,204820.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,201911,N,U,Y,37939.0,,0.0,,37939.0,,19673.0,,661.0,,20334.0,,1266518.0,,1835963.0,,1625703.0,,210260.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,201912,N,P,N,39573.0,,0.0,,39573.0,,21571.0,,866.0,,22437.0,,1223922.0,,1777011.0,,1575811.0,,201200.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,201912,N,U,Y,39573.0,,0.0,,39573.0,,21571.0,,866.0,,22437.0,,1253117.0,,1816358.0,,1609186.0,,207172.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,202001,N,P,N,56371.0,,0.0,,56371.0,,23766.0,,1112.0,,24878.0,,1237166.0,,1792562.0,,1586996.0,,205566.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,202001,N,U,Y,56371.0,,0.0,,56371.0,,23766.0,,1112.0,,24878.0,,1264503.0,,1830095.0,,1618912.0,,211183.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,202002,N,P,N,41522.0,,0.0,,41522.0,,22779.0,,1081.0,,23860.0,,1238771.0,,1792895.0,,1585197.0,,207698.0,,,,1221.0,,5282.0,,10433.0,,5528.0,,18281.0,,,,,,, +GA,Georgia,202002,N,U,Y,41522.0,,0.0,,41522.0,,22779.0,,1081.0,,23860.0,,1268470.0,,1833759.0,,1618807.0,,214952.0,,,,1221.0,,5282.0,,10433.0,,5528.0,,18281.0,,,,,,, +GA,Georgia,202003,N,P,N,51442.0,,0.0,,51442.0,,27234.0,,940.0,,28174.0,,1238202.0,,1790732.0,,1581385.0,,209347.0,,,,1135.0,,7307.0,,11101.0,,5901.0,,13411.0,,,,,,, +GA,Georgia,202003,N,U,Y,51442.0,,0.0,,51442.0,,27234.0,,940.0,,28174.0,,1285501.0,,1853679.0,,1637768.0,,215911.0,,,,1135.0,,7307.0,,11101.0,,5901.0,,13411.0,,,,,,, +GA,Georgia,202004,N,P,N,51949.0,,0.0,,51949.0,,47797.0,,1740.0,,49537.0,,1293844.0,,1864871.0,,1655065.0,,209806.0,,,,1924.0,,21729.0,,19231.0,,5868.0,,18205.0,,,,,,, +GA,Georgia,202004,N,U,Y,51949.0,,0.0,,51949.0,,47797.0,,1740.0,,49537.0,,1315786.0,,1895954.0,,1683443.0,,212511.0,,,,1924.0,,21729.0,,19231.0,,5868.0,,18205.0,,,,,,, +GA,Georgia,202005,N,P,N,39659.0,,0.0,,39659.0,,20941.0,,628.0,,21569.0,,1314495.0,,1889278.0,,1681625.0,,207653.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,202005,N,U,Y,39659.0,,0.0,,39659.0,,20941.0,,628.0,,21569.0,,1342615.0,,1929582.0,,1709833.0,,219749.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,202006,N,P,N,37742.0,,0.0,,37742.0,,17556.0,,994.0,,18550.0,,1343840.0,,1928703.0,,1708464.0,,220239.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,202006,N,U,Y,37742.0,,0.0,,37742.0,,17556.0,,994.0,,18550.0,,1355429.0,,1945955.0,,1723592.0,,222363.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,202007,N,P,N,39227.0,,0.0,,39227.0,,16817.0,,2086.0,,18903.0,,1360468.0,,1951725.0,,1729931.0,,221794.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,202007,N,U,Y,39227.0,,0.0,,39227.0,,16817.0,,2086.0,,18903.0,,1373561.0,,1970507.0,,1745838.0,,224669.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,202008,N,P,N,35428.0,,0.0,,35428.0,,15686.0,,2152.0,,17838.0,,1379567.0,,1976277.0,,1750697.0,,225580.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,202008,N,U,Y,35428.0,,0.0,,35428.0,,15686.0,,2152.0,,17838.0,,1394414.0,,1998686.0,,1770366.0,,228320.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,202009,N,P,N,35680.0,,0.0,,35680.0,,14408.0,,1917.0,,16325.0,,1399493.0,,2004162.0,,1775878.0,,228284.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,202009,N,U,Y,35680.0,,0.0,,35680.0,,14408.0,,1917.0,,16325.0,,1411530.0,,2022154.0,,1791397.0,,230757.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,202010,N,P,N,35613.0,,0.0,,35613.0,,14165.0,,1961.0,,16126.0,,1414801.0,,2025805.0,,1794516.0,,231289.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,202010,N,U,Y,35613.0,,0.0,,35613.0,,14165.0,,1961.0,,16126.0,,1425892.0,,2042331.0,,1808278.0,,234053.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,202011,N,P,N,34440.0,,0.0,,34440.0,,12767.0,,2812.0,,15579.0,,1429441.0,,2045920.0,,1809982.0,,235938.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,202011,N,U,Y,34440.0,,0.0,,34440.0,,12767.0,,2812.0,,15579.0,,1444580.0,,2067533.0,,1826659.0,,240874.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,202012,N,P,N,35705.0,,0.0,,35705.0,,15576.0,,3917.0,,19493.0,,1447747.0,,2070918.0,,1827794.0,,243124.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,202012,N,U,Y,35705.0,,0.0,,35705.0,,15576.0,,3917.0,,19493.0,,1463575.0,,2093853.0,,1845581.0,,248272.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,202101,N,P,N,34699.0,,0.0,,34699.0,,14199.0,,3672.0,,17871.0,,1462382.0,,2092114.0,,1843372.0,,248742.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,202101,N,U,Y,34699.0,,0.0,,34699.0,,14199.0,,3672.0,,17871.0,,1473812.0,,2109497.0,,1857748.0,,251749.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,202102,N,P,N,31125.0,,0.0,,31125.0,,12891.0,,1904.0,,14795.0,,1474875.0,,2109967.0,,1858004.0,,251963.0,,,,843.0,,11910.0,,8302.0,,1415.0,,1136.0,,,,,,, +GA,Georgia,202102,N,U,Y,31125.0,,0.0,,31125.0,,12891.0,,1904.0,,14795.0,,1488443.0,,2129693.0,,1872068.0,,257625.0,,,,843.0,,11910.0,,8302.0,,1415.0,,1136.0,,,,,,, +GA,Georgia,202103,N,P,N,33154.0,,0.0,,33154.0,,11548.0,,1878.0,,13426.0,,1488404.0,,2130268.0,,1872861.0,,257407.0,,,,1052.0,,12238.0,,7791.0,,1014.0,,693.0,,,,,,, +GA,Georgia,202103,N,U,Y,33154.0,,0.0,,33154.0,,11548.0,,1878.0,,13426.0,,1498841.0,,2146602.0,,1887223.0,,259379.0,,,,1052.0,,12238.0,,7791.0,,1014.0,,693.0,,,,,,, +GA,Georgia,202104,N,P,N,29782.0,,0.0,,29782.0,,10714.0,,1619.0,,12333.0,,1495997.0,,2143845.0,,1881881.0,,261964.0,,,,550.0,,10150.0,,7470.0,,1406.0,,608.0,,,,,,, +GA,Georgia,202104,N,U,Y,29782.0,,0.0,,29782.0,,10714.0,,1619.0,,12333.0,,1507013.0,,2160406.0,,1895803.0,,264603.0,,,,550.0,,10150.0,,7470.0,,1406.0,,608.0,,,,,,, +GA,Georgia,202105,N,P,N,27346.0,,0.0,,27346.0,,10757.0,,1761.0,,12518.0,,1506836.0,,2159944.0,,1895196.0,,264748.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,202105,N,U,Y,27346.0,,0.0,,27346.0,,10757.0,,1761.0,,12518.0,,1517507.0,,2177156.0,,1909998.0,,267158.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,202106,N,P,N,32144.0,,0.0,,32144.0,,11038.0,,1538.0,,12576.0,,1517828.0,,2177626.0,,1910049.0,,267577.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,202106,N,U,Y,32144.0,,0.0,,32144.0,,11038.0,,1538.0,,12576.0,,1528843.0,,2194346.0,,1924414.0,,269932.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,202107,N,P,N,32166.0,,0.0,,32166.0,,11698.0,,1770.0,,13468.0,,1529379.0,,2195640.0,,1925259.0,,270381.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,202107,N,U,Y,32166.0,,0.0,,32166.0,,11698.0,,1770.0,,13468.0,,1541339.0,,2214237.0,,1941394.0,,272843.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,202108,N,P,N,34832.0,,0.0,,34832.0,,12814.0,,1870.0,,14684.0,,1542603.0,,2215778.0,,1942343.0,,273435.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,202108,N,U,Y,34832.0,,0.0,,34832.0,,12814.0,,1870.0,,14684.0,,1555990.0,,2235830.0,,1959398.0,,276432.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,202109,N,P,N,31974.0,,0.0,,31974.0,,12765.0,,1753.0,,14518.0,,1555151.0,,2234271.0,,1957894.0,,276377.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,202109,N,U,Y,31974.0,,0.0,,31974.0,,12765.0,,1753.0,,14518.0,,1567491.0,,2252976.0,,1974201.0,,278775.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,202110,N,P,N,30864.0,,0.0,,30864.0,,11258.0,,1310.0,,12568.0,,1566326.0,,2251053.0,,1971944.0,,279109.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,202110,N,U,Y,30864.0,,0.0,,30864.0,,11258.0,,1310.0,,12568.0,,1578021.0,,2268840.0,,1987291.0,,281549.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,202111,N,P,N,32137.0,,0.0,,32137.0,,10771.0,,1569.0,,12340.0,,1576959.0,,2267062.0,,1984825.0,,282237.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,202111,N,U,Y,32137.0,,0.0,,32137.0,,10771.0,,1569.0,,12340.0,,1589937.0,,2286427.0,,2000597.0,,285830.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,202112,N,P,N,31341.0,,0.0,,31341.0,,13392.0,,2861.0,,16253.0,,1590217.0,,2286416.0,,1998735.0,,287681.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,202112,N,U,Y,31341.0,,0.0,,31341.0,,13392.0,,2861.0,,16253.0,,1603321.0,,2305389.0,,2013842.0,,291547.0,,,,,,,,,,,,,,,,,,, +GA,Georgia,202201,N,P,N,33153.0,,0.0,,33153.0,,13173.0,,3126.0,,16299.0,,1601025.0,,2302786.0,,2010184.0,,292602.0,,,,622.0,,9829.0,,12758.0,,7575.0,,1385.0,,,,,,, +GA,Georgia,202201,N,U,Y,33153.0,,0.0,,33153.0,,13173.0,,3126.0,,16299.0,,1612656.0,,2320281.0,,2024751.0,,295530.0,,,,622.0,,9829.0,,12758.0,,7575.0,,1385.0,,,,,,, +GA,Georgia,202202,N,P,N,28682.0,,0.0,,28682.0,,10725.0,,1754.0,,12479.0,,1612449.0,,2318906.0,,2022832.0,,296074.0,,,,657.0,,9833.0,,8495.0,,2139.0,,970.0,,,,,,, +GA,Georgia,202202,N,U,Y,28682.0,,0.0,,28682.0,,10725.0,,1754.0,,12479.0,,1622405.0,,2335335.0,,2036806.0,,298529.0,,,,657.0,,9833.0,,8495.0,,2139.0,,970.0,,,,,,, +GA,Georgia,202203,N,P,N,32099.0,,0.0,,32099.0,,10749.0,,1299.0,,12048.0,,1621481.0,,2333929.0,,2036716.0,,297213.0,,,,740.0,,11762.0,,5497.0,,924.0,,526.0,,,,,,, +GA,Georgia,202203,N,U,Y,32099.0,,0.0,,32099.0,,10749.0,,1299.0,,12048.0,,1631542.0,,2349817.0,,2051119.0,,298698.0,,,,740.0,,11762.0,,5497.0,,924.0,,526.0,,,,,,, +GA,Georgia,202204,N,P,N,28374.0,,0.0,,28374.0,,9641.0,,1032.0,,10673.0,,1622673.0,,2340009.0,,2054483.0,,285526.0,,,,476.0,,10122.0,,5573.0,,760.0,,300.0,,,,,,, +GA,Georgia,202204,N,U,Y,28374.0,,0.0,,28374.0,,9641.0,,1032.0,,10673.0,,1634790.0,,2358345.0,,2067900.0,,290445.0,,,,476.0,,10122.0,,5573.0,,760.0,,300.0,,,,,,, +GA,Georgia,202205,N,P,N,30634.0,,0.0,,30634.0,,10190.0,,1104.0,,11294.0,,1634508.0,,2357625.0,,2066841.0,,290784.0,,,,571.0,,10379.0,,5829.0,,853.0,,270.0,,,,,,, +GA,Georgia,202205,N,U,Y,30634.0,,0.0,,30634.0,,10190.0,,1104.0,,11294.0,,1644425.0,,2373707.0,,2080937.0,,292770.0,,,,571.0,,10379.0,,5829.0,,853.0,,270.0,,,,,,, +GA,Georgia,202206,N,P,N,31791.0,,0.0,,31791.0,,10740.0,,1164.0,,11904.0,,1643689.0,,2372690.0,,2080170.0,,292520.0,,,,691.0,,10753.0,,6520.0,,821.0,,399.0,,,,,,, +GA,Georgia,202206,N,U,Y,31791.0,,0.0,,31791.0,,10740.0,,1164.0,,11904.0,,1653901.0,,2388803.0,,2094195.0,,294608.0,,,,691.0,,10753.0,,6520.0,,821.0,,399.0,,,,,,, +GA,Georgia,202207,N,P,N,30848.0,,0.0,,30848.0,,10676.0,,1309.0,,11985.0,,1653490.0,,2387169.0,,2091867.0,,295302.0,,,,622.0,,10482.0,,7265.0,,999.0,,292.0,,,,,,, +GA,Georgia,202207,N,U,Y,30848.0,,0.0,,30848.0,,10676.0,,1309.0,,11985.0,,1665355.0,,2405477.0,,2107383.0,,298094.0,,,,622.0,,10482.0,,7265.0,,999.0,,292.0,,,,,,, +GA,Georgia,202208,N,P,N,37294.0,,0.0,,37294.0,,12945.0,,1547.0,,14492.0,,1666245.0,,2405854.0,,2107534.0,,298320.0,,,,685.0,,12867.0,,8161.0,,1170.0,,505.0,,,,,,, +GA,Georgia,202208,N,U,Y,37294.0,,0.0,,37294.0,,12945.0,,1547.0,,14492.0,,1678168.0,,2423690.0,,2122927.0,,300763.0,,,,685.0,,12867.0,,8161.0,,1170.0,,505.0,,,,,,, +GA,Georgia,202209,N,P,N,36135.0,,0.0,,36135.0,,11271.0,,1238.0,,12509.0,,1676648.0,,2420983.0,,2119711.0,,301272.0,,,,576.0,,10232.0,,8367.0,,1326.0,,401.0,,,,,,, +GA,Georgia,202209,N,U,Y,36135.0,,0.0,,36135.0,,11271.0,,1238.0,,12509.0,,1687959.0,,2438113.0,,2133466.0,,304647.0,,,,576.0,,10232.0,,8367.0,,1326.0,,401.0,,,,,,, +GA,Georgia,202210,N,P,N,65401.0,,0.0,,65401.0,,23051.0,,2889.0,,25940.0,,1687057.0,,2435532.0,,2129828.0,,305704.0,,,,4722.0,,15119.0,,18049.0,,2341.0,,861.0,,,,,,, +GA,Georgia,202210,N,U,Y,65401.0,,0.0,,65401.0,,23051.0,,2889.0,,25940.0,,1701672.0,,2456252.0,,2145421.0,,310831.0,,,,4722.0,,15119.0,,18049.0,,2341.0,,861.0,,,,,,, +GA,Georgia,202211,N,P,N,49864.0,,0.0,,49864.0,,34159.0,,5247.0,,39406.0,,1700276.0,,2452649.0,,2140554.0,,312095.0,,,,2150.0,,19699.0,,33757.0,,11377.0,,2794.0,,,,,,, +GA,Georgia,202211,N,U,Y,49864.0,,0.0,,49864.0,,34159.0,,5247.0,,39406.0,,1715848.0,,2474253.0,,2156969.0,,317284.0,,,,2150.0,,19699.0,,33757.0,,11377.0,,2794.0,,,,,,, +GA,Georgia,202212,N,P,N,45587.0,,0.0,,45587.0,,29708.0,,5644.0,,35352.0,,1711458.0,,2464523.0,,2146825.0,,317698.0,,,,1714.0,,21636.0,,30635.0,,8510.0,,7147.0,,,,,,, +GA,Georgia,202212,N,U,Y,45587.0,,0.0,,45587.0,,29708.0,,5644.0,,35352.0,,1726016.0,,2485394.0,,2163448.0,,321946.0,,,,1714.0,,21636.0,,30635.0,,8510.0,,7147.0,,,,,,, +GA,Georgia,202301,N,P,N,52570.0,,0.0,,52570.0,,24422.0,,4817.0,,29239.0,,1718397.0,,2470880.0,,2148685.0,,322195.0,,,,1285.0,,21477.0,,25343.0,,6809.0,,3799.0,,,,,,, +GA,Georgia,202301,N,U,Y,52570.0,,0.0,,52570.0,,24422.0,,4817.0,,29239.0,,1732852.0,,2491677.0,,2165047.0,,326630.0,,,,1285.0,,21477.0,,25343.0,,6809.0,,3799.0,,,,,,, +GA,Georgia,202302,N,P,N,44124.0,,0.0,,44124.0,,24819.0,,4128.0,,28947.0,,1728820.0,,2482833.0,,2157156.0,,325677.0,,,,1102.0,,19808.0,,23849.0,,5367.0,,4158.0,,,,,,, +GA,Georgia,202302,N,U,Y,44124.0,,0.0,,44124.0,,24819.0,,4128.0,,28947.0,,1741609.0,,2502475.0,,2172818.0,,329657.0,,,,1102.0,,19808.0,,23849.0,,5367.0,,4158.0,,,,,,, +GA,Georgia,202303,N,P,N,49905.0,,0.0,,49905.0,,26639.0,,3716.0,,30355.0,,1736978.0,,2493648.0,,2167942.0,,325706.0,,,,1370.0,,21647.0,,22544.0,,5140.0,,4878.0,,44616.0,Includes calls for other benefit programs,14.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.007,Callbacks are included; Includes calls for other benefit programs; Includes only calls transferred to a live agent +GA,Georgia,202303,N,U,Y,49905.0,,0.0,,49905.0,,26639.0,,3716.0,,30355.0,,1748888.0,,2511599.0,,2183410.0,,328189.0,,,,1370.0,,21647.0,,22544.0,,5140.0,,4878.0,,44616.0,Includes calls for other benefit programs,14.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.007,Callbacks are included; Includes calls for other benefit programs; Includes only calls transferred to a live agent +GA,Georgia,202304,N,P,N,47633.0,,0.0,,47633.0,,24605.0,,2925.0,,27530.0,,1737409.0,,2494729.0,,2186027.0,,308702.0,,,,965.0,,17669.0,,22571.0,,5655.0,,5766.0,,51237.0,Includes calls for other benefit programs,24.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.007,Callbacks are included; Includes calls for other benefit programs; Includes only calls transferred to a live agent +GA,Georgia,202304,N,U,Y,47633.0,,0.0,,47633.0,,24605.0,,2925.0,,27530.0,,1756619.0,,2542085.0,,2228997.0,,313088.0,,,,965.0,,17669.0,,22571.0,,5655.0,,5766.0,,51237.0,Includes calls for other benefit programs,24.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.007,Callbacks are included; Includes calls for other benefit programs; Includes only calls transferred to a live agent +GA,Georgia,202305,N,P,N,53684.0,,0.0,,53684.0,,28905.0,,3731.0,,32636.0,,1751513.0,,2532570.0,,2220854.0,,311716.0,,,,1317.0,,20906.0,,27296.0,,7619.0,,7652.0,,40473.0,Includes calls for other benefit programs,1.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.003,Callbacks are included; Includes calls for other benefit programs; Includes only calls transferred to a live agent +GA,Georgia,202305,N,U,Y,53684.0,,0.0,,53684.0,,28905.0,,3731.0,,32636.0,,1765376.0,,2552798.0,,2236476.0,,316322.0,,,,1317.0,,20906.0,,27296.0,,7619.0,,7652.0,,40473.0,Includes calls for other benefit programs,1.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.003,Callbacks are included; Includes calls for other benefit programs; Includes only calls transferred to a live agent +GA,Georgia,202306,N,P,N,51665.0,,0.0,,51665.0,,27301.0,,3685.0,,30986.0,,1749693.0,,2525762.0,,2211145.0,,314617.0,,,,1300.0,,16360.0,,26263.0,,7661.0,,8939.0,,88954.0,Includes calls for other benefit programs,29.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.015,Callbacks are included; Includes calls for other benefit programs; Includes only calls transferred to a live agent +GA,Georgia,202306,N,U,Y,51665.0,,0.0,,51665.0,,27301.0,,3685.0,,30986.0,,1766049.0,,2548372.0,,2227392.0,,320980.0,,,,1300.0,,16360.0,,26263.0,,7661.0,,8939.0,,88954.0,Includes calls for other benefit programs,29.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.015,Callbacks are included; Includes calls for other benefit programs; Includes only calls transferred to a live agent +GA,Georgia,202307,N,P,N,57666.0,,0.0,,57666.0,,28323.0,,4068.0,,32391.0,,1744813.0,,2511096.0,,2190655.0,,320441.0,,,,1276.0,,14380.0,,24342.0,,9809.0,,11666.0,,61577.0,Includes calls for other benefit programs,28.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.013,Callbacks are included; Includes calls for other benefit programs; Includes only calls transferred to a live agent +GA,Georgia,202307,N,U,Y,57666.0,,0.0,,57666.0,,28323.0,,4068.0,,32391.0,,1765497.0,,2539809.0,,2210943.0,,328866.0,,,,1276.0,,14380.0,,24342.0,,9809.0,,11666.0,,61577.0,Includes calls for other benefit programs,28.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.013,Callbacks are included; Includes calls for other benefit programs; Includes only calls transferred to a live agent +GA,Georgia,202308,N,P,N,69678.0,,0.0,,69678.0,,36295.0,,5623.0,,41918.0,,1625705.0,,2366563.0,,2062152.0,,304411.0,,,,1868.0,,18923.0,,29115.0,,11576.0,,15298.0,,72873.0,Includes calls for other benefit programs,18.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.014,Callbacks are included; Includes calls for other benefit programs; Includes only calls transferred to a live agent +GA,Georgia,202308,N,U,Y,69678.0,,0.0,,69678.0,,36295.0,,5623.0,,41918.0,,1657352.0,,2408413.0,,2095223.0,,313190.0,,,,1868.0,,18923.0,,29115.0,,11576.0,,15298.0,,72873.0,Includes calls for other benefit programs,18.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.014,Callbacks are included; Includes calls for other benefit programs; Includes only calls transferred to a live agent +GA,Georgia,202309,N,P,N,54017.0,,0.0,,54017.0,,27180.0,,4898.0,,32078.0,,1587898.0,,2309061.0,,2009552.0,,299509.0,,,,1457.0,,9726.0,,19630.0,,11488.0,,18531.0,,81112.0,Includes calls for other benefit programs,24.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.011,Callbacks are included; Includes calls for other benefit programs; Includes only calls transferred to a live agent +GA,Georgia,202309,N,U,Y,54017.0,,0.0,,54017.0,,27180.0,,4898.0,,32078.0,,1616318.0,,2345972.0,,2035337.0,,310635.0,,,,1457.0,,9726.0,,19630.0,,11488.0,,18531.0,,81112.0,Includes calls for other benefit programs,24.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.011,Callbacks are included; Includes calls for other benefit programs; Includes only calls transferred to a live agent +GA,Georgia,202310,N,P,N,54130.0,,0.0,,54130.0,,26319.0,,5011.0,,31330.0,,1586420.0,,2297930.0,,1989552.0,,308378.0,,,,1448.0,,9011.0,,17018.0,,8594.0,,24526.0,,94120.0,Includes calls for other benefit programs,15.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.011,Callbacks are included; Includes calls for other benefit programs; Includes only calls transferred to a live agent +GA,Georgia,202310,N,U,Y,54130.0,,0.0,,54130.0,,26319.0,,5011.0,,31330.0,,1610915.0,,2330313.0,,2013664.0,,316649.0,,,,1448.0,,9011.0,,17018.0,,8594.0,,24526.0,,94120.0,Includes calls for other benefit programs,15.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.011,Callbacks are included; Includes calls for other benefit programs; Includes only calls transferred to a live agent +GA,Georgia,202311,N,P,N,52900.0,,0.0,,52900.0,,24922.0,,4556.0,,29478.0,,1508943.0,,2192005.0,,1897090.0,,294915.0,,,,1737.0,,8240.0,,17465.0,,8071.0,,23697.0,,62817.0,Includes calls for other benefit programs,14.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.015,Callbacks are included; Includes calls for other benefit programs; Includes only calls transferred to a live agent +GA,Georgia,202311,N,U,Y,52900.0,,0.0,,52900.0,,24922.0,,4556.0,,29478.0,,1532399.0,,2223045.0,,1920824.0,,302221.0,,,,1737.0,,8240.0,,17465.0,,8071.0,,23697.0,,62817.0,Includes calls for other benefit programs,14.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.015,Callbacks are included; Includes calls for other benefit programs; Includes only calls transferred to a live agent +GA,Georgia,202312,N,P,N,47366.0,,0.0,,47366.0,,26080.0,,4731.0,,30811.0,,1465303.0,,2115193.0,,1817993.0,,297200.0,,,,1587.0,,9734.0,,16072.0,,9834.0,,24022.0,,45084.0,Includes calls for other benefit programs,10.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.012,Callbacks are included; Includes calls for other benefit programs; Includes only calls transferred to a live agent +GA,Georgia,202312,N,U,Y,47366.0,,0.0,,47366.0,,26080.0,,4731.0,,30811.0,,1491866.0,,2151282.0,,1846767.0,,304515.0,,,,1587.0,,9734.0,,16072.0,,9834.0,,24022.0,,45084.0,Includes calls for other benefit programs,10.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.012,Callbacks are included; Includes calls for other benefit programs; Includes only calls transferred to a live agent +GA,Georgia,202401,N,P,N,65026.0,,0.0,,65026.0,,27854.0,,4715.0,,32569.0,,1442848.0,,2081407.0,,1790170.0,,291237.0,,,,1790.0,,10866.0,,17343.0,,9037.0,,25508.0,,45793.0,Includes calls for other benefit programs,8.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.009,Callbacks are included; Includes calls for other benefit programs; Includes only calls transferred to a live agent +GA,Georgia,202401,N,U,Y,65026.0,,0.0,,65026.0,,27854.0,,4715.0,,32569.0,,1471075.0,,2120803.0,,1821831.0,,298972.0,,,,1790.0,,10866.0,,17343.0,,9037.0,,25508.0,,45793.0,Includes calls for other benefit programs,8.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.009,Callbacks are included; Includes calls for other benefit programs; Includes only calls transferred to a live agent +GA,Georgia,202402,N,P,N,59145.0,,0.0,,59145.0,,27893.0,,4801.0,,32694.0,,1422764.0,,2049848.0,,1766026.0,,283822.0,,,,1509.0,,10937.0,,18720.0,,8708.0,,28257.0,,98086.0,Includes calls for other benefit programs,8.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.01,Callbacks are included; Includes calls for other benefit programs; Includes only calls transferred to a live agent +GA,Georgia,202402,N,U,Y,59145.0,,0.0,,59145.0,,27893.0,,4801.0,,32694.0,,1442580.0,,2079149.0,,1794351.0,,284798.0,,,,1509.0,,10937.0,,18720.0,,8708.0,,28257.0,,98086.0,Includes calls for other benefit programs,8.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.01,Callbacks are included; Includes calls for other benefit programs; Includes only calls transferred to a live agent +GA,Georgia,202403,N,P,N,51836.0,,0.0,,51836.0,,25805.0,,4245.0,,30050.0,,1405043.0,,2014446.0,,1736785.0,,277661.0,,,,5667.0,,9914.0,,16508.0,,8492.0,,29361.0,,129583.0,Includes calls for other benefit programs,10.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.008,Callbacks are included; Includes calls for other benefit programs; Includes only calls transferred to a live agent +GA,Georgia,202403,N,U,Y,51836.0,,0.0,,51836.0,,25805.0,,4245.0,,30050.0,,1430894.0,,2050815.0,,1767490.0,,283325.0,,,,5667.0,,9914.0,,16508.0,,8492.0,,29361.0,,129583.0,Includes calls for other benefit programs,10.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.008,Callbacks are included; Includes calls for other benefit programs; Includes only calls transferred to a live agent +GA,Georgia,202404,N,P,N,53351.0,,0.0,,53351.0,,23570.0,,4127.0,,27697.0,,1399535.0,,1997710.0,,1735029.0,,262681.0,,,,1039.0,,8343.0,,13227.0,,7687.0,,33073.0,,131883.0,Includes calls for other benefit programs,14.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.006,Callbacks are included; Includes calls for other benefit programs; Includes only calls transferred to a live agent +GA,Georgia,202404,N,U,Y,53351.0,,0.0,,53351.0,,23570.0,,4127.0,,27697.0,,1426316.0,,2034673.0,,1765345.0,,269328.0,,,,1039.0,,8343.0,,13227.0,,7687.0,,33073.0,,131883.0,Includes calls for other benefit programs,14.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.006,Callbacks are included; Includes calls for other benefit programs; Includes only calls transferred to a live agent +GA,Georgia,202405,N,P,N,51026.0,,0.0,,51026.0,,35107.0,,4531.0,,39638.0,,1391942.0,,1980502.0,,1722523.0,,257979.0,,,,9126.0,,11255.0,,13629.0,,6411.0,,35253.0,,103297.0,Includes calls for other benefit programs,10.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.005,Callbacks are included; Includes calls for other benefit programs; Includes only calls transferred to a live agent +GA,Georgia,202405,N,U,Y,51026.0,,0.0,,51026.0,,35107.0,,4531.0,,39638.0,,1416595.0,,2015688.0,,1751555.0,,264133.0,,,,9126.0,,11255.0,,13629.0,,6411.0,,35253.0,,103297.0,Includes calls for other benefit programs,10.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.005,Callbacks are included; Includes calls for other benefit programs; Includes only calls transferred to a live agent +GA,Georgia,202406,N,P,N,46253.0,,0.0,,46253.0,,26629.0,,4429.0,,31058.0,,1403485.0,,1986748.0,,1730032.0,,256716.0,,,,1354.0,,11435.0,,12990.0,,5349.0,,36811.0,,93092.0,Includes calls for other benefit programs,9.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.008,Callbacks are included; Includes calls for other benefit programs; Includes only calls transferred to a live agent +GA,Georgia,202406,N,U,Y,46253.0,,0.0,,46253.0,,26629.0,,4429.0,,31058.0,,1430983.0,,2024157.0,,1761972.0,,262185.0,,,,1354.0,,11435.0,,12990.0,,5349.0,,36811.0,,93092.0,Includes calls for other benefit programs,9.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.008,Callbacks are included; Includes calls for other benefit programs; Includes only calls transferred to a live agent +GA,Georgia,202407,N,P,N,54220.0,,0.0,,54220.0,,29574.0,,4693.0,,34267.0,,1407945.0,,1986892.0,,1730811.0,,256081.0,,578947.0,,2393.0,,12218.0,,18201.0,,6332.0,,35519.0,,36981.0,Includes calls for other benefit programs,10.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.01,Callbacks are included; Includes calls for other benefit programs; Includes only calls transferred to a live agent +GA,Georgia,202407,N,U,Y,54220.0,,0.0,,54220.0,,29574.0,,4693.0,,34267.0,,1432844.0,,2022501.0,,1762079.0,,260422.0,,589657.0,,2393.0,,12218.0,,18201.0,,6332.0,,35519.0,,36981.0,Includes calls for other benefit programs,10.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.01,Callbacks are included; Includes calls for other benefit programs; Includes only calls transferred to a live agent +GA,Georgia,202408,N,P,N,54517.0,,0.0,,54517.0,,30724.0,,3422.0,,34146.0,,1409241.0,,1985264.0,,1736021.0,,249243.0,,576023.0,,3414.0,,11492.0,,20353.0,,6062.0,,24248.0,,28796.0,Includes calls for other benefit programs,16.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.03,Callbacks are included; Includes calls for other benefit programs; Includes only calls transferred to a live agent +GA,Georgia,202408,N,U,Y,54517.0,,0.0,,54517.0,,30724.0,,3422.0,,34146.0,,1431621.0,,2017493.0,,1763780.0,,253713.0,,585872.0,,3414.0,,11492.0,,20353.0,,6062.0,,24248.0,,28796.0,Includes calls for other benefit programs,16.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.03,Callbacks are included; Includes calls for other benefit programs; Includes only calls transferred to a live agent +GA,Georgia,202409,N,P,N,48331.0,,0.0,,48331.0,,27349.0,,3213.0,,30562.0,,1399843.0,,1970555.0,,1727186.0,,243369.0,,570712.0,,2629.0,,10437.0,,20857.0,,6384.0,,15862.0,,33188.0,Includes calls for other benefit programs,21.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.007,Callbacks are included; Includes calls for other benefit programs; Includes only calls transferred to a live agent +GA,Georgia,202409,N,U,Y,48331.0,,0.0,,48331.0,,27349.0,,3213.0,,30562.0,,1419999.0,,1999306.0,,1752145.0,,247161.0,,579307.0,,2629.0,,10437.0,,20857.0,,6384.0,,15862.0,,33188.0,Includes calls for other benefit programs,21.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.007,Callbacks are included; Includes calls for other benefit programs; Includes only calls transferred to a live agent +GA,Georgia,202410,N,P,N,55261.0,,0.0,,55261.0,,28239.0,,2050.0,,30289.0,,1408144.0,,1978819.0,,1735459.0,,243360.0,,570675.0,,4442.0,,12462.0,,20204.0,,5921.0,,14958.0,,36236.0,Includes calls for other benefit programs,21.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.008,Callbacks are included; Includes calls for other benefit programs; Includes only calls transferred to a live agent +GA,Georgia,202410,N,U,Y,55261.0,,0.0,,55261.0,,28239.0,,2050.0,,30289.0,,1424873.0,,2003247.0,,1755956.0,,247291.0,,578374.0,,4442.0,,12462.0,,20204.0,,5921.0,,14958.0,,36236.0,Includes calls for other benefit programs,21.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.008,Callbacks are included; Includes calls for other benefit programs; Includes only calls transferred to a live agent +GA,Georgia,202411,N,P,N,56778.0,,7152.0,,63930.0,,20732.0,,1345.0,,22077.0,,1376912.0,,1934895.0,,1700970.0,,233925.0,,557983.0,,1715.0,,6088.0,,7932.0,,2035.0,,4392.0,,21740.0,Includes calls for other benefit programs,29.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.007,Callbacks are included; Includes calls for other benefit programs; Includes only calls transferred to a live agent +GA,Georgia,202411,N,U,Y,56778.0,,7152.0,,63930.0,,20732.0,,1345.0,,22077.0,,1400016.0,,1967089.0,,1727515.0,,239574.0,,567073.0,,1715.0,,6088.0,,7932.0,,2035.0,,4392.0,,21740.0,Includes calls for other benefit programs,29.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.007,Callbacks are included; Includes calls for other benefit programs; Includes only calls transferred to a live agent +GA,Georgia,202412,N,P,N,66250.0,,11937.0,,78187.0,,24883.0,,1046.0,,25929.0,,1374161.0,,1930006.0,,1699279.0,,230727.0,,555845.0,,3502.0,,5530.0,,9340.0,,1612.0,,6032.0,,41070.0,Includes calls for other benefit programs,20.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.007,Callbacks are included; Includes calls for other benefit programs; Includes only calls transferred to a live agent +GA,Georgia,202412,N,U,Y,66250.0,,11937.0,,78187.0,,24883.0,,1046.0,,25929.0,,1395316.0,,1961283.0,,1726551.0,,234732.0,,565967.0,,3502.0,,5530.0,,9340.0,,1612.0,,6032.0,,41070.0,Includes calls for other benefit programs,20.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.007,Callbacks are included; Includes calls for other benefit programs; Includes only calls transferred to a live agent +GA,Georgia,202501,N,P,N,81192.0,,10681.0,,91873.0,,27396.0,,944.0,,28340.0,,1368355.0,,1921568.0,,1693674.0,,227894.0,,553213.0,,2483.0,,6549.0,,9062.0,,2601.0,,8105.0,,44262.0,Includes calls for other benefit programs,23.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.006,Callbacks are included; Includes calls for other benefit programs; Includes only calls transferred to a live agent +GA,Georgia,202501,N,U,Y,81192.0,,10681.0,,91873.0,,27396.0,,944.0,,28340.0,,1389466.0,,1953358.0,,1722003.0,,231355.0,,563892.0,,2483.0,,6549.0,,9062.0,,2601.0,,8105.0,,44262.0,Includes calls for other benefit programs,23.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.006,Callbacks are included; Includes calls for other benefit programs; Includes only calls transferred to a live agent +GA,Georgia,202502,N,P,N,55154.0,,3826.0,,58980.0,,27940.0,,914.0,,28854.0,,1363747.0,,1915897.0,,1692124.0,,223773.0,,552150.0,,3148.0,,6518.0,,9388.0,,2948.0,,7330.0,,48585.0,Includes calls for other benefit programs,19.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.02,Callbacks are included; Includes calls for other benefit programs; Includes only calls transferred to a live agent +GA,Georgia,202502,N,U,Y,55154.0,,3826.0,,58980.0,,27940.0,,914.0,,28854.0,,1385786.0,,1948393.0,,1719287.0,,229106.0,,562607.0,,3148.0,,6518.0,,9388.0,,2948.0,,7330.0,,48585.0,Includes calls for other benefit programs,19.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.02,Callbacks are included; Includes calls for other benefit programs; Includes only calls transferred to a live agent +GA,Georgia,202503,N,P,N,52513.0,,3943.0,,56456.0,,27712.0,,819.0,,28531.0,,1359680.0,,1911901.0,,1692305.0,,219596.0,,552221.0,,2939.0,,6103.0,,10136.0,,3423.0,,8501.0,,46544.0,Includes calls for other benefit programs,22.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.007,Callbacks are included; Includes calls for other benefit programs; Includes only calls transferred to a live agent +GA,Georgia,202503,N,U,Y,52513.0,,3943.0,,56456.0,,27712.0,,819.0,,28531.0,,1380081.0,,1943066.0,,1720148.0,,222918.0,,562985.0,,2939.0,,6103.0,,10136.0,,3423.0,,8501.0,,46544.0,Includes calls for other benefit programs,22.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.007,Callbacks are included; Includes calls for other benefit programs; Includes only calls transferred to a live agent +GA,Georgia,202504,N,P,N,54698.0,,3953.0,,58651.0,,28586.0,,706.0,,29292.0,,1350831.0,,1903058.0,,1700444.0,,202614.0,,552227.0,,3640.0,,8169.0,,11849.0,,2581.0,,6892.0,,41240.0,Includes calls for other benefit programs,35.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.009,Callbacks are included; Includes calls for other benefit programs; Includes only calls transferred to a live agent +GA,Georgia,202504,N,U,Y,54698.0,,3953.0,,58651.0,,28586.0,,706.0,,29292.0,,1372054.0,,1934702.0,,1727644.0,,207058.0,,562648.0,,3640.0,,8169.0,,11849.0,,2581.0,,6892.0,,41240.0,Includes calls for other benefit programs,35.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.009,Callbacks are included; Includes calls for other benefit programs; Includes only calls transferred to a live agent +GA,Georgia,202505,N,P,N,53989.0,,4060.0,,58049.0,,27806.0,,898.0,,28704.0,,1345845.0,,1897250.0,,1697691.0,,199559.0,,551405.0,,3738.0,,8687.0,,11823.0,,2016.0,,8099.0,,60839.0,Includes calls for other benefit programs,33.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.008,Callbacks are included; Includes calls for other benefit programs; Includes only calls transferred to a live agent +GA,Georgia,202505,N,U,Y,53989.0,,4060.0,,58049.0,,27806.0,,898.0,,28704.0,,1366715.0,,1927756.0,,1723236.0,,204520.0,,561041.0,,3738.0,,8687.0,,11823.0,,2016.0,,8099.0,,60839.0,Includes calls for other benefit programs,33.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.008,Callbacks are included; Includes calls for other benefit programs; Includes only calls transferred to a live agent +GA,Georgia,202506,N,P,N,47569.0,,6575.0,,54144.0,,25848.0,,1018.0,,26866.0,,1342884.0,,1895148.0,,1696933.0,,198215.0,,552264.0,,4717.0,,12998.0,,15762.0,,3219.0,,10562.0,,41817.0,Includes calls for other benefit programs,23.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.008,Callbacks are included; Includes calls for other benefit programs; Includes only calls transferred to a live agent +GA,Georgia,202506,N,U,Y,47569.0,,6575.0,,54144.0,,25848.0,,1018.0,,26866.0,,1360738.0,,1921784.0,,1719814.0,,201970.0,,561046.0,,4717.0,,12998.0,,15762.0,,3219.0,,10562.0,,41817.0,Includes calls for other benefit programs,23.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.008,Callbacks are included; Includes calls for other benefit programs; Includes only calls transferred to a live agent +GA,Georgia,202507,N,P,N,50423.0,,8370.0,,58793.0,,25723.0,,690.0,,26413.0,,1338353.0,,1893400.0,,1698030.0,,195370.0,,555047.0,,4716.0,,11382.0,,17054.0,,2197.0,,7866.0,,47825.0,Includes calls for other benefit programs,21.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.009,Callbacks are included; Includes calls for other benefit programs; Includes only calls transferred to a live agent +GA,Georgia,202507,N,U,Y,50423.0,,8370.0,,58793.0,,25723.0,,690.0,,26413.0,,1357783.0,,1919391.0,,1720189.0,,199202.0,,561608.0,,4716.0,,11382.0,,17054.0,,2197.0,,7866.0,,47825.0,Includes calls for other benefit programs,21.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.009,Callbacks are included; Includes calls for other benefit programs; Includes only calls transferred to a live agent +GA,Georgia,202508,N,P,N,48817.0,,8389.0,,57206.0,,27116.0,,838.0,,27954.0,,1328542.0,,1875761.0,,1683482.0,,192279.0,,547219.0,,4021.0,,12824.0,,18600.0,,2814.0,,8624.0,,39491.0,Includes calls for other benefit programs,33.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.008,Callbacks are included; Includes calls for other benefit programs; Includes only calls transferred to a live agent +GA,Georgia,202508,N,U,Y,48817.0,,8389.0,,57206.0,,27116.0,,838.0,,27954.0,,1347840.0,,1904949.0,,1708613.0,,196336.0,,557109.0,,4021.0,,12824.0,,18600.0,,2814.0,,8624.0,,39491.0,Includes calls for other benefit programs,33.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.008,Callbacks are included; Includes calls for other benefit programs; Includes only calls transferred to a live agent +GA,Georgia,202509,N,P,N,49698.0,,7973.0,,57671.0,,26270.0,,728.0,,26998.0,,1328567.0,,1877263.0,,1686876.0,,190387.0,,548696.0,,5925.0,,14352.0,,13963.0,,2794.0,,7211.0,,31369.0,Includes calls for other benefit programs,38.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.008,Callbacks are included; Includes calls for other benefit programs; Includes only calls transferred to a live agent +GA,Georgia,202509,N,U,Y,49698.0,,7973.0,,57671.0,,26270.0,,728.0,,26998.0,,1346558.0,,1906009.0,,1711876.0,,194133.0,,559451.0,,5925.0,,14352.0,,13963.0,,2794.0,,7211.0,,31369.0,Includes calls for other benefit programs,38.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.008,Callbacks are included; Includes calls for other benefit programs; Includes only calls transferred to a live agent +GA,Georgia,202510,N,P,N,46406.0,,10108.0,,56514.0,,25835.0,,765.0,,26600.0,,1322796.0,,1872027.0,,1684015.0,,188012.0,,549231.0,,5412.0,,12552.0,,13614.0,,2412.0,,9238.0,,37564.0,Includes calls for other benefit programs,35.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.004,Callbacks are included; Includes calls for other benefit programs; Includes only calls transferred to a live agent +HI,Hawaii,201309,N,U,Y,,,,,,,,,,,,,,,288357.0,,,,,,,,,,,,,,,,,,,,,,, +HI,Hawaii,201706,Y,P,N,4786.0,,0.0,,4786.0,,7923.0,,383.0,,8306.0,,145389.0,,347998.0,,324213.0,,23785.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,201706,Y,U,Y,4786.0,,0.0,,4786.0,,7923.0,,383.0,,8306.0,,145515.0,,348125.0,,324337.0,,23788.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,201707,Y,P,N,4649.0,,0.0,,4649.0,,7445.0,,403.0,,7848.0,,144691.0,,346198.0,,322319.0,,23879.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,201707,Y,U,Y,4649.0,,0.0,,4649.0,,7445.0,,403.0,,7848.0,,144928.0,,346435.0,,322552.0,,23883.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,201708,Y,P,N,5157.0,,0.0,,5157.0,,8302.0,,470.0,,8772.0,,144081.0,,346340.0,,322389.0,,23951.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,201708,Y,U,Y,5157.0,,0.0,,5157.0,,8302.0,,470.0,,8772.0,,144241.0,,346500.0,,322546.0,,23954.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,201709,Y,P,N,4227.0,,0.0,,4227.0,,7228.0,,376.0,,7604.0,,143374.0,,343675.0,,319673.0,,24002.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,201709,Y,U,Y,4227.0,,0.0,,4227.0,,7228.0,,376.0,,7604.0,,143573.0,,343874.0,,319868.0,,24006.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,201710,Y,P,N,4900.0,,0.0,,4900.0,,7219.0,,392.0,,7611.0,,144022.0,,344830.0,,320584.0,,24246.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,201710,Y,U,Y,4900.0,,0.0,,4900.0,,7219.0,,392.0,,7611.0,,144220.0,,345028.0,,320779.0,,24249.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,201711,Y,P,N,5040.0,,0.0,,5040.0,,8089.0,,500.0,,8589.0,,144869.0,,347439.0,,322780.0,,24659.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,201711,Y,U,Y,5040.0,,0.0,,5040.0,,8089.0,,500.0,,8589.0,,145035.0,,347605.0,,322945.0,,24660.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,201712,Y,P,N,4291.0,,0.0,,4291.0,,7767.0,,449.0,,8216.0,,144316.0,,346587.0,,321922.0,,24665.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,201712,Y,U,Y,4291.0,,0.0,,4291.0,,7767.0,,449.0,,8216.0,,144476.0,,346747.0,,322079.0,,24668.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,201801,Y,P,N,4552.0,,0.0,,4552.0,,7530.0,,394.0,,7924.0,,145277.0,,349172.0,,324300.0,,24872.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,201801,Y,U,Y,4552.0,,0.0,,4552.0,,7530.0,,394.0,,7924.0,,145466.0,,349361.0,,324486.0,,24875.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,201802,Y,P,N,4056.0,,0.0,,4056.0,,6465.0,,360.0,,6825.0,,145836.0,,350304.0,,325323.0,,24981.0,,,,4916.0,,305.0,,1132.0,,66.0,,93.0,,,,,,, +HI,Hawaii,201802,Y,U,Y,4056.0,,0.0,,4056.0,,6465.0,,360.0,,6825.0,,145994.0,,350462.0,,325479.0,,24983.0,,,,4916.0,,305.0,,1132.0,,66.0,,93.0,,,,,,, +HI,Hawaii,201803,Y,P,N,3999.0,,0.0,,3999.0,,4612.0,,243.0,,4855.0,,145570.0,,348160.0,,323265.0,,24895.0,,,,3832.0,,784.0,,1409.0,,62.0,,55.0,,,,,,, +HI,Hawaii,201803,Y,U,Y,3999.0,,0.0,,3999.0,,4612.0,,243.0,,4855.0,,145762.0,,348352.0,,323455.0,,24897.0,,,,3832.0,,784.0,,1409.0,,62.0,,55.0,,,,,,, +HI,Hawaii,201804,Y,P,N,4212.0,,0.0,,4212.0,,4911.0,,248.0,,5159.0,,144252.0,,344788.0,,320115.0,,24673.0,,,,3919.0,,797.0,,1641.0,,98.0,,76.0,,,,,,, +HI,Hawaii,201804,Y,U,Y,4212.0,,0.0,,4212.0,,4911.0,,248.0,,5159.0,,144476.0,,345012.0,,320336.0,,24676.0,,,,3919.0,,797.0,,1641.0,,98.0,,76.0,,,,,,, +HI,Hawaii,201805,Y,P,N,4481.0,,0.0,,4481.0,,5151.0,,311.0,,5462.0,,141869.0,,339723.0,,315343.0,,24380.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,201805,Y,U,Y,4481.0,,0.0,,4481.0,,5151.0,,311.0,,5462.0,,142091.0,,339945.0,,315564.0,,24381.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,201806,Y,P,N,4791.0,,0.0,,4791.0,,5636.0,,437.0,,6073.0,,142130.0,,338664.0,,313913.0,,24751.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,201806,Y,U,Y,4791.0,,0.0,,4791.0,,5636.0,,437.0,,6073.0,,142298.0,,338832.0,,314075.0,,24757.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,201807,Y,P,N,5007.0,,0.0,,5007.0,,5789.0,,398.0,,6187.0,,142268.0,,337502.0,,312619.0,,24883.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,201807,Y,U,Y,5007.0,,0.0,,5007.0,,5789.0,,398.0,,6187.0,,142484.0,,337722.0,,312832.0,,24890.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,201808,Y,P,N,4786.0,,0.0,,4786.0,,6096.0,,429.0,,6525.0,,142346.0,,336594.0,,311625.0,,24969.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,201808,Y,U,Y,4786.0,,0.0,,4786.0,,6096.0,,429.0,,6525.0,,142547.0,,336795.0,,311822.0,,24973.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,201809,Y,P,N,4589.0,,0.0,,4589.0,,5079.0,,363.0,,5442.0,,141860.0,,334473.0,,309460.0,,25013.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,201809,Y,U,Y,4589.0,,0.0,,4589.0,,5079.0,,363.0,,5442.0,,142065.0,,334678.0,,309661.0,,25017.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,201810,Y,P,N,5316.0,,0.0,,5316.0,,5709.0,,399.0,,6108.0,,141208.0,,332723.0,,307731.0,,24992.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,201810,Y,U,Y,5316.0,,0.0,,5316.0,,5709.0,,399.0,,6108.0,,141425.0,,332940.0,,307944.0,,24996.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,201811,Y,P,N,5020.0,,0.0,,5020.0,,6126.0,,585.0,,6711.0,,140574.0,,331537.0,,306410.0,,25127.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,201811,Y,U,Y,5020.0,,0.0,,5020.0,,6126.0,,585.0,,6711.0,,140749.0,,331712.0,,306577.0,,25135.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,201812,Y,P,N,4822.0,,0.0,,4822.0,,6099.0,,474.0,,6573.0,,140162.0,,330845.0,,305653.0,,25192.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,201812,Y,U,Y,4822.0,,0.0,,4822.0,,6099.0,,474.0,,6573.0,,140392.0,,331075.0,,305872.0,,25203.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,201901,Y,P,N,5248.0,,0.0,,5248.0,,6290.0,,452.0,,6742.0,,140206.0,,330244.0,,304970.0,,25274.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,201901,Y,U,Y,5248.0,,0.0,,5248.0,,6290.0,,452.0,,6742.0,,140372.0,,330410.0,,305133.0,,25277.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,201902,Y,P,N,4600.0,,0.0,,4600.0,,5096.0,,360.0,,5456.0,,140819.0,,331694.0,,306164.0,,25530.0,,,,4483.0,,483.0,,1497.0,,40.0,,50.0,,,,,,, +HI,Hawaii,201902,Y,U,Y,4600.0,,0.0,,4600.0,,5096.0,,360.0,,5456.0,,141014.0,,331889.0,,306351.0,,25538.0,,,,4483.0,,483.0,,1497.0,,40.0,,50.0,,,,,,, +HI,Hawaii,201903,Y,P,N,4995.0,,0.0,,4995.0,,5089.0,,350.0,,5439.0,,140071.0,,329510.0,,304163.0,,25347.0,,,,3850.0,,943.0,,1915.0,,78.0,,60.0,,,,,,, +HI,Hawaii,201903,Y,U,Y,4995.0,,0.0,,4995.0,,5089.0,,350.0,,5439.0,,140249.0,,329688.0,,304337.0,,25351.0,,,,3850.0,,943.0,,1915.0,,78.0,,60.0,,,,,,, +HI,Hawaii,201904,Y,P,N,5043.0,,0.0,,5043.0,,5431.0,,351.0,,5782.0,,140265.0,,329704.0,,304118.0,,25586.0,,,,4714.0,,504.0,,1959.0,,86.0,,74.0,,,,,,, +HI,Hawaii,201904,Y,U,Y,5043.0,,0.0,,5043.0,,5431.0,,351.0,,5782.0,,140426.0,,329868.0,,304277.0,,25591.0,,,,4714.0,,504.0,,1959.0,,86.0,,74.0,,,,,,, +HI,Hawaii,201905,Y,P,N,4842.0,,0.0,,4842.0,,5631.0,,379.0,,6010.0,,140105.0,,329264.0,,303847.0,,25417.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,201905,Y,U,Y,4842.0,,0.0,,4842.0,,5631.0,,379.0,,6010.0,,140263.0,,329422.0,,304001.0,,25421.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,201906,Y,P,N,4511.0,,0.0,,4511.0,,5180.0,,377.0,,5557.0,,139890.0,,328899.0,,303630.0,,25269.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,201906,Y,U,Y,4511.0,,0.0,,4511.0,,5180.0,,377.0,,5557.0,,140097.0,,329106.0,,303831.0,,25275.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,201907,Y,P,N,5199.0,,0.0,,5199.0,,5537.0,,402.0,,5939.0,,139725.0,,328220.0,,302966.0,,25254.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,201907,Y,U,Y,5199.0,,0.0,,5199.0,,5537.0,,402.0,,5939.0,,139898.0,,328393.0,,303135.0,,25258.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,201908,Y,P,N,5271.0,,0.0,,5271.0,,6186.0,,484.0,,6670.0,,139829.0,,328713.0,,303140.0,,25573.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,201908,Y,U,Y,5271.0,,0.0,,5271.0,,6186.0,,484.0,,6670.0,,140037.0,,328923.0,,303347.0,,25576.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,201909,Y,P,N,4886.0,,0.0,,4886.0,,5630.0,,386.0,,6016.0,,139519.0,,327486.0,,302188.0,,25298.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,201909,Y,U,Y,4886.0,,0.0,,4886.0,,5630.0,,386.0,,6016.0,,139707.0,,327674.0,,302368.0,,25306.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,201910,Y,P,N,4218.0,,0.0,,4218.0,,5863.0,,388.0,,6251.0,,139337.0,,327043.0,,301682.0,,25361.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,201910,Y,U,Y,4218.0,,0.0,,4218.0,,5863.0,,388.0,,6251.0,,139530.0,,327236.0,,301869.0,,25367.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,201911,Y,P,N,4979.0,,0.0,,4979.0,,5831.0,,513.0,,6344.0,,138971.0,,326580.0,,301078.0,,25502.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,201911,Y,U,Y,4979.0,,0.0,,4979.0,,5831.0,,513.0,,6344.0,,139175.0,,326784.0,,301271.0,,25513.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,201912,Y,P,N,4719.0,,0.0,,4719.0,,6107.0,,530.0,,6637.0,,138935.0,,326149.0,,300576.0,,25573.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,201912,Y,U,Y,4719.0,,0.0,,4719.0,,6107.0,,530.0,,6637.0,,139123.0,,326337.0,,300760.0,,25577.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,202001,Y,P,N,4911.0,,0.0,,4911.0,,6025.0,,439.0,,6464.0,,138794.0,,325674.0,,300057.0,,25617.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,202001,Y,U,Y,4911.0,,0.0,,4911.0,,6025.0,,439.0,,6464.0,,138953.0,,325833.0,,300212.0,,25621.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,202002,Y,P,N,4277.0,,0.0,,4277.0,,4842.0,,372.0,,5214.0,,138662.0,,325503.0,,299766.0,,25737.0,,,,4157.0,,589.0,,1537.0,,71.0,,56.0,,,,,,, +HI,Hawaii,202002,Y,U,Y,4277.0,,0.0,,4277.0,,4842.0,,372.0,,5214.0,,138826.0,,325667.0,,299919.0,,25748.0,,,,4157.0,,589.0,,1537.0,,71.0,,56.0,,,,,,, +HI,Hawaii,202003,Y,P,N,6410.0,,0.0,,6410.0,,6365.0,,394.0,,6759.0,,139377.0,,329194.0,,303368.0,,25826.0,,,,3410.0,,628.0,,1115.0,,50.0,,31.0,,,,,,, +HI,Hawaii,202003,Y,U,Y,6410.0,,0.0,,6410.0,,6365.0,,394.0,,6759.0,,139377.0,,329194.0,,303368.0,,25826.0,,,,3410.0,,628.0,,1115.0,,50.0,,31.0,,,,,,, +HI,Hawaii,202004,Y,P,N,7098.0,,0.0,,7098.0,,5308.0,,141.0,,5449.0,,143868.0,,344318.0,,318405.0,,25913.0,,,,4832.0,,503.0,,376.0,,66.0,,11.0,,,,,,, +HI,Hawaii,202004,Y,U,Y,7098.0,,0.0,,7098.0,,5308.0,,141.0,,5449.0,,143868.0,,344318.0,,318405.0,,25913.0,,,,4832.0,,503.0,,376.0,,66.0,,11.0,,,,,,, +HI,Hawaii,202005,Y,P,N,5826.0,,0.0,,5826.0,,4163.0,,148.0,,4311.0,,145589.0,,352120.0,,326523.0,,25597.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,202005,Y,U,Y,5826.0,,0.0,,5826.0,,4163.0,,148.0,,4311.0,,145589.0,,352120.0,,326523.0,,25597.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,202006,Y,P,N,6100.0,,0.0,,6100.0,,3905.0,,107.0,,4012.0,,146800.0,,356887.0,,331374.0,,25513.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,202006,Y,U,Y,6100.0,,0.0,,6100.0,,3905.0,,107.0,,4012.0,,146800.0,,356887.0,,331374.0,,25513.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,202007,Y,P,N,6438.0,,0.0,,6438.0,,4082.0,,174.0,,4256.0,,148718.0,,363958.0,,338129.0,,25829.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,202007,Y,U,Y,6438.0,,0.0,,6438.0,,4082.0,,174.0,,4256.0,,148718.0,,363958.0,,338129.0,,25829.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,202008,Y,P,N,6253.0,,0.0,,6253.0,,4066.0,,185.0,,4251.0,,150195.0,,369661.0,,343613.0,,26048.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,202008,Y,U,Y,6253.0,,0.0,,6253.0,,4066.0,,185.0,,4251.0,,150195.0,,369661.0,,343613.0,,26048.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,202009,Y,P,N,6302.0,,0.0,,6302.0,,4223.0,,160.0,,4383.0,,151674.0,,375513.0,,349408.0,,26105.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,202009,Y,U,Y,6302.0,,0.0,,6302.0,,4223.0,,160.0,,4383.0,,151674.0,,375513.0,,349408.0,,26105.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,202010,Y,P,N,6087.0,,0.0,,6087.0,,4049.0,,154.0,,4203.0,,153028.0,,381225.0,,354995.0,,26230.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,202010,Y,U,Y,6087.0,,0.0,,6087.0,,4049.0,,154.0,,4203.0,,153028.0,,381225.0,,354995.0,,26230.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,202011,Y,P,N,5986.0,,0.0,,5986.0,,5021.0,,237.0,,5258.0,,154681.0,,388484.0,,361990.0,,26494.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,202011,Y,U,Y,5986.0,,0.0,,5986.0,,5021.0,,237.0,,5258.0,,154681.0,,388484.0,,361990.0,,26494.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,202012,Y,P,N,5720.0,,0.0,,5720.0,,5320.0,,254.0,,5574.0,,156044.0,,395172.0,,368609.0,,26563.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,202012,Y,U,Y,5720.0,,0.0,,5720.0,,5320.0,,254.0,,5574.0,,156044.0,,395172.0,,368609.0,,26563.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,202101,Y,P,N,5184.0,,0.0,,5184.0,,4268.0,,142.0,,4410.0,,156937.0,,400775.0,,374232.0,,26543.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,202101,Y,U,Y,5184.0,,0.0,,5184.0,,4268.0,,142.0,,4410.0,,156937.0,,400775.0,,374232.0,,26543.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,202102,Y,P,N,4700.0,,0.0,,4700.0,,3838.0,,92.0,,3930.0,,157503.0,,405238.0,,378792.0,,26446.0,,,,2568.0,,278.0,,106.0,,44.0,,1949.0,,,,,,, +HI,Hawaii,202102,Y,U,Y,4700.0,,0.0,,4700.0,,3838.0,,92.0,,3930.0,,157503.0,,405238.0,,378792.0,,26446.0,,,,2568.0,,278.0,,106.0,,44.0,,1949.0,,,,,,, +HI,Hawaii,202103,Y,P,N,4458.0,,0.0,,4458.0,,4624.0,,120.0,,4744.0,,158239.0,,411719.0,,385268.0,,26451.0,,,,2568.0,,278.0,,106.0,,44.0,,1949.0,,,,,,, +HI,Hawaii,202103,Y,U,Y,4458.0,,0.0,,4458.0,,4624.0,,120.0,,4744.0,,158239.0,,411719.0,,385268.0,,26451.0,,,,2568.0,,278.0,,106.0,,44.0,,1949.0,,,,,,, +HI,Hawaii,202104,Y,P,N,4131.0,,0.0,,4131.0,,3706.0,,122.0,,3828.0,,158901.0,,415647.0,,389273.0,,26374.0,,,,2978.0,,510.0,,106.0,,30.0,,431.0,,,,,,, +HI,Hawaii,202104,Y,U,Y,4131.0,,0.0,,4131.0,,3706.0,,122.0,,3828.0,,158901.0,,415647.0,,389273.0,,26374.0,,,,2978.0,,510.0,,106.0,,30.0,,431.0,,,,,,, +HI,Hawaii,202105,Y,P,N,3441.0,,0.0,,3441.0,,3178.0,,123.0,,3301.0,,159402.0,,418088.0,,392372.0,,25716.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,202105,Y,U,Y,3441.0,,0.0,,3441.0,,3178.0,,123.0,,3301.0,,159402.0,,418088.0,,392372.0,,25716.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,202106,Y,P,N,3812.0,,0.0,,3812.0,,3298.0,,99.0,,3397.0,,159903.0,,420829.0,,395016.0,,25813.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,202106,Y,U,Y,3812.0,,0.0,,3812.0,,3298.0,,99.0,,3397.0,,159903.0,,420829.0,,395016.0,,25813.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,202107,Y,P,N,3659.0,,0.0,,3659.0,,3494.0,,131.0,,3625.0,,160680.0,,424531.0,,398711.0,,25820.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,202107,Y,U,Y,3659.0,,0.0,,3659.0,,3494.0,,131.0,,3625.0,,160680.0,,424531.0,,398711.0,,25820.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,202108,Y,P,N,4007.0,,0.0,,4007.0,,654.0,,28.0,,682.0,,161299.0,,427508.0,,401632.0,,25876.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,202108,Y,U,Y,4007.0,,0.0,,4007.0,,654.0,,28.0,,682.0,,161299.0,,427508.0,,401632.0,,25876.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,202109,Y,P,N,3848.0,,0.0,,3848.0,,384.0,,13.0,,397.0,,161766.0,,430185.0,,404361.0,,25824.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,202109,Y,U,Y,3848.0,,0.0,,3848.0,,384.0,,13.0,,397.0,,161766.0,,430185.0,,404361.0,,25824.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,202110,Y,P,N,3560.0,,0.0,,3560.0,,3048.0,,93.0,,3141.0,,161790.0,,431196.0,,405493.0,,25703.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,202110,Y,U,Y,3560.0,,0.0,,3560.0,,3048.0,,93.0,,3141.0,,161790.0,,431196.0,,405493.0,,25703.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,202111,Y,P,N,3587.0,,0.0,,3587.0,,3753.0,,161.0,,3914.0,,162191.0,,434403.0,,408658.0,,25745.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,202111,Y,U,Y,3587.0,,0.0,,3587.0,,3753.0,,161.0,,3914.0,,162191.0,,434403.0,,408658.0,,25745.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,202112,Y,P,N,3198.0,,0.0,,3198.0,,3431.0,,146.0,,3577.0,,162525.0,,437335.0,,411604.0,,25731.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,202112,Y,U,Y,3198.0,,0.0,,3198.0,,3431.0,,146.0,,3577.0,,162525.0,,437335.0,,411604.0,,25731.0,,,,,,,,,,,,,,,,,,, +HI,Hawaii,202201,Y,P,N,3314.0,,0.0,,3314.0,,3670.0,,158.0,,3828.0,,163074.0,,440394.0,,414674.0,,25720.0,,,,2651.0,,190.0,,124.0,,20.0,,407.0,,,,,,, +HI,Hawaii,202201,Y,U,Y,3314.0,,0.0,,3314.0,,3670.0,,158.0,,3828.0,,163074.0,,440394.0,,414674.0,,25720.0,,,,2651.0,,190.0,,124.0,,20.0,,407.0,,,,,,, +HI,Hawaii,202202,Y,P,N,2917.0,,0.0,,2917.0,,2698.0,,72.0,,2770.0,,163322.0,,441896.0,,416237.0,,25659.0,,,,1973.0,,106.0,,126.0,,22.0,,428.0,,,,,,, +HI,Hawaii,202202,Y,U,Y,2917.0,,0.0,,2917.0,,2698.0,,72.0,,2770.0,,163322.0,,441896.0,,416237.0,,25659.0,,,,1973.0,,106.0,,126.0,,22.0,,428.0,,,,,,, +HI,Hawaii,202203,Y,P,N,3231.0,,0.0,,3231.0,,2924.0,,80.0,,3004.0,,163827.0,,444463.0,,418854.0,,25609.0,,,,2067.0,,137.0,,280.0,,121.0,,828.0,,,,,,, +HI,Hawaii,202203,Y,U,Y,3231.0,,0.0,,3231.0,,2924.0,,80.0,,3004.0,,163827.0,,444463.0,,418854.0,,25609.0,,,,2067.0,,137.0,,280.0,,121.0,,828.0,,,,,,, +HI,Hawaii,202204,Y,P,N,3021.0,,0.0,,3021.0,,2637.0,,91.0,,2728.0,,164135.0,,446467.0,,420897.0,,25570.0,,,,1940.0,,139.0,,242.0,,39.0,,83.0,,,,,,, +HI,Hawaii,202204,Y,U,Y,3021.0,,0.0,,3021.0,,2637.0,,91.0,,2728.0,,164135.0,,446467.0,,420897.0,,25570.0,,,,1940.0,,139.0,,242.0,,39.0,,83.0,,,,,,, +HI,Hawaii,202205,Y,P,N,2971.0,,0.0,,2971.0,,2724.0,,97.0,,2821.0,,164261.0,,448383.0,,423134.0,,25249.0,,,,1890.0,,158.0,,270.0,,33.0,,83.0,,,,,,, +HI,Hawaii,202205,Y,U,Y,2971.0,,0.0,,2971.0,,2724.0,,97.0,,2821.0,,164261.0,,448383.0,,423134.0,,25249.0,,,,1890.0,,158.0,,270.0,,33.0,,83.0,,,,,,, +HI,Hawaii,202206,Y,P,N,2994.0,,0.0,,2994.0,,2900.0,,109.0,,3009.0,,164470.0,,450481.0,,425511.0,,24970.0,,,,2014.0,,132.0,,208.0,,22.0,,35.0,,,,,,, +HI,Hawaii,202206,Y,U,Y,2994.0,,0.0,,2994.0,,2900.0,,109.0,,3009.0,,164470.0,,450481.0,,425511.0,,24970.0,,,,2014.0,,132.0,,208.0,,22.0,,35.0,,,,,,, +HI,Hawaii,202207,Y,P,N,3045.0,,0.0,,3045.0,,3060.0,,117.0,,3177.0,,164991.0,,452696.0,,427937.0,,24759.0,,,,2067.0,,209.0,,262.0,,17.0,,55.0,,,,,,, +HI,Hawaii,202207,Y,U,Y,3045.0,,0.0,,3045.0,,3060.0,,117.0,,3177.0,,164991.0,,452696.0,,427937.0,,24759.0,,,,2067.0,,209.0,,262.0,,17.0,,55.0,,,,,,, +HI,Hawaii,202208,Y,P,N,3343.0,,0.0,,3343.0,,3438.0,,132.0,,3570.0,,165529.0,,454990.0,,430360.0,,24630.0,,,,2197.0,,256.0,,240.0,,27.0,,101.0,,,,,,, +HI,Hawaii,202208,Y,U,Y,3343.0,,0.0,,3343.0,,3438.0,,132.0,,3570.0,,165529.0,,454990.0,,430360.0,,24630.0,,,,2197.0,,256.0,,240.0,,27.0,,101.0,,,,,,, +HI,Hawaii,202209,Y,P,N,2978.0,,0.0,,2978.0,,3452.0,,91.0,,3543.0,,165073.0,,456658.0,,432878.0,,23780.0,,,,2002.0,,176.0,,229.0,,23.0,,152.0,,,,,,, +HI,Hawaii,202209,Y,U,Y,2978.0,,0.0,,2978.0,,3452.0,,91.0,,3543.0,,165073.0,,456658.0,,432878.0,,23780.0,,,,2002.0,,176.0,,229.0,,23.0,,152.0,,,,,,, +HI,Hawaii,202210,Y,P,N,2887.0,,0.0,,2887.0,,2737.0,,101.0,,2838.0,,163844.0,,453026.0,,429529.0,,23497.0,,,,1847.0,,148.0,,341.0,,64.0,,114.0,,,,,,, +HI,Hawaii,202210,Y,U,Y,2887.0,,0.0,,2887.0,,2737.0,,101.0,,2838.0,,163951.0,,453133.0,,429635.0,,23498.0,,,,1847.0,,148.0,,341.0,,64.0,,114.0,,,,,,, +HI,Hawaii,202211,Y,P,N,2807.0,,0.0,,2807.0,,3147.0,,158.0,,3305.0,,164259.0,,455425.0,,431737.0,,23688.0,,,,2770.0,,136.0,,293.0,,20.0,,58.0,,,,,,, +HI,Hawaii,202211,Y,U,Y,2807.0,,0.0,,2807.0,,3147.0,,158.0,,3305.0,,164367.0,,455533.0,,431843.0,,23690.0,,,,2770.0,,136.0,,293.0,,20.0,,58.0,,,,,,, +HI,Hawaii,202212,Y,P,N,2429.0,,0.0,,2429.0,,3350.0,,152.0,,3502.0,,165137.0,,459131.0,,435317.0,,23814.0,,,,2783.0,,150.0,,478.0,,55.0,,179.0,,,,,,, +HI,Hawaii,202212,Y,U,Y,2429.0,,0.0,,2429.0,,3350.0,,152.0,,3502.0,,165267.0,,459261.0,,435444.0,,23817.0,,,,2783.0,,150.0,,478.0,,55.0,,179.0,,,,,,, +HI,Hawaii,202301,Y,P,N,2867.0,,0.0,,2867.0,,3313.0,,146.0,,3459.0,,165644.0,,461869.0,,437833.0,,24036.0,,,,2325.0,,125.0,,382.0,,73.0,,147.0,,,,,,, +HI,Hawaii,202301,Y,U,Y,2867.0,,0.0,,2867.0,,3313.0,,146.0,,3459.0,,165765.0,,461990.0,,437951.0,,24039.0,,,,2325.0,,125.0,,382.0,,73.0,,147.0,,,,,,, +HI,Hawaii,202302,Y,P,N,2595.0,,0.0,,2595.0,,2501.0,,55.0,,2556.0,,165988.0,,463733.0,,439573.0,,24160.0,,,,1753.0,,98.0,,239.0,,58.0,,48.0,,,,,,, +HI,Hawaii,202302,Y,U,Y,2595.0,,0.0,,2595.0,,2501.0,,55.0,,2556.0,,166097.0,,463842.0,,439682.0,,24160.0,,,,1753.0,,98.0,,239.0,,58.0,,48.0,,,,,,, +HI,Hawaii,202303,Y,P,N,2912.0,,0.0,,2912.0,,2624.0,,70.0,,2694.0,,166299.0,,465379.0,,441198.0,,24181.0,,,,1953.0,,80.0,,257.0,,31.0,,34.0,,20639.0,,2.0,Call centers offer callbacks; Does not include all calls received after business hours,0.09,Does not include all calls received after business hours +HI,Hawaii,202303,Y,U,Y,2912.0,,0.0,,2912.0,,2624.0,,70.0,,2694.0,,166394.0,,465474.0,,441293.0,,24181.0,,,,1953.0,,80.0,,257.0,,31.0,,34.0,,20639.0,,2.0,Call centers offer callbacks; Does not include all calls received after business hours,0.09,Does not include all calls received after business hours +HI,Hawaii,202304,Y,P,N,2484.0,,0.0,,2484.0,,2719.0,,114.0,,2833.0,,164735.0,,461367.0,,437293.0,,24074.0,,,,1378.0,,141.0,,187.0,,27.0,,46.0,,18519.0,,5.0,Call centers offer callbacks; Does not include all calls received after business hours,0.17,Does not include all calls received after business hours +HI,Hawaii,202304,Y,U,Y,2484.0,,0.0,,2484.0,,2719.0,,114.0,,2833.0,,164872.0,,461504.0,,437427.0,,24077.0,,,,1378.0,,141.0,,187.0,,27.0,,46.0,,18519.0,,5.0,Call centers offer callbacks; Does not include all calls received after business hours,0.17,Does not include all calls received after business hours +HI,Hawaii,202305,Y,P,N,2614.0,,0.0,,2614.0,,2930.0,,120.0,,3050.0,,164500.0,,461170.0,,437260.0,,23910.0,,,,1461.0,,121.0,,347.0,,42.0,,24.0,,19342.0,,7.0,Call centers offer callbacks; Does not include all calls received after business hours,0.3,Does not include all calls received after business hours +HI,Hawaii,202305,Y,U,Y,2614.0,,0.0,,2614.0,,2930.0,,120.0,,3050.0,,164679.0,,461349.0,,437439.0,,23910.0,,,,1461.0,,121.0,,347.0,,42.0,,24.0,,19342.0,,7.0,Call centers offer callbacks; Does not include all calls received after business hours,0.3,Does not include all calls received after business hours +HI,Hawaii,202306,Y,P,N,2650.0,,0.0,,2650.0,,3229.0,,126.0,,3355.0,,156429.0,,443463.0,,420501.0,,22962.0,,,,1616.0,,116.0,,714.0,,42.0,,62.0,,19210.0,,13.0,Call centers offer callbacks; Does not include all calls received after business hours,0.43,Does not include all calls received after business hours +HI,Hawaii,202306,Y,U,Y,2650.0,,0.0,,2650.0,,3229.0,,126.0,,3355.0,,156587.0,,443621.0,,420657.0,,22964.0,,,,1616.0,,116.0,,714.0,,42.0,,62.0,,19210.0,,13.0,Call centers offer callbacks; Does not include all calls received after business hours,0.43,Does not include all calls received after business hours +HI,Hawaii,202307,Y,P,N,2923.0,,0.0,,2923.0,,4491.0,,289.0,,4780.0,,154964.0,,438044.0,,415111.0,,22933.0,,,,1448.0,,732.0,,819.0,,32.0,,80.0,,11695.0,,21.0,Call centers offer callbacks; Does not include all calls received after business hours,0.33,Does not include all calls received after business hours +HI,Hawaii,202307,Y,U,Y,2923.0,,0.0,,2923.0,,4491.0,,289.0,,4780.0,,155114.0,,438194.0,,415259.0,,22935.0,,,,1448.0,,732.0,,819.0,,32.0,,80.0,,11695.0,,21.0,Call centers offer callbacks; Does not include all calls received after business hours,0.33,Does not include all calls received after business hours +HI,Hawaii,202308,Y,P,N,3440.0,,0.0,,3440.0,,4721.0,,217.0,,4938.0,,154881.0,,437191.0,,414359.0,,22832.0,,,,2153.0,,425.0,,868.0,,44.0,,57.0,,41395.0,,11.0,Call centers offer callbacks; Does not include all calls received after business hours,0.32,Does not include all calls received after business hours +HI,Hawaii,202308,Y,U,Y,3440.0,,0.0,,3440.0,,4721.0,,217.0,,4938.0,,155080.0,,437390.0,,414555.0,,22835.0,,,,2153.0,,425.0,,868.0,,44.0,,57.0,,41395.0,,11.0,Call centers offer callbacks; Does not include all calls received after business hours,0.32,Does not include all calls received after business hours +HI,Hawaii,202309,Y,P,N,3078.0,,0.0,,3078.0,,2776.0,,128.0,,2904.0,,163742.0,,454777.0,,430784.0,,23993.0,,,,1029.0,,106.0,,663.0,,46.0,,39.0,,28222.0,,15.0,Call centers offer callbacks; Does not include all calls received after business hours,0.32,Does not include all calls received after business hours +HI,Hawaii,202309,Y,U,Y,3078.0,,0.0,,3078.0,,2776.0,,128.0,,2904.0,,163939.0,,454974.0,,430981.0,,23993.0,,,,1029.0,,106.0,,663.0,,46.0,,39.0,,28222.0,,15.0,Call centers offer callbacks; Does not include all calls received after business hours,0.32,Does not include all calls received after business hours +HI,Hawaii,202310,Y,P,N,3037.0,,0.0,,3037.0,,3475.0,,137.0,,3612.0,,165805.0,,463294.0,,439319.0,,23975.0,,,,983.0,,106.0,,70.0,,30.0,,68.0,,20665.0,,2.0,Call centers offer callbacks; Does not include all calls received after business hours,0.17,Does not include all calls received after business hours +HI,Hawaii,202310,Y,U,Y,3037.0,,0.0,,3037.0,,3475.0,,137.0,,3612.0,,165955.0,,463445.0,,439468.0,,23977.0,,,,983.0,,106.0,,70.0,,30.0,,68.0,,20665.0,,2.0,Call centers offer callbacks; Does not include all calls received after business hours,0.17,Does not include all calls received after business hours +HI,Hawaii,202311,Y,P,N,2897.0,,0.0,,2897.0,,3087.0,,183.0,,3270.0,,166328.0,,465871.0,,441904.0,,23967.0,,,,1769.0,,186.0,,91.0,,40.0,,68.0,,17778.0,,3.0,Call centers offer callbacks; Does not include all calls received after business hours,0.15,Does not include all calls received after business hours +HI,Hawaii,202311,Y,U,Y,2897.0,,0.0,,2897.0,,3087.0,,183.0,,3270.0,,166464.0,,466007.0,,442037.0,,23970.0,,,,1769.0,,186.0,,91.0,,40.0,,68.0,,17778.0,,3.0,Call centers offer callbacks; Does not include all calls received after business hours,0.15,Does not include all calls received after business hours +HI,Hawaii,202312,Y,P,N,2516.0,,0.0,,2516.0,,3100.0,,150.0,,3250.0,,166789.0,,469156.0,,445153.0,,24003.0,,,,2044.0,,117.0,,119.0,,33.0,,63.0,,18437.0,,11.0,Call centers offer callbacks; Does not include all calls received after business hours,0.23,Does not include all calls received after business hours +HI,Hawaii,202312,Y,U,Y,2516.0,,0.0,,2516.0,,3100.0,,150.0,,3250.0,,166934.0,,469301.0,,445297.0,,24004.0,,,,2044.0,,117.0,,119.0,,33.0,,63.0,,18437.0,,11.0,Call centers offer callbacks; Does not include all calls received after business hours,0.23,Does not include all calls received after business hours +HI,Hawaii,202401,Y,P,N,2894.0,,0.0,,2894.0,,2822.0,,109.0,,2931.0,,166094.0,,466437.0,,442471.0,,23966.0,,,,1395.0,,88.0,,75.0,,41.0,,92.0,,22981.0,,7.0,Call centers offer callbacks; Does not include all calls received after business hours,0.15,Does not include all calls received after business hours +HI,Hawaii,202401,Y,U,Y,2894.0,,0.0,,2894.0,,2822.0,,109.0,,2931.0,,166226.0,,466569.0,,442603.0,,23966.0,,,,1395.0,,88.0,,75.0,,41.0,,92.0,,22981.0,,7.0,Call centers offer callbacks; Does not include all calls received after business hours,0.15,Does not include all calls received after business hours +HI,Hawaii,202402,Y,P,N,2542.0,,0.0,,2542.0,,2132.0,,99.0,,2231.0,,164743.0,,461532.0,,437669.0,,23863.0,,,,804.0,,46.0,,55.0,,21.0,,68.0,,22123.0,,4.0,Call centers offer callbacks; Does not include all calls received after business hours,0.24,Does not include all calls received after business hours +HI,Hawaii,202402,Y,U,Y,2542.0,,0.0,,2542.0,,2132.0,,99.0,,2231.0,,164881.0,,461670.0,,437806.0,,23864.0,,,,804.0,,46.0,,55.0,,21.0,,68.0,,22123.0,,4.0,Call centers offer callbacks; Does not include all calls received after business hours,0.24,Does not include all calls received after business hours +HI,Hawaii,202403,Y,P,N,2617.0,,0.0,,2617.0,,2218.0,,64.0,,2282.0,,163419.0,,455390.0,,431747.0,,23643.0,,,,841.0,,53.0,,72.0,,21.0,,71.0,,23238.0,,11.0,Call centers offer callbacks; Does not include all calls received after business hours,0.19,Does not include all calls received after business hours +HI,Hawaii,202403,Y,U,Y,2617.0,,0.0,,2617.0,,2218.0,,64.0,,2282.0,,163567.0,,455538.0,,431894.0,,23644.0,,,,841.0,,53.0,,72.0,,21.0,,71.0,,23238.0,,11.0,Call centers offer callbacks; Does not include all calls received after business hours,0.19,Does not include all calls received after business hours +HI,Hawaii,202404,Y,P,N,2890.0,,0.0,,2890.0,,2439.0,,71.0,,2510.0,,160590.0,,443802.0,,420454.0,,23348.0,,,,924.0,,77.0,,75.0,,17.0,,166.0,,36094.0,,15.0,Call centers offer callbacks; Does not include all calls received after business hours,0.24,Does not include all calls received after business hours +HI,Hawaii,202404,Y,U,Y,2890.0,,0.0,,2890.0,,2439.0,,71.0,,2510.0,,160740.0,,443952.0,,420603.0,,23349.0,,,,924.0,,77.0,,75.0,,17.0,,166.0,,36094.0,,15.0,Call centers offer callbacks; Does not include all calls received after business hours,0.24,Does not include all calls received after business hours +HI,Hawaii,202405,Y,P,N,3071.0,,0.0,,3071.0,,2278.0,,80.0,,2358.0,,157810.0,,429832.0,,407141.0,,22691.0,,,,866.0,,46.0,,69.0,,28.0,,200.0,,33097.0,,9.0,Call centers offer callbacks; Does not include all calls received after business hours,0.38,Does not include all calls received after business hours +HI,Hawaii,202405,Y,U,Y,3071.0,,0.0,,3071.0,,2278.0,,80.0,,2358.0,,157954.0,,429976.0,,407281.0,,22695.0,,,,866.0,,46.0,,69.0,,28.0,,200.0,,33097.0,,9.0,Call centers offer callbacks; Does not include all calls received after business hours,0.38,Does not include all calls received after business hours +HI,Hawaii,202406,Y,P,N,3345.0,,0.0,,3345.0,,2313.0,,91.0,,2404.0,,154935.0,,419168.0,,397086.0,,22082.0,,,,796.0,,111.0,,70.0,,21.0,,305.0,,28880.0,,8.0,Call centers offer callbacks; Does not include all calls received after business hours,0.24,Does not include all calls received after business hours +HI,Hawaii,202406,Y,U,Y,3345.0,,0.0,,3345.0,,2313.0,,91.0,,2404.0,,155103.0,,419336.0,,397252.0,,22084.0,,,,796.0,,111.0,,70.0,,21.0,,305.0,,28880.0,,8.0,Call centers offer callbacks; Does not include all calls received after business hours,0.24,Does not include all calls received after business hours +HI,Hawaii,202407,Y,P,N,4046.0,,0.0,,4046.0,,2712.0,,124.0,,2836.0,,152549.0,,407427.0,,386151.0,,21276.0,,254878.0,,758.0,,108.0,,101.0,,22.0,,354.0,,29453.0,,11.0,Call centers offer callbacks; Does not include all calls received after business hours,0.25,Does not include all calls received after business hours +HI,Hawaii,202407,Y,U,Y,4046.0,,0.0,,4046.0,,2712.0,,124.0,,2836.0,,152674.0,,407552.0,,386276.0,,21276.0,,254878.0,,758.0,,108.0,,101.0,,22.0,,354.0,,29453.0,,11.0,Call centers offer callbacks; Does not include all calls received after business hours,0.25,Does not include all calls received after business hours +HI,Hawaii,202408,Y,P,N,3762.0,,0.0,,3762.0,,3130.0,,199.0,,3329.0,,151682.0,,402418.0,,381039.0,,21379.0,,250736.0,,742.0,,104.0,,313.0,,99.0,,271.0,,28236.0,,9.0,Call centers offer callbacks; Does not include all calls received after business hours,0.23,Does not include all calls received after business hours +HI,Hawaii,202408,Y,U,Y,3762.0,,0.0,,3762.0,,3130.0,,199.0,,3329.0,,151858.0,,402594.0,,381214.0,,21380.0,,250736.0,,742.0,,104.0,,313.0,,99.0,,271.0,,28236.0,,9.0,Call centers offer callbacks; Does not include all calls received after business hours,0.23,Does not include all calls received after business hours +HI,Hawaii,202409,Y,P,N,3798.0,,0.0,,3798.0,,3186.0,,150.0,,3336.0,,152354.0,,402926.0,,381218.0,,21708.0,,250572.0,,865.0,,60.0,,308.0,,33.0,,213.0,,27781.0,,39.0,Call centers offer callbacks; Does not include all calls received after business hours,0.28,Does not include all calls received after business hours +HI,Hawaii,202409,Y,U,Y,3798.0,,0.0,,3798.0,,3186.0,,150.0,,3336.0,,152536.0,,403108.0,,381399.0,,21709.0,,250572.0,,865.0,,60.0,,308.0,,33.0,,213.0,,27781.0,,39.0,Call centers offer callbacks; Does not include all calls received after business hours,0.28,Does not include all calls received after business hours +HI,Hawaii,202410,Y,P,N,3721.0,,0.0,,3721.0,,3480.0,,144.0,,3624.0,,152855.0,,402818.0,,380759.0,,22059.0,,249963.0,,1036.0,,54.0,,362.0,,17.0,,261.0,,26644.0,,32.0,Call centers offer callbacks; Does not include all calls received after business hours,0.17,Does not include all calls received after business hours +HI,Hawaii,202410,Y,U,Y,3721.0,,0.0,,3721.0,,3480.0,,144.0,,3624.0,,152999.0,,402962.0,,380902.0,,22060.0,,249963.0,,1036.0,,54.0,,362.0,,17.0,,261.0,,26644.0,,32.0,Call centers offer callbacks; Does not include all calls received after business hours,0.17,Does not include all calls received after business hours +HI,Hawaii,202411,Y,P,N,3442.0,,0.0,,3442.0,,4194.0,,266.0,,4460.0,,153492.0,,403126.0,,380931.0,,22195.0,,249634.0,,2365.0,,64.0,,431.0,,22.0,,211.0,,20163.0,,11.0,Call centers offer callbacks; Does not include all calls received after business hours,0.23,Does not include all calls received after business hours +HI,Hawaii,202411,Y,U,Y,3442.0,,0.0,,3442.0,,4194.0,,266.0,,4460.0,,153615.0,,403249.0,,381053.0,,22196.0,,249634.0,,2365.0,,64.0,,431.0,,22.0,,211.0,,20163.0,,11.0,Call centers offer callbacks; Does not include all calls received after business hours,0.23,Does not include all calls received after business hours +HI,Hawaii,202412,Y,P,N,3335.0,,0.0,,3335.0,,5806.0,,327.0,,6133.0,,151314.0,,398380.0,,376318.0,,22062.0,,247066.0,,3381.0,,182.0,,578.0,,39.0,,234.0,,19553.0,,5.0,Call centers offer callbacks; Does not include all calls received after business hours,0.18,Does not include all calls received after business hours +HI,Hawaii,202412,Y,U,Y,3335.0,,0.0,,3335.0,,5806.0,,327.0,,6133.0,,151438.0,,398504.0,,376437.0,,22067.0,,247066.0,,3381.0,,182.0,,578.0,,39.0,,234.0,,19553.0,,5.0,Call centers offer callbacks; Does not include all calls received after business hours,0.18,Does not include all calls received after business hours +HI,Hawaii,202501,Y,P,N,3964.0,,0.0,,3964.0,,5797.0,,275.0,,6072.0,,154859.0,,404446.0,,381226.0,,23220.0,,249587.0,,2880.0,,100.0,,492.0,,53.0,,162.0,,23039.0,,22.0,Call centers offer callbacks; Does not include all calls received after business hours,0.22,Does not include all calls received after business hours +HI,Hawaii,202501,Y,U,Y,3964.0,,0.0,,3964.0,,5797.0,,275.0,,6072.0,,154938.0,,404525.0,,381302.0,,23223.0,,249587.0,,2880.0,,100.0,,492.0,,53.0,,162.0,,23039.0,,22.0,Call centers offer callbacks; Does not include all calls received after business hours,0.22,Does not include all calls received after business hours +HI,Hawaii,202502,Y,P,N,2956.0,,0.0,,2956.0,,4230.0,,216.0,,4446.0,,154805.0,Includes Retroactive Enrollments,403358.0,Includes Retroactive Enrollments,379898.0,Includes Retroactive Enrollments,23460.0,Includes Retroactive Enrollments,248553.0,Includes Retroactive Enrollments,1533.0,,445.0,,584.0,,54.0,,166.0,,19830.0,,13.0,Call centers offer callbacks; Does not include all calls received after business hours,0.23,Does not include all calls received after business hours +HI,Hawaii,202502,Y,U,Y,2956.0,,0.0,,2956.0,,4230.0,,216.0,,4446.0,,154869.0,Includes Retroactive Enrollments,403422.0,Includes Retroactive Enrollments,379959.0,Includes Retroactive Enrollments,23463.0,Includes Retroactive Enrollments,248553.0,Includes Retroactive Enrollments,1533.0,,445.0,,584.0,,54.0,,166.0,,19830.0,,13.0,Call centers offer callbacks; Does not include all calls received after business hours,0.23,Does not include all calls received after business hours +HI,Hawaii,202503,Y,P,N,3627.0,,0.0,,3627.0,,4410.0,,186.0,,4596.0,,154472.0,Includes Retroactive Enrollments,401395.0,Includes Retroactive Enrollments,377913.0,Includes Retroactive Enrollments,23482.0,Includes Retroactive Enrollments,246923.0,Includes Retroactive Enrollments,2021.0,,110.0,,387.0,,46.0,,66.0,,19526.0,,1.0,Call centers offer callbacks; Does not include all calls received after business hours,0.12,Does not include all calls received after business hours +HI,Hawaii,202503,Y,U,Y,3627.0,,0.0,,3627.0,,4410.0,,186.0,,4596.0,,154557.0,Includes Retroactive Enrollments,401480.0,Includes Retroactive Enrollments,377995.0,Includes Retroactive Enrollments,23485.0,Includes Retroactive Enrollments,246923.0,Includes Retroactive Enrollments,2021.0,,110.0,,387.0,,46.0,,66.0,,19526.0,,1.0,Call centers offer callbacks; Does not include all calls received after business hours,0.12,Does not include all calls received after business hours +HI,Hawaii,202504,Y,P,N,3696.0,,0.0,,3696.0,,4699.0,,224.0,,4923.0,,154209.0,Includes Retroactive Enrollments,399328.0,Includes Retroactive Enrollments,375631.0,Includes Retroactive Enrollments,23697.0,Includes Retroactive Enrollments,245119.0,Includes Retroactive Enrollments,2071.0,,146.0,,401.0,,25.0,,70.0,,30205.0,,8.0,Call centers offer callbacks; Does not include all calls received after business hours,0.23,Does not include all calls received after business hours +HI,Hawaii,202504,Y,U,Y,3696.0,,0.0,,3696.0,,4699.0,,224.0,,4923.0,,154292.0,Includes Retroactive Enrollments,399412.0,Includes Retroactive Enrollments,375712.0,Includes Retroactive Enrollments,23700.0,Includes Retroactive Enrollments,245120.0,Includes Retroactive Enrollments,2071.0,,146.0,,401.0,,25.0,,70.0,,30205.0,,8.0,Call centers offer callbacks; Does not include all calls received after business hours,0.23,Does not include all calls received after business hours +HI,Hawaii,202505,Y,P,N,3574.0,,0.0,,3574.0,,4534.0,,205.0,,4739.0,,153317.0,Includes Retroactive Enrollments,395749.0,Includes Retroactive Enrollments,372067.0,Includes Retroactive Enrollments,23682.0,Includes Retroactive Enrollments,242432.0,Includes Retroactive Enrollments,2017.0,,150.0,,358.0,,38.0,,52.0,,18587.0,,7.0,Call centers offer callbacks; Does not include all calls received after business hours,0.22,Does not include all calls received after business hours +HI,Hawaii,202505,Y,U,Y,3574.0,,0.0,,3574.0,,4534.0,,205.0,,4739.0,,153441.0,Includes Retroactive Enrollments,395873.0,Includes Retroactive Enrollments,372190.0,Includes Retroactive Enrollments,23683.0,Includes Retroactive Enrollments,242432.0,Includes Retroactive Enrollments,2017.0,,150.0,,358.0,,38.0,,52.0,,18587.0,,7.0,Call centers offer callbacks; Does not include all calls received after business hours,0.22,Does not include all calls received after business hours +HI,Hawaii,202506,Y,P,N,3544.0,,0.0,,3544.0,,4460.0,,188.0,,4648.0,,152469.0,Includes Retroactive Enrollments,393950.0,Includes Retroactive Enrollments,370377.0,Includes Retroactive Enrollments,23573.0,Includes Retroactive Enrollments,241481.0,Includes Retroactive Enrollments,2084.0,,123.0,,333.0,,25.0,,66.0,,16958.0,,5.0,Call centers offer callbacks; Does not include all calls received after business hours,0.19,Does not include all calls received after business hours +HI,Hawaii,202506,Y,U,Y,3544.0,,0.0,,3544.0,,4460.0,,188.0,,4648.0,,152564.0,Includes Retroactive Enrollments,394045.0,Includes Retroactive Enrollments,370469.0,Includes Retroactive Enrollments,23576.0,Includes Retroactive Enrollments,241481.0,Includes Retroactive Enrollments,2084.0,,123.0,,333.0,,25.0,,66.0,,16958.0,,5.0,Call centers offer callbacks; Does not include all calls received after business hours,0.19,Does not include all calls received after business hours +HI,Hawaii,202507,Y,P,N,3222.0,,0.0,,3222.0,,2936.0,,173.0,,3109.0,,152235.0,Includes Retroactive Enrollments,392838.0,Includes Retroactive Enrollments,369289.0,Includes Retroactive Enrollments,23549.0,Includes Retroactive Enrollments,240603.0,Includes Retroactive Enrollments,2402.0,,123.0,,364.0,,31.0,,24.0,,20983.0,,9.0,Call centers offer callbacks; Does not include all calls received after business hours,0.23,Does not include all calls received after business hours +HI,Hawaii,202507,Y,U,Y,3222.0,,0.0,,3222.0,,2936.0,,173.0,,3109.0,,152335.0,Includes Retroactive Enrollments,392938.0,Includes Retroactive Enrollments,369385.0,Includes Retroactive Enrollments,23553.0,Includes Retroactive Enrollments,240603.0,Includes Retroactive Enrollments,2402.0,,123.0,,364.0,,31.0,,24.0,,20983.0,,9.0,Call centers offer callbacks; Does not include all calls received after business hours,0.23,Does not include all calls received after business hours +HI,Hawaii,202508,Y,P,N,3575.0,,0.0,,3575.0,,4093.0,,247.0,,4340.0,,152285.0,Includes Retroactive Enrollments,391572.0,Includes Retroactive Enrollments,367869.0,Includes Retroactive Enrollments,23703.0,Includes Retroactive Enrollments,239287.0,Includes Retroactive Enrollments,2433.0,,95.0,,397.0,,31.0,,35.0,,24004.0,,23.0,Call centers offer callbacks; Does not include all calls received after business hours,0.26,Does not include all calls received after business hours +HI,Hawaii,202508,Y,U,Y,3575.0,,0.0,,3575.0,,4093.0,,247.0,,4340.0,,152403.0,Includes Retroactive Enrollments,391691.0,Includes Retroactive Enrollments,367988.0,Includes Retroactive Enrollments,23703.0,Includes Retroactive Enrollments,239288.0,Includes Retroactive Enrollments,2433.0,,95.0,,397.0,,31.0,,35.0,,24004.0,,23.0,Call centers offer callbacks; Does not include all calls received after business hours,0.26,Does not include all calls received after business hours +HI,Hawaii,202509,Y,P,N,4117.0,,0.0,,4117.0,,4615.0,,250.0,,4865.0,,152458.0,Includes Retroactive Enrollments,390181.0,Includes Retroactive Enrollments,366223.0,Includes Retroactive Enrollments,23958.0,Includes Retroactive Enrollments,237723.0,Includes Retroactive Enrollments,2538.0,,108.0,,373.0,,44.0,,29.0,,27107.0,,29.0,Call centers offer callbacks; Does not include all calls received after business hours,0.26,Does not include all calls received after business hours +HI,Hawaii,202509,Y,U,Y,4117.0,,0.0,,4117.0,,4615.0,,250.0,,4865.0,,152558.0,Includes Retroactive Enrollments,390360.0,Includes Retroactive Enrollments,366401.0,Includes Retroactive Enrollments,23959.0,Includes Retroactive Enrollments,237802.0,Includes Retroactive Enrollments,2538.0,,108.0,,373.0,,44.0,,29.0,,27107.0,,29.0,Call centers offer callbacks; Does not include all calls received after business hours,0.26,Does not include all calls received after business hours +HI,Hawaii,202510,Y,P,N,3949.0,,0.0,,3949.0,,4585.0,,197.0,,4782.0,,152533.0,Includes Retroactive Enrollments,389941.0,Includes Retroactive Enrollments,365871.0,Includes Retroactive Enrollments,24070.0,Includes Retroactive Enrollments,237408.0,Includes Retroactive Enrollments,2479.0,,84.0,,429.0,,67.0,,45.0,,26614.0,,42.0,Call centers offer callbacks; Does not include all calls received after business hours,0.25,Does not include all calls received after business hours +IA,Iowa,201309,N,U,Y,,,,,,,,,,,,,,,493515.0,,,,,,,,,,,,,,,,,,,,,,, +IA,Iowa,201706,Y,P,N,15102.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,15102.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,3013.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,0.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,3013.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,327307.0,,649088.0,,585696.0,,63392.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,201706,Y,U,Y,15102.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,15102.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,3013.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,0.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,3013.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,327307.0,,649088.0,,585696.0,,63392.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,201707,Y,P,N,16281.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,16281.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,2814.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,0.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,2814.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,327846.0,,649401.0,,586034.0,,63367.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,201707,Y,U,Y,16281.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,16281.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,2814.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,0.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,2814.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,327846.0,,649401.0,,586034.0,,63367.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,201708,Y,P,N,18347.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,18347.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,3295.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,0.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,3295.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,327747.0,,647094.0,,583122.0,,63972.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,201708,Y,U,Y,18347.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,18347.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,3295.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,0.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,3295.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,327747.0,,647094.0,,583122.0,,63972.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,201709,Y,P,N,16334.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,16334.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,3086.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,0.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,3086.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,325753.0,,641863.0,,578621.0,,63242.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,201709,Y,U,Y,16334.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,16334.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,3086.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,0.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,3086.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,325753.0,,641863.0,,578621.0,,63242.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,201710,Y,P,N,17347.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,17347.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,3264.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,0.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,3264.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,323798.0,,637244.0,,573307.0,,63937.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,201710,Y,U,Y,17347.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,17347.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,3264.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,0.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,3264.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,323798.0,,637244.0,,573307.0,,63937.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,201711,Y,P,N,16386.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,16386.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,2856.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,0.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,2856.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,324011.0,,638799.0,,573782.0,,65017.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,201711,Y,U,Y,16386.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,16386.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,2856.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,0.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,2856.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,324011.0,,638799.0,,573782.0,,65017.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,201712,Y,P,N,15380.0,,0.0,,15380.0,,2622.0,,0.0,,2622.0,,326299.0,,644917.0,,577721.0,,67196.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,201712,Y,U,Y,15380.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,15380.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,2622.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,0.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,2622.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,326299.0,,644917.0,,577721.0,,67196.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,201801,Y,P,N,16566.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,16566.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,3038.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,0.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,3038.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,327933.0,,648396.0,,579620.0,,68776.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,201801,Y,U,Y,16566.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,16566.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,3038.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,0.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,3038.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,327933.0,,648396.0,,579620.0,,68776.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,201802,Y,P,N,14452.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,14452.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,2829.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,0.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,2829.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,328744.0,,650690.0,,581751.0,,68939.0,,,,2335.0,,7800.0,,10204.0,,922.0,,663.0,,,,,,, +IA,Iowa,201802,Y,U,Y,14452.0,,0.0,,14452.0,,2829.0,,0.0,,2829.0,,328744.0,,650690.0,,581751.0,,68939.0,,,,2335.0,,7800.0,,10204.0,,922.0,,663.0,,,,,,, +IA,Iowa,201803,Y,P,N,14722.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,14722.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,2495.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,0.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,2495.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,329601.0,,653849.0,,584237.0,,69612.0,,,,2814.0,,9358.0,,9693.0,,574.0,,429.0,,,,,,, +IA,Iowa,201803,Y,U,Y,14722.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,14722.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,2495.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,0.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,2495.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,329601.0,,653849.0,,584237.0,,69612.0,,,,2814.0,,9358.0,,9693.0,,574.0,,429.0,,,,,,, +IA,Iowa,201804,Y,P,N,14355.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,14355.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,1321.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,0.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,1321.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,330180.0,,655571.0,,585243.0,,70328.0,,,,5548.0,,12705.0,,10879.0,,783.0,,510.0,,,,,,, +IA,Iowa,201804,Y,U,Y,14355.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,14355.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,1321.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,0.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,1321.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,330180.0,,655571.0,,585243.0,,70328.0,,,,5548.0,,12705.0,,10879.0,,783.0,,510.0,,,,,,, +IA,Iowa,201805,Y,P,N,13472.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,13472.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,1328.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,0.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,1328.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,331427.0,,658491.0,,587547.0,,70944.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,201805,Y,U,Y,13472.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,13472.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,1328.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,0.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,1328.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,331427.0,,658491.0,,587547.0,,70944.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,201806,Y,P,N,13067.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,13067.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,1195.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,0.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,1195.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,332348.0,,661148.0,,589778.0,,71370.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,201806,Y,U,Y,13067.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,13067.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,1195.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,0.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,1195.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,332348.0,,661148.0,,589778.0,,71370.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,201807,Y,P,N,12257.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,12257.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,1413.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,0.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,1413.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,333170.0,,662978.0,,591447.0,,71531.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,201807,Y,U,Y,14283.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,14283.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,1413.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,0.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,1413.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,333170.0,,662978.0,,591447.0,,71531.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,201808,Y,P,N,15430.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,15430.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,1029.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,0.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,1029.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,335003.0,,667019.0,,595556.0,,71463.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,201808,Y,U,Y,15430.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,15430.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,1029.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,0.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,1029.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,335003.0,,667019.0,,595556.0,,71463.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,201809,Y,P,N,13062.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,13062.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,1305.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,0.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,1305.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,335304.0,,668278.0,,596530.0,,71748.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,201809,Y,U,Y,13306.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,13306.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,1305.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,0.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,1305.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,335304.0,,668278.0,,596530.0,,71748.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,201810,Y,P,N,15709.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,15709.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,1487.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,0.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,1487.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,336772.0,,670980.0,,598693.0,,72287.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,201810,Y,U,Y,16114.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,16114.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,1487.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,0.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,1487.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,336772.0,,670980.0,,598693.0,,72287.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,201811,Y,P,N,14435.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,14435.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,1181.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,0.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,1181.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,336411.0,,672057.0,,599373.0,,72684.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,201811,Y,U,Y,14729.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,14729.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,1181.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,0.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,1181.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,336411.0,,672057.0,,599373.0,,72684.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,201812,Y,P,N,13165.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,13165.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,1222.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,0.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,1222.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,331003.0,,682344.0,,611157.0,,71187.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,201812,Y,U,Y,13580.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,13580.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,1222.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,0.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,1222.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,336471.0,,673062.0,,600368.0,,72694.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,201901,Y,P,N,14666.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,14666.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,1287.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,0.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,1287.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,331233.0,,683137.0,,611840.0,,71297.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,201901,Y,U,Y,14955.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,14955.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,1287.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,0.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,1287.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,336536.0,,673101.0,,600393.0,,72708.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,201902,Y,P,N,13633.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,13633.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,1191.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,0.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,1191.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,333126.0,,688236.0,,615777.0,,72459.0,,,,1026.0,,3397.0,,11703.0,,1743.0,,1003.0,,,,,,, +IA,Iowa,201902,Y,U,Y,13883.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,13883.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,1191.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,0.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,1191.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,336722.0,,673768.0,,600257.0,,73511.0,,,,1026.0,,3397.0,,11703.0,,1743.0,,1003.0,,,,,,, +IA,Iowa,201903,Y,P,N,15084.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,15084.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,1247.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,0.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,1247.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,333567.0,,688332.0,,615106.0,,73226.0,,,,1536.0,,6953.0,,6188.0,,590.0,,327.0,,,,,,, +IA,Iowa,201903,Y,U,Y,15151.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,15151.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,1247.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,0.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,1247.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,336587.0,,673063.0,,599171.0,,73892.0,,,,1536.0,,6953.0,,6188.0,,590.0,,327.0,,,,,,, +IA,Iowa,201904,Y,P,N,15049.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,15049.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,1363.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,0.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,1363.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,333869.0,,689128.0,,615980.0,,73148.0,,,,2086.0,,6995.0,,5971.0,,413.0,,217.0,,,,,,, +IA,Iowa,201904,Y,U,Y,15262.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,15262.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,1363.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,0.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,1363.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,336680.0,,673656.0,,599888.0,,73768.0,,,,2086.0,,6995.0,,5971.0,,413.0,,217.0,,,,,,, +IA,Iowa,201905,Y,P,N,14858.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,14858.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,1187.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,0.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,1187.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,334842.0,,692141.0,,619028.0,,73113.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,201905,Y,U,Y,15061.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,15061.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,1187.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,0.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,1187.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,336469.0,,674047.0,,600632.0,,73415.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,201906,Y,P,N,13544.0,,0.0,,13544.0,,963.0,,0.0,,963.0,,336836.0,,692777.0,,616469.0,,76308.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,201906,Y,U,Y,13620.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,13620.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,963.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,0.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,963.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,339084.0,,676777.0,,600432.0,,76345.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,201907,Y,P,N,15288.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,15288.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,1170.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,0.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,1170.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,336480.0,,692063.0,,615835.0,,76228.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,201907,Y,U,Y,15428.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,15428.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,1170.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,0.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,1170.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,339875.0,,678370.0,,601829.0,,76541.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,201908,Y,P,N,15366.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,15366.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,1012.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,0.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,1012.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,334615.0,,690978.0,,616096.0,,74882.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,201908,Y,U,Y,15833.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,15833.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,1012.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,0.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,1012.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,339329.0,,678991.0,,603062.0,,75929.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,201909,Y,P,N,13873.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,13873.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,1061.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,0.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,1061.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,334583.0,,690593.0,,614787.0,,75806.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,201909,Y,U,Y,14284.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,14284.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,1061.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,0.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,1061.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,338596.0,,678361.0,,602355.0,,76006.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,201910,Y,P,N,15676.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,15676.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,1263.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,0.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,1263.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,335281.0,,691826.0,,615188.0,,76638.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,201910,Y,U,Y,16100.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,16100.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,1263.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,0.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,1263.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,339555.0,,679643.0,,602280.0,,77363.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,201911,Y,P,N,13089.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,13089.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,960.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,0.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,960.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,334574.0,,690673.0,,613697.0,,76976.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,201911,Y,U,Y,13089.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,13089.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,11342.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,2364.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,13706.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,338618.0,,679156.0,,601751.0,,77405.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,201912,Y,P,N,13615.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,13615.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,12485.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,2380.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,14865.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,335451.0,,692089.0,,613764.0,,78325.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,201912,Y,U,Y,13615.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,13615.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,12485.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,2380.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,14865.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,338977.0,,679651.0,,600778.0,,78873.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,202001,Y,P,N,14801.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,14801.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,12419.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,2307.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,14726.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,334483.0,,668967.0,,590409.0,,78558.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,202001,Y,U,Y,14801.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,14801.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,12408.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,2302.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,14710.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,339787.0,,680117.0,,600122.0,,79995.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,202002,Y,P,N,13646.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,13646.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,12782.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,2730.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,15512.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,333957.0,,668481.0,,589607.0,,78874.0,,,,1047.0,,1110.0,,10929.0,,2613.0,,1148.0,,,,,,, +IA,Iowa,202002,Y,U,Y,13646.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,13646.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,12782.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,2730.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,15512.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,337748.0,,677141.0,,597839.0,,79302.0,,,,1047.0,,1110.0,,10929.0,,2613.0,,1148.0,,,,,,, +IA,Iowa,202003,Y,P,N,13043.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,13043.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,12557.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,2661.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,15218.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,333874.0,,669011.0,,589964.0,,79047.0,,,,1010.0,,1761.0,,11015.0,,2309.0,,608.0,,,,,,, +IA,Iowa,202003,Y,U,Y,13043.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,13043.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,12557.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,2661.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,15218.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,338720.0,,678312.0,,597365.0,,80947.0,,,,1010.0,,1761.0,,11015.0,,2309.0,,608.0,,,,,,, +IA,Iowa,202004,Y,P,N,10404.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,10404.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,13705.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,2143.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,15848.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,338941.0,,683201.0,,602664.0,,80537.0,,,,2350.0,,4857.0,,8564.0,,1218.0,,1064.0,,,,,,, +IA,Iowa,202004,Y,U,Y,10404.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,10404.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,13705.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,2143.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,15848.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,341135.0,,686819.0,,605295.0,,81524.0,,,,2350.0,,4857.0,,8564.0,,1218.0,,1064.0,,,,,,, +IA,Iowa,202005,Y,P,N,8280.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,8280.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,9039.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1257.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,10296.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,341969.0,,691585.0,,610586.0,,80999.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,202005,Y,U,Y,8280.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,8280.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,9039.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1257.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,10296.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,343554.0,,694372.0,,613151.0,,81221.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,202006,Y,P,N,9992.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,9992.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,9656.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1544.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,11200.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,344777.0,,699741.0,,618776.0,,80965.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,202006,Y,U,Y,9992.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,9992.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,9656.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1544.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,11200.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,346115.0,,702567.0,,621701.0,,80866.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,202007,Y,P,N,10563.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,10563.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,9970.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1896.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,11866.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,348207.0,,708907.0,,628203.0,,80704.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,202007,Y,U,Y,10563.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,10563.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,9964.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1896.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,11860.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,349026.0,,711187.0,,631207.0,,79980.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,202008,Y,P,N,10366.0,,0.0,,10366.0,,9335.0,,1769.0,,11104.0,,350317.0,,716076.0,,635982.0,,80094.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,202008,Y,U,Y,10366.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,10366.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,9335.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1769.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,11104.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,352191.0,,719759.0,,639739.0,,80020.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,202009,Y,P,N,10075.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,10075.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,9290.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1646.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,10936.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,353020.0,,724000.0,,643792.0,,80208.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,202009,Y,U,Y,10075.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,10075.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,9290.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1645.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,10935.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,354687.0,,727249.0,,647104.0,,80145.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,202010,Y,P,N,9351.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,9351.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,9598.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1656.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,11254.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,355446.0,,731504.0,,650926.0,,80578.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,202010,Y,U,Y,9351.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,9351.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,9598.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1656.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,11254.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,356748.0,,733919.0,,653337.0,,80582.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,202011,Y,P,N,7381.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,7381.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,8462.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1347.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,9809.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,356988.0,,737449.0,,656502.0,,80947.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,202011,Y,U,Y,7381.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,7381.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,8462.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1347.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,9809.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,358746.0,,742012.0,,661055.0,,80957.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,202012,Y,P,N,7316.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,7316.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,10441.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1573.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,12014.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,359590.0,,746157.0,,664532.0,,81625.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,202012,Y,U,Y,12113.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,12113.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,10441.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1573.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,12014.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,361097.0,,750018.0,,667702.0,,82316.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,202101,Y,P,N,9519.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,9519.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,8827.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1265.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,10092.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,362541.0,,755046.0,,673610.0,,81436.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,202101,Y,U,Y,9519.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,9519.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,8827.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1265.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,10092.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,363091.0,,756195.0,,674776.0,,81419.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,202102,Y,P,N,9425.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,9425.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,8019.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1228.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,9247.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,363761.0,,759800.0,,678218.0,,81582.0,,,,2096.0,,2579.0,,2248.0,,266.0,,193.0,,,,,,, +IA,Iowa,202102,Y,U,Y,9425.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,9425.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,8019.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1228.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,9247.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,365009.0,,762431.0,,680893.0,,81538.0,,,,2096.0,,2579.0,,2248.0,,266.0,,193.0,,,,,,, +IA,Iowa,202103,Y,P,N,10322.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,10322.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,7658.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1173.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,8831.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,365429.0,,765626.0,,683828.0,,81798.0,,,,2318.0,,2471.0,,1973.0,,145.0,,135.0,,,,,,, +IA,Iowa,202103,Y,U,Y,10322.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,10322.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,7658.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1173.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,8831.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,366574.0,,767918.0,,686127.0,,81791.0,,,,2318.0,,2471.0,,1973.0,,145.0,,135.0,,,,,,, +IA,Iowa,202104,Y,P,N,10765.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,10765.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,7469.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1149.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,8618.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,366901.0,,771043.0,,688939.0,,82104.0,,,,2576.0,,2546.0,,2036.0,,145.0,,125.0,,,,,,, +IA,Iowa,202104,Y,U,Y,10765.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,10765.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,7469.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1149.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,8618.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,368085.0,,773608.0,,691529.0,,82079.0,,,,2576.0,,2546.0,,2036.0,,145.0,,125.0,,,,,,, +IA,Iowa,202105,Y,P,N,9660.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,9660.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,7063.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1027.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,8090.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,367749.0,,775710.0,,693978.0,,81732.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,202105,Y,U,Y,9660.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,9660.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,7063.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1027.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,8090.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,368981.0,,778247.0,,696531.0,,81716.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,202106,Y,P,N,10933.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,10933.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,7950.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1191.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,9141.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,367294.0,,778561.0,,698267.0,,80294.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,202106,Y,U,Y,10933.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,10933.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,7950.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1191.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,9141.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,368696.0,,781468.0,,701516.0,,79952.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,202107,Y,P,N,11853.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,11853.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,7800.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1314.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,9114.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,368762.0,,783405.0,,703479.0,,79926.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,202107,Y,U,Y,11853.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,11853.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,7800.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1314.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,9114.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,370138.0,,786223.0,,706396.0,,79827.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,202108,Y,P,N,13032.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,13032.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,8658.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1395.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,10053.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,370086.0,,787910.0,,707978.0,,79932.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,202108,Y,U,Y,13032.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,13032.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,8658.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1395.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,10053.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,371825.0,,791963.0,,712090.0,,79873.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,202109,Y,P,N,11753.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,11753.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,7751.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1088.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,8839.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,370095.0,,790910.0,,710983.0,,79927.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,202109,Y,U,Y,12752.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,12752.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,7751.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1088.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,8839.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,371911.0,,794834.0,,714981.0,,79853.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,202110,Y,P,N,12697.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,12697.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,8326.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1257.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,9583.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,371517.0,,795185.0,,715468.0,,79717.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,202110,Y,U,Y,12697.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,12697.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,8326.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1257.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,9583.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,373079.0,,798442.0,,718836.0,,79606.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,202111,Y,P,N,17975.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,17975.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,7537.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1002.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,8539.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,371668.0,,797478.0,,718927.0,,78551.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,202111,Y,U,Y,17975.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,17975.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,7537.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1002.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,8539.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,373571.0,,802055.0,,723509.0,,78546.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,202112,Y,P,N,17237.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,17237.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,8502.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1128.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,9630.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,373571.0,,802055.0,,723509.0,,78546.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,202112,Y,U,Y,17237.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,17237.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,8502.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1128.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,9630.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,373933.0,,805021.0,,727367.0,,77654.0,,,,,,,,,,,,,,,,,,, +IA,Iowa,202201,Y,P,N,14931.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,14931.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,8864.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1213.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,10077.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,373650.0,,806088.0,,728767.0,,77321.0,,,,870.0,,1464.0,,5045.0,,1095.0,,401.0,,,,,,, +IA,Iowa,202201,Y,U,Y,14931.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,14931.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,8864.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1213.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,10077.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,375572.0,,810098.0,,732798.0,,77300.0,,,,870.0,,1464.0,,5045.0,,1095.0,,401.0,,,,,,, +IA,Iowa,202202,Y,P,N,11769.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,11769.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,6761.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1008.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,7769.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,374370.0,,808911.0,,732296.0,,76615.0,,,,1030.0,,1964.0,,2313.0,,439.0,,224.0,,,,,,, +IA,Iowa,202202,Y,U,Y,11769.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,11769.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,6761.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1008.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,7769.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,376269.0,,812629.0,,736042.0,,76587.0,,,,1030.0,,1964.0,,2313.0,,439.0,,224.0,,,,,,, +IA,Iowa,202203,Y,P,N,13253.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,13253.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,7098.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,915.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,8013.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,375277.0,,812071.0,,736339.0,,75732.0,,,,1471.0,,2113.0,,2680.0,,344.0,,137.0,,,,,,, +IA,Iowa,202203,Y,U,Y,13253.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,13253.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,7098.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,915.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,8013.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,376778.0,,815024.0,,739273.0,,75751.0,,,,1471.0,,2113.0,,2680.0,,344.0,,137.0,,,,,,, +IA,Iowa,202204,Y,P,N,11990.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,11990.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,7011.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,979.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,7990.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,376303.0,,815646.0,,740686.0,,74960.0,,,,1373.0,,1857.0,,2523.0,,282.0,,116.0,,,,,,, +IA,Iowa,202204,Y,U,Y,11990.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,11990.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,7011.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,979.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,7990.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,377615.0,,818382.0,,743450.0,,74932.0,,,,1373.0,,1857.0,,2523.0,,282.0,,116.0,,,,,,, +IA,Iowa,202205,Y,P,N,11657.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,11657.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,6973.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,906.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,7879.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,376709.0,,817871.0,,743606.0,,74265.0,,,,1334.0,,1655.0,,2019.0,,240.0,,90.0,,,,,,, +IA,Iowa,202205,Y,U,Y,11657.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,11657.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,6973.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,906.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,7879.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,378042.0,,820690.0,,746418.0,,74272.0,,,,1334.0,,1655.0,,2019.0,,240.0,,90.0,,,,,,, +IA,Iowa,202206,Y,P,N,12378.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,12378.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,7201.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1029.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,8230.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,377343.0,,820964.0,,747253.0,,73711.0,,,,1267.0,,1432.0,,2128.0,,180.0,,68.0,,,,,,, +IA,Iowa,202206,Y,U,Y,12378.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,12378.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,7201.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1029.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,8230.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,378785.0,,823937.0,,750262.0,,73675.0,,,,1267.0,,1432.0,,2128.0,,180.0,,68.0,,,,,,, +IA,Iowa,202207,Y,P,N,12186.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,12186.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,6843.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,972.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,7815.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,378498.0,,824625.0,,751341.0,,73284.0,,,,992.0,,1062.0,,2624.0,,245.0,,116.0,,,,,,, +IA,Iowa,202207,Y,U,Y,12186.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,12186.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,6843.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,972.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,7815.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,380239.0,,828281.0,,754984.0,,73297.0,,,,992.0,,1062.0,,2624.0,,245.0,,116.0,,,,,,, +IA,Iowa,202208,Y,P,N,14628.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,14628.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,7754.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1124.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,8878.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,379501.0,,829001.0,,756647.0,,72354.0,,,,1000.0,,1123.0,,2882.0,,322.0,,129.0,,,,,,, +IA,Iowa,202208,Y,U,Y,14628.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,14628.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,7754.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1124.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,8878.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,381600.0,,833293.0,,760828.0,,72465.0,,,,1000.0,,1123.0,,2882.0,,322.0,,129.0,,,,,,, +IA,Iowa,202209,Y,P,N,13295.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,13295.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,7684.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1149.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,8833.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,381131.0,,833775.0,,761844.0,,71931.0,,,,798.0,,918.0,,3095.0,,823.0,,170.0,,,,,,, +IA,Iowa,202209,Y,U,Y,13295.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,13295.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,7684.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1149.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,8833.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,382956.0,,837687.0,,765715.0,,71972.0,,,,798.0,,918.0,,3095.0,,823.0,,170.0,,,,,,, +IA,Iowa,202210,Y,P,N,13296.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,13296.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,7198.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,983.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,8181.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,382946.0,,839556.0,,768192.0,,71364.0,,,,778.0,,882.0,,3303.0,,1196.0,,346.0,,,,,,, +IA,Iowa,202210,Y,U,Y,13296.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,13296.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,7198.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,983.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,8181.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,383827.0,,841506.0,,770115.0,,71391.0,,,,778.0,,882.0,,3303.0,,1196.0,,346.0,,,,,,, +IA,Iowa,202211,Y,P,N,18501.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,18501.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,6692.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,944.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,7636.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,383410.0,,842629.0,,771816.0,,70813.0,,,,646.0,,894.0,,3940.0,,921.0,,285.0,,,,,,, +IA,Iowa,202211,Y,U,Y,18501.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,18501.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,6692.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,944.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,7636.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,384435.0,,845409.0,,774518.0,,70891.0,,,,646.0,,894.0,,3940.0,,921.0,,285.0,,,,,,, +IA,Iowa,202212,Y,P,N,18246.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,18246.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,7773.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,959.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,8732.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,383667.0,,845136.0,,774670.0,,70466.0,,,,656.0,,623.0,,5240.0,,1822.0,,491.0,,,,,,, +IA,Iowa,202212,Y,U,Y,18246.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,18246.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,7773.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,959.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,8732.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,385893.0,,850906.0,,780248.0,,70658.0,,,,656.0,,623.0,,5240.0,,1822.0,,491.0,,,,,,, +IA,Iowa,202301,Y,P,N,16265.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,16265.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,8779.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1154.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,9933.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,385555.0,,851400.0,,780926.0,,70474.0,,,,1480.0,,1670.0,,8925.0,,6404.0,,2124.0,,,,,,, +IA,Iowa,202301,Y,U,Y,16265.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,16265.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,8779.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1154.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,9933.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,387306.0,,855602.0,,784989.0,,70613.0,,,,1480.0,,1670.0,,8925.0,,6404.0,,2124.0,,,,,,, +IA,Iowa,202302,Y,P,N,11571.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,11571.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,7788.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1100.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,8888.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,387187.0,,856561.0,,786121.0,,70440.0,,,,1077.0,,1708.0,,4014.0,,948.0,,685.0,,,,,,, +IA,Iowa,202302,Y,U,Y,11571.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,11571.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,7788.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1100.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,8888.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,388601.0,,859437.0,,788954.0,,70483.0,,,,1077.0,,1708.0,,4014.0,,948.0,,685.0,,,,,,, +IA,Iowa,202303,Y,P,N,13050.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,13050.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,7023.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,987.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,8010.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,388187.0,,860027.0,,790181.0,,69846.0,,,,1814.0,,1921.0,,2120.0,,382.0,,200.0,,24111.0,Does not include all calls received by call centers; Does not include all calls received after business hours,0.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.019,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +IA,Iowa,202303,Y,U,Y,13050.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,13050.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,7023.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,987.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,8010.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,389427.0,,862577.0,,792716.0,,69861.0,,,,1814.0,,1921.0,,2120.0,,382.0,,200.0,,24111.0,Does not include all calls received by call centers; Does not include all calls received after business hours,0.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.019,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +IA,Iowa,202304,Y,P,N,11407.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,11407.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,6912.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,861.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,7773.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,389378.0,,864198.0,,794702.0,,69496.0,,,,1401.0,,1758.0,,1918.0,,247.0,,135.0,,25707.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.032,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +IA,Iowa,202304,Y,U,Y,11407.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,11407.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,6912.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,861.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,7773.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,390525.0,,866496.0,,796978.0,,69518.0,,,,1401.0,,1758.0,,1918.0,,247.0,,135.0,,25707.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.032,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +IA,Iowa,202305,Y,P,N,13848.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,13848.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,7464.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,992.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,8456.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,388893.0,,858044.0,,786302.0,,71742.0,,,,1491.0,,2123.0,,2484.0,,343.0,,155.0,,23770.0,Does not include all calls received by call centers; Does not include all calls received after business hours,0.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.011,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +IA,Iowa,202305,Y,U,Y,13848.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,13848.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,7464.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,992.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,8456.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,390261.0,,860981.0,,789167.0,,71814.0,,,,1491.0,,2123.0,,2484.0,,343.0,,155.0,,23770.0,Does not include all calls received by call centers; Does not include all calls received after business hours,0.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.011,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +IA,Iowa,202306,Y,P,N,16674.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,16674.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,8723.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1738.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,10461.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,377852.0,,825486.0,,753033.0,,72453.0,,,,1634.0,,2699.0,,3660.0,,399.0,,127.0,,30819.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.024,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +IA,Iowa,202306,Y,U,Y,16674.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,16674.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,8723.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1738.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,10461.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,380601.0,,830677.0,,757677.0,,73000.0,,,,1634.0,,2699.0,,3660.0,,399.0,,127.0,,30819.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.024,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +IA,Iowa,202307,Y,P,N,19413.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,19413.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,7935.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1456.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,9391.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,367451.0,,793857.0,,721672.0,,72185.0,,,,1001.0,,1546.0,,4535.0,,571.0,,196.0,,40796.0,Does not include all calls received by call centers; Does not include all calls received after business hours,8.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.228,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +IA,Iowa,202307,Y,U,Y,19413.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,19413.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,7935.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1456.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,9391.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,371877.0,,802222.0,,729077.0,,73145.0,,,,1001.0,,1546.0,,4535.0,,571.0,,196.0,,40796.0,Does not include all calls received by call centers; Does not include all calls received after business hours,8.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.228,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +IA,Iowa,202308,Y,P,N,23218.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,23218.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,10026.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1831.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,11857.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,358100.0,,763720.0,,691457.0,,72263.0,,,,929.0,,1441.0,,6168.0,,1245.0,,325.0,,37390.0,Does not include all calls received by call centers; Does not include all calls received after business hours,12.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.334,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +IA,Iowa,202308,Y,U,Y,23218.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,23218.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,10026.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1831.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,11857.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,363903.0,,774745.0,,701049.0,,73696.0,,,,929.0,,1441.0,,6168.0,,1245.0,,325.0,,37390.0,Does not include all calls received by call centers; Does not include all calls received after business hours,12.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.334,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +IA,Iowa,202309,Y,P,N,21496.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,21496.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,9430.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1973.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,11403.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,349539.0,,738630.0,,665514.0,,73116.0,,,,784.0,,1211.0,,6408.0,,1828.0,,450.0,,27123.0,Does not include all calls received by call centers; Does not include all calls received after business hours,14.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.321,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +IA,Iowa,202309,Y,U,Y,21496.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,21496.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,9430.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1973.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,11403.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,356609.0,,751823.0,,676932.0,,74891.0,,,,784.0,,1211.0,,6408.0,,1828.0,,450.0,,27123.0,Does not include all calls received by call centers; Does not include all calls received after business hours,14.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.321,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +IA,Iowa,202310,Y,P,N,23743.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,23743.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,10783.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,2094.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,12877.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,347308.0,,727959.0,,652330.0,,75629.0,,,,1059.0,,1201.0,,6998.0,,1728.0,,738.0,,27196.0,Does not include all calls received by call centers; Does not include all calls received after business hours,4.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.123,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +IA,Iowa,202310,Y,U,Y,23743.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,23743.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,10783.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,2094.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,12877.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,351487.0,,735976.0,,659448.0,,76528.0,,,,1059.0,,1201.0,,6998.0,,1728.0,,738.0,,27196.0,Does not include all calls received by call centers; Does not include all calls received after business hours,4.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.123,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +IA,Iowa,202311,Y,P,N,27806.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,27806.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,10945.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1994.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,12939.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,340699.0,,708970.0,,632069.0,,76901.0,,,,944.0,,1774.0,,7555.0,,1843.0,,1012.0,,25196.0,Does not include all calls received by call centers; Does not include all calls received after business hours,2.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.054,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +IA,Iowa,202311,Y,U,Y,27806.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,27806.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,10945.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1994.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,12939.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,346290.0,,720790.0,,642555.0,,78235.0,,,,944.0,,1774.0,,7555.0,,1843.0,,1012.0,,25196.0,Does not include all calls received by call centers; Does not include all calls received after business hours,2.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.054,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +IA,Iowa,202312,Y,P,N,27968.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,27968.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,11610.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1917.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,13527.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,337469.0,,697036.0,,617654.0,,79382.0,,,,817.0,,1704.0,,7807.0,,2936.0,,1310.0,,26742.0,Does not include all calls received by call centers; Does not include all calls received after business hours,0.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.008,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +IA,Iowa,202312,Y,U,Y,27968.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,27968.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,11610.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1917.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,13527.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,343650.0,,710281.0,,629270.0,,81011.0,,,,817.0,,1704.0,,7807.0,,2936.0,,1310.0,,26742.0,Does not include all calls received by call centers; Does not include all calls received after business hours,0.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.008,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +IA,Iowa,202401,Y,P,N,25520.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,25520.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,11602.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1908.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,13510.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,340383.0,,699334.0,,618205.0,,81129.0,,,,873.0,,1142.0,,5942.0,,6047.0,,2639.0,,31783.0,Does not include all calls received by call centers; Does not include all calls received after business hours,0.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.008,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +IA,Iowa,202401,Y,U,Y,25520.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,25520.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,11602.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1908.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,13510.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,344704.0,,709029.0,,626986.0,,82043.0,,,,873.0,,1142.0,,5942.0,,6047.0,,2639.0,,31783.0,Does not include all calls received by call centers; Does not include all calls received after business hours,0.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.008,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +IA,Iowa,202402,Y,P,N,20035.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,20035.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,13893.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,2087.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,15980.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,342082.0,,699225.0,,616984.0,,82241.0,,,,802.0,,745.0,,6136.0,,3183.0,,1827.0,,30124.0,Does not include all calls received by call centers; Does not include all calls received after business hours,0.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.007,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +IA,Iowa,202402,Y,U,Y,20035.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,20035.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,13893.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,2087.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,15980.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,346554.0,,708931.0,,625741.0,,83190.0,,,,802.0,,745.0,,6136.0,,3183.0,,1827.0,,30124.0,Does not include all calls received by call centers; Does not include all calls received after business hours,0.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.007,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +IA,Iowa,202403,Y,P,N,19957.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,19957.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,12916.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1745.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,14661.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,344193.0,,699942.0,,615592.0,,84350.0,,,,839.0,,769.0,,4966.0,,3610.0,,2022.0,,27656.0,Does not include all calls received after business hours; New call center added in reporting period,0.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; New call center added in reporting period,0.014,Does not include all calls received after business hours; Includes only calls transferred to a live agent; New call center added in reporting period +IA,Iowa,202403,Y,U,Y,19957.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,19957.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,12916.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1745.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,14661.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,348149.0,,708615.0,,623486.0,,85129.0,,,,839.0,,769.0,,4966.0,,3610.0,,2022.0,,27656.0,Does not include all calls received after business hours; New call center added in reporting period,0.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; New call center added in reporting period,0.014,Does not include all calls received after business hours; Includes only calls transferred to a live agent; New call center added in reporting period +IA,Iowa,202404,Y,P,N,21899.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,21899.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,12643.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1913.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,14556.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,336830.0,,678107.0,,592571.0,,85536.0,,,,997.0,,1211.0,,6046.0,,3209.0,,1889.0,,29727.0,Does not include all calls received after business hours,0.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.013,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IA,Iowa,202404,Y,U,Y,21899.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,21899.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,12643.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1913.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,14556.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,342316.0,,689404.0,,602555.0,,86849.0,,,,997.0,,1211.0,,6046.0,,3209.0,,1889.0,,29727.0,Does not include all calls received after business hours,0.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.013,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IA,Iowa,202405,Y,P,N,20282.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,20282.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,11546.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,2074.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,13620.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,337840.0,,678085.0,,591729.0,,86356.0,,,,1141.0,,1077.0,,6369.0,,3102.0,,1401.0,,26487.0,Does not include all calls received after business hours,0.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.016,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IA,Iowa,202405,Y,U,Y,20282.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,20282.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,11546.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,2074.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,13620.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,342201.0,,687589.0,,600293.0,,87296.0,,,,1141.0,,1077.0,,6369.0,,3102.0,,1401.0,,26487.0,Does not include all calls received after business hours,0.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.016,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IA,Iowa,202406,Y,P,N,18516.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,18516.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,11178.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1779.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,12957.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,338082.0,,677654.0,,590692.0,,86962.0,,,,1060.0,,1260.0,,6129.0,,2714.0,,1008.0,,23419.0,Does not include all calls received after business hours,0.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.008,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IA,Iowa,202406,Y,U,Y,18516.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,18516.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,11178.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1779.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,12957.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,342028.0,,686233.0,,598431.0,,87802.0,,,,1060.0,,1260.0,,6129.0,,2714.0,,1008.0,,23419.0,Does not include all calls received after business hours,0.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.008,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IA,Iowa,202407,Y,P,N,21508.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,21508.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,10362.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1832.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,12194.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,337668.0,,675902.0,,588810.0,,87092.0,,338234.0,,1133.0,,1062.0,,6335.0,,2368.0,,1033.0,,26419.0,Does not include all calls received after business hours,2.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.083,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IA,Iowa,202407,Y,U,Y,21508.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,21508.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,10362.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1832.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,12194.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,341835.0,,685050.0,,597059.0,,87991.0,,343215.0,,1133.0,,1062.0,,6335.0,,2368.0,,1033.0,,26419.0,Does not include all calls received after business hours,2.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.083,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IA,Iowa,202408,Y,P,N,21609.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,21609.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,10833.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1832.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,12665.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,336686.0,,673288.0,,586014.0,,87274.0,,336602.0,,1152.0,,1149.0,,5767.0,,2257.0,,1039.0,,28543.0,Does not include all calls received after business hours,4.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.135,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IA,Iowa,202408,Y,U,Y,21609.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,21609.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,10833.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1832.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,12665.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,342100.0,,684700.0,,596291.0,,88409.0,,342600.0,,1152.0,,1149.0,,5767.0,,2257.0,,1039.0,,28543.0,Does not include all calls received after business hours,4.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.135,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IA,Iowa,202409,Y,P,N,19529.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,19529.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,10434.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1832.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,12266.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,337355.0,,673665.0,,585901.0,,87764.0,,336310.0,,1148.0,,931.0,,5554.0,,2727.0,,893.0,,27795.0,Does not include all calls received after business hours,7.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.216,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IA,Iowa,202409,Y,U,Y,19529.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,19529.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,10434.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1832.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,12266.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,342453.0,,684610.0,,595739.0,,88871.0,,342157.0,,1148.0,,931.0,,5554.0,,2727.0,,893.0,,27795.0,Does not include all calls received after business hours,7.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.216,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IA,Iowa,202410,Y,P,N,22499.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,22499.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,12066.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,2190.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,14256.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,338217.0,,674985.0,,586732.0,,88253.0,,336768.0,,1497.0,,1242.0,,7913.0,,2122.0,,808.0,,30103.0,Does not include all calls received after business hours,4.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.147,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IA,Iowa,202410,Y,U,Y,22499.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,22499.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,12066.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,2190.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,14256.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,342470.0,,684106.0,,594986.0,,89120.0,,341636.0,,1497.0,,1242.0,,7913.0,,2122.0,,808.0,,30103.0,Does not include all calls received after business hours,4.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.147,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IA,Iowa,202411,Y,P,N,25954.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,25954.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,10282.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1730.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,12012.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,338372.0,,674941.0,,586582.0,,88359.0,,336569.0,,1475.0,,2293.0,,7197.0,,1523.0,,538.0,,24793.0,Does not include all calls received after business hours,3.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.124,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IA,Iowa,202411,Y,U,Y,25954.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,25954.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,10282.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1730.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,12012.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,342485.0,,684290.0,,595046.0,,89244.0,,341805.0,,1475.0,,2293.0,,7197.0,,1523.0,,538.0,,24793.0,Does not include all calls received after business hours,3.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.124,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IA,Iowa,202412,Y,P,N,29904.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,29904.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,10944.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1555.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,12499.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,339087.0,,675663.0,,586748.0,,88915.0,,336576.0,,1503.0,,1956.0,,8082.0,,2311.0,,573.0,,26713.0,Does not include all calls received after business hours,5.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.151,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IA,Iowa,202412,Y,U,Y,29904.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,29904.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,10944.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1555.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,12499.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,338785.0,,681397.0,,596144.0,,85253.0,,342612.0,,1503.0,,1956.0,,8082.0,,2311.0,,573.0,,26713.0,Does not include all calls received after business hours,5.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.151,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IA,Iowa,202501,Y,P,N,25701.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,25701.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,11825.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1845.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,13670.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,336152.0,,673986.0,,588601.0,,85385.0,,337834.0,,1653.0,,1607.0,,7693.0,,3712.0,,1514.0,,28941.0,Does not include all calls received after business hours,10.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.259,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IA,Iowa,202501,Y,U,Y,25701.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,25701.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,11825.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1845.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,13670.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,339723.0,,682489.0,,596380.0,,86109.0,,342766.0,,1653.0,,1607.0,,7693.0,,3712.0,,1514.0,,28941.0,Does not include all calls received after business hours,10.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.259,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IA,Iowa,202502,Y,P,N,18594.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,18594.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,11001.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1783.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,12784.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,336065.0,,674339.0,,588650.0,,85689.0,,338274.0,,1550.0,,1378.0,,6508.0,,2848.0,,1602.0,,23425.0,Does not include all calls received after business hours,7.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.194,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IA,Iowa,202502,Y,U,Y,18594.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,18594.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,11001.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1783.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,12784.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,339545.0,,682234.0,,595865.0,,86369.0,,342689.0,,1550.0,,1378.0,,6508.0,,2848.0,,1602.0,,23425.0,Does not include all calls received after business hours,7.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.194,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IA,Iowa,202503,Y,P,N,19115.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,19115.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,10748.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1803.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,12551.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,333520.0,,669848.0,,584368.0,,85480.0,,336328.0,,1485.0,,1805.0,,7227.0,,1288.0,,727.0,,24301.0,Does not include all calls received after business hours,5.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.135,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IA,Iowa,202503,Y,U,Y,19115.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,19115.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,10748.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1803.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,12551.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,337270.0,,677395.0,,591157.0,,86238.0,,340125.0,,1485.0,,1805.0,,7227.0,,1288.0,,727.0,,24301.0,Does not include all calls received after business hours,5.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.135,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IA,Iowa,202504,Y,P,N,20199.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,20199.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,10804.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1787.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,12591.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,334160.0,,669456.0,,583896.0,,85560.0,,335296.0,,2079.0,,2957.0,,6461.0,,820.0,,211.0,,25170.0,Does not include all calls received after business hours,3.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.091,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IA,Iowa,202504,Y,U,Y,20199.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,20199.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,10804.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1787.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,12591.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,336939.0,,675144.0,,589030.0,,86114.0,,338205.0,,2079.0,,2957.0,,6461.0,,820.0,,211.0,,25170.0,Does not include all calls received after business hours,3.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.091,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IA,Iowa,202505,Y,P,N,19118.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,19118.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,9395.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1596.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,10991.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,333083.0,,667082.0,,581124.0,,85958.0,,333999.0,,2026.0,,3413.0,,4871.0,,453.0,,149.0,,21004.0,Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.029,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IA,Iowa,202505,Y,U,Y,19118.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,19118.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,9395.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1596.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,10991.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,336454.0,,673680.0,,587212.0,,86468.0,,337226.0,,2026.0,,3413.0,,4871.0,,453.0,,149.0,,21004.0,Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.029,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IA,Iowa,202506,Y,P,N,17849.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,17849.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,9589.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1738.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,11327.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,333422.0,,667468.0,,581583.0,,85885.0,,334046.0,,2434.0,,3799.0,,4210.0,,455.0,,147.0,,20741.0,Does not include all calls received after business hours,0.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.006,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IA,Iowa,202506,Y,U,Y,17849.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,17849.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,9589.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1738.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,11327.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,335410.0,,671287.0,,585095.0,,86192.0,,335877.0,,2434.0,,3799.0,,4210.0,,455.0,,147.0,,20741.0,Does not include all calls received after business hours,0.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.006,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IA,Iowa,202507,Y,P,N,19579.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,19579.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,9249.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1567.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,10816.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,332020.0,,664883.0,,579426.0,,85457.0,,332863.0,,2130.0,,3040.0,,4476.0,,503.0,,138.0,,22839.0,Does not include all calls received after business hours,0.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.009,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IA,Iowa,202507,Y,U,Y,19579.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,19579.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,9249.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1567.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,10816.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,335416.0,,671481.0,,585421.0,,86060.0,,336065.0,,2130.0,,3040.0,,4476.0,,503.0,,138.0,,22839.0,Does not include all calls received after business hours,0.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.009,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IA,Iowa,202508,Y,P,N,19993.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,19993.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,9486.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1797.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,11283.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,332473.0,,666186.0,,580369.0,,85817.0,,333713.0,,1861.0,,3149.0,,5638.0,,555.0,,135.0,,22595.0,Does not include all calls received after business hours,0.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.009,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IA,Iowa,202508,Y,U,Y,19993.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,19993.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,9486.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1797.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,11283.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,335177.0,,671247.0,,584895.0,,86352.0,,336070.0,,1861.0,,3149.0,,5638.0,,555.0,,135.0,,22595.0,Does not include all calls received after business hours,0.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.009,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IA,Iowa,202509,Y,P,N,19218.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,19218.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,9007.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1803.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,10810.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,332342.0,,666889.0,,581470.0,,85419.0,,334547.0,,2155.0,,2207.0,,5615.0,,729.0,,149.0,,21631.0,Does not include all calls received after business hours,0.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.005,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IA,Iowa,202509,Y,U,Y,19218.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,19218.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,9007.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1803.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,10810.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,335297.0,,672580.0,,586619.0,,85961.0,,337283.0,,2155.0,,2207.0,,5615.0,,729.0,,149.0,,21631.0,Does not include all calls received after business hours,0.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.005,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IA,Iowa,202510,Y,P,N,18622.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,0.0,,18622.0,Includes Renewals and/or Redeterminations; Includes Administrative Data Transfers,9375.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application,1830.0,Includes Renewals and/or Redeterminations; Does Not Include All CHIP Determinations Made At Application,11205.0,Includes Renewals and/or Redeterminations; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,331835.0,,666800.0,,581518.0,,85282.0,,334965.0,,1911.0,,2064.0,,6261.0,,903.0,,173.0,,22070.0,Does not include all calls received after business hours,0.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.001,Does not include all calls received after business hours; Includes only calls transferred to a live agent +ID,Idaho,201309,N,U,Y,,,,,,,,,,,,,,,238150.0,,,,,,,,,,,,,,,,,,,,,,, +ID,Idaho,201706,N,P,N,7443.0,,0.0,,7443.0,,5030.0,,287.0,,5317.0,,212885.0,,293696.0,,271189.0,,22507.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,201706,N,U,Y,7395.0,,0.0,,7395.0,,5075.0,,288.0,,5363.0,,213554.0,,294792.0,,272228.0,,22564.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,201707,N,P,N,6556.0,,0.0,,6556.0,,4941.0,,244.0,,5185.0,,212510.0,,293207.0,,270909.0,,22298.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,201707,N,U,Y,6880.0,,0.0,,6880.0,,5099.0,,252.0,,5351.0,,213399.0,,294571.0,,272084.0,,22487.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,201708,N,P,N,7907.0,,0.0,,7907.0,,5992.0,,367.0,,6359.0,,214142.0,,295186.0,,272772.0,,22414.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,201708,N,U,Y,7865.0,,0.0,,7865.0,,5936.0,,367.0,,6303.0,,214899.0,,296356.0,,273867.0,,22489.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,201709,N,P,N,7013.0,,0.0,,7013.0,,5495.0,,277.0,,5772.0,,214743.0,,295810.0,,273621.0,,22189.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,201709,N,U,Y,6978.0,,0.0,,6978.0,,5465.0,,277.0,,5742.0,,215524.0,,297066.0,,274809.0,,22257.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,201710,N,P,N,9172.0,,0.0,,9172.0,,12931.0,,856.0,,13787.0,,215258.0,,296117.0,,273973.0,,22144.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,201710,N,U,Y,9008.0,,0.0,,9008.0,,11710.0,,792.0,,12502.0,,216065.0,,297445.0,,275246.0,,22199.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,201711,N,P,N,14664.0,,0.0,,14664.0,,6108.0,,538.0,,6646.0,,215053.0,,295607.0,,273568.0,,22039.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,201711,N,U,Y,14436.0,,0.0,,14436.0,,5802.0,,501.0,,6303.0,,215872.0,,296910.0,,274802.0,,22108.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,201712,N,P,N,17274.0,,0.0,,17274.0,,7124.0,,628.0,,7752.0,,215162.0,,295591.0,,273664.0,,21927.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,201712,N,U,Y,17139.0,,0.0,,17139.0,,7093.0,,626.0,,7719.0,,216479.0,,297688.0,,275693.0,,21995.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,201801,N,P,N,10791.0,,0.0,,10791.0,,8552.0,,841.0,,9393.0,,204980.0,,284494.0,,259043.0,,25451.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,201801,N,U,Y,10741.0,,0.0,,10741.0,,8497.0,,838.0,,9335.0,,205996.0,,286089.0,,260538.0,,25551.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,201802,N,P,N,8322.0,,0.0,,8322.0,,7457.0,,804.0,,8261.0,,203484.0,,282592.0,,257626.0,,24966.0,,,,9670.0,"Includes some non-MAGI determinations on applications; Incorrectly reporting processing time at application level, as opposed to the individual level",1655.0,"Includes some non-MAGI determinations on applications; Incorrectly reporting processing time at application level, as opposed to the individual level",1591.0,"Includes some non-MAGI determinations on applications; Incorrectly reporting processing time at application level, as opposed to the individual level",278.0,"Includes some non-MAGI determinations on applications; Incorrectly reporting processing time at application level, as opposed to the individual level",361.0,"Includes some non-MAGI determinations on applications; Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +ID,Idaho,201802,N,U,Y,8274.0,,0.0,,8274.0,,7409.0,,804.0,,8213.0,,204455.0,,284104.0,,259032.0,,25072.0,,,,9681.0,"Includes some non-MAGI determinations on applications; Incorrectly reporting processing time at application level, as opposed to the individual level",1655.0,"Includes some non-MAGI determinations on applications; Incorrectly reporting processing time at application level, as opposed to the individual level",1527.0,"Includes some non-MAGI determinations on applications; Incorrectly reporting processing time at application level, as opposed to the individual level",282.0,"Includes some non-MAGI determinations on applications; Incorrectly reporting processing time at application level, as opposed to the individual level",362.0,"Includes some non-MAGI determinations on applications; Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +ID,Idaho,201803,N,P,N,11316.0,,0.0,,11316.0,,9811.0,,2192.0,,12003.0,,200429.0,,276323.0,,251150.0,,25173.0,,,,17968.0,"Includes some non-MAGI determinations on applications; Incorrectly reporting processing time at application level, as opposed to the individual level",2094.0,"Includes some non-MAGI determinations on applications; Incorrectly reporting processing time at application level, as opposed to the individual level",1915.0,"Includes some non-MAGI determinations on applications; Incorrectly reporting processing time at application level, as opposed to the individual level",160.0,"Includes some non-MAGI determinations on applications; Incorrectly reporting processing time at application level, as opposed to the individual level",300.0,"Includes some non-MAGI determinations on applications; Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +ID,Idaho,201803,N,U,Y,10725.0,,0.0,,10725.0,,9787.0,,2190.0,,11977.0,,201416.0,,277803.0,,252527.0,,25276.0,,,,17950.0,"Includes some non-MAGI determinations on applications; Incorrectly reporting processing time at application level, as opposed to the individual level",2092.0,"Includes some non-MAGI determinations on applications; Incorrectly reporting processing time at application level, as opposed to the individual level",1837.0,"Includes some non-MAGI determinations on applications; Incorrectly reporting processing time at application level, as opposed to the individual level",155.0,"Includes some non-MAGI determinations on applications; Incorrectly reporting processing time at application level, as opposed to the individual level",300.0,"Includes some non-MAGI determinations on applications; Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +ID,Idaho,201804,N,P,N,8530.0,,0.0,,8530.0,,7840.0,,935.0,,8775.0,,192050.0,,267990.0,,243656.0,,24334.0,,,,10145.0,"Includes some non-MAGI determinations on applications; Incorrectly reporting processing time at application level, as opposed to the individual level",1795.0,"Includes some non-MAGI determinations on applications; Incorrectly reporting processing time at application level, as opposed to the individual level",1795.0,"Includes some non-MAGI determinations on applications; Incorrectly reporting processing time at application level, as opposed to the individual level",155.0,"Includes some non-MAGI determinations on applications; Incorrectly reporting processing time at application level, as opposed to the individual level",283.0,"Includes some non-MAGI determinations on applications; Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +ID,Idaho,201804,N,U,Y,8507.0,,0.0,,8507.0,,7801.0,,934.0,,8735.0,,192977.0,,269430.0,,244994.0,,24436.0,,,,10182.0,"Includes some non-MAGI determinations on applications; Incorrectly reporting processing time at application level, as opposed to the individual level",1779.0,"Includes some non-MAGI determinations on applications; Incorrectly reporting processing time at application level, as opposed to the individual level",1761.0,"Includes some non-MAGI determinations on applications; Incorrectly reporting processing time at application level, as opposed to the individual level",156.0,"Includes some non-MAGI determinations on applications; Incorrectly reporting processing time at application level, as opposed to the individual level",283.0,"Includes some non-MAGI determinations on applications; Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +ID,Idaho,201805,N,P,N,8098.0,,0.0,,8098.0,,6724.0,,607.0,,7331.0,,193693.0,,269909.0,,245506.0,,24403.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,201805,N,U,Y,8070.0,,0.0,,8070.0,,6724.0,,607.0,,7331.0,,194596.0,,271305.0,,246820.0,,24485.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,201806,N,P,N,7287.0,,0.0,,7287.0,,6480.0,,525.0,,7005.0,,195235.0,,271705.0,,247296.0,,24409.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,201806,N,U,Y,7259.0,,0.0,,7259.0,,6458.0,,525.0,,6983.0,,196088.0,,273002.0,,248502.0,,24500.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,201807,N,P,N,7561.0,,0.0,,7561.0,,6117.0,,435.0,,6552.0,,196551.0,,273384.0,,249029.0,,24355.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,201807,N,U,Y,7529.0,,0.0,,7529.0,,6093.0,,435.0,,6528.0,,197414.0,,274741.0,,250297.0,,24444.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,201808,N,P,N,8316.0,,0.0,,8316.0,,7071.0,,487.0,,7558.0,,198414.0,,275783.0,,251430.0,,24353.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,201808,N,U,Y,8294.0,,0.0,,8294.0,,7024.0,,487.0,,7511.0,,199171.0,,276978.0,,252550.0,,24428.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,201809,N,P,N,7142.0,,0.0,,7142.0,,6253.0,,435.0,,6688.0,,199418.0,,276941.0,,252668.0,,24273.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,201809,N,U,Y,7122.0,,0.0,,7122.0,,6213.0,,435.0,,6648.0,,200340.0,,278382.0,,254013.0,,24369.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,201810,N,P,N,9046.0,,0.0,,9046.0,,15006.0,,1151.0,,16157.0,,199845.0,,277352.0,,253042.0,,24310.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,201810,N,U,Y,8986.0,,0.0,,8986.0,,13273.0,,1049.0,,14322.0,,200757.0,,278870.0,,254492.0,,24378.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,201811,N,P,N,13265.0,,0.0,,13265.0,,6305.0,,529.0,,6834.0,,201184.0,,279162.0,,254999.0,,24163.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,201811,N,U,Y,13135.0,,0.0,,13135.0,,6109.0,,503.0,,6612.0,,201899.0,,280331.0,,256110.0,,24221.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,201812,N,P,N,14719.0,,0.0,,14719.0,,7613.0,,676.0,,8289.0,,201729.0,,279575.0,,255628.0,,23947.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,201812,N,U,Y,14639.0,,0.0,,14639.0,,7604.0,,676.0,,8280.0,,202303.0,,280570.0,,256565.0,,24005.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,201901,N,P,N,10852.0,,0.0,,10852.0,,8272.0,,1039.0,,9311.0,,190063.0,,266351.0,,239712.0,,26639.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,201901,N,U,Y,10819.0,,0.0,,10819.0,,8233.0,,1039.0,,9272.0,,191108.0,,267944.0,,241187.0,,26757.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,201902,N,P,N,7458.0,,0.0,,7458.0,,5784.0,,564.0,,6348.0,,191731.0,,268417.0,,241990.0,,26427.0,,,,5684.0,,1076.0,,886.0,,59.0,,29.0,,,,,,, +ID,Idaho,201902,N,U,Y,7428.0,,0.0,,7428.0,,5736.0,,563.0,,6299.0,,192703.0,,269916.0,,243379.0,,26537.0,,,,5577.0,,1041.0,,853.0,,57.0,,29.0,,,,,,, +ID,Idaho,201903,N,P,N,7714.0,,0.0,,7714.0,,6340.0,,591.0,,6931.0,,192718.0,,269689.0,,243277.0,,26412.0,,,,6147.0,,1113.0,,914.0,,22.0,,38.0,,,,,,, +ID,Idaho,201903,N,U,Y,7693.0,,0.0,,7693.0,,6319.0,,589.0,,6908.0,,193675.0,,271203.0,,244691.0,,26512.0,,,,6049.0,,1102.0,,867.0,,22.0,,38.0,,,,,,, +ID,Idaho,201904,N,P,N,7847.0,,0.0,,7847.0,,6203.0,,465.0,,6668.0,,193830.0,,271163.0,,245033.0,,26130.0,,,,6093.0,,1325.0,,824.0,,26.0,,10.0,,,,,,, +ID,Idaho,201904,N,U,Y,7827.0,,0.0,,7827.0,,6179.0,,465.0,,6644.0,,194704.0,,272589.0,,246377.0,,26212.0,,,,6005.0,,1295.0,,771.0,,26.0,,8.0,,,,,,, +ID,Idaho,201905,N,P,N,7434.0,,0.0,,7434.0,,5408.0,,375.0,,5783.0,,194866.0,,272552.0,,246706.0,,25846.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,201905,N,U,Y,7417.0,,0.0,,7417.0,,5369.0,,374.0,,5743.0,,195677.0,,273856.0,,247939.0,,25917.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,201906,N,P,N,7079.0,,0.0,,7079.0,,5307.0,,339.0,,5646.0,,195692.0,,273379.0,,247855.0,,25524.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,201906,N,U,Y,7063.0,,0.0,,7063.0,,5272.0,,332.0,,5604.0,,196683.0,,274946.0,,249346.0,,25600.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,201907,N,P,N,12676.0,,0.0,,12676.0,,9501.0,,1198.0,,10699.0,,186636.0,,263697.0,,238100.0,,25597.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,201907,N,U,Y,12649.0,,0.0,,12649.0,,9452.0,,1198.0,,10650.0,,187915.0,,265493.0,,239694.0,,25799.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,201908,N,P,N,12545.0,,0.0,,12545.0,,10234.0,,1180.0,,11414.0,,182061.0,,258209.0,,232437.0,,25772.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,201908,N,U,Y,12515.0,,0.0,,12515.0,,10182.0,,1179.0,,11361.0,,183224.0,,259850.0,,233930.0,,25920.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,201909,N,P,N,10695.0,,0.0,,10695.0,,8525.0,,739.0,,9264.0,,184550.0,,261045.0,,235155.0,,25890.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,201909,N,U,Y,10671.0,,0.0,,10671.0,,8491.0,,739.0,,9230.0,,185620.0,,262616.0,,236614.0,,26002.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,201910,N,P,N,12809.0,,0.0,,12809.0,,12601.0,,1032.0,,13633.0,,186514.0,,263397.0,,237547.0,,25850.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,201910,N,U,Y,12752.0,,0.0,,12752.0,,11819.0,,971.0,,12790.0,,187533.0,,264965.0,,238986.0,,25979.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,201911,N,P,N,18572.0,,0.0,,18572.0,,14617.0,,1843.0,,16460.0,,187953.0,,265065.0,,239148.0,,25917.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,201911,N,U,Y,18472.0,,0.0,,18472.0,,12275.0,,1729.0,,14004.0,,189091.0,,266732.0,,240676.0,,26056.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,201912,N,P,N,19673.0,,0.0,,19673.0,,8339.0,,839.0,,9178.0,,189044.0,,266030.0,,240084.0,,25946.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,201912,N,U,Y,19471.0,,0.0,,19471.0,,8308.0,,839.0,,9147.0,,190135.0,,267602.0,,241549.0,,26053.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,202001,Y,P,N,20449.0,,0.0,,20449.0,,21398.0,,2314.0,,23712.0,,173233.0,,313122.0,,285354.0,,27768.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,202001,Y,U,Y,20404.0,,0.0,,20404.0,,21398.0,,2314.0,,23712.0,,173233.0,,313122.0,,285354.0,,27768.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,202002,Y,P,N,12071.0,,0.0,,12071.0,,15040.0,,1392.0,,16432.0,,175309.0,,319534.0,,291745.0,,27789.0,,,,8148.0,,2911.0,,4586.0,,337.0,,72.0,,,,,,, +ID,Idaho,202002,Y,U,Y,12045.0,,0.0,,12045.0,,15040.0,,1392.0,,16432.0,,175309.0,,319534.0,,291745.0,,27789.0,,,,8014.0,,2860.0,,4395.0,,332.0,,69.0,,,,,,, +ID,Idaho,202003,Y,P,N,11312.0,,0.0,,11312.0,,13263.0,,847.0,,14110.0,,177091.0,,324506.0,,296824.0,,27682.0,,,,7259.0,,3307.0,,2734.0,,164.0,,69.0,,,,,,, +ID,Idaho,202003,Y,U,Y,11277.0,,0.0,,11277.0,,13202.0,,847.0,,14049.0,,177196.0,,325353.0,,298022.0,,27331.0,,,,7049.0,,3231.0,,2582.0,,156.0,,68.0,,,,,,, +ID,Idaho,202004,Y,P,N,10290.0,,0.0,,10290.0,,14019.0,,673.0,,14692.0,,178988.0,,331199.0,,303868.0,,27331.0,,,,7906.0,,1905.0,,3287.0,,89.0,,50.0,,,,,,, +ID,Idaho,202004,Y,U,Y,10274.0,,0.0,,10274.0,,13957.0,,666.0,,14623.0,,179778.0,,332920.0,,305509.0,,27411.0,,,,7749.0,,1876.0,,3191.0,,88.0,,50.0,,,,,,, +ID,Idaho,202005,Y,P,N,8167.0,,0.0,,8167.0,,8915.0,,348.0,,9263.0,,180008.0,,335685.0,,309175.0,,26510.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,202005,Y,U,Y,8154.0,,0.0,,8154.0,,8871.0,,346.0,,9217.0,,180965.0,,337725.0,,311105.0,,26620.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,202006,Y,P,N,8854.0,,0.0,,8854.0,,8801.0,,376.0,,9177.0,,181363.0,,340742.0,,314253.0,,26489.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,202006,Y,U,Y,8838.0,,0.0,,8838.0,,8760.0,,375.0,,9135.0,,182090.0,,342341.0,,315855.0,,26486.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,202007,Y,P,N,9288.0,,0.0,,9288.0,,8990.0,,359.0,,9349.0,,182886.0,,345793.0,,319045.0,,26748.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,202007,Y,U,Y,9272.0,,0.0,,9272.0,,8940.0,,359.0,,9299.0,,183847.0,,347777.0,,320907.0,,26870.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,202008,Y,P,N,8992.0,,0.0,,8992.0,,8699.0,,367.0,,9066.0,,184698.0,,351597.0,,324494.0,,27103.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,202008,Y,U,Y,8964.0,,0.0,,8964.0,,8658.0,,365.0,,9023.0,,185886.0,,354061.0,,326839.0,,27222.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,202009,Y,P,N,9054.0,,0.0,,9054.0,,8778.0,,398.0,,9176.0,,186440.0,,357346.0,,330277.0,,27069.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,202009,Y,U,Y,9041.0,,0.0,,9041.0,,8757.0,,431.0,,9188.0,,187177.0,,359001.0,,331920.0,,27081.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,202010,Y,P,N,15895.0,,0.0,,15895.0,,13386.0,,619.0,,14005.0,,187427.0,,361596.0,,334737.0,,26859.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,202010,Y,U,Y,15567.0,,0.0,,15567.0,,13303.0,,807.0,,14110.0,,188454.0,,363581.0,,336485.0,,27096.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,202011,Y,P,N,11838.0,,0.0,,11838.0,,8781.0,,430.0,,9211.0,,193586.0,,371288.0,,344245.0,,27043.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,202011,Y,U,Y,11799.0,,0.0,,11799.0,,8721.0,,53.0,,8774.0,,194786.0,,373786.0,,346626.0,,27160.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,202012,Y,P,N,14444.0,,0.0,,14444.0,,12695.0,,640.0,,13335.0,,193751.0,,373553.0,,346649.0,,26904.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,202012,Y,U,Y,14388.0,,0.0,,14388.0,,12676.0,,1227.0,,13903.0,,195654.0,,376688.0,,348775.0,,27913.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,202101,Y,P,N,9195.0,,0.0,,9195.0,,8821.0,,1814.0,,10635.0,,196143.0,,381402.0,,352262.0,,29140.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,202101,Y,U,Y,9169.0,,0.0,,9169.0,,8809.0,,2401.0,,11210.0,,197159.0,,383589.0,,354382.0,,29207.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,202102,Y,P,N,8250.0,,0.0,,8250.0,,7703.0,,340.0,,8043.0,,196816.0,,384416.0,,355209.0,,29207.0,,,,3809.0,,2324.0,,3224.0,,231.0,,119.0,,,,,,, +ID,Idaho,202102,Y,U,Y,8222.0,,0.0,,8222.0,,7685.0,,340.0,,8025.0,,197984.0,,386821.0,,357508.0,,29313.0,,,,3721.0,,2229.0,,3003.0,,225.0,,117.0,,,,,,, +ID,Idaho,202103,Y,P,N,10258.0,,0.0,,10258.0,,8232.0,,746.0,,8978.0,,198543.0,,389440.0,,359725.0,,29715.0,,,,4187.0,,3805.0,,3354.0,,282.0,,120.0,,,,,,, +ID,Idaho,202103,Y,U,Y,10233.0,,0.0,,10233.0,,8207.0,,746.0,,8953.0,,199536.0,,391548.0,,361626.0,,29922.0,,,,4097.0,,3677.0,,3267.0,,277.0,,116.0,,,,,,, +ID,Idaho,202104,Y,P,N,10259.0,,0.0,,10259.0,,7567.0,,318.0,,7885.0,,199511.0,,393355.0,,362765.0,,30590.0,,,,4661.0,,4250.0,,4159.0,,222.0,,136.0,,,,,,, +ID,Idaho,202104,Y,U,Y,10233.0,,0.0,,10233.0,,7514.0,,318.0,,7832.0,,200822.0,,395586.0,,364507.0,,31079.0,,,,4543.0,,4164.0,,3969.0,,220.0,,134.0,,,,,,, +ID,Idaho,202105,Y,P,N,7931.0,,0.0,,7931.0,,6804.0,,347.0,,7151.0,,199271.0,,394436.0,,363357.0,,31079.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,202105,Y,U,Y,7907.0,,0.0,,7907.0,,6781.0,,346.0,,7127.0,,200438.0,,396646.0,,365359.0,,31287.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,202106,Y,P,N,8878.0,,0.0,,8878.0,,7436.0,,383.0,,7819.0,,198758.0,,393787.0,,362474.0,,31313.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,202106,Y,U,Y,8858.0,,0.0,,8858.0,,7422.0,,381.0,,7803.0,,199776.0,,395822.0,,364391.0,,31431.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,202107,Y,P,N,8405.0,,0.0,,8405.0,,7600.0,,336.0,,7936.0,,199767.0,,397072.0,,365099.0,,31973.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,202107,Y,U,Y,8384.0,,0.0,,8384.0,,7568.0,,336.0,,7904.0,,200952.0,,399433.0,,367331.0,,32102.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,202108,Y,P,N,8958.0,,0.0,,8958.0,,7535.0,,486.0,,8021.0,,196824.0,,396170.0,,362850.0,,33320.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,202108,Y,U,Y,8925.0,,0.0,,8925.0,,7497.0,,480.0,,7977.0,,197790.0,,398124.0,,364712.0,,33412.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,202109,Y,P,N,8265.0,,0.0,,8265.0,,7398.0,,322.0,,7720.0,,196953.0,,398309.0,,364418.0,,33891.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,202109,Y,U,Y,8241.0,,0.0,,8241.0,,7350.0,,322.0,,7672.0,,197885.0,,400157.0,,366172.0,,33985.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,202110,Y,P,N,7984.0,,0.0,,7984.0,,7158.0,,514.0,,7672.0,,197191.0,,401326.0,,367071.0,,34255.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,202110,Y,U,Y,7957.0,,0.0,,7957.0,,7078.0,,475.0,,7553.0,,198802.0,,403570.0,,369194.0,,34376.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,202111,Y,P,N,9416.0,,0.0,,9416.0,,6995.0,,339.0,,7334.0,,198599.0,,404709.0,,370437.0,,34272.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,202111,Y,U,Y,9375.0,,0.0,,9375.0,,6984.0,,337.0,,7321.0,,199464.0,,406367.0,,371882.0,,34485.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,202112,Y,P,N,10787.0,,0.0,,10787.0,,8073.0,,350.0,,8423.0,,199472.0,,407906.0,,373432.0,,34474.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,202112,Y,U,Y,10753.0,,0.0,,10753.0,,8053.0,,350.0,,8403.0,,200381.0,,409836.0,,375242.0,,34594.0,,,,,,,,,,,,,,,,,,, +ID,Idaho,202201,Y,P,N,11170.0,,0.0,,11170.0,,6670.0,,358.0,,7028.0,,200277.0,,411076.0,,376281.0,,34795.0,,,,3546.0,,2615.0,,4281.0,,2747.0,,1243.0,,,,,,, +ID,Idaho,202201,Y,U,Y,11106.0,,0.0,,11106.0,,6651.0,,358.0,,7009.0,,201399.0,,413410.0,,378465.0,,34945.0,,,,3425.0,,2537.0,,3969.0,,2717.0,,1207.0,,,,,,, +ID,Idaho,202202,Y,P,N,8658.0,,0.0,,8658.0,,6745.0,,364.0,,7109.0,,199191.0,,409619.0,,375091.0,,34528.0,,,,3643.0,,2140.0,,3879.0,,1260.0,,1225.0,,,,,,, +ID,Idaho,202202,Y,U,Y,8631.0,,0.0,,8631.0,,6736.0,,364.0,,7100.0,,200520.0,,412356.0,,377698.0,,34658.0,,,,3544.0,,2052.0,,3655.0,,1243.0,,129.0,,,,,,, +ID,Idaho,202203,Y,P,N,8634.0,,0.0,,8634.0,,7392.0,,314.0,,7706.0,,200694.0,,413564.0,,378524.0,,35040.0,,,,3763.0,,2104.0,,3815.0,,258.0,,491.0,,,,,,, +ID,Idaho,202203,Y,U,Y,8612.0,,0.0,,8612.0,,7363.0,,314.0,,7677.0,,201578.0,,415362.0,,380216.0,,35146.0,,,,3659.0,,2077.0,,3676.0,,254.0,,484.0,,,,,,, +ID,Idaho,202204,Y,P,N,7563.0,,0.0,,7563.0,,6594.0,,273.0,,6867.0,,200049.0,,414966.0,,380473.0,,34493.0,,,,4123.0,,1455.0,,3398.0,,107.0,,216.0,,,,,,, +ID,Idaho,202204,Y,U,Y,7547.0,,0.0,,7547.0,,6567.0,,232.0,,6799.0,,201943.0,,417777.0,,382170.0,,35607.0,,,,4004.0,,1418.0,,3242.0,,106.0,,213.0,,,,,,, +ID,Idaho,202205,Y,P,N,6870.0,,0.0,,6870.0,,5938.0,,191.0,,6129.0,,201879.0,,418946.0,,382695.0,,36251.0,,,,3675.0,,1353.0,,2533.0,,107.0,,100.0,,,,,,, +ID,Idaho,202205,Y,U,Y,6858.0,,0.0,,6858.0,,5917.0,,309.0,,6226.0,,202035.0,,419898.0,,384132.0,,35766.0,,,,3591.0,,1342.0,,2479.0,,107.0,,100.0,,,,,,, +ID,Idaho,202206,Y,P,N,7019.0,,0.0,,7019.0,,6210.0,,387.0,,6597.0,,201341.0,,419671.0,,383907.0,,35764.0,,,,3819.0,,1322.0,,2669.0,,108.0,,105.0,,,,,,, +ID,Idaho,202206,Y,U,Y,6993.0,,0.0,,6993.0,,6179.0,,387.0,,6566.0,,204030.0,,426582.0,,390003.0,,36579.0,,,,3710.0,,1276.0,,2547.0,,107.0,,104.0,,,,,,, +ID,Idaho,202207,Y,P,N,6527.0,,0.0,,6527.0,,5995.0,,256.0,,6251.0,,204065.0,,428160.0,,391620.0,,36540.0,,,,3004.0,,1370.0,,2583.0,,124.0,,68.0,,,,,,, +ID,Idaho,202207,Y,U,Y,6171.0,,0.0,,6171.0,,5973.0,,256.0,,6229.0,,205009.0,,430307.0,,393687.0,,36620.0,,,,2933.0,,1353.0,,2515.0,,120.0,,66.0,,,,,,, +ID,Idaho,202208,Y,P,N,7581.0,,0.0,,7581.0,,7213.0,,312.0,,7525.0,,204736.0,,430593.0,,393373.0,,37220.0,,,,3767.0,,1610.0,,3292.0,,227.0,,79.0,,,,,,, +ID,Idaho,202208,Y,U,Y,7562.0,,0.0,,7562.0,,7193.0,,310.0,,7503.0,,205916.0,,432974.0,,395652.0,,37322.0,,,,3662.0,,1567.0,,3144.0,,225.0,,76.0,,,,,,, +ID,Idaho,202209,Y,P,N,6884.0,,0.0,,6884.0,,6935.0,,324.0,,7259.0,,205826.0,,434151.0,,396401.0,,37750.0,,,,3244.0,,1831.0,,3489.0,,230.0,,137.0,,,,,,, +ID,Idaho,202209,Y,U,Y,6871.0,,0.0,,6871.0,,6917.0,,323.0,,7240.0,,207027.0,,436769.0,,398911.0,,37858.0,,,,3184.0,,1794.0,,3363.0,,224.0,,136.0,,,,,,, +ID,Idaho,202210,Y,P,N,6626.0,,0.0,,6626.0,,6610.0,,227.0,,6837.0,,206928.0,,438171.0,,399921.0,,38250.0,,,,2936.0,,1866.0,,2864.0,,149.0,,96.0,,,,,,, +ID,Idaho,202210,Y,U,Y,6602.0,,0.0,,6602.0,,6584.0,,227.0,,6811.0,,209634.0,,445060.0,,406518.0,,38542.0,,,,2875.0,,1827.0,,2759.0,,147.0,,95.0,,,,,,, +ID,Idaho,202211,Y,P,N,6654.0,,0.0,,6654.0,,6238.0,,318.0,,6556.0,,209507.0,,446373.0,,407741.0,,38632.0,,,,3106.0,,1980.0,,3353.0,,132.0,,66.0,,,,,,, +ID,Idaho,202211,Y,U,Y,6638.0,,0.0,,6638.0,,6209.0,,318.0,,6527.0,,211296.0,,449203.0,,410466.0,,38737.0,,,,3056.0,,1954.0,,3233.0,,131.0,,66.0,,,,,,, +ID,Idaho,202212,Y,P,N,6584.0,,0.0,,6584.0,,7670.0,,441.0,,8111.0,,209746.0,,449214.0,,410802.0,,38412.0,,,,2787.0,,2762.0,,4004.0,,197.0,,185.0,,,,,,, +ID,Idaho,202212,Y,U,Y,6555.0,,0.0,,6555.0,,7661.0,,441.0,,8102.0,,211641.0,,452903.0,,413988.0,,38915.0,,,,2729.0,,2709.0,,3767.0,,192.0,,179.0,,,,,,, +ID,Idaho,202301,Y,P,N,6851.0,,0.0,,6851.0,,6885.0,,325.0,,7210.0,,211514.0,,454013.0,,414770.0,,39243.0,,,,2561.0,,1952.0,,3626.0,,307.0,,343.0,,,,,,, +ID,Idaho,202301,Y,U,Y,6851.0,,0.0,,6851.0,,6853.0,,324.0,,7177.0,,212232.0,,455548.0,,416219.0,,39329.0,,,,2561.0,,1952.0,,3626.0,,307.0,,343.0,,,,,,, +ID,Idaho,202302,Y,P,N,5905.0,,0.0,,5905.0,,5549.0,,268.0,,5817.0,,211671.0,,456006.0,,416699.0,,39307.0,,,,2629.0,,1381.0,,2291.0,,154.0,,156.0,,,,,,, +ID,Idaho,202302,Y,U,Y,5905.0,,0.0,,5905.0,,5528.0,,268.0,,5796.0,,212284.0,,457355.0,,418002.0,,39353.0,,,,2629.0,,1381.0,,2291.0,,154.0,,156.0,,,,,,, +ID,Idaho,202303,Y,P,N,6567.0,,0.0,,6567.0,,5865.0,,310.0,,6175.0,,212048.0,,458143.0,,418774.0,,39369.0,,,,3467.0,,1252.0,,2627.0,,224.0,,239.0,,62284.0,Includes calls for other benefit programs,56.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs,0.063,Includes calls for other benefit programs +ID,Idaho,202303,Y,U,Y,6567.0,,0.0,,6567.0,,5827.0,,310.0,,6137.0,,213027.0,,460085.0,,420638.0,,39447.0,,,,3467.0,,1252.0,,2627.0,,224.0,,239.0,,62284.0,Includes calls for other benefit programs,56.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs,0.063,Includes calls for other benefit programs +ID,Idaho,202304,Y,P,N,6754.0,,0.0,,6754.0,,5496.0,,239.0,,5735.0,,206373.0,,440891.0,,404640.0,,36251.0,,,,2688.0,,1309.0,,2350.0,,205.0,,70.0,,49972.0,Includes calls for other benefit programs,51.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs,0.074,Includes calls for other benefit programs +ID,Idaho,202304,Y,U,Y,6754.0,,0.0,,6754.0,,5489.0,,239.0,,5728.0,,207630.0,,443371.0,,407002.0,,36369.0,,,,2688.0,,1309.0,,2350.0,,205.0,,70.0,,49972.0,Includes calls for other benefit programs,51.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs,0.074,Includes calls for other benefit programs +ID,Idaho,202305,Y,P,N,7528.0,,0.0,,7528.0,,6063.0,,346.0,,6409.0,,201974.0,,430487.0,,396828.0,,33659.0,,,,2727.0,,1663.0,,3337.0,,397.0,,89.0,,58892.0,Includes calls for other benefit programs,34.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs,0.069,Includes calls for other benefit programs +ID,Idaho,202305,Y,U,Y,7528.0,,0.0,,7528.0,,6056.0,,346.0,,6402.0,,203124.0,,432712.0,,398924.0,,33788.0,,,,2727.0,,1663.0,,3337.0,,397.0,,94.0,,58892.0,Includes calls for other benefit programs,34.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs,0.068,Includes calls for other benefit programs +ID,Idaho,202306,Y,P,N,9890.0,,0.0,,9890.0,,7895.0,,681.0,,8576.0,,182203.0,,381778.0,,354575.0,,27203.0,,,,4703.0,,2001.0,,4022.0,,659.0,,143.0,,49947.0,Includes calls for other benefit programs,39.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs,0.067,Includes calls for other benefit programs +ID,Idaho,202306,Y,U,Y,9890.0,,0.0,,9890.0,,7895.0,,681.0,,8576.0,,184123.0,,385133.0,,357575.0,,27558.0,,,,4703.0,,2001.0,,4022.0,,659.0,,143.0,,49947.0,Includes calls for other benefit programs,39.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs,0.067,Includes calls for other benefit programs +ID,Idaho,202307,Y,P,N,9629.0,,0.0,,9629.0,,8770.0,,753.0,,9523.0,,174199.0,,359738.0,,334429.0,,25309.0,,,,4270.0,,1757.0,,5244.0,,1628.0,,327.0,,52050.0,Includes calls for other benefit programs,52.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs,0.071,Includes calls for other benefit programs +ID,Idaho,202307,Y,U,Y,9629.0,,0.0,,9629.0,,8745.0,,753.0,,9498.0,,176213.0,,363567.0,,337970.0,,25597.0,,,,4270.0,,1757.0,,5244.0,,1628.0,,327.0,,52050.0,Includes calls for other benefit programs,52.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs,0.071,Includes calls for other benefit programs +ID,Idaho,202308,Y,P,N,11521.0,,0.0,,11521.0,,10533.0,,1021.0,,11554.0,,167492.0,,341215.0,,317363.0,,23852.0,,,,5496.0,,1562.0,,6464.0,,1840.0,,307.0,,62567.0,Includes calls for other benefit programs,46.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs,0.079,Includes calls for other benefit programs +ID,Idaho,202308,Y,U,Y,11521.0,,0.0,,11521.0,,10518.0,,1021.0,,11539.0,,169319.0,,344660.0,,320498.0,,24162.0,,,,5496.0,,1562.0,,6464.0,,1840.0,,307.0,,62567.0,Includes calls for other benefit programs,46.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs,0.079,Includes calls for other benefit programs +ID,Idaho,202309,Y,P,N,11433.0,,0.0,,11433.0,,10425.0,,977.0,,11402.0,,155468.0,,310784.0,,289864.0,,20920.0,,,,5234.0,,784.0,,6940.0,,1578.0,,307.0,,41604.0,Includes calls for other benefit programs,34.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs,0.085,Includes calls for other benefit programs +ID,Idaho,202309,Y,U,Y,11433.0,,0.0,,11433.0,,10401.0,,977.0,,11378.0,,157417.0,,314488.0,,293225.0,,21263.0,,,,5234.0,,784.0,,6940.0,,1578.0,,307.0,,41604.0,Includes calls for other benefit programs,34.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs,0.085,Includes calls for other benefit programs +ID,Idaho,202310,Y,P,N,10550.0,,0.0,,10550.0,,10882.0,,963.0,,11845.0,,157666.0,,315630.0,,294253.0,,21377.0,,,,4568.0,,2701.0,,5978.0,,1967.0,,372.0,,37689.0,Includes calls for other benefit programs,31.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs,0.08,Includes calls for other benefit programs +ID,Idaho,202310,Y,U,Y,10550.0,,0.0,,10550.0,,10863.0,,963.0,,11826.0,,159348.0,,318932.0,,297242.0,,21690.0,,,,4568.0,,2701.0,,5978.0,,1967.0,,372.0,,37689.0,Includes calls for other benefit programs,31.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs,0.08,Includes calls for other benefit programs +ID,Idaho,202311,Y,P,N,10036.0,,0.0,,10036.0,,10208.0,,874.0,,11082.0,,158323.0,,316804.0,,295263.0,,21541.0,,,,4504.0,,2329.0,,6247.0,,869.0,,277.0,,38414.0,Includes calls for other benefit programs,28.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs,0.081,Includes calls for other benefit programs +ID,Idaho,202311,Y,U,Y,9966.0,,0.0,,9966.0,,10192.0,,874.0,,11066.0,,165185.0,,336928.0,,314172.0,,22756.0,,,,4353.0,,2280.0,,5794.0,,843.0,,274.0,,38414.0,Includes calls for other benefit programs,28.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs,0.081,Includes calls for other benefit programs +ID,Idaho,202312,Y,P,N,9360.0,,0.0,,9360.0,,12070.0,,1069.0,,13139.0,,164344.0,,335115.0,,312467.0,,22648.0,,,,4152.0,,2587.0,,7308.0,,719.0,,339.0,,36648.0,Includes calls for other benefit programs,25.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs,0.076,Includes calls for other benefit programs +ID,Idaho,202312,Y,U,Y,9289.0,,0.0,,9289.0,,12058.0,,1069.0,,13127.0,,165869.0,,338380.0,,315498.0,,22882.0,,,,4025.0,,2543.0,,7000.0,,685.0,,318.0,,36648.0,Includes calls for other benefit programs,25.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs,0.076,Includes calls for other benefit programs +ID,Idaho,202401,Y,P,N,10633.0,,0.0,,10633.0,,9398.0,,744.0,,10142.0,,164277.0,,334980.0,,312599.0,,22381.0,,,,4201.0,,1746.0,,5274.0,,2322.0,,564.0,,50493.0,Includes calls for other benefit programs,26.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs,0.074,Includes calls for other benefit programs +ID,Idaho,202401,Y,U,Y,10578.0,,0.0,,10578.0,,9384.0,,744.0,,10128.0,,166319.0,,338912.0,,316175.0,,22737.0,,,,4118.0,,1701.0,,5116.0,,2303.0,,561.0,,50493.0,Includes calls for other benefit programs,26.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs,0.074,Includes calls for other benefit programs +ID,Idaho,202402,Y,P,N,9458.0,,0.0,,9458.0,,9129.0,,693.0,,9822.0,,162924.0,,331599.0,,309409.0,,22190.0,,,,4620.0,,2484.0,,3769.0,,1235.0,,213.0,,46885.0,Includes calls for other benefit programs,27.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs,0.073,Includes calls for other benefit programs +ID,Idaho,202402,Y,U,Y,9405.0,,0.0,,9405.0,,9106.0,,693.0,,9799.0,,164934.0,,335633.0,,313131.0,,22502.0,,,,4487.0,,2400.0,,3600.0,,1201.0,,210.0,,46885.0,Includes calls for other benefit programs,27.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs,0.073,Includes calls for other benefit programs +ID,Idaho,202403,Y,P,N,9333.0,,0.0,,9333.0,,9037.0,,679.0,,9716.0,,163050.0,,330995.0,,309069.0,,21926.0,,,,4197.0,,825.0,,4486.0,,1644.0,,337.0,,46035.0,Includes calls for other benefit programs,31.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs,0.066,Includes calls for other benefit programs +ID,Idaho,202403,Y,U,Y,9333.0,,0.0,,9333.0,,9012.0,,679.0,,9691.0,,164661.0,,334419.0,,312265.0,,22154.0,,,,4197.0,,825.0,,4486.0,,1644.0,,337.0,,46035.0,Includes calls for other benefit programs,31.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs,0.066,Includes calls for other benefit programs +ID,Idaho,202404,Y,P,N,9902.0,,0.0,,9902.0,,10021.0,,735.0,,10756.0,,162458.0,,330776.0,,309053.0,,21723.0,,,,4472.0,,849.0,,5846.0,,1389.0,,428.0,,40370.0,Includes calls for other benefit programs,29.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs,0.071,Includes calls for other benefit programs +ID,Idaho,202404,Y,U,Y,9902.0,,0.0,,9902.0,,9993.0,,735.0,,10728.0,,163971.0,,333770.0,,311829.0,,21941.0,,,,4472.0,,849.0,,5846.0,,1389.0,,428.0,,40370.0,Includes calls for other benefit programs,29.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs,0.071,Includes calls for other benefit programs +ID,Idaho,202405,Y,P,N,9720.0,,0.0,,9720.0,,10049.0,,747.0,,10796.0,,161405.0,,328384.0,,307199.0,,21185.0,,,,4758.0,,2404.0,,4860.0,,941.0,,194.0,,44729.0,Includes calls for other benefit programs,14.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs,0.067,Includes calls for other benefit programs +ID,Idaho,202405,Y,U,Y,9720.0,,0.0,,9720.0,,10036.0,,747.0,,10783.0,,162990.0,,331346.0,,309716.0,,21630.0,,,,4758.0,,2404.0,,4860.0,,941.0,,194.0,,44729.0,Includes calls for other benefit programs,14.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs,0.067,Includes calls for other benefit programs +ID,Idaho,202406,Y,P,N,8625.0,,0.0,,8625.0,,8226.0,,626.0,,8852.0,,158537.0,,322353.0,,302179.0,,20174.0,,,,3887.0,,2650.0,,2907.0,,270.0,,118.0,,37395.0,Includes calls for other benefit programs,20.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs,0.07,Includes calls for other benefit programs +ID,Idaho,202406,Y,U,Y,8625.0,,0.0,,8625.0,,8216.0,,626.0,,8842.0,,159830.0,,324920.0,,304590.0,,20330.0,,,,3887.0,,2650.0,,2907.0,,270.0,,118.0,,37395.0,Includes calls for other benefit programs,20.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs,0.07,Includes calls for other benefit programs +ID,Idaho,202407,Y,P,N,9922.0,,0.0,,9922.0,,9865.0,,793.0,,10658.0,,157434.0,,318274.0,,298157.0,,20117.0,,160840.0,,4848.0,,2720.0,,3983.0,,393.0,,118.0,,39594.0,Includes calls for other benefit programs,22.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs,0.071,Includes calls for other benefit programs +ID,Idaho,202407,Y,U,Y,9922.0,,0.0,,9922.0,,9822.0,,793.0,,10615.0,,158886.0,,321164.0,,300833.0,,20331.0,,162278.0,,4848.0,,2720.0,,3983.0,,393.0,,118.0,,39594.0,Includes calls for other benefit programs,22.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs,0.071,Includes calls for other benefit programs +ID,Idaho,202408,Y,P,N,10022.0,,0.0,,10022.0,,10226.0,,870.0,,11096.0,,156265.0,,314459.0,,294352.0,,20107.0,,158194.0,,4931.0,,3085.0,,4572.0,,508.0,,87.0,,37795.0,Includes calls for other benefit programs,32.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs,0.08,Includes calls for other benefit programs +ID,Idaho,202408,Y,U,Y,10022.0,,0.0,,10022.0,,10194.0,,870.0,,11064.0,,157810.0,,317463.0,,297155.0,,20308.0,,159653.0,,4931.0,,3085.0,,4572.0,,508.0,,87.0,,37795.0,Includes calls for other benefit programs,32.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs,0.08,Includes calls for other benefit programs +ID,Idaho,202409,Y,P,N,9149.0,,0.0,,9149.0,,9256.0,,769.0,,10025.0,,155818.0,,313272.0,,293341.0,,19931.0,,157454.0,,4252.0,,2657.0,,3715.0,,413.0,,114.0,,44688.0,Includes calls for other benefit programs,28.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs,0.073,Includes calls for other benefit programs +ID,Idaho,202409,Y,U,Y,9149.0,,0.0,,9149.0,,9243.0,,769.0,,10012.0,,157087.0,,315795.0,,295685.0,,20110.0,,158708.0,,4252.0,,2657.0,,3715.0,,413.0,,114.0,,44688.0,Includes calls for other benefit programs,28.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs,0.073,Includes calls for other benefit programs +ID,Idaho,202410,Y,P,N,10099.0,,0.0,,10099.0,,10460.0,,871.0,,11331.0,,156308.0,,314819.0,,294664.0,,20155.0,,158511.0,,4786.0,,3382.0,,4057.0,,786.0,,131.0,,45236.0,Includes calls for other benefit programs,18.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs,0.07,Includes calls for other benefit programs +ID,Idaho,202410,Y,U,Y,10099.0,,0.0,,10099.0,,10419.0,,870.0,,11289.0,,157424.0,,317061.0,,296693.0,,20368.0,,159637.0,,4786.0,,3382.0,,4057.0,,786.0,,131.0,,45236.0,Includes calls for other benefit programs,18.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs,0.07,Includes calls for other benefit programs +ID,Idaho,202411,Y,P,N,8837.0,,0.0,,8837.0,,9182.0,,779.0,,9961.0,,156330.0,,315309.0,,295105.0,,20204.0,,158979.0,,4223.0,,3727.0,,4161.0,,353.0,,114.0,,39470.0,Includes calls for other benefit programs,18.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs,0.075,Includes calls for other benefit programs +ID,Idaho,202411,Y,U,Y,8837.0,,0.0,,8837.0,,9147.0,,778.0,,9925.0,,157756.0,,318399.0,,297950.0,,20449.0,,160643.0,,4222.0,,3727.0,,4161.0,,353.0,,114.0,,39470.0,Includes calls for other benefit programs,18.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs,0.075,Includes calls for other benefit programs +ID,Idaho,202412,Y,P,N,9469.0,,0.0,,9469.0,,11488.0,,901.0,,12389.0,,157093.0,,317359.0,,296968.0,,20391.0,,160266.0,,4548.0,,3482.0,,6840.0,,808.0,,122.0,,44607.0,Includes calls for other benefit programs,18.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs,0.075,Includes calls for other benefit programs +ID,Idaho,202412,Y,U,Y,9469.0,,0.0,,9469.0,,11473.0,,901.0,,12374.0,,158281.0,,319959.0,,299426.0,,20533.0,,161678.0,,4548.0,,3481.0,,6840.0,,808.0,,122.0,,44607.0,Includes calls for other benefit programs,18.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs,0.075,Includes calls for other benefit programs +ID,Idaho,202501,Y,P,N,10220.0,,0.0,,10220.0,,9653.0,,601.0,,10254.0,,157275.0,,318132.0,,297818.0,,20314.0,,160857.0,,4632.0,,2174.0,,3798.0,,1189.0,,165.0,,51779.0,Includes calls for other benefit programs,31.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs,0.071,Includes calls for other benefit programs +ID,Idaho,202501,Y,U,Y,10220.0,,0.0,,10220.0,,9638.0,,601.0,,10239.0,,158620.0,,321003.0,,300476.0,,20527.0,,162383.0,,4632.0,,2174.0,,3798.0,,1189.0,,165.0,,51779.0,Includes calls for other benefit programs,31.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs,0.071,Includes calls for other benefit programs +ID,Idaho,202502,Y,P,N,8615.0,,0.0,,8615.0,,9287.0,,673.0,,9960.0,,156789.0,,317072.0,,296854.0,,20218.0,,160283.0,,3515.0,,1756.0,,3852.0,,1350.0,,188.0,,46073.0,Includes calls for other benefit programs,33.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs,0.071,Includes calls for other benefit programs +ID,Idaho,202502,Y,U,Y,8615.0,,0.0,,8615.0,,9258.0,,672.0,,9930.0,,158340.0,,320307.0,,299878.0,,20429.0,,161967.0,,3515.0,,1756.0,,3852.0,,1350.0,,188.0,,46073.0,Includes calls for other benefit programs,33.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs,0.071,Includes calls for other benefit programs +ID,Idaho,202503,Y,P,N,8808.0,,0.0,,8808.0,,8837.0,,618.0,,9455.0,,156771.0,,317948.0,,297750.0,,20198.0,,161177.0,,3569.0,,2181.0,,3669.0,,900.0,,133.0,,54252.0,Includes calls for other benefit programs,27.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs,0.068,Includes calls for other benefit programs +ID,Idaho,202503,Y,U,Y,8808.0,,0.0,,8808.0,,8823.0,,618.0,,9441.0,,158566.0,,321720.0,,301261.0,,20459.0,,163154.0,,3569.0,,2181.0,,3669.0,,900.0,,133.0,,54252.0,Includes calls for other benefit programs,27.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs,0.068,Includes calls for other benefit programs +ID,Idaho,202504,Y,P,N,9142.0,,0.0,,9142.0,,9025.0,,659.0,,9684.0,,156533.0,,318432.0,,298536.0,,19896.0,,161899.0,,4077.0,,2425.0,,4086.0,,450.0,,139.0,,51300.0,Includes calls for other benefit programs,22.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs,0.07,Includes calls for other benefit programs +ID,Idaho,202504,Y,U,Y,9142.0,,0.0,,9142.0,,9002.0,,659.0,,9661.0,,157521.0,,320470.0,,300434.0,,20036.0,,162949.0,,4077.0,,2425.0,,4086.0,,450.0,,139.0,,51300.0,Includes calls for other benefit programs,22.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs,0.07,Includes calls for other benefit programs +ID,Idaho,202505,Y,P,N,8246.0,,0.0,,8246.0,,8218.0,,662.0,,8880.0,,155634.0,,316465.0,,296736.0,,19729.0,,160831.0,,3710.0,,2711.0,,3289.0,,220.0,,103.0,,46575.0,Includes calls for other benefit programs,22.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs,0.066,Includes calls for other benefit programs +ID,Idaho,202505,Y,U,Y,8246.0,,0.0,,8246.0,,8212.0,,662.0,,8874.0,,156736.0,,318814.0,,298932.0,,19882.0,,162078.0,,3710.0,,2711.0,,3289.0,,220.0,,103.0,,46575.0,Includes calls for other benefit programs,22.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs,0.066,Includes calls for other benefit programs +ID,Idaho,202506,Y,P,N,8022.0,,0.0,,8022.0,,7894.0,,581.0,,8475.0,,154404.0,,314833.0,,295312.0,,19521.0,,160429.0,,3504.0,,2724.0,,308.0,,243.0,,73.0,,44258.0,Includes calls for other benefit programs,22.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs,0.069,Includes calls for other benefit programs +ID,Idaho,202506,Y,U,Y,8022.0,,0.0,,8022.0,,7870.0,,581.0,,8451.0,,155389.0,,315910.0,,296251.0,,19659.0,,160521.0,,3504.0,,2724.0,,308.0,,243.0,,73.0,,44258.0,Includes calls for other benefit programs,22.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs,0.069,Includes calls for other benefit programs +ID,Idaho,202507,Y,P,N,9134.0,,0.0,,9134.0,,8640.0,,633.0,,9273.0,,153906.0,,314187.0,,294759.0,,19428.0,,160281.0,,4039.0,,2975.0,,3183.0,,272.0,,108.0,,53010.0,Includes calls for other benefit programs,20.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs,0.069,Includes calls for other benefit programs +ID,Idaho,202507,Y,U,Y,9134.0,,0.0,,9134.0,,8630.0,,633.0,,9263.0,,154901.0,,316230.0,,296661.0,,19569.0,,161329.0,,4039.0,,2975.0,,3183.0,,272.0,,108.0,,53010.0,Includes calls for other benefit programs,20.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs,0.069,Includes calls for other benefit programs +ID,Idaho,202508,Y,P,N,8423.0,,0.0,,8423.0,,8105.0,,645.0,,8750.0,,152782.0,,312098.0,,292867.0,,19231.0,,159316.0,,3957.0,,2572.0,,3404.0,,276.0,,102.0,,51563.0,Includes calls for other benefit programs,25.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs,0.067,Includes calls for other benefit programs +ID,Idaho,202508,Y,U,Y,8423.0,,0.0,,8423.0,,8095.0,,645.0,,8740.0,,154400.0,,315337.0,,295855.0,,19482.0,,160937.0,,3957.0,,2572.0,,3404.0,,276.0,,102.0,,51563.0,Includes calls for other benefit programs,25.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs,0.067,Includes calls for other benefit programs +ID,Idaho,202509,Y,P,N,8733.0,,0.0,,8733.0,,8427.0,,687.0,,9114.0,,152888.0,,312698.0,,293370.0,,19328.0,,159810.0,,3603.0,,2599.0,,3639.0,,450.0,,94.0,,46189.0,Includes calls for other benefit programs,38.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs,0.068,Includes calls for other benefit programs +ID,Idaho,202509,Y,U,Y,8733.0,,0.0,,8733.0,,8419.0,,684.0,,9103.0,,154108.0,,315251.0,,295732.0,,19519.0,,161143.0,,3603.0,,2599.0,,3639.0,,450.0,,94.0,,46189.0,Includes calls for other benefit programs,38.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs,0.068,Includes calls for other benefit programs +ID,Idaho,202510,Y,P,N,8927.0,,0.0,,8927.0,,8793.0,,771.0,,9564.0,,152556.0,,312807.0,,293367.0,,19440.0,,160251.0,,3388.0,,3580.0,,4283.0,,365.0,,79.0,,43907.0,Includes calls for other benefit programs,61.0,Callbacks are included; Call centers offer callbacks; Includes calls for other benefit programs,0.063,Includes calls for other benefit programs +IL,Illinois,201309,N,U,Y,,,,,,,,,,,,,,,2626943.0,,,,,,,,,,,,,,,,,,,,,,, +IL,Illinois,201706,Y,P,N,68813.0,,0.0,,68813.0,,43628.0,,13251.0,,56879.0,,1420184.0,,3046336.0,,2797074.0,,249262.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,201706,Y,U,Y,68813.0,,0.0,,68813.0,,43628.0,,13251.0,,56879.0,,1436185.0,,3075710.0,,2824233.0,,251477.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,201707,Y,P,N,67016.0,,0.0,,67016.0,,38361.0,,11994.0,,50355.0,,1417408.0,,3040025.0,,2789217.0,,250808.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,201707,Y,U,Y,67016.0,,0.0,,67016.0,,38361.0,,11994.0,,50355.0,,1431681.0,,3073670.0,,2820285.0,,253385.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,201708,Y,P,N,78681.0,,0.0,,78681.0,,46748.0,,15619.0,,62367.0,,1409119.0,,3022660.0,,2772365.0,,250295.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,201708,Y,U,Y,78681.0,,0.0,,78681.0,,46748.0,,15619.0,,62367.0,,1432510.0,,3078351.0,,2823816.0,,254535.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,201709,Y,P,N,67589.0,,0.0,,67589.0,,46500.0,,15581.0,,62081.0,,1417934.0,,3042186.0,,2790471.0,,251715.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,201709,Y,U,Y,67589.0,,0.0,,67589.0,,46500.0,,15581.0,,62081.0,,1432856.0,,3070815.0,,2816541.0,,254274.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,201710,Y,P,N,43382.0,,0.0,,43382.0,,7406.0,,598.0,,8004.0,,1441705.0,,3166200.0,,2937918.0,,228282.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,201710,Y,U,Y,43382.0,,0.0,,43382.0,,7406.0,,598.0,,8004.0,,1441705.0,,3166200.0,,2937918.0,,228282.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,201711,Y,P,N,54641.0,,0.0,,54641.0,,33825.0,,3207.0,,37032.0,,1440064.0,,3166443.0,,2937222.0,,229221.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,201711,Y,U,Y,54641.0,,0.0,,54641.0,,33825.0,,3207.0,,37032.0,,1440064.0,,3166443.0,,2937222.0,,229221.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,201712,Y,P,N,52396.0,,0.0,,52396.0,,33040.0,,3237.0,,36277.0,,1444931.0,,3189788.0,,2964143.0,,225645.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,201712,Y,U,Y,52396.0,,0.0,,52396.0,,33040.0,,3237.0,,36277.0,,1444931.0,,3189788.0,,2964143.0,,225645.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,201801,Y,P,N,57642.0,,0.0,,57642.0,,39297.0,,4061.0,,43358.0,,1423889.0,,3054889.0,,2816124.0,,238765.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,201801,Y,U,Y,57642.0,,0.0,,57642.0,,39297.0,,4061.0,,43358.0,,1434640.0,,3076689.0,,2833653.0,,243036.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,201802,Y,P,N,46974.0,,0.0,,46974.0,,42050.0,,4742.0,,46792.0,,1430437.0,,3153458.0,,2935728.0,,217730.0,,,,8180.0,,5443.0,,11604.0,,4160.0,,16135.0,,,,,,, +IL,Illinois,201802,Y,U,Y,46974.0,,0.0,,46974.0,,42050.0,,4742.0,,46792.0,,1430437.0,,3153458.0,,2935728.0,,217730.0,,,,8180.0,,5443.0,,11604.0,,4160.0,,16135.0,,,,,,, +IL,Illinois,201803,Y,P,N,54979.0,,0.0,,54979.0,,49874.0,,6163.0,,56037.0,,1422781.0,,3132875.0,,2916048.0,,216827.0,,,,8917.0,,6492.0,,12317.0,,5076.0,,20383.0,,,,,,, +IL,Illinois,201803,Y,U,Y,54979.0,,0.0,,54979.0,,49874.0,,6163.0,,56037.0,,1422781.0,,3132875.0,,2916048.0,,216827.0,,,,8917.0,,6492.0,,12317.0,,5076.0,,20383.0,,,,,,, +IL,Illinois,201804,Y,P,N,51846.0,,0.0,,51846.0,,47817.0,,5574.0,,53391.0,,1413176.0,,3104999.0,,2887682.0,,217317.0,,,,7957.0,,6132.0,,11840.0,,5097.0,,19714.0,,,,,,, +IL,Illinois,201804,Y,U,Y,51846.0,,0.0,,51846.0,,47817.0,,5574.0,,53391.0,,1413176.0,,3104999.0,,2887682.0,,217317.0,,,,7957.0,,6132.0,,11840.0,,5097.0,,19714.0,,,,,,, +IL,Illinois,201805,Y,P,N,50091.0,,0.0,,50091.0,,50422.0,,6057.0,,56479.0,,1423180.0,,3122954.0,,2905048.0,,217906.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,201805,Y,U,Y,50091.0,,0.0,,50091.0,,50422.0,,6057.0,,56479.0,,1423180.0,,3122954.0,,2905048.0,,217906.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,201806,Y,P,N,50018.0,,0.0,,50018.0,,48191.0,,5874.0,,54065.0,,1420256.0,,3108756.0,,2887939.0,,220817.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,201806,Y,U,Y,50018.0,,0.0,,50018.0,,48191.0,,5874.0,,54065.0,,1420256.0,,3108756.0,,2887939.0,,220817.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,201807,Y,P,N,53145.0,,0.0,,53145.0,,46313.0,,5558.0,,51871.0,,1418935.0,,3099179.0,,2874555.0,,224624.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,201807,Y,U,Y,53145.0,,0.0,,53145.0,,46313.0,,5558.0,,51871.0,,1418935.0,,3099179.0,,2874555.0,,224624.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,201808,Y,P,N,55842.0,,0.0,,55842.0,,53418.0,,6812.0,,60230.0,,1418383.0,,3089647.0,,2862080.0,,227567.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,201808,Y,U,Y,55842.0,,0.0,,55842.0,,53418.0,,6812.0,,60230.0,,1418383.0,,3089647.0,,2862080.0,,227567.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,201809,Y,P,N,47069.0,,0.0,,47069.0,,43809.0,,4805.0,,48614.0,,1412823.0,,3071476.0,,2839767.0,,231709.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,201809,Y,U,Y,47069.0,,0.0,,47069.0,,43809.0,,4805.0,,48614.0,,1412823.0,,3071476.0,,2839767.0,,231709.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,201810,Y,P,N,55168.0,,0.0,,55168.0,,49371.0,,4996.0,,54367.0,,1405990.0,,3045999.0,,2808656.0,,237343.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,201810,Y,U,Y,55168.0,,0.0,,55168.0,,49371.0,,4996.0,,54367.0,,1405990.0,,3045999.0,,2808656.0,,237343.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,201811,Y,P,N,49244.0,,0.0,,49244.0,,39512.0,,4190.0,,43702.0,,1395501.0,,3020847.0,,2779840.0,,241007.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,201811,Y,U,Y,49244.0,,0.0,,49244.0,,39512.0,,4190.0,,43702.0,,1395501.0,,3020847.0,,2779840.0,,241007.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,201812,Y,P,N,47680.0,,0.0,,47680.0,,40874.0,,4255.0,,45129.0,,1384337.0,,2996633.0,,2751624.0,,245009.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,201812,Y,U,Y,47680.0,,0.0,,47680.0,,40874.0,,4255.0,,45129.0,,1384337.0,,2996633.0,,2751624.0,,245009.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,201901,Y,P,N,51212.0,,0.0,,51212.0,,43859.0,,4752.0,,48611.0,,1379502.0,,2984833.0,,2739921.0,,244912.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,201901,Y,U,Y,51212.0,,0.0,,51212.0,,43859.0,,4752.0,,48611.0,,1379502.0,,2984833.0,,2739921.0,,244912.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,201902,Y,P,N,48822.0,,0.0,,48822.0,,36296.0,,3752.0,,40048.0,,1371479.0,,2959871.0,,2712626.0,,247245.0,,,,7750.0,,5839.0,,10227.0,,2541.0,,12550.0,,,,,,, +IL,Illinois,201902,Y,U,Y,48822.0,,0.0,,48822.0,,36296.0,,3752.0,,40048.0,,1371479.0,,2959871.0,,2712626.0,,247245.0,,,,7750.0,,5839.0,,10227.0,,2541.0,,12550.0,,,,,,, +IL,Illinois,201903,Y,P,N,52867.0,,0.0,,52867.0,,44574.0,,4288.0,,48862.0,,1370249.0,,2953478.0,,2702681.0,,250797.0,,,,9523.0,,7532.0,,13223.0,,2882.0,,13611.0,,,,,,, +IL,Illinois,201903,Y,U,Y,52867.0,,0.0,,52867.0,,44574.0,,4288.0,,48862.0,,1370249.0,,2953478.0,,2702681.0,,250797.0,,,,9523.0,,7532.0,,13223.0,,2882.0,,13611.0,,,,,,, +IL,Illinois,201904,Y,P,N,52798.0,,0.0,,52798.0,,49648.0,,4726.0,,54374.0,,1372966.0,,2959731.0,,2706097.0,,253634.0,,,,11778.0,,7565.0,,13502.0,,3433.0,,16685.0,,,,,,, +IL,Illinois,201904,Y,U,Y,52798.0,,0.0,,52798.0,,49648.0,,4726.0,,54374.0,,1372966.0,,2959731.0,,2706097.0,,253634.0,,,,11778.0,,7565.0,,13502.0,,3433.0,,16685.0,,,,,,, +IL,Illinois,201905,Y,P,N,52419.0,,0.0,,52419.0,,50759.0,,5198.0,,55957.0,,1370956.0,,2952683.0,,2700146.0,,252537.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,201905,Y,U,Y,52419.0,,0.0,,52419.0,,50759.0,,5198.0,,55957.0,,1370956.0,,2952683.0,,2700146.0,,252537.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,201906,Y,P,N,51483.0,,0.0,,51483.0,,45379.0,,4268.0,,49647.0,,1371815.0,,2954400.0,,2699965.0,,254435.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,201906,Y,U,Y,51483.0,,0.0,,51483.0,,45379.0,,4268.0,,49647.0,,1371815.0,,2954400.0,,2699965.0,,254435.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,201907,Y,P,N,62434.0,,0.0,,62434.0,,49417.0,,4694.0,,54111.0,,1371270.0,,2956137.0,,2698856.0,,257281.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,201907,Y,U,Y,62434.0,,0.0,,62434.0,,49417.0,,4694.0,,54111.0,,1371270.0,,2956137.0,,2698856.0,,257281.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,201908,Y,P,N,63234.0,,0.0,,63234.0,,50157.0,,5174.0,,55331.0,,1372769.0,,2962259.0,,2702676.0,,259583.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,201908,Y,U,Y,63234.0,,0.0,,63234.0,,50157.0,,5174.0,,55331.0,,1372769.0,,2962259.0,,2702676.0,,259583.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,201909,Y,P,N,57146.0,,0.0,,57146.0,,44704.0,,4590.0,,49294.0,,1372042.0,,2960638.0,,2697338.0,,263300.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,201909,Y,U,Y,57146.0,,0.0,,57146.0,,44704.0,,4590.0,,49294.0,,1372042.0,,2960638.0,,2697338.0,,263300.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,201910,Y,P,N,61506.0,,0.0,,61506.0,,48308.0,,4643.0,,52951.0,,1371721.0,,2961049.0,,2694439.0,,266610.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,201910,Y,U,Y,61506.0,,0.0,,61506.0,,48308.0,,4643.0,,52951.0,,1371721.0,,2961049.0,,2694439.0,,266610.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,201911,Y,P,N,52945.0,,0.0,,52945.0,,43158.0,,4585.0,,47743.0,,1369323.0,,2955990.0,,2686995.0,,268995.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,201911,Y,U,Y,52945.0,,0.0,,52945.0,,43158.0,,4585.0,,47743.0,,1369323.0,,2955990.0,,2686995.0,,268995.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,201912,Y,P,N,52593.0,,0.0,,52593.0,,40466.0,,4233.0,,44699.0,,1368609.0,,2956343.0,,2686085.0,,270258.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,201912,Y,U,Y,52593.0,,0.0,,52593.0,,40466.0,,4233.0,,44699.0,,1368609.0,,2956343.0,,2686085.0,,270258.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,202001,Y,P,N,63018.0,,0.0,,63018.0,,47118.0,,4552.0,,51670.0,,1368157.0,,2953326.0,,2686003.0,,267323.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,202001,Y,U,Y,63018.0,,0.0,,63018.0,,47118.0,,4552.0,,51670.0,,1368157.0,,2953326.0,,2686003.0,,267323.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,202002,Y,P,N,53049.0,,0.0,,53049.0,,44065.0,,4439.0,,48504.0,,1365783.0,,2947846.0,,2680372.0,,267474.0,,,,13444.0,,6757.0,,10985.0,,2829.0,,12246.0,,,,,,, +IL,Illinois,202002,Y,U,Y,53049.0,,0.0,,53049.0,,44065.0,,4439.0,,48504.0,,1365783.0,,2947846.0,,2680372.0,,267474.0,,,,13444.0,,6757.0,,10985.0,,2829.0,,12246.0,,,,,,, +IL,Illinois,202003,Y,P,N,72554.0,,0.0,,72554.0,,47131.0,,3981.0,,51112.0,,1366162.0,,2969831.0,,2689438.0,,280393.0,,,,11616.0,,13827.0,,11321.0,,2486.0,,9344.0,,,,,,, +IL,Illinois,202003,Y,U,Y,72554.0,,0.0,,72554.0,,47131.0,,3981.0,,51112.0,,1366162.0,,2969831.0,,2689438.0,,280393.0,,,,11616.0,,13827.0,,11321.0,,2486.0,,9344.0,,,,,,, +IL,Illinois,202004,Y,P,N,82039.0,,0.0,,82039.0,,77317.0,,5570.0,,82887.0,,1378170.0,,3033816.0,,2750902.0,,282914.0,,,,13602.0,,26547.0,,23472.0,,3978.0,,12901.0,,,,,,, +IL,Illinois,202004,Y,U,Y,82039.0,,0.0,,82039.0,,77317.0,,5570.0,,82887.0,,1378170.0,,3033816.0,,2750902.0,,282914.0,,,,13602.0,,26547.0,,23472.0,,3978.0,,12901.0,,,,,,, +IL,Illinois,202005,Y,P,N,49200.0,,0.0,,49200.0,,60210.0,,5848.0,,66058.0,,1387714.0,,3071698.0,,2784830.0,,286868.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,202005,Y,U,Y,49200.0,,0.0,,49200.0,,60210.0,,5848.0,,66058.0,,1387714.0,,3071698.0,,2784830.0,,286868.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,202006,Y,P,N,43534.0,,0.0,,43534.0,,39185.0,,3710.0,,42895.0,,1397809.0,,3103953.0,,2812874.0,,291079.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,202006,Y,U,Y,43534.0,,0.0,,43534.0,,39185.0,,3710.0,,42895.0,,1397809.0,,3103953.0,,2812874.0,,291079.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,202007,Y,P,N,50736.0,,0.0,,50736.0,,31155.0,,2843.0,,33998.0,,1408845.0,,3139748.0,,2845037.0,,294711.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,202007,Y,U,Y,50736.0,,0.0,,50736.0,,31155.0,,2843.0,,33998.0,,1408845.0,,3139748.0,,2845037.0,,294711.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,202008,Y,P,N,54606.0,,0.0,,54606.0,,34560.0,,3357.0,,37917.0,,1420232.0,,3168080.0,,2870069.0,,298011.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,202008,Y,U,Y,54606.0,,0.0,,54606.0,,34560.0,,3357.0,,37917.0,,1420232.0,,3168080.0,,2870069.0,,298011.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,202009,Y,P,N,51872.0,,0.0,,51872.0,,33362.0,,3342.0,,36704.0,,1429626.0,,3198170.0,,2897180.0,,300990.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,202009,Y,U,Y,51872.0,,0.0,,51872.0,,33362.0,,3342.0,,36704.0,,1429626.0,,3198170.0,,2897180.0,,300990.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,202010,Y,P,N,53691.0,,0.0,,53691.0,,33753.0,,3262.0,,37015.0,,1437185.0,,3227552.0,,2923915.0,,303637.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,202010,Y,U,Y,53691.0,,0.0,,53691.0,,33753.0,,3262.0,,37015.0,,1437185.0,,3227552.0,,2923915.0,,303637.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,202011,Y,P,N,50531.0,,0.0,,50531.0,,26526.0,,2238.0,,28764.0,,1446720.0,,3274771.0,,2968245.0,,306526.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,202011,Y,U,Y,50531.0,,0.0,,50531.0,,26526.0,,2238.0,,28764.0,,1446720.0,,3274771.0,,2968245.0,,306526.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,202012,Y,P,N,45993.0,,0.0,,45993.0,,32482.0,,2855.0,,35337.0,,1455742.0,,3317815.0,,3008423.0,,309392.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,202012,Y,U,Y,45993.0,,0.0,,45993.0,,32482.0,,2855.0,,35337.0,,1455742.0,,3317815.0,,3008423.0,,309392.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,202101,Y,P,N,48660.0,,0.0,,48660.0,,31462.0,,3081.0,,34543.0,,1461043.0,,3339928.0,,3028486.0,,311442.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,202101,Y,U,Y,48660.0,,0.0,,48660.0,,31462.0,,3081.0,,34543.0,,1461043.0,,3339928.0,,3028486.0,,311442.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,202102,Y,P,N,42454.0,,0.0,,42454.0,,31944.0,,4024.0,,35968.0,,1465580.0,,3354800.0,,3041238.0,,313562.0,,,,8557.0,,8057.0,,4583.0,,692.0,,18792.0,,,,,,, +IL,Illinois,202102,Y,U,Y,42454.0,,0.0,,42454.0,,31944.0,,4024.0,,35968.0,,1465580.0,,3354800.0,,3041238.0,,313562.0,,,,8557.0,,8057.0,,4583.0,,692.0,,18792.0,,,,,,, +IL,Illinois,202103,Y,P,N,48353.0,,0.0,,48353.0,,33846.0,,3896.0,,37742.0,,1471379.0,,3373256.0,,3056711.0,,316545.0,,,,9327.0,,9304.0,,10038.0,,1948.0,,9598.0,,,,,,, +IL,Illinois,202103,Y,U,Y,48353.0,,0.0,,48353.0,,33846.0,,3896.0,,37742.0,,1471379.0,,3373256.0,,3056711.0,,316545.0,,,,9327.0,,9304.0,,10038.0,,1948.0,,9598.0,,,,,,, +IL,Illinois,202104,Y,P,N,43438.0,,0.0,,43438.0,,25827.0,,2379.0,,28206.0,,1477524.0,,3395134.0,,3075237.0,,319897.0,,,,7596.0,,7929.0,,6239.0,,841.0,,3606.0,,,,,,, +IL,Illinois,202104,Y,U,Y,43438.0,,0.0,,43438.0,,25827.0,,2379.0,,28206.0,,1477524.0,,3395134.0,,3075237.0,,319897.0,,,,7596.0,,7929.0,,6239.0,,841.0,,3606.0,,,,,,, +IL,Illinois,202105,Y,P,N,41361.0,,0.0,,41361.0,,22814.0,,2157.0,,24971.0,,1476295.0,,3398838.0,,3077986.0,,320852.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,202105,Y,U,Y,41361.0,,0.0,,41361.0,,22814.0,,2157.0,,24971.0,,1476295.0,,3398838.0,,3077986.0,,320852.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,202106,Y,P,N,46144.0,,0.0,,46144.0,,25346.0,,2127.0,,27473.0,,1480847.0,,3417591.0,,3095163.0,,322428.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,202106,Y,U,Y,46144.0,,0.0,,46144.0,,25346.0,,2127.0,,27473.0,,1480847.0,,3417591.0,,3095163.0,,322428.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,202107,Y,P,N,47726.0,,0.0,,47726.0,,25209.0,,2225.0,,27434.0,,1487168.0,,3440508.0,,3116063.0,,324445.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,202107,Y,U,Y,47726.0,,0.0,,47726.0,,25209.0,,2225.0,,27434.0,,1487168.0,,3440508.0,,3116063.0,,324445.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,202108,Y,P,N,50207.0,,0.0,,50207.0,,27211.0,,2482.0,,29693.0,,1494044.0,,3465672.0,,3139292.0,,326380.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,202108,Y,U,Y,50207.0,,0.0,,50207.0,,27211.0,,2482.0,,29693.0,,1494044.0,,3465672.0,,3139292.0,,326380.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,202109,Y,P,N,49510.0,,0.0,,49510.0,,26994.0,,2415.0,,29409.0,,1498529.0,,3483116.0,,3154996.0,,328120.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,202109,Y,U,Y,49510.0,,0.0,,49510.0,,26994.0,,2415.0,,29409.0,,1498529.0,,3483116.0,,3154996.0,,328120.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,202110,Y,P,N,51765.0,,0.0,,51765.0,,26938.0,,2168.0,,29106.0,,1502856.0,,3501788.0,,3172072.0,,329716.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,202110,Y,U,Y,51765.0,,0.0,,51765.0,,26938.0,,2168.0,,29106.0,,1502856.0,,3501788.0,,3172072.0,,329716.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,202111,Y,P,N,49001.0,,0.0,,49001.0,,25501.0,,2287.0,,27788.0,,1508632.0,,3531035.0,,3201784.0,,329251.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,202111,Y,U,Y,49001.0,,0.0,,49001.0,,25501.0,,2287.0,,27788.0,,1508632.0,,3531035.0,,3201784.0,,329251.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,202112,Y,P,N,44940.0,,0.0,,44940.0,,27756.0,,3303.0,,31059.0,,1512084.0,,3555289.0,,3224583.0,,330706.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,202112,Y,U,Y,44940.0,,0.0,,44940.0,,27756.0,,3303.0,,31059.0,,1512084.0,,3555289.0,,3224583.0,,330706.0,,,,,,,,,,,,,,,,,,, +IL,Illinois,202201,Y,P,N,48710.0,,0.0,,48710.0,,27948.0,,2703.0,,30651.0,,1516780.0,,3577276.0,,3244603.0,,332673.0,,,,9532.0,,9192.0,,7295.0,,1676.0,,3326.0,,,,,,, +IL,Illinois,202201,Y,U,Y,48710.0,,0.0,,48710.0,,27948.0,,2703.0,,30651.0,,1516780.0,,3577276.0,,3244603.0,,332673.0,,,,9532.0,,9192.0,,7295.0,,1676.0,,3326.0,,,,,,, +IL,Illinois,202202,Y,P,N,39238.0,,0.0,,39238.0,,26534.0,,1936.0,,28470.0,,1520273.0,,3586291.0,,3251696.0,,334595.0,,,,8207.0,,6436.0,,6644.0,,2554.0,,5417.0,,,,,,, +IL,Illinois,202202,Y,U,Y,39238.0,,0.0,,39238.0,,26534.0,,1936.0,,28470.0,,1520273.0,,3586291.0,,3251696.0,,334595.0,,,,8207.0,,6436.0,,6644.0,,2554.0,,5417.0,,,,,,, +IL,Illinois,202203,Y,P,N,47767.0,,0.0,,47767.0,,25093.0,,2151.0,,27244.0,,1524706.0,,3602642.0,,3266530.0,,336112.0,,,,9536.0,,7877.0,,5875.0,,732.0,,1108.0,,,,,,, +IL,Illinois,202203,Y,U,Y,47767.0,,0.0,,47767.0,,25093.0,,2151.0,,27244.0,,1524706.0,,3602642.0,,3266530.0,,336112.0,,,,9536.0,,7877.0,,5875.0,,732.0,,1108.0,,,,,,, +IL,Illinois,202204,Y,P,N,43222.0,,0.0,,43222.0,,21668.0,,1577.0,,23245.0,,1528547.0,,3617664.0,,3280469.0,,337195.0,,,,8439.0,,6803.0,,4855.0,,526.0,,572.0,,,,,,, +IL,Illinois,202204,Y,U,Y,43222.0,,0.0,,43222.0,,21668.0,,1577.0,,23245.0,,1528547.0,,3617664.0,,3280469.0,,337195.0,,,,8439.0,,6803.0,,4855.0,,526.0,,572.0,,,,,,, +IL,Illinois,202205,Y,P,N,44133.0,,0.0,,44133.0,,21391.0,,1633.0,,23024.0,,1531857.0,,3634453.0,,3296138.0,,338315.0,,,,7842.0,,6903.0,,4904.0,,603.0,,534.0,,,,,,, +IL,Illinois,202205,Y,U,Y,44133.0,,0.0,,44133.0,,21391.0,,1633.0,,23024.0,,1531857.0,,3634453.0,,3296138.0,,338315.0,,,,7842.0,,6903.0,,4904.0,,603.0,,534.0,,,,,,, +IL,Illinois,202206,Y,P,N,47843.0,,0.0,,47843.0,,23062.0,,1746.0,,24808.0,,1536340.0,,3652784.0,,3313334.0,,339450.0,,,,7334.0,,8447.0,,5694.0,,681.0,,595.0,,,,,,, +IL,Illinois,202206,Y,U,Y,47843.0,,0.0,,47843.0,,23062.0,,1746.0,,24808.0,,1536340.0,,3652784.0,,3313334.0,,339450.0,,,,7334.0,,8447.0,,5694.0,,681.0,,595.0,,,,,,, +IL,Illinois,202207,Y,P,N,55308.0,,0.0,,55308.0,,24248.0,,2051.0,,26299.0,,1543590.0,,3675203.0,,3334260.0,,340943.0,,,,7871.0,,9024.0,,6489.0,,833.0,,500.0,,,,,,, +IL,Illinois,202207,Y,U,Y,55308.0,,0.0,,55308.0,,24248.0,,2051.0,,26299.0,,1543590.0,,3675203.0,,3334260.0,,340943.0,,,,7871.0,,9024.0,,6489.0,,833.0,,500.0,,,,,,, +IL,Illinois,202208,Y,P,N,62224.0,,0.0,,62224.0,,28779.0,,2659.0,,31438.0,,1550339.0,,3703488.0,,3368621.0,,334867.0,,,,9130.0,,11058.0,,8072.0,,1151.0,,718.0,,,,,,, +IL,Illinois,202208,Y,U,Y,62224.0,,0.0,,62224.0,,28779.0,,2659.0,,31438.0,,1550339.0,,3703488.0,,3368621.0,,334867.0,,,,9130.0,,11058.0,,8072.0,,1151.0,,718.0,,,,,,, +IL,Illinois,202209,Y,P,N,55016.0,,0.0,,55016.0,,26288.0,,2232.0,,28520.0,,1554639.0,,3722306.0,,3386032.0,,336274.0,,,,8190.0,,9887.0,,6930.0,,1282.0,,813.0,,,,,,, +IL,Illinois,202209,Y,U,Y,55016.0,,0.0,,55016.0,,26288.0,,2232.0,,28520.0,,1554639.0,,3722306.0,,3386032.0,,336274.0,,,,8190.0,,9887.0,,6930.0,,1282.0,,813.0,,,,,,, +IL,Illinois,202210,Y,P,N,55216.0,,0.0,,55216.0,,25923.0,,2277.0,,28200.0,,1556728.0,,3735580.0,,3398265.0,,337315.0,,,,8407.0,,8985.0,,6919.0,,1226.0,,922.0,,,,,,, +IL,Illinois,202210,Y,U,Y,55216.0,,0.0,,55216.0,,25923.0,,2277.0,,28200.0,,1556728.0,,3735580.0,,3398265.0,,337315.0,,,,8407.0,,8985.0,,6919.0,,1226.0,,922.0,,,,,,, +IL,Illinois,202211,Y,P,N,44701.0,,0.0,,44701.0,,23876.0,,2856.0,,26732.0,,1561192.0,,3759229.0,,3419471.0,,339758.0,,,,8368.0,,7587.0,,7594.0,,1181.0,,1028.0,,,,,,, +IL,Illinois,202211,Y,U,Y,44701.0,,0.0,,44701.0,,23876.0,,2856.0,,26732.0,,1561192.0,,3759229.0,,3419471.0,,339758.0,,,,8368.0,,7587.0,,7594.0,,1181.0,,1028.0,,,,,,, +IL,Illinois,202212,Y,P,N,43360.0,,0.0,,43360.0,,26259.0,,3515.0,,29774.0,,1566918.0,,3788584.0,,3446137.0,,342447.0,,,,8730.0,,10473.0,,10441.0,,1992.0,,1675.0,,,,,,, +IL,Illinois,202212,Y,U,Y,43360.0,,0.0,,43360.0,,26259.0,,3515.0,,29774.0,,1566918.0,,3788584.0,,3446137.0,,342447.0,,,,8730.0,,10473.0,,10441.0,,1992.0,,1675.0,,,,,,, +IL,Illinois,202301,Y,P,N,49534.0,,0.0,,49534.0,,26885.0,,2855.0,,29740.0,,1568138.0,,3800055.0,,3456508.0,,343547.0,,,,9148.0,,9457.0,,7467.0,,4183.0,,2429.0,,,,,,, +IL,Illinois,202301,Y,U,Y,49534.0,,0.0,,49534.0,,26885.0,,2855.0,,29740.0,,1571285.0,,3808385.0,,3463814.0,,344571.0,,,,9148.0,,9457.0,,7467.0,,4183.0,,2429.0,,,,,,, +IL,Illinois,202302,Y,P,N,39750.0,,0.0,,39750.0,,25056.0,,2369.0,,27425.0,,1571953.0,,3810186.0,,3464879.0,,345307.0,,,,8210.0,,6865.0,,6486.0,,3521.0,,3354.0,,,,,,, +IL,Illinois,202302,Y,U,Y,39750.0,,0.0,,39750.0,,25056.0,,2369.0,,27425.0,,1575398.0,,3818769.0,,3472883.0,,345886.0,,,,8210.0,,6865.0,,6486.0,,3521.0,,3354.0,,,,,,, +IL,Illinois,202303,Y,P,N,44391.0,,0.0,,44391.0,,24793.0,,2127.0,,26920.0,,1574263.0,,3817674.0,,3471258.0,,346416.0,,,,8882.0,,8172.0,,5443.0,,795.0,,3007.0,,172227.0,Does not include all calls received after business hours; Includes calls for other benefit programs,11.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.28,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +IL,Illinois,202303,Y,U,Y,44391.0,,0.0,,44391.0,,24793.0,,2127.0,,26920.0,,1577632.0,,3826461.0,,3479696.0,,346765.0,,,,8882.0,,8172.0,,5443.0,,795.0,,3007.0,,172227.0,Does not include all calls received after business hours; Includes calls for other benefit programs,11.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.28,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +IL,Illinois,202304,Y,P,N,40189.0,,0.0,,40189.0,,20535.0,,1768.0,,22303.0,,1577019.0,,3831026.0,,3484085.0,,346941.0,,,,7169.0,,7086.0,,5008.0,,698.0,,1341.0,,115971.0,Does not include all calls received after business hours,10.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.284,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IL,Illinois,202304,Y,U,Y,40189.0,,0.0,,40189.0,,20535.0,,1768.0,,22303.0,,1580955.0,,3839112.0,,3492850.0,,346262.0,,,,7169.0,,7086.0,,5008.0,,698.0,,1341.0,,115971.0,Does not include all calls received after business hours,10.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.284,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IL,Illinois,202305,Y,P,N,47130.0,,0.0,,47130.0,,21411.0,,2003.0,,23414.0,,1580563.0,,3843425.0,,3496905.0,,346520.0,,,,7848.0,,8031.0,,5418.0,,668.0,,718.0,,138331.0,Does not include all calls received after business hours,12.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.341,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IL,Illinois,202305,Y,U,Y,47130.0,,0.0,,47130.0,,21411.0,,2003.0,,23414.0,,1584559.0,,3851907.0,,3505416.0,,346491.0,,,,7848.0,,8031.0,,5418.0,,668.0,,718.0,,138331.0,Does not include all calls received after business hours,12.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.341,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IL,Illinois,202306,Y,P,N,51101.0,,0.0,,51101.0,,21520.0,,1967.0,,23487.0,,1584660.0,,3857818.0,,3510969.0,,346849.0,,,,8041.0,,8298.0,,6145.0,,775.0,,738.0,,149505.0,Does not include all calls received after business hours,13.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.419,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IL,Illinois,202306,Y,U,Y,51101.0,,0.0,,51101.0,,21520.0,,1967.0,,23487.0,,1588377.0,,3866234.0,,3518864.0,,347370.0,,,,8041.0,,8298.0,,6145.0,,775.0,,738.0,,149505.0,Does not include all calls received after business hours,13.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.419,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IL,Illinois,202307,Y,P,N,49147.0,,0.0,,49147.0,,21434.0,,1994.0,,23428.0,,1587203.0,,3863904.0,,3512728.0,,351176.0,,,,7565.0,,7320.0,,6887.0,,1238.0,,1005.0,,159272.0,Does not include all calls received after business hours,16.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.434,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IL,Illinois,202307,Y,U,Y,49147.0,,0.0,,49147.0,,21434.0,,1994.0,,23428.0,,1591271.0,,3872945.0,,3521298.0,,351647.0,,,,7565.0,,7320.0,,6887.0,,1238.0,,1005.0,,159272.0,Does not include all calls received after business hours,16.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.434,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IL,Illinois,202308,Y,P,N,57687.0,,0.0,,57687.0,,25189.0,,2253.0,,27442.0,,1579529.0,,3837155.0,,3481754.0,,355401.0,,,,7082.0,,8570.0,,8859.0,,1781.0,,1461.0,,320835.0,Does not include all calls received after business hours,17.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.274,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IL,Illinois,202308,Y,U,Y,57687.0,,0.0,,57687.0,,25189.0,,2253.0,,27442.0,,1584024.0,,3846699.0,,3490346.0,,356353.0,,,,7082.0,,8570.0,,8859.0,,1781.0,,1461.0,,320835.0,Does not include all calls received after business hours,17.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.274,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IL,Illinois,202309,Y,P,N,54162.0,,0.0,,54162.0,,26692.0,,2659.0,,29351.0,,1558088.0,,3781953.0,,3423421.0,,358532.0,,,,8028.0,,7806.0,,8621.0,,2488.0,,2669.0,,274185.0,Does not include all calls received after business hours,22.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.329,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IL,Illinois,202309,Y,U,Y,54162.0,,0.0,,54162.0,,26692.0,,2659.0,,29351.0,,1585012.0,,3840472.0,,3477798.0,,362674.0,,,,8028.0,,7806.0,,8621.0,,2488.0,,2669.0,,274185.0,Does not include all calls received after business hours,22.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.329,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IL,Illinois,202310,Y,P,N,62187.0,,0.0,,62187.0,,29385.0,,3048.0,,32433.0,,1551098.0,,3725047.0,,3371248.0,,353799.0,,,,8184.0,,8251.0,,9886.0,,2578.0,,3623.0,,302117.0,Does not include all calls received after business hours,21.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.325,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IL,Illinois,202310,Y,U,Y,62187.0,,0.0,,62187.0,,29385.0,,3048.0,,32433.0,,1556905.0,,3738745.0,,3383694.0,,355051.0,,,,8184.0,,8251.0,,9886.0,,2578.0,,3623.0,,302117.0,Does not include all calls received after business hours,21.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.325,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IL,Illinois,202311,Y,P,N,59164.0,,0.0,,59164.0,,25844.0,,2679.0,,28523.0,,1541560.0,,3686440.0,,3334024.0,,352416.0,,,,7684.0,,6466.0,,8528.0,,2130.0,,3934.0,,296120.0,Does not include all calls received after business hours,25.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.362,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IL,Illinois,202311,Y,U,Y,59164.0,,0.0,,59164.0,,25844.0,,2679.0,,28523.0,,1546768.0,,3698378.0,,3344512.0,,353866.0,,,,7684.0,,6466.0,,8528.0,,2130.0,,3934.0,,296120.0,Does not include all calls received after business hours,25.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.362,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IL,Illinois,202312,Y,P,N,54898.0,,0.0,,54898.0,,26017.0,,2866.0,,28883.0,,1530804.0,,3645743.0,,3296014.0,,349729.0,,,,6750.0,,6401.0,,8783.0,,2267.0,,4577.0,,274137.0,Does not include all calls received after business hours,24.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.336,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IL,Illinois,202312,Y,U,Y,54898.0,,0.0,,54898.0,,26017.0,,2866.0,,28883.0,,1539190.0,,3664724.0,,3313240.0,,351484.0,,,,6750.0,,6401.0,,8783.0,,2267.0,,4577.0,,274137.0,Does not include all calls received after business hours,24.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.336,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IL,Illinois,202401,Y,P,N,69334.0,,0.0,,69334.0,,31748.0,,3240.0,,34988.0,,1528500.0,,3619702.0,,3273517.0,,346185.0,,,,9456.0,,7978.0,,8802.0,,2808.0,,6287.0,,336707.0,Does not include all calls received after business hours,26.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.352,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IL,Illinois,202401,Y,U,Y,69334.0,,0.0,,69334.0,,31748.0,,3240.0,,34988.0,,1532901.0,,3630553.0,,3284014.0,,346539.0,,,,9456.0,,7978.0,,8802.0,,2808.0,,6287.0,,336707.0,Does not include all calls received after business hours,26.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.352,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IL,Illinois,202402,Y,P,N,58634.0,,0.0,,58634.0,,31529.0,,3292.0,,34821.0,,1519248.0,,3574589.0,,3233733.0,,340856.0,,,,9031.0,,6919.0,,7992.0,,2627.0,,8269.0,,291015.0,Does not include all calls received after business hours,23.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.331,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IL,Illinois,202402,Y,U,Y,58634.0,,0.0,,58634.0,,31529.0,,3292.0,,34821.0,,1527482.0,,3596117.0,,3254491.0,,341626.0,,,,9031.0,,6919.0,,7992.0,,2627.0,,8269.0,,291015.0,Does not include all calls received after business hours,23.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.331,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IL,Illinois,202403,Y,P,N,59460.0,,0.0,,59460.0,,36896.0,,4040.0,,40936.0,,1509060.0,,3526011.0,,3193071.0,,332940.0,,,,9622.0,,7560.0,,8058.0,,2774.0,,13198.0,,289602.0,Does not include all calls received after business hours,19.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.299,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IL,Illinois,202403,Y,U,Y,59460.0,,0.0,,59460.0,,36896.0,,4040.0,,40936.0,,1515244.0,,3542797.0,,3208917.0,,333880.0,,,,9622.0,,7560.0,,8058.0,,2774.0,,13198.0,,289602.0,Does not include all calls received after business hours,19.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.299,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IL,Illinois,202404,Y,P,N,63399.0,,0.0,,63399.0,,40670.0,,4363.0,,45033.0,,1481314.0,,3438447.0,,3130023.0,,308424.0,,,,10881.0,,8946.0,,9186.0,,2908.0,,14291.0,,316396.0,Does not include all calls received after business hours,22.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.332,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IL,Illinois,202404,Y,U,Y,63399.0,,0.0,,63399.0,,40670.0,,4363.0,,45033.0,,1487790.0,,3461070.0,,3151868.0,,309202.0,,,,10881.0,,8946.0,,9186.0,,2908.0,,14291.0,,316396.0,Does not include all calls received after business hours,22.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.332,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IL,Illinois,202405,Y,P,N,61652.0,,0.0,,61652.0,,36975.0,,3752.0,,40727.0,,1467044.0,,3379793.0,,3079684.0,,300109.0,,,,10537.0,,9539.0,,8008.0,,2002.0,,11363.0,,285798.0,Does not include all calls received after business hours,20.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.303,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IL,Illinois,202405,Y,U,Y,61652.0,,0.0,,61652.0,,36975.0,,3752.0,,40727.0,,1473239.0,,3396187.0,,3095755.0,,300432.0,,,,10537.0,,9539.0,,8008.0,,2002.0,,11363.0,,285798.0,Does not include all calls received after business hours,20.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.303,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IL,Illinois,202406,Y,P,N,57512.0,,0.0,,57512.0,,30699.0,,3010.0,,33709.0,,1453335.0,,3312187.0,,3019743.0,,292444.0,,,,8216.0,,8903.0,,7794.0,,2337.0,,7110.0,,197485.0,Does not include all calls received after business hours,28.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.364,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IL,Illinois,202406,Y,U,Y,57512.0,,0.0,,57512.0,,30699.0,,3010.0,,33709.0,,1460758.0,,3332992.0,,3040669.0,,292323.0,,,,8216.0,,8903.0,,7794.0,,2337.0,,7110.0,,197485.0,Does not include all calls received after business hours,28.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.364,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IL,Illinois,202407,Y,P,N,66004.0,,0.0,,66004.0,,34750.0,,3155.0,,37905.0,,1443565.0,,3263255.0,,2977480.0,,285775.0,,1819690.0,,8817.0,,10143.0,,9097.0,,2333.0,,7736.0,,357309.0,Does not include all calls received after business hours,37.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.444,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IL,Illinois,202407,Y,U,Y,66004.0,,0.0,,66004.0,,34750.0,,3155.0,,37905.0,,1450722.0,,3283600.0,,2997607.0,,285993.0,,1832878.0,,8817.0,,10143.0,,9097.0,,2333.0,,7736.0,,357309.0,Does not include all calls received after business hours,37.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.444,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IL,Illinois,202408,Y,P,N,64161.0,,0.0,,64161.0,,36858.0,,3690.0,,40548.0,,1441927.0,,3256089.0,,2969716.0,,286373.0,,1814162.0,,9527.0,,10643.0,,9972.0,,2374.0,,8599.0,,341896.0,Does not include all calls received after business hours,32.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.408,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IL,Illinois,202408,Y,U,Y,64161.0,,0.0,,64161.0,,36858.0,,3690.0,,40548.0,,1449454.0,,3276274.0,,2989341.0,,286933.0,,1826820.0,,9527.0,,10643.0,,9972.0,,2374.0,,8599.0,,341896.0,Does not include all calls received after business hours,32.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.408,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IL,Illinois,202409,Y,P,N,59466.0,,0.0,,59466.0,,33246.0,,3253.0,,36499.0,,1438975.0,,3248845.0,,2963083.0,,285762.0,,1809870.0,,8738.0,,8885.0,,9532.0,,2459.0,,6323.0,,329618.0,Does not include all calls received after business hours,34.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.42,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IL,Illinois,202409,Y,U,Y,59466.0,,0.0,,59466.0,,33246.0,,3253.0,,36499.0,,1447486.0,,3271235.0,,2984941.0,,286294.0,,1823749.0,,8738.0,,8885.0,,9532.0,,2459.0,,6323.0,,329618.0,Does not include all calls received after business hours,34.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.42,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IL,Illinois,202410,Y,P,N,55425.0,,0.0,,55425.0,,36687.0,,4009.0,,40696.0,,1437216.0,,3243413.0,,2957608.0,,285805.0,,1806197.0,,9996.0,,10012.0,,10466.0,,2737.0,,6736.0,,365772.0,Does not include all calls received after business hours,37.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.442,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IL,Illinois,202410,Y,U,Y,55425.0,,0.0,,55425.0,,36687.0,,4009.0,,40696.0,,1442537.0,,3257417.0,,2971009.0,,286408.0,,1814880.0,,9996.0,,10012.0,,10466.0,,2737.0,,6736.0,,365772.0,Does not include all calls received after business hours,37.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.442,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IL,Illinois,202411,Y,P,N,45682.0,,0.0,,45682.0,,28273.0,,3015.0,,31288.0,,1431565.0,,3223840.0,,2936525.0,,287315.0,,1792275.0,,8106.0,,7648.0,,7702.0,,1848.0,,5725.0,,285972.0,Does not include all calls received after business hours,33.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.398,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IL,Illinois,202411,Y,U,Y,45682.0,,0.0,,45682.0,,28273.0,,3015.0,,31288.0,,1439513.0,,3242597.0,,2954294.0,,288303.0,,1803084.0,,8106.0,,7648.0,,7702.0,,1848.0,,5725.0,,285972.0,Does not include all calls received after business hours,33.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.398,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IL,Illinois,202412,Y,P,N,48201.0,,0.0,,48201.0,,30818.0,,3417.0,,34235.0,,1428952.0,,3208484.0,,2918179.0,,290305.0,,1779532.0,,8012.0,,7668.0,,8969.0,,2664.0,,5766.0,,385533.0,Does not include all calls received after business hours,26.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.372,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IL,Illinois,202412,Y,U,Y,48201.0,,0.0,,48201.0,,30818.0,,3417.0,,34235.0,,1438138.0,,3231378.0,,2940111.0,,291267.0,,1793240.0,,8012.0,,7668.0,,8969.0,,2664.0,,5766.0,,385533.0,Does not include all calls received after business hours,26.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.372,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IL,Illinois,202501,Y,P,N,62552.0,,0.0,,62552.0,,40530.0,,4387.0,,44917.0,,1425173.0,,3191264.0,,2899135.0,,292129.0,,1766091.0,,12832.0,,9904.0,,8577.0,,3134.0,,11047.0,,407702.0,Does not include all calls received after business hours,21.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.368,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IL,Illinois,202501,Y,U,Y,62552.0,,0.0,,62552.0,,40530.0,,4387.0,,44917.0,,1433357.0,,3211905.0,,2918728.0,,293177.0,,1778548.0,,12832.0,,9904.0,,8577.0,,3134.0,,11047.0,,407702.0,Does not include all calls received after business hours,21.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.368,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IL,Illinois,202502,Y,P,N,47777.0,,0.0,,47777.0,,33983.0,,4082.0,,38065.0,,1416856.0,,3168689.0,,2874704.0,,293985.0,,1751833.0,,10782.0,,7022.0,,7399.0,,2321.0,,12634.0,,298852.0,Does not include all calls received after business hours,20.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.341,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IL,Illinois,202502,Y,U,Y,47777.0,,0.0,,47777.0,,33983.0,,4082.0,,38065.0,,1427469.0,,3204871.0,,2908569.0,,296302.0,,1777402.0,,10782.0,,7022.0,,7399.0,,2321.0,,12634.0,,298852.0,Does not include all calls received after business hours,20.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.341,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IL,Illinois,202503,Y,P,N,48376.0,,0.0,,48376.0,,42832.0,,5455.0,,48287.0,,1411258.0,,3166322.0,,2868206.0,,298116.0,,1755064.0,,12568.0,,7575.0,,7756.0,,2443.0,,21483.0,,314021.0,Does not include all calls received after business hours,18.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.313,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IL,Illinois,202503,Y,U,Y,48376.0,,0.0,,48376.0,,42832.0,,5455.0,,48287.0,,1421827.0,,3194479.0,,2894353.0,,300126.0,,1772652.0,,12568.0,,7575.0,,7756.0,,2443.0,,21483.0,,314021.0,Does not include all calls received after business hours,18.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.313,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IL,Illinois,202504,Y,P,N,47604.0,,0.0,,47604.0,,39753.0,,4797.0,,44550.0,,1404730.0,,3146295.0,,2849911.0,,296384.0,,1741565.0,,12611.0,,8156.0,,7887.0,,2125.0,,13564.0,,259604.0,Does not include all calls received after business hours,17.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.227,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IL,Illinois,202504,Y,U,Y,47604.0,,0.0,,47604.0,,39753.0,,4797.0,,44550.0,,1411821.0,,3166113.0,,2868482.0,,297631.0,,1754292.0,,12611.0,,8156.0,,7887.0,,2125.0,,13564.0,,259604.0,Does not include all calls received after business hours,17.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.227,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IL,Illinois,202505,Y,P,N,44091.0,,0.0,,44091.0,,37064.0,,3935.0,,40999.0,,1395767.0,,3125044.0,,2826100.0,,298944.0,,1729277.0,,13085.0,,7610.0,,7332.0,,1805.0,,8500.0,,248462.0,Does not include all calls received after business hours,17.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.234,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IL,Illinois,202505,Y,U,Y,44091.0,,0.0,,44091.0,,37064.0,,3935.0,,40999.0,,1402845.0,,3143847.0,,2843834.0,,300013.0,,1741002.0,,13085.0,,7610.0,,7332.0,,1805.0,,8500.0,,248462.0,Does not include all calls received after business hours,17.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.234,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IL,Illinois,202506,Y,P,N,43021.0,,0.0,,43021.0,,34434.0,,3737.0,,38171.0,,1387859.0,,3104051.0,,2802704.0,,301347.0,,1716192.0,,12846.0,,7260.0,,6529.0,,1438.0,,7805.0,,239088.0,Does not include all calls received after business hours,20.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.249,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IL,Illinois,202506,Y,U,Y,43021.0,,0.0,,43021.0,,34434.0,,3737.0,,38171.0,,1395133.0,,3122783.0,,2820385.0,,302398.0,,1727650.0,,12846.0,,7260.0,,6529.0,,1438.0,,7805.0,,239088.0,Does not include all calls received after business hours,20.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.249,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IL,Illinois,202507,Y,P,N,47141.0,,0.0,,47141.0,,39157.0,,4384.0,,43541.0,,1384763.0,,3092838.0,,2789633.0,,303205.0,,1708075.0,,15457.0,,7817.0,,8344.0,,1885.0,,6788.0,,233751.0,Does not include all calls received after business hours,19.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.243,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IL,Illinois,202507,Y,U,Y,47141.0,,0.0,,47141.0,,39157.0,,4384.0,,43541.0,,1392924.0,,3113340.0,,2809169.0,,304171.0,,1720416.0,,15457.0,,7817.0,,8344.0,,1885.0,,6788.0,,233751.0,Does not include all calls received after business hours,19.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.243,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IL,Illinois,202508,Y,P,N,49055.0,,0.0,,49055.0,,37800.0,,4303.0,,42103.0,,1381429.0,,3083535.0,,2778307.0,,305228.0,,1702106.0,,15544.0,,8185.0,,8236.0,,1842.0,,5895.0,,232744.0,Does not include all calls received after business hours,19.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.239,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IL,Illinois,202508,Y,U,Y,49055.0,,0.0,,49055.0,,37800.0,,4303.0,,42103.0,,1389220.0,,3103271.0,,2797602.0,,305669.0,,1714051.0,,15544.0,,8185.0,,8236.0,,1842.0,,5895.0,,232744.0,Does not include all calls received after business hours,19.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.239,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IL,Illinois,202509,Y,P,N,46815.0,,0.0,,46815.0,,36190.0,,3738.0,,39928.0,,1376200.0,,3067497.0,,2760467.0,,307030.0,,1691297.0,,14692.0,,7586.0,,7985.0,,1793.0,,4639.0,,242216.0,Does not include all calls received after business hours,19.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.245,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IL,Illinois,202509,Y,U,Y,46815.0,,0.0,,46815.0,,36190.0,,3738.0,,39928.0,,1381460.0,,3081581.0,,2773141.0,,308440.0,,1700121.0,,14692.0,,7586.0,,7985.0,,1793.0,,4639.0,,242216.0,Does not include all calls received after business hours,19.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.245,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IL,Illinois,202510,Y,P,N,41683.0,,0.0,,41683.0,,33640.0,,3556.0,,37196.0,,1365759.0,,3041306.0,,2731730.0,,309576.0,,1675547.0,,12007.0,,6740.0,,7736.0,,1981.0,,4914.0,,234372.0,Does not include all calls received after business hours,17.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.218,Does not include all calls received after business hours; Includes only calls transferred to a live agent +IN,Indiana,201309,N,U,Y,,,,,,,,,,,,,,,1120674.0,,,,,,,,,,,,,,,,,,,,,,, +IN,Indiana,201706,Y,P,N,76018.0,,0.0,,76018.0,,34151.0,,2323.0,,36474.0,,697798.0,,1382276.0,,1277414.0,,104862.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,201706,Y,U,Y,76018.0,,0.0,,76018.0,,34151.0,,2323.0,,36474.0,,697798.0,,1382276.0,,1277414.0,,104862.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,201707,Y,P,N,74080.0,,0.0,,74080.0,,31529.0,,2201.0,,33730.0,,699025.0,,1383067.0,,1277971.0,,105096.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,201707,Y,U,Y,74080.0,,0.0,,74080.0,,31529.0,,2201.0,,33730.0,,699025.0,,1383067.0,,1277971.0,,105096.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,201708,Y,P,N,86257.0,,0.0,,86257.0,,39482.0,,3474.0,,42956.0,,700595.0,,1383030.0,,1277834.0,,105196.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,201708,Y,U,Y,86257.0,,0.0,,86257.0,,39482.0,,3474.0,,42956.0,,700595.0,,1383030.0,,1277834.0,,105196.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,201709,Y,P,N,77938.0,,0.0,,77938.0,,33034.0,,2868.0,,35902.0,,700595.0,,1383030.0,,1277834.0,,105196.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,201709,Y,U,Y,77938.0,,0.0,,77938.0,,33034.0,,2868.0,,35902.0,,700595.0,,1383030.0,,1277834.0,,105196.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,201710,Y,P,N,77871.0,,0.0,,77871.0,,33362.0,,3005.0,,36367.0,,700285.0,,1378256.0,,1271405.0,,106851.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,201710,Y,U,Y,77871.0,,0.0,,77871.0,,33362.0,,3005.0,,36367.0,,700285.0,,1378256.0,,1271405.0,,106851.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,201711,Y,P,N,71322.0,,0.0,,71322.0,,32912.0,,2966.0,,35878.0,,699666.0,,1374366.0,,1266274.0,,108092.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,201711,Y,U,Y,71322.0,,0.0,,71322.0,,32912.0,,2966.0,,35878.0,,699666.0,,1374366.0,,1266274.0,,108092.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,201712,Y,P,N,76120.0,,0.0,,76120.0,,30553.0,,2579.0,,33132.0,,698734.0,,1366818.0,,1257906.0,,108912.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,201712,Y,U,Y,76120.0,,0.0,,76120.0,,30553.0,,2579.0,,33132.0,,698734.0,,1366818.0,,1257906.0,,108912.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,201801,Y,P,N,97732.0,,0.0,,97732.0,,36050.0,,3021.0,,39071.0,,698823.0,,1364478.0,,1254856.0,,109622.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,201801,Y,U,Y,97732.0,,0.0,,97732.0,,36050.0,,3021.0,,39071.0,,698823.0,,1364478.0,,1254856.0,,109622.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,201802,Y,P,N,87289.0,,0.0,,87289.0,,35260.0,,2942.0,,38202.0,,700323.0,,1355485.0,,1245025.0,,110460.0,,,,2479.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2970.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",21720.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",16966.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",11189.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +IN,Indiana,201802,Y,U,Y,87289.0,,0.0,,87289.0,,35260.0,,2942.0,,38202.0,,700323.0,,1355485.0,,1245025.0,,110460.0,,,,2479.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2970.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",21720.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",16966.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",11189.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +IN,Indiana,201803,Y,P,N,89212.0,,0.0,,89212.0,,37522.0,,3221.0,,40743.0,,700135.0,,1351032.0,,1240324.0,,110708.0,,,,2571.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3462.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",26618.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",17118.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6542.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +IN,Indiana,201803,Y,U,Y,89212.0,,0.0,,89212.0,,37522.0,,3221.0,,40743.0,,700135.0,,1351032.0,,1240324.0,,110708.0,,,,2571.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3462.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",26618.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",17118.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6542.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +IN,Indiana,201804,Y,P,N,85051.0,,0.0,,85051.0,,40020.0,,3679.0,,43699.0,,699991.0,,1348841.0,,1238008.0,,110833.0,,,,2948.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3972.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",36132.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",14481.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",4334.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +IN,Indiana,201804,Y,U,Y,85051.0,,0.0,,85051.0,,40020.0,,3679.0,,43699.0,,699991.0,,1348841.0,,1238008.0,,110833.0,,,,2948.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3972.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",36132.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",14481.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",4334.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +IN,Indiana,201805,Y,P,N,79430.0,,0.0,,79430.0,,37127.0,,3169.0,,40296.0,,699277.0,,1346771.0,,1235291.0,,111480.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,201805,Y,U,Y,79430.0,,0.0,,79430.0,,37127.0,,3169.0,,40296.0,,699277.0,,1346771.0,,1235291.0,,111480.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,201806,Y,P,N,78830.0,,0.0,,78830.0,,33862.0,,2706.0,,36568.0,,696761.0,,1341244.0,,1229433.0,,111811.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,201806,Y,U,Y,78830.0,,0.0,,78830.0,,33862.0,,2706.0,,36568.0,,696761.0,,1341244.0,,1229433.0,,111811.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,201807,Y,P,N,84387.0,,0.0,,84387.0,,34905.0,,2736.0,,37641.0,,697935.0,,1342577.0,,1230394.0,,112183.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,201807,Y,U,Y,84387.0,,0.0,,84387.0,,34905.0,,2736.0,,37641.0,,697935.0,,1342577.0,,1230394.0,,112183.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,201808,Y,P,N,102364.0,,0.0,,102364.0,,42365.0,,3668.0,,46033.0,,697882.0,,1343027.0,,1229658.0,,113369.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,201808,Y,U,Y,102364.0,,0.0,,102364.0,,42365.0,,3668.0,,46033.0,,697882.0,,1343027.0,,1229658.0,,113369.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,201809,Y,P,N,83371.0,,0.0,,83371.0,,35148.0,,3332.0,,38480.0,,696294.0,,1339484.0,,1225273.0,,114211.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,201809,Y,U,Y,83371.0,,0.0,,83371.0,,35148.0,,3332.0,,38480.0,,696294.0,,1339484.0,,1225273.0,,114211.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,201810,Y,P,N,92925.0,,0.0,,92925.0,,43929.0,,4308.0,,48237.0,,697066.0,,1342946.0,,1228130.0,,114816.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,201810,Y,U,Y,92925.0,,0.0,,92925.0,,43929.0,,4308.0,,48237.0,,697066.0,,1342946.0,,1228130.0,,114816.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,201811,Y,P,N,79038.0,,0.0,,79038.0,,34524.0,,3394.0,,37918.0,,695264.0,,1341452.0,,1225524.0,,115928.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,201811,Y,U,Y,79038.0,,0.0,,79038.0,,34524.0,,3394.0,,37918.0,,695264.0,,1341452.0,,1225524.0,,115928.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,201812,Y,P,N,77916.0,,0.0,,77916.0,,34484.0,,3142.0,,37626.0,,693310.0,,1337411.0,,1220949.0,,116462.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,201812,Y,U,Y,77916.0,,0.0,,77916.0,,34484.0,,3142.0,,37626.0,,693310.0,,1337411.0,,1220949.0,,116462.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,201901,Y,P,N,98151.0,,0.0,,98151.0,,41697.0,,3343.0,,45040.0,,693177.0,,1339542.0,,1222555.0,,116987.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,201901,Y,U,Y,98151.0,,0.0,,98151.0,,41697.0,,3343.0,,45040.0,,693177.0,,1339542.0,,1222555.0,,116987.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,201902,Y,P,N,87809.0,,0.0,,87809.0,,34391.0,,3156.0,,37547.0,,695613.0,,1347875.0,,1230964.0,,116911.0,,,,2709.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3718.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",26536.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",16137.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6297.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +IN,Indiana,201902,Y,U,Y,87809.0,,0.0,,87809.0,,34391.0,,3156.0,,37547.0,,695613.0,,1347875.0,,1230964.0,,116911.0,,,,2709.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3718.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",26536.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",16137.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6297.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +IN,Indiana,201903,Y,P,N,96587.0,,0.0,,96587.0,,37569.0,,3227.0,,40796.0,,696439.0,,1350600.0,,1233834.0,,116766.0,,,,2836.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",4270.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",27766.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",17169.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3701.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +IN,Indiana,201903,Y,U,Y,96587.0,,0.0,,96587.0,,37569.0,,3227.0,,40796.0,,696439.0,,1350600.0,,1233834.0,,116766.0,,,,2836.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",4270.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",27766.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",17169.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3701.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +IN,Indiana,201904,Y,P,N,94483.0,,0.0,,94483.0,,41133.0,,3676.0,,44809.0,,698018.0,,1354533.0,,1238536.0,,115997.0,,,,3026.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",4810.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",34564.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",18636.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3913.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +IN,Indiana,201904,Y,U,Y,94483.0,,0.0,,94483.0,,41133.0,,3676.0,,44809.0,,698018.0,,1354533.0,,1238536.0,,115997.0,,,,3026.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",4810.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",34564.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",18636.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3913.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +IN,Indiana,201905,Y,P,N,82180.0,,0.0,,82180.0,,35265.0,,3085.0,,38350.0,,696924.0,,1354702.0,,1239071.0,,115631.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,201905,Y,U,Y,82180.0,,0.0,,82180.0,,35265.0,,3085.0,,38350.0,,696924.0,,1354702.0,,1239071.0,,115631.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,201906,Y,P,N,78026.0,,0.0,,78026.0,,30850.0,,2340.0,,33190.0,,696655.0,,1354126.0,,1238338.0,,115788.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,201906,Y,U,Y,78026.0,,0.0,,78026.0,,30850.0,,2340.0,,33190.0,,696655.0,,1354126.0,,1238338.0,,115788.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,201907,Y,P,N,86455.0,,0.0,,86455.0,,35170.0,,2761.0,,37931.0,,697857.0,,1357675.0,,1241842.0,,115833.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,201907,Y,U,Y,86455.0,,0.0,,86455.0,,35170.0,,2761.0,,37931.0,,697857.0,,1357675.0,,1241842.0,,115833.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,201908,Y,P,N,101819.0,,0.0,,101819.0,,39350.0,,3292.0,,42642.0,,697997.0,,1359573.0,,1243511.0,,116062.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,201908,Y,U,Y,101819.0,,0.0,,101819.0,,39350.0,,3292.0,,42642.0,,697997.0,,1359573.0,,1243511.0,,116062.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,201909,Y,P,N,93874.0,,0.0,,93874.0,,35011.0,,3209.0,,38220.0,,698994.0,,1363106.0,,1246253.0,,116853.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,201909,Y,U,Y,93874.0,,0.0,,93874.0,,35011.0,,3209.0,,38220.0,,698994.0,,1363106.0,,1246253.0,,116853.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,201910,Y,P,N,97957.0,,0.0,,97957.0,,40094.0,,3839.0,,43933.0,,700461.0,,1367736.0,,1250371.0,,117365.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,201910,Y,U,Y,97957.0,,0.0,,97957.0,,40094.0,,3839.0,,43933.0,,700461.0,,1367736.0,,1250371.0,,117365.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,201911,Y,P,N,72057.0,,0.0,,72057.0,,27423.0,,2502.0,,29925.0,,699858.0,,1368916.0,,1250663.0,,118253.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,201911,Y,U,Y,72057.0,,0.0,,72057.0,,27423.0,,2502.0,,29925.0,,699858.0,,1368916.0,,1250663.0,,118253.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,201912,Y,P,N,86490.0,,0.0,,86490.0,,32822.0,,3169.0,,35991.0,,702018.0,,1373098.0,,1254606.0,,118492.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,201912,Y,U,Y,86490.0,,0.0,,86490.0,,32822.0,,3169.0,,35991.0,,702018.0,,1373098.0,,1254606.0,,118492.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,202001,Y,P,N,103538.0,,0.0,,103538.0,,40203.0,,3584.0,,43787.0,,702884.0,,1377566.0,,1258885.0,,118681.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,202001,Y,U,Y,103538.0,,0.0,,103538.0,,40203.0,,3584.0,,43787.0,,702884.0,,1377566.0,,1258885.0,,118681.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,202002,Y,P,N,85121.0,,0.0,,85121.0,,37147.0,,3371.0,,40518.0,,706248.0,,1387931.0,,1268843.0,,119088.0,,,,2129.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3389.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",27611.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",12347.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",8222.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +IN,Indiana,202002,Y,U,Y,85121.0,,0.0,,85121.0,,37147.0,,3371.0,,40518.0,,706248.0,,1387931.0,,1268843.0,,119088.0,,,,2129.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3389.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",27611.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",12347.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",8222.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +IN,Indiana,202003,Y,P,N,76559.0,,0.0,,76559.0,,36570.0,,3858.0,,40428.0,,710108.0,,1417332.0,,1297259.0,,120073.0,,,,2373.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3367.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",26106.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",13328.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6040.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +IN,Indiana,202003,Y,U,Y,76559.0,,0.0,,76559.0,,36570.0,,3858.0,,40428.0,,710108.0,,1417332.0,,1297259.0,,120073.0,,,,2373.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3367.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",26106.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",13328.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6040.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +IN,Indiana,202004,Y,P,N,76583.0,,0.0,,76583.0,,40239.0,,2398.0,,42637.0,,720232.0,,1451788.0,,1329602.0,,122186.0,,,,1460.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",5546.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",27543.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",12088.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",5558.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +IN,Indiana,202004,Y,U,Y,76583.0,,0.0,,76583.0,,40239.0,,2398.0,,42637.0,,720232.0,,1451788.0,,1329602.0,,122186.0,,,,1460.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",5546.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",27543.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",12088.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",5558.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +IN,Indiana,202005,Y,P,N,67090.0,,0.0,,67090.0,,35354.0,,2048.0,,37402.0,,730134.0,,1482327.0,,1363286.0,,119041.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,202005,Y,U,Y,67090.0,,0.0,,67090.0,,35354.0,,2048.0,,37402.0,,730134.0,,1482327.0,,1363286.0,,119041.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,202006,Y,P,N,57835.0,,0.0,,57835.0,,40707.0,,2749.0,,43456.0,,740575.0,,1513958.0,,1397486.0,,116472.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,202006,Y,U,Y,57835.0,,0.0,,57835.0,,40707.0,,2749.0,,43456.0,,740575.0,,1513958.0,,1397486.0,,116472.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,202007,Y,P,N,49834.0,,0.0,,49834.0,,27956.0,,1783.0,,29739.0,,750602.0,,1543368.0,,1428099.0,,115269.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,202007,Y,U,Y,49834.0,,0.0,,49834.0,,27956.0,,1783.0,,29739.0,,750602.0,,1543368.0,,1428099.0,,115269.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,202008,Y,P,N,50137.0,,0.0,,50137.0,,29381.0,,2067.0,,31448.0,,759853.0,,1570951.0,,1455589.0,,115362.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,202008,Y,U,Y,50137.0,,0.0,,50137.0,,29381.0,,2067.0,,31448.0,,759853.0,,1570951.0,,1455589.0,,115362.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,202009,Y,P,N,54392.0,,0.0,,54392.0,,33804.0,,2005.0,,35809.0,,765785.0,,1593388.0,,1478668.0,,114720.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,202009,Y,U,Y,54392.0,,0.0,,54392.0,,33804.0,,2005.0,,35809.0,,765785.0,,1593388.0,,1478668.0,,114720.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,202010,Y,P,N,48362.0,,0.0,,48362.0,,34263.0,,2091.0,,36354.0,,771474.0,,1616483.0,,1503449.0,,113034.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,202010,Y,U,Y,48362.0,,0.0,,48362.0,,34263.0,,2091.0,,36354.0,,771474.0,,1616483.0,,1503449.0,,113034.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,202011,Y,P,N,33911.0,,0.0,,33911.0,,29869.0,,2242.0,,32111.0,,777587.0,,1640693.0,,1528630.0,,112063.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,202011,Y,U,Y,33911.0,,0.0,,33911.0,,29869.0,,2242.0,,32111.0,,777587.0,,1640693.0,,1528630.0,,112063.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,202012,Y,P,N,35749.0,,0.0,,35749.0,,33896.0,,3235.0,,37131.0,,783985.0,,1664654.0,,1552932.0,,111722.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,202012,Y,U,Y,35749.0,,0.0,,35749.0,,33896.0,,3235.0,,37131.0,,783985.0,,1664654.0,,1552932.0,,111722.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,202101,Y,P,N,33623.0,,0.0,,33623.0,,24998.0,,1717.0,,26715.0,,788968.0,,1682692.0,,1572464.0,,110228.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,202101,Y,U,Y,33623.0,,0.0,,33623.0,,24998.0,,1717.0,,26715.0,,788968.0,,1682692.0,,1572464.0,,110228.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,202102,Y,P,N,33484.0,,0.0,,33484.0,,24431.0,,1538.0,,25969.0,,793612.0,,1699074.0,,1589497.0,,109577.0,,,,494.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",9217.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",12803.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1063.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",495.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +IN,Indiana,202102,Y,U,Y,33484.0,,0.0,,33484.0,,24431.0,,1538.0,,25969.0,,793612.0,,1699074.0,,1589497.0,,109577.0,,,,494.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",9217.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",12803.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1063.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",495.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +IN,Indiana,202103,Y,P,N,34490.0,,0.0,,34490.0,,26753.0,,1629.0,,28382.0,,798831.0,,1717578.0,,1608967.0,,108611.0,,,,450.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",11952.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",12348.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",950.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",464.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +IN,Indiana,202103,Y,U,Y,34490.0,,0.0,,34490.0,,26753.0,,1629.0,,28382.0,,798831.0,,1717578.0,,1608967.0,,108611.0,,,,450.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",11952.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",12348.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",950.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",464.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +IN,Indiana,202104,Y,P,N,27556.0,,0.0,,27556.0,,23107.0,,1470.0,,24577.0,,804193.0,,1736413.0,,1629044.0,,107369.0,,,,339.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",9437.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",11829.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",796.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",379.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +IN,Indiana,202104,Y,U,Y,27556.0,,0.0,,27556.0,,23107.0,,1470.0,,24577.0,,804193.0,,1736413.0,,1629044.0,,107369.0,,,,339.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",9437.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",11829.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",796.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",379.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +IN,Indiana,202105,Y,P,N,28625.0,,0.0,,28625.0,,21328.0,,1307.0,,22635.0,,810305.0,,1753752.0,,1646917.0,,106835.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,202105,Y,U,Y,28625.0,,0.0,,28625.0,,21328.0,,1307.0,,22635.0,,810305.0,,1753752.0,,1646917.0,,106835.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,202106,Y,P,N,27486.0,,0.0,,27486.0,,21040.0,,1341.0,,22381.0,,815479.0,,1769583.0,,1663252.0,,106331.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,202106,Y,U,Y,27486.0,,0.0,,27486.0,,21040.0,,1341.0,,22381.0,,815479.0,,1769583.0,,1663252.0,,106331.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,202107,Y,P,N,25719.0,,0.0,,25719.0,,17397.0,,1085.0,,18482.0,,820122.0,,1786580.0,,1680797.0,,105783.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,202107,Y,U,Y,25719.0,,0.0,,25719.0,,17397.0,,1085.0,,18482.0,,820122.0,,1786580.0,,1680797.0,,105783.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,202108,Y,P,N,30650.0,,0.0,,30650.0,,22003.0,,1475.0,,23478.0,,825448.0,,1804435.0,,1698768.0,,105667.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,202108,Y,U,Y,30650.0,,0.0,,30650.0,,22003.0,,1475.0,,23478.0,,825448.0,,1804435.0,,1698768.0,,105667.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,202109,Y,P,N,29819.0,,0.0,,29819.0,,19260.0,,1366.0,,20626.0,,829595.0,,1819019.0,,1714004.0,,105015.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,202109,Y,U,Y,29819.0,,0.0,,29819.0,,19260.0,,1366.0,,20626.0,,829595.0,,1819019.0,,1714004.0,,105015.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,202110,Y,P,N,29517.0,,0.0,,29517.0,,18975.0,,1159.0,,20134.0,,834534.0,,1833226.0,,1728701.0,,104525.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,202110,Y,U,Y,29517.0,,0.0,,29517.0,,18975.0,,1159.0,,20134.0,,834534.0,,1833226.0,,1728701.0,,104525.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,202111,Y,P,N,20077.0,,0.0,,20077.0,,17538.0,,1248.0,,18786.0,,838875.0,,1849167.0,,1745015.0,,104152.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,202111,Y,U,Y,20077.0,,0.0,,20077.0,,17538.0,,1248.0,,18786.0,,838875.0,,1849167.0,,1745015.0,,104152.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,202112,Y,P,N,12967.0,,0.0,,12967.0,,16359.0,,1306.0,,17665.0,,843235.0,,1865268.0,,1761139.0,,104129.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,202112,Y,U,Y,12967.0,,0.0,,12967.0,,16359.0,,1306.0,,17665.0,,843235.0,,1865268.0,,1761139.0,,104129.0,,,,,,,,,,,,,,,,,,, +IN,Indiana,202201,Y,P,N,29109.0,,0.0,,29109.0,,21882.0,,1682.0,,23564.0,,846745.0,,1879603.0,,1775686.0,,103917.0,,,,309.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3247.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",12745.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",5749.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1345.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +IN,Indiana,202201,Y,U,Y,29109.0,,0.0,,29109.0,,21882.0,,1682.0,,23564.0,,846745.0,,1879603.0,,1775686.0,,103917.0,,,,309.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3247.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",12745.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",5749.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1345.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +IN,Indiana,202202,Y,P,N,31482.0,,0.0,,31482.0,,20357.0,,1382.0,,21739.0,,850239.0,,1891119.0,,1787686.0,,103433.0,,,,512.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6385.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",10964.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2969.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",931.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +IN,Indiana,202202,Y,U,Y,31482.0,,0.0,,31482.0,,20357.0,,1382.0,,21739.0,,850239.0,,1891119.0,,1787686.0,,103433.0,,,,512.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6385.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",10964.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2969.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",931.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +IN,Indiana,202203,Y,P,N,26847.0,,0.0,,26847.0,,18523.0,,1080.0,,19603.0,,854429.0,,1904790.0,,1802650.0,,102140.0,,,,1022.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",9813.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",7214.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",686.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",321.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +IN,Indiana,202203,Y,U,Y,26847.0,,0.0,,26847.0,,18523.0,,1080.0,,19603.0,,854429.0,,1904790.0,,1802650.0,,102140.0,,,,1022.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",9813.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",7214.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",686.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",321.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +IN,Indiana,202204,Y,P,N,23639.0,,0.0,,23639.0,,14875.0,,859.0,,15734.0,,859239.0,,1919037.0,,1817629.0,,101408.0,,,,526.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",7391.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6289.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",456.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",195.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +IN,Indiana,202204,Y,U,Y,23639.0,,0.0,,23639.0,,14875.0,,859.0,,15734.0,,859239.0,,1919037.0,,1817629.0,,101408.0,,,,526.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",7391.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6289.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",456.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",195.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +IN,Indiana,202205,Y,P,N,23931.0,,0.0,,23931.0,,15060.0,,768.0,,15828.0,,863669.0,,1931829.0,,1831279.0,,100550.0,,,,419.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6970.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6718.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",596.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",148.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +IN,Indiana,202205,Y,U,Y,23931.0,,0.0,,23931.0,,15060.0,,768.0,,15828.0,,863669.0,,1931829.0,,1831279.0,,100550.0,,,,419.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6970.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6718.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",596.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",148.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +IN,Indiana,202206,Y,P,N,26599.0,,0.0,,26599.0,,16325.0,,925.0,,17250.0,,867353.0,,1944084.0,,1837475.0,,106609.0,,,,481.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",5894.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",8823.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",795.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",222.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +IN,Indiana,202206,Y,U,Y,26599.0,,0.0,,26599.0,,16325.0,,925.0,,17250.0,,867353.0,,1944084.0,,1837475.0,,106609.0,,,,481.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",5894.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",8823.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",795.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",222.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +IN,Indiana,202207,Y,P,N,26271.0,,0.0,,26271.0,,15338.0,,722.0,,16060.0,,870155.0,,1954908.0,,1836172.0,,118736.0,,,,292.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3750.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",9818.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",852.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",236.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +IN,Indiana,202207,Y,U,Y,26271.0,,0.0,,26271.0,,15338.0,,722.0,,16060.0,,870155.0,,1954908.0,,1836172.0,,118736.0,,,,292.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3750.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",9818.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",852.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",236.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +IN,Indiana,202208,Y,P,N,33221.0,,0.0,,33221.0,,22339.0,,1009.0,,23348.0,,875172.0,,1969831.0,,1847718.0,,122113.0,,,,406.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",4769.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",13879.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2713.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",563.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +IN,Indiana,202208,Y,U,Y,33221.0,,0.0,,33221.0,,22339.0,,1009.0,,23348.0,,875172.0,,1969831.0,,1847718.0,,122113.0,,,,406.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",4769.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",13879.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2713.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",563.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +IN,Indiana,202209,Y,P,N,30383.0,,0.0,,30383.0,,20528.0,,1044.0,,21572.0,,878148.0,,1981054.0,,1855285.0,,125769.0,,,,302.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3510.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",11922.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",4180.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",771.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +IN,Indiana,202209,Y,U,Y,30383.0,,0.0,,30383.0,,20528.0,,1044.0,,21572.0,,878148.0,,1981054.0,,1855285.0,,125769.0,,,,302.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3510.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",11922.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",4180.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",771.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +IN,Indiana,202210,Y,P,N,29973.0,,0.0,,29973.0,,19595.0,,1030.0,,20625.0,,879503.0,,1990371.0,,1862243.0,,128128.0,,,,312.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3286.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",10853.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",4298.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",968.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +IN,Indiana,202210,Y,U,Y,29973.0,,0.0,,29973.0,,19595.0,,1030.0,,20625.0,,879503.0,,1990371.0,,1862243.0,,128128.0,,,,312.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3286.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",10853.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",4298.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",968.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +IN,Indiana,202211,Y,P,N,15512.0,,0.0,,15512.0,,18528.0,,1059.0,,19587.0,,879458.0,,1998801.0,,1868109.0,,130692.0,,,,271.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2340.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",10737.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",4484.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",908.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +IN,Indiana,202211,Y,U,Y,15512.0,,0.0,,15512.0,,18528.0,,1059.0,,19587.0,,879458.0,,1998801.0,,1868109.0,,130692.0,,,,271.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2340.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",10737.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",4484.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",908.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +IN,Indiana,202212,Y,P,N,20901.0,,0.0,,20901.0,,24662.0,,1537.0,,26199.0,,879093.0,,2005884.0,,1872954.0,,132930.0,,,,264.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2822.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",12950.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",7381.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",912.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +IN,Indiana,202212,Y,U,Y,20901.0,,0.0,,20901.0,,24662.0,,1537.0,,26199.0,,879093.0,,2005884.0,,1872954.0,,132930.0,,,,264.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2822.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",12950.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",7381.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",912.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +IN,Indiana,202301,Y,P,N,30924.0,,0.0,,30924.0,,27507.0,,1688.0,,29195.0,,880928.0,,2016852.0,,1881795.0,,135057.0,,,,348.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3461.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",12649.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",9213.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1992.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +IN,Indiana,202301,Y,U,Y,30924.0,,0.0,,30924.0,,27507.0,,1688.0,,29195.0,,885409.0,,2025386.0,,1889722.0,,135664.0,,,,348.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3461.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",12649.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",9213.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1992.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +IN,Indiana,202302,Y,P,N,37326.0,,0.0,,37326.0,,26169.0,,1462.0,,27631.0,,883233.0,,2027636.0,,1889992.0,,137644.0,,,,355.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",4481.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",13845.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",5061.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2382.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +IN,Indiana,202302,Y,U,Y,37326.0,,0.0,,37326.0,,26169.0,,1462.0,,27631.0,,889654.0,,2038189.0,,1899807.0,,138382.0,,,,355.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",4481.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",13845.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",5061.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2382.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +IN,Indiana,202303,Y,P,N,34238.0,,0.0,,34238.0,,24547.0,,1163.0,,25710.0,,887653.0,,2041404.0,,1904700.0,,136704.0,,,,458.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",7970.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",12070.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2124.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",852.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",197266.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,2.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.045,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +IN,Indiana,202303,Y,U,Y,34238.0,,0.0,,34238.0,,24547.0,,1163.0,,25710.0,,891772.0,,2048631.0,,1911455.0,,137176.0,,,,458.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",7970.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",12070.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2124.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",852.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",197266.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,2.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.045,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +IN,Indiana,202304,Y,P,N,23621.0,,0.0,,23621.0,,17397.0,,696.0,,18093.0,,889597.0,,2050024.0,,1913654.0,,136370.0,,,,392.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",4922.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",9652.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",954.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",196.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",179471.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,3.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.06,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +IN,Indiana,202304,Y,U,Y,23621.0,,0.0,,23621.0,,17397.0,,696.0,,18093.0,,895012.0,,2059657.0,,1922745.0,,136912.0,,,,392.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",4922.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",9652.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",954.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",196.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",179471.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,3.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.06,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +IN,Indiana,202305,Y,P,N,31833.0,,0.0,,31833.0,,19394.0,,998.0,,20392.0,,888921.0,,2049731.0,,1913884.0,,135847.0,,,,424.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",4608.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",11524.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1432.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",229.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",204702.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,5.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.078,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +IN,Indiana,202305,Y,U,Y,31833.0,,0.0,,31833.0,,19394.0,,998.0,,20392.0,,892607.0,,2056226.0,,1919881.0,,136345.0,,,,424.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",4608.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",11524.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1432.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",229.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",204702.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,5.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.078,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +IN,Indiana,202306,Y,P,N,40759.0,,0.0,,40759.0,,23290.0,,1503.0,,24793.0,,875912.0,,2012845.0,,1877444.0,,135401.0,,,,507.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6220.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",13358.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2087.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",358.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",225974.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,5.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.08,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +IN,Indiana,202306,Y,U,Y,40759.0,,0.0,,40759.0,,23290.0,,1503.0,,24793.0,,875912.0,,2012845.0,,1877444.0,,135401.0,,,,507.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6220.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",13358.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2087.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",358.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",225974.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,5.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.08,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +IN,Indiana,202307,Y,P,N,45942.0,,0.0,,45942.0,,24220.0,,1711.0,,25931.0,,853025.0,,1960430.0,,1827551.0,,132879.0,,,,476.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",5100.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",15119.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2731.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",343.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",234862.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,6.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.094,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +IN,Indiana,202307,Y,U,Y,45942.0,,0.0,,45942.0,,24220.0,,1711.0,,25931.0,,863859.0,,1978780.0,,1844121.0,,134659.0,,,,476.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",5100.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",15119.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2731.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",343.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",234862.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,6.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.094,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +IN,Indiana,202308,Y,P,N,56670.0,,0.0,,56670.0,,31493.0,,2427.0,,33920.0,,842149.0,,1931278.0,,1798336.0,,132942.0,,,,566.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6024.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",20164.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",4011.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",685.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",269971.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,8.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.117,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +IN,Indiana,202308,Y,U,Y,56670.0,,0.0,,56670.0,,31493.0,,2427.0,,33920.0,,853145.0,,1950151.0,,1815252.0,,134899.0,,,,566.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6024.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",20164.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",4011.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",685.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",269971.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,8.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.117,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +IN,Indiana,202309,Y,P,N,60015.0,,0.0,,60015.0,,31340.0,,2343.0,,33683.0,,833543.0,,1904849.0,,1771435.0,,133414.0,,,,549.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",4789.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",18916.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6421.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",799.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",240269.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,9.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.13,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +IN,Indiana,202309,Y,U,Y,60015.0,,0.0,,60015.0,,31340.0,,2343.0,,33683.0,,844536.0,,1923847.0,,1788261.0,,135586.0,,,,549.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",4789.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",18916.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6421.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",799.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",240269.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,9.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.13,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +IN,Indiana,202310,Y,P,N,63576.0,,0.0,,63576.0,,34147.0,,2796.0,,36943.0,,825824.0,,1882610.0,,1748558.0,,134052.0,,,,457.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",5515.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",19698.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",7959.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",942.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",266615.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,13.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.173,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +IN,Indiana,202310,Y,U,Y,63576.0,,0.0,,63576.0,,34147.0,,2796.0,,36943.0,,838458.0,,1905514.0,,1768949.0,,136565.0,,,,457.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",5515.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",19698.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",7959.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",942.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",266615.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,13.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.173,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +IN,Indiana,202311,Y,P,N,48893.0,,0.0,,48893.0,,32066.0,,2524.0,,34590.0,,819811.0,,1862461.0,,1727045.0,,135416.0,,,,342.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",4229.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",17513.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",8819.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1074.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",262635.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,12.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.157,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +IN,Indiana,202311,Y,U,Y,48893.0,,0.0,,48893.0,,32066.0,,2524.0,,34590.0,,829908.0,,1881314.0,,1743799.0,,137515.0,,,,342.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",4229.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",17513.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",8819.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1074.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",262635.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,12.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.157,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +IN,Indiana,202312,Y,P,N,54369.0,,0.0,,54369.0,,34417.0,,2695.0,,37112.0,,810606.0,,1834048.0,,1698196.0,,135852.0,,,,320.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3741.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",17174.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",11572.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1486.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",264376.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,11.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.139,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +IN,Indiana,202312,Y,U,Y,54369.0,,0.0,,54369.0,,34417.0,,2695.0,,37112.0,,825412.0,,1861409.0,,1722587.0,,138822.0,,,,320.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3741.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",17174.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",11572.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1486.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",264376.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,11.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.139,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +IN,Indiana,202401,Y,P,N,76628.0,,0.0,,76628.0,,37986.0,,2908.0,,40894.0,,811549.0,,1828349.0,,1690668.0,,137681.0,,,,497.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3833.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",16255.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",14234.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3581.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",330875.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,14.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.174,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +IN,Indiana,202401,Y,U,Y,76628.0,,0.0,,76628.0,,37986.0,,2908.0,,40894.0,,823274.0,,1850202.0,,1710356.0,,139846.0,,,,497.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3833.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",16255.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",14234.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3581.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",330875.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,14.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.174,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +IN,Indiana,202402,Y,P,N,74238.0,,0.0,,74238.0,,38269.0,,2608.0,,40877.0,,811191.0,,1817765.0,,1679052.0,,138713.0,,,,519.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",5518.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",18481.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",10096.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3633.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",275978.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,11.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.134,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +IN,Indiana,202402,Y,U,Y,74238.0,,0.0,,74238.0,,38269.0,,2608.0,,40877.0,,821100.0,,1836542.0,,1695952.0,,140590.0,,,,519.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",5518.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",18481.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",10096.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3633.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",275978.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,11.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.134,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +IN,Indiana,202403,Y,P,N,67143.0,,0.0,,67143.0,,33073.0,,2389.0,,35462.0,,813970.0,,1811242.0,,1673245.0,,137997.0,,,,471.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",4911.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",16490.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",7410.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3493.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",245997.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,6.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.086,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +IN,Indiana,202403,Y,U,Y,67143.0,,0.0,,67143.0,,33073.0,,2389.0,,35462.0,,826195.0,,1833547.0,,1693064.0,,140483.0,,,,471.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",4911.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",16490.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",7410.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3493.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",245997.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,6.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.086,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +IN,Indiana,202404,Y,P,N,66859.0,,0.0,,66859.0,,35092.0,,2161.0,,37253.0,,817968.0,,1803730.0,,1664356.0,,139374.0,,,,577.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",5071.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",17791.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",8220.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2175.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",264917.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,3.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.043,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +IN,Indiana,202404,Y,U,Y,66859.0,,0.0,,66859.0,,35092.0,,2161.0,,37253.0,,826397.0,,1817412.0,,1676590.0,,140822.0,,,,577.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",5071.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",17791.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",8220.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2175.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",264917.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,3.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.043,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +IN,Indiana,202405,Y,P,N,64959.0,,0.0,,64959.0,,33296.0,,1877.0,,35173.0,,815245.0,,1788233.0,,1648480.0,,139753.0,,,,596.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",5032.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",18810.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6500.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1193.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",273933.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,3.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.038,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +IN,Indiana,202405,Y,U,Y,64959.0,,0.0,,64959.0,,33296.0,,1877.0,,35173.0,,823508.0,,1804750.0,,1663712.0,,141038.0,,,,596.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",5032.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",18810.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6500.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1193.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",273933.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,3.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.038,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +IN,Indiana,202406,Y,P,N,62214.0,,0.0,,62214.0,,32535.0,,1909.0,,34444.0,,832284.0,,1809046.0,,1669665.0,,139381.0,,,,550.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6039.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",17714.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",5933.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1205.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",246083.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.022,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +IN,Indiana,202406,Y,U,Y,62214.0,,0.0,,62214.0,,32535.0,,1909.0,,34444.0,,834266.0,,1814179.0,,1672142.0,,142037.0,,,,550.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6039.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",17714.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",5933.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1205.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",246083.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.022,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +IN,Indiana,202407,Y,P,N,65118.0,,0.0,,65118.0,,32031.0,,1805.0,,33836.0,,812576.0,,1774156.0,,1635463.0,,138693.0,,961580.0,,464.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",4997.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",18046.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6028.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1162.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",286185.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,3.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.054,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +IN,Indiana,202407,Y,U,Y,65118.0,,0.0,,65118.0,,32031.0,,1805.0,,33836.0,,820679.0,,1790270.0,,1650334.0,,139936.0,,969591.0,,464.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",4997.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",18046.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6028.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1162.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",286185.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,3.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.054,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +IN,Indiana,202408,Y,P,N,55350.0,,0.0,,55350.0,,33755.0,,1976.0,,35731.0,,813361.0,,1771698.0,,1632628.0,,139070.0,,958337.0,,545.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",5364.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",19151.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6589.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1111.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",277900.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,5.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.079,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +IN,Indiana,202408,Y,U,Y,55350.0,,0.0,,55350.0,,33755.0,,1976.0,,35731.0,,822946.0,,1790825.0,,1649176.0,,141649.0,,967879.0,,545.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",5364.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",19151.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6589.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1111.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",277900.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,5.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.079,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +IN,Indiana,202409,Y,P,N,58349.0,,0.0,,58349.0,,38292.0,,1967.0,,40259.0,,816911.0,,1775635.0,,1635017.0,,140618.0,,958724.0,,463.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6770.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",29754.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",15441.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3306.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",259187.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,6.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.087,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +IN,Indiana,202409,Y,U,Y,58349.0,,0.0,,58349.0,,38292.0,,1967.0,,40259.0,,825078.0,,1792386.0,,1650722.0,,141664.0,,967308.0,,463.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6770.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",29754.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",15441.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3306.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",259187.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,6.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.087,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +IN,Indiana,202410,Y,P,N,63386.0,,0.0,,63386.0,,40003.0,,2131.0,,42134.0,,837132.0,,1804429.0,,1663291.0,,141138.0,,967297.0,,487.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",9174.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",35617.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",12695.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2980.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",274570.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,4.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.057,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +IN,Indiana,202410,Y,U,Y,63386.0,,0.0,,63386.0,,40003.0,,2131.0,,42134.0,,823501.0,,1787157.0,,1644667.0,,142490.0,,963656.0,,487.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",9174.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",35617.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",12695.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2980.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",274570.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,4.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.057,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +IN,Indiana,202411,Y,P,N,65901.0,,0.0,,65901.0,,30876.0,,1839.0,,32715.0,,815841.0,,1768456.0,,1626670.0,,141786.0,,952615.0,,366.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6357.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",31498.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",8630.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1567.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",222200.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,3.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.038,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +IN,Indiana,202411,Y,U,Y,65901.0,,0.0,,65901.0,,30876.0,,1839.0,,32715.0,,822760.0,,1783049.0,,1640114.0,,142935.0,,960289.0,,366.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6357.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",31498.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",8630.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1567.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",222200.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,3.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.038,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +IN,Indiana,202412,Y,P,N,66948.0,,0.0,,66948.0,,35042.0,,2052.0,,37094.0,,815799.0,,1765563.0,,1623361.0,,142202.0,,949764.0,,404.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6032.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",36764.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",17549.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2069.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",247618.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,4.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.053,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +IN,Indiana,202412,Y,U,Y,66948.0,,0.0,,66948.0,,35042.0,,2052.0,,37094.0,,824962.0,,1785338.0,,1642176.0,,143162.0,,960376.0,,404.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6032.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",36764.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",17549.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2069.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",247618.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,4.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.053,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +IN,Indiana,202501,Y,P,N,64742.0,,0.0,,64742.0,,37622.0,,2038.0,,39660.0,,815053.0,,1760469.0,,1619189.0,,141280.0,,945416.0,,383.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6580.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",33686.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",21302.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3441.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",282334.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,5.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.071,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +IN,Indiana,202501,Y,U,Y,64742.0,,0.0,,64742.0,,37622.0,,2038.0,,39660.0,,824371.0,,1779742.0,,1637502.0,,142240.0,,955371.0,,383.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6580.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",33686.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",21302.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3441.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",282334.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,5.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.071,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +IN,Indiana,202502,Y,P,N,52143.0,,0.0,,52143.0,,34154.0,,1778.0,,35932.0,,819476.0,,1767758.0,,1625938.0,,141820.0,,948282.0,,403.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",5491.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",29058.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",15489.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3238.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",242219.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,4.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.056,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +IN,Indiana,202502,Y,U,Y,52143.0,,0.0,,52143.0,,34154.0,,1778.0,,35932.0,,824101.0,,1777256.0,,1634823.0,,142433.0,,953155.0,,403.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",5491.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",29058.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",15489.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3238.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",242219.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,4.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.056,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +IN,Indiana,202503,Y,P,N,55678.0,,0.0,,55678.0,,35999.0,,1728.0,,37727.0,,817886.0,,1763215.0,,1623383.0,,139832.0,,945329.0,,407.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",7385.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",32683.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",9930.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2740.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",240819.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,5.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.07,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +IN,Indiana,202503,Y,U,Y,55678.0,,0.0,,55678.0,,35999.0,,1728.0,,37727.0,,827248.0,,1781352.0,,1633331.0,,148021.0,,954104.0,,407.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",7385.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",32683.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",9930.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2740.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",240819.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,5.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.07,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +IN,Indiana,202504,Y,P,N,57897.0,,0.0,,57897.0,,33499.0,,1692.0,,35191.0,,817040.0,,1752357.0,,1605916.0,,146441.0,,935317.0,,479.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",8136.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",32950.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6791.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1001.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",236622.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,4.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.059,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +IN,Indiana,202504,Y,U,Y,57897.0,,0.0,,57897.0,,33499.0,,1692.0,,35191.0,,818046.0,,1754412.0,,1608177.0,,146235.0,,936366.0,,479.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",8136.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",32950.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6791.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1001.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",236622.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,4.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.059,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +IN,Indiana,202505,Y,P,N,56813.0,,0.0,,56813.0,,32237.0,,1611.0,,33848.0,,829031.0,,1744789.0,,1600505.0,,144284.0,,915758.0,,514.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",8063.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",31278.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6405.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",846.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",236852.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,4.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.074,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +IN,Indiana,202505,Y,U,Y,56813.0,,0.0,,56813.0,,32237.0,,1611.0,,33848.0,,813022.0,,1725367.0,,1580144.0,,145223.0,,912345.0,,514.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",8063.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",31278.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6405.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",846.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",236852.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,4.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.074,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +IN,Indiana,202506,Y,P,N,60414.0,,0.0,,60414.0,,33756.0,,1888.0,,35644.0,,778785.0,,1666284.0,,1530831.0,,135453.0,,887499.0,,515.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",8006.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",33384.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",7327.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",816.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",244022.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,5.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.076,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +IN,Indiana,202506,Y,U,Y,60414.0,,0.0,,60414.0,,33756.0,,1888.0,,35644.0,,787771.0,,1683055.0,,1546043.0,,137012.0,,895284.0,,515.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",8006.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",33384.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",7327.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",816.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",244022.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,5.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.076,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +IN,Indiana,202507,Y,P,N,65395.0,,0.0,,65395.0,,37152.0,,2671.0,,39823.0,,783954.0,,1667236.0,,1536839.0,,130397.0,,883282.0,,623.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",8205.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",38571.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",8450.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",967.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",259520.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,5.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.075,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +IN,Indiana,202507,Y,U,Y,65395.0,,0.0,,65395.0,,37152.0,,2671.0,,39823.0,,776169.0,,1656610.0,,1523457.0,,133153.0,,880441.0,,623.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",8205.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",38571.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",8450.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",967.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",259520.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,5.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.075,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +IN,Indiana,202508,Y,P,N,67022.0,,0.0,,67022.0,,36464.0,,2785.0,,39249.0,,770271.0,,1640743.0,,1513954.0,,126789.0,,870472.0,,555.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",9154.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",39435.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",8087.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",806.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",262072.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,6.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.095,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +IN,Indiana,202508,Y,U,Y,67022.0,,0.0,,67022.0,,36464.0,,2785.0,,39249.0,,758517.0,,1622884.0,,1494002.0,,128882.0,,864367.0,,555.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",9154.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",39435.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",8087.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",806.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",262072.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,6.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.095,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +IN,Indiana,202509,Y,P,N,68005.0,,0.0,,68005.0,,39096.0,,3340.0,,42436.0,,738802.0,,1586568.0,,1461584.0,,124984.0,,847766.0,,464.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",8130.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",41277.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",11149.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1148.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",275076.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,6.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.118,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +IN,Indiana,202509,Y,U,Y,68005.0,,0.0,,68005.0,,39096.0,,3340.0,,42436.0,,745746.0,,1598756.0,,1472252.0,,126504.0,,853010.0,,464.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",8130.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",41277.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",11149.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1148.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",275076.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,6.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.118,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +IN,Indiana,202510,Y,P,N,66623.0,,0.0,,66623.0,,38693.0,,3194.0,,41887.0,,749606.0,,1598204.0,,1474398.0,,123806.0,,848598.0,,485.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",8949.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",41351.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",11026.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1142.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",263115.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,5.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.07,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +KS,Kansas,201309,N,U,Y,,,,,,,,,,,,,,,378160.0,,,,,,,,,,,,,,,,,,,,,,, +KS,Kansas,201706,N,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,268658.0,,392222.0,,355263.0,,36959.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,201706,N,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,268658.0,,392222.0,,355263.0,,36959.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,201707,N,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,274618.0,,403231.0,,365846.0,,37385.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,201707,N,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,274618.0,,403231.0,,365846.0,,37385.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,201708,N,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,270418.0,,394141.0,,344662.0,,49479.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,201708,N,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,270418.0,,394141.0,,344662.0,,49479.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,201709,N,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,262193.0,,381853.0,,331697.0,,50156.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,201709,N,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,262193.0,,381853.0,,331697.0,,50156.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,201710,N,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,264525.0,,385603.0,,335764.0,,49839.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,201710,N,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,264525.0,,385603.0,,335764.0,,49839.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,201711,N,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,266742.0,,387500.0,,336972.0,,50528.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,201711,N,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,266742.0,,387500.0,,336972.0,,50528.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,201712,N,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,269068.0,,389441.0,,338264.0,,51177.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,201712,N,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,269068.0,,389441.0,,338264.0,,51177.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,201801,N,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,273532.0,,395922.0,,344294.0,,51628.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,201801,N,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,273532.0,,395922.0,,344294.0,,51628.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,201802,N,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,275926.0,,396699.0,,344353.0,,52346.0,,,,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,,,,,, +KS,Kansas,201802,N,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,275926.0,,396699.0,,344353.0,,52346.0,,,,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,,,,,, +KS,Kansas,201803,N,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,277377.0,,396745.0,,343546.0,,53199.0,,,,54.0,,1118.0,,3315.0,,511.0,,903.0,,,,,,, +KS,Kansas,201803,N,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,277377.0,,396745.0,,343546.0,,53199.0,,,,54.0,,1118.0,,3315.0,,511.0,,903.0,,,,,,, +KS,Kansas,201804,N,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,274870.0,,393968.0,,340932.0,,53036.0,,,,57.0,,655.0,,2271.0,,587.0,,2975.0,,,,,,, +KS,Kansas,201804,N,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,274870.0,,393968.0,,340932.0,,53036.0,,,,57.0,,655.0,,2271.0,,587.0,,2975.0,,,,,,, +KS,Kansas,201805,N,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,272094.0,,391161.0,,338408.0,,52753.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,201805,N,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,272094.0,,391161.0,,338408.0,,52753.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,201806,N,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,270904.0,,389737.0,,336921.0,,52816.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,201806,N,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,270904.0,,389737.0,,336921.0,,52816.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,201807,N,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,268904.0,,386547.0,,333779.0,,52768.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,201807,N,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,268904.0,,386547.0,,333779.0,,52768.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,201808,N,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,267613.0,,384606.0,,331942.0,,52664.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,201808,N,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,267613.0,,384606.0,,331942.0,,52664.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,201809,N,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,265890.0,,384737.0,,331938.0,,52799.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,201809,N,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,265890.0,,384737.0,,331938.0,,52799.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,201810,N,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,269713.0,,390123.0,,336419.0,,53704.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,201810,N,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,269713.0,,390123.0,,336419.0,,53704.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,201811,N,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,269883.0,,389662.0,,334859.0,,54803.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,201811,N,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,269883.0,,389662.0,,334859.0,,54803.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,201812,N,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,270256.0,,389535.0,,333884.0,,55651.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,201812,N,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,270256.0,,389535.0,,333884.0,,55651.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,201901,N,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,269536.0,,390420.0,,334248.0,,56172.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,201901,N,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,269536.0,,390420.0,,334248.0,,56172.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,201902,N,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,264506.0,,380638.0,,324594.0,,56044.0,,,,100.0,,1319.0,,3065.0,,893.0,,418.0,,,,,,, +KS,Kansas,201902,N,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,264506.0,,380638.0,,324594.0,,56044.0,,,,100.0,,1319.0,,3065.0,,893.0,,418.0,,,,,,, +KS,Kansas,201903,N,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,265720.0,,381525.0,,325130.0,,56395.0,,,,265.0,,909.0,,2959.0,,1278.0,,411.0,,,,,,, +KS,Kansas,201903,N,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,265720.0,,381525.0,,325130.0,,56395.0,,,,265.0,,909.0,,2959.0,,1278.0,,411.0,,,,,,, +KS,Kansas,201904,N,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,258436.0,,371638.0,,316462.0,,55176.0,,,,261.0,,1144.0,,3598.0,,1737.0,,711.0,,,,,,, +KS,Kansas,201904,N,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,258436.0,,371638.0,,316462.0,,55176.0,,,,261.0,,1144.0,,3598.0,,1737.0,,711.0,,,,,,, +KS,Kansas,201905,N,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,259128.0,,371887.0,,316672.0,,55215.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,201905,N,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,259128.0,,371887.0,,316672.0,,55215.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,201906,N,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,257688.0,,370030.0,,315096.0,,54934.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,201906,N,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,257688.0,,370030.0,,315096.0,,54934.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,201907,N,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,257871.0,,370250.0,,315102.0,,55148.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,201907,N,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,257871.0,,370250.0,,315102.0,,55148.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,201908,N,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,259898.0,,372977.0,,317370.0,,55607.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,201908,N,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,259898.0,,372977.0,,317370.0,,55607.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,201909,N,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,258670.0,,373564.0,,317470.0,,56094.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,201909,N,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,258670.0,,373564.0,,317470.0,,56094.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,201910,N,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,260439.0,,375504.0,,318223.0,,57281.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,201910,N,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,260439.0,,375504.0,,318223.0,,57281.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,201911,N,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,260336.0,,374705.0,,317167.0,,57538.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,201911,N,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,260336.0,,374705.0,,317167.0,,57538.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,201912,N,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,261537.0,,376289.0,,318232.0,,58057.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,201912,N,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,261537.0,,376289.0,,318232.0,,58057.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,202001,N,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,262829.0,,377740.0,,319185.0,,58555.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,202001,N,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,262829.0,,377740.0,,319185.0,,58555.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,202002,N,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,263184.0,,378292.0,,319127.0,,59165.0,,,,454.0,,3573.0,,5589.0,,991.0,,986.0,,,,,,, +KS,Kansas,202002,N,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,263184.0,,378292.0,,319127.0,,59165.0,,,,454.0,,3573.0,,5589.0,,991.0,,986.0,,,,,,, +KS,Kansas,202003,N,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,265261.0,,380750.0,,320482.0,,60268.0,,,,549.0,,4756.0,,3356.0,,538.0,,529.0,,,,,,, +KS,Kansas,202003,N,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,265261.0,,380750.0,,320482.0,,60268.0,,,,549.0,,4756.0,,3356.0,,538.0,,529.0,,,,,,, +KS,Kansas,202004,N,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,270855.0,,388818.0,,326691.0,,62127.0,,,,785.0,,5059.0,,2743.0,,274.0,,227.0,,,,,,, +KS,Kansas,202004,N,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,270855.0,,388818.0,,326691.0,,62127.0,,,,785.0,,5059.0,,2743.0,,274.0,,227.0,,,,,,, +KS,Kansas,202005,N,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,275451.0,,395563.0,,332420.0,,63143.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,202005,N,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,275451.0,,395563.0,,332420.0,,63143.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,202006,N,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,279178.0,,401103.0,,337580.0,,63523.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,202006,N,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,279178.0,,401103.0,,337580.0,,63523.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,202007,N,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,283083.0,,406698.0,,342993.0,,63705.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,202007,N,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,283083.0,,406698.0,,342993.0,,63705.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,202008,N,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,286216.0,,411170.0,,347215.0,,63955.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,202008,N,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,286216.0,,411170.0,,347215.0,,63955.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,202009,N,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,285703.0,,416862.0,,352431.0,,64431.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,202009,N,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,285703.0,,416862.0,,352431.0,,64431.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,202010,N,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,289536.0,,422096.0,,357068.0,,65028.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,202010,N,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,289536.0,,422096.0,,357068.0,,65028.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,202011,N,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,292543.0,,425646.0,,360312.0,,65334.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,202011,N,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,292543.0,,425646.0,,360312.0,,65334.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,202012,N,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,295769.0,,429274.0,,363522.0,,65752.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,202012,N,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,295769.0,,429274.0,,363522.0,,65752.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,202101,N,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,298174.0,,431651.0,,365543.0,,66108.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,202101,N,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,298174.0,,431651.0,,365543.0,,66108.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,202102,N,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,301368.0,,435439.0,,369027.0,,66412.0,,,,662.0,,2959.0,,2520.0,,519.0,,161.0,,,,,,, +KS,Kansas,202102,N,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,301368.0,,435439.0,,369027.0,,66412.0,,,,662.0,,2959.0,,2520.0,,519.0,,161.0,,,,,,, +KS,Kansas,202103,N,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,304233.0,,439548.0,,372983.0,,66565.0,,,,1799.0,,3913.0,,1188.0,,78.0,,139.0,,,,,,, +KS,Kansas,202103,N,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,304233.0,,439548.0,,372983.0,,66565.0,,,,1799.0,,3913.0,,1188.0,,78.0,,139.0,,,,,,, +KS,Kansas,202104,N,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,305896.0,,441628.0,,374943.0,,66685.0,,,,2516.0,,4456.0,,1112.0,,54.0,,148.0,,,,,,, +KS,Kansas,202104,N,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,305896.0,,441628.0,,374943.0,,66685.0,,,,2516.0,,4456.0,,1112.0,,54.0,,148.0,,,,,,, +KS,Kansas,202105,N,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,307538.0,,443921.0,,377229.0,,66692.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,202105,N,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,307538.0,,443921.0,,377229.0,,66692.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,202106,N,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,310284.0,,447856.0,,381020.0,,66836.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,202106,N,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,310284.0,,447856.0,,381020.0,,66836.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,202107,N,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,312162.0,,450537.0,,383534.0,,67003.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,202107,N,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,312162.0,,450537.0,,383534.0,,67003.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,202108,N,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,314113.0,,453729.0,,386717.0,,67012.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,202108,N,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,314113.0,,453729.0,,386717.0,,67012.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,202109,N,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,301424.0,,458056.0,,390928.0,,67128.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,202109,N,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,301424.0,,458056.0,,390928.0,,67128.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,202110,N,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,310975.0,,461025.0,,393836.0,,67189.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,202110,N,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,310975.0,,461025.0,,393836.0,,67189.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,202111,N,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,312467.0,,463261.0,,396217.0,,67044.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,202111,N,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,312467.0,,463261.0,,396217.0,,67044.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,202112,N,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,314897.0,,466682.0,,399487.0,,67195.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,202112,N,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,314897.0,,466682.0,,399487.0,,67195.0,,,,,,,,,,,,,,,,,,, +KS,Kansas,202201,N,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,314936.0,,466782.0,,399580.0,,67202.0,,,,1631.0,,3354.0,,4341.0,,581.0,,209.0,,,,,,, +KS,Kansas,202201,N,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,314936.0,,466782.0,,399580.0,,67202.0,,,,1631.0,,3354.0,,4341.0,,581.0,,209.0,,,,,,, +KS,Kansas,202202,N,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,320478.0,,474267.0,,406670.0,,67597.0,,,,1643.0,,4199.0,,1886.0,,171.0,,214.0,,,,,,, +KS,Kansas,202202,N,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,320478.0,,474267.0,,406670.0,,67597.0,,,,1643.0,,4199.0,,1886.0,,171.0,,214.0,,,,,,, +KS,Kansas,202203,N,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,321496.0,,476557.0,,408718.0,,67839.0,,,,2273.0,,3704.0,,1331.0,,82.0,,198.0,,,,,,, +KS,Kansas,202203,N,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,323693.0,,481775.0,,414001.0,,67774.0,,,,2273.0,,3704.0,,1331.0,,82.0,,198.0,,,,,,, +KS,Kansas,202204,N,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,319605.0,,473168.0,,405863.0,,67305.0,,,,1989.0,,3033.0,,1088.0,,53.0,,183.0,,,,,,, +KS,Kansas,202204,N,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,335896.0,,494440.0,,415740.0,,78700.0,,,,1989.0,,3033.0,,1088.0,,53.0,,183.0,,,,,,, +KS,Kansas,202205,N,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,324499.0,,481014.0,,413544.0,,67470.0,,,,1645.0,,3082.0,,1161.0,,70.0,,170.0,,,,,,, +KS,Kansas,202205,N,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,326179.0,,485399.0,,417985.0,,67414.0,,,,1645.0,,3082.0,,1161.0,,70.0,,170.0,,,,,,, +KS,Kansas,202206,N,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,326549.0,,483790.0,,416231.0,,67559.0,,,,1673.0,,3740.0,,1401.0,,72.0,,187.0,,,,,,, +KS,Kansas,202206,N,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,328373.0,,488485.0,,421032.0,,67453.0,,,,1673.0,,3740.0,,1401.0,,72.0,,187.0,,,,,,, +KS,Kansas,202207,N,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,328707.0,,486637.0,,418953.0,,67684.0,,,,1620.0,,3502.0,,1359.0,,79.0,,188.0,,,,,,, +KS,Kansas,202207,N,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,330772.0,,491794.0,,424268.0,,67526.0,,,,1620.0,,3502.0,,1359.0,,79.0,,188.0,,,,,,, +KS,Kansas,202208,N,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,330882.0,,489672.0,,421935.0,,67737.0,,,,1969.0,,4526.0,,1745.0,,103.0,,240.0,,,,,,, +KS,Kansas,202208,N,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,332851.0,,494621.0,,427029.0,,67592.0,,,,1969.0,,4526.0,,1745.0,,103.0,,240.0,,,,,,, +KS,Kansas,202209,N,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,333678.0,,493565.0,,425754.0,,67811.0,,,,1749.0,,3831.0,,1523.0,,120.0,,198.0,,,,,,, +KS,Kansas,202209,N,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,334926.0,,496822.0,,429091.0,,67731.0,,,,1604.0,,3756.0,,1488.0,,121.0,,183.0,,,,,,, +KS,Kansas,202210,N,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,334560.0,,495967.0,,428160.0,,67807.0,,,,1712.0,,3520.0,,1445.0,,102.0,,207.0,,,,,,, +KS,Kansas,202210,N,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,335820.0,,500048.0,,432362.0,,67686.0,,,,1712.0,,3520.0,,1445.0,,102.0,,207.0,,,,,,, +KS,Kansas,202211,N,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,335561.0,,498062.0,,429949.0,,68113.0,,,,1562.0,,5205.0,,2098.0,,66.0,,173.0,,,,,,, +KS,Kansas,202211,N,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,336966.0,,502861.0,,434843.0,,68018.0,,,,1562.0,,5205.0,,2098.0,,66.0,,173.0,,,,,,, +KS,Kansas,202212,N,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,336606.0,,500358.0,,431817.0,,68541.0,,,,1289.0,,4600.0,,4104.0,,195.0,,814.0,,,,,,, +KS,Kansas,202212,N,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,338166.0,,506037.0,,437627.0,,68410.0,,,,1289.0,,4600.0,,4104.0,,195.0,,814.0,,,,,,, +KS,Kansas,202301,N,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,337210.0,,503270.0,,434716.0,,68554.0,,,,1735.0,,4319.0,,3667.0,,594.0,,367.0,,,,,,, +KS,Kansas,202301,N,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,347008.0,,513068.0,,434716.0,,78352.0,,,,1735.0,,4319.0,,3667.0,,594.0,,367.0,,,,,,, +KS,Kansas,202302,N,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,338223.0,,506038.0,,437599.0,,68439.0,,,,1905.0,,3245.0,,1947.0,,260.0,,386.0,,,,,,, +KS,Kansas,202302,N,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,338942.0,,509587.0,,441226.0,,68361.0,,,,1905.0,,3245.0,,1947.0,,260.0,,386.0,,,,,,, +KS,Kansas,202303,N,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,337902.0,,506906.0,,438542.0,,68364.0,,,,1972.0,,3884.0,,1540.0,,90.0,,291.0,,20542.0,Does not include all calls received after business hours,0.0,Call centers offer callbacks; Does not include all calls received after business hours,0.003,Does not include all calls received after business hours +KS,Kansas,202303,N,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,336776.0,,510709.0,,442442.0,,68267.0,,,,1972.0,,3884.0,,1540.0,,90.0,,291.0,,20542.0,Does not include all calls received after business hours,0.0,Call centers offer callbacks; Does not include all calls received after business hours,0.003,Does not include all calls received after business hours +KS,Kansas,202304,N,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,337566.0,,507232.0,,439167.0,,68065.0,,,,1069.0,,3069.0,,1435.0,,75.0,,614.0,,38349.0,Does not include all calls received after business hours,13.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.298,Does not include all calls received after business hours +KS,Kansas,202304,N,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,337817.0,,511847.0,,443940.0,,67907.0,,,,1069.0,,3069.0,,1435.0,,75.0,,614.0,,38349.0,Does not include all calls received after business hours,13.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.298,Does not include all calls received after business hours +KS,Kansas,202305,N,P,N,13366.0,,0.0,,13366.0,,0.0,,0.0,,0.0,,310338.0,,472492.0,,409555.0,,62937.0,,,,1334.0,,1986.0,,3056.0,,453.0,,870.0,,42135.0,Does not include all calls received after business hours,23.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.324,Does not include all calls received after business hours +KS,Kansas,202305,N,U,Y,13366.0,,0.0,,13366.0,,0.0,,0.0,,0.0,,319937.0,,486253.0,,421124.0,,65129.0,,,,1334.0,,1986.0,,3056.0,,453.0,,870.0,,42135.0,Does not include all calls received after business hours,23.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.324,Does not include all calls received after business hours +KS,Kansas,202306,N,P,N,13369.0,,0.0,,13369.0,,0.0,,0.0,,0.0,,312514.0,,473863.0,,409324.0,,64539.0,,,,1350.0,,1643.0,,2538.0,,1955.0,,1540.0,,38100.0,Does not include all calls received after business hours,13.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.201,Does not include all calls received after business hours +KS,Kansas,202306,N,U,Y,13369.0,,0.0,,13369.0,,0.0,,0.0,,0.0,,320180.0,,486213.0,,420467.0,,65746.0,,,,1350.0,,1643.0,,2538.0,,1955.0,,1540.0,,38100.0,Does not include all calls received after business hours,13.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.201,Does not include all calls received after business hours +KS,Kansas,202307,N,P,N,14056.0,,0.0,,14056.0,,0.0,,0.0,,0.0,,313225.0,,474225.0,,408697.0,,65528.0,,,,1327.0,,1049.0,,2842.0,,812.0,,2748.0,,37195.0,Does not include all calls received after business hours,11.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.167,Does not include all calls received after business hours +KS,Kansas,202307,N,U,Y,14056.0,,0.0,,14056.0,,0.0,,0.0,,0.0,,313225.0,,474225.0,,408697.0,,65528.0,,,,1327.0,,1049.0,,2842.0,,812.0,,2748.0,,37195.0,Does not include all calls received after business hours,11.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.167,Does not include all calls received after business hours +KS,Kansas,202308,N,P,N,16167.0,,0.0,,16167.0,,0.0,,0.0,,0.0,,290421.0,,442064.0,,380845.0,,61219.0,,,,1710.0,,1318.0,,3042.0,,2046.0,,4632.0,,37345.0,Does not include all calls received after business hours,2.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.033,Does not include all calls received after business hours +KS,Kansas,202308,N,U,Y,16167.0,,0.0,,16167.0,,0.0,,0.0,,0.0,,313482.0,,473648.0,,407230.0,,66418.0,,,,1710.0,,1318.0,,3042.0,,2046.0,,4632.0,,37345.0,Does not include all calls received after business hours,2.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.033,Does not include all calls received after business hours +KS,Kansas,202309,N,P,N,14337.0,,0.0,,14337.0,,0.0,,0.0,,0.0,,333679.0,,493565.0,,425754.0,,67811.0,,,,1285.0,,1043.0,,2704.0,,3388.0,,3614.0,,31299.0,Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.012,Does not include all calls received after business hours +KS,Kansas,202309,N,U,Y,14337.0,,0.0,,14337.0,,0.0,,0.0,,0.0,,313743.0,,472991.0,,405614.0,,67377.0,,,,1285.0,,1043.0,,2704.0,,3388.0,,3614.0,,31299.0,Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.012,Does not include all calls received after business hours +KS,Kansas,202310,N,P,N,15062.0,,0.0,,15062.0,,0.0,,0.0,,0.0,,306804.0,,464948.0,,386190.0,,78758.0,,,,1654.0,,2019.0,,3099.0,,4033.0,,2963.0,,34686.0,Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.019,Does not include all calls received after business hours +KS,Kansas,202310,N,U,Y,15062.0,,0.0,,15062.0,,0.0,,0.0,,0.0,,308639.0,,472582.0,,403941.0,,68641.0,,,,1654.0,,2019.0,,3099.0,,4033.0,,2963.0,,34686.0,Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.019,Does not include all calls received after business hours +KS,Kansas,202311,N,P,N,14951.0,,0.0,,14951.0,,552.0,,352.0,,904.0,,292175.0,,445972.0,,379886.0,,66086.0,,,,1621.0,,2476.0,,3737.0,,2903.0,,3481.0,,35006.0,Does not include all calls received after business hours,6.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.093,Does not include all calls received after business hours +KS,Kansas,202311,N,U,Y,14951.0,,0.0,,14951.0,,552.0,,352.0,,904.0,,300757.0,,459371.0,,392054.0,,67317.0,,,,1621.0,,2476.0,,3737.0,,2903.0,,3481.0,,35006.0,Does not include all calls received after business hours,5.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.093,Does not include all calls received after business hours +KS,Kansas,202312,N,P,N,13815.0,,0.0,,13815.0,,347.0,,248.0,,595.0,,280852.0,,427690.0,,362859.0,,64831.0,,,,1617.0,,1690.0,,4761.0,,2804.0,,1873.0,,32436.0,Does not include all calls received after business hours,2.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.019,Does not include all calls received after business hours +KS,Kansas,202312,N,U,Y,13815.0,,0.0,,13815.0,,347.0,,248.0,,595.0,,292253.0,,445068.0,,378188.0,,66880.0,,,,1617.0,,1690.0,,4761.0,,2804.0,,1873.0,,32436.0,Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.019,Does not include all calls received after business hours +KS,Kansas,202401,N,P,N,17465.0,,0.0,,17465.0,,426.0,,341.0,,767.0,,282507.0,,428177.0,,361859.0,,66318.0,,,,1873.0,,2599.0,,3350.0,,3830.0,,4224.0,,37283.0,Does not include all calls received after business hours,2.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.032,Does not include all calls received after business hours +KS,Kansas,202401,N,U,Y,17465.0,,0.0,,17465.0,,426.0,,341.0,,767.0,,291589.0,,442499.0,,374875.0,,67624.0,,,,1873.0,,2599.0,,3350.0,,3830.0,,4224.0,,37283.0,Does not include all calls received after business hours,2.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.032,Does not include all calls received after business hours +KS,Kansas,202402,N,P,N,15161.0,,0.0,,15161.0,,417.0,,368.0,,785.0,,285608.0,,430424.0,,362170.0,,68254.0,,,,2357.0,,2948.0,,4127.0,,2648.0,,3823.0,,33265.0,Does not include all calls received after business hours,0.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.01,Does not include all calls received after business hours +KS,Kansas,202402,N,U,Y,15161.0,,0.0,,15161.0,,417.0,,368.0,,785.0,,292639.0,,442315.0,,373382.0,,68933.0,,,,2357.0,,2948.0,,4127.0,,2648.0,,3823.0,,33265.0,Does not include all calls received after business hours,0.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.01,Does not include all calls received after business hours +KS,Kansas,202403,N,P,N,14581.0,,0.0,,14581.0,,451.0,,288.0,,739.0,,284852.0,,427554.0,,358248.0,,69306.0,,,,2582.0,,2263.0,,4850.0,,1164.0,,1722.0,,31128.0,Does not include all calls received after business hours,0.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.004,Does not include all calls received after business hours +KS,Kansas,202403,N,U,Y,14581.0,,0.0,,14581.0,,451.0,,288.0,,739.0,,291663.0,,439416.0,,369715.0,,69701.0,,,,2582.0,,2263.0,,4850.0,,1164.0,,1722.0,,31128.0,Does not include all calls received after business hours,0.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.004,Does not include all calls received after business hours +KS,Kansas,202404,N,P,N,15240.0,,0.0,,15240.0,,536.0,,302.0,,838.0,,286132.0,,427581.0,,357461.0,,70120.0,,,,2217.0,,2159.0,,4380.0,,1237.0,,1174.0,,34681.0,Does not include all calls received after business hours,0.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.005,Does not include all calls received after business hours +KS,Kansas,202404,N,U,Y,15240.0,,0.0,,15240.0,,536.0,,302.0,,838.0,,291855.0,,437642.0,,367434.0,,70208.0,,,,2217.0,,2159.0,,4380.0,,1237.0,,1174.0,,34681.0,Does not include all calls received after business hours,0.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.005,Does not include all calls received after business hours +KS,Kansas,202405,N,P,N,14825.0,,0.0,,14825.0,,403.0,,255.0,,658.0,,282048.0,,418808.0,,347473.0,,71335.0,,,,2213.0,,2099.0,,3138.0,,2578.0,,1355.0,,34558.0,Does not include all calls received after business hours,0.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.005,Does not include all calls received after business hours +KS,Kansas,202405,N,U,Y,14825.0,,0.0,,14825.0,,403.0,,255.0,,658.0,,289421.0,,431377.0,,359780.0,,71597.0,,,,2213.0,,2099.0,,3138.0,,2578.0,,1355.0,,34558.0,Does not include all calls received after business hours,0.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.005,Does not include all calls received after business hours +KS,Kansas,202406,N,P,N,13147.0,,0.0,,13147.0,,412.0,,282.0,,694.0,,276682.0,,408480.0,,335509.0,,72971.0,,,,2176.0,,2563.0,,3040.0,,3507.0,,1867.0,,29380.0,Does not include all calls received after business hours,0.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.005,Does not include all calls received after business hours +KS,Kansas,202406,N,U,Y,13147.0,,0.0,,13147.0,,412.0,,282.0,,694.0,,284305.0,,421537.0,,348034.0,,73503.0,,,,2176.0,,2563.0,,3040.0,,3507.0,,1867.0,,29380.0,Does not include all calls received after business hours,0.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.003,Does not include all calls received after business hours +KS,Kansas,202407,N,P,N,14999.0,,0.0,,14999.0,,405.0,,333.0,,738.0,,276887.0,,407215.0,,332742.0,,74473.0,,130328.0,,2315.0,,3370.0,,4372.0,,1961.0,,1350.0,,36913.0,Does not include all calls received after business hours,0.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.014,Does not include all calls received after business hours +KS,Kansas,202407,N,U,Y,14999.0,,0.0,,14999.0,,405.0,,333.0,,738.0,,283583.0,,418827.0,,343922.0,,74905.0,,135244.0,,2315.0,,3370.0,,4372.0,,1961.0,,1350.0,,36913.0,Does not include all calls received after business hours,0.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.014,Does not include all calls received after business hours +KS,Kansas,202408,N,P,N,15533.0,,0.0,,15533.0,,524.0,,377.0,,901.0,,280307.0,,408930.0,,333172.0,,75758.0,,128623.0,,2896.0,,3780.0,,5743.0,,661.0,,1127.0,,30276.0,Does not include all calls received after business hours,0.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.015,Does not include all calls received after business hours +KS,Kansas,202408,N,U,Y,15533.0,,0.0,,15533.0,,524.0,,377.0,,901.0,,285668.0,,418996.0,,343046.0,,75950.0,,133328.0,,2896.0,,3780.0,,5743.0,,661.0,,1127.0,,30276.0,Does not include all calls received after business hours,0.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.015,Does not include all calls received after business hours +KS,Kansas,202409,N,P,N,14110.0,,0.0,,14110.0,,514.0,,301.0,,815.0,,280955.0,,409053.0,,333131.0,,75922.0,,128098.0,,2534.0,,4090.0,,3837.0,,394.0,,644.0,,38016.0,Does not include all calls received after business hours,0.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.013,Does not include all calls received after business hours +KS,Kansas,202409,N,U,Y,14110.0,,0.0,,14110.0,,514.0,,301.0,,815.0,,285240.0,,417285.0,,341137.0,,76148.0,,132045.0,,2534.0,,4090.0,,3837.0,,394.0,,644.0,,38016.0,Does not include all calls received after business hours,0.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.013,Does not include all calls received after business hours +KS,Kansas,202410,N,P,N,15155.0,,0.0,,15155.0,,587.0,,285.0,,872.0,,280735.0,,411381.0,,334880.0,,76501.0,,130646.0,,2098.0,,5802.0,,2523.0,,305.0,,240.0,,37998.0,Does not include all calls received after business hours,0.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.02,Does not include all calls received after business hours +KS,Kansas,202410,N,U,Y,15155.0,,0.0,,15155.0,,587.0,,285.0,,872.0,,284160.0,,418524.0,,342021.0,,76503.0,,134364.0,,2098.0,,5802.0,,2523.0,,305.0,,240.0,,37998.0,Does not include all calls received after business hours,0.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.02,Does not include all calls received after business hours +KS,Kansas,202411,N,P,N,12607.0,,0.0,,12607.0,,405.0,,356.0,,761.0,,282067.0,,412106.0,,335093.0,,77013.0,,130039.0,,2147.0,,6070.0,,2591.0,,246.0,,584.0,,31415.0,Does not include all calls received after business hours,0.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.016,Does not include all calls received after business hours +KS,Kansas,202411,N,U,Y,12607.0,,0.0,,12607.0,,405.0,,356.0,,761.0,,285546.0,,419199.0,,342230.0,,76969.0,,133653.0,,2147.0,,6070.0,,2591.0,,246.0,,584.0,,31415.0,Does not include all calls received after business hours,0.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.016,Does not include all calls received after business hours +KS,Kansas,202412,N,P,N,12533.0,,0.0,,12533.0,,416.0,,354.0,,770.0,,283452.0,,413111.0,,335902.0,,77209.0,,129659.0,,1788.0,,6394.0,,4600.0,,348.0,,529.0,,42207.0,Does not include all calls received after business hours,0.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.009,Does not include all calls received after business hours +KS,Kansas,202412,N,U,Y,12533.0,,0.0,,12533.0,,416.0,,354.0,,770.0,,287111.0,,420776.0,,343616.0,,77160.0,,133665.0,,1788.0,,6394.0,,4600.0,,348.0,,529.0,,42207.0,Does not include all calls received after business hours,0.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.009,Does not include all calls received after business hours +KS,Kansas,202501,N,P,N,14827.0,,0.0,,14827.0,,477.0,,312.0,,789.0,,283939.0,,412756.0,,335648.0,,77108.0,,128817.0,,1818.0,,3922.0,,4847.0,,802.0,,606.0,,37806.0,Does not include all calls received after business hours,0.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.191,Does not include all calls received after business hours +KS,Kansas,202501,N,U,Y,14827.0,,0.0,,14827.0,,477.0,,312.0,,789.0,,288099.0,,421410.0,,344329.0,,77081.0,,133311.0,,1818.0,,3922.0,,4847.0,,802.0,,606.0,,37806.0,Does not include all calls received after business hours,0.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.191,Does not include all calls received after business hours +KS,Kansas,202502,N,P,N,11866.0,,0.0,,11866.0,,466.0,,200.0,,666.0,,285878.0,,414771.0,,337643.0,,77128.0,,128893.0,,2058.0,,5264.0,,2485.0,,292.0,,776.0,,31442.0,Does not include all calls received after business hours,0.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.003,Does not include all calls received after business hours +KS,Kansas,202502,N,U,Y,11866.0,,0.0,,11866.0,,466.0,,200.0,,666.0,,288706.0,,421277.0,,344365.0,,76912.0,,132571.0,,2058.0,,5264.0,,2485.0,,292.0,,776.0,,31442.0,Does not include all calls received after business hours,0.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.003,Does not include all calls received after business hours +KS,Kansas,202503,N,P,N,12799.0,,0.0,,12799.0,,505.0,,185.0,,690.0,,285554.0,,413286.0,,336874.0,,76412.0,,127732.0,,2044.0,,4747.0,,1592.0,,127.0,,503.0,,35217.0,Does not include all calls received after business hours,0.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.004,Does not include all calls received after business hours +KS,Kansas,202503,N,U,Y,12799.0,,0.0,,12799.0,,505.0,,185.0,,690.0,,288536.0,,420105.0,,343671.0,,76434.0,,131569.0,,2044.0,,4747.0,,1592.0,,127.0,,503.0,,35217.0,Does not include all calls received after business hours,0.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.004,Does not include all calls received after business hours +KS,Kansas,202504,N,P,N,12783.0,,0.0,,12783.0,,471.0,,155.0,,626.0,,285970.0,,413091.0,,337071.0,,76020.0,,127121.0,,2026.0,,4077.0,,2929.0,,184.0,,535.0,,37994.0,Does not include all calls received after business hours,0.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.003,Does not include all calls received after business hours +KS,Kansas,202504,N,U,Y,12783.0,,0.0,,12783.0,,471.0,,155.0,,626.0,,288846.0,,419550.0,,343628.0,,75922.0,,130704.0,,2026.0,,4077.0,,2929.0,,184.0,,535.0,,37994.0,Does not include all calls received after business hours,0.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.003,Does not include all calls received after business hours +KS,Kansas,202505,N,P,N,12437.0,,0.0,,12437.0,,442.0,,170.0,,612.0,,281194.0,,405297.0,,330456.0,,74841.0,,124103.0,,2219.0,,3289.0,,3180.0,,201.0,,525.0,,33213.0,Does not include all calls received after business hours,0.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.003,Does not include all calls received after business hours +KS,Kansas,202505,N,U,Y,12437.0,,0.0,,12437.0,,442.0,,170.0,,612.0,,286001.0,,414776.0,,339887.0,,74889.0,,128775.0,,2219.0,,3289.0,,3180.0,,201.0,,525.0,,33213.0,Does not include all calls received after business hours,0.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.003,Does not include all calls received after business hours +KS,Kansas,202506,N,P,N,12317.0,,0.0,,12317.0,,618.0,,231.0,,849.0,,282128.0,,406042.0,,331812.0,,74230.0,,123914.0,,1849.0,,3199.0,,3864.0,,420.0,,648.0,,33316.0,Does not include all calls received after business hours,0.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.008,Does not include all calls received after business hours +KS,Kansas,202506,N,U,Y,12317.0,,0.0,,12317.0,,618.0,,231.0,,849.0,,285282.0,,413182.0,,339002.0,,74180.0,,127900.0,,1849.0,,3199.0,,3864.0,,420.0,,648.0,,33316.0,Does not include all calls received after business hours,0.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.008,Does not include all calls received after business hours +KS,Kansas,202507,N,P,N,13601.0,,0.0,,13601.0,,520.0,,256.0,,776.0,,279722.0,,401573.0,,328117.0,,73456.0,,121851.0,,2092.0,,3688.0,,3798.0,,276.0,,529.0,,35824.0,Does not include all calls received after business hours,0.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.002,Does not include all calls received after business hours +KS,Kansas,202507,N,U,Y,13601.0,,0.0,,13601.0,,520.0,,256.0,,776.0,,283705.0,,409987.0,,336575.0,,73412.0,,126282.0,,2092.0,,3688.0,,3798.0,,276.0,,529.0,,35824.0,Does not include all calls received after business hours,0.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.002,Does not include all calls received after business hours +KS,Kansas,202508,N,P,N,13543.0,,0.0,,13543.0,,548.0,,353.0,,901.0,,279775.0,,401051.0,,327782.0,,73269.0,,121276.0,,2196.0,,3740.0,,4216.0,,297.0,,439.0,,33172.0,Does not include all calls received after business hours,0.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.006,Does not include all calls received after business hours +KS,Kansas,202508,N,U,Y,13543.0,,0.0,,13543.0,,548.0,,353.0,,901.0,,284134.0,,409720.0,,336484.0,,73236.0,,125586.0,,2196.0,,3740.0,,4216.0,,297.0,,439.0,,33172.0,Does not include all calls received after business hours,0.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.006,Does not include all calls received after business hours +KS,Kansas,202509,N,P,N,13222.0,,0.0,,13222.0,,501.0,,268.0,,769.0,,279735.0,,400875.0,,327974.0,,72901.0,,121140.0,,2015.0,,3523.0,,4152.0,,324.0,,419.0,,32413.0,Does not include all calls received after business hours,0.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.003,Does not include all calls received after business hours +KS,Kansas,202509,N,U,Y,13222.0,,0.0,,13222.0,,501.0,,268.0,,769.0,,282207.0,,406020.0,,333192.0,,72828.0,,123813.0,,2015.0,,3523.0,,4152.0,,324.0,,419.0,,32413.0,Does not include all calls received after business hours,0.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.003,Does not include all calls received after business hours +KS,Kansas,202510,N,P,N,13483.0,,0.0,,13483.0,,428.0,,282.0,,710.0,,278035.0,,401600.0,,328648.0,,72952.0,,123565.0,,2071.0,,3812.0,,3964.0,,257.0,,485.0,,32456.0,Does not include all calls received after business hours,0.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.002,Does not include all calls received after business hours +KY,Kentucky,201309,N,U,Y,,,,,,,,,,,,,,,606805.0,,,,,,,,,,,,,,,,,,,,,,, +KY,Kentucky,201706,Y,P,N,9585.0,,10611.0,,20196.0,,0.0,,0.0,,0.0,,557165.0,,1354391.0,,1271825.0,,82566.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,201706,Y,U,Y,9585.0,,10611.0,,20196.0,,15389.0,,1098.0,,16487.0,,557165.0,,1354391.0,,1271825.0,,82566.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,201707,Y,P,N,8835.0,,9644.0,,18479.0,,0.0,,0.0,,0.0,,557721.0,,1355660.0,,1273142.0,,82518.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,201707,Y,U,Y,8835.0,,9644.0,,18479.0,,0.0,,0.0,,0.0,,557721.0,,1355660.0,,1273142.0,,82518.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,201708,Y,P,N,10422.0,,11679.0,,22101.0,,0.0,,0.0,,0.0,,559657.0,,1359442.0,,1276273.0,,83169.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,201708,Y,U,Y,10422.0,,11679.0,,22101.0,,0.0,,0.0,,0.0,,559657.0,,1359442.0,,1276273.0,,83169.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,201709,Y,P,N,8713.0,,9613.0,,18326.0,,0.0,,0.0,,0.0,,559970.0,,1360852.0,,1277614.0,,83238.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,201709,Y,U,Y,8713.0,,9613.0,,18326.0,,0.0,,0.0,,0.0,,559970.0,,1360852.0,,1277614.0,,83238.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,201710,Y,P,N,9315.0,,10420.0,,19735.0,,0.0,,0.0,,0.0,,560948.0,,1363011.0,,1278723.0,,84288.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,201710,Y,U,Y,9315.0,,10420.0,,19735.0,,0.0,,0.0,,0.0,,560948.0,,1363011.0,,1278723.0,,84288.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,201711,Y,P,N,9038.0,,9752.0,,18790.0,,0.0,,1734.0,,1734.0,,563656.0,,1370334.0,,1284620.0,,85714.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,201711,Y,U,Y,9038.0,,9752.0,,18790.0,,0.0,,1734.0,,1734.0,,563656.0,,1370334.0,,1284620.0,,85714.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,201712,Y,P,N,8535.0,,9233.0,,17768.0,,0.0,,0.0,,0.0,,565099.0,,1374607.0,,1287287.0,,87320.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,201712,Y,U,Y,8535.0,,9233.0,,17768.0,,0.0,,0.0,,0.0,,565099.0,,1374607.0,,1287287.0,,87320.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,201801,Y,P,N,9294.0,,11599.0,,20893.0,,0.0,,0.0,,0.0,,565131.0,,1374082.0,,1285407.0,,88675.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,201801,Y,U,Y,9294.0,,11599.0,,20893.0,,0.0,,0.0,,0.0,,565131.0,,1374082.0,,1285407.0,,88675.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,201802,Y,P,N,8242.0,,9551.0,,17793.0,,0.0,,0.0,,0.0,,566838.0,,1377115.0,,1288732.0,,88383.0,,,,19640.0,,2723.0,,4778.0,,4399.0,,4685.0,,,,,,, +KY,Kentucky,201802,Y,U,Y,8242.0,,9551.0,,17793.0,,0.0,,0.0,,0.0,,566838.0,,1377115.0,,1288732.0,,88383.0,,,,19640.0,,2723.0,,4778.0,,4399.0,,4685.0,,,,,,, +KY,Kentucky,201803,Y,P,N,9204.0,,10421.0,,19625.0,,0.0,,0.0,,0.0,,567812.0,,1378137.0,,1289143.0,,88994.0,,,,23606.0,,3838.0,,5134.0,,4869.0,,4591.0,,,,,,, +KY,Kentucky,201803,Y,U,Y,9204.0,,10421.0,,19625.0,,0.0,,0.0,,0.0,,567812.0,,1378137.0,,1289143.0,,88994.0,,,,23606.0,,3838.0,,5134.0,,4869.0,,4591.0,,,,,,, +KY,Kentucky,201804,Y,P,N,8792.0,,9932.0,,18724.0,,0.0,,0.0,,0.0,,561352.0,,1350866.0,,1266852.0,,84014.0,,,,22349.0,,3591.0,,4348.0,,4833.0,,4412.0,,,,,,, +KY,Kentucky,201804,Y,U,Y,8792.0,,9932.0,,18724.0,,0.0,,0.0,,0.0,,561352.0,,1350866.0,,1266852.0,,84014.0,,,,22349.0,,3591.0,,4348.0,,4833.0,,4412.0,,,,,,, +KY,Kentucky,201805,Y,P,N,8925.0,,9924.0,,18849.0,,0.0,,0.0,,0.0,,560920.0,,1348360.0,,1263985.0,,84375.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,201805,Y,U,Y,8925.0,,9924.0,,18849.0,,0.0,,0.0,,0.0,,560920.0,,1348360.0,,1263985.0,,84375.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,201806,Y,P,N,8826.0,,9964.0,,18790.0,,0.0,,0.0,,0.0,,559896.0,,1343781.0,,1258756.0,,85025.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,201806,Y,U,Y,8826.0,,9964.0,,18790.0,,0.0,,0.0,,0.0,,559896.0,,1343781.0,,1258756.0,,85025.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,201807,Y,P,N,9062.0,,10256.0,,19318.0,,0.0,,0.0,,0.0,,559590.0,,1339911.0,,1253534.0,,86377.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,201807,Y,U,Y,9062.0,,10256.0,,19318.0,,0.0,,0.0,,0.0,,559590.0,,1339911.0,,1253534.0,,86377.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,201808,Y,P,N,9953.0,,11185.0,,21138.0,,0.0,,0.0,,0.0,,559925.0,,1337833.0,,1250370.0,,87463.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,201808,Y,U,Y,9953.0,,11185.0,,21138.0,,0.0,,0.0,,0.0,,559925.0,,1337833.0,,1250370.0,,87463.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,201809,Y,P,N,8655.0,,9622.0,,18277.0,,0.0,,0.0,,0.0,,556733.0,,1326250.0,,1238294.0,,87956.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,201809,Y,U,Y,8655.0,,9622.0,,18277.0,,0.0,,0.0,,0.0,,556733.0,,1326250.0,,1238294.0,,87956.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,201810,Y,P,N,9466.0,,0.0,,9466.0,,0.0,,0.0,,0.0,,555301.0,,1319906.0,,1230992.0,,88914.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,201810,Y,U,Y,9466.0,,0.0,,9466.0,,0.0,,0.0,,0.0,,555301.0,,1319906.0,,1230992.0,,88914.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,201811,Y,P,N,8512.0,,0.0,,8512.0,,34181.0,,2192.0,,36373.0,,555741.0,,1320770.0,,1230431.0,,90339.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,201811,Y,U,Y,8512.0,,0.0,,8512.0,,34181.0,,2192.0,,36373.0,,555741.0,,1320770.0,,1230431.0,,90339.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,201812,Y,P,N,7963.0,,0.0,,7963.0,,34357.0,,2548.0,,36905.0,,554817.0,,1316741.0,,1224859.0,,91882.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,201812,Y,U,Y,7963.0,,0.0,,7963.0,,34357.0,,2548.0,,36905.0,,554817.0,,1316741.0,,1224859.0,,91882.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,201901,Y,P,N,9210.0,,0.0,,9210.0,,43322.0,,2481.0,,45803.0,,554209.0,,1314498.0,,1221140.0,,93358.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,201901,Y,U,Y,9210.0,,0.0,,9210.0,,43322.0,,2481.0,,45803.0,,554209.0,,1314498.0,,1221140.0,,93358.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,201902,Y,P,N,8156.0,,0.0,,8156.0,,34193.0,,6732.0,,40925.0,,554612.0,,1314153.0,,1220517.0,,93636.0,,,,30353.0,,8991.0,,13741.0,,6081.0,,34768.0,,,,,,, +KY,Kentucky,201902,Y,U,Y,8156.0,,0.0,,8156.0,,34193.0,,6732.0,,40925.0,,554612.0,,1314153.0,,1220517.0,,93636.0,,,,30353.0,,8991.0,,13741.0,,6081.0,,34768.0,,,,,,, +KY,Kentucky,201903,Y,P,N,8557.0,,0.0,,8557.0,,35642.0,,1856.0,,37498.0,,554150.0,,1312071.0,,1222301.0,,89770.0,,,,29650.0,,8677.0,,16677.0,,5730.0,,35698.0,,,,,,, +KY,Kentucky,201903,Y,U,Y,8557.0,,0.0,,8557.0,,35642.0,,1856.0,,37498.0,,554150.0,,1312071.0,,1222301.0,,89770.0,,,,29650.0,,8677.0,,16677.0,,5730.0,,35698.0,,,,,,, +KY,Kentucky,201904,Y,P,N,8343.0,,0.0,,8343.0,,36000.0,,1845.0,,37845.0,,552421.0,,1308749.0,,1220357.0,,88392.0,,,,29206.0,,8571.0,,17049.0,,6316.0,,34458.0,,,,,,, +KY,Kentucky,201904,Y,U,Y,8343.0,,0.0,,8343.0,,36000.0,,1845.0,,37845.0,,552421.0,,1308749.0,,1220357.0,,88392.0,,,,29206.0,,8571.0,,17049.0,,6316.0,,34458.0,,,,,,, +KY,Kentucky,201905,Y,P,N,8646.0,,0.0,,8646.0,,34085.0,,1689.0,,35774.0,,553269.0,,1309202.0,,1220490.0,,88712.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,201905,Y,U,Y,8646.0,,0.0,,8646.0,,34085.0,,1689.0,,35774.0,,553269.0,,1309202.0,,1220490.0,,88712.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,201906,Y,P,N,7978.0,,0.0,,7978.0,,32639.0,,1695.0,,34334.0,,552745.0,,1307424.0,,1218134.0,,89290.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,201906,Y,U,Y,7978.0,,0.0,,7978.0,,32639.0,,1695.0,,34334.0,,552745.0,,1307424.0,,1218134.0,,89290.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,201907,Y,P,N,9189.0,,0.0,,9189.0,,35495.0,,1784.0,,37279.0,,552685.0,,1307459.0,,1217518.0,,89941.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,201907,Y,U,Y,9189.0,,0.0,,9189.0,,35495.0,,1784.0,,37279.0,,552685.0,,1307459.0,,1217518.0,,89941.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,201908,Y,P,N,9604.0,,0.0,,9604.0,,39614.0,,2035.0,,41649.0,,552970.0,,1308837.0,,1218284.0,,90553.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,201908,Y,U,Y,9604.0,,0.0,,9604.0,,39614.0,,2035.0,,41649.0,,552970.0,,1308837.0,,1218284.0,,90553.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,201909,Y,P,N,8328.0,,0.0,,8328.0,,27057.0,,1260.0,,28317.0,,550419.0,,1303867.0,,1212822.0,,91045.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,201909,Y,U,Y,8328.0,,0.0,,8328.0,,27057.0,,1260.0,,28317.0,,550419.0,,1303867.0,,1212822.0,,91045.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,201910,Y,P,N,8943.0,,0.0,,8943.0,,32046.0,,1729.0,,33775.0,,548982.0,,1298786.0,,1207392.0,,91394.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,201910,Y,U,Y,8943.0,,0.0,,8943.0,,32046.0,,1729.0,,33775.0,,548982.0,,1298786.0,,1207392.0,,91394.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,201911,Y,P,N,8258.0,,0.0,,8258.0,,29709.0,,1937.0,,31646.0,,546560.0,,1291181.0,,1199473.0,,91708.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,201911,Y,U,Y,8258.0,,0.0,,8258.0,,29709.0,,1937.0,,31646.0,,546560.0,,1291181.0,,1199473.0,,91708.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,201912,Y,P,N,7795.0,,0.0,,7795.0,,30332.0,,2132.0,,32464.0,,546166.0,,1288288.0,,1195025.0,,93263.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,201912,Y,U,Y,7795.0,,0.0,,7795.0,,30332.0,,2132.0,,32464.0,,546166.0,,1288288.0,,1195025.0,,93263.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,202001,Y,P,N,9524.0,,0.0,,9524.0,,37188.0,,2278.0,,39466.0,,547415.0,,1289517.0,,1194690.0,,94827.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,202001,Y,U,Y,9524.0,,0.0,,9524.0,,37188.0,,2278.0,,39466.0,,547415.0,,1289517.0,,1194690.0,,94827.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,202002,Y,P,N,8967.0,,0.0,,8967.0,,32840.0,,1882.0,,34722.0,,547576.0,,1288129.0,,1193114.0,,95015.0,,,,18279.0,,4849.0,,11925.0,,3707.0,,12483.0,,,,,,, +KY,Kentucky,202002,Y,U,Y,8967.0,,0.0,,8967.0,,32840.0,,1882.0,,34722.0,,547576.0,,1288129.0,,1193114.0,,95015.0,,,,18279.0,,4849.0,,11925.0,,3707.0,,12483.0,,,,,,, +KY,Kentucky,202003,Y,P,N,9794.0,,0.0,,9794.0,,24869.0,,1633.0,,26502.0,,549607.0,,1295710.0,,1203730.0,,91980.0,,,,16663.0,,2252.0,,9028.0,,1216.0,,766.0,,,,,,, +KY,Kentucky,202003,Y,U,Y,9794.0,,0.0,,9794.0,,24869.0,,1633.0,,26502.0,,549607.0,,1295710.0,,1203730.0,,91980.0,,,,16663.0,,2252.0,,9028.0,,1216.0,,766.0,,,,,,, +KY,Kentucky,202004,Y,P,N,42643.0,,0.0,,42643.0,,17885.0,,1229.0,,19114.0,,558866.0,,1344593.0,,1254790.0,,89803.0,,,,16038.0,,1065.0,,3394.0,,786.0,,287.0,,,,,,, +KY,Kentucky,202004,Y,U,Y,42643.0,,0.0,,42643.0,,17885.0,,1229.0,,19114.0,,558866.0,,1344593.0,,1254790.0,,89803.0,,,,16038.0,,1065.0,,3394.0,,786.0,,287.0,,,,,,, +KY,Kentucky,202005,Y,P,N,29354.0,,0.0,,29354.0,,9332.0,,698.0,,10030.0,,564834.0,,1374471.0,,1288837.0,,85634.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,202005,Y,U,Y,29354.0,,0.0,,29354.0,,9332.0,,698.0,,10030.0,,564834.0,,1374471.0,,1288837.0,,85634.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,202006,Y,P,N,43630.0,,0.0,,43630.0,,10945.0,,935.0,,11880.0,,572607.0,,1416013.0,,1329110.0,,86903.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,202006,Y,U,Y,43630.0,,0.0,,43630.0,,10945.0,,935.0,,11880.0,,574397.0,,1420933.0,,1333816.0,,87117.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,202007,Y,P,N,41987.0,,0.0,,41987.0,,11865.0,,934.0,,12799.0,,581529.0,,1460399.0,,1371401.0,,88998.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,202007,Y,U,Y,41987.0,,0.0,,41987.0,,11865.0,,934.0,,12799.0,,583412.0,,1465221.0,,1375979.0,,89242.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,202008,Y,P,N,30644.0,,0.0,,30644.0,,11691.0,,928.0,,12619.0,,588156.0,,1494119.0,,1402928.0,,91191.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,202008,Y,U,Y,30644.0,,0.0,,30644.0,,11691.0,,928.0,,12619.0,,590063.0,,1498803.0,,1407348.0,,91455.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,202009,Y,P,N,29788.0,,0.0,,29788.0,,11348.0,,903.0,,12251.0,,593832.0,,1523066.0,,1429312.0,,93754.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,202009,Y,U,Y,29788.0,,0.0,,29788.0,,11348.0,,903.0,,12251.0,,595618.0,,1527535.0,,1433544.0,,93991.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,202010,Y,P,N,30991.0,,0.0,,30991.0,,10247.0,,968.0,,11215.0,,596270.0,,1524541.0,,1427978.0,,96563.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,202010,Y,U,Y,30991.0,,0.0,,30991.0,,10247.0,,968.0,,11215.0,,598022.0,,1529234.0,,1432450.0,,96784.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,202011,Y,P,N,27493.0,,0.0,,27493.0,,10367.0,,1331.0,,11698.0,,598686.0,,1532916.0,,1432627.0,,100289.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,202011,Y,U,Y,27493.0,,0.0,,27493.0,,10367.0,,1331.0,,11698.0,,600775.0,,1539025.0,,1438327.0,,100698.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,202012,Y,P,N,23390.0,,0.0,,23390.0,,11307.0,,1442.0,,12749.0,,598831.0,,1524884.0,,1421480.0,,103404.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,202012,Y,U,Y,23390.0,,0.0,,23390.0,,11307.0,,1442.0,,12749.0,,600553.0,,1529906.0,,1426158.0,,103748.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,202101,Y,P,N,34152.0,,0.0,,34152.0,,9226.0,,964.0,,10190.0,,604720.0,,1559842.0,,1454744.0,,105098.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,202101,Y,U,Y,34152.0,,0.0,,34152.0,,9226.0,,964.0,,10190.0,,606172.0,,1563251.0,,1457982.0,,105269.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,202102,Y,P,N,14183.0,,0.0,,14183.0,,7186.0,,550.0,,7736.0,,607186.0,,1569629.0,,1463576.0,,106053.0,,,,7178.0,,1063.0,,1713.0,,158.0,,209.0,,,,,,, +KY,Kentucky,202102,Y,U,Y,14183.0,,0.0,,14183.0,,7186.0,,550.0,,7736.0,,608789.0,,1574029.0,,1467834.0,,106195.0,,,,7178.0,,1063.0,,1713.0,,158.0,,209.0,,,,,,, +KY,Kentucky,202103,Y,P,N,14539.0,,0.0,,14539.0,,8321.0,,708.0,,9029.0,,610164.0,,1581441.0,,1476736.0,,104705.0,,,,8633.0,,1502.0,,1877.0,,63.0,,248.0,,,,,,, +KY,Kentucky,202103,Y,U,Y,14539.0,,0.0,,14539.0,,8321.0,,708.0,,9029.0,,611097.0,,1585296.0,,1480368.0,,104928.0,,,,8633.0,,1502.0,,1877.0,,63.0,,248.0,,,,,,, +KY,Kentucky,202104,Y,P,N,12835.0,,0.0,,12835.0,,5669.0,,631.0,,6300.0,,611807.0,,1574342.0,,1468535.0,,105807.0,,,,6501.0,,690.0,,1622.0,,36.0,,192.0,,,,,,, +KY,Kentucky,202104,Y,U,Y,12835.0,,0.0,,12835.0,,5669.0,,631.0,,6300.0,,613356.0,,1578724.0,,1472686.0,,106038.0,,,,6501.0,,690.0,,1622.0,,36.0,,192.0,,,,,,, +KY,Kentucky,202105,Y,P,N,10913.0,,0.0,,10913.0,,5437.0,,601.0,,6038.0,,613887.0,,1582081.0,,1474673.0,,107408.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,202105,Y,U,Y,10913.0,,0.0,,10913.0,,5437.0,,601.0,,6038.0,,615772.0,,1587501.0,,1479827.0,,107674.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,202106,Y,P,N,12101.0,,0.0,,12101.0,,6660.0,,690.0,,7350.0,,617245.0,,1593730.0,,1484359.0,,109371.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,202106,Y,U,Y,12101.0,,0.0,,12101.0,,6660.0,,690.0,,7350.0,,618054.0,,1596112.0,,1486620.0,,109492.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,202107,Y,P,N,13210.0,,0.0,,13210.0,,6993.0,,782.0,,7775.0,,602046.0,,1483922.0,,1373155.0,,110767.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,202107,Y,U,Y,13210.0,,0.0,,13210.0,,6993.0,,782.0,,7775.0,,604046.0,,1489474.0,,1378485.0,,110989.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,202108,Y,P,N,13184.0,,0.0,,13184.0,,6274.0,,748.0,,7022.0,,604242.0,,1490142.0,,1377440.0,,112702.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,202108,Y,U,Y,13184.0,,0.0,,13184.0,,6274.0,,748.0,,7022.0,,606431.0,,1495940.0,,1382956.0,,112984.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,202109,Y,P,N,11788.0,,0.0,,11788.0,,5394.0,,665.0,,6059.0,,606360.0,,1495238.0,,1380296.0,,114942.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,202109,Y,U,Y,11788.0,,0.0,,11788.0,,5394.0,,665.0,,6059.0,,608395.0,,1500878.0,,1385705.0,,115173.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,202110,Y,P,N,8163.0,,0.0,,8163.0,,4686.0,,503.0,,5189.0,,608757.0,,1502184.0,,1385147.0,,117037.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,202110,Y,U,Y,8163.0,,0.0,,8163.0,,4686.0,,503.0,,5189.0,,610698.0,,1507231.0,,1390002.0,,117229.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,202111,Y,P,N,9671.0,,0.0,,9671.0,,4488.0,,570.0,,5058.0,,612292.0,,1512622.0,,1392942.0,,119680.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,202111,Y,U,Y,9671.0,,0.0,,9671.0,,4478.0,,568.0,,5046.0,,614260.0,,1517734.0,,1397866.0,,119868.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,202112,Y,P,N,9952.0,,0.0,,9952.0,,4515.0,,546.0,,5061.0,,614460.0,,1520053.0,,1398435.0,,121618.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,202112,Y,U,Y,9952.0,,0.0,,9952.0,,4828.0,,546.0,,5374.0,,616229.0,,1524888.0,,1403134.0,,121754.0,,,,,,,,,,,,,,,,,,, +KY,Kentucky,202201,Y,P,N,10088.0,,0.0,,10088.0,,4560.0,,524.0,,5084.0,,617304.0,,1528786.0,,1404456.0,,124330.0,,,,4082.0,,332.0,,1113.0,,247.0,,35.0,,,,,,, +KY,Kentucky,202201,Y,U,Y,10088.0,,0.0,,10088.0,,4865.0,,524.0,,5389.0,,619125.0,,1533487.0,,1408974.0,,124513.0,,,,4355.0,,335.0,,1099.0,,239.0,,35.0,,,,,,, +KY,Kentucky,202202,Y,P,N,7588.0,,0.0,,7588.0,,4489.0,,448.0,,4937.0,,619619.0,,1534013.0,,1408180.0,,125833.0,,,,3731.0,,316.0,,956.0,,126.0,,22.0,,,,,,, +KY,Kentucky,202202,Y,U,Y,7588.0,,0.0,,7588.0,,4689.0,,448.0,,5137.0,,621692.0,,1539226.0,,1413254.0,,125972.0,,,,3898.0,,320.0,,948.0,,115.0,,23.0,,,,,,, +KY,Kentucky,202203,Y,P,N,8958.0,,0.0,,8958.0,,4680.0,,483.0,,5163.0,,622657.0,,1541764.0,,1414385.0,,127379.0,,,,4028.0,,253.0,,903.0,,125.0,,19.0,,,,,,, +KY,Kentucky,202203,Y,U,Y,8958.0,,0.0,,8958.0,,4906.0,,483.0,,5389.0,,624048.0,,1545681.0,,1418194.0,,127487.0,,,,4217.0,,257.0,,911.0,,115.0,,21.0,,,,,,, +KY,Kentucky,202204,Y,P,N,8651.0,,0.0,,8651.0,,4894.0,,409.0,,5303.0,,624167.0,,1548792.0,,1430185.0,,118607.0,,,,4083.0,,486.0,,662.0,,123.0,,24.0,,,,,,, +KY,Kentucky,202204,Y,U,Y,8651.0,,0.0,,8651.0,,5124.0,,408.0,,5532.0,,625664.0,,1552886.0,,1434175.0,,118711.0,,,,4284.0,,491.0,,668.0,,119.0,,24.0,,,,,,, +KY,Kentucky,202205,Y,P,N,8453.0,,0.0,,8453.0,,4695.0,,426.0,,5121.0,,626288.0,,1556115.0,,1435546.0,,120569.0,,,,3775.0,,593.0,,723.0,,106.0,,14.0,,,,,,, +KY,Kentucky,202205,Y,U,Y,8453.0,,0.0,,8453.0,,4954.0,,426.0,,5380.0,,627676.0,,1560221.0,,1439581.0,,120640.0,,,,4006.0,,600.0,,724.0,,103.0,,13.0,,,,,,, +KY,Kentucky,202206,Y,P,N,8895.0,,0.0,,8895.0,,4837.0,,429.0,,5266.0,,628592.0,,1564321.0,,1442202.0,,122119.0,,,,3678.0,,517.0,,782.0,,69.0,,3.0,,,,,,, +KY,Kentucky,202206,Y,U,Y,8895.0,,0.0,,8895.0,,5139.0,,429.0,,5568.0,,630075.0,,1568276.0,,1446054.0,,122222.0,,,,3949.0,,535.0,,772.0,,68.0,,3.0,,,,,,, +KY,Kentucky,202207,Y,P,N,8546.0,,0.0,,8546.0,,4743.0,,442.0,,5185.0,,630673.0,,1571310.0,,1447791.0,,123519.0,,,,3468.0,,598.0,,725.0,,100.0,,9.0,,,,,,, +KY,Kentucky,202207,Y,U,Y,8546.0,,0.0,,8546.0,,5047.0,,441.0,,5488.0,,632473.0,,1576193.0,,1452562.0,,123631.0,,,,3747.0,,610.0,,725.0,,95.0,,9.0,,,,,,, +KY,Kentucky,202208,Y,P,N,10093.0,,0.0,,10093.0,,5353.0,,546.0,,5899.0,,633653.0,,1580715.0,,1455151.0,,125564.0,,,,3996.0,,627.0,,934.0,,44.0,,5.0,,,,,,, +KY,Kentucky,202208,Y,U,Y,10093.0,,0.0,,10093.0,,5689.0,,546.0,,6235.0,,635521.0,,1585244.0,,1459549.0,,125695.0,,,,4303.0,,633.0,,930.0,,41.0,,6.0,,,,,,, +KY,Kentucky,202209,Y,P,N,9324.0,,0.0,,9324.0,,4987.0,,496.0,,5483.0,,635729.0,,1588091.0,,1460656.0,,127435.0,,,,3359.0,,846.0,,998.0,,36.0,,8.0,,,,,,, +KY,Kentucky,202209,Y,U,Y,9324.0,,0.0,,9324.0,,4930.0,,493.0,,5423.0,,637640.0,,1592951.0,,1465381.0,,127570.0,,,,3313.0,,844.0,,971.0,,34.0,,7.0,,,,,,, +KY,Kentucky,202210,Y,P,N,9822.0,,0.0,,9822.0,,262994.0,,504.0,,263498.0,,638235.0,,1598377.0,,1469021.0,,129356.0,,,,126.0,,15.0,,279.0,,23.0,,2.0,,,,,,, +KY,Kentucky,202210,Y,U,Y,9822.0,,0.0,,9822.0,,261324.0,,499.0,,261823.0,,639987.0,,1602820.0,,1473351.0,,129469.0,,,,121.0,,15.0,,269.0,,22.0,,2.0,,,,,,, +KY,Kentucky,202211,Y,P,N,10645.0,,0.0,,10645.0,,1447.0,,460.0,,1907.0,,640448.0,,1605588.0,,1474969.0,,130619.0,,,,1094.0,,185.0,,477.0,,35.0,,3.0,,,,,,, +KY,Kentucky,202211,Y,U,Y,10645.0,,0.0,,10645.0,,1446.0,,454.0,,1900.0,,642053.0,,1610079.0,,1479337.0,,130742.0,,,,1080.0,,186.0,,465.0,,33.0,,3.0,,,,,,, +KY,Kentucky,202212,Y,P,N,10299.0,,0.0,,10299.0,,4527.0,,444.0,,4971.0,,642524.0,,1613644.0,,1479133.0,,134511.0,,,,3098.0,,541.0,,1029.0,,32.0,,14.0,,,,,,, +KY,Kentucky,202212,Y,U,Y,10299.0,,0.0,,10299.0,,4819.0,,444.0,,5263.0,,644365.0,,1618816.0,,1484157.0,,134659.0,,,,3348.0,,550.0,,1030.0,,33.0,,14.0,,,,,,, +KY,Kentucky,202301,Y,P,N,11460.0,,0.0,,11460.0,,5286.0,,556.0,,5842.0,,645264.0,,1623564.0,,1483133.0,,140431.0,,,,3644.0,,427.0,,1348.0,,65.0,,3.0,,,,,,, +KY,Kentucky,202301,Y,U,Y,11913.0,,0.0,,11913.0,,5675.0,,556.0,,6231.0,,646976.0,,1628356.0,,1487786.0,,140570.0,,,,3972.0,,436.0,,1367.0,,67.0,,8.0,,,,,,, +KY,Kentucky,202302,Y,P,N,8513.0,,0.0,,8513.0,,4528.0,,382.0,,4910.0,,647414.0,,1631287.0,,1489461.0,,141826.0,,,,3272.0,,397.0,,874.0,,29.0,,12.0,,,,,,, +KY,Kentucky,202302,Y,U,Y,8694.0,,0.0,,8694.0,,4712.0,,381.0,,5093.0,,648303.0,,1634859.0,,1492948.0,,141911.0,,,,3437.0,,396.0,,872.0,,28.0,,12.0,,,,,,, +KY,Kentucky,202303,Y,P,N,9528.0,,0.0,,9528.0,,4471.0,,473.0,,4944.0,,649276.0,,1638369.0,,1494768.0,,143601.0,,,,3286.0,,474.0,,772.0,,25.0,,4.0,,74202.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,0.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.002,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +KY,Kentucky,202303,Y,U,Y,9612.0,,0.0,,9612.0,,4592.0,,473.0,,5065.0,,649387.0,,1640141.0,,1496500.0,,143641.0,,,,3398.0,,475.0,,775.0,,21.0,,4.0,,74202.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,0.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.002,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +KY,Kentucky,202304,Y,P,N,7666.0,,0.0,,7666.0,,3333.0,,200.0,,3533.0,,647984.0,,1640624.0,,1513847.0,,126777.0,,,,2585.0,,341.0,,711.0,,53.0,,0.0,,68053.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,0.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.003,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +KY,Kentucky,202304,Y,U,Y,7941.0,,0.0,,7941.0,,3520.0,,198.0,,3718.0,,648865.0,,1644232.0,,1517350.0,,126882.0,,,,2585.0,,341.0,,711.0,,53.0,,0.0,,68053.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,0.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.003,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +KY,Kentucky,202305,Y,P,N,8207.0,,0.0,,8207.0,,4057.0,,277.0,,4334.0,,648942.0,,1642367.0,,1513684.0,,128683.0,,,,2843.0,,380.0,,1520.0,,72.0,,5.0,,87733.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.008,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +KY,Kentucky,202305,Y,U,Y,8530.0,,0.0,,8530.0,,4270.0,,277.0,,4547.0,,649905.0,,1646014.0,,1517225.0,,128789.0,,,,2843.0,,380.0,,1520.0,,72.0,,5.0,,87733.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.008,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +KY,Kentucky,202306,Y,P,N,8718.0,,0.0,,8718.0,,5017.0,,305.0,,5322.0,,649538.0,,1618331.0,,1489020.0,,129311.0,,,,3638.0,,463.0,,1594.0,,69.0,,11.0,,102485.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,2.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.03,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +KY,Kentucky,202306,Y,U,Y,8718.0,,0.0,,8718.0,,5200.0,,305.0,,5505.0,,650690.0,,1622491.0,,1493057.0,,129434.0,,,,3638.0,,463.0,,1594.0,,69.0,,11.0,,102485.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,2.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.03,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +KY,Kentucky,202307,Y,P,N,8716.0,,0.0,,8716.0,,5889.0,,314.0,,6203.0,,646553.0,,1578173.0,,1448292.0,,129881.0,,,,4420.0,,564.0,,1987.0,,112.0,,7.0,,115480.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,15.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.106,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +KY,Kentucky,202307,Y,U,Y,8716.0,,0.0,,8716.0,,6138.0,,314.0,,6452.0,,648081.0,,1583958.0,,1453921.0,,130037.0,,,,4420.0,,564.0,,1987.0,,112.0,,7.0,,115481.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,15.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.106,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +KY,Kentucky,202308,Y,P,N,9896.0,,0.0,,9896.0,,7959.0,,437.0,,8396.0,,647784.0,,1563716.0,,1433467.0,,130249.0,,,,5676.0,,820.0,,2331.0,,95.0,,10.0,,126079.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,8.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.008,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +KY,Kentucky,202308,Y,U,Y,10303.0,,0.0,,10303.0,,8159.0,,436.0,,8595.0,,649025.0,,1569120.0,,1438721.0,,130399.0,,,,5676.0,,820.0,,2331.0,,95.0,,10.0,,126079.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,8.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.072,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +KY,Kentucky,202309,Y,P,N,8731.0,,0.0,,8731.0,,7434.0,,386.0,,7820.0,,648155.0,,1549365.0,,1418659.0,,130706.0,,,,5064.0,,736.0,,2391.0,,77.0,,16.0,,121197.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,11.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.009,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +KY,Kentucky,202309,Y,U,Y,9144.0,,0.0,,9144.0,,7719.0,,383.0,,8102.0,,649799.0,,1556562.0,,1425673.0,,130889.0,,,,5064.0,,736.0,,2391.0,,77.0,,16.0,,121197.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,11.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.009,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +KY,Kentucky,202310,Y,P,N,9538.0,,0.0,,9538.0,,8681.0,,459.0,,9140.0,,646067.0,,1539799.0,,1411373.0,,128426.0,,,,5637.0,,966.0,,2429.0,,165.0,,45.0,,125417.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,4.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.044,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +KY,Kentucky,202310,Y,U,Y,10100.0,,0.0,,10100.0,,8641.0,,457.0,,9098.0,,647681.0,,1546282.0,,1417710.0,,128572.0,,,,5605.0,,961.0,,2285.0,,155.0,,45.0,,125417.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,4.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.044,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +KY,Kentucky,202311,Y,P,N,11272.0,,0.0,,11272.0,,8323.0,,456.0,,8779.0,,641593.0,,1512864.0,,1386450.0,,126414.0,,,,5177.0,,900.0,,2595.0,,76.0,,19.0,,121138.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,2.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.027,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +KY,Kentucky,202311,Y,U,Y,11272.0,,0.0,,11272.0,,8284.0,,453.0,,8737.0,,642898.0,,1518703.0,,1392099.0,,126604.0,,,,5177.0,,900.0,,2595.0,,76.0,,19.0,,121138.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,2.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.027,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +KY,Kentucky,202312,Y,P,N,11026.0,,0.0,,11026.0,,8048.0,,538.0,,8586.0,,638388.0,,1492972.0,,1364741.0,,128231.0,,,,5208.0,,1043.0,,2666.0,,86.0,,16.0,,111193.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.019,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +KY,Kentucky,202312,Y,U,Y,11026.0,,0.0,,11026.0,,8555.0,,537.0,,9092.0,,640408.0,,1500588.0,,1372098.0,,128490.0,,,,5208.0,,1043.0,,2666.0,,86.0,,16.0,,111193.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.019,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +KY,Kentucky,202401,Y,P,N,12959.0,,0.0,,12959.0,,10295.0,,570.0,,10865.0,,641330.0,,1493648.0,,1362961.0,,130687.0,,,,6727.0,,1409.0,,3044.0,,225.0,,20.0,,124013.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,0.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.011,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +KY,Kentucky,202401,Y,U,Y,12959.0,,0.0,,12959.0,,10798.0,,570.0,,11368.0,,643067.0,,1500236.0,,1369341.0,,130895.0,,,,6727.0,,1409.0,,3044.0,,225.0,,20.0,,124013.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,0.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.011,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +KY,Kentucky,202402,Y,P,N,10409.0,,0.0,,10409.0,,9658.0,,466.0,,10124.0,,642425.0,,1488618.0,,1358734.0,,129884.0,,,,6416.0,,1425.0,,2723.0,,69.0,,13.0,,108378.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.003,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +KY,Kentucky,202402,Y,U,Y,10409.0,,0.0,,10409.0,,10020.0,,466.0,,10486.0,,643978.0,,1494563.0,,1364464.0,,130099.0,,,,6416.0,,1425.0,,2723.0,,69.0,,13.0,,108378.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.003,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +KY,Kentucky,202403,Y,P,N,10267.0,,0.0,,10267.0,,8779.0,,423.0,,9202.0,,643450.0,,1483764.0,,1353368.0,,130396.0,,,,6054.0,,1133.0,,2469.0,,49.0,,9.0,,100137.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,0.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.007,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +KY,Kentucky,202403,Y,U,Y,10267.0,,0.0,,10267.0,,9047.0,,423.0,,9470.0,,649756.0,,1515783.0,,1381453.0,,134330.0,,,,6054.0,,1133.0,,2469.0,,49.0,,9.0,,100137.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,0.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.007,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +KY,Kentucky,202404,Y,P,N,10277.0,,0.0,,10277.0,,9476.0,,399.0,,9875.0,,648751.0,,1491306.0,,1357970.0,,133336.0,,,,6707.0,,1263.0,,2295.0,,46.0,,21.0,,109718.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,0.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.01,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +KY,Kentucky,202404,Y,U,Y,10277.0,,0.0,,10277.0,,9802.0,,398.0,,10200.0,,650008.0,,1497712.0,,1364183.0,,133529.0,,,,6707.0,,1263.0,,2295.0,,46.0,,21.0,,109718.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,0.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.01,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +KY,Kentucky,202405,Y,P,N,10508.0,,0.0,,10508.0,,9606.0,,428.0,,10034.0,,648553.0,,1465902.0,,1333039.0,,132863.0,,,,6912.0,,1207.0,,2435.0,,63.0,,18.0,,100837.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,0.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.006,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +KY,Kentucky,202405,Y,U,Y,10508.0,,0.0,,10508.0,,9915.0,,428.0,,10343.0,,649785.0,,1471330.0,,1338316.0,,133014.0,,,,6912.0,,1207.0,,2435.0,,63.0,,18.0,,100837.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,0.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.006,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +KY,Kentucky,202406,Y,P,N,10059.0,,0.0,,10059.0,,9743.0,,454.0,,10197.0,,646741.0,,1418243.0,,1286729.0,,131514.0,,,,7324.0,,1164.0,,2344.0,,38.0,,6.0,,88180.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,0.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.013,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +KY,Kentucky,202406,Y,U,Y,10059.0,,0.0,,10059.0,,10101.0,,454.0,,10555.0,,648484.0,,1425380.0,,1293666.0,,131714.0,,,,7324.0,,1164.0,,2344.0,,38.0,,6.0,,88180.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,0.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.013,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +KY,Kentucky,202407,Y,P,N,11271.0,,0.0,,11271.0,,11938.0,,766.0,,12704.0,,632110.0,,1391092.0,,1263493.0,,127599.0,,758982.0,,8736.0,,1362.0,,3088.0,,60.0,,6.0,,95844.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.02,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +KY,Kentucky,202407,Y,U,Y,11271.0,,0.0,,11271.0,,12237.0,,760.0,,12997.0,,634154.0,,1398791.0,,1270885.0,,127906.0,,764637.0,,8736.0,,1362.0,,3088.0,,60.0,,6.0,,95844.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.02,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +KY,Kentucky,202408,Y,P,N,11000.0,,0.0,,11000.0,,11458.0,,764.0,,12222.0,,629844.0,,1389220.0,,1261726.0,,127494.0,,759376.0,,8269.0,,1508.0,,2940.0,,56.0,,8.0,,94160.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,0.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.01,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +KY,Kentucky,202408,Y,U,Y,11000.0,,0.0,,11000.0,,11730.0,,764.0,,12494.0,,631890.0,,1395796.0,,1267994.0,,127802.0,,763906.0,,8269.0,,1508.0,,2940.0,,56.0,,8.0,,94160.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,0.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.01,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +KY,Kentucky,202409,Y,P,N,9965.0,,0.0,,9965.0,,9801.0,,676.0,,10477.0,,627721.0,,1384792.0,,1256330.0,,128462.0,,757071.0,,6880.0,,1338.0,,2842.0,,65.0,,18.0,,88861.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,2.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.03,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +KY,Kentucky,202409,Y,U,Y,9965.0,,0.0,,9965.0,,10103.0,,671.0,,10774.0,,629635.0,,1391115.0,,1262404.0,,128711.0,,761480.0,,6880.0,,1338.0,,2842.0,,65.0,,18.0,,88861.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,2.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.03,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +KY,Kentucky,202410,Y,P,N,10571.0,,0.0,,10571.0,,10596.0,,687.0,,11283.0,,628039.0,,1385144.0,,1255289.0,,129855.0,,757105.0,,7213.0,,1129.0,,2953.0,,65.0,,15.0,,104017.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.037,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +KY,Kentucky,202410,Y,U,Y,10571.0,,0.0,,10571.0,,10546.0,,682.0,,11228.0,,629426.0,,1389612.0,,1259543.0,,130069.0,,760186.0,,7213.0,,1129.0,,2953.0,,65.0,,15.0,,104017.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.037,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +KY,Kentucky,202411,Y,P,N,10751.0,,0.0,,10751.0,,9040.0,,664.0,,9704.0,,626903.0,,1382398.0,,1251466.0,,130932.0,,755495.0,,5916.0,,1135.0,,2709.0,,49.0,,13.0,,107091.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,2.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.023,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +KY,Kentucky,202411,Y,U,Y,10751.0,,0.0,,10751.0,,9002.0,,656.0,,9658.0,,628478.0,,1387713.0,,1256538.0,,131175.0,,759235.0,,5916.0,,1135.0,,2709.0,,49.0,,13.0,,107091.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,2.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.023,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +KY,Kentucky,202412,Y,P,N,11809.0,,0.0,,11809.0,,10075.0,,731.0,,10806.0,,626097.0,,1377527.0,,1244822.0,,132705.0,,751430.0,,7119.0,,1212.0,,3124.0,,64.0,,16.0,,110511.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,4.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.019,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +KY,Kentucky,202412,Y,U,Y,11809.0,,0.0,,11809.0,,10431.0,,731.0,,11162.0,,628555.0,,1385807.0,,1252745.0,,133062.0,,757252.0,,7119.0,,1212.0,,3124.0,,64.0,,16.0,,110511.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,4.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.019,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +KY,Kentucky,202501,Y,P,N,11819.0,,0.0,,11819.0,,10759.0,,669.0,,11428.0,,626384.0,,1377997.0,,1243138.0,,134859.0,,751613.0,,7326.0,,1491.0,,3173.0,,61.0,,18.0,,130204.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,3.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.062,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +KY,Kentucky,202501,Y,U,Y,11819.0,,0.0,,11819.0,,11122.0,,666.0,,11788.0,,628145.0,,1384411.0,,1249299.0,,135112.0,,756266.0,,7326.0,,1491.0,,3173.0,,61.0,,18.0,,130204.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,3.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.062,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +KY,Kentucky,202502,Y,P,N,8382.0,,0.0,,8382.0,,8696.0,,576.0,,9272.0,,626206.0,,1376274.0,,1241262.0,,135012.0,,750068.0,,5835.0,,1138.0,,2754.0,,55.0,,21.0,,100610.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,0.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.083,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +KY,Kentucky,202502,Y,U,Y,8382.0,,0.0,,8382.0,,8913.0,,576.0,,9489.0,,628069.0,,1383093.0,,1247786.0,,135307.0,,755024.0,,5835.0,,1138.0,,2754.0,,55.0,,21.0,,100610.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,0.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.083,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +KY,Kentucky,202503,Y,P,N,8967.0,,0.0,,8967.0,,8189.0,,522.0,,8711.0,,627081.0,,1374261.0,,1237822.0,,136439.0,,747180.0,,5723.0,,1034.0,,2438.0,,44.0,,28.0,,98994.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,0.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.084,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +KY,Kentucky,202503,Y,U,Y,8967.0,,0.0,,8967.0,,8417.0,,520.0,,8937.0,,628836.0,,1380611.0,,1243884.0,,136727.0,,751775.0,,5723.0,,1034.0,,2438.0,,44.0,,28.0,,98994.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,0.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.084,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +KY,Kentucky,202504,Y,P,N,8573.0,,0.0,,8573.0,,8171.0,,590.0,,8761.0,,627293.0,,1375008.0,,1242901.0,,132107.0,,747715.0,,5680.0,,1024.0,,2393.0,,53.0,,28.0,,77590.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,0.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.002,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +KY,Kentucky,202504,Y,U,Y,8573.0,,0.0,,8573.0,,8432.0,,589.0,,9021.0,,628926.0,,1381447.0,,1249062.0,,132385.0,,752521.0,,5680.0,,1024.0,,2393.0,,53.0,,28.0,,77590.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,0.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.002,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +KY,Kentucky,202505,Y,P,N,8734.0,,0.0,,8734.0,,8245.0,,536.0,,8781.0,,626399.0,,1370622.0,,1238838.0,,131784.0,,744223.0,,5834.0,,991.0,,2378.0,,47.0,,21.0,,67530.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,0.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.003,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +KY,Kentucky,202505,Y,U,Y,8734.0,,0.0,,8734.0,,8428.0,,536.0,,8964.0,,628088.0,,1376902.0,,1244849.0,,132053.0,,748814.0,,5834.0,,991.0,,2378.0,,47.0,,21.0,,67530.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,0.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.003,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +KY,Kentucky,202506,Y,P,N,10266.0,,0.0,,10266.0,,8663.0,,486.0,,9149.0,,625839.0,,1365046.0,,1231594.0,,133452.0,,739207.0,,6145.0,,1058.0,,2535.0,,49.0,,15.0,,63949.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,0.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.005,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +KY,Kentucky,202506,Y,U,Y,10266.0,,0.0,,10266.0,,8923.0,,486.0,,9409.0,,627558.0,,1371559.0,,1237894.0,,133665.0,,744001.0,,6145.0,,1058.0,,2535.0,,49.0,,15.0,,63949.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,0.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.005,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +KY,Kentucky,202507,Y,P,N,10177.0,,0.0,,10177.0,,9307.0,,662.0,,9969.0,,626588.0,,1364688.0,,1230370.0,,134318.0,,738100.0,,6647.0,,1119.0,,2739.0,,51.0,,9.0,,66899.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.002,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +KY,Kentucky,202507,Y,U,Y,10177.0,,0.0,,10177.0,,9581.0,,657.0,,10238.0,,628192.0,,1370654.0,,1236124.0,,134530.0,,742462.0,,6647.0,,1119.0,,2739.0,,51.0,,9.0,,66899.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.002,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +KY,Kentucky,202508,Y,P,N,9244.0,,0.0,,9244.0,,8678.0,,619.0,,9297.0,,625983.0,,1359398.0,,1224701.0,,134697.0,,733415.0,,6236.0,,1012.0,,2398.0,,47.0,,11.0,,61661.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.02,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +KY,Kentucky,202508,Y,U,Y,9244.0,,0.0,,9244.0,,8949.0,,618.0,,9567.0,,627769.0,,1365810.0,,1230861.0,,134949.0,,738041.0,,6236.0,,1012.0,,2398.0,,47.0,,11.0,,61661.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.02,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +KY,Kentucky,202509,Y,P,N,9742.0,,0.0,,9742.0,,8359.0,,605.0,,8964.0,,624924.0,,1357976.0,,1221762.0,,136214.0,,733052.0,,5993.0,,870.0,,2729.0,,43.0,,5.0,,64137.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,0.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.011,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +KY,Kentucky,202509,Y,U,Y,9742.0,,0.0,,9742.0,,8629.0,,600.0,,9229.0,,626665.0,,1364425.0,,1227929.0,,136496.0,,737760.0,,5993.0,,870.0,,2729.0,,43.0,,5.0,,64137.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,0.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.011,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +KY,Kentucky,202510,Y,P,N,8630.0,,0.0,,8630.0,,8886.0,,785.0,,9671.0,,619007.0,,1347898.0,,1212561.0,,135337.0,,728891.0,,5772.0,,1048.0,,2904.0,,63.0,,8.0,,82612.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,0.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.002,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +LA,Louisiana,201309,N,U,Y,,,,,,,,,,,,,,,1019787.0,,,,,,,,,,,,,,,,,,,,,,, +LA,Louisiana,201706,Y,P,N,24126.0,,0.0,,24126.0,,30792.0,,1941.0,,32733.0,,754525.0,,1448253.0,,1328323.0,,119930.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,201706,Y,U,Y,24126.0,,0.0,,24126.0,,30792.0,,1941.0,,32733.0,,754525.0,,1448253.0,,1328323.0,,119930.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,201707,Y,P,N,23628.0,,0.0,,23628.0,,30607.0,,1903.0,,32510.0,,753321.0,,1449244.0,,1328785.0,,120459.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,201707,Y,U,Y,23628.0,,0.0,,23628.0,,30607.0,,1903.0,,32510.0,,753321.0,,1449244.0,,1328785.0,,120459.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,201708,Y,P,N,26863.0,,0.0,,26863.0,,35544.0,,2589.0,,38133.0,,746518.0,,1444529.0,,1323892.0,,120637.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,201708,Y,U,Y,26863.0,,0.0,,26863.0,,35544.0,,2589.0,,38133.0,,746518.0,,1444529.0,,1323892.0,,120637.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,201709,Y,P,N,23370.0,,0.0,,23370.0,,33734.0,,2431.0,,36165.0,,744310.0,,1444971.0,,1324003.0,,120968.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,201709,Y,U,Y,23370.0,,0.0,,23370.0,,33734.0,,2431.0,,36165.0,,744310.0,,1444971.0,,1324003.0,,120968.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,201710,Y,P,N,25822.0,,0.0,,25822.0,,34239.0,,2560.0,,36799.0,,742884.0,,1445477.0,,1323817.0,,121660.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,201710,Y,U,Y,25822.0,,0.0,,25822.0,,34239.0,,2560.0,,36799.0,,742884.0,,1445477.0,,1323817.0,,121660.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,201711,Y,P,N,24858.0,,0.0,,24858.0,,34057.0,,2231.0,,36288.0,,740007.0,,1448555.0,,1326309.0,,122246.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,201711,Y,U,Y,24858.0,,0.0,,24858.0,,34057.0,,2231.0,,36288.0,,740007.0,,1448555.0,,1326309.0,,122246.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,201712,Y,P,N,23187.0,,0.0,,23187.0,,32761.0,,2141.0,,34902.0,,739852.0,,1455541.0,,1332411.0,,123130.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,201712,Y,U,Y,23187.0,,0.0,,23187.0,,32761.0,,2141.0,,34902.0,,739852.0,,1455541.0,,1332411.0,,123130.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,201801,Y,P,N,25110.0,,0.0,,25110.0,,30578.0,,2162.0,,32740.0,,739724.0,,1459238.0,,1335226.0,,124012.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,201801,Y,U,Y,25110.0,,0.0,,25110.0,,30578.0,,2162.0,,32740.0,,739724.0,,1459238.0,,1335226.0,,124012.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,201802,Y,P,N,22805.0,,0.0,,22805.0,,32519.0,,2427.0,,34946.0,,739372.0,,1462701.0,,1337737.0,,124964.0,,,,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,,,,,, +LA,Louisiana,201802,Y,U,Y,22805.0,,0.0,,22805.0,,32519.0,,2427.0,,34946.0,,739372.0,,1462701.0,,1337737.0,,124964.0,,,,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,,,,,, +LA,Louisiana,201803,Y,P,N,23332.0,,0.0,,23332.0,,33847.0,,2425.0,,36272.0,,735541.0,,1460587.0,,1335024.0,,125563.0,,,,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,,,,,, +LA,Louisiana,201803,Y,U,Y,23332.0,,0.0,,23332.0,,33847.0,,2425.0,,36272.0,,735541.0,,1460587.0,,1335024.0,,125563.0,,,,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,,,,,, +LA,Louisiana,201804,Y,P,N,24165.0,,0.0,,24165.0,,31990.0,,2290.0,,34280.0,,732817.0,,1458873.0,,1332778.0,,126095.0,,,,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,,,,,, +LA,Louisiana,201804,Y,U,Y,24165.0,,0.0,,24165.0,,31990.0,,2290.0,,34280.0,,732817.0,,1458873.0,,1332778.0,,126095.0,,,,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,,,,,, +LA,Louisiana,201805,Y,P,N,24055.0,,0.0,,24055.0,,31543.0,,2240.0,,33783.0,,729526.0,,1453981.0,,1327280.0,,126701.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,201805,Y,U,Y,24055.0,,0.0,,24055.0,,31543.0,,2240.0,,33783.0,,729526.0,,1453981.0,,1327280.0,,126701.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,201806,Y,P,N,24369.0,,0.0,,24369.0,,28690.0,,1959.0,,30649.0,,727263.0,,1450391.0,,1323561.0,,126830.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,201806,Y,U,Y,24369.0,,0.0,,24369.0,,28690.0,,1959.0,,30649.0,,727263.0,,1450391.0,,1323561.0,,126830.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,201807,Y,P,N,25442.0,,0.0,,25442.0,,32638.0,,2198.0,,34836.0,,725060.0,,1449055.0,,1321276.0,,127779.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,201807,Y,U,Y,25442.0,,0.0,,25442.0,,32638.0,,2198.0,,34836.0,,725060.0,,1449055.0,,1321276.0,,127779.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,201808,Y,P,N,27462.0,,0.0,,27462.0,,35916.0,,2698.0,,38614.0,,727350.0,,1455451.0,,1326418.0,,129033.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,201808,Y,U,Y,27462.0,,0.0,,27462.0,,35916.0,,2698.0,,38614.0,,727350.0,,1455451.0,,1326418.0,,129033.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,201809,Y,P,N,22666.0,,0.0,,22666.0,,29195.0,,2070.0,,31265.0,,728076.0,,1457989.0,,1328341.0,,129648.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,201809,Y,U,Y,22666.0,,0.0,,22666.0,,29195.0,,2070.0,,31265.0,,728076.0,,1457989.0,,1328341.0,,129648.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,201810,Y,P,N,25590.0,,0.0,,25590.0,,33161.0,,2317.0,,35478.0,,730060.0,,1462452.0,,1331887.0,,130565.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,201810,Y,U,Y,25590.0,,0.0,,25590.0,,33161.0,,2317.0,,35478.0,,730060.0,,1462452.0,,1331887.0,,130565.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,201811,Y,P,N,23415.0,,0.0,,23415.0,,3081.0,,287.0,,3368.0,,733839.0,,1513587.0,,1382215.0,,131372.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,201811,Y,U,Y,23415.0,,0.0,,23415.0,,3081.0,,287.0,,3368.0,,733839.0,,1513587.0,,1382215.0,,131372.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,201812,Y,P,N,26236.0,,0.0,,26236.0,,7569.0,,602.0,,8171.0,,736048.0,,1534410.0,,1403139.0,,131271.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,201812,Y,U,Y,26236.0,,0.0,,26236.0,,7569.0,,602.0,,8171.0,,736048.0,,1534410.0,,1403139.0,,131271.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,201901,Y,P,N,31532.0,,0.0,,31532.0,,8120.0,,584.0,,8704.0,,740211.0,,1551791.0,,1419691.0,,132100.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,201901,Y,U,Y,31532.0,,0.0,,31532.0,,8120.0,,584.0,,8704.0,,740211.0,,1551791.0,,1419691.0,,132100.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,201902,Y,P,N,28824.0,,0.0,,28824.0,,7508.0,,552.0,,8060.0,,738552.0,,1550782.0,,1417287.0,,133495.0,,,,4075.0,,1601.0,,4508.0,,1672.0,,3587.0,,,,,,, +LA,Louisiana,201902,Y,U,Y,28824.0,,0.0,,28824.0,,7508.0,,552.0,,8060.0,,738552.0,,1550782.0,,1417287.0,,133495.0,,,,4075.0,,1601.0,,4508.0,,1672.0,,3587.0,,,,,,, +LA,Louisiana,201903,Y,P,N,31342.0,,0.0,,31342.0,,9239.0,,759.0,,9998.0,,734923.0,,1554421.0,,1416133.0,,138288.0,,,,4985.0,,2227.0,,7375.0,,1565.0,,2411.0,,,,,,, +LA,Louisiana,201903,Y,U,Y,31342.0,,0.0,,31342.0,,9239.0,,759.0,,9998.0,,734923.0,,1554421.0,,1416133.0,,138288.0,,,,4985.0,,2227.0,,7375.0,,1565.0,,2411.0,,,,,,, +LA,Louisiana,201904,Y,P,N,28245.0,,0.0,,28245.0,,12430.0,,958.0,,13388.0,,708156.0,,1484622.0,,1345701.0,,138921.0,,,,7113.0,,2816.0,,9022.0,,1743.0,,2134.0,,,,,,, +LA,Louisiana,201904,Y,U,Y,28245.0,,0.0,,28245.0,,12430.0,,958.0,,13388.0,,708156.0,,1484622.0,,1345701.0,,138921.0,,,,7113.0,,2816.0,,9022.0,,1743.0,,2134.0,,,,,,, +LA,Louisiana,201905,Y,P,N,30643.0,,0.0,,30643.0,,10200.0,,778.0,,10978.0,,705905.0,,1475709.0,,1343416.0,,132293.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,201905,Y,U,Y,30643.0,,0.0,,30643.0,,10200.0,,778.0,,10978.0,,705905.0,,1475709.0,,1343416.0,,132293.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,201906,Y,P,N,28345.0,,0.0,,28345.0,,10950.0,,1040.0,,11990.0,,685067.0,,1446623.0,,1335780.0,,110843.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,201906,Y,U,Y,28345.0,,0.0,,28345.0,,10950.0,,1040.0,,11990.0,,685067.0,,1446623.0,,1335780.0,,110843.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,201907,Y,P,N,32263.0,,0.0,,32263.0,,12128.0,,1246.0,,13374.0,,691802.0,,1451896.0,,1339835.0,,112061.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,201907,Y,U,Y,32263.0,,0.0,,32263.0,,12128.0,,1246.0,,13374.0,,691802.0,,1451896.0,,1339835.0,,112061.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,201908,Y,P,N,34144.0,,0.0,,34144.0,,13025.0,,1105.0,,14130.0,,705120.0,,1477275.0,,1362594.0,,114681.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,201908,Y,U,Y,34144.0,,0.0,,34144.0,,13025.0,,1105.0,,14130.0,,705120.0,,1477275.0,,1362594.0,,114681.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,201909,Y,P,N,29566.0,,0.0,,29566.0,,12050.0,,963.0,,13013.0,,709390.0,,1490723.0,,1376444.0,,114279.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,201909,Y,U,Y,29566.0,,0.0,,29566.0,,12050.0,,963.0,,13013.0,,709390.0,,1490723.0,,1376444.0,,114279.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,201910,Y,P,N,32808.0,,0.0,,32808.0,,11844.0,,890.0,,12734.0,,718473.0,,1497897.0,,1380049.0,,117848.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,201910,Y,U,Y,32808.0,,0.0,,32808.0,,11844.0,,890.0,,12734.0,,718473.0,,1497897.0,,1380049.0,,117848.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,201911,Y,P,N,27157.0,,0.0,,27157.0,,8560.0,,719.0,,9279.0,,724845.0,,1486213.0,,1368773.0,,117440.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,201911,Y,U,Y,27157.0,,0.0,,27157.0,,8560.0,,719.0,,9279.0,,724845.0,,1486213.0,,1368773.0,,117440.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,201912,Y,P,N,30211.0,,0.0,,30211.0,,11928.0,,1595.0,,13523.0,,702112.0,,1475008.0,,1362205.0,,112803.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,201912,Y,U,Y,30211.0,,0.0,,30211.0,,11928.0,,1595.0,,13523.0,,702112.0,,1475008.0,,1362205.0,,112803.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,202001,Y,P,N,36204.0,,0.0,,36204.0,,13423.0,,1264.0,,14687.0,,712253.0,,1500782.0,,1385151.0,,115631.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,202001,Y,U,Y,36204.0,,0.0,,36204.0,,13423.0,,1264.0,,14687.0,,712253.0,,1500782.0,,1385151.0,,115631.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,202002,Y,P,N,22041.0,,0.0,,22041.0,,11492.0,,1036.0,,12528.0,,717338.0,,1495354.0,,1376918.0,,118436.0,,,,7609.0,,4593.0,,5059.0,,693.0,,1505.0,,,,,,, +LA,Louisiana,202002,Y,U,Y,22041.0,,0.0,,22041.0,,11492.0,,1036.0,,12528.0,,717338.0,,1495354.0,,1376918.0,,118436.0,,,,7609.0,,4593.0,,5059.0,,693.0,,1505.0,,,,,,, +LA,Louisiana,202003,Y,P,N,34502.0,,0.0,,34502.0,,15302.0,,994.0,,16296.0,,714225.0,,1505639.0,,1382434.0,,123205.0,,,,9079.0,,6257.0,,5927.0,,656.0,,1112.0,,,,,,, +LA,Louisiana,202003,Y,U,Y,34502.0,,0.0,,34502.0,,15302.0,,994.0,,16296.0,,714225.0,,1505639.0,,1382434.0,,123205.0,,,,9079.0,,6257.0,,5927.0,,656.0,,1112.0,,,,,,, +LA,Louisiana,202004,Y,P,N,28311.0,,0.0,,28311.0,,13880.0,,605.0,,14485.0,,722881.0,,1539651.0,,1412734.0,,126917.0,,,,11297.0,,4866.0,,740.0,,186.0,,606.0,,,,,,, +LA,Louisiana,202004,Y,U,Y,28311.0,,0.0,,28311.0,,13880.0,,605.0,,14485.0,,722881.0,,1539651.0,,1412734.0,,126917.0,,,,11297.0,,4866.0,,740.0,,186.0,,606.0,,,,,,, +LA,Louisiana,202005,Y,P,N,20823.0,,0.0,,20823.0,,10415.0,,520.0,,10935.0,,730183.0,,1563802.0,,1433908.0,,129894.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,202005,Y,U,Y,20823.0,,0.0,,20823.0,,10415.0,,520.0,,10935.0,,730183.0,,1563802.0,,1433908.0,,129894.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,202006,Y,P,N,23261.0,,0.0,,23261.0,,11114.0,,572.0,,11686.0,,736602.0,,1586472.0,,1454521.0,,131951.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,202006,Y,U,Y,23261.0,,0.0,,23261.0,,11114.0,,572.0,,11686.0,,736602.0,,1586472.0,,1454521.0,,131951.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,202007,Y,P,N,22908.0,,0.0,,22908.0,,11051.0,,581.0,,11632.0,,742247.0,,1608573.0,,1475018.0,,133555.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,202007,Y,U,Y,22908.0,,0.0,,22908.0,,11051.0,,581.0,,11632.0,,742247.0,,1608573.0,,1475018.0,,133555.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,202008,Y,P,N,19944.0,,0.0,,19944.0,,10193.0,,482.0,,10675.0,,747329.0,,1628938.0,,1494461.0,,134477.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,202008,Y,U,Y,19944.0,,0.0,,19944.0,,10193.0,,482.0,,10675.0,,747329.0,,1628938.0,,1494461.0,,134477.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,202009,Y,P,N,19193.0,,0.0,,19193.0,,8528.0,,427.0,,8955.0,,751923.0,,1647878.0,,1512862.0,,135016.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,202009,Y,U,Y,19193.0,,0.0,,19193.0,,8528.0,,427.0,,8955.0,,751923.0,,1647878.0,,1512862.0,,135016.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,202010,Y,P,N,18829.0,,0.0,,18829.0,,8016.0,,398.0,,8414.0,,755736.0,,1662798.0,,1527098.0,,135700.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,202010,Y,U,Y,18829.0,,0.0,,18829.0,,8016.0,,398.0,,8414.0,,755736.0,,1662798.0,,1527098.0,,135700.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,202011,Y,P,N,17950.0,,0.0,,17950.0,,8295.0,,654.0,,8949.0,,759114.0,,1680089.0,,1543789.0,,136300.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,202011,Y,U,Y,17950.0,,0.0,,17950.0,,8295.0,,654.0,,8949.0,,759114.0,,1680089.0,,1543789.0,,136300.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,202012,Y,P,N,17378.0,,0.0,,17378.0,,7950.0,,630.0,,8580.0,,763489.0,,1699940.0,,1562695.0,,137245.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,202012,Y,U,Y,17378.0,,0.0,,17378.0,,7950.0,,630.0,,8580.0,,763489.0,,1699940.0,,1562695.0,,137245.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,202101,Y,P,N,17057.0,,0.0,,17057.0,,6921.0,,461.0,,7382.0,,766295.0,,1713192.0,,1574759.0,,138433.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,202101,Y,U,Y,17057.0,,0.0,,17057.0,,6921.0,,461.0,,7382.0,,766295.0,,1713192.0,,1574759.0,,138433.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,202102,Y,P,N,15767.0,,0.0,,15767.0,,6403.0,,358.0,,6761.0,,768275.0,,1721338.0,,1580445.0,,140893.0,,,,4407.0,,2649.0,,2644.0,,261.0,,344.0,,,,,,, +LA,Louisiana,202102,Y,U,Y,15767.0,,0.0,,15767.0,,6403.0,,358.0,,6761.0,,768275.0,,1721338.0,,1580445.0,,140893.0,,,,4407.0,,2649.0,,2644.0,,261.0,,344.0,,,,,,, +LA,Louisiana,202103,Y,P,N,18170.0,,0.0,,18170.0,,7240.0,,483.0,,7723.0,,771333.0,,1733974.0,,1590812.0,,143162.0,,,,5404.0,,3145.0,,2843.0,,366.0,,408.0,,,,,,, +LA,Louisiana,202103,Y,U,Y,18170.0,,0.0,,18170.0,,7240.0,,483.0,,7723.0,,771333.0,,1733974.0,,1590812.0,,143162.0,,,,5404.0,,3145.0,,2843.0,,366.0,,408.0,,,,,,, +LA,Louisiana,202104,Y,P,N,15578.0,,0.0,,15578.0,,5928.0,,423.0,,6351.0,,772873.0,,1733503.0,,1587537.0,,145966.0,,,,4817.0,,2572.0,,2109.0,,256.0,,261.0,,,,,,, +LA,Louisiana,202104,Y,U,Y,15578.0,,0.0,,15578.0,,5928.0,,423.0,,6351.0,,772873.0,,1733503.0,,1587537.0,,145966.0,,,,4817.0,,2572.0,,2109.0,,256.0,,261.0,,,,,,, +LA,Louisiana,202105,Y,P,N,15467.0,,0.0,,15467.0,,5662.0,,376.0,,6038.0,,773706.0,,1740969.0,,1593923.0,,147046.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,202105,Y,U,Y,15467.0,,0.0,,15467.0,,5662.0,,376.0,,6038.0,,773706.0,,1740969.0,,1593923.0,,147046.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,202106,Y,P,N,16586.0,,0.0,,16586.0,,6794.0,,503.0,,7297.0,,774901.0,,1748860.0,,1599551.0,,149309.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,202106,Y,U,Y,16586.0,,0.0,,16586.0,,6794.0,,503.0,,7297.0,,774901.0,,1748860.0,,1599551.0,,149309.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,202107,Y,P,N,16972.0,,0.0,,16972.0,,6379.0,,519.0,,6898.0,,776847.0,,1766777.0,,1615991.0,,150786.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,202107,Y,U,Y,16972.0,,0.0,,16972.0,,6379.0,,519.0,,6898.0,,776847.0,,1766777.0,,1615991.0,,150786.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,202108,Y,P,N,16185.0,,0.0,,16185.0,,6260.0,,491.0,,6751.0,,778242.0,,1778186.0,,1625665.0,,152521.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,202108,Y,U,Y,16185.0,,0.0,,16185.0,,6260.0,,491.0,,6751.0,,778242.0,,1778186.0,,1625665.0,,152521.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,202109,Y,P,N,13730.0,,0.0,,13730.0,,5153.0,,419.0,,5572.0,,778934.0,,1782861.0,,1628680.0,,154181.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,202109,Y,U,Y,13730.0,,0.0,,13730.0,,5153.0,,419.0,,5572.0,,778934.0,,1782861.0,,1628680.0,,154181.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,202110,Y,P,N,15246.0,,0.0,,15246.0,,6165.0,,519.0,,6684.0,,780872.0,,1791058.0,,1634183.0,,156875.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,202110,Y,U,Y,15246.0,,0.0,,15246.0,,6165.0,,519.0,,6684.0,,780872.0,,1791058.0,,1634183.0,,156875.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,202111,Y,P,N,14226.0,,0.0,,14226.0,,6134.0,,573.0,,6707.0,,781444.0,,1799275.0,,1641788.0,,157487.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,202111,Y,U,Y,14226.0,,0.0,,14226.0,,8879.0,,663.0,,9542.0,,781444.0,,1799275.0,,1641788.0,,157487.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,202112,Y,P,N,13268.0,,0.0,,13268.0,,6513.0,,765.0,,7278.0,,782175.0,,1807746.0,,1649138.0,,158608.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,202112,Y,U,Y,13268.0,,0.0,,13268.0,,6513.0,,765.0,,7278.0,,782175.0,,1807746.0,,1649138.0,,158608.0,,,,,,,,,,,,,,,,,,, +LA,Louisiana,202201,Y,P,N,15595.0,,0.0,,15595.0,,6801.0,,663.0,,7464.0,,783832.0,,1816203.0,,1655402.0,,160801.0,,,,5089.0,,3057.0,,2623.0,,339.0,,300.0,,,,,,, +LA,Louisiana,202201,Y,U,Y,15595.0,,0.0,,15595.0,,6801.0,,663.0,,7464.0,,783832.0,,1816203.0,,1655402.0,,160801.0,,,,5089.0,,3057.0,,2623.0,,339.0,,300.0,,,,,,, +LA,Louisiana,202202,Y,P,N,13051.0,,0.0,,13051.0,,5689.0,,568.0,,6257.0,,784407.0,,1820198.0,,1657184.0,,163014.0,,,,4378.0,,2339.0,,2317.0,,208.0,,323.0,,,,,,, +LA,Louisiana,202202,Y,U,Y,13051.0,,0.0,,13051.0,,5689.0,,568.0,,6257.0,,784407.0,,1820198.0,,1657184.0,,163014.0,,,,4378.0,,2339.0,,2317.0,,208.0,,323.0,,,,,,, +LA,Louisiana,202203,Y,P,N,14553.0,,0.0,,14553.0,,5900.0,,533.0,,6433.0,,785911.0,,1826674.0,,1660576.0,,166098.0,,,,4486.0,,2517.0,,2343.0,,256.0,,276.0,,,,,,, +LA,Louisiana,202203,Y,U,Y,14553.0,,0.0,,14553.0,,5900.0,,533.0,,6433.0,,785911.0,,1826674.0,,1660576.0,,166098.0,,,,4486.0,,2517.0,,2343.0,,256.0,,276.0,,,,,,, +LA,Louisiana,202204,Y,P,N,12818.0,,0.0,,12818.0,,5209.0,,489.0,,5698.0,,787032.0,,1833628.0,,1664356.0,,169272.0,,,,4084.0,,2188.0,,2242.0,,281.0,,283.0,,,,,,, +LA,Louisiana,202204,Y,U,Y,12818.0,,0.0,,12818.0,,5209.0,,489.0,,5698.0,,787032.0,,1833628.0,,1664356.0,,169272.0,,,,4084.0,,2188.0,,2242.0,,281.0,,283.0,,,,,,, +LA,Louisiana,202205,Y,P,N,13629.0,,0.0,,13629.0,,5516.0,,558.0,,6074.0,,788954.0,,1840825.0,,1669661.0,,171164.0,,,,4488.0,,2374.0,,2114.0,,227.0,,307.0,,,,,,, +LA,Louisiana,202205,Y,U,Y,13629.0,,0.0,,13629.0,,5516.0,,558.0,,6074.0,,790345.0,,1844912.0,,1673518.0,,171394.0,,,,4488.0,,2374.0,,2114.0,,227.0,,307.0,,,,,,, +LA,Louisiana,202206,Y,P,N,13727.0,,0.0,,13727.0,,5237.0,,458.0,,5695.0,,789936.0,,1846753.0,,1673511.0,,173242.0,,,,4001.0,,2367.0,,2299.0,,274.0,,274.0,,,,,,, +LA,Louisiana,202206,Y,U,Y,13727.0,,0.0,,13727.0,,5237.0,,458.0,,5695.0,,791361.0,,1850247.0,,1676715.0,,173532.0,,,,4001.0,,2367.0,,2299.0,,274.0,,274.0,,,,,,, +LA,Louisiana,202207,Y,P,N,13368.0,,0.0,,13368.0,,5518.0,,483.0,,6001.0,,792068.0,,1854482.0,,1679165.0,,175317.0,,,,4056.0,,2470.0,,2177.0,,258.0,,242.0,,,,,,, +LA,Louisiana,202207,Y,U,Y,13368.0,,0.0,,13368.0,,5518.0,,483.0,,6001.0,,793417.0,,1858130.0,,1682574.0,,175556.0,,,,4056.0,,2470.0,,2177.0,,258.0,,242.0,,,,,,, +LA,Louisiana,202208,Y,P,N,15194.0,,0.0,,15194.0,,6327.0,,595.0,,6922.0,,793941.0,,1862138.0,,1685064.0,,177074.0,,,,4827.0,,2870.0,,2953.0,,270.0,,297.0,,,,,,, +LA,Louisiana,202208,Y,U,Y,15194.0,,0.0,,15194.0,,6327.0,,595.0,,6922.0,,796152.0,,1866372.0,,1688969.0,,177403.0,,,,4827.0,,2870.0,,2953.0,,270.0,,297.0,,,,,,, +LA,Louisiana,202209,Y,P,N,13448.0,,0.0,,13448.0,,5254.0,,480.0,,5734.0,,795975.0,,1868642.0,,1689620.0,,179022.0,,,,4069.0,,2407.0,,2501.0,,278.0,,288.0,,,,,,, +LA,Louisiana,202209,Y,U,Y,13448.0,,0.0,,13448.0,,5254.0,,480.0,,5734.0,,797501.0,,1872410.0,,1693151.0,,179259.0,,,,4069.0,,2407.0,,2501.0,,278.0,,288.0,,,,,,, +LA,Louisiana,202210,Y,P,N,13563.0,,0.0,,13563.0,,5312.0,,475.0,,5787.0,,796917.0,,1874794.0,,1694052.0,,180742.0,,,,4201.0,,2384.0,,2476.0,,300.0,,272.0,,,,,,, +LA,Louisiana,202210,Y,U,Y,13563.0,,0.0,,13563.0,,5312.0,,475.0,,5787.0,,798408.0,,1878473.0,,1697529.0,,180944.0,,,,4201.0,,2384.0,,2476.0,,300.0,,272.0,,,,,,, +LA,Louisiana,202211,Y,P,N,14519.0,,0.0,,14519.0,,5488.0,,490.0,,5978.0,,798796.0,,1883543.0,,1701803.0,,181740.0,,,,4897.0,,2618.0,,3039.0,,305.0,,246.0,,,,,,, +LA,Louisiana,202211,Y,U,Y,14519.0,,0.0,,14519.0,,5488.0,,490.0,,5978.0,,800454.0,,1887502.0,,1705488.0,,182014.0,,,,4897.0,,2618.0,,3039.0,,305.0,,246.0,,,,,,, +LA,Louisiana,202212,Y,P,N,12846.0,,0.0,,12846.0,,5299.0,,485.0,,5784.0,,800688.0,,1892195.0,,1709211.0,,182984.0,,,,4574.0,,2421.0,,3436.0,,405.0,,269.0,,,,,,, +LA,Louisiana,202212,Y,U,Y,12846.0,,0.0,,12846.0,,5299.0,,485.0,,5784.0,,802436.0,,1896206.0,,1712925.0,,183281.0,,,,4574.0,,2421.0,,3436.0,,405.0,,269.0,,,,,,, +LA,Louisiana,202301,Y,P,N,16310.0,,0.0,,16310.0,,6139.0,,583.0,,6722.0,,802762.0,,1902036.0,,1716951.0,,185085.0,,,,4616.0,,2733.0,,4022.0,,671.0,,417.0,,,,,,, +LA,Louisiana,202301,Y,U,Y,16310.0,,0.0,,16310.0,,6139.0,,583.0,,6722.0,,804635.0,,1906517.0,,1721098.0,,185419.0,,,,4616.0,,2733.0,,4022.0,,671.0,,417.0,,,,,,, +LA,Louisiana,202302,Y,P,N,13114.0,,0.0,,13114.0,,5064.0,,480.0,,5544.0,,803961.0,,1907140.0,,1719859.0,,187281.0,,,,3510.0,,2287.0,,3070.0,,429.0,,422.0,,,,,,, +LA,Louisiana,202302,Y,U,Y,13114.0,,0.0,,13114.0,,5064.0,,480.0,,5544.0,,805585.0,,1910883.0,,1723344.0,,187539.0,,,,3510.0,,2287.0,,3070.0,,429.0,,411.0,,,,,,, +LA,Louisiana,202303,Y,P,N,14468.0,,0.0,,14468.0,,5957.0,,491.0,,6448.0,,805321.0,,1913767.0,,1724564.0,,189203.0,,,,4325.0,,2735.0,,3132.0,,371.0,,425.0,,344740.0,Does not include all calls received by call centers,0.0,Call centers offer callbacks; Does not include all calls received by call centers,0.02,Does not include all calls received by call centers; Includes only calls transferred to a live agent +LA,Louisiana,202303,Y,U,Y,14468.0,,0.0,,14468.0,,5957.0,,491.0,,6448.0,,806575.0,,1916873.0,,1727474.0,,189399.0,,,,4325.0,,2735.0,,3132.0,,371.0,,425.0,,344740.0,Does not include all calls received by call centers,0.0,Call centers offer callbacks; Does not include all calls received by call centers,0.02,Does not include all calls received by call centers; Includes only calls transferred to a live agent +LA,Louisiana,202304,Y,P,N,12913.0,,0.0,,12913.0,,4716.0,,434.0,,5150.0,,805887.0,,1918467.0,,1728289.0,,190178.0,,,,3580.0,,1899.0,,2669.0,,412.0,,294.0,,335125.0,Does not include all calls received by call centers,1.0,Call centers offer callbacks; Does not include all calls received by call centers,0.038,Does not include all calls received by call centers; Includes only calls transferred to a live agent +LA,Louisiana,202304,Y,U,Y,12913.0,,0.0,,12913.0,,4716.0,,434.0,,5150.0,,807409.0,,1921949.0,,1731535.0,,190414.0,,,,3580.0,,1899.0,,2669.0,,412.0,,294.0,,335125.0,Does not include all calls received by call centers,1.0,Call centers offer callbacks; Does not include all calls received by call centers,0.038,Does not include all calls received by call centers; Includes only calls transferred to a live agent +LA,Louisiana,202305,Y,P,N,15012.0,,0.0,,15012.0,,5068.0,,431.0,,5499.0,,807020.0,,1923476.0,,1733214.0,,190262.0,,,,3651.0,,2130.0,,3080.0,,510.0,,360.0,,344755.0,Does not include all calls received by call centers,1.0,Call centers offer callbacks; Does not include all calls received by call centers,0.023,Does not include all calls received by call centers; Includes only calls transferred to a live agent +LA,Louisiana,202305,Y,U,Y,15012.0,,0.0,,15012.0,,5068.0,,431.0,,5499.0,,808824.0,,1927554.0,,1736994.0,,190560.0,,,,3651.0,,2130.0,,3080.0,,510.0,,360.0,,344755.0,Does not include all calls received by call centers,1.0,Call centers offer callbacks; Does not include all calls received by call centers,0.023,Does not include all calls received by call centers; Includes only calls transferred to a live agent +LA,Louisiana,202306,Y,P,N,17973.0,,0.0,,17973.0,,6102.0,,504.0,,6606.0,,805460.0,,1920645.0,,1730989.0,,189656.0,,,,4607.0,,2403.0,,3354.0,,573.0,,481.0,,383079.0,Does not include all calls received by call centers,1.0,Call centers offer callbacks; Does not include all calls received by call centers,0.026,Does not include all calls received by call centers; Includes only calls transferred to a live agent +LA,Louisiana,202306,Y,U,Y,17973.0,,0.0,,17973.0,,6102.0,,504.0,,6606.0,,807216.0,,1924717.0,,1734758.0,,189959.0,,,,4607.0,,2403.0,,3354.0,,573.0,,481.0,,383079.0,Does not include all calls received by call centers,1.0,Call centers offer callbacks; Does not include all calls received by call centers,0.026,Does not include all calls received by call centers; Includes only calls transferred to a live agent +LA,Louisiana,202307,Y,P,N,20643.0,,0.0,,20643.0,,6968.0,,606.0,,7574.0,,792763.0,,1885983.0,,1700773.0,,185210.0,,,,4313.0,,3291.0,,3726.0,,583.0,,587.0,,419877.0,Does not include all calls received by call centers,2.0,Call centers offer callbacks; Does not include all calls received by call centers,0.037,Does not include all calls received by call centers; Includes only calls transferred to a live agent +LA,Louisiana,202307,Y,U,Y,20643.0,,0.0,,20643.0,,6968.0,,606.0,,7574.0,,796994.0,,1895058.0,,1709068.0,,185990.0,,,,4313.0,,3291.0,,3726.0,,583.0,,587.0,,419877.0,Does not include all calls received by call centers,2.0,Call centers offer callbacks; Does not include all calls received by call centers,0.037,Does not include all calls received by call centers; Includes only calls transferred to a live agent +LA,Louisiana,202308,Y,P,N,23110.0,,0.0,,23110.0,,9153.0,,833.0,,9986.0,,782864.0,,1856336.0,,1674274.0,,182062.0,,,,5776.0,,4031.0,,5328.0,,1025.0,,946.0,,483158.0,Does not include all calls received by call centers,2.0,Call centers offer callbacks; Does not include all calls received by call centers,0.044,Does not include all calls received by call centers; Includes only calls transferred to a live agent +LA,Louisiana,202308,Y,U,Y,23110.0,,0.0,,23110.0,,9153.0,,833.0,,9986.0,,787177.0,,1864659.0,,1681735.0,,182924.0,,,,5776.0,,4031.0,,5328.0,,1025.0,,946.0,,483158.0,Does not include all calls received by call centers,2.0,Call centers offer callbacks; Does not include all calls received by call centers,0.044,Does not include all calls received by call centers; Includes only calls transferred to a live agent +LA,Louisiana,202309,Y,P,N,20402.0,,0.0,,20402.0,,8250.0,,785.0,,9035.0,,772194.0,,1820190.0,,1641632.0,,178558.0,,,,5274.0,,3386.0,,4858.0,,1107.0,,1074.0,,429847.0,Does not include all calls received by call centers,2.0,Call centers offer callbacks; Does not include all calls received by call centers,0.044,Does not include all calls received by call centers; Includes only calls transferred to a live agent +LA,Louisiana,202309,Y,U,Y,20402.0,,0.0,,20402.0,,8250.0,,785.0,,9035.0,,777026.0,,1830471.0,,1651013.0,,179458.0,,,,5274.0,,3386.0,,4858.0,,1107.0,,1074.0,,429847.0,Does not include all calls received by call centers,2.0,Call centers offer callbacks; Does not include all calls received by call centers,0.044,Does not include all calls received by call centers; Includes only calls transferred to a live agent +LA,Louisiana,202310,Y,P,N,23025.0,,0.0,,23025.0,,9097.0,,933.0,,10030.0,,764088.0,,1789466.0,,1613748.0,,175718.0,,,,6487.0,,3447.0,,5500.0,,1041.0,,1272.0,,475585.0,Does not include all calls received by call centers; New call center added in reporting period,2.0,Call centers offer callbacks; Does not include all calls received by call centers; New call center added in reporting period,0.045,Does not include all calls received by call centers; Includes only calls transferred to a live agent; New call center added in reporting period +LA,Louisiana,202310,Y,U,Y,23025.0,,0.0,,23025.0,,9097.0,,933.0,,10030.0,,768157.0,,1797892.0,,1621441.0,,176451.0,,,,6487.0,,3447.0,,5500.0,,1041.0,,1272.0,,475585.0,Does not include all calls received by call centers; New call center added in reporting period,2.0,Call centers offer callbacks; Does not include all calls received by call centers; New call center added in reporting period,0.045,Does not include all calls received by call centers; Includes only calls transferred to a live agent; New call center added in reporting period +LA,Louisiana,202311,Y,P,N,22615.0,,0.0,,22615.0,,8930.0,,887.0,,9817.0,,757761.0,,1762910.0,,1590623.0,,172287.0,,,,7473.0,,3829.0,,5488.0,,1054.0,,975.0,,438564.0,Does not include all calls received by call centers,2.0,Call centers offer callbacks; Does not include all calls received by call centers,0.05,Does not include all calls received by call centers; Includes only calls transferred to a live agent +LA,Louisiana,202311,Y,U,Y,22615.0,,0.0,,22615.0,,8930.0,,887.0,,9817.0,,762178.0,,1776219.0,,1603001.0,,173218.0,,,,7473.0,,3829.0,,5488.0,,1054.0,,975.0,,438564.0,Does not include all calls received by call centers,2.0,Call centers offer callbacks; Does not include all calls received by call centers,0.05,Does not include all calls received by call centers; Includes only calls transferred to a live agent +LA,Louisiana,202312,Y,P,N,21205.0,,0.0,,21205.0,,8743.0,,911.0,,9654.0,,752747.0,,1740650.0,,1570387.0,,170263.0,,,,7324.0,,3663.0,,6244.0,,1387.0,,1014.0,,379722.0,Does not include all calls received by call centers,2.0,Call centers offer callbacks; Does not include all calls received by call centers,0.045,Does not include all calls received by call centers; Includes only calls transferred to a live agent +LA,Louisiana,202312,Y,U,Y,21205.0,,0.0,,21205.0,,8743.0,,911.0,,9654.0,,757135.0,,1751214.0,,1579955.0,,171259.0,,,,7324.0,,3663.0,,6244.0,,1387.0,,1014.0,,379722.0,Does not include all calls received by call centers,2.0,Call centers offer callbacks; Does not include all calls received by call centers,0.045,Does not include all calls received by call centers; Includes only calls transferred to a live agent +LA,Louisiana,202401,Y,P,N,27045.0,,0.0,,27045.0,,10514.0,,1029.0,,11543.0,,740600.0,,1710756.0,,1545535.0,,165221.0,,,,7961.0,,4001.0,,7176.0,,2000.0,,1540.0,,461801.0,Does not include all calls received by call centers,2.0,Call centers offer callbacks; Does not include all calls received by call centers,0.078,Does not include all calls received by call centers; Includes only calls transferred to a live agent +LA,Louisiana,202401,Y,U,Y,27045.0,,0.0,,27045.0,,10514.0,,1029.0,,11543.0,,746242.0,,1722482.0,,1556121.0,,166361.0,,,,7961.0,,4001.0,,7176.0,,2000.0,,1540.0,,461801.0,Does not include all calls received by call centers,2.0,Call centers offer callbacks; Does not include all calls received by call centers,0.078,Does not include all calls received by call centers; Includes only calls transferred to a live agent +LA,Louisiana,202402,Y,P,N,24125.0,,0.0,,24125.0,,10329.0,,1084.0,,11413.0,,736421.0,,1684930.0,,1521946.0,,162984.0,,,,7153.0,,3786.0,,6857.0,,1682.0,,1692.0,,416910.0,Does not include all calls received by call centers,2.0,Call centers offer callbacks; Does not include all calls received by call centers,0.084,Does not include all calls received by call centers; Includes only calls transferred to a live agent +LA,Louisiana,202402,Y,U,Y,24125.0,,0.0,,24125.0,,10329.0,,1084.0,,11413.0,,741310.0,,1695673.0,,1531636.0,,164037.0,,,,7153.0,,3786.0,,6857.0,,1682.0,,1692.0,,416910.0,Does not include all calls received by call centers,2.0,Call centers offer callbacks; Does not include all calls received by call centers,0.084,Does not include all calls received by call centers; Includes only calls transferred to a live agent +LA,Louisiana,202403,Y,P,N,24405.0,,0.0,,24405.0,,10783.0,,1059.0,,11842.0,,730052.0,,1657940.0,,1499518.0,,158422.0,,,,8046.0,,4438.0,,6395.0,,1186.0,,1378.0,,399381.0,Does not include all calls received by call centers,2.0,Call centers offer callbacks; Does not include all calls received by call centers,0.084,Does not include all calls received by call centers; Includes only calls transferred to a live agent +LA,Louisiana,202403,Y,U,Y,24405.0,,0.0,,24405.0,,10783.0,,1059.0,,11842.0,,734631.0,,1667821.0,,1508454.0,,159367.0,,,,8046.0,,4438.0,,6395.0,,1186.0,,1378.0,,399381.0,Does not include all calls received by call centers,2.0,Call centers offer callbacks; Does not include all calls received by call centers,0.084,Does not include all calls received by call centers; Includes only calls transferred to a live agent +LA,Louisiana,202404,Y,P,N,26175.0,,0.0,,26175.0,,11947.0,,1192.0,,13139.0,,723455.0,,1625999.0,,1471380.0,,154619.0,,,,9301.0,,4696.0,,6971.0,,1067.0,,1255.0,,429654.0,Does not include all calls received by call centers,2.0,Call centers offer callbacks; Does not include all calls received by call centers,0.087,Does not include all calls received by call centers; Includes only calls transferred to a live agent +LA,Louisiana,202404,Y,U,Y,26175.0,,0.0,,26175.0,,11947.0,,1192.0,,13139.0,,727304.0,,1634568.0,,1479168.0,,155400.0,,,,9301.0,,4696.0,,6971.0,,1067.0,,1255.0,,429654.0,Does not include all calls received by call centers,2.0,Call centers offer callbacks; Does not include all calls received by call centers,0.087,Does not include all calls received by call centers; Includes only calls transferred to a live agent +LA,Louisiana,202405,Y,P,N,26812.0,,0.0,,26812.0,,11362.0,,1089.0,,12451.0,,714294.0,,1587448.0,,1436643.0,,150805.0,,,,9485.0,,4414.0,,6641.0,,796.0,,708.0,,431175.0,Does not include all calls received by call centers,2.0,Call centers offer callbacks; Does not include all calls received by call centers,0.08,Does not include all calls received by call centers; Includes only calls transferred to a live agent +LA,Louisiana,202405,Y,U,Y,26812.0,,0.0,,26812.0,,11362.0,,1089.0,,12451.0,,718484.0,,1596429.0,,1444834.0,,151595.0,,,,9485.0,,4414.0,,6641.0,,796.0,,708.0,,431175.0,Does not include all calls received by call centers,2.0,Call centers offer callbacks; Does not include all calls received by call centers,0.08,Does not include all calls received by call centers; Includes only calls transferred to a live agent +LA,Louisiana,202406,Y,P,N,26462.0,,0.0,,26462.0,,11029.0,,1062.0,,12091.0,,705639.0,,1549229.0,,1402417.0,,146812.0,,,,8447.0,,4214.0,,6694.0,,927.0,,771.0,,397787.0,Does not include all calls received by call centers,2.0,Call centers offer callbacks; Does not include all calls received by call centers,0.07,Does not include all calls received by call centers; Includes only calls transferred to a live agent +LA,Louisiana,202406,Y,U,Y,26462.0,,0.0,,26462.0,,11029.0,,1062.0,,12091.0,,710224.0,,1559351.0,,1411760.0,,147591.0,,,,8447.0,,4214.0,,6694.0,,927.0,,771.0,,397787.0,Does not include all calls received by call centers,2.0,Call centers offer callbacks; Does not include all calls received by call centers,0.07,Does not include all calls received by call centers; Includes only calls transferred to a live agent +LA,Louisiana,202407,Y,P,N,27601.0,,0.0,,27601.0,,12000.0,,1145.0,,13145.0,,707705.0,,1523006.0,,1375785.0,,147221.0,,815301.0,,8939.0,,4514.0,,7581.0,,1218.0,,1032.0,,382717.0,Does not include all calls received by call centers,4.0,Call centers offer callbacks; Does not include all calls received by call centers,0.078,Does not include all calls received by call centers; Includes only calls transferred to a live agent +LA,Louisiana,202407,Y,U,Y,27601.0,,0.0,,27601.0,,12000.0,,1145.0,,13145.0,,712440.0,,1534922.0,,1387094.0,,147828.0,,822482.0,,8939.0,,4514.0,,7581.0,,1218.0,,1032.0,,382717.0,Does not include all calls received by call centers,4.0,Call centers offer callbacks; Does not include all calls received by call centers,0.078,Does not include all calls received by call centers; Includes only calls transferred to a live agent +LA,Louisiana,202408,Y,P,N,27251.0,,0.0,,27251.0,,12749.0,,1255.0,,14004.0,,710492.0,,1526497.0,,1379070.0,,147427.0,,816005.0,,8773.0,,4796.0,,8083.0,,1350.0,,1341.0,,384420.0,Does not include all calls received by call centers,4.0,Call centers offer callbacks; Does not include all calls received by call centers,0.081,Does not include all calls received by call centers; Includes only calls transferred to a live agent +LA,Louisiana,202408,Y,U,Y,27251.0,,0.0,,27251.0,,12749.0,,1255.0,,14004.0,,713911.0,,1534598.0,,1386575.0,,148023.0,,820687.0,,8773.0,,4796.0,,8083.0,,1350.0,,1341.0,,384420.0,Does not include all calls received by call centers,4.0,Call centers offer callbacks; Does not include all calls received by call centers,0.081,Does not include all calls received by call centers; Includes only calls transferred to a live agent +LA,Louisiana,202409,Y,P,N,23477.0,,0.0,,23477.0,,10094.0,,994.0,,11088.0,,709764.0,,1524474.0,,1377585.0,,146889.0,,814710.0,,7439.0,,3123.0,,6552.0,,1183.0,,1032.0,,338568.0,Does not include all calls received by call centers,4.0,Call centers offer callbacks; Does not include all calls received by call centers,0.084,Does not include all calls received by call centers; Includes only calls transferred to a live agent +LA,Louisiana,202409,Y,U,Y,23477.0,,0.0,,23477.0,,10094.0,,994.0,,11088.0,,713777.0,,1534594.0,,1386943.0,,147651.0,,820817.0,,7439.0,,3123.0,,6552.0,,1183.0,,1032.0,,338568.0,Does not include all calls received by call centers,4.0,Call centers offer callbacks; Does not include all calls received by call centers,0.084,Does not include all calls received by call centers; Includes only calls transferred to a live agent +LA,Louisiana,202410,Y,P,N,28091.0,,0.0,,28091.0,,12347.0,,1170.0,,13517.0,,711087.0,,1511871.0,,1364434.0,,147437.0,,800784.0,,9096.0,,4435.0,,7509.0,,1453.0,,1509.0,,376848.0,Does not include all calls received by call centers,4.0,Call centers offer callbacks; Does not include all calls received by call centers,0.094,Does not include all calls received by call centers; Includes only calls transferred to a live agent +LA,Louisiana,202410,Y,U,Y,28091.0,,0.0,,28091.0,,12347.0,,1170.0,,13517.0,,714105.0,,1519621.0,,1371651.0,,147970.0,,805516.0,,9096.0,,4435.0,,7509.0,,1453.0,,1509.0,,376848.0,Does not include all calls received by call centers,4.0,Call centers offer callbacks; Does not include all calls received by call centers,0.094,Does not include all calls received by call centers; Includes only calls transferred to a live agent +LA,Louisiana,202411,Y,P,N,22824.0,,0.0,,22824.0,,9952.0,,930.0,,10882.0,,709601.0,,1509114.0,,1362390.0,,146724.0,,799513.0,,8783.0,,3503.0,,6234.0,,967.0,,1002.0,,289336.0,Does not include all calls received by call centers,4.0,Call centers offer callbacks; Does not include all calls received by call centers,0.079,Does not include all calls received by call centers; Includes only calls transferred to a live agent +LA,Louisiana,202411,Y,U,Y,22824.0,,0.0,,22824.0,,9952.0,,930.0,,10882.0,,712788.0,,1529152.0,,1381860.0,,147292.0,,816364.0,,8783.0,,3503.0,,6234.0,,967.0,,1002.0,,289336.0,Does not include all calls received by call centers,4.0,Call centers offer callbacks; Does not include all calls received by call centers,0.079,Does not include all calls received by call centers; Includes only calls transferred to a live agent +LA,Louisiana,202412,Y,P,N,22609.0,,0.0,,22609.0,,9915.0,,962.0,,10877.0,,709586.0,,1525052.0,,1377806.0,,147246.0,,815466.0,,8912.0,,3385.0,,6664.0,,1355.0,,1163.0,,314700.0,Does not include all calls received by call centers,4.0,Call centers offer callbacks; Does not include all calls received by call centers,0.083,Does not include all calls received by call centers; Includes only calls transferred to a live agent +LA,Louisiana,202412,Y,U,Y,22609.0,,0.0,,22609.0,,9915.0,,962.0,,10877.0,,713167.0,,1533927.0,,1385970.0,,147957.0,,820760.0,,8912.0,,3385.0,,6664.0,,1355.0,,1163.0,,314700.0,Does not include all calls received by call centers,4.0,Call centers offer callbacks; Does not include all calls received by call centers,0.083,Does not include all calls received by call centers; Includes only calls transferred to a live agent +LA,Louisiana,202501,Y,P,N,26005.0,,0.0,,26005.0,,10688.0,,1001.0,,11689.0,,706905.0,,1514598.0,,1368127.0,,146471.0,,807693.0,,8142.0,,3154.0,,5166.0,,2035.0,,2385.0,,361285.0,Does not include all calls received by call centers,4.0,Call centers offer callbacks; Does not include all calls received by call centers,0.08,Does not include all calls received by call centers; Includes only calls transferred to a live agent +LA,Louisiana,202501,Y,U,Y,26005.0,,0.0,,26005.0,,10688.0,,1001.0,,11689.0,,711428.0,,1527109.0,,1379725.0,,147384.0,,815681.0,,8142.0,,3154.0,,5166.0,,2035.0,,2385.0,,361285.0,Does not include all calls received by call centers,4.0,Call centers offer callbacks; Does not include all calls received by call centers,0.08,Does not include all calls received by call centers; Includes only calls transferred to a live agent +LA,Louisiana,202502,Y,P,N,21993.0,,0.0,,21993.0,,10511.0,,1061.0,,11572.0,,707834.0,,1517287.0,,1370564.0,,146723.0,,809453.0,,6872.0,,3158.0,,5578.0,,2829.0,,3084.0,,332386.0,Does not include all calls received by call centers,3.0,Call centers offer callbacks; Does not include all calls received by call centers,0.063,Does not include all calls received by call centers; Includes only calls transferred to a live agent +LA,Louisiana,202502,Y,U,Y,21993.0,,0.0,,21993.0,,10511.0,,1061.0,,11572.0,,711394.0,,1526099.0,,1378667.0,,147432.0,,814705.0,,6872.0,,3158.0,,5578.0,,2829.0,,3084.0,,332386.0,Does not include all calls received by call centers,3.0,Call centers offer callbacks; Does not include all calls received by call centers,0.063,Does not include all calls received by call centers; Includes only calls transferred to a live agent +LA,Louisiana,202503,Y,P,N,22787.0,,0.0,,22787.0,,9729.0,,953.0,,10682.0,,706906.0,,1510058.0,,1364557.0,,145501.0,,803152.0,,7590.0,,2806.0,,5522.0,,1396.0,,2161.0,,325092.0,Does not include all calls received by call centers,3.0,Call centers offer callbacks; Does not include all calls received by call centers,0.063,Does not include all calls received by call centers; Includes only calls transferred to a live agent +LA,Louisiana,202503,Y,U,Y,22787.0,,0.0,,22787.0,,9729.0,,953.0,,10682.0,,710814.0,,1518605.0,,1372332.0,,146273.0,,807791.0,,7590.0,,2806.0,,5522.0,,1396.0,,2161.0,,325092.0,Does not include all calls received by call centers,3.0,Call centers offer callbacks; Does not include all calls received by call centers,0.063,Does not include all calls received by call centers; Includes only calls transferred to a live agent +LA,Louisiana,202504,Y,P,N,22953.0,,0.0,,22953.0,,10307.0,,907.0,,11214.0,,706137.0,,1496993.0,,1351554.0,,145439.0,,790856.0,,7948.0,,3157.0,,5384.0,,1659.0,,1572.0,,350926.0,Does not include all calls received by call centers,3.0,Call centers offer callbacks; Does not include all calls received by call centers,0.061,Does not include all calls received by call centers; Includes only calls transferred to a live agent +LA,Louisiana,202504,Y,U,Y,22953.0,,0.0,,22953.0,,10307.0,,907.0,,11214.0,,709805.0,,1505887.0,,1359775.0,,146112.0,,796082.0,,7948.0,,3157.0,,5384.0,,1659.0,,1572.0,,350926.0,Does not include all calls received by call centers,3.0,Call centers offer callbacks; Does not include all calls received by call centers,0.061,Does not include all calls received by call centers; Includes only calls transferred to a live agent +LA,Louisiana,202505,Y,P,N,22626.0,,0.0,,22626.0,,9810.0,,911.0,,10721.0,,703964.0,,1485753.0,,1341985.0,,143768.0,,781789.0,,7465.0,,3124.0,,4748.0,,1662.0,,1547.0,,355141.0,Does not include all calls received by call centers,3.0,Call centers offer callbacks; Does not include all calls received by call centers,0.06,Does not include all calls received by call centers; Includes only calls transferred to a live agent +LA,Louisiana,202505,Y,U,Y,22626.0,,0.0,,22626.0,,9810.0,,911.0,,10721.0,,707256.0,,1494228.0,,1349845.0,,144383.0,,786972.0,,7465.0,,3124.0,,4748.0,,1662.0,,1547.0,,355141.0,Does not include all calls received by call centers,3.0,Call centers offer callbacks; Does not include all calls received by call centers,0.06,Does not include all calls received by call centers; Includes only calls transferred to a live agent +LA,Louisiana,202506,Y,P,N,23023.0,,0.0,,23023.0,,10222.0,,881.0,,11103.0,,700799.0,,1470268.0,,1328493.0,,141775.0,,769469.0,,7307.0,,2862.0,,5520.0,,1599.0,,2147.0,,327493.0,Does not include all calls received by call centers,3.0,Call centers offer callbacks; Does not include all calls received by call centers,0.039,Does not include all calls received by call centers; Includes only calls transferred to a live agent +LA,Louisiana,202506,Y,U,Y,23023.0,,0.0,,23023.0,,10222.0,,881.0,,11103.0,,704766.0,,1480362.0,,1337888.0,,142474.0,,775596.0,,7307.0,,2862.0,,5520.0,,1599.0,,2147.0,,327493.0,Does not include all calls received by call centers,3.0,Call centers offer callbacks; Does not include all calls received by call centers,0.039,Does not include all calls received by call centers; Includes only calls transferred to a live agent +LA,Louisiana,202507,Y,P,N,25394.0,,0.0,,25394.0,,11841.0,,967.0,,12808.0,,697873.0,,1453151.0,,1312113.0,,141038.0,,755278.0,,8339.0,,3579.0,,6271.0,,1899.0,,1658.0,,343542.0,Does not include all calls received by call centers,3.0,Call centers offer callbacks; Does not include all calls received by call centers,0.054,Does not include all calls received by call centers; Includes only calls transferred to a live agent +LA,Louisiana,202507,Y,U,Y,25394.0,,0.0,,25394.0,,11841.0,,967.0,,12808.0,,701503.0,,1462342.0,,1320698.0,,141644.0,,760839.0,,8339.0,,3579.0,,6271.0,,1899.0,,1658.0,,343542.0,Does not include all calls received by call centers,3.0,Call centers offer callbacks; Does not include all calls received by call centers,0.054,Does not include all calls received by call centers; Includes only calls transferred to a live agent +LA,Louisiana,202508,Y,P,N,24599.0,,0.0,,24599.0,,10917.0,,903.0,,11820.0,,696073.0,,1444802.0,,1304615.0,,140187.0,,748729.0,,7943.0,,3605.0,,5714.0,,1301.0,,1363.0,,333751.0,Does not include all calls received by call centers,3.0,Call centers offer callbacks; Does not include all calls received by call centers,0.049,Does not include all calls received by call centers; Includes only calls transferred to a live agent +LA,Louisiana,202508,Y,U,Y,24599.0,,0.0,,24599.0,,10917.0,,903.0,,11820.0,,699756.0,,1454019.0,,1313190.0,,140829.0,,754263.0,,7943.0,,3605.0,,5714.0,,1301.0,,1363.0,,333751.0,Does not include all calls received by call centers,3.0,Call centers offer callbacks; Does not include all calls received by call centers,0.049,Does not include all calls received by call centers; Includes only calls transferred to a live agent +LA,Louisiana,202509,Y,P,N,25406.0,,0.0,,25406.0,,11356.0,,1004.0,,12360.0,,694024.0,,1440337.0,,1300606.0,,139731.0,,746313.0,,7665.0,,3500.0,,5550.0,,1756.0,,1471.0,,381243.0,Does not include all calls received by call centers,3.0,Call centers offer callbacks; Does not include all calls received by call centers,0.058,Does not include all calls received by call centers; Includes only calls transferred to a live agent +LA,Louisiana,202509,Y,U,Y,25406.0,,0.0,,25406.0,,11356.0,,1004.0,,12360.0,,697394.0,,1451091.0,,1310796.0,,140295.0,,753697.0,,7665.0,,3500.0,,5550.0,,1756.0,,1471.0,,381243.0,Does not include all calls received by call centers,3.0,Call centers offer callbacks; Does not include all calls received by call centers,0.058,Does not include all calls received by call centers; Includes only calls transferred to a live agent +LA,Louisiana,202510,Y,P,N,25213.0,,0.0,,25213.0,,2742.0,Does Not Include All Medicaid Determinations Made At Application,201.0,Does Not Include All CHIP Determinations Made At Application,2943.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,690425.0,,1421099.0,,1281806.0,,139293.0,,730674.0,,1648.0,Does not include all MAGI determinations on applications,734.0,Does not include all MAGI determinations on applications,1203.0,Does not include all MAGI determinations on applications,663.0,Does not include all MAGI determinations on applications,548.0,Does not include all MAGI determinations on applications,384887.0,Does not include all calls received by call centers,3.0,Call centers offer callbacks; Does not include all calls received by call centers,0.054,Does not include all calls received by call centers; Includes only calls transferred to a live agent +MA,Massachusetts,201309,N,U,Y,,,,,,,,,,,,,,,1296359.0,,,,,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,201706,Y,P,N,18828.0,,4831.0,,23659.0,,0.0,,0.0,,0.0,,682014.0,,1661114.0,,1490673.0,,170441.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,201706,Y,U,Y,23381.0,,6564.0,,29945.0,,0.0,,0.0,,0.0,,682014.0,,1661114.0,,1490673.0,,170441.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,201707,Y,P,N,19722.0,,5759.0,,25481.0,,0.0,,0.0,,0.0,,676008.0,,1632523.0,,1458560.0,,173963.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,201707,Y,U,Y,22441.0,,6227.0,,28668.0,,0.0,,0.0,,0.0,,676008.0,,1632523.0,,1458560.0,,173963.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,201708,Y,P,N,21737.0,,5904.0,,27641.0,,0.0,,0.0,,0.0,,680194.0,,1624439.0,,1448697.0,,175742.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,201708,Y,U,Y,23010.0,,5696.0,,28706.0,,0.0,,0.0,,0.0,,680194.0,,1624439.0,,1448697.0,,175742.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,201709,Y,P,N,18684.0,,3905.0,,22589.0,,0.0,,0.0,,0.0,,686113.0,,1630412.0,,1452043.0,,178369.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,201709,Y,U,Y,20058.0,,5079.0,,25137.0,,0.0,,0.0,,0.0,,686113.0,,1630412.0,,1452043.0,,178369.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,201710,Y,P,N,22299.0,,2841.0,,25140.0,,0.0,,0.0,,0.0,,694351.0,,1649014.0,,1464021.0,,184993.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,201710,Y,U,Y,25753.0,,4924.0,,30677.0,,0.0,,0.0,,0.0,,694351.0,,1649014.0,,1464021.0,,184993.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,201711,Y,P,N,17493.0,,4358.0,,21851.0,,0.0,,0.0,,0.0,,701561.0,,1668344.0,,1482925.0,,185419.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,201711,Y,U,Y,21116.0,,6001.0,,27117.0,,0.0,,0.0,,0.0,,701561.0,,1668344.0,,1482925.0,,185419.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,201712,Y,P,N,18594.0,,6543.0,,25137.0,,0.0,,0.0,,0.0,,707173.0,,1691917.0,,1506698.0,,185219.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,201712,Y,U,Y,19328.0,,6661.0,,25989.0,,0.0,,0.0,,0.0,,707173.0,,1691917.0,,1506698.0,,185219.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,201801,Y,P,N,18792.0,,4655.0,,23447.0,,0.0,,0.0,,0.0,,690498.0,,1673993.0,,1497405.0,,176588.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,201801,Y,U,Y,20184.0,,5461.0,,25645.0,,0.0,,0.0,,0.0,,690498.0,,1673993.0,,1497405.0,,176588.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,201802,Y,P,N,16733.0,,2323.0,,19056.0,,0.0,,0.0,,0.0,,685491.0,,1658413.0,,1481086.0,,177327.0,,,,12390.0,,1579.0,,2414.0,,157.0,,5555.0,,,,,,, +MA,Massachusetts,201802,Y,U,Y,18459.0,,3068.0,,21527.0,,0.0,,0.0,,0.0,,685491.0,,1658413.0,,1481086.0,,177327.0,,,,14699.0,,2120.0,,2604.0,,195.0,,6049.0,,,,,,, +MA,Massachusetts,201803,Y,P,N,17826.0,,3149.0,,20975.0,,0.0,,0.0,,0.0,,694198.0,,1678328.0,,1498956.0,,179372.0,,,,14277.0,,1703.0,,1893.0,,209.0,,1818.0,,,,,,, +MA,Massachusetts,201803,Y,U,Y,18529.0,,3515.0,,22044.0,,0.0,,0.0,,0.0,,694198.0,,1678328.0,,1498956.0,,179372.0,,,,15073.0,,1707.0,,1897.0,,209.0,,2417.0,,,,,,, +MA,Massachusetts,201804,Y,P,N,18247.0,,3013.0,,21260.0,,0.0,,0.0,,0.0,,694933.0,,1681456.0,,1500128.0,,181328.0,,,,15008.0,,2754.0,,1004.0,,222.0,,1299.0,,,,,,, +MA,Massachusetts,201804,Y,U,Y,19101.0,,3402.0,,22503.0,,0.0,,0.0,,0.0,,694933.0,,1681456.0,,1500128.0,,181328.0,,,,16070.0,,2836.0,,1026.0,,230.0,,1382.0,,,,,,, +MA,Massachusetts,201805,Y,P,N,18964.0,,2474.0,,21438.0,,0.0,,0.0,,0.0,,690440.0,,1660494.0,,1480239.0,,180255.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,201805,Y,U,Y,20166.0,,3142.0,,23308.0,,0.0,,0.0,,0.0,,690440.0,,1660494.0,,1480239.0,,180255.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,201806,Y,P,N,18313.0,,3283.0,,21596.0,,0.0,,0.0,,0.0,,687723.0,,1650364.0,,1468683.0,,181681.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,201806,Y,U,Y,19020.0,,3340.0,,22360.0,,0.0,,0.0,,0.0,,687723.0,,1650364.0,,1468683.0,,181681.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,201807,Y,P,N,16732.0,,2017.0,,18749.0,,0.0,,0.0,,0.0,,682965.0,,1627391.0,,1445832.0,,181559.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,201807,Y,U,Y,18185.0,,3124.0,,21309.0,,0.0,,0.0,,0.0,,682965.0,,1627391.0,,1445832.0,,181559.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,201808,Y,P,N,18782.0,,2230.0,,21012.0,,0.0,,0.0,,0.0,,684195.0,,1622812.0,,1440525.0,,182287.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,201808,Y,U,Y,20668.0,,3469.0,,24137.0,,0.0,,0.0,,0.0,,684195.0,,1622812.0,,1440525.0,,182287.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,201809,Y,P,N,15455.0,,1559.0,,17014.0,,0.0,,0.0,,0.0,,685450.0,,1622460.0,,1437443.0,,185017.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,201809,Y,U,Y,17094.0,,2811.0,,19905.0,,0.0,,0.0,,0.0,,685450.0,,1622460.0,,1437443.0,,185017.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,201810,Y,P,N,17740.0,,1800.0,,19540.0,,0.0,,0.0,,0.0,,688241.0,,1627353.0,,1437220.0,,190133.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,201810,Y,U,Y,18862.0,,2420.0,,21282.0,,0.0,,0.0,,0.0,,688241.0,,1627353.0,,1437220.0,,190133.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,201811,Y,P,N,15526.0,,2387.0,,17913.0,,0.0,,0.0,,0.0,,687802.0,,1616486.0,,1424337.0,,192149.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,201811,Y,U,Y,17289.0,,4299.0,,21588.0,,0.0,,0.0,,0.0,,687802.0,,1616486.0,,1424337.0,,192149.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,201812,Y,P,N,16031.0,,4023.0,,20054.0,,0.0,,0.0,,0.0,,687314.0,,1615849.0,,1422656.0,,193193.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,201812,Y,U,Y,16180.0,,4462.0,,20642.0,,0.0,,0.0,,0.0,,687314.0,,1615849.0,,1422656.0,,193193.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,201901,Y,P,N,19372.0,,3549.0,,22921.0,,0.0,,0.0,,0.0,,668818.0,,1581392.0,,1397936.0,,183456.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,201901,Y,U,Y,19608.0,,4567.0,,24175.0,,0.0,,0.0,,0.0,,668818.0,,1581392.0,,1397936.0,,183456.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,201902,Y,P,N,15135.0,,1262.0,,16397.0,,0.0,,0.0,,0.0,,671077.0,,1583143.0,,1395527.0,,187616.0,,,,9423.0,,873.0,,757.0,,368.0,,1363.0,,,,,,, +MA,Massachusetts,201902,Y,U,Y,16552.0,,1980.0,,18532.0,,0.0,,0.0,,0.0,,671077.0,,1583143.0,,1395527.0,,187616.0,,,,12630.0,,1182.0,,905.0,,532.0,,1835.0,,,,,,, +MA,Massachusetts,201903,Y,P,N,16811.0,,1098.0,,17909.0,,0.0,,0.0,,0.0,,673068.0,,1587397.0,,1400211.0,,187186.0,,,,10747.0,,1131.0,,573.0,,571.0,,2598.0,,,,,,, +MA,Massachusetts,201903,Y,U,Y,18530.0,,2080.0,,20610.0,,0.0,,0.0,,0.0,,673068.0,,1587397.0,,1400211.0,,187186.0,,,,14674.0,,1473.0,,1278.0,,840.0,,3090.0,,,,,,, +MA,Massachusetts,201904,Y,P,N,16782.0,,1516.0,,18298.0,,0.0,,0.0,,0.0,,675745.0,,1593290.0,,1405302.0,,187988.0,,,,12290.0,,2053.0,,731.0,,157.0,,1292.0,,,,,,, +MA,Massachusetts,201904,Y,U,Y,17626.0,,1980.0,,19606.0,,0.0,,0.0,,0.0,,675745.0,,1593290.0,,1405302.0,,187988.0,,,,14241.0,,2343.0,,778.0,,178.0,,1480.0,,,,,,, +MA,Massachusetts,201905,Y,P,N,16545.0,,1186.0,,17731.0,,14830.0,,875.0,,15705.0,,675758.0,,1597005.0,,1410470.0,,186535.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,201905,Y,U,Y,17991.0,,1911.0,,19902.0,,14830.0,,875.0,,15705.0,,675758.0,,1597005.0,,1410470.0,,186535.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,201906,Y,P,N,15521.0,,1336.0,,16857.0,,14561.0,,894.0,,15455.0,,675927.0,,1598924.0,,1412463.0,,186461.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,201906,Y,U,Y,17338.0,,1976.0,,19314.0,,14561.0,,894.0,,15455.0,,675927.0,,1598924.0,,1412463.0,,186461.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,201907,Y,P,N,17051.0,,1747.0,,18798.0,,16281.0,,1022.0,,17303.0,,673625.0,,1591370.0,,1406020.0,,185350.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,201907,Y,U,Y,18118.0,,2538.0,,20656.0,,16281.0,,1022.0,,17303.0,,673625.0,,1591370.0,,1406020.0,,185350.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,201908,Y,P,N,16570.0,,1769.0,,18339.0,,16471.0,,1188.0,,17659.0,,672204.0,,1581338.0,,1396671.0,,184667.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,201908,Y,U,Y,18270.0,,2922.0,,21192.0,,16471.0,,1188.0,,17659.0,,672204.0,,1581338.0,,1396671.0,,184667.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,201909,Y,P,N,16139.0,,2021.0,,18160.0,,13787.0,,1033.0,,14820.0,,678723.0,,1593385.0,,1404984.0,,188401.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,201909,Y,U,Y,16444.0,,2363.0,,18807.0,,13787.0,,1033.0,,14820.0,,678723.0,,1593385.0,,1404984.0,,188401.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,201910,Y,P,N,17232.0,,1532.0,,18764.0,,13741.0,,972.0,,14713.0,,682641.0,,1593664.0,,1402166.0,,191498.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,201910,Y,U,Y,18205.0,,2251.0,,20456.0,,13741.0,,972.0,,14713.0,,682641.0,,1593664.0,,1402166.0,,191498.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,201911,Y,P,N,15151.0,,2519.0,,17670.0,,11620.0,,878.0,,12498.0,,683066.0,,1590859.0,,1397539.0,,193320.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,201911,Y,U,Y,15847.0,,2638.0,,18485.0,,11620.0,,878.0,,12498.0,,683066.0,,1590859.0,,1397539.0,,193320.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,201912,Y,P,N,14649.0,,2575.0,,17224.0,,10961.0,,697.0,,11658.0,,681695.0,,1585919.0,,1392255.0,,193664.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,201912,Y,U,Y,15256.0,,3102.0,,18358.0,,10961.0,,697.0,,11658.0,,681695.0,,1585919.0,,1392255.0,,193664.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,202001,Y,P,N,19108.0,,3040.0,,22148.0,,13408.0,,1034.0,,14442.0,,667777.0,,1570832.0,,1385080.0,,185752.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,202001,Y,U,Y,19577.0,,3221.0,,22798.0,,13408.0,,1034.0,,14442.0,,667777.0,,1570832.0,,1385080.0,,185752.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,202002,Y,P,N,16080.0,,1490.0,,17570.0,,11950.0,,716.0,,12666.0,,669192.0,,1571761.0,,1383347.0,,188414.0,,,,10594.0,,1052.0,,665.0,,265.0,,1107.0,,,,,,, +MA,Massachusetts,202002,Y,U,Y,16397.0,,1589.0,,17986.0,,11950.0,,716.0,,12666.0,,669192.0,,1571761.0,,1383347.0,,188414.0,,,,10944.0,,1067.0,,671.0,,270.0,,1133.0,,,,,,, +MA,Massachusetts,202003,Y,P,N,12662.0,,4123.0,,16785.0,,11622.0,,759.0,,12381.0,,670935.0,,1584590.0,,1396617.0,,187973.0,,,,11898.0,,847.0,,1037.0,,398.0,,1297.0,,,,,,, +MA,Massachusetts,202003,Y,U,Y,12798.0,,3977.0,,16775.0,,11622.0,,759.0,,12381.0,,670935.0,,1584590.0,,1396617.0,,187973.0,,,,11603.0,,836.0,,1039.0,,395.0,,1292.0,,,,,,, +MA,Massachusetts,202004,Y,P,N,8171.0,,4288.0,,12459.0,,9546.0,,761.0,,10307.0,,676208.0,,1602898.0,,1414544.0,,188354.0,,,,9747.0,,427.0,,103.0,,32.0,,766.0,,,,,,, +MA,Massachusetts,202004,Y,U,Y,8344.0,,4774.0,,13118.0,,9546.0,,761.0,,10307.0,,676208.0,,1602898.0,,1414544.0,,188354.0,,,,10698.0,,435.0,,108.0,,32.0,,771.0,,,,,,, +MA,Massachusetts,202005,Y,P,N,7699.0,,3647.0,,11346.0,,7964.0,,686.0,,8650.0,,680665.0,,1617451.0,,1427596.0,,189855.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,202005,Y,U,Y,7790.0,,3951.0,,11741.0,,7964.0,,686.0,,8650.0,,680665.0,,1617451.0,,1427596.0,,189855.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,202006,Y,P,N,8093.0,,3330.0,,11423.0,,8423.0,,787.0,,9210.0,,684920.0,,1632191.0,,1441091.0,,191100.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,202006,Y,U,Y,8454.0,,4012.0,,12466.0,,8423.0,,787.0,,9210.0,,684920.0,,1632191.0,,1441091.0,,191100.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,202007,Y,P,N,8386.0,,3443.0,,11829.0,,9284.0,,721.0,,10005.0,,689082.0,,1647914.0,,1455646.0,,192268.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,202007,Y,U,Y,9115.0,,4572.0,,13687.0,,9284.0,,721.0,,10005.0,,689082.0,,1647914.0,,1455646.0,,192268.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,202008,Y,P,N,9104.0,,3209.0,,12313.0,,8433.0,,755.0,,9188.0,,693132.0,,1665288.0,,1471165.0,,194123.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,202008,Y,U,Y,9425.0,,3802.0,,13227.0,,8433.0,,755.0,,9188.0,,693132.0,,1665288.0,,1471165.0,,194123.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,202009,Y,P,N,9092.0,,3716.0,,12808.0,,9657.0,,850.0,,10507.0,,696552.0,,1684294.0,,1488539.0,,195755.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,202009,Y,U,Y,9668.0,,4704.0,,14372.0,,9657.0,,850.0,,10507.0,,696552.0,,1684294.0,,1488539.0,,195755.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,202010,Y,P,N,9854.0,,3489.0,,13343.0,,8861.0,,731.0,,9592.0,,699448.0,,1702326.0,,1502267.0,,200059.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,202010,Y,U,Y,9958.0,,3757.0,,13715.0,,8861.0,,731.0,,9592.0,,699448.0,,1702326.0,,1502267.0,,200059.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,202011,Y,P,N,9017.0,,3649.0,,12666.0,,7317.0,,610.0,,7927.0,,701840.0,,1717653.0,,1517241.0,,200412.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,202011,Y,U,Y,9365.0,,4279.0,,13644.0,,7317.0,,610.0,,7927.0,,701840.0,,1717653.0,,1517241.0,,200412.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,202012,Y,P,N,9493.0,,4527.0,,14020.0,,7647.0,,677.0,,8324.0,,703430.0,,1730716.0,,1530047.0,,200669.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,202012,Y,U,Y,9592.0,,4795.0,,14387.0,,7647.0,,677.0,,8324.0,,703430.0,,1730716.0,,1530047.0,,200669.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,202101,Y,P,N,9256.0,,4341.0,,13597.0,,7313.0,,690.0,,8003.0,,704617.0,,1741493.0,,1541157.0,,200336.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,202101,Y,U,Y,9388.0,,4642.0,,14030.0,,7313.0,,690.0,,8003.0,,704617.0,,1741493.0,,1541157.0,,200336.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,202102,Y,P,N,8460.0,,2965.0,,11425.0,,7438.0,,556.0,,7994.0,,705031.0,,1749848.0,,1549169.0,,200679.0,,,,8174.0,,654.0,,117.0,,8.0,,598.0,,,,,,, +MA,Massachusetts,202102,Y,U,Y,8496.0,,3085.0,,11581.0,,7438.0,,556.0,,7994.0,,705031.0,,1749848.0,,1549169.0,,200679.0,,,,8401.0,,667.0,,122.0,,8.0,,607.0,,,,,,, +MA,Massachusetts,202103,Y,P,N,10500.0,,3469.0,,13969.0,,9510.0,,653.0,,10163.0,,706674.0,,1760025.0,,1559609.0,,200416.0,,,,10344.0,,723.0,,122.0,,6.0,,824.0,,,,,,, +MA,Massachusetts,202103,Y,U,Y,10581.0,,3641.0,,14222.0,,9510.0,,653.0,,10163.0,,706674.0,,1760025.0,,1559609.0,,200416.0,,,,10689.0,,740.0,,123.0,,6.0,,829.0,,,,,,, +MA,Massachusetts,202104,Y,P,N,10131.0,,2927.0,,13058.0,,9505.0,,621.0,,10126.0,,708683.0,,1769618.0,,1568215.0,,201403.0,,,,9998.0,,749.0,,117.0,,18.0,,763.0,,,,,,, +MA,Massachusetts,202104,Y,U,Y,10241.0,,3098.0,,13339.0,,9505.0,,621.0,,10126.0,,708683.0,,1769618.0,,1568215.0,,201403.0,,,,10381.0,,754.0,,118.0,,21.0,,776.0,,,,,,, +MA,Massachusetts,202105,Y,P,N,9592.0,,2664.0,,12256.0,,9525.0,,637.0,,10162.0,,709047.0,,1773779.0,,1573306.0,,200473.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,202105,Y,U,Y,9669.0,,2930.0,,12599.0,,9525.0,,637.0,,10162.0,,709047.0,,1773779.0,,1573306.0,,200473.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,202106,Y,P,N,11376.0,,2576.0,,13952.0,,10128.0,,630.0,,10758.0,,713641.0,,1789843.0,,1587932.0,,201911.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,202106,Y,U,Y,11990.0,,3272.0,,15262.0,,10128.0,,630.0,,10758.0,,713641.0,,1789843.0,,1587932.0,,201911.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,202107,Y,P,N,12017.0,,3765.0,,15782.0,,12318.0,,809.0,,13127.0,,716544.0,,1797825.0,,1594906.0,,202919.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,202107,Y,U,Y,11960.0,,3875.0,,15835.0,,12318.0,,809.0,,13127.0,,716544.0,,1797825.0,,1594906.0,,202919.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,202108,Y,P,N,12643.0,,3014.0,,15657.0,,14596.0,,772.0,,15368.0,,721854.0,,1810614.0,,1609713.0,,200901.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,202108,Y,U,Y,12643.0,,3014.0,,15657.0,,14596.0,,772.0,,15368.0,,721854.0,,1810614.0,,1609713.0,,200901.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,202109,Y,P,N,13400.0,,3150.0,,16550.0,,17157.0,,963.0,,18120.0,,724687.0,,1822473.0,,1622628.0,,199845.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,202109,Y,U,Y,13499.0,,3289.0,,16788.0,,17157.0,,963.0,,18120.0,,724687.0,,1822473.0,,1622628.0,,199845.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,202110,Y,P,N,11825.0,,2305.0,,14130.0,,13011.0,,738.0,,13749.0,,726530.0,,1833625.0,,1639353.0,,194272.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,202110,Y,U,Y,12037.0,,2543.0,,14580.0,,13011.0,,738.0,,13749.0,,726530.0,,1833625.0,,1639353.0,,194272.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,202111,Y,P,N,12010.0,,3181.0,,15191.0,,12363.0,,711.0,,13074.0,,726615.0,,1845572.0,,1653562.0,,192010.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,202111,Y,U,Y,12278.0,,3595.0,,15873.0,,12363.0,,711.0,,13074.0,,726615.0,,1845572.0,,1653562.0,,192010.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,202112,Y,P,N,12406.0,,3890.0,,16296.0,,13690.0,,764.0,,14454.0,,729198.0,,1853472.0,,1662727.0,,190745.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,202112,Y,U,Y,12641.0,,4119.0,,16760.0,,13690.0,,764.0,,14454.0,,729198.0,,1853472.0,,1662727.0,,190745.0,,,,,,,,,,,,,,,,,,, +MA,Massachusetts,202201,Y,P,N,11448.0,,4084.0,,15532.0,,13600.0,,766.0,,14366.0,,733574.0,,1862297.0,,1672953.0,,189344.0,,,,13069.0,,390.0,,692.0,,546.0,,1079.0,,,,,,, +MA,Massachusetts,202201,Y,U,Y,11843.0,,4548.0,,16391.0,,13600.0,,766.0,,14366.0,,732488.0,,1868127.0,,1678278.0,,189849.0,,,,14312.0,,424.0,,747.0,,578.0,,1171.0,,,,,,, +MA,Massachusetts,202202,Y,P,N,10787.0,,2390.0,,13177.0,,11239.0,,593.0,,11832.0,,734373.0,,1868990.0,,1680347.0,,188643.0,,,,9885.0,,391.0,,797.0,,115.0,,795.0,,,,,,, +MA,Massachusetts,202202,Y,U,Y,11182.0,,2857.0,,14039.0,,11239.0,,593.0,,11832.0,,736430.0,,1875802.0,,1687685.0,,188117.0,,,,11079.0,,403.0,,854.0,,125.0,,877.0,,,,,,, +MA,Massachusetts,202203,Y,P,N,13065.0,,3086.0,,16151.0,,13228.0,,852.0,,14080.0,,736430.0,,1875802.0,,1687685.0,,188117.0,,,,12220.0,,922.0,,709.0,,52.0,,986.0,,,,,,, +MA,Massachusetts,202203,Y,U,Y,13538.0,,3241.0,,16779.0,,13228.0,,852.0,,14080.0,,736501.0,,1884256.0,,1695154.0,,189102.0,,,,12597.0,,933.0,,723.0,,54.0,,999.0,,,,,,, +MA,Massachusetts,202204,Y,P,N,11644.0,,2651.0,,14295.0,,11610.0,,699.0,,12309.0,,737942.0,,1885080.0,,1696969.0,,188111.0,,,,10929.0,,945.0,,303.0,,22.0,,841.0,,,,,,, +MA,Massachusetts,202204,Y,U,Y,9730.0,,6125.0,,15855.0,,11610.0,,699.0,,12309.0,,738225.0,,1892520.0,,1703234.0,,189286.0,,,,11515.0,,840.0,,266.0,,15.0,,19.0,,,,,,, +MA,Massachusetts,202205,Y,P,N,9729.0,,5758.0,,15487.0,,11227.0,,593.0,,11820.0,,740786.0,,1894844.0,,1705946.0,,188898.0,,,,10898.0,,750.0,,198.0,,11.0,,11.0,,,,,,, +MA,Massachusetts,202205,Y,U,Y,9929.0,,6163.0,,16092.0,,11227.0,,593.0,,11820.0,,740065.0,,1904927.0,,1715277.0,,189650.0,,,,11604.0,,787.0,,202.0,,11.0,,10.0,,,,,,, +MA,Massachusetts,202206,Y,P,N,10354.0,,5678.0,,16032.0,,11446.0,,599.0,,12045.0,,741914.0,,1906436.0,,1716930.0,,189506.0,,,,10874.0,,845.0,,204.0,,16.0,,13.0,,,,,,, +MA,Massachusetts,202206,Y,U,Y,11084.0,,7032.0,,18116.0,,11446.0,,599.0,,12045.0,,741500.0,,1912980.0,,1722870.0,,190110.0,,,,13539.0,,1083.0,,275.0,,16.0,,13.0,,,,,,, +MA,Massachusetts,202207,Y,P,N,10128.0,,7191.0,,17319.0,,13619.0,,429.0,,14048.0,,743234.0,,1914226.0,,1724698.0,,189528.0,,,,13392.0,,1078.0,,282.0,,13.0,,15.0,,,,,,, +MA,Massachusetts,202207,Y,U,Y,10191.0,,7272.0,,17463.0,,13619.0,,429.0,,14048.0,,744140.0,,1923683.0,,1732890.0,,190793.0,,,,13442.0,,1076.0,,282.0,,13.0,,15.0,,,,,,, +MA,Massachusetts,202208,Y,P,N,11704.0,,8565.0,,20269.0,,16764.0,,487.0,,17251.0,,746682.0,,1925942.0,,1734598.0,,191344.0,,,,16426.0,,897.0,,733.0,,30.0,,14.0,,,,,,, +MA,Massachusetts,202208,Y,U,Y,11867.0,,8565.0,,20432.0,,16764.0,,487.0,,17251.0,,746383.0,,1933081.0,,1740636.0,,192445.0,,,,16415.0,,897.0,,732.0,,30.0,,14.0,,,,,,, +MA,Massachusetts,202209,Y,P,N,10824.0,,7511.0,,18335.0,,14058.0,,858.0,,14916.0,,748269.0,,1934907.0,,1740903.0,,194004.0,,,,14186.0,,532.0,,925.0,,131.0,,13.0,,,,,,, +MA,Massachusetts,202209,Y,U,Y,11000.0,,7511.0,,18511.0,,14058.0,,858.0,,14916.0,,748858.0,,1946317.0,,1750015.0,,196302.0,,,,14162.0,,530.0,,924.0,,131.0,,13.0,,,,,,, +MA,Massachusetts,202210,Y,P,N,10422.0,,6500.0,,16922.0,,13000.0,,762.0,,13762.0,,751987.0,,1952248.0,,1750502.0,,201746.0,,,,12254.0,,711.0,,973.0,,175.0,,104.0,,,,,,, +MA,Massachusetts,202210,Y,U,Y,10639.0,,6873.0,,17512.0,,13000.0,,762.0,,13762.0,,751530.0,,1958878.0,,1755899.0,,202979.0,,,,12939.0,,732.0,,1011.0,,177.0,,104.0,,,,,,, +MA,Massachusetts,202211,Y,P,N,10675.0,,7659.0,,18334.0,,12644.0,,808.0,,13452.0,,752921.0,,1959210.0,,1756147.0,,203063.0,,,,13064.0,,488.0,,726.0,,73.0,,41.0,,,,,,, +MA,Massachusetts,202211,Y,U,Y,10901.0,,7659.0,,18560.0,,12644.0,,808.0,,13452.0,,752882.0,,1967217.0,,1762636.0,,204581.0,,,,13028.0,,487.0,,719.0,,73.0,,41.0,,,,,,, +MA,Massachusetts,202212,Y,P,N,10194.0,,7399.0,,17593.0,,12130.0,,709.0,,12839.0,,754036.0,,1968385.0,,1764451.0,,203934.0,,,,12369.0,,918.0,,645.0,,45.0,,28.0,,,,,,, +MA,Massachusetts,202212,Y,U,Y,10343.0,,7400.0,,17743.0,,12130.0,,709.0,,12839.0,,754340.0,,1977039.0,,1771886.0,,205153.0,,,,12345.0,,915.0,,645.0,,45.0,,28.0,,,,,,, +MA,Massachusetts,202301,Y,P,N,10843.0,,8330.0,,19173.0,,13249.0,,801.0,,14050.0,,756620.0,,1981654.0,,1776011.0,,205643.0,,,,13113.0,,1256.0,,225.0,,53.0,,75.0,,,,,,, +MA,Massachusetts,202301,Y,U,Y,11181.0,,9109.0,,20290.0,,13249.0,,801.0,,14050.0,,756509.0,,1989301.0,,1782290.0,,207011.0,,,,14295.0,,1399.0,,240.0,,55.0,,77.0,,,,,,, +MA,Massachusetts,202302,Y,P,N,9584.0,,5854.0,,15438.0,,11068.0,,609.0,,11677.0,,757340.0,,1988281.0,,1781904.0,,206377.0,,,,10232.0,,1395.0,,257.0,,60.0,,25.0,,,,,,, +MA,Massachusetts,202302,Y,U,Y,10200.0,,6651.0,,16851.0,,11068.0,,609.0,,11677.0,,763245.0,,2012747.0,,1801889.0,,210858.0,,,,11475.0,,1496.0,,271.0,,67.0,,27.0,,,,,,, +MA,Massachusetts,202303,Y,P,N,12578.0,,8055.0,,20633.0,,14871.0,,783.0,,15654.0,,764835.0,,2013684.0,,1803264.0,,210420.0,,,,14063.0,,1792.0,,229.0,,36.0,,18.0,,304394.0,Does not include all calls received after business hours; Includes calls for other benefit programs,11.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.164,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MA,Massachusetts,202303,Y,U,Y,12735.0,,8055.0,,20790.0,,14871.0,,783.0,,15654.0,,765121.0,,2023603.0,,1812393.0,,211210.0,,,,14040.0,,1785.0,,229.0,,35.0,,18.0,,304394.0,Does not include all calls received after business hours; Includes calls for other benefit programs,11.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.164,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MA,Massachusetts,202304,Y,P,N,10658.0,,7099.0,,17757.0,,12708.0,,702.0,,13410.0,,767122.0,,2022904.0,,1813981.0,,208923.0,,,,12172.0,,1532.0,,157.0,,23.0,,27.0,,199906.0,Does not include all calls received after business hours; Includes calls for other benefit programs,4.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.061,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MA,Massachusetts,202304,Y,U,Y,10982.0,,7164.0,,18146.0,,12708.0,,702.0,,13410.0,,766934.0,,2030271.0,,1820269.0,,210002.0,,,,12208.0,,1532.0,,155.0,,23.0,,27.0,,199906.0,Does not include all calls received after business hours; Includes calls for other benefit programs,4.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.061,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MA,Massachusetts,202305,Y,P,N,12766.0,,8742.0,,21508.0,,15341.0,,845.0,,16186.0,,770068.0,,2030484.0,,1820904.0,,209580.0,,,,14948.0,,1793.0,,234.0,,23.0,,26.0,,212424.0,Does not include all calls received after business hours; Includes calls for other benefit programs,2.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.023,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MA,Massachusetts,202305,Y,U,Y,12921.0,,8742.0,,21663.0,,15341.0,,845.0,,16186.0,,768838.0,,2034643.0,,1824491.0,,210152.0,,,,14936.0,,1792.0,,234.0,,23.0,,26.0,,212424.0,Does not include all calls received after business hours; Includes calls for other benefit programs,2.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.023,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MA,Massachusetts,202306,Y,P,N,14209.0,,9253.0,,23462.0,,16519.0,,940.0,,17459.0,,769239.0,,2021746.0,,1812659.0,,209087.0,,,,15365.0,,2216.0,,226.0,,17.0,,17.0,,220512.0,Does not include all calls received after business hours; Includes calls for other benefit programs,2.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.032,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MA,Massachusetts,202306,Y,U,Y,14209.0,,9253.0,,23462.0,,16519.0,,940.0,,17459.0,,769251.0,,2027283.0,,1817447.0,,209836.0,,,,15365.0,,2216.0,,226.0,,17.0,,17.0,,220512.0,Does not include all calls received after business hours; Includes calls for other benefit programs,2.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.032,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MA,Massachusetts,202307,Y,P,N,12419.0,,9366.0,,21785.0,,16796.0,,919.0,,17715.0,,769437.0,,1998111.0,,1789964.0,,208147.0,,,,16037.0,,2181.0,,227.0,,26.0,,23.0,,221811.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.018,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MA,Massachusetts,202307,Y,U,Y,12419.0,,9366.0,,21785.0,,16796.0,,919.0,,17715.0,,778198.0,,2017535.0,,1807675.0,,209860.0,,,,16037.0,,2181.0,,227.0,,26.0,,23.0,,221811.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.018,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MA,Massachusetts,202308,Y,P,N,15767.0,,11282.0,,27049.0,,21250.0,,1117.0,,22367.0,,773988.0,,1952795.0,,1745647.0,,207148.0,,,,19671.0,,2468.0,,243.0,,26.0,,37.0,,270446.0,Does not include all calls received after business hours; Includes calls for other benefit programs,2.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.02,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MA,Massachusetts,202308,Y,U,Y,15767.0,,11282.0,,27049.0,,21250.0,,1117.0,,22367.0,,775988.0,,1954795.0,,1745647.0,,209148.0,,,,19697.0,,2472.0,,244.0,,26.0,,37.0,,270446.0,Does not include all calls received after business hours; Includes calls for other benefit programs,2.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.02,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MA,Massachusetts,202309,Y,P,N,15003.0,,9474.0,,24477.0,,18416.0,,988.0,,19404.0,,776227.0,,1951721.0,,1738781.0,,212940.0,,,,16777.0,,2535.0,,257.0,,15.0,,29.0,,251372.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.015,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MA,Massachusetts,202309,Y,U,Y,15003.0,,9474.0,,24477.0,,18416.0,,988.0,,19404.0,,777355.0,,1957278.0,,1743931.0,,213347.0,,,,16777.0,,2535.0,,257.0,,15.0,,29.0,,251372.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.015,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MA,Massachusetts,202310,Y,P,N,15510.0,,9213.0,,24723.0,,18248.0,,1130.0,,19378.0,,766935.0,,1912094.0,,1702104.0,,209990.0,,,,16919.0,,2509.0,,440.0,,43.0,,27.0,,290727.0,Does not include all calls received after business hours; Includes calls for other benefit programs,3.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.035,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MA,Massachusetts,202310,Y,U,Y,15510.0,,9213.0,,24723.0,,18248.0,,1130.0,,19378.0,,769438.0,,1927634.0,,1714843.0,,212791.0,,,,16919.0,,2509.0,,440.0,,43.0,,27.0,,290727.0,Does not include all calls received after business hours; Includes calls for other benefit programs,3.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.035,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MA,Massachusetts,202311,Y,P,N,16590.0,,10594.0,,27184.0,,18142.0,,1252.0,,19394.0,,751487.0,,1855999.0,,1648331.0,,207668.0,,,,18145.0,,2747.0,,561.0,,56.0,,42.0,,280081.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.017,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MA,Massachusetts,202311,Y,U,Y,16590.0,,10594.0,,27184.0,,18142.0,,1252.0,,19394.0,,755981.0,,1874208.0,,1663268.0,,210940.0,,,,18145.0,,2747.0,,561.0,,56.0,,42.0,,280081.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.017,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MA,Massachusetts,202312,Y,P,N,16462.0,,10661.0,,27123.0,,19432.0,,1365.0,,20797.0,,746329.0,,1837211.0,,1630885.0,,206326.0,,,,19388.0,,3233.0,,746.0,,58.0,,51.0,,281507.0,Does not include all calls received after business hours; Includes calls for other benefit programs,2.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.026,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MA,Massachusetts,202312,Y,U,Y,16462.0,,10661.0,,27123.0,,19432.0,,1365.0,,20797.0,,743305.0,,1840594.0,,1631110.0,,209484.0,,,,19388.0,,3233.0,,746.0,,58.0,,51.0,,281507.0,Does not include all calls received after business hours; Includes calls for other benefit programs,2.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.026,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MA,Massachusetts,202401,Y,P,N,19892.0,,12406.0,,32298.0,,22507.0,,1612.0,,24119.0,,710700.0,,1772319.0,,1583961.0,,188358.0,,,,22927.0,,3183.0,,1009.0,,101.0,,113.0,,348054.0,Does not include all calls received after business hours; Includes calls for other benefit programs,3.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.043,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MA,Massachusetts,202401,Y,U,Y,19892.0,,12406.0,,32298.0,,22507.0,,1612.0,,24119.0,,716925.0,,1792839.0,,1600604.0,,192235.0,,,,22927.0,,3183.0,,1009.0,,101.0,,113.0,,348054.0,Does not include all calls received after business hours; Includes calls for other benefit programs,3.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.043,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MA,Massachusetts,202402,Y,P,N,16612.0,,8990.0,,25602.0,,19020.0,,1156.0,,20176.0,,700564.0,,1717022.0,,1530738.0,,186284.0,,,,18610.0,,2800.0,,538.0,,54.0,,67.0,,317105.0,Does not include all calls received after business hours; Includes calls for other benefit programs,3.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.05,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MA,Massachusetts,202402,Y,U,Y,16612.0,,8990.0,,25602.0,,19020.0,,1156.0,,20176.0,,707430.0,,1741139.0,,1551590.0,,189549.0,,,,18610.0,,2800.0,,538.0,,54.0,,67.0,,317105.0,Does not include all calls received after business hours; Includes calls for other benefit programs,3.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.05,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MA,Massachusetts,202403,Y,P,N,18316.0,,9712.0,,28028.0,,19667.0,,1152.0,,20819.0,,700771.0,,1694911.0,,1507973.0,,186938.0,,,,19397.0,,2184.0,,908.0,,28.0,,71.0,,332452.0,Does not include all calls received after business hours; Includes calls for other benefit programs,4.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.056,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MA,Massachusetts,202403,Y,U,Y,18316.0,,9712.0,,28028.0,,19667.0,,1152.0,,20819.0,,706622.0,,1714671.0,,1525104.0,,189567.0,,,,19397.0,,2184.0,,908.0,,28.0,,71.0,,332452.0,Does not include all calls received after business hours; Includes calls for other benefit programs,4.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.056,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MA,Massachusetts,202404,Y,P,N,16019.0,,8326.0,,24345.0,,17452.0,,505.0,,17957.0,,706233.0,,1694438.0,,1506158.0,,188280.0,,,,15606.0,,1811.0,,582.0,,42.0,,38.0,,307627.0,Does not include all calls received after business hours; Includes calls for other benefit programs,3.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.046,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MA,Massachusetts,202404,Y,U,Y,16019.0,,8326.0,,24345.0,,17452.0,,505.0,,17957.0,,709282.0,,1710184.0,,1520510.0,,189674.0,,,,15606.0,,1811.0,,582.0,,42.0,,38.0,,307627.0,Does not include all calls received after business hours; Includes calls for other benefit programs,3.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.046,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MA,Massachusetts,202405,Y,P,N,15446.0,,9339.0,,24785.0,,18796.0,,972.0,,19768.0,,706054.0,,1685071.0,,1498196.0,,186875.0,,,,17182.0,,2477.0,,502.0,,45.0,,36.0,,258282.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.014,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MA,Massachusetts,202405,Y,U,Y,16202.0,,9337.0,,25539.0,,18796.0,,972.0,,19768.0,,708786.0,,1699251.0,,1510530.0,,188721.0,,,,17150.0,,2471.0,,501.0,,45.0,,36.0,,258282.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.014,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MA,Massachusetts,202406,Y,P,N,14355.0,,8885.0,,23240.0,,16369.0,,996.0,,17365.0,,695266.0,,1663316.0,,1476442.0,,186874.0,,,,16108.0,,801.0,,769.0,,31.0,,31.0,,212258.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.011,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MA,Massachusetts,202406,Y,U,Y,14355.0,,8885.0,,23240.0,,16463.0,,955.0,,17418.0,,697867.0,,1678171.0,,1489376.0,,188795.0,,,,16108.0,,801.0,,769.0,,31.0,,31.0,,212258.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.011,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MA,Massachusetts,202407,Y,P,N,16451.0,,10305.0,,26756.0,,21488.0,,1173.0,,22661.0,,706323.0,,1686910.0,,1496503.0,,190407.0,,980587.0,,19070.0,,1569.0,,1833.0,,82.0,,51.0,,259990.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.011,Does not include all calls received after business hours; Includes calls for other benefit programs +MA,Massachusetts,202407,Y,U,Y,16451.0,,10305.0,,26756.0,,21488.0,,1173.0,,22661.0,,707101.0,,1690301.0,,1499826.0,,190475.0,,983200.0,,19070.0,,1569.0,,1833.0,,82.0,,51.0,,259990.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.011,Does not include all calls received after business hours; Includes calls for other benefit programs +MA,Massachusetts,202408,Y,P,N,15127.0,,10516.0,,25643.0,,20126.0,,1167.0,,21293.0,,704453.0,,1662492.0,,1471711.0,,190781.0,,958039.0,,18580.0,,1926.0,,329.0,,44.0,,46.0,,254224.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.008,Does not include all calls received after business hours; Includes calls for other benefit programs +MA,Massachusetts,202408,Y,U,Y,15127.0,,10516.0,,25643.0,,20126.0,,1167.0,,21293.0,,709268.0,,1678964.0,,1486427.0,,192537.0,,969696.0,,18580.0,,1926.0,,329.0,,44.0,,46.0,,254224.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.008,Does not include all calls received after business hours; Includes calls for other benefit programs +MA,Massachusetts,202409,Y,P,N,13120.0,,8831.0,,21951.0,,15785.0,,986.0,,16771.0,,708992.0,,1652621.0,,1459592.0,,193029.0,,943629.0,,15243.0,,1519.0,,291.0,,16.0,,17.0,,235073.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.013,Does not include all calls received after business hours; Includes calls for other benefit programs +MA,Massachusetts,202409,Y,U,Y,13120.0,,8831.0,,21951.0,,15785.0,,986.0,,16771.0,,713296.0,,1675304.0,,1479058.0,,196246.0,,962008.0,,15243.0,,1519.0,,291.0,,16.0,,17.0,,235073.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.013,Does not include all calls received after business hours; Includes calls for other benefit programs +MA,Massachusetts,202410,Y,P,N,13623.0,,9016.0,,22639.0,,15084.0,,1003.0,,16087.0,,712948.0,,1658082.0,,1460282.0,,197800.0,,945134.0,,15438.0,,1063.0,,220.0,,16.0,,19.0,,261460.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.01,Does not include all calls received after business hours; Includes calls for other benefit programs +MA,Massachusetts,202410,Y,U,Y,13623.0,,9016.0,,22639.0,,15084.0,,1003.0,,16087.0,,716455.0,,1675627.0,,1475014.0,,200613.0,,959172.0,,15438.0,,1063.0,,220.0,,16.0,,19.0,,261460.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.01,Does not include all calls received after business hours; Includes calls for other benefit programs +MA,Massachusetts,202411,Y,P,N,12032.0,,8873.0,,20905.0,,12789.0,,879.0,,13668.0,,711461.0,,1651962.0,,1455521.0,,196441.0,,940501.0,,13698.0,,853.0,,183.0,,23.0,,12.0,,216805.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.002,Does not include all calls received after business hours; Includes calls for other benefit programs +MA,Massachusetts,202411,Y,U,Y,12032.0,,8873.0,,20905.0,,12789.0,,879.0,,13668.0,,712857.0,,1665630.0,,1467749.0,,197881.0,,952773.0,,13698.0,,853.0,,183.0,,23.0,,12.0,,216805.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.002,Does not include all calls received after business hours; Includes calls for other benefit programs +MA,Massachusetts,202412,Y,P,N,12140.0,,8486.0,,20626.0,,13087.0,,789.0,,13876.0,,705212.0,,1647585.0,,1453344.0,,194241.0,,942373.0,,13028.0,,762.0,,164.0,,14.0,,20.0,,229096.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.005,Does not include all calls received after business hours; Includes calls for other benefit programs +MA,Massachusetts,202412,Y,U,Y,12140.0,,8486.0,,20626.0,,13087.0,,789.0,,13876.0,,711444.0,,1667221.0,,1469251.0,,197970.0,,955777.0,,13028.0,,762.0,,164.0,,14.0,,20.0,,229096.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.005,Does not include all calls received after business hours; Includes calls for other benefit programs +MA,Massachusetts,202501,Y,P,N,14641.0,,10972.0,,25613.0,,15932.0,,1069.0,,17001.0,,696276.0,,1628951.0,,1440358.0,,188593.0,,932675.0,,16553.0,,1022.0,,265.0,,21.0,,12.0,,295399.0,Does not include all calls received after business hours; Includes calls for other benefit programs,2.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.027,Does not include all calls received after business hours; Includes calls for other benefit programs +MA,Massachusetts,202501,Y,U,Y,14641.0,,10972.0,,25613.0,,15932.0,,1069.0,,17001.0,,700811.0,,1649572.0,,1458215.0,,191357.0,,948761.0,,16553.0,,1022.0,,265.0,,21.0,,12.0,,295399.0,Does not include all calls received after business hours; Includes calls for other benefit programs,2.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.027,Does not include all calls received after business hours; Includes calls for other benefit programs +MA,Massachusetts,202502,Y,P,N,12085.0,,7140.0,,19225.0,,11918.0,,836.0,,12754.0,,698759.0,,1639015.0,,1445420.0,,193595.0,,940256.0,,12037.0,,754.0,,142.0,,8.0,,13.0,,239104.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.011,Does not include all calls received after business hours; Includes calls for other benefit programs +MA,Massachusetts,202502,Y,U,Y,12085.0,,7140.0,,19225.0,,11918.0,,836.0,,12754.0,,699464.0,,1643390.0,,1449743.0,,193647.0,,943926.0,,12037.0,,754.0,,142.0,,8.0,,13.0,,239104.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.011,Does not include all calls received after business hours; Includes calls for other benefit programs +MA,Massachusetts,202503,Y,P,N,13062.0,,7728.0,,20790.0,,12288.0,,821.0,,13109.0,,695986.0,,1628063.0,,1437878.0,,190185.0,,932077.0,,12571.0,,710.0,,118.0,,8.0,,20.0,,259898.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.007,Does not include all calls received after business hours; Includes calls for other benefit programs +MA,Massachusetts,202503,Y,U,Y,13062.0,,7728.0,,20790.0,,12288.0,,821.0,,13109.0,,698659.0,,1638219.0,,1447002.0,,191217.0,,939560.0,,12571.0,,710.0,,118.0,,8.0,,20.0,,259898.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.007,Does not include all calls received after business hours; Includes calls for other benefit programs +MA,Massachusetts,202504,Y,P,N,13633.0,,7498.0,,21131.0,,11813.0,,806.0,,12619.0,,690954.0,,1616929.0,,1428427.0,,188502.0,,925975.0,,12060.0,,595.0,,126.0,,9.0,,15.0,,225627.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.004,Does not include all calls received after business hours; Includes calls for other benefit programs +MA,Massachusetts,202504,Y,U,Y,13633.0,,7498.0,,21131.0,,11813.0,,806.0,,12619.0,,694224.0,,1627008.0,,1437219.0,,189789.0,,932784.0,,12060.0,,595.0,,126.0,,9.0,,15.0,,225627.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.004,Does not include all calls received after business hours; Includes calls for other benefit programs +MA,Massachusetts,202505,Y,P,N,12875.0,,7274.0,,20149.0,,11219.0,,897.0,,12116.0,,687912.0,,1602272.0,,1415323.0,,186949.0,,914360.0,,11627.0,,595.0,,86.0,,5.0,,5.0,,216179.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.03,Does not include all calls received after business hours; Includes calls for other benefit programs +MA,Massachusetts,202505,Y,U,Y,12875.0,,7274.0,,20149.0,,11219.0,,897.0,,12116.0,,691835.0,,1618344.0,,1428803.0,,189541.0,,926509.0,,11627.0,,595.0,,86.0,,5.0,,5.0,,216179.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.03,Does not include all calls received after business hours; Includes calls for other benefit programs +MA,Massachusetts,202506,Y,P,N,12542.0,,7031.0,,19573.0,,10820.0,,775.0,,11595.0,,686070.0,,1596316.0,,1409935.0,,186381.0,,910246.0,,11225.0,,537.0,,149.0,,5.0,,18.0,,198978.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.05,Does not include all calls received after business hours; Includes calls for other benefit programs +MA,Massachusetts,202506,Y,U,Y,12542.0,,7031.0,,19573.0,,10820.0,,775.0,,11595.0,,689551.0,,1612336.0,,1423645.0,,188691.0,,922785.0,,11225.0,,537.0,,149.0,,5.0,,18.0,,198978.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.05,Does not include all calls received after business hours; Includes calls for other benefit programs +MA,Massachusetts,202507,Y,P,N,14307.0,,8541.0,,22848.0,,12670.0,,954.0,,13624.0,,684789.0,,1593923.0,,1408008.0,,185915.0,,909134.0,,13343.0,,805.0,,141.0,,14.0,,22.0,,230882.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.012,Does not include all calls received after business hours; Includes calls for other benefit programs +MA,Massachusetts,202507,Y,U,Y,14307.0,,8541.0,,22848.0,,12670.0,,954.0,,13624.0,,688821.0,,1608884.0,,1420646.0,,188238.0,,920063.0,,13343.0,,805.0,,141.0,,14.0,,22.0,,230882.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.012,Does not include all calls received after business hours; Includes calls for other benefit programs +MA,Massachusetts,202508,Y,P,N,13973.0,,8978.0,,22951.0,,12592.0,,954.0,,13546.0,,685118.0,,1591961.0,,1405878.0,,186083.0,,906843.0,,13372.0,,697.0,,145.0,,16.0,,9.0,,217814.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.015,Does not include all calls received after business hours; Includes calls for other benefit programs +MA,Massachusetts,202508,Y,U,Y,13973.0,,8978.0,,22951.0,,12592.0,,954.0,,13546.0,,686597.0,,1600469.0,,1413708.0,,186761.0,,913872.0,,13372.0,,697.0,,145.0,,16.0,,9.0,,217814.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.015,Does not include all calls received after business hours; Includes calls for other benefit programs +MA,Massachusetts,202509,Y,P,N,14876.0,,8209.0,,23085.0,,11724.0,,836.0,,12560.0,,689076.0,,1599046.0,,1411397.0,,187649.0,,909970.0,,13167.0,,513.0,,244.0,,17.0,,6.0,,243717.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.019,Does not include all calls received after business hours; Includes calls for other benefit programs +MA,Massachusetts,202509,Y,U,Y,14876.0,,8209.0,,23085.0,,11724.0,,836.0,,12560.0,,689076.0,,1599046.0,,1411397.0,,187649.0,,909970.0,,13167.0,,513.0,,244.0,,17.0,,6.0,,243717.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.019,Does not include all calls received after business hours; Includes calls for other benefit programs +MA,Massachusetts,202510,Y,P,N,14018.0,,5602.0,,19620.0,,9505.0,,644.0,,10149.0,,692117.0,,1595952.0,,1406479.0,,189473.0,,903835.0,,8877.0,,496.0,,76.0,,14.0,,7.0,,249083.0,Does not include all calls received after business hours; Includes calls for other benefit programs,2.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.027,Does not include all calls received after business hours; Includes calls for other benefit programs +MD,Maryland,201309,N,U,Y,,,,,,,,,,,,,,,856297.0,,,,,,,,,,,,,,,,,,,,,,, +MD,Maryland,201706,Y,P,N,7256.0,,83277.0,Includes Renewals and/or Redeterminations,90533.0,Includes Renewals and/or Redeterminations,24087.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",3427.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",27514.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",604560.0,,1295880.0,,1150131.0,,145749.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,201706,Y,U,Y,8203.0,,83277.0,Includes Renewals and/or Redeterminations,91480.0,Includes Renewals and/or Redeterminations,24087.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",3427.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",27514.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",609109.0,,1305591.0,,1159266.0,,146325.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,201707,Y,P,N,6711.0,,85553.0,Includes Renewals and/or Redeterminations,92264.0,Includes Renewals and/or Redeterminations,25473.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",3790.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",29263.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",600852.0,,1290980.0,,1146087.0,,144893.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,201707,Y,U,Y,7250.0,,85553.0,Includes Renewals and/or Redeterminations,92803.0,Includes Renewals and/or Redeterminations,25473.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",3790.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",29263.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",608867.0,,1306788.0,,1161097.0,,145691.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,201708,Y,P,N,7364.0,,88055.0,Includes Renewals and/or Redeterminations,95419.0,Includes Renewals and/or Redeterminations,28747.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",4297.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",33044.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",603449.0,,1296833.0,,1151348.0,,145485.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,201708,Y,U,Y,8363.0,,88055.0,Includes Renewals and/or Redeterminations,96418.0,Includes Renewals and/or Redeterminations,28747.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",4297.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",33044.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",610637.0,,1309986.0,,1163808.0,,146178.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,201709,Y,P,N,8050.0,,89368.0,Includes Renewals and/or Redeterminations,97418.0,Includes Renewals and/or Redeterminations,27055.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",3967.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",31022.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",603150.0,,1297582.0,,1152190.0,,145392.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,201709,Y,U,Y,8247.0,,89368.0,,97615.0,,27055.0,,3967.0,,31022.0,,609737.0,,1309803.0,,1163936.0,,145867.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,201710,Y,P,N,8079.0,,91896.0,,99975.0,,27309.0,,3999.0,,31308.0,,603592.0,,1297202.0,,1151618.0,,145584.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,201710,Y,U,Y,8953.0,,91896.0,,100849.0,,27309.0,,3999.0,,31308.0,,611740.0,,1312572.0,,1164686.0,,147886.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,201711,Y,P,N,7293.0,,123157.0,,130450.0,,29647.0,,5153.0,,34800.0,,604968.0,,1301765.0,,1155114.0,,146651.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,201711,Y,U,Y,7737.0,,123157.0,,130894.0,,29647.0,,5153.0,,34800.0,,612034.0,,1317089.0,,1169636.0,,147453.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,201712,Y,P,N,7948.0,,118654.0,,126602.0,,30775.0,,6018.0,,36793.0,,605759.0,,1305442.0,,1157699.0,,147743.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,201712,Y,U,Y,7346.0,,118654.0,,126000.0,,30775.0,,6018.0,,36793.0,,614353.0,,1323306.0,,1174217.0,,149089.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,201801,Y,P,N,8396.0,,96624.0,,105020.0,,27749.0,,4696.0,,32445.0,,609339.0,,1311600.0,,1163087.0,,148513.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,201801,Y,U,Y,7384.0,,96624.0,,104008.0,,27749.0,,4696.0,,32445.0,,616615.0,,1325225.0,,1175447.0,,149778.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,201802,Y,P,N,6676.0,,79909.0,,86585.0,,25746.0,,3674.0,,29420.0,,612022.0,,1315312.0,,1166220.0,,149092.0,,,,48028.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2647.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",443.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",115.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",11.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +MD,Maryland,201802,Y,U,Y,7622.0,,79909.0,,87531.0,,25746.0,,3674.0,,29420.0,,619325.0,,1330636.0,,1180761.0,,149875.0,,,,48028.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2647.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",443.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",115.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",11.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +MD,Maryland,201803,Y,P,N,7166.0,,85938.0,Includes Renewals and/or Redeterminations,93104.0,Includes Renewals and/or Redeterminations,26936.0,Includes Renewals and/or Redeterminations,3549.0,Includes Renewals and/or Redeterminations,30485.0,Includes Renewals and/or Redeterminations,615697.0,,1322677.0,,1172217.0,,150460.0,,,,59766.0,,2246.0,,333.0,,133.0,,4.0,,,,,,, +MD,Maryland,201803,Y,U,Y,7779.0,,85938.0,Includes Renewals and/or Redeterminations,93717.0,Includes Renewals and/or Redeterminations,26936.0,Includes Renewals and/or Redeterminations,3549.0,Includes Renewals and/or Redeterminations,30485.0,Includes Renewals and/or Redeterminations,620420.0,,1332308.0,,1181472.0,,150836.0,,,,59766.0,,2246.0,,333.0,,133.0,,4.0,,,,,,, +MD,Maryland,201804,Y,P,N,7431.0,,82661.0,Includes Renewals and/or Redeterminations,90092.0,Includes Renewals and/or Redeterminations,28252.0,Includes Renewals and/or Redeterminations,3660.0,Includes Renewals and/or Redeterminations,31912.0,Includes Renewals and/or Redeterminations,613047.0,,1316677.0,,1167349.0,,149328.0,,,,65623.0,,1966.0,,295.0,,109.0,,11.0,,,,,,, +MD,Maryland,201804,Y,U,Y,9434.0,,82661.0,Includes Renewals and/or Redeterminations,92095.0,Includes Renewals and/or Redeterminations,28252.0,Includes Renewals and/or Redeterminations,3660.0,Includes Renewals and/or Redeterminations,31912.0,Includes Renewals and/or Redeterminations,618806.0,,1328160.0,,1178127.0,,150033.0,,,,65623.0,,1966.0,,295.0,,109.0,,11.0,,,,,,, +MD,Maryland,201805,Y,P,N,8838.0,,87754.0,Includes Renewals and/or Redeterminations,96592.0,Includes Renewals and/or Redeterminations,29762.0,Includes Renewals and/or Redeterminations,3786.0,Includes Renewals and/or Redeterminations,33548.0,Includes Renewals and/or Redeterminations,611835.0,,1310668.0,,1160826.0,,149842.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,201805,Y,U,Y,9497.0,,87754.0,Includes Renewals and/or Redeterminations,97251.0,Includes Renewals and/or Redeterminations,29762.0,Includes Renewals and/or Redeterminations,3786.0,Includes Renewals and/or Redeterminations,33548.0,Includes Renewals and/or Redeterminations,618265.0,,1322717.0,,1172193.0,,150524.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,201806,Y,P,N,8978.0,,95234.0,Includes Renewals and/or Redeterminations,104212.0,Includes Renewals and/or Redeterminations,31487.0,Includes Renewals and/or Redeterminations,3348.0,Includes Renewals and/or Redeterminations,34835.0,Includes Renewals and/or Redeterminations,609797.0,,1302048.0,,1151866.0,,150182.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,201806,Y,U,Y,8512.0,,95234.0,Includes Renewals and/or Redeterminations,103746.0,Includes Renewals and/or Redeterminations,31487.0,Includes Renewals and/or Redeterminations,3348.0,Includes Renewals and/or Redeterminations,34835.0,Includes Renewals and/or Redeterminations,614764.0,,1312067.0,,1161507.0,,150560.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,201807,Y,P,N,8107.0,,99494.0,Includes Renewals and/or Redeterminations,107601.0,Includes Renewals and/or Redeterminations,31549.0,Includes Renewals and/or Redeterminations,3790.0,Includes Renewals and/or Redeterminations,35339.0,Includes Renewals and/or Redeterminations,607943.0,,1296128.0,,1144979.0,,151149.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,201807,Y,U,Y,8122.0,,99494.0,Includes Renewals and/or Redeterminations,107616.0,Includes Renewals and/or Redeterminations,31549.0,Includes Renewals and/or Redeterminations,3790.0,Includes Renewals and/or Redeterminations,35339.0,Includes Renewals and/or Redeterminations,615881.0,,1312271.0,,1160208.0,,152063.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,201808,Y,P,N,7924.0,,100027.0,Includes Renewals and/or Redeterminations,107951.0,Includes Renewals and/or Redeterminations,32986.0,Includes Renewals and/or Redeterminations,4393.0,Includes Renewals and/or Redeterminations,37379.0,Includes Renewals and/or Redeterminations,612756.0,,1305092.0,,1151733.0,,153359.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,201808,Y,U,Y,7924.0,,100027.0,Includes Renewals and/or Redeterminations,107951.0,Includes Renewals and/or Redeterminations,32986.0,Includes Renewals and/or Redeterminations,4393.0,Includes Renewals and/or Redeterminations,37379.0,Includes Renewals and/or Redeterminations,617641.0,,1314590.0,,1160769.0,,153821.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,201809,Y,P,N,6691.0,,90889.0,Includes Renewals and/or Redeterminations,97580.0,Includes Renewals and/or Redeterminations,27212.0,Includes Renewals and/or Redeterminations,3759.0,Includes Renewals and/or Redeterminations,30971.0,Includes Renewals and/or Redeterminations,611034.0,,1299510.0,,1145676.0,,153834.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,201809,Y,U,Y,6691.0,,90889.0,Includes Renewals and/or Redeterminations,97580.0,Includes Renewals and/or Redeterminations,27212.0,Includes Renewals and/or Redeterminations,3759.0,Includes Renewals and/or Redeterminations,30971.0,Includes Renewals and/or Redeterminations,617480.0,,1312423.0,,1158182.0,,154241.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,201810,Y,P,N,9338.0,,102299.0,Includes Renewals and/or Redeterminations,111637.0,Includes Renewals and/or Redeterminations,30409.0,Includes Renewals and/or Redeterminations,3782.0,Includes Renewals and/or Redeterminations,34191.0,Includes Renewals and/or Redeterminations,613096.0,,1302049.0,,1147586.0,,154463.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,201810,Y,U,Y,9338.0,,102299.0,Includes Renewals and/or Redeterminations,111637.0,Includes Renewals and/or Redeterminations,30409.0,Includes Renewals and/or Redeterminations,3782.0,Includes Renewals and/or Redeterminations,34191.0,Includes Renewals and/or Redeterminations,617339.0,,1311435.0,,1157010.0,,154425.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,201811,Y,P,N,7241.0,,114851.0,Includes Renewals and/or Redeterminations,122092.0,Includes Renewals and/or Redeterminations,30882.0,Includes Renewals and/or Redeterminations,4141.0,Includes Renewals and/or Redeterminations,35023.0,Includes Renewals and/or Redeterminations,612689.0,,1302294.0,,1146909.0,,155385.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,201811,Y,U,Y,7241.0,,114851.0,Includes Renewals and/or Redeterminations,122092.0,Includes Renewals and/or Redeterminations,30882.0,Includes Renewals and/or Redeterminations,4141.0,Includes Renewals and/or Redeterminations,35023.0,Includes Renewals and/or Redeterminations,617747.0,,1313879.0,,1158172.0,,155707.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,201812,Y,P,N,6802.0,,112851.0,Includes Renewals and/or Redeterminations,119653.0,Includes Renewals and/or Redeterminations,30669.0,Includes Renewals and/or Redeterminations,4390.0,Includes Renewals and/or Redeterminations,35059.0,Includes Renewals and/or Redeterminations,611464.0,,1300503.0,,1143837.0,,156666.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,201812,Y,U,Y,6802.0,,112851.0,Includes Renewals and/or Redeterminations,119653.0,Includes Renewals and/or Redeterminations,30669.0,Includes Renewals and/or Redeterminations,4390.0,Includes Renewals and/or Redeterminations,35059.0,Includes Renewals and/or Redeterminations,618583.0,,1316115.0,,1158429.0,,157686.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,201901,Y,P,N,7860.0,,100608.0,Includes Renewals and/or Redeterminations,108468.0,Includes Renewals and/or Redeterminations,30452.0,Includes Renewals and/or Redeterminations,4225.0,Includes Renewals and/or Redeterminations,34677.0,Includes Renewals and/or Redeterminations,611752.0,,1298973.0,,1142611.0,,156362.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,201901,Y,U,Y,7860.0,,100608.0,Includes Renewals and/or Redeterminations,108468.0,Includes Renewals and/or Redeterminations,30452.0,Includes Renewals and/or Redeterminations,4225.0,Includes Renewals and/or Redeterminations,34677.0,Includes Renewals and/or Redeterminations,634201.0,,1327948.0,,1154458.0,,173490.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,201902,Y,P,N,7188.0,,85317.0,Includes Renewals and/or Redeterminations,92505.0,Includes Renewals and/or Redeterminations,26166.0,Includes Renewals and/or Redeterminations,2967.0,Includes Renewals and/or Redeterminations,29133.0,Includes Renewals and/or Redeterminations,613877.0,,1304706.0,,1148633.0,,156073.0,,,,74095.0,,1664.0,,195.0,,122.0,,8.0,,,,,,, +MD,Maryland,201902,Y,U,Y,7188.0,,85317.0,Includes Renewals and/or Redeterminations,92505.0,Includes Renewals and/or Redeterminations,26166.0,Includes Renewals and/or Redeterminations,2967.0,Includes Renewals and/or Redeterminations,29133.0,Includes Renewals and/or Redeterminations,619242.0,,1315090.0,,1158817.0,,156273.0,,,,74095.0,,1664.0,,195.0,,122.0,,8.0,,,,,,, +MD,Maryland,201903,Y,P,N,8712.0,,86070.0,Includes Renewals and/or Redeterminations,94782.0,Includes Renewals and/or Redeterminations,30083.0,Includes Renewals and/or Redeterminations,3209.0,Includes Renewals and/or Redeterminations,33292.0,Includes Renewals and/or Redeterminations,615971.0,,1309502.0,,1154467.0,,155035.0,,,,76451.0,,1901.0,,213.0,,134.0,,7.0,,,,,,, +MD,Maryland,201903,Y,U,Y,8101.0,,86070.0,Includes Renewals and/or Redeterminations,94171.0,Includes Renewals and/or Redeterminations,30083.0,Includes Renewals and/or Redeterminations,3209.0,Includes Renewals and/or Redeterminations,33292.0,Includes Renewals and/or Redeterminations,620780.0,,1318895.0,,1163490.0,,155405.0,,,,76451.0,,1901.0,,213.0,,134.0,,7.0,,,,,,, +MD,Maryland,201904,Y,P,N,8194.0,,84578.0,Includes Renewals and/or Redeterminations,92772.0,Includes Renewals and/or Redeterminations,29860.0,Includes Renewals and/or Redeterminations,2840.0,Includes Renewals and/or Redeterminations,32700.0,Includes Renewals and/or Redeterminations,616397.0,,1310998.0,,1156784.0,,154214.0,,,,79761.0,,1831.0,,269.0,,163.0,,6.0,,,,,,, +MD,Maryland,201904,Y,U,Y,7986.0,,84578.0,Includes Renewals and/or Redeterminations,92564.0,Includes Renewals and/or Redeterminations,29860.0,Includes Renewals and/or Redeterminations,2840.0,Includes Renewals and/or Redeterminations,32700.0,Includes Renewals and/or Redeterminations,621326.0,,1320216.0,,1165454.0,,154762.0,,,,79761.0,,1831.0,,269.0,,163.0,,6.0,,,,,,, +MD,Maryland,201905,Y,P,N,7993.0,,86707.0,Includes Renewals and/or Redeterminations,94700.0,Includes Renewals and/or Redeterminations,34253.0,Includes Renewals and/or Redeterminations,3463.0,Includes Renewals and/or Redeterminations,37716.0,Includes Renewals and/or Redeterminations,617321.0,,1313328.0,,1160067.0,,153261.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,201905,Y,U,Y,8161.0,,86707.0,Includes Renewals and/or Redeterminations,94868.0,Includes Renewals and/or Redeterminations,34253.0,Includes Renewals and/or Redeterminations,3463.0,Includes Renewals and/or Redeterminations,37716.0,Includes Renewals and/or Redeterminations,622512.0,,1323085.0,,1169176.0,,153909.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,201906,Y,P,N,7441.0,,87544.0,Includes Renewals and/or Redeterminations,94985.0,Includes Renewals and/or Redeterminations,37905.0,Includes Renewals and/or Redeterminations,3571.0,Includes Renewals and/or Redeterminations,41476.0,Includes Renewals and/or Redeterminations,616694.0,,1313070.0,,1161567.0,,151503.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,201906,Y,U,Y,8148.0,,87544.0,Includes Renewals and/or Redeterminations,95692.0,Includes Renewals and/or Redeterminations,37905.0,Includes Renewals and/or Redeterminations,3571.0,Includes Renewals and/or Redeterminations,41476.0,Includes Renewals and/or Redeterminations,621388.0,,1322426.0,,1170407.0,,152019.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,201907,Y,P,N,6464.0,,92913.0,Includes Renewals and/or Redeterminations,99377.0,Includes Renewals and/or Redeterminations,38675.0,Includes Renewals and/or Redeterminations,3957.0,Includes Renewals and/or Redeterminations,42632.0,Includes Renewals and/or Redeterminations,616656.0,,1315534.0,,1165777.0,,149757.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,201907,Y,U,Y,6993.0,,92913.0,Includes Renewals and/or Redeterminations,99906.0,Includes Renewals and/or Redeterminations,38675.0,Includes Renewals and/or Redeterminations,3957.0,Includes Renewals and/or Redeterminations,42632.0,Includes Renewals and/or Redeterminations,622113.0,,1326315.0,,1175791.0,,150524.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,201908,Y,P,N,6625.0,,92009.0,Includes Renewals and/or Redeterminations,98634.0,Includes Renewals and/or Redeterminations,38840.0,Includes Renewals and/or Redeterminations,4117.0,Includes Renewals and/or Redeterminations,42957.0,Includes Renewals and/or Redeterminations,617736.0,,1319333.0,,1171111.0,,148222.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,201908,Y,U,Y,7098.0,,92009.0,Includes Renewals and/or Redeterminations,99107.0,Includes Renewals and/or Redeterminations,38840.0,Includes Renewals and/or Redeterminations,4117.0,Includes Renewals and/or Redeterminations,42957.0,Includes Renewals and/or Redeterminations,622556.0,,1328343.0,,1179451.0,,148892.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,201909,Y,P,N,6133.0,,90504.0,,96637.0,,36430.0,,3516.0,,39946.0,,616874.0,,1317508.0,,1170571.0,,146937.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,201909,Y,U,Y,6597.0,,90504.0,,97101.0,,36430.0,,3516.0,,39946.0,,622320.0,,1327889.0,,1180283.0,,147606.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,201910,Y,P,N,7417.0,,101523.0,Includes Renewals and/or Redeterminations,108940.0,Includes Renewals and/or Redeterminations,39494.0,Includes Renewals and/or Redeterminations,4081.0,Includes Renewals and/or Redeterminations,43575.0,Includes Renewals and/or Redeterminations,618481.0,,1321008.0,,1174892.0,,146116.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,201910,Y,U,Y,7693.0,,101523.0,Includes Renewals and/or Redeterminations,109216.0,Includes Renewals and/or Redeterminations,39494.0,Includes Renewals and/or Redeterminations,4081.0,Includes Renewals and/or Redeterminations,43575.0,Includes Renewals and/or Redeterminations,622786.0,,1329774.0,,1183205.0,,146569.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,201911,Y,P,N,6581.0,,106419.0,Includes Renewals and/or Redeterminations,113000.0,Includes Renewals and/or Redeterminations,38791.0,Includes Renewals and/or Redeterminations,4673.0,Includes Renewals and/or Redeterminations,43464.0,Includes Renewals and/or Redeterminations,614937.0,,1317729.0,,1175966.0,,141763.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,201911,Y,U,Y,7759.0,,106419.0,Includes Renewals and/or Redeterminations,114178.0,Includes Renewals and/or Redeterminations,38791.0,Includes Renewals and/or Redeterminations,4673.0,Includes Renewals and/or Redeterminations,43464.0,Includes Renewals and/or Redeterminations,620241.0,,1328056.0,,1185390.0,,142666.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,201912,Y,P,N,7423.0,,104628.0,Includes Renewals and/or Redeterminations,112051.0,Includes Renewals and/or Redeterminations,38419.0,Includes Renewals and/or Redeterminations,6116.0,Includes Renewals and/or Redeterminations,44535.0,Includes Renewals and/or Redeterminations,613232.0,,1314942.0,,1175186.0,,139756.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,201912,Y,U,Y,6783.0,,104628.0,Includes Renewals and/or Redeterminations,111411.0,Includes Renewals and/or Redeterminations,38419.0,Includes Renewals and/or Redeterminations,6116.0,Includes Renewals and/or Redeterminations,44535.0,Includes Renewals and/or Redeterminations,620241.0,,1328704.0,,1187568.0,,141136.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,202001,Y,P,N,7201.0,,91251.0,Includes Renewals and/or Redeterminations,98452.0,Includes Renewals and/or Redeterminations,42618.0,Includes Renewals and/or Redeterminations,7040.0,Includes Renewals and/or Redeterminations,49658.0,Includes Renewals and/or Redeterminations,614352.0,,1316794.0,,1178077.0,,138717.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,202001,Y,U,Y,7650.0,,91251.0,,98901.0,,42618.0,,7040.0,,49658.0,,621254.0,,1329134.0,,1188200.0,,140934.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,202002,Y,P,N,6659.0,,80690.0,Includes Renewals and/or Redeterminations,87349.0,Includes Renewals and/or Redeterminations,45680.0,Includes Renewals and/or Redeterminations,5112.0,Includes Renewals and/or Redeterminations,50792.0,Includes Renewals and/or Redeterminations,617290.0,,1321173.0,,1181470.0,,139703.0,,,,97124.0,,1500.0,,271.0,,69.0,,2.0,,,,,,, +MD,Maryland,202002,Y,U,Y,7062.0,,80690.0,Includes Renewals and/or Redeterminations,87752.0,Includes Renewals and/or Redeterminations,45680.0,Includes Renewals and/or Redeterminations,5112.0,Includes Renewals and/or Redeterminations,50792.0,Includes Renewals and/or Redeterminations,622062.0,,1330660.0,,1189762.0,,140898.0,,,,97124.0,,1500.0,,271.0,,69.0,,2.0,,,,,,, +MD,Maryland,202003,Y,P,N,6481.0,,83496.0,Includes Renewals and/or Redeterminations,89977.0,Includes Renewals and/or Redeterminations,48132.0,Includes Renewals and/or Redeterminations,5133.0,Includes Renewals and/or Redeterminations,53265.0,Includes Renewals and/or Redeterminations,619871.0,,1328169.0,,1187492.0,,140677.0,,,,97564.0,,1523.0,,191.0,,50.0,,2.0,,,,,,, +MD,Maryland,202003,Y,U,Y,5461.0,,83496.0,Includes Renewals and/or Redeterminations,88957.0,Includes Renewals and/or Redeterminations,48132.0,Includes Renewals and/or Redeterminations,5133.0,Includes Renewals and/or Redeterminations,53265.0,Includes Renewals and/or Redeterminations,622930.0,,1335833.0,,1194624.0,,141209.0,,,,97564.0,,1523.0,,191.0,,50.0,,2.0,,,,,,, +MD,Maryland,202004,Y,P,N,2907.0,,65509.0,Includes Renewals and/or Redeterminations,68416.0,Includes Renewals and/or Redeterminations,37967.0,Includes Renewals and/or Redeterminations,3197.0,Includes Renewals and/or Redeterminations,41164.0,Includes Renewals and/or Redeterminations,622300.0,,1338762.0,,1197972.0,,140790.0,,,,84158.0,,1250.0,,151.0,,31.0,,7.0,,,,,,, +MD,Maryland,202004,Y,U,Y,4662.0,,65509.0,Includes Renewals and/or Redeterminations,70171.0,Includes Renewals and/or Redeterminations,37967.0,Includes Renewals and/or Redeterminations,3197.0,Includes Renewals and/or Redeterminations,41164.0,Includes Renewals and/or Redeterminations,627010.0,,1350607.0,,1208467.0,,142140.0,,,,84158.0,,1250.0,,151.0,,31.0,,7.0,,,,,,, +MD,Maryland,202005,Y,P,N,3950.0,,62328.0,Includes Renewals and/or Redeterminations,66278.0,Includes Renewals and/or Redeterminations,27954.0,Includes Renewals and/or Redeterminations,1731.0,Includes Renewals and/or Redeterminations,29685.0,Includes Renewals and/or Redeterminations,628783.0,,1359003.0,,1217318.0,,141685.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,202005,Y,U,Y,3558.0,,62328.0,Includes Renewals and/or Redeterminations,65886.0,Includes Renewals and/or Redeterminations,27954.0,Includes Renewals and/or Redeterminations,1731.0,Includes Renewals and/or Redeterminations,29685.0,Includes Renewals and/or Redeterminations,630875.0,,1362890.0,,1220901.0,,141989.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,202006,Y,P,N,4448.0,,72988.0,Includes Renewals and/or Redeterminations,77436.0,Includes Renewals and/or Redeterminations,31380.0,Includes Renewals and/or Redeterminations,1586.0,Includes Renewals and/or Redeterminations,32966.0,Includes Renewals and/or Redeterminations,633440.0,,1372695.0,,1230457.0,,142238.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,202006,Y,U,Y,3983.0,,72988.0,Includes Renewals and/or Redeterminations,76971.0,Includes Renewals and/or Redeterminations,31380.0,Includes Renewals and/or Redeterminations,1586.0,Includes Renewals and/or Redeterminations,32966.0,Includes Renewals and/or Redeterminations,636480.0,,1377552.0,,1235002.0,,142550.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,202007,Y,P,N,4083.0,,71753.0,Includes Renewals and/or Redeterminations,75836.0,Includes Renewals and/or Redeterminations,33135.0,Includes Renewals and/or Redeterminations,1788.0,Includes Renewals and/or Redeterminations,34923.0,Includes Renewals and/or Redeterminations,639656.0,,1387773.0,,1245001.0,,142772.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,202007,Y,U,Y,4317.0,,71753.0,Includes Renewals and/or Redeterminations,76070.0,Includes Renewals and/or Redeterminations,33135.0,Includes Renewals and/or Redeterminations,1788.0,Includes Renewals and/or Redeterminations,34923.0,Includes Renewals and/or Redeterminations,641766.0,,1392038.0,,1248972.0,,143066.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,202008,Y,P,N,4673.0,,70468.0,Includes Renewals and/or Redeterminations,75141.0,Includes Renewals and/or Redeterminations,33121.0,Includes Renewals and/or Redeterminations,1972.0,Includes Renewals and/or Redeterminations,35093.0,Includes Renewals and/or Redeterminations,643563.0,,1398124.0,,1255489.0,,142635.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,202008,Y,U,Y,5337.0,,70468.0,Includes Renewals and/or Redeterminations,75805.0,Includes Renewals and/or Redeterminations,33121.0,Includes Renewals and/or Redeterminations,1972.0,Includes Renewals and/or Redeterminations,35093.0,Includes Renewals and/or Redeterminations,646318.0,,1405507.0,,1262271.0,,143236.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,202009,Y,P,N,5156.0,,71935.0,Includes Renewals and/or Redeterminations,77091.0,Includes Renewals and/or Redeterminations,34556.0,Includes Renewals and/or Redeterminations,1795.0,Includes Renewals and/or Redeterminations,36351.0,Includes Renewals and/or Redeterminations,647699.0,,1413517.0,,1270497.0,,143020.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,202009,Y,U,Y,5245.0,,71935.0,Includes Renewals and/or Redeterminations,77180.0,Includes Renewals and/or Redeterminations,34556.0,Includes Renewals and/or Redeterminations,1795.0,Includes Renewals and/or Redeterminations,36351.0,Includes Renewals and/or Redeterminations,649866.0,,1418225.0,,1274845.0,,143380.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,202010,Y,P,N,4437.0,,82881.0,Includes Renewals and/or Redeterminations,87318.0,Includes Renewals and/or Redeterminations,38128.0,Includes Renewals and/or Redeterminations,1616.0,Includes Renewals and/or Redeterminations,39744.0,Includes Renewals and/or Redeterminations,651502.0,,1426473.0,,1283073.0,,143400.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,202010,Y,U,Y,4825.0,,82881.0,Includes Renewals and/or Redeterminations,87706.0,Includes Renewals and/or Redeterminations,38128.0,Includes Renewals and/or Redeterminations,1616.0,Includes Renewals and/or Redeterminations,39744.0,Includes Renewals and/or Redeterminations,653337.0,,1430094.0,,1286503.0,,143591.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,202011,Y,P,N,3631.0,,89669.0,Includes Renewals and/or Redeterminations,93300.0,Includes Renewals and/or Redeterminations,35138.0,Includes Renewals and/or Redeterminations,1796.0,Includes Renewals and/or Redeterminations,36934.0,Includes Renewals and/or Redeterminations,653614.0,,1437344.0,,1293747.0,,143597.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,202011,Y,U,Y,3477.0,,89669.0,Includes Renewals and/or Redeterminations,93146.0,Includes Renewals and/or Redeterminations,35138.0,Includes Renewals and/or Redeterminations,1796.0,Includes Renewals and/or Redeterminations,36934.0,Includes Renewals and/or Redeterminations,656783.0,,1443941.0,,1300005.0,,143936.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,202012,Y,P,N,3715.0,,94238.0,Includes Renewals and/or Redeterminations,97953.0,Includes Renewals and/or Redeterminations,36760.0,Includes Renewals and/or Redeterminations,2493.0,Includes Renewals and/or Redeterminations,39253.0,Includes Renewals and/or Redeterminations,659371.0,,1456950.0,,1313178.0,,143772.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,202012,Y,U,Y,3600.0,,94238.0,Includes Renewals and/or Redeterminations,97838.0,Includes Renewals and/or Redeterminations,36760.0,Includes Renewals and/or Redeterminations,2493.0,Includes Renewals and/or Redeterminations,39253.0,Includes Renewals and/or Redeterminations,661452.0,,1461878.0,,1317828.0,,144050.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,202101,Y,P,N,3448.0,,66648.0,Includes Renewals and/or Redeterminations,70096.0,Includes Renewals and/or Redeterminations,37818.0,Includes Renewals and/or Redeterminations,3124.0,Includes Renewals and/or Redeterminations,40942.0,Includes Renewals and/or Redeterminations,662657.0,,1469453.0,,1326555.0,,142898.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,202101,Y,U,Y,3040.0,,66648.0,Includes Renewals and/or Redeterminations,69688.0,Includes Renewals and/or Redeterminations,37818.0,Includes Renewals and/or Redeterminations,3124.0,Includes Renewals and/or Redeterminations,40942.0,Includes Renewals and/or Redeterminations,664647.0,,1473436.0,,1330293.0,,143143.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,202102,Y,P,N,2966.0,,69635.0,Includes Renewals and/or Redeterminations,72601.0,Includes Renewals and/or Redeterminations,32909.0,Includes Renewals and/or Redeterminations,1972.0,Includes Renewals and/or Redeterminations,34881.0,Includes Renewals and/or Redeterminations,665477.0,,1479164.0,,1336569.0,,142595.0,,,,75793.0,,1179.0,,258.0,,128.0,,1.0,,,,,,, +MD,Maryland,202102,Y,U,Y,1445.0,,69635.0,Includes Renewals and/or Redeterminations,71080.0,Includes Renewals and/or Redeterminations,32909.0,Includes Renewals and/or Redeterminations,1972.0,Includes Renewals and/or Redeterminations,34881.0,Includes Renewals and/or Redeterminations,667569.0,,1483465.0,,1340581.0,,142884.0,,,,75793.0,,1179.0,,258.0,,128.0,,1.0,,,,,,, +MD,Maryland,202103,Y,P,N,2216.0,,68382.0,Includes Renewals and/or Redeterminations,70598.0,Includes Renewals and/or Redeterminations,29135.0,Includes Renewals and/or Redeterminations,1536.0,Includes Renewals and/or Redeterminations,30671.0,Includes Renewals and/or Redeterminations,669021.0,,1490800.0,,1348101.0,,142699.0,,,,59206.0,,752.0,,107.0,,37.0,,2.0,,,,,,, +MD,Maryland,202103,Y,U,Y,3406.0,,68382.0,Includes Renewals and/or Redeterminations,71788.0,Includes Renewals and/or Redeterminations,29135.0,Includes Renewals and/or Redeterminations,1536.0,Includes Renewals and/or Redeterminations,30671.0,Includes Renewals and/or Redeterminations,671035.0,,1495285.0,,1352569.0,,142716.0,,,,59206.0,,752.0,,107.0,,37.0,,2.0,,,,,,, +MD,Maryland,202104,Y,P,N,3620.0,,79941.0,Includes Renewals and/or Redeterminations,83561.0,Includes Renewals and/or Redeterminations,34512.0,Includes Renewals and/or Redeterminations,2410.0,Includes Renewals and/or Redeterminations,36922.0,Includes Renewals and/or Redeterminations,671853.0,,1501484.0,,1358618.0,,142866.0,,,,71997.0,,797.0,,111.0,,52.0,,2.0,,,,,,, +MD,Maryland,202104,Y,U,Y,2696.0,,79941.0,Includes Renewals and/or Redeterminations,82637.0,Includes Renewals and/or Redeterminations,34512.0,Includes Renewals and/or Redeterminations,2410.0,Includes Renewals and/or Redeterminations,36922.0,Includes Renewals and/or Redeterminations,673642.0,,1505113.0,,1362006.0,,143107.0,,,,71997.0,,797.0,,111.0,,52.0,,2.0,,,,,,, +MD,Maryland,202105,Y,P,N,3561.0,,70262.0,Includes Renewals and/or Redeterminations,73823.0,Includes Renewals and/or Redeterminations,31565.0,Includes Renewals and/or Redeterminations,3398.0,Includes Renewals and/or Redeterminations,34963.0,Includes Renewals and/or Redeterminations,674178.0,,1510290.0,,1365929.0,,144361.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,202105,Y,U,Y,2651.0,,70262.0,Includes Renewals and/or Redeterminations,72913.0,Includes Renewals and/or Redeterminations,31565.0,Includes Renewals and/or Redeterminations,3398.0,Includes Renewals and/or Redeterminations,34963.0,Includes Renewals and/or Redeterminations,676048.0,,1514069.0,,1369435.0,,144634.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,202106,Y,P,N,4068.0,,71984.0,Includes Renewals and/or Redeterminations,76052.0,Includes Renewals and/or Redeterminations,38208.0,Includes Renewals and/or Redeterminations,3127.0,Includes Renewals and/or Redeterminations,41335.0,Includes Renewals and/or Redeterminations,677220.0,,1520004.0,,1373981.0,,146023.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,202106,Y,U,Y,3010.0,,71984.0,Includes Renewals and/or Redeterminations,74994.0,Includes Renewals and/or Redeterminations,38208.0,Includes Renewals and/or Redeterminations,3127.0,Includes Renewals and/or Redeterminations,41335.0,Includes Renewals and/or Redeterminations,678961.0,,1523891.0,,1377552.0,,146339.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,202107,Y,P,N,3951.0,,70147.0,Includes Renewals and/or Redeterminations,74098.0,Includes Renewals and/or Redeterminations,34449.0,Includes Renewals and/or Redeterminations,2744.0,Includes Renewals and/or Redeterminations,37193.0,Includes Renewals and/or Redeterminations,680322.0,,1530305.0,,1382558.0,,147747.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,202107,Y,U,Y,2946.0,,70147.0,Includes Renewals and/or Redeterminations,73093.0,Includes Renewals and/or Redeterminations,34449.0,Includes Renewals and/or Redeterminations,2744.0,Includes Renewals and/or Redeterminations,37193.0,Includes Renewals and/or Redeterminations,682162.0,,1534076.0,,1385978.0,,148098.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,202108,Y,P,N,4281.0,,75685.0,Includes Renewals and/or Redeterminations,79966.0,Includes Renewals and/or Redeterminations,41458.0,Includes Renewals and/or Redeterminations,3575.0,Includes Renewals and/or Redeterminations,45033.0,Includes Renewals and/or Redeterminations,683618.0,,1541025.0,,1391372.0,,149653.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,202108,Y,U,Y,2391.0,,75685.0,Includes Renewals and/or Redeterminations,78076.0,Includes Renewals and/or Redeterminations,41458.0,Includes Renewals and/or Redeterminations,3575.0,Includes Renewals and/or Redeterminations,45033.0,Includes Renewals and/or Redeterminations,685906.0,,1545932.0,,1395826.0,,150106.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,202109,Y,P,N,3870.0,,74820.0,Includes Renewals and/or Redeterminations,78690.0,Includes Renewals and/or Redeterminations,40218.0,Includes Renewals and/or Redeterminations,3233.0,Includes Renewals and/or Redeterminations,43451.0,Includes Renewals and/or Redeterminations,687208.0,,1551687.0,,1400120.0,,151567.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,202109,Y,U,Y,1925.0,,74820.0,Includes Renewals and/or Redeterminations,76745.0,Includes Renewals and/or Redeterminations,40218.0,Includes Renewals and/or Redeterminations,3233.0,Includes Renewals and/or Redeterminations,43451.0,Includes Renewals and/or Redeterminations,688959.0,,1554542.0,,1402648.0,,151894.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,202110,Y,P,N,4249.0,,80257.0,Includes Renewals and/or Redeterminations,84506.0,Includes Renewals and/or Redeterminations,43566.0,Includes Renewals and/or Redeterminations,4023.0,Includes Renewals and/or Redeterminations,47589.0,Includes Renewals and/or Redeterminations,690187.0,,1560746.0,,1407444.0,,153302.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,202110,Y,U,Y,1194.0,,80257.0,Includes Renewals and/or Redeterminations,81451.0,Includes Renewals and/or Redeterminations,43566.0,Includes Renewals and/or Redeterminations,4023.0,Includes Renewals and/or Redeterminations,47589.0,Includes Renewals and/or Redeterminations,691823.0,,1563867.0,,1410271.0,,153596.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,202111,Y,P,N,4658.0,,89555.0,Includes Renewals and/or Redeterminations,94213.0,Includes Renewals and/or Redeterminations,39550.0,Includes Renewals and/or Redeterminations,3060.0,Includes Renewals and/or Redeterminations,42610.0,Includes Renewals and/or Redeterminations,692701.0,,1568931.0,,1413867.0,,155064.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,202111,Y,U,Y,4723.0,,89555.0,Includes Renewals and/or Redeterminations,94278.0,Includes Renewals and/or Redeterminations,39550.0,Includes Renewals and/or Redeterminations,3060.0,Includes Renewals and/or Redeterminations,42610.0,Includes Renewals and/or Redeterminations,694169.0,,1572390.0,,1417022.0,,155368.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,202112,Y,P,N,3748.0,,85046.0,Includes Renewals and/or Redeterminations,88794.0,Includes Renewals and/or Redeterminations,37736.0,Includes Renewals and/or Redeterminations,4375.0,Includes Renewals and/or Redeterminations,42111.0,Includes Renewals and/or Redeterminations,694789.0,,1578695.0,,1421692.0,,157003.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,202112,Y,U,Y,4146.0,,85046.0,Includes Renewals and/or Redeterminations,89192.0,Includes Renewals and/or Redeterminations,37736.0,Includes Renewals and/or Redeterminations,4375.0,Includes Renewals and/or Redeterminations,42111.0,Includes Renewals and/or Redeterminations,696786.0,,1582312.0,,1424999.0,,157313.0,,,,,,,,,,,,,,,,,,, +MD,Maryland,202201,Y,P,N,4258.0,,79118.0,Includes Renewals and/or Redeterminations,83376.0,Includes Renewals and/or Redeterminations,37425.0,Includes Renewals and/or Redeterminations,4242.0,Includes Renewals and/or Redeterminations,41667.0,Includes Renewals and/or Redeterminations,697763.0,,1591348.0,,1433004.0,,158344.0,,,,75581.0,,199.0,,30.0,,26.0,,0.0,,,,,,, +MD,Maryland,202201,Y,U,Y,4323.0,,86135.0,Includes Renewals and/or Redeterminations,90458.0,Includes Renewals and/or Redeterminations,37425.0,Includes Renewals and/or Redeterminations,4242.0,Includes Renewals and/or Redeterminations,41667.0,Includes Renewals and/or Redeterminations,700039.0,,1596257.0,,1437329.0,,158928.0,,,,75581.0,,199.0,,30.0,,26.0,,0.0,,,,,,, +MD,Maryland,202202,Y,P,N,3647.0,,64579.0,Includes Renewals and/or Redeterminations,68226.0,Includes Renewals and/or Redeterminations,35088.0,Includes Renewals and/or Redeterminations,3987.0,Includes Renewals and/or Redeterminations,39075.0,Includes Renewals and/or Redeterminations,700516.0,,1600318.0,,1440645.0,,159673.0,,,,70596.0,,245.0,,36.0,,14.0,,0.0,,,,,,, +MD,Maryland,202202,Y,U,Y,3421.0,,64579.0,Includes Renewals and/or Redeterminations,68000.0,Includes Renewals and/or Redeterminations,35088.0,Includes Renewals and/or Redeterminations,3987.0,Includes Renewals and/or Redeterminations,39075.0,Includes Renewals and/or Redeterminations,703178.0,,1605744.0,,1445504.0,,160240.0,,,,70596.0,,245.0,,36.0,,14.0,,0.0,,,,,,, +MD,Maryland,202203,Y,P,N,5113.0,,66391.0,Includes Renewals and/or Redeterminations,71504.0,Includes Renewals and/or Redeterminations,36543.0,Includes Renewals and/or Redeterminations,3812.0,Includes Renewals and/or Redeterminations,40355.0,Includes Renewals and/or Redeterminations,704340.0,,1611601.0,,1451209.0,,160392.0,,,,69288.0,,297.0,,39.0,,14.0,,0.0,,,,,,, +MD,Maryland,202203,Y,U,Y,4836.0,,66391.0,Includes Renewals and/or Redeterminations,71227.0,Includes Renewals and/or Redeterminations,36543.0,Includes Renewals and/or Redeterminations,3812.0,Includes Renewals and/or Redeterminations,40355.0,Includes Renewals and/or Redeterminations,706436.0,,1615588.0,,1454835.0,,160753.0,,,,69288.0,,297.0,,39.0,,14.0,,0.0,,,,,,, +MD,Maryland,202204,Y,P,N,4615.0,,59092.0,Includes Renewals and/or Redeterminations,63707.0,Includes Renewals and/or Redeterminations,36833.0,Includes Renewals and/or Redeterminations,3590.0,Includes Renewals and/or Redeterminations,40423.0,Includes Renewals and/or Redeterminations,706802.0,,1619381.0,,1458910.0,,160471.0,,,,69006.0,,334.0,,40.0,,13.0,,0.0,,,,,,, +MD,Maryland,202204,Y,U,Y,4528.0,,59092.0,Includes Renewals and/or Redeterminations,63620.0,Includes Renewals and/or Redeterminations,36833.0,Includes Renewals and/or Redeterminations,3590.0,Includes Renewals and/or Redeterminations,40423.0,Includes Renewals and/or Redeterminations,708713.0,,1622660.0,,1461888.0,,160772.0,,,,69006.0,,334.0,,40.0,,13.0,,0.0,,,,,,, +MD,Maryland,202205,Y,P,N,4801.0,,61062.0,Includes Renewals and/or Redeterminations,65863.0,Includes Renewals and/or Redeterminations,32253.0,Includes Renewals and/or Redeterminations,3038.0,Includes Renewals and/or Redeterminations,35291.0,Includes Renewals and/or Redeterminations,708549.0,,1625457.0,,1464835.0,,160622.0,,,,63176.0,,295.0,,41.0,,15.0,,0.0,,,,,,, +MD,Maryland,202205,Y,U,Y,4528.0,,61062.0,Includes Renewals and/or Redeterminations,65590.0,Includes Renewals and/or Redeterminations,32253.0,Includes Renewals and/or Redeterminations,3038.0,Includes Renewals and/or Redeterminations,35291.0,Includes Renewals and/or Redeterminations,710285.0,,1628180.0,,1467362.0,,160818.0,,,,63176.0,,295.0,,41.0,,15.0,,0.0,,,,,,, +MD,Maryland,202206,Y,P,N,5375.0,,68411.0,Includes Renewals and/or Redeterminations,73786.0,Includes Renewals and/or Redeterminations,31449.0,Includes Renewals and/or Redeterminations,2674.0,Includes Renewals and/or Redeterminations,34123.0,Includes Renewals and/or Redeterminations,710769.0,,1632584.0,,1471634.0,,160950.0,,,,65028.0,,361.0,,48.0,,14.0,,0.0,,,,,,, +MD,Maryland,202206,Y,U,Y,5132.0,,68411.0,Includes Renewals and/or Redeterminations,73543.0,Includes Renewals and/or Redeterminations,31449.0,Includes Renewals and/or Redeterminations,2674.0,Includes Renewals and/or Redeterminations,34123.0,Includes Renewals and/or Redeterminations,712883.0,,1636369.0,,1475099.0,,161270.0,,,,65028.0,,361.0,,48.0,,14.0,,0.0,,,,,,, +MD,Maryland,202207,Y,P,N,4373.0,,65473.0,Includes Renewals and/or Redeterminations,69846.0,Includes Renewals and/or Redeterminations,36957.0,Includes Renewals and/or Redeterminations,3334.0,Includes Renewals and/or Redeterminations,40291.0,Includes Renewals and/or Redeterminations,713365.0,,1640898.0,,1479570.0,,161328.0,,,,72543.0,,351.0,,40.0,,15.0,,0.0,,,,,,, +MD,Maryland,202207,Y,U,Y,4373.0,,65473.0,Includes Renewals and/or Redeterminations,69846.0,Includes Renewals and/or Redeterminations,36957.0,Includes Renewals and/or Redeterminations,3334.0,Includes Renewals and/or Redeterminations,40291.0,Includes Renewals and/or Redeterminations,716064.0,,1645951.0,,1484201.0,,161750.0,,,,72543.0,,351.0,,40.0,,15.0,,0.0,,,,,,, +MD,Maryland,202208,Y,P,N,5141.0,,65661.0,Includes Renewals and/or Redeterminations,70802.0,Includes Renewals and/or Redeterminations,34348.0,Includes Renewals and/or Redeterminations,2958.0,Includes Renewals and/or Redeterminations,37306.0,Includes Renewals and/or Redeterminations,716798.0,,1651123.0,,1489014.0,,162109.0,,,,67240.0,,328.0,,26.0,,13.0,,0.0,,,,,,, +MD,Maryland,202208,Y,U,Y,5141.0,,65661.0,Includes Renewals and/or Redeterminations,70802.0,Includes Renewals and/or Redeterminations,34348.0,Includes Renewals and/or Redeterminations,2958.0,Includes Renewals and/or Redeterminations,37306.0,Includes Renewals and/or Redeterminations,718968.0,,1654583.0,,1492159.0,,162424.0,,,,67240.0,,328.0,,26.0,,13.0,,0.0,,,,,,, +MD,Maryland,202209,Y,P,N,4568.0,,66605.0,Includes Renewals and/or Redeterminations,71173.0,Includes Renewals and/or Redeterminations,33931.0,Includes Renewals and/or Redeterminations,3226.0,Includes Renewals and/or Redeterminations,37157.0,Includes Renewals and/or Redeterminations,719481.0,,1658509.0,,1495756.0,,162753.0,,,,67695.0,,238.0,,14.0,,4.0,,0.0,,,,,,, +MD,Maryland,202209,Y,U,Y,4568.0,,66605.0,Includes Renewals and/or Redeterminations,71173.0,Includes Renewals and/or Redeterminations,33931.0,Includes Renewals and/or Redeterminations,3226.0,Includes Renewals and/or Redeterminations,37157.0,Includes Renewals and/or Redeterminations,721288.0,,1661447.0,,1498404.0,,163043.0,,,,67695.0,,238.0,,14.0,,4.0,,0.0,,,,,,, +MD,Maryland,202210,Y,P,N,5172.0,,74039.0,Includes Renewals and/or Redeterminations,79211.0,Includes Renewals and/or Redeterminations,33652.0,Includes Renewals and/or Redeterminations,2871.0,Includes Renewals and/or Redeterminations,36523.0,Includes Renewals and/or Redeterminations,721604.0,,1664663.0,,1501389.0,,163274.0,,,,70356.0,,148.0,,8.0,,3.0,,0.0,,,,,,, +MD,Maryland,202210,Y,U,Y,5172.0,,74039.0,Includes Renewals and/or Redeterminations,79211.0,Includes Renewals and/or Redeterminations,33652.0,Includes Renewals and/or Redeterminations,2871.0,Includes Renewals and/or Redeterminations,36523.0,Includes Renewals and/or Redeterminations,723964.0,,1673179.0,,1509033.0,,164146.0,,,,70356.0,,148.0,,8.0,,3.0,,0.0,,,,,,, +MD,Maryland,202211,Y,P,N,4612.0,,87026.0,Includes Renewals and/or Redeterminations,91638.0,Includes Renewals and/or Redeterminations,33950.0,Includes Renewals and/or Redeterminations,3041.0,Includes Renewals and/or Redeterminations,36991.0,Includes Renewals and/or Redeterminations,723964.0,,1673179.0,,1509033.0,,164146.0,,,,71071.0,,163.0,,5.0,,0.0,,0.0,,,,,,, +MD,Maryland,202211,Y,U,Y,4612.0,,87026.0,Includes Renewals and/or Redeterminations,91638.0,Includes Renewals and/or Redeterminations,33950.0,Includes Renewals and/or Redeterminations,3041.0,Includes Renewals and/or Redeterminations,36991.0,Includes Renewals and/or Redeterminations,725800.0,,1681420.0,,1516806.0,,164614.0,,,,71071.0,,163.0,,5.0,,0.0,,0.0,,,,,,, +MD,Maryland,202212,Y,P,N,4312.0,,84114.0,Includes Renewals and/or Redeterminations,88426.0,Includes Renewals and/or Redeterminations,35641.0,Includes Renewals and/or Redeterminations,4137.0,Includes Renewals and/or Redeterminations,39778.0,Includes Renewals and/or Redeterminations,725722.0,,1676741.0,,1512301.0,,164440.0,,,,69270.0,,158.0,,6.0,,2.0,,0.0,,,,,,, +MD,Maryland,202212,Y,U,Y,4312.0,,84114.0,Includes Renewals and/or Redeterminations,88426.0,Includes Renewals and/or Redeterminations,35641.0,Includes Renewals and/or Redeterminations,4137.0,Includes Renewals and/or Redeterminations,39778.0,Includes Renewals and/or Redeterminations,728020.0,,1685151.0,,1520188.0,,164963.0,,,,69270.0,,158.0,,6.0,,2.0,,0.0,,,,,,, +MD,Maryland,202301,Y,P,N,4824.0,,84025.0,Includes Renewals and/or Redeterminations,88849.0,Includes Renewals and/or Redeterminations,35282.0,Includes Renewals and/or Redeterminations,4037.0,Includes Renewals and/or Redeterminations,39319.0,Includes Renewals and/or Redeterminations,729099.0,,1691648.0,,1526298.0,,165350.0,,,,68235.0,,156.0,,5.0,,3.0,,0.0,,,,,,, +MD,Maryland,202301,Y,U,Y,4824.0,,84025.0,Includes Renewals and/or Redeterminations,88849.0,Includes Renewals and/or Redeterminations,35282.0,Includes Renewals and/or Redeterminations,4037.0,Includes Renewals and/or Redeterminations,39319.0,Includes Renewals and/or Redeterminations,731447.0,,1694894.0,,1529076.0,,165818.0,,,,68235.0,,156.0,,5.0,,3.0,,0.0,,,,,,, +MD,Maryland,202302,Y,P,N,3799.0,,68328.0,Includes Renewals and/or Redeterminations,72127.0,Includes Renewals and/or Redeterminations,48281.0,Includes Renewals and/or Redeterminations,5469.0,Includes Renewals and/or Redeterminations,53750.0,Includes Renewals and/or Redeterminations,731278.0,,1697270.0,,1531314.0,,165956.0,,,,78586.0,,278.0,,5.0,,4.0,,0.0,,,,,,, +MD,Maryland,202302,Y,U,Y,3799.0,,68328.0,Includes Renewals and/or Redeterminations,72127.0,Includes Renewals and/or Redeterminations,48281.0,Includes Renewals and/or Redeterminations,5469.0,Includes Renewals and/or Redeterminations,53750.0,Includes Renewals and/or Redeterminations,733160.0,,1700615.0,,1534299.0,,166316.0,,,,78586.0,,278.0,,5.0,,4.0,,0.0,,,,,,, +MD,Maryland,202303,Y,P,N,4311.0,,77202.0,Includes Renewals and/or Redeterminations,81513.0,Includes Renewals and/or Redeterminations,40489.0,Includes Renewals and/or Redeterminations,3954.0,Includes Renewals and/or Redeterminations,44443.0,Includes Renewals and/or Redeterminations,733667.0,,1704787.0,,1538624.0,,166163.0,,,,59156.0,,24.0,,1.0,,1.0,,0.0,,46658.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.062,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data +MD,Maryland,202303,Y,U,Y,4311.0,,77202.0,Includes Renewals and/or Redeterminations,81513.0,Includes Renewals and/or Redeterminations,40489.0,Includes Renewals and/or Redeterminations,3954.0,Includes Renewals and/or Redeterminations,44443.0,Includes Renewals and/or Redeterminations,735548.0,,1708368.0,,1541682.0,,166686.0,,,,59156.0,,24.0,,1.0,,1.0,,0.0,,46658.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.062,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data +MD,Maryland,202304,Y,P,N,3484.0,,71823.0,Includes Renewals and/or Redeterminations,75307.0,Includes Renewals and/or Redeterminations,48835.0,Includes Renewals and/or Redeterminations,4846.0,Includes Renewals and/or Redeterminations,53681.0,Includes Renewals and/or Redeterminations,735318.0,,1711066.0,,1544581.0,,166485.0,,,,71224.0,,28.0,,4.0,,1.0,,0.0,,40210.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.039,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data +MD,Maryland,202304,Y,U,Y,3484.0,,71823.0,Includes Renewals and/or Redeterminations,75307.0,Includes Renewals and/or Redeterminations,48835.0,Includes Renewals and/or Redeterminations,4846.0,Includes Renewals and/or Redeterminations,53681.0,Includes Renewals and/or Redeterminations,737212.0,,1714118.0,,1547213.0,,166905.0,,,,71224.0,,28.0,,4.0,,1.0,,0.0,,40210.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.039,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data +MD,Maryland,202305,Y,P,N,3906.0,,87021.0,Includes Renewals and/or Redeterminations,90927.0,Includes Renewals and/or Redeterminations,56266.0,Includes Renewals and/or Redeterminations,7631.0,Includes Renewals and/or Redeterminations,63897.0,Includes Renewals and/or Redeterminations,723944.0,,1687808.0,,1524342.0,,163466.0,,,,131031.0,,46.0,,6.0,,2.0,,0.0,,50488.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.067,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data +MD,Maryland,202305,Y,U,Y,3906.0,,87021.0,Includes Renewals and/or Redeterminations,90927.0,Includes Renewals and/or Redeterminations,56266.0,Includes Renewals and/or Redeterminations,7631.0,Includes Renewals and/or Redeterminations,63897.0,Includes Renewals and/or Redeterminations,738882.0,,1720320.0,,1553328.0,,166992.0,,,,131031.0,,46.0,,6.0,,2.0,,0.0,,50488.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.067,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data +MD,Maryland,202306,Y,P,N,4492.0,,93079.0,Includes Renewals and/or Redeterminations,97571.0,Includes Renewals and/or Redeterminations,54898.0,Includes Renewals and/or Redeterminations,9274.0,Includes Renewals and/or Redeterminations,64172.0,Includes Renewals and/or Redeterminations,732084.0,,1706914.0,,1541737.0,,165177.0,,,,100100.0,,6946.0,,97.0,,23.0,,0.0,,56377.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,2.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.069,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data +MD,Maryland,202306,Y,U,Y,4492.0,,93079.0,Includes Renewals and/or Redeterminations,97571.0,Includes Renewals and/or Redeterminations,54898.0,Includes Renewals and/or Redeterminations,9274.0,Includes Renewals and/or Redeterminations,64172.0,Includes Renewals and/or Redeterminations,734373.0,,1710790.0,,1545094.0,,165696.0,,,,100100.0,,6946.0,,97.0,,23.0,,0.0,,56377.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,2.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.069,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data +MD,Maryland,202307,Y,P,N,4420.0,,102508.0,Includes Renewals and/or Redeterminations,106928.0,Includes Renewals and/or Redeterminations,61343.0,Includes Renewals and/or Redeterminations,10157.0,Includes Renewals and/or Redeterminations,71500.0,Includes Renewals and/or Redeterminations,724793.0,,1691568.0,,1530017.0,,161551.0,,,,104778.0,,7097.0,,218.0,,22.0,,0.0,,59696.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,3.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.119,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data +MD,Maryland,202307,Y,U,Y,4420.0,,102508.0,Includes Renewals and/or Redeterminations,106928.0,Includes Renewals and/or Redeterminations,61343.0,Includes Renewals and/or Redeterminations,10157.0,Includes Renewals and/or Redeterminations,71500.0,Includes Renewals and/or Redeterminations,728572.0,,1697247.0,,1534219.0,,163028.0,,,,104778.0,,7097.0,,218.0,,22.0,,0.0,,59696.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,3.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.119,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data +MD,Maryland,202308,Y,P,N,5332.0,,116166.0,Includes Renewals and/or Redeterminations,121498.0,Includes Renewals and/or Redeterminations,68445.0,Includes Renewals and/or Redeterminations,14083.0,Includes Renewals and/or Redeterminations,82528.0,Includes Renewals and/or Redeterminations,717870.0,,1670240.0,,1511471.0,,158769.0,,,,130937.0,,8404.0,,739.0,,78.0,,0.0,,72748.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,15.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.377,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data +MD,Maryland,202308,Y,U,Y,5332.0,,116166.0,Includes Renewals and/or Redeterminations,121498.0,Includes Renewals and/or Redeterminations,68445.0,Includes Renewals and/or Redeterminations,14083.0,Includes Renewals and/or Redeterminations,82528.0,Includes Renewals and/or Redeterminations,725520.0,,1680346.0,,1517416.0,,162930.0,,,,130937.0,,8404.0,,739.0,,78.0,,0.0,,72748.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,15.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.377,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data +MD,Maryland,202309,Y,P,N,4963.0,,115661.0,Includes Renewals and/or Redeterminations,120624.0,Includes Renewals and/or Redeterminations,64699.0,Includes Renewals and/or Redeterminations,9104.0,Includes Renewals and/or Redeterminations,73803.0,Includes Renewals and/or Redeterminations,720199.0,,1667298.0,,1506232.0,,161066.0,,,,144588.0,,8030.0,,334.0,,138.0,,0.0,,54063.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,10.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.256,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data +MD,Maryland,202309,Y,U,Y,4963.0,,115661.0,Includes Renewals and/or Redeterminations,120624.0,Includes Renewals and/or Redeterminations,64699.0,Includes Renewals and/or Redeterminations,9104.0,Includes Renewals and/or Redeterminations,73803.0,Includes Renewals and/or Redeterminations,725497.0,,1675210.0,,1511384.0,,163826.0,,,,144588.0,,8030.0,,334.0,,138.0,,0.0,,54063.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,10.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.256,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data +MD,Maryland,202310,Y,P,N,5983.0,,138183.0,Includes Renewals and/or Redeterminations,144166.0,Includes Renewals and/or Redeterminations,61141.0,Includes Renewals and/or Redeterminations,9414.0,Includes Renewals and/or Redeterminations,70555.0,Includes Renewals and/or Redeterminations,725000.0,,1671274.0,,1507501.0,,163773.0,,,,104757.0,,6847.0,,243.0,,127.0,,0.0,,60113.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,4.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.113,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data +MD,Maryland,202310,Y,U,Y,5983.0,,138183.0,Includes Renewals and/or Redeterminations,144166.0,Includes Renewals and/or Redeterminations,61141.0,Includes Renewals and/or Redeterminations,9414.0,Includes Renewals and/or Redeterminations,70555.0,Includes Renewals and/or Redeterminations,728691.0,,1676985.0,,1511687.0,,165298.0,,,,104757.0,,6847.0,,243.0,,127.0,,0.0,,60113.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,4.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.113,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data +MD,Maryland,202311,Y,P,N,5810.0,,123685.0,Includes Renewals and/or Redeterminations,129495.0,Includes Renewals and/or Redeterminations,71888.0,Includes Renewals and/or Redeterminations,12669.0,Includes Renewals and/or Redeterminations,84557.0,Includes Renewals and/or Redeterminations,726946.0,,1674068.0,,1508243.0,,165825.0,,,,148137.0,,7474.0,,308.0,,64.0,,0.0,,54980.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.041,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data +MD,Maryland,202311,Y,U,Y,5810.0,,123685.0,Includes Renewals and/or Redeterminations,129495.0,Includes Renewals and/or Redeterminations,71888.0,Includes Renewals and/or Redeterminations,12669.0,Includes Renewals and/or Redeterminations,84557.0,Includes Renewals and/or Redeterminations,728906.0,,1680374.0,,1520083.0,,160291.0,,,,148137.0,,7474.0,,308.0,,64.0,,0.0,,54980.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.041,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data +MD,Maryland,202312,Y,P,N,5290.0,,150231.0,Includes Renewals and/or Redeterminations,155521.0,Includes Renewals and/or Redeterminations,103543.0,Includes Renewals and/or Redeterminations,13928.0,Includes Renewals and/or Redeterminations,117471.0,Includes Renewals and/or Redeterminations,719161.0,,1647787.0,,1484453.0,,163334.0,,,,186634.0,,7435.0,,317.0,,89.0,,0.0,,67101.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,2.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.072,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data +MD,Maryland,202312,Y,U,Y,5290.0,,150231.0,Includes Renewals and/or Redeterminations,155521.0,Includes Renewals and/or Redeterminations,103543.0,Includes Renewals and/or Redeterminations,13928.0,Includes Renewals and/or Redeterminations,117471.0,Includes Renewals and/or Redeterminations,723990.0,,1655673.0,,1492813.0,,162860.0,,,,186634.0,,7435.0,,317.0,,89.0,,0.0,,67101.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,2.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.072,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data +MD,Maryland,202401,Y,P,N,6971.0,,120286.0,Includes Renewals and/or Redeterminations,127257.0,Includes Renewals and/or Redeterminations,83878.0,Includes Renewals and/or Redeterminations,14158.0,Includes Renewals and/or Redeterminations,98036.0,Includes Renewals and/or Redeterminations,719129.0,,1624978.0,,1453369.0,,171609.0,,,,157898.0,,8017.0,,692.0,,170.0,,0.0,,85079.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,6.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.164,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data +MD,Maryland,202401,Y,U,Y,6971.0,,120286.0,Includes Renewals and/or Redeterminations,127257.0,Includes Renewals and/or Redeterminations,83878.0,Includes Renewals and/or Redeterminations,14158.0,Includes Renewals and/or Redeterminations,98036.0,Includes Renewals and/or Redeterminations,715252.0,,1624977.0,,1463108.0,,161869.0,,,,157898.0,,8017.0,,692.0,,170.0,,0.0,,85079.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,6.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.164,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data +MD,Maryland,202402,Y,P,N,7575.0,,101547.0,Includes Renewals and/or Redeterminations,109122.0,Includes Renewals and/or Redeterminations,68900.0,Includes Renewals and/or Redeterminations,8914.0,Includes Renewals and/or Redeterminations,77814.0,Includes Renewals and/or Redeterminations,716261.0,,1619895.0,,1449596.0,,170299.0,,,,107989.0,,6389.0,,547.0,,132.0,,0.0,,59701.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,2.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.061,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data +MD,Maryland,202402,Y,U,Y,7575.0,,101547.0,Includes Renewals and/or Redeterminations,109122.0,Includes Renewals and/or Redeterminations,68900.0,Includes Renewals and/or Redeterminations,8914.0,Includes Renewals and/or Redeterminations,77814.0,Includes Renewals and/or Redeterminations,716262.0,,1619895.0,,1449595.0,,170300.0,,,,107989.0,,6389.0,,547.0,,132.0,,0.0,,59701.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,2.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.061,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data +MD,Maryland,202403,Y,P,N,6656.0,,99411.0,Includes Renewals and/or Redeterminations,106067.0,Includes Renewals and/or Redeterminations,66254.0,Includes Renewals and/or Redeterminations,8391.0,Includes Renewals and/or Redeterminations,74645.0,Includes Renewals and/or Redeterminations,715259.0,,1614473.0,,1441192.0,,173281.0,,,,104564.0,,6920.0,,239.0,,133.0,,0.0,,54052.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.048,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data +MD,Maryland,202403,Y,U,Y,6656.0,,99411.0,Includes Renewals and/or Redeterminations,106067.0,Includes Renewals and/or Redeterminations,66254.0,Includes Renewals and/or Redeterminations,8391.0,Includes Renewals and/or Redeterminations,74645.0,Includes Renewals and/or Redeterminations,719252.0,,1621050.0,,1446533.0,,174517.0,,,,104564.0,,6920.0,,239.0,,133.0,,0.0,,54052.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.048,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data +MD,Maryland,202404,Y,P,N,6684.0,,94019.0,Includes Renewals and/or Redeterminations,100703.0,Includes Renewals and/or Redeterminations,67526.0,Includes Renewals and/or Redeterminations,9296.0,Includes Renewals and/or Redeterminations,76822.0,Includes Renewals and/or Redeterminations,715929.0,,1610742.0,,1434913.0,,175829.0,,,,108149.0,,7008.0,,184.0,,40.0,,0.0,,52097.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.057,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data +MD,Maryland,202404,Y,U,Y,6684.0,,94019.0,Includes Renewals and/or Redeterminations,100703.0,Includes Renewals and/or Redeterminations,67526.0,Includes Renewals and/or Redeterminations,9296.0,Includes Renewals and/or Redeterminations,76822.0,Includes Renewals and/or Redeterminations,720918.0,,1618864.0,,1440297.0,,178567.0,,,,108149.0,,7008.0,,184.0,,40.0,,0.0,,52097.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.057,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data +MD,Maryland,202405,Y,P,N,6409.0,,102013.0,Includes Renewals and/or Redeterminations,108422.0,Includes Renewals and/or Redeterminations,65794.0,Includes Renewals and/or Redeterminations,9365.0,Includes Renewals and/or Redeterminations,75159.0,Includes Renewals and/or Redeterminations,717298.0,,1607486.0,,1426986.0,,180500.0,,,,107771.0,,5255.0,,170.0,,22.0,,0.0,,50290.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,2.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.064,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data +MD,Maryland,202405,Y,U,Y,6409.0,,102013.0,Includes Renewals and/or Redeterminations,108422.0,Includes Renewals and/or Redeterminations,65794.0,Includes Renewals and/or Redeterminations,9365.0,Includes Renewals and/or Redeterminations,75159.0,Includes Renewals and/or Redeterminations,720262.0,,1611551.0,,1430086.0,,181465.0,,,,107771.0,,5255.0,,170.0,,22.0,,0.0,,50290.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,2.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.064,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data +MD,Maryland,202406,Y,P,N,6013.0,,102786.0,Includes Renewals and/or Redeterminations,108799.0,Includes Renewals and/or Redeterminations,64215.0,Includes Renewals and/or Redeterminations,8448.0,Includes Renewals and/or Redeterminations,72663.0,Includes Renewals and/or Redeterminations,714039.0,,1591115.0,,1407008.0,,184107.0,,,,102891.0,,6708.0,,99.0,,33.0,,0.0,,45592.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,2.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.061,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data +MD,Maryland,202406,Y,U,Y,6013.0,,102786.0,Includes Renewals and/or Redeterminations,108799.0,Includes Renewals and/or Redeterminations,64215.0,Includes Renewals and/or Redeterminations,8448.0,Includes Renewals and/or Redeterminations,72663.0,Includes Renewals and/or Redeterminations,717723.0,,1597426.0,,1412262.0,,185164.0,,,,102891.0,,6708.0,,99.0,,33.0,,0.0,,45592.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,2.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.061,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data +MD,Maryland,202407,Y,P,N,7361.0,,121098.0,Includes Renewals and/or Redeterminations,128459.0,Includes Renewals and/or Redeterminations,80365.0,Includes Renewals and/or Redeterminations,10813.0,Includes Renewals and/or Redeterminations,91178.0,Includes Renewals and/or Redeterminations,699368.0,,1568561.0,,1380152.0,,188409.0,,869193.0,,138257.0,,16641.0,,392.0,,29.0,,0.0,,60467.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,2.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.076,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data +MD,Maryland,202407,Y,U,Y,7361.0,,121098.0,Includes Renewals and/or Redeterminations,128459.0,Includes Renewals and/or Redeterminations,80365.0,Includes Renewals and/or Redeterminations,10813.0,Includes Renewals and/or Redeterminations,91178.0,Includes Renewals and/or Redeterminations,703971.0,,1576007.0,,1386286.0,,189721.0,,872036.0,,138257.0,,16641.0,,392.0,,29.0,,0.0,,60467.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,2.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.076,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data +MD,Maryland,202408,Y,P,N,7459.0,,188278.0,Includes Renewals and/or Redeterminations,195737.0,Includes Renewals and/or Redeterminations,81677.0,Includes Renewals and/or Redeterminations,11804.0,Includes Renewals and/or Redeterminations,93481.0,Includes Renewals and/or Redeterminations,695683.0,,1552457.0,,1361295.0,,191162.0,,856774.0,,132761.0,,8064.0,,462.0,,18.0,,0.0,,59735.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,4.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.122,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data +MD,Maryland,202408,Y,U,Y,7459.0,,188278.0,Includes Renewals and/or Redeterminations,195737.0,Includes Renewals and/or Redeterminations,81677.0,Includes Renewals and/or Redeterminations,11804.0,Includes Renewals and/or Redeterminations,93481.0,Includes Renewals and/or Redeterminations,700907.0,,1560517.0,,1367750.0,,192767.0,,859610.0,,132761.0,,8064.0,,462.0,,18.0,,0.0,,59735.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,4.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.122,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data +MD,Maryland,202409,Y,P,N,6330.0,,116944.0,Includes Renewals and/or Redeterminations,123274.0,Includes Renewals and/or Redeterminations,77236.0,Includes Renewals and/or Redeterminations,11103.0,Includes Renewals and/or Redeterminations,88339.0,Includes Renewals and/or Redeterminations,694632.0,,1540152.0,,1345622.0,,194530.0,,845520.0,,123827.0,,8220.0,,284.0,,19.0,,0.0,,55668.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,11.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.267,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data +MD,Maryland,202409,Y,U,Y,6330.0,,116944.0,Includes Renewals and/or Redeterminations,123274.0,Includes Renewals and/or Redeterminations,77236.0,Includes Renewals and/or Redeterminations,11103.0,Includes Renewals and/or Redeterminations,88339.0,Includes Renewals and/or Redeterminations,700391.0,,1549742.0,,1353587.0,,196155.0,,849351.0,,123827.0,,8220.0,,284.0,,19.0,,0.0,,55668.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,11.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.267,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data +MD,Maryland,202410,Y,P,N,8352.0,,136625.0,Includes Renewals and/or Redeterminations,144977.0,Includes Renewals and/or Redeterminations,87115.0,Includes Renewals and/or Redeterminations,12830.0,Includes Renewals and/or Redeterminations,99945.0,Includes Renewals and/or Redeterminations,692463.0,,1525201.0,,1327165.0,,198036.0,,832738.0,,141047.0,,7713.0,,260.0,,15.0,,0.0,,64550.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,6.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.173,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data +MD,Maryland,202410,Y,U,Y,8352.0,,136625.0,Includes Renewals and/or Redeterminations,144977.0,Includes Renewals and/or Redeterminations,87115.0,Includes Renewals and/or Redeterminations,12830.0,Includes Renewals and/or Redeterminations,99945.0,Includes Renewals and/or Redeterminations,696747.0,,1532900.0,,1333688.0,,199212.0,,836153.0,,141047.0,,7713.0,,260.0,,15.0,,0.0,,64550.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,6.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.173,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data +MD,Maryland,202411,Y,P,N,6814.0,,143250.0,Includes Renewals and/or Redeterminations,150064.0,Includes Renewals and/or Redeterminations,90416.0,Includes Renewals and/or Redeterminations,17626.0,Includes Renewals and/or Redeterminations,108042.0,Includes Renewals and/or Redeterminations,690154.0,,1511533.0,,1312635.0,,198898.0,,821379.0,,186876.0,,4858.0,,2592.0,,205.0,,0.0,,66536.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,11.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.253,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data +MD,Maryland,202411,Y,U,Y,6814.0,,143250.0,Includes Renewals and/or Redeterminations,150064.0,Includes Renewals and/or Redeterminations,90416.0,Includes Renewals and/or Redeterminations,17626.0,Includes Renewals and/or Redeterminations,108042.0,Includes Renewals and/or Redeterminations,695295.0,,1520691.0,,1320230.0,,200461.0,,825396.0,,186876.0,,4858.0,,2592.0,,205.0,,0.0,,66536.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,11.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.253,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data +MD,Maryland,202412,Y,P,N,6985.0,,173897.0,Includes Renewals and/or Redeterminations,180882.0,Includes Renewals and/or Redeterminations,132994.0,Includes Renewals and/or Redeterminations,19853.0,Includes Renewals and/or Redeterminations,152847.0,Includes Renewals and/or Redeterminations,678164.0,,1476049.0,,1280697.0,,195352.0,,797885.0,,242445.0,,5861.0,,2100.0,,15.0,,0.0,,87478.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,16.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.309,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data +MD,Maryland,202412,Y,U,Y,6985.0,,173897.0,Includes Renewals and/or Redeterminations,180882.0,Includes Renewals and/or Redeterminations,132994.0,Includes Renewals and/or Redeterminations,19853.0,Includes Renewals and/or Redeterminations,152847.0,Includes Renewals and/or Redeterminations,685960.0,,1489846.0,,1291976.0,,197870.0,,803886.0,,242445.0,,5861.0,,2100.0,,15.0,,0.0,,87478.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,16.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.309,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data +MD,Maryland,202501,Y,P,N,6727.0,,137913.0,Includes Renewals and/or Redeterminations,144640.0,Includes Renewals and/or Redeterminations,102543.0,Includes Renewals and/or Redeterminations,18393.0,Includes Renewals and/or Redeterminations,120936.0,Includes Renewals and/or Redeterminations,677085.0,,1463672.0,,1265723.0,,197949.0,,786587.0,,191465.0,,5841.0,,1739.0,,65.0,,0.0,,97729.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,19.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.342,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data +MD,Maryland,202501,Y,U,Y,6727.0,,137913.0,Includes Renewals and/or Redeterminations,144640.0,Includes Renewals and/or Redeterminations,102543.0,Includes Renewals and/or Redeterminations,18393.0,Includes Renewals and/or Redeterminations,120936.0,Includes Renewals and/or Redeterminations,684151.0,,1477244.0,,1277393.0,,199851.0,,793093.0,,191465.0,,5841.0,,1739.0,,65.0,,0.0,,97729.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,19.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.342,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data +MD,Maryland,202502,Y,P,N,6238.0,,113614.0,Includes Renewals and/or Redeterminations,119852.0,Includes Renewals and/or Redeterminations,88226.0,Includes Renewals and/or Redeterminations,13004.0,Includes Renewals and/or Redeterminations,101230.0,Includes Renewals and/or Redeterminations,674950.0,,1448700.0,,1248776.0,,199924.0,,773750.0,,136658.0,,5149.0,,833.0,,69.0,,0.0,,66948.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,13.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.275,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data +MD,Maryland,202502,Y,U,Y,6238.0,,113614.0,Includes Renewals and/or Redeterminations,119852.0,Includes Renewals and/or Redeterminations,88226.0,Includes Renewals and/or Redeterminations,13004.0,Includes Renewals and/or Redeterminations,101230.0,Includes Renewals and/or Redeterminations,682159.0,,1460943.0,,1258976.0,,201967.0,,778784.0,,136658.0,,5149.0,,833.0,,69.0,,0.0,,66948.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,13.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.275,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data +MD,Maryland,202503,Y,P,N,7117.0,,118074.0,Includes Renewals and/or Redeterminations,125191.0,Includes Renewals and/or Redeterminations,86364.0,Includes Renewals and/or Redeterminations,13081.0,Includes Renewals and/or Redeterminations,99445.0,Includes Renewals and/or Redeterminations,676518.0,,1441706.0,,1239063.0,,202643.0,,765188.0,,141258.0,,6209.0,,2411.0,,35.0,,0.0,,68636.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,9.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.208,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data +MD,Maryland,202503,Y,U,Y,7117.0,,118074.0,Includes Renewals and/or Redeterminations,125191.0,Includes Renewals and/or Redeterminations,86364.0,Includes Renewals and/or Redeterminations,13081.0,Includes Renewals and/or Redeterminations,99445.0,Includes Renewals and/or Redeterminations,682942.0,,1453118.0,,1248720.0,,204398.0,,770176.0,,141258.0,,6209.0,,2411.0,,35.0,,0.0,,68636.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,9.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.208,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data +MD,Maryland,202504,Y,P,N,6559.0,,116965.0,Includes Renewals and/or Redeterminations,123524.0,Includes Renewals and/or Redeterminations,83533.0,Includes Renewals and/or Redeterminations,12430.0,Includes Renewals and/or Redeterminations,95963.0,Includes Renewals and/or Redeterminations,678643.0,,1436017.0,,1231619.0,,204398.0,,757374.0,,134921.0,,6648.0,,2027.0,,22.0,,0.0,,65686.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,3.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.075,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data +MD,Maryland,202504,Y,U,Y,6559.0,,116965.0,Includes Renewals and/or Redeterminations,123524.0,Includes Renewals and/or Redeterminations,83533.0,Includes Renewals and/or Redeterminations,12430.0,Includes Renewals and/or Redeterminations,95963.0,Includes Renewals and/or Redeterminations,683578.0,,1444536.0,,1238876.0,,205660.0,,760958.0,,134921.0,,6648.0,,2027.0,,22.0,,0.0,,65686.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,3.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.075,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data +MD,Maryland,202505,Y,P,N,6425.0,,119953.0,Includes Renewals and/or Redeterminations,126378.0,Includes Renewals and/or Redeterminations,79925.0,Includes Renewals and/or Redeterminations,12147.0,Includes Renewals and/or Redeterminations,92072.0,Includes Renewals and/or Redeterminations,678193.0,,1427159.0,,1222202.0,,204957.0,,748966.0,,129028.0,,8211.0,,267.0,,29.0,,0.0,,60811.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.033,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data +MD,Maryland,202505,Y,U,Y,6425.0,,119953.0,Includes Renewals and/or Redeterminations,126378.0,Includes Renewals and/or Redeterminations,79925.0,Includes Renewals and/or Redeterminations,12147.0,Includes Renewals and/or Redeterminations,92072.0,Includes Renewals and/or Redeterminations,682133.0,,1434297.0,,1228521.0,,205776.0,,752164.0,,129028.0,,8211.0,,267.0,,29.0,,0.0,,60811.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.033,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data +MD,Maryland,202506,Y,P,N,6336.0,,124264.0,Includes Renewals and/or Redeterminations,130600.0,Includes Renewals and/or Redeterminations,77041.0,Includes Renewals and/or Redeterminations,12039.0,Includes Renewals and/or Redeterminations,89080.0,Includes Renewals and/or Redeterminations,677271.0,,1425494.0,,1221317.0,,204177.0,,748223.0,,125878.0,,7899.0,,167.0,,15.0,,0.0,,57658.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,2.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.044,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data +MD,Maryland,202506,Y,U,Y,6336.0,,124264.0,Includes Renewals and/or Redeterminations,130600.0,Includes Renewals and/or Redeterminations,77041.0,Includes Renewals and/or Redeterminations,12039.0,Includes Renewals and/or Redeterminations,89080.0,Includes Renewals and/or Redeterminations,681758.0,,1433995.0,,1228932.0,,205063.0,,752237.0,,125878.0,,7899.0,,167.0,,15.0,,0.0,,57658.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,2.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.044,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data +MD,Maryland,202507,Y,P,N,11142.0,,145910.0,Includes Renewals and/or Redeterminations,157052.0,Includes Renewals and/or Redeterminations,97477.0,Includes Renewals and/or Redeterminations,12915.0,Includes Renewals and/or Redeterminations,110392.0,Includes Renewals and/or Redeterminations,674389.0,,1415241.0,,1213098.0,,202143.0,,740852.0,,148358.0,,9021.0,,231.0,,18.0,,0.0,,68351.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,2.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.076,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data +MD,Maryland,202507,Y,U,Y,11142.0,,145910.0,Includes Renewals and/or Redeterminations,157052.0,Includes Renewals and/or Redeterminations,97477.0,Includes Renewals and/or Redeterminations,12915.0,Includes Renewals and/or Redeterminations,110392.0,Includes Renewals and/or Redeterminations,679068.0,,1424578.0,,1221209.0,,203369.0,,745510.0,,148358.0,,9021.0,,231.0,,18.0,,0.0,,68351.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,2.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.076,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data +MD,Maryland,202508,Y,P,N,10164.0,,137810.0,Includes Renewals and/or Redeterminations,147974.0,Includes Renewals and/or Redeterminations,90067.0,Includes Renewals and/or Redeterminations,12308.0,Includes Renewals and/or Redeterminations,102375.0,Includes Renewals and/or Redeterminations,674343.0,,1413841.0,,1212586.0,,201255.0,,739498.0,,139250.0,,8342.0,,218.0,,25.0,,0.0,,62540.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,2.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.05,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data +MD,Maryland,202508,Y,U,Y,10164.0,,137810.0,Includes Renewals and/or Redeterminations,147974.0,Includes Renewals and/or Redeterminations,90067.0,Includes Renewals and/or Redeterminations,12308.0,Includes Renewals and/or Redeterminations,102375.0,Includes Renewals and/or Redeterminations,678222.0,,1421219.0,,1219178.0,,202041.0,,742997.0,,139250.0,,8342.0,,218.0,,25.0,,0.0,,62540.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,2.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.05,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data +MD,Maryland,202509,Y,P,N,10865.0,,146871.0,Includes Renewals and/or Redeterminations,157736.0,Includes Renewals and/or Redeterminations,95689.0,Includes Renewals and/or Redeterminations,12553.0,Includes Renewals and/or Redeterminations,108242.0,Includes Renewals and/or Redeterminations,673859.0,,1411986.0,,1212284.0,,199702.0,,738127.0,,146505.0,,8261.0,,212.0,,18.0,,0.0,,65196.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,3.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.09,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data +MD,Maryland,202509,Y,U,Y,10865.0,,146871.0,Includes Renewals and/or Redeterminations,157736.0,Includes Renewals and/or Redeterminations,95689.0,Includes Renewals and/or Redeterminations,12553.0,Includes Renewals and/or Redeterminations,108242.0,Includes Renewals and/or Redeterminations,677589.0,,1419315.0,,1218641.0,,200674.0,,741726.0,,146505.0,,8261.0,,212.0,,18.0,,0.0,,65196.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,3.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.09,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data +MD,Maryland,202510,Y,P,N,10499.0,,147380.0,Includes Renewals and/or Redeterminations,157879.0,Includes Renewals and/or Redeterminations,93794.0,Includes Renewals and/or Redeterminations,12799.0,Includes Renewals and/or Redeterminations,106593.0,Includes Renewals and/or Redeterminations,671744.0,,1404754.0,,1207260.0,,197494.0,,733010.0,,145124.0,,7994.0,,241.0,,21.0,,0.0,,65506.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,2.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.05,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data +ME,Maine,201309,N,U,Y,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, +ME,Maine,201706,N,P,N,1508.0,,0.0,,1508.0,,10213.0,,325.0,,10538.0,,113315.0,,235597.0,,226077.0,,9520.0,,,,,,,,,,,,,,,,,,, +ME,Maine,201706,N,U,Y,1508.0,,0.0,,1508.0,,10213.0,,325.0,,10538.0,,113315.0,,235597.0,,226077.0,,9520.0,,,,,,,,,,,,,,,,,,, +ME,Maine,201707,N,P,N,1438.0,,0.0,,1438.0,,8978.0,,329.0,,9307.0,,112961.0,,234918.0,,225459.0,,9459.0,,,,,,,,,,,,,,,,,,, +ME,Maine,201707,N,U,Y,1438.0,,0.0,,1438.0,,8978.0,,329.0,,9307.0,,112961.0,,234918.0,,225459.0,,9459.0,,,,,,,,,,,,,,,,,,, +ME,Maine,201708,N,P,N,1523.0,,0.0,,1523.0,,10202.0,,347.0,,10549.0,,112869.0,,234535.0,,225046.0,,9489.0,,,,,,,,,,,,,,,,,,, +ME,Maine,201708,N,U,Y,1523.0,,0.0,,1523.0,,10202.0,,347.0,,10549.0,,112869.0,,234535.0,,225046.0,,9489.0,,,,,,,,,,,,,,,,,,, +ME,Maine,201709,N,P,N,1411.0,,0.0,,1411.0,,11163.0,,439.0,,11602.0,,112522.0,,233850.0,,224308.0,,9542.0,,,,,,,,,,,,,,,,,,, +ME,Maine,201709,N,U,Y,1411.0,,0.0,,1411.0,,11163.0,,439.0,,11602.0,,112522.0,,233850.0,,224308.0,,9542.0,,,,,,,,,,,,,,,,,,, +ME,Maine,201710,N,P,N,1365.0,,0.0,,1365.0,,10912.0,,456.0,,11368.0,,111999.0,,233303.0,,223687.0,,9616.0,,,,,,,,,,,,,,,,,,, +ME,Maine,201710,N,U,Y,1365.0,,0.0,,1365.0,,10912.0,,456.0,,11368.0,,111999.0,,233303.0,,223687.0,,9616.0,,,,,,,,,,,,,,,,,,, +ME,Maine,201711,N,P,N,1293.0,,0.0,,1293.0,,9872.0,,468.0,,10340.0,,111432.0,,232105.0,,222322.0,,9783.0,,,,,,,,,,,,,,,,,,, +ME,Maine,201711,N,U,Y,1293.0,,0.0,,1293.0,,9872.0,,468.0,,10340.0,,111432.0,,232105.0,,222322.0,,9783.0,,,,,,,,,,,,,,,,,,, +ME,Maine,201712,N,P,N,1254.0,,0.0,,1254.0,,9271.0,,384.0,,9655.0,,111272.0,,231725.0,,221915.0,,9810.0,,,,,,,,,,,,,,,,,,, +ME,Maine,201712,N,U,Y,1254.0,,0.0,,1254.0,,9271.0,,384.0,,9655.0,,111272.0,,231725.0,,221915.0,,9810.0,,,,,,,,,,,,,,,,,,, +ME,Maine,201801,N,P,N,1445.0,,0.0,,1445.0,,9690.0,,445.0,,10135.0,,111331.0,,231925.0,,222114.0,,9811.0,,,,,,,,,,,,,,,,,,, +ME,Maine,201801,N,U,Y,1445.0,,0.0,,1445.0,,9690.0,,445.0,,10135.0,,111331.0,,231925.0,,222114.0,,9811.0,,,,,,,,,,,,,,,,,,, +ME,Maine,201802,N,P,N,1369.0,,0.0,,1369.0,,9501.0,,424.0,,9925.0,,111043.0,,231551.0,,221642.0,,9909.0,,,,831.0,,440.0,,1294.0,,743.0,,11217.0,,,,,,, +ME,Maine,201802,N,U,Y,1369.0,,0.0,,1369.0,,9501.0,,424.0,,9925.0,,111043.0,,231551.0,,221642.0,,9909.0,,,,831.0,,440.0,,1294.0,,743.0,,11217.0,,,,,,, +ME,Maine,201803,N,P,N,1366.0,,0.0,,1366.0,,10738.0,,712.0,,11450.0,,111151.0,,231278.0,,221228.0,,10050.0,,,,937.0,,468.0,,1455.0,,7459.0,,3588.0,,,,,,, +ME,Maine,201803,N,U,Y,1366.0,,0.0,,1366.0,,10518.0,,712.0,,11230.0,,111151.0,,231278.0,,221228.0,,10050.0,,,,937.0,,468.0,,1455.0,,7459.0,,3588.0,,,,,,, +ME,Maine,201804,N,P,N,1189.0,,0.0,,1189.0,,9619.0,,375.0,,9994.0,,110812.0,,230588.0,,220544.0,,10044.0,,,,885.0,,448.0,,1191.0,,6668.0,,2833.0,,,,,,, +ME,Maine,201804,N,U,Y,1189.0,,0.0,,1189.0,,9475.0,,559.0,,10034.0,,110812.0,,230588.0,,220544.0,,10044.0,,,,885.0,,448.0,,1191.0,,6668.0,,2833.0,,,,,,, +ME,Maine,201805,N,P,N,5284.0,,0.0,,5284.0,,10612.0,,423.0,,11035.0,,110503.0,,229998.0,,219904.0,,10094.0,,,,,,,,,,,,,,,,,,, +ME,Maine,201805,N,U,Y,5284.0,,0.0,,5284.0,,10443.0,,633.0,,11076.0,,110153.0,,228892.0,,218902.0,,9990.0,,,,,,,,,,,,,,,,,,, +ME,Maine,201806,N,P,N,4939.0,,0.0,,4939.0,,9647.0,,334.0,,9981.0,,110152.0,,228889.0,,218717.0,,10172.0,,,,,,,,,,,,,,,,,,, +ME,Maine,201806,N,U,Y,4939.0,,0.0,,4939.0,,9481.0,,539.0,,10020.0,,109876.0,,230488.0,,220466.0,,10022.0,,,,,,,,,,,,,,,,,,, +ME,Maine,201807,Y,P,N,4807.0,,0.0,,4807.0,,9052.0,,295.0,,9347.0,,109876.0,,230488.0,,220457.0,,10031.0,,,,,,,,,,,,,,,,,,, +ME,Maine,201807,Y,U,Y,4807.0,,0.0,,4807.0,,8876.0,,508.0,,9384.0,,109580.0,,230826.0,,220783.0,,10043.0,,,,,,,,,,,,,,,,,,, +ME,Maine,201808,Y,P,N,5521.0,,0.0,,5521.0,,11174.0,,376.0,,11550.0,,109579.0,,230825.0,,220777.0,,10048.0,,,,,,,,,,,,,,,,,,, +ME,Maine,201808,Y,U,Y,5521.0,,0.0,,5521.0,,10925.0,,668.0,,11593.0,,109178.0,,230634.0,,220519.0,,10115.0,,,,,,,,,,,,,,,,,,, +ME,Maine,201809,Y,P,N,4657.0,,0.0,,4657.0,,9003.0,,612.0,,9615.0,,109177.0,,230633.0,,220506.0,,10127.0,,,,,,,,,,,,,,,,,,, +ME,Maine,201809,Y,U,Y,4657.0,,0.0,,4657.0,,9003.0,,612.0,,9615.0,,108982.0,,231268.0,,221067.0,,10201.0,,,,,,,,,,,,,,,,,,, +ME,Maine,201810,Y,P,N,5628.0,,0.0,,5628.0,,10403.0,,694.0,,11097.0,,108981.0,,231267.0,,221056.0,,10211.0,,,,,,,,,,,,,,,,,,, +ME,Maine,201810,Y,U,Y,5628.0,,0.0,,5628.0,,10403.0,,694.0,,11097.0,,108546.0,,231660.0,,221392.0,,10268.0,,,,,,,,,,,,,,,,,,, +ME,Maine,201811,Y,P,N,5110.0,,0.0,,5110.0,,9913.0,,785.0,,10698.0,,108963.0,,232075.0,,221378.0,,10697.0,,,,,,,,,,,,,,,,,,, +ME,Maine,201811,Y,U,Y,5110.0,,0.0,,5110.0,,9913.0,,785.0,,10698.0,,108148.0,,232585.0,,222255.0,,10330.0,,,,,,,,,,,,,,,,,,, +ME,Maine,201812,Y,P,N,4836.0,,0.0,,4836.0,,9214.0,,461.0,,9675.0,,108147.0,,232583.0,,222247.0,,10336.0,,,,,,,,,,,,,,,,,,, +ME,Maine,201812,Y,U,Y,4836.0,,0.0,,4836.0,,9214.0,,461.0,,9675.0,,108345.0,,237733.0,,227049.0,,10684.0,,,,,,,,,,,,,,,,,,, +ME,Maine,201901,Y,P,N,9522.0,,0.0,,9522.0,,9420.0,,531.0,,9951.0,,108344.0,,237732.0,,227035.0,,10697.0,,,,,,,,,,,,,,,,,,, +ME,Maine,201901,Y,U,Y,9522.0,,0.0,,9522.0,,9420.0,,531.0,,9951.0,,108335.0,,242300.0,,231495.0,,10805.0,,,,,,,,,,,,,,,,,,, +ME,Maine,201902,Y,P,N,7843.0,,0.0,,7843.0,,9114.0,,644.0,,9758.0,,108335.0,,242300.0,,231482.0,,10818.0,,,,691.0,,372.0,,1162.0,,822.0,,8635.0,,,,,,, +ME,Maine,201902,Y,U,Y,7843.0,,0.0,,7843.0,,9114.0,,644.0,,9758.0,,108303.0,,245584.0,,234628.0,,10956.0,,,,691.0,,372.0,,1162.0,,822.0,,8635.0,,,,,,, +ME,Maine,201903,Y,P,N,8118.0,,0.0,,8118.0,,10924.0,,511.0,,11435.0,,108302.0,,245584.0,,234607.0,,10977.0,,,,872.0,,380.0,,924.0,,7353.0,,3134.0,,,,,,, +ME,Maine,201903,Y,U,Y,8118.0,,0.0,,8118.0,,10924.0,,511.0,,11435.0,,108163.0,,248538.0,,237408.0,,11130.0,,,,872.0,,380.0,,924.0,,7353.0,,3134.0,,,,,,, +ME,Maine,201904,Y,P,N,7784.0,,0.0,,7784.0,,10662.0,,616.0,,11278.0,,108162.0,,248538.0,,237379.0,,11159.0,,,,912.0,,426.0,,909.0,,542.0,,9110.0,,,,,,, +ME,Maine,201904,Y,U,Y,7784.0,,0.0,,7784.0,,10662.0,,616.0,,11278.0,,108149.0,,250604.0,,239361.0,,11243.0,,,,912.0,,426.0,,909.0,,542.0,,9110.0,,,,,,, +ME,Maine,201905,Y,P,N,7317.0,,0.0,,7317.0,,11771.0,,673.0,,12444.0,,108147.0,,250603.0,,239339.0,,11264.0,,,,,,,,,,,,,,,,,,, +ME,Maine,201905,Y,U,Y,7317.0,,0.0,,7317.0,,11771.0,,673.0,,12444.0,,107921.0,,252018.0,,240656.0,,11362.0,,,,,,,,,,,,,,,,,,, +ME,Maine,201906,Y,P,N,6582.0,,0.0,,6582.0,,11653.0,,612.0,,12265.0,,107920.0,,252017.0,,240643.0,,11374.0,,,,,,,,,,,,,,,,,,, +ME,Maine,201906,Y,U,Y,6582.0,,0.0,,6582.0,,11653.0,,612.0,,12265.0,,108080.0,,254957.0,,243528.0,,11429.0,,,,,,,,,,,,,,,,,,, +ME,Maine,201907,Y,P,N,7035.0,,0.0,,7035.0,,12969.0,,612.0,,13581.0,,108080.0,,254956.0,,243507.0,,11449.0,,,,,,,,,,,,,,,,,,, +ME,Maine,201907,Y,U,Y,7035.0,,0.0,,7035.0,,12969.0,,612.0,,13581.0,,108204.0,,257603.0,,245931.0,,11672.0,,,,,,,,,,,,,,,,,,, +ME,Maine,201908,Y,P,N,6807.0,,0.0,,6807.0,,12005.0,,674.0,,12679.0,,108204.0,,257602.0,,245916.0,,11686.0,,,,,,,,,,,,,,,,,,, +ME,Maine,201908,Y,U,Y,6807.0,,0.0,,6807.0,,12005.0,,674.0,,12679.0,,108142.0,,258555.0,,246929.0,,11626.0,,,,,,,,,,,,,,,,,,, +ME,Maine,201909,Y,P,N,6453.0,,0.0,,6453.0,,11074.0,,781.0,,11855.0,,108140.0,,258553.0,,246896.0,,11657.0,,,,,,,,,,,,,,,,,,, +ME,Maine,201909,Y,U,Y,6453.0,,0.0,,6453.0,,11074.0,,781.0,,11855.0,,108089.0,,259396.0,,247755.0,,11641.0,,,,,,,,,,,,,,,,,,, +ME,Maine,201910,Y,P,N,7036.0,,0.0,,7036.0,,12001.0,,725.0,,12726.0,,108087.0,,259394.0,,247736.0,,11658.0,,,,,,,,,,,,,,,,,,, +ME,Maine,201910,Y,U,Y,7036.0,,0.0,,7036.0,,12001.0,,725.0,,12726.0,,107883.0,,260536.0,,248779.0,,11757.0,,,,,,,,,,,,,,,,,,, +ME,Maine,201911,Y,P,N,6287.0,,0.0,,6287.0,,10727.0,,770.0,,11497.0,,107878.0,,260532.0,,248756.0,,11776.0,,,,,,,,,,,,,,,,,,, +ME,Maine,201911,Y,U,Y,6287.0,,0.0,,6287.0,,10727.0,,770.0,,11497.0,,107909.0,,262638.0,,250750.0,,11888.0,,,,,,,,,,,,,,,,,,, +ME,Maine,201912,Y,P,N,6375.0,,0.0,,6375.0,,9740.0,,638.0,,10378.0,,107930.0,,262661.0,,250727.0,,11934.0,,,,,,,,,,,,,,,,,,, +ME,Maine,201912,Y,U,Y,6375.0,,0.0,,6375.0,,9740.0,,638.0,,10378.0,,108130.0,,264424.0,,252616.0,,11808.0,,,,,,,,,,,,,,,,,,, +ME,Maine,202001,Y,P,N,7764.0,,0.0,,7764.0,,11787.0,,727.0,,12514.0,,108123.0,,264419.0,,252579.0,,11840.0,,,,,,,,,,,,,,,,,,, +ME,Maine,202001,Y,U,Y,7764.0,,0.0,,7764.0,,11787.0,,727.0,,12514.0,,107936.0,,264849.0,,253013.0,,11836.0,,,,,,,,,,,,,,,,,,, +ME,Maine,202002,Y,P,N,5866.0,,0.0,,5866.0,,10285.0,,627.0,,10912.0,,107929.0,,264844.0,,252974.0,,11870.0,,,,742.0,,417.0,,1554.0,,7132.0,,3028.0,,,,,,, +ME,Maine,202002,Y,U,Y,5866.0,,0.0,,5866.0,,10285.0,,627.0,,10912.0,,108717.0,,267482.0,,255505.0,,11977.0,,,,742.0,,417.0,,1554.0,,7132.0,,3028.0,,,,,,, +ME,Maine,202003,Y,P,N,6880.0,,0.0,,6880.0,,13151.0,,874.0,,14025.0,,108710.0,,267477.0,,255463.0,,12014.0,,,,1045.0,,1298.0,,9670.0,,1119.0,,2047.0,,,,,,, +ME,Maine,202003,Y,U,Y,6880.0,,0.0,,6880.0,,13151.0,,874.0,,14025.0,,110770.0,,274352.0,,262165.0,,12187.0,,,,1045.0,,1298.0,,9670.0,,1119.0,,2047.0,,,,,,, +ME,Maine,202004,Y,P,N,7057.0,,0.0,,7057.0,,8889.0,,402.0,,9291.0,,110762.0,,274345.0,,262125.0,,12220.0,,,,1402.0,,5215.0,,1715.0,,356.0,,1020.0,,,,,,, +ME,Maine,202004,Y,U,Y,7057.0,,0.0,,7057.0,,8889.0,,402.0,,9291.0,,112129.0,,276076.0,,263793.0,,12283.0,,,,1402.0,,5215.0,,1715.0,,356.0,,1020.0,,,,,,, +ME,Maine,202005,Y,P,N,5476.0,,0.0,,5476.0,,7228.0,,307.0,,7535.0,,112119.0,,279063.0,,266748.0,,12315.0,,,,,,,,,,,,,,,,,,, +ME,Maine,202005,Y,U,Y,5476.0,,0.0,,5476.0,,7228.0,,307.0,,7535.0,,113551.0,,283426.0,,271024.0,,12402.0,,,,,,,,,,,,,,,,,,, +ME,Maine,202006,Y,P,N,0.0,,0.0,,0.0,,7890.0,,426.0,,8316.0,,113540.0,,283412.0,,270962.0,,12450.0,,,,,,,,,,,,,,,,,,, +ME,Maine,202006,Y,U,Y,0.0,,0.0,,0.0,,7890.0,,426.0,,8316.0,,114898.0,,287654.0,,275241.0,,12413.0,,,,,,,,,,,,,,,,,,, +ME,Maine,202007,Y,P,N,5951.0,,0.0,,5951.0,,7202.0,,404.0,,7606.0,,114883.0,,287654.0,,275190.0,,12464.0,,,,,,,,,,,,,,,,,,, +ME,Maine,202007,Y,U,Y,5951.0,,0.0,,5951.0,,7202.0,,404.0,,7606.0,,116176.0,,291569.0,,278925.0,,12644.0,,,,,,,,,,,,,,,,,,, +ME,Maine,202008,Y,P,N,4485.0,,0.0,,4485.0,,6711.0,,404.0,,7115.0,,116163.0,,291554.0,,278854.0,,12700.0,,,,,,,,,,,,,,,,,,, +ME,Maine,202008,Y,U,Y,4485.0,,0.0,,4485.0,,6711.0,,404.0,,7115.0,,117278.0,,295180.0,,282405.0,,12775.0,,,,,,,,,,,,,,,,,,, +ME,Maine,202009,Y,P,N,5644.0,,0.0,,5644.0,,6534.0,,279.0,,6813.0,,117265.0,,295168.0,,282341.0,,12827.0,,,,,,,,,,,,,,,,,,, +ME,Maine,202009,Y,U,Y,5644.0,,0.0,,5644.0,,6534.0,,279.0,,6813.0,,118251.0,,298620.0,,285699.0,,12921.0,,,,,,,,,,,,,,,,,,, +ME,Maine,202010,Y,P,N,6382.0,,0.0,,6382.0,,7824.0,,370.0,,8194.0,,118233.0,,298582.0,,285598.0,,12984.0,,,,,,,,,,,,,,,,,,, +ME,Maine,202010,Y,U,Y,6382.0,,0.0,,6382.0,,7824.0,,370.0,,8194.0,,119693.0,,303962.0,,290426.0,,13536.0,,,,,,,,,,,,,,,,,,, +ME,Maine,202011,Y,P,N,5934.0,,0.0,,5934.0,,5914.0,,386.0,,6300.0,,119667.0,,303888.0,,290290.0,,13598.0,,,,,,,,,,,,,,,,,,, +ME,Maine,202011,Y,U,Y,5934.0,,0.0,,5934.0,,5914.0,,386.0,,6300.0,,121510.0,,310465.0,,296288.0,,14177.0,,,,,,,,,,,,,,,,,,, +ME,Maine,202012,Y,P,N,6314.0,,0.0,,6314.0,,6458.0,,495.0,,6953.0,,121459.0,,310290.0,,296066.0,,14224.0,,,,,,,,,,,,,,,,,,, +ME,Maine,202012,Y,U,Y,6314.0,,0.0,,6314.0,,6458.0,,495.0,,6953.0,,122076.0,,312227.0,,298435.0,,13792.0,,,,,,,,,,,,,,,,,,, +ME,Maine,202101,Y,P,N,7096.0,,0.0,,7096.0,,5976.0,,670.0,,6646.0,,122001.0,,311958.0,,298138.0,,13820.0,,,,,,,,,,,,,,,,,,, +ME,Maine,202101,Y,U,Y,7096.0,,0.0,,7096.0,,11822.0,,670.0,,12492.0,,122669.0,,313409.0,,299582.0,,13827.0,,,,,,,,,,,,,,,,,,, +ME,Maine,202102,Y,P,N,5392.0,,0.0,,5392.0,,5779.0,,188.0,,5967.0,,122537.0,,313486.0,,299637.0,,13849.0,,,,499.0,,303.0,,3509.0,,509.0,,1196.0,,,,,,, +ME,Maine,202102,Y,U,Y,5392.0,,0.0,,5392.0,,5779.0,,188.0,,5967.0,,122667.0,,313887.0,,300037.0,,13850.0,,,,499.0,,303.0,,3509.0,,509.0,,1196.0,,,,,,, +ME,Maine,202103,Y,P,N,6044.0,,0.0,,6044.0,,11741.0,,352.0,,12093.0,,123044.0,,315306.0,,301322.0,,13984.0,,,,1713.0,,1385.0,,9879.0,,1833.0,,2744.0,,,,,,, +ME,Maine,202103,Y,U,Y,6044.0,,0.0,,6044.0,,11741.0,,352.0,,12093.0,,123531.0,,316755.0,,302801.0,,13954.0,,,,1713.0,,1385.0,,9879.0,,1833.0,,2744.0,,,,,,, +ME,Maine,202104,Y,P,N,5129.0,,0.0,,5129.0,,8588.0,,331.0,,8919.0,,123817.0,,318004.0,,303933.0,,14071.0,,,,2280.0,,2680.0,,8711.0,,1244.0,,2242.0,,,,,,, +ME,Maine,202104,Y,U,Y,5129.0,,0.0,,5129.0,,8588.0,,331.0,,8919.0,,124327.0,,319318.0,,305229.0,,14089.0,,,,2280.0,,2680.0,,8711.0,,1244.0,,2242.0,,,,,,, +ME,Maine,202105,Y,P,N,4797.0,,0.0,,4797.0,,7863.0,,212.0,,8075.0,,124438.0,,320251.0,,305968.0,,14283.0,,,,,,,,,,,,,,,,,,, +ME,Maine,202105,Y,U,Y,4797.0,,0.0,,4797.0,,7863.0,,212.0,,8075.0,,124881.0,,321500.0,,307353.0,,14147.0,,,,,,,,,,,,,,,,,,, +ME,Maine,202106,Y,P,N,5519.0,,0.0,,5519.0,,8279.0,,214.0,,8493.0,,125226.0,,323177.0,,308897.0,,14280.0,,,,,,,,,,,,,,,,,,, +ME,Maine,202106,Y,U,Y,5519.0,,0.0,,5519.0,,8279.0,,214.0,,8493.0,,125413.0,,323687.0,,309434.0,,14253.0,,,,,,,,,,,,,,,,,,, +ME,Maine,202107,Y,P,N,5019.0,,0.0,,5019.0,,8034.0,,224.0,,8258.0,,125523.0,,324537.0,,310235.0,,14302.0,,,,,,,,,,,,,,,,,,, +ME,Maine,202107,Y,U,Y,5019.0,,0.0,,5019.0,,8034.0,,224.0,,8258.0,,126062.0,,325876.0,,311569.0,,14307.0,,,,,,,,,,,,,,,,,,, +ME,Maine,202108,Y,P,N,5322.0,,0.0,,5322.0,,8121.0,,194.0,,8315.0,,126279.0,,327297.0,,312987.0,,14310.0,,,,,,,,,,,,,,,,,,, +ME,Maine,202108,Y,U,Y,5322.0,,0.0,,5322.0,,8121.0,,194.0,,8315.0,,125892.0,,328366.0,,314071.0,,14295.0,,,,,,,,,,,,,,,,,,, +ME,Maine,202109,Y,P,N,5487.0,,0.0,,5487.0,,8839.0,,170.0,,9009.0,,126916.0,,329632.0,,315246.0,,14386.0,,,,,,,,,,,,,,,,,,, +ME,Maine,202109,Y,U,Y,5487.0,,0.0,,5487.0,,8839.0,,170.0,,9009.0,,127345.0,,330802.0,,316466.0,,14336.0,,,,,,,,,,,,,,,,,,, +ME,Maine,202110,Y,P,N,5617.0,,0.0,,5617.0,,8780.0,,187.0,,8967.0,,127568.0,,332073.0,,317624.0,,14449.0,,,,,,,,,,,,,,,,,,, +ME,Maine,202110,Y,U,Y,5617.0,,0.0,,5617.0,,8780.0,,187.0,,8967.0,,128049.0,,333501.0,,319083.0,,14418.0,,,,,,,,,,,,,,,,,,, +ME,Maine,202111,Y,P,N,5637.0,,0.0,,5637.0,,7711.0,,163.0,,7874.0,,128480.0,,335658.0,,321155.0,,14503.0,,,,,,,,,,,,,,,,,,, +ME,Maine,202111,Y,U,Y,5637.0,,0.0,,5637.0,,7711.0,,163.0,,7874.0,,128608.0,,336071.0,,321592.0,,14479.0,,,,,,,,,,,,,,,,,,, +ME,Maine,202112,Y,P,N,5279.0,,0.0,,5279.0,,8199.0,,228.0,,8427.0,,128865.0,,337933.0,,323327.0,,14606.0,,,,,,,,,,,,,,,,,,, +ME,Maine,202112,Y,U,Y,5279.0,,0.0,,5279.0,,8199.0,,228.0,,8427.0,,129176.0,,338983.0,,324419.0,,14564.0,,,,,,,,,,,,,,,,,,, +ME,Maine,202201,Y,P,N,5644.0,,0.0,,5644.0,,12861.0,,124.0,,12985.0,,130080.0,,341948.0,,329157.0,,12791.0,,,,1379.0,,1845.0,,14129.0,,1532.0,,1964.0,,,,,,, +ME,Maine,202201,Y,U,Y,5644.0,,0.0,,5644.0,,12861.0,,124.0,,12985.0,,130080.0,,341948.0,,329157.0,,12791.0,,,,1379.0,,1845.0,,14129.0,,1532.0,,1964.0,,,,,,, +ME,Maine,202202,Y,P,N,4738.0,,0.0,,4738.0,,10320.0,,149.0,,10469.0,,130150.0,,342714.0,,329943.0,,12771.0,,,,1207.0,,1166.0,,11463.0,,1975.0,,2002.0,,,,,,, +ME,Maine,202202,Y,U,Y,4738.0,,0.0,,4738.0,,10320.0,,149.0,,10469.0,,130400.0,,343450.0,,330629.0,,12821.0,,,,1207.0,,1166.0,,11463.0,,1975.0,,2002.0,,,,,,, +ME,Maine,202203,Y,P,N,6323.0,,854.0,,7177.0,,12294.0,,214.0,,12508.0,,130737.0,,345134.0,,332246.0,,12888.0,,,,1851.0,,1675.0,,11352.0,,1380.0,,1905.0,,,,,,, +ME,Maine,202203,Y,U,Y,5248.0,,719.0,,5967.0,,8873.0,,110.0,,8983.0,,130954.0,,345753.0,,332827.0,,12926.0,,,,2272.0,,7554.0,,1977.0,,707.0,,1119.0,,,,,,, +ME,Maine,202204,Y,P,N,5551.0,,807.0,,6358.0,,9710.0,,169.0,,9879.0,,131902.0,,348877.0,,335616.0,,13261.0,,,,2293.0,,2108.0,,8839.0,,778.0,,1524.0,,,,,,, +ME,Maine,202204,Y,U,Y,5551.0,,807.0,,6358.0,,9710.0,,169.0,,9879.0,,131903.0,,348878.0,,335617.0,,13261.0,,,,2293.0,,2108.0,,8839.0,,778.0,,1524.0,,,,,,, +ME,Maine,202205,Y,P,N,5248.0,,719.0,,5967.0,,8873.0,,110.0,,8983.0,,132337.0,,350737.0,,337440.0,,13297.0,,,,2272.0,,7554.0,,1977.0,,707.0,,1119.0,,,,,,, +ME,Maine,202205,Y,U,Y,5248.0,,719.0,,5967.0,,8873.0,,110.0,,8983.0,,132338.0,,350738.0,,337441.0,,13297.0,,,,2272.0,,7554.0,,1977.0,,707.0,,1119.0,,,,,,, +ME,Maine,202206,Y,P,N,5431.0,,779.0,,6210.0,,9065.0,,138.0,,9203.0,,132892.0,,352993.0,,339671.0,,13322.0,,,,2169.0,,7669.0,,1950.0,,670.0,,1225.0,,,,,,, +ME,Maine,202206,Y,U,Y,5431.0,,779.0,,6210.0,,9065.0,,138.0,,9203.0,,132893.0,,352994.0,,339672.0,,13322.0,,,,2169.0,,7669.0,,1950.0,,670.0,,1225.0,,,,,,, +ME,Maine,202207,Y,P,N,5347.0,,660.0,,6007.0,,8014.0,,124.0,,8138.0,,133538.0,,355436.0,,342002.0,,13434.0,,,,2170.0,,6864.0,,2086.0,,708.0,,1167.0,,,,,,, +ME,Maine,202207,Y,U,Y,5347.0,,660.0,,6007.0,,8014.0,,124.0,,8138.0,,133539.0,,355437.0,,342003.0,,13434.0,,,,2170.0,,6864.0,,2086.0,,708.0,,1167.0,,,,,,, +ME,Maine,202208,Y,P,N,5216.0,,773.0,,5989.0,,9285.0,,145.0,,9430.0,,134125.0,,357281.0,,343821.0,,13460.0,,,,2336.0,,7489.0,,2157.0,,709.0,,1215.0,,,,,,, +ME,Maine,202208,Y,U,Y,5216.0,,773.0,,5989.0,,9285.0,,145.0,,9430.0,,134126.0,,357282.0,,343822.0,,13460.0,,,,2336.0,,7489.0,,2157.0,,709.0,,1215.0,,,,,,, +ME,Maine,202209,Y,P,N,5243.0,,752.0,,5995.0,,8945.0,,123.0,,9068.0,,134620.0,,359137.0,,345666.0,,13471.0,,,,2304.0,,7211.0,,1969.0,,748.0,,984.0,,,,,,, +ME,Maine,202209,Y,U,Y,5243.0,,752.0,,5995.0,,8945.0,,123.0,,9068.0,,134622.0,,359139.0,,345668.0,,13471.0,,,,2304.0,,7211.0,,1969.0,,748.0,,984.0,,,,,,, +ME,Maine,202210,Y,P,N,5410.0,,6219.0,,11629.0,,7982.0,,99.0,,8081.0,,135457.0,,363185.0,,349387.0,,13798.0,,,,2027.0,,2775.0,,7937.0,,742.0,,899.0,,,,,,, +ME,Maine,202210,Y,U,Y,5410.0,,6219.0,,11629.0,,7982.0,,99.0,,8081.0,,135458.0,,363186.0,,349388.0,,13798.0,,,,2027.0,,2775.0,,7937.0,,742.0,,899.0,,,,,,, +ME,Maine,202211,Y,P,N,5437.0,,3545.0,,8982.0,,8737.0,,158.0,,8895.0,,136097.0,,365813.0,,351887.0,,13926.0,,,,1653.0,,1827.0,,10776.0,,1658.0,,902.0,,,,,,, +ME,Maine,202211,Y,U,Y,5437.0,,3545.0,,8982.0,,8737.0,,158.0,,8895.0,,136098.0,,365814.0,,351888.0,,13926.0,,,,1653.0,,1827.0,,10776.0,,1658.0,,902.0,,,,,,, +ME,Maine,202212,Y,P,N,5408.0,,5122.0,,10530.0,,8863.0,,122.0,,8985.0,,136774.0,,368567.0,,354397.0,,14170.0,,,,1600.0,,1770.0,,11200.0,,1613.0,,1205.0,,,,,,, +ME,Maine,202212,Y,U,Y,5408.0,,5122.0,,10530.0,,8863.0,,122.0,,8985.0,,136775.0,,368568.0,,354398.0,,14170.0,,,,1600.0,,1770.0,,11200.0,,1613.0,,1205.0,,,,,,, +ME,Maine,202301,Y,P,N,5428.0,,2426.0,,7854.0,,7736.0,,109.0,,7845.0,,137383.0,,370909.0,,356740.0,,14169.0,,,,1329.0,,2634.0,,8084.0,,1025.0,,1052.0,,,,,,, +ME,Maine,202301,Y,U,Y,5428.0,,2426.0,,7854.0,,7736.0,,109.0,,7845.0,,137385.0,,370911.0,,356742.0,,14169.0,,,,1329.0,,2634.0,,8084.0,,1025.0,,1052.0,,,,,,, +ME,Maine,202302,Y,P,N,4875.0,,428.0,,5303.0,,6749.0,,55.0,,6804.0,,137686.0,,372479.0,,358378.0,,14101.0,,,,1304.0,,2644.0,,5924.0,,878.0,,1051.0,,,,,,, +ME,Maine,202302,Y,U,Y,4875.0,,428.0,,5303.0,,7138.0,,108.0,,7246.0,,137687.0,,372480.0,,358379.0,,14101.0,,,,1304.0,,2644.0,,5924.0,,878.0,,1051.0,,,,,,, +ME,Maine,202303,Y,P,N,6043.0,,375.0,,6418.0,,5842.0,,118.0,,5960.0,,138189.0,,374518.0,,358877.0,,15641.0,,,,1642.0,,2337.0,,6449.0,,838.0,,1324.0,,51339.0,Includes calls for other benefit programs,23.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.3,Includes calls for other benefit programs +ME,Maine,202303,Y,U,Y,6043.0,,375.0,,6418.0,,5842.0,,118.0,,5960.0,,138191.0,,374520.0,,358879.0,,15641.0,,,,1642.0,,2337.0,,6449.0,,838.0,,1324.0,,51339.0,Includes calls for other benefit programs,23.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.31,Includes calls for other benefit programs +ME,Maine,202304,Y,P,N,5160.0,,381.0,,5541.0,,4832.0,,179.0,,5011.0,,138951.0,,377902.0,,362297.0,,15605.0,,,,1841.0,,2106.0,,5921.0,,769.0,,1065.0,,40767.0,Includes calls for other benefit programs,22.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.3,Includes calls for other benefit programs +ME,Maine,202304,Y,U,Y,5160.0,,381.0,,5541.0,,4832.0,,179.0,,5011.0,,138951.0,,377902.0,,362297.0,,15605.0,,,,1841.0,,2106.0,,5921.0,,769.0,,1065.0,,40767.0,Includes calls for other benefit programs,22.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.3,Includes calls for other benefit programs +ME,Maine,202305,Y,P,N,5121.0,,397.0,,5518.0,,5593.0,,156.0,,5749.0,,139413.0,,380133.0,,364010.0,,16123.0,,,,1526.0,,1401.0,,7120.0,,854.0,,1161.0,,50488.0,Includes calls for other benefit programs,35.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.27,Includes calls for other benefit programs +ME,Maine,202305,Y,U,Y,5121.0,,397.0,,5518.0,,5593.0,,156.0,,5749.0,,139413.0,,380133.0,,364010.0,,16123.0,,,,1526.0,,1401.0,,7120.0,,854.0,,1161.0,,50488.0,Includes calls for other benefit programs,35.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.3,Includes calls for other benefit programs +ME,Maine,202306,Y,P,N,5495.0,,403.0,,5898.0,,6297.0,,241.0,,6538.0,,139341.0,,380730.0,,363875.0,,16855.0,,,,1274.0,,1616.0,,9312.0,,1294.0,,1298.0,,46096.0,Includes calls for other benefit programs,33.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.24,Includes calls for other benefit programs +ME,Maine,202306,Y,U,Y,5495.0,,403.0,,5898.0,,6297.0,,241.0,,6538.0,,139341.0,,380730.0,,363875.0,,16855.0,,,,1274.0,,1616.0,,9312.0,,1294.0,,1298.0,,46096.0,Includes calls for other benefit programs,33.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.24,Includes calls for other benefit programs +ME,Maine,202307,Y,P,N,5124.0,,405.0,,5529.0,,7952.0,,238.0,,8190.0,,138783.0,,379435.0,,362067.0,,17368.0,,,,1278.0,,1840.0,,12411.0,,1136.0,,1670.0,,49241.0,Includes calls for other benefit programs,44.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.25,Includes calls for other benefit programs +ME,Maine,202307,Y,U,Y,5124.0,,405.0,,5529.0,,7952.0,,238.0,,8190.0,,138783.0,,379435.0,,362067.0,,17368.0,,,,1278.0,,1840.0,,12411.0,,1136.0,,1670.0,,49241.0,Includes calls for other benefit programs,44.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.25,Includes calls for other benefit programs +ME,Maine,202308,Y,P,N,7084.0,,679.0,,7763.0,,7453.0,,252.0,,7705.0,,137890.0,,376875.0,,358724.0,,18151.0,,,,875.0,,795.0,,2174.0,,265.0,,341.0,,51005.0,Includes calls for other benefit programs,29.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.19,Includes calls for other benefit programs +ME,Maine,202308,Y,U,Y,7084.0,,679.0,,7763.0,,7453.0,,252.0,,7705.0,,138353.0,,378366.0,,360229.0,,18137.0,,,,875.0,,795.0,,2174.0,,265.0,,341.0,,51005.0,Includes calls for other benefit programs,29.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.19,Includes calls for other benefit programs +ME,Maine,202309,Y,P,N,5203.0,,485.0,,5688.0,,10316.0,,281.0,,10597.0,,136966.0,,374454.0,,355441.0,,19013.0,,,,776.0,,697.0,,1998.0,,246.0,,281.0,,49430.0,Includes calls for other benefit programs,34.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.22,Includes calls for other benefit programs +ME,Maine,202309,Y,U,Y,5203.0,,485.0,,5688.0,,10316.0,,281.0,,10597.0,,136417.0,,372963.0,,354090.0,,18873.0,,,,776.0,,697.0,,1998.0,,246.0,,281.0,,49430.0,Includes calls for other benefit programs,34.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.22,Includes calls for other benefit programs +ME,Maine,202310,Y,P,N,5790.0,,9036.0,,14826.0,,7238.0,,295.0,,7533.0,,135838.0,,370638.0,,350953.0,,19685.0,,,,881.0,,1444.0,,1066.0,,220.0,,265.0,,45319.0,Includes calls for other benefit programs,16.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.15,Includes calls for other benefit programs +ME,Maine,202310,Y,U,Y,5790.0,,9036.0,,14826.0,,7238.0,,295.0,,7533.0,,137953.0,,374913.0,,355173.0,,19740.0,,,,881.0,,1444.0,,1066.0,,220.0,,265.0,,45319.0,Includes calls for other benefit programs,16.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.15,Includes calls for other benefit programs +ME,Maine,202311,Y,P,N,6200.0,,1681.0,,7881.0,,6396.0,,280.0,,6676.0,,137648.0,,372508.0,,352206.0,,20302.0,,,,863.0,,520.0,,1741.0,,725.0,,276.0,,38138.0,Includes calls for other benefit programs,11.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.16,Includes calls for other benefit programs +ME,Maine,202311,Y,U,Y,6200.0,,1681.0,,7881.0,,6396.0,,280.0,,6676.0,,138825.0,,375007.0,,357086.0,,17921.0,,,,863.0,,520.0,,1741.0,,725.0,,276.0,,38138.0,Includes calls for other benefit programs,11.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.16,Includes calls for other benefit programs +ME,Maine,202312,Y,P,N,4883.0,,3313.0,,8196.0,,8023.0,,86.0,,8109.0,,138162.0,,371287.0,,353076.0,,18211.0,,,,704.0,,349.0,,1420.0,,413.0,,1070.0,,43310.0,Includes calls for other benefit programs,13.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.16,Includes calls for other benefit programs +ME,Maine,202312,Y,U,Y,4883.0,,3313.0,,8196.0,,8023.0,,86.0,,8109.0,,139687.0,,374920.0,,358976.0,,15944.0,,,,704.0,,349.0,,1420.0,,413.0,,1070.0,,43310.0,Includes calls for other benefit programs,13.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.16,Includes calls for other benefit programs +ME,Maine,202401,Y,P,N,6026.0,,1617.0,,7643.0,,8402.0,,83.0,,8485.0,,139485.0,,372446.0,,356554.0,,15892.0,,,,893.0,,525.0,,1670.0,,470.0,,727.0,,48182.0,Includes calls for other benefit programs,14.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.16,Includes calls for other benefit programs +ME,Maine,202401,Y,U,Y,6026.0,,1617.0,,7643.0,,8402.0,,83.0,,8485.0,,140637.0,,375229.0,,353710.0,,21519.0,,,,893.0,,525.0,,1670.0,,470.0,,727.0,,48182.0,Includes calls for other benefit programs,14.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.16,Includes calls for other benefit programs +ME,Maine,202402,Y,P,N,5991.0,,425.0,,6416.0,,9293.0,,359.0,,9652.0,,140067.0,,372259.0,,350283.0,,21976.0,,,,1056.0,,841.0,,1894.0,,289.0,,479.0,,37315.0,Includes calls for other benefit programs,9.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.14,Includes calls for other benefit programs +ME,Maine,202402,Y,U,Y,5991.0,,425.0,,6416.0,,9293.0,,359.0,,9652.0,,140881.0,,374325.0,,352405.0,,21920.0,,,,1056.0,,841.0,,1894.0,,289.0,,479.0,,37315.0,Includes calls for other benefit programs,9.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.14,Includes calls for other benefit programs +ME,Maine,202403,Y,P,N,6243.0,,326.0,,6569.0,,8786.0,,262.0,,9048.0,,140391.0,,370007.0,,347558.0,,22449.0,,,,1226.0,,1759.0,,907.0,,216.0,,384.0,,34619.0,Includes calls for other benefit programs,5.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.1,Includes calls for other benefit programs +ME,Maine,202403,Y,U,Y,6243.0,,326.0,,6569.0,,8786.0,,262.0,,9048.0,,141079.0,,371899.0,,349388.0,,22511.0,,,,1226.0,,1759.0,,907.0,,216.0,,384.0,,34619.0,Includes calls for other benefit programs,5.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.1,Includes calls for other benefit programs +ME,Maine,202404,Y,P,N,5844.0,,313.0,,6157.0,,7577.0,,234.0,,7811.0,,140545.0,,367458.0,,344456.0,,23002.0,,,,1176.0,,1176.0,,780.0,,165.0,,296.0,,34376.0,Includes calls for other benefit programs,6.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.11,Includes calls for other benefit programs +ME,Maine,202404,Y,U,Y,5844.0,,313.0,,6157.0,,7577.0,,234.0,,7811.0,,141272.0,,369307.0,,346276.0,,23031.0,,,,1176.0,,1176.0,,780.0,,165.0,,296.0,,34376.0,Includes calls for other benefit programs,6.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.11,Includes calls for other benefit programs +ME,Maine,202405,Y,P,N,6040.0,,304.0,,6344.0,,7566.0,,245.0,,7811.0,,141139.0,,366428.0,,343137.0,,23291.0,,,,1253.0,,1633.0,,745.0,,99.0,,258.0,,29951.0,Includes calls for other benefit programs,4.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.09,Includes calls for other benefit programs +ME,Maine,202405,Y,U,Y,6040.0,,304.0,,6344.0,,7566.0,,245.0,,7811.0,,141709.0,,367938.0,,344554.0,,23384.0,,,,1253.0,,1633.0,,745.0,,99.0,,258.0,,29951.0,Includes calls for other benefit programs,4.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.09,Includes calls for other benefit programs +ME,Maine,202406,Y,P,N,5571.0,,243.0,,5814.0,,7461.0,,213.0,,7674.0,,141406.0,,365407.0,,341884.0,,23523.0,,,,1090.0,,1425.0,,671.0,,119.0,,223.0,,27863.0,Includes calls for other benefit programs,7.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.14,Includes calls for other benefit programs +ME,Maine,202406,Y,U,Y,5571.0,,243.0,,5814.0,,7461.0,,213.0,,7674.0,,142118.0,,367161.0,,343644.0,,23517.0,,,,1090.0,,1425.0,,671.0,,119.0,,223.0,,27863.0,Includes calls for other benefit programs,7.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.14,Includes calls for other benefit programs +ME,Maine,202407,Y,P,N,6274.0,,350.0,,6624.0,,8365.0,,254.0,,8619.0,,142088.0,,366751.0,,343046.0,,23705.0,,224663.0,,1014.0,,1687.0,,880.0,,160.0,,262.0,,33002.0,Includes calls for other benefit programs,6.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.12,Includes calls for other benefit programs +ME,Maine,202407,Y,U,Y,6274.0,,350.0,,6624.0,,8365.0,,254.0,,8619.0,,142698.0,,368390.0,,344585.0,,23805.0,,225692.0,,1014.0,,1687.0,,880.0,,160.0,,262.0,,33002.0,Includes calls for other benefit programs,6.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.12,Includes calls for other benefit programs +ME,Maine,202408,Y,P,N,6119.0,,359.0,,6478.0,,7999.0,,192.0,,8191.0,,142412.0,,367001.0,,342214.0,,24787.0,,224589.0,,1084.0,,1585.0,,856.0,,200.0,,237.0,,36278.0,Includes calls for other benefit programs,5.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.1,Includes calls for other benefit programs +ME,Maine,202408,Y,U,Y,6119.0,,359.0,,6478.0,,7999.0,,192.0,,8191.0,,143165.0,,368709.0,,343758.0,,24951.0,,225544.0,,1084.0,,1585.0,,856.0,,200.0,,237.0,,36278.0,Includes calls for other benefit programs,5.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.1,Includes calls for other benefit programs +ME,Maine,202409,Y,P,N,6087.0,,419.0,,6506.0,,7839.0,,267.0,,8106.0,,141813.0,,365224.0,,340161.0,,25063.0,,223411.0,,1029.0,,1747.0,,824.0,,185.0,,298.0,,38518.0,Includes calls for other benefit programs,8.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.13,Includes calls for other benefit programs +ME,Maine,202409,Y,U,Y,6087.0,,419.0,,6506.0,,7839.0,,267.0,,8106.0,,142543.0,,366995.0,,341741.0,,25254.0,,224452.0,,1029.0,,1747.0,,824.0,,185.0,,298.0,,38518.0,Includes calls for other benefit programs,8.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.13,Includes calls for other benefit programs +ME,Maine,202410,Y,P,N,7200.0,,8064.0,,15264.0,,8841.0,,299.0,,9140.0,,139442.0,,350738.0,,325633.0,,25105.0,,211296.0,,1181.0,,2181.0,,1614.0,,180.0,,361.0,,38964.0,Includes calls for other benefit programs,8.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.13,Includes calls for other benefit programs +ME,Maine,202410,Y,U,Y,7200.0,,8064.0,,15264.0,,8841.0,,299.0,,9140.0,,140418.0,,353074.0,,327971.0,,25103.0,,212656.0,,1181.0,,2181.0,,1614.0,,180.0,,361.0,,38964.0,Includes calls for other benefit programs,8.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.13,Includes calls for other benefit programs +ME,Maine,202411,Y,P,N,6755.0,,2275.0,,9030.0,,9329.0,,308.0,,9637.0,,138980.0,,345224.0,,320095.0,,25129.0,,206244.0,,1051.0,,393.0,,3066.0,,346.0,,331.0,,31886.0,Includes calls for other benefit programs,13.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.21,Includes calls for other benefit programs +ME,Maine,202411,Y,U,Y,6755.0,,2275.0,,9030.0,,9329.0,,308.0,,9637.0,,140172.0,,348418.0,,327693.0,,20725.0,,208246.0,,1051.0,,393.0,,3066.0,,346.0,,331.0,,31886.0,Includes calls for other benefit programs,13.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.21,Includes calls for other benefit programs +ME,Maine,202412,Y,P,N,6780.0,,2567.0,,9347.0,,8793.0,,70.0,,8863.0,,139252.0,,343018.0,,322306.0,,20712.0,,203766.0,,1102.0,,317.0,,2814.0,,357.0,,337.0,,37081.0,Includes calls for other benefit programs,17.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.21,Includes calls for other benefit programs +ME,Maine,202412,Y,U,Y,6780.0,,2567.0,,9347.0,,8793.0,,70.0,,8863.0,,140219.0,,345763.0,,317702.0,,28061.0,,205544.0,,1102.0,,317.0,,2814.0,,357.0,,337.0,,37081.0,Includes calls for other benefit programs,17.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.21,Includes calls for other benefit programs +ME,Maine,202501,Y,P,N,7446.0,,1479.0,,8925.0,,8734.0,,17.0,,8751.0,,139322.0,,342837.0,,319992.0,,22845.0,,203515.0,,1033.0,,308.0,,1910.0,,280.0,,340.0,,41209.0,Includes calls for other benefit programs,12.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.17,Includes calls for other benefit programs +ME,Maine,202501,Y,U,Y,7446.0,,1479.0,,8925.0,,8734.0,,17.0,,8751.0,,140275.0,,345420.0,,317587.0,,27833.0,,205145.0,,1033.0,,308.0,,1910.0,,280.0,,340.0,,41209.0,Includes calls for other benefit programs,12.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.17,Includes calls for other benefit programs +ME,Maine,202502,Y,P,N,5981.0,,583.0,,6564.0,,7628.0,,213.0,,7841.0,,139430.0,,342604.0,,315312.0,,27292.0,,203174.0,,864.0,,189.0,,1307.0,,252.0,,327.0,,30382.0,Includes calls for other benefit programs,11.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.13,Includes calls for other benefit programs +ME,Maine,202502,Y,U,Y,5981.0,,583.0,,6564.0,,7628.0,,213.0,,7841.0,,140494.0,,345419.0,,318229.0,,27190.0,,204925.0,,864.0,,189.0,,1307.0,,252.0,,327.0,,30382.0,Includes calls for other benefit programs,11.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.13,Includes calls for other benefit programs +ME,Maine,202503,Y,P,N,6283.0,,679.0,,6962.0,,8692.0,,332.0,,9024.0,,140315.0,,344034.0,,316356.0,,27678.0,,203719.0,,943.0,,390.0,,1633.0,,262.0,,369.0,,32468.0,Includes calls for other benefit programs,10.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.15,Includes calls for other benefit programs +ME,Maine,202503,Y,U,Y,6283.0,,679.0,,6962.0,,8692.0,,332.0,,9024.0,,141167.0,,346294.0,,318636.0,,27658.0,,205127.0,,943.0,,390.0,,1633.0,,262.0,,369.0,,32468.0,Includes calls for other benefit programs,10.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.15,Includes calls for other benefit programs +ME,Maine,202504,Y,P,N,6094.0,,612.0,,6706.0,,8689.0,,241.0,,8930.0,,140553.0,,343711.0,,316277.0,,27434.0,,203158.0,,1049.0,,1386.0,,824.0,,148.0,,291.0,,29803.0,Includes calls for other benefit programs,9.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.16,Includes calls for other benefit programs +ME,Maine,202504,Y,U,Y,6094.0,,612.0,,6706.0,,8689.0,,241.0,,8930.0,,141243.0,,345544.0,,318177.0,,27367.0,,204301.0,,1049.0,,1386.0,,824.0,,148.0,,291.0,,29803.0,Includes calls for other benefit programs,9.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.16,Includes calls for other benefit programs +ME,Maine,202505,Y,P,N,6463.0,,537.0,,7000.0,,8809.0,,262.0,,9071.0,,140600.0,,342828.0,,315417.0,,27411.0,,202228.0,,1062.0,,1479.0,,852.0,,142.0,,296.0,,29631.0,Includes calls for other benefit programs,8.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.16,Includes calls for other benefit programs +ME,Maine,202505,Y,U,Y,6463.0,,537.0,,7000.0,,8809.0,,262.0,,9071.0,,141279.0,,344515.0,,317135.0,,27380.0,,203236.0,,1062.0,,1479.0,,852.0,,142.0,,296.0,,29631.0,Includes calls for other benefit programs,8.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.16,Includes calls for other benefit programs +ME,Maine,202506,Y,P,N,5991.0,,513.0,,6504.0,,7812.0,,239.0,,8051.0,,140517.0,,341847.0,,314443.0,,27404.0,,201330.0,,952.0,,1316.0,,868.0,,150.0,,256.0,,27675.0,Includes calls for other benefit programs,9.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.15,Includes calls for other benefit programs +ME,Maine,202506,Y,U,Y,5991.0,,513.0,,6504.0,,7812.0,,239.0,,8051.0,,141046.0,,343303.0,,315919.0,,27384.0,,202257.0,,952.0,,1316.0,,868.0,,150.0,,256.0,,27675.0,Includes calls for other benefit programs,9.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.15,Includes calls for other benefit programs +ME,Maine,202507,Y,P,N,6402.0,,587.0,,6989.0,,6824.0,,170.0,,6994.0,,140518.0,,341323.0,,313715.0,,27608.0,,200805.0,,957.0,,800.0,,517.0,,192.0,,272.0,,30187.0,Includes calls for other benefit programs,11.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.18,Includes calls for other benefit programs +ME,Maine,202507,Y,U,Y,6402.0,,587.0,,6989.0,,6824.0,,170.0,,6994.0,,141215.0,,343220.0,,315529.0,,27691.0,,202005.0,,957.0,,800.0,,517.0,,192.0,,272.0,,30187.0,Includes calls for other benefit programs,11.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.18,Includes calls for other benefit programs +ME,Maine,202508,Y,P,N,6014.0,,581.0,,6595.0,,7408.0,,202.0,,7610.0,,140559.0,,341281.0,,313680.0,,27601.0,,200722.0,,908.0,,790.0,,627.0,,220.0,,316.0,,41785.0,Includes calls for other benefit programs,9.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.21,Includes calls for other benefit programs +ME,Maine,202508,Y,U,Y,6014.0,,581.0,,6595.0,,7408.0,,202.0,,7610.0,,141304.0,,343306.0,,315678.0,,27628.0,,202002.0,,908.0,,790.0,,627.0,,220.0,,316.0,,41785.0,Includes calls for other benefit programs,9.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.21,Includes calls for other benefit programs +ME,Maine,202509,Y,P,N,6246.0,,623.0,,6869.0,,7232.0,,191.0,,7423.0,,140280.0,,340411.0,,312910.0,,27501.0,,200131.0,,791.0,,294.0,,1004.0,,161.0,,364.0,,48991.0,Includes calls for other benefit programs,12.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.27,Includes calls for other benefit programs +ME,Maine,202509,Y,U,Y,6246.0,,623.0,,6869.0,,7232.0,,191.0,,7423.0,,141103.0,,342717.0,,315226.0,,27491.0,,201614.0,,791.0,,294.0,,1004.0,,161.0,,364.0,,48991.0,Includes calls for other benefit programs,12.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.27,Includes calls for other benefit programs +ME,Maine,202510,Y,P,N,6426.0,,7893.0,,14319.0,,8212.0,,220.0,,8432.0,,139804.0,,339689.0,,312151.0,,27538.0,,199885.0,,804.0,,239.0,,1319.0,,203.0,,428.0,,48096.0,Includes calls for other benefit programs,10.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.26,Includes calls for other benefit programs +MI,Michigan,201309,N,U,Y,,,,,,,,,,,,,,,1912009.0,,,,,,,,,,,,,,,,,,,,,,, +MI,Michigan,201706,Y,P,N,45276.0,,0.0,,45276.0,,45597.0,Does Not Include All MAGI Determinations Made At Application; Includes Renewals and/or Redeterminations,1179.0,,46776.0,,946477.0,Does Not Include All Full-Benefit Child Medicaid enrollees,2352671.0,Does Not Include All Full-Benefit Medicaid enrollees,2298261.0,Does Not Include All Full-Benefit Medicaid enrollees,54410.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,201706,Y,U,Y,45302.0,,0.0,,45302.0,,45567.0,Does Not Include All MAGI Determinations Made At Application; Includes Renewals and/or Redeterminations,1176.0,,46743.0,,957724.0,Does Not Include All Full-Benefit Child Medicaid enrollees,2378157.0,Does Not Include All Full-Benefit Medicaid enrollees,2322920.0,Does Not Include All Full-Benefit Medicaid enrollees,55237.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,201707,Y,P,N,43214.0,,0.0,,43214.0,,42696.0,Does Not Include All MAGI Determinations Made At Application; Includes Renewals and/or Redeterminations,1017.0,,43713.0,,949277.0,Does Not Include All Full-Benefit Child Medicaid enrollees,2358312.0,Does Not Include All Full-Benefit Medicaid enrollees,2304688.0,Does Not Include All Full-Benefit Medicaid enrollees,53624.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,201707,Y,U,Y,44384.0,,0.0,,44384.0,,42618.0,Does Not Include All MAGI Determinations Made At Application; Includes Renewals and/or Redeterminations,1013.0,,43631.0,,959107.0,Does Not Include All Full-Benefit Child Medicaid enrollees,2380232.0,Does Not Include All Full-Benefit Medicaid enrollees,2325893.0,Does Not Include All Full-Benefit Medicaid enrollees,54339.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,201708,Y,P,N,50959.0,,0.0,,50959.0,,50779.0,Does Not Include All MAGI Determinations Made At Application; Includes Renewals and/or Redeterminations,1298.0,,52077.0,,949234.0,Does Not Include All Full-Benefit Child Medicaid enrollees,2358347.0,Does Not Include All Full-Benefit Medicaid enrollees,2304359.0,Does Not Include All Full-Benefit Medicaid enrollees,53988.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,201708,Y,U,Y,50975.0,,0.0,,50975.0,,50831.0,Does Not Include All MAGI Determinations Made At Application; Includes Renewals and/or Redeterminations,1292.0,,52123.0,,961785.0,Does Not Include All Full-Benefit Child Medicaid enrollees,2385647.0,Does Not Include All Full-Benefit Medicaid enrollees,2330756.0,Does Not Include All Full-Benefit Medicaid enrollees,54891.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,201709,Y,P,N,50975.0,,0.0,,50975.0,,52731.0,Does Not Include All MAGI Determinations Made At Application; Includes Renewals and/or Redeterminations,1420.0,,54151.0,,937275.0,Does Not Include All Full-Benefit Child Medicaid enrollees,2329908.0,Does Not Include All Full-Benefit Medicaid enrollees,2275872.0,Does Not Include All Full-Benefit Medicaid enrollees,54036.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,201709,Y,U,Y,50997.0,,0.0,,50997.0,,52493.0,Does Not Include All MAGI Determinations Made At Application; Includes Renewals and/or Redeterminations,1429.0,,53922.0,,949687.0,Does Not Include All Full-Benefit Child Medicaid enrollees,2356366.0,Does Not Include All Full-Benefit Medicaid enrollees,2301349.0,Does Not Include All Full-Benefit Medicaid enrollees,55017.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,201710,Y,P,N,53484.0,,0.0,,53484.0,,54188.0,Does Not Include All MAGI Determinations Made At Application; Includes Renewals and/or Redeterminations,1521.0,,55709.0,,939490.0,Does Not Include All Full-Benefit Child Medicaid enrollees,2332263.0,Does Not Include All Full-Benefit Medicaid enrollees,2277156.0,Does Not Include All Full-Benefit Medicaid enrollees,55107.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,201710,Y,U,Y,53485.0,,0.0,,53485.0,,53994.0,,1522.0,,55516.0,,951229.0,,2356831.0,,2300676.0,,56155.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,201711,Y,P,N,50303.0,,0.0,,50303.0,,56525.0,,1727.0,,58252.0,,939619.0,,2335650.0,,2279465.0,,56185.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,201711,Y,U,Y,50249.0,,0.0,,50249.0,,57437.0,,1758.0,,59195.0,,949024.0,,2357576.0,,2300482.0,,57094.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,201712,Y,P,N,43431.0,,0.0,,43431.0,,52473.0,,1595.0,,54068.0,,937775.0,,2338919.0,,2282827.0,,56092.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,201712,Y,U,Y,44809.0,,0.0,,44809.0,,53232.0,,1609.0,,54841.0,,950347.0,,2366223.0,,2308978.0,,57245.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,201801,Y,P,N,52877.0,,0.0,,52877.0,,53337.0,,1476.0,,54813.0,,940832.0,,2346905.0,,2290801.0,,56104.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,201801,Y,U,Y,52844.0,,0.0,,52844.0,,53498.0,,1480.0,,54978.0,,951391.0,,2376844.0,,2319734.0,,57110.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,201802,Y,P,N,43175.0,,0.0,,43175.0,,42626.0,,1291.0,,43917.0,,940072.0,,2352612.0,,2297075.0,,55537.0,,,,19068.0,,14132.0,,11896.0,,3852.0,,777.0,,,,,,, +MI,Michigan,201802,Y,U,Y,43172.0,,0.0,,43172.0,,42819.0,,1288.0,,44107.0,,950952.0,,2381797.0,,2325253.0,,56544.0,,,,19096.0,,14268.0,,11892.0,,3847.0,,779.0,,,,,,, +MI,Michigan,201803,Y,P,N,47261.0,,0.0,,47261.0,,47242.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,1430.0,,48672.0,,940313.0,,2357199.0,,2301892.0,,55307.0,,,,21476.0,,15702.0,,12363.0,,4294.0,,572.0,,,,,,, +MI,Michigan,201803,Y,U,Y,47270.0,,0.0,,47270.0,,47295.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,1438.0,,48733.0,,951242.0,,2381578.0,,2325348.0,,56230.0,,,,21469.0,,15764.0,,12360.0,,4293.0,,570.0,,,,,,, +MI,Michigan,201804,Y,P,N,49873.0,,0.0,,49873.0,,45428.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,1353.0,,46781.0,,940418.0,,2353624.0,,2298377.0,,55247.0,,,,21582.0,,14566.0,,11421.0,,3416.0,,501.0,,,,,,, +MI,Michigan,201804,Y,U,Y,49884.0,,0.0,,49884.0,,45508.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,1361.0,,46869.0,,949817.0,,2373421.0,,2317301.0,,56120.0,,,,21577.0,,14667.0,,11407.0,,3414.0,,502.0,,,,,,, +MI,Michigan,201805,Y,P,N,49485.0,,0.0,,49485.0,,46967.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,1408.0,,48375.0,,938839.0,,2342896.0,,2287675.0,,55221.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,201805,Y,U,Y,49495.0,,0.0,,49495.0,,47270.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,1415.0,,48685.0,,948989.0,,2364929.0,,2308845.0,,56084.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,201806,Y,P,N,47258.0,,0.0,,47258.0,,44583.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,1290.0,,45873.0,,938712.0,,2333174.0,,2277856.0,,55318.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,201806,Y,U,Y,47255.0,,0.0,,47255.0,,44623.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,1288.0,,45911.0,,949507.0,,2357089.0,,2300894.0,,56195.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,201807,Y,P,N,50188.0,,0.0,,50188.0,,46448.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,1312.0,,47760.0,,940692.0,,2332229.0,,2276438.0,,55791.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,201807,Y,U,Y,51260.0,,0.0,,51260.0,,46497.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,1312.0,,47809.0,,951807.0,,2355527.0,,2298825.0,,56702.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,201808,Y,P,N,55192.0,,0.0,,55192.0,,51393.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,1624.0,,53017.0,,941735.0,,2328236.0,,2271923.0,,56313.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,201808,Y,U,Y,55194.0,,0.0,,55194.0,,51429.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,1621.0,,53050.0,,952887.0,,2352398.0,,2295085.0,,57313.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,201809,Y,P,N,48583.0,,0.0,,48583.0,,43575.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,1417.0,,44992.0,,942700.0,,2326692.0,,2269853.0,,56839.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,201809,Y,U,Y,48586.0,,0.0,,48586.0,,43613.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,1406.0,,45019.0,,952171.0,,2347955.0,,2290217.0,,57738.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,201810,Y,P,N,54655.0,,0.0,,54655.0,,46476.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,1575.0,,48051.0,,941370.0,,2322414.0,,2264883.0,,57531.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,201810,Y,U,Y,54656.0,,0.0,,54656.0,,46494.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,1573.0,,48067.0,,952378.0,,2346180.0,,2287591.0,,58589.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,201811,Y,P,N,49290.0,,0.0,,49290.0,,45771.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,1770.0,,47541.0,,938189.0,,2309439.0,,2250893.0,,58546.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,201811,Y,U,Y,49278.0,,0.0,,49278.0,,45883.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,1775.0,,47658.0,,948513.0,,2334785.0,,2274958.0,,59827.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,201812,Y,P,N,46225.0,,0.0,,46225.0,,46475.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,1992.0,,48467.0,,937547.0,,2313223.0,,2253663.0,,59560.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,201812,Y,U,Y,47116.0,,0.0,,47116.0,,46469.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,1989.0,,48458.0,,948635.0,,2333409.0,,2272586.0,,60823.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,201901,Y,P,N,50653.0,,0.0,,50653.0,,46378.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,1745.0,,48123.0,,938268.0,,2309960.0,,2248618.0,,61342.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,201901,Y,U,Y,50661.0,,0.0,,50661.0,,46450.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,1748.0,,48198.0,,948359.0,,2335095.0,,2272598.0,,62497.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,201902,Y,P,N,44669.0,,0.0,,44669.0,,43084.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,1693.0,,44777.0,,945240.0,,2330059.0,,2269832.0,,60227.0,,,,17086.0,,12574.0,,13328.0,,6101.0,,6093.0,,,,,,, +MI,Michigan,201902,Y,U,Y,44693.0,,0.0,,44693.0,,43120.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,1687.0,,44807.0,,956102.0,,2356612.0,,2295266.0,,61346.0,,,,17108.0,,12778.0,,13303.0,,6095.0,,6086.0,,,,,,, +MI,Michigan,201903,Y,P,N,52541.0,,0.0,,52541.0,,47272.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,1758.0,,49030.0,,939996.0,,2319604.0,,2258836.0,,60768.0,,,,19903.0,,15367.0,,14365.0,,4646.0,,1810.0,,,,,,, +MI,Michigan,201903,Y,U,Y,53684.0,,0.0,,53684.0,,47343.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,1750.0,,49093.0,,951440.0,,2347936.0,,2285967.0,,61969.0,,,,19902.0,,15441.0,,14345.0,,4643.0,,1806.0,,,,,,, +MI,Michigan,201904,Y,P,N,55951.0,,0.0,,55951.0,,52406.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,1827.0,,54233.0,,935432.0,,2309099.0,,2248270.0,,60829.0,,,,23634.0,,16239.0,,16088.0,,4526.0,,818.0,,,,,,, +MI,Michigan,201904,Y,U,Y,56872.0,,0.0,,56872.0,,52569.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,1838.0,,54407.0,,946267.0,,2334794.0,,2272953.0,,61841.0,,,,23566.0,,16461.0,,16074.0,,4526.0,,819.0,,,,,,, +MI,Michigan,201905,Y,P,N,56874.0,,0.0,,56874.0,,52925.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,1889.0,,54814.0,,929034.0,,2289512.0,,2229451.0,,60061.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,201905,Y,U,Y,56894.0,,0.0,,56894.0,,52945.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,1875.0,,54820.0,,941439.0,,2318205.0,,2256923.0,,61282.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,201906,Y,P,N,53496.0,,0.0,,53496.0,,49545.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,1740.0,,51285.0,,924773.0,,2278391.0,,2217663.0,,60728.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,201906,Y,U,Y,54431.0,,0.0,,54431.0,,49624.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,1735.0,,51359.0,,936814.0,,2305833.0,,2244066.0,,61767.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,201907,Y,P,N,60354.0,,0.0,,60354.0,,56034.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,1869.0,,57903.0,,922505.0,,2271646.0,,2209905.0,,61741.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,201907,Y,U,Y,60367.0,,0.0,,60367.0,,56156.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,1858.0,,58014.0,,937799.0,,2305227.0,,2242127.0,,63100.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,201908,Y,P,N,61205.0,,0.0,,61205.0,,57409.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,2030.0,,59439.0,,926579.0,,2276875.0,,2213235.0,,63640.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,201908,Y,U,Y,61212.0,,0.0,,61212.0,,57505.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,2025.0,,59530.0,,936048.0,,2297921.0,,2233415.0,,64506.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,201909,Y,P,N,55502.0,,0.0,,55502.0,,50830.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,1826.0,,52656.0,,926078.0,,2276341.0,,2212064.0,,64277.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,201909,Y,U,Y,56803.0,,0.0,,56803.0,,50990.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,1832.0,,52822.0,,938977.0,,2305079.0,,2239555.0,,65524.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,201910,Y,P,N,61190.0,,0.0,,61190.0,,55290.0,,2096.0,,57386.0,,929052.0,,2283411.0,,2218417.0,,64994.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,201910,Y,U,Y,61184.0,,0.0,,61184.0,,55362.0,,2094.0,,57456.0,,939546.0,,2307060.0,,2240854.0,,66206.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,201911,Y,P,N,51528.0,,0.0,,51528.0,,50124.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,2234.0,,52358.0,,928762.0,,2284611.0,,2219198.0,,65413.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,201911,Y,U,Y,51527.0,,0.0,,51527.0,,50206.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,2238.0,,52444.0,,939828.0,,2309976.0,,2242956.0,,67020.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,201912,Y,P,N,51629.0,,0.0,,51629.0,,52755.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,2581.0,,55336.0,,929196.0,,2291616.0,,2225531.0,,66085.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,201912,Y,U,Y,51601.0,,0.0,,51601.0,,52835.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,2578.0,,55413.0,,941178.0,,2320304.0,,2252826.0,,67478.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,202001,Y,P,N,60769.0,,0.0,,60769.0,,55178.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,2161.0,,57339.0,,929980.0,,2297189.0,,2229589.0,,67600.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,202001,Y,U,Y,60669.0,,0.0,,60669.0,,56449.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,2206.0,,58655.0,,943018.0,,2327041.0,,2258126.0,,68915.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,202002,Y,P,N,50955.0,,0.0,,50955.0,,45040.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,1832.0,,46872.0,,931546.0,,2300008.0,,2234180.0,,65828.0,,,,20136.0,,13393.0,,14368.0,,4725.0,,1017.0,,,,,,, +MI,Michigan,202002,Y,U,Y,50956.0,,0.0,,50956.0,,45078.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,1819.0,,46897.0,,944233.0,,2330401.0,,2263269.0,,67132.0,,,,20163.0,,13423.0,,14339.0,,4714.0,,1014.0,,,,,,, +MI,Michigan,202003,Y,P,N,60346.0,,0.0,,60346.0,,52311.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,1902.0,,54213.0,,935576.0,Does Not Include All Full-Benefit Child Medicaid enrollees,2317725.0,,2251988.0,,65737.0,,,,22479.0,,17785.0,,14672.0,,4835.0,,851.0,,,,,,, +MI,Michigan,202003,Y,U,Y,60349.0,,0.0,,60349.0,,52508.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,1901.0,,54409.0,,950844.0,,2356557.0,,2289482.0,,67075.0,,,,22512.0,,17923.0,,14649.0,,4828.0,,854.0,,,,,,, +MI,Michigan,202004,Y,P,N,66155.0,,0.0,,66155.0,,72810.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,1960.0,,74770.0,,949631.0,,2369658.0,,2304243.0,,65415.0,,,,29032.0,,27356.0,,18310.0,,4884.0,,728.0,,,,,,, +MI,Michigan,202004,Y,U,Y,66163.0,,0.0,,66163.0,,72836.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,1964.0,,74800.0,,957874.0,,2392157.0,,2325994.0,,66163.0,,,,29037.0,,27420.0,,18280.0,,4890.0,,721.0,,,,,,, +MI,Michigan,202005,Y,P,N,35094.0,,0.0,,35094.0,,35626.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,1025.0,,36651.0,,959553.0,,2409863.0,,2349026.0,,60837.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,202005,Y,U,Y,35541.0,,0.0,,35541.0,,35640.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,1024.0,,36664.0,,965431.0,,2425239.0,,2363968.0,,61271.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,202006,Y,P,N,32232.0,,0.0,,32232.0,,27639.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,833.0,,28472.0,,967030.0,,2439425.0,,2380517.0,,58908.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,202006,Y,U,Y,32542.0,,0.0,,32542.0,,27651.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,825.0,,28476.0,,973149.0,,2453888.0,,2394517.0,,59371.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,202007,Y,P,N,33718.0,,0.0,,33718.0,,26661.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,809.0,,27470.0,,975260.0,,2469188.0,,2410519.0,,58669.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,202007,Y,U,Y,33740.0,,0.0,,33740.0,,26655.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,806.0,,27461.0,,983110.0,,2487485.0,,2428196.0,,59289.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,202008,Y,P,N,36143.0,,0.0,,36143.0,,27915.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,793.0,,28708.0,,985812.0,,2505315.0,,2446578.0,,58737.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,202008,Y,U,Y,36147.0,,0.0,,36147.0,,27887.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,794.0,,28681.0,,991690.0,,2520764.0,,2461504.0,,59260.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,202009,Y,P,N,34646.0,,0.0,,34646.0,,28221.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,715.0,,28936.0,,993155.0,,2535419.0,,2476774.0,,58645.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,202009,Y,U,Y,34651.0,,0.0,,34651.0,,28208.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,712.0,,28920.0,,1000215.0,,2552592.0,,2493304.0,,59288.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,202010,Y,P,N,34510.0,,0.0,,34510.0,,28040.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,887.0,,28927.0,,1001426.0,,2566786.0,,2507973.0,,58813.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,202010,Y,U,Y,34511.0,,0.0,,34511.0,,28076.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,886.0,,28962.0,,1008026.0,,2582138.0,,2522737.0,,59401.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,202011,Y,P,N,31602.0,,0.0,,31602.0,,27390.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,898.0,,28288.0,,1009147.0,,2598457.0,,2539473.0,,58984.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,202011,Y,U,Y,32313.0,,0.0,,32313.0,,27372.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,897.0,,28269.0,,1014417.0,,2612876.0,,2553325.0,,59551.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,202012,Y,P,N,30861.0,,0.0,,30861.0,,32037.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,1094.0,,33131.0,,1014562.0,,2630634.0,,2571241.0,,59393.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,202012,Y,U,Y,30842.0,,0.0,,30842.0,,32022.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,1090.0,,33112.0,,1021873.0,,2650886.0,,2590312.0,,60574.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,202101,Y,P,N,29089.0,,0.0,,29089.0,,25906.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,1250.0,,27156.0,,1022752.0,,2660734.0,,2600655.0,,60079.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,202101,Y,U,Y,29736.0,,0.0,,29736.0,,25902.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,1249.0,,27151.0,,1027270.0,,2673268.0,,2612538.0,,60730.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,202102,Y,P,N,24315.0,,0.0,,24315.0,,19843.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,838.0,,20681.0,,1025337.0,,2679819.0,,2618533.0,,61286.0,,,,9092.0,,6199.0,,7404.0,,2947.0,,569.0,,,,,,, +MI,Michigan,202102,Y,U,Y,24833.0,,0.0,,24833.0,,19847.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,838.0,,20685.0,,1029425.0,,2691150.0,,2629323.0,,61827.0,,,,9097.0,,6198.0,,7396.0,,2947.0,,569.0,,,,,,, +MI,Michigan,202103,Y,P,N,26839.0,,0.0,,26839.0,,21435.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,816.0,,22251.0,,1031690.0,,2701132.0,,2638491.0,,62641.0,,,,9970.0,,6064.0,,9924.0,,3044.0,,309.0,,,,,,, +MI,Michigan,202103,Y,U,Y,26834.0,,0.0,,26834.0,,21456.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,814.0,,22270.0,,1035959.0,,2712050.0,,2648881.0,,63169.0,,,,9977.0,,6063.0,,9922.0,,3044.0,,309.0,,,,,,, +MI,Michigan,202104,Y,P,N,24003.0,,0.0,,24003.0,,18876.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,710.0,,19586.0,,1035507.0,,2717834.0,,2653502.0,,64332.0,,,,8944.0,,5655.0,,8818.0,,2589.0,,297.0,,,,,,, +MI,Michigan,202104,Y,U,Y,23987.0,,0.0,,23987.0,,18916.0,,711.0,,19627.0,,1039468.0,,2728077.0,,2663214.0,,64863.0,,,,8951.0,,5658.0,,8822.0,,2593.0,,301.0,,,,,,, +MI,Michigan,202105,Y,P,N,21735.0,,0.0,,21735.0,,16962.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,625.0,,17587.0,,1039452.0,,2733485.0,,2665706.0,,67779.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,202105,Y,U,Y,22442.0,,0.0,,22442.0,,16953.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,625.0,,17578.0,,1043248.0,Does Not Include All Full-Benefit Child Medicaid enrollees,2743108.0,Does Not Include All Full-Benefit Medicaid enrollees,2674875.0,Does Not Include All Full-Benefit Medicaid enrollees,68233.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,202106,Y,P,N,23647.0,,0.0,,23647.0,,18231.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,609.0,,18840.0,,1042867.0,,2748399.0,,2673210.0,,75189.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,202106,Y,U,Y,23658.0,,0.0,,23658.0,,18384.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,628.0,,19012.0,,1047876.0,,2760007.0,,2684273.0,,75734.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,202107,Y,P,N,22868.0,,0.0,,22868.0,,17488.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,633.0,,18121.0,,1048564.0,,2766093.0,,2682130.0,,83963.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,202107,Y,U,Y,22865.0,,0.0,,22865.0,,17520.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,632.0,,18152.0,,1053368.0,,2777203.0,,2692656.0,,84547.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,202108,Y,P,N,24965.0,,0.0,,24965.0,,18984.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,678.0,,19662.0,,1053841.0,,2784658.0,,2696578.0,,88080.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,202108,Y,U,Y,24959.0,,0.0,,24959.0,,18986.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,677.0,,19663.0,,1058814.0,,2795904.0,,2707250.0,,88654.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,202109,Y,P,N,24393.0,,0.0,,24393.0,,18919.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,734.0,,19653.0,,1058615.0,,2801446.0,,2709618.0,,91828.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,202109,Y,U,Y,24399.0,,0.0,,24399.0,,18915.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,735.0,,19650.0,,1064148.0,,2814135.0,,2721656.0,,92479.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,202110,Y,P,N,23626.0,,0.0,,23626.0,,17451.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,625.0,,18076.0,,1063730.0,,2817541.0,,2722606.0,,94935.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,202110,Y,U,Y,24213.0,,0.0,,24213.0,,17462.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,623.0,,18085.0,,1067958.0,,2827706.0,,2732273.0,,95433.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,202111,Y,P,N,23920.0,,0.0,,23920.0,,19111.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,560.0,,19671.0,,1067591.0,,2834328.0,,2736387.0,,97941.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,202111,Y,U,Y,23924.0,,0.0,,23924.0,,19112.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,557.0,,19669.0,,1072792.0,,2847018.0,,2748252.0,,98766.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,202112,Y,P,N,21795.0,,0.0,,21795.0,,21450.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,1093.0,,22543.0,,1072995.0,,2854703.0,,2753743.0,,100960.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,202112,Y,U,Y,21781.0,,0.0,,21781.0,,21449.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,1091.0,,22540.0,,1078499.0,,2868500.0,,2766738.0,,101762.0,,,,,,,,,,,,,,,,,,, +MI,Michigan,202201,Y,P,N,24131.0,,0.0,,24131.0,,22029.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,943.0,,22972.0,,1078822.0,,2875736.0,,2769030.0,,106706.0,,,,9596.0,,7274.0,,7883.0,,8188.0,,1739.0,,,,,,, +MI,Michigan,202201,Y,U,Y,24598.0,,0.0,,24598.0,,22023.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,941.0,,22964.0,,1082861.0,,2886268.0,,2779023.0,,107245.0,,,,9597.0,,7275.0,,7883.0,,8190.0,,1739.0,,,,,,, +MI,Michigan,202202,Y,P,N,19621.0,,0.0,,19621.0,,15108.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,621.0,,15729.0,,1081916.0,,2886883.0,,2777176.0,,109707.0,,,,6399.0,,5204.0,,5484.0,,3727.0,,734.0,,,,,,, +MI,Michigan,202202,Y,U,Y,20034.0,,0.0,,20034.0,,15108.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,620.0,,15728.0,,1086095.0,Does Not Include All Full-Benefit Child Medicaid enrollees,2897787.0,,2787500.0,,110287.0,,,,6402.0,,5203.0,,5481.0,,3723.0,,735.0,,,,,,, +MI,Michigan,202203,Y,P,N,22815.0,,0.0,,22815.0,,16865.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,664.0,,17529.0,,1086278.0,Does Not Include All Full-Benefit Child Medicaid enrollees,2901288.0,,2788790.0,,112498.0,,,,8072.0,,5275.0,,5851.0,,3140.0,,636.0,,,,,,, +MI,Michigan,202203,Y,U,Y,22812.0,,0.0,,22812.0,,16871.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,662.0,,17533.0,,1090290.0,Does Not Include All Full-Benefit Child Medicaid enrollees,2911853.0,,2798843.0,,113010.0,,,,8069.0,,5275.0,,5847.0,,3138.0,,636.0,,,,,,, +MI,Michigan,202204,Y,P,N,20386.0,,0.0,,20386.0,,15227.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,596.0,,15823.0,,1090437.0,Does Not Include All Full-Benefit Child Medicaid enrollees,2915422.0,,2799515.0,,115907.0,,,,7116.0,,4763.0,,5990.0,,2286.0,,723.0,,,,,,, +MI,Michigan,202204,Y,U,Y,20385.0,,0.0,,20385.0,,15229.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,592.0,,15821.0,,1093526.0,Does Not Include All Full-Benefit Child Medicaid enrollees,2924114.0,,2807729.0,,116385.0,,,,7116.0,,4765.0,,5989.0,,2284.0,,723.0,,,,,,, +MI,Michigan,202205,Y,P,N,20052.0,,0.0,,20052.0,,14561.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,612.0,,15173.0,,1093648.0,Does Not Include All Full-Benefit Child Medicaid enrollees,2927845.0,,2809774.0,,118071.0,,,,6968.0,,4667.0,,5428.0,,2059.0,,463.0,,,,,,, +MI,Michigan,202205,Y,U,Y,20455.0,,0.0,,20455.0,,14563.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,614.0,,15177.0,,1097149.0,Does Not Include All Full-Benefit Child Medicaid enrollees,2936453.0,,2817922.0,,118531.0,,,,6965.0,,4658.0,,5434.0,,2060.0,,463.0,,,,,,, +MI,Michigan,202206,Y,P,N,22113.0,,0.0,,22113.0,,15401.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,614.0,,16015.0,,1096671.0,Does Not Include All Full-Benefit Child Medicaid enrollees,2938885.0,,2818610.0,,120275.0,,,,7407.0,,5353.0,,5509.0,,2210.0,,378.0,,,,,,, +MI,Michigan,202206,Y,U,Y,22107.0,,0.0,,22107.0,,15411.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,614.0,,16025.0,,1101035.0,Does Not Include All Full-Benefit Child Medicaid enrollees,2949707.0,,2828907.0,,120800.0,,,,7404.0,,5347.0,,5504.0,,2206.0,,378.0,,,,,,, +MI,Michigan,202207,Y,P,N,21783.0,,0.0,,21783.0,,15390.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,629.0,,16019.0,,1101783.0,Does Not Include All Full-Benefit Child Medicaid enrollees,2955338.0,,2832773.0,,122565.0,,,,6735.0,,5846.0,,5305.0,,2219.0,,357.0,,,,,,, +MI,Michigan,202207,Y,U,Y,22306.0,,0.0,,22306.0,,15390.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,631.0,,16021.0,,1105696.0,Does Not Include All Full-Benefit Child Medicaid enrollees,2965223.0,,2842155.0,,123068.0,,,,6731.0,,5842.0,,5296.0,,2220.0,,356.0,,,,,,, +MI,Michigan,202208,Y,P,N,24561.0,,0.0,,24561.0,,17998.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,724.0,,18722.0,,1106656.0,Does Not Include All Full-Benefit Child Medicaid enrollees,2972061.0,,2847150.0,,124911.0,,,,8700.0,,6004.0,,6426.0,,2750.0,,395.0,,,,,,, +MI,Michigan,202208,Y,U,Y,24871.0,,0.0,,24871.0,,17992.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,725.0,,18717.0,,1111865.0,Does Not Include All Full-Benefit Child Medicaid enrollees,2983721.0,,2858127.0,,125594.0,,,,8695.0,,6005.0,,6416.0,,2754.0,,395.0,,,,,,, +MI,Michigan,202209,Y,P,N,22341.0,,0.0,,22341.0,,16286.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,702.0,,16988.0,,1111747.0,Does Not Include All Full-Benefit Child Medicaid enrollees,2987106.0,,2859026.0,,128080.0,,,,7684.0,,5410.0,,6014.0,,2960.0,,459.0,,,,,,, +MI,Michigan,202209,Y,U,Y,22348.0,,0.0,,22348.0,,16278.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,702.0,,16980.0,,1116631.0,Does Not Include All Full-Benefit Child Medicaid enrollees,2999634.0,,2870736.0,,128898.0,,,,7677.0,,5405.0,,6006.0,,2955.0,,459.0,,,,,,, +MI,Michigan,202210,Y,P,N,23087.0,,0.0,,23087.0,,15955.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,782.0,,16737.0,,1117122.0,Does Not Include All Full-Benefit Child Medicaid enrollees,3005056.0,,2874166.0,,130890.0,,,,7764.0,,5292.0,,5774.0,,2859.0,,506.0,,,,,,, +MI,Michigan,202210,Y,U,Y,23089.0,,0.0,,23089.0,,15943.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,783.0,,16726.0,,1119413.0,Does Not Include All Full-Benefit Child Medicaid enrollees,3010857.0,,2879666.0,,131191.0,,,,7755.0,,5292.0,,5772.0,,2859.0,,507.0,,,,,,, +MI,Michigan,202211,Y,P,N,22686.0,,0.0,,22686.0,,19066.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,914.0,,19980.0,,1119467.0,Does Not Include All Full-Benefit Child Medicaid enrollees,3017254.0,,2884050.0,,133204.0,,,,9032.0,,7180.0,,6866.0,,2850.0,,584.0,,,,,,, +MI,Michigan,202211,Y,U,Y,22688.0,,0.0,,22688.0,,19056.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,911.0,,19967.0,,1123544.0,Does Not Include All Full-Benefit Child Medicaid enrollees,3027925.0,,2894002.0,,133923.0,,,,9026.0,,7175.0,,6858.0,,2849.0,,581.0,,,,,,, +MI,Michigan,202212,Y,P,N,20141.0,,0.0,,20141.0,,19278.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,977.0,,20255.0,,1122977.0,,3034700.0,,2898550.0,,136150.0,,,,9243.0,,6663.0,,7948.0,,5601.0,,1009.0,,,,,,, +MI,Michigan,202212,Y,U,Y,20126.0,,0.0,,20126.0,,19287.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,977.0,,20264.0,,1127948.0,,3048240.0,,2911391.0,,136849.0,,,,9240.0,,6659.0,,7940.0,,5600.0,,1006.0,,,,,,, +MI,Michigan,202301,Y,P,N,23425.0,,0.0,,23425.0,,18879.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,846.0,,19725.0,,1128233.0,,3054477.0,,2915369.0,,139108.0,,,,7414.0,,6617.0,,6841.0,,8133.0,,2511.0,,,,,,, +MI,Michigan,202301,Y,U,Y,23413.0,,0.0,,23413.0,,18866.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,845.0,,19711.0,,1131488.0,,3064192.0,,2924598.0,,139594.0,,,,7410.0,,6612.0,,6834.0,,8132.0,,2513.0,,,,,,, +MI,Michigan,202302,Y,P,N,18973.0,,0.0,,18973.0,,14269.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,576.0,,14845.0,,1130479.0,,3063308.0,,2922132.0,,141176.0,,,,6540.0,,4309.0,,6831.0,,4586.0,,787.0,,,,,,, +MI,Michigan,202302,Y,U,Y,18959.0,,0.0,,18959.0,,15761.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,606.0,,16367.0,,1133693.0,,3072422.0,,2930802.0,,141620.0,,,,6540.0,,4306.0,,6831.0,,4587.0,,783.0,,,,,,, +MI,Michigan,202303,Y,P,N,22208.0,,0.0,,22208.0,,14259.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,576.0,,14835.0,,1133651.0,,3073696.0,,2929863.0,,143833.0,,,,7763.0,,4754.0,,7022.0,,3003.0,,532.0,,148913.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.033,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MI,Michigan,202303,Y,U,Y,22207.0,,0.0,,22207.0,,15766.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,606.0,,16372.0,,1137130.0,,3083695.0,,2939330.0,,144365.0,,,,7763.0,,4751.0,,7014.0,,3000.0,,532.0,,148913.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.033,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MI,Michigan,202304,Y,P,N,20134.0,,0.0,,20134.0,,15251.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,553.0,,15804.0,,1136927.0,,3085022.0,,2939136.0,,145886.0,,,,7118.0,,4575.0,,6231.0,,2212.0,,309.0,,123816.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.022,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MI,Michigan,202304,Y,U,Y,20690.0,,0.0,,20690.0,,15284.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,555.0,,15839.0,,1139565.0,,3093983.0,,2947667.0,,146316.0,,,,7126.0,,4583.0,,6236.0,,2214.0,,307.0,,123816.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.022,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MI,Michigan,202305,Y,P,N,21370.0,,0.0,,21370.0,,15418.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,592.0,,16010.0,,1139514.0,,3096005.0,,2950250.0,,145755.0,,,,7035.0,,10510.0,,6385.0,,2039.0,,365.0,,131206.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.01,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MI,Michigan,202305,Y,U,Y,21374.0,,0.0,,21374.0,,15406.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,591.0,,15997.0,,1142874.0,,3106751.0,,2960370.0,,146381.0,,,,7029.0,,10509.0,,6379.0,,2037.0,,364.0,,131206.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.01,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MI,Michigan,202306,Y,P,N,22042.0,,0.0,,22042.0,,16174.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,539.0,,16713.0,,1143061.0,,3108030.0,,2961313.0,,146717.0,,,,7122.0,,5784.0,,5752.0,,2254.0,,385.0,,133560.0,Does not include all calls received after business hours; Includes calls for other benefit programs,3.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.044,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MI,Michigan,202306,Y,U,Y,22047.0,,0.0,,22047.0,,16154.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,539.0,,16693.0,,1145165.0,,3116760.0,,2969566.0,,147194.0,,,,7119.0,,5775.0,,5748.0,,2255.0,,385.0,,133560.0,Does not include all calls received after business hours; Includes calls for other benefit programs,3.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.044,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MI,Michigan,202307,Y,P,N,25082.0,,0.0,,25082.0,,18039.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,737.0,,18776.0,,1143956.0,,3113849.0,,2964406.0,,149443.0,,,,8191.0,,6485.0,,5558.0,,2475.0,,549.0,,136983.0,Does not include all calls received after business hours; Includes calls for other benefit programs,2.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.027,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MI,Michigan,202307,Y,U,Y,25548.0,,0.0,,25548.0,,18256.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,733.0,,18989.0,,1146407.0,,3127754.0,,2977514.0,,150240.0,,,,8350.0,,6577.0,,5568.0,,2470.0,,546.0,,136983.0,Does not include all calls received after business hours; Includes calls for other benefit programs,2.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.027,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MI,Michigan,202308,Y,P,N,35548.0,,0.0,,35548.0,,23973.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,1455.0,,25428.0,,1123748.0,,3060449.0,,2909305.0,,151144.0,,,,12075.0,,9025.0,,7937.0,,3179.0,,719.0,,170578.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.023,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MI,Michigan,202308,Y,U,Y,35561.0,,0.0,,35561.0,,24181.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,1450.0,,25631.0,,1125644.0,,3069517.0,,2917610.0,,151907.0,,,,12197.0,,9100.0,,7950.0,,3182.0,,719.0,,170578.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.023,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MI,Michigan,202309,Y,P,N,37708.0,,0.0,,37708.0,,24976.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,1633.0,,26609.0,,1098427.0,,2982684.0,,2828825.0,,153859.0,,,,12221.0,,8621.0,,8842.0,,3807.0,,1054.0,,166002.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.017,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MI,Michigan,202309,Y,U,Y,37708.0,,0.0,,37708.0,,25334.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,1627.0,,26961.0,,1103345.0,,3002668.0,,2847366.0,,155302.0,,,,12221.0,,8621.0,,8842.0,,3807.0,,1054.0,,166002.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.017,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MI,Michigan,202310,Y,P,N,47803.0,,0.0,,47803.0,,31075.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,2037.0,,33112.0,,1070119.0,,2904023.0,,2747270.0,,156753.0,,,,15937.0,,11110.0,,9746.0,,4745.0,,1315.0,,190029.0,Does not include all calls received after business hours; Includes calls for other benefit programs,2.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.037,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MI,Michigan,202310,Y,U,Y,47803.0,,0.0,,47803.0,,31554.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,2030.0,,33584.0,,1076797.0,,2923691.0,,2765108.0,,158583.0,,,,15937.0,,11110.0,,9746.0,,4745.0,,1315.0,,190029.0,Does not include all calls received after business hours; Includes calls for other benefit programs,2.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.037,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MI,Michigan,202311,Y,P,N,48139.0,,0.0,,48139.0,,35316.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,2461.0,,37777.0,,1045822.0,,2820691.0,,2659826.0,,160865.0,,,,17176.0,,13879.0,,11359.0,,5595.0,,2231.0,,194854.0,Does not include all calls received after business hours; Includes calls for other benefit programs,3.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.059,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MI,Michigan,202311,Y,U,Y,48139.0,,0.0,,48139.0,,35757.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,2460.0,,38217.0,,1053451.0,,2843915.0,,2680893.0,,163022.0,,,,17176.0,,13879.0,,11359.0,,5595.0,,2231.0,,194854.0,Does not include all calls received after business hours; Includes calls for other benefit programs,3.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.059,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MI,Michigan,202312,Y,P,N,43740.0,,0.0,,43740.0,,35024.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,2497.0,,37521.0,,1030748.0,,2764539.0,,2601799.0,,162740.0,,,,16925.0,,13014.0,,11028.0,,7944.0,,2888.0,,171476.0,Does not include all calls received after business hours; Includes calls for other benefit programs,2.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.037,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MI,Michigan,202312,Y,U,Y,43740.0,,0.0,,43740.0,,35532.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,2490.0,,38022.0,,1037976.0,,2788242.0,,2623327.0,,164915.0,,,,16925.0,,13014.0,,11028.0,,7944.0,,2888.0,,171476.0,Does not include all calls received after business hours; Includes calls for other benefit programs,2.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.037,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MI,Michigan,202401,Y,P,N,56277.0,,0.0,,56277.0,,41267.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,3009.0,,44276.0,,1017873.0,,2710808.0,,2546503.0,,164305.0,,,,17731.0,,15512.0,,12236.0,,14186.0,,5310.0,,214164.0,Does not include all calls received after business hours; Includes calls for other benefit programs,2.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.048,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MI,Michigan,202401,Y,U,Y,56277.0,,0.0,,56277.0,,41859.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,2997.0,,44856.0,,1025026.0,,2735216.0,,2568790.0,,166426.0,,,,17731.0,,15512.0,,12236.0,,14186.0,,5310.0,,214164.0,Does not include all calls received after business hours; Includes calls for other benefit programs,2.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.048,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MI,Michigan,202402,Y,P,N,52021.0,,0.0,,52021.0,,34761.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,2557.0,,37318.0,,1001905.0,,2652901.0,,2485874.0,,167027.0,,,,16429.0,,11875.0,,11675.0,,7722.0,,3398.0,,194243.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.035,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MI,Michigan,202402,Y,U,Y,52021.0,,0.0,,52021.0,,35371.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,2545.0,,37916.0,,1010229.0,,2680833.0,,2511218.0,,169615.0,,,,16429.0,,11875.0,,11675.0,,7722.0,,3398.0,,194243.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.035,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MI,Michigan,202403,Y,P,N,52031.0,,0.0,,52031.0,,36784.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,2779.0,,39563.0,,988357.0,,2602767.0,,2437011.0,,165756.0,,,,18687.0,,11188.0,,12317.0,,7509.0,,2896.0,,176001.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.022,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MI,Michigan,202403,Y,U,Y,52031.0,,0.0,,52031.0,,37347.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,2766.0,,40113.0,,996161.0,,2628793.0,,2460791.0,,168002.0,,,,18687.0,,11188.0,,12317.0,,7509.0,,2896.0,,176001.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.022,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MI,Michigan,202404,Y,P,N,57134.0,,0.0,,57134.0,,38578.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,2768.0,,41346.0,,972572.0,,2540906.0,,2374687.0,,166219.0,,,,19611.0,,12521.0,,13964.0,,5957.0,,1719.0,,180067.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.02,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MI,Michigan,202404,Y,U,Y,57134.0,,0.0,,57134.0,,39174.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,2769.0,,41943.0,,979613.0,,2565242.0,,2397123.0,,168119.0,,,,19611.0,,12521.0,,13964.0,,5957.0,,1719.0,,180067.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.02,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MI,Michigan,202405,Y,P,N,57283.0,,0.0,,57283.0,,39736.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,2897.0,,42633.0,,952434.0,,2460925.0,,2298055.0,,162870.0,,,,19848.0,,13153.0,,15231.0,,5966.0,,1310.0,,163809.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.005,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MI,Michigan,202405,Y,U,Y,57283.0,,0.0,,57283.0,,40283.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,2878.0,,43161.0,,959611.0,,2482925.0,,2318292.0,,164633.0,,,,19848.0,,13153.0,,15231.0,,5966.0,,1310.0,,163809.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.005,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MI,Michigan,202406,Y,P,N,52860.0,,0.0,,52860.0,,34813.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,2479.0,,37292.0,,930835.0,,2387100.0,,2227525.0,,159575.0,,,,15721.0,,12730.0,,12696.0,,5223.0,,1251.0,,139635.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.005,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MI,Michigan,202406,Y,U,Y,52860.0,,0.0,,52860.0,,35322.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,2469.0,,37791.0,,940210.0,,2414136.0,,2252419.0,,161717.0,,,,15721.0,,12730.0,,12696.0,,5223.0,,1251.0,,139635.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.005,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MI,Michigan,202407,Y,P,N,59301.0,,0.0,,59301.0,,41397.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,3010.0,,44407.0,,916370.0,,2344131.0,,2186478.0,,157653.0,,1427761.0,,19536.0,,13425.0,,16093.0,,7134.0,,1728.0,,154373.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.005,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MI,Michigan,202407,Y,U,Y,59301.0,,0.0,,59301.0,,41999.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,3001.0,,45000.0,,927388.0,,2374185.0,,2213997.0,,160188.0,,1446797.0,,19536.0,,13425.0,,16093.0,,7134.0,,1728.0,,154373.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.005,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MI,Michigan,202408,Y,P,N,54400.0,,0.0,,54400.0,,38266.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,2857.0,,41123.0,,921898.0,,2356461.0,,2197550.0,,158911.0,,1434563.0,,18489.0,,12115.0,,15581.0,,5477.0,,1077.0,,157299.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.005,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MI,Michigan,202408,Y,U,Y,54400.0,,0.0,,54400.0,,38707.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,2844.0,,41551.0,,931788.0,,2384694.0,,2223535.0,,161159.0,,1452906.0,,18489.0,,12115.0,,15581.0,,5477.0,,1077.0,,157299.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.005,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MI,Michigan,202409,Y,P,N,50932.0,,0.0,,50932.0,,36152.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,2682.0,,38834.0,,924877.0,,2364457.0,,2199397.0,,165060.0,,1439580.0,,17138.0,,12092.0,,14970.0,,5601.0,,1370.0,,184969.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.029,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MI,Michigan,202409,Y,U,Y,50932.0,,0.0,,50932.0,,36519.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,2675.0,,39194.0,,933562.0,,2389705.0,,2222773.0,,166932.0,,1456143.0,,17138.0,,12092.0,,14970.0,,5601.0,,1370.0,,184969.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.029,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MI,Michigan,202410,Y,P,N,55841.0,,0.0,,55841.0,,37829.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,2641.0,,40470.0,,924548.0,,2364114.0,,2196410.0,,167704.0,,1439566.0,,19576.0,,11952.0,,14591.0,,5323.0,,970.0,,172714.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.003,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MI,Michigan,202410,Y,U,Y,55841.0,,0.0,,55841.0,,38310.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,2627.0,,40937.0,,932587.0,,2386752.0,,2217219.0,,169533.0,,1454165.0,,19576.0,,11952.0,,14591.0,,5323.0,,970.0,,172714.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.003,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MI,Michigan,202411,Y,P,N,50332.0,,0.0,,50332.0,,35923.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,2707.0,,38630.0,,921186.0,,2357921.0,,2188259.0,,169662.0,,1436735.0,,17159.0,,13837.0,,13552.0,,4632.0,,1284.0,,146186.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.003,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MI,Michigan,202411,Y,U,Y,50332.0,,0.0,,50332.0,,36428.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,2696.0,,39124.0,,930212.0,,2384295.0,,2212397.0,,171898.0,,1454083.0,,17159.0,,13837.0,,13552.0,,4632.0,,1284.0,,146186.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.003,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MI,Michigan,202412,Y,P,N,47901.0,,0.0,,47901.0,,40337.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,2963.0,,43300.0,,920955.0,,2365011.0,,2194067.0,,170944.0,,1444056.0,,16948.0,,16963.0,,14541.0,,9738.0,,2669.0,,145395.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.014,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MI,Michigan,202412,Y,U,Y,47901.0,,0.0,,47901.0,,40694.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,2943.0,,43637.0,,930979.0,,2395841.0,,2222494.0,,173347.0,,1464862.0,,16948.0,,16963.0,,14541.0,,9738.0,,2669.0,,145395.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.014,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MI,Michigan,202501,Y,P,N,56118.0,,0.0,,56118.0,,43581.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,3085.0,,46666.0,,923569.0,,2377422.0,,2204237.0,,173185.0,,1453853.0,,20058.0,,14386.0,,15163.0,,16805.0,,4489.0,,192301.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.006,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MI,Michigan,202501,Y,U,Y,56118.0,,0.0,,56118.0,,43817.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,3074.0,,46891.0,,932296.0,,2405020.0,,2229690.0,,175330.0,,1472724.0,,20058.0,,14386.0,,15163.0,,16805.0,,4489.0,,192301.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.006,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MI,Michigan,202502,Y,P,N,45373.0,,0.0,,45373.0,,34527.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,2446.0,,36973.0,,923366.0,,2376206.0,,2202339.0,,173867.0,,1452840.0,,14924.0,,10703.0,,16190.0,,8772.0,,2289.0,,160087.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.013,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MI,Michigan,202502,Y,U,Y,45373.0,,0.0,,45373.0,,34734.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,2435.0,,37169.0,,931117.0,,2402378.0,,2226546.0,,175832.0,,1471261.0,,14924.0,,10703.0,,16190.0,,8772.0,,2289.0,,160087.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.013,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MI,Michigan,202503,Y,P,N,47915.0,,0.0,,47915.0,,34937.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,2493.0,,37430.0,,922434.0,,2374908.0,,2200295.0,,174613.0,,1452474.0,,16936.0,,10262.0,,17250.0,,4978.0,,1413.0,,161198.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.014,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MI,Michigan,202503,Y,U,Y,47915.0,,0.0,,47915.0,,35137.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,2482.0,,37619.0,,929703.0,,2397016.0,,2220841.0,,176175.0,,1467313.0,,16936.0,,10262.0,,17250.0,,4978.0,,1413.0,,161198.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.014,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MI,Michigan,202504,Y,P,N,50226.0,,0.0,,50226.0,,35757.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,2503.0,,38260.0,,918398.0,,2359222.0,,2185208.0,,174014.0,,1440824.0,,18013.0,,10812.0,,18088.0,,2763.0,,615.0,,158320.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.017,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MI,Michigan,202504,Y,U,Y,50226.0,,0.0,,50226.0,,36045.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,2488.0,,38533.0,,926476.0,,2384020.0,,2208236.0,,175784.0,,1457544.0,,18013.0,,10812.0,,18088.0,,2763.0,,615.0,,158320.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.017,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MI,Michigan,202505,Y,P,N,49147.0,,0.0,,49147.0,,34870.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,2378.0,,37248.0,,915765.0,,2348322.0,,2176658.0,,171664.0,,1432557.0,,17694.0,,10620.0,,16449.0,,2965.0,,464.0,,147582.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.014,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MI,Michigan,202505,Y,U,Y,49147.0,,0.0,,49147.0,,35076.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,2373.0,,37449.0,,921916.0,,2367798.0,,2194757.0,,173041.0,,1445882.0,,17694.0,,10620.0,,16449.0,,2965.0,,464.0,,147582.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.014,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MI,Michigan,202506,Y,P,N,47406.0,,0.0,,47406.0,,33532.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,2243.0,,35775.0,,911735.0,,2335526.0,,2165058.0,,170468.0,,1423791.0,,15818.0,,11500.0,,16124.0,,2853.0,,559.0,,134283.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.009,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MI,Michigan,202506,Y,U,Y,47406.0,,0.0,,47406.0,,33683.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,2218.0,,35901.0,,918790.0,,2356885.0,,2184986.0,,171899.0,,1438095.0,,15818.0,,11500.0,,16124.0,,2853.0,,559.0,,134283.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.009,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MI,Michigan,202507,Y,P,N,52067.0,,0.0,,52067.0,,36942.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,2517.0,,39459.0,,908322.0,,2324469.0,,2155478.0,,168991.0,,1416147.0,,17324.0,,12044.0,,17807.0,,3113.0,,621.0,,145378.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.017,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MI,Michigan,202507,Y,U,Y,52067.0,,0.0,,52067.0,,37146.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,2499.0,,39645.0,,916551.0,,2349132.0,,2178393.0,,170739.0,,1432581.0,,17324.0,,12044.0,,17807.0,,3113.0,,621.0,,145378.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.017,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MI,Michigan,202508,Y,P,N,49953.0,,0.0,,49953.0,,35358.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,2465.0,,37823.0,,908160.0,,2323530.0,,2154636.0,,168894.0,,1415370.0,,16199.0,,11948.0,,16697.0,,3331.0,,647.0,,138509.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.018,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MI,Michigan,202508,Y,U,Y,49953.0,,0.0,,49953.0,,35509.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,2458.0,,37967.0,,917093.0,,2349062.0,,2178293.0,,170769.0,,1431969.0,,16199.0,,11948.0,,16697.0,,3331.0,,647.0,,138509.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.018,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MI,Michigan,202509,Y,P,N,50684.0,,0.0,,50684.0,,36994.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,2587.0,,39581.0,,908188.0,,2324379.0,,2155035.0,,169344.0,,1416191.0,,17848.0,,11437.0,,18631.0,,3392.0,,856.0,,144987.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.02,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MI,Michigan,202509,Y,U,Y,50684.0,,0.0,,50684.0,,37143.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,2580.0,,39723.0,,915178.0,,2345745.0,,2174909.0,,170836.0,,1430567.0,,17848.0,,11437.0,,18631.0,,3392.0,,856.0,,144987.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.02,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MI,Michigan,202510,Y,P,N,53588.0,,0.0,,53588.0,,37188.0,Includes Renewals and/or Redeterminations; Does Not Include All MAGI Determinations Made At Application,2733.0,,39921.0,,894501.0,,2289229.0,,2122659.0,,166570.0,,1394728.0,,18889.0,,10483.0,,18576.0,,3145.0,,641.0,,143678.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.016,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MN,Minnesota,201309,N,U,Y,,,,,,,,,,,,,,,873040.0,,,,,,,,,,,,,,,,,,,,,,, +MN,Minnesota,201706,Y,P,N,4718.0,,21376.0,,26094.0,,30783.0,,62.0,,30845.0,,512522.0,,1043268.0,,1041926.0,,1342.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,201706,Y,U,Y,6261.0,,23977.0,,30238.0,,30783.0,,62.0,,30845.0,,522394.0,,1061615.0,,1060153.0,,1462.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,201707,Y,P,N,4116.0,,19716.0,,23832.0,,26556.0,,38.0,,26594.0,,512579.0,,1044472.0,,1043165.0,,1307.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,201707,Y,U,Y,5702.0,,22013.0,,27715.0,,26556.0,,38.0,,26594.0,,523949.0,,1065061.0,,1063615.0,,1446.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,201708,Y,P,N,5084.0,,22883.0,,27967.0,,32764.0,,53.0,,32817.0,,516398.0,,1051344.0,,1050004.0,,1340.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,201708,Y,U,Y,6512.0,,25203.0,,31715.0,,32764.0,,53.0,,32817.0,,526622.0,,1070241.0,,1068782.0,,1459.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,201709,Y,P,N,4229.0,,17503.0,,21732.0,,22636.0,,52.0,,22688.0,,516176.0,,1050169.0,,1048818.0,,1351.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,201709,Y,U,Y,5754.0,,19648.0,,25402.0,,22636.0,,52.0,,22688.0,,526690.0,,1069823.0,,1068342.0,,1481.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,201710,Y,P,N,5038.0,,17806.0,,22844.0,,19753.0,,55.0,,19808.0,,520508.0,,1055491.0,,1054176.0,,1315.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,201710,Y,U,Y,6327.0,,19265.0,,25592.0,,19753.0,,55.0,,19808.0,,529392.0,,1074467.0,,1073042.0,,1425.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,201711,Y,P,N,4287.0,,30948.0,,35235.0,,22489.0,,35.0,,22524.0,,521823.0,,1060941.0,,1059667.0,,1274.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,201711,Y,U,Y,5552.0,,34176.0,,39728.0,,22489.0,,35.0,,22524.0,,528493.0,,1075335.0,,1073984.0,,1351.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,201712,Y,P,N,3883.0,,36824.0,,40707.0,,20935.0,,39.0,,20974.0,,522150.0,,1060478.0,,1059214.0,,1264.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,201712,Y,U,Y,5500.0,,41554.0,,47054.0,,20935.0,,39.0,,20974.0,,533361.0,,1082484.0,,1081053.0,,1431.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,201801,Y,P,N,4600.0,,31777.0,,36377.0,,26336.0,,59.0,,26395.0,,523457.0,,1060455.0,,1059166.0,,1289.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,201801,Y,U,Y,6015.0,,36382.0,,42397.0,,26336.0,,59.0,,26395.0,,534227.0,,1081301.0,,1079881.0,,1420.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,201802,Y,P,N,4150.0,,19223.0,,23373.0,,19600.0,,43.0,,19643.0,,525808.0,,1062278.0,,1061005.0,,1273.0,,,,7941.0,Does not include all MAGI determinations on applications,4650.0,Does not include all MAGI determinations on applications,3273.0,Does not include all MAGI determinations on applications,0.0,Does not include all MAGI determinations on applications,0.0,Does not include all MAGI determinations on applications,,,,,, +MN,Minnesota,201802,Y,U,Y,5552.0,,21430.0,,26982.0,,19600.0,,43.0,,19643.0,,535773.0,,1081559.0,,1080142.0,,1417.0,,,,7941.0,Does not include all MAGI determinations on applications,4650.0,Does not include all MAGI determinations on applications,3273.0,Does not include all MAGI determinations on applications,0.0,Does not include all MAGI determinations on applications,0.0,Does not include all MAGI determinations on applications,,,,,, +MN,Minnesota,201803,Y,P,N,4722.0,,19092.0,,23814.0,,20241.0,,50.0,,20291.0,,527814.0,,1064347.0,,1063087.0,,1260.0,,,,8535.0,Does not include all MAGI determinations on applications,5018.0,Does not include all MAGI determinations on applications,3726.0,Does not include all MAGI determinations on applications,0.0,Does not include all MAGI determinations on applications,0.0,Does not include all MAGI determinations on applications,,,,,, +MN,Minnesota,201803,Y,U,Y,6208.0,,21783.0,,27991.0,,20241.0,,50.0,,20291.0,,537762.0,,1083760.0,,1082370.0,,1390.0,,,,8535.0,Does not include all MAGI determinations on applications,5018.0,Does not include all MAGI determinations on applications,3726.0,Does not include all MAGI determinations on applications,0.0,Does not include all MAGI determinations on applications,0.0,Does not include all MAGI determinations on applications,,,,,, +MN,Minnesota,201804,Y,P,N,4669.0,,17118.0,,21787.0,,18747.0,,58.0,,18805.0,,530590.0,,1067999.0,,1066794.0,,1205.0,,,,8116.0,Does not include all MAGI determinations on applications,5273.0,Does not include all MAGI determinations on applications,3594.0,Does not include all MAGI determinations on applications,0.0,Does not include all MAGI determinations on applications,0.0,Does not include all MAGI determinations on applications,,,,,, +MN,Minnesota,201804,Y,U,Y,6223.0,,19094.0,,25317.0,,18747.0,,58.0,,18805.0,,539074.0,,1085100.0,,1083766.0,,1334.0,,,,8116.0,Does not include all MAGI determinations on applications,5273.0,Does not include all MAGI determinations on applications,3594.0,Does not include all MAGI determinations on applications,0.0,Does not include all MAGI determinations on applications,0.0,Does not include all MAGI determinations on applications,,,,,, +MN,Minnesota,201805,Y,P,N,4945.0,,17419.0,,22364.0,,18501.0,,62.0,,18563.0,,532615.0,,1070497.0,,1069268.0,,1229.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,201805,Y,U,Y,6327.0,,18077.0,,24404.0,,18501.0,,62.0,,18563.0,,540215.0,,1085201.0,,1083872.0,,1329.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,201806,Y,P,N,4584.0,,15017.0,,19601.0,,16687.0,,48.0,,16735.0,,534069.0,,1071405.0,,1070211.0,,1194.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,201806,Y,U,Y,6046.0,,17013.0,,23059.0,,16687.0,,48.0,,16735.0,,541356.0,,1086788.0,,1085485.0,,1303.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,201807,Y,P,N,4630.0,,16268.0,,20898.0,,18874.0,,55.0,,18929.0,,533315.0,,1070221.0,,1069033.0,,1188.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,201807,Y,U,Y,5889.0,,18362.0,,24251.0,,18874.0,,55.0,,18929.0,,541212.0,,1086267.0,,1084950.0,,1317.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,201808,Y,P,N,4821.0,,18177.0,,22998.0,,21764.0,,37.0,,21801.0,,532526.0,,1067746.0,,1066555.0,,1191.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,201808,Y,U,Y,6258.0,,20591.0,,26849.0,,21764.0,,37.0,,21801.0,,539927.0,,1082325.0,,1081047.0,,1278.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,201809,Y,P,N,3939.0,,14961.0,,18900.0,,16949.0,,37.0,,16986.0,,531435.0,,1063017.0,,1061829.0,,1188.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,201809,Y,U,Y,5207.0,,17272.0,,22479.0,,16949.0,,37.0,,16986.0,,540055.0,,1079754.0,,1078453.0,,1301.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,201810,Y,P,N,5016.0,,16989.0,,22005.0,,18117.0,,58.0,,18175.0,,530737.0,,1057893.0,,1056759.0,,1134.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,201810,Y,U,Y,6367.0,,19044.0,,25411.0,,18117.0,,58.0,,18175.0,,538526.0,,1073312.0,,1072090.0,,1222.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,201811,Y,P,N,4048.0,,30302.0,,34350.0,,24056.0,,33.0,,24089.0,,526763.0,,1050064.0,,1048999.0,,1065.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,201811,Y,U,Y,5559.0,,34916.0,,40475.0,,24056.0,,33.0,,24089.0,,536947.0,,1070989.0,,1069785.0,,1204.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,201812,Y,P,N,3777.0,,31677.0,,35454.0,,21715.0,,35.0,,21750.0,,523017.0,,1043936.0,,1042880.0,,1056.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,201812,Y,U,Y,5366.0,,38298.0,,43664.0,,21715.0,,35.0,,21750.0,,536246.0,,1069346.0,,1068121.0,,1225.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,201901,Y,P,N,4790.0,,31053.0,,35843.0,,28089.0,,52.0,,28141.0,,520508.0,,1037867.0,,1036809.0,,1058.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,201901,Y,U,Y,6058.0,,35177.0,,41235.0,,28089.0,,52.0,,28141.0,,530557.0,,1057747.0,,1056536.0,,1211.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,201902,Y,P,N,4004.0,,17432.0,,21436.0,,19333.0,,43.0,,19376.0,,518346.0,,1032336.0,,1031236.0,,1100.0,,,,9697.0,,5125.0,,3612.0,,0.0,,0.0,,,,,,, +MN,Minnesota,201902,Y,U,Y,5183.0,,20433.0,,25616.0,,19333.0,,43.0,,19376.0,,529254.0,,1053901.0,,1052631.0,,1270.0,,,,9697.0,,5125.0,,3612.0,,0.0,,0.0,,,,,,, +MN,Minnesota,201903,Y,P,N,4851.0,,19350.0,,24201.0,,22062.0,,49.0,,22111.0,,517861.0,,1030336.0,,1029225.0,,1111.0,,,,10636.0,,5725.0,,4421.0,,0.0,,0.0,,,,,,, +MN,Minnesota,201903,Y,U,Y,6284.0,,22346.0,,28630.0,,22062.0,,49.0,,22111.0,,528027.0,,1050156.0,,1048892.0,,1264.0,,,,10636.0,,5725.0,,4421.0,,0.0,,0.0,,,,,,, +MN,Minnesota,201904,Y,P,N,5002.0,,17768.0,,22770.0,,19544.0,,61.0,,19605.0,,519533.0,,1031888.0,,1030761.0,,1127.0,,,,9351.0,,4752.0,,4292.0,,0.0,,0.0,,,,,,, +MN,Minnesota,201904,Y,U,Y,6260.0,,20112.0,,26372.0,,19544.0,,61.0,,19605.0,,528925.0,,1050235.0,,1048979.0,,1256.0,,,,9351.0,,4752.0,,4292.0,,0.0,,0.0,,,,,,, +MN,Minnesota,201905,Y,P,N,4714.0,,16432.0,,21146.0,,18751.0,,48.0,,18799.0,,519768.0,,1030084.0,,1028956.0,,1128.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,201905,Y,U,Y,6144.0,,19279.0,,25423.0,,18751.0,,48.0,,18799.0,,528293.0,,1047145.0,,1045879.0,,1266.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,201906,Y,P,N,4366.0,,15128.0,,19494.0,,16449.0,,49.0,,16498.0,,519503.0,,1027314.0,,1026164.0,,1150.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,201906,Y,U,Y,5589.0,,16897.0,,22486.0,,16449.0,,49.0,,16498.0,,528384.0,,1045238.0,,1043957.0,,1281.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,201907,Y,P,N,4709.0,,16290.0,,20999.0,,18460.0,,67.0,,18527.0,,521503.0,,1030758.0,,1029591.0,,1167.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,201907,Y,U,Y,5970.0,,18350.0,,24320.0,,18460.0,,67.0,,18527.0,,528982.0,,1046325.0,,1045036.0,,1289.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,201908,Y,P,N,4488.0,,15973.0,,20461.0,,18598.0,,69.0,,18667.0,,520235.0,,1026989.0,,1025812.0,,1177.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,201908,Y,U,Y,5968.0,,18563.0,,24531.0,,18598.0,,69.0,,18667.0,,530339.0,,1047075.0,,1045767.0,,1308.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,201909,Y,P,N,4201.0,,15812.0,,20013.0,,18361.0,,54.0,,18415.0,,521582.0,,1027876.0,,1026711.0,,1165.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,201909,Y,U,Y,5584.0,,18044.0,,23628.0,,18361.0,,54.0,,18415.0,,529880.0,,1044529.0,,1043233.0,,1296.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,201910,Y,P,N,5181.0,,16846.0,,22027.0,,18361.0,,63.0,,18424.0,,523202.0,,1029329.0,,1028059.0,,1270.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,201910,Y,U,Y,6732.0,,19390.0,,26122.0,,18361.0,,63.0,,18424.0,,530404.0,,1044497.0,,1043130.0,,1367.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,201911,Y,P,N,4022.0,,24061.0,,28083.0,,17916.0,,18.0,,17934.0,,518557.0,,1020355.0,,1019160.0,,1195.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,201911,Y,U,Y,5601.0,,27281.0,,32882.0,,17916.0,,18.0,,17934.0,,528011.0,,1039954.0,,1038648.0,,1306.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,201912,Y,P,N,4526.0,,33270.0,,37796.0,,21088.0,,59.0,,21147.0,,518639.0,,1020753.0,,1019502.0,,1251.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,201912,Y,U,Y,6310.0,,38162.0,,44472.0,,21088.0,,59.0,,21147.0,,530100.0,,1044160.0,,1042758.0,,1402.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,202001,Y,P,N,5080.0,,22833.0,,27913.0,,24244.0,,68.0,,24312.0,,519947.0,,1021507.0,,1020197.0,,1310.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,202001,Y,U,Y,6919.0,,25691.0,,32610.0,,24244.0,,68.0,,24312.0,,529331.0,,1040843.0,,1039392.0,,1451.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,202002,Y,P,N,4377.0,,16480.0,,20857.0,,17136.0,,50.0,,17186.0,,521101.0,,1022649.0,,1021326.0,,1323.0,,,,8491.0,,4525.0,,4712.0,,0.0,,0.0,,,,,,, +MN,Minnesota,202002,Y,U,Y,6242.0,,19431.0,,25673.0,,17136.0,,50.0,,17186.0,,530743.0,,1044409.0,,1042929.0,,1480.0,,,,8491.0,,4525.0,,4712.0,,0.0,,0.0,,,,,,, +MN,Minnesota,202003,Y,P,N,4722.0,,23929.0,,28651.0,,20712.0,,56.0,,20768.0,,523851.0,,1031434.0,,1030076.0,,1358.0,,,,9863.0,,5087.0,,4649.0,,0.0,,0.0,,,,,,, +MN,Minnesota,202003,Y,U,Y,5835.0,,25033.0,,30868.0,,20712.0,,56.0,,20768.0,,531322.0,,1047688.0,,1046218.0,,1470.0,,,,9863.0,,5087.0,,4649.0,,0.0,,0.0,,,,,,, +MN,Minnesota,202004,Y,P,N,3390.0,,22405.0,,25795.0,,15157.0,,42.0,,15199.0,,532897.0,,1055804.0,,1054348.0,,1456.0,,,,8374.0,,3463.0,,2810.0,,0.0,,0.0,,,,,,, +MN,Minnesota,202004,Y,U,Y,4235.0,,23415.0,,27650.0,,15157.0,,42.0,,15199.0,,538360.0,,1067455.0,,1065889.0,,1566.0,,,,8374.0,,3463.0,,2810.0,,0.0,,0.0,,,,,,, +MN,Minnesota,202005,Y,P,N,2810.0,,11221.0,,14031.0,,9521.0,,46.0,,9567.0,,538994.0,,1071683.0,,1070086.0,,1597.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,202005,Y,U,Y,3592.0,,11842.0,,15434.0,,9521.0,,46.0,,9567.0,,543470.0,,1081190.0,,1079490.0,,1700.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,202006,Y,P,N,3303.0,,12356.0,,15659.0,,10547.0,,47.0,,10594.0,,544528.0,,1085778.0,,1084069.0,,1709.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,202006,Y,U,Y,4128.0,,13068.0,,17196.0,,10547.0,,47.0,,10594.0,,548595.0,,1094130.0,,1092298.0,,1832.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,202007,Y,P,N,3211.0,,13067.0,,16278.0,,10342.0,,52.0,,10394.0,,549229.0,,1099289.0,,1097704.0,,1585.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,202007,Y,U,Y,4190.0,,14080.0,,18270.0,,10342.0,,52.0,,10394.0,,553597.0,,1108531.0,,1106840.0,,1691.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,202008,Y,P,N,3302.0,,12875.0,,16177.0,,10348.0,,54.0,,10402.0,,554691.0,,1113911.0,,1112491.0,,1420.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,202008,Y,U,Y,4253.0,,13767.0,,18020.0,,10348.0,,54.0,,10402.0,,558839.0,,1122557.0,,1121042.0,,1515.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,202009,Y,P,N,3357.0,,12211.0,,15568.0,,10453.0,,48.0,,10501.0,,559644.0,,1126414.0,,1125122.0,,1292.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,202009,Y,U,Y,4332.0,,13153.0,,17485.0,,10453.0,,48.0,,10501.0,,563470.0,,1134193.0,,1132794.0,,1399.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,202010,Y,P,N,3537.0,,12093.0,,15630.0,,9779.0,,19.0,,9798.0,,563767.0,,1137441.0,,1136255.0,,1186.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,202010,Y,U,Y,4670.0,,13142.0,,17812.0,,9779.0,,19.0,,9798.0,,567647.0,,1146104.0,,1144795.0,,1309.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,202011,Y,P,N,3100.0,,18800.0,,21900.0,,9230.0,,20.0,,9250.0,,567527.0,,1148255.0,,1147077.0,,1178.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,202011,Y,U,Y,4124.0,,19694.0,,23818.0,,9230.0,,20.0,,9250.0,,571877.0,,1158186.0,,1156909.0,,1277.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,202012,Y,P,N,3309.0,,26494.0,,29803.0,,13767.0,,34.0,,13801.0,,573368.0,,1164018.0,,1162816.0,,1202.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,202012,Y,U,Y,4546.0,,28246.0,,32792.0,,13767.0,,34.0,,13801.0,,577567.0,,1173856.0,,1172518.0,,1338.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,202101,Y,P,N,3244.0,,11012.0,,14256.0,,9161.0,,0.0,,9161.0,,576663.0,,1177259.0,,1176115.0,,1144.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,202101,Y,U,Y,4338.0,,11831.0,,16169.0,,9161.0,,0.0,,9161.0,,580417.0,,1185566.0,,1184347.0,,1219.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,202102,Y,P,N,3446.0,,11537.0,,14983.0,,8795.0,,13.0,,8808.0,,579970.0,,1186826.0,,1185674.0,,1152.0,,,,4330.0,,2278.0,,1450.0,,0.0,,0.0,,,,,,, +MN,Minnesota,202102,Y,U,Y,4416.0,,12312.0,,16728.0,,8795.0,,13.0,,8808.0,,583646.0,,1194775.0,,1193548.0,,1227.0,,,,4330.0,,2278.0,,1450.0,,0.0,,0.0,,,,,,, +MN,Minnesota,202103,Y,P,N,3973.0,,13105.0,,17078.0,,9738.0,,15.0,,9753.0,,583309.0,,1197185.0,,1196096.0,,1089.0,,,,4854.0,,2231.0,,1882.0,,0.0,,0.0,,,,,,, +MN,Minnesota,202103,Y,U,Y,4944.0,,13910.0,,18854.0,,9738.0,,15.0,,9753.0,,586513.0,,1204033.0,,1202754.0,,1279.0,,,,4854.0,,2231.0,,1882.0,,0.0,,0.0,,,,,,, +MN,Minnesota,202104,Y,P,N,3449.0,,11234.0,,14683.0,,8508.0,,8.0,,8516.0,,586232.0,,1206134.0,,1204932.0,,1202.0,,,,4571.0,,1887.0,,1492.0,,0.0,,0.0,,,,,,, +MN,Minnesota,202104,Y,U,Y,4334.0,,12628.0,,16962.0,,8508.0,,8.0,,8516.0,,589505.0,,1212987.0,,1211694.0,,1293.0,,,,4571.0,,1887.0,,1492.0,,0.0,,0.0,,,,,,, +MN,Minnesota,202105,Y,P,N,3161.0,,10457.0,,13618.0,,7975.0,,6.0,,7981.0,,588645.0,,1214107.0,,1212920.0,,1187.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,202105,Y,U,Y,4034.0,,11267.0,,15301.0,,7975.0,,6.0,,7981.0,,592055.0,,1220864.0,,1219565.0,,1299.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,202106,Y,P,N,3619.0,,11176.0,,14795.0,,8821.0,,8.0,,8829.0,,591832.0,,1223015.0,,1221692.0,,1323.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,202106,Y,U,Y,4574.0,,11995.0,,16569.0,,8821.0,,8.0,,8829.0,,594870.0,,1229027.0,,1227581.0,,1446.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,202107,Y,P,N,3239.0,,11916.0,,15155.0,,8258.0,,18.0,,8276.0,,594946.0,,1231976.0,,1230698.0,,1278.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,202107,Y,U,Y,4346.0,,12831.0,,17177.0,,8258.0,,18.0,,8276.0,,598708.0,,1239326.0,,1237935.0,,1391.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,202108,Y,P,N,3425.0,,11465.0,,14890.0,,8564.0,,15.0,,8579.0,,598608.0,,1240800.0,,1239512.0,,1288.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,202108,Y,U,Y,4465.0,,12222.0,,16687.0,,8564.0,,15.0,,8579.0,,601308.0,,1247150.0,,1245749.0,,1401.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,202109,Y,P,N,3245.0,,9977.0,,13222.0,,7849.0,,15.0,,7864.0,,600270.0,,1247455.0,,1246158.0,,1297.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,202109,Y,U,Y,4356.0,,11094.0,,15450.0,,7849.0,,15.0,,7864.0,,603986.0,,1254409.0,,1253013.0,,1396.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,202110,Y,P,N,3237.0,,10608.0,,13845.0,,8979.0,,9.0,,8988.0,,602384.0,,1254201.0,,1252839.0,,1362.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,202110,Y,U,Y,4345.0,,11789.0,,16134.0,,8979.0,,9.0,,8988.0,,605830.0,,1261625.0,,1260118.0,,1507.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,202111,Y,P,N,3033.0,,16148.0,,19181.0,,8573.0,,83.0,,8656.0,,604794.0,,1261710.0,,1260372.0,,1338.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,202111,Y,U,Y,4167.0,,17082.0,,21249.0,,8573.0,,83.0,,8656.0,,608531.0,,1269137.0,,1267686.0,,1451.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,202112,Y,P,N,2916.0,,18270.0,,21186.0,,9375.0,,73.0,,9448.0,,607575.0,,1270290.0,,1268942.0,,1348.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,202112,Y,U,Y,4142.0,,19384.0,,23526.0,,9375.0,,73.0,,9448.0,,611784.0,,1278802.0,,1277284.0,,1518.0,,,,,,,,,,,,,,,,,,, +MN,Minnesota,202201,Y,P,N,3253.0,,14591.0,,17844.0,,9102.0,,101.0,,9203.0,,610801.0,,1280971.0,,1279566.0,,1405.0,,,,4755.0,,1857.0,,1774.0,,0.0,,0.0,,,,,,, +MN,Minnesota,202201,Y,U,Y,4421.0,,15271.0,,19692.0,,9102.0,,101.0,,9203.0,,614396.0,,1288019.0,,1286470.0,,1549.0,,,,4755.0,,1857.0,,1774.0,,0.0,,0.0,,,,,,, +MN,Minnesota,202202,Y,P,N,2945.0,,8615.0,,11560.0,,7258.0,,99.0,,7357.0,,613287.0,,1287576.0,,1286125.0,,1451.0,,,,3555.0,,1440.0,,1447.0,,0.0,,0.0,,,,,,, +MN,Minnesota,202202,Y,U,Y,4095.0,,9336.0,,13431.0,,7258.0,,99.0,,7357.0,,617176.0,,1295234.0,,1293643.0,,1591.0,,,,3555.0,,1440.0,,1447.0,,0.0,,0.0,,,,,,, +MN,Minnesota,202203,Y,P,N,3656.0,,9583.0,,13239.0,,8437.0,,98.0,,8535.0,,616198.0,,1296284.0,,1294750.0,,1534.0,,,,3955.0,,1845.0,,1819.0,,0.0,,0.0,,,,,,, +MN,Minnesota,202203,Y,U,Y,4756.0,,10365.0,,15121.0,,8437.0,,98.0,,8535.0,,619196.0,,1302484.0,,1300846.0,,1638.0,,,,3955.0,,1845.0,,1819.0,,0.0,,0.0,,,,,,, +MN,Minnesota,202204,Y,P,N,3188.0,,8384.0,,11572.0,,7211.0,,83.0,,7294.0,,618152.0,,1303297.0,,1301760.0,,1537.0,,,,3536.0,,1518.0,,1562.0,,0.0,,0.0,,,,,,, +MN,Minnesota,202204,Y,U,Y,4294.0,,9173.0,,13467.0,,7211.0,,83.0,,7294.0,,621230.0,,1309322.0,,1307660.0,,1662.0,,,,3536.0,,1518.0,,1562.0,,0.0,,0.0,,,,,,, +MN,Minnesota,202205,Y,P,N,3089.0,,8214.0,,11303.0,,7390.0,,91.0,,7481.0,,619849.0,,1309700.0,,1308172.0,,1528.0,,,,3505.0,,1446.0,,1433.0,,0.0,,0.0,,,,,,, +MN,Minnesota,202205,Y,U,Y,4080.0,,8994.0,,13074.0,,7390.0,,91.0,,7481.0,,622846.0,,1315330.0,,1313663.0,,1667.0,,,,3505.0,,1446.0,,1433.0,,0.0,,0.0,,,,,,, +MN,Minnesota,202206,Y,P,N,3324.0,,8329.0,,11653.0,,7445.0,,98.0,,7543.0,,621677.0,,1316213.0,,1314663.0,,1550.0,,,,3481.0,,1441.0,,1540.0,,0.0,,0.0,,,,,,, +MN,Minnesota,202206,Y,U,Y,4443.0,,9257.0,,13700.0,,7445.0,,98.0,,7543.0,,624388.0,,1321602.0,,1320107.0,,1495.0,,,,3481.0,,1441.0,,1540.0,,0.0,,0.0,,,,,,, +MN,Minnesota,202207,Y,P,N,3088.0,,8621.0,,11709.0,,7404.0,,94.0,,7498.0,,624187.0,,1325848.0,,1324114.0,,1734.0,,,,3355.0,,1575.0,,1446.0,,0.0,,0.0,,,,,,, +MN,Minnesota,202207,Y,U,Y,4210.0,,9201.0,,13411.0,,7404.0,,94.0,,7498.0,,627522.0,,1332742.0,,1330785.0,,1957.0,,,,3355.0,,1575.0,,1446.0,,0.0,,0.0,,,,,,, +MN,Minnesota,202208,Y,P,N,3579.0,,9686.0,,13265.0,,9048.0,,91.0,,9139.0,,627465.0,,1335705.0,,1333708.0,,1997.0,,,,3938.0,,1855.0,,2073.0,,0.0,,0.0,,,,,,, +MN,Minnesota,202208,Y,U,Y,4686.0,,10525.0,,15211.0,,9048.0,,91.0,,9139.0,,630323.0,,1342340.0,,1340239.0,,2101.0,,,,3938.0,,1855.0,,2073.0,,0.0,,0.0,,,,,,, +MN,Minnesota,202209,Y,P,N,3078.0,,8861.0,,11939.0,,6738.0,,82.0,,6820.0,,628852.0,,1342561.0,,1340460.0,,2101.0,,,,3039.0,,1575.0,,1383.0,,0.0,,0.0,,,,,,, +MN,Minnesota,202209,Y,U,Y,4235.0,,9782.0,,14017.0,,6738.0,,82.0,,6820.0,,630556.0,,1347511.0,,1345364.0,,2147.0,,,,3039.0,,1575.0,,1393.0,,0.0,,0.0,,,,,,, +MN,Minnesota,202210,Y,P,N,3024.0,,8908.0,,11932.0,,7392.0,,98.0,,7490.0,,636988.0,,1366216.0,,1363673.0,,2543.0,,,,3324.0,,1693.0,,1448.0,,0.0,,0.0,,,,,,, +MN,Minnesota,202210,Y,U,Y,4192.0,,9552.0,,13744.0,,7392.0,,98.0,,7490.0,,636988.0,,1366216.0,,1363673.0,,2543.0,,,,3324.0,,1693.0,,1448.0,,0.0,,0.0,,,,,,, +MN,Minnesota,202211,Y,P,N,2990.0,,15476.0,,18466.0,,8027.0,,120.0,,8147.0,,637858.0,,1370796.0,,1368169.0,,2627.0,,,,4089.0,,1592.0,,1353.0,,0.0,,0.0,,,,,,, +MN,Minnesota,202211,Y,U,Y,4024.0,,16138.0,,20162.0,,8027.0,,120.0,,8147.0,,637858.0,,1370796.0,,1368169.0,,2627.0,,,,4089.0,,1592.0,,1353.0,,0.0,,0.0,,,,,,, +MN,Minnesota,202212,Y,P,N,2909.0,,17352.0,,20261.0,,8638.0,,120.0,,8758.0,,637409.0,,1373387.0,,1370706.0,,2681.0,,,,4476.0,,1610.0,,1606.0,,0.0,,0.0,,,,,,, +MN,Minnesota,202212,Y,U,Y,4129.0,,18354.0,,22483.0,,8638.0,,120.0,,8758.0,,641211.0,,1380680.0,,1377837.0,,2843.0,,,,4476.0,,1610.0,,1606.0,,0.0,,0.0,,,,,,, +MN,Minnesota,202301,Y,P,N,3152.0,,14857.0,,18009.0,,9363.0,,125.0,,9488.0,,639954.0,,1383268.0,,1380378.0,,2890.0,,,,4786.0,,1807.0,,1724.0,,0.0,,0.0,,,,,,, +MN,Minnesota,202301,Y,U,Y,4290.0,,15765.0,,20055.0,,9363.0,,125.0,,9488.0,,642979.0,,1388972.0,,1385954.0,,3018.0,,,,4786.0,,1807.0,,1724.0,,0.0,,0.0,,,,,,, +MN,Minnesota,202302,Y,P,N,2772.0,,8079.0,,10851.0,,6857.0,,94.0,,6951.0,,641493.0,,1388749.0,,1385699.0,,3050.0,,,,3285.0,,1246.0,,1308.0,,0.0,,0.0,,,,,,, +MN,Minnesota,202302,Y,U,Y,3943.0,,8874.0,,12817.0,,6857.0,,94.0,,6951.0,,644854.0,,1395209.0,,1391938.0,,3271.0,,,,3285.0,,1246.0,,1308.0,,0.0,,0.0,,,,,,, +MN,Minnesota,202303,Y,P,N,3501.0,,9850.0,,13351.0,,8434.0,,135.0,,8569.0,,643674.0,,1396343.0,,1393030.0,,3313.0,,,,3934.0,,1637.0,,1820.0,,0.0,,0.0,,20170.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.04,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +MN,Minnesota,202303,Y,U,Y,4645.0,,10653.0,,15298.0,,8434.0,,135.0,,8569.0,,646725.0,,1401973.0,,1398501.0,,3472.0,,,,3934.0,,1637.0,,1820.0,,0.0,,0.0,,20170.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.04,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +MN,Minnesota,202304,Y,P,N,3943.0,,9027.0,,12970.0,,6699.0,,111.0,,6810.0,,645479.0,,1402189.0,,1398707.0,,3482.0,,,,2993.0,,1459.0,,1437.0,,0.0,,0.0,,17296.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.05,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +MN,Minnesota,202304,Y,U,Y,3943.0,,9027.0,,12970.0,,6699.0,,111.0,,6810.0,,648385.0,,1407583.0,,1403919.0,,3664.0,,,,2993.0,,1459.0,,1437.0,,0.0,,0.0,,17296.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.05,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +MN,Minnesota,202305,Y,P,N,4181.0,,10219.0,,14400.0,,7550.0,,126.0,,7676.0,,647219.0,,1408551.0,,1404867.0,,3684.0,,,,3492.0,,1694.0,,1570.0,,0.0,,0.0,,22765.0,Does not include all calls received by call centers; Does not include all calls received after business hours,3.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.12,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +MN,Minnesota,202305,Y,U,Y,4181.0,,10219.0,,14400.0,,7550.0,,126.0,,7676.0,,649731.0,,1413651.0,,1409823.0,,3828.0,,,,3492.0,,1694.0,,1570.0,,0.0,,0.0,,22765.0,Does not include all calls received by call centers; Does not include all calls received after business hours,3.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.12,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +MN,Minnesota,202306,Y,P,N,4291.0,,11807.0,,16098.0,,7637.0,,110.0,,7747.0,,648352.0,,1414100.0,,1410362.0,,3738.0,,,,3691.0,,1491.0,,1567.0,,0.0,,0.0,,21844.0,Does not include all calls received by call centers; Does not include all calls received after business hours,6.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.18,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +MN,Minnesota,202306,Y,U,Y,4291.0,,11807.0,,16098.0,,7637.0,,110.0,,7747.0,,651257.0,,1419620.0,,1415709.0,,3911.0,,,,3691.0,,1491.0,,1567.0,,0.0,,0.0,,21844.0,Does not include all calls received by call centers; Does not include all calls received after business hours,6.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.18,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +MN,Minnesota,202307,Y,P,N,4203.0,,12842.0,,17045.0,,8639.0,,101.0,,8740.0,,641463.0,,1401089.0,,1397352.0,,3737.0,,,,4056.0,,1635.0,,1586.0,,0.0,,0.0,,23537.0,Does not include all calls received by call centers; Does not include all calls received after business hours,7.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.19,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +MN,Minnesota,202307,Y,U,Y,4203.0,,12842.0,,17045.0,,8639.0,,101.0,,8740.0,,645288.0,,1408658.0,,1404793.0,,3865.0,,,,4056.0,,1635.0,,1586.0,,0.0,,0.0,,23537.0,Does not include all calls received by call centers; Does not include all calls received after business hours,7.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.19,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +MN,Minnesota,202308,Y,P,N,4723.0,,17079.0,,21802.0,,12161.0,,101.0,,12262.0,,631690.0,,1377009.0,,1373247.0,,3762.0,,,,5551.0,,2744.0,,2528.0,,0.0,,0.0,,16146.0,Does not include all calls received by call centers; Does not include all calls received after business hours,4.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.13,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +MN,Minnesota,202308,Y,U,Y,4723.0,,17079.0,,21802.0,,12161.0,,101.0,,12262.0,,636219.0,,1388325.0,,1384284.0,,4041.0,,,,5551.0,,2744.0,,2528.0,,0.0,,0.0,,16146.0,Does not include all calls received by call centers; Does not include all calls received after business hours,4.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.13,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +MN,Minnesota,202309,Y,P,N,4400.0,,14953.0,,19353.0,,9107.0,,75.0,,9182.0,,620303.0,,1350775.0,,1346786.0,,3989.0,,,,4651.0,,2108.0,,1823.0,,0.0,,0.0,,16379.0,Does not include all calls received by call centers; Does not include all calls received after business hours,5.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.15,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +MN,Minnesota,202309,Y,U,Y,4400.0,,14953.0,,19353.0,,9107.0,,75.0,,9182.0,,626785.0,,1361860.0,,1357871.0,,3989.0,,,,4651.0,,2108.0,,1823.0,,0.0,,0.0,,16379.0,Does not include all calls received by call centers; Does not include all calls received after business hours,5.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.15,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +MN,Minnesota,202310,Y,P,N,4731.0,,15474.0,,20205.0,,9291.0,,122.0,,9413.0,,612452.0,,1327676.0,,1323809.0,,3867.0,,,,4839.0,,2165.0,,1846.0,,0.0,,0.0,,27769.0,Does not include all calls received by call centers; Does not include all calls received after business hours,8.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.2,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +MN,Minnesota,202310,Y,U,Y,4731.0,,15474.0,,20205.0,,9291.0,,122.0,,9413.0,,627762.0,,1351052.0,,1346874.0,,4178.0,,,,4839.0,,2165.0,,1846.0,,0.0,,0.0,,27769.0,Does not include all calls received by call centers; Does not include all calls received after business hours,8.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.2,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +MN,Minnesota,202311,Y,P,N,4332.0,,22198.0,,26530.0,,9274.0,,90.0,,9364.0,,624021.0,,1342443.0,,1338417.0,,4026.0,,,,5498.0,,1822.0,,1787.0,,0.0,,0.0,,19465.0,Does not include all calls received by call centers; Does not include all calls received after business hours,17.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.3,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +MN,Minnesota,202311,Y,U,Y,4332.0,,22198.0,,26530.0,,9274.0,,90.0,,9364.0,,629476.0,,1354173.0,,1349961.0,,4212.0,,,,5498.0,,1822.0,,1787.0,,0.0,,0.0,,19465.0,Does not include all calls received by call centers; Does not include all calls received after business hours,17.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.3,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +MN,Minnesota,202312,Y,P,N,4461.0,,26743.0,,31204.0,,9941.0,,98.0,,10039.0,,625843.0,,1346134.0,,1342072.0,,4062.0,,,,5895.0,,2015.0,,2039.0,,0.0,,0.0,,20218.0,Does not include all calls received by call centers; Does not include all calls received after business hours,20.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.31,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +MN,Minnesota,202312,Y,U,Y,4461.0,,26743.0,,31204.0,,9941.0,,98.0,,10039.0,,631478.0,,1358116.0,,1353834.0,,4282.0,,,,5895.0,,2015.0,,2039.0,,0.0,,0.0,,20218.0,Does not include all calls received by call centers; Does not include all calls received after business hours,20.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.31,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +MN,Minnesota,202401,Y,P,N,5285.0,,25693.0,,30978.0,,12031.0,,135.0,,12166.0,,616661.0,,1317417.0,,1313425.0,,3992.0,,,,6644.0,,2556.0,,2318.0,,0.0,,0.0,,35139.0,Does not include all calls received by call centers; Does not include all calls received after business hours,13.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.24,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +MN,Minnesota,202401,Y,U,Y,5285.0,,25693.0,,30978.0,,12031.0,,135.0,,12166.0,,621767.0,,1329002.0,,1324796.0,,4206.0,,,,6644.0,,2556.0,,2318.0,,0.0,,0.0,,35139.0,Does not include all calls received by call centers; Does not include all calls received after business hours,13.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.24,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +MN,Minnesota,202402,Y,P,N,5299.0,,17752.0,,23051.0,,9723.0,,136.0,,9859.0,,595924.0,,1243613.0,,1239489.0,,4124.0,,,,5019.0,,2138.0,,1979.0,,0.0,,0.0,,30578.0,Does not include all calls received by call centers; Does not include all calls received after business hours,11.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.22,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +MN,Minnesota,202402,Y,U,Y,5299.0,,17752.0,,23051.0,,9723.0,,136.0,,9859.0,,603103.0,,1259673.0,,1255277.0,,4396.0,,,,5019.0,,2138.0,,1979.0,,0.0,,0.0,,30578.0,Does not include all calls received by call centers; Does not include all calls received after business hours,11.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.22,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +MN,Minnesota,202403,Y,P,N,5505.0,,17201.0,,22706.0,,9632.0,,162.0,,9794.0,,587328.0,,1197428.0,,1193112.0,,4316.0,,,,4833.0,,2422.0,,1796.0,,0.0,,0.0,,31996.0,Does not include all calls received by call centers; Does not include all calls received after business hours,8.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.2,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +MN,Minnesota,202403,Y,U,Y,5505.0,,17201.0,,22706.0,,9632.0,,162.0,,9794.0,,594830.0,,1214497.0,,1209905.0,,4592.0,,,,4833.0,,2422.0,,1796.0,,0.0,,0.0,,31996.0,Does not include all calls received by call centers; Does not include all calls received after business hours,8.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.2,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +MN,Minnesota,202404,Y,P,N,4269.0,,16221.0,,20490.0,,9949.0,,224.0,,10173.0,,586193.0,,1184597.0,,1180112.0,,4485.0,,,,4837.0,,2554.0,,2042.0,,0.0,,0.0,,34310.0,Does not include all calls received by call centers; Does not include all calls received after business hours,15.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.31,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +MN,Minnesota,202404,Y,U,Y,4269.0,,16221.0,,20490.0,,9949.0,,224.0,,10173.0,,593887.0,,1201732.0,,1197017.0,,4715.0,,,,4837.0,,2554.0,,2042.0,,0.0,,0.0,,34310.0,Does not include all calls received by call centers; Does not include all calls received after business hours,15.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.31,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +MN,Minnesota,202405,Y,P,N,5537.0,,16821.0,,22358.0,,9690.0,,180.0,,9870.0,,586909.0,,1177036.0,,1172201.0,,4835.0,,,,4988.0,,2339.0,,2054.0,,0.0,,0.0,,29364.0,Does not include all calls received by call centers; Does not include all calls received after business hours,11.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.25,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +MN,Minnesota,202405,Y,U,Y,5537.0,,16821.0,,22358.0,,9690.0,,180.0,,9870.0,,592677.0,,1190645.0,,1185850.0,,4795.0,,,,4988.0,,2339.0,,2054.0,,0.0,,0.0,,29364.0,Does not include all calls received by call centers; Does not include all calls received after business hours,11.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.25,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +MN,Minnesota,202406,Y,P,N,4855.0,,15726.0,,20581.0,,8954.0,,158.0,,9112.0,,584313.0,,1163073.0,,1158493.0,,4580.0,,,,4487.0,,2323.0,,1566.0,,0.0,,0.0,,26451.0,Does not include all calls received by call centers; Does not include all calls received after business hours,16.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.35,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +MN,Minnesota,202406,Y,U,Y,4855.0,,15726.0,,20581.0,,8954.0,,158.0,,9112.0,,590115.0,,1176299.0,,1171509.0,,4790.0,,,,4487.0,,2323.0,,1566.0,,0.0,,0.0,,26451.0,Does not include all calls received by call centers; Does not include all calls received after business hours,16.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.35,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +MN,Minnesota,202407,Y,P,N,5070.0,,17117.0,,22187.0,,10273.0,,141.0,,10414.0,,588319.0,,1172883.0,,1168269.0,,4614.0,,584564.0,,4714.0,,2511.0,,2400.0,,0.0,,0.0,,30616.0,Does not include all calls received by call centers; Does not include all calls received after business hours,13.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.31,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +MN,Minnesota,202407,Y,U,Y,5070.0,,17117.0,,22187.0,,10273.0,,141.0,,10414.0,,593847.0,,1185727.0,,1180899.0,,4828.0,,591880.0,,4714.0,,2511.0,,2400.0,,0.0,,0.0,,30616.0,Does not include all calls received by call centers; Does not include all calls received after business hours,13.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.31,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +MN,Minnesota,202408,Y,P,N,5053.0,,17532.0,,22585.0,,9981.0,,152.0,,10133.0,,588869.0,,1172033.0,,1167421.0,,4612.0,,583164.0,,4976.0,,2479.0,,2058.0,,0.0,,0.0,,32135.0,Does not include all calls received by call centers; Does not include all calls received after business hours,18.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.37,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +MN,Minnesota,202408,Y,U,Y,5053.0,,17532.0,,22585.0,,9981.0,,152.0,,10133.0,,594724.0,,1185909.0,,1181085.0,,4824.0,,591185.0,,4976.0,,2479.0,,2058.0,,0.0,,0.0,,32135.0,Does not include all calls received by call centers; Does not include all calls received after business hours,18.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.37,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +MN,Minnesota,202409,Y,P,N,6235.0,,16946.0,,23181.0,,11152.0,,129.0,,11281.0,,589865.0,,1172238.0,,1167618.0,,4620.0,,582373.0,,5086.0,,2325.0,,1864.0,,0.0,,0.0,,29893.0,Does not include all calls received by call centers; Does not include all calls received after business hours,8.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.2,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +MN,Minnesota,202409,Y,U,Y,6235.0,,16946.0,,23181.0,,11152.0,,129.0,,11281.0,,595947.0,,1186802.0,,1181935.0,,4867.0,,590855.0,,5086.0,,2325.0,,1864.0,,0.0,,0.0,,29893.0,Does not include all calls received by call centers; Does not include all calls received after business hours,8.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.2,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +MN,Minnesota,202410,Y,P,N,6205.0,,18058.0,,24263.0,,11243.0,,164.0,,11407.0,,590602.0,,1167743.0,,1163025.0,,4718.0,,577141.0,,5361.0,,2428.0,,2450.0,,0.0,,0.0,,32990.0,Does not include all calls received by call centers; Does not include all calls received after business hours,6.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.17,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +MN,Minnesota,202410,Y,U,Y,6205.0,,18058.0,,24263.0,,11243.0,,164.0,,11407.0,,595257.0,,1179330.0,,1174458.0,,4872.0,,584073.0,,5361.0,,2428.0,,2450.0,,0.0,,0.0,,32990.0,Does not include all calls received by call centers; Does not include all calls received after business hours,6.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.17,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +MN,Minnesota,202411,Y,P,N,5025.0,,24835.0,,29860.0,,8787.0,,99.0,,8886.0,,588390.0,,1157587.0,,1152907.0,,4680.0,,569197.0,,4651.0,,1839.0,,1968.0,,0.0,,0.0,,22530.0,Does not include all calls received by call centers; Does not include all calls received after business hours,16.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.3,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +MN,Minnesota,202411,Y,U,Y,5025.0,,24835.0,,29860.0,,8787.0,,99.0,,8886.0,,594611.0,,1172993.0,,1168119.0,,4874.0,,578382.0,,4651.0,,1839.0,,1968.0,,0.0,,0.0,,22530.0,Does not include all calls received by call centers; Does not include all calls received after business hours,16.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.3,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +MN,Minnesota,202412,Y,P,N,5523.0,,30486.0,,36009.0,,10279.0,,121.0,,10400.0,,586783.0,,1151459.0,,1146667.0,,4792.0,,564676.0,,5583.0,,1923.0,,2280.0,,0.0,,0.0,,32425.0,Does not include all calls received by call centers; Does not include all calls received after business hours,23.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.33,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +MN,Minnesota,202412,Y,U,Y,5523.0,,30486.0,,36009.0,,10279.0,,121.0,,10400.0,,594389.0,,1169718.0,,1164706.0,,5012.0,,575329.0,,5583.0,,1923.0,,2280.0,,0.0,,0.0,,32425.0,Does not include all calls received by call centers; Does not include all calls received after business hours,23.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.33,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +MN,Minnesota,202501,Y,P,N,6478.0,,31257.0,,37735.0,,12504.0,,142.0,,12646.0,,586945.0,,1149524.0,,1144781.0,,4743.0,,562579.0,,6480.0,,2360.0,,2893.0,,0.0,,0.0,,39203.0,Does not include all calls received by call centers; Does not include all calls received after business hours,24.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.36,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +MN,Minnesota,202501,Y,U,Y,6478.0,,31257.0,,37735.0,,12504.0,,142.0,,12646.0,,593486.0,,1165774.0,,1160833.0,,4941.0,,572288.0,,6480.0,,2360.0,,2893.0,,0.0,,0.0,,39203.0,Does not include all calls received by call centers; Does not include all calls received after business hours,24.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.36,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +MN,Minnesota,202502,Y,P,N,5652.0,,17303.0,,22955.0,,8304.0,,138.0,,8442.0,,589740.0,,1151283.0,,1146538.0,,4745.0,,561543.0,,4289.0,,1674.0,,1912.0,,0.0,,0.0,,33669.0,Does not include all calls received by call centers; Does not include all calls received after business hours,20.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.4,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +MN,Minnesota,202502,Y,U,Y,5652.0,,17303.0,,22955.0,,8304.0,,138.0,,8442.0,,596966.0,,1169216.0,,1164238.0,,4978.0,,572250.0,,4289.0,,1674.0,,1912.0,,0.0,,0.0,,33669.0,Does not include all calls received by call centers; Does not include all calls received after business hours,20.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.4,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +MN,Minnesota,202503,Y,P,N,6370.0,,18320.0,,24690.0,,10309.0,,130.0,,10439.0,,595200.0,,1154006.0,,1149163.0,,4843.0,,558806.0,,4967.0,,1960.0,,2250.0,,0.0,,0.0,,33734.0,Does not include all calls received by call centers; Does not include all calls received after business hours,16.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.42,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +MN,Minnesota,202503,Y,U,Y,6370.0,,18320.0,,24690.0,,10309.0,,130.0,,10439.0,,600010.0,,1169282.0,,1164248.0,,5034.0,,569272.0,,4967.0,,1960.0,,2250.0,,0.0,,0.0,,33734.0,Does not include all calls received by call centers; Does not include all calls received after business hours,16.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.42,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +MN,Minnesota,202504,Y,P,N,6414.0,,18177.0,,24591.0,,9874.0,,151.0,,10025.0,,597542.0,,1159778.0,,1154927.0,,4851.0,,562236.0,,5092.0,,2010.0,,2608.0,,0.0,,0.0,,32959.0,Does not include all calls received by call centers; Does not include all calls received after business hours,8.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.29,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +MN,Minnesota,202504,Y,U,Y,6414.0,,18177.0,,24591.0,,9874.0,,151.0,,10025.0,,602448.0,,1172111.0,,1167128.0,,4983.0,,569663.0,,5092.0,,2010.0,,2608.0,,0.0,,0.0,,32959.0,Does not include all calls received by call centers; Does not include all calls received after business hours,8.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.29,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +MN,Minnesota,202505,Y,P,N,5543.0,,16743.0,,22286.0,,9559.0,,103.0,,9662.0,,599760.0,,1161566.0,,1156802.0,,4764.0,,561806.0,,4715.0,,2005.0,,2301.0,,0.0,,0.0,,23341.0,Does not include all calls received by call centers; Does not include all calls received after business hours,4.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.18,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +MN,Minnesota,202505,Y,U,Y,5543.0,,16743.0,,22286.0,,9559.0,,103.0,,9662.0,,604743.0,,1174329.0,,1169415.0,,4914.0,,569586.0,,4715.0,,2005.0,,2301.0,,0.0,,0.0,,23341.0,Does not include all calls received by call centers; Does not include all calls received after business hours,4.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.18,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +MN,Minnesota,202506,Y,P,N,5520.0,,16453.0,,21973.0,,9753.0,,116.0,,9869.0,,601851.0,,1163487.0,,1158682.0,,4805.0,,561636.0,,4514.0,,2185.0,,1979.0,,0.0,,0.0,,22727.0,Does not include all calls received by call centers; Does not include all calls received after business hours,8.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.27,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +MN,Minnesota,202506,Y,U,Y,5520.0,,16453.0,,21973.0,,9753.0,,116.0,,9869.0,,606826.0,,1176121.0,,1171164.0,,4957.0,,569295.0,,4514.0,,2185.0,,1979.0,,0.0,,0.0,,22727.0,Does not include all calls received by call centers; Does not include all calls received after business hours,8.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.27,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +MN,Minnesota,202507,Y,P,N,5741.0,,16819.0,,22560.0,,11009.0,,155.0,,11164.0,,606033.0,,1173416.0,,1168697.0,,4719.0,,567383.0,,5156.0,,2255.0,,2490.0,,0.0,,0.0,,24229.0,Does not include all calls received by call centers; Does not include all calls received after business hours,7.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.27,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +MN,Minnesota,202507,Y,U,Y,5741.0,,16819.0,,22560.0,,11009.0,,155.0,,11164.0,,610625.0,,1185263.0,,1180420.0,,4843.0,,574638.0,,5156.0,,2255.0,,2490.0,,0.0,,0.0,,24229.0,Does not include all calls received by call centers; Does not include all calls received after business hours,7.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.27,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +MN,Minnesota,202508,Y,P,N,5617.0,,16054.0,,21671.0,,10111.0,,109.0,,10220.0,,607809.0,,1174474.0,,1169818.0,,4656.0,,566665.0,,4850.0,,2154.0,,2171.0,,0.0,,0.0,,21257.0,Does not include all calls received by call centers; Does not include all calls received after business hours,11.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.37,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +MN,Minnesota,202508,Y,U,Y,5617.0,,16054.0,,21671.0,,10111.0,,109.0,,10220.0,,613253.0,,1187152.0,,1182324.0,,4828.0,,573899.0,,4850.0,,2154.0,,2171.0,,0.0,,0.0,,21257.0,Does not include all calls received by call centers; Does not include all calls received after business hours,11.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.37,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +MN,Minnesota,202509,Y,P,N,5888.0,,17361.0,,23249.0,,10884.0,,115.0,,10999.0,,610268.0,,1177674.0,,1173096.0,,4578.0,,567406.0,,5033.0,,2233.0,,2224.0,,0.0,,0.0,,21521.0,Does not include all calls received by call centers; Does not include all calls received after business hours,7.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.28,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +MN,Minnesota,202509,Y,U,Y,5888.0,,17361.0,,23249.0,,10884.0,,115.0,,10999.0,,615397.0,,1190041.0,,1185328.0,,4713.0,,574644.0,,5033.0,,2233.0,,2224.0,,0.0,,0.0,,21521.0,Does not include all calls received by call centers; Does not include all calls received after business hours,7.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.28,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +MN,Minnesota,202510,Y,P,N,5939.0,,17243.0,,23182.0,,10276.0,,112.0,,10388.0,,611112.0,,1176120.0,,1171636.0,,4484.0,,565008.0,,4813.0,,2291.0,,2501.0,,0.0,,0.0,,23919.0,Does not include all calls received by call centers; Does not include all calls received after business hours,5.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.21,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +MO,Missouri,201309,N,U,Y,,,,,,,,,,,,,,,846084.0,,,,,,,,,,,,,,,,,,,,,,, +MO,Missouri,201706,N,P,N,18674.0,,0.0,,18674.0,,8150.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,8150.0,Includes Renewals and/or Redeterminations,624308.0,,964912.0,,936184.0,,28728.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,201706,N,U,Y,18674.0,,0.0,,18674.0,,8150.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,8150.0,Includes Renewals and/or Redeterminations,649506.0,,1006903.0,,978396.0,,28507.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,201707,N,P,N,18407.0,,0.0,,18407.0,,8542.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,8542.0,Includes Renewals and/or Redeterminations,625497.0,,967477.0,,938952.0,,28525.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,201707,N,U,Y,18407.0,,0.0,,18407.0,,8542.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,8542.0,Includes Renewals and/or Redeterminations,649207.0,,1006683.0,,978262.0,,28421.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,201708,N,P,N,21301.0,,0.0,,21301.0,,10180.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,10180.0,Includes Renewals and/or Redeterminations,625199.0,,967216.0,,937534.0,,29682.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,201708,N,U,Y,21301.0,,0.0,,21301.0,,10180.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,10180.0,Includes Renewals and/or Redeterminations,647770.0,,1002239.0,,972460.0,,29779.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,201709,N,P,N,18078.0,,0.0,,18078.0,,8391.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,8391.0,Includes Renewals and/or Redeterminations,621703.0,,961960.0,,932576.0,,29384.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,201709,N,U,Y,18078.0,,0.0,,18078.0,,8391.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,8391.0,Includes Renewals and/or Redeterminations,644365.0,,996789.0,,967103.0,,29686.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,201710,N,P,N,20535.0,,0.0,,20535.0,,9869.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,9869.0,Includes Renewals and/or Redeterminations,621993.0,,961119.0,,932304.0,,28815.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,201710,N,U,Y,20535.0,,0.0,,20535.0,,9869.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,9869.0,Includes Renewals and/or Redeterminations,641642.0,,992201.0,,962970.0,,29231.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,201711,N,P,N,20183.0,,0.0,,20183.0,,9445.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,9445.0,Includes Renewals and/or Redeterminations,621029.0,,959516.0,,930701.0,,28815.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,201711,N,U,Y,20183.0,,0.0,,20183.0,,9445.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,9445.0,Includes Renewals and/or Redeterminations,640613.0,,991578.0,,962148.0,,29430.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,201712,N,P,N,18741.0,,0.0,,18741.0,,9774.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,9774.0,Includes Renewals and/or Redeterminations,620110.0,,957642.0,,928136.0,,29506.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,201712,N,U,Y,18741.0,,0.0,,18741.0,,9774.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,9774.0,Includes Renewals and/or Redeterminations,639553.0,,989637.0,,959673.0,,29964.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,201801,N,P,N,21223.0,,0.0,,21223.0,,10178.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,10178.0,Includes Renewals and/or Redeterminations,621184.0,,959354.0,,929252.0,,30102.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,201801,N,U,Y,21223.0,,0.0,,21223.0,,10178.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,10178.0,Includes Renewals and/or Redeterminations,639330.0,,990129.0,,959459.0,,30670.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,201802,N,P,N,18143.0,,0.0,,18143.0,,8396.0,,0.0,,8396.0,,617601.0,,954158.0,,924337.0,,29821.0,,,,44.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1393.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1567.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",278.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2502.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +MO,Missouri,201802,N,U,Y,18143.0,,0.0,,18143.0,,8396.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,8396.0,Includes Renewals and/or Redeterminations,634893.0,,983765.0,,952943.0,,30822.0,,,,44.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1393.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1567.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",278.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2502.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +MO,Missouri,201803,N,P,N,19976.0,,0.0,,19976.0,,10406.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,10406.0,Includes Renewals and/or Redeterminations,613667.0,,951002.0,,920290.0,,30712.0,,,,51.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1297.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1720.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",346.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2943.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +MO,Missouri,201803,N,U,Y,19976.0,,0.0,,19976.0,,10406.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,10406.0,Includes Renewals and/or Redeterminations,630138.0,,977722.0,,946186.0,,31536.0,,,,51.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1297.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1720.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",346.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2943.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +MO,Missouri,201804,N,P,N,18795.0,,0.0,,18795.0,,9938.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,9938.0,Includes Renewals and/or Redeterminations,616103.0,,953303.0,,922734.0,,30569.0,,,,42.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1554.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1410.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",480.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2636.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +MO,Missouri,201804,N,U,Y,18795.0,,0.0,,18795.0,,9938.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,9938.0,Includes Renewals and/or Redeterminations,627955.0,,973093.0,,941950.0,,31143.0,,,,42.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1554.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1410.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",480.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2636.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +MO,Missouri,201805,N,P,N,18021.0,,0.0,,18021.0,,9251.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,9251.0,Includes Renewals and/or Redeterminations,618543.0,,955550.0,,924757.0,,30793.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,201805,N,U,Y,18021.0,,0.0,,18021.0,,9251.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,9251.0,Includes Renewals and/or Redeterminations,629563.0,,974629.0,,943342.0,,31287.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,201806,N,P,N,18802.0,,0.0,,18802.0,,9235.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,9235.0,Includes Renewals and/or Redeterminations,616587.0,,953495.0,,922299.0,,31196.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,201806,N,U,Y,18802.0,,0.0,,18802.0,,9235.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,9235.0,Includes Renewals and/or Redeterminations,627120.0,,972388.0,,940659.0,,31729.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,201807,N,P,N,19846.0,,0.0,,19846.0,,9071.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,9071.0,Includes Renewals and/or Redeterminations,600023.0,,933441.0,,902002.0,,31439.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,201807,N,U,Y,19846.0,,0.0,,19846.0,,9071.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,9071.0,Includes Renewals and/or Redeterminations,614248.0,,956346.0,,924125.0,,32221.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,201808,N,P,N,21948.0,,0.0,,21948.0,,10210.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,10210.0,Includes Renewals and/or Redeterminations,601688.0,,935680.0,,904127.0,,31553.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,201808,N,U,Y,21948.0,,0.0,,21948.0,,10210.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,10210.0,Includes Renewals and/or Redeterminations,614578.0,,956869.0,,924486.0,,32383.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,201809,N,P,N,18816.0,,0.0,,18816.0,,9620.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,9620.0,Includes Renewals and/or Redeterminations,590445.0,,921839.0,,890076.0,,31763.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,201809,N,U,Y,18816.0,,0.0,,18816.0,,9620.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,9620.0,Includes Renewals and/or Redeterminations,605411.0,,945063.0,,912369.0,,32694.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,201810,N,P,N,21395.0,,0.0,,21395.0,,11024.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,11024.0,Includes Renewals and/or Redeterminations,579304.0,,908929.0,,877344.0,,31585.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,201810,N,U,Y,21395.0,,0.0,,21395.0,,11024.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,11024.0,Includes Renewals and/or Redeterminations,592644.0,,929692.0,,897013.0,,32679.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,201811,N,P,N,18967.0,,0.0,,18967.0,,8347.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,8347.0,Includes Renewals and/or Redeterminations,569605.0,,895063.0,,863924.0,,31139.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,201811,N,U,Y,18967.0,,0.0,,18967.0,,8347.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,8347.0,Includes Renewals and/or Redeterminations,583526.0,,916981.0,,885033.0,,31948.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,201812,N,P,N,18480.0,,0.0,,18480.0,,8119.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,8119.0,Includes Renewals and/or Redeterminations,564476.0,,888597.0,,857634.0,,30963.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,201812,N,U,Y,18480.0,,0.0,,18480.0,,8119.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,8119.0,Includes Renewals and/or Redeterminations,579583.0,,911302.0,,879410.0,,31892.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,201901,N,P,N,21700.0,,0.0,,21700.0,,9664.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,9664.0,Includes Renewals and/or Redeterminations,563364.0,,887297.0,,855629.0,,31668.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,201901,N,U,Y,21700.0,,0.0,,21700.0,,9664.0,Includes Renewals and/or Redeterminations; Includes CHIP,0.0,,9664.0,Includes Renewals and/or Redeterminations,576570.0,,907896.0,,875332.0,,32564.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,201902,N,P,N,18443.0,,0.0,,18443.0,,8996.0,Includes Renewals and/or Redeterminations; Includes CHIP,538.0,Includes Renewals and/or Redeterminations,9534.0,Includes Renewals and/or Redeterminations,560520.0,,882720.0,,850474.0,,32246.0,,,,46.0,Includes some non-MAGI determinations on applications,1606.0,Includes some non-MAGI determinations on applications,3108.0,Includes some non-MAGI determinations on applications,1004.0,Includes some non-MAGI determinations on applications,6969.0,Includes some non-MAGI determinations on applications,,,,,, +MO,Missouri,201902,N,U,Y,18443.0,,0.0,,18443.0,,8996.0,Includes Renewals and/or Redeterminations; Includes CHIP,538.0,Includes Renewals and/or Redeterminations,9534.0,Includes Renewals and/or Redeterminations,574656.0,,904987.0,,871603.0,,33384.0,,,,46.0,Includes some non-MAGI determinations on applications,1606.0,Includes some non-MAGI determinations on applications,3108.0,Includes some non-MAGI determinations on applications,1004.0,Includes some non-MAGI determinations on applications,6969.0,Includes some non-MAGI determinations on applications,,,,,, +MO,Missouri,201903,N,P,N,20913.0,,0.0,,20913.0,,10159.0,Includes Renewals and/or Redeterminations; Includes CHIP,559.0,Includes Renewals and/or Redeterminations,10718.0,Includes Renewals and/or Redeterminations,553863.0,,875069.0,,842409.0,,32660.0,,,,58.0,Includes some non-MAGI determinations on applications,2474.0,Includes some non-MAGI determinations on applications,2801.0,Includes some non-MAGI determinations on applications,1322.0,Includes some non-MAGI determinations on applications,8397.0,Includes some non-MAGI determinations on applications,,,,,, +MO,Missouri,201903,N,U,Y,20913.0,,0.0,,20913.0,,10159.0,Includes Renewals and/or Redeterminations; Includes CHIP,559.0,Includes Renewals and/or Redeterminations,10718.0,Includes Renewals and/or Redeterminations,569744.0,,899476.0,,865647.0,,33829.0,,,,58.0,Includes some non-MAGI determinations on applications,2474.0,Includes some non-MAGI determinations on applications,2801.0,Includes some non-MAGI determinations on applications,1322.0,Includes some non-MAGI determinations on applications,8397.0,Includes some non-MAGI determinations on applications,,,,,, +MO,Missouri,201904,N,P,N,21607.0,,0.0,,21607.0,,11436.0,Includes Renewals and/or Redeterminations; Includes CHIP,471.0,Includes Renewals and/or Redeterminations,11907.0,Includes Renewals and/or Redeterminations,544781.0,,863688.0,,831369.0,,32319.0,,,,77.0,Includes some non-MAGI determinations on applications,2354.0,Includes some non-MAGI determinations on applications,3196.0,Includes some non-MAGI determinations on applications,856.0,Includes some non-MAGI determinations on applications,6300.0,Includes some non-MAGI determinations on applications,,,,,, +MO,Missouri,201904,N,U,Y,21607.0,,0.0,,21607.0,,11436.0,Includes Renewals and/or Redeterminations; Includes CHIP,471.0,Includes Renewals and/or Redeterminations,11907.0,Includes Renewals and/or Redeterminations,559705.0,,886669.0,,853183.0,,33486.0,,,,77.0,Includes some non-MAGI determinations on applications,2354.0,Includes some non-MAGI determinations on applications,3196.0,Includes some non-MAGI determinations on applications,856.0,Includes some non-MAGI determinations on applications,6300.0,Includes some non-MAGI determinations on applications,,,,,, +MO,Missouri,201905,N,P,N,20149.0,,0.0,,20149.0,,9257.0,Includes Renewals and/or Redeterminations; Includes CHIP,365.0,Includes Renewals and/or Redeterminations,9622.0,Includes Renewals and/or Redeterminations,535744.0,,852161.0,,819296.0,,32865.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,201905,N,U,Y,20149.0,,0.0,,20149.0,,9257.0,Includes Renewals and/or Redeterminations; Includes CHIP,365.0,Includes Renewals and/or Redeterminations,9622.0,Includes Renewals and/or Redeterminations,550138.0,,874683.0,,840902.0,,33781.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,201906,N,P,N,19707.0,,0.0,,19707.0,,8831.0,,294.0,,9125.0,,526699.0,,840660.0,,807842.0,,32818.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,201906,N,U,Y,19707.0,Includes Renewals and/or Redeterminations,0.0,,19707.0,Includes Renewals and/or Redeterminations,8831.0,Includes Renewals and/or Redeterminations; Includes CHIP,294.0,Includes Renewals and/or Redeterminations,9125.0,Includes Renewals and/or Redeterminations,542114.0,,864141.0,,830738.0,,33403.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,201907,N,P,N,21181.0,Includes Renewals and/or Redeterminations,0.0,,21181.0,Includes Renewals and/or Redeterminations,9567.0,Includes Renewals and/or Redeterminations; Includes CHIP,290.0,Includes Renewals and/or Redeterminations,9857.0,Includes Renewals and/or Redeterminations,520552.0,,832109.0,,798786.0,,33323.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,201907,N,U,Y,21181.0,Includes Renewals and/or Redeterminations,0.0,,21181.0,Includes Renewals and/or Redeterminations,9567.0,Includes Renewals and/or Redeterminations; Includes CHIP,290.0,Includes Renewals and/or Redeterminations,9857.0,Includes Renewals and/or Redeterminations,539835.0,,860768.0,,826867.0,,33901.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,201908,N,P,N,24087.0,Includes Renewals and/or Redeterminations,0.0,,24087.0,Includes Renewals and/or Redeterminations,12292.0,Includes Renewals and/or Redeterminations; Includes CHIP,501.0,Includes Renewals and/or Redeterminations,12793.0,Includes Renewals and/or Redeterminations,521052.0,,831826.0,,796984.0,,34842.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,201908,N,U,Y,24087.0,Includes Renewals and/or Redeterminations,0.0,,24087.0,Includes Renewals and/or Redeterminations,12292.0,Includes Renewals and/or Redeterminations; Includes CHIP,501.0,Includes Renewals and/or Redeterminations,12793.0,Includes Renewals and/or Redeterminations,536291.0,,855620.0,,820497.0,,35123.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,201909,N,P,N,21447.0,Includes Renewals and/or Redeterminations,0.0,,21447.0,Includes Renewals and/or Redeterminations,10274.0,Includes Renewals and/or Redeterminations; Includes CHIP,417.0,Includes Renewals and/or Redeterminations,10691.0,Includes Renewals and/or Redeterminations,522831.0,,833781.0,,798356.0,,35425.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,201909,N,U,Y,21447.0,Includes Renewals and/or Redeterminations,0.0,,21447.0,Includes Renewals and/or Redeterminations,10274.0,Includes Renewals and/or Redeterminations; Includes CHIP,417.0,Includes Renewals and/or Redeterminations,10691.0,Includes Renewals and/or Redeterminations,537809.0,,857228.0,,821824.0,,35404.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,201910,N,P,N,22345.0,Includes Renewals and/or Redeterminations,0.0,,22345.0,Includes Renewals and/or Redeterminations,11245.0,Includes Renewals and/or Redeterminations; Includes CHIP,482.0,Includes Renewals and/or Redeterminations,11727.0,Includes Renewals and/or Redeterminations,524374.0,,835644.0,,799681.0,,35963.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,201910,N,U,Y,22345.0,Includes Renewals and/or Redeterminations,0.0,,22345.0,Includes Renewals and/or Redeterminations,11245.0,Includes Renewals and/or Redeterminations; Includes CHIP,482.0,Includes Renewals and/or Redeterminations,11727.0,Includes Renewals and/or Redeterminations,536319.0,,854854.0,,818781.0,,36073.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,201911,N,P,N,19334.0,Includes Renewals and/or Redeterminations,0.0,,19334.0,Includes Renewals and/or Redeterminations,9255.0,Includes Renewals and/or Redeterminations; Includes CHIP,441.0,Includes Renewals and/or Redeterminations,9696.0,Includes Renewals and/or Redeterminations,523855.0,,833914.0,,797931.0,,35983.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,201911,N,U,Y,19334.0,Includes Renewals and/or Redeterminations,0.0,,19334.0,Includes Renewals and/or Redeterminations,9255.0,Includes Renewals and/or Redeterminations; Includes CHIP,441.0,Includes Renewals and/or Redeterminations,9696.0,Includes Renewals and/or Redeterminations,532999.0,,849715.0,,813603.0,,36112.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,201912,N,P,N,20542.0,Includes Renewals and/or Redeterminations,0.0,,20542.0,Includes Renewals and/or Redeterminations,8900.0,Includes Renewals and/or Redeterminations; Includes CHIP,420.0,Includes Renewals and/or Redeterminations,9320.0,Includes Renewals and/or Redeterminations,519603.0,,828544.0,,792244.0,,36300.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,201912,N,U,Y,20542.0,Includes Renewals and/or Redeterminations,0.0,,20542.0,Includes Renewals and/or Redeterminations,8900.0,Includes Renewals and/or Redeterminations; Includes CHIP,420.0,Includes Renewals and/or Redeterminations,9320.0,Includes Renewals and/or Redeterminations,532044.0,,847982.0,,811549.0,,36433.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,202001,N,P,N,25547.0,Includes Renewals and/or Redeterminations,0.0,,25547.0,Includes Renewals and/or Redeterminations,10927.0,Includes Renewals and/or Redeterminations; Includes CHIP,555.0,Includes Renewals and/or Redeterminations,11482.0,Includes Renewals and/or Redeterminations,518813.0,,827814.0,,791280.0,,36534.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,202001,N,U,Y,25547.0,Includes Renewals and/or Redeterminations,0.0,,25547.0,Includes Renewals and/or Redeterminations,10927.0,Includes Renewals and/or Redeterminations; Includes CHIP,555.0,Includes Renewals and/or Redeterminations,11482.0,Includes Renewals and/or Redeterminations,531652.0,,848304.0,,811584.0,,36720.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,202002,N,P,N,20344.0,Includes Renewals and/or Redeterminations,0.0,,20344.0,Includes Renewals and/or Redeterminations,9531.0,Includes Renewals and/or Redeterminations; Includes CHIP,547.0,Includes Renewals and/or Redeterminations,10078.0,Includes Renewals and/or Redeterminations,520637.0,,829736.0,,792966.0,,36770.0,,,,885.0,Incorrectly includes redeterminations,530.0,Incorrectly includes redeterminations,1519.0,Incorrectly includes redeterminations,1628.0,Incorrectly includes redeterminations,7838.0,Incorrectly includes redeterminations,,,,,, +MO,Missouri,202002,N,U,Y,20344.0,Includes Renewals and/or Redeterminations,0.0,,20344.0,Includes Renewals and/or Redeterminations,9531.0,Includes Renewals and/or Redeterminations; Includes CHIP,547.0,Includes Renewals and/or Redeterminations,10078.0,Includes Renewals and/or Redeterminations,536875.0,,855282.0,,818245.0,,37037.0,,,,885.0,Incorrectly includes redeterminations,530.0,Incorrectly includes redeterminations,1519.0,Incorrectly includes redeterminations,1628.0,Incorrectly includes redeterminations,7838.0,Incorrectly includes redeterminations,,,,,, +MO,Missouri,202003,N,P,N,20995.0,Includes Renewals and/or Redeterminations,0.0,,20995.0,Includes Renewals and/or Redeterminations,13383.0,Includes Renewals and/or Redeterminations; Includes CHIP,969.0,Includes Renewals and/or Redeterminations,14352.0,Includes Renewals and/or Redeterminations,529788.0,,842739.0,,804525.0,,38214.0,,,,1027.0,Incorrectly includes redeterminations,733.0,Incorrectly includes redeterminations,2271.0,Incorrectly includes redeterminations,3491.0,Incorrectly includes redeterminations,10388.0,Incorrectly includes redeterminations,,,,,, +MO,Missouri,202003,N,U,Y,20995.0,Includes Renewals and/or Redeterminations,0.0,,20995.0,Includes Renewals and/or Redeterminations,13383.0,Includes Renewals and/or Redeterminations; Includes CHIP,969.0,Includes Renewals and/or Redeterminations,14352.0,Includes Renewals and/or Redeterminations,544868.0,,876601.0,,838066.0,,38535.0,,,,1027.0,Incorrectly includes redeterminations,733.0,Incorrectly includes redeterminations,2271.0,Incorrectly includes redeterminations,3491.0,Incorrectly includes redeterminations,10388.0,Incorrectly includes redeterminations,,,,,, +MO,Missouri,202004,N,P,N,16376.0,Includes Renewals and/or Redeterminations,0.0,,16376.0,Includes Renewals and/or Redeterminations,15428.0,Includes Renewals and/or Redeterminations; Includes CHIP,1320.0,Includes Renewals and/or Redeterminations,16748.0,Includes Renewals and/or Redeterminations,552584.0,,887433.0,,847614.0,,39819.0,,,,1085.0,Incorrectly includes redeterminations,4188.0,Incorrectly includes redeterminations,6479.0,Incorrectly includes redeterminations,1549.0,Incorrectly includes redeterminations,4193.0,Incorrectly includes redeterminations,,,,,, +MO,Missouri,202004,N,U,Y,16376.0,Includes Renewals and/or Redeterminations,0.0,,16376.0,Includes Renewals and/or Redeterminations,15428.0,Includes Renewals and/or Redeterminations; Includes CHIP,1320.0,Includes Renewals and/or Redeterminations,16748.0,Includes Renewals and/or Redeterminations,557744.0,,897743.0,,858771.0,,38972.0,,,,1085.0,Incorrectly includes redeterminations,4188.0,Incorrectly includes redeterminations,6479.0,Incorrectly includes redeterminations,1549.0,Incorrectly includes redeterminations,4193.0,Incorrectly includes redeterminations,,,,,, +MO,Missouri,202005,N,P,N,12856.0,Includes Renewals and/or Redeterminations,0.0,,12856.0,Includes Renewals and/or Redeterminations,7468.0,Includes Renewals and/or Redeterminations; Includes CHIP,475.0,Includes Renewals and/or Redeterminations,7943.0,Includes Renewals and/or Redeterminations,564796.0,,906761.0,,866338.0,,40423.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,202005,N,U,Y,12856.0,Includes Renewals and/or Redeterminations,0.0,,12856.0,Includes Renewals and/or Redeterminations,7468.0,Includes Renewals and/or Redeterminations; Includes CHIP,475.0,Includes Renewals and/or Redeterminations,7943.0,Includes Renewals and/or Redeterminations,569727.0,,915882.0,,876441.0,,39441.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,202006,N,P,N,14596.0,Includes Renewals and/or Redeterminations,0.0,,14596.0,Includes Renewals and/or Redeterminations,7397.0,Includes Renewals and/or Redeterminations,449.0,Includes Renewals and/or Redeterminations,7846.0,Includes Renewals and/or Redeterminations,575557.0,,923641.0,,882900.0,,40741.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,202006,N,U,Y,14596.0,Includes Renewals and/or Redeterminations,0.0,,14596.0,Includes Renewals and/or Redeterminations,7397.0,Includes Renewals and/or Redeterminations,449.0,Includes Renewals and/or Redeterminations,7846.0,Includes Renewals and/or Redeterminations,581309.0,,933956.0,,893472.0,,40484.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,202007,N,P,N,15284.0,Includes Renewals and/or Redeterminations,0.0,,15284.0,Includes Renewals and/or Redeterminations,8261.0,Includes Renewals and/or Redeterminations,583.0,Includes Renewals and/or Redeterminations,8844.0,Includes Renewals and/or Redeterminations,587455.0,,941651.0,,900442.0,,41209.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,202007,N,U,Y,15284.0,Includes Renewals and/or Redeterminations,0.0,,15284.0,Includes Renewals and/or Redeterminations,8261.0,Includes Renewals and/or Redeterminations,583.0,Includes Renewals and/or Redeterminations,8844.0,Includes Renewals and/or Redeterminations,592975.0,,951731.0,,911305.0,,40426.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,202008,N,P,N,15468.0,,0.0,,15468.0,,8622.0,,501.0,,9123.0,,598560.0,,959241.0,,918345.0,,40896.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,202008,N,U,Y,15468.0,Includes Renewals and/or Redeterminations,0.0,,15468.0,Includes Renewals and/or Redeterminations,8622.0,Includes Renewals and/or Redeterminations,501.0,Includes Renewals and/or Redeterminations,9123.0,Includes Renewals and/or Redeterminations,604783.0,,969786.0,,929379.0,,40407.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,202009,N,P,N,15257.0,Includes Renewals and/or Redeterminations,0.0,,15257.0,Includes Renewals and/or Redeterminations,8945.0,Includes Renewals and/or Redeterminations,592.0,Includes Renewals and/or Redeterminations,9537.0,Includes Renewals and/or Redeterminations,608175.0,,975000.0,,934620.0,,40380.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,202009,N,U,Y,15257.0,Includes Renewals and/or Redeterminations,0.0,,15257.0,Includes Renewals and/or Redeterminations,8945.0,Includes Renewals and/or Redeterminations,592.0,Includes Renewals and/or Redeterminations,9537.0,Includes Renewals and/or Redeterminations,613876.0,,984496.0,,944617.0,,39879.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,202010,N,P,N,14650.0,Includes Renewals and/or Redeterminations,0.0,,14650.0,Includes Renewals and/or Redeterminations,8194.0,Includes Renewals and/or Redeterminations,517.0,Includes Renewals and/or Redeterminations,8711.0,Includes Renewals and/or Redeterminations,616391.0,,988294.0,,948911.0,,39383.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,202010,N,U,Y,14650.0,Includes Renewals and/or Redeterminations,0.0,,14650.0,Includes Renewals and/or Redeterminations,8194.0,Includes Renewals and/or Redeterminations,517.0,Includes Renewals and/or Redeterminations,8711.0,Includes Renewals and/or Redeterminations,621444.0,,996487.0,,957419.0,,39068.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,202011,N,P,N,12330.0,Includes Renewals and/or Redeterminations,0.0,,12330.0,Includes Renewals and/or Redeterminations,7171.0,Includes Renewals and/or Redeterminations,1243.0,Includes Renewals and/or Redeterminations,8414.0,Includes Renewals and/or Redeterminations,623698.0,,999264.0,,959735.0,,39529.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,202011,N,U,Y,12330.0,Includes Renewals and/or Redeterminations,0.0,,12330.0,Includes Renewals and/or Redeterminations,7171.0,Includes Renewals and/or Redeterminations,1243.0,Includes Renewals and/or Redeterminations,8414.0,Includes Renewals and/or Redeterminations,630224.0,,1009377.0,,970135.0,,39242.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,202012,N,P,N,13397.0,Includes Renewals and/or Redeterminations,0.0,,13397.0,Includes Renewals and/or Redeterminations,8203.0,Includes Renewals and/or Redeterminations,1555.0,Includes Renewals and/or Redeterminations,9758.0,Includes Renewals and/or Redeterminations,632784.0,,1012606.0,,972590.0,,40016.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,202012,N,U,Y,13397.0,Includes Renewals and/or Redeterminations,0.0,,13397.0,Includes Renewals and/or Redeterminations,8203.0,Includes Renewals and/or Redeterminations,1555.0,Includes Renewals and/or Redeterminations,9758.0,Includes Renewals and/or Redeterminations,639211.0,,1022258.0,,982395.0,,39863.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,202101,N,P,N,13836.0,Includes Renewals and/or Redeterminations,0.0,,13836.0,Includes Renewals and/or Redeterminations,7076.0,Includes Renewals and/or Redeterminations,571.0,Includes Renewals and/or Redeterminations,7647.0,Includes Renewals and/or Redeterminations,640308.0,,1023683.0,,982977.0,,40706.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,202101,N,U,Y,13836.0,Includes Renewals and/or Redeterminations,0.0,,13836.0,Includes Renewals and/or Redeterminations,7076.0,Includes Renewals and/or Redeterminations,571.0,Includes Renewals and/or Redeterminations,7647.0,Includes Renewals and/or Redeterminations,646112.0,,1032349.0,,991768.0,,40581.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,202102,N,P,N,11887.0,Includes Renewals and/or Redeterminations,0.0,,11887.0,Includes Renewals and/or Redeterminations,5678.0,Includes Renewals and/or Redeterminations,378.0,Includes Renewals and/or Redeterminations,6056.0,Includes Renewals and/or Redeterminations,645465.0,,1031955.0,,989431.0,,42524.0,,,,71.0,,4102.0,,3104.0,,242.0,,183.0,,,,,,, +MO,Missouri,202102,N,U,Y,11887.0,Includes Renewals and/or Redeterminations,0.0,,11887.0,Includes Renewals and/or Redeterminations,5678.0,Includes Renewals and/or Redeterminations,378.0,Includes Renewals and/or Redeterminations,6056.0,Includes Renewals and/or Redeterminations,651673.0,,1041689.0,,999501.0,,42188.0,,,,71.0,,4102.0,,3104.0,,242.0,,183.0,,,,,,, +MO,Missouri,202103,N,P,N,13255.0,Includes Renewals and/or Redeterminations,0.0,,13255.0,Includes Renewals and/or Redeterminations,6960.0,Includes Renewals and/or Redeterminations,620.0,Includes Renewals and/or Redeterminations,7580.0,Includes Renewals and/or Redeterminations,651993.0,,1043098.0,,1002188.0,,40910.0,,,,103.0,,5486.0,,4151.0,,244.0,,165.0,,,,,,, +MO,Missouri,202103,N,U,Y,13255.0,Includes Renewals and/or Redeterminations,0.0,,13255.0,Includes Renewals and/or Redeterminations,6960.0,Includes Renewals and/or Redeterminations,620.0,Includes Renewals and/or Redeterminations,7580.0,Includes Renewals and/or Redeterminations,658536.0,,1053270.0,,1012404.0,,40866.0,,,,103.0,,5486.0,,4151.0,,244.0,,165.0,,,,,,, +MO,Missouri,202104,N,P,N,12825.0,Includes Renewals and/or Redeterminations,0.0,,12825.0,Includes Renewals and/or Redeterminations,6959.0,Includes Renewals and/or Redeterminations,717.0,Includes Renewals and/or Redeterminations,7676.0,Includes Renewals and/or Redeterminations,658325.0,,1054820.0,,1014013.0,,40807.0,,,,103.0,,6698.0,,3066.0,,196.0,,142.0,,,,,,, +MO,Missouri,202104,N,U,Y,12825.0,Includes Renewals and/or Redeterminations,0.0,,12825.0,Includes Renewals and/or Redeterminations,6959.0,Includes Renewals and/or Redeterminations,717.0,Includes Renewals and/or Redeterminations,7676.0,Includes Renewals and/or Redeterminations,665015.0,,1064572.0,,1023831.0,,40741.0,,,,103.0,,6698.0,,3066.0,,196.0,,142.0,,,,,,, +MO,Missouri,202105,N,P,N,11223.0,Includes Renewals and/or Redeterminations,0.0,,11223.0,Includes Renewals and/or Redeterminations,6077.0,Includes Renewals and/or Redeterminations,535.0,Includes Renewals and/or Redeterminations,6612.0,Includes Renewals and/or Redeterminations,663835.0,,1064287.0,,1023144.0,,41143.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,202105,N,U,Y,11223.0,,0.0,,11223.0,,6077.0,,535.0,,6612.0,,670756.0,,1074189.0,,1033177.0,,41012.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,202106,N,P,N,12078.0,,0.0,,12078.0,,7174.0,,526.0,,7700.0,,668723.0,,1073163.0,,1031793.0,,41370.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,202106,N,U,Y,12078.0,,0.0,,12078.0,,7174.0,,526.0,,7700.0,,676635.0,,1083907.0,,1042532.0,,41375.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,202107,Y,P,N,11852.0,,0.0,,11852.0,,6005.0,,533.0,,6538.0,,673784.0,,1081802.0,,1040165.0,,41637.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,202107,Y,U,Y,11852.0,,0.0,,11852.0,,6005.0,,533.0,,6538.0,,682332.0,,1093102.0,,1051471.0,,41631.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,202108,Y,P,N,17627.0,,0.0,,17627.0,,5834.0,,543.0,,6377.0,,679427.0,,1090502.0,,1048385.0,,42117.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,202108,Y,U,Y,17627.0,,0.0,,17627.0,,5834.0,,543.0,,6377.0,,689338.0,,1103454.0,,1061243.0,,42211.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,202109,Y,P,N,18313.0,,0.0,,18313.0,,5708.0,,417.0,,6125.0,,682288.0,,1096390.0,,1056371.0,,40019.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,202109,Y,U,Y,18313.0,,0.0,,18313.0,,5708.0,,417.0,,6125.0,,692456.0,,1109531.0,,1069508.0,,40023.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,202110,Y,P,N,21304.0,,0.0,,21304.0,,13363.0,,438.0,,13801.0,,685569.0,,1116029.0,,1076898.0,,39131.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,202110,Y,U,Y,21304.0,,0.0,,21304.0,,13363.0,,438.0,,13801.0,,696431.0,,1136697.0,,1097457.0,,39240.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,202111,Y,P,N,23398.0,,0.0,,23398.0,,8731.0,,386.0,,9117.0,,689622.0,,1129867.0,,1091048.0,,38819.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,202111,Y,U,Y,23398.0,,0.0,,23398.0,,8731.0,,386.0,,9117.0,,702427.0,,1177651.0,,1138665.0,,38986.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,202112,Y,P,N,21281.0,,0.0,,21281.0,,9447.0,,382.0,,9829.0,,691595.0,,1165517.0,,1127355.0,,38162.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,202112,Y,U,Y,21281.0,,0.0,,21281.0,,9447.0,,382.0,,9829.0,,702024.0,,1186274.0,,1148080.0,,38194.0,,,,,,,,,,,,,,,,,,, +MO,Missouri,202201,Y,P,N,19329.0,,0.0,,19329.0,,9539.0,,382.0,,9921.0,,691029.0,,1174246.0,,1136840.0,,37406.0,,,,646.0,,775.0,,997.0,,345.0,,11265.0,,,,,,, +MO,Missouri,202201,Y,U,Y,19329.0,,0.0,,19329.0,,9539.0,,382.0,,9921.0,,702084.0,,1195895.0,,1158471.0,,37424.0,,,,646.0,,775.0,,997.0,,345.0,,11265.0,,,,,,, +MO,Missouri,202202,Y,P,N,17083.0,,0.0,,17083.0,,9773.0,,554.0,,10327.0,,691579.0,,1183981.0,,1147208.0,,36773.0,,,,569.0,,771.0,,969.0,,428.0,,13143.0,,,,,,, +MO,Missouri,202202,Y,U,Y,17083.0,,0.0,,17083.0,,9773.0,,554.0,,10327.0,,714546.0,,1224739.0,,1187857.0,,36882.0,,,,569.0,,771.0,,969.0,,428.0,,13143.0,,,,,,, +MO,Missouri,202203,Y,P,N,22585.0,,0.0,,22585.0,,14317.0,,723.0,,15040.0,,707881.0,,1218341.0,,1181462.0,,36879.0,,,,767.0,,997.0,,998.0,,414.0,,15460.0,,,,,,, +MO,Missouri,202203,Y,U,Y,22585.0,,0.0,,22585.0,,14317.0,,723.0,,15040.0,,720163.0,,1245348.0,,1208410.0,,36938.0,,,,767.0,,997.0,,998.0,,414.0,,15460.0,,,,,,, +MO,Missouri,202204,Y,P,N,19808.0,,0.0,,19808.0,,13446.0,,699.0,,14145.0,,686111.0,,1240546.0,,1206683.0,,33863.0,,,,698.0,,958.0,,952.0,,497.0,,14300.0,,,,,,, +MO,Missouri,202204,Y,U,Y,19808.0,,0.0,,19808.0,,13446.0,,699.0,,14145.0,,698027.0,,1266501.0,,1232620.0,,33881.0,,,,698.0,,958.0,,952.0,,497.0,,14300.0,,,,,,, +MO,Missouri,202205,Y,P,N,18430.0,,0.0,,18430.0,,13699.0,,724.0,,14423.0,,690023.0,,1258447.0,,1224799.0,,33648.0,,,,1054.0,,1141.0,,1081.0,,401.0,,14278.0,,,,,,, +MO,Missouri,202205,Y,U,Y,18430.0,,0.0,,18430.0,,13699.0,,724.0,,14423.0,,704024.0,,1291572.0,,1258001.0,,33571.0,,,,1054.0,,1141.0,,1081.0,,401.0,,14278.0,,,,,,, +MO,Missouri,202206,Y,P,N,20390.0,,0.0,,20390.0,,17842.0,,824.0,,18666.0,,695567.0,,1282993.0,,1249627.0,,33366.0,,,,1365.0,,904.0,,1453.0,,413.0,,18841.0,,,,,,, +MO,Missouri,202206,Y,U,Y,20390.0,,0.0,,20390.0,,17842.0,,824.0,,18666.0,,710546.0,,1320696.0,,1287271.0,,33425.0,,,,1365.0,,904.0,,1453.0,,413.0,,18841.0,,,,,,, +MO,Missouri,202207,Y,P,N,18962.0,,0.0,,18962.0,,18263.0,,883.0,,19146.0,,726635.0,,1379791.0,,1346168.0,,33623.0,,,,1273.0,,831.0,,936.0,,326.0,,19369.0,,,,,,, +MO,Missouri,202207,Y,U,Y,18962.0,,0.0,,18962.0,,18263.0,,883.0,,19146.0,,726635.0,,1379791.0,,1346168.0,,33623.0,,,,1273.0,,831.0,,936.0,,326.0,,19369.0,,,,,,, +MO,Missouri,202208,Y,P,N,23541.0,,0.0,,23541.0,,26937.0,,1126.0,,28063.0,,727999.0,,1396515.0,,1362031.0,,34484.0,,,,1537.0,,1755.0,,3793.0,,2346.0,,26612.0,,,,,,, +MO,Missouri,202208,Y,U,Y,23541.0,,0.0,,23541.0,,26937.0,,1126.0,,28063.0,,727999.0,,1396515.0,,1362031.0,,34484.0,,,,1537.0,,1755.0,,3793.0,,2346.0,,26612.0,,,,,,, +MO,Missouri,202209,Y,P,N,20504.0,,0.0,,20504.0,,21147.0,,1830.0,,22977.0,,731784.0,,1411488.0,,1376178.0,,35310.0,,,,1453.0,,1372.0,,11401.0,,5227.0,,10611.0,,,,,,, +MO,Missouri,202209,Y,U,Y,20504.0,,0.0,,20504.0,,21147.0,,1830.0,,22977.0,,731784.0,,1411488.0,,1376178.0,,35310.0,,,,1453.0,,1372.0,,11401.0,,5227.0,,10611.0,,,,,,, +MO,Missouri,202210,Y,P,N,19028.0,,0.0,,19028.0,,14597.0,,1012.0,,15609.0,,735573.0,,1426608.0,,1390805.0,,35803.0,,,,1435.0,,2001.0,,14139.0,,559.0,,1111.0,,,,,,, +MO,Missouri,202210,Y,U,Y,19028.0,,0.0,,19028.0,,14597.0,,1012.0,,15609.0,,735573.0,,1426608.0,,1390805.0,,35803.0,,,,1435.0,,2001.0,,14139.0,,559.0,,1111.0,,,,,,, +MO,Missouri,202211,Y,P,N,19667.0,,0.0,,19667.0,,13905.0,,1383.0,,15288.0,,741114.0,,1447516.0,,1410932.0,,36584.0,,,,1130.0,,13798.0,,6011.0,,184.0,,227.0,,,,,,, +MO,Missouri,202211,Y,U,Y,19667.0,,0.0,,19667.0,,13905.0,,1383.0,,15288.0,,741114.0,,1447516.0,,1410932.0,,36584.0,,,,1130.0,,13798.0,,6011.0,,184.0,,227.0,,,,,,, +MO,Missouri,202212,Y,P,N,17655.0,,0.0,,17655.0,,13862.0,,1424.0,,15286.0,,744647.0,,1468978.0,,1431541.0,,37437.0,,,,948.0,,4961.0,,12806.0,,1397.0,,166.0,,,,,,, +MO,Missouri,202212,Y,U,Y,17655.0,,0.0,,17655.0,,13862.0,,1424.0,,15286.0,,744647.0,,1468978.0,,1431541.0,,37437.0,,,,948.0,,4961.0,,12806.0,,1397.0,,166.0,,,,,,, +MO,Missouri,202301,Y,P,N,18972.0,,0.0,,18972.0,,15731.0,,1589.0,,17320.0,,750359.0,,1483594.0,,1444966.0,,38628.0,,,,1032.0,,2279.0,,17997.0,,1492.0,,309.0,,,,,,, +MO,Missouri,202301,Y,U,Y,18972.0,,0.0,,18972.0,,15731.0,,1589.0,,17320.0,,750359.0,,1483594.0,,1444966.0,,38628.0,,,,1032.0,,2279.0,,17997.0,,1492.0,,309.0,,,,,,, +MO,Missouri,202302,Y,P,N,16586.0,,0.0,,16586.0,,14024.0,,1043.0,,15067.0,,751002.0,,1492204.0,,1453052.0,,39152.0,,,,975.0,,2978.0,,14401.0,,977.0,,170.0,,,,,,, +MO,Missouri,202302,Y,U,Y,16586.0,,0.0,,16586.0,,14024.0,,1043.0,,15067.0,,751002.0,,1492204.0,,1453052.0,,39152.0,,,,975.0,,2978.0,,14401.0,,977.0,,170.0,,,,,,, +MO,Missouri,202303,Y,P,N,18801.0,,0.0,,18801.0,,11315.0,,788.0,,12103.0,,755768.0,,1504092.0,,1464197.0,,39895.0,,,,1739.0,,4920.0,,8684.0,,198.0,,207.0,,90388.0,Does not include all calls received by call centers; Includes calls for other benefit programs,15.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.261,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MO,Missouri,202303,Y,U,Y,18801.0,,0.0,,18801.0,,11315.0,,788.0,,12103.0,,755768.0,,1504092.0,,1464197.0,,39895.0,,,,1739.0,,4920.0,,8684.0,,198.0,,207.0,,90388.0,Does not include all calls received by call centers; Includes calls for other benefit programs,15.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.261,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MO,Missouri,202304,Y,P,N,16217.0,,0.0,,16217.0,,8821.0,,494.0,,9315.0,,756199.0,,1513885.0,,1473552.0,,40333.0,,,,1631.0,,1642.0,,8054.0,,256.0,,148.0,,67038.0,Does not include all calls received by call centers; Includes calls for other benefit programs,26.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.414,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MO,Missouri,202304,Y,U,Y,16217.0,,0.0,,16217.0,,8821.0,,494.0,,9315.0,,756199.0,,1513885.0,,1473552.0,,40333.0,,,,1631.0,,1642.0,,8054.0,,256.0,,148.0,,67038.0,Does not include all calls received by call centers; Includes calls for other benefit programs,26.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.414,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MO,Missouri,202305,Y,P,N,16345.0,,0.0,,16345.0,,10001.0,,708.0,,10709.0,,755911.0,,1519977.0,,1477415.0,,42562.0,,,,1497.0,,1349.0,,12225.0,,548.0,,189.0,,75562.0,Does not include all calls received by call centers; Includes calls for other benefit programs,28.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.436,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MO,Missouri,202305,Y,U,Y,16345.0,,0.0,,16345.0,,10001.0,,708.0,,10709.0,,755911.0,,1519977.0,,1477415.0,,42562.0,,,,1497.0,,1349.0,,12225.0,,548.0,,189.0,,75562.0,Does not include all calls received by call centers; Includes calls for other benefit programs,28.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.436,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MO,Missouri,202306,Y,P,N,16213.0,,0.0,,16213.0,,8529.0,,556.0,,9085.0,,757122.0,,1522455.0,,1475538.0,,46917.0,,,,1547.0,,911.0,,10036.0,,456.0,,146.0,,114824.0,Does not include all calls received by call centers; Includes calls for other benefit programs; New call center added in reporting period,26.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; New call center added in reporting period,0.446,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; New call center added in reporting period +MO,Missouri,202306,Y,U,Y,16213.0,,0.0,,16213.0,,8529.0,,556.0,,9085.0,,757122.0,,1522455.0,,1475538.0,,46917.0,,,,1547.0,,911.0,,10036.0,,456.0,,146.0,,114824.0,Does not include all calls received by call centers; Includes calls for other benefit programs; New call center added in reporting period,26.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; New call center added in reporting period,0.446,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent; New call center added in reporting period +MO,Missouri,202307,Y,P,N,16517.0,,0.0,,16517.0,,8536.0,,627.0,,9163.0,,747590.0,,1504652.0,,1455492.0,,49160.0,,,,1629.0,,737.0,,10202.0,,1264.0,,232.0,,110598.0,Does not include all calls received by call centers; Includes calls for other benefit programs,27.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.444,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MO,Missouri,202307,Y,U,Y,16517.0,,0.0,,16517.0,,8536.0,,627.0,,9163.0,,747590.0,,1504652.0,,1455492.0,,49160.0,,,,1629.0,,737.0,,10202.0,,1264.0,,232.0,,110598.0,Does not include all calls received by call centers; Includes calls for other benefit programs,27.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.444,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MO,Missouri,202308,Y,P,N,20966.0,,0.0,,20966.0,,8738.0,,652.0,,9390.0,,740914.0,,1492696.0,,1439025.0,,53671.0,,,,1690.0,,779.0,,10079.0,,1325.0,,394.0,,113903.0,Does not include all calls received by call centers; Includes calls for other benefit programs,17.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.402,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MO,Missouri,202308,Y,U,Y,20966.0,,0.0,,20966.0,,8738.0,,652.0,,9390.0,,740914.0,,1492696.0,,1439025.0,,53671.0,,,,1690.0,,779.0,,10079.0,,1325.0,,394.0,,113903.0,Does not include all calls received by call centers; Includes calls for other benefit programs,17.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.402,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MO,Missouri,202309,Y,P,N,16928.0,,0.0,,16928.0,,7323.0,,577.0,,7900.0,,730379.0,,1470387.0,,1411391.0,,58996.0,,,,1235.0,,879.0,,4570.0,,4220.0,,680.0,,104845.0,Does not include all calls received by call centers; Includes calls for other benefit programs,21.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.451,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MO,Missouri,202309,Y,U,Y,16928.0,,0.0,,16928.0,,7323.0,,577.0,,7900.0,,730379.0,,1470387.0,,1411391.0,,58996.0,,,,1235.0,,879.0,,4570.0,,4220.0,,680.0,,104845.0,Does not include all calls received by call centers; Includes calls for other benefit programs,21.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.451,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MO,Missouri,202310,Y,P,N,22242.0,,0.0,,22242.0,,8960.0,,625.0,,9585.0,,721601.0,,1453455.0,,1388845.0,,64610.0,,,,1781.0,,912.0,,1309.0,,4947.0,,4514.0,,108198.0,Does not include all calls received by call centers; Includes calls for other benefit programs,24.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.467,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MO,Missouri,202310,Y,U,Y,22242.0,,0.0,,22242.0,,8960.0,,625.0,,9585.0,,721601.0,,1453455.0,,1388845.0,,64610.0,,,,1781.0,,912.0,,1309.0,,4947.0,,4514.0,,108198.0,Does not include all calls received by call centers; Includes calls for other benefit programs,24.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.467,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MO,Missouri,202311,Y,P,N,21919.0,,0.0,,21919.0,,8975.0,,718.0,,9693.0,,706634.0,,1422975.0,,1351934.0,,71041.0,,,,1821.0,,1308.0,,1238.0,,4362.0,,6312.0,,104529.0,Does not include all calls received by call centers; Includes calls for other benefit programs,32.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.517,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MO,Missouri,202311,Y,U,Y,21919.0,,0.0,,21919.0,,8975.0,,718.0,,9693.0,,713314.0,,1435760.0,,1364586.0,,71174.0,,,,1821.0,,1308.0,,1238.0,,4362.0,,6312.0,,104529.0,Does not include all calls received by call centers; Includes calls for other benefit programs,32.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.517,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MO,Missouri,202312,Y,P,N,19671.0,,0.0,,19671.0,,7526.0,,591.0,,8117.0,,698325.0,,1405790.0,,1327155.0,,78635.0,,,,1615.0,,1483.0,,897.0,,638.0,,6255.0,,100021.0,Does not include all calls received by call centers; Includes calls for other benefit programs,39.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.537,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MO,Missouri,202312,Y,U,Y,19671.0,,0.0,,19671.0,,7526.0,,591.0,,8117.0,,704883.0,,1420459.0,,1341442.0,,79017.0,,,,1615.0,,1483.0,,897.0,,638.0,,6255.0,,100021.0,Does not include all calls received by call centers; Includes calls for other benefit programs,39.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.537,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MO,Missouri,202401,Y,P,N,28645.0,,0.0,,28645.0,,9546.0,,833.0,,10379.0,,680247.0,,1374216.0,,1288100.0,,86116.0,,,,1860.0,,1616.0,,1623.0,,1014.0,,8371.0,,123109.0,Does not include all calls received by call centers; Includes calls for other benefit programs,48.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.588,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MO,Missouri,202401,Y,U,Y,28645.0,,0.0,,28645.0,,9546.0,,833.0,,10379.0,,689016.0,,1397038.0,,1310346.0,,86692.0,,,,1860.0,,1616.0,,1623.0,,1014.0,,8371.0,,123109.0,Does not include all calls received by call centers; Includes calls for other benefit programs,48.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.588,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MO,Missouri,202402,Y,P,N,23212.0,,0.0,,23212.0,,14601.0,,1057.0,,15658.0,,666697.0,,1355155.0,,1260376.0,,94779.0,,,,1970.0,,1080.0,,1759.0,,1202.0,,15207.0,,114028.0,Does not include all calls received by call centers; Includes calls for other benefit programs,56.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.637,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MO,Missouri,202402,Y,U,Y,23212.0,,0.0,,23212.0,,14601.0,,1057.0,,15658.0,,678331.0,,1385968.0,,1290208.0,,95760.0,,,,1970.0,,1080.0,,1759.0,,1202.0,,15207.0,,114028.0,Does not include all calls received by call centers; Includes calls for other benefit programs,56.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.637,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MO,Missouri,202403,Y,P,N,25208.0,,0.0,,25208.0,,20359.0,,2034.0,,22393.0,,656880.0,,1345801.0,,1239927.0,,105874.0,,,,2065.0,,1908.0,,2055.0,,4782.0,,19035.0,,111332.0,Does not include all calls received by call centers; Includes calls for other benefit programs,58.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.633,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MO,Missouri,202403,Y,U,Y,25208.0,,0.0,,25208.0,,20359.0,,2034.0,,22393.0,,667237.0,,1365933.0,,1259649.0,,106284.0,,,,2065.0,,1908.0,,2055.0,,4782.0,,19035.0,,111332.0,Does not include all calls received by call centers; Includes calls for other benefit programs,58.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.633,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MO,Missouri,202404,Y,P,N,25784.0,,0.0,,25784.0,,9665.0,,805.0,,10470.0,,642193.0,,1317102.0,,1205651.0,,111451.0,,,,1982.0,,2045.0,,1673.0,,3574.0,,4025.0,,110220.0,Does not include all calls received by call centers; Includes calls for other benefit programs,62.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.642,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MO,Missouri,202404,Y,U,Y,25784.0,,0.0,,25784.0,,9665.0,,805.0,,10470.0,,653652.0,,1340094.0,,1228081.0,,112013.0,,,,1982.0,,2045.0,,1673.0,,3574.0,,4025.0,,110220.0,Does not include all calls received by call centers; Includes calls for other benefit programs,62.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.642,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MO,Missouri,202405,Y,P,N,25257.0,,0.0,,25257.0,,11174.0,,828.0,,12002.0,,631888.0,,1300518.0,,1180637.0,,119881.0,,,,2107.0,,2398.0,,1564.0,,5006.0,,4741.0,,91345.0,Does not include all calls received by call centers; Includes calls for other benefit programs,65.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.622,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MO,Missouri,202405,Y,U,Y,25257.0,,0.0,,25257.0,,11174.0,,828.0,,12002.0,,641793.0,,1321023.0,,1200973.0,,120050.0,,,,2107.0,,2398.0,,1564.0,,5006.0,,4741.0,,91345.0,Does not include all calls received by call centers; Includes calls for other benefit programs,65.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.622,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MO,Missouri,202406,Y,P,N,25025.0,,0.0,,25025.0,,11208.0,,807.0,,12015.0,,613314.0,,1259237.0,,1132566.0,,126671.0,,,,2235.0,,2466.0,,1854.0,,6757.0,,3028.0,,89973.0,Does not include all calls received by call centers; Includes calls for other benefit programs,72.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.652,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MO,Missouri,202406,Y,U,Y,25025.0,,0.0,,25025.0,,11208.0,,807.0,,12015.0,,623726.0,,1279822.0,,1153072.0,,126750.0,,,,2235.0,,2466.0,,1854.0,,6757.0,,3028.0,,89973.0,Does not include all calls received by call centers; Includes calls for other benefit programs,72.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.652,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MO,Missouri,202407,Y,P,N,26922.0,,0.0,,26922.0,,11062.0,,860.0,,11922.0,,614785.0,,1262279.0,,1131203.0,,131076.0,,647494.0,,2343.0,,2649.0,,1573.0,,4597.0,,4226.0,,110260.0,Does not include all calls received by call centers; Includes calls for other benefit programs,47.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.557,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MO,Missouri,202407,Y,U,Y,26922.0,,0.0,,26922.0,,11062.0,,860.0,,11922.0,,628649.0,,1289648.0,,1158700.0,,130948.0,,660999.0,,2343.0,,2649.0,,1573.0,,4597.0,,4226.0,,110260.0,Does not include all calls received by call centers; Includes calls for other benefit programs,47.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.557,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MO,Missouri,202408,Y,P,N,29950.0,,0.0,,29950.0,,14218.0,,1123.0,,15341.0,,617253.0,,1270265.0,,1136625.0,,133640.0,,653012.0,,2766.0,,3094.0,,1841.0,,9927.0,,2436.0,,123708.0,Does not include all calls received by call centers; Includes calls for other benefit programs,46.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.611,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MO,Missouri,202408,Y,U,Y,29950.0,,0.0,,29950.0,,14218.0,,1123.0,,15341.0,,627933.0,,1290815.0,,1156663.0,,134152.0,,662882.0,,2766.0,,3094.0,,1841.0,,9927.0,,2436.0,,123708.0,Does not include all calls received by call centers; Includes calls for other benefit programs,46.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.611,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MO,Missouri,202409,Y,P,N,26313.0,,0.0,,26313.0,,17105.0,,1588.0,,18693.0,,612795.0,,1265215.0,,1131012.0,,134203.0,,652420.0,,2798.0,,3166.0,,10879.0,,4745.0,,2025.0,,115649.0,Does not include all calls received by call centers; Includes calls for other benefit programs,32.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.523,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MO,Missouri,202409,Y,U,Y,26313.0,,0.0,,26313.0,,17105.0,,1588.0,,18693.0,,623361.0,,1286114.0,,1152146.0,,133968.0,,662753.0,,2798.0,,3166.0,,10879.0,,4745.0,,2025.0,,115649.0,Does not include all calls received by call centers; Includes calls for other benefit programs,32.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.523,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MO,Missouri,202410,Y,P,N,28354.0,,0.0,,28354.0,,19920.0,,2024.0,,21944.0,,612355.0,,1269477.0,,1135126.0,,134351.0,,657122.0,,3526.0,,3003.0,,16865.0,,2169.0,,2120.0,,120415.0,Does not include all calls received by call centers; Includes calls for other benefit programs,32.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.461,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MO,Missouri,202410,Y,U,Y,28354.0,,0.0,,28354.0,,19920.0,,2024.0,,21944.0,,619953.0,,1284302.0,,1150310.0,,133992.0,,664349.0,,3526.0,,3003.0,,16865.0,,2169.0,,2120.0,,120415.0,Does not include all calls received by call centers; Includes calls for other benefit programs,32.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.461,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MO,Missouri,202411,Y,P,N,25480.0,,0.0,,25480.0,,17735.0,,2208.0,,19943.0,,606546.0,,1260869.0,,1127066.0,,133803.0,,654323.0,,3012.0,,5756.0,,13563.0,,1122.0,,1638.0,,101681.0,Does not include all calls received by call centers; Includes calls for other benefit programs,39.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.485,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MO,Missouri,202411,Y,U,Y,25480.0,,0.0,,25480.0,,17735.0,,2208.0,,19943.0,,614307.0,,1277770.0,,1144000.0,,133770.0,,663463.0,,3012.0,,5756.0,,13563.0,,1122.0,,1638.0,,101681.0,Does not include all calls received by call centers; Includes calls for other benefit programs,39.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.485,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MO,Missouri,202412,Y,P,N,25796.0,,0.0,,25796.0,,14921.0,,1792.0,,16713.0,,596337.0,,1250104.0,,1118780.0,,131324.0,,653767.0,,2729.0,,3419.0,,8984.0,,3865.0,,1750.0,,103417.0,Does not include all calls received by call centers; Includes calls for other benefit programs,44.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.492,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MO,Missouri,202412,Y,U,Y,25796.0,,0.0,,25796.0,,14921.0,,1792.0,,16713.0,,607690.0,,1275036.0,,1143560.0,,131476.0,,667346.0,,2729.0,,3419.0,,8984.0,,3865.0,,1750.0,,103417.0,Does not include all calls received by call centers; Includes calls for other benefit programs,44.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.492,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MO,Missouri,202501,Y,P,N,28920.0,,0.0,,28920.0,,21684.0,,2299.0,,23983.0,,595810.0,,1256230.0,,1124832.0,,131398.0,,660420.0,,2836.0,,4282.0,,6475.0,,7822.0,,6534.0,,102940.0,Does not include all calls received by call centers; Includes calls for other benefit programs,58.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.524,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MO,Missouri,202501,Y,U,Y,28920.0,,0.0,,28920.0,,21684.0,,2299.0,,23983.0,,604843.0,,1277312.0,,1145686.0,,131626.0,,672469.0,,2836.0,,4282.0,,6475.0,,7822.0,,6534.0,,102940.0,Does not include all calls received by call centers; Includes calls for other benefit programs,58.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.524,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MO,Missouri,202502,Y,P,N,25561.0,,0.0,,25561.0,,18826.0,,2126.0,,20952.0,,582891.0,,1285127.0,,1154325.0,,130802.0,,702236.0,,2542.0,,3449.0,,4484.0,,1933.0,,11989.0,,87319.0,Does not include all calls received by call centers; Includes calls for other benefit programs,56.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.515,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MO,Missouri,202502,Y,U,Y,25561.0,,0.0,,25561.0,,18826.0,,2126.0,,20952.0,,596258.0,,1313561.0,,1182723.0,,130838.0,,717303.0,,2542.0,,3449.0,,4484.0,,1933.0,,11989.0,,87319.0,Does not include all calls received by call centers; Includes calls for other benefit programs,56.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.515,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MO,Missouri,202503,Y,P,N,30455.0,,0.0,,30455.0,,23030.0,,2194.0,,25224.0,,579738.0,,1238114.0,,1107658.0,,130456.0,,658376.0,,2829.0,,3885.0,,7244.0,,4311.0,,11487.0,,100711.0,Does not include all calls received by call centers; Includes calls for other benefit programs,58.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.534,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MO,Missouri,202503,Y,U,Y,30455.0,,0.0,,30455.0,,23030.0,,2194.0,,25224.0,,593475.0,,1264707.0,,1133825.0,,130882.0,,671232.0,,2829.0,,3885.0,,7244.0,,4311.0,,11487.0,,100711.0,Does not include all calls received by call centers; Includes calls for other benefit programs,58.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.534,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MO,Missouri,202504,Y,P,N,29671.0,,0.0,,29671.0,,19515.0,,1758.0,,21273.0,,576046.0,,1232554.0,,1105284.0,,127270.0,,656508.0,,2727.0,,3761.0,,6067.0,,7980.0,,3994.0,,93807.0,Does not include all calls received by call centers; Includes calls for other benefit programs,46.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.501,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MO,Missouri,202504,Y,U,Y,29671.0,,0.0,,29671.0,,19515.0,,1758.0,,21273.0,,587456.0,,1254723.0,,1127289.0,,127434.0,,667267.0,,2727.0,,3761.0,,6067.0,,7980.0,,3994.0,,93807.0,Does not include all calls received by call centers; Includes calls for other benefit programs,46.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.501,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MO,Missouri,202505,Y,P,N,25397.0,,0.0,,25397.0,,16640.0,,1497.0,,18137.0,,576095.0,,1233082.0,,1101858.0,,131224.0,,656987.0,,2506.0,,3622.0,,4419.0,,7963.0,,2865.0,,73931.0,Does not include all calls received by call centers; Includes calls for other benefit programs,39.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.448,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MO,Missouri,202505,Y,U,Y,25397.0,,0.0,,25397.0,,16640.0,,1497.0,,18137.0,,585492.0,,1251938.0,,1120662.0,,131276.0,,666446.0,,2506.0,,3622.0,,4419.0,,7963.0,,2865.0,,73931.0,Does not include all calls received by call centers; Includes calls for other benefit programs,39.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.448,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MO,Missouri,202506,Y,P,N,27886.0,,0.0,,27886.0,,18693.0,,1790.0,,20483.0,,570923.0,,1230024.0,,1097476.0,,132548.0,,659101.0,,3487.0,,3972.0,,3532.0,,8425.0,,4508.0,,75666.0,Does not include all calls received by call centers; Includes calls for other benefit programs,25.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.32,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MO,Missouri,202506,Y,U,Y,27886.0,,0.0,,27886.0,,18693.0,,1790.0,,20483.0,,582030.0,,1252768.0,,1120340.0,,132428.0,,670738.0,,3487.0,,3972.0,,3532.0,,8425.0,,4508.0,,75666.0,Does not include all calls received by call centers; Includes calls for other benefit programs,25.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.32,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MO,Missouri,202507,Y,P,N,30450.0,,0.0,,30450.0,,24419.0,,2568.0,,26987.0,,574639.0,,1239110.0,,1105732.0,,133378.0,,664471.0,,4022.0,,4519.0,,6838.0,,10900.0,,4573.0,,74271.0,Does not include all calls received by call centers; Includes calls for other benefit programs,17.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.228,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MO,Missouri,202507,Y,U,Y,30450.0,,0.0,,30450.0,,24419.0,,2568.0,,26987.0,,585492.0,,1260863.0,,1127404.0,,133459.0,,675371.0,,4022.0,,4519.0,,6838.0,,10900.0,,4573.0,,74271.0,Does not include all calls received by call centers; Includes calls for other benefit programs,17.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.228,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MO,Missouri,202508,Y,P,N,29155.0,,0.0,,29155.0,,23690.0,,2393.0,,26083.0,,577046.0,,1247135.0,,1113475.0,,133660.0,,670089.0,,3470.0,,4196.0,,13279.0,,5152.0,,3287.0,,65820.0,Does not include all calls received by call centers; Includes calls for other benefit programs,13.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.181,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MO,Missouri,202508,Y,U,Y,29155.0,,0.0,,29155.0,,23690.0,,2393.0,,26083.0,,587468.0,,1267548.0,,1133484.0,,134064.0,,680080.0,,3470.0,,4196.0,,13279.0,,5152.0,,3287.0,,65820.0,Does not include all calls received by call centers; Includes calls for other benefit programs,13.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.181,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MO,Missouri,202509,Y,P,N,27227.0,,0.0,,27227.0,,24115.0,,2682.0,,26797.0,,578188.0,,1253105.0,,1119242.0,,133863.0,,674917.0,,3867.0,,4134.0,,17225.0,,2386.0,,2837.0,,66260.0,Does not include all calls received by call centers; Includes calls for other benefit programs,14.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.18,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MO,Missouri,202509,Y,U,Y,27227.0,,0.0,,27227.0,,24115.0,,2682.0,,26797.0,,587324.0,,1267813.0,,1133687.0,,134126.0,,680489.0,,3867.0,,4134.0,,17225.0,,2386.0,,2837.0,,66260.0,Does not include all calls received by call centers; Includes calls for other benefit programs,14.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.18,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MO,Missouri,202510,Y,P,N,27890.0,,0.0,,27890.0,,24161.0,,2570.0,,26731.0,,580453.0,,1253398.0,,1119590.0,,133808.0,,672945.0,,3691.0,,6633.0,,16703.0,,2121.0,,1664.0,,66382.0,Does not include all calls received by call centers; Includes calls for other benefit programs,13.0,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.192,Does not include all calls received by call centers; Includes calls for other benefit programs; Includes only calls transferred to a live agent +MS,Mississippi,201309,N,U,Y,,,,,,,,,,,,,,,615556.0,,,,,,,,,,,,,,,,,,,,,,, +MS,Mississippi,201706,N,P,N,16663.0,,0.0,,16663.0,,11008.0,,378.0,,11386.0,,424893.0,,643768.0,,564127.0,,79641.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,201706,N,U,Y,16663.0,,0.0,,16663.0,,11008.0,,378.0,,11386.0,,417843.0,,625456.0,,545469.0,,79987.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,201707,N,P,N,16488.0,,0.0,,16488.0,,11318.0,,382.0,,11700.0,,422541.0,,640804.0,,561125.0,,79679.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,201707,N,U,Y,16488.0,,0.0,,16488.0,,11318.0,,382.0,,11700.0,,417691.0,,625464.0,,545228.0,,80236.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,201708,N,P,N,20645.0,,0.0,,20645.0,,14846.0,,548.0,,15394.0,,422372.0,,641452.0,,561894.0,,79558.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,201708,N,U,Y,20645.0,,0.0,,20645.0,,14846.0,,548.0,,15394.0,,416718.0,,624436.0,,544486.0,,79950.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,201709,N,P,N,16755.0,,0.0,,16755.0,,12759.0,,432.0,,13191.0,,420485.0,,637890.0,,558717.0,,79173.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,201709,N,U,Y,16755.0,,0.0,,16755.0,,12759.0,,432.0,,13191.0,,416505.0,,623606.0,,543886.0,,79720.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,201710,N,P,N,16082.0,,0.0,,16082.0,,10706.0,,401.0,,11107.0,,419597.0,,636804.0,,558113.0,,78691.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,201710,N,U,Y,16082.0,,0.0,,16082.0,,10706.0,,401.0,,11107.0,,416468.0,,622763.0,,543575.0,,79188.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,201711,N,P,N,18628.0,,0.0,,18628.0,,10245.0,,393.0,,10638.0,,420075.0,,637657.0,,558953.0,,78704.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,201711,N,U,Y,18628.0,,0.0,,18628.0,,10245.0,,393.0,,10638.0,,414627.0,,619890.0,,540693.0,,79197.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,201712,N,P,N,16598.0,,0.0,,16598.0,,10075.0,,440.0,,10515.0,,416776.0,,632513.0,,554264.0,,78249.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,201712,N,U,Y,16598.0,,0.0,,16598.0,,10075.0,,440.0,,10515.0,,411827.0,,615791.0,,536722.0,,79069.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,201801,N,P,N,17902.0,,0.0,,17902.0,,10083.0,,491.0,,10574.0,,415211.0,,630379.0,,552058.0,,78321.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,201801,N,U,Y,17902.0,,0.0,,17902.0,,10083.0,,491.0,,10574.0,,409963.0,,614112.0,,535122.0,,78990.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,201802,N,P,N,16452.0,,0.0,,16452.0,,10119.0,,378.0,,10497.0,,412508.0,,626882.0,,548817.0,,78065.0,,,,193.0,,2045.0,,6231.0,,2854.0,,2323.0,,,,,,, +MS,Mississippi,201802,N,U,Y,16452.0,,0.0,,16452.0,,10119.0,,378.0,,10497.0,,406539.0,,609725.0,,530907.0,,78818.0,,,,193.0,,2045.0,,6231.0,,2854.0,,2323.0,,,,,,, +MS,Mississippi,201803,N,P,N,17843.0,,0.0,,17843.0,,12132.0,,553.0,,12685.0,,409295.0,,622594.0,,544887.0,,77707.0,,,,294.0,,2410.0,,7127.0,,3950.0,,2439.0,,,,,,, +MS,Mississippi,201803,N,U,Y,17843.0,,0.0,,17843.0,,12132.0,,553.0,,12685.0,,405004.0,,607996.0,,529544.0,,78452.0,,,,294.0,,2410.0,,7127.0,,3950.0,,2439.0,,,,,,, +MS,Mississippi,201804,N,P,N,16188.0,,0.0,,16188.0,,10979.0,,442.0,,11421.0,,407203.0,,620234.0,,542947.0,,77287.0,,,,308.0,,2984.0,,6090.0,,3417.0,,1661.0,,,,,,, +MS,Mississippi,201804,N,U,Y,16188.0,,0.0,,16188.0,,10979.0,,442.0,,11421.0,,402168.0,,605231.0,,527290.0,,77941.0,,,,308.0,,2984.0,,6090.0,,3417.0,,1661.0,,,,,,, +MS,Mississippi,201805,N,P,N,17597.0,,0.0,,17597.0,,11044.0,,450.0,,11494.0,,405060.0,,617925.0,,541394.0,,76531.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,201805,N,U,Y,17597.0,,0.0,,17597.0,,11044.0,,450.0,,11494.0,,399892.0,,602311.0,,525125.0,,77186.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,201806,N,P,N,16918.0,,0.0,,16918.0,,10845.0,,450.0,,11295.0,,401657.0,,613749.0,,537491.0,,76258.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,201806,N,U,Y,16918.0,,0.0,,16918.0,,10845.0,,450.0,,11295.0,,398522.0,,600577.0,,523655.0,,76922.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,201807,N,P,N,18192.0,,0.0,,18192.0,,10510.0,,460.0,,10970.0,,397836.0,,609140.0,,533569.0,,75571.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,201807,N,U,Y,18192.0,,0.0,,18192.0,,10510.0,,460.0,,10970.0,,396701.0,,598703.0,,522036.0,,76667.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,201808,N,P,N,21154.0,,0.0,,21154.0,,13106.0,,631.0,,13737.0,,396974.0,,608666.0,,533029.0,,75637.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,201808,N,U,Y,21154.0,,0.0,,21154.0,,13106.0,,631.0,,13737.0,,394071.0,,595501.0,,519029.0,,76472.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,201809,N,P,N,17560.0,,0.0,,17560.0,,11760.0,,546.0,,12306.0,,394485.0,,605433.0,,530112.0,,75321.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,201809,N,U,Y,17560.0,,0.0,,17560.0,,11760.0,,546.0,,12306.0,,394022.0,,595142.0,,518842.0,,76300.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,201810,N,P,N,18609.0,,0.0,,18609.0,,12150.0,,564.0,,12714.0,,393942.0,,605274.0,,530106.0,,75168.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,201810,N,U,Y,18609.0,,0.0,,18609.0,,12150.0,,564.0,,12714.0,,390824.0,,591122.0,,515155.0,,75967.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,201811,N,P,N,16859.0,,0.0,,16859.0,,10141.0,,540.0,,10681.0,,392991.0,,603635.0,,528508.0,,75127.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,201811,N,U,Y,16859.0,,0.0,,16859.0,,10141.0,,540.0,,10681.0,,391838.0,,591742.0,,515879.0,,75863.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,201812,N,P,N,17962.0,,0.0,,17962.0,,11701.0,,963.0,,12664.0,,384131.0,,579469.0,,504381.0,,75088.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,201812,N,U,Y,17962.0,,0.0,,17962.0,,11701.0,,963.0,,12664.0,,391052.0,,591410.0,,515488.0,,75922.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,201901,N,P,N,20402.0,,0.0,,20402.0,,13800.0,,951.0,,14751.0,,386200.0,,582431.0,,507001.0,,75430.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,201901,N,U,Y,20402.0,,0.0,,20402.0,,13800.0,,951.0,,14751.0,,392439.0,,592471.0,,516338.0,,76133.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,201902,N,P,N,18313.0,,0.0,,18313.0,,11632.0,,707.0,,12339.0,,386033.0,,581697.0,,505897.0,,75800.0,,,,311.0,,3544.0,,7996.0,,3690.0,,1455.0,,,,,,, +MS,Mississippi,201902,N,U,Y,18313.0,,0.0,,18313.0,,11632.0,,707.0,,12339.0,,392516.0,,592302.0,,515774.0,,76528.0,,,,311.0,,3544.0,,7996.0,,3690.0,,1455.0,,,,,,, +MS,Mississippi,201903,N,P,N,19291.0,,0.0,,19291.0,,12827.0,,644.0,,13471.0,,385329.0,,581030.0,,505098.0,,75932.0,,,,363.0,,3656.0,,8093.0,,5450.0,,1545.0,,,,,,, +MS,Mississippi,201903,N,U,Y,19291.0,,0.0,,19291.0,,12827.0,,644.0,,13471.0,,392225.0,,592117.0,,515461.0,,76656.0,,,,363.0,,3656.0,,8093.0,,5450.0,,1545.0,,,,,,, +MS,Mississippi,201904,N,P,N,18887.0,,0.0,,18887.0,,12062.0,,637.0,,12699.0,,385665.0,,581734.0,,505674.0,,76060.0,,,,341.0,,3661.0,,9061.0,,4165.0,,1072.0,,,,,,, +MS,Mississippi,201904,N,U,Y,18887.0,,0.0,,18887.0,,12062.0,,637.0,,12699.0,,391944.0,,592043.0,,515387.0,,76656.0,,,,341.0,,3661.0,,9061.0,,4165.0,,1072.0,,,,,,, +MS,Mississippi,201905,N,P,N,19070.0,,0.0,,19070.0,,12448.0,,561.0,,13009.0,,386026.0,,582449.0,,506159.0,,76290.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,201905,N,U,Y,19070.0,,0.0,,19070.0,,12448.0,,561.0,,13009.0,,391027.0,,591039.0,,514323.0,,76716.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,201906,N,P,N,18094.0,,0.0,,18094.0,,10905.0,,619.0,,11524.0,,384025.0,,580202.0,,504226.0,,75976.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,201906,N,U,Y,18094.0,,0.0,,18094.0,,10905.0,,619.0,,11524.0,,390230.0,,590182.0,,513583.0,,76599.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,201907,N,P,N,21199.0,,0.0,,21199.0,,11703.0,,597.0,,12300.0,,382944.0,,579284.0,,503375.0,,75909.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,201907,N,U,Y,21199.0,,0.0,,21199.0,,11703.0,,597.0,,12300.0,,390691.0,,591085.0,,514471.0,,76614.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,201908,N,P,N,22127.0,,0.0,,22127.0,,13773.0,,765.0,,14538.0,,383084.0,,579503.0,,503238.0,,76265.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,201908,N,U,Y,22127.0,,0.0,,22127.0,,13773.0,,765.0,,14538.0,,390151.0,,590464.0,,513474.0,,76990.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,201909,N,P,N,18920.0,,0.0,,18920.0,,12010.0,,637.0,,12647.0,,382425.0,,578952.0,,502656.0,,76296.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,201909,N,U,Y,18920.0,,0.0,,18920.0,,12010.0,,637.0,,12647.0,,389635.0,,590067.0,,512963.0,,77104.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,201910,N,P,N,19421.0,,0.0,,19421.0,,13004.0,,617.0,,13621.0,,383052.0,,579574.0,,503125.0,,76449.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,201910,N,U,Y,19421.0,,0.0,,19421.0,,13004.0,,617.0,,13621.0,,388632.0,,588362.0,,511354.0,,77008.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,201911,N,P,N,15537.0,,0.0,,15537.0,,11038.0,,727.0,,11765.0,,381996.0,,577349.0,,501105.0,,76244.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,201911,N,U,Y,15537.0,,0.0,,15537.0,,11038.0,,727.0,,11765.0,,387646.0,,586260.0,,509335.0,,76925.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,201912,N,P,N,16265.0,,0.0,,16265.0,,11586.0,,861.0,,12447.0,,381770.0,,575706.0,,499428.0,,76278.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,201912,N,U,Y,16265.0,,0.0,,16265.0,,11586.0,,861.0,,12447.0,,387955.0,,585617.0,,508603.0,,77014.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,202001,N,P,N,20547.0,,0.0,,20547.0,,13346.0,,952.0,,14298.0,,381972.0,,575898.0,,499268.0,,76630.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,202001,N,U,Y,20547.0,,0.0,,20547.0,,13346.0,,952.0,,14298.0,,388069.0,,585798.0,,508498.0,,77300.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,202002,N,P,N,16906.0,,0.0,,16906.0,,10865.0,,653.0,,11518.0,,381478.0,,575227.0,,498341.0,,76886.0,,,,299.0,,3368.0,,8919.0,,2744.0,,1200.0,,,,,,, +MS,Mississippi,202002,N,U,Y,16906.0,,0.0,,16906.0,,10865.0,,653.0,,11518.0,,387192.0,,584765.0,,507208.0,,77557.0,,,,299.0,,3368.0,,8919.0,,2744.0,,1200.0,,,,,,, +MS,Mississippi,202003,N,P,N,18229.0,,0.0,,18229.0,,10618.0,,545.0,,11163.0,,380479.0,,573890.0,,496737.0,,77153.0,,,,293.0,,3828.0,,9451.0,,2661.0,,1107.0,,,,,,, +MS,Mississippi,202003,N,U,Y,18229.0,,0.0,,18229.0,,10618.0,,545.0,,11163.0,,385264.0,,582208.0,,504629.0,,77579.0,,,,293.0,,3828.0,,9451.0,,2661.0,,1107.0,,,,,,, +MS,Mississippi,202004,N,P,N,20776.0,,0.0,,20776.0,,10909.0,,416.0,,11325.0,,378192.0,,571629.0,,494733.0,,76896.0,,,,309.0,,5484.0,,11448.0,,1696.0,,771.0,,,,,,, +MS,Mississippi,202004,N,U,Y,20776.0,,0.0,,20776.0,,10909.0,,416.0,,11325.0,,391049.0,,592152.0,,513351.0,,78801.0,,,,309.0,,5484.0,,11448.0,,1696.0,,771.0,,,,,,, +MS,Mississippi,202005,N,P,N,14541.0,,0.0,,14541.0,,9181.0,,353.0,,9534.0,,392134.0,,595049.0,,515475.0,,79574.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,202005,N,U,Y,14541.0,,0.0,,14541.0,,9181.0,,353.0,,9534.0,,395331.0,,600867.0,,521058.0,,79809.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,202006,N,P,N,15606.0,,0.0,,15606.0,,8569.0,,404.0,,8973.0,,397191.0,,603629.0,,523175.0,,80454.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,202006,N,U,Y,15606.0,,0.0,,15606.0,,8569.0,,404.0,,8973.0,,399942.0,,608793.0,,528197.0,,80596.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,202007,N,P,N,16949.0,,0.0,,16949.0,,8756.0,,384.0,,9140.0,,401280.0,,611333.0,,530852.0,,80481.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,202007,N,U,Y,16949.0,,0.0,,16949.0,,8756.0,,384.0,,9140.0,,404423.0,,617043.0,,536412.0,,80631.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,202008,N,P,N,19853.0,,0.0,,19853.0,,9857.0,,372.0,,10229.0,,406483.0,,619986.0,,538923.0,,81063.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,202008,N,U,Y,19853.0,,0.0,,19853.0,,9857.0,,372.0,,10229.0,,409993.0,,626269.0,,545068.0,,81201.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,202009,N,P,N,16983.0,,0.0,,16983.0,,10033.0,,447.0,,10480.0,,411881.0,,629122.0,,547645.0,,81477.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,202009,N,U,Y,16983.0,,0.0,,16983.0,,10033.0,,447.0,,10480.0,,414767.0,,634525.0,,552938.0,,81587.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,202010,N,P,N,17120.0,,0.0,,17120.0,,9185.0,,365.0,,9550.0,,416497.0,,637397.0,,555573.0,,81824.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,202010,N,U,Y,17120.0,,0.0,,17120.0,,9185.0,,365.0,,9550.0,,418708.0,,641795.0,,559892.0,,81903.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,202011,N,P,N,14454.0,,0.0,,14454.0,,7300.0,,294.0,,7594.0,,419793.0,,643854.0,,561745.0,,82109.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,202011,N,U,Y,14454.0,,0.0,,14454.0,,7300.0,,294.0,,7594.0,,422111.0,,648383.0,,566180.0,,82203.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,202012,N,P,N,14733.0,,0.0,,14733.0,,7634.0,,339.0,,7973.0,,423371.0,,650635.0,,568315.0,,82320.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,202012,N,U,Y,14733.0,,0.0,,14733.0,,7634.0,,339.0,,7973.0,,425581.0,,655264.0,,572875.0,,82389.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,202101,N,P,N,15329.0,,0.0,,15329.0,,7990.0,,306.0,,8296.0,,427072.0,,657603.0,,575128.0,,82475.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,202101,N,U,Y,15329.0,,0.0,,15329.0,,7990.0,,306.0,,8296.0,,429027.0,,661711.0,,579176.0,,82535.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,202102,N,P,N,12282.0,,0.0,,12282.0,,6366.0,,251.0,,6617.0,,430001.0,,663154.0,,580581.0,,82573.0,,,,150.0,,3017.0,,6900.0,,1379.0,,645.0,,,,,,, +MS,Mississippi,202102,N,U,Y,12282.0,,0.0,,12282.0,,6366.0,,251.0,,6617.0,,432168.0,,667880.0,,585193.0,,82687.0,,,,150.0,,3017.0,,6900.0,,1379.0,,645.0,,,,,,, +MS,Mississippi,202103,N,P,N,14109.0,,0.0,,14109.0,,8070.0,,286.0,,8356.0,,433552.0,,670317.0,,587718.0,,82599.0,,,,199.0,,3872.0,,8079.0,,1678.0,,738.0,,,,,,, +MS,Mississippi,202103,N,U,Y,14109.0,,0.0,,14109.0,,8070.0,,286.0,,8356.0,,435070.0,,674139.0,,591488.0,,82651.0,,,,199.0,,3872.0,,8079.0,,1678.0,,738.0,,,,,,, +MS,Mississippi,202104,N,P,N,12891.0,,0.0,,12891.0,,6167.0,,220.0,,6387.0,,436059.0,,675455.0,,592852.0,,82603.0,,,,106.0,,2764.0,,7171.0,,1243.0,,460.0,,,,,,, +MS,Mississippi,202104,N,U,Y,12891.0,,0.0,,12891.0,,6167.0,,220.0,,6387.0,,437648.0,,679322.0,,596680.0,,82642.0,,,,106.0,,2764.0,,7171.0,,1243.0,,460.0,,,,,,, +MS,Mississippi,202105,N,P,N,12129.0,,0.0,,12129.0,,6547.0,,240.0,,6787.0,,438751.0,,680601.0,,597959.0,,82642.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,202105,N,U,Y,12129.0,,0.0,,12129.0,,6547.0,,240.0,,6787.0,,440278.0,,684203.0,,601520.0,,82683.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,202106,N,P,N,15359.0,,0.0,,15359.0,,6706.0,,254.0,,6960.0,,441213.0,,684648.0,,602111.0,,82537.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,202106,N,U,Y,15359.0,,0.0,,15359.0,,6706.0,,254.0,,6960.0,,442937.0,,688656.0,,606086.0,,82570.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,202107,N,P,N,17319.0,,0.0,,17319.0,,7669.0,,312.0,,7981.0,,442561.0,,688934.0,,607802.0,,81132.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,202107,N,U,Y,17319.0,,0.0,,17319.0,,7669.0,,312.0,,7981.0,,444854.0,,693700.0,,612335.0,,81365.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,202108,N,P,N,16979.0,,0.0,,16979.0,,8412.0,,391.0,,8803.0,,444859.0,,694442.0,,614917.0,,79525.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,202108,N,U,Y,16979.0,,0.0,,16979.0,,8412.0,,391.0,,8803.0,,447054.0,,698969.0,,619190.0,,79779.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,202109,N,P,N,15492.0,,0.0,,15492.0,,7925.0,,377.0,,8302.0,,446695.0,,698975.0,,620518.0,,78457.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,202109,N,U,Y,15492.0,,0.0,,15492.0,,7925.0,,377.0,,8302.0,,448699.0,,703361.0,,624609.0,,78752.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,202110,N,P,N,14636.0,,0.0,,14636.0,,7384.0,,370.0,,7754.0,,447406.0,,702448.0,,625847.0,,76601.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,202110,N,U,Y,14636.0,,0.0,,14636.0,,7384.0,,370.0,,7754.0,,449338.0,,706380.0,,629510.0,,76870.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,202111,N,P,N,14117.0,,0.0,,14117.0,,6586.0,,384.0,,6970.0,,448909.0,,706332.0,,630595.0,,75737.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,202111,N,U,Y,14117.0,,0.0,,14117.0,,6586.0,,384.0,,6970.0,,450866.0,,710576.0,,634517.0,,76059.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,202112,N,P,N,13477.0,,0.0,,13477.0,,6795.0,,434.0,,7229.0,,450677.0,,710891.0,,635662.0,,75229.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,202112,N,U,Y,13477.0,,0.0,,13477.0,,6795.0,,434.0,,7229.0,,452488.0,,714730.0,,639179.0,,75551.0,,,,,,,,,,,,,,,,,,, +MS,Mississippi,202201,N,P,N,15393.0,,0.0,,15393.0,,6608.0,,420.0,,7028.0,,451964.0,,714895.0,,639902.0,,74993.0,,,,89.0,,1409.0,,7866.0,,3309.0,,2270.0,,,,,,, +MS,Mississippi,202201,N,U,Y,15393.0,,0.0,,15393.0,,6608.0,,420.0,,7028.0,,454223.0,,719374.0,,644079.0,,75295.0,,,,89.0,,1409.0,,7866.0,,3309.0,,2270.0,,,,,,, +MS,Mississippi,202202,N,P,N,12523.0,,0.0,,12523.0,,7015.0,,467.0,,7482.0,,453190.0,,718293.0,,643427.0,,74866.0,,,,97.0,,1378.0,,7960.0,,2747.0,,1947.0,,,,,,, +MS,Mississippi,202202,N,U,Y,12523.0,,0.0,,12523.0,,7015.0,,467.0,,7482.0,,455382.0,,722491.0,,647348.0,,75143.0,,,,97.0,,1378.0,,7960.0,,2747.0,,1947.0,,,,,,, +MS,Mississippi,202203,N,P,N,15257.0,,0.0,,15257.0,,7395.0,,426.0,,7821.0,,454823.0,,722329.0,,647736.0,,74593.0,,,,136.0,,1825.0,,7671.0,,2285.0,,1562.0,,,,,,, +MS,Mississippi,202203,N,U,Y,15257.0,,0.0,,15257.0,,7395.0,,426.0,,7821.0,,456531.0,,725907.0,,651087.0,,74820.0,,,,136.0,,1825.0,,7671.0,,2285.0,,1562.0,,,,,,, +MS,Mississippi,202204,N,P,N,13694.0,,0.0,,13694.0,,6433.0,,393.0,,6826.0,,455805.0,,725645.0,,651336.0,,74309.0,,,,129.0,,1892.0,,6202.0,,1906.0,,1046.0,,,,,,, +MS,Mississippi,202204,N,U,Y,13694.0,,0.0,,13694.0,,6433.0,,393.0,,6826.0,,457859.0,,729776.0,,655197.0,,74579.0,,,,129.0,,1892.0,,6202.0,,1906.0,,1046.0,,,,,,, +MS,Mississippi,202205,N,P,N,14325.0,,0.0,,14325.0,,7185.0,,438.0,,7623.0,,457253.0,,729731.0,,655806.0,,73925.0,,,,130.0,,1999.0,,6772.0,,2161.0,,1363.0,,,,,,, +MS,Mississippi,202205,N,U,Y,14325.0,,0.0,,14325.0,,7185.0,,438.0,,7623.0,,459105.0,,733637.0,,659417.0,,74220.0,,,,130.0,,1999.0,,6772.0,,2161.0,,1363.0,,,,,,, +MS,Mississippi,202206,N,P,N,14741.0,,0.0,,14741.0,,7164.0,,382.0,,7546.0,,458805.0,,734070.0,,660113.0,,73957.0,,,,158.0,,2137.0,,6231.0,,2461.0,,1504.0,,,,,,, +MS,Mississippi,202206,N,U,Y,14741.0,,0.0,,14741.0,,7164.0,,382.0,,7546.0,,460515.0,,737845.0,,663644.0,,74201.0,,,,158.0,,2137.0,,6231.0,,2461.0,,1504.0,,,,,,, +MS,Mississippi,202207,N,P,N,13361.0,,0.0,,13361.0,,6549.0,,386.0,,6935.0,,459931.0,,738038.0,,664165.0,,73873.0,,,,91.0,,1683.0,,5716.0,,2340.0,,1622.0,,,,,,, +MS,Mississippi,202207,N,U,Y,13361.0,,0.0,,13361.0,,6549.0,,386.0,,6935.0,,462237.0,,742600.0,,668471.0,,74129.0,,,,91.0,,1683.0,,5716.0,,2340.0,,1622.0,,,,,,, +MS,Mississippi,202208,N,P,N,17760.0,,0.0,,17760.0,,7874.0,,429.0,,8303.0,,461978.0,,743204.0,,669657.0,,73547.0,,,,87.0,,1816.0,,7353.0,,2340.0,,1921.0,,,,,,, +MS,Mississippi,202208,N,U,Y,17760.0,,0.0,,17760.0,,7874.0,,429.0,,8303.0,,465007.0,,748431.0,,674532.0,,73899.0,,,,87.0,,1816.0,,7353.0,,2340.0,,1921.0,,,,,,, +MS,Mississippi,202209,N,P,N,14644.0,,0.0,,14644.0,,7712.0,,509.0,,8221.0,,464346.0,,748550.0,,674978.0,,73572.0,,,,98.0,,1089.0,,7611.0,,3087.0,,1840.0,,,,,,, +MS,Mississippi,202209,N,U,Y,14644.0,,0.0,,14644.0,,7712.0,,509.0,,8221.0,,472954.0,,761912.0,,686671.0,,75241.0,,,,98.0,,1089.0,,7611.0,,3087.0,,1840.0,,,,,,, +MS,Mississippi,202210,N,P,N,15313.0,,0.0,,15313.0,,7681.0,,561.0,,8242.0,,474929.0,,764407.0,,689049.0,,75358.0,,,,108.0,,1434.0,,7729.0,,2706.0,,2202.0,,,,,,, +MS,Mississippi,202210,N,U,Y,15313.0,,0.0,,15313.0,,7681.0,,561.0,,8242.0,,473330.0,,764385.0,,689027.0,,75358.0,,,,108.0,,1434.0,,7729.0,,2706.0,,2202.0,,,,,,, +MS,Mississippi,202211,N,P,N,14271.0,,0.0,,14271.0,,7461.0,,499.0,,7960.0,,475853.0,,767367.0,,691590.0,,75777.0,,,,79.0,,1241.0,,9189.0,,2157.0,,1834.0,,,,,,, +MS,Mississippi,202211,N,U,Y,14271.0,,0.0,,14271.0,,7461.0,,499.0,,7960.0,,474430.0,,767417.0,,691640.0,,75777.0,,,,79.0,,1241.0,,9189.0,,2157.0,,1834.0,,,,,,, +MS,Mississippi,202212,N,P,N,15605.0,,0.0,,15605.0,,7138.0,,479.0,,7617.0,,476932.0,,770251.0,,693926.0,,76325.0,,,,63.0,,1087.0,,9490.0,,3251.0,,1635.0,,,,,,, +MS,Mississippi,202212,N,U,Y,15605.0,,0.0,,15605.0,,7138.0,,479.0,,7617.0,,475448.0,,770553.0,,694207.0,,76346.0,,,,63.0,,1087.0,,9490.0,,3251.0,,1635.0,,,,,,, +MS,Mississippi,202301,N,P,N,15505.0,,0.0,,15505.0,,8276.0,,464.0,,8740.0,,477284.0,,772200.0,,695375.0,,76825.0,,,,81.0,,1458.0,,9702.0,,3344.0,,1984.0,,,,,,, +MS,Mississippi,202301,N,U,Y,15505.0,,0.0,,15505.0,,8276.0,,464.0,,8740.0,,477571.0,,775336.0,,698366.0,,76970.0,,,,81.0,,1458.0,,9702.0,,3344.0,,1984.0,,,,,,, +MS,Mississippi,202302,N,P,N,12388.0,,0.0,,12388.0,,7426.0,,350.0,,7776.0,,478708.0,,775755.0,,698450.0,,77305.0,,,,63.0,,2136.0,,8406.0,,2508.0,,1299.0,,,,,,, +MS,Mississippi,202302,N,U,Y,12388.0,,0.0,,12388.0,,7426.0,,350.0,,7776.0,,479007.0,,778882.0,,701478.0,,77404.0,,,,63.0,,2136.0,,8406.0,,2508.0,,1299.0,,,,,,, +MS,Mississippi,202303,N,P,N,14440.0,,0.0,,14440.0,,7433.0,,314.0,,7747.0,,480345.0,,779857.0,,702289.0,,77568.0,,,,87.0,,2872.0,,8323.0,,1153.0,,577.0,,10871.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,1.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.063,Does not include all calls received by call centers; Includes only calls transferred to a live agent +MS,Mississippi,202303,N,U,Y,14440.0,,0.0,,14440.0,,7433.0,,314.0,,7747.0,,480158.0,,786822.0,,709170.0,,77652.0,,,,87.0,,2872.0,,8323.0,,1153.0,,577.0,,10871.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,1.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.063,Does not include all calls received by call centers; Includes only calls transferred to a live agent +MS,Mississippi,202304,N,P,N,12381.0,,0.0,,12381.0,,5675.0,,243.0,,5918.0,,480907.0,,787062.0,,709280.0,,77782.0,,,,51.0,,1391.0,,7596.0,,964.0,,289.0,,9092.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,1.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.037,Does not include all calls received by call centers; Includes only calls transferred to a live agent +MS,Mississippi,202304,N,U,Y,12381.0,,0.0,,12381.0,,5675.0,,243.0,,5918.0,,481036.0,,791146.0,,713300.0,,77846.0,,,,51.0,,1391.0,,7596.0,,964.0,,289.0,,9092.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,1.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.037,Does not include all calls received by call centers; Includes only calls transferred to a live agent +MS,Mississippi,202305,N,P,N,13359.0,,0.0,,13359.0,,6408.0,,239.0,,6647.0,,481860.0,,791409.0,,713531.0,,77878.0,,,,61.0,,1615.0,,8445.0,,1622.0,,477.0,,8434.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,1.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.049,Does not include all calls received by call centers; Includes only calls transferred to a live agent +MS,Mississippi,202305,N,U,Y,13359.0,,0.0,,13359.0,,6408.0,,239.0,,6647.0,,482078.0,,794342.0,,716376.0,,77966.0,,,,61.0,,1615.0,,8445.0,,1622.0,,477.0,,8434.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,1.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.049,Does not include all calls received by call centers; Includes only calls transferred to a live agent +MS,Mississippi,202306,N,P,N,13891.0,,0.0,,13891.0,,6569.0,,272.0,,6841.0,,482586.0,,793667.0,,715662.0,,78005.0,,,,75.0,,1151.0,,7905.0,,2230.0,,897.0,,7656.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,1.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.06,Does not include all calls received by call centers; Includes only calls transferred to a live agent +MS,Mississippi,202306,N,U,Y,13891.0,,0.0,,13891.0,,6569.0,,272.0,,6841.0,,482740.0,,796813.0,,718702.0,,78111.0,,,,75.0,,1151.0,,7905.0,,2230.0,,897.0,,7656.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,1.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.06,Does not include all calls received by call centers; Includes only calls transferred to a live agent +MS,Mississippi,202307,N,P,N,15793.0,,0.0,,15793.0,,6904.0,,333.0,,7237.0,,467002.0,,766340.0,,688936.0,,77404.0,,,,103.0,,851.0,,6982.0,,2430.0,,1254.0,,7836.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,1.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.07,Does not include all calls received by call centers; Includes only calls transferred to a live agent +MS,Mississippi,202307,N,U,Y,15793.0,,0.0,,15793.0,,6904.0,,333.0,,7237.0,,470134.0,,772413.0,,694451.0,,77962.0,,,,103.0,,851.0,,6982.0,,2430.0,,1254.0,,7836.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,1.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.07,Does not include all calls received by call centers; Includes only calls transferred to a live agent +MS,Mississippi,202308,N,P,N,18411.0,,0.0,,18411.0,,9038.0,,532.0,,9570.0,,457110.0,,747435.0,,669860.0,,77575.0,,,,144.0,,1145.0,,8751.0,,3263.0,,2098.0,,8568.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.071,Does not include all calls received by call centers; Includes only calls transferred to a live agent +MS,Mississippi,202308,N,U,Y,18411.0,,0.0,,18411.0,,9038.0,,532.0,,9570.0,,461364.0,,755685.0,,677325.0,,78360.0,,,,144.0,,1145.0,,8751.0,,3263.0,,2098.0,,8568.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.071,Does not include all calls received by call centers; Includes only calls transferred to a live agent +MS,Mississippi,202309,N,P,N,15347.0,,0.0,,15347.0,,8158.0,,461.0,,8619.0,,447135.0,,728144.0,,650652.0,,77492.0,,,,189.0,,1003.0,,7445.0,,3454.0,,3001.0,,7543.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.033,Does not include all calls received by call centers; Includes only calls transferred to a live agent +MS,Mississippi,202309,N,U,Y,15347.0,,0.0,,15347.0,,8158.0,,461.0,,8619.0,,452401.0,,737742.0,,659166.0,,78576.0,,,,189.0,,1003.0,,7445.0,,3454.0,,3001.0,,7543.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.033,Does not include all calls received by call centers; Includes only calls transferred to a live agent +MS,Mississippi,202310,N,P,N,16179.0,,0.0,,16179.0,,8450.0,,468.0,,8918.0,,440478.0,,713856.0,,635847.0,,78009.0,,,,256.0,,1303.0,,8146.0,,3291.0,,2787.0,,8296.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.045,Does not include all calls received by call centers; Includes only calls transferred to a live agent +MS,Mississippi,202310,N,U,Y,16179.0,,0.0,,16179.0,,8450.0,,468.0,,8918.0,,445470.0,,722940.0,,643895.0,,79045.0,,,,256.0,,1303.0,,8146.0,,3291.0,,2787.0,,8296.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.045,Does not include all calls received by call centers; Includes only calls transferred to a live agent +MS,Mississippi,202311,N,P,N,15650.0,,0.0,,15650.0,,8111.0,,530.0,,8641.0,,437426.0,,704835.0,,625595.0,,79240.0,,,,222.0,,1134.0,,8953.0,,3066.0,,2593.0,,6830.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.058,Does not include all calls received by call centers; Includes only calls transferred to a live agent +MS,Mississippi,202311,N,U,Y,15650.0,,0.0,,15650.0,,8111.0,,530.0,,8641.0,,442129.0,,713800.0,,633606.0,,80194.0,,,,222.0,,1134.0,,8953.0,,3066.0,,2593.0,,6830.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.058,Does not include all calls received by call centers; Includes only calls transferred to a live agent +MS,Mississippi,202312,N,P,N,15006.0,,0.0,,15006.0,,8583.0,,634.0,,9217.0,,432658.0,,692592.0,,612841.0,,79751.0,,,,180.0,,1530.0,,10076.0,,4788.0,,3378.0,,5750.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.041,Does not include all calls received by call centers; Includes only calls transferred to a live agent +MS,Mississippi,202312,N,U,Y,15006.0,,0.0,,15006.0,,8583.0,,634.0,,9217.0,,436471.0,,700646.0,,619981.0,,80665.0,,,,180.0,,1530.0,,10076.0,,4788.0,,3378.0,,5750.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.041,Does not include all calls received by call centers; Includes only calls transferred to a live agent +MS,Mississippi,202401,N,P,N,17495.0,,0.0,,17495.0,,8688.0,,617.0,,9305.0,,433068.0,,690851.0,,610448.0,,80403.0,,,,199.0,,1541.0,,8675.0,,4052.0,,4370.0,,6939.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.031,Does not include all calls received by call centers; Includes only calls transferred to a live agent +MS,Mississippi,202401,N,U,Y,17495.0,,0.0,,17495.0,,8688.0,,617.0,,9305.0,,435883.0,,697486.0,,616319.0,,81167.0,,,,199.0,,1541.0,,8675.0,,4052.0,,4370.0,,6939.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.031,Does not include all calls received by call centers; Includes only calls transferred to a live agent +MS,Mississippi,202402,N,P,N,18457.0,,0.0,,18457.0,,7921.0,,458.0,,8379.0,,433482.0,,689948.0,,608249.0,,81699.0,,,,193.0,,1925.0,,6115.0,,2706.0,,3092.0,,7170.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.022,Does not include all calls received by call centers; Includes only calls transferred to a live agent +MS,Mississippi,202402,N,U,Y,18457.0,,0.0,,18457.0,,7921.0,,458.0,,8379.0,,437527.0,,698026.0,,615467.0,,82559.0,,,,193.0,,1925.0,,6115.0,,2706.0,,3092.0,,7170.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.022,Does not include all calls received by call centers; Includes only calls transferred to a live agent +MS,Mississippi,202403,N,P,N,18509.0,,0.0,,18509.0,,11293.0,,712.0,,12005.0,,428322.0,,678188.0,,595904.0,,82284.0,,,,207.0,,2314.0,,7840.0,,3825.0,,5830.0,,5796.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.024,Does not include all calls received by call centers; Includes only calls transferred to a live agent +MS,Mississippi,202403,N,U,Y,18509.0,,0.0,,18509.0,,11293.0,,712.0,,12005.0,,432001.0,,685536.0,,602414.0,,83122.0,,,,207.0,,2314.0,,7840.0,,3825.0,,5830.0,,5796.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.024,Does not include all calls received by call centers; Includes only calls transferred to a live agent +MS,Mississippi,202404,N,P,N,19168.0,,0.0,,19168.0,,10378.0,,637.0,,11015.0,,414585.0,,642716.0,,559915.0,,82801.0,,,,232.0,,2859.0,,7889.0,,3462.0,,4221.0,,6979.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.033,Does not include all calls received by call centers; Includes only calls transferred to a live agent +MS,Mississippi,202404,N,U,Y,19168.0,,0.0,,19168.0,,10378.0,,637.0,,11015.0,,419516.0,,651694.0,,567913.0,,83781.0,,,,232.0,,2859.0,,7889.0,,3462.0,,4221.0,,6979.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.033,Does not include all calls received by call centers; Includes only calls transferred to a live agent +MS,Mississippi,202405,N,P,N,19721.0,,0.0,,19721.0,,11027.0,,717.0,,11744.0,,406890.0,,625454.0,,542161.0,,83293.0,,,,250.0,,2064.0,,9980.0,,3912.0,,2998.0,,7207.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.053,Does not include all calls received by call centers; Includes only calls transferred to a live agent +MS,Mississippi,202405,N,U,Y,19721.0,,0.0,,19721.0,,11027.0,,717.0,,11744.0,,411268.0,,633603.0,,549417.0,,84186.0,,,,250.0,,2064.0,,9980.0,,3912.0,,2998.0,,7207.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.053,Does not include all calls received by call centers; Includes only calls transferred to a live agent +MS,Mississippi,202406,N,P,N,18642.0,,0.0,,18642.0,,9701.0,,550.0,,10251.0,,399457.0,,609875.0,,526346.0,,83529.0,,,,254.0,,1845.0,,8177.0,,3264.0,,2600.0,,6835.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.059,Does not include all calls received by call centers; Includes only calls transferred to a live agent +MS,Mississippi,202406,N,U,Y,18642.0,,0.0,,18642.0,,9701.0,,550.0,,10251.0,,404431.0,,618907.0,,534531.0,,84376.0,,,,254.0,,1845.0,,8177.0,,3264.0,,2600.0,,6835.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.059,Does not include all calls received by call centers; Includes only calls transferred to a live agent +MS,Mississippi,202407,N,P,N,21929.0,,0.0,,21929.0,,11242.0,,768.0,,12010.0,,393231.0,,597977.0,,515036.0,,82941.0,,204746.0,,246.0,,2129.0,,10720.0,,4328.0,,2754.0,,7778.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.034,Does not include all calls received by call centers; Includes only calls transferred to a live agent +MS,Mississippi,202407,N,U,Y,21929.0,,0.0,,21929.0,,11242.0,,768.0,,12010.0,,399903.0,,609320.0,,525418.0,,83902.0,,209417.0,,246.0,,2129.0,,10720.0,,4328.0,,2754.0,,7778.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.034,Does not include all calls received by call centers; Includes only calls transferred to a live agent +MS,Mississippi,202408,N,P,N,23591.0,,0.0,,23591.0,,12946.0,,861.0,,13807.0,,396337.0,,601843.0,,518256.0,,83587.0,,205506.0,,391.0,,3145.0,,13803.0,,3762.0,,2197.0,,7217.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.02,Does not include all calls received by call centers; Includes only calls transferred to a live agent +MS,Mississippi,202408,N,U,Y,23591.0,,0.0,,23591.0,,12946.0,,861.0,,13807.0,,400960.0,,610264.0,,526036.0,,84228.0,,209304.0,,391.0,,3145.0,,13803.0,,3762.0,,2197.0,,7217.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.02,Does not include all calls received by call centers; Includes only calls transferred to a live agent +MS,Mississippi,202409,N,P,N,19431.0,,0.0,,19431.0,,10880.0,,711.0,,11591.0,,397341.0,,601887.0,,517857.0,,84030.0,,204546.0,,349.0,,2717.0,,12413.0,,2866.0,,1343.0,,6492.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.024,Does not include all calls received by call centers; Includes only calls transferred to a live agent +MS,Mississippi,202409,N,U,Y,19431.0,,0.0,,19431.0,,10880.0,,711.0,,11591.0,,401553.0,,610135.0,,525454.0,,84681.0,,208582.0,,349.0,,2717.0,,12413.0,,2866.0,,1343.0,,6492.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.024,Does not include all calls received by call centers; Includes only calls transferred to a live agent +MS,Mississippi,202410,N,P,N,21395.0,,0.0,,21395.0,,11108.0,,748.0,,11856.0,,398975.0,,602825.0,,518360.0,,84465.0,,203850.0,,314.0,,3522.0,,13051.0,,1868.0,,791.0,,8262.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.029,Does not include all calls received by call centers; Includes only calls transferred to a live agent +MS,Mississippi,202410,N,U,Y,21395.0,,0.0,,21395.0,,11108.0,,748.0,,11856.0,,401606.0,,608862.0,,524044.0,,84818.0,,207256.0,,314.0,,3522.0,,13051.0,,1868.0,,791.0,,8262.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.029,Does not include all calls received by call centers; Includes only calls transferred to a live agent +MS,Mississippi,202411,N,P,N,17382.0,,0.0,,17382.0,,8784.0,,596.0,,9380.0,,398282.0,,600860.0,,516505.0,,84355.0,,202578.0,,326.0,,3947.0,,11387.0,,1298.0,,522.0,,6693.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.023,Does not include all calls received by call centers; Includes only calls transferred to a live agent +MS,Mississippi,202411,N,U,Y,17382.0,,0.0,,17382.0,,8784.0,,596.0,,9380.0,,401035.0,,607165.0,,522445.0,,84720.0,,206130.0,,326.0,,3947.0,,11387.0,,1298.0,,522.0,,6693.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.023,Does not include all calls received by call centers; Includes only calls transferred to a live agent +MS,Mississippi,202412,N,P,N,17046.0,,0.0,,17046.0,,9158.0,,629.0,,9787.0,,397943.0,,598789.0,,514730.0,,84059.0,,200846.0,,245.0,,3740.0,,14437.0,,2158.0,,635.0,,7521.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.047,Does not include all calls received by call centers; Includes only calls transferred to a live agent +MS,Mississippi,202412,N,U,Y,17046.0,,0.0,,17046.0,,9158.0,,629.0,,9787.0,,400752.0,,605422.0,,520938.0,,84484.0,,204670.0,,245.0,,3740.0,,14437.0,,2158.0,,635.0,,7521.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.047,Does not include all calls received by call centers; Includes only calls transferred to a live agent +MS,Mississippi,202501,N,P,N,20305.0,,0.0,,20305.0,,10272.0,,647.0,,10919.0,,399333.0,,600035.0,,515623.0,,84412.0,,200702.0,,327.0,,4662.0,,12643.0,,2912.0,,658.0,,8607.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.035,Does not include all calls received by call centers; Includes only calls transferred to a live agent +MS,Mississippi,202501,N,U,Y,20305.0,,0.0,,20305.0,,10272.0,,647.0,,10919.0,,401702.0,,605973.0,,521165.0,,84808.0,,204271.0,,327.0,,4662.0,,12643.0,,2912.0,,658.0,,8607.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.035,Does not include all calls received by call centers; Includes only calls transferred to a live agent +MS,Mississippi,202502,N,P,N,16070.0,,0.0,,16070.0,,8727.0,,523.0,,9250.0,,399461.0,,599348.0,,514585.0,,84763.0,,199887.0,,274.0,,3743.0,,10054.0,,1992.0,,416.0,,7139.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.039,Does not include all calls received by call centers; Includes only calls transferred to a live agent +MS,Mississippi,202502,N,U,Y,16070.0,,0.0,,16070.0,,8727.0,,523.0,,9250.0,,401856.0,,605205.0,,520124.0,,85081.0,,203349.0,,274.0,,3743.0,,10054.0,,1992.0,,416.0,,7139.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.039,Does not include all calls received by call centers; Includes only calls transferred to a live agent +MS,Mississippi,202503,N,P,N,17354.0,,0.0,,17354.0,,8813.0,,541.0,,9354.0,,398851.0,,597744.0,,513331.0,,84413.0,,198893.0,,246.0,,4100.0,,9657.0,,1311.0,,333.0,,6895.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.05,Does not include all calls received by call centers; Includes only calls transferred to a live agent +MS,Mississippi,202503,N,U,Y,17354.0,,0.0,,17354.0,,8813.0,,541.0,,9354.0,,401365.0,,604179.0,,519398.0,,84781.0,,202814.0,,246.0,,4100.0,,9657.0,,1311.0,,333.0,,6895.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.05,Does not include all calls received by call centers; Includes only calls transferred to a live agent +MS,Mississippi,202504,N,P,N,17281.0,,0.0,,17281.0,,9229.0,,572.0,,9801.0,,397578.0,,595500.0,,511259.0,,84241.0,,197922.0,,278.0,,4288.0,,10067.0,,1021.0,,247.0,,7570.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.051,Does not include all calls received by call centers; Includes only calls transferred to a live agent +MS,Mississippi,202504,N,U,Y,17281.0,,0.0,,17281.0,,9229.0,,572.0,,9801.0,,400199.0,,601719.0,,517051.0,,84668.0,,201520.0,,278.0,,4288.0,,10067.0,,1021.0,,247.0,,7570.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.051,Does not include all calls received by call centers; Includes only calls transferred to a live agent +MS,Mississippi,202505,N,P,N,16582.0,,0.0,,16582.0,,8646.0,,567.0,,9213.0,,396606.0,,593835.0,,509758.0,,84077.0,,197229.0,,255.0,,3458.0,,10613.0,,890.0,,272.0,,7126.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.029,Does not include all calls received by call centers; Includes only calls transferred to a live agent +MS,Mississippi,202505,N,U,Y,16582.0,,0.0,,16582.0,,8646.0,,567.0,,9213.0,,399005.0,,599964.0,,515498.0,,84466.0,,200959.0,,255.0,,3458.0,,10613.0,,890.0,,272.0,,7126.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.029,Does not include all calls received by call centers; Includes only calls transferred to a live agent +MS,Mississippi,202506,N,P,N,17173.0,,0.0,,17173.0,,8541.0,,528.0,,9069.0,,395821.0,,592690.0,,508697.0,,83993.0,,196869.0,,374.0,,4324.0,,9796.0,,669.0,,175.0,,12623.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.028,Does not include all calls received by call centers; Includes only calls transferred to a live agent +MS,Mississippi,202506,N,U,Y,17173.0,,0.0,,17173.0,,8541.0,,528.0,,9069.0,,398404.0,,599086.0,,514646.0,,84440.0,,200682.0,,374.0,,4324.0,,9796.0,,669.0,,175.0,,12623.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.028,Does not include all calls received by call centers; Includes only calls transferred to a live agent +MS,Mississippi,202507,N,P,N,19144.0,,0.0,,19144.0,,9599.0,,710.0,,10309.0,,395509.0,,592668.0,,508562.0,,84106.0,,197159.0,,512.0,,4631.0,,10804.0,,802.0,,73.0,,9334.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.046,Does not include all calls received by call centers; Includes only calls transferred to a live agent +MS,Mississippi,202507,N,U,Y,19144.0,,0.0,,19144.0,,9599.0,,710.0,,10309.0,,398215.0,,599061.0,,514528.0,,84533.0,,200846.0,,512.0,,4631.0,,10804.0,,802.0,,73.0,,9334.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.046,Does not include all calls received by call centers; Includes only calls transferred to a live agent +MS,Mississippi,202508,N,P,N,19113.0,,0.0,,19113.0,,9610.0,,705.0,,10315.0,,395396.0,,592293.0,,508033.0,,84260.0,,196897.0,,587.0,,4614.0,,11237.0,,691.0,,60.0,,7132.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.057,Does not include all calls received by call centers; Includes only calls transferred to a live agent +MS,Mississippi,202508,N,U,Y,19113.0,,0.0,,19113.0,,9610.0,,705.0,,10315.0,,398000.0,,598813.0,,514133.0,,84680.0,,200813.0,,587.0,,4614.0,,11237.0,,691.0,,60.0,,7132.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.057,Does not include all calls received by call centers; Includes only calls transferred to a live agent +MS,Mississippi,202509,N,P,N,17968.0,,0.0,,17968.0,,9404.0,,580.0,,9984.0,,394691.0,,591307.0,,507140.0,,84167.0,,196616.0,,3878.0,,5203.0,,7337.0,,258.0,,37.0,,6629.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.034,Does not include all calls received by call centers; Includes only calls transferred to a live agent +MS,Mississippi,202509,N,U,Y,17968.0,,0.0,,17968.0,,9404.0,,580.0,,9984.0,,396924.0,,597348.0,,512797.0,,84551.0,,200424.0,,3878.0,,5203.0,,7337.0,,258.0,,37.0,,6629.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.034,Does not include all calls received by call centers; Includes only calls transferred to a live agent +MS,Mississippi,202510,N,P,N,17006.0,,0.0,,17006.0,,8938.0,,522.0,,9460.0,,394291.0,,590816.0,,506720.0,,84096.0,,196525.0,,5331.0,,4092.0,,6249.0,,190.0,,61.0,,6764.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Includes only calls transferred to a live agent,0.026,Does not include all calls received by call centers; Includes only calls transferred to a live agent +MT,Montana,201309,N,U,Y,,,,,,,,,,,,,,,148974.0,,,,,,,,,,,,,,,,,,,,,,, +MT,Montana,201706,Y,P,N,3758.0,,0.0,,3758.0,,4232.0,,229.0,,4461.0,,126327.0,,260464.0,,236628.0,,23836.0,,,,,,,,,,,,,,,,,,, +MT,Montana,201706,Y,U,Y,3890.0,,0.0,,3890.0,,4232.0,,229.0,,4461.0,,126595.0,,261293.0,,232258.0,,29035.0,,,,,,,,,,,,,,,,,,, +MT,Montana,201707,Y,P,N,3481.0,,0.0,,3481.0,,3859.0,,234.0,,4093.0,,126202.0,,260931.0,,237271.0,,23660.0,,,,,,,,,,,,,,,,,,, +MT,Montana,201707,Y,U,Y,3652.0,,0.0,,3652.0,,3859.0,,234.0,,4093.0,,126705.0,,262329.0,,233915.0,,28414.0,,,,,,,,,,,,,,,,,,, +MT,Montana,201708,Y,P,N,3981.0,,0.0,,3981.0,,4110.0,,223.0,,4333.0,,125887.0,,260992.0,,237571.0,,23421.0,,,,,,,,,,,,,,,,,,, +MT,Montana,201708,Y,U,Y,4168.0,,0.0,,4168.0,,4110.0,,223.0,,4333.0,,127124.0,,263978.0,,236142.0,,27836.0,,,,,,,,,,,,,,,,,,, +MT,Montana,201709,Y,P,N,3435.0,,0.0,,3435.0,,3638.0,,222.0,,3860.0,,126900.0,,264567.0,,237231.0,,27336.0,,,,,,,,,,,,,,,,,,, +MT,Montana,201709,Y,U,Y,3599.0,,0.0,,3599.0,,3638.0,,222.0,,3860.0,,126963.0,,264735.0,,237391.0,,27344.0,,,,,,,,,,,,,,,,,,, +MT,Montana,201710,Y,P,N,3767.0,,0.0,,3767.0,,3777.0,,187.0,,3964.0,,126378.0,,264590.0,,237810.0,,26780.0,,,,,,,,,,,,,,,,,,, +MT,Montana,201710,Y,U,Y,3899.0,,0.0,,3899.0,,3777.0,,187.0,,3964.0,,127249.0,,266801.0,,239893.0,,26908.0,,,,,,,,,,,,,,,,,,, +MT,Montana,201711,Y,P,N,3659.0,,0.0,,3659.0,,3702.0,,266.0,,3968.0,,126852.0,,267949.0,,241352.0,,26597.0,,,,,,,,,,,,,,,,,,, +MT,Montana,201711,Y,U,Y,2766.0,,0.0,,2766.0,,2743.0,,174.0,,2917.0,,126266.0,,266302.0,,239855.0,,26447.0,,,,,,,,,,,,,,,,,,, +MT,Montana,201712,Y,P,N,3495.0,,0.0,,3495.0,,3762.0,,369.0,,4131.0,,127502.0,,271283.0,,244597.0,,26686.0,,,,,,,,,,,,,,,,,,, +MT,Montana,201712,Y,U,Y,3639.0,,0.0,,3639.0,,3762.0,,369.0,,4131.0,,128671.0,,274234.0,,247246.0,,26988.0,,,,,,,,,,,,,,,,,,, +MT,Montana,201801,Y,P,N,3788.0,,0.0,,3788.0,,4065.0,,383.0,,4448.0,,128132.0,,273812.0,,247173.0,,26639.0,,,,,,,,,,,,,,,,,,, +MT,Montana,201801,Y,U,Y,3788.0,,0.0,,3788.0,,4065.0,,383.0,,4448.0,,129200.0,,276623.0,,249726.0,,26897.0,,,,,,,,,,,,,,,,,,, +MT,Montana,201802,Y,P,N,2896.0,,0.0,,2896.0,,3657.0,,284.0,,3941.0,,128616.0,,275947.0,,249372.0,,26575.0,,,,586.0,,394.0,,608.0,,231.0,,739.0,,,,,,, +MT,Montana,201802,Y,U,Y,3060.0,,0.0,,3060.0,,3657.0,,284.0,,3941.0,,129603.0,,278379.0,,251602.0,,26777.0,,,,586.0,,394.0,,608.0,,231.0,,739.0,,,,,,, +MT,Montana,201803,Y,P,N,3331.0,,0.0,,3331.0,,3553.0,,269.0,,3822.0,,128966.0,,277513.0,,251247.0,,26266.0,,,,599.0,,536.0,,722.0,,207.0,,322.0,,,,,,, +MT,Montana,201803,Y,U,Y,3521.0,,0.0,,3521.0,,3553.0,,269.0,,3822.0,,129816.0,,279583.0,,253190.0,,26393.0,,,,599.0,,536.0,,722.0,,207.0,,322.0,,,,,,, +MT,Montana,201804,Y,P,N,3040.0,,0.0,,3040.0,,3338.0,,175.0,,3513.0,,129004.0,,278166.0,,252345.0,,25821.0,,,,586.0,,539.0,,651.0,,185.0,,234.0,,,,,,, +MT,Montana,201804,Y,U,Y,3040.0,,0.0,,3040.0,,3339.0,,175.0,,3514.0,,129896.0,,280169.0,,254224.0,,25945.0,,,,586.0,,539.0,,651.0,,185.0,,234.0,,,,,,, +MT,Montana,201805,Y,P,N,3103.0,,0.0,,3103.0,,3219.0,,161.0,,3380.0,,129041.0,,278778.0,,253281.0,,25497.0,,,,,,,,,,,,,,,,,,, +MT,Montana,201805,Y,U,Y,3277.0,,0.0,,3277.0,,3219.0,,161.0,,3380.0,,129886.0,,280768.0,,255106.0,,25662.0,,,,,,,,,,,,,,,,,,, +MT,Montana,201806,Y,P,N,3014.0,,0.0,,3014.0,,3124.0,,203.0,,3327.0,,129000.0,,278950.0,,253662.0,,25288.0,,,,,,,,,,,,,,,,,,, +MT,Montana,201806,Y,U,Y,3189.0,,0.0,,3189.0,,3124.0,,203.0,,3327.0,,129789.0,,280768.0,,255323.0,,25445.0,,,,,,,,,,,,,,,,,,, +MT,Montana,201807,Y,P,N,2994.0,,0.0,,2994.0,,3217.0,,180.0,,3397.0,,128608.0,,278662.0,,253539.0,,25123.0,,,,,,,,,,,,,,,,,,, +MT,Montana,201807,Y,U,Y,3239.0,,0.0,,3239.0,,3217.0,,180.0,,3397.0,,129389.0,,280638.0,,255515.0,,25123.0,,,,,,,,,,,,,,,,,,, +MT,Montana,201808,Y,P,N,3444.0,,0.0,,3444.0,,3618.0,,183.0,,3801.0,,128418.0,,278915.0,,253776.0,,25139.0,,,,,,,,,,,,,,,,,,, +MT,Montana,201808,Y,U,Y,3654.0,,0.0,,3654.0,,3618.0,,183.0,,3801.0,,129499.0,,281233.0,,255835.0,,25398.0,,,,,,,,,,,,,,,,,,, +MT,Montana,201809,Y,P,N,3181.0,,0.0,,3181.0,,3191.0,,278.0,,3469.0,,127813.0,,278065.0,,250650.0,,27415.0,,,,,,,,,,,,,,,,,,, +MT,Montana,201809,Y,U,Y,3335.0,,0.0,,3335.0,,3191.0,,278.0,,3469.0,,129114.0,,280737.0,,253030.0,,27707.0,,,,,,,,,,,,,,,,,,, +MT,Montana,201810,Y,P,N,3761.0,,0.0,,3761.0,,3952.0,,329.0,,4281.0,,127470.0,,277708.0,,249880.0,,27828.0,,,,,,,,,,,,,,,,,,, +MT,Montana,201810,Y,U,Y,3930.0,,0.0,,3930.0,,3952.0,,329.0,,4281.0,,128428.0,,279846.0,,251757.0,,28089.0,,,,,,,,,,,,,,,,,,, +MT,Montana,201811,Y,P,N,3549.0,,0.0,,3549.0,,3612.0,,325.0,,3937.0,,126725.0,,276352.0,,248327.0,,28025.0,,,,,,,,,,,,,,,,,,, +MT,Montana,201811,Y,U,Y,3787.0,,0.0,,3787.0,,3612.0,,325.0,,3937.0,,127910.0,,279041.0,,250682.0,,28359.0,,,,,,,,,,,,,,,,,,, +MT,Montana,201812,Y,P,N,3303.0,,0.0,,3303.0,,3460.0,,422.0,,3882.0,,126294.0,,276119.0,,247794.0,,28325.0,,,,,,,,,,,,,,,,,,, +MT,Montana,201812,Y,U,Y,3474.0,,0.0,,3474.0,,3460.0,,422.0,,3882.0,,127863.0,,279675.0,,250766.0,,28909.0,,,,,,,,,,,,,,,,,,, +MT,Montana,201901,Y,P,N,3745.0,,0.0,,3745.0,,4523.0,,571.0,,5094.0,,126904.0,,277633.0,,248733.0,,28900.0,,,,,,,,,,,,,,,,,,, +MT,Montana,201901,Y,U,Y,3900.0,,0.0,,3900.0,,4523.0,,571.0,,5094.0,,128161.0,,280455.0,,251146.0,,29309.0,,,,,,,,,,,,,,,,,,, +MT,Montana,201902,Y,P,N,3064.0,,0.0,,3064.0,,3737.0,,420.0,,4157.0,,127034.0,,278217.0,,249063.0,,29154.0,,,,598.0,,532.0,,807.0,,319.0,,348.0,,,,,,, +MT,Montana,201902,Y,U,Y,3238.0,,0.0,,3238.0,,3737.0,,420.0,,4157.0,,128093.0,,280624.0,,251191.0,,29433.0,,,,598.0,,532.0,,807.0,,319.0,,348.0,,,,,,, +MT,Montana,201903,Y,P,N,3454.0,,0.0,,3454.0,,4048.0,,368.0,,4416.0,,126513.0,,276717.0,,247424.0,,29293.0,,,,734.0,,685.0,,821.0,,209.0,,157.0,,,,,,, +MT,Montana,201903,Y,U,Y,3610.0,,0.0,,3610.0,,4048.0,,368.0,,4416.0,,127388.0,,278685.0,,249170.0,,29515.0,,,,734.0,,685.0,,821.0,,209.0,,157.0,,,,,,, +MT,Montana,201904,Y,P,N,3655.0,,0.0,,3655.0,,3831.0,,352.0,,4183.0,,125987.0,,275457.0,,246105.0,,29352.0,,,,721.0,,820.0,,712.0,,147.0,,108.0,,,,,,, +MT,Montana,201904,Y,U,Y,3840.0,,0.0,,3840.0,,3831.0,,352.0,,4183.0,,126904.0,,277567.0,,247950.0,,29617.0,,,,721.0,,820.0,,712.0,,147.0,,108.0,,,,,,, +MT,Montana,201905,Y,P,N,3698.0,,0.0,,3698.0,,3975.0,,340.0,,4315.0,,125660.0,,274017.0,,244642.0,,29375.0,,,,,,,,,,,,,,,,,,, +MT,Montana,201905,Y,U,Y,3864.0,,0.0,,3864.0,,3975.0,,340.0,,4315.0,,126462.0,,275834.0,,246269.0,,29565.0,,,,,,,,,,,,,,,,,,, +MT,Montana,201906,Y,P,N,3631.0,,0.0,,3631.0,,3845.0,,339.0,,4184.0,,124614.0,,271095.0,,242044.0,,29051.0,,,,,,,,,,,,,,,,,,, +MT,Montana,201906,Y,U,Y,3793.0,,0.0,,3793.0,,3845.0,,339.0,,4184.0,,125519.0,,273144.0,,243863.0,,29281.0,,,,,,,,,,,,,,,,,,, +MT,Montana,201907,Y,P,N,4218.0,,0.0,,4218.0,,4233.0,,385.0,,4618.0,,123376.0,,267874.0,,239228.0,,28646.0,,,,,,,,,,,,,,,,,,, +MT,Montana,201907,Y,U,Y,4412.0,,0.0,,4412.0,,4233.0,,385.0,,4618.0,,124442.0,,270280.0,,241331.0,,28949.0,,,,,,,,,,,,,,,,,,, +MT,Montana,201908,Y,P,N,4504.0,,0.0,,4504.0,,4632.0,,495.0,,5127.0,,122452.0,,265696.0,,237370.0,,28326.0,,,,,,,,,,,,,,,,,,, +MT,Montana,201908,Y,U,Y,4626.0,,0.0,,4626.0,,4632.0,,495.0,,5127.0,,123587.0,,268150.0,,239523.0,,28627.0,,,,,,,,,,,,,,,,,,, +MT,Montana,201909,Y,P,N,4084.0,,0.0,,4084.0,,4486.0,,411.0,,4897.0,,121677.0,,264220.0,,236147.0,,28073.0,,,,,,,,,,,,,,,,,,, +MT,Montana,201909,Y,U,Y,4255.0,,0.0,,4255.0,,4486.0,,411.0,,4897.0,,122894.0,,266931.0,,238518.0,,28413.0,,,,,,,,,,,,,,,,,,, +MT,Montana,201910,Y,P,N,4466.0,,0.0,,4466.0,,5091.0,,490.0,,5581.0,,121369.0,,263794.0,,235720.0,,28074.0,,,,,,,,,,,,,,,,,,, +MT,Montana,201910,Y,U,Y,4621.0,,0.0,,4621.0,,5091.0,,490.0,,5581.0,,122324.0,,265908.0,,237580.0,,28328.0,,,,,,,,,,,,,,,,,,, +MT,Montana,201911,Y,P,N,4434.0,,0.0,,4434.0,,4507.0,,602.0,,5109.0,,120067.0,,261547.0,,233673.0,,27874.0,,,,,,,,,,,,,,,,,,, +MT,Montana,201911,Y,U,Y,4545.0,,0.0,,4545.0,,4507.0,,602.0,,5109.0,,121087.0,,263824.0,,235594.0,,28230.0,,,,,,,,,,,,,,,,,,, +MT,Montana,201912,Y,P,N,4749.0,,0.0,,4749.0,,5032.0,,751.0,,5783.0,,117607.0,,257850.0,,230724.0,,27126.0,,,,,,,,,,,,,,,,,,, +MT,Montana,201912,Y,U,Y,5035.0,,0.0,,5035.0,,5032.0,,751.0,,5783.0,,118937.0,,260710.0,,233127.0,,27583.0,,,,,,,,,,,,,,,,,,, +MT,Montana,202001,Y,P,N,5319.0,,0.0,,5319.0,,5150.0,,645.0,,5795.0,,116787.0,,256053.0,,229238.0,,26815.0,,,,,,,,,,,,,,,,,,, +MT,Montana,202001,Y,U,Y,5547.0,,0.0,,5547.0,,5150.0,,645.0,,5795.0,,118042.0,,258898.0,,231625.0,,27273.0,,,,,,,,,,,,,,,,,,, +MT,Montana,202002,Y,P,N,4620.0,,0.0,,4620.0,,4739.0,,625.0,,5364.0,,113451.0,,249705.0,,224064.0,,25641.0,,,,964.0,,539.0,,993.0,,344.0,,261.0,,,,,,, +MT,Montana,202002,Y,U,Y,4768.0,,0.0,,4768.0,,4739.0,,625.0,,5364.0,,114894.0,,252740.0,,226604.0,,26136.0,,,,964.0,,539.0,,993.0,,344.0,,261.0,,,,,,, +MT,Montana,202003,Y,P,N,4607.0,,0.0,,4607.0,,4467.0,,590.0,,5057.0,,112062.0,,247058.0,,221870.0,,25188.0,,,,788.0,,516.0,,984.0,,348.0,,268.0,,,,,,, +MT,Montana,202003,Y,U,Y,4749.0,,0.0,,4749.0,,4467.0,,590.0,,5057.0,,113481.0,,250033.0,,224403.0,,25630.0,,,,788.0,,516.0,,984.0,,348.0,,268.0,,,,,,, +MT,Montana,202004,Y,P,N,3752.0,,0.0,,3752.0,,4979.0,,504.0,,5483.0,,115301.0,,252152.0,,225977.0,,26175.0,,,,610.0,,793.0,,1368.0,,383.0,,293.0,,,,,,, +MT,Montana,202004,Y,U,Y,3856.0,,0.0,,3856.0,,4979.0,,504.0,,5483.0,,115301.0,,252152.0,,225977.0,,26175.0,,,,610.0,,793.0,,1368.0,,383.0,,293.0,,,,,,, +MT,Montana,202005,Y,P,N,2994.0,,0.0,,2994.0,,3310.0,,357.0,,3667.0,,115870.0,,254458.0,,228116.0,,26342.0,,,,,,,,,,,,,,,,,,, +MT,Montana,202005,Y,U,Y,3070.0,,0.0,,3070.0,,3309.0,,357.0,,3666.0,,115870.0,,254458.0,,228116.0,,26342.0,,,,,,,,,,,,,,,,,,, +MT,Montana,202006,Y,P,N,3267.0,,0.0,,3267.0,,3009.0,,294.0,,3303.0,,116669.0,,257006.0,,230530.0,,26476.0,,,,,,,,,,,,,,,,,,, +MT,Montana,202006,Y,U,Y,3371.0,,0.0,,3371.0,,3009.0,,294.0,,3303.0,,116669.0,,257006.0,,230530.0,,26476.0,,,,,,,,,,,,,,,,,,, +MT,Montana,202007,Y,P,N,3214.0,,0.0,,3214.0,,2877.0,,239.0,,3116.0,,117472.0,,259433.0,,232822.0,,26611.0,,,,,,,,,,,,,,,,,,, +MT,Montana,202007,Y,U,Y,3305.0,,0.0,,3305.0,,2877.0,,239.0,,3116.0,,117472.0,,259433.0,,232822.0,,26611.0,,,,,,,,,,,,,,,,,,, +MT,Montana,202008,Y,P,N,3260.0,,0.0,,3260.0,,2934.0,,203.0,,3137.0,,118366.0,,262233.0,,235550.0,,26683.0,,,,,,,,,,,,,,,,,,, +MT,Montana,202008,Y,U,Y,3347.0,,0.0,,3347.0,,2934.0,,203.0,,3137.0,,118366.0,,262233.0,,235550.0,,26683.0,,,,,,,,,,,,,,,,,,, +MT,Montana,202009,Y,P,N,3102.0,,0.0,,3102.0,,2837.0,,234.0,,3071.0,,118556.0,,263499.0,,236796.0,,26703.0,,,,,,,,,,,,,,,,,,, +MT,Montana,202009,Y,U,Y,3200.0,,0.0,,3200.0,,2837.0,,234.0,,3071.0,,119277.0,,265098.0,,238209.0,,26889.0,,,,,,,,,,,,,,,,,,, +MT,Montana,202010,Y,P,N,3101.0,,0.0,,3101.0,,2594.0,,179.0,,2773.0,,119483.0,,266285.0,,239450.0,,26835.0,,,,,,,,,,,,,,,,,,, +MT,Montana,202010,Y,U,Y,3180.0,,0.0,,3180.0,,2595.0,,179.0,,2774.0,,120096.0,,267747.0,,240759.0,,26988.0,,,,,,,,,,,,,,,,,,, +MT,Montana,202011,Y,P,N,2798.0,,0.0,,2798.0,,2235.0,,199.0,,2434.0,,120204.0,,269746.0,,242811.0,,26935.0,,,,,,,,,,,,,,,,,,, +MT,Montana,202011,Y,U,Y,2945.0,,0.0,,2945.0,,2235.0,,199.0,,2434.0,,121299.0,,273896.0,,246655.0,,27241.0,,,,,,,,,,,,,,,,,,, +MT,Montana,202012,Y,P,N,3118.0,,0.0,,3118.0,,2986.0,,369.0,,3355.0,,121603.0,,276574.0,,249314.0,,27260.0,,,,,,,,,,,,,,,,,,, +MT,Montana,202012,Y,U,Y,3271.0,,0.0,,3271.0,,2986.0,,369.0,,3355.0,,122581.0,,279013.0,,251370.0,,27643.0,,,,,,,,,,,,,,,,,,, +MT,Montana,202101,Y,P,N,2671.0,,0.0,,2671.0,,2797.0,,441.0,,3238.0,,122757.0,,279776.0,,252190.0,,27586.0,,,,,,,,,,,,,,,,,,, +MT,Montana,202101,Y,U,Y,2809.0,,0.0,,2809.0,,2797.0,,441.0,,3238.0,,123505.0,,281734.0,,253955.0,,27779.0,,,,,,,,,,,,,,,,,,, +MT,Montana,202102,Y,P,N,2495.0,,0.0,,2495.0,,2379.0,,172.0,,2551.0,,124220.0,,283013.0,,255292.0,,27721.0,,,,197.0,,431.0,,633.0,,172.0,,110.0,,,,,,, +MT,Montana,202102,Y,U,Y,2541.0,,0.0,,2541.0,,2361.0,,172.0,,2533.0,,124045.0,,283599.0,,255744.0,,27855.0,,,,197.0,,431.0,,633.0,,172.0,,110.0,,,,,,, +MT,Montana,202103,Y,P,N,2620.0,,0.0,,2620.0,,2415.0,,202.0,,2617.0,,124199.0,,284777.0,,256899.0,,27878.0,,,,201.0,,628.0,,493.0,,145.0,,80.0,,,,,,, +MT,Montana,202103,Y,U,Y,2710.0,,0.0,,2710.0,,2415.0,,202.0,,2617.0,,124657.0,,285872.0,,257889.0,,27983.0,,,,201.0,,628.0,,493.0,,145.0,,80.0,,,,,,, +MT,Montana,202104,Y,P,N,2333.0,,0.0,,2333.0,,2072.0,,222.0,,2294.0,,124667.0,,286539.0,,258615.0,,27924.0,,,,234.0,,605.0,,303.0,,100.0,,128.0,,,,,,, +MT,Montana,202104,Y,U,Y,2415.0,,0.0,,2415.0,,2072.0,,222.0,,2294.0,,125089.0,,287662.0,,259630.0,,28032.0,,,,234.0,,605.0,,303.0,,100.0,,128.0,,,,,,, +MT,Montana,202105,Y,P,N,2312.0,,0.0,,2312.0,,1706.0,,108.0,,1814.0,,125232.0,,288786.0,,260726.0,,28060.0,,,,,,,,,,,,,,,,,,, +MT,Montana,202105,Y,U,Y,2378.0,,0.0,,2378.0,,1706.0,,108.0,,1814.0,,125628.0,,289800.0,,261658.0,,28142.0,,,,,,,,,,,,,,,,,,, +MT,Montana,202106,Y,P,N,2418.0,,0.0,,2418.0,,1954.0,,117.0,,2071.0,,125506.0,,290338.0,,262304.0,,28034.0,,,,,,,,,,,,,,,,,,, +MT,Montana,202106,Y,U,Y,2495.0,,0.0,,2495.0,,1954.0,,117.0,,2071.0,,125924.0,,291344.0,,263213.0,,28131.0,,,,,,,,,,,,,,,,,,, +MT,Montana,202107,Y,P,N,2288.0,,0.0,,2288.0,,1689.0,,136.0,,1825.0,,125744.0,,291705.0,,263676.0,,28029.0,,,,,,,,,,,,,,,,,,, +MT,Montana,202107,Y,U,Y,2509.0,,0.0,,2509.0,,1955.0,,117.0,,2072.0,,126003.0,,291578.0,,263429.0,,28149.0,,,,,,,,,,,,,,,,,,, +MT,Montana,202108,Y,P,N,2574.0,,0.0,,2574.0,,1893.0,,117.0,,2010.0,,126196.0,,293784.0,,265721.0,,28063.0,,,,,,,,,,,,,,,,,,, +MT,Montana,202108,Y,U,Y,2674.0,,0.0,,2674.0,,1893.0,,117.0,,2010.0,,126879.0,,295377.0,,267128.0,,28249.0,,,,,,,,,,,,,,,,,,, +MT,Montana,202109,Y,P,N,2395.0,,0.0,,2395.0,,1980.0,,160.0,,2140.0,,126619.0,,295308.0,,267182.0,,28126.0,,,,,,,,,,,,,,,,,,, +MT,Montana,202109,Y,U,Y,2508.0,,0.0,,2508.0,,1980.0,,160.0,,2140.0,,127232.0,,296745.0,,268484.0,,28261.0,,,,,,,,,,,,,,,,,,, +MT,Montana,202110,Y,P,N,2375.0,,0.0,,2375.0,,1707.0,,125.0,,1832.0,,126882.0,,296636.0,,268482.0,,28154.0,,,,,,,,,,,,,,,,,,, +MT,Montana,202110,Y,U,Y,2488.0,,0.0,,2488.0,,1707.0,,125.0,,1832.0,,127512.0,,298138.0,,269869.0,,28269.0,,,,,,,,,,,,,,,,,,, +MT,Montana,202111,Y,P,N,2589.0,,0.0,,2589.0,,1746.0,,126.0,,1872.0,,127173.0,,298696.0,,270532.0,,28164.0,,,,,,,,,,,,,,,,,,, +MT,Montana,202111,Y,U,Y,2708.0,,0.0,,2708.0,,1746.0,,126.0,,1872.0,,127827.0,,300303.0,,271974.0,,28329.0,,,,,,,,,,,,,,,,,,, +MT,Montana,202112,Y,P,N,2603.0,,0.0,,2603.0,,1829.0,,153.0,,1982.0,,127649.0,,301528.0,,273311.0,,28217.0,,,,,,,,,,,,,,,,,,, +MT,Montana,202112,Y,U,Y,2688.0,,0.0,,2688.0,,1829.0,,153.0,,1982.0,,128373.0,,303304.0,,274908.0,,28396.0,,,,,,,,,,,,,,,,,,, +MT,Montana,202201,Y,P,N,2632.0,,0.0,,2632.0,,1952.0,,180.0,,2132.0,,128097.0,,303749.0,,275474.0,,28275.0,,,,136.0,,186.0,,333.0,,210.0,,376.0,,,,,,, +MT,Montana,202201,Y,U,Y,2700.0,,0.0,,2700.0,,1952.0,,180.0,,2132.0,,128901.0,,305591.0,,277093.0,,28498.0,,,,136.0,,186.0,,333.0,,210.0,,376.0,,,,,,, +MT,Montana,202202,Y,P,N,2135.0,,0.0,,2135.0,,1776.0,,209.0,,1985.0,,128437.0,,305053.0,,276681.0,,28372.0,,,,103.0,,146.0,,335.0,,153.0,,399.0,,,,,,, +MT,Montana,202202,Y,U,Y,2252.0,,0.0,,2252.0,,1777.0,,209.0,,1986.0,,129281.0,,307088.0,,278505.0,,28583.0,,,,103.0,,146.0,,335.0,,153.0,,399.0,,,,,,, +MT,Montana,202203,Y,P,N,2528.0,,0.0,,2528.0,,2221.0,,200.0,,2421.0,,128918.0,,306909.0,,278499.0,,28410.0,,,,142.0,,172.0,,316.0,,217.0,,555.0,,,,,,, +MT,Montana,202203,Y,U,Y,2622.0,,0.0,,2622.0,,2221.0,,200.0,,2421.0,,129594.0,,308491.0,,279929.0,,28562.0,,,,142.0,,172.0,,316.0,,217.0,,555.0,,,,,,, +MT,Montana,202204,Y,P,N,2173.0,,0.0,,2173.0,,1751.0,,122.0,,1873.0,,129269.0,,308475.0,,280029.0,,28446.0,,,,144.0,,175.0,,334.0,,226.0,,218.0,,,,,,, +MT,Montana,202204,Y,U,Y,2252.0,,0.0,,2252.0,,1751.0,,122.0,,1873.0,,129940.0,,309924.0,,281332.0,,28592.0,,,,144.0,,175.0,,334.0,,226.0,,218.0,,,,,,, +MT,Montana,202205,Y,P,N,2198.0,,0.0,,2198.0,,1680.0,,110.0,,1790.0,,129577.0,,309821.0,,281379.0,,28442.0,,,,128.0,,183.0,,293.0,,258.0,,172.0,,,,,,, +MT,Montana,202205,Y,U,Y,2316.0,,0.0,,2316.0,,1680.0,,110.0,,1790.0,,130221.0,,311309.0,,282755.0,,28554.0,,,,128.0,,183.0,,293.0,,258.0,,172.0,,,,,,, +MT,Montana,202206,Y,P,N,2115.0,,0.0,,2115.0,,1672.0,,69.0,,1741.0,,129893.0,,311394.0,,282979.0,,28415.0,,,,134.0,,163.0,,263.0,,204.0,,240.0,,,,,,, +MT,Montana,202206,Y,U,Y,2191.0,,0.0,,2191.0,,1672.0,,69.0,,1741.0,,130416.0,,312515.0,,284003.0,,28512.0,,,,134.0,,163.0,,263.0,,204.0,,240.0,,,,,,, +MT,Montana,202207,Y,P,N,1794.0,,0.0,,1794.0,,1393.0,,93.0,,1486.0,,129941.0,,312248.0,,283863.0,,28385.0,,,,109.0,,141.0,,185.0,,147.0,,230.0,,,,,,, +MT,Montana,202207,Y,U,Y,1877.0,,0.0,,1877.0,,1393.0,,93.0,,1486.0,,130669.0,,313837.0,,285325.0,,28512.0,,,,109.0,,141.0,,185.0,,147.0,,230.0,,,,,,, +MT,Montana,202208,Y,P,N,2271.0,,0.0,,2271.0,,1729.0,,116.0,,1845.0,,130246.0,,313866.0,,285503.0,,28363.0,,,,136.0,,201.0,,255.0,,174.0,,296.0,,,,,,, +MT,Montana,202208,Y,U,Y,2359.0,,0.0,,2359.0,,1729.0,,116.0,,1845.0,,130957.0,,315377.0,,286852.0,,28525.0,,,,136.0,,201.0,,255.0,,174.0,,296.0,,,,,,, +MT,Montana,202209,Y,P,N,1982.0,,0.0,,1982.0,,1816.0,,112.0,,1928.0,,130446.0,,318102.0,,289723.0,,28379.0,,,,117.0,,174.0,,315.0,,227.0,,263.0,,,,,,, +MT,Montana,202209,Y,U,Y,2074.0,,0.0,,2074.0,,1816.0,,112.0,,1928.0,,131242.0,,319927.0,,291360.0,,28567.0,,,,117.0,,174.0,,315.0,,227.0,,263.0,,,,,,, +MT,Montana,202210,Y,P,N,2143.0,,0.0,,2143.0,,1893.0,,158.0,,2051.0,,130915.0,,317069.0,,288569.0,,28500.0,,,,117.0,,194.0,,373.0,,224.0,,285.0,,,,,,, +MT,Montana,202210,Y,U,Y,2208.0,,0.0,,2208.0,,1893.0,,158.0,,2051.0,,131398.0,,318138.0,,289547.0,,28591.0,,,,117.0,,194.0,,373.0,,224.0,,285.0,,,,,,, +MT,Montana,202211,Y,P,N,2135.0,,0.0,,2135.0,,1539.0,,110.0,,1649.0,,131024.0,,322506.0,,294001.0,,28505.0,,,,80.0,,201.0,,348.0,,176.0,,147.0,,,,,,, +MT,Montana,202211,Y,U,Y,2264.0,,0.0,,2264.0,,1539.0,,110.0,,1649.0,,131684.0,,324086.0,,295445.0,,28641.0,,,,80.0,,201.0,,348.0,,176.0,,147.0,,,,,,, +MT,Montana,202212,Y,P,N,2066.0,,0.0,,2066.0,,1692.0,,107.0,,1799.0,,131451.0,,322482.0,,293922.0,,28560.0,,,,111.0,,141.0,,341.0,,181.0,,255.0,,,,,,, +MT,Montana,202212,Y,U,Y,2196.0,,0.0,,2196.0,,1692.0,,107.0,,1799.0,,132429.0,,324866.0,,296067.0,,28799.0,,,,111.0,,141.0,,341.0,,181.0,,255.0,,,,,,, +MT,Montana,202301,Y,P,N,2319.0,,0.0,,2319.0,,1960.0,,228.0,,2188.0,,132122.0,,325528.0,,296819.0,,28709.0,,,,113.0,,172.0,,352.0,,224.0,,461.0,,,,,,, +MT,Montana,202301,Y,U,Y,2430.0,,0.0,,2430.0,,1960.0,,228.0,,2188.0,,132903.0,,327239.0,,298346.0,,28893.0,,,,113.0,,172.0,,352.0,,224.0,,461.0,,,,,,, +MT,Montana,202302,Y,P,N,1835.0,,0.0,,1835.0,,1939.0,,179.0,,2118.0,,132494.0,,326822.0,,298034.0,,28788.0,,,,107.0,,133.0,,421.0,,204.0,,412.0,,,,,,, +MT,Montana,202302,Y,U,Y,1945.0,,0.0,,1945.0,,1939.0,,179.0,,2118.0,,133162.0,,328565.0,,299630.0,,28935.0,,,,107.0,,133.0,,421.0,,204.0,,412.0,,,,,,, +MT,Montana,202303,Y,P,N,2214.0,,0.0,,2214.0,,1990.0,,132.0,,2122.0,,132852.0,,328538.0,,299724.0,,28814.0,,,,195.0,,229.0,,400.0,,213.0,,264.0,,27074.0,Does not include all calls received after business hours; Includes calls for other benefit programs,37.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.36,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MT,Montana,202303,Y,U,Y,2313.0,,0.0,,2313.0,,1990.0,,132.0,,2122.0,,133382.0,,329804.0,,300888.0,,28916.0,,,,195.0,,229.0,,400.0,,213.0,,264.0,,27074.0,Does not include all calls received after business hours; Includes calls for other benefit programs,37.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.36,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MT,Montana,202304,Y,P,N,1971.0,,0.0,,1971.0,,1410.0,,64.0,,1474.0,,132780.0,,329425.0,,300693.0,,28732.0,,,,139.0,,139.0,,300.0,,158.0,,113.0,,23631.0,Does not include all calls received after business hours; Includes calls for other benefit programs,37.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.35,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MT,Montana,202304,Y,U,Y,2085.0,,0.0,,2085.0,,1410.0,,64.0,,1474.0,,133296.0,,330590.0,,301785.0,,28805.0,,,,139.0,,139.0,,300.0,,158.0,,113.0,,23631.0,Does not include all calls received after business hours; Includes calls for other benefit programs,37.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.35,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MT,Montana,202305,Y,P,N,2733.0,,0.0,,2733.0,,1533.0,,80.0,,1613.0,,132262.0,,329327.0,,300819.0,,28508.0,,,,115.0,,184.0,,283.0,,147.0,,131.0,,26242.0,Does not include all calls received after business hours; Includes calls for other benefit programs,42.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.4,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MT,Montana,202305,Y,U,Y,2855.0,,0.0,,2855.0,,1533.0,,80.0,,1613.0,,132804.0,,330378.0,,301776.0,,28602.0,,,,115.0,,184.0,,283.0,,147.0,,131.0,,26242.0,Does not include all calls received after business hours; Includes calls for other benefit programs,42.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.4,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MT,Montana,202306,Y,P,N,3478.0,,0.0,,3478.0,,1978.0,,140.0,,2118.0,,126056.0,,313154.0,,286211.0,,26943.0,,,,179.0,,232.0,,373.0,,170.0,,127.0,,26749.0,Does not include all calls received after business hours; Includes calls for other benefit programs,27.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.39,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MT,Montana,202306,Y,U,Y,3665.0,,0.0,,3665.0,,1978.0,,140.0,,2118.0,,127020.0,,314959.0,,287819.0,,27140.0,,,,179.0,,232.0,,373.0,,170.0,,127.0,,26749.0,Does not include all calls received after business hours; Includes calls for other benefit programs,27.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.39,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MT,Montana,202307,Y,P,N,4030.0,,0.0,,4030.0,,2459.0,,138.0,,2597.0,,118786.0,,294114.0,,268884.0,,25230.0,,,,202.0,,283.0,,457.0,,252.0,,186.0,,27946.0,Does not include all calls received after business hours; Includes calls for other benefit programs,31.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.44,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MT,Montana,202307,Y,U,Y,4229.0,,0.0,,4229.0,,2459.0,,138.0,,2597.0,,120341.0,,297145.0,,271577.0,,25568.0,,,,202.0,,283.0,,457.0,,252.0,,186.0,,27946.0,Does not include all calls received after business hours; Includes calls for other benefit programs,31.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.44,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MT,Montana,202308,Y,P,N,4898.0,,0.0,,4898.0,,3103.0,,216.0,,3319.0,,114128.0,,278908.0,,255012.0,,23896.0,,,,232.0,,242.0,,521.0,,334.0,,355.0,,34814.0,Does not include all calls received after business hours; Includes calls for other benefit programs,34.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.49,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MT,Montana,202308,Y,U,Y,5110.0,,0.0,,5110.0,,3103.0,,216.0,,3319.0,,115662.0,,281817.0,,257612.0,,24205.0,,,,232.0,,242.0,,521.0,,334.0,,355.0,,34814.0,Does not include all calls received after business hours; Includes calls for other benefit programs,34.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.49,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MT,Montana,202309,Y,P,N,4801.0,,0.0,,4801.0,,3223.0,,193.0,,3416.0,,108677.0,,262898.0,,240377.0,,22521.0,,,,227.0,,299.0,,483.0,,309.0,,480.0,,34082.0,Does not include all calls received after business hours; Includes calls for other benefit programs,29.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.44,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MT,Montana,202309,Y,U,Y,4947.0,,0.0,,4947.0,,3223.0,,193.0,,3416.0,,110733.0,,266728.0,,243804.0,,22924.0,,,,227.0,,299.0,,483.0,,309.0,,480.0,,34082.0,Does not include all calls received after business hours; Includes calls for other benefit programs,29.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.44,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MT,Montana,202310,Y,P,N,5213.0,,0.0,,5213.0,,3592.0,,263.0,,3855.0,,104449.0,,249849.0,,228676.0,,21173.0,,,,268.0,,289.0,,516.0,,340.0,,631.0,,37764.0,Does not include all calls received after business hours; Includes calls for other benefit programs,27.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.37,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MT,Montana,202310,Y,U,Y,5378.0,,0.0,,5378.0,,3592.0,,263.0,,3855.0,,106091.0,,253078.0,,231523.0,,21555.0,,,,268.0,,289.0,,516.0,,340.0,,631.0,,37764.0,Does not include all calls received after business hours; Includes calls for other benefit programs,27.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.37,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MT,Montana,202311,Y,P,N,5175.0,,0.0,,5175.0,,3469.0,,263.0,,3732.0,,102255.0,,244175.0,,223697.0,,20478.0,,,,222.0,,293.0,,507.0,,242.0,,676.0,,36640.0,Does not include all calls received after business hours; Includes calls for other benefit programs,30.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.38,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MT,Montana,202311,Y,U,Y,5175.0,,0.0,,5175.0,,3469.0,,263.0,,3732.0,,103982.0,,247540.0,,226633.0,,20907.0,,,,222.0,,293.0,,507.0,,242.0,,676.0,,36640.0,Does not include all calls received after business hours; Includes calls for other benefit programs,30.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.38,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MT,Montana,202312,Y,P,N,4445.0,,0.0,,4445.0,,3054.0,,239.0,,3293.0,,97856.0,,237408.0,,217027.0,,20381.0,,,,224.0,,267.0,,406.0,,177.0,,672.0,,33372.0,Does not include all calls received after business hours; Includes calls for other benefit programs,29.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.36,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MT,Montana,202312,Y,U,Y,4445.0,,0.0,,4445.0,,3054.0,,239.0,,3293.0,,100273.0,,242142.0,,221077.0,,21065.0,,,,224.0,,267.0,,406.0,,177.0,,672.0,,33372.0,Does not include all calls received after business hours; Includes calls for other benefit programs,29.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.36,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MT,Montana,202401,Y,P,N,5395.0,,0.0,,5395.0,,3759.0,,365.0,,4124.0,,98105.0,,235506.0,,214906.0,,20600.0,,,,233.0,,299.0,,453.0,,316.0,,809.0,,38836.0,Does not include all calls received after business hours; Includes calls for other benefit programs,31.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.42,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MT,Montana,202401,Y,U,Y,5395.0,,0.0,,5395.0,,3759.0,,365.0,,4124.0,,100214.0,,239503.0,,218316.0,,21187.0,,,,233.0,,299.0,,453.0,,316.0,,809.0,,38836.0,Does not include all calls received after business hours; Includes calls for other benefit programs,31.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.42,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MT,Montana,202402,Y,P,N,4514.0,,0.0,,4514.0,,3609.0,,346.0,,3955.0,,97991.0,,233455.0,,212801.0,,20654.0,,,,207.0,,337.0,,426.0,,210.0,,856.0,,29826.0,Does not include all calls received after business hours; Includes calls for other benefit programs,29.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.4,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MT,Montana,202402,Y,U,Y,4514.0,,0.0,,4514.0,,3609.0,,346.0,,3955.0,,100348.0,,238365.0,,217001.0,,21364.0,,,,207.0,,337.0,,426.0,,210.0,,856.0,,29826.0,Does not include all calls received after business hours; Includes calls for other benefit programs,29.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.4,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MT,Montana,202403,Y,P,N,4100.0,,0.0,,4100.0,,3572.0,,360.0,,3932.0,,98148.0,,232331.0,,211314.0,,21017.0,,,,245.0,,246.0,,403.0,,290.0,,815.0,,23651.0,Does not include all calls received after business hours; Includes calls for other benefit programs,23.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.36,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MT,Montana,202403,Y,U,Y,4100.0,,0.0,,4100.0,,3572.0,,360.0,,3932.0,,100083.0,,236226.0,,214580.0,,21646.0,,,,245.0,,246.0,,403.0,,290.0,,815.0,,23651.0,Does not include all calls received after business hours; Includes calls for other benefit programs,23.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.36,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MT,Montana,202404,Y,P,N,4239.0,,0.0,,4239.0,,3769.0,,440.0,,4209.0,,98277.0,,231418.0,,210240.0,,21178.0,,,,238.0,,284.0,,401.0,,184.0,,990.0,,21081.0,Does not include all calls received after business hours; Includes calls for other benefit programs,35.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.46,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MT,Montana,202404,Y,U,Y,4239.0,,0.0,,4239.0,,3769.0,,440.0,,4209.0,,99962.0,,234855.0,,213089.0,,21766.0,,,,238.0,,284.0,,401.0,,184.0,,990.0,,21081.0,Does not include all calls received after business hours; Includes calls for other benefit programs,35.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.46,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MT,Montana,202405,Y,P,N,3903.0,,0.0,,3903.0,,3490.0,,457.0,,3947.0,,98334.0,,230222.0,,208835.0,,21387.0,,,,219.0,,250.0,,386.0,,215.0,,861.0,,19959.0,Does not include all calls received after business hours; Includes calls for other benefit programs,34.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.44,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MT,Montana,202405,Y,U,Y,3903.0,,0.0,,3903.0,,3490.0,,457.0,,3947.0,,100437.0,,233916.0,,212111.0,,21805.0,,,,219.0,,250.0,,386.0,,215.0,,861.0,,19959.0,Does not include all calls received after business hours; Includes calls for other benefit programs,34.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.44,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MT,Montana,202406,Y,P,N,3511.0,,0.0,,3511.0,,3139.0,,327.0,,3466.0,,97658.0,,228012.0,,206811.0,,21201.0,,,,199.0,,282.0,,348.0,,238.0,,710.0,,12392.0,Does not include all calls received after business hours; Includes calls for other benefit programs,36.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.46,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MT,Montana,202406,Y,U,Y,3511.0,,0.0,,3511.0,,3139.0,,327.0,,3466.0,,99111.0,,231083.0,,209438.0,,21645.0,,,,199.0,,282.0,,348.0,,238.0,,710.0,,12392.0,Does not include all calls received after business hours; Includes calls for other benefit programs,36.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.46,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MT,Montana,202407,Y,P,N,3924.0,,0.0,,3924.0,,3179.0,,326.0,,3505.0,,96627.0,,224067.0,,202952.0,,21115.0,,127440.0,,268.0,,292.0,,380.0,,181.0,,739.0,,21269.0,Does not include all calls received after business hours; Includes calls for other benefit programs,38.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.51,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MT,Montana,202407,Y,U,Y,3924.0,,0.0,,3924.0,,3179.0,,326.0,,3505.0,,98016.0,,226910.0,,205343.0,,21567.0,,128894.0,,268.0,,292.0,,380.0,,181.0,,739.0,,21269.0,Does not include all calls received after business hours; Includes calls for other benefit programs,38.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.51,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MT,Montana,202408,Y,P,N,4221.0,,0.0,,4221.0,,3265.0,,327.0,,3592.0,,95669.0,,222073.0,,201015.0,,21058.0,,126404.0,,235.0,,270.0,,419.0,,158.0,,719.0,,22168.0,Does not include all calls received after business hours; Includes calls for other benefit programs,38.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.52,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MT,Montana,202408,Y,U,Y,4221.0,,0.0,,4221.0,,3265.0,,327.0,,3592.0,,97511.0,,225565.0,,204066.0,,21499.0,,128054.0,,235.0,,270.0,,419.0,,158.0,,719.0,,22168.0,Does not include all calls received after business hours; Includes calls for other benefit programs,38.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.52,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MT,Montana,202409,Y,P,N,3931.0,,0.0,,3931.0,,3180.0,,334.0,,3514.0,,97511.0,,225565.0,,204066.0,,21499.0,,128054.0,,227.0,,320.0,,430.0,,201.0,,657.0,,21537.0,Does not include all calls received after business hours; Includes calls for other benefit programs,39.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.5,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MT,Montana,202409,Y,U,Y,3931.0,,0.0,,3931.0,,3180.0,,334.0,,3514.0,,97780.0,,229182.0,,207459.0,,21723.0,,131402.0,,227.0,,320.0,,430.0,,201.0,,657.0,,21537.0,Does not include all calls received after business hours; Includes calls for other benefit programs,39.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.5,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MT,Montana,202410,Y,P,N,4488.0,,0.0,,4488.0,,3590.0,,333.0,,3923.0,,94588.0,,218858.0,,197914.0,,20944.0,,124270.0,,231.0,,301.0,,524.0,,239.0,,780.0,,27390.0,Does not include all calls received after business hours; Includes calls for other benefit programs,42.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.56,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MT,Montana,202410,Y,U,Y,4488.0,,0.0,,4488.0,,3590.0,,333.0,,3923.0,,96021.0,,221595.0,,200339.0,,21256.0,,125574.0,,231.0,,301.0,,524.0,,239.0,,780.0,,27390.0,Does not include all calls received after business hours; Includes calls for other benefit programs,42.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.56,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MT,Montana,202411,Y,P,N,4255.0,,0.0,,4255.0,,3029.0,,208.0,,3237.0,,93503.0,,216631.0,,196154.0,,20477.0,,123128.0,,212.0,,298.0,,468.0,,172.0,,566.0,,26297.0,Does not include all calls received after business hours; Includes calls for other benefit programs,37.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.63,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MT,Montana,202411,Y,U,Y,4255.0,,0.0,,4255.0,,3029.0,,208.0,,3237.0,,95101.0,,219874.0,,199026.0,,20848.0,,124773.0,,212.0,,298.0,,468.0,,172.0,,566.0,,26297.0,Does not include all calls received after business hours; Includes calls for other benefit programs,37.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.63,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MT,Montana,202412,Y,P,N,4664.0,,0.0,,4664.0,,3163.0,,249.0,,3412.0,,91782.0,,213317.0,,193278.0,,20039.0,,121535.0,,250.0,,316.0,,474.0,,241.0,,535.0,,28845.0,Does not include all calls received after business hours; Includes calls for other benefit programs,32.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.6,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MT,Montana,202412,Y,U,Y,4664.0,,0.0,,4664.0,,3163.0,,249.0,,3412.0,,91819.0,,216770.0,,196958.0,,19812.0,,124951.0,,250.0,,316.0,,474.0,,241.0,,535.0,,28845.0,Does not include all calls received after business hours; Includes calls for other benefit programs,32.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.6,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MT,Montana,202501,Y,P,N,5292.0,,0.0,,5292.0,,3536.0,,387.0,,3923.0,,90518.0,,210190.0,,190632.0,,19558.0,,119672.0,,287.0,,406.0,,540.0,,218.0,,690.0,,31314.0,Does not include all calls received after business hours; Includes calls for other benefit programs,29.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.47,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MT,Montana,202501,Y,U,Y,5292.0,,0.0,,5292.0,,3536.0,,387.0,,3923.0,,92639.0,,214191.0,,194027.0,,20164.0,,121552.0,,287.0,,406.0,,540.0,,218.0,,690.0,,31314.0,Does not include all calls received after business hours; Includes calls for other benefit programs,29.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.47,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs +MT,Montana,202502,Y,P,N,3782.0,,0.0,,3782.0,,3557.0,,448.0,,4005.0,,90443.0,,209559.0,,189927.0,,19632.0,,119116.0,,256.0,,322.0,,418.0,,210.0,,954.0,,22650.0,Includes calls for other benefit programs,25.0,Call centers offer callbacks; Includes calls for other benefit programs,0.39,Includes calls for other benefit programs +MT,Montana,202502,Y,U,Y,3782.0,Includes Accounts Transferred from FFM,0.0,,3782.0,Includes Accounts Transferred from FFM,3557.0,,448.0,,4005.0,,92619.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),213918.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),193632.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),20286.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),121299.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),256.0,,322.0,,418.0,,210.0,,954.0,,22650.0,Includes calls for other benefit programs,25.0,Call centers offer callbacks; Includes calls for other benefit programs,0.39,Includes calls for other benefit programs +MT,Montana,202503,Y,P,N,3948.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM,0.0,,3948.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM,3926.0,Includes Final Eligibility Determinations Made by FFM; Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations,472.0,Includes Final Eligibility Determinations Made by FFM; Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations,4398.0,Includes Final Eligibility Determinations Made by FFM; Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations,91045.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count); Includes Retroactive Enrollments,210437.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count); Includes Limited-Benefit Enrollees; Includes Retroactive Enrollments,190511.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count); Includes Limited-Benefit Enrollees; Includes Retroactive Enrollments,19926.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),119392.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count); Includes Limited-Benefit Enrollees; Includes Retroactive Enrollments,286.0,,322.0,,463.0,,202.0,,1105.0,,22159.0,Includes calls for other benefit programs,23.0,Call centers offer callbacks; Includes calls for other benefit programs,0.37,Includes calls for other benefit programs +MT,Montana,202503,Y,U,Y,3948.0,Includes Accounts Transferred from FFM,0.0,,3948.0,Includes Accounts Transferred from FFM,3926.0,Includes Final Eligibility Determinations Made by FFM; Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations,472.0,Includes Final Eligibility Determinations Made by FFM; Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations,4398.0,Includes Final Eligibility Determinations Made by FFM; Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations,93526.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),215429.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),194674.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),20755.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),121903.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),286.0,,322.0,,463.0,,202.0,,1105.0,,22159.0,Includes calls for other benefit programs,23.0,Call centers offer callbacks; Includes calls for other benefit programs,0.37,Includes calls for other benefit programs +MT,Montana,202504,Y,P,N,3954.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM,0.0,,3954.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM,4718.0,Includes Final Eligibility Determinations Made by FFM; Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations,603.0,Includes Final Eligibility Determinations Made by FFM; Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations,5321.0,Includes Final Eligibility Determinations Made by FFM; Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations,91861.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count); Includes Retroactive Enrollments,212308.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count); Includes Limited-Benefit Enrollees; Includes Retroactive Enrollments,192115.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count); Includes Limited-Benefit Enrollees; Includes Retroactive Enrollments,20193.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),120447.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count); Includes Limited-Benefit Enrollees; Includes Retroactive Enrollments,218.0,,328.0,,471.0,,174.0,,1786.0,,21165.0,Includes calls for other benefit programs,23.0,Call centers offer callbacks; Includes calls for other benefit programs,0.33,Includes calls for other benefit programs +MT,Montana,202504,Y,U,Y,3954.0,Includes Accounts Transferred from FFM,0.0,,3954.0,Includes Accounts Transferred from FFM,4718.0,Includes Final Eligibility Determinations Made by FFM; Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations,603.0,Includes Final Eligibility Determinations Made by FFM; Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations,5321.0,Includes Final Eligibility Determinations Made by FFM; Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations,94450.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),217801.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),196817.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),20984.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),123351.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),218.0,,328.0,,471.0,,174.0,,1786.0,,21165.0,Includes calls for other benefit programs,23.0,Call centers offer callbacks; Includes calls for other benefit programs,0.33,Includes calls for other benefit programs +MT,Montana,202505,Y,P,N,3519.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM,0.0,,3519.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM,5218.0,Includes Final Eligibility Determinations Made by FFM; Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations,625.0,Includes Final Eligibility Determinations Made by FFM; Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations,5843.0,Includes Final Eligibility Determinations Made by FFM; Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations,93019.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count); Includes Retroactive Enrollments,214919.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count); Includes Limited-Benefit Enrollees; Includes Retroactive Enrollments,194271.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count); Includes Limited-Benefit Enrollees; Includes Retroactive Enrollments,20648.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),121900.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count); Includes Limited-Benefit Enrollees; Includes Retroactive Enrollments,206.0,,320.0,,574.0,,340.0,,1951.0,,19332.0,Includes calls for other benefit programs,22.0,Call centers offer callbacks; Includes calls for other benefit programs,0.33,Includes calls for other benefit programs +MT,Montana,202505,Y,U,Y,3519.0,Includes Accounts Transferred from FFM,0.0,,3519.0,Includes Accounts Transferred from FFM,5218.0,Includes Final Eligibility Determinations Made by FFM; Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations,625.0,Includes Final Eligibility Determinations Made by FFM; Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations,5843.0,Includes Final Eligibility Determinations Made by FFM; Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations,94871.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),218838.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),197553.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),21285.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),123967.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),206.0,,320.0,,574.0,,340.0,,1951.0,,19332.0,Includes calls for other benefit programs,22.0,Call centers offer callbacks; Includes calls for other benefit programs,0.33,Includes calls for other benefit programs +MT,Montana,202506,Y,P,N,3482.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM,0.0,,3482.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM,4036.0,Includes Final Eligibility Determinations Made by FFM; Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations,526.0,Includes Final Eligibility Determinations Made by FFM; Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations,4562.0,Includes Final Eligibility Determinations Made by FFM; Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations,93458.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count); Includes Retroactive Enrollments,215922.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count); Includes Limited-Benefit Enrollees; Includes Retroactive Enrollments,194981.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count); Includes Limited-Benefit Enrollees; Includes Retroactive Enrollments,20941.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),122464.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count); Includes Limited-Benefit Enrollees; Includes Retroactive Enrollments,200.0,,371.0,,560.0,,289.0,,1106.0,,20271.0,Includes calls for other benefit programs,23.0,Call centers offer callbacks; Includes calls for other benefit programs,0.35,Includes calls for other benefit programs +MT,Montana,202506,Y,U,Y,3482.0,Includes Accounts Transferred from FFM,0.0,,3482.0,Includes Accounts Transferred from FFM,4035.0,Includes Final Eligibility Determinations Made by FFM; Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations,526.0,Includes Final Eligibility Determinations Made by FFM; Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations,4561.0,Includes Final Eligibility Determinations Made by FFM; Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations,95049.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),218953.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),197661.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),21292.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),123904.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),200.0,,371.0,,560.0,,289.0,,1105.0,,20271.0,Includes calls for other benefit programs,23.0,Call centers offer callbacks; Includes calls for other benefit programs,0.35,Includes calls for other benefit programs +MT,Montana,202507,Y,P,N,3478.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM,0.0,,3478.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM,2949.0,Includes Final Eligibility Determinations Made by FFM; Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations,268.0,Includes Final Eligibility Determinations Made by FFM; Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations,3217.0,Includes Final Eligibility Determinations Made by FFM; Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations,92763.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count); Includes Retroactive Enrollments,213598.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count); Includes Limited-Benefit Enrollees; Includes Retroactive Enrollments,192845.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count); Includes Limited-Benefit Enrollees; Includes Retroactive Enrollments,20753.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),120835.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count); Includes Limited-Benefit Enrollees; Includes Retroactive Enrollments,216.0,,302.0,,603.0,,225.0,,402.0,,21012.0,Includes calls for other benefit programs,24.0,Call centers offer callbacks; Includes calls for other benefit programs,0.34,Includes calls for other benefit programs +MT,Montana,202507,Y,U,Y,3478.0,Includes Accounts Transferred from FFM,0.0,,3478.0,Includes Accounts Transferred from FFM,2949.0,Includes Final Eligibility Determinations Made by FFM; Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations,268.0,Includes Final Eligibility Determinations Made by FFM; Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations,3217.0,Includes Final Eligibility Determinations Made by FFM; Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations,94432.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),217768.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),196605.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),21163.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),123336.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),216.0,,302.0,,603.0,,225.0,,402.0,,21012.0,Includes calls for other benefit programs,24.0,Call centers offer callbacks; Includes calls for other benefit programs,0.34,Includes calls for other benefit programs +MT,Montana,202508,Y,P,N,3696.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM,0.0,,3696.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM,2840.0,Includes Final Eligibility Determinations Made by FFM; Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations,286.0,Includes Final Eligibility Determinations Made by FFM; Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations,3126.0,Includes Final Eligibility Determinations Made by FFM; Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations,91904.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count); Includes Retroactive Enrollments,211487.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count); Includes Limited-Benefit Enrollees; Includes Retroactive Enrollments,191086.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count); Includes Limited-Benefit Enrollees; Includes Retroactive Enrollments,20401.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),119583.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count); Includes Limited-Benefit Enrollees; Includes Retroactive Enrollments,203.0,,304.0,,508.0,,303.0,,246.0,,21572.0,Includes calls for other benefit programs,24.0,Call centers offer callbacks; Includes calls for other benefit programs,0.36,Includes calls for other benefit programs +MT,Montana,202508,Y,U,Y,3696.0,Includes Accounts Transferred from FFM,0.0,,3696.0,Includes Accounts Transferred from FFM,2840.0,Includes Final Eligibility Determinations Made by FFM; Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations,286.0,Includes Final Eligibility Determinations Made by FFM; Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations,3126.0,Includes Final Eligibility Determinations Made by FFM; Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations,93489.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),215391.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),194504.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),20887.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),121902.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),203.0,,304.0,,508.0,,303.0,,246.0,,21572.0,Includes calls for other benefit programs,24.0,Call centers offer callbacks; Includes calls for other benefit programs,0.36,Includes calls for other benefit programs +MT,Montana,202509,Y,P,N,3940.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM,0.0,,3940.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM,3059.0,Includes Final Eligibility Determinations Made by FFM; Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations,303.0,Includes Final Eligibility Determinations Made by FFM; Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations,3362.0,Includes Final Eligibility Determinations Made by FFM; Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations,91408.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count); Includes Retroactive Enrollments,211420.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count); Includes Limited-Benefit Enrollees; Includes Retroactive Enrollments,191157.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count); Includes Limited-Benefit Enrollees; Includes Retroactive Enrollments,20263.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),120012.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count); Includes Limited-Benefit Enrollees; Includes Retroactive Enrollments,227.0,,332.0,,602.0,,379.0,,206.0,,24666.0,Includes calls for other benefit programs,24.0,Call centers offer callbacks; Includes calls for other benefit programs,0.38,Includes calls for other benefit programs +MT,Montana,202509,Y,U,Y,3940.0,Includes Accounts Transferred from FFM,0.0,,3940.0,Includes Accounts Transferred from FFM,3059.0,Includes Final Eligibility Determinations Made by FFM; Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations,303.0,Includes Final Eligibility Determinations Made by FFM; Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations,3362.0,Includes Final Eligibility Determinations Made by FFM; Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations,92761.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),214206.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),193524.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),20682.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),121445.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),227.0,,332.0,,602.0,,379.0,,206.0,,24666.0,Includes calls for other benefit programs,24.0,Call centers offer callbacks; Includes calls for other benefit programs,0.38,Includes calls for other benefit programs +MT,Montana,202510,Y,P,N,4029.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM,0.0,,4029.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM,3149.0,Includes Final Eligibility Determinations Made by FFM; Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations,373.0,Includes Final Eligibility Determinations Made by FFM; Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations,3522.0,Includes Final Eligibility Determinations Made by FFM; Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations,91101.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count); Includes Retroactive Enrollments,210942.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count); Includes Limited-Benefit Enrollees; Includes Retroactive Enrollments,190695.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count); Includes Limited-Benefit Enrollees; Includes Retroactive Enrollments,20247.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),119841.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count); Includes Limited-Benefit Enrollees; Includes Retroactive Enrollments,208.0,,343.0,,609.0,,417.0,,275.0,,21828.0,Includes calls for other benefit programs,20.0,Call centers offer callbacks; Includes calls for other benefit programs,0.33,Includes calls for other benefit programs +NC,North Carolina,201309,N,U,Y,,,,,,,,,,,,,,,1595952.0,,,,,,,,,,,,,,,,,,,,,,, +NC,North Carolina,201706,N,P,N,21153.0,,0.0,,21153.0,,31265.0,,3743.0,,35008.0,,1242709.0,,1962670.0,,1726359.0,,236311.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,201706,N,U,Y,21153.0,,0.0,,21153.0,,31265.0,,3743.0,,35008.0,,1242709.0,,1962670.0,,1726359.0,,236311.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,201707,N,P,N,20267.0,,0.0,,20267.0,,28251.0,,3229.0,,31480.0,,1242701.0,,1962166.0,,1722871.0,,239295.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,201707,N,U,Y,20267.0,,0.0,,20267.0,,28251.0,,3229.0,,31480.0,,1242701.0,,1962166.0,,1722871.0,,239295.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,201708,N,P,N,22824.0,,0.0,,22824.0,,35607.0,,3798.0,,39405.0,,1245687.0,,1966019.0,,1723893.0,,242126.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,201708,N,U,Y,22824.0,,0.0,,22824.0,,35607.0,,3798.0,,39405.0,,1245687.0,,1966019.0,,1723893.0,,242126.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,201709,N,P,N,21052.0,,0.0,,21052.0,,33459.0,,3375.0,,36834.0,,1245379.0,,1962882.0,,1719265.0,,243617.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,201709,N,U,Y,21052.0,,0.0,,21052.0,,33459.0,,3375.0,,36834.0,,1245379.0,,1962882.0,,1719265.0,,243617.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,201710,N,P,N,21984.0,,0.0,,21984.0,,36886.0,,3689.0,,40575.0,,1245508.0,,1962918.0,,1716869.0,,246049.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,201710,N,U,Y,21984.0,,0.0,,21984.0,,36886.0,,3689.0,,40575.0,,1245508.0,,1962918.0,,1716869.0,,246049.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,201711,N,P,N,22383.0,,0.0,,22383.0,,33096.0,,3275.0,,36371.0,,1247174.0,,1963473.0,,1714183.0,,249290.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,201711,N,U,Y,22383.0,,0.0,,22383.0,,33096.0,,3275.0,,36371.0,,1247174.0,,1963473.0,,1714183.0,,249290.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,201712,N,P,N,18712.0,,0.0,,18712.0,,31737.0,,3285.0,,35022.0,,1247092.0,,1961482.0,,1710252.0,,251230.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,201712,N,U,Y,18712.0,,0.0,,18712.0,,31737.0,,3285.0,,35022.0,,1247092.0,,1961482.0,,1710252.0,,251230.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,201801,N,P,N,24374.0,,0.0,,24374.0,,35422.0,,3939.0,,39361.0,,1248493.0,,1963168.0,,1710745.0,,252423.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,201801,N,U,Y,24374.0,,0.0,,24374.0,,35422.0,,3939.0,,39361.0,,1248493.0,,1963168.0,,1710745.0,,252423.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,201802,N,P,N,22226.0,,0.0,,22226.0,,34999.0,,3775.0,,38774.0,,1248564.0,,1961694.0,,1708313.0,,253381.0,,,,146.0,,959.0,,932.0,,1218.0,,431.0,,,,,,, +NC,North Carolina,201802,N,U,Y,22226.0,,0.0,,22226.0,,34999.0,,3775.0,,38774.0,,1248564.0,,1961694.0,,1708313.0,,253381.0,,,,146.0,,959.0,,932.0,,1218.0,,431.0,,,,,,, +NC,North Carolina,201803,N,P,N,22992.0,,0.0,,22992.0,,35639.0,,3628.0,,39267.0,,1248502.0,,1958074.0,,1703832.0,,254242.0,,,,116.0,,728.0,,898.0,,1689.0,,546.0,,,,,,, +NC,North Carolina,201803,N,U,Y,22992.0,,0.0,,22992.0,,35639.0,,3628.0,,39267.0,,1248502.0,,1958074.0,,1703832.0,,254242.0,,,,116.0,,728.0,,898.0,,1689.0,,546.0,,,,,,, +NC,North Carolina,201804,N,P,N,22427.0,,0.0,,22427.0,,35059.0,,3694.0,,38753.0,,1246218.0,,1952277.0,,1697584.0,,254693.0,,,,151.0,,826.0,,973.0,,1772.0,,203.0,,,,,,, +NC,North Carolina,201804,N,U,Y,22427.0,,0.0,,22427.0,,35059.0,,3694.0,,38753.0,,1246218.0,,1952277.0,,1697584.0,,254693.0,,,,151.0,,826.0,,973.0,,1772.0,,203.0,,,,,,, +NC,North Carolina,201805,N,P,N,22729.0,,0.0,,22729.0,,35901.0,,3867.0,,39768.0,,1244499.0,,1946696.0,,1690401.0,,256295.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,201805,N,U,Y,22729.0,,0.0,,22729.0,,35901.0,,3867.0,,39768.0,,1244499.0,,1946696.0,,1690401.0,,256295.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,201806,N,P,N,22356.0,,0.0,,22356.0,,33512.0,,3491.0,,37003.0,,1241601.0,,1939276.0,,1680831.0,,258445.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,201806,N,U,Y,22356.0,,0.0,,22356.0,,33512.0,,3491.0,,37003.0,,1241601.0,,1939276.0,,1680831.0,,258445.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,201807,N,P,N,21765.0,,0.0,,21765.0,,33183.0,,3512.0,,36695.0,,1240807.0,,1935759.0,,1675298.0,,260461.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,201807,N,U,Y,21765.0,,0.0,,21765.0,,33183.0,,3512.0,,36695.0,,1240807.0,,1935759.0,,1675298.0,,260461.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,201808,N,P,N,23604.0,,0.0,,23604.0,,38202.0,,4284.0,,42486.0,,1242133.0,,1934720.0,,1671419.0,,263301.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,201808,N,U,Y,23604.0,,0.0,,23604.0,,38202.0,,4284.0,,42486.0,,1242133.0,,1934720.0,,1671419.0,,263301.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,201809,N,P,N,18002.0,,0.0,,18002.0,,29422.0,,3424.0,,32846.0,,1238197.0,,1924704.0,,1660008.0,,264696.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,201809,N,U,Y,18002.0,,0.0,,18002.0,,29422.0,,3424.0,,32846.0,,1238197.0,,1924704.0,,1660008.0,,264696.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,201810,N,P,N,21329.0,,0.0,,21329.0,,36216.0,,4818.0,,41034.0,,1238166.0,,1923174.0,,1656071.0,,267103.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,201810,N,U,Y,21329.0,,0.0,,21329.0,,36216.0,,4818.0,,41034.0,,1238166.0,,1923174.0,,1656071.0,,267103.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,201811,N,P,N,21783.0,,0.0,,21783.0,,30177.0,,3786.0,,33963.0,,1237590.0,,1918382.0,,1647858.0,,270524.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,201811,N,U,Y,21783.0,,0.0,,21783.0,,30177.0,,3786.0,,33963.0,,1237590.0,,1918382.0,,1647858.0,,270524.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,201812,N,P,N,18446.0,,0.0,,18446.0,,27078.0,,3678.0,,30756.0,,1237403.0,,1911064.0,,1637872.0,,273192.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,201812,N,U,Y,18446.0,,0.0,,18446.0,,27078.0,,3678.0,,30756.0,,1237403.0,,1911064.0,,1637872.0,,273192.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,201901,N,P,N,23960.0,,0.0,,23960.0,,35059.0,,4786.0,,39845.0,,1237622.0,,1911664.0,,1636808.0,,274856.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,201901,N,U,Y,23960.0,,0.0,,23960.0,,35059.0,,4786.0,,39845.0,,1237622.0,,1911664.0,,1636808.0,,274856.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,201902,N,P,N,20480.0,,0.0,,20480.0,,30780.0,,3808.0,,34588.0,,1234705.0,,1905081.0,,1628737.0,,276344.0,,,,194.0,,975.0,,855.0,,1373.0,,275.0,,,,,,, +NC,North Carolina,201902,N,U,Y,20480.0,,0.0,,20480.0,,30780.0,,3808.0,,34588.0,,1234705.0,,1905081.0,,1628737.0,,276344.0,,,,194.0,,975.0,,855.0,,1373.0,,275.0,,,,,,, +NC,North Carolina,201903,N,P,N,21212.0,,0.0,,21212.0,,32061.0,,3649.0,,35710.0,,1231950.0,,1898376.0,,1621088.0,,277288.0,,,,323.0,,1131.0,,918.0,,1718.0,,197.0,,,,,,, +NC,North Carolina,201903,N,U,Y,21212.0,,0.0,,21212.0,,32061.0,,3649.0,,35710.0,,1231950.0,,1898376.0,,1621088.0,,277288.0,,,,323.0,,1131.0,,918.0,,1718.0,,197.0,,,,,,, +NC,North Carolina,201904,N,P,N,20461.0,,0.0,,20461.0,,30979.0,,3326.0,,34305.0,,1230142.0,,1895037.0,,1617144.0,,277893.0,,,,171.0,,1155.0,,995.0,,2095.0,,205.0,,,,,,, +NC,North Carolina,201904,N,U,Y,20461.0,,0.0,,20461.0,,30979.0,,3326.0,,34305.0,,1230142.0,,1895037.0,,1617144.0,,277893.0,,,,171.0,,1155.0,,995.0,,2095.0,,205.0,,,,,,, +NC,North Carolina,201905,N,P,N,21538.0,,0.0,,21538.0,,30746.0,,3144.0,,33890.0,,1227564.0,,1889586.0,,1610487.0,,279099.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,201905,N,U,Y,21538.0,,0.0,,21538.0,,30746.0,,3144.0,,33890.0,,1227564.0,,1889586.0,,1610487.0,,279099.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,201906,N,P,N,21374.0,,0.0,,21374.0,,28575.0,,2744.0,,31319.0,,1223409.0,,1883694.0,,1604254.0,,279440.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,201906,N,U,Y,21374.0,,0.0,,21374.0,,28575.0,,2744.0,,31319.0,,1223409.0,,1883694.0,,1604254.0,,279440.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,201907,N,P,N,24319.0,,0.0,,24319.0,,31858.0,,3014.0,,34872.0,,1223464.0,,1883447.0,,1603260.0,,280187.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,201907,N,U,Y,24319.0,,0.0,,24319.0,,31858.0,,3014.0,,34872.0,,1223464.0,,1883447.0,,1603260.0,,280187.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,201908,N,P,N,24002.0,,0.0,,24002.0,,35304.0,,3334.0,,38638.0,,1223526.0,,1882620.0,,1601334.0,,281286.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,201908,N,U,Y,24002.0,,0.0,,24002.0,,35304.0,,3334.0,,38638.0,,1223526.0,,1882620.0,,1601334.0,,281286.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,201909,N,P,N,21395.0,,0.0,,21395.0,,36405.0,,4074.0,,40479.0,,1221201.0,,1877576.0,,1595789.0,,281787.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,201909,N,U,Y,21395.0,,0.0,,21395.0,,36405.0,,4074.0,,40479.0,,1221201.0,,1877576.0,,1595789.0,,281787.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,201910,N,P,N,24206.0,,0.0,,24206.0,,36086.0,,4051.0,,40137.0,,1219121.0,,1874809.0,,1592012.0,,282797.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,201910,N,U,Y,24206.0,,0.0,,24206.0,,36086.0,,4051.0,,40137.0,,1219121.0,,1874809.0,,1592012.0,,282797.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,201911,N,P,N,21684.0,,0.0,,21684.0,,27137.0,,2796.0,,29933.0,,1215973.0,,1868986.0,,1585375.0,,283611.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,201911,N,U,Y,21684.0,,0.0,,21684.0,,27137.0,,2796.0,,29933.0,,1215973.0,,1868986.0,,1585375.0,,283611.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,201912,N,P,N,22640.0,,0.0,,22640.0,,27203.0,,2814.0,,30017.0,,1214269.0,,1865183.0,,1580474.0,,284709.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,201912,N,U,Y,22640.0,,0.0,,22640.0,,27203.0,,2814.0,,30017.0,,1214269.0,,1865183.0,,1580474.0,,284709.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,202001,N,P,N,29422.0,,0.0,,29422.0,,32901.0,,3688.0,,36589.0,,1213047.0,,1865912.0,,1580613.0,,285299.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,202001,N,U,Y,29422.0,,0.0,,29422.0,,32901.0,,3688.0,,36589.0,,1213047.0,,1865912.0,,1580613.0,,285299.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,202002,N,P,N,23315.0,,0.0,,23315.0,,29889.0,,3088.0,,32977.0,,1209275.0,,1860901.0,,1575514.0,,285387.0,,,,144.0,,1038.0,,1123.0,,2226.0,,248.0,,,,,,, +NC,North Carolina,202002,N,U,Y,23315.0,,0.0,,23315.0,,29889.0,,3088.0,,32977.0,,1209275.0,,1860901.0,,1575514.0,,285387.0,,,,144.0,,1038.0,,1123.0,,2226.0,,248.0,,,,,,, +NC,North Carolina,202003,N,P,N,25902.0,,0.0,,25902.0,,34923.0,,3736.0,,38659.0,,1208360.0,,1858819.0,,1573302.0,,285517.0,,,,459.0,,1852.0,,1337.0,,2857.0,,298.0,,,,,,, +NC,North Carolina,202003,N,U,Y,25902.0,,0.0,,25902.0,,34923.0,,3736.0,,38659.0,,1208360.0,,1858819.0,,1573302.0,,285517.0,,,,459.0,,1852.0,,1337.0,,2857.0,,298.0,,,,,,, +NC,North Carolina,202004,N,P,N,27271.0,,0.0,,27271.0,,40215.0,,3513.0,,43728.0,,1217368.0,,1886198.0,,1598066.0,,288132.0,,,,961.0,,5152.0,,3223.0,,1757.0,,136.0,,,,,,, +NC,North Carolina,202004,N,U,Y,27271.0,,0.0,,27271.0,,40215.0,,3513.0,,43728.0,,1217368.0,,1886198.0,,1598066.0,,288132.0,,,,961.0,,5152.0,,3223.0,,1757.0,,136.0,,,,,,, +NC,North Carolina,202005,N,P,N,20237.0,,0.0,,20237.0,,28580.0,,2364.0,,30944.0,,1222588.0,,1902890.0,,1614066.0,,288824.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,202005,N,U,Y,20237.0,,0.0,,20237.0,,28580.0,,2364.0,,30944.0,,1222588.0,,1902890.0,,1614066.0,,288824.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,202006,N,P,N,22878.0,,0.0,,22878.0,,27895.0,,2453.0,,30348.0,,1231416.0,,1924638.0,,1634149.0,,290489.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,202006,N,U,Y,22878.0,,0.0,,22878.0,,27895.0,,2453.0,,30348.0,,1231416.0,,1924638.0,,1634149.0,,290489.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,202007,N,P,N,26948.0,,0.0,,26948.0,,31761.0,,2897.0,,34658.0,,1241532.0,,1947966.0,,1655806.0,,292160.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,202007,N,U,Y,26948.0,,0.0,,26948.0,,31761.0,,2897.0,,34658.0,,1241532.0,,1947966.0,,1655806.0,,292160.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,202008,N,P,N,27302.0,,0.0,,27302.0,,31670.0,,2969.0,,34639.0,,1251170.0,,1969650.0,,1676671.0,,292979.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,202008,N,U,Y,27302.0,,0.0,,27302.0,,31670.0,,2969.0,,34639.0,,1251170.0,,1969650.0,,1676671.0,,292979.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,202009,N,P,N,26658.0,,0.0,,26658.0,,32606.0,,2907.0,,35513.0,,1259537.0,,1990903.0,,1697889.0,,293014.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,202009,N,U,Y,26658.0,,0.0,,26658.0,,32606.0,,2907.0,,35513.0,,1259537.0,,1990903.0,,1697889.0,,293014.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,202010,N,P,N,27560.0,,0.0,,27560.0,,32099.0,,2746.0,,34845.0,,1267148.0,,2010420.0,,1717562.0,,292858.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,202010,N,U,Y,27560.0,,0.0,,27560.0,,32099.0,,2746.0,,34845.0,,1267148.0,,2010420.0,,1717562.0,,292858.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,202011,N,P,N,26371.0,,0.0,,26371.0,,26965.0,,2492.0,,29457.0,,1276424.0,,2031670.0,,1737658.0,,294012.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,202011,N,U,Y,26371.0,,0.0,,26371.0,,26965.0,,2492.0,,29457.0,,1276424.0,,2031670.0,,1737658.0,,294012.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,202012,N,P,N,26988.0,,0.0,,26988.0,,32133.0,,3676.0,,35809.0,,1286831.0,,2054635.0,,1758337.0,,296298.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,202012,N,U,Y,26988.0,,0.0,,26988.0,,32133.0,,3676.0,,35809.0,,1286831.0,,2054635.0,,1758337.0,,296298.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,202101,N,P,N,27583.0,,0.0,,27583.0,,31875.0,,3850.0,,35725.0,,1293252.0,,2072578.0,,1775402.0,,297176.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,202101,N,U,Y,27583.0,,0.0,,27583.0,,31875.0,,3850.0,,35725.0,,1293252.0,,2072578.0,,1775402.0,,297176.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,202102,N,P,N,23500.0,,0.0,,23500.0,,28653.0,,2669.0,,31322.0,,1299639.0,,2089409.0,,1791059.0,,298350.0,,,,503.0,,2214.0,,2039.0,,1495.0,,185.0,,,,,,, +NC,North Carolina,202102,N,U,Y,23500.0,,0.0,,23500.0,,28653.0,,2669.0,,31322.0,,1299639.0,,2089409.0,,1791059.0,,298350.0,,,,503.0,,2214.0,,2039.0,,1495.0,,185.0,,,,,,, +NC,North Carolina,202103,N,P,N,25053.0,,0.0,,25053.0,,31939.0,,2635.0,,34574.0,,1305430.0,,2104622.0,,1805029.0,,299593.0,,,,663.0,,3012.0,,1953.0,,1661.0,,264.0,,,,,,, +NC,North Carolina,202103,N,U,Y,25053.0,,0.0,,25053.0,,31939.0,,2635.0,,34574.0,,1305430.0,,2104622.0,,1805029.0,,299593.0,,,,663.0,,3012.0,,1953.0,,1661.0,,264.0,,,,,,, +NC,North Carolina,202104,N,P,N,21938.0,,0.0,,21938.0,,26761.0,,2206.0,,28967.0,,1310100.0,,2118526.0,,1817207.0,,301319.0,,,,542.0,,2479.0,,969.0,,1555.0,,187.0,,,,,,, +NC,North Carolina,202104,N,U,Y,21938.0,,0.0,,21938.0,,26761.0,,2206.0,,28967.0,,1310100.0,,2118526.0,,1817207.0,,301319.0,,,,542.0,,2479.0,,969.0,,1555.0,,187.0,,,,,,, +NC,North Carolina,202105,N,P,N,22185.0,,0.0,,22185.0,,25196.0,,2024.0,,27220.0,,1313896.0,,2132099.0,,1830057.0,,302042.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,202105,N,U,Y,22185.0,,0.0,,22185.0,,25196.0,,2024.0,,27220.0,,1313896.0,,2132099.0,,1830057.0,,302042.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,202106,N,P,N,23278.0,,0.0,,23278.0,,27948.0,,2247.0,,30195.0,,1318680.0,,2147696.0,,1845022.0,,302674.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,202106,N,U,Y,23278.0,,0.0,,23278.0,,27948.0,,2247.0,,30195.0,,1318680.0,,2147696.0,,1845022.0,,302674.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,202107,N,P,N,24052.0,,0.0,,24052.0,,27251.0,,2173.0,,29424.0,,1323301.0,,2163631.0,,1861008.0,,302623.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,202107,N,U,Y,24052.0,,0.0,,24052.0,,27251.0,,2173.0,,29424.0,,1323301.0,,2163631.0,,1861008.0,,302623.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,202108,N,P,N,26195.0,,0.0,,26195.0,,29650.0,,2551.0,,32201.0,,1329037.0,,2180093.0,,1877263.0,,302830.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,202108,N,U,Y,26195.0,,0.0,,26195.0,,29650.0,,2551.0,,32201.0,,1329037.0,,2180093.0,,1877263.0,,302830.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,202109,N,P,N,24230.0,,0.0,,24230.0,,28808.0,,2426.0,,31234.0,,1333958.0,,2195662.0,,1893273.0,,302389.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,202109,N,U,Y,24230.0,,0.0,,24230.0,,28808.0,,2426.0,,31234.0,,1333958.0,,2195662.0,,1893273.0,,302389.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,202110,N,P,N,24242.0,,0.0,,24242.0,,26904.0,,2120.0,,29024.0,,1337719.0,,2209356.0,,1907965.0,,301391.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,202110,N,U,Y,24242.0,,0.0,,24242.0,,26904.0,,2120.0,,29024.0,,1337719.0,,2209356.0,,1907965.0,,301391.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,202111,N,P,N,26647.0,,0.0,,26647.0,,27228.0,,2321.0,,29549.0,,1342916.0,,2225504.0,,1924745.0,,300759.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,202111,N,U,Y,26647.0,,0.0,,26647.0,,27228.0,,2321.0,,29549.0,,1342916.0,,2225504.0,,1924745.0,,300759.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,202112,N,P,N,26386.0,,0.0,,26386.0,,28188.0,,2581.0,,30769.0,,1348483.0,,2241778.0,,1942012.0,,299766.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,202112,N,U,Y,26386.0,,0.0,,26386.0,,28188.0,,2581.0,,30769.0,,1348483.0,,2241778.0,,1942012.0,,299766.0,,,,,,,,,,,,,,,,,,, +NC,North Carolina,202201,N,P,N,25403.0,,0.0,,25403.0,,30485.0,,2647.0,,33132.0,,1352280.0,,2256621.0,,1958497.0,,298124.0,,,,516.0,,2206.0,,1391.0,,1786.0,,448.0,,,,,,, +NC,North Carolina,202201,N,U,Y,25403.0,,0.0,,25403.0,,30485.0,,2647.0,,33132.0,,1352280.0,,2256621.0,,1958497.0,,298124.0,,,,516.0,,2206.0,,1391.0,,1786.0,,448.0,,,,,,, +NC,North Carolina,202202,N,P,N,22627.0,,0.0,,22627.0,,27656.0,,2164.0,,29820.0,,1354891.0,,2267769.0,,1970860.0,,296909.0,,,,647.0,,2572.0,,1480.0,,1687.0,,228.0,,,,,,, +NC,North Carolina,202202,N,U,Y,22627.0,,0.0,,22627.0,,27656.0,,2164.0,,29820.0,,1354891.0,,2267769.0,,1970860.0,,296909.0,,,,647.0,,2572.0,,1480.0,,1687.0,,228.0,,,,,,, +NC,North Carolina,202203,N,P,N,24693.0,,0.0,,24693.0,,29327.0,,2080.0,,31407.0,,1358455.0,,2278626.0,,1982691.0,,295935.0,,,,738.0,,3065.0,,1845.0,,1678.0,,242.0,,,,,,, +NC,North Carolina,202203,N,U,Y,24693.0,,0.0,,24693.0,,29327.0,,2080.0,,31407.0,,1358455.0,,2278626.0,,1982691.0,,295935.0,,,,738.0,,3065.0,,1845.0,,1678.0,,242.0,,,,,,, +NC,North Carolina,202204,N,P,N,22445.0,,0.0,,22445.0,,24781.0,,1689.0,,26470.0,,1360560.0,,2288477.0,,1993469.0,,295008.0,,,,683.0,,2726.0,,1896.0,,1525.0,,409.0,,,,,,, +NC,North Carolina,202204,N,U,Y,22445.0,,0.0,,22445.0,,24781.0,,1689.0,,26470.0,,1360560.0,,2288477.0,,1993469.0,,295008.0,,,,683.0,,2726.0,,1896.0,,1525.0,,409.0,,,,,,, +NC,North Carolina,202205,N,P,N,23133.0,,0.0,,23133.0,,26580.0,,2006.0,,28586.0,,1363371.0,,2300121.0,,2005914.0,,294207.0,,,,181.0,,1040.0,,656.0,,1312.0,,749.0,,,,,,, +NC,North Carolina,202205,N,U,Y,23133.0,,0.0,,23133.0,,26580.0,,2006.0,,28586.0,,1363371.0,,2300121.0,,2005914.0,,294207.0,,,,181.0,,1040.0,,656.0,,1312.0,,749.0,,,,,,, +NC,North Carolina,202206,N,P,N,26586.0,,0.0,,26586.0,,29987.0,,2082.0,,32069.0,,1367175.0,,2313358.0,,2019146.0,,294212.0,,,,165.0,,1262.0,,694.0,,1551.0,,432.0,,,,,,, +NC,North Carolina,202206,N,U,Y,26586.0,,0.0,,26586.0,,29987.0,,2082.0,,32069.0,,1367175.0,,2313358.0,,2019146.0,,294212.0,,,,165.0,,1262.0,,694.0,,1551.0,,432.0,,,,,,, +NC,North Carolina,202207,N,P,N,26806.0,,0.0,,26806.0,,30746.0,,2179.0,,32925.0,,1371676.0,,2327362.0,,2033359.0,,294003.0,,,,174.0,,2474.0,,1590.0,,2550.0,,286.0,,,,,,, +NC,North Carolina,202207,N,U,Y,26806.0,,0.0,,26806.0,,30746.0,,2179.0,,32925.0,,1371676.0,,2327362.0,,2033359.0,,294003.0,,,,174.0,,2474.0,,1590.0,,2550.0,,286.0,,,,,,, +NC,North Carolina,202208,N,P,N,29339.0,,0.0,,29339.0,,36615.0,,2601.0,,39216.0,,1378021.0,,2343905.0,,2049065.0,,294840.0,,,,225.0,,1301.0,,1020.0,,1447.0,,207.0,,,,,,, +NC,North Carolina,202208,N,U,Y,29339.0,,0.0,,29339.0,,36615.0,,2601.0,,39216.0,,1378021.0,,2343905.0,,2049065.0,,294840.0,,,,225.0,,1301.0,,1020.0,,1447.0,,207.0,,,,,,, +NC,North Carolina,202209,N,P,N,26866.0,,0.0,,26866.0,,34289.0,,2470.0,,36759.0,,1382236.0,,2357481.0,,2061990.0,,295491.0,,,,156.0,,882.0,,1054.0,,1837.0,,229.0,,,,,,, +NC,North Carolina,202209,N,U,Y,26866.0,,0.0,,26866.0,,34289.0,,2470.0,,36759.0,,1382236.0,,2357481.0,,2061990.0,,295491.0,,,,156.0,,882.0,,1054.0,,1837.0,,229.0,,,,,,, +NC,North Carolina,202210,N,P,N,26157.0,,0.0,,26157.0,,32910.0,,2424.0,,35334.0,,1385758.0,,2370712.0,,2074274.0,,296438.0,,,,133.0,,845.0,,844.0,,1707.0,,402.0,,,,,,, +NC,North Carolina,202210,N,U,Y,26157.0,,0.0,,26157.0,,32910.0,,2424.0,,35334.0,,1385758.0,,2370712.0,,2074274.0,,296438.0,,,,133.0,,845.0,,844.0,,1707.0,,402.0,,,,,,, +NC,North Carolina,202211,N,P,N,28995.0,,0.0,,28995.0,,33766.0,,2526.0,,36292.0,,1391222.0,,2387289.0,,2089376.0,,297913.0,,,,102.0,,730.0,,708.0,,1472.0,,221.0,,,,,,, +NC,North Carolina,202211,N,U,Y,28995.0,,0.0,,28995.0,,33766.0,,2526.0,,36292.0,,1391222.0,,2387289.0,,2089376.0,,297913.0,,,,102.0,,730.0,,708.0,,1472.0,,221.0,,,,,,, +NC,North Carolina,202212,N,P,N,27687.0,,0.0,,27687.0,,34406.0,,2984.0,,37390.0,,1396747.0,,2401986.0,,2102987.0,,298999.0,,,,97.0,,612.0,,838.0,,1779.0,,198.0,,,,,,, +NC,North Carolina,202212,N,U,Y,27687.0,,0.0,,27687.0,,34406.0,,2984.0,,37390.0,,1396747.0,,2401986.0,,2102987.0,,298999.0,,,,97.0,,612.0,,838.0,,1779.0,,198.0,,,,,,, +NC,North Carolina,202301,N,P,N,30119.0,,0.0,,30119.0,,39089.0,,3367.0,,42456.0,,1401747.0,,2417024.0,,2116889.0,,300135.0,,,,150.0,,816.0,,1029.0,,1477.0,,262.0,,,,,,, +NC,North Carolina,202301,N,U,Y,30119.0,,0.0,,30119.0,,39089.0,,3367.0,,42456.0,,1401747.0,,2417024.0,,2116889.0,,300135.0,,,,150.0,,816.0,,1029.0,,1477.0,,262.0,,,,,,, +NC,North Carolina,202302,N,P,N,23649.0,,0.0,,23649.0,,32165.0,,2514.0,,34679.0,,1403866.0,,2427234.0,,2127133.0,,300101.0,,,,146.0,,927.0,,726.0,,1145.0,,284.0,,,,,,, +NC,North Carolina,202302,N,U,Y,23649.0,,0.0,,23649.0,,32165.0,,2514.0,,34679.0,,1403866.0,,2427234.0,,2127133.0,,300101.0,,,,146.0,,927.0,,726.0,,1145.0,,284.0,,,,,,, +NC,North Carolina,202303,N,P,N,27031.0,,0.0,,27031.0,,34659.0,,2689.0,,37348.0,,1406831.0,,2437862.0,,2137561.0,,300301.0,,,,200.0,,1018.0,,678.0,,1309.0,,241.0,,22473.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.01,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NC,North Carolina,202303,N,U,Y,27031.0,,0.0,,27031.0,,34659.0,,2689.0,,37348.0,,1406831.0,,2437862.0,,2137561.0,,300301.0,,,,200.0,,1018.0,,678.0,,1309.0,,241.0,,22473.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.01,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NC,North Carolina,202304,N,P,N,23355.0,,0.0,,23355.0,,28643.0,,2125.0,,30768.0,,1409308.0,,2447186.0,,2142263.0,,304923.0,,,,140.0,,880.0,,538.0,,1093.0,,120.0,,19018.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.01,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NC,North Carolina,202304,N,U,Y,23355.0,,0.0,,23355.0,,28643.0,,2125.0,,30768.0,,1409308.0,,2447186.0,,2142263.0,,304923.0,,,,140.0,,880.0,,538.0,,1093.0,,120.0,,19018.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.01,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NC,North Carolina,202305,N,P,N,26677.0,,0.0,,26677.0,,32881.0,,2651.0,,35532.0,,1413809.0,,2459416.0,,2152456.0,,306960.0,,,,151.0,,766.0,,775.0,,1258.0,,163.0,,21308.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.01,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NC,North Carolina,202305,N,U,Y,26677.0,,0.0,,26677.0,,32881.0,,2651.0,,35532.0,,1413809.0,,2459416.0,,2152456.0,,306960.0,,,,151.0,,766.0,,775.0,,1258.0,,163.0,,21308.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.01,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NC,North Carolina,202306,N,P,N,25447.0,,0.0,,25447.0,,33295.0,,2822.0,,36117.0,,1395533.0,,2410507.0,,2101920.0,,308587.0,,,,183.0,,855.0,,616.0,,1341.0,,186.0,,20155.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.002,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NC,North Carolina,202306,N,U,Y,25447.0,,0.0,,25447.0,,33295.0,,2822.0,,36117.0,,1395533.0,,2410507.0,,2101920.0,,308587.0,,,,183.0,,855.0,,616.0,,1341.0,,186.0,,20155.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.002,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NC,North Carolina,202307,N,P,N,25910.0,,0.0,,25910.0,,33147.0,,2673.0,,35820.0,,1388873.0,,2392688.0,,2081414.0,,311274.0,,,,196.0,,886.0,,705.0,,1339.0,,143.0,,20238.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.005,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NC,North Carolina,202307,N,U,Y,25910.0,,0.0,,25910.0,,33147.0,,2673.0,,35820.0,,1388873.0,,2392688.0,,2081414.0,,311274.0,,,,196.0,,886.0,,705.0,,1339.0,,143.0,,20238.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.005,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NC,North Carolina,202308,N,P,N,29185.0,,0.0,,29185.0,,39189.0,,3472.0,,42661.0,,1385349.0,,2380800.0,,2066472.0,,314328.0,,,,258.0,,1171.0,,952.0,,1443.0,,167.0,,22894.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.006,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NC,North Carolina,202308,N,U,Y,29185.0,,0.0,,29185.0,,39189.0,,3472.0,,42661.0,,1385349.0,,2380800.0,,2066472.0,,314328.0,,,,258.0,,1171.0,,952.0,,1443.0,,167.0,,22894.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.006,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NC,North Carolina,202309,N,P,N,26457.0,,0.0,,26457.0,,36559.0,,3310.0,,39869.0,,1379978.0,,2365169.0,,2047795.0,,317374.0,,,,188.0,,799.0,,828.0,,1618.0,,195.0,,21412.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.016,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NC,North Carolina,202309,N,U,Y,26457.0,,0.0,,26457.0,,36559.0,,3310.0,,39869.0,,1379978.0,,2365169.0,,2047795.0,,317374.0,,,,188.0,,799.0,,828.0,,1618.0,,195.0,,21412.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.016,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NC,North Carolina,202310,N,P,N,28503.0,,0.0,,28503.0,,40362.0,,3524.0,,43886.0,,1376203.0,,2352785.0,,2032410.0,,320375.0,,,,216.0,Determinations conducted in less than 24 hours are reported under the 1-7 days category,822.0,Determinations conducted in less than 24 hours are reported under the 1-7 days category,720.0,,1941.0,,202.0,,23054.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.008,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NC,North Carolina,202310,N,U,Y,28503.0,,0.0,,28503.0,,40362.0,,3524.0,,43886.0,,1376203.0,,2352785.0,,2032410.0,,320375.0,,,,216.0,Determinations conducted in less than 24 hours are reported under the 1-7 days category,822.0,Determinations conducted in less than 24 hours are reported under the 1-7 days category,715.0,,1925.0,,202.0,,23054.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.008,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NC,North Carolina,202311,N,P,N,30574.0,,0.0,,30574.0,,39417.0,,3879.0,,43296.0,,1372542.0,,2338599.0,,2014562.0,,324037.0,,,,118.0,Determinations conducted in less than 24 hours are reported under the 1-7 days category,602.0,Determinations conducted in less than 24 hours are reported under the 1-7 days category,682.0,,1717.0,,126.0,,23461.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,1.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.028,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NC,North Carolina,202311,N,U,Y,30574.0,,0.0,,30574.0,,39417.0,,3879.0,,43296.0,,1372542.0,,2338599.0,,2014562.0,,324037.0,,,,118.0,Determinations conducted in less than 24 hours are reported under the 1-7 days category,602.0,Determinations conducted in less than 24 hours are reported under the 1-7 days category,682.0,,1717.0,,126.0,,23461.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,1.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.028,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NC,North Carolina,202312,Y,P,N,39015.0,,0.0,,39015.0,,53602.0,,4508.0,,58110.0,,1372290.0,,2655404.0,,2327223.0,,328181.0,,,,767.0,Determinations conducted in less than 24 hours are reported under the 1-7 days category,1921.0,Determinations conducted in less than 24 hours are reported under the 1-7 days category,2296.0,,2324.0,,204.0,,25099.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.015,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NC,North Carolina,202312,Y,U,Y,39015.0,,0.0,,39015.0,,53602.0,,4508.0,,58110.0,,1372290.0,,2655404.0,,2327223.0,,328181.0,,,,767.0,Determinations conducted in less than 24 hours are reported under the 1-7 days category,1921.0,Determinations conducted in less than 24 hours are reported under the 1-7 days category,2296.0,,2324.0,,204.0,,25099.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.015,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NC,North Carolina,202401,Y,P,N,40678.0,,0.0,,40678.0,,73709.0,,5505.0,,79214.0,,1379157.0,,2681619.0,,2345550.0,,336069.0,,,,612.0,,1677.0,,2631.0,,3870.0,,532.0,,35413.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,1.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.067,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NC,North Carolina,202401,Y,U,Y,40678.0,,0.0,,40678.0,,73709.0,,5505.0,,79214.0,,1379157.0,,2681619.0,,2345550.0,,336069.0,,,,612.0,,1677.0,,2631.0,,3870.0,,532.0,,35413.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,1.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.067,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NC,North Carolina,202402,Y,P,N,32358.0,,0.0,,32358.0,,65906.0,,4803.0,,70709.0,,1383446.0,,2698210.0,,2357133.0,,341077.0,,,,637.0,,1840.0,,2512.0,,2823.0,,938.0,,31029.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.012,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NC,North Carolina,202402,Y,U,Y,32358.0,,0.0,,32358.0,,63472.0,,4719.0,,68191.0,,1383446.0,,2698210.0,,2357133.0,,341077.0,,,,637.0,,1840.0,,2512.0,,2823.0,,938.0,,31029.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.012,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NC,North Carolina,202403,Y,P,N,30823.0,,0.0,,30823.0,,54157.0,,3910.0,,58067.0,,1388071.0,,2713561.0,,2367915.0,,345646.0,,,,578.0,,1837.0,,1802.0,,2629.0,,1117.0,,28005.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.008,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NC,North Carolina,202403,Y,U,Y,30823.0,,0.0,,30823.0,,50633.0,,3740.0,,54373.0,,1388071.0,,2713561.0,,2367915.0,,345646.0,,,,578.0,,1837.0,,1802.0,,2629.0,,1117.0,,28005.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.008,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NC,North Carolina,202404,Y,P,N,31728.0,,0.0,,31728.0,,55255.0,,3930.0,,59185.0,,1392187.0,,2731391.0,,2385695.0,,345696.0,,,,662.0,,2358.0,,2266.0,,2507.0,,1232.0,,28195.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.005,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NC,North Carolina,202404,Y,U,Y,31728.0,,0.0,,31728.0,,51342.0,,3636.0,,54978.0,,1392187.0,,2731391.0,,2385695.0,,345696.0,,,,662.0,,2358.0,,2266.0,,2507.0,,1232.0,,28195.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.005,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NC,North Carolina,202405,Y,P,N,30299.0,,0.0,,30299.0,,51697.0,,3606.0,,55303.0,,1395554.0,,2739061.0,,2394062.0,,344999.0,,,,739.0,,2540.0,,1926.0,,2238.0,,769.0,,24983.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.001,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NC,North Carolina,202405,Y,U,Y,30299.0,,0.0,,30299.0,,48382.0,,3409.0,,51791.0,,1395554.0,,2739061.0,,2394062.0,,344999.0,,,,739.0,,2540.0,,1926.0,,2238.0,,769.0,,24983.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.001,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NC,North Carolina,202406,Y,P,N,29332.0,,0.0,,29332.0,,46928.0,,3178.0,,50106.0,,1391594.0,,2718415.0,,2375065.0,,343350.0,,,,835.0,,2644.0,,1672.0,,2255.0,,342.0,,23150.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.003,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NC,North Carolina,202406,Y,U,Y,29332.0,,0.0,,29332.0,,44207.0,,2991.0,,47198.0,,1381887.0,,2739500.0,,2394470.0,,345030.0,,,,835.0,,2644.0,,1672.0,,2255.0,,342.0,,23150.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.003,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NC,North Carolina,202407,Y,P,N,32218.0,,0.0,,32218.0,,51657.0,,3347.0,,55004.0,,1396253.0,,2731810.0,,2388630.0,,343180.0,,1335557.0,,794.0,,2946.0,,2163.0,,2548.0,,284.0,,24382.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.005,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NC,North Carolina,202407,Y,U,Y,32218.0,,0.0,,32218.0,,48760.0,,3133.0,,51893.0,,1388317.0,,2745218.0,,2400807.0,,344411.0,,1356901.0,,794.0,,2946.0,,2163.0,,2548.0,,284.0,,24382.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.005,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NC,North Carolina,202408,Y,P,N,33460.0,,0.0,,33460.0,,53653.0,,3767.0,,57420.0,,1402160.0,,2746597.0,,2403693.0,,342904.0,,1344437.0,,645.0,,3406.0,,2337.0,,2705.0,,223.0,,24468.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.005,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NC,North Carolina,202408,Y,U,Y,33460.0,,0.0,,33460.0,,50774.0,,3531.0,,54305.0,,1403480.0,,2765993.0,,2422122.0,,343871.0,,1362513.0,,645.0,,3406.0,,2337.0,,2705.0,,223.0,,24468.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.005,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NC,North Carolina,202409,Y,P,N,30407.0,,0.0,,30407.0,,49681.0,,3261.0,,52942.0,,1407870.0,,2761787.0,,2418780.0,,343007.0,,1353917.0,,658.0,,2815.0,,2229.0,,2855.0,,231.0,,22084.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.005,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NC,North Carolina,202409,Y,U,Y,30407.0,,0.0,,30407.0,,47140.0,,3043.0,,50183.0,,1408234.0,,2779248.0,,2435363.0,,343885.0,,1371014.0,,658.0,,2815.0,,2229.0,,2855.0,,231.0,,22084.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.005,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NC,North Carolina,202410,Y,P,N,32746.0,,0.0,,32746.0,,53981.0,,3783.0,,57764.0,,1413500.0,,2776584.0,,2433285.0,,343299.0,,1363084.0,,843.0,,3167.0,,2220.0,,2686.0,,344.0,,23583.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.005,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NC,North Carolina,202410,Y,U,Y,32746.0,,0.0,,32746.0,,51270.0,,3574.0,,54844.0,,1412808.0,,2790607.0,,2446590.0,,344017.0,,1377799.0,,843.0,,3167.0,,2220.0,,2686.0,,344.0,,23583.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.005,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NC,North Carolina,202411,Y,P,N,32114.0,,0.0,,32114.0,,56514.0,,4033.0,,60547.0,,1417671.0,,2795514.0,,2451104.0,,344410.0,,1377843.0,,1032.0,,4828.0,,3448.0,,4478.0,,402.0,,19192.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.006,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NC,North Carolina,202411,Y,U,Y,32114.0,,0.0,,32114.0,,44430.0,,3145.0,,47575.0,,1418526.0,,2814193.0,,2468712.0,,345481.0,,1395667.0,,1032.0,,4828.0,,3448.0,,4478.0,,402.0,,19192.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.006,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NC,North Carolina,202412,Y,P,N,33299.0,,0.0,,33299.0,,62045.0,,4634.0,,66679.0,,1422160.0,,2815466.0,,2469712.0,,345754.0,,1393306.0,,1899.0,,5976.0,,5976.0,,8319.0,,618.0,,20223.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.005,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NC,North Carolina,202412,Y,U,Y,33299.0,,0.0,,33299.0,,47282.0,,3277.0,,50559.0,,1425297.0,,2845108.0,,2497522.0,,347586.0,,1419811.0,,1899.0,,5976.0,,5976.0,,8319.0,,618.0,,20223.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.005,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NC,North Carolina,202501,Y,P,N,38184.0,,0.0,,38184.0,,54172.0,,3536.0,,57708.0,,1430577.0,,2843436.0,,2496078.0,,347358.0,,1412859.0,,634.0,,2544.0,,2378.0,,2896.0,,302.0,,27263.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.005,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NC,North Carolina,202501,Y,U,Y,38184.0,,0.0,,38184.0,,54172.0,,3536.0,,57708.0,,1430361.0,,2863313.0,,2514937.0,,348376.0,,1432952.0,,634.0,,2544.0,,2378.0,,2896.0,,302.0,,27263.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.005,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NC,North Carolina,202502,Y,P,N,28955.0,,0.0,,28955.0,,47308.0,,2863.0,,50171.0,,1433667.0,,2850728.0,,2503666.0,,347062.0,,1417061.0,,696.0,,2280.0,,1967.0,,2295.0,,275.0,,23176.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.005,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NC,North Carolina,202502,Y,U,Y,28955.0,,0.0,,28955.0,,47308.0,,2863.0,,50171.0,,1433011.0,,2863257.0,,2515649.0,,347608.0,,1430246.0,,696.0,,2280.0,,1967.0,,2295.0,,275.0,,23176.0,,0.0,,0.005, +NC,North Carolina,202503,Y,P,N,29409.0,,0.0,,29409.0,,46655.0,,2646.0,,49301.0,,1435148.0,,2853201.0,,2506485.0,,346716.0,,1418053.0,,640.0,,2494.0,,1595.0,,2375.0,,287.0,,24286.0,,0.0,,0.006, +NC,North Carolina,202503,Y,U,Y,29409.0,,0.0,,29409.0,,46655.0,,2646.0,,49301.0,,1435079.0,,2869860.0,,2522468.0,,347392.0,,1434781.0,,640.0,,2494.0,,1595.0,,2375.0,,287.0,,24286.0,,0.0,,0.006, +NC,North Carolina,202504,Y,P,N,30425.0,,0.0,,30425.0,,45205.0,,2924.0,,48129.0,,1437951.0,,2864717.0,,2518698.0,,346019.0,,1426766.0,,756.0,,2695.0,,1589.0,,1815.0,,168.0,,23108.0,,0.0,,0.007, +NC,North Carolina,202504,Y,U,Y,30425.0,,0.0,,30425.0,,45205.0,,2924.0,,48129.0,,1436790.0,,2877267.0,,2530876.0,,346391.0,,1440477.0,,756.0,,2695.0,,1589.0,,1815.0,,168.0,,23108.0,,0.0,,0.007, +NC,North Carolina,202505,Y,P,N,29210.0,,0.0,,29210.0,,45053.0,,3162.0,,48215.0,,1439731.0,,2869326.0,,2522597.0,,346729.0,,1429595.0,,811.0,,2504.0,,1859.0,,1936.0,,138.0,,21360.0,,0.0,,0.004, +NC,North Carolina,202505,Y,U,Y,29210.0,,0.0,,29210.0,,45053.0,,3162.0,,48215.0,,1438227.0,,2881447.0,,2534269.0,,347178.0,,1443220.0,,811.0,,2504.0,,1859.0,,1936.0,,138.0,,21360.0,,0.0,,0.004, +NC,North Carolina,202506,Y,P,N,27810.0,,0.0,,27810.0,,43920.0,,3052.0,,46972.0,,1441384.0,,2872039.0,,2525417.0,,346622.0,,1430655.0,,737.0,,2643.0,,1680.0,,2224.0,,197.0,,20560.0,,0.0,,0.005, +NC,North Carolina,202506,Y,U,Y,27810.0,,0.0,,27810.0,,43920.0,,3052.0,,46972.0,,1440033.0,,2883870.0,,2536796.0,,347074.0,,1443837.0,,737.0,,2643.0,,1680.0,,2224.0,,197.0,,20560.0,,0.0,,0.005, +NC,North Carolina,202507,Y,P,N,31277.0,,0.0,,31277.0,,44946.0,,3163.0,,48109.0,,1443064.0,,2873987.0,,2527715.0,,346272.0,,1430923.0,,548.0,,2166.0,,2026.0,,2216.0,,177.0,,22976.0,,0.0,,0.006, +NC,North Carolina,202507,Y,U,Y,31277.0,,0.0,,31277.0,,44946.0,,3163.0,,48109.0,,1442064.0,,2887045.0,,2540321.0,,346724.0,,1444981.0,,548.0,,2166.0,,2026.0,,2216.0,,177.0,,22976.0,,0.0,,0.006, +NC,North Carolina,202508,Y,P,N,29581.0,,0.0,,29581.0,,42532.0,,2985.0,,45517.0,,1439060.0,,2869007.0,,2522232.0,,346775.0,,1429947.0,,476.0,,1981.0,,1987.0,,3098.0,,197.0,,22038.0,,0.0,,0.005, +NC,North Carolina,202508,Y,U,Y,29581.0,,0.0,,29581.0,,42532.0,,2985.0,,45517.0,,1439069.0,,2885483.0,,2537907.0,,347576.0,,1446414.0,,476.0,,1981.0,,1987.0,,3098.0,,197.0,,22038.0,,0.0,,0.005, +NC,North Carolina,202509,Y,P,N,30522.0,,0.0,,30522.0,,43507.0,,3156.0,,46663.0,,1436205.0,,2868323.0,,2521288.0,,347035.0,,1432118.0,,494.0,,1904.0,,2185.0,,4229.0,,323.0,,21988.0,,0.0,,0.005, +NC,North Carolina,202509,Y,U,Y,30522.0,,0.0,,30522.0,,43507.0,,3156.0,,46663.0,,1435760.0,,2883258.0,,2535360.0,,347898.0,,1447498.0,,494.0,,1904.0,,2185.0,,4229.0,,323.0,,21988.0,,0.0,,0.005, +NC,North Carolina,202510,Y,P,N,29876.0,,0.0,,29876.0,,43280.0,,3437.0,,46717.0,,1432431.0,,2865323.0,,2518541.0,,346782.0,,1432892.0,,477.0,,1878.0,,2091.0,,4354.0,,376.0,,22314.0,,0.0,,0.018, +ND,North Dakota,201309,N,U,Y,,,,,,,,,,,,,,,69980.0,,,,,,,,,,,,,,,,,,,,,,, +ND,North Dakota,201706,Y,P,N,1840.0,,0.0,,1840.0,,2030.0,,62.0,,2092.0,,43991.0,,93804.0,,91813.0,,1991.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,201706,Y,U,Y,1840.0,,0.0,,1840.0,,2030.0,,62.0,,2092.0,,43991.0,,93804.0,,91813.0,,1991.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,201707,Y,P,N,1753.0,,0.0,,1753.0,,1851.0,,55.0,,1906.0,,43670.0,,93148.0,,91188.0,,1960.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,201707,Y,U,Y,1753.0,,0.0,,1753.0,,1851.0,,55.0,,1906.0,,43670.0,,93148.0,,91188.0,,1960.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,201708,Y,P,N,2201.0,,0.0,,2201.0,,2380.0,,50.0,,2430.0,,43789.0,,93407.0,,91467.0,,1940.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,201708,Y,U,Y,2201.0,,0.0,,2201.0,,2380.0,,50.0,,2430.0,,43789.0,,93407.0,,91467.0,,1940.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,201709,Y,P,N,1931.0,,0.0,,1931.0,,2286.0,,64.0,,2350.0,,43853.0,,93484.0,,91533.0,,1951.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,201709,Y,U,Y,1931.0,,0.0,,1931.0,,2286.0,,64.0,,2350.0,,43853.0,,93484.0,,91533.0,,1951.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,201710,Y,P,N,1949.0,,0.0,,1949.0,,2126.0,,58.0,,2184.0,,43973.0,,93557.0,,91591.0,,1966.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,201710,Y,U,Y,1949.0,,0.0,,1949.0,,2126.0,,58.0,,2184.0,,43973.0,,93557.0,,91591.0,,1966.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,201711,Y,P,N,2983.0,,0.0,,2983.0,,2407.0,,67.0,,2474.0,,43991.0,,93696.0,,91712.0,,1984.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,201711,Y,U,Y,2983.0,,0.0,,2983.0,,2407.0,,67.0,,2474.0,,43991.0,,93696.0,,91712.0,,1984.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,201712,Y,P,N,2776.0,,0.0,,2776.0,,2421.0,,70.0,,2491.0,,44054.0,,93983.0,,91975.0,,2008.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,201712,Y,U,Y,2776.0,,0.0,,2776.0,,2421.0,,70.0,,2491.0,,44054.0,,93983.0,,91975.0,,2008.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,201801,Y,P,N,2253.0,,0.0,,2253.0,,2358.0,,78.0,,2436.0,,44227.0,,94311.0,,92255.0,,2056.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,201801,Y,U,Y,2253.0,,0.0,,2253.0,,2358.0,,78.0,,2436.0,,44227.0,,94311.0,,92255.0,,2056.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,201802,Y,P,N,2112.0,,0.0,,2112.0,,2078.0,,64.0,,2142.0,,44822.0,,95950.0,,93872.0,,2078.0,,,,163.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",919.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1745.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",675.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",371.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +ND,North Dakota,201802,Y,U,Y,2112.0,,0.0,,2112.0,,2078.0,,64.0,,2142.0,,44822.0,,95950.0,,93872.0,,2078.0,,,,163.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",919.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1745.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",675.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",371.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +ND,North Dakota,201803,Y,P,N,1912.0,,0.0,,1912.0,,2061.0,,39.0,,2100.0,,44137.0,,94498.0,,92411.0,,2087.0,,,,174.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",964.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1572.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",658.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",747.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +ND,North Dakota,201803,Y,U,Y,1912.0,,0.0,,1912.0,,2061.0,,39.0,,2100.0,,44137.0,,94498.0,,92411.0,,2087.0,,,,174.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",964.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1572.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",658.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",747.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +ND,North Dakota,201804,Y,P,N,1940.0,,0.0,,1940.0,,2101.0,,51.0,,2152.0,,44445.0,,94871.0,,92804.0,,2067.0,,,,191.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",944.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1799.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",697.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",381.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +ND,North Dakota,201804,Y,U,Y,1940.0,,0.0,,1940.0,,2101.0,,51.0,,2152.0,,44445.0,,94871.0,,92804.0,,2067.0,,,,191.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",944.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1799.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",697.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",381.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +ND,North Dakota,201805,Y,P,N,2128.0,,0.0,,2128.0,,1910.0,,44.0,,1954.0,,45163.0,,96276.0,,94204.0,,2072.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,201805,Y,U,Y,2128.0,,0.0,,2128.0,,1910.0,,44.0,,1954.0,,45163.0,,96276.0,,94204.0,,2072.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,201806,Y,P,N,1743.0,,0.0,,1743.0,,1838.0,,39.0,,1877.0,,44299.0,,94285.0,,92233.0,,2052.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,201806,Y,U,Y,1743.0,,0.0,,1743.0,,1838.0,,39.0,,1877.0,,44299.0,,94285.0,,92233.0,,2052.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,201807,Y,P,N,1834.0,,0.0,,1834.0,,1788.0,,55.0,,1843.0,,44134.0,,93970.0,,91882.0,,2088.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,201807,Y,U,Y,1834.0,,0.0,,1834.0,,1788.0,,55.0,,1843.0,,44134.0,,93970.0,,91882.0,,2088.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,201808,Y,P,N,2451.0,,0.0,,2451.0,,2071.0,,55.0,,2126.0,,44635.0,,95077.0,,92996.0,,2081.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,201808,Y,U,Y,2451.0,,0.0,,2451.0,,2071.0,,55.0,,2126.0,,44635.0,,95077.0,,92996.0,,2081.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,201809,Y,P,N,1745.0,,0.0,,1745.0,,1839.0,,45.0,,1884.0,,43661.0,,92922.0,,90825.0,,2097.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,201809,Y,U,Y,1745.0,,0.0,,1745.0,,1839.0,,45.0,,1884.0,,43661.0,,92922.0,,90825.0,,2097.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,201810,Y,P,N,2186.0,,0.0,,2186.0,,2175.0,,62.0,,2237.0,,43542.0,,92526.0,,90424.0,,2102.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,201810,Y,U,Y,2186.0,,0.0,,2186.0,,2175.0,,62.0,,2237.0,,43542.0,,92526.0,,90424.0,,2102.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,201811,Y,P,N,2773.0,,0.0,,2773.0,,2098.0,,81.0,,2179.0,,43069.0,,91378.0,,89250.0,,2128.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,201811,Y,U,Y,2773.0,,0.0,,2773.0,,2098.0,,81.0,,2179.0,,43069.0,,91378.0,,89250.0,,2128.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,201812,Y,P,N,2565.0,,0.0,,2565.0,,2085.0,,49.0,,2134.0,,43094.0,,91072.0,,88893.0,,2179.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,201812,Y,U,Y,2565.0,,0.0,,2565.0,,2085.0,,49.0,,2134.0,,43094.0,,91072.0,,88893.0,,2179.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,201901,Y,P,N,2187.0,,0.0,,2187.0,,2198.0,,64.0,,2262.0,,43113.0,,91060.0,,88885.0,,2175.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,201901,Y,U,Y,2187.0,,0.0,,2187.0,,2198.0,,64.0,,2262.0,,43113.0,,91060.0,,88885.0,,2175.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,201902,Y,P,N,1810.0,,0.0,,1810.0,,1791.0,,45.0,,1836.0,,43014.0,,90765.0,,88622.0,,2143.0,,,,167.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",724.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1605.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",642.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",524.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +ND,North Dakota,201902,Y,U,Y,1810.0,,0.0,,1810.0,,1791.0,,45.0,,1836.0,,43014.0,,90765.0,,88622.0,,2143.0,,,,167.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",724.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1605.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",642.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",524.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +ND,North Dakota,201903,Y,P,N,2721.0,,0.0,,2721.0,,1875.0,,36.0,,1911.0,,43254.0,,91995.0,,89842.0,,2153.0,,,,86.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",440.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2094.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",744.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",978.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +ND,North Dakota,201903,Y,U,Y,2721.0,,0.0,,2721.0,,1875.0,,36.0,,1911.0,,43254.0,,91995.0,,89842.0,,2153.0,,,,86.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",440.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2094.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",744.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",978.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +ND,North Dakota,201904,Y,P,N,2456.0,,0.0,,2456.0,,2429.0,,56.0,,2485.0,,42373.0,,90593.0,,88472.0,,2121.0,,,,171.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1328.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2551.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1330.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",923.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +ND,North Dakota,201904,Y,U,Y,2456.0,,0.0,,2456.0,,2429.0,,56.0,,2485.0,,42373.0,,90593.0,,88472.0,,2121.0,,,,171.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1328.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2551.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1330.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",923.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +ND,North Dakota,201905,Y,P,N,2243.0,,0.0,,2243.0,,2475.0,,66.0,,2541.0,,43111.0,,92207.0,,90121.0,,2086.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,201905,Y,U,Y,2243.0,,0.0,,2243.0,,2475.0,,66.0,,2541.0,,43111.0,,92207.0,,90121.0,,2086.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,201906,Y,P,N,1824.0,,0.0,,1824.0,,2046.0,,52.0,,2098.0,,42203.0,,90107.0,,88010.0,,2097.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,201906,Y,U,Y,1824.0,,0.0,,1824.0,,2046.0,,52.0,,2098.0,,42203.0,,90107.0,,88010.0,,2097.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,201907,Y,P,N,2090.0,,0.0,,2090.0,,2312.0,,70.0,,2382.0,,42191.0,,89895.0,,87799.0,,2096.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,201907,Y,U,Y,2090.0,,0.0,,2090.0,,2312.0,,70.0,,2382.0,,42191.0,,89895.0,,87799.0,,2096.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,201908,Y,P,N,2254.0,,0.0,,2254.0,,2495.0,,83.0,,2578.0,,42251.0,,89842.0,,87711.0,,2131.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,201908,Y,U,Y,2254.0,,0.0,,2254.0,,2495.0,,83.0,,2578.0,,42251.0,,89842.0,,87711.0,,2131.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,201909,Y,P,N,2101.0,,0.0,,2101.0,,2322.0,,78.0,,2400.0,,42183.0,,89537.0,,87404.0,,2133.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,201909,Y,U,Y,2101.0,,0.0,,2101.0,,2322.0,,78.0,,2400.0,,42183.0,,89537.0,,87404.0,,2133.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,201910,Y,P,N,2524.0,,0.0,,2524.0,,2455.0,,66.0,,2521.0,,42921.0,,91269.0,,89138.0,,2131.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,201910,Y,U,Y,2524.0,,0.0,,2524.0,,2455.0,,66.0,,2521.0,,42921.0,,91269.0,,89138.0,,2131.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,201911,Y,P,N,2669.0,,0.0,,2669.0,,2488.0,,35.0,,2523.0,,42090.0,,89466.0,,87371.0,,2095.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,201911,Y,U,Y,2669.0,,0.0,,2669.0,,2488.0,,35.0,,2523.0,,42090.0,,89466.0,,87371.0,,2095.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,201912,Y,P,N,2821.0,,0.0,,2821.0,,2299.0,,87.0,,2386.0,,42063.0,,89370.0,,87341.0,,2029.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,201912,Y,U,Y,2821.0,,0.0,,2821.0,,2299.0,,87.0,,2386.0,,42063.0,,89370.0,,87341.0,,2029.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,202001,Y,P,N,2384.0,,0.0,,2384.0,,2579.0,,94.0,,2673.0,,42494.0,,89890.0,,87668.0,,2222.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,202001,Y,U,Y,2384.0,,0.0,,2384.0,,2579.0,,94.0,,2673.0,,42494.0,,89890.0,,87668.0,,2222.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,202002,Y,P,N,1912.0,,0.0,,1912.0,,2316.0,,98.0,,2414.0,,42563.0,,89991.0,,87760.0,,2231.0,,,,115.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",776.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2161.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",895.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",669.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +ND,North Dakota,202002,Y,U,Y,1912.0,,0.0,,1912.0,,2316.0,,98.0,,2414.0,,42563.0,,89991.0,,87760.0,,2231.0,,,,115.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",776.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2161.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",895.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",669.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +ND,North Dakota,202003,Y,P,N,2702.0,,0.0,,2702.0,,2280.0,,65.0,,2345.0,,43708.0,,91884.0,,89559.0,,2325.0,,,,176.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1106.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2502.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",918.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",538.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +ND,North Dakota,202003,Y,U,Y,2702.0,,0.0,,2702.0,,2280.0,,65.0,,2345.0,,43708.0,,91884.0,,89559.0,,2325.0,,,,176.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1106.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2502.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",918.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",538.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +ND,North Dakota,202004,Y,P,N,2428.0,,0.0,,2428.0,,2710.0,,75.0,,2785.0,,44044.0,,92690.0,,90377.0,,2313.0,,,,173.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1305.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3159.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1051.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",404.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +ND,North Dakota,202004,Y,U,Y,2428.0,,0.0,,2428.0,,2710.0,,75.0,,2785.0,,44044.0,,92690.0,,90377.0,,2313.0,,,,173.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1305.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3159.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1051.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",404.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +ND,North Dakota,202005,Y,P,N,2006.0,,0.0,,2006.0,,1849.0,,71.0,,1920.0,,45446.0,,95867.0,,93488.0,,2379.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,202005,Y,U,Y,2006.0,,0.0,,2006.0,,1849.0,,71.0,,1920.0,,45446.0,,95867.0,,93488.0,,2379.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,202006,Y,P,N,2115.0,,0.0,,2115.0,,1788.0,,51.0,,1839.0,,45832.0,,96757.0,,94369.0,,2388.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,202006,Y,U,Y,2115.0,,0.0,,2115.0,,1788.0,,51.0,,1839.0,,45832.0,,96757.0,,94369.0,,2388.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,202007,Y,P,N,2144.0,,0.0,,2144.0,,1927.0,,60.0,,1987.0,,46568.0,,98657.0,,96231.0,,2426.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,202007,Y,U,Y,2144.0,,0.0,,2144.0,,1927.0,,60.0,,1987.0,,46568.0,,98657.0,,96231.0,,2426.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,202008,Y,P,N,2833.0,,0.0,,2833.0,,2313.0,,54.0,,2367.0,,48334.0,,103212.0,,100713.0,,2499.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,202008,Y,U,Y,2833.0,,0.0,,2833.0,,2313.0,,54.0,,2367.0,,48334.0,,103212.0,,100713.0,,2499.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,202009,Y,P,N,2311.0,,0.0,,2311.0,,2552.0,,61.0,,2613.0,,47956.0,,102459.0,,99973.0,,2486.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,202009,Y,U,Y,2311.0,,0.0,,2311.0,,2552.0,,61.0,,2613.0,,47956.0,,102459.0,,99973.0,,2486.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,202010,Y,P,N,2193.0,,0.0,,2193.0,,2374.0,,66.0,,2440.0,,49509.0,,106177.0,,103639.0,,2538.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,202010,Y,U,Y,2193.0,,0.0,,2193.0,,2374.0,,66.0,,2440.0,,49509.0,,106177.0,,103639.0,,2538.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,202011,Y,P,N,2691.0,,0.0,,2691.0,,2112.0,,45.0,,2157.0,,49373.0,,106012.0,,103567.0,,2445.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,202011,Y,U,Y,2691.0,,0.0,,2691.0,,2112.0,,45.0,,2157.0,,49373.0,,106012.0,,103567.0,,2445.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,202012,Y,P,N,2538.0,,0.0,,2538.0,,2413.0,,55.0,,2468.0,,49835.0,,107199.0,,104772.0,,2427.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,202012,Y,U,Y,2538.0,,0.0,,2538.0,,2413.0,,55.0,,2468.0,,49835.0,,107199.0,,104772.0,,2427.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,202101,Y,P,N,1900.0,,0.0,,1900.0,,1940.0,,49.0,,1989.0,,49914.0,,107490.0,,105201.0,,2289.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,202101,Y,U,Y,1900.0,,0.0,,1900.0,,1940.0,,49.0,,1989.0,,49914.0,,107490.0,,105201.0,,2289.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,202102,Y,P,N,1767.0,,0.0,,1767.0,,1967.0,,35.0,,2002.0,,50376.0,,108342.0,,106090.0,,2252.0,,,,40.0,,292.0,,1308.0,,656.0,,767.0,,,,,,, +ND,North Dakota,202102,Y,U,Y,1767.0,,0.0,,1767.0,,1967.0,,35.0,,2002.0,,50376.0,,108342.0,,106090.0,,2252.0,,,,40.0,,292.0,,1308.0,,656.0,,767.0,,,,,,, +ND,North Dakota,202103,Y,P,N,2160.0,,0.0,,2160.0,,2221.0,,47.0,,2268.0,,51312.0,,110449.0,,108118.0,,2331.0,,,,106.0,,602.0,,1957.0,,900.0,,898.0,,,,,,, +ND,North Dakota,202103,Y,U,Y,2160.0,,0.0,,2160.0,,2221.0,,47.0,,2268.0,,51312.0,,110449.0,,108118.0,,2331.0,,,,106.0,,602.0,,1957.0,,900.0,,898.0,,,,,,, +ND,North Dakota,202104,Y,P,N,1978.0,,0.0,,1978.0,,1820.0,,35.0,,1855.0,,51727.0,,111087.0,,108750.0,,2337.0,,,,88.0,,645.0,,1751.0,,951.0,,580.0,,,,,,, +ND,North Dakota,202104,Y,U,Y,1978.0,,0.0,,1978.0,,1820.0,,35.0,,1855.0,,51727.0,,111087.0,,108750.0,,2337.0,,,,88.0,,645.0,,1751.0,,951.0,,580.0,,,,,,, +ND,North Dakota,202105,Y,P,N,1804.0,,0.0,,1804.0,,1555.0,,32.0,,1587.0,,51719.0,,111357.0,,109013.0,,2344.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,202105,Y,U,Y,1804.0,,0.0,,1804.0,,1555.0,,32.0,,1587.0,,51719.0,,111357.0,,109013.0,,2344.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,202106,Y,P,N,1911.0,,0.0,,1911.0,,1692.0,,50.0,,1742.0,,53060.0,,114242.0,,111752.0,,2490.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,202106,Y,U,Y,1911.0,,0.0,,1911.0,,1692.0,,50.0,,1742.0,,53060.0,,114242.0,,111752.0,,2490.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,202107,Y,P,N,1924.0,,0.0,,1924.0,,1949.0,,35.0,,1984.0,,52752.0,,113589.0,,111037.0,,2552.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,202107,Y,U,Y,1924.0,,0.0,,1924.0,,1949.0,,35.0,,1984.0,,52752.0,,113589.0,,111037.0,,2552.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,202108,Y,P,N,2149.0,,0.0,,2149.0,,1883.0,,45.0,,1928.0,,52913.0,,113810.0,,111203.0,,2607.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,202108,Y,U,Y,2149.0,,0.0,,2149.0,,1883.0,,45.0,,1928.0,,52913.0,,113810.0,,111203.0,,2607.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,202109,Y,P,N,1904.0,,0.0,,1904.0,,1827.0,,48.0,,1875.0,,53068.0,,114093.0,,111398.0,,2695.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,202109,Y,U,Y,1904.0,,0.0,,1904.0,,1827.0,,48.0,,1875.0,,53068.0,,114093.0,,111398.0,,2695.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,202110,Y,P,N,2048.0,,0.0,,2048.0,,1680.0,,45.0,,1725.0,,53330.0,,114324.0,,111552.0,,2772.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,202110,Y,U,Y,2048.0,,0.0,,2048.0,,1680.0,,45.0,,1725.0,,54033.0,,115983.0,,113146.0,,2837.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,202111,Y,P,N,2932.0,,0.0,,2932.0,,1620.0,,47.0,,1667.0,,53654.0,,114936.0,,112056.0,,2880.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,202111,Y,U,Y,2932.0,,0.0,,2932.0,,1620.0,,47.0,,1667.0,,54384.0,,117159.0,,114222.0,,2937.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,202112,Y,P,N,2931.0,,0.0,,2931.0,,1877.0,,43.0,,1920.0,,54158.0,,116809.0,,113848.0,,2961.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,202112,Y,U,Y,2931.0,,0.0,,2931.0,,1877.0,,43.0,,1920.0,,54684.0,,118168.0,,115165.0,,3003.0,,,,,,,,,,,,,,,,,,, +ND,North Dakota,202201,Y,P,N,2507.0,,0.0,,2507.0,,1683.0,,34.0,,1717.0,,55411.0,,120469.0,,117356.0,,3113.0,,,,61.0,,459.0,,1570.0,,1044.0,,676.0,,,,,,, +ND,North Dakota,202201,Y,U,Y,2507.0,,0.0,,2507.0,,1683.0,,34.0,,1717.0,,55411.0,,120469.0,,117356.0,,3113.0,,,,61.0,,459.0,,1570.0,,1044.0,,676.0,,,,,,, +ND,North Dakota,202202,Y,P,N,1868.0,,0.0,,1868.0,,1612.0,,32.0,,1644.0,,55426.0,,120621.0,,117477.0,,3144.0,,,,37.0,,228.0,,980.0,,722.0,,497.0,,,,,,, +ND,North Dakota,202202,Y,U,Y,1868.0,,0.0,,1868.0,,1612.0,,32.0,,1644.0,,55426.0,,120621.0,,117477.0,,3144.0,,,,37.0,,228.0,,980.0,,722.0,,497.0,,,,,,, +ND,North Dakota,202203,Y,P,N,2308.0,,0.0,,2308.0,,1943.0,,26.0,,1969.0,,55381.0,,120566.0,,117385.0,,3181.0,,,,71.0,,583.0,,1342.0,,678.0,,521.0,,,,,,, +ND,North Dakota,202203,Y,U,Y,2308.0,,0.0,,2308.0,,1943.0,,26.0,,1969.0,,55866.0,,121738.0,,118528.0,,3210.0,,,,71.0,,583.0,,1342.0,,678.0,,521.0,,,,,,, +ND,North Dakota,202204,Y,P,N,1885.0,,0.0,,1885.0,,1467.0,,33.0,,1500.0,,55661.0,,121234.0,,118025.0,,3209.0,,,,51.0,,454.0,,1320.0,,746.0,,310.0,,,,,,, +ND,North Dakota,202204,Y,U,Y,1885.0,,0.0,,1885.0,,1467.0,,33.0,,1500.0,,56227.0,,122573.0,,119327.0,,3246.0,,,,51.0,,416.0,,1170.0,,653.0,,245.0,,,,,,, +ND,North Dakota,202205,Y,P,N,1846.0,,0.0,,1846.0,,1476.0,,26.0,,1502.0,,56003.0,,122189.0,,118966.0,,3223.0,,,,48.0,,455.0,,1140.0,,769.0,,318.0,,,,,,, +ND,North Dakota,202205,Y,U,Y,1846.0,,0.0,,1846.0,,1476.0,,26.0,,1502.0,,56522.0,,123279.0,,120024.0,,3255.0,,,,48.0,,425.0,,988.0,,645.0,,249.0,,,,,,, +ND,North Dakota,202206,Y,P,N,2026.0,,0.0,,2026.0,,1577.0,,27.0,,1604.0,,56212.0,,122782.0,,119493.0,,3289.0,,,,72.0,,539.0,,1271.0,,879.0,,363.0,,,,,,, +ND,North Dakota,202206,Y,U,Y,2026.0,,0.0,,2026.0,,1577.0,,27.0,,1604.0,,56793.0,,124213.0,,120890.0,,3323.0,,,,64.0,,513.0,,1134.0,,753.0,,293.0,,,,,,, +ND,North Dakota,202207,Y,P,N,1878.0,,0.0,,1878.0,,1430.0,,35.0,,1465.0,,56518.0,,123776.0,,120401.0,,3375.0,,,,45.0,,392.0,,1210.0,,702.0,,330.0,,,,,,, +ND,North Dakota,202207,Y,U,Y,1878.0,,0.0,,1878.0,,1430.0,,35.0,,1465.0,,56518.0,,123776.0,,120401.0,,3375.0,,,,41.0,,371.0,,1041.0,,604.0,,282.0,,,,,,, +ND,North Dakota,202208,Y,P,N,2284.0,,0.0,,2284.0,,1655.0,,43.0,,1698.0,,56940.0,,125239.0,,121768.0,,3471.0,,,,50.0,,497.0,,1461.0,,963.0,,429.0,,,,,,, +ND,North Dakota,202208,Y,U,Y,2284.0,,0.0,,2284.0,,1655.0,,43.0,,1698.0,,57532.0,,126517.0,,123019.0,,3498.0,,,,44.0,,429.0,,1290.0,,794.0,,348.0,,,,,,, +ND,North Dakota,202209,Y,P,N,2131.0,,0.0,,2131.0,,1587.0,,37.0,,1624.0,,57339.0,,126291.0,,122801.0,,3490.0,,,,63.0,,436.0,,1540.0,,1061.0,,339.0,,,,,,, +ND,North Dakota,202209,Y,U,Y,2131.0,,0.0,,2131.0,,1587.0,,37.0,,1624.0,,57930.0,,127511.0,,123979.0,,3532.0,,,,61.0,,401.0,,1368.0,,880.0,,268.0,,,,,,, +ND,North Dakota,202210,Y,P,N,2077.0,,0.0,,2077.0,,1590.0,,47.0,,1637.0,,57673.0,,127169.0,,123598.0,,3571.0,,,,61.0,,425.0,,1503.0,,987.0,,361.0,,,,,,, +ND,North Dakota,202210,Y,U,Y,2077.0,,0.0,,2077.0,,1590.0,,47.0,,1637.0,,58178.0,,128344.0,,124733.0,,3611.0,,,,51.0,,382.0,,1326.0,,849.0,,300.0,,,,,,, +ND,North Dakota,202211,Y,P,N,2944.0,,0.0,,2944.0,,1560.0,,28.0,,1588.0,,57931.0,,128073.0,,124446.0,,3627.0,,,,25.0,,388.0,,1621.0,,1058.0,,351.0,,,,,,, +ND,North Dakota,202211,Y,U,Y,2944.0,,0.0,,2944.0,,1560.0,,28.0,,1588.0,,58504.0,,129422.0,,125749.0,,3673.0,,,,22.0,,342.0,,1409.0,,890.0,,280.0,,,,,,, +ND,North Dakota,202212,Y,P,N,2715.0,,0.0,,2715.0,,1510.0,,31.0,,1541.0,,58274.0,,129114.0,,125423.0,,3691.0,,,,12.0,,246.0,,1518.0,,1279.0,,518.0,,,,,,, +ND,North Dakota,202212,Y,U,Y,2715.0,,0.0,,2715.0,,1510.0,,31.0,,1541.0,,58910.0,,130665.0,,126934.0,,3731.0,,,,12.0,,227.0,,1306.0,,1082.0,,433.0,,,,,,, +ND,North Dakota,202301,Y,P,N,2333.0,,0.0,,2333.0,,1602.0,,40.0,,1642.0,,58667.0,,130353.0,,126614.0,,3739.0,,,,11.0,,258.0,,1147.0,,1382.0,,1422.0,,,,,,, +ND,North Dakota,202301,Y,U,Y,2333.0,,0.0,,2333.0,,1602.0,,40.0,,1642.0,,59304.0,,131872.0,,128079.0,,3793.0,,,,10.0,,240.0,,1011.0,,1158.0,,1159.0,,,,,,, +ND,North Dakota,202302,Y,P,N,1741.0,,0.0,,1741.0,,1307.0,,32.0,,1339.0,,59008.0,,131434.0,,127621.0,,3813.0,,,,9.0,,133.0,,874.0,,881.0,,1623.0,,,,,,, +ND,North Dakota,202302,Y,U,Y,1741.0,,0.0,,1741.0,,1307.0,,32.0,,1339.0,,59901.0,,133441.0,,129573.0,,3868.0,,,,4.0,,118.0,,721.0,,707.0,,1352.0,,,,,,, +ND,North Dakota,202303,Y,P,N,1953.0,,0.0,,1953.0,,1455.0,,22.0,,1477.0,,59708.0,,133311.0,,129430.0,,3881.0,,,,9.0,,143.0,,1207.0,,938.0,,932.0,,35424.0,Does not include all calls received after business hours; Includes calls for other benefit programs,10.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.551,Does not include all calls received after business hours; Includes calls for other benefit programs +ND,North Dakota,202303,Y,U,Y,1953.0,,0.0,,1953.0,,1455.0,,22.0,,1477.0,,60259.0,,134458.0,,130551.0,,3907.0,,,,9.0,,134.0,,1088.0,,819.0,,763.0,,35424.0,Does not include all calls received after business hours; Includes calls for other benefit programs,10.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.551,Does not include all calls received after business hours; Includes calls for other benefit programs +ND,North Dakota,202304,Y,P,N,1822.0,,0.0,,1822.0,,1411.0,,30.0,,1441.0,,60035.0,,134201.0,,130367.0,,3834.0,,,,8.0,,232.0,,1277.0,,650.0,,495.0,,28393.0,Does not include all calls received after business hours; Includes calls for other benefit programs,12.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.544,Does not include all calls received after business hours; Includes calls for other benefit programs +ND,North Dakota,202304,Y,U,Y,1822.0,,0.0,,1822.0,,1411.0,,30.0,,1441.0,,60631.0,,135554.0,,131684.0,,3870.0,,,,8.0,,232.0,,1277.0,,650.0,,495.0,,28393.0,Does not include all calls received after business hours; Includes calls for other benefit programs,12.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.544,Does not include all calls received after business hours; Includes calls for other benefit programs +ND,North Dakota,202305,Y,P,N,2021.0,,0.0,,2021.0,,1605.0,,38.0,,1643.0,,60405.0,,135164.0,,131304.0,,3860.0,,,,11.0,,299.0,,1585.0,,627.0,,444.0,,30199.0,Does not include all calls received after business hours; Includes calls for other benefit programs,2.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.114,Does not include all calls received after business hours; Includes calls for other benefit programs +ND,North Dakota,202305,Y,U,Y,2021.0,,0.0,,2021.0,,1605.0,,38.0,,1643.0,,60923.0,,136252.0,,132372.0,,3880.0,,,,11.0,,299.0,,1585.0,,627.0,,444.0,,30199.0,Does not include all calls received after business hours; Includes calls for other benefit programs,2.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.114,Does not include all calls received after business hours; Includes calls for other benefit programs +ND,North Dakota,202306,Y,P,N,2211.0,,0.0,,2211.0,,1607.0,,33.0,,1640.0,,58933.0,,131164.0,,127465.0,,3699.0,,,,22.0,,349.0,,1465.0,,619.0,,279.0,,30639.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.04,Does not include all calls received after business hours; Includes calls for other benefit programs +ND,North Dakota,202306,Y,U,Y,2211.0,,0.0,,2211.0,,1607.0,,33.0,,1640.0,,59437.0,,132222.0,,128519.0,,3703.0,,,,22.0,,349.0,,1465.0,,619.0,,279.0,,30639.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.04,Does not include all calls received after business hours; Includes calls for other benefit programs +ND,North Dakota,202307,Y,P,N,2137.0,,0.0,,2137.0,,1588.0,,31.0,,1619.0,,56515.0,,124926.0,,121490.0,,3436.0,,,,17.0,,344.0,,1379.0,,696.0,,242.0,,30737.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.082,Does not include all calls received after business hours; Includes calls for other benefit programs +ND,North Dakota,202307,Y,U,Y,2137.0,,0.0,,2137.0,,1588.0,,31.0,,1619.0,,54786.0,,120309.0,,117102.0,,3207.0,,,,17.0,,344.0,,1379.0,,696.0,,242.0,,30737.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.082,Does not include all calls received after business hours; Includes calls for other benefit programs +ND,North Dakota,202308,Y,P,N,2717.0,,0.0,,2717.0,,1939.0,,47.0,,1986.0,,54786.0,,120309.0,,117102.0,,3207.0,,,,13.0,,488.0,,1818.0,,708.0,,229.0,,32490.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.063,Does not include all calls received after business hours; Includes calls for other benefit programs +ND,North Dakota,202308,Y,U,Y,2717.0,,0.0,,2717.0,,1939.0,,47.0,,1986.0,,55635.0,,122146.0,,118875.0,,3271.0,,,,13.0,,488.0,,1818.0,,708.0,,229.0,,32490.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.063,Does not include all calls received after business hours; Includes calls for other benefit programs +ND,North Dakota,202309,Y,P,N,2524.0,,0.0,,2524.0,,1755.0,,43.0,,1798.0,,54385.0,,118263.0,,115095.0,,3168.0,,,,17.0,,534.0,,1871.0,,679.0,,210.0,,38192.0,Does not include all calls received after business hours; Includes calls for other benefit programs,2.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.062,Does not include all calls received after business hours; Includes calls for other benefit programs +ND,North Dakota,202309,Y,U,Y,2524.0,,0.0,,2524.0,,1755.0,,43.0,,1798.0,,56374.0,,122118.0,,118790.0,,3328.0,,,,17.0,,534.0,,1871.0,,679.0,,210.0,,38192.0,Does not include all calls received after business hours; Includes calls for other benefit programs,2.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.062,Does not include all calls received after business hours; Includes calls for other benefit programs +ND,North Dakota,202310,Y,P,N,2730.0,,0.0,,2730.0,,1746.0,,54.0,,1800.0,,55389.0,,118356.0,,114828.0,,3528.0,,,,15.0,,313.0,,1747.0,,873.0,,258.0,,46409.0,Does not include all calls received after business hours; Includes calls for other benefit programs,3.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.155,Does not include all calls received after business hours; Includes calls for other benefit programs +ND,North Dakota,202310,Y,U,Y,2730.0,,0.0,,2730.0,,1746.0,,54.0,,1800.0,,55875.0,,119893.0,,116571.0,,3322.0,,,,15.0,,313.0,,1747.0,,873.0,,258.0,,46409.0,Does not include all calls received after business hours; Includes calls for other benefit programs,3.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.155,Does not include all calls received after business hours; Includes calls for other benefit programs +ND,North Dakota,202311,Y,P,N,3655.0,,0.0,,3655.0,,1591.0,,71.0,,1662.0,,53940.0,,114411.0,,111239.0,,3172.0,,,,20.0,,188.0,,1604.0,,882.0,,301.0,,47177.0,Does not include all calls received after business hours; Includes calls for other benefit programs,7.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.261,Does not include all calls received after business hours; Includes calls for other benefit programs +ND,North Dakota,202311,Y,U,Y,3655.0,,0.0,,3655.0,,1591.0,,71.0,,1662.0,,54803.0,,116560.0,,113312.0,,3248.0,,,,20.0,,188.0,,1604.0,,882.0,,301.0,,47177.0,Does not include all calls received after business hours; Includes calls for other benefit programs,7.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.261,Does not include all calls received after business hours; Includes calls for other benefit programs +ND,North Dakota,202312,Y,P,N,3668.0,,0.0,,3668.0,,1990.0,,121.0,,2111.0,,53325.0,,112410.0,,109244.0,,3166.0,,,,15.0,,156.0,,1420.0,,1681.0,,614.0,,40888.0,Does not include all calls received after business hours; Includes calls for other benefit programs,8.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.302,Does not include all calls received after business hours; Includes calls for other benefit programs +ND,North Dakota,202312,Y,U,Y,3668.0,,0.0,,3668.0,,1990.0,,121.0,,2111.0,,54332.0,,114896.0,,111643.0,,3253.0,,,,15.0,,156.0,,1420.0,,1681.0,,614.0,,40888.0,Does not include all calls received after business hours; Includes calls for other benefit programs,8.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.302,Does not include all calls received after business hours; Includes calls for other benefit programs +ND,North Dakota,202401,Y,P,N,3551.0,,0.0,,3551.0,,2304.0,,129.0,,2433.0,,52905.0,,110455.0,,107035.0,,3420.0,,,,29.0,,257.0,,1222.0,,1924.0,,1585.0,,45656.0,Does not include all calls received after business hours; Includes calls for other benefit programs,7.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.272,Does not include all calls received after business hours; Includes calls for other benefit programs +ND,North Dakota,202401,Y,U,Y,3551.0,,0.0,,3551.0,,2304.0,,129.0,,2433.0,,54023.0,,113148.0,,109564.0,,3584.0,,,,29.0,,257.0,,1222.0,,1924.0,,1585.0,,45656.0,Does not include all calls received after business hours; Includes calls for other benefit programs,7.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.272,Does not include all calls received after business hours; Includes calls for other benefit programs +ND,North Dakota,202402,Y,P,N,2834.0,,0.0,,2834.0,,2392.0,,154.0,,2546.0,,52261.0,,108629.0,,105026.0,,3603.0,,,,33.0,,281.0,,1640.0,,1503.0,,1663.0,,33475.0,Does not include all calls received after business hours; Includes calls for other benefit programs,5.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.16,Does not include all calls received after business hours; Includes calls for other benefit programs +ND,North Dakota,202402,Y,U,Y,2834.0,,0.0,,2834.0,,2392.0,,154.0,,2546.0,,53355.0,,111190.0,,107465.0,,3725.0,,,,33.0,,281.0,,1640.0,,1503.0,,1663.0,,33475.0,Does not include all calls received after business hours; Includes calls for other benefit programs,5.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.16,Does not include all calls received after business hours; Includes calls for other benefit programs +ND,North Dakota,202403,Y,P,N,2852.0,,0.0,,2852.0,,2805.0,,90.0,,2895.0,,51832.0,,106997.0,,103219.0,,3778.0,,,,33.0,,588.0,,1805.0,,901.0,,644.0,,30102.0,Does not include all calls received after business hours; Includes calls for other benefit programs,3.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.096,Does not include all calls received after business hours; Includes calls for other benefit programs +ND,North Dakota,202403,Y,U,Y,2852.0,,0.0,,2852.0,,2805.0,,90.0,,2895.0,,52819.0,,109328.0,,105433.0,,3895.0,,,,33.0,,588.0,,1805.0,,901.0,,644.0,,30102.0,Does not include all calls received after business hours; Includes calls for other benefit programs,3.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.096,Does not include all calls received after business hours; Includes calls for other benefit programs +ND,North Dakota,202404,Y,P,N,3525.0,,0.0,,3525.0,,2829.0,,101.0,,2930.0,,50848.0,,104045.0,,100182.0,,3863.0,,,,69.0,,896.0,,2102.0,,498.0,,193.0,,31236.0,Does not include all calls received after business hours; Includes calls for other benefit programs,3.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.086,Does not include all calls received after business hours; Includes calls for other benefit programs +ND,North Dakota,202404,Y,U,Y,3525.0,,0.0,,3525.0,,2829.0,,101.0,,2930.0,,51818.0,,106308.0,,102322.0,,3986.0,,,,69.0,,896.0,,2102.0,,498.0,,193.0,,31236.0,Does not include all calls received after business hours; Includes calls for other benefit programs,3.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.086,Does not include all calls received after business hours; Includes calls for other benefit programs +ND,North Dakota,202405,Y,P,N,3201.0,,0.0,,3201.0,,2763.0,,109.0,,2872.0,,50449.0,,103011.0,,98953.0,,4058.0,,,,54.0,,867.0,,2154.0,,358.0,,148.0,,29087.0,Does not include all calls received after business hours; Includes calls for other benefit programs,2.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.046,Does not include all calls received after business hours; Includes calls for other benefit programs +ND,North Dakota,202405,Y,U,Y,3201.0,,0.0,,3201.0,,2763.0,,109.0,,2872.0,,51169.0,,104754.0,,100607.0,,4147.0,,,,54.0,,867.0,,2154.0,,358.0,,148.0,,29087.0,Does not include all calls received after business hours; Includes calls for other benefit programs,2.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.046,Does not include all calls received after business hours; Includes calls for other benefit programs +ND,North Dakota,202406,Y,P,N,2887.0,,0.0,,2887.0,,2374.0,,88.0,,2462.0,,50365.0,,102801.0,,98599.0,,4202.0,,,,64.0,,861.0,,1519.0,,416.0,,97.0,,26058.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.023,Does not include all calls received after business hours; Includes calls for other benefit programs +ND,North Dakota,202406,Y,U,Y,2887.0,,0.0,,2887.0,,2374.0,,88.0,,2462.0,,51174.0,,104660.0,,100358.0,,4302.0,,,,64.0,,861.0,,1519.0,,416.0,,97.0,,26058.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.023,Does not include all calls received after business hours; Includes calls for other benefit programs +ND,North Dakota,202407,Y,P,N,3355.0,,0.0,,3355.0,,2510.0,,97.0,,2607.0,,50599.0,,103337.0,,99015.0,,4322.0,,52738.0,,56.0,,828.0,,1694.0,,395.0,,124.0,,27995.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.032,Does not include all calls received after business hours; Includes calls for other benefit programs +ND,North Dakota,202407,Y,U,Y,3355.0,,0.0,,3355.0,,2510.0,,97.0,,2607.0,,51512.0,,105346.0,,100953.0,,4393.0,,53834.0,,56.0,,828.0,,1694.0,,395.0,,124.0,,27995.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.032,Does not include all calls received after business hours; Includes calls for other benefit programs +ND,North Dakota,202408,Y,P,N,3400.0,,0.0,,3400.0,,2757.0,,112.0,,2869.0,,50985.0,,104183.0,,99691.0,,4492.0,,53198.0,,81.0,,911.0,,2029.0,,405.0,,149.0,,28146.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.019,Does not include all calls received after business hours; Includes calls for other benefit programs +ND,North Dakota,202408,Y,U,Y,3400.0,,0.0,,3400.0,,2757.0,,112.0,,2869.0,,51849.0,,106054.0,,101443.0,,4611.0,,54205.0,,81.0,,911.0,,2029.0,,405.0,,149.0,,28146.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.019,Does not include all calls received after business hours; Includes calls for other benefit programs +ND,North Dakota,202409,Y,P,N,3168.0,,0.0,,3168.0,,2605.0,,111.0,,2716.0,,51134.0,,104380.0,,99714.0,,4666.0,,53246.0,,62.0,,819.0,,2001.0,,533.0,,132.0,,27255.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.032,Does not include all calls received after business hours; Includes calls for other benefit programs +ND,North Dakota,202409,Y,U,Y,3168.0,,0.0,,3168.0,,2605.0,,111.0,,2716.0,,51945.0,,106273.0,,101488.0,,4785.0,,54328.0,,62.0,,819.0,,2001.0,,533.0,,132.0,,27255.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.032,Does not include all calls received after business hours; Includes calls for other benefit programs +ND,North Dakota,202410,Y,P,N,3522.0,,0.0,,3522.0,,2662.0,,119.0,,2781.0,,51397.0,,104911.0,,100086.0,,4825.0,,53514.0,,59.0,,742.0,,1717.0,,534.0,,163.0,,28363.0,Does not include all calls received after business hours; Includes calls for other benefit programs,3.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.11,Does not include all calls received after business hours; Includes calls for other benefit programs +ND,North Dakota,202410,Y,U,Y,3522.0,,0.0,,3522.0,,2661.0,,119.0,,2780.0,,52229.0,,106816.0,,101901.0,,4915.0,,54587.0,,59.0,,742.0,,1717.0,,534.0,,163.0,,28363.0,Does not include all calls received after business hours; Includes calls for other benefit programs,3.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.11,Does not include all calls received after business hours; Includes calls for other benefit programs +ND,North Dakota,202411,Y,P,N,4345.0,,0.0,,4345.0,,2477.0,,103.0,,2580.0,,51405.0,,104897.0,,99978.0,,4919.0,,53492.0,,47.0,,723.0,,1270.0,,660.0,,272.0,,25101.0,Does not include all calls received after business hours; Includes calls for other benefit programs,7.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.283,Does not include all calls received after business hours; Includes calls for other benefit programs +ND,North Dakota,202411,Y,U,Y,4345.0,,0.0,,4345.0,,2476.0,,103.0,,2579.0,,52543.0,,107408.0,,102312.0,,5096.0,,54865.0,,47.0,,723.0,,1270.0,,660.0,,272.0,,25101.0,Does not include all calls received after business hours; Includes calls for other benefit programs,7.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.283,Does not include all calls received after business hours; Includes calls for other benefit programs +ND,North Dakota,202412,Y,P,N,4589.0,,0.0,,4589.0,,3139.0,,164.0,,3303.0,,51795.0,,105599.0,,100543.0,,5056.0,,53804.0,,56.0,,463.0,,1824.0,,1654.0,,778.0,,28680.0,Does not include all calls received after business hours; Includes calls for other benefit programs,12.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.361,Does not include all calls received after business hours; Includes calls for other benefit programs +ND,North Dakota,202412,Y,U,Y,4589.0,,0.0,,4589.0,,3139.0,,164.0,,3303.0,,53055.0,,108618.0,,103397.0,,5221.0,,55563.0,,56.0,,463.0,,1824.0,,1654.0,,778.0,,28680.0,Does not include all calls received after business hours; Includes calls for other benefit programs,12.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.361,Does not include all calls received after business hours; Includes calls for other benefit programs +ND,North Dakota,202501,Y,P,N,3812.0,,0.0,,3812.0,,3671.0,,153.0,,3824.0,,52171.0,,106817.0,,101757.0,,5060.0,,54646.0,,119.0,,656.0,,1719.0,,2438.0,,1118.0,,29289.0,Does not include all calls received after business hours; Includes calls for other benefit programs,11.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.353,Does not include all calls received after business hours; Includes calls for other benefit programs +ND,North Dakota,202501,Y,U,Y,3812.0,,0.0,,3812.0,,3671.0,,153.0,,3824.0,,53172.0,,109219.0,,104033.0,,5186.0,,56047.0,,119.0,,656.0,,1719.0,,2438.0,,1118.0,,29289.0,Does not include all calls received after business hours; Includes calls for other benefit programs,11.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.353,Does not include all calls received after business hours; Includes calls for other benefit programs +ND,North Dakota,202502,Y,P,N,2778.0,,0.0,,2778.0,,2853.0,,129.0,,2982.0,,51848.0,,105814.0,,100741.0,,5073.0,,53966.0,,87.0,,838.0,,1119.0,,974.0,,684.0,,22268.0,Does not include all calls received after business hours; Includes calls for other benefit programs,6.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.219,Does not include all calls received after business hours; Includes calls for other benefit programs +ND,North Dakota,202502,Y,U,Y,2778.0,,0.0,,2778.0,,2853.0,,129.0,,2982.0,,52780.0,,107935.0,,102755.0,,5180.0,,55155.0,,87.0,,838.0,,1119.0,,974.0,,684.0,,22268.0,Does not include all calls received after business hours; Includes calls for other benefit programs,6.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.219,Does not include all calls received after business hours; Includes calls for other benefit programs +ND,North Dakota,202503,Y,P,N,2947.0,,0.0,,2947.0,,2767.0,,102.0,,2869.0,,52061.0,,106172.0,,101066.0,,5106.0,,54111.0,,114.0,,828.0,,946.0,,655.0,,453.0,,22479.0,Does not include all calls received after business hours; Includes calls for other benefit programs,5.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.203,Does not include all calls received after business hours; Includes calls for other benefit programs +ND,North Dakota,202503,Y,U,Y,2947.0,,0.0,,2947.0,,2767.0,,102.0,,2869.0,,52817.0,,108079.0,,102882.0,,5197.0,,55262.0,,114.0,,828.0,,946.0,,655.0,,453.0,,22479.0,Does not include all calls received after business hours; Includes calls for other benefit programs,5.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.203,Does not include all calls received after business hours; Includes calls for other benefit programs +ND,North Dakota,202504,Y,P,N,2977.0,,0.0,,2977.0,,2751.0,,94.0,,2845.0,,51600.0,,105703.0,,100630.0,,5073.0,,54103.0,,135.0,,1029.0,,931.0,,743.0,,222.0,,23290.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.195,Does not include all calls received after business hours; Includes calls for other benefit programs +ND,North Dakota,202504,Y,U,Y,2977.0,,0.0,,2977.0,,2750.0,,94.0,,2844.0,,52323.0,,107439.0,,102310.0,,5129.0,,55116.0,,135.0,,1029.0,,931.0,,743.0,,222.0,,23290.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.195,Does not include all calls received after business hours; Includes calls for other benefit programs +ND,North Dakota,202505,Y,P,N,2735.0,,0.0,,2735.0,,2360.0,,69.0,,2429.0,,51518.0,,105669.0,,100594.0,,5075.0,,54151.0,,100.0,,841.0,,846.0,,803.0,,170.0,,22297.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.196,Does not include all calls received after business hours; Includes calls for other benefit programs +ND,North Dakota,202505,Y,U,Y,2735.0,,0.0,,2735.0,,2360.0,,69.0,,2429.0,,52182.0,,107330.0,,102168.0,,5162.0,,55148.0,,100.0,,841.0,,846.0,,803.0,,170.0,,22297.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.196,Does not include all calls received after business hours; Includes calls for other benefit programs +ND,North Dakota,202506,Y,P,N,2804.0,,0.0,,2804.0,,2337.0,,92.0,,2429.0,,51409.0,,105451.0,,100336.0,,5115.0,,54042.0,,68.0,,937.0,,713.0,,754.0,,134.0,,21624.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.197,Does not include all calls received after business hours; Includes calls for other benefit programs +ND,North Dakota,202506,Y,U,Y,2804.0,,0.0,,2804.0,,2337.0,,92.0,,2429.0,,52159.0,,107267.0,,102075.0,,5192.0,,55108.0,,68.0,,937.0,,713.0,,754.0,,134.0,,21624.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.197,Does not include all calls received after business hours; Includes calls for other benefit programs +ND,North Dakota,202507,Y,P,N,3037.0,,0.0,,3037.0,,2504.0,,74.0,,2578.0,,51326.0,,105453.0,,100379.0,,5074.0,,54127.0,,74.0,,795.0,,1001.0,,846.0,,129.0,,22948.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.191,Does not include all calls received after business hours; Includes calls for other benefit programs +ND,North Dakota,202507,Y,U,Y,3037.0,,0.0,,3037.0,,2503.0,,74.0,,2577.0,,52108.0,,107198.0,,102034.0,,5164.0,,55090.0,,74.0,,795.0,,1001.0,,846.0,,129.0,,22948.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.191,Does not include all calls received after business hours; Includes calls for other benefit programs +ND,North Dakota,202508,Y,P,N,2832.0,,0.0,,2832.0,,2433.0,,89.0,,2522.0,,51219.0,,105221.0,,100144.0,,5077.0,,54002.0,,94.0,,715.0,,1041.0,,822.0,,162.0,,23268.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.217,Does not include all calls received after business hours; Includes calls for other benefit programs +ND,North Dakota,202508,Y,U,Y,2832.0,,0.0,,2832.0,,2432.0,,89.0,,2521.0,,52099.0,,107232.0,,102041.0,,5191.0,,55133.0,,94.0,,715.0,,1041.0,,822.0,,162.0,,23268.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.217,Does not include all calls received after business hours; Includes calls for other benefit programs +ND,North Dakota,202509,Y,P,N,3058.0,,0.0,,3058.0,,2641.0,,106.0,,2747.0,,51300.0,,105205.0,,99990.0,,5215.0,,53905.0,,64.0,,692.0,,1097.0,,979.0,,140.0,,26223.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.287,Does not include all calls received after business hours; Includes calls for other benefit programs +ND,North Dakota,202509,Y,U,Y,3058.0,,0.0,,3058.0,,2641.0,,106.0,,2747.0,,52253.0,,107356.0,,102021.0,,5335.0,,55103.0,,64.0,,692.0,,1097.0,,979.0,,140.0,,26223.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.287,Does not include all calls received after business hours; Includes calls for other benefit programs +ND,North Dakota,202510,Y,P,N,2941.0,,0.0,,2941.0,,2721.0,,141.0,,2862.0,,51519.0,,105481.0,,100154.0,,5327.0,,53962.0,,51.0,,769.0,,1271.0,,1026.0,,263.0,,26999.0,Does not include all calls received after business hours; Includes calls for other benefit programs,10.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.324,Does not include all calls received after business hours; Includes calls for other benefit programs +NE,Nebraska,201309,N,U,Y,,,,,,,,,,,,,,,244600.0,,,,,,,,,,,,,,,,,,,,,,, +NE,Nebraska,201706,N,P,N,5838.0,,0.0,,5838.0,,7137.0,,855.0,,7992.0,,158919.0,,239764.0,,208068.0,,31696.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,201706,N,U,Y,5838.0,,0.0,,5838.0,,7137.0,,855.0,,7992.0,,162294.0,,244956.0,,212724.0,,32232.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,201707,N,P,N,5877.0,,0.0,,5877.0,,5827.0,,671.0,,6498.0,,158283.0,,238855.0,,207274.0,,31581.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,201707,N,U,Y,5877.0,,0.0,,5877.0,,5827.0,,671.0,,6498.0,,162998.0,,245909.0,,213522.0,,32387.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,201708,N,P,N,6814.0,,0.0,,6814.0,,8525.0,,991.0,,9516.0,,159336.0,,240376.0,,208474.0,,31902.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,201708,N,U,Y,6814.0,,0.0,,6814.0,,8525.0,,991.0,,9516.0,,163228.0,,246250.0,,213714.0,,32536.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,201709,N,P,N,5828.0,,0.0,,5828.0,,7289.0,,788.0,,8077.0,,159012.0,,239797.0,,207950.0,,31847.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,201709,N,U,Y,5828.0,,0.0,,5828.0,,7289.0,,788.0,,8077.0,,163356.0,,246353.0,,213658.0,,32695.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,201710,N,P,N,6505.0,,0.0,,6505.0,,7838.0,,1066.0,,8904.0,,160053.0,,241154.0,,208977.0,,32177.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,201710,N,U,Y,6505.0,,0.0,,6505.0,,7838.0,,1066.0,,8904.0,,163541.0,,245617.0,,212797.0,,32820.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,201711,N,P,N,6454.0,,0.0,,6454.0,,6670.0,,1030.0,,7700.0,,159989.0,,240981.0,,208392.0,,32589.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,201711,N,U,Y,6454.0,,0.0,,6454.0,,6670.0,,1030.0,,7700.0,,164494.0,,247722.0,,214129.0,,33593.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,201712,N,P,N,6269.0,,0.0,,6269.0,,7507.0,,1358.0,,8865.0,,161140.0,,242321.0,,209182.0,,33139.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,201712,N,U,Y,6269.0,,0.0,,6269.0,,7507.0,,1358.0,,8865.0,,162432.0,,245863.0,,211904.0,,33959.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,201801,N,P,N,7087.0,,0.0,,7087.0,,7949.0,,1200.0,,9149.0,,162268.0,,244098.0,,210637.0,,33461.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,201801,N,U,Y,7087.0,,0.0,,7087.0,,7949.0,,1200.0,,9149.0,,165685.0,,249328.0,,215186.0,,34142.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,201802,N,P,N,5714.0,,0.0,,5714.0,,6600.0,,990.0,,7590.0,,163085.0,,244961.0,,211139.0,,33822.0,,,,885.0,,664.0,,1499.0,,979.0,,1370.0,,,,,,, +NE,Nebraska,201802,N,U,Y,5714.0,,0.0,,5714.0,,6600.0,,990.0,,7590.0,,166177.0,,249964.0,,215666.0,,34298.0,,,,885.0,,664.0,,1499.0,,979.0,,1370.0,,,,,,, +NE,Nebraska,201803,N,P,N,6196.0,,0.0,,6196.0,,7802.0,,1040.0,,8842.0,,164187.0,,246653.0,,212916.0,,33737.0,,,,1120.0,,623.0,,1839.0,,1061.0,,1182.0,,,,,,, +NE,Nebraska,201803,N,U,Y,6196.0,,0.0,,6196.0,,7802.0,,1040.0,,8842.0,,166724.0,,250897.0,,216687.0,,34210.0,,,,1120.0,,623.0,,1839.0,,1061.0,,1182.0,,,,,,, +NE,Nebraska,201804,N,P,N,6092.0,,0.0,,6092.0,,7035.0,,884.0,,7919.0,,163799.0,,245854.0,,212414.0,,33440.0,,,,1120.0,,623.0,,1839.0,,1061.0,,1182.0,,,,,,, +NE,Nebraska,201804,N,U,Y,6092.0,,0.0,,6092.0,,7035.0,,884.0,,7919.0,,166350.0,,250249.0,,216360.0,,33889.0,,,,1120.0,,623.0,,1839.0,,1061.0,,1182.0,,,,,,, +NE,Nebraska,201805,N,P,N,5824.0,,0.0,,5824.0,,7362.0,,817.0,,8179.0,,163545.0,,245755.0,,212344.0,,33411.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,201805,N,U,Y,5824.0,,0.0,,5824.0,,7362.0,,817.0,,8179.0,,166017.0,,249735.0,,215856.0,,33879.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,201806,N,P,N,5689.0,,0.0,,5689.0,,6726.0,,952.0,,7678.0,,163269.0,,244969.0,,211564.0,,33405.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,201806,N,U,Y,5689.0,,0.0,,5689.0,,6726.0,,952.0,,7678.0,,165728.0,,248886.0,,214959.0,,33927.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,201807,N,P,N,6204.0,,0.0,,6204.0,,7121.0,,966.0,,8087.0,,161978.0,,243308.0,,209994.0,,33314.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,201807,N,U,Y,6204.0,,0.0,,6204.0,,7121.0,,966.0,,8087.0,,165231.0,,248379.0,,214466.0,,33913.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,201808,N,P,N,6844.0,,0.0,,6844.0,,8653.0,,1076.0,,9729.0,,163138.0,,245002.0,,211341.0,,33661.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,201808,N,U,Y,6844.0,,0.0,,6844.0,,8653.0,,1076.0,,9729.0,,165714.0,,249042.0,,214800.0,,34242.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,201809,N,P,N,5621.0,,0.0,,5621.0,,6627.0,,987.0,,7614.0,,162578.0,,244195.0,,210458.0,,33737.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,201809,N,U,Y,5621.0,,0.0,,5621.0,,6627.0,,987.0,,7614.0,,165341.0,,248524.0,,214252.0,,34272.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,201810,N,P,N,6603.0,,0.0,,6603.0,,7521.0,,987.0,,8508.0,,162193.0,,243745.0,,210005.0,,33740.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,201810,N,U,Y,6603.0,,0.0,,6603.0,,7521.0,,987.0,,8508.0,,164671.0,,247560.0,,213311.0,,34249.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,201811,N,P,N,6301.0,,0.0,,6301.0,,5239.0,,999.0,,6238.0,,162039.0,,243159.0,,208946.0,,34213.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,201811,N,U,Y,6301.0,,0.0,,6301.0,,5239.0,,999.0,,6238.0,,161777.0,,244380.0,,212547.0,,31833.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,201812,N,P,N,5503.0,,0.0,,5503.0,,4849.0,,970.0,,5819.0,,161744.0,,242529.0,,207988.0,,34541.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,201812,N,U,Y,5503.0,,0.0,,5503.0,,4849.0,,970.0,,5819.0,,164913.0,,247510.0,,212374.0,,35136.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,201901,N,P,N,6957.0,,0.0,,6957.0,,5751.0,,1016.0,,6767.0,,161612.0,,242385.0,,207740.0,,34645.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,201901,N,U,Y,6957.0,,0.0,,6957.0,,5751.0,,1016.0,,6767.0,,164479.0,,246966.0,,211826.0,,35140.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,201902,N,P,N,6159.0,,0.0,,6159.0,,4982.0,,854.0,,5836.0,,162054.0,,243277.0,,208582.0,,34695.0,,,,1113.0,,774.0,,2020.0,,239.0,,191.0,,,,,,, +NE,Nebraska,201902,N,U,Y,6159.0,,0.0,,6159.0,,4982.0,,854.0,,5836.0,,164696.0,,247508.0,,212330.0,,35178.0,,,,1113.0,,774.0,,2020.0,,239.0,,191.0,,,,,,, +NE,Nebraska,201903,N,P,N,5919.0,,0.0,,5919.0,,5397.0,,871.0,,6268.0,,162667.0,,244257.0,,209872.0,,34385.0,,,,1079.0,,861.0,,1902.0,,194.0,,150.0,,,,,,, +NE,Nebraska,201903,N,U,Y,5919.0,,0.0,,5919.0,,5397.0,,871.0,,6268.0,,164696.0,,247508.0,,212330.0,,35178.0,,,,1079.0,,861.0,,1902.0,,194.0,,150.0,,,,,,, +NE,Nebraska,201904,N,P,N,6081.0,,0.0,,6081.0,,5799.0,,857.0,,6656.0,,161816.0,,242809.0,,209031.0,,33778.0,,,,990.0,,721.0,,1867.0,,309.0,,178.0,,,,,,, +NE,Nebraska,201904,N,U,Y,6081.0,,0.0,,6081.0,,5799.0,,857.0,,6656.0,,164492.0,,247318.0,,213039.0,,34279.0,,,,990.0,,721.0,,1867.0,,309.0,,178.0,,,,,,, +NE,Nebraska,201905,N,P,N,5980.0,,0.0,,5980.0,,6126.0,,887.0,,7013.0,,161387.0,,242165.0,,208828.0,,33337.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,201905,N,U,Y,5980.0,,0.0,,5980.0,,6126.0,,887.0,,7013.0,,163695.0,,246014.0,,212215.0,,33799.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,201906,N,P,N,5534.0,,0.0,,5534.0,,5360.0,,707.0,,6067.0,,160271.0,,240741.0,,207681.0,,33060.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,201906,N,U,Y,5534.0,,0.0,,5534.0,,5360.0,,707.0,,6067.0,,163338.0,,245673.0,,212060.0,,33613.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,201907,N,P,N,6505.0,,0.0,,6505.0,,6818.0,,921.0,,7739.0,,160804.0,,241525.0,,208260.0,,33265.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,201907,N,U,Y,6505.0,,0.0,,6505.0,,6818.0,,921.0,,7739.0,,163737.0,,246175.0,,212320.0,,33855.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,201908,N,P,N,6459.0,,0.0,,6459.0,,6434.0,,1048.0,,7482.0,,161351.0,,242317.0,,208878.0,,33439.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,201908,N,U,Y,6459.0,,0.0,,6459.0,,6434.0,,1048.0,,7482.0,,164235.0,,246846.0,,212815.0,,34031.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,201909,N,P,N,5745.0,,0.0,,5745.0,,5564.0,,916.0,,6480.0,,161297.0,,242187.0,,208512.0,,33675.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,201909,N,U,Y,5745.0,,0.0,,5745.0,,5564.0,,916.0,,6480.0,,164596.0,,247368.0,,213074.0,,34294.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,201910,N,P,N,6114.0,,0.0,,6114.0,,6510.0,,1007.0,,7517.0,,161682.0,,242897.0,,209107.0,,33790.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,201910,N,U,Y,6114.0,,0.0,,6114.0,,6510.0,,1007.0,,7517.0,,164247.0,,246842.0,,212542.0,,34300.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,201911,N,P,N,5406.0,,0.0,,5406.0,,5443.0,,1386.0,,6829.0,,162094.0,,243090.0,,208679.0,,34411.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,201911,N,U,Y,5406.0,,0.0,,5406.0,,5443.0,,1386.0,,6829.0,,164916.0,,247563.0,,212652.0,,34911.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,201912,N,P,N,5853.0,,0.0,,5853.0,,5691.0,,1550.0,,7241.0,,162167.0,,242878.0,,208005.0,,34873.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,201912,N,U,Y,5853.0,,0.0,,5853.0,,5691.0,,1550.0,,7241.0,,165238.0,,247737.0,,212229.0,,35508.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,202001,N,P,N,7144.0,,0.0,,7144.0,,6453.0,,1206.0,,7659.0,,162514.0,,243691.0,,208688.0,,35003.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,202001,N,U,Y,7144.0,,0.0,,7144.0,,6453.0,,1206.0,,7659.0,,165238.0,,247737.0,,212229.0,,35508.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,202002,N,P,N,5531.0,,0.0,,5531.0,,5120.0,,863.0,,5983.0,,162904.0,,244412.0,,209409.0,,35003.0,,,,1367.0,,974.0,,1433.0,,323.0,,534.0,,,,,,, +NE,Nebraska,202002,N,U,Y,5531.0,,0.0,,5531.0,,5120.0,,863.0,,5983.0,,165414.0,,248633.0,,213145.0,,35488.0,,,,1367.0,,974.0,,1433.0,,323.0,,534.0,,,,,,, +NE,Nebraska,202003,N,P,N,6197.0,,0.0,,6197.0,,6184.0,,982.0,,7166.0,,163094.0,,244762.0,,210101.0,,34661.0,,,,1785.0,,865.0,,1686.0,,231.0,,187.0,,,,,,, +NE,Nebraska,202003,N,U,Y,6197.0,,0.0,,6197.0,,6184.0,,982.0,,7166.0,,165093.0,,248460.0,,213487.0,,34973.0,,,,1785.0,,865.0,,1686.0,,231.0,,187.0,,,,,,, +NE,Nebraska,202004,N,P,N,5423.0,,0.0,,5423.0,,7283.0,,927.0,,8210.0,,163831.0,,246460.0,,212438.0,,34022.0,,,,1752.0,,634.0,,931.0,,146.0,,156.0,,,,,,, +NE,Nebraska,202004,N,U,Y,5423.0,,0.0,,5423.0,,7283.0,,927.0,,8210.0,,165466.0,,249575.0,,215212.0,,34363.0,,,,1752.0,,634.0,,931.0,,146.0,,156.0,,,,,,, +NE,Nebraska,202005,N,P,N,4797.0,,0.0,,4797.0,,3436.0,,542.0,,3978.0,,165794.0,,250066.0,,216447.0,,33619.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,202005,N,U,Y,4797.0,,0.0,,4797.0,,3436.0,,542.0,,3978.0,,167316.0,,252935.0,,219064.0,,33871.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,202006,N,P,N,5231.0,,0.0,,5231.0,,3637.0,,628.0,,4265.0,,167929.0,,254159.0,,220563.0,,33596.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,202006,N,U,Y,5231.0,,0.0,,5231.0,,3637.0,,628.0,,4265.0,,169410.0,,256931.0,,223124.0,,33807.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,202007,N,P,N,5836.0,,0.0,,5836.0,,3797.0,,674.0,,4471.0,,170225.0,,258315.0,,224242.0,,34073.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,202007,N,U,Y,5836.0,,0.0,,5836.0,,3797.0,,674.0,,4471.0,,171691.0,,261168.0,,226887.0,,34281.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,202008,N,P,N,10740.0,,0.0,,10740.0,,7135.0,,640.0,,7775.0,,172430.0,,262715.0,,228352.0,,34363.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,202008,N,U,Y,10740.0,,0.0,,10740.0,,7135.0,,640.0,,7775.0,,174122.0,,265903.0,,231235.0,,34668.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,202009,N,P,N,9229.0,,0.0,,9229.0,,6637.0,,645.0,,7282.0,,174400.0,,266738.0,,232320.0,,34418.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,202009,N,U,Y,9229.0,,0.0,,9229.0,,6637.0,,645.0,,7282.0,,175883.0,,269583.0,,234929.0,,34654.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,202010,Y,P,N,9774.0,,0.0,,9774.0,,3625.0,,584.0,,4209.0,,177474.0,,287089.0,,252452.0,,34637.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,202010,Y,U,Y,9774.0,,0.0,,9774.0,,3625.0,,584.0,,4209.0,,177474.0,,287089.0,,252452.0,,34637.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,202011,Y,P,N,8260.0,,0.0,,8260.0,,7282.0,,925.0,,8207.0,,177830.0,,292298.0,,257454.0,,34844.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,202011,Y,U,Y,8260.0,,0.0,,8260.0,,7282.0,,925.0,,8207.0,,178791.0,,295765.0,,260684.0,,35081.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,202012,Y,P,N,8046.0,,0.0,,8046.0,,8756.0,,1096.0,,9852.0,,179226.0,,300661.0,,265544.0,,35117.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,202012,Y,U,Y,8046.0,,0.0,,8046.0,,8756.0,,1096.0,,9852.0,,180431.0,,304573.0,,269226.0,,35347.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,202101,Y,P,N,7425.0,,0.0,,7425.0,,5100.0,,515.0,,5615.0,,180272.0,,305814.0,,270717.0,,35097.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,202101,Y,U,Y,7425.0,,0.0,,7425.0,,5100.0,,515.0,,5615.0,,181437.0,,309171.0,,273925.0,,35246.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,202102,Y,P,N,6494.0,,0.0,,6494.0,,4588.0,,435.0,,5023.0,,181076.0,,309951.0,,274937.0,,35014.0,,,,1875.0,,1808.0,,1227.0,,257.0,,228.0,,,,,,, +NE,Nebraska,202102,Y,U,Y,6494.0,,0.0,,6494.0,,4588.0,,435.0,,5023.0,,182397.0,,313804.0,,278524.0,,35280.0,,,,1875.0,,1808.0,,1227.0,,257.0,,228.0,,,,,,, +NE,Nebraska,202103,Y,P,N,6950.0,,0.0,,6950.0,,5237.0,,567.0,,5804.0,,182538.0,,315648.0,,280591.0,,35057.0,,,,2280.0,,1688.0,,1683.0,,253.0,,181.0,,,,,,, +NE,Nebraska,202103,Y,U,Y,6950.0,,0.0,,6950.0,,5237.0,,567.0,,5804.0,,183598.0,,318626.0,,283368.0,,35258.0,,,,2280.0,,1688.0,,1683.0,,253.0,,181.0,,,,,,, +NE,Nebraska,202104,Y,P,N,6166.0,,0.0,,6166.0,,4555.0,,501.0,,5056.0,,183673.0,,320223.0,,285086.0,,35137.0,,,,2284.0,,1534.0,,1430.0,,168.0,,101.0,,,,,,, +NE,Nebraska,202104,Y,U,Y,6166.0,,0.0,,6166.0,,4555.0,,501.0,,5056.0,,184766.0,,323210.0,,287836.0,,35374.0,,,,2284.0,,1534.0,,1430.0,,168.0,,101.0,,,,,,, +NE,Nebraska,202105,Y,P,N,5936.0,,0.0,,5936.0,,4260.0,,347.0,,4607.0,,184806.0,,324200.0,,288787.0,,35413.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,202105,Y,U,Y,5936.0,,0.0,,5936.0,,4260.0,,347.0,,4607.0,,186025.0,,327422.0,,291814.0,,35608.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,202106,Y,P,N,6320.0,,0.0,,6320.0,,4360.0,,370.0,,4730.0,,185975.0,,328106.0,,292221.0,,35885.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,202106,Y,U,Y,6320.0,,0.0,,6320.0,,4360.0,,370.0,,4730.0,,187064.0,,331028.0,,294945.0,,36083.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,202107,Y,P,N,6253.0,,0.0,,6253.0,,4275.0,,381.0,,4656.0,,186871.0,,331880.0,,295453.0,,36427.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,202107,Y,U,Y,6253.0,,0.0,,6253.0,,4275.0,,381.0,,4656.0,,188156.0,,335065.0,,298388.0,,36677.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,202108,Y,P,N,6494.0,,0.0,,6494.0,,4707.0,,396.0,,5103.0,,188146.0,,336158.0,,299312.0,,36846.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,202108,Y,U,Y,6494.0,,0.0,,6494.0,,4707.0,,396.0,,5103.0,,189417.0,,339280.0,,302168.0,,37112.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,202109,Y,P,N,6119.0,,0.0,,6119.0,,4173.0,,359.0,,4532.0,,189200.0,,339683.0,,302446.0,,37237.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,202109,Y,U,Y,6119.0,,0.0,,6119.0,,4173.0,,359.0,,4532.0,,190377.0,,342683.0,,305292.0,,37391.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,202110,Y,P,N,6373.0,,0.0,,6373.0,,4071.0,,306.0,,4377.0,,190140.0,,343091.0,,305559.0,,37532.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,202110,Y,U,Y,6373.0,,0.0,,6373.0,,4071.0,,306.0,,4377.0,,191233.0,,345887.0,,308164.0,,37723.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,202111,Y,P,N,6123.0,,0.0,,6123.0,,4275.0,,493.0,,4768.0,,191093.0,,346689.0,,308671.0,,38018.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,202111,Y,U,Y,6123.0,,0.0,,6123.0,,4275.0,,493.0,,4768.0,,192418.0,,350084.0,,311773.0,,38311.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,202112,Y,P,N,6098.0,,0.0,,6098.0,,4838.0,,574.0,,5412.0,,192428.0,,351530.0,,312724.0,,38806.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,202112,Y,U,Y,6098.0,,0.0,,6098.0,,4838.0,,574.0,,5412.0,,193809.0,,355314.0,,316224.0,,39090.0,,,,,,,,,,,,,,,,,,, +NE,Nebraska,202201,Y,P,N,6385.0,,0.0,,6385.0,,4895.0,,417.0,,5312.0,,193634.0,,356221.0,,317000.0,,39221.0,,,,466.0,,3169.0,,2069.0,,833.0,,160.0,,,,,,, +NE,Nebraska,202201,Y,U,Y,6385.0,,0.0,,6385.0,,4895.0,,417.0,,5312.0,,194887.0,,359322.0,,319946.0,,39376.0,,,,466.0,,3169.0,,2069.0,,833.0,,160.0,,,,,,, +NE,Nebraska,202202,Y,P,N,5407.0,,0.0,,5407.0,,3561.0,,282.0,,3843.0,,194337.0,,358730.0,,319245.0,,39485.0,,,,571.0,,1825.0,,1315.0,,340.0,,150.0,,,,,,, +NE,Nebraska,202202,Y,U,Y,5407.0,,0.0,,5407.0,,3561.0,,282.0,,3843.0,,195422.0,,361571.0,,321948.0,,39623.0,,,,571.0,,1825.0,,1315.0,,340.0,,150.0,,,,,,, +NE,Nebraska,202203,Y,P,N,6233.0,,0.0,,6233.0,,3922.0,,299.0,,4221.0,,194980.0,,361404.0,,321961.0,,39443.0,,,,844.0,,2267.0,,1290.0,,170.0,,148.0,,,,,,, +NE,Nebraska,202203,Y,U,Y,6233.0,,0.0,,6233.0,,3922.0,,299.0,,4221.0,,196055.0,,363863.0,,324263.0,,39600.0,,,,844.0,,2267.0,,1290.0,,170.0,,148.0,,,,,,, +NE,Nebraska,202204,Y,P,N,5596.0,,0.0,,5596.0,,3313.0,,230.0,,3543.0,,195480.0,,363401.0,,323934.0,,39467.0,,,,1137.0,,1536.0,,1120.0,,132.0,,89.0,,,,,,, +NE,Nebraska,202204,Y,U,Y,5596.0,,0.0,,5596.0,,3313.0,,230.0,,3543.0,,196608.0,,366131.0,,326453.0,,39678.0,,,,1137.0,,1536.0,,1120.0,,132.0,,89.0,,,,,,, +NE,Nebraska,202205,Y,P,N,5901.0,,0.0,,5901.0,,3463.0,,279.0,,3742.0,,195927.0,,365641.0,,325994.0,,39647.0,,,,750.0,,2034.0,,1040.0,,265.0,,104.0,,,,,,, +NE,Nebraska,202205,Y,U,Y,5901.0,,0.0,,5901.0,,3463.0,,279.0,,3742.0,,197068.0,,368326.0,,328460.0,,39866.0,,,,750.0,,2034.0,,1040.0,,265.0,,104.0,,,,,,, +NE,Nebraska,202206,Y,P,N,6020.0,,0.0,,6020.0,,3588.0,,303.0,,3891.0,,196853.0,,368348.0,,328389.0,,39959.0,,,,562.0,,2082.0,,1233.0,,209.0,,106.0,,,,,,, +NE,Nebraska,202206,Y,U,Y,6020.0,,0.0,,6020.0,,3588.0,,303.0,,3891.0,,197958.0,,371047.0,,330929.0,,40118.0,,,,562.0,,2082.0,,1233.0,,209.0,,106.0,,,,,,, +NE,Nebraska,202207,Y,P,N,6223.0,,0.0,,6223.0,,3869.0,,274.0,,4143.0,,197540.0,,371019.0,,330725.0,,40294.0,,,,608.0,,2031.0,,1131.0,,229.0,,115.0,,,,,,, +NE,Nebraska,202207,Y,U,Y,6223.0,,0.0,,6223.0,,3869.0,,274.0,,4143.0,,198841.0,,374026.0,,333566.0,,40460.0,,,,608.0,,2031.0,,1131.0,,229.0,,115.0,,,,,,, +NE,Nebraska,202208,Y,P,N,7700.0,,0.0,,7700.0,,4578.0,,321.0,,4899.0,,198878.0,,374751.0,,334007.0,,40744.0,,,,739.0,,2412.0,,1319.0,,276.0,,106.0,,,,,,, +NE,Nebraska,202208,Y,U,Y,7700.0,,0.0,,7700.0,,4578.0,,321.0,,4899.0,,200167.0,,377726.0,,336777.0,,40949.0,,,,739.0,,2412.0,,1319.0,,276.0,,106.0,,,,,,, +NE,Nebraska,202209,Y,P,N,6363.0,,0.0,,6363.0,,4282.0,,298.0,,4580.0,,199830.0,,377894.0,,336913.0,,40981.0,,,,904.0,,2148.0,,1349.0,,251.0,,139.0,,,,,,, +NE,Nebraska,202209,Y,U,Y,6363.0,,0.0,,6363.0,,4282.0,,298.0,,4580.0,,200982.0,,380586.0,,339486.0,,41100.0,,,,904.0,,2148.0,,1349.0,,251.0,,139.0,,,,,,, +NE,Nebraska,202210,Y,P,N,6350.0,,0.0,,6350.0,,3897.0,,244.0,,4141.0,,200338.0,,380240.0,,339019.0,,41221.0,,,,1099.0,,1684.0,,1200.0,,213.0,,197.0,,,,,,, +NE,Nebraska,202210,Y,U,Y,6350.0,,0.0,,6350.0,,3897.0,,244.0,,4141.0,,201495.0,,382869.0,,341461.0,,41408.0,,,,1099.0,,1684.0,,1200.0,,213.0,,197.0,,,,,,, +NE,Nebraska,202211,Y,P,N,6401.0,,0.0,,6401.0,,4380.0,,616.0,,4996.0,,201115.0,,383252.0,,341438.0,,41814.0,,,,1187.0,,3730.0,,1293.0,,273.0,,157.0,,,,,,, +NE,Nebraska,202211,Y,U,Y,6401.0,,0.0,,6401.0,,4380.0,,616.0,,4996.0,,202682.0,,387144.0,,344997.0,,42147.0,,,,1187.0,,3730.0,,1293.0,,273.0,,157.0,,,,,,, +NE,Nebraska,202212,Y,P,N,6086.0,,0.0,,6086.0,,4944.0,,580.0,,5524.0,,202115.0,,387459.0,,345168.0,,42291.0,,,,1201.0,,3982.0,,1848.0,,971.0,,199.0,,,,,,, +NE,Nebraska,202212,Y,U,Y,6086.0,,0.0,,6086.0,,4944.0,,580.0,,5524.0,,203405.0,,390562.0,,348050.0,,42512.0,,,,1201.0,,3982.0,,1848.0,,971.0,,199.0,,,,,,, +NE,Nebraska,202301,Y,P,N,6714.0,,0.0,,6714.0,,4225.0,,377.0,,4602.0,,203031.0,,390642.0,,348090.0,,42552.0,,,,625.0,,2790.0,,1776.0,,941.0,,509.0,,,,,,, +NE,Nebraska,202301,Y,U,Y,6714.0,,0.0,,6714.0,,4225.0,,377.0,,4602.0,,204266.0,,393384.0,,350625.0,,42759.0,,,,625.0,,2790.0,,1776.0,,941.0,,509.0,,,,,,, +NE,Nebraska,202302,Y,P,N,5832.0,,0.0,,5832.0,,3021.0,,266.0,,3287.0,,203531.0,,392334.0,,349513.0,,42821.0,,,,118.0,,499.0,,356.0,,94.0,,75.0,,,,,,, +NE,Nebraska,202302,Y,U,Y,5832.0,,0.0,,5832.0,,3021.0,,266.0,,3287.0,,204828.0,,395237.0,,352272.0,,42965.0,,,,118.0,,499.0,,356.0,,94.0,,75.0,,,,,,, +NE,Nebraska,202303,Y,P,N,6584.0,,0.0,,6584.0,,3598.0,,288.0,,3886.0,,204353.0,,395023.0,,352494.0,,42529.0,,,,1033.0,,1773.0,,1081.0,,555.0,,195.0,,31697.0,Does not include all calls received after business hours; Includes calls for other benefit programs,3.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,0.0809,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NE,Nebraska,202303,Y,U,Y,6584.0,,0.0,,6584.0,,3598.0,,288.0,,3886.0,,205366.0,,397291.0,,354594.0,,42697.0,,,,1033.0,,1773.0,,1081.0,,555.0,,195.0,,31697.0,Does not include all calls received after business hours; Includes calls for other benefit programs,3.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,0.0809,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NE,Nebraska,202304,Y,P,N,5649.0,,0.0,,5649.0,,2868.0,,210.0,,3078.0,,204682.0,,396269.0,,353882.0,,42387.0,,,,1076.0,,1102.0,,379.0,,989.0,,251.0,,24411.0,Does not include all calls received after business hours; Includes calls for other benefit programs,3.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,0.0792,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NE,Nebraska,202304,Y,U,Y,5649.0,,0.0,,5649.0,,2868.0,,210.0,,3078.0,,205825.0,,398818.0,,356238.0,,42580.0,,,,1076.0,,1102.0,,379.0,,989.0,,251.0,,24411.0,Does not include all calls received after business hours; Includes calls for other benefit programs,3.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,0.0792,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NE,Nebraska,202305,Y,P,N,6318.0,,0.0,,6318.0,,3609.0,,291.0,,3900.0,,205067.0,,397605.0,,355263.0,,42342.0,,,,1202.0,,1520.0,,378.0,,1052.0,,517.0,,27525.0,Does not include all calls received after business hours; Includes calls for other benefit programs,3.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,0.0962,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NE,Nebraska,202305,Y,U,Y,6318.0,,0.0,,6318.0,,3609.0,,291.0,,3900.0,,206151.0,,400076.0,,357537.0,,42539.0,,,,1202.0,,1520.0,,378.0,,1052.0,,517.0,,27525.0,Does not include all calls received after business hours; Includes calls for other benefit programs,3.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,0.0962,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NE,Nebraska,202306,Y,P,N,6886.0,,0.0,,6886.0,,4148.0,,322.0,,4470.0,,204720.0,,396974.0,,354542.0,,42432.0,,,,1209.0,,1544.0,,483.0,,1220.0,,388.0,,28960.0,Does not include all calls received after business hours; Includes calls for other benefit programs; New call center added in reporting period,3.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; New call center added in reporting period,0.0986,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; New call center added in reporting period +NE,Nebraska,202306,Y,U,Y,6886.0,,0.0,,6886.0,,4148.0,,322.0,,4470.0,,205956.0,,399695.0,,357071.0,,42624.0,,,,1209.0,,1544.0,,483.0,,1220.0,,388.0,,28960.0,Does not include all calls received after business hours; Includes calls for other benefit programs; New call center added in reporting period,3.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; New call center added in reporting period,0.0986,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; New call center added in reporting period +NE,Nebraska,202307,Y,P,N,7188.0,,0.0,,7188.0,,4525.0,,398.0,,4923.0,,202834.0,,393843.0,,351832.0,,42011.0,,,,1149.0,,1747.0,,526.0,,1195.0,,435.0,,30219.0,Does not include all calls received after business hours; Includes calls for other benefit programs,3.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,0.1145,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NE,Nebraska,202307,Y,U,Y,7188.0,,0.0,,7188.0,,4525.0,,398.0,,4923.0,,204531.0,,397567.0,,355320.0,,42247.0,,,,1149.0,,1747.0,,526.0,,1195.0,,435.0,,30219.0,Does not include all calls received after business hours; Includes calls for other benefit programs,3.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,0.1145,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NE,Nebraska,202308,Y,P,N,8368.0,,0.0,,8368.0,,5936.0,,625.0,,6561.0,,200074.0,,388603.0,,347205.0,,41398.0,,,,1520.0,,2344.0,,719.0,,1439.0,,524.0,,35770.0,Does not include all calls received after business hours; Includes calls for other benefit programs,4.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,0.1707,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NE,Nebraska,202308,Y,U,Y,8368.0,,0.0,,8368.0,,5936.0,,625.0,,6561.0,,201788.0,,392327.0,,350632.0,,41695.0,,,,1520.0,,2344.0,,719.0,,1439.0,,524.0,,35770.0,Does not include all calls received after business hours; Includes calls for other benefit programs,4.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,0.1707,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NE,Nebraska,202309,Y,P,N,7489.0,,0.0,,7489.0,,5372.0,,585.0,,5957.0,,196090.0,,381495.0,,340756.0,,40739.0,,,,1479.0,,1949.0,,663.0,,1599.0,,475.0,,33004.0,Does not include all calls received after business hours; Includes calls for other benefit programs,4.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,0.166,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NE,Nebraska,202309,Y,U,Y,7489.0,,0.0,,7489.0,,5372.0,,585.0,,5957.0,,198262.0,,386233.0,,345073.0,,41160.0,,,,1479.0,,1949.0,,663.0,,1599.0,,475.0,,33004.0,Does not include all calls received after business hours; Includes calls for other benefit programs,4.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,0.166,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NE,Nebraska,202310,Y,P,N,8070.0,,0.0,,8070.0,,6243.0,,698.0,,6941.0,,192370.0,,375153.0,,334980.0,,40173.0,,,,1336.0,,2506.0,,852.0,,1802.0,,624.0,,37644.0,Does not include all calls received after business hours; Includes calls for other benefit programs,3.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,0.0915,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NE,Nebraska,202310,Y,U,Y,9163.0,,0.0,,9163.0,,6243.0,,698.0,,6941.0,,194693.0,,379881.0,,339231.0,,40650.0,,,,1336.0,,2506.0,,852.0,,1802.0,,624.0,,37644.0,Does not include all calls received after business hours; Includes calls for other benefit programs,3.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,0.0915,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NE,Nebraska,202311,Y,P,N,5083.0,,0.0,,5083.0,,6232.0,,983.0,,7215.0,,189198.0,,368900.0,,329116.0,,39784.0,,,,1027.0,,3323.0,,1891.0,,1807.0,,552.0,,38885.0,Does not include all calls received after business hours; Includes calls for other benefit programs,3.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,0.0848,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NE,Nebraska,202311,Y,U,Y,9859.0,,0.0,,9859.0,,6232.0,,983.0,,7215.0,,192149.0,,374778.0,,334330.0,,40448.0,,,,1027.0,,3323.0,,1891.0,,1807.0,,552.0,,38885.0,Does not include all calls received after business hours; Includes calls for other benefit programs,3.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,0.0848,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NE,Nebraska,202312,Y,P,N,8945.0,,0.0,,8945.0,,6673.0,,1076.0,,7749.0,,187420.0,,365041.0,,325436.0,,39605.0,,,,1075.0,,2204.0,,4107.0,,2342.0,,785.0,,38007.0,Does not include all calls received after business hours; Includes calls for other benefit programs,3.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,0.0963,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NE,Nebraska,202312,Y,U,Y,8945.0,,0.0,,8945.0,,6673.0,,1076.0,,7749.0,,190105.0,,371047.0,,330857.0,,40190.0,,,,1075.0,,2204.0,,4107.0,,2342.0,,785.0,,38007.0,Does not include all calls received after business hours; Includes calls for other benefit programs,3.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,0.0963,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NE,Nebraska,202401,Y,P,N,12306.0,,0.0,,12306.0,,7165.0,,833.0,,7998.0,,184550.0,,359981.0,,321065.0,,38916.0,,,,916.0,,1191.0,,4168.0,,2214.0,,2510.0,,45103.0,Does not include all calls received after business hours; Includes calls for other benefit programs,3.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,0.0929,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NE,Nebraska,202401,Y,U,Y,12306.0,,0.0,,12306.0,,7165.0,,833.0,,7998.0,,187620.0,,366331.0,,326832.0,,39499.0,,,,916.0,,1191.0,,4168.0,,2214.0,,2510.0,,45103.0,Does not include all calls received after business hours; Includes calls for other benefit programs,3.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,0.0929,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NE,Nebraska,202402,Y,P,N,9368.0,,0.0,,9368.0,,7627.0,,909.0,,8536.0,,182742.0,,356475.0,,318335.0,,38140.0,,,,1023.0,,1520.0,,3303.0,,1378.0,,1858.0,,38136.0,Does not include all calls received after business hours; Includes calls for other benefit programs,4.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,0.0905,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NE,Nebraska,202402,Y,U,Y,9368.0,,0.0,,9368.0,,7627.0,,909.0,,8536.0,,186396.0,,363055.0,,323556.0,,39499.0,,,,1023.0,,1520.0,,3303.0,,1378.0,,1858.0,,38136.0,Does not include all calls received after business hours; Includes calls for other benefit programs,4.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,0.0905,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NE,Nebraska,202403,Y,P,N,9437.0,,0.0,,9437.0,,7360.0,,912.0,,8272.0,,182809.0,,356394.0,,318387.0,,38007.0,,,,1534.0,,3461.0,,1153.0,,1338.0,,1584.0,,35970.0,Does not include all calls received after business hours; Includes calls for other benefit programs,4.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,0.0915,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NE,Nebraska,202403,Y,U,Y,9437.0,,0.0,,9437.0,,7360.0,,912.0,,8272.0,,185301.0,,361331.0,,322856.0,,38475.0,,,,1534.0,,3461.0,,1153.0,,1338.0,,1584.0,,35970.0,Does not include all calls received after business hours; Includes calls for other benefit programs,4.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,0.0915,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NE,Nebraska,202404,Y,P,N,9663.0,,0.0,,9663.0,,7013.0,,798.0,,7811.0,,181093.0,,352634.0,,315316.0,,37318.0,,,,1406.0,,3641.0,,879.0,,1411.0,,1487.0,,35808.0,Does not include all calls received after business hours; Includes calls for other benefit programs,4.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,0.1005,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NE,Nebraska,202404,Y,U,Y,9663.0,,0.0,,9663.0,,7013.0,,798.0,,7811.0,,183539.0,,357541.0,,319673.0,,37868.0,,,,1406.0,,3641.0,,879.0,,1411.0,,1487.0,,35808.0,Does not include all calls received after business hours; Includes calls for other benefit programs,4.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,0.1005,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NE,Nebraska,202405,Y,P,N,9993.0,,0.0,,9993.0,,7339.0,,824.0,,8163.0,,179439.0,,348927.0,,311993.0,,36934.0,,,,1142.0,,3962.0,,1185.0,,1770.0,,1003.0,,35207.0,Does not include all calls received after business hours; Includes calls for other benefit programs,4.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,0.106,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NE,Nebraska,202405,Y,U,Y,9993.0,,0.0,,9993.0,,7339.0,,824.0,,8163.0,,181554.0,,353233.0,,315861.0,,37372.0,,,,1142.0,,3962.0,,1185.0,,1770.0,,1003.0,,35207.0,Does not include all calls received after business hours; Includes calls for other benefit programs,4.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,0.106,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NE,Nebraska,202406,Y,P,N,9279.0,,0.0,,9279.0,,6087.0,,698.0,,6785.0,,177678.0,,345461.0,,308951.0,,36510.0,,,,873.0,,3318.0,,1051.0,,1826.0,,454.0,,31254.0,Does not include all calls received after business hours; Includes calls for other benefit programs,3.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,0.0923,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NE,Nebraska,202406,Y,U,Y,9279.0,,0.0,,9279.0,,6087.0,,698.0,,6785.0,,180093.0,,350394.0,,313375.0,,37019.0,,,,873.0,,3318.0,,1051.0,,1826.0,,454.0,,31254.0,Does not include all calls received after business hours; Includes calls for other benefit programs,3.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,0.0923,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NE,Nebraska,202407,Y,P,N,10995.0,,0.0,,10995.0,,7190.0,,841.0,,8031.0,,177554.0,,344920.0,,308361.0,,36559.0,,167366.0,,915.0,,3164.0,,1851.0,,1971.0,,521.0,,36426.0,Does not include all calls received after business hours; Includes calls for other benefit programs,4.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,0.1356,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NE,Nebraska,202407,Y,U,Y,10995.0,,0.0,,10995.0,,7190.0,,841.0,,8031.0,,180179.0,,350106.0,,313040.0,,37066.0,,169927.0,,915.0,,3164.0,,1851.0,,1971.0,,521.0,,36426.0,Does not include all calls received after business hours; Includes calls for other benefit programs,4.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,0.1356,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NE,Nebraska,202408,Y,P,N,11227.0,,0.0,,11227.0,,7839.0,,927.0,,8766.0,,177108.0,,345006.0,,309215.0,,35791.0,,167898.0,,773.0,,3236.0,,2606.0,,2162.0,,918.0,,35576.0,Does not include all calls received after business hours; Includes calls for other benefit programs,7.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,0.1819,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NE,Nebraska,202408,Y,U,Y,11227.0,,0.0,,11227.0,,7839.0,,927.0,,8766.0,,180757.0,,351117.0,,313753.0,,37364.0,,170360.0,,773.0,,3236.0,,2606.0,,2162.0,,918.0,,35576.0,Does not include all calls received after business hours; Includes calls for other benefit programs,7.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,0.1819,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NE,Nebraska,202409,Y,P,N,10878.0,,0.0,,10878.0,,7005.0,,851.0,,7856.0,,176286.0,,342546.0,,305834.0,,36712.0,,166260.0,,670.0,,3366.0,,1708.0,,2296.0,,616.0,,32619.0,Does not include all calls received after business hours; Includes calls for other benefit programs,6.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,0.1411,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NE,Nebraska,202409,Y,U,Y,10878.0,,0.0,,10878.0,,7005.0,,851.0,,7856.0,,179219.0,,348216.0,,310887.0,,37329.0,,168997.0,,670.0,,3366.0,,1708.0,,2296.0,,616.0,,32619.0,Does not include all calls received after business hours; Includes calls for other benefit programs,6.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,0.1411,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NE,Nebraska,202410,Y,P,N,12097.0,,0.0,,12097.0,,7191.0,,883.0,,8074.0,,175580.0,,341081.0,,304300.0,,36781.0,,165501.0,,710.0,,2249.0,,3163.0,,2150.0,,645.0,,35313.0,Does not include all calls received after business hours; Includes calls for other benefit programs,6.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,0.1315,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NE,Nebraska,202410,Y,U,Y,12097.0,,0.0,,12097.0,,7191.0,,883.0,,8074.0,,178322.0,,346463.0,,309060.0,,37403.0,,168141.0,,710.0,,2249.0,,3163.0,,2150.0,,645.0,,35313.0,Does not include all calls received after business hours; Includes calls for other benefit programs,6.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,0.1315,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NE,Nebraska,202411,Y,P,N,10656.0,,0.0,,10656.0,,6795.0,,1024.0,,7819.0,,174688.0,,339545.0,,302679.0,,36866.0,,164857.0,,821.0,,1053.0,,5410.0,,1686.0,,611.0,,31034.0,Does not include all calls received after business hours; Includes calls for other benefit programs,6.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,0.1341,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NE,Nebraska,202411,Y,U,Y,10656.0,,0.0,,10656.0,,6795.0,,1024.0,,7819.0,,177898.0,,346176.0,,308616.0,,37560.0,,168278.0,,821.0,,1053.0,,5410.0,,1686.0,,611.0,,31034.0,Does not include all calls received after business hours; Includes calls for other benefit programs,6.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,0.1341,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NE,Nebraska,202412,Y,P,N,10631.0,,0.0,,10631.0,,7668.0,,1123.0,,8791.0,,174719.0,,339924.0,,302971.0,,36953.0,,165205.0,,1050.0,,1578.0,,6128.0,,1596.0,,1619.0,,33610.0,Does not include all calls received after business hours; Includes calls for other benefit programs,5.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,0.1139,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NE,Nebraska,202412,Y,U,Y,10631.0,,0.0,,10631.0,,7668.0,,1123.0,,8791.0,,178027.0,,346843.0,,309152.0,,37691.0,,168816.0,,1050.0,,1578.0,,6128.0,,1596.0,,1619.0,,33610.0,Does not include all calls received after business hours; Includes calls for other benefit programs,5.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,0.1139,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NE,Nebraska,202501,Y,P,N,12534.0,,0.0,,12534.0,,7937.0,,1047.0,,8984.0,,175214.0,,340521.0,,303668.0,,36853.0,,165307.0,,946.0,,2000.0,,4833.0,,1486.0,,3048.0,,36927.0,Does not include all calls received after business hours; Includes calls for other benefit programs,5.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,0.1069,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NE,Nebraska,202501,Y,U,Y,12534.0,,0.0,,12534.0,,7937.0,,1047.0,,8984.0,,178104.0,,346601.0,,309233.0,,37368.0,,168497.0,,946.0,,2000.0,,4833.0,,1486.0,,3048.0,,36927.0,Does not include all calls received after business hours; Includes calls for other benefit programs,5.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,0.1069,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NE,Nebraska,202502,Y,P,N,9087.0,,0.0,,9087.0,,6983.0,,837.0,,7820.0,,175900.0,,341428.0,,304517.0,,36911.0,,165528.0,,1386.0,,1676.0,,3325.0,,1165.0,,2232.0,,29893.0,Does not include all calls received after business hours; Includes calls for other benefit programs,5.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,0.109,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NE,Nebraska,202502,Y,U,Y,9087.0,,0.0,,9087.0,,6983.0,,837.0,,7820.0,,178682.0,,347070.0,,309542.0,,37528.0,,168388.0,,1386.0,,1676.0,,3325.0,,1165.0,,2232.0,,29893.0,Does not include all calls received after business hours; Includes calls for other benefit programs,5.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,0.109,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NE,Nebraska,202503,Y,P,N,9611.0,,0.0,,9611.0,,6744.0,,763.0,,7507.0,,175324.0,,341370.0,,305657.0,,35713.0,,166046.0,,1648.0,,1997.0,,1475.0,,1379.0,,2337.0,,30271.0,Does not include all calls received after business hours; Includes calls for other benefit programs,5.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,0.104,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NE,Nebraska,202503,Y,U,Y,9611.0,,0.0,,9611.0,,6744.0,,763.0,,7507.0,,177629.0,,346177.0,,310047.0,,36130.0,,168548.0,,1648.0,,1997.0,,1475.0,,1379.0,,2337.0,,30271.0,Does not include all calls received after business hours; Includes calls for other benefit programs,5.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,0.104,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NE,Nebraska,202504,Y,P,N,9764.0,,0.0,,9764.0,,6317.0,,843.0,,7160.0,,175316.0,,340215.0,,304693.0,,35522.0,,164899.0,,1631.0,,2295.0,,1588.0,,1703.0,,807.0,,30418.0,Does not include all calls received after business hours; Includes calls for other benefit programs,7.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,0.1343,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NE,Nebraska,202504,Y,U,Y,9764.0,,0.0,,9764.0,,6317.0,,843.0,,7160.0,,177216.0,,344450.0,,308538.0,,35912.0,,167234.0,,1631.0,,2295.0,,1588.0,,1703.0,,807.0,,30418.0,Does not include all calls received after business hours; Includes calls for other benefit programs,7.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,0.1343,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NE,Nebraska,202505,Y,P,N,9599.0,,0.0,,9599.0,,6111.0,,764.0,,6875.0,,174234.0,,337915.0,,302650.0,,35265.0,,163681.0,,816.0,,1648.0,,3465.0,,878.0,,437.0,,29187.0,Does not include all calls received after business hours,8.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.142,Does not include all calls received after business hours +NE,Nebraska,202505,Y,U,Y,9599.0,,0.0,,9599.0,,6111.0,,764.0,,6875.0,,177697.0,,343735.0,,306738.0,,36997.0,,166038.0,,816.0,,1648.0,,3465.0,,878.0,,437.0,,29187.0,Does not include all calls received after business hours,8.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.142,Does not include all calls received after business hours +NE,Nebraska,202506,Y,P,N,9615.0,,0.0,,9615.0,,6255.0,,800.0,,7055.0,,174067.0,,336301.0,,299820.0,,36481.0,,162234.0,,720.0,,3007.0,,2727.0,,656.0,,382.0,,28014.0,Does not include all calls received after business hours,8.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.148,Does not include all calls received after business hours +NE,Nebraska,202506,Y,U,Y,9615.0,,0.0,,9615.0,,6255.0,,800.0,,7055.0,,176445.0,,341200.0,,304276.0,,36924.0,,164755.0,,720.0,,3007.0,,2727.0,,656.0,,382.0,,28014.0,Does not include all calls received after business hours,8.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.148,Does not include all calls received after business hours +NE,Nebraska,202507,Y,P,N,10486.0,,0.0,,10486.0,,6997.0,,953.0,,7950.0,,173912.0,,336229.0,,299661.0,,36568.0,,162317.0,,1115.0,,3232.0,,2739.0,,722.0,,451.0,,29474.0,Does not include all calls received after business hours,8.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.145,Does not include all calls received after business hours +NE,Nebraska,202507,Y,U,Y,10486.0,,0.0,,10486.0,,6997.0,,953.0,,7950.0,,176111.0,,340661.0,,303625.0,,37036.0,,164550.0,,1115.0,,3232.0,,2739.0,,722.0,,451.0,,29474.0,Does not include all calls received after business hours,8.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.145,Does not include all calls received after business hours +NE,Nebraska,202508,Y,P,N,9781.0,,0.0,,9781.0,,6412.0,,849.0,,7261.0,,173060.0,,335452.0,,298787.0,,36665.0,,162392.0,,1200.0,,2986.0,,2658.0,,505.0,,315.0,,23864.0,Does not include all calls received after business hours,6.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.118,Does not include all calls received after business hours +NE,Nebraska,202508,Y,U,Y,9781.0,,0.0,,9781.0,,6412.0,,849.0,,7261.0,,175477.0,,340223.0,,303085.0,,37138.0,,164746.0,,1200.0,,2986.0,,2658.0,,505.0,,315.0,,23864.0,Does not include all calls received after business hours,6.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.118,Does not include all calls received after business hours +NE,Nebraska,202509,Y,P,N,9804.0,,0.0,,9804.0,,6619.0,,895.0,,7514.0,,172560.0,,334401.0,,297775.0,,36626.0,,161841.0,,1139.0,,3226.0,,2836.0,,599.0,,336.0,,22984.0,Does not include all calls received after business hours,6.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.105,Does not include all calls received after business hours +NE,Nebraska,202509,Y,U,Y,9804.0,,0.0,,9804.0,,6619.0,,895.0,,7514.0,,174618.0,,338698.0,,301632.0,,37066.0,,164080.0,,1139.0,,3226.0,,2836.0,,599.0,,336.0,,22984.0,Does not include all calls received after business hours,6.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.105,Does not include all calls received after business hours +NE,Nebraska,202510,Y,P,N,9082.0,,0.0,,9082.0,,6020.0,,861.0,,6881.0,,171952.0,,333543.0,,296869.0,,36674.0,,161591.0,,1245.0,,3138.0,,2637.0,,452.0,,442.0,,20588.0,Does not include all calls received after business hours,6.0,Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.099,Does not include all calls received after business hours +NH,New Hampshire,201309,N,U,Y,,,,,,,,,,,,,,,127082.0,,,,,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,201706,Y,P,N,8201.0,,0.0,,8201.0,,5214.0,,465.0,,5679.0,,92060.0,,185374.0,,171787.0,,13587.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,201706,Y,U,Y,8201.0,,0.0,,8201.0,,5214.0,,465.0,,5679.0,,93276.0,,188296.0,,174526.0,,13770.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,201707,Y,P,N,7835.0,,0.0,,7835.0,,4959.0,,497.0,,5456.0,,91546.0,,184252.0,,170619.0,,13633.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,201707,Y,U,Y,7835.0,,0.0,,7835.0,,4959.0,,497.0,,5456.0,,93045.0,,187798.0,,173900.0,,13898.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,201708,Y,P,N,8913.0,,0.0,,8913.0,,5554.0,,511.0,,6065.0,,91789.0,,184887.0,,171162.0,,13725.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,201708,Y,U,Y,8913.0,,0.0,,8913.0,,5554.0,,511.0,,6065.0,,93131.0,,188058.0,,174120.0,,13938.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,201709,Y,P,N,8218.0,,0.0,,8218.0,,5001.0,,527.0,,5528.0,,91780.0,,184349.0,,170399.0,,13950.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,201709,Y,U,Y,8218.0,,0.0,,8218.0,,5001.0,,527.0,,5528.0,,93221.0,,187720.0,,173528.0,,14192.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,201710,Y,P,N,8623.0,,0.0,,8623.0,,5214.0,,537.0,,5751.0,,91451.0,,183693.0,,169602.0,,14091.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,201710,Y,U,Y,8623.0,,0.0,,8623.0,,5214.0,,537.0,,5751.0,,92847.0,,187056.0,,172691.0,,14365.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,201711,Y,P,N,7897.0,,0.0,,7897.0,,6027.0,,699.0,,6726.0,,91773.0,,184782.0,,170433.0,,14349.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,201711,Y,U,Y,7897.0,,0.0,,7897.0,,6027.0,,699.0,,6726.0,,93477.0,,188951.0,,174152.0,,14799.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,201712,Y,P,N,8017.0,,0.0,,8017.0,,6332.0,,764.0,,7096.0,,92068.0,,185663.0,,170936.0,,14727.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,201712,Y,U,Y,8017.0,,0.0,,8017.0,,6332.0,,764.0,,7096.0,,93672.0,,189811.0,,174766.0,,15045.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,201801,Y,P,N,9677.0,,0.0,,9677.0,,5949.0,,596.0,,6545.0,,91965.0,,185543.0,,171123.0,,14420.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,201801,Y,U,Y,9677.0,,0.0,,9677.0,,5949.0,,596.0,,6545.0,,93349.0,,188893.0,,174232.0,,14661.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,201802,Y,P,N,8247.0,,0.0,,8247.0,,5289.0,,499.0,,5788.0,,91554.0,,184549.0,,170169.0,,14380.0,,,,663.0,,3130.0,,2551.0,,156.0,,178.0,,,,,,, +NH,New Hampshire,201802,Y,U,Y,8247.0,,0.0,,8247.0,,5289.0,,499.0,,5788.0,,92862.0,,187828.0,,173222.0,,14606.0,,,,663.0,,3130.0,,2551.0,,156.0,,178.0,,,,,,, +NH,New Hampshire,201803,Y,P,N,8661.0,,0.0,,8661.0,,5367.0,,511.0,,5878.0,,91327.0,,184446.0,,170137.0,,14309.0,,,,832.0,,3607.0,,2071.0,,129.0,,150.0,,,,,,, +NH,New Hampshire,201803,Y,U,Y,8661.0,,0.0,,8661.0,,5367.0,,511.0,,5878.0,,92583.0,,187515.0,,173028.0,,14487.0,,,,832.0,,3607.0,,2071.0,,129.0,,150.0,,,,,,, +NH,New Hampshire,201804,Y,P,N,8585.0,,0.0,,8585.0,,5282.0,,510.0,,5792.0,,91209.0,,184151.0,,169939.0,,14212.0,,,,749.0,,3622.0,,2177.0,,114.0,,156.0,,,,,,, +NH,New Hampshire,201804,Y,U,Y,8585.0,,0.0,,8585.0,,5282.0,,510.0,,5792.0,,92397.0,,187165.0,,172759.0,,14406.0,,,,749.0,,3622.0,,2177.0,,114.0,,156.0,,,,,,, +NH,New Hampshire,201805,Y,P,N,8555.0,,0.0,,8555.0,,5253.0,,460.0,,5713.0,,90933.0,,183843.0,,169683.0,,14160.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,201805,Y,U,Y,8555.0,,0.0,,8555.0,,5253.0,,460.0,,5713.0,,92116.0,,186588.0,,172248.0,,14340.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,201806,Y,P,N,7724.0,,0.0,,7724.0,,4661.0,,472.0,,5133.0,,90471.0,,182839.0,,168637.0,,14202.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,201806,Y,U,Y,7724.0,,0.0,,7724.0,,4661.0,,472.0,,5133.0,,91532.0,,185529.0,,171141.0,,14388.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,201807,Y,P,N,7801.0,,0.0,,7801.0,,4688.0,,430.0,,5118.0,,90058.0,,182182.0,,167895.0,,14287.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,201807,Y,U,Y,7801.0,,0.0,,7801.0,,4688.0,,430.0,,5118.0,,91286.0,,185233.0,,170725.0,,14508.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,201808,Y,P,N,8345.0,,0.0,,8345.0,,5047.0,,468.0,,5515.0,,90074.0,,182386.0,,168074.0,,14312.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,201808,Y,U,Y,8345.0,,0.0,,8345.0,,5047.0,,468.0,,5515.0,,91367.0,,185159.0,,170585.0,,14574.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,201809,Y,P,N,7300.0,,0.0,,7300.0,,4385.0,,445.0,,4830.0,,89750.0,,181155.0,,166778.0,,14377.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,201809,Y,U,Y,7300.0,,0.0,,7300.0,,4385.0,,445.0,,4830.0,,91241.0,,184595.0,,169991.0,,14604.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,201810,Y,P,N,8428.0,,0.0,,8428.0,,5003.0,,493.0,,5496.0,,89719.0,,180843.0,,166366.0,,14477.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,201810,Y,U,Y,8428.0,,0.0,,8428.0,,5003.0,,493.0,,5496.0,,90965.0,,183733.0,,169012.0,,14721.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,201811,Y,P,N,6946.0,,0.0,,6946.0,,4781.0,,534.0,,5315.0,,89563.0,,180354.0,,165654.0,,14700.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,201811,Y,U,Y,6946.0,,0.0,,6946.0,,4781.0,,534.0,,5315.0,,91199.0,,184130.0,,169046.0,,15084.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,201812,Y,P,N,7726.0,,0.0,,7726.0,,5535.0,,669.0,,6204.0,,89518.0,,180324.0,,165346.0,,14978.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,201812,Y,U,Y,7726.0,,0.0,,7726.0,,5535.0,,669.0,,6204.0,,91337.0,,184476.0,,169089.0,,15387.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,201901,Y,P,N,9613.0,,0.0,,9613.0,,5878.0,,590.0,,6468.0,,90177.0,,181293.0,,166181.0,,15112.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,201901,Y,U,Y,9700.0,,0.0,,9700.0,,5971.0,,587.0,,6558.0,,91335.0,,183652.0,,168348.0,,15304.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,201902,Y,P,N,7106.0,,0.0,,7106.0,,4232.0,,416.0,,4648.0,,89277.0,,179504.0,,164572.0,,14932.0,,,,719.0,,2363.0,,2108.0,,106.0,,82.0,,,,,,, +NH,New Hampshire,201902,Y,U,Y,7106.0,,0.0,,7106.0,,4232.0,,416.0,,4648.0,,90588.0,,182131.0,,166972.0,,15159.0,,,,719.0,,2363.0,,2108.0,,106.0,,82.0,,,,,,, +NH,New Hampshire,201903,Y,P,N,8104.0,,0.0,,8104.0,,4719.0,,469.0,,5188.0,,88871.0,,178260.0,,163613.0,,14647.0,,,,844.0,,2753.0,,2298.0,,129.0,,92.0,,,,,,, +NH,New Hampshire,201903,Y,U,Y,8104.0,,0.0,,8104.0,,4719.0,,469.0,,5188.0,,90339.0,,181447.0,,166526.0,,14921.0,,,,844.0,,2753.0,,2298.0,,129.0,,92.0,,,,,,, +NH,New Hampshire,201904,Y,P,N,8551.0,,0.0,,8551.0,,5057.0,,522.0,,5579.0,,88766.0,,178019.0,,163291.0,,14728.0,,,,811.0,,2974.0,,2596.0,,134.0,,147.0,,,,,,, +NH,New Hampshire,201904,Y,U,Y,8551.0,,0.0,,8551.0,,5057.0,,522.0,,5579.0,,90036.0,,180751.0,,165822.0,,14929.0,,,,811.0,,2974.0,,2596.0,,134.0,,147.0,,,,,,, +NH,New Hampshire,201905,Y,P,N,7940.0,,0.0,,7940.0,,4752.0,,495.0,,5247.0,,88446.0,,177278.0,,162683.0,,14595.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,201905,Y,U,Y,7940.0,,0.0,,7940.0,,4752.0,,495.0,,5247.0,,89616.0,,179771.0,,164925.0,,14846.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,201906,Y,P,N,7128.0,,0.0,,7128.0,,4097.0,,481.0,,4578.0,,88080.0,,175951.0,,161386.0,,14565.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,201906,Y,U,Y,7128.0,,0.0,,7128.0,,4097.0,,481.0,,4578.0,,89380.0,,178783.0,,163964.0,,14819.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,201907,Y,P,N,8014.0,,0.0,,8014.0,,5009.0,,466.0,,5475.0,,88097.0,,176139.0,,161556.0,,14583.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,201907,Y,U,Y,8014.0,,0.0,,8014.0,,5009.0,,466.0,,5475.0,,89372.0,,178761.0,,163979.0,,14782.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,201908,Y,P,N,8283.0,,0.0,,8283.0,,5276.0,,587.0,,5863.0,,87952.0,,175840.0,,161181.0,,14659.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,201908,Y,U,Y,8283.0,,0.0,,8283.0,,5276.0,,587.0,,5863.0,,89254.0,,178753.0,,163884.0,,14869.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,201909,Y,P,N,8134.0,,0.0,,8134.0,,5177.0,,513.0,,5690.0,,87918.0,,175658.0,,160951.0,,14707.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,201909,Y,U,Y,8134.0,,0.0,,8134.0,,5177.0,,513.0,,5690.0,,89217.0,,178759.0,,163838.0,,14921.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,201910,Y,P,N,8509.0,,0.0,,8509.0,,5267.0,,602.0,,5869.0,,88061.0,,176384.0,,161499.0,,14885.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,201910,Y,U,Y,8509.0,,0.0,,8509.0,,5267.0,,602.0,,5869.0,,89163.0,,178976.0,,163908.0,,15068.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,201911,Y,P,N,6591.0,,0.0,,6591.0,,5121.0,,677.0,,5798.0,,87952.0,,176734.0,,161605.0,,15129.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,201911,Y,U,Y,6591.0,,0.0,,6591.0,,5121.0,,677.0,,5798.0,,89475.0,,180333.0,,164859.0,,15474.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,201912,Y,P,N,7078.0,,0.0,,7078.0,,5831.0,,881.0,,6712.0,,88277.0,,178310.0,,162916.0,,15394.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,201912,Y,U,Y,7078.0,,0.0,,7078.0,,5831.0,,881.0,,6712.0,,89779.0,,181753.0,,166028.0,,15725.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,202001,Y,P,N,8679.0,,0.0,,8679.0,,5552.0,,644.0,,6196.0,,88526.0,,179085.0,,163809.0,,15276.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,202001,Y,U,Y,8679.0,,0.0,,8679.0,,5552.0,,644.0,,6196.0,,89798.0,,181909.0,,166374.0,,15535.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,202002,Y,P,N,7138.0,,0.0,,7138.0,,4533.0,,587.0,,5120.0,,88366.0,,178920.0,,163597.0,,15323.0,,,,1884.0,,2006.0,,1800.0,,73.0,,108.0,,,,,,, +NH,New Hampshire,202002,Y,U,Y,7138.0,,0.0,,7138.0,,4533.0,,587.0,,5120.0,,89507.0,,181726.0,,166220.0,,15506.0,,,,1884.0,,2006.0,,1800.0,,73.0,,108.0,,,,,,, +NH,New Hampshire,202003,Y,P,N,7942.0,,0.0,,7942.0,,4953.0,,634.0,,5587.0,,88356.0,,179494.0,,164350.0,,15144.0,,,,1956.0,,2312.0,,1938.0,,76.0,,114.0,,,,,,, +NH,New Hampshire,202003,Y,U,Y,7998.0,,0.0,,7998.0,,5404.0,,521.0,,5925.0,,89762.0,,183172.0,,167761.0,,15411.0,,,,1967.0,,2493.0,,1896.0,,83.0,,107.0,,,,,,, +NH,New Hampshire,202004,Y,P,N,6034.0,,0.0,,6034.0,,5047.0,,379.0,,5426.0,,90642.0,,187067.0,,172296.0,,14771.0,,,,1682.0,,2671.0,,1183.0,,35.0,,88.0,,,,,,, +NH,New Hampshire,202004,Y,U,Y,6034.0,,0.0,,6034.0,,5047.0,,379.0,,5426.0,,91385.0,,189297.0,,174388.0,,14909.0,,,,1682.0,,2671.0,,1183.0,,35.0,,88.0,,,,,,, +NH,New Hampshire,202005,Y,P,N,3477.0,,0.0,,3477.0,,2718.0,,225.0,,2943.0,,91798.0,,190983.0,,176799.0,,14184.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,202005,Y,U,Y,3477.0,,0.0,,3477.0,,2718.0,,225.0,,2943.0,,92275.0,,192026.0,,177782.0,,14244.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,202006,Y,P,N,3465.0,,0.0,,3465.0,,2694.0,,249.0,,2943.0,,92797.0,,193436.0,,179122.0,,14314.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,202006,Y,U,Y,3465.0,,0.0,,3465.0,,2694.0,,249.0,,2943.0,,93373.0,,194886.0,,180488.0,,14398.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,202007,Y,P,N,3598.0,,0.0,,3598.0,,2839.0,,224.0,,3063.0,,93828.0,,196204.0,,181735.0,,14469.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,202007,Y,U,Y,3598.0,,0.0,,3598.0,,2839.0,,224.0,,3063.0,,94414.0,,197601.0,,183068.0,,14533.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,202008,Y,P,N,3944.0,,0.0,,3944.0,,3000.0,,252.0,,3252.0,,94647.0,,198597.0,,183687.0,,14910.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,202008,Y,U,Y,3944.0,,0.0,,3944.0,,3000.0,,252.0,,3252.0,,95385.0,,200566.0,,185570.0,,14996.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,202009,Y,P,N,4189.0,,0.0,,4189.0,,3178.0,,245.0,,3423.0,,95610.0,,201813.0,,186589.0,,15224.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,202009,Y,U,Y,4189.0,,0.0,,4189.0,,3178.0,,245.0,,3423.0,,96208.0,,203242.0,,187944.0,,15298.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,202010,Y,P,N,3901.0,,0.0,,3901.0,,2976.0,,198.0,,3174.0,,96407.0,,204156.0,,188410.0,,15746.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,202010,Y,U,Y,3901.0,,0.0,,3901.0,,2976.0,,198.0,,3174.0,,96981.0,,205690.0,,189869.0,,15821.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,202011,Y,P,N,3260.0,,0.0,,3260.0,,3794.0,,452.0,,4246.0,,97458.0,,207883.0,,191609.0,,16274.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,202011,Y,U,Y,3260.0,,0.0,,3260.0,,3794.0,,452.0,,4246.0,,98179.0,,209795.0,,193394.0,,16401.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,202012,Y,P,N,3551.0,,0.0,,3551.0,,4259.0,,447.0,,4706.0,,98736.0,,212321.0,,195520.0,,16801.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,202012,Y,U,Y,3551.0,,0.0,,3551.0,,4259.0,,447.0,,4706.0,,99267.0,,213815.0,,196956.0,,16859.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,202101,Y,P,N,3342.0,,0.0,,3342.0,,2562.0,,219.0,,2781.0,,98528.0,,214094.0,,196965.0,,17129.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,202101,Y,U,Y,3342.0,,0.0,,3342.0,,2562.0,,219.0,,2781.0,,99026.0,,215263.0,,198083.0,,17180.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,202102,Y,P,N,2701.0,,0.0,,2701.0,,2203.0,,157.0,,2360.0,,98892.0,,215614.0,,198303.0,,17311.0,,,,641.0,,943.0,,631.0,,33.0,,65.0,,,,,,, +NH,New Hampshire,202102,Y,U,Y,2701.0,,0.0,,2701.0,,2203.0,,157.0,,2360.0,,99441.0,,217023.0,,199668.0,,17355.0,,,,641.0,,943.0,,631.0,,33.0,,65.0,,,,,,, +NH,New Hampshire,202103,Y,P,N,3234.0,,0.0,,3234.0,,2663.0,,234.0,,2897.0,,99411.0,,217682.0,,200087.0,,17595.0,,,,760.0,,1265.0,,802.0,,23.0,,86.0,,,,,,, +NH,New Hampshire,202103,Y,U,Y,3234.0,,0.0,,3234.0,,2663.0,,234.0,,2897.0,,99876.0,,218999.0,,201358.0,,17641.0,,,,760.0,,1265.0,,802.0,,23.0,,86.0,,,,,,, +NH,New Hampshire,202104,Y,P,N,2916.0,,0.0,,2916.0,,2537.0,,273.0,,2810.0,,99885.0,,219586.0,,201518.0,,18068.0,,,,662.0,,1444.0,,714.0,,25.0,,60.0,,,,,,, +NH,New Hampshire,202104,Y,U,Y,2916.0,,0.0,,2916.0,,2537.0,,273.0,,2810.0,,100317.0,,220682.0,,202563.0,,18119.0,,,,662.0,,1444.0,,714.0,,25.0,,60.0,,,,,,, +NH,New Hampshire,202105,Y,P,N,2646.0,,0.0,,2646.0,,2237.0,,204.0,,2441.0,,100133.0,,220849.0,,202381.0,,18468.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,202105,Y,U,Y,2646.0,,0.0,,2646.0,,2237.0,,204.0,,2441.0,,100600.0,,222041.0,,203521.0,,18520.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,202106,Y,P,N,2932.0,,0.0,,2932.0,,2378.0,,234.0,,2612.0,,100543.0,,222259.0,,203501.0,,18758.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,202106,Y,U,Y,2932.0,,0.0,,2932.0,,2378.0,,234.0,,2612.0,,100990.0,,223380.0,,204564.0,,18816.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,202107,Y,P,N,2949.0,,0.0,,2949.0,,2341.0,,238.0,,2579.0,,100848.0,,223522.0,,204507.0,,19015.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,202107,Y,U,Y,2949.0,,0.0,,2949.0,,2341.0,,238.0,,2579.0,,101388.0,,225025.0,,205958.0,,19067.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,202108,Y,P,N,3212.0,,0.0,,3212.0,,2775.0,,253.0,,3028.0,,101171.0,,225262.0,,205953.0,,19309.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,202108,Y,U,Y,3212.0,,0.0,,3212.0,,2775.0,,253.0,,3028.0,,101670.0,,226428.0,,207073.0,,19355.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,202109,Y,P,N,3121.0,,0.0,,3121.0,,2290.0,,224.0,,2514.0,,101742.0,,227012.0,,207408.0,,19604.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,202109,Y,U,Y,3121.0,,0.0,,3121.0,,2290.0,,224.0,,2514.0,,102493.0,,230085.0,,210338.0,,19747.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,202110,Y,P,N,3326.0,,0.0,,3326.0,,2653.0,,191.0,,2844.0,,102473.0,,230164.0,,210122.0,,20042.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,202110,Y,U,Y,3326.0,,0.0,,3326.0,,2653.0,,191.0,,2844.0,,102905.0,,231312.0,,211231.0,,20081.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,202111,Y,P,N,2819.0,,0.0,,2819.0,,3013.0,,373.0,,3386.0,,103186.0,,232557.0,,212033.0,,20524.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,202111,Y,U,Y,2819.0,,0.0,,2819.0,,3013.0,,373.0,,3386.0,,103666.0,,233812.0,,213216.0,,20596.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,202112,Y,P,N,2570.0,,0.0,,2570.0,,3163.0,,325.0,,3488.0,,103879.0,,235050.0,,214096.0,,20954.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,202112,Y,U,Y,2570.0,,0.0,,2570.0,,3163.0,,325.0,,3488.0,,104343.0,,236195.0,,215170.0,,21025.0,,,,,,,,,,,,,,,,,,, +NH,New Hampshire,202201,Y,P,N,3003.0,,0.0,,3003.0,,2853.0,,297.0,,3150.0,,104430.0,,236926.0,,215528.0,,21398.0,,,,544.0,,1576.0,,767.0,,38.0,,231.0,,,,,,, +NH,New Hampshire,202201,Y,U,Y,3003.0,,0.0,,3003.0,,2853.0,,297.0,,3150.0,,104857.0,,237886.0,,216445.0,,21441.0,,,,544.0,,1576.0,,767.0,,38.0,,231.0,,,,,,, +NH,New Hampshire,202202,Y,P,N,2588.0,,0.0,,2588.0,,1992.0,,207.0,,2199.0,,104380.0,,237372.0,,215724.0,,21648.0,,,,520.0,,825.0,,457.0,,34.0,,164.0,,,,,,, +NH,New Hampshire,202202,Y,U,Y,2588.0,,0.0,,2588.0,,1992.0,,207.0,,2199.0,,104887.0,,238521.0,,216828.0,,21693.0,,,,520.0,,825.0,,457.0,,34.0,,164.0,,,,,,, +NH,New Hampshire,202203,Y,P,N,3092.0,,0.0,,3092.0,,2446.0,,197.0,,2643.0,,104348.0,,238152.0,,216722.0,,21430.0,,,,404.0,,1196.0,,768.0,,22.0,,128.0,,,,,,, +NH,New Hampshire,202203,Y,U,Y,3092.0,,0.0,,3092.0,,2446.0,,197.0,,2643.0,,104757.0,,239140.0,,217660.0,,21480.0,,,,404.0,,1196.0,,768.0,,22.0,,128.0,,,,,,, +NH,New Hampshire,202204,Y,P,N,2529.0,,0.0,,2529.0,,1898.0,,217.0,,2115.0,,104493.0,,238938.0,,217239.0,,21699.0,,,,528.0,,892.0,,561.0,,11.0,,100.0,,,,,,, +NH,New Hampshire,202204,Y,U,Y,2529.0,,0.0,,2529.0,,1898.0,,217.0,,2115.0,,104864.0,,239843.0,,218110.0,,21733.0,,,,528.0,,892.0,,561.0,,11.0,,100.0,,,,,,, +NH,New Hampshire,202205,Y,P,N,2554.0,,0.0,,2554.0,,2027.0,,178.0,,2205.0,,104583.0,,239613.0,,217680.0,,21933.0,,,,538.0,,995.0,,475.0,,13.0,,138.0,,,,,,, +NH,New Hampshire,202205,Y,U,Y,2554.0,,0.0,,2554.0,,2027.0,,178.0,,2205.0,,105018.0,,240614.0,,218644.0,,21970.0,,,,538.0,,995.0,,475.0,,13.0,,138.0,,,,,,, +NH,New Hampshire,202206,Y,P,N,2819.0,,0.0,,2819.0,,2168.0,,201.0,,2369.0,,104972.0,,240796.0,,218628.0,,22168.0,,,,621.0,,953.0,,570.0,,26.0,,98.0,,,,,,, +NH,New Hampshire,202206,Y,U,Y,2819.0,,0.0,,2819.0,,2168.0,,201.0,,2369.0,,105363.0,,241793.0,,219585.0,,22208.0,,,,621.0,,953.0,,570.0,,26.0,,98.0,,,,,,, +NH,New Hampshire,202207,Y,P,N,2479.0,,0.0,,2479.0,,1909.0,,203.0,,2112.0,,105027.0,,241672.0,,219028.0,,22644.0,,,,461.0,,937.0,,475.0,,19.0,,77.0,,,,,,, +NH,New Hampshire,202207,Y,U,Y,2479.0,,0.0,,2479.0,,1909.0,,203.0,,2112.0,,105511.0,,242720.0,,220034.0,,22686.0,,,,461.0,,937.0,,475.0,,19.0,,77.0,,,,,,, +NH,New Hampshire,202208,Y,P,N,2948.0,,0.0,,2948.0,,2229.0,,237.0,,2466.0,,105345.0,,242584.0,,219693.0,,22891.0,,,,634.0,,933.0,,588.0,,20.0,,127.0,,,,,,, +NH,New Hampshire,202208,Y,U,Y,2948.0,,0.0,,2948.0,,2229.0,,237.0,,2466.0,,105827.0,,243549.0,,220606.0,,22943.0,,,,634.0,,933.0,,588.0,,20.0,,127.0,,,,,,, +NH,New Hampshire,202209,Y,P,N,2866.0,,0.0,,2866.0,,2138.0,,232.0,,2370.0,,105700.0,,243643.0,,220529.0,,23114.0,,,,610.0,,909.0,,531.0,,20.0,,120.0,,,,,,, +NH,New Hampshire,202209,Y,U,Y,2866.0,,0.0,,2866.0,,2138.0,,232.0,,2370.0,,106182.0,,244648.0,,221472.0,,23176.0,,,,610.0,,909.0,,531.0,,20.0,,120.0,,,,,,, +NH,New Hampshire,202210,Y,P,N,2725.0,,0.0,,2725.0,,2006.0,,250.0,,2256.0,,106058.0,,244752.0,,221291.0,,23461.0,,,,491.0,,922.0,,573.0,,25.0,,153.0,,,,,,, +NH,New Hampshire,202210,Y,U,Y,2725.0,,0.0,,2725.0,,2006.0,,250.0,,2256.0,,106565.0,,245788.0,,222283.0,,23505.0,,,,491.0,,922.0,,573.0,,25.0,,153.0,,,,,,, +NH,New Hampshire,202211,Y,P,N,2618.0,,0.0,,2618.0,,2949.0,,335.0,,3284.0,,106487.0,,246489.0,,222692.0,,23797.0,,,,538.0,,1820.0,,803.0,,31.0,,155.0,,,,,,, +NH,New Hampshire,202211,Y,U,Y,2618.0,,0.0,,2618.0,,2949.0,,335.0,,3284.0,,107026.0,,247780.0,,223899.0,,23881.0,,,,538.0,,1820.0,,803.0,,31.0,,155.0,,,,,,, +NH,New Hampshire,202212,Y,P,N,2565.0,,0.0,,2565.0,,3035.0,,322.0,,3357.0,,107165.0,,248811.0,,224565.0,,24246.0,,,,484.0,,1994.0,,953.0,,20.0,,87.0,,,,,,, +NH,New Hampshire,202212,Y,U,Y,2565.0,,0.0,,2565.0,,3035.0,,322.0,,3357.0,,107667.0,,249906.0,,225619.0,,24287.0,,,,484.0,,1994.0,,953.0,,20.0,,87.0,,,,,,, +NH,New Hampshire,202301,Y,P,N,2828.0,,0.0,,2828.0,,2471.0,,266.0,,2737.0,,107567.0,,250207.0,,225607.0,,24600.0,,,,552.0,,1247.0,,683.0,,57.0,,212.0,,,,,,, +NH,New Hampshire,202301,Y,U,Y,2828.0,,0.0,,2828.0,,2471.0,,266.0,,2737.0,,107967.0,,251061.0,,226410.0,,24651.0,,,,552.0,,1247.0,,683.0,,57.0,,212.0,,,,,,, +NH,New Hampshire,202302,Y,P,N,2915.0,,0.0,,2915.0,,2347.0,,203.0,,2550.0,,107624.0,,250666.0,,225678.0,,24988.0,,,,369.0,,877.0,,499.0,,34.0,,233.0,,,,,,, +NH,New Hampshire,202302,Y,U,Y,2915.0,,0.0,,2915.0,,2347.0,,203.0,,2550.0,,108059.0,,251610.0,,226574.0,,25036.0,,,,369.0,,877.0,,499.0,,34.0,,233.0,,,,,,, +NH,New Hampshire,202303,Y,P,N,4793.0,,0.0,,4793.0,,3033.0,,366.0,,3399.0,,107863.0,,251681.0,,227977.0,,23704.0,,,,1297.0,,1482.0,,767.0,,30.0,,113.0,,17579.0,Does not include all calls received after business hours; Includes calls for other benefit programs,10.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.12,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NH,New Hampshire,202303,Y,U,Y,4793.0,,0.0,,4793.0,,3033.0,,366.0,,3399.0,,108297.0,,253166.0,,229437.0,,23729.0,,,,1297.0,,1482.0,,767.0,,30.0,,113.0,,17579.0,Does not include all calls received after business hours; Includes calls for other benefit programs,10.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.12,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NH,New Hampshire,202304,Y,P,N,6747.0,,0.0,,6747.0,,3840.0,,501.0,,4341.0,,99796.0,,224365.0,,202540.0,,21825.0,,,,1769.0,,2125.0,,1231.0,,43.0,,165.0,,15340.0,Does not include all calls received after business hours; Includes calls for other benefit programs,11.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.11,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NH,New Hampshire,202304,Y,U,Y,6747.0,,0.0,,6747.0,,3840.0,,501.0,,4341.0,,100762.0,,226579.0,,204645.0,,21934.0,,,,1769.0,,2125.0,,1231.0,,43.0,,165.0,,15340.0,Does not include all calls received after business hours; Includes calls for other benefit programs,11.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.11,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NH,New Hampshire,202305,Y,P,N,8375.0,,0.0,,8375.0,,4697.0,,650.0,,5347.0,,94657.0,,210333.0,,190761.0,,19572.0,,,,2436.0,,2295.0,,1779.0,,78.0,,234.0,,15981.0,Does not include all calls received after business hours; Includes calls for other benefit programs,11.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.12,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NH,New Hampshire,202305,Y,U,Y,8375.0,,0.0,,8375.0,,4697.0,,650.0,,5347.0,,95663.0,,212544.0,,192790.0,,19754.0,,,,2436.0,,2295.0,,1779.0,,78.0,,234.0,,15981.0,Does not include all calls received after business hours; Includes calls for other benefit programs,11.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.12,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NH,New Hampshire,202306,Y,P,N,8041.0,,0.0,,8041.0,,4354.0,,587.0,,4941.0,,90320.0,,198986.0,,180873.0,,18113.0,,,,2429.0,,2049.0,,1582.0,,100.0,,181.0,,17209.0,Does not include all calls received after business hours; Includes calls for other benefit programs,12.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.12,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NH,New Hampshire,202306,Y,U,Y,8041.0,,0.0,,8041.0,,4354.0,,587.0,,4941.0,,91469.0,,201379.0,,183007.0,,18372.0,,,,2429.0,,2049.0,,1582.0,,100.0,,181.0,,17209.0,Does not include all calls received after business hours; Includes calls for other benefit programs,12.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.12,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NH,New Hampshire,202307,Y,P,N,7120.0,,0.0,,7120.0,,4043.0,,489.0,,4532.0,,89633.0,,191087.0,,173055.0,,18032.0,,,,2058.0,,1666.0,,1512.0,,123.0,,195.0,,16149.0,Does not include all calls received after business hours; Includes calls for other benefit programs,15.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.13,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NH,New Hampshire,202307,Y,U,Y,7120.0,,0.0,,7120.0,,4043.0,,489.0,,4532.0,,90901.0,,194105.0,,175844.0,,18261.0,,,,2058.0,,1666.0,,1512.0,,123.0,,195.0,,35515.0,Does not include all calls received after business hours; Includes calls for other benefit programs,6.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.08,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NH,New Hampshire,202308,Y,P,N,8142.0,,0.0,,8142.0,,4712.0,,541.0,,5253.0,,89476.0,,186240.0,,168260.0,,17980.0,,,,2292.0,,2112.0,,1618.0,,108.0,,204.0,,19137.0,Does not include all calls received after business hours; Includes calls for other benefit programs,15.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.14,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NH,New Hampshire,202308,Y,U,Y,8142.0,,0.0,,8142.0,,4712.0,,541.0,,5253.0,,92091.0,,192049.0,,173411.0,,18638.0,,,,2292.0,,2112.0,,1618.0,,108.0,,204.0,,41862.0,Does not include all calls received after business hours; Includes calls for other benefit programs,6.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.06,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NH,New Hampshire,202309,Y,P,N,6982.0,,0.0,,6982.0,,3927.0,,596.0,,4523.0,,88053.0,,184454.0,,166817.0,,17637.0,,,,1896.0,,1887.0,,1405.0,,112.0,,178.0,,39680.0,Does not include all calls received after business hours; Includes calls for other benefit programs,7.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.07,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NH,New Hampshire,202309,Y,U,Y,6982.0,,0.0,,6982.0,,3927.0,,596.0,,4523.0,,89170.0,,187087.0,,169224.0,,17863.0,,,,1896.0,,1887.0,,1405.0,,112.0,,178.0,,39680.0,Does not include all calls received after business hours; Includes calls for other benefit programs,7.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.07,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NH,New Hampshire,202310,Y,P,N,6960.0,,0.0,,6960.0,,3818.0,,511.0,,4329.0,,86691.0,,181458.0,,164024.0,,17434.0,,,,1727.0,,1951.0,,1361.0,,124.0,,305.0,,39943.0,Does not include all calls received after business hours; Includes calls for other benefit programs,7.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.06,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NH,New Hampshire,202310,Y,U,Y,6960.0,,0.0,,6960.0,,3818.0,,511.0,,4329.0,,87864.0,,184327.0,,166639.0,,17688.0,,,,1727.0,,1951.0,,1361.0,,124.0,,305.0,,39943.0,Does not include all calls received after business hours; Includes calls for other benefit programs,7.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.06,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NH,New Hampshire,202311,Y,P,N,6486.0,,0.0,,6486.0,,4923.0,,752.0,,5675.0,,86531.0,,181463.0,,163837.0,,17626.0,,,,1881.0,,3208.0,,1888.0,,70.0,,208.0,,39822.0,Does not include all calls received after business hours; Includes calls for other benefit programs,6.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.08,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NH,New Hampshire,202311,Y,U,Y,6486.0,,0.0,,6486.0,,4923.0,,752.0,,5675.0,,87653.0,,184153.0,,166274.0,,17879.0,,,,1881.0,,3208.0,,1888.0,,70.0,,208.0,,39822.0,Does not include all calls received after business hours; Includes calls for other benefit programs,6.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.08,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NH,New Hampshire,202312,Y,P,N,5736.0,,0.0,,5736.0,,4679.0,,698.0,,5377.0,,86680.0,,181783.0,,163879.0,,17904.0,,,,1563.0,,3266.0,,1643.0,,95.0,,125.0,,36078.0,Does not include all calls received after business hours; Includes calls for other benefit programs,7.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.06,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NH,New Hampshire,202312,Y,U,Y,5736.0,,0.0,,5736.0,,4679.0,,698.0,,5377.0,,87981.0,,185127.0,,166949.0,,18178.0,,,,1563.0,,3266.0,,1643.0,,95.0,,125.0,,36078.0,Does not include all calls received after business hours; Includes calls for other benefit programs,7.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.06,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NH,New Hampshire,202401,Y,P,N,6477.0,,0.0,,6477.0,,4344.0,,551.0,,4895.0,,87695.0,,183262.0,,165122.0,,18140.0,,,,1604.0,,2152.0,,1854.0,,128.0,,233.0,,40989.0,Does not include all calls received after business hours; Includes calls for other benefit programs,7.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.06,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NH,New Hampshire,202401,Y,U,Y,6477.0,,0.0,,6477.0,,4344.0,,551.0,,4895.0,,88597.0,,185699.0,,167427.0,,18272.0,,,,1604.0,,2152.0,,1854.0,,128.0,,233.0,,40989.0,Does not include all calls received after business hours; Includes calls for other benefit programs,7.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.06,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NH,New Hampshire,202402,Y,P,N,5298.0,,0.0,,5298.0,,3070.0,,345.0,,3415.0,,88114.0,,183817.0,,165446.0,,18371.0,,,,1219.0,,1709.0,,1125.0,,55.0,,115.0,,33449.0,Does not include all calls received after business hours; Includes calls for other benefit programs,4.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.05,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NH,New Hampshire,202402,Y,U,Y,5298.0,,0.0,,5298.0,,3070.0,,345.0,,3415.0,,88929.0,,186005.0,,167509.0,,18496.0,,,,1219.0,,1709.0,,1125.0,,55.0,,115.0,,33449.0,Does not include all calls received after business hours; Includes calls for other benefit programs,4.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.05,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NH,New Hampshire,202403,Y,P,N,5134.0,,0.0,,5134.0,,3011.0,,355.0,,3366.0,,88508.0,,184325.0,,165960.0,,18365.0,,,,1250.0,,1692.0,,1040.0,,58.0,,73.0,,31530.0,Does not include all calls received after business hours; Includes calls for other benefit programs,3.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.04,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NH,New Hampshire,202403,Y,U,Y,5134.0,,0.0,,5134.0,,3011.0,,355.0,,3366.0,,89258.0,,186492.0,,167997.0,,18495.0,,,,1250.0,,1692.0,,1040.0,,58.0,,73.0,,31530.0,Does not include all calls received after business hours; Includes calls for other benefit programs,3.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.04,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NH,New Hampshire,202404,Y,P,N,5035.0,,0.0,,5035.0,,3003.0,,395.0,,3398.0,,88774.0,,184564.0,,166182.0,,18382.0,,,,1173.0,,1964.0,,875.0,,26.0,,84.0,,30622.0,Does not include all calls received after business hours; Includes calls for other benefit programs,2.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.04,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NH,New Hampshire,202404,Y,U,Y,5035.0,,0.0,,5035.0,,3003.0,,395.0,,3398.0,,89435.0,,186448.0,,167987.0,,18461.0,,,,1173.0,,1964.0,,875.0,,26.0,,84.0,,30622.0,Does not include all calls received after business hours; Includes calls for other benefit programs,2.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.04,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NH,New Hampshire,202405,Y,P,N,4915.0,,0.0,,4915.0,,2972.0,,419.0,,3391.0,,88790.0,,184296.0,,166020.0,,18276.0,,,,1288.0,,1729.0,,838.0,,20.0,,76.0,,29196.0,Does not include all calls received after business hours; Includes calls for other benefit programs,3.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.04,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NH,New Hampshire,202405,Y,U,Y,4915.0,,0.0,,4915.0,,2972.0,,419.0,,3391.0,,89392.0,,185999.0,,167605.0,,18394.0,,,,1288.0,,1729.0,,838.0,,20.0,,76.0,,29196.0,Does not include all calls received after business hours; Includes calls for other benefit programs,3.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.04,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NH,New Hampshire,202406,Y,P,N,4181.0,,0.0,,4181.0,,2607.0,,308.0,,2915.0,,88727.0,,183842.0,,165666.0,,18176.0,,,,1034.0,,1490.0,,746.0,,14.0,,74.0,,26801.0,Does not include all calls received after business hours; Includes calls for other benefit programs,3.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.04,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NH,New Hampshire,202406,Y,U,Y,4181.0,,0.0,,4181.0,,2607.0,,308.0,,2915.0,,89424.0,,185942.0,,167649.0,,18293.0,,,,1034.0,,1490.0,,746.0,,14.0,,74.0,,26801.0,Does not include all calls received after business hours; Includes calls for other benefit programs,3.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.04,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NH,New Hampshire,202407,Y,P,N,4542.0,,0.0,,4542.0,,3091.0,,336.0,,3427.0,,88965.0,,184257.0,,166110.0,,18147.0,,95292.0,,1134.0,,1689.0,,860.0,,43.0,,81.0,,32278.0,Does not include all calls received after business hours; Includes calls for other benefit programs,3.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.06,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NH,New Hampshire,202407,Y,U,Y,4542.0,,0.0,,4542.0,,3091.0,,336.0,,3427.0,,89637.0,,186122.0,,167852.0,,18270.0,,96485.0,,1134.0,,1689.0,,860.0,,43.0,,81.0,,32278.0,Does not include all calls received after business hours; Includes calls for other benefit programs,3.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.06,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NH,New Hampshire,202408,Y,P,N,4553.0,,0.0,,4553.0,,2932.0,,358.0,,3290.0,,89032.0,,183898.0,,165703.0,,18195.0,,94866.0,,1178.0,,1552.0,,854.0,,35.0,,65.0,,33803.0,Does not include all calls received after business hours; Includes calls for other benefit programs,4.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.07,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NH,New Hampshire,202408,Y,U,Y,4553.0,,0.0,,4553.0,,2932.0,,358.0,,3290.0,,89723.0,,185923.0,,167603.0,,18320.0,,96200.0,,1178.0,,1552.0,,854.0,,35.0,,65.0,,33803.0,Does not include all calls received after business hours; Includes calls for other benefit programs,4.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.07,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NH,New Hampshire,202409,Y,P,N,4491.0,,0.0,,4491.0,,2989.0,,351.0,,3340.0,,88877.0,,183254.0,,165016.0,,18238.0,,94377.0,,1160.0,,1509.0,,841.0,,59.0,,95.0,,33457.0,Does not include all calls received after business hours; Includes calls for other benefit programs,7.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.07,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NH,New Hampshire,202409,Y,U,Y,4491.0,,0.0,,4491.0,,2989.0,,351.0,,3340.0,,89603.0,,185293.0,,166940.0,,18353.0,,95690.0,,1160.0,,1509.0,,841.0,,59.0,,95.0,,33457.0,Does not include all calls received after business hours; Includes calls for other benefit programs,7.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.07,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NH,New Hampshire,202410,Y,P,N,4500.0,,0.0,,4500.0,,2999.0,,394.0,,3393.0,,89195.0,,183563.0,,165238.0,,18325.0,,94368.0,,1117.0,,1696.0,,882.0,,65.0,,83.0,,34728.0,Does not include all calls received after business hours; Includes calls for other benefit programs,5.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.05,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NH,New Hampshire,202410,Y,U,Y,4500.0,,0.0,,4500.0,,2999.0,,394.0,,3393.0,,89775.0,,185345.0,,166932.0,,18413.0,,95570.0,,1117.0,,1696.0,,882.0,,65.0,,83.0,,34728.0,Does not include all calls received after business hours; Includes calls for other benefit programs,5.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.05,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NH,New Hampshire,202411,Y,P,N,3675.0,,0.0,,3675.0,,3518.0,,496.0,,4014.0,,89640.0,,184431.0,,165705.0,,18726.0,,94791.0,,940.0,,2861.0,,852.0,,40.0,,54.0,,32320.0,Does not include all calls received after business hours; Includes calls for other benefit programs,6.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.07,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NH,New Hampshire,202411,Y,U,Y,3675.0,,0.0,,3675.0,,3518.0,,496.0,,4014.0,,90411.0,,186857.0,,167951.0,,18906.0,,96446.0,,940.0,,2861.0,,852.0,,40.0,,54.0,,32320.0,Does not include all calls received after business hours; Includes calls for other benefit programs,6.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.07,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NH,New Hampshire,202412,Y,P,N,4061.0,Count is of individuals as opposed to applications,0.0,,4061.0,Count is of individuals as opposed to applications,4301.0,Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations; Does Not Include All CHIP Determinations Made At Application,730.0,Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations; Does Not Include All CHIP Determinations Made At Application,5031.0,Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations; Does Not Include All CHIP Determinations Made At Application,90275.0,Includes Retroactive Enrollments,186008.0,Includes Retroactive Enrollments,166813.0,Includes Retroactive Enrollments,19195.0,Includes Retroactive Enrollments,95733.0,Includes Retroactive Enrollments,987.0,Does not include all MAGI determinations on applications,3435.0,Does not include all MAGI determinations on applications,1306.0,Does not include all MAGI determinations on applications,72.0,Does not include all MAGI determinations on applications,76.0,Does not include all MAGI determinations on applications,35458.0,Does not include all calls received after business hours; Includes calls for other benefit programs,7.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.09,Does not include all calls received after business hours; Includes calls for other benefit programs +NH,New Hampshire,202412,Y,U,Y,4061.0,Count is of individuals as opposed to applications,0.0,,4061.0,Count is of individuals as opposed to applications,4301.0,Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations; Does Not Include All CHIP Determinations Made At Application,730.0,Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations; Does Not Include All CHIP Determinations Made At Application,5031.0,Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations; Does Not Include All CHIP Determinations Made At Application,90985.0,Includes Retroactive Enrollments,188207.0,Includes Retroactive Enrollments,168870.0,Includes Retroactive Enrollments,19337.0,Includes Retroactive Enrollments,97222.0,Includes Retroactive Enrollments,987.0,Does not include all MAGI determinations on applications,3435.0,Does not include all MAGI determinations on applications,1306.0,Does not include all MAGI determinations on applications,72.0,Does not include all MAGI determinations on applications,76.0,Does not include all MAGI determinations on applications,35458.0,Does not include all calls received after business hours; Includes calls for other benefit programs,7.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.09,Does not include all calls received after business hours; Includes calls for other benefit programs +NH,New Hampshire,202501,Y,P,N,4741.0,Count is of individuals as opposed to applications,0.0,,4741.0,Count is of individuals as opposed to applications,3687.0,Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations; Does Not Include All CHIP Determinations Made At Application,492.0,Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations; Does Not Include All CHIP Determinations Made At Application,4179.0,Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations; Does Not Include All CHIP Determinations Made At Application,90652.0,Includes Retroactive Enrollments,187085.0,Includes Retroactive Enrollments,167700.0,Includes Retroactive Enrollments,19385.0,Includes Retroactive Enrollments,96433.0,Includes Retroactive Enrollments,1139.0,Does not include all MAGI determinations on applications,2113.0,Does not include all MAGI determinations on applications,1228.0,Does not include all MAGI determinations on applications,129.0,Does not include all MAGI determinations on applications,107.0,Does not include all MAGI determinations on applications,41436.0,Does not include all calls received after business hours; Includes calls for other benefit programs,7.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.11,Does not include all calls received after business hours; Includes calls for other benefit programs +NH,New Hampshire,202501,Y,U,Y,4741.0,Count is of individuals as opposed to applications,0.0,,4741.0,Count is of individuals as opposed to applications,3687.0,Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations; Does Not Include All CHIP Determinations Made At Application,492.0,Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations; Does Not Include All CHIP Determinations Made At Application,4179.0,Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations; Does Not Include All CHIP Determinations Made At Application,91249.0,Includes Retroactive Enrollments,188905.0,Includes Retroactive Enrollments,169413.0,Includes Retroactive Enrollments,19492.0,Includes Retroactive Enrollments,97656.0,Includes Retroactive Enrollments,1139.0,Does not include all MAGI determinations on applications,2113.0,Does not include all MAGI determinations on applications,1228.0,Does not include all MAGI determinations on applications,129.0,Does not include all MAGI determinations on applications,107.0,Does not include all MAGI determinations on applications,41436.0,Does not include all calls received after business hours; Includes calls for other benefit programs,7.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.11,Does not include all calls received after business hours; Includes calls for other benefit programs +NH,New Hampshire,202502,Y,P,N,3817.0,Count is of individuals as opposed to applications,0.0,,3817.0,Count is of individuals as opposed to applications,2489.0,Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations; Does Not Include All CHIP Determinations Made At Application,267.0,Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations; Does Not Include All CHIP Determinations Made At Application,2756.0,Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations; Does Not Include All CHIP Determinations Made At Application,90630.0,Includes Retroactive Enrollments,186933.0,Includes Retroactive Enrollments,167627.0,Includes Retroactive Enrollments,19306.0,Includes Retroactive Enrollments,96303.0,Includes Retroactive Enrollments,874.0,Does not include all MAGI determinations on applications,1171.0,Does not include all MAGI determinations on applications,785.0,Does not include all MAGI determinations on applications,99.0,Does not include all MAGI determinations on applications,113.0,Does not include all MAGI determinations on applications,34796.0,Does not include all calls received after business hours; Includes calls for other benefit programs,6.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.1,Does not include all calls received after business hours; Includes calls for other benefit programs +NH,New Hampshire,202502,Y,U,Y,3817.0,Count is of individuals as opposed to applications,0.0,,3817.0,Count is of individuals as opposed to applications,2489.0,Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations; Does Not Include All CHIP Determinations Made At Application,267.0,Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations; Does Not Include All CHIP Determinations Made At Application,2756.0,Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations; Does Not Include All CHIP Determinations Made At Application,91217.0,Includes Retroactive Enrollments,188741.0,Includes Retroactive Enrollments,169349.0,Includes Retroactive Enrollments,19392.0,Includes Retroactive Enrollments,97524.0,Includes Retroactive Enrollments,874.0,Does not include all MAGI determinations on applications,1171.0,Does not include all MAGI determinations on applications,785.0,Does not include all MAGI determinations on applications,99.0,Does not include all MAGI determinations on applications,113.0,Does not include all MAGI determinations on applications,34796.0,Does not include all calls received after business hours; Includes calls for other benefit programs,6.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.1,Does not include all calls received after business hours; Includes calls for other benefit programs +NH,New Hampshire,202503,Y,P,N,4216.0,Count is of individuals as opposed to applications,0.0,,4216.0,Count is of individuals as opposed to applications,2778.0,Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations; Does Not Include All CHIP Determinations Made At Application,294.0,Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations; Does Not Include All CHIP Determinations Made At Application,3072.0,Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations; Does Not Include All CHIP Determinations Made At Application,90471.0,Includes Retroactive Enrollments,186379.0,Includes Retroactive Enrollments,167130.0,Includes Retroactive Enrollments,19249.0,Includes Retroactive Enrollments,95908.0,Includes Retroactive Enrollments,1056.0,Does not include all MAGI determinations on applications,1369.0,Does not include all MAGI determinations on applications,872.0,Does not include all MAGI determinations on applications,63.0,Does not include all MAGI determinations on applications,85.0,Does not include all MAGI determinations on applications,31651.0,Does not include all calls received after business hours; Includes calls for other benefit programs,6.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.07,Does not include all calls received after business hours; Includes calls for other benefit programs +NH,New Hampshire,202503,Y,U,Y,4216.0,Count is of individuals as opposed to applications,0.0,,4216.0,Count is of individuals as opposed to applications,2778.0,Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations; Does Not Include All CHIP Determinations Made At Application,294.0,Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations; Does Not Include All CHIP Determinations Made At Application,3072.0,Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations; Does Not Include All CHIP Determinations Made At Application,91097.0,Includes Retroactive Enrollments,188266.0,Includes Retroactive Enrollments,168922.0,Includes Retroactive Enrollments,19344.0,Includes Retroactive Enrollments,97169.0,Includes Retroactive Enrollments,1056.0,Does not include all MAGI determinations on applications,1369.0,Does not include all MAGI determinations on applications,872.0,Does not include all MAGI determinations on applications,63.0,Does not include all MAGI determinations on applications,85.0,Does not include all MAGI determinations on applications,31651.0,Does not include all calls received after business hours; Includes calls for other benefit programs,6.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.07,Does not include all calls received after business hours; Includes calls for other benefit programs +NH,New Hampshire,202504,Y,P,N,4268.0,Count is of individuals as opposed to applications,0.0,,4268.0,Count is of individuals as opposed to applications,2758.0,Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations; Does Not Include All CHIP Determinations Made At Application,372.0,Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations; Does Not Include All CHIP Determinations Made At Application,3130.0,Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations; Does Not Include All CHIP Determinations Made At Application,90381.0,Includes Retroactive Enrollments,186143.0,Includes Retroactive Enrollments,166846.0,Includes Retroactive Enrollments,19297.0,Includes Retroactive Enrollments,95762.0,Includes Retroactive Enrollments,1152.0,Does not include all MAGI determinations on applications,1368.0,Does not include all MAGI determinations on applications,897.0,Does not include all MAGI determinations on applications,27.0,Does not include all MAGI determinations on applications,98.0,Does not include all MAGI determinations on applications,28769.0,Does not include all calls received after business hours; Includes calls for other benefit programs,4.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.05,Does not include all calls received after business hours; Includes calls for other benefit programs +NH,New Hampshire,202504,Y,U,Y,4268.0,Count is of individuals as opposed to applications,0.0,,4268.0,Count is of individuals as opposed to applications,2758.0,Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations; Does Not Include All CHIP Determinations Made At Application,372.0,Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations; Does Not Include All CHIP Determinations Made At Application,3130.0,Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations; Does Not Include All CHIP Determinations Made At Application,90921.0,Includes Retroactive Enrollments,187860.0,Includes Retroactive Enrollments,168488.0,Includes Retroactive Enrollments,19372.0,Includes Retroactive Enrollments,96939.0,Includes Retroactive Enrollments,1152.0,Does not include all MAGI determinations on applications,1368.0,Does not include all MAGI determinations on applications,897.0,Does not include all MAGI determinations on applications,27.0,Does not include all MAGI determinations on applications,98.0,Does not include all MAGI determinations on applications,28769.0,Does not include all calls received after business hours; Includes calls for other benefit programs,4.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.05,Does not include all calls received after business hours; Includes calls for other benefit programs +NH,New Hampshire,202505,Y,P,N,4203.0,Count is of individuals as opposed to applications,0.0,,4203.0,Count is of individuals as opposed to applications,2743.0,Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations; Does Not Include All CHIP Determinations Made At Application,375.0,Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations; Does Not Include All CHIP Determinations Made At Application,3118.0,Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations; Does Not Include All CHIP Determinations Made At Application,90170.0,Includes Retroactive Enrollments,185365.0,Includes Retroactive Enrollments,166056.0,Includes Retroactive Enrollments,19309.0,Includes Retroactive Enrollments,95195.0,Includes Retroactive Enrollments,1041.0,Does not include all MAGI determinations on applications,1591.0,Does not include all MAGI determinations on applications,754.0,Does not include all MAGI determinations on applications,37.0,Does not include all MAGI determinations on applications,55.0,Does not include all MAGI determinations on applications,27049.0,Does not include all calls received after business hours; Includes calls for other benefit programs,3.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.06,Does not include all calls received after business hours; Includes calls for other benefit programs +NH,New Hampshire,202505,Y,U,Y,4203.0,Count is of individuals as opposed to applications,0.0,,4203.0,Count is of individuals as opposed to applications,2743.0,Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations; Does Not Include All CHIP Determinations Made At Application,375.0,Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations; Does Not Include All CHIP Determinations Made At Application,3118.0,Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations; Does Not Include All CHIP Determinations Made At Application,90719.0,Includes Retroactive Enrollments,187021.0,Includes Retroactive Enrollments,167632.0,Includes Retroactive Enrollments,19389.0,Includes Retroactive Enrollments,96302.0,Includes Retroactive Enrollments,1041.0,Does not include all MAGI determinations on applications,1591.0,Does not include all MAGI determinations on applications,754.0,Does not include all MAGI determinations on applications,37.0,Does not include all MAGI determinations on applications,55.0,Does not include all MAGI determinations on applications,27049.0,Does not include all calls received after business hours; Includes calls for other benefit programs,3.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.06,Does not include all calls received after business hours; Includes calls for other benefit programs +NH,New Hampshire,202506,Y,P,N,4116.0,Count is of individuals as opposed to applications,0.0,,4116.0,Count is of individuals as opposed to applications,2713.0,Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations; Does Not Include All CHIP Determinations Made At Application,269.0,Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations; Does Not Include All CHIP Determinations Made At Application,2982.0,Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations; Does Not Include All CHIP Determinations Made At Application,89837.0,Includes Retroactive Enrollments,184218.0,Includes Retroactive Enrollments,165281.0,Includes Retroactive Enrollments,18937.0,Includes Retroactive Enrollments,94381.0,Includes Retroactive Enrollments,1050.0,Does not include all MAGI determinations on applications,1476.0,Does not include all MAGI determinations on applications,700.0,Does not include all MAGI determinations on applications,45.0,Does not include all MAGI determinations on applications,52.0,Does not include all MAGI determinations on applications,28120.0,Does not include all calls received after business hours; Includes calls for other benefit programs,4.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.05,Does not include all calls received after business hours; Includes calls for other benefit programs +NH,New Hampshire,202506,Y,U,Y,4116.0,Count is of individuals as opposed to applications,0.0,,4116.0,Count is of individuals as opposed to applications,2713.0,Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations; Does Not Include All CHIP Determinations Made At Application,269.0,Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations; Does Not Include All CHIP Determinations Made At Application,2982.0,Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations; Does Not Include All CHIP Determinations Made At Application,90409.0,Includes Retroactive Enrollments,186006.0,Includes Retroactive Enrollments,166937.0,Includes Retroactive Enrollments,19069.0,Includes Retroactive Enrollments,95597.0,Includes Retroactive Enrollments,1050.0,Does not include all MAGI determinations on applications,1476.0,Does not include all MAGI determinations on applications,700.0,Does not include all MAGI determinations on applications,45.0,Does not include all MAGI determinations on applications,52.0,Does not include all MAGI determinations on applications,28120.0,Does not include all calls received after business hours; Includes calls for other benefit programs,4.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.05,Does not include all calls received after business hours; Includes calls for other benefit programs +NH,New Hampshire,202507,Y,P,N,5024.0,Count is of individuals as opposed to applications,0.0,,5024.0,Count is of individuals as opposed to applications,3255.0,Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations; Does Not Include All CHIP Determinations Made At Application,390.0,Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations; Does Not Include All CHIP Determinations Made At Application,3645.0,Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations; Does Not Include All CHIP Determinations Made At Application,89631.0,Includes Retroactive Enrollments,184143.0,Includes Retroactive Enrollments,165199.0,Includes Retroactive Enrollments,18944.0,Includes Retroactive Enrollments,94512.0,Includes Retroactive Enrollments,1395.0,Does not include all MAGI determinations on applications,1558.0,Does not include all MAGI determinations on applications,878.0,Does not include all MAGI determinations on applications,28.0,Does not include all MAGI determinations on applications,96.0,Does not include all MAGI determinations on applications,35224.0,Does not include all calls received after business hours; Includes calls for other benefit programs,6.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.08,Does not include all calls received after business hours; Includes calls for other benefit programs +NH,New Hampshire,202507,Y,U,Y,5024.0,Count is of individuals as opposed to applications,0.0,,5024.0,Count is of individuals as opposed to applications,3255.0,Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations; Does Not Include All CHIP Determinations Made At Application,390.0,Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations; Does Not Include All CHIP Determinations Made At Application,3645.0,Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations; Does Not Include All CHIP Determinations Made At Application,90268.0,Includes Retroactive Enrollments,185960.0,Includes Retroactive Enrollments,166903.0,Includes Retroactive Enrollments,19057.0,Includes Retroactive Enrollments,95692.0,Includes Retroactive Enrollments,1395.0,Does not include all MAGI determinations on applications,1558.0,Does not include all MAGI determinations on applications,878.0,Does not include all MAGI determinations on applications,28.0,Does not include all MAGI determinations on applications,96.0,Does not include all MAGI determinations on applications,35224.0,Does not include all calls received after business hours; Includes calls for other benefit programs,6.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.08,Does not include all calls received after business hours; Includes calls for other benefit programs +NH,New Hampshire,202508,Y,P,N,4845.0,Count is of individuals as opposed to applications,0.0,,4845.0,Count is of individuals as opposed to applications,3188.0,Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations; Does Not Include All CHIP Determinations Made At Application,381.0,Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations; Does Not Include All CHIP Determinations Made At Application,3569.0,Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations; Does Not Include All CHIP Determinations Made At Application,89119.0,Includes Retroactive Enrollments,181947.0,Includes Retroactive Enrollments,162934.0,Includes Retroactive Enrollments,19013.0,Includes Retroactive Enrollments,92828.0,Includes Retroactive Enrollments,1412.0,Does not include all MAGI determinations on applications,1472.0,Does not include all MAGI determinations on applications,825.0,Does not include all MAGI determinations on applications,51.0,Does not include all MAGI determinations on applications,54.0,Does not include all MAGI determinations on applications,33316.0,Does not include all calls received after business hours; Includes calls for other benefit programs,4.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.05,Does not include all calls received after business hours; Includes calls for other benefit programs +NH,New Hampshire,202508,Y,U,Y,4845.0,Count is of individuals as opposed to applications,0.0,,4845.0,Count is of individuals as opposed to applications,3188.0,Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations; Does Not Include All CHIP Determinations Made At Application,381.0,Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations; Does Not Include All CHIP Determinations Made At Application,3569.0,Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations; Does Not Include All CHIP Determinations Made At Application,89844.0,Includes Retroactive Enrollments,183946.0,Includes Retroactive Enrollments,164820.0,Includes Retroactive Enrollments,19126.0,Includes Retroactive Enrollments,94102.0,Includes Retroactive Enrollments,1412.0,Does not include all MAGI determinations on applications,1472.0,Does not include all MAGI determinations on applications,825.0,Does not include all MAGI determinations on applications,51.0,Does not include all MAGI determinations on applications,54.0,Does not include all MAGI determinations on applications,33316.0,Does not include all calls received after business hours; Includes calls for other benefit programs,4.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.05,Does not include all calls received after business hours; Includes calls for other benefit programs +NH,New Hampshire,202509,Y,P,N,5398.0,Count is of individuals as opposed to applications,0.0,,5398.0,Count is of individuals as opposed to applications,3434.0,Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations; Does Not Include All CHIP Determinations Made At Application,455.0,Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations; Does Not Include All CHIP Determinations Made At Application,3889.0,Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations; Does Not Include All CHIP Determinations Made At Application,88292.0,Includes Retroactive Enrollments,179721.0,Includes Retroactive Enrollments,160638.0,Includes Retroactive Enrollments,19083.0,Includes Retroactive Enrollments,91429.0,Includes Retroactive Enrollments,1523.0,Does not include all MAGI determinations on applications,1446.0,Does not include all MAGI determinations on applications,1062.0,Does not include all MAGI determinations on applications,67.0,Does not include all MAGI determinations on applications,145.0,Does not include all MAGI determinations on applications,37531.0,Does not include all calls received after business hours; Includes calls for other benefit programs,4.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.08,Does not include all calls received after business hours; Includes calls for other benefit programs +NH,New Hampshire,202509,Y,U,Y,5398.0,Count is of individuals as opposed to applications,0.0,,5398.0,Count is of individuals as opposed to applications,3434.0,Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations; Does Not Include All CHIP Determinations Made At Application,455.0,Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations; Does Not Include All CHIP Determinations Made At Application,3889.0,Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations; Does Not Include All CHIP Determinations Made At Application,89094.0,Includes Retroactive Enrollments,181858.0,Includes Retroactive Enrollments,162604.0,Includes Retroactive Enrollments,19254.0,Includes Retroactive Enrollments,92764.0,Includes Retroactive Enrollments,1523.0,Does not include all MAGI determinations on applications,1446.0,Does not include all MAGI determinations on applications,1062.0,Does not include all MAGI determinations on applications,67.0,Does not include all MAGI determinations on applications,145.0,Does not include all MAGI determinations on applications,37531.0,Does not include all calls received after business hours; Includes calls for other benefit programs,4.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.08,Does not include all calls received after business hours; Includes calls for other benefit programs +NH,New Hampshire,202510,Y,P,N,5830.0,Count is of individuals as opposed to applications,0.0,,5830.0,Count is of individuals as opposed to applications,3604.0,Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations; Does Not Include All CHIP Determinations Made At Application,525.0,Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations; Does Not Include All CHIP Determinations Made At Application,4129.0,Includes Conditional Eligibility Determinations; Includes Presumptive Eligibility Determinations; Does Not Include All CHIP Determinations Made At Application,87666.0,Includes Retroactive Enrollments,178189.0,Includes Retroactive Enrollments,159136.0,Includes Retroactive Enrollments,19053.0,Includes Retroactive Enrollments,90523.0,Includes Retroactive Enrollments,1516.0,Does not include all MAGI determinations on applications,1709.0,Does not include all MAGI determinations on applications,1160.0,Does not include all MAGI determinations on applications,57.0,Does not include all MAGI determinations on applications,110.0,Does not include all MAGI determinations on applications,37598.0,Does not include all calls received after business hours; Includes calls for other benefit programs,4.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs,0.05,Does not include all calls received after business hours; Includes calls for other benefit programs +NJ,New Jersey,201309,N,U,Y,,,,,,,,,,,,,,,1283851.0,,,,,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,201706,Y,P,N,32212.0,,0.0,,32212.0,,12827.0,Does Not Include All Medicaid Determinations Made At Application,4057.0,Does Not Include All CHIP Determinations Made At Application,16884.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,836645.0,,1764663.0,,1562656.0,,202007.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,201706,Y,U,Y,32212.0,,0.0,,32212.0,,12827.0,Does Not Include All Medicaid Determinations Made At Application,4057.0,Does Not Include All CHIP Determinations Made At Application,16884.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,846848.0,,1787875.0,,1584693.0,,203182.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,201707,Y,P,N,29836.0,,0.0,,29836.0,,10479.0,Does Not Include All Medicaid Determinations Made At Application,3084.0,Does Not Include All CHIP Determinations Made At Application,13563.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,831234.0,,1749353.0,,1547987.0,,201366.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,201707,Y,U,Y,29836.0,,0.0,,29836.0,,10479.0,Does Not Include All Medicaid Determinations Made At Application,3084.0,Does Not Include All CHIP Determinations Made At Application,13563.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,844670.0,,1778951.0,,1576418.0,,202533.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,201708,Y,P,N,31246.0,,0.0,,31246.0,,12656.0,Does Not Include All Medicaid Determinations Made At Application,4664.0,Does Not Include All CHIP Determinations Made At Application,17320.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,830489.0,,1744740.0,,1543338.0,,201402.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,201708,Y,U,Y,31246.0,,0.0,,31246.0,,12656.0,Does Not Include All Medicaid Determinations Made At Application,4664.0,Does Not Include All CHIP Determinations Made At Application,17320.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,842430.0,,1771394.0,,1568626.0,,202768.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,201709,Y,P,N,32777.0,,0.0,,32777.0,,12621.0,Does Not Include All Medicaid Determinations Made At Application,4201.0,Does Not Include All CHIP Determinations Made At Application,16822.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,824822.0,,1732799.0,,1531873.0,,200926.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,201709,Y,U,Y,32777.0,,0.0,,32777.0,,12621.0,Does Not Include All Medicaid Determinations Made At Application,4201.0,Does Not Include All CHIP Determinations Made At Application,16822.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,838831.0,,1763781.0,,1561429.0,,202352.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,201710,Y,P,N,33195.0,,0.0,,33195.0,,18170.0,Does Not Include All Medicaid Determinations Made At Application,6917.0,Does Not Include All CHIP Determinations Made At Application,25087.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,822887.0,,1727726.0,,1527827.0,,199899.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,201710,Y,U,Y,33195.0,,0.0,,33195.0,,18170.0,Does Not Include All Medicaid Determinations Made At Application,6917.0,Does Not Include All CHIP Determinations Made At Application,25087.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,839751.0,,1765184.0,,1563318.0,,201866.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,201711,Y,P,N,30806.0,,0.0,,30806.0,,16481.0,Does Not Include All Medicaid Determinations Made At Application,6932.0,Does Not Include All CHIP Determinations Made At Application,23413.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,826922.0,,1741995.0,,1540193.0,,201802.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,201711,Y,U,Y,30806.0,,0.0,,30806.0,,16481.0,Does Not Include All Medicaid Determinations Made At Application,6932.0,Does Not Include All CHIP Determinations Made At Application,23413.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,840637.0,,1774040.0,,1570565.0,,203475.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,201712,Y,P,N,33269.0,,0.0,,33269.0,,14894.0,Does Not Include All Medicaid Determinations Made At Application,5853.0,Does Not Include All CHIP Determinations Made At Application,20747.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,828478.0,,1744641.0,,1541202.0,,203439.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,201712,Y,U,Y,33269.0,,0.0,,33269.0,,14894.0,Does Not Include All Medicaid Determinations Made At Application,5853.0,Does Not Include All CHIP Determinations Made At Application,20747.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,842187.0,,1779163.0,,1574029.0,,205134.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,201801,Y,P,N,34210.0,,0.0,,34210.0,,14975.0,Does Not Include All Medicaid Determinations Made At Application,5733.0,Does Not Include All CHIP Determinations Made At Application,20708.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,830770.0,,1746907.0,,1542134.0,,204773.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,201801,Y,U,Y,34210.0,,0.0,,34210.0,,14975.0,Does Not Include All Medicaid Determinations Made At Application,5733.0,Does Not Include All CHIP Determinations Made At Application,20708.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,844606.0,,1777619.0,,1571086.0,,206533.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,201802,Y,P,N,30097.0,,0.0,,30097.0,,17458.0,Does Not Include All Medicaid Determinations Made At Application,7577.0,Does Not Include All CHIP Determinations Made At Application,25035.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,834542.0,,1753573.0,,1547234.0,,206339.0,,,,1226.0,Does not include all MAGI determinations on applications,18494.0,Does not include all MAGI determinations on applications,20884.0,Does not include all MAGI determinations on applications,11452.0,Does not include all MAGI determinations on applications,17184.0,Does not include all MAGI determinations on applications,,,,,, +NJ,New Jersey,201802,Y,U,Y,30097.0,,0.0,,30097.0,,17458.0,Does Not Include All Medicaid Determinations Made At Application,7577.0,Does Not Include All CHIP Determinations Made At Application,25035.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,847416.0,,1783242.0,,1575337.0,,207905.0,,,,1226.0,Does not include all MAGI determinations on applications,18494.0,Does not include all MAGI determinations on applications,20884.0,Does not include all MAGI determinations on applications,11452.0,Does not include all MAGI determinations on applications,17184.0,Does not include all MAGI determinations on applications,,,,,, +NJ,New Jersey,201803,Y,P,N,25501.0,,0.0,,25501.0,,20085.0,Does Not Include All Medicaid Determinations Made At Application,7371.0,Does Not Include All CHIP Determinations Made At Application,27456.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,834840.0,,1754277.0,,1546730.0,,207547.0,,,,1930.0,Does not include all MAGI determinations on applications,15924.0,Does not include all MAGI determinations on applications,21743.0,Does not include all MAGI determinations on applications,11391.0,Does not include all MAGI determinations on applications,21288.0,Does not include all MAGI determinations on applications,,,,,, +NJ,New Jersey,201803,Y,U,Y,25501.0,,0.0,,25501.0,,20085.0,Does Not Include All Medicaid Determinations Made At Application,7371.0,Does Not Include All CHIP Determinations Made At Application,27456.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,848575.0,,1784928.0,,1575763.0,,209165.0,,,,1930.0,Does not include all MAGI determinations on applications,15924.0,Does not include all MAGI determinations on applications,21743.0,Does not include all MAGI determinations on applications,11391.0,Does not include all MAGI determinations on applications,21288.0,Does not include all MAGI determinations on applications,,,,,, +NJ,New Jersey,201804,Y,P,N,26661.0,,0.0,,26661.0,,14860.0,Does Not Include All Medicaid Determinations Made At Application,5287.0,Does Not Include All CHIP Determinations Made At Application,20147.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,838386.0,,1759639.0,,1549496.0,,210143.0,,,,2274.0,Does not include all MAGI determinations on applications,17148.0,Does not include all MAGI determinations on applications,22227.0,Does not include all MAGI determinations on applications,3817.0,Does not include all MAGI determinations on applications,7871.0,Does not include all MAGI determinations on applications,,,,,, +NJ,New Jersey,201804,Y,U,Y,26661.0,,0.0,,26661.0,,14860.0,Does Not Include All Medicaid Determinations Made At Application,5287.0,Does Not Include All CHIP Determinations Made At Application,20147.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,854850.0,,1797425.0,,1585243.0,,212182.0,,,,2274.0,Does not include all MAGI determinations on applications,17148.0,Does not include all MAGI determinations on applications,22227.0,Does not include all MAGI determinations on applications,3817.0,Does not include all MAGI determinations on applications,7871.0,Does not include all MAGI determinations on applications,,,,,, +NJ,New Jersey,201805,Y,P,N,30372.0,,0.0,,30372.0,,14344.0,Does Not Include All Medicaid Determinations Made At Application,5107.0,Does Not Include All CHIP Determinations Made At Application,19451.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,843536.0,,1770232.0,,1557771.0,,212461.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,201805,Y,U,Y,30372.0,,0.0,,30372.0,,14344.0,Does Not Include All Medicaid Determinations Made At Application,5107.0,Does Not Include All CHIP Determinations Made At Application,19451.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,852560.0,,1790663.0,,1577060.0,,213603.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,201806,Y,P,N,28187.0,,0.0,,28187.0,,11398.0,Does Not Include All Medicaid Determinations Made At Application,4864.0,Does Not Include All CHIP Determinations Made At Application,16262.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,841218.0,,1766143.0,,1552867.0,,213276.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,201806,Y,U,Y,28187.0,,0.0,,28187.0,,11398.0,Does Not Include All Medicaid Determinations Made At Application,4864.0,Does Not Include All CHIP Determinations Made At Application,16262.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,850008.0,,1786522.0,,1572313.0,,214209.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,201807,Y,P,N,30729.0,,0.0,,30729.0,,10026.0,Does Not Include All Medicaid Determinations Made At Application,4365.0,Does Not Include All CHIP Determinations Made At Application,14391.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,836483.0,,1753957.0,,1540482.0,,213475.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,201807,Y,U,Y,30729.0,,0.0,,30729.0,,10026.0,Does Not Include All Medicaid Determinations Made At Application,4365.0,Does Not Include All CHIP Determinations Made At Application,14391.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,849591.0,,1788090.0,,1572724.0,,215366.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,201808,Y,P,N,33260.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,33260.0,Does Not Include All Non-MAGI Applications,11683.0,Does Not Include All Medicaid Determinations Made At Application,5096.0,Does Not Include All CHIP Determinations Made At Application,16779.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,832833.0,,1752552.0,,1540291.0,,212261.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,201808,Y,U,Y,33260.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,33260.0,Does Not Include All Non-MAGI Applications,11683.0,Does Not Include All Medicaid Determinations Made At Application,5096.0,Does Not Include All CHIP Determinations Made At Application,16779.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,843712.0,,1776276.0,,1562617.0,,213659.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,201809,Y,P,N,32638.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,32638.0,Does Not Include All Non-MAGI Applications,9208.0,Does Not Include All Medicaid Determinations Made At Application,4356.0,Does Not Include All CHIP Determinations Made At Application,13564.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,826246.0,,1737092.0,,1525760.0,,211332.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,201809,Y,U,Y,32797.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,32797.0,Does Not Include All Non-MAGI Applications,9208.0,Does Not Include All Medicaid Determinations Made At Application,4356.0,Does Not Include All CHIP Determinations Made At Application,13564.0,Does Not Include All Non-MAGI Determinations Made At Application; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,839250.0,,1765952.0,,1553002.0,,212950.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,201810,Y,P,N,33792.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,33792.0,Does Not Include All Non-MAGI Applications,10517.0,Does Not Include All Medicaid Determinations Made At Application,4580.0,Does Not Include All CHIP Determinations Made At Application,15097.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,825290.0,,1733750.0,,1521370.0,,212380.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,201810,Y,U,Y,33792.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,33792.0,Does Not Include All Non-MAGI Applications,10517.0,Does Not Include All Medicaid Determinations Made At Application,4580.0,Does Not Include All CHIP Determinations Made At Application,15097.0,Does Not Include All Non-MAGI Determinations Made At Application; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,834724.0,,1753711.0,,1540099.0,,213612.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,201811,Y,P,N,36113.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,36113.0,Does Not Include All Non-MAGI Applications,12099.0,Does Not Include All Medicaid Determinations Made At Application,4513.0,Does Not Include All CHIP Determinations Made At Application,16612.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,815948.0,,1711234.0,,1501112.0,,210122.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,201811,Y,U,Y,36113.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,36113.0,Does Not Include All Non-MAGI Applications,12099.0,Does Not Include All Medicaid Determinations Made At Application,4513.0,Does Not Include All CHIP Determinations Made At Application,16612.0,Does Not Include All Non-MAGI Determinations Made At Application; Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,828070.0,,1741615.0,,1529658.0,,211957.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,201812,Y,P,N,36147.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,36147.0,Does Not Include All Non-MAGI Applications,12741.0,Does Not Include All Medicaid Determinations Made At Application,4945.0,Does Not Include All CHIP Determinations Made At Application,17686.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,812506.0,,1701511.0,,1490688.0,,210823.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,201812,Y,U,Y,36147.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,36147.0,Does Not Include All Non-MAGI Applications,12741.0,Does Not Include All Medicaid Determinations Made At Application,4945.0,Does Not Include All CHIP Determinations Made At Application,17686.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,826133.0,,1738183.0,,1525062.0,,213121.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,201901,Y,P,N,54916.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,54916.0,Does Not Include All Non-MAGI Applications,18347.0,Does Not Include All Medicaid Determinations Made At Application,7583.0,Does Not Include All CHIP Determinations Made At Application,25930.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,809553.0,,1703032.0,,1492517.0,,210515.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,201901,Y,U,Y,54916.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,54916.0,Does Not Include All Non-MAGI Applications,18347.0,Does Not Include All Medicaid Determinations Made At Application,7583.0,,25930.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,821821.0,,1730812.0,,1518570.0,,212242.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,201902,Y,P,N,35770.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,35770.0,Does Not Include All Non-MAGI Applications,14555.0,Does Not Include All Medicaid Determinations Made At Application,8877.0,,23432.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,805143.0,,1690007.0,,1479143.0,,210864.0,,,,88.0,Does not include all MAGI determinations on applications,6417.0,Does not include all MAGI determinations on applications,6417.0,Does not include all MAGI determinations on applications,3731.0,Does not include all MAGI determinations on applications,8163.0,Does not include all MAGI determinations on applications,,,,,, +NJ,New Jersey,201902,Y,U,Y,35770.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,35770.0,Does Not Include All Non-MAGI Applications,14555.0,Does Not Include All Medicaid Determinations Made At Application,8877.0,,23432.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,820349.0,,1727697.0,,1514473.0,,213224.0,,,,88.0,Does not include all MAGI determinations on applications,6417.0,Does not include all MAGI determinations on applications,6417.0,Does not include all MAGI determinations on applications,3731.0,Does not include all MAGI determinations on applications,8163.0,Does not include all MAGI determinations on applications,,,,,, +NJ,New Jersey,201903,Y,P,N,41430.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,41430.0,Does Not Include All Non-MAGI Applications,18351.0,Does Not Include All Medicaid Determinations Made At Application,7733.0,,26084.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,806270.0,,1693028.0,,1480267.0,,212761.0,,,,42.0,Does not include all MAGI determinations on applications,3473.0,Does not include all MAGI determinations on applications,10915.0,Does not include all MAGI determinations on applications,3267.0,Does not include all MAGI determinations on applications,8328.0,Does not include all MAGI determinations on applications,,,,,, +NJ,New Jersey,201903,Y,U,Y,41430.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,41430.0,Does Not Include All Non-MAGI Applications,18351.0,Does Not Include All Medicaid Determinations Made At Application,7733.0,,26084.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,822523.0,,1729014.0,,1513945.0,,215069.0,,,,42.0,Does not include all MAGI determinations on applications,3473.0,Does not include all MAGI determinations on applications,10915.0,Does not include all MAGI determinations on applications,3267.0,Does not include all MAGI determinations on applications,8328.0,Does not include all MAGI determinations on applications,,,,,, +NJ,New Jersey,201904,Y,P,N,33679.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,33679.0,Does Not Include All Non-MAGI Applications,20399.0,Does Not Include All Medicaid Determinations Made At Application,7848.0,,28247.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,810930.0,,1698058.0,,1481268.0,,216790.0,,,,69.0,Does not include all MAGI determinations on applications,6836.0,Does not include all MAGI determinations on applications,18079.0,Does not include all MAGI determinations on applications,3320.0,Does not include all MAGI determinations on applications,2133.0,Does not include all MAGI determinations on applications,,,,,, +NJ,New Jersey,201904,Y,U,Y,33679.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,33679.0,Does Not Include All Non-MAGI Applications,20399.0,Does Not Include All Medicaid Determinations Made At Application,7848.0,,28247.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,823569.0,,1727206.0,,1508835.0,,218371.0,,,,69.0,Does not include all MAGI determinations on applications,6836.0,Does not include all MAGI determinations on applications,18079.0,Does not include all MAGI determinations on applications,3320.0,Does not include all MAGI determinations on applications,2133.0,Does not include all MAGI determinations on applications,,,,,, +NJ,New Jersey,201905,Y,P,N,37000.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,37000.0,Does Not Include All Non-MAGI Applications,17816.0,Does Not Include All Medicaid Determinations Made At Application,6408.0,,24224.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,810680.0,,1695748.0,,1476953.0,,218795.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,201905,Y,U,Y,37000.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,37000.0,Does Not Include All Non-MAGI Applications,17816.0,Does Not Include All Medicaid Determinations Made At Application,6408.0,,24224.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,823103.0,,1726025.0,,1505604.0,,220421.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,201906,Y,P,N,34382.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,34382.0,Does Not Include All Non-MAGI Applications,14468.0,Does Not Include All Medicaid Determinations Made At Application,6027.0,,20495.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,810310.0,,1694300.0,,1473269.0,,221031.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,201906,Y,U,Y,34382.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,34382.0,Does Not Include All Non-MAGI Applications,14468.0,Does Not Include All Medicaid Determinations Made At Application,6027.0,,20495.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,824387.0,,1727705.0,,1504733.0,,222972.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,201907,Y,P,N,34607.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,34607.0,Does Not Include All Non-MAGI Applications,17909.0,Does Not Include All Medicaid Determinations Made At Application,6080.0,,23989.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,810371.0,,1695333.0,,1473477.0,,221856.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,201907,Y,U,Y,37719.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,37719.0,Does Not Include All Non-MAGI Applications,17909.0,Does Not Include All Medicaid Determinations Made At Application,6080.0,,23989.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,821842.0,,1721103.0,,1497803.0,,223300.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,201908,Y,P,N,38135.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,38135.0,Does Not Include All Non-MAGI Applications,18684.0,Does Not Include All Medicaid Determinations Made At Application,6009.0,,24693.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,802875.0,,1681703.0,,1459295.0,,222408.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,201908,Y,U,Y,38135.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,38135.0,Does Not Include All Non-MAGI Applications,18684.0,Does Not Include All Medicaid Determinations Made At Application,6009.0,,24693.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,816698.0,,1711670.0,,1487174.0,,224496.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,201909,Y,P,N,37933.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,37933.0,Does Not Include All Non-MAGI Applications,14649.0,Does Not Include All Medicaid Determinations Made At Application,5935.0,,20584.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,799834.0,,1675387.0,,1452232.0,,223155.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,201909,Y,U,Y,37933.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,37933.0,Does Not Include All Non-MAGI Applications,14649.0,Does Not Include All Medicaid Determinations Made At Application,5935.0,,20584.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,817082.0,,1711647.0,,1485954.0,,225693.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,201910,Y,P,N,42762.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,42762.0,Does Not Include All Non-MAGI Applications,16749.0,Does Not Include All Medicaid Determinations Made At Application,7158.0,,23907.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,803261.0,,1680911.0,,1455528.0,,225383.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,201910,Y,U,Y,42762.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,42762.0,Does Not Include All Non-MAGI Applications,16749.0,Does Not Include All Medicaid Determinations Made At Application,7158.0,,23907.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,815411.0,,1703930.0,,1476849.0,,227081.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,201911,Y,P,N,37451.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,37451.0,Does Not Include All Non-MAGI Applications,15644.0,Does Not Include All Medicaid Determinations Made At Application,6373.0,,22017.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,801725.0,,1679110.0,,1452517.0,,226593.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,201911,Y,U,Y,37451.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,37451.0,Does Not Include All Non-MAGI Applications,15644.0,Does Not Include All Medicaid Determinations Made At Application,6373.0,,22017.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,815373.0,,1711338.0,,1482829.0,,228509.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,201912,Y,P,N,39094.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,39094.0,Does Not Include All Non-MAGI Applications,17383.0,Does Not Include All Medicaid Determinations Made At Application,5284.0,,22667.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,802024.0,,1683260.0,,1454564.0,,228696.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,201912,Y,U,Y,39094.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,39094.0,Does Not Include All Non-MAGI Applications,17383.0,Does Not Include All Medicaid Determinations Made At Application,5284.0,,22667.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,812183.0,,1706298.0,,1476344.0,,229954.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,202001,Y,P,N,38669.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,38669.0,Does Not Include All Non-MAGI Applications,16623.0,Does Not Include All Medicaid Determinations Made At Application,8316.0,,24939.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,796798.0,,1671386.0,,1442382.0,,229004.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,202001,Y,U,Y,38027.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,38027.0,Does Not Include All Non-MAGI Applications,16623.0,Does Not Include All Medicaid Determinations Made At Application,8316.0,,24939.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,812130.0,,1705106.0,,1474039.0,,231067.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,202002,Y,P,N,41499.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,41499.0,Does Not Include All Non-MAGI Applications,19526.0,Does Not Include All Medicaid Determinations Made At Application,9297.0,,28823.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,795435.0,,1668035.0,,1438855.0,,229180.0,,,,213.0,Does not include all MAGI determinations on applications,17956.0,Does not include all MAGI determinations on applications,18619.0,Does not include all MAGI determinations on applications,2157.0,Does not include all MAGI determinations on applications,868.0,Does not include all MAGI determinations on applications,,,,,, +NJ,New Jersey,202002,Y,U,Y,40445.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,40445.0,Does Not Include All Non-MAGI Applications,19526.0,Does Not Include All Medicaid Determinations Made At Application,9297.0,,28823.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,811342.0,,1701569.0,,1470376.0,,231193.0,,,,213.0,Does not include all MAGI determinations on applications,17956.0,Does not include all MAGI determinations on applications,18619.0,Does not include all MAGI determinations on applications,2157.0,Does not include all MAGI determinations on applications,868.0,Does not include all MAGI determinations on applications,,,,,, +NJ,New Jersey,202003,Y,P,N,31090.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,31090.0,Does Not Include All Non-MAGI Applications,19438.0,Does Not Include All Medicaid Determinations Made At Application,5890.0,,25328.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,797930.0,,1669158.0,,1438781.0,,230377.0,,,,132.0,Does not include all MAGI determinations on applications,17908.0,Does not include all MAGI determinations on applications,16897.0,Does not include all MAGI determinations on applications,2325.0,Does not include all MAGI determinations on applications,1048.0,Does not include all MAGI determinations on applications,,,,,, +NJ,New Jersey,202003,Y,U,Y,35328.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,35328.0,Does Not Include All Non-MAGI Applications,19438.0,Does Not Include All Medicaid Determinations Made At Application,5890.0,,25328.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,810838.0,,1702272.0,,1470391.0,,231881.0,,,,132.0,Does not include all MAGI determinations on applications,17908.0,Does not include all MAGI determinations on applications,16897.0,Does not include all MAGI determinations on applications,2325.0,Does not include all MAGI determinations on applications,1048.0,Does not include all MAGI determinations on applications,,,,,, +NJ,New Jersey,202004,Y,P,N,32232.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,32232.0,Does Not Include All Non-MAGI Applications,21165.0,Does Not Include All Medicaid Determinations Made At Application,4706.0,,25871.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,810651.0,,1706864.0,,1471616.0,,235248.0,,,,74.0,Does not include all MAGI determinations on applications,25907.0,Does not include all MAGI determinations on applications,10522.0,Does not include all MAGI determinations on applications,2621.0,Does not include all MAGI determinations on applications,811.0,Does not include all MAGI determinations on applications,,,,,, +NJ,New Jersey,202004,Y,U,Y,32232.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,32232.0,Does Not Include All Non-MAGI Applications,21165.0,Does Not Include All Medicaid Determinations Made At Application,4706.0,,25871.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,820990.0,,1732647.0,,1495540.0,,237107.0,,,,74.0,Does not include all MAGI determinations on applications,25907.0,Does not include all MAGI determinations on applications,10522.0,Does not include all MAGI determinations on applications,2621.0,Does not include all MAGI determinations on applications,811.0,Does not include all MAGI determinations on applications,,,,,, +NJ,New Jersey,202005,Y,P,N,24000.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,24000.0,Does Not Include All Non-MAGI Applications,19228.0,Does Not Include All Medicaid Determinations Made At Application,4979.0,,24207.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,822535.0,,1732289.0,,1492661.0,,239628.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,202005,Y,U,Y,25120.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,25120.0,Does Not Include All Non-MAGI Applications,19228.0,Does Not Include All Medicaid Determinations Made At Application,4979.0,,24207.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,831891.0,,1753985.0,,1513202.0,,240783.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,202006,Y,P,N,34023.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,34023.0,Does Not Include All Non-MAGI Applications,20006.0,Does Not Include All Medicaid Determinations Made At Application,3546.0,,23552.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,832680.0,,1759653.0,,1520316.0,,239337.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,202006,Y,U,Y,35442.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,35442.0,Does Not Include All Non-MAGI Applications,20006.0,Does Not Include All Medicaid Determinations Made At Application,3546.0,,23552.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,841751.0,,1782694.0,,1542483.0,,240211.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,202007,Y,P,N,40408.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,40408.0,Does Not Include All Non-MAGI Applications,21268.0,Does Not Include All Medicaid Determinations Made At Application,3477.0,,24745.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,842877.0,,1787806.0,,1548484.0,,239322.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,202007,Y,U,Y,43301.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,43301.0,Does Not Include All Non-MAGI Applications,21268.0,Does Not Include All Medicaid Determinations Made At Application,3477.0,,24745.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,849949.0,,1806736.0,,1566665.0,,240071.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,202008,Y,P,N,30999.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,30999.0,Does Not Include All Non-MAGI Applications,19382.0,Does Not Include All Medicaid Determinations Made At Application,3554.0,,22936.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,850252.0,,1811419.0,,1572594.0,,238825.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,202008,Y,U,Y,33841.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,33841.0,Does Not Include All Non-MAGI Applications,19382.0,Does Not Include All Medicaid Determinations Made At Application,3554.0,,22936.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,858529.0,,1831632.0,,1591779.0,,239853.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,202009,Y,P,N,29907.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,29907.0,Does Not Include All Non-MAGI Applications,16582.0,Does Not Include All Medicaid Determinations Made At Application,3331.0,,19913.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,859719.0,,1838927.0,,1599175.0,,239752.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,202009,Y,U,Y,29907.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,29907.0,Does Not Include All Non-MAGI Applications,16582.0,Does Not Include All Medicaid Determinations Made At Application,3331.0,,19913.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,865406.0,,1852379.0,,1611945.0,,240434.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,202010,Y,P,N,25262.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,25262.0,Does Not Include All Non-MAGI Applications,16092.0,Does Not Include All Medicaid Determinations Made At Application,2803.0,,18895.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,865511.0,,1856566.0,,1616311.0,,240255.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,202010,Y,U,Y,24226.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,24226.0,Does Not Include All Non-MAGI Applications,16092.0,Does Not Include All Medicaid Determinations Made At Application,2803.0,,18895.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,871499.0,,1871979.0,,1631032.0,,240947.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,202011,Y,P,N,19667.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,18720.0,,38387.0,Does Not Include All Non-MAGI Applications,15037.0,Does Not Include All Medicaid Determinations Made At Application,2344.0,,17381.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,870139.0,,1874212.0,,1633670.0,,240542.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,202011,Y,U,Y,19667.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,18720.0,,38387.0,Does Not Include All Non-MAGI Applications,15037.0,Does Not Include All Medicaid Determinations Made At Application,2344.0,,17381.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,879270.0,,1898732.0,,1657219.0,,241513.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,202012,Y,P,N,15372.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,24774.0,,40146.0,Does Not Include All Non-MAGI Applications,23925.0,Does Not Include All Medicaid Determinations Made At Application,3663.0,,27588.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,870978.0,,1886842.0,,1646659.0,,240183.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,202012,Y,U,Y,15372.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,24774.0,,40146.0,Does Not Include All Non-MAGI Applications,23925.0,Does Not Include All Medicaid Determinations Made At Application,3663.0,,27588.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,877356.0,,1905205.0,,1664394.0,,240811.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,202101,Y,P,N,17901.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,15361.0,,33262.0,Does Not Include All Non-MAGI Applications,22118.0,Does Not Include All Medicaid Determinations Made At Application,3528.0,,25646.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,875733.0,,1906140.0,,1665836.0,,240304.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,202101,Y,U,Y,17901.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,15361.0,,33262.0,Does Not Include All Non-MAGI Applications,22118.0,Does Not Include All Medicaid Determinations Made At Application,3528.0,,25646.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,883748.0,,1928852.0,,1687701.0,,241151.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,202102,Y,P,N,15883.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,9371.0,,25254.0,Does Not Include All Non-MAGI Applications,19075.0,Does Not Include All Medicaid Determinations Made At Application,3327.0,,22402.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,882347.0,,1929526.0,,1688635.0,,240891.0,,,,153.0,Does not include all MAGI determinations on applications,20354.0,Does not include all MAGI determinations on applications,9380.0,Does not include all MAGI determinations on applications,993.0,Does not include all MAGI determinations on applications,628.0,Does not include all MAGI determinations on applications,,,,,, +NJ,New Jersey,202102,Y,U,Y,15883.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,9371.0,,25254.0,Does Not Include All Non-MAGI Applications,19075.0,Does Not Include All Medicaid Determinations Made At Application,3327.0,,22402.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,890117.0,,1947562.0,,1705772.0,,241790.0,,,,153.0,Does not include all MAGI determinations on applications,20354.0,Does not include all MAGI determinations on applications,9380.0,Does not include all MAGI determinations on applications,993.0,Does not include all MAGI determinations on applications,628.0,Does not include all MAGI determinations on applications,,,,,, +NJ,New Jersey,202103,Y,P,N,18515.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,7070.0,,25585.0,Does Not Include All Non-MAGI Applications,18324.0,Does Not Include All Medicaid Determinations Made At Application,3200.0,,21524.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,887003.0,,1946611.0,,1706243.0,,240368.0,,,,201.0,Does not include all MAGI determinations on applications,21410.0,Does not include all MAGI determinations on applications,6166.0,Does not include all MAGI determinations on applications,973.0,Does not include all MAGI determinations on applications,755.0,Does not include all MAGI determinations on applications,,,,,, +NJ,New Jersey,202103,Y,U,Y,18515.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,7070.0,,25585.0,Does Not Include All Non-MAGI Applications,18324.0,Does Not Include All Medicaid Determinations Made At Application,3200.0,,21524.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,892233.0,,1957939.0,,1716964.0,,240975.0,,,,201.0,Does not include all MAGI determinations on applications,21410.0,Does not include all MAGI determinations on applications,6166.0,Does not include all MAGI determinations on applications,973.0,Does not include all MAGI determinations on applications,755.0,Does not include all MAGI determinations on applications,,,,,, +NJ,New Jersey,202104,Y,P,N,15234.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,6541.0,,21775.0,Does Not Include All Non-MAGI Applications,14173.0,Does Not Include All Medicaid Determinations Made At Application,2201.0,,16374.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,891875.0,,1961275.0,,1720395.0,,240880.0,,,,246.0,Does not include all MAGI determinations on applications,17927.0,Does not include all MAGI determinations on applications,3989.0,Does not include all MAGI determinations on applications,843.0,Does not include all MAGI determinations on applications,805.0,Does not include all MAGI determinations on applications,,,,,, +NJ,New Jersey,202104,Y,U,Y,15234.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,6541.0,,21775.0,Does Not Include All Non-MAGI Applications,14173.0,Does Not Include All Medicaid Determinations Made At Application,2201.0,,16374.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,897125.0,,1972968.0,,1731455.0,,241513.0,,,,246.0,Does not include all MAGI determinations on applications,17927.0,Does not include all MAGI determinations on applications,3989.0,Does not include all MAGI determinations on applications,843.0,Does not include all MAGI determinations on applications,805.0,Does not include all MAGI determinations on applications,,,,,, +NJ,New Jersey,202105,Y,P,N,13161.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,6882.0,,20043.0,Does Not Include All Non-MAGI Applications,12620.0,Does Not Include All Medicaid Determinations Made At Application,1815.0,,14435.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,895414.0,,1973335.0,,1731991.0,,241344.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,202105,Y,U,Y,13161.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,6882.0,,20043.0,Does Not Include All Non-MAGI Applications,12620.0,Does Not Include All Medicaid Determinations Made At Application,1815.0,,14435.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,901144.0,,1985965.0,,1743938.0,,242027.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,202106,Y,P,N,14684.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,5966.0,,20650.0,Does Not Include All Non-MAGI Applications,13061.0,Does Not Include All Medicaid Determinations Made At Application,1852.0,,14913.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,897622.0,,1983851.0,,1742443.0,,241408.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,202106,Y,U,Y,14684.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,5966.0,,20650.0,Does Not Include All Non-MAGI Applications,13061.0,Does Not Include All Medicaid Determinations Made At Application,1852.0,,14913.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,902347.0,,1994023.0,,1752139.0,,241884.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,202107,Y,P,N,13542.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,6221.0,,19763.0,Does Not Include All Non-MAGI Applications,13423.0,Does Not Include All Medicaid Determinations Made At Application,1914.0,,15337.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,900584.0,,1994987.0,,1753680.0,,241307.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,202107,Y,U,Y,13542.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,6221.0,,19763.0,Does Not Include All Non-MAGI Applications,13423.0,Does Not Include All Medicaid Determinations Made At Application,1914.0,,15337.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,906035.0,,2007346.0,,1765492.0,,241854.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,202108,Y,P,N,15128.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,8089.0,,23217.0,Does Not Include All Non-MAGI Applications,14752.0,Does Not Include All Medicaid Determinations Made At Application,2349.0,,17101.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,903729.0,,2007264.0,,1765986.0,,241278.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,202108,Y,U,Y,15128.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,8089.0,,23217.0,Does Not Include All Non-MAGI Applications,14752.0,Does Not Include All Medicaid Determinations Made At Application,2349.0,,17101.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,910452.0,,2022005.0,,1780071.0,,241934.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,202109,Y,P,N,15283.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,5779.0,,21062.0,Does Not Include All Non-MAGI Applications,13677.0,Does Not Include All Medicaid Determinations Made At Application,2360.0,,16037.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,908442.0,,2022581.0,,1780938.0,,241643.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,202109,Y,U,Y,15283.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,5779.0,,21062.0,Does Not Include All Non-MAGI Applications,13677.0,Does Not Include All Medicaid Determinations Made At Application,2360.0,,16037.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,913879.0,,2033969.0,,1791856.0,,242113.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,202110,Y,P,N,15760.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,4620.0,,20380.0,Does Not Include All Non-MAGI Applications,14946.0,Does Not Include All Medicaid Determinations Made At Application,3228.0,,18174.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,910174.0,,2029843.0,,1788546.0,,241297.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,202110,Y,U,Y,15760.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,4620.0,,20380.0,Does Not Include All Non-MAGI Applications,14946.0,Does Not Include All Medicaid Determinations Made At Application,3228.0,,18174.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,916622.0,,2043566.0,,1801644.0,,241922.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,202111,Y,P,N,11086.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,15383.0,,26469.0,Does Not Include All Non-MAGI Applications,13983.0,Does Not Include All Medicaid Determinations Made At Application,2762.0,,16745.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,913809.0,,2042500.0,,1800097.0,,242403.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,202111,Y,U,Y,11086.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,15383.0,,26469.0,Does Not Include All Non-MAGI Applications,13983.0,Does Not Include All Medicaid Determinations Made At Application,2671.0,,16654.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,920774.0,,2056855.0,,1812961.0,,243894.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,202112,Y,P,N,9041.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,20807.0,,29848.0,Does Not Include All Non-MAGI Applications,15077.0,Does Not Include All Medicaid Determinations Made At Application,2318.0,,17395.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,917439.0,,2055445.0,,1811561.0,,243884.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,202112,Y,U,Y,9041.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,20807.0,,29848.0,Does Not Include All Non-MAGI Applications,15077.0,Does Not Include All Medicaid Determinations Made At Application,2318.0,,17395.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,922330.0,,2068050.0,,1823707.0,,244343.0,,,,,,,,,,,,,,,,,,, +NJ,New Jersey,202201,Y,P,N,14191.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,16981.0,,31172.0,Does Not Include All Non-MAGI Applications,15623.0,Does Not Include All Medicaid Determinations Made At Application,2379.0,,18002.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,919562.0,,2066517.0,,1821274.0,,245243.0,,,,654.0,Does not include all MAGI determinations on applications,15420.0,Does not include all MAGI determinations on applications,5196.0,Does not include all MAGI determinations on applications,6095.0,Does not include all MAGI determinations on applications,802.0,Does not include all MAGI determinations on applications,,,,,, +NJ,New Jersey,202201,Y,U,Y,14191.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,16981.0,,31172.0,Does Not Include All Non-MAGI Applications,15623.0,Does Not Include All Medicaid Determinations Made At Application,2379.0,,18002.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,927532.0,,2081868.0,,1836111.0,,245757.0,,,,654.0,Does not include all MAGI determinations on applications,15420.0,Does not include all MAGI determinations on applications,5196.0,Does not include all MAGI determinations on applications,6095.0,Does not include all MAGI determinations on applications,802.0,Does not include all MAGI determinations on applications,,,,,, +NJ,New Jersey,202202,Y,P,N,14610.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,8152.0,,22762.0,Does Not Include All Non-MAGI Applications,15933.0,Does Not Include All Medicaid Determinations Made At Application,2869.0,,18802.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,922967.0,,2076235.0,,1829675.0,,246560.0,,,,716.0,Does not include all MAGI determinations on applications,11703.0,Does not include all MAGI determinations on applications,10984.0,Does not include all MAGI determinations on applications,4145.0,Does not include all MAGI determinations on applications,2811.0,Does not include all MAGI determinations on applications,,,,,, +NJ,New Jersey,202202,Y,U,Y,14610.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,8152.0,,22762.0,Does Not Include All Non-MAGI Applications,15933.0,Does Not Include All Medicaid Determinations Made At Application,2869.0,,18802.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,930398.0,,2094258.0,,1846987.0,,247271.0,,,,716.0,Does not include all MAGI determinations on applications,11703.0,Does not include all MAGI determinations on applications,10984.0,Does not include all MAGI determinations on applications,4145.0,Does not include all MAGI determinations on applications,2811.0,Does not include all MAGI determinations on applications,,,,,, +NJ,New Jersey,202203,Y,P,N,16222.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,5190.0,,21412.0,Does Not Include All Non-MAGI Applications,17308.0,Does Not Include All Medicaid Determinations Made At Application,4711.0,,22019.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,928762.0,,2094889.0,,1846381.0,,248508.0,,,,1092.0,Does not include all MAGI determinations on applications,14970.0,Does not include all MAGI determinations on applications,9291.0,Does not include all MAGI determinations on applications,4903.0,Does not include all MAGI determinations on applications,2034.0,Does not include all MAGI determinations on applications,,,,,, +NJ,New Jersey,202203,Y,U,Y,16222.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,5190.0,,21412.0,Does Not Include All Non-MAGI Applications,17308.0,Does Not Include All Medicaid Determinations Made At Application,4711.0,,22019.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,935444.0,,2110632.0,,1861333.0,,249299.0,,,,1092.0,Does not include all MAGI determinations on applications,14970.0,Does not include all MAGI determinations on applications,9291.0,Does not include all MAGI determinations on applications,4903.0,Does not include all MAGI determinations on applications,2034.0,Does not include all MAGI determinations on applications,,,,,, +NJ,New Jersey,202204,Y,P,N,14505.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,4570.0,,19075.0,Does Not Include All Non-MAGI Applications,15401.0,Does Not Include All Medicaid Determinations Made At Application,3934.0,,19335.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,930467.0,,2105132.0,,1854695.0,,250437.0,,,,1084.0,Does not include all MAGI determinations on applications,13221.0,Does not include all MAGI determinations on applications,10791.0,Does not include all MAGI determinations on applications,1513.0,Does not include all MAGI determinations on applications,828.0,Does not include all MAGI determinations on applications,,,,,, +NJ,New Jersey,202204,Y,U,Y,14505.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,4570.0,,19075.0,Does Not Include All Non-MAGI Applications,15401.0,Does Not Include All Medicaid Determinations Made At Application,3934.0,,19335.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,936251.0,,2117394.0,,1866356.0,,251038.0,,,,1084.0,Does not include all MAGI determinations on applications,13221.0,Does not include all MAGI determinations on applications,10791.0,Does not include all MAGI determinations on applications,1513.0,Does not include all MAGI determinations on applications,828.0,Does not include all MAGI determinations on applications,,,,,, +NJ,New Jersey,202205,Y,P,N,14591.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,4506.0,,19097.0,Does Not Include All Non-MAGI Applications,13212.0,Does Not Include All Medicaid Determinations Made At Application,3009.0,,16221.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,933439.0,,2115983.0,,1863468.0,,252515.0,,,,946.0,Does not include all MAGI determinations on applications,12952.0,Does not include all MAGI determinations on applications,8727.0,Does not include all MAGI determinations on applications,1094.0,Does not include all MAGI determinations on applications,475.0,Does not include all MAGI determinations on applications,,,,,, +NJ,New Jersey,202205,Y,U,Y,14591.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,4506.0,,19097.0,Does Not Include All Non-MAGI Applications,13212.0,Does Not Include All Medicaid Determinations Made At Application,3009.0,,16221.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,940213.0,,2130668.0,,1877436.0,,253232.0,,,,946.0,Does not include all MAGI determinations on applications,12952.0,Does not include all MAGI determinations on applications,8727.0,Does not include all MAGI determinations on applications,1094.0,Does not include all MAGI determinations on applications,475.0,Does not include all MAGI determinations on applications,,,,,, +NJ,New Jersey,202206,Y,P,N,14830.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,4570.0,,19400.0,Does Not Include All Non-MAGI Applications,13316.0,Does Not Include All Medicaid Determinations Made At Application,3261.0,,16577.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,936968.0,,2129804.0,,1874906.0,,254898.0,,,,1060.0,Does not include all MAGI determinations on applications,12015.0,Does not include all MAGI determinations on applications,9643.0,Does not include all MAGI determinations on applications,1295.0,Does not include all MAGI determinations on applications,471.0,Does not include all MAGI determinations on applications,,,,,, +NJ,New Jersey,202206,Y,U,Y,14830.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,4570.0,,19400.0,Does Not Include All Non-MAGI Applications,13316.0,Does Not Include All Medicaid Determinations Made At Application,3261.0,,16577.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,941866.0,,2139794.0,,1884395.0,,255399.0,,,,1060.0,Does not include all MAGI determinations on applications,12015.0,Does not include all MAGI determinations on applications,9643.0,Does not include all MAGI determinations on applications,1295.0,Does not include all MAGI determinations on applications,471.0,Does not include all MAGI determinations on applications,,,,,, +NJ,New Jersey,202207,Y,P,N,14888.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,4130.0,,19018.0,Does Not Include All Non-MAGI Applications,11837.0,Does Not Include All Medicaid Determinations Made At Application,2598.0,,14435.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,937180.0,,2135254.0,,1878580.0,,256674.0,,,,833.0,,12811.0,,6292.0,,1223.0,,430.0,,,,,,, +NJ,New Jersey,202207,Y,U,Y,14888.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,4130.0,,19018.0,Does Not Include All Non-MAGI Applications,11837.0,Does Not Include All Medicaid Determinations Made At Application,2598.0,,14435.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,943480.0,,2148004.0,,1890772.0,,257232.0,,,,833.0,,12811.0,,6292.0,,1223.0,,430.0,,,,,,, +NJ,New Jersey,202208,Y,P,N,17187.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,4738.0,,21925.0,Does Not Include All Non-MAGI Applications,14693.0,Does Not Include All Medicaid Determinations Made At Application,2697.0,,17390.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,940888.0,,2148910.0,,1890250.0,,258660.0,,,,1041.0,,15506.0,,8810.0,,1518.0,,677.0,,,,,,, +NJ,New Jersey,202208,Y,U,Y,17187.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,4738.0,,21925.0,Does Not Include All Non-MAGI Applications,14693.0,Does Not Include All Medicaid Determinations Made At Application,2697.0,,17390.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,946208.0,,2159579.0,,1900414.0,,259165.0,,,,1041.0,,15506.0,,8810.0,,1518.0,,677.0,,,,,,, +NJ,New Jersey,202209,Y,P,N,15767.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,4110.0,,19877.0,Does Not Include All Non-MAGI Applications,14263.0,Does Not Include All Medicaid Determinations Made At Application,2741.0,,17004.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,942619.0,,2157859.0,,1897366.0,,260493.0,,,,951.0,,13879.0,,8850.0,,1942.0,,651.0,,,,,,, +NJ,New Jersey,202209,Y,U,Y,15767.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,4110.0,,19877.0,Does Not Include All Non-MAGI Applications,14263.0,Does Not Include All Medicaid Determinations Made At Application,2741.0,,17004.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,947055.0,,2168752.0,,1909587.0,,259165.0,,,,951.0,,13879.0,,8850.0,,1942.0,,651.0,,,,,,, +NJ,New Jersey,202210,Y,P,N,15280.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,4620.0,,19900.0,Does Not Include All Non-MAGI Applications,13459.0,Does Not Include All Medicaid Determinations Made At Application,2771.0,,16230.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,943156.0,,2163385.0,,1901976.0,,261409.0,,,,1114.0,,12231.0,,9609.0,,821.0,,210.0,,,,,,, +NJ,New Jersey,202210,Y,U,Y,15280.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,4620.0,,19900.0,Does Not Include All Non-MAGI Applications,13459.0,Does Not Include All Medicaid Determinations Made At Application,2771.0,,16230.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,951164.0,,2181303.0,,1918923.0,,262380.0,,,,1114.0,,12231.0,,9609.0,,821.0,,210.0,,,,,,, +NJ,New Jersey,202211,Y,P,N,11375.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,15752.0,,27127.0,Does Not Include All Non-MAGI Applications,13732.0,Does Not Include All Medicaid Determinations Made At Application,2662.0,,16394.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,948117.0,,2179223.0,,1915986.0,,263237.0,,,,1075.0,,14669.0,,9239.0,,1646.0,,512.0,,,,,,, +NJ,New Jersey,202211,Y,U,Y,11375.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,15752.0,,27127.0,Does Not Include All Non-MAGI Applications,13732.0,Does Not Include All Medicaid Determinations Made At Application,2662.0,,16394.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,954688.0,,2194560.0,,1930588.0,,263972.0,,,,1075.0,,14669.0,,9239.0,,1646.0,,512.0,,,,,,, +NJ,New Jersey,202212,Y,P,N,6256.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,20284.0,,26540.0,Does Not Include All Non-MAGI Applications,15937.0,Does Not Include All Medicaid Determinations Made At Application,2824.0,,18761.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,951924.0,,2192270.0,,1927611.0,,264659.0,,,,1093.0,,15649.0,,10798.0,,2215.0,,385.0,,,,,,, +NJ,New Jersey,202212,Y,U,Y,6256.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,20284.0,,26540.0,Does Not Include All Non-MAGI Applications,15937.0,Does Not Include All Medicaid Determinations Made At Application,2824.0,,18761.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,956855.0,,2202958.0,,1937846.0,,265112.0,,,,1093.0,,15649.0,,10798.0,,2215.0,,385.0,,,,,,, +NJ,New Jersey,202301,Y,P,N,18964.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,19816.0,,38780.0,Does Not Include All Non-MAGI Applications,17044.0,Does Not Include All Medicaid Determinations Made At Application,3316.0,,20360.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,954068.0,,2201441.0,,1935485.0,,265956.0,,,,1239.0,,12615.0,,15653.0,,2549.0,,459.0,,,,,,, +NJ,New Jersey,202301,Y,U,Y,18964.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,19816.0,,38780.0,Does Not Include All Non-MAGI Applications,17044.0,Does Not Include All Medicaid Determinations Made At Application,3316.0,,20360.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,964398.0,,2222936.0,,1955692.0,,267244.0,,,,1239.0,,12615.0,,15653.0,,2549.0,,459.0,,,,,,, +NJ,New Jersey,202302,Y,P,N,10479.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,17046.0,,27525.0,Does Not Include All Non-MAGI Applications,16787.0,Does Not Include All Medicaid Determinations Made At Application,3449.0,,20236.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,957911.0,,2217922.0,,1950652.0,,267270.0,,,,1109.0,,14580.0,,12335.0,,2183.0,,438.0,,,,,,, +NJ,New Jersey,202302,Y,U,Y,10479.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,17046.0,,27525.0,Does Not Include All Non-MAGI Applications,16787.0,Does Not Include All Medicaid Determinations Made At Application,3449.0,,20236.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,969842.0,,2250298.0,,1981801.0,,268497.0,,,,1109.0,,14580.0,,12335.0,,2183.0,,438.0,,,,,,, +NJ,New Jersey,202303,Y,P,N,21621.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,5911.0,,27532.0,Does Not Include All Non-MAGI Applications,21619.0,Does Not Include All Medicaid Determinations Made At Application,3882.0,,25501.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,961966.0,,2231009.0,,1962324.0,,268685.0,,,,1277.0,,15736.0,,16391.0,,2322.0,,553.0,,78853.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Wait time reflects time spent on hold after the call is answered by a live agent,0.028,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NJ,New Jersey,202303,Y,U,Y,21621.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,5911.0,,27532.0,Does Not Include All Non-MAGI Applications,21619.0,Does Not Include All Medicaid Determinations Made At Application,3882.0,,25501.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,967165.0,,2239745.0,,1970497.0,,269248.0,,,,1277.0,,15736.0,,16391.0,,2322.0,,553.0,,78853.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Wait time reflects time spent on hold after the call is answered by a live agent,0.028,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NJ,New Jersey,202304,Y,P,N,17412.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,4537.0,,21949.0,Does Not Include All Non-MAGI Applications,17849.0,Does Not Include All Medicaid Determinations Made At Application,3433.0,,21282.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,962301.0,,2235027.0,,1965118.0,,269909.0,,,,1458.0,,14165.0,,11329.0,,2145.0,,568.0,,65587.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Wait time reflects time spent on hold after the call is answered by a live agent,0.029,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NJ,New Jersey,202304,Y,U,Y,17412.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,4537.0,,21949.0,Does Not Include All Non-MAGI Applications,17849.0,Does Not Include All Medicaid Determinations Made At Application,3433.0,,21282.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,972468.0,,2252687.0,,1981656.0,,271031.0,,,,1458.0,,14165.0,,11329.0,,2145.0,,568.0,,65587.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Wait time reflects time spent on hold after the call is answered by a live agent,0.029,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NJ,New Jersey,202305,Y,P,N,19730.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,4355.0,,24085.0,Does Not Include All Non-MAGI Applications,18078.0,Does Not Include All Medicaid Determinations Made At Application,3622.0,,21700.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,966612.0,,2248895.0,,1978036.0,,270859.0,,,,1276.0,,14615.0,,11379.0,,2333.0,,661.0,,77189.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Wait time reflects time spent on hold after the call is answered by a live agent,0.031,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NJ,New Jersey,202305,Y,U,Y,19730.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,4355.0,,24085.0,Does Not Include All Non-MAGI Applications,18078.0,Does Not Include All Medicaid Determinations Made At Application,3622.0,,21700.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,972732.0,,2259458.0,,1987920.0,,271538.0,,,,1276.0,,14615.0,,11379.0,,2333.0,,661.0,,77189.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Wait time reflects time spent on hold after the call is answered by a live agent,0.031,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NJ,New Jersey,202306,Y,P,N,17544.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,4212.0,,21756.0,Does Not Include All Non-MAGI Applications,16265.0,Does Not Include All Medicaid Determinations Made At Application,3384.0,,19649.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,968562.0,,2255768.0,,1984429.0,,271339.0,,,,1317.0,,11954.0,,11553.0,,2604.0,,728.0,,76783.0,Does not include all calls received by call centers; Does not include all calls received after business hours,2.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Wait time reflects time spent on hold after the call is answered by a live agent,0.071,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NJ,New Jersey,202306,Y,U,Y,17544.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,4212.0,,21756.0,Does Not Include All Non-MAGI Applications,16265.0,Does Not Include All Medicaid Determinations Made At Application,3384.0,,19649.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,975509.0,,2268064.0,,1996107.0,,271957.0,,,,1317.0,,11954.0,,11553.0,,2604.0,,728.0,,76783.0,Does not include all calls received by call centers; Does not include all calls received after business hours,2.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Wait time reflects time spent on hold after the call is answered by a live agent,0.071,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NJ,New Jersey,202307,Y,P,N,18337.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,4112.0,,22449.0,Does Not Include All Non-MAGI Applications,15377.0,Does Not Include All Medicaid Determinations Made At Application,3746.0,,19123.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,967350.0,,2255260.0,,1984135.0,,271125.0,,,,1086.0,,12325.0,,10110.0,,2454.0,,1076.0,,109732.0,Does not include all calls received by call centers; Does not include all calls received after business hours,2.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Wait time reflects time spent on hold after the call is answered by a live agent,0.188,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NJ,New Jersey,202307,Y,U,Y,18337.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,4112.0,,22449.0,Does Not Include All Non-MAGI Applications,15377.0,Does Not Include All Medicaid Determinations Made At Application,3746.0,,19123.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,976896.0,,2272885.0,,2000724.0,,272161.0,,,,1086.0,,12325.0,,10110.0,,2454.0,,1076.0,,109732.0,Does not include all calls received by call centers; Does not include all calls received after business hours,2.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Wait time reflects time spent on hold after the call is answered by a live agent,0.188,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NJ,New Jersey,202308,Y,P,N,23646.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,5011.0,,28657.0,Does Not Include All Non-MAGI Applications,16120.0,Does Not Include All Medicaid Determinations Made At Application,3949.0,,20069.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,954540.0,,2229127.0,,1959742.0,,269385.0,,,,907.0,,10757.0,,11016.0,,3769.0,,1328.0,,137995.0,Does not include all calls received by call centers; Does not include all calls received after business hours,2.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Wait time reflects time spent on hold after the call is answered by a live agent,0.288,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NJ,New Jersey,202308,Y,U,Y,23646.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,5011.0,,28657.0,Does Not Include All Non-MAGI Applications,16120.0,Does Not Include All Medicaid Determinations Made At Application,3949.0,,20069.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,963036.0,,2244831.0,,1974352.0,,270479.0,,,,907.0,,10757.0,,11016.0,,3769.0,,1328.0,,137995.0,Does not include all calls received by call centers; Does not include all calls received after business hours,2.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Wait time reflects time spent on hold after the call is answered by a live agent,0.288,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NJ,New Jersey,202309,Y,P,N,27363.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,4372.0,,31735.0,Does Not Include All Non-MAGI Applications,15472.0,Does Not Include All Medicaid Determinations Made At Application,3752.0,,19224.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,931542.0,,2169946.0,,1905979.0,,263967.0,,,,746.0,,9081.0,,7120.0,,4616.0,,2301.0,,126141.0,Does not include all calls received by call centers; Does not include all calls received after business hours,2.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Wait time reflects time spent on hold after the call is answered by a live agent,0.102,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NJ,New Jersey,202309,Y,U,Y,27363.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,4372.0,,31735.0,Does Not Include All Non-MAGI Applications,15472.0,Does Not Include All Medicaid Determinations Made At Application,3752.0,,19224.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,944451.0,,2193051.0,,1927640.0,,265411.0,,,,746.0,,9081.0,,7120.0,,4616.0,,2301.0,,126141.0,Does not include all calls received by call centers; Does not include all calls received after business hours,2.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Wait time reflects time spent on hold after the call is answered by a live agent,0.102,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NJ,New Jersey,202310,Y,P,N,29875.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,4884.0,,34759.0,Does Not Include All Non-MAGI Applications,21649.0,Does Not Include All Medicaid Determinations Made At Application,5514.0,,27163.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,914217.0,,2123956.0,,1865696.0,,258260.0,,,,1114.0,Incorrectly includes reinstatements,8692.0,Incorrectly includes reinstatements,8405.0,Incorrectly includes reinstatements,3596.0,Incorrectly includes reinstatements,9119.0,Incorrectly includes reinstatements,168417.0,Does not include all calls received by call centers; Does not include all calls received after business hours,3.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Wait time reflects time spent on hold after the call is answered by a live agent,0.336,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NJ,New Jersey,202310,Y,U,Y,29875.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,4884.0,,34759.0,Does Not Include All Non-MAGI Applications,21649.0,Does Not Include All Medicaid Determinations Made At Application,5514.0,,27163.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,928795.0,,2150392.0,,1889839.0,,260553.0,,,,1114.0,Incorrectly includes reinstatements,8692.0,Incorrectly includes reinstatements,8405.0,Incorrectly includes reinstatements,3596.0,Incorrectly includes reinstatements,9119.0,Incorrectly includes reinstatements,168417.0,Does not include all calls received by call centers; Does not include all calls received after business hours,3.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Wait time reflects time spent on hold after the call is answered by a live agent,0.336,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NJ,New Jersey,202311,Y,P,N,26016.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,16005.0,,42021.0,Does Not Include All Non-MAGI Applications,23349.0,Does Not Include All Medicaid Determinations Made At Application,6021.0,,29370.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,896150.0,,2075141.0,,1821465.0,,253676.0,,,,1237.0,,9788.0,,13950.0,,10094.0,,3510.0,,151287.0,Does not include all calls received by call centers; Does not include all calls received after business hours,4.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Wait time reflects time spent on hold after the call is answered by a live agent,0.222,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NJ,New Jersey,202311,Y,U,Y,26016.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,16005.0,,42021.0,Does Not Include All Non-MAGI Applications,23349.0,Does Not Include All Medicaid Determinations Made At Application,6021.0,,29370.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,909763.0,,2103079.0,,1847295.0,,255784.0,,,,1237.0,,9788.0,,13950.0,,10094.0,,3510.0,,151287.0,Does not include all calls received by call centers; Does not include all calls received after business hours,4.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Wait time reflects time spent on hold after the call is answered by a live agent,0.222,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NJ,New Jersey,202312,Y,P,N,21386.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,19193.0,,40579.0,Does Not Include All Non-MAGI Applications,24639.0,Does Not Include All Medicaid Determinations Made At Application,4386.0,,29025.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,881739.0,,2035399.0,,1783995.0,,251404.0,,,,1301.0,,13949.0,,11028.0,,7118.0,,4008.0,,161945.0,Does not include all calls received by call centers; Does not include all calls received after business hours,4.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Wait time reflects time spent on hold after the call is answered by a live agent,0.222,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NJ,New Jersey,202312,Y,U,Y,21386.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,19193.0,,40579.0,Does Not Include All Non-MAGI Applications,24639.0,Does Not Include All Medicaid Determinations Made At Application,4386.0,,29025.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,893556.0,,2060041.0,,1807082.0,,252959.0,,,,1301.0,,13949.0,,11028.0,,7118.0,,4008.0,,161945.0,Does not include all calls received by call centers; Does not include all calls received after business hours,4.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Wait time reflects time spent on hold after the call is answered by a live agent,0.222,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NJ,New Jersey,202401,Y,P,N,31886.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,22930.0,,54816.0,Does Not Include All Non-MAGI Applications,24308.0,Does Not Include All Medicaid Determinations Made At Application,6242.0,,30550.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,866018.0,,1993210.0,,1744047.0,,249163.0,,,,1722.0,Incorrectly includes reinstatements,14560.0,Incorrectly includes reinstatements,9742.0,Incorrectly includes reinstatements,4469.0,Incorrectly includes reinstatements,10017.0,Incorrectly includes reinstatements,224996.0,Does not include all calls received by call centers; Does not include all calls received after business hours,3.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Wait time reflects time spent on hold after the call is answered by a live agent,0.152,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NJ,New Jersey,202401,Y,U,Y,31886.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,22930.0,,54816.0,Does Not Include All Non-MAGI Applications,24308.0,Does Not Include All Medicaid Determinations Made At Application,6242.0,,30550.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,884836.0,,2030400.0,,1778415.0,,251985.0,,,,1722.0,Incorrectly includes reinstatements,14560.0,Incorrectly includes reinstatements,9742.0,Incorrectly includes reinstatements,4469.0,Incorrectly includes reinstatements,10017.0,Incorrectly includes reinstatements,224996.0,Does not include all calls received by call centers; Does not include all calls received after business hours,3.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Wait time reflects time spent on hold after the call is answered by a live agent,0.152,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NJ,New Jersey,202402,Y,P,N,36285.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,9673.0,,45958.0,Does Not Include All Non-MAGI Applications,28991.0,Does Not Include All Medicaid Determinations Made At Application,5997.0,,34988.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,859816.0,,1968979.0,,1721200.0,,247779.0,,,,1324.0,Incorrectly includes reinstatements,13826.0,Incorrectly includes reinstatements,12354.0,Incorrectly includes reinstatements,4555.0,Incorrectly includes reinstatements,10106.0,Incorrectly includes reinstatements,212256.0,Does not include all calls received by call centers; Does not include all calls received after business hours,3.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Wait time reflects time spent on hold after the call is answered by a live agent,0.106,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NJ,New Jersey,202402,Y,U,Y,36285.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,9673.0,,45958.0,Does Not Include All Non-MAGI Applications,28991.0,Does Not Include All Medicaid Determinations Made At Application,5997.0,,34988.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,873710.0,,1997790.0,,1748215.0,,249575.0,,,,1324.0,Incorrectly includes reinstatements,13826.0,Incorrectly includes reinstatements,12354.0,Incorrectly includes reinstatements,4555.0,Incorrectly includes reinstatements,10106.0,Incorrectly includes reinstatements,212256.0,Does not include all calls received by call centers; Does not include all calls received after business hours,3.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Wait time reflects time spent on hold after the call is answered by a live agent,0.106,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NJ,New Jersey,202403,Y,P,N,35897.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,5841.0,,41738.0,Does Not Include All Non-MAGI Applications,30889.0,Does Not Include All Medicaid Determinations Made At Application,5139.0,,36028.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,852586.0,,1939676.0,,1691685.0,,247991.0,,,,1325.0,,8980.0,,8656.0,,4280.0,,12381.0,,198620.0,Does not include all calls received by call centers; Does not include all calls received after business hours,3.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Wait time reflects time spent on hold after the call is answered by a live agent,0.054,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NJ,New Jersey,202403,Y,U,Y,35897.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,5841.0,,41738.0,Does Not Include All Non-MAGI Applications,30889.0,Does Not Include All Medicaid Determinations Made At Application,5139.0,,36028.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,865743.0,,1966921.0,,1717076.0,,249845.0,,,,1325.0,,8980.0,,8656.0,,4280.0,,12381.0,,198620.0,Does not include all calls received by call centers; Does not include all calls received after business hours,3.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Wait time reflects time spent on hold after the call is answered by a live agent,0.054,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NJ,New Jersey,202404,Y,P,N,39313.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,6997.0,,46310.0,Does Not Include All Non-MAGI Applications,32530.0,Does Not Include All Medicaid Determinations Made At Application,6500.0,,39030.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,838521.0,,1892540.0,,1645695.0,,246845.0,,,,1043.0,,16380.0,,13830.0,,4690.0,,14146.0,,202763.0,Does not include all calls received by call centers; Does not include all calls received after business hours,3.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Wait time reflects time spent on hold after the call is answered by a live agent,0.035,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NJ,New Jersey,202404,Y,U,Y,39313.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,6997.0,,46310.0,Does Not Include All Non-MAGI Applications,32530.0,Does Not Include All Medicaid Determinations Made At Application,6500.0,,39030.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,860029.0,,1935807.0,,1685053.0,,250754.0,,,,1043.0,,16380.0,,13830.0,,4690.0,,14146.0,,202763.0,Does not include all calls received by call centers; Does not include all calls received after business hours,3.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Wait time reflects time spent on hold after the call is answered by a live agent,0.035,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NJ,New Jersey,202405,Y,P,N,37948.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,6561.0,,44509.0,Does Not Include All Non-MAGI Applications,28450.0,Does Not Include All Medicaid Determinations Made At Application,6258.0,,34708.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,837536.0,,1875528.0,,1627241.0,,248287.0,,,,1417.0,,12151.0,,10736.0,,4501.0,,12202.0,,205253.0,Does not include all calls received by call centers; Does not include all calls received after business hours,5.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Wait time reflects time spent on hold after the call is answered by a live agent,0.026,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NJ,New Jersey,202405,Y,U,Y,37948.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,6561.0,,44509.0,Does Not Include All Non-MAGI Applications,28450.0,Does Not Include All Medicaid Determinations Made At Application,6258.0,,34708.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,848235.0,,1896663.0,,1646768.0,,249895.0,,,,1417.0,,12151.0,,10736.0,,4501.0,,12202.0,,205253.0,Does not include all calls received by call centers; Does not include all calls received after business hours,5.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Wait time reflects time spent on hold after the call is answered by a live agent,0.026,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NJ,New Jersey,202406,Y,P,N,33987.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,5564.0,,39551.0,Does Not Include All Non-MAGI Applications,26596.0,Does Not Include All Medicaid Determinations Made At Application,5897.0,,32493.0,Does Not Include All Medicaid Determinations Made At Application,817656.0,,1815701.0,,1570756.0,,244945.0,,,,1228.0,,11483.0,,9948.0,,4530.0,,11573.0,,189272.0,Does not include all calls received by call centers; Does not include all calls received after business hours,3.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Wait time reflects time spent on hold after the call is answered by a live agent,0.032,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NJ,New Jersey,202406,Y,U,Y,33987.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,5564.0,,39551.0,Does Not Include All Non-MAGI Applications,26596.0,Does Not Include All Medicaid Determinations Made At Application,5897.0,,32493.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,835490.0,,1853062.0,,1605581.0,,247481.0,,,,1228.0,,11483.0,,9948.0,,4530.0,,11573.0,,189272.0,Does not include all calls received by call centers; Does not include all calls received after business hours,3.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Wait time reflects time spent on hold after the call is answered by a live agent,0.032,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NJ,New Jersey,202407,Y,P,N,42353.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,6533.0,,48886.0,Does Not Include All Non-MAGI Applications,34264.0,Does Not Include All Medicaid Determinations Made At Application,7799.0,,42063.0,Does Not Include All Medicaid Determinations Made At Application,794509.0,,1760336.0,,1519785.0,,240551.0,,965827.0,,1948.0,,14919.0,,12868.0,,6881.0,,16721.0,,217180.0,Does not include all calls received by call centers; Does not include all calls received after business hours,4.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Wait time reflects time spent on hold after the call is answered by a live agent,0.035,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NJ,New Jersey,202407,Y,U,Y,42353.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,6533.0,,48886.0,Does Not Include All Non-MAGI Applications,34264.0,Does Not Include All Medicaid Determinations Made At Application,7799.0,,42063.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,817248.0,,1809109.0,,1565180.0,,243929.0,,991861.0,,1948.0,,14919.0,,12868.0,,6881.0,,16721.0,,217180.0,Does not include all calls received by call centers; Does not include all calls received after business hours,4.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Wait time reflects time spent on hold after the call is answered by a live agent,0.035,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NJ,New Jersey,202408,Y,P,N,39263.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,6404.0,,45667.0,Does Not Include All Non-MAGI Applications,41274.0,Does Not Include All Medicaid Determinations Made At Application,10331.0,,51605.0,Does Not Include All Medicaid Determinations Made At Application,792818.0,,1752419.0,,1510337.0,,242082.0,,959601.0,,2720.0,,20621.0,,13937.0,,10177.0,,13744.0,,201072.0,Does not include all calls received by call centers; Does not include all calls received after business hours,4.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Wait time reflects time spent on hold after the call is answered by a live agent,0.046,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NJ,New Jersey,202408,Y,U,Y,39263.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,6404.0,,45667.0,Does Not Include All Non-MAGI Applications,41274.0,Does Not Include All Medicaid Determinations Made At Application,10331.0,,51605.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,807250.0,,1781178.0,,1537064.0,,244114.0,,973928.0,,2720.0,,20621.0,,13937.0,,10177.0,,13744.0,,201072.0,Does not include all calls received by call centers; Does not include all calls received after business hours,4.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Wait time reflects time spent on hold after the call is answered by a live agent,0.046,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NJ,New Jersey,202409,Y,P,N,38039.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,6723.0,,44762.0,Does Not Include All Non-MAGI Applications,36784.0,Does Not Include All Medicaid Determinations Made At Application,9974.0,,46758.0,Does Not Include All Medicaid Determinations Made At Application,790172.0,,1741830.0,,1498381.0,,243449.0,,951658.0,,2016.0,,16129.0,,19299.0,,8384.0,,7775.0,,204823.0,Does not include all calls received by call centers; Does not include all calls received after business hours,4.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Wait time reflects time spent on hold after the call is answered by a live agent,0.095,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NJ,New Jersey,202409,Y,U,Y,38039.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,6723.0,,44762.0,Does Not Include All Non-MAGI Applications,36784.0,Does Not Include All Medicaid Determinations Made At Application,9974.0,,46758.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,810866.0,,1783620.0,,1537308.0,,246312.0,,972754.0,,2016.0,,16129.0,,19299.0,,8384.0,,7775.0,,204823.0,Does not include all calls received by call centers; Does not include all calls received after business hours,4.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Wait time reflects time spent on hold after the call is answered by a live agent,0.095,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NJ,New Jersey,202410,Y,P,N,40788.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,6268.0,,47056.0,Does Not Include All Non-MAGI Applications,40816.0,Does Not Include All Medicaid Determinations Made At Application,10344.0,,51160.0,Does Not Include All Medicaid Determinations Made At Application,797934.0,,1753610.0,,1507857.0,,245753.0,,955676.0,,1624.0,,20871.0,,19833.0,,6002.0,,9882.0,,214075.0,Does not include all calls received by call centers; Does not include all calls received after business hours,4.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Wait time reflects time spent on hold after the call is answered by a live agent,0.105,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NJ,New Jersey,202410,Y,U,Y,40788.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,6268.0,,47056.0,Does Not Include All Non-MAGI Applications,40816.0,Does Not Include All Medicaid Determinations Made At Application,10344.0,,51160.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,813548.0,,1786492.0,,1538437.0,,248055.0,,972944.0,,1624.0,,20871.0,,19833.0,,6002.0,,9882.0,,214075.0,Does not include all calls received by call centers; Does not include all calls received after business hours,4.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Wait time reflects time spent on hold after the call is answered by a live agent,0.105,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NJ,New Jersey,202411,Y,P,N,27110.0,,19598.0,,46708.0,,35223.0,Does Not Include All Medicaid Determinations Made At Application,9354.0,,44577.0,Does Not Include All Medicaid Determinations Made At Application,802487.0,,1758623.0,,1509804.0,,248819.0,,956136.0,,2331.0,,22180.0,,14113.0,,4860.0,,10251.0,,163093.0,Does not include all calls received by call centers; Does not include all calls received after business hours,5.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Wait time reflects time spent on hold after the call is answered by a live agent,0.084,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NJ,New Jersey,202411,Y,U,Y,27110.0,,19598.0,,46708.0,,35223.0,Does Not Include All Medicaid Determinations Made At Application,9354.0,,44577.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,816689.0,,1790543.0,,1540209.0,,250334.0,,973854.0,,2331.0,,22180.0,,14113.0,,4860.0,,10251.0,,163093.0,Does not include all calls received by call centers; Does not include all calls received after business hours,5.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Wait time reflects time spent on hold after the call is answered by a live agent,0.084,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NJ,New Jersey,202412,Y,P,N,25102.0,,23624.0,,48726.0,,32627.0,Does Not Include All Medicaid Determinations Made At Application,7409.0,,40036.0,Does Not Include All Medicaid Determinations Made At Application,804346.0,,1756632.0,,1506239.0,,250393.0,,952286.0,,838.0,,16183.0,,15283.0,,6452.0,,8817.0,,150244.0,Does not include all calls received by call centers; Does not include all calls received after business hours,4.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Wait time reflects time spent on hold after the call is answered by a live agent,0.032,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NJ,New Jersey,202412,Y,U,Y,25102.0,,23624.0,,48726.0,,32627.0,Does Not Include All Medicaid Determinations Made At Application,7409.0,,40036.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,820828.0,,1796634.0,,1543150.0,,253484.0,,975806.0,,838.0,,16183.0,,15283.0,,6452.0,,8817.0,,150244.0,Does not include all calls received by call centers; Does not include all calls received after business hours,4.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Wait time reflects time spent on hold after the call is answered by a live agent,0.032,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NJ,New Jersey,202501,Y,P,N,32653.0,,24532.0,,57185.0,,41173.0,Does Not Include All Medicaid Determinations Made At Application,8314.0,,49487.0,Does Not Include All Medicaid Determinations Made At Application,809408.0,,1768277.0,,1516085.0,,252192.0,,958869.0,,1216.0,,10622.0,,23498.0,,6284.0,,9079.0,,176885.0,Does not include all calls received by call centers; Does not include all calls received after business hours,4.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Wait time reflects time spent on hold after the call is answered by a live agent,0.019,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NJ,New Jersey,202501,Y,U,Y,32653.0,,24532.0,,57185.0,,41173.0,Does Not Include All Medicaid Determinations Made At Application,8314.0,,49487.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,822629.0,,1796993.0,,1542980.0,,254013.0,,974364.0,,1216.0,,10622.0,,23498.0,,6284.0,,9079.0,,176885.0,Does not include all calls received by call centers; Does not include all calls received after business hours,4.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Wait time reflects time spent on hold after the call is answered by a live agent,0.019,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NJ,New Jersey,202502,Y,P,N,29544.0,,11193.0,,40737.0,,38892.0,Does Not Include All Medicaid Determinations Made At Application,7642.0,,46534.0,Does Not Include All Medicaid Determinations Made At Application,810707.0,,1767814.0,,1513451.0,,254363.0,,957107.0,,1917.0,,12917.0,,25942.0,,3778.0,,6116.0,,144231.0,Does not include all calls received by call centers; Does not include all calls received after business hours,4.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Wait time reflects time spent on hold after the call is answered by a live agent,0.007,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NJ,New Jersey,202502,Y,U,Y,29544.0,,11193.0,,40737.0,,38892.0,Does Not Include All Medicaid Determinations Made At Application,7642.0,,46534.0,Does Not Include All Medicaid Determinations Made At Application,827000.0,,1802826.0,,1546343.0,,256483.0,,975826.0,,1917.0,,12917.0,,25942.0,,3778.0,,6116.0,,144231.0,Does not include all calls received by call centers; Does not include all calls received after business hours,4.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Wait time reflects time spent on hold after the call is answered by a live agent,0.007,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NJ,New Jersey,202503,Y,P,N,30799.0,,6811.0,,37610.0,,39352.0,Does Not Include All Medicaid Determinations Made At Application,7709.0,,47061.0,Does Not Include All Medicaid Determinations Made At Application,814932.0,,1772643.0,,1517042.0,,255601.0,,957711.0,,1333.0,,16920.0,,17854.0,,4391.0,,6088.0,,143989.0,Does not include all calls received after business hours,4.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Wait time reflects time spent on hold after the call is answered by a live agent,0.007,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NJ,New Jersey,202503,Y,U,Y,30799.0,,6811.0,,37610.0,,39352.0,Does Not Include All Medicaid Determinations Made At Application,7709.0,,47061.0,Does Not Include All Medicaid Determinations Made At Application,832124.0,,1810539.0,,1551755.0,,258784.0,,978415.0,,1333.0,,16920.0,,17854.0,,4391.0,,6088.0,,143989.0,Does not include all calls received by call centers; Does not include all calls received after business hours,4.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Wait time reflects time spent on hold after the call is answered by a live agent,0.007,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NJ,New Jersey,202504,Y,P,N,27997.0,,6585.0,,34582.0,,31586.0,Does Not Include All Medicaid Determinations Made At Application,7830.0,,39416.0,Does Not Include All Medicaid Determinations Made At Application,824248.0,,1790051.0,,1530710.0,,259341.0,,965803.0,,2091.0,,19217.0,,14977.0,,3768.0,,4205.0,,132232.0,Does not include all calls received after business hours,4.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Wait time reflects time spent on hold after the call is answered by a live agent,0.004,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NJ,New Jersey,202504,Y,U,Y,27997.0,,6585.0,,34582.0,,31586.0,Does Not Include All Medicaid Determinations Made At Application,7830.0,,39416.0,Does Not Include All Medicaid Determinations Made At Application,834906.0,,1812275.0,,1551352.0,,260923.0,,977369.0,,2091.0,,19217.0,,14977.0,,3768.0,,4205.0,,132232.0,Does not include all calls received by call centers; Does not include all calls received after business hours,4.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Wait time reflects time spent on hold after the call is answered by a live agent,0.004,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NJ,New Jersey,202505,Y,P,N,28783.0,,6516.0,,35299.0,,27596.0,Does Not Include All Medicaid Determinations Made At Application,6198.0,,33794.0,Does Not Include All Medicaid Determinations Made At Application,824393.0,,1789875.0,,1529926.0,,259949.0,,965482.0,,1600.0,,18322.0,,10291.0,,3247.0,,3595.0,,117826.0,Does not include all calls received after business hours,4.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Wait time reflects time spent on hold after the call is answered by a live agent,0.007,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NJ,New Jersey,202505,Y,U,Y,28783.0,,6516.0,,35299.0,,27596.0,Does Not Include All Medicaid Determinations Made At Application,6198.0,,33794.0,Does Not Include All Medicaid Determinations Made At Application,833358.0,,1808396.0,,1547512.0,,260884.0,,975038.0,,1600.0,,18322.0,,10291.0,,3247.0,,3595.0,,117826.0,Does not include all calls received by call centers; Does not include all calls received after business hours,4.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Wait time reflects time spent on hold after the call is answered by a live agent,0.007,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NJ,New Jersey,202506,Y,P,N,21162.0,,5975.0,,27137.0,,22186.0,Does Not Include All Medicaid Determinations Made At Application,4354.0,,26540.0,Does Not Include All Medicaid Determinations Made At Application,814668.0,,1764383.0,,1505719.0,,258664.0,,949715.0,,932.0,,15770.0,,10419.0,,3026.0,,2951.0,,110920.0,Does not include all calls received after business hours,4.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Wait time reflects time spent on hold after the call is answered by a live agent,0.006,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NJ,New Jersey,202506,Y,U,Y,21162.0,,5975.0,,27137.0,,22186.0,Does Not Include All Medicaid Determinations Made At Application,4354.0,,26540.0,Does Not Include All Medicaid Determinations Made At Application,824916.0,,1785639.0,,1525454.0,,260185.0,,960723.0,,932.0,,15770.0,,10419.0,,3026.0,,2951.0,,110920.0,Does not include all calls received by call centers; Does not include all calls received after business hours,4.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Wait time reflects time spent on hold after the call is answered by a live agent,0.006,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NJ,New Jersey,202507,Y,P,N,33484.0,,6133.0,,39617.0,,20687.0,Does Not Include All Medicaid Determinations Made At Application,1647.0,,22334.0,Does Not Include All Medicaid Determinations Made At Application,807828.0,,1750346.0,,1492673.0,,257673.0,,942518.0,,5237.0,,3287.0,,7907.0,,3140.0,,3063.0,,114092.0,Does not include all calls received after business hours,4.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Wait time reflects time spent on hold after the call is answered by a live agent,0.007,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NJ,New Jersey,202507,Y,U,Y,33484.0,,6133.0,,39617.0,,20687.0,Does Not Include All Medicaid Determinations Made At Application,1647.0,,22334.0,Does Not Include All Medicaid Determinations Made At Application,817576.0,,1769135.0,,1509832.0,,259303.0,,951559.0,,5237.0,,3287.0,,7907.0,,3140.0,,3063.0,,114092.0,Does not include all calls received after business hours,4.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Wait time reflects time spent on hold after the call is answered by a live agent,0.007,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NJ,New Jersey,202508,Y,P,N,27455.0,,5797.0,,33252.0,,21209.0,Does Not Include All Medicaid Determinations Made At Application,2148.0,,23357.0,Does Not Include All Medicaid Determinations Made At Application,807117.0,,1749341.0,,1490551.0,,258790.0,,942224.0,,7682.0,,2404.0,,8227.0,,2915.0,,3188.0,,113645.0,Does not include all calls received after business hours,4.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Wait time reflects time spent on hold after the call is answered by a live agent,0.007,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NJ,New Jersey,202508,Y,U,Y,27455.0,,5797.0,,33252.0,,21209.0,Does Not Include All Medicaid Determinations Made At Application,2148.0,,23357.0,Does Not Include All Medicaid Determinations Made At Application,816646.0,,1767650.0,,1507519.0,,260131.0,,951004.0,,7682.0,,2404.0,,8227.0,,2915.0,,3188.0,,113645.0,Does not include all calls received after business hours,4.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Wait time reflects time spent on hold after the call is answered by a live agent,0.007,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NJ,New Jersey,202509,Y,P,N,19677.0,,6097.0,,25774.0,,23687.0,Does Not Include All Medicaid Determinations Made At Application,2415.0,,26102.0,Does Not Include All Medicaid Determinations Made At Application,803670.0,,1741674.0,,1482752.0,,258922.0,,938004.0,,8831.0,,2450.0,,9035.0,,4359.0,,4195.0,,119298.0,Does not include all calls received after business hours,4.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Wait time reflects time spent on hold after the call is answered by a live agent,0.009,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NJ,New Jersey,202509,Y,U,Y,19677.0,,6097.0,,25774.0,,23687.0,Does Not Include All Medicaid Determinations Made At Application,2415.0,,26102.0,Does Not Include All Medicaid Determinations Made At Application,818929.0,,1772830.0,,1511726.0,,261104.0,,953901.0,,8831.0,,2450.0,,9035.0,,4359.0,,4195.0,,119298.0,Does not include all calls received after business hours,4.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Wait time reflects time spent on hold after the call is answered by a live agent,0.009,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NJ,New Jersey,202510,Y,P,N,25313.0,,5771.0,,31084.0,,24488.0,Does Not Include All Medicaid Determinations Made At Application,2668.0,,27156.0,Does Not Include All Medicaid Determinations Made At Application,805777.0,,1745800.0,,1486782.0,,259018.0,,940023.0,,6892.0,,2991.0,,8905.0,,4282.0,,4973.0,,122052.0,Does not include all calls received after business hours,4.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Wait time reflects time spent on hold after the call is answered by a live agent,0.016,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +NM,New Mexico,201309,N,U,Y,,,,,,,,,,,,,,,457678.0,,,,,,,,,,,,,,,,,,,,,,, +NM,New Mexico,201706,Y,P,N,11384.0,,0.0,,11384.0,,15458.0,,2088.0,,17546.0,,310492.0,,784379.0,,741415.0,,42964.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,201706,Y,U,Y,11384.0,,0.0,,11384.0,,15458.0,,2088.0,,17546.0,,310492.0,,784379.0,,741415.0,,42964.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,201707,Y,P,N,11490.0,,0.0,,11490.0,,16190.0,,1855.0,,18045.0,,309272.0,,778728.0,,736689.0,,42039.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,201707,Y,U,Y,11490.0,,0.0,,11490.0,,16190.0,,1855.0,,18045.0,,309272.0,,778728.0,,736689.0,,42039.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,201708,Y,P,N,14151.0,,0.0,,14151.0,,19999.0,,1982.0,,21981.0,,306306.0,,768072.0,,727359.0,,40713.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,201708,Y,U,Y,14151.0,,0.0,,14151.0,,19999.0,,1982.0,,21981.0,,306306.0,,768072.0,,727359.0,,40713.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,201709,Y,P,N,12246.0,,0.0,,12246.0,,17267.0,,1209.0,,18476.0,,301638.0,,751031.0,,712073.0,,38958.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,201709,Y,U,Y,12246.0,,0.0,,12246.0,,17267.0,,1209.0,,18476.0,,301638.0,,751031.0,,712073.0,,38958.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,201710,Y,P,N,13165.0,,0.0,,13165.0,,17348.0,,1215.0,,18563.0,,302572.0,,751740.0,,713132.0,,38608.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,201710,Y,U,Y,13165.0,,0.0,,13165.0,,17348.0,,1215.0,,18563.0,,302572.0,,751740.0,,713132.0,,38608.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,201711,Y,P,N,12463.0,,0.0,,12463.0,,16680.0,,1141.0,,17821.0,,303019.0,,751480.0,,712758.0,,38722.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,201711,Y,U,Y,12463.0,,0.0,,12463.0,,16680.0,,1141.0,,17821.0,,303019.0,,751480.0,,712758.0,,38722.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,201712,Y,P,N,12825.0,,0.0,,12825.0,,17422.0,,1599.0,,19021.0,,303990.0,,752431.0,,713549.0,,38882.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,201712,Y,U,Y,12825.0,,0.0,,12825.0,,17422.0,,1599.0,,19021.0,,303990.0,,752431.0,,713549.0,,38882.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,201801,Y,P,N,13995.0,,0.0,,13995.0,,19247.0,,1404.0,,20651.0,,344611.0,,752870.0,,717045.0,,35825.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,201801,Y,U,Y,13995.0,,0.0,,13995.0,,19247.0,,1404.0,,20651.0,,344611.0,,752870.0,,717045.0,,35825.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,201802,Y,P,N,12171.0,,0.0,,12171.0,,17416.0,,1403.0,,18819.0,,343006.0,,750054.0,,714056.0,,35998.0,,,,6872.0,,3790.0,,5553.0,,2083.0,,2087.0,,,,,,, +NM,New Mexico,201802,Y,U,Y,12171.0,,0.0,,12171.0,,17416.0,,1403.0,,18819.0,,343006.0,,750054.0,,714056.0,,35998.0,,,,6872.0,,3790.0,,5553.0,,2083.0,,2087.0,,,,,,, +NM,New Mexico,201803,Y,P,N,12369.0,,0.0,,12369.0,,17685.0,,8489.0,,26174.0,,342216.0,,749080.0,,713337.0,,35743.0,,,,7324.0,,2799.0,,3980.0,,1935.0,,1311.0,,,,,,, +NM,New Mexico,201803,Y,U,Y,12369.0,,0.0,,12369.0,,17685.0,,8489.0,,26174.0,,342216.0,,749080.0,,713337.0,,35743.0,,,,7324.0,,2799.0,,3980.0,,1935.0,,1311.0,,,,,,, +NM,New Mexico,201804,Y,P,N,11858.0,,0.0,,11858.0,,16766.0,,1405.0,,18171.0,,341072.0,,748313.0,,713345.0,,34968.0,,,,7550.0,,2778.0,,4228.0,,2037.0,,1040.0,,,,,,, +NM,New Mexico,201804,Y,U,Y,11858.0,,0.0,,11858.0,,16766.0,,1405.0,,18171.0,,341072.0,,748313.0,,713345.0,,34968.0,,,,7550.0,,2778.0,,4228.0,,2037.0,,1040.0,,,,,,, +NM,New Mexico,201805,Y,P,N,11739.0,,0.0,,11739.0,,15680.0,,1521.0,,17201.0,,341637.0,,746393.0,,711989.0,,34404.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,201805,Y,U,Y,11739.0,,0.0,,11739.0,,15680.0,,1521.0,,17201.0,,341637.0,,746393.0,,711989.0,,34404.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,201806,Y,P,N,11916.0,,0.0,,11916.0,,15773.0,,1711.0,,17484.0,,335724.0,,737816.0,,703685.0,,34131.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,201806,Y,U,Y,11916.0,,0.0,,11916.0,,15773.0,,1711.0,,17484.0,,335724.0,,737816.0,,703685.0,,34131.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,201807,Y,P,N,12682.0,,0.0,,12682.0,,17272.0,,1888.0,,19160.0,,336095.0,,736359.0,,699955.0,,36404.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,201807,Y,U,Y,12682.0,,0.0,,12682.0,,17272.0,,1888.0,,19160.0,,336095.0,,736359.0,,699955.0,,36404.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,201808,Y,P,N,13918.0,,0.0,,13918.0,,21895.0,,1714.0,,23609.0,,335181.0,,734378.0,,697876.0,,36502.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,201808,Y,U,Y,13918.0,,0.0,,13918.0,,21895.0,,1714.0,,23609.0,,335181.0,,734378.0,,697876.0,,36502.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,201809,Y,P,N,11616.0,,0.0,,11616.0,,19364.0,,1437.0,,20801.0,,333246.0,,729632.0,,693339.0,,36293.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,201809,Y,U,Y,11616.0,,0.0,,11616.0,,19364.0,,1437.0,,20801.0,,333246.0,,729632.0,,693339.0,,36293.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,201810,Y,P,N,12783.0,,0.0,,12783.0,,21628.0,,1409.0,,23037.0,,333684.0,,732566.0,,695813.0,,36753.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,201810,Y,U,Y,12783.0,,0.0,,12783.0,,21628.0,,1409.0,,23037.0,,333684.0,,732566.0,,695813.0,,36753.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,201811,Y,P,N,11781.0,,0.0,,11781.0,,19389.0,,1483.0,,20872.0,,333694.0,,732931.0,,695887.0,,37044.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,201811,Y,U,Y,11781.0,,0.0,,11781.0,,19389.0,,1483.0,,20872.0,,333694.0,,732931.0,,695887.0,,37044.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,201812,Y,P,N,10579.0,,0.0,,10579.0,,17859.0,,1751.0,,19610.0,,333702.0,,734168.0,,696869.0,,37299.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,201812,Y,U,Y,10579.0,,0.0,,10579.0,,17859.0,,1751.0,,19610.0,,333702.0,,734168.0,,696869.0,,37299.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,201901,Y,P,N,13009.0,,0.0,,13009.0,,19621.0,,1491.0,,21112.0,,333900.0,,734585.0,,696863.0,,37722.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,201901,Y,U,Y,13009.0,,0.0,,13009.0,,19621.0,,1491.0,,21112.0,,333900.0,,734585.0,,696863.0,,37722.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,201902,Y,P,N,11068.0,,0.0,,11068.0,,15844.0,,1451.0,,17295.0,,333373.0,,734425.0,,696551.0,,37874.0,,,,9506.0,,7718.0,,2441.0,,2841.0,,324.0,,,,,,, +NM,New Mexico,201902,Y,U,Y,11068.0,,0.0,,11068.0,,15844.0,,1451.0,,17295.0,,333373.0,,734425.0,,696551.0,,37874.0,,,,9506.0,,7718.0,,2441.0,,2841.0,,324.0,,,,,,, +NM,New Mexico,201903,Y,P,N,12054.0,,0.0,,12054.0,,17822.0,,9380.0,,27202.0,,333176.0,,734229.0,,696133.0,,38096.0,,,,8351.0,,2827.0,,2577.0,,1929.0,,353.0,,,,,,, +NM,New Mexico,201903,Y,U,Y,12054.0,,0.0,,12054.0,,17822.0,,9380.0,,27202.0,,333176.0,,734229.0,,696133.0,,38096.0,,,,8351.0,,2827.0,,2577.0,,1929.0,,353.0,,,,,,, +NM,New Mexico,201904,Y,P,N,12481.0,,0.0,,12481.0,,20298.0,,1566.0,,21864.0,,333136.0,,733956.0,,696844.0,,37112.0,,,,8609.0,,3017.0,,2848.0,,1931.0,,214.0,,,,,,, +NM,New Mexico,201904,Y,U,Y,12481.0,,0.0,,12481.0,,20298.0,,1566.0,,21864.0,,333136.0,,733956.0,,696844.0,,37112.0,,,,8609.0,,3017.0,,2848.0,,1931.0,,214.0,,,,,,, +NM,New Mexico,201905,Y,P,N,12433.0,,0.0,,12433.0,,19970.0,,1695.0,,21665.0,,332570.0,,736120.0,,698995.0,,37125.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,201905,Y,U,Y,12433.0,,0.0,,12433.0,,19970.0,,1695.0,,21665.0,,332570.0,,736120.0,,698995.0,,37125.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,201906,Y,P,N,11725.0,,0.0,,11725.0,,16373.0,,1576.0,,17949.0,,331839.0,,734948.0,,697826.0,,37122.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,201906,Y,U,Y,11725.0,,0.0,,11725.0,,16373.0,,1576.0,,17949.0,,331839.0,,734948.0,,697826.0,,37122.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,201907,Y,P,N,13423.0,,0.0,,13423.0,,19306.0,,1708.0,,21014.0,,332024.0,,735977.0,,698837.0,,37140.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,201907,Y,U,Y,13423.0,,0.0,,13423.0,,19306.0,,1708.0,,21014.0,,332024.0,,735977.0,,698837.0,,37140.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,201908,Y,P,N,13246.0,,0.0,,13246.0,,20929.0,,2060.0,,22989.0,,332404.0,,737226.0,,699902.0,,37324.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,201908,Y,U,Y,13246.0,,0.0,,13246.0,,20929.0,,2060.0,,22989.0,,332404.0,,737226.0,,699902.0,,37324.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,201909,Y,P,N,11772.0,,0.0,,11772.0,,17416.0,,1433.0,,18849.0,,332936.0,,739346.0,,701717.0,,37629.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,201909,Y,U,Y,11772.0,,0.0,,11772.0,,17416.0,,1433.0,,18849.0,,332936.0,,739346.0,,701717.0,,37629.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,201910,Y,P,N,12542.0,,0.0,,12542.0,,17408.0,,1611.0,,19019.0,,332840.0,,739975.0,,701955.0,,38020.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,201910,Y,U,Y,12542.0,,0.0,,12542.0,,17408.0,,1611.0,,19019.0,,332840.0,,739975.0,,701955.0,,38020.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,201911,Y,P,N,11568.0,,0.0,,11568.0,,14982.0,,1540.0,,16522.0,,332588.0,,740696.0,,702250.0,,38446.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,201911,Y,U,Y,11568.0,,0.0,,11568.0,,14982.0,,1540.0,,16522.0,,332588.0,,740696.0,,702250.0,,38446.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,201912,Y,P,N,12483.0,,0.0,,12483.0,,15925.0,,1970.0,,17895.0,,332680.0,,743312.0,,704593.0,,38719.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,201912,Y,U,Y,12483.0,,0.0,,12483.0,,15925.0,,1970.0,,17895.0,,332680.0,,743312.0,,704593.0,,38719.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,202001,Y,P,N,15080.0,,0.0,,15080.0,,17123.0,,1786.0,,18909.0,,333232.0,,745341.0,,706161.0,,39180.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,202001,Y,U,Y,15080.0,,0.0,,15080.0,,17123.0,,1786.0,,18909.0,,333232.0,,745341.0,,706161.0,,39180.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,202002,Y,P,N,12893.0,,0.0,,12893.0,,14580.0,,1578.0,,16158.0,,332629.0,,744994.0,,705849.0,,39145.0,,,,7056.0,,2028.0,,2569.0,,1793.0,,273.0,,,,,,, +NM,New Mexico,202002,Y,U,Y,12893.0,,0.0,,12893.0,,14580.0,,1578.0,,16158.0,,332629.0,,744994.0,,705849.0,,39145.0,,,,7056.0,,2028.0,,2569.0,,1793.0,,273.0,,,,,,, +NM,New Mexico,202003,Y,P,N,15509.0,,0.0,,15509.0,,15154.0,,9806.0,,24960.0,,332875.0,,745953.0,,706406.0,,39547.0,,,,8219.0,,2547.0,,2230.0,,1866.0,,357.0,,,,,,, +NM,New Mexico,202003,Y,U,Y,15509.0,,0.0,,15509.0,,15154.0,,9806.0,,24960.0,,332875.0,,745953.0,,706406.0,,39547.0,,,,8219.0,,2547.0,,2230.0,,1866.0,,357.0,,,,,,, +NM,New Mexico,202004,Y,P,N,14961.0,,0.0,,14961.0,,17410.0,,1150.0,,18560.0,,335064.0,,757978.0,,719043.0,,38935.0,,,,8863.0,,3102.0,,3504.0,,1963.0,,245.0,,,,,,, +NM,New Mexico,202004,Y,U,Y,14961.0,,0.0,,14961.0,,17410.0,,1150.0,,18560.0,,335064.0,,757978.0,,719043.0,,38935.0,,,,8863.0,,3102.0,,3504.0,,1963.0,,245.0,,,,,,, +NM,New Mexico,202005,Y,P,N,10536.0,,0.0,,10536.0,,11552.0,,1347.0,,12899.0,,338061.0,,768206.0,,730573.0,,37633.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,202005,Y,U,Y,10536.0,,0.0,,10536.0,,11552.0,,1347.0,,12899.0,,338061.0,,768206.0,,730573.0,,37633.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,202006,Y,P,N,10769.0,,0.0,,10769.0,,11405.0,,1350.0,,12755.0,,340976.0,,775051.0,,736898.0,,38153.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,202006,Y,U,Y,10769.0,,0.0,,10769.0,,11405.0,,1350.0,,12755.0,,340976.0,,775051.0,,736898.0,,38153.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,202007,Y,P,N,12220.0,,0.0,,12220.0,,12230.0,,1260.0,,13490.0,,343622.0,,782159.0,,743801.0,,38358.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,202007,Y,U,Y,12220.0,,0.0,,12220.0,,12230.0,,1260.0,,13490.0,,343622.0,,782159.0,,743801.0,,38358.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,202008,Y,P,N,11795.0,,0.0,,11795.0,,11751.0,,1253.0,,13004.0,,346569.0,,790138.0,,751115.0,,39023.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,202008,Y,U,Y,11795.0,,0.0,,11795.0,,11751.0,,1253.0,,13004.0,,346569.0,,790138.0,,751115.0,,39023.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,202009,Y,P,N,10956.0,,0.0,,10956.0,,10068.0,,1201.0,,11269.0,,348084.0,,794755.0,,755513.0,,39242.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,202009,Y,U,Y,10956.0,,0.0,,10956.0,,10068.0,,1201.0,,11269.0,,348084.0,,794755.0,,755513.0,,39242.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,202010,Y,P,N,11637.0,,0.0,,11637.0,,9851.0,,1077.0,,10928.0,,350580.0,,801499.0,,761470.0,,40029.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,202010,Y,U,Y,11637.0,,0.0,,11637.0,,9851.0,,1077.0,,10928.0,,350580.0,,801499.0,,761470.0,,40029.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,202011,Y,P,N,11599.0,,0.0,,11599.0,,9972.0,,946.0,,10918.0,,353062.0,,809042.0,,768274.0,,40768.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,202011,Y,U,Y,11599.0,,0.0,,11599.0,,9972.0,,946.0,,10918.0,,353062.0,,809042.0,,768274.0,,40768.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,202012,Y,P,N,12142.0,,0.0,,12142.0,,11921.0,,1545.0,,13466.0,,355890.0,,818279.0,,776960.0,,41319.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,202012,Y,U,Y,12142.0,,0.0,,12142.0,,11921.0,,1545.0,,13466.0,,355890.0,,818279.0,,776960.0,,41319.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,202101,Y,P,N,10593.0,,0.0,,10593.0,,9005.0,,1220.0,,10225.0,,357617.0,,823477.0,,781812.0,,41665.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,202101,Y,U,Y,10593.0,,0.0,,10593.0,,9005.0,,1220.0,,10225.0,,357617.0,,823477.0,,781812.0,,41665.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,202102,Y,P,N,9715.0,,0.0,,9715.0,,8216.0,,1310.0,,9526.0,,359075.0,,827596.0,,785308.0,,42288.0,,,,5102.0,,1056.0,,1635.0,,1204.0,,181.0,,,,,,, +NM,New Mexico,202102,Y,U,Y,9715.0,,0.0,,9715.0,,8216.0,,1310.0,,9526.0,,359075.0,,827596.0,,785308.0,,42288.0,,,,5102.0,,1056.0,,1635.0,,1204.0,,181.0,,,,,,, +NM,New Mexico,202103,Y,P,N,10108.0,,0.0,,10108.0,,8660.0,,6302.0,,14962.0,,360744.0,,832099.0,,789297.0,,42802.0,,,,5195.0,,1077.0,,1775.0,,1388.0,,183.0,,,,,,, +NM,New Mexico,202103,Y,U,Y,10108.0,,0.0,,10108.0,,8660.0,,6302.0,,14962.0,,360744.0,,832099.0,,789297.0,,42802.0,,,,5195.0,,1077.0,,1775.0,,1388.0,,183.0,,,,,,, +NM,New Mexico,202104,Y,P,N,8933.0,,0.0,,8933.0,,8064.0,,2012.0,,10076.0,,361697.0,,835888.0,,792677.0,,43211.0,,,,5044.0,,1031.0,,1574.0,,1391.0,,116.0,,,,,,, +NM,New Mexico,202104,Y,U,Y,8933.0,,0.0,,8933.0,,8064.0,,2012.0,,10076.0,,361697.0,,835888.0,,792677.0,,43211.0,,,,5044.0,,1031.0,,1574.0,,1391.0,,116.0,,,,,,, +NM,New Mexico,202105,Y,P,N,8186.0,,0.0,,8186.0,,7374.0,,1038.0,,8412.0,,362534.0,,838590.0,,794881.0,,43709.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,202105,Y,U,Y,8186.0,,0.0,,8186.0,,7374.0,,1038.0,,8412.0,,362534.0,,838590.0,,794881.0,,43709.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,202106,Y,P,N,9315.0,,0.0,,9315.0,,7813.0,,976.0,,8789.0,,364546.0,,842999.0,,798605.0,,44394.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,202106,Y,U,Y,9315.0,,0.0,,9315.0,,7813.0,,976.0,,8789.0,,364546.0,,842999.0,,798605.0,,44394.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,202107,Y,P,N,8990.0,,0.0,,8990.0,,8667.0,,1054.0,,9721.0,,366235.0,,847066.0,,802281.0,,44785.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,202107,Y,U,Y,8990.0,,0.0,,8990.0,,8667.0,,1054.0,,9721.0,,366235.0,,847066.0,,802281.0,,44785.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,202108,Y,P,N,10517.0,,0.0,,10517.0,,9663.0,,1021.0,,10684.0,,368197.0,,852135.0,,806911.0,,45224.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,202108,Y,U,Y,10517.0,,0.0,,10517.0,,9663.0,,1021.0,,10684.0,,368197.0,,852135.0,,806911.0,,45224.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,202109,Y,P,N,9893.0,,0.0,,9893.0,,8148.0,,885.0,,9033.0,,369435.0,,855781.0,,809955.0,,45826.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,202109,Y,U,Y,9893.0,,0.0,,9893.0,,8148.0,,885.0,,9033.0,,369435.0,,855781.0,,809955.0,,45826.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,202110,Y,P,N,9833.0,,0.0,,9833.0,,7731.0,,678.0,,8409.0,,370058.0,,857931.0,,811825.0,,46106.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,202110,Y,U,Y,9833.0,,0.0,,9833.0,,7731.0,,678.0,,8409.0,,370058.0,,857931.0,,811825.0,,46106.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,202111,Y,P,N,9809.0,,0.0,,9809.0,,8337.0,,699.0,,9036.0,,371195.0,,861297.0,,814863.0,,46434.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,202111,Y,U,Y,9809.0,,0.0,,9809.0,,8337.0,,699.0,,9036.0,,371195.0,,861297.0,,814863.0,,46434.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,202112,Y,P,N,9216.0,,0.0,,9216.0,,8158.0,,1073.0,,9231.0,,373674.0,,866606.0,,819707.0,,46899.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,202112,Y,U,Y,9216.0,,0.0,,9216.0,,8158.0,,1073.0,,9231.0,,373674.0,,866606.0,,819707.0,,46899.0,,,,,,,,,,,,,,,,,,, +NM,New Mexico,202201,Y,P,N,11320.0,,0.0,,11320.0,,7834.0,,683.0,,8517.0,,374319.0,,868990.0,,821922.0,,47068.0,,,,4623.0,,1610.0,,1337.0,,2562.0,,215.0,,,,,,, +NM,New Mexico,202201,Y,U,Y,11320.0,,0.0,,11320.0,,7834.0,,683.0,,8517.0,,374319.0,,868990.0,,821922.0,,47068.0,,,,4623.0,,1610.0,,1337.0,,2562.0,,215.0,,,,,,, +NM,New Mexico,202202,Y,P,N,10323.0,,0.0,,10323.0,,6466.0,,560.0,,7026.0,,376171.0,,873299.0,,825859.0,,47440.0,,,,2778.0,,2510.0,,1541.0,,2293.0,,295.0,,,,,,, +NM,New Mexico,202202,Y,U,Y,10323.0,,0.0,,10323.0,,6466.0,,560.0,,7026.0,,376171.0,,873299.0,,825859.0,,47440.0,,,,2778.0,,2510.0,,1541.0,,2293.0,,295.0,,,,,,, +NM,New Mexico,202203,Y,P,N,10921.0,,0.0,,10921.0,,7059.0,,4424.0,,11483.0,,377413.0,,870824.0,,822382.0,,48442.0,,,,2681.0,,2910.0,,1463.0,,2124.0,,275.0,,,,,,, +NM,New Mexico,202203,Y,U,Y,10921.0,,0.0,,10921.0,,7059.0,,4424.0,,11483.0,,377413.0,,870824.0,,822382.0,,48442.0,,,,2681.0,,2910.0,,1463.0,,2124.0,,275.0,,,,,,, +NM,New Mexico,202204,Y,P,N,9627.0,,0.0,,9627.0,,6072.0,,426.0,,6498.0,,377106.0,,870319.0,,823113.0,,47206.0,,,,2251.0,,876.0,,2747.0,,1970.0,,189.0,,,,,,, +NM,New Mexico,202204,Y,U,Y,9627.0,,0.0,,9627.0,,6072.0,,426.0,,6498.0,,377106.0,,870319.0,,823113.0,,47206.0,,,,2251.0,,876.0,,2747.0,,1970.0,,189.0,,,,,,, +NM,New Mexico,202205,Y,P,N,10401.0,,0.0,,10401.0,,5821.0,,2258.0,,8079.0,,378366.0,,873372.0,,825463.0,,47909.0,,,,2405.0,,364.0,,2904.0,,1599.0,,178.0,,,,,,, +NM,New Mexico,202205,Y,U,Y,10401.0,,0.0,,10401.0,,5821.0,,2258.0,,8079.0,,378366.0,,873372.0,,825463.0,,47909.0,,,,2405.0,,364.0,,2904.0,,1599.0,,178.0,,,,,,, +NM,New Mexico,202206,Y,P,N,10896.0,,0.0,,10896.0,,5755.0,,561.0,,6316.0,,378596.0,,874678.0,,826070.0,,48608.0,,,,2302.0,,409.0,,2603.0,,2326.0,,252.0,,,,,,, +NM,New Mexico,202206,Y,U,Y,10896.0,,0.0,,10896.0,,5755.0,,561.0,,6316.0,,378596.0,,874678.0,,826070.0,,48608.0,,,,2302.0,,409.0,,2603.0,,2326.0,,252.0,,,,,,, +NM,New Mexico,202207,Y,P,N,9339.0,,0.0,,9339.0,,5542.0,,548.0,,6090.0,,379127.0,,876177.0,,826934.0,,49243.0,,,,1878.0,,327.0,,1191.0,,3219.0,,963.0,,,,,,, +NM,New Mexico,202207,Y,U,Y,9339.0,,0.0,,9339.0,,5542.0,,548.0,,6090.0,,379127.0,,876177.0,,826934.0,,49243.0,,,,1878.0,,327.0,,1191.0,,3219.0,,963.0,,,,,,, +NM,New Mexico,202208,Y,P,N,11906.0,,0.0,,11906.0,,7233.0,,662.0,,7895.0,,380565.0,,879766.0,,830089.0,,49677.0,,,,1502.0,,316.0,,1496.0,,2494.0,,943.0,,,,,,, +NM,New Mexico,202208,Y,U,Y,11906.0,,0.0,,11906.0,,7233.0,,662.0,,7895.0,,380565.0,,879766.0,,830089.0,,49677.0,,,,1502.0,,316.0,,1496.0,,2494.0,,943.0,,,,,,, +NM,New Mexico,202209,Y,P,N,10667.0,,0.0,,10667.0,,7150.0,,688.0,,7838.0,,381972.0,,882745.0,,832459.0,,50286.0,,,,3591.0,,206.0,,3199.0,,1950.0,,1017.0,,,,,,, +NM,New Mexico,202209,Y,U,Y,10667.0,,0.0,,10667.0,,7150.0,,688.0,,7838.0,,381972.0,,882745.0,,832459.0,,50286.0,,,,3591.0,,206.0,,3199.0,,1950.0,,1017.0,,,,,,, +NM,New Mexico,202210,Y,P,N,9308.0,,0.0,,9308.0,,5625.0,,613.0,,6238.0,,381288.0,,881681.0,,831367.0,,50314.0,,,,3463.0,,255.0,,2278.0,,1697.0,,644.0,,,,,,, +NM,New Mexico,202210,Y,U,Y,9308.0,,0.0,,9308.0,,5625.0,,613.0,,6238.0,,381288.0,,881681.0,,831367.0,,50314.0,,,,3463.0,,255.0,,2278.0,,1697.0,,644.0,,,,,,, +NM,New Mexico,202211,Y,P,N,9057.0,,0.0,,9057.0,,5192.0,,503.0,,5695.0,,381713.0,,882729.0,,832045.0,,50684.0,,,,3675.0,,204.0,,1034.0,,2795.0,,962.0,,,,,,, +NM,New Mexico,202211,Y,U,Y,9057.0,,0.0,,9057.0,,5192.0,,503.0,,5695.0,,381713.0,,882729.0,,832045.0,,50684.0,,,,3675.0,,204.0,,1034.0,,2795.0,,962.0,,,,,,, +NM,New Mexico,202212,Y,P,N,9999.0,,0.0,,9999.0,,5709.0,,760.0,,6469.0,,382552.0,,884416.0,,832967.0,,51449.0,,,,3367.0,,251.0,,893.0,,3852.0,,2562.0,,,,,,, +NM,New Mexico,202212,Y,U,Y,9999.0,,0.0,,9999.0,,5709.0,,760.0,,6469.0,,382552.0,,884416.0,,832967.0,,51449.0,,,,3367.0,,251.0,,893.0,,3852.0,,2562.0,,,,,,, +NM,New Mexico,202301,Y,P,N,11410.0,,0.0,,11410.0,,5799.0,,532.0,,6331.0,,383708.0,,887276.0,,835044.0,,52232.0,,,,2508.0,,222.0,,1136.0,,2545.0,,2406.0,,,,,,, +NM,New Mexico,202301,Y,U,Y,11410.0,,0.0,,11410.0,,5799.0,,532.0,,6331.0,,383708.0,,887276.0,,835044.0,,52232.0,,,,2508.0,,222.0,,1136.0,,2545.0,,2406.0,,,,,,, +NM,New Mexico,202302,Y,P,N,8839.0,,0.0,,8839.0,,3731.0,,4652.0,,8383.0,,384718.0,,889005.0,,836389.0,,52616.0,,,,1585.0,,196.0,,621.0,,3054.0,,1506.0,,,,,,, +NM,New Mexico,202302,Y,U,Y,8839.0,,0.0,,8839.0,,3731.0,,4652.0,,8383.0,,384718.0,,889005.0,,836389.0,,52616.0,,,,1585.0,,196.0,,621.0,,3054.0,,1506.0,,,,,,, +NM,New Mexico,202303,Y,P,N,10144.0,,0.0,,10144.0,,5428.0,,521.0,,5949.0,,385514.0,,890778.0,,836594.0,,54184.0,,,,1110.0,,237.0,,791.0,,1422.0,,1881.0,,230628.0,Does not include all calls received after business hours; Includes calls for other benefit programs,39.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.264,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NM,New Mexico,202303,Y,U,Y,10144.0,,0.0,,10144.0,,5428.0,,521.0,,5949.0,,385514.0,,890778.0,,836594.0,,54184.0,,,,1110.0,,237.0,,791.0,,1422.0,,1881.0,,230628.0,Does not include all calls received after business hours; Includes calls for other benefit programs,39.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.264,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NM,New Mexico,202304,Y,P,N,9174.0,,0.0,,9174.0,,5201.0,,511.0,,5712.0,,383268.0,,888178.0,,838937.0,,49241.0,,,,1842.0,,327.0,,834.0,,903.0,,2958.0,,170897.0,Does not include all calls received after business hours; Includes calls for other benefit programs,32.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.235,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NM,New Mexico,202304,Y,U,Y,9174.0,,0.0,,9174.0,,5201.0,,511.0,,5712.0,,383268.0,,888178.0,,838937.0,,49241.0,,,,1842.0,,327.0,,834.0,,903.0,,2958.0,,170897.0,Does not include all calls received after business hours; Includes calls for other benefit programs,32.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.235,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NM,New Mexico,202305,Y,P,N,13639.0,,0.0,,13639.0,,7596.0,,148.0,,7744.0,,378480.0,,878004.0,,830099.0,,47905.0,,,,1931.0,,424.0,,1357.0,,997.0,,3627.0,,163927.0,Does not include all calls received after business hours; Includes calls for other benefit programs,20.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.193,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NM,New Mexico,202305,Y,U,Y,13639.0,,0.0,,13639.0,,7596.0,,148.0,,7744.0,,378480.0,,878004.0,,830099.0,,47905.0,,,,1931.0,,424.0,,1357.0,,997.0,,3627.0,,163927.0,Does not include all calls received after business hours; Includes calls for other benefit programs,20.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.193,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NM,New Mexico,202306,Y,P,N,16610.0,,0.0,,16610.0,,10049.0,,225.0,,10274.0,,378889.0,,878906.0,,830865.0,,48041.0,,,,1048.0,,313.0,,986.0,,683.0,,1384.0,,179766.0,Does not include all calls received after business hours; Includes calls for other benefit programs,28.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.234,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NM,New Mexico,202306,Y,U,Y,16610.0,,0.0,,16610.0,,10049.0,,225.0,,10274.0,,378889.0,,878906.0,,830865.0,,48041.0,,,,1048.0,,313.0,,986.0,,683.0,,1384.0,,179766.0,Does not include all calls received after business hours; Includes calls for other benefit programs,28.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.234,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NM,New Mexico,202307,Y,P,N,15430.0,,0.0,,15430.0,,10397.0,,262.0,,10659.0,,357613.0,,823720.0,,780434.0,,43286.0,,,,2737.0,,849.0,,1768.0,,1475.0,,3543.0,,172468.0,Does not include all calls received after business hours; Includes calls for other benefit programs,25.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.206,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NM,New Mexico,202307,Y,U,Y,15430.0,,0.0,,15430.0,,10397.0,,262.0,,10659.0,,357613.0,,823720.0,,780434.0,,43286.0,,,,2737.0,,849.0,,1768.0,,1475.0,,3543.0,,172468.0,Does not include all calls received after business hours; Includes calls for other benefit programs,25.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.206,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NM,New Mexico,202308,Y,P,N,16737.0,,0.0,,16737.0,,9728.0,,256.0,,9984.0,,349775.0,,802730.0,,760044.0,,42686.0,,,,2336.0,,539.0,,1710.0,,1980.0,,5318.0,,267458.0,Does not include all calls received after business hours; Includes calls for other benefit programs,35.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.215,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NM,New Mexico,202308,Y,U,Y,16737.0,,0.0,,16737.0,,9728.0,,256.0,,9984.0,,349775.0,,802730.0,,760044.0,,42686.0,,,,2336.0,,539.0,,1710.0,,1980.0,,5318.0,,267458.0,Does not include all calls received after business hours; Includes calls for other benefit programs,35.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.215,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NM,New Mexico,202309,Y,P,N,12647.0,,0.0,,12647.0,,8489.0,,222.0,,8711.0,,338754.0,,775590.0,,734135.0,,41455.0,,,,2052.0,,435.0,,1100.0,,1939.0,,2937.0,,254600.0,Does not include all calls received after business hours; Includes calls for other benefit programs,34.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.239,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NM,New Mexico,202309,Y,U,Y,12647.0,,0.0,,12647.0,,8489.0,,222.0,,8711.0,,338754.0,,775590.0,,734135.0,,41455.0,,,,2052.0,,435.0,,1100.0,,1939.0,,2937.0,,254600.0,Does not include all calls received after business hours; Includes calls for other benefit programs,34.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.239,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NM,New Mexico,202310,Y,P,N,13932.0,,0.0,,13932.0,,8541.0,,213.0,,8754.0,,347805.0,,804856.0,,762500.0,,42356.0,,,,1841.0,,396.0,,1190.0,,1077.0,,3699.0,,281826.0,Does not include all calls received after business hours; Includes calls for other benefit programs,38.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.248,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NM,New Mexico,202310,Y,U,Y,13932.0,,0.0,,13932.0,,8541.0,,213.0,,8754.0,,347805.0,,804856.0,,762500.0,,42356.0,,,,1841.0,,396.0,,1190.0,,1077.0,,3699.0,,281826.0,Does not include all calls received after business hours; Includes calls for other benefit programs,38.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.248,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NM,New Mexico,202311,Y,P,N,15372.0,,0.0,,15372.0,,8467.0,,230.0,,8697.0,,340334.0,,790912.0,,749085.0,,41827.0,,,,2117.0,,288.0,,823.0,,953.0,,6001.0,,290692.0,Does not include all calls received after business hours; Includes calls for other benefit programs,43.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.276,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NM,New Mexico,202311,Y,U,Y,15372.0,,0.0,,15372.0,,8467.0,,230.0,,8697.0,,340334.0,,790912.0,,749085.0,,41827.0,,,,2117.0,,288.0,,823.0,,953.0,,6001.0,,290692.0,Does not include all calls received after business hours; Includes calls for other benefit programs,43.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.276,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NM,New Mexico,202312,Y,P,N,16396.0,,0.0,,16396.0,,9661.0,,237.0,,9898.0,,337860.0,,783627.0,,741291.0,,42336.0,,,,2111.0,,410.0,,1113.0,,1365.0,,7693.0,,300600.0,Does not include all calls received after business hours; Includes calls for other benefit programs,46.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.275,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NM,New Mexico,202312,Y,U,Y,16396.0,,0.0,,16396.0,,9661.0,,237.0,,9898.0,,337860.0,,783627.0,,741291.0,,42336.0,,,,2111.0,,410.0,,1113.0,,1365.0,,7693.0,,300600.0,Does not include all calls received after business hours; Includes calls for other benefit programs,46.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.275,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NM,New Mexico,202401,Y,P,N,36262.0,,0.0,,36262.0,,11310.0,,309.0,,11619.0,,333387.0,,782235.0,,740937.0,,41298.0,,,,2715.0,,719.0,,1550.0,,1171.0,,8081.0,,302621.0,Does not include all calls received after business hours; Includes calls for other benefit programs,44.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.235,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NM,New Mexico,202401,Y,U,Y,36262.0,,0.0,,36262.0,,11310.0,,309.0,,11619.0,,333387.0,,782235.0,,740937.0,,41298.0,,,,2715.0,,719.0,,1550.0,,1171.0,,8081.0,,302621.0,Does not include all calls received after business hours; Includes calls for other benefit programs,44.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.235,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NM,New Mexico,202402,Y,P,N,17103.0,,0.0,,17103.0,,12847.0,,341.0,,13188.0,,334488.0,,786269.0,,744231.0,,42038.0,,,,2845.0,,1222.0,,2262.0,,2322.0,,11725.0,,247986.0,Does not include all calls received after business hours; Includes calls for other benefit programs,46.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.228,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NM,New Mexico,202402,Y,U,Y,17103.0,,0.0,,17103.0,,12847.0,,341.0,,13188.0,,334488.0,,786269.0,,744231.0,,42038.0,,,,2845.0,,1222.0,,2262.0,,2322.0,,11725.0,,247986.0,Does not include all calls received after business hours; Includes calls for other benefit programs,46.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.228,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NM,New Mexico,202403,Y,P,N,14989.0,,0.0,,14989.0,,13214.0,,365.0,,13579.0,,335366.0,,786426.0,,743112.0,,43314.0,,,,3944.0,,1712.0,,2741.0,,2592.0,,9716.0,,212573.0,Does not include all calls received after business hours; Includes calls for other benefit programs,43.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.212,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NM,New Mexico,202403,Y,U,Y,14989.0,,0.0,,14989.0,,13214.0,,365.0,,13579.0,,335366.0,,786426.0,,743112.0,,43314.0,,,,3944.0,,1712.0,,2741.0,,2592.0,,9716.0,,212573.0,Does not include all calls received after business hours; Includes calls for other benefit programs,43.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.212,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NM,New Mexico,202404,Y,P,N,15802.0,,0.0,,15802.0,,14045.0,,319.0,,14364.0,,330124.0,,784300.0,,744028.0,,40272.0,,,,5153.0,,2059.0,,2258.0,,1921.0,,9569.0,,222292.0,Does not include all calls received after business hours; Includes calls for other benefit programs,47.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.222,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NM,New Mexico,202404,Y,U,Y,15802.0,,0.0,,15802.0,,14045.0,,319.0,,14364.0,,330124.0,,784300.0,,744028.0,,40272.0,,,,5153.0,,2059.0,,2258.0,,1921.0,,9569.0,,222292.0,Does not include all calls received after business hours; Includes calls for other benefit programs,47.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.222,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NM,New Mexico,202405,Y,P,N,15404.0,,0.0,,15404.0,,12114.0,,309.0,,12423.0,,328457.0,,776681.0,,736111.0,,40570.0,,,,4778.0,,1995.0,,2242.0,,2005.0,,1592.0,,181587.0,Does not include all calls received after business hours; Includes calls for other benefit programs,17.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.12,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NM,New Mexico,202405,Y,U,Y,15404.0,,0.0,,15404.0,,12114.0,,309.0,,12423.0,,328457.0,,776681.0,,736111.0,,40570.0,,,,4778.0,,1995.0,,2242.0,,2005.0,,1592.0,,181587.0,Does not include all calls received after business hours; Includes calls for other benefit programs,17.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.12,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NM,New Mexico,202406,Y,P,N,13489.0,,0.0,,13489.0,,11398.0,,222.0,,11620.0,,319342.0,,768344.0,,727534.0,,40810.0,,,,4731.0,,1737.0,,2448.0,,1792.0,,926.0,,124648.0,Does not include all calls received after business hours; Includes calls for other benefit programs,8.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.044,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NM,New Mexico,202406,Y,U,Y,13489.0,,0.0,,13489.0,,11398.0,,222.0,,11620.0,,319342.0,,768344.0,,727534.0,,40810.0,,,,4731.0,,1737.0,,2448.0,,1792.0,,926.0,,124648.0,Does not include all calls received after business hours; Includes calls for other benefit programs,8.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.044,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NM,New Mexico,202407,Y,P,N,15143.0,,0.0,,15143.0,,13344.0,,308.0,,13652.0,,336147.0,,783431.0,,733128.0,,50303.0,,447284.0,,4684.0,,3016.0,,2529.0,,1470.0,,761.0,,151442.0,Does not include all calls received after business hours; Includes calls for other benefit programs,7.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.039,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NM,New Mexico,202407,Y,U,Y,15143.0,,0.0,,15143.0,,13344.0,,308.0,,13652.0,,336147.0,,783431.0,,733128.0,,50303.0,,447284.0,,4684.0,,3016.0,,2529.0,,1470.0,,761.0,,151442.0,Does not include all calls received after business hours; Includes calls for other benefit programs,7.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.039,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NM,New Mexico,202408,Y,P,N,14279.0,,0.0,,14279.0,,13677.0,,304.0,,13981.0,,345448.0,,782800.0,,732268.0,,50532.0,,437352.0,,5757.0,,2224.0,,1881.0,,1307.0,,738.0,,141122.0,Does not include all calls received after business hours; Includes calls for other benefit programs,4.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.007,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NM,New Mexico,202408,Y,U,Y,14279.0,,0.0,,14279.0,,13677.0,,304.0,,13981.0,,345448.0,,782800.0,,732268.0,,50532.0,,437352.0,,5757.0,,2224.0,,1881.0,,1307.0,,738.0,,141122.0,Does not include all calls received after business hours; Includes calls for other benefit programs,4.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.007,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NM,New Mexico,202409,Y,P,N,14313.0,,0.0,,14313.0,,14087.0,,328.0,,14415.0,,342319.0,,771226.0,,721315.0,,49911.0,,428907.0,,5149.0,,2460.0,,1941.0,,1207.0,,639.0,,144082.0,Does not include all calls received after business hours; Includes calls for other benefit programs,7.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.029,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NM,New Mexico,202409,Y,U,Y,14313.0,,0.0,,14313.0,,14087.0,,328.0,,14415.0,,342319.0,,771226.0,,721315.0,,49911.0,,428907.0,,5149.0,,2460.0,,1941.0,,1207.0,,639.0,,144082.0,Does not include all calls received after business hours; Includes calls for other benefit programs,7.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.028,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NM,New Mexico,202410,Y,P,N,14278.0,,0.0,,14278.0,,13063.0,,322.0,,13385.0,,340714.0,,764407.0,,714422.0,,49985.0,,423693.0,,4772.0,,2316.0,,2725.0,,1809.0,,635.0,,188756.0,Does not include all calls received after business hours; Includes calls for other benefit programs,8.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.058,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NM,New Mexico,202410,Y,U,Y,14278.0,,0.0,,14278.0,,13063.0,,322.0,,13385.0,,340714.0,,764407.0,,714422.0,,49985.0,,423693.0,,4772.0,,2316.0,,2725.0,,1809.0,,635.0,,188756.0,Does not include all calls received after business hours; Includes calls for other benefit programs,8.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.058,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NM,New Mexico,202411,Y,P,N,11922.0,,0.0,,11922.0,,11509.0,,349.0,,11858.0,,335239.0,,747470.0,,699086.0,,48384.0,,412231.0,,4050.0,,2803.0,,2056.0,,2186.0,,580.0,,169563.0,Does not include all calls received after business hours; Includes calls for other benefit programs,9.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.096,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NM,New Mexico,202411,Y,U,Y,11922.0,,0.0,,11922.0,,11509.0,,349.0,,11858.0,,335239.0,,747470.0,,699086.0,,48384.0,,412231.0,,4050.0,,2803.0,,2056.0,,2186.0,,580.0,,169563.0,Does not include all calls received after business hours; Includes calls for other benefit programs,9.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.096,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NM,New Mexico,202412,Y,P,N,12718.0,,0.0,,12718.0,,12247.0,,306.0,,12553.0,,329670.0,,734027.0,,686825.0,,47202.0,,404357.0,,3678.0,,1557.0,,3390.0,,2529.0,,1046.0,,186214.0,Does not include all calls received after business hours; Includes calls for other benefit programs,23.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.179,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NM,New Mexico,202412,Y,U,Y,12718.0,,0.0,,12718.0,,12247.0,,306.0,,12553.0,,329670.0,,734027.0,,686825.0,,47202.0,,404357.0,,3678.0,,1557.0,,3390.0,,2529.0,,1046.0,,186214.0,Does not include all calls received after business hours; Includes calls for other benefit programs,23.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.179,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NM,New Mexico,202501,Y,P,N,15125.0,,0.0,,15125.0,,13694.0,,334.0,,14028.0,,326571.0,,728982.0,,682897.0,,46085.0,,402411.0,,4054.0,,1737.0,,4119.0,,3417.0,,656.0,,242314.0,Does not include all calls received after business hours; Includes calls for other benefit programs,15.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.158,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NM,New Mexico,202501,Y,U,Y,15125.0,,0.0,,15125.0,,13694.0,,334.0,,14028.0,,326571.0,,728982.0,,682897.0,,46085.0,,402411.0,,4054.0,,1737.0,,4119.0,,3417.0,,656.0,,242314.0,Does not include all calls received after business hours; Includes calls for other benefit programs,15.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.158,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NM,New Mexico,202502,Y,P,N,14118.0,,0.0,,14118.0,,12539.0,,365.0,,12904.0,,323702.0,,723600.0,,678229.0,,45371.0,,399898.0,,3415.0,,2112.0,,4147.0,,2636.0,,511.0,,193251.0,Does not include all calls received after business hours; Includes calls for other benefit programs,12.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.116,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NM,New Mexico,202502,Y,U,Y,14118.0,,0.0,,14118.0,,12539.0,,365.0,,12904.0,,323702.0,,723600.0,,678229.0,,45371.0,,399898.0,,3415.0,,2112.0,,4147.0,,2636.0,,511.0,,193251.0,Does not include all calls received after business hours; Includes calls for other benefit programs,12.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.116,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NM,New Mexico,202503,Y,P,N,14138.0,,0.0,,14138.0,,11825.0,,303.0,,12128.0,,320010.0,,714262.0,,669441.0,,44821.0,,394252.0,,3958.0,,2097.0,,1969.0,,2166.0,,484.0,,161097.0,Does not include all calls received after business hours; Includes calls for other benefit programs,14.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.102,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NM,New Mexico,202503,Y,U,Y,14138.0,,0.0,,14138.0,,11825.0,,303.0,,12128.0,,320010.0,,714262.0,,669441.0,,44821.0,,394252.0,,3958.0,,2097.0,,1969.0,,2166.0,,484.0,,161097.0,Does not include all calls received after business hours; Includes calls for other benefit programs,14.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.102,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NM,New Mexico,202504,Y,P,N,14002.0,,0.0,,14002.0,,13135.0,,352.0,,13487.0,,317654.0,,710463.0,,668838.0,,41625.0,,392809.0,,3636.0,,3228.0,,2429.0,,2070.0,,328.0,,151513.0,Does not include all calls received after business hours; Includes calls for other benefit programs,8.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.064,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NM,New Mexico,202504,Y,U,Y,14002.0,,0.0,,14002.0,,13135.0,,352.0,,13487.0,,317654.0,,710463.0,,668838.0,,41625.0,,392809.0,,3636.0,,3228.0,,2429.0,,2070.0,,328.0,,151513.0,Does not include all calls received after business hours; Includes calls for other benefit programs,8.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.064,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NM,New Mexico,202505,Y,P,N,13373.0,,0.0,,13373.0,,13719.0,,419.0,,14138.0,,315026.0,,702063.0,,660228.0,,41835.0,,387037.0,,3571.0,,3260.0,,2733.0,,1974.0,,316.0,,154128.0,Does not include all calls received after business hours; Includes calls for other benefit programs,6.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.045,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NM,New Mexico,202505,Y,U,Y,13373.0,,0.0,,13373.0,,13719.0,,419.0,,14138.0,,315026.0,,702063.0,,660228.0,,41835.0,,387037.0,,3571.0,,3260.0,,2733.0,,1974.0,,316.0,,154128.0,Does not include all calls received after business hours; Includes calls for other benefit programs,6.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.045,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NM,New Mexico,202506,Y,P,N,13475.0,,0.0,,13475.0,,14026.0,,382.0,,14408.0,,313663.0,,697723.0,,655866.0,,41857.0,,384060.0,,3677.0,,3676.0,,2162.0,,1602.0,,362.0,,148134.0,Does not include all calls received after business hours; Includes calls for other benefit programs,7.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.061,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NM,New Mexico,202506,Y,U,Y,13475.0,,0.0,,13475.0,,14026.0,,382.0,,14408.0,,313663.0,,697723.0,,655866.0,,41857.0,,384060.0,,3677.0,,3676.0,,2162.0,,1602.0,,362.0,,148134.0,Does not include all calls received after business hours; Includes calls for other benefit programs,7.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.061,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NM,New Mexico,202507,Y,P,N,13967.0,,0.0,,13967.0,,14875.0,,401.0,,15276.0,,312931.0,,694763.0,,652578.0,,42185.0,,381832.0,,3944.0,,3246.0,,2786.0,,1789.0,,334.0,,149679.0,Does not include all calls received after business hours; Includes calls for other benefit programs,15.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.062,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NM,New Mexico,202507,Y,U,Y,13967.0,,0.0,,13967.0,,14875.0,,401.0,,15276.0,,312931.0,,694763.0,,652578.0,,42185.0,,381832.0,,3944.0,,3246.0,,2786.0,,1789.0,,334.0,,149679.0,Does not include all calls received after business hours; Includes calls for other benefit programs,15.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.062,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NM,New Mexico,202508,Y,P,N,13987.0,,0.0,,13987.0,,14692.0,,416.0,,15108.0,,311449.0,,690503.0,,648150.0,,42353.0,,379054.0,,4031.0,,3630.0,,2218.0,,1864.0,,287.0,,138904.0,Does not include all calls received after business hours; Includes calls for other benefit programs,7.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.05,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NM,New Mexico,202508,Y,U,Y,13987.0,,0.0,,13987.0,,14692.0,,416.0,,15108.0,,311449.0,,690503.0,,648150.0,,42353.0,,379054.0,,4031.0,,3630.0,,2218.0,,1864.0,,287.0,,138904.0,Does not include all calls received after business hours; Includes calls for other benefit programs,7.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.05,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NM,New Mexico,202509,Y,P,N,13999.0,,0.0,,13999.0,,14028.0,,373.0,,14401.0,,311177.0,,689106.0,,646450.0,,42656.0,,377929.0,,4273.0,,3149.0,,2337.0,,1850.0,,355.0,,158070.0,Does not include all calls received after business hours; Includes calls for other benefit programs,7.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.062,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NM,New Mexico,202509,Y,U,Y,13999.0,,0.0,,13999.0,,14028.0,,373.0,,14401.0,,311177.0,,689106.0,,646450.0,,42656.0,,377929.0,,4273.0,,3149.0,,2337.0,,1850.0,,355.0,,158070.0,Does not include all calls received after business hours; Includes calls for other benefit programs,7.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.062,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NM,New Mexico,202510,Y,P,N,13458.0,,0.0,,13458.0,,13377.0,,351.0,,13728.0,,310526.0,,687427.0,,644329.0,,43098.0,,376901.0,,3282.0,,3674.0,,2282.0,,2239.0,,317.0,,159700.0,Does not include all calls received after business hours; Includes calls for other benefit programs,6.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.048,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +NV,Nevada,201309,N,U,Y,,,,,,,,,,,,,,,332560.0,,,,,,,,,,,,,,,,,,,,,,, +NV,Nevada,201706,Y,P,N,19184.0,Includes Renewals and/or Redeterminations,0.0,,19184.0,Includes Renewals and/or Redeterminations,12323.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",53.0,,12376.0,,301025.0,,631132.0,,592871.0,,38261.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,201706,Y,U,Y,19184.0,Includes Renewals and/or Redeterminations,0.0,,19184.0,Includes Renewals and/or Redeterminations,12323.0,Includes Renewals and/or Redeterminations,53.0,,12376.0,,301025.0,,631132.0,,592871.0,,38261.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,201707,Y,P,N,17959.0,,0.0,,17959.0,,11318.0,,38.0,,11356.0,,302777.0,,633838.0,,594484.0,,39354.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,201707,Y,U,Y,17959.0,,0.0,,17959.0,,11318.0,Includes Renewals and/or Redeterminations,38.0,,11356.0,,302777.0,,633838.0,,594484.0,,39354.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,201708,Y,P,N,22018.0,Includes Renewals and/or Redeterminations,0.0,,22018.0,Includes Renewals and/or Redeterminations,13766.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",71.0,,13837.0,,304207.0,,636806.0,,597226.0,,39580.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,201708,Y,U,Y,22018.0,Includes Renewals and/or Redeterminations,0.0,,22018.0,Includes Renewals and/or Redeterminations,13766.0,Includes Renewals and/or Redeterminations,71.0,,13837.0,,304207.0,,636806.0,,597226.0,,39580.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,201709,Y,P,N,18722.0,Includes Renewals and/or Redeterminations,0.0,,18722.0,Includes Renewals and/or Redeterminations,11736.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",47.0,,11783.0,,304137.0,,635568.0,,595583.0,,39985.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,201709,Y,U,Y,18722.0,Includes Renewals and/or Redeterminations,0.0,,18722.0,Includes Renewals and/or Redeterminations,11736.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",47.0,,11783.0,,304137.0,,635568.0,,595583.0,,39985.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,201710,Y,P,N,19732.0,Includes Renewals and/or Redeterminations,0.0,,19732.0,Includes Renewals and/or Redeterminations,12006.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",51.0,,12057.0,,305447.0,,638384.0,,597796.0,,40588.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,201710,Y,U,Y,19732.0,Includes Renewals and/or Redeterminations,0.0,,19732.0,Includes Renewals and/or Redeterminations,12006.0,Includes Renewals and/or Redeterminations,51.0,,12057.0,,305447.0,,638384.0,,597796.0,,40588.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,201711,Y,P,N,25364.0,,0.0,,25364.0,,11427.0,,55.0,,11482.0,,304763.0,,637421.0,,596891.0,,40530.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,201711,Y,U,Y,25364.0,,0.0,,25364.0,,11427.0,Includes Renewals and/or Redeterminations,55.0,,11482.0,,304763.0,,637421.0,,596891.0,,40530.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,201712,Y,P,N,25669.0,,0.0,,25669.0,,13783.0,,92.0,,13875.0,,304036.0,,638420.0,,598215.0,,40205.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,201712,Y,U,Y,25669.0,,0.0,,25669.0,,13783.0,Includes Renewals and/or Redeterminations,92.0,,13875.0,,304036.0,,638420.0,,598215.0,,40205.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,201801,Y,P,N,22125.0,,0.0,,22125.0,,15563.0,,78.0,,15641.0,,305760.0,,642663.0,,601878.0,,40785.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,201801,Y,U,Y,22125.0,,0.0,,22125.0,,15563.0,Includes Renewals and/or Redeterminations,78.0,,15641.0,,305760.0,,642663.0,,601878.0,,40785.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,201802,Y,P,N,18471.0,,0.0,,18471.0,,11986.0,,59.0,,12045.0,,306238.0,,642618.0,,601461.0,,41157.0,,,,7510.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",2937.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",4260.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",449.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",49.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +NV,Nevada,201802,Y,U,Y,18471.0,,0.0,,18471.0,,11986.0,Includes Renewals and/or Redeterminations,59.0,,12045.0,,306238.0,,642618.0,,601461.0,,41157.0,,,,7510.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",2937.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",4260.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",449.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",49.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +NV,Nevada,201803,Y,P,N,19898.0,Includes Renewals and/or Redeterminations,0.0,,19898.0,Includes Renewals and/or Redeterminations,12461.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",72.0,,12533.0,,306388.0,,642743.0,,601557.0,,41186.0,,,,8516.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",2874.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",3756.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",229.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",37.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +NV,Nevada,201803,Y,U,Y,19898.0,Includes Renewals and/or Redeterminations,0.0,,19898.0,Includes Renewals and/or Redeterminations,12461.0,Includes Renewals and/or Redeterminations,72.0,,12533.0,,306388.0,,642743.0,,601557.0,,41186.0,,,,8516.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",2874.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",3756.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",229.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",37.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +NV,Nevada,201804,Y,P,N,19527.0,Includes Renewals and/or Redeterminations,0.0,,19527.0,Includes Renewals and/or Redeterminations,12161.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",59.0,,12220.0,,307197.0,,644223.0,,603249.0,,40974.0,,,,8419.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",2606.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",3436.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",249.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",30.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +NV,Nevada,201804,Y,U,Y,19527.0,Includes Renewals and/or Redeterminations,0.0,,19527.0,Includes Renewals and/or Redeterminations,12161.0,Includes Renewals and/or Redeterminations,59.0,,12220.0,,307197.0,,644223.0,,603249.0,,40974.0,,,,8419.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",2606.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",3436.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",249.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",30.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +NV,Nevada,201805,Y,P,N,19608.0,Includes Renewals and/or Redeterminations,0.0,,19608.0,Includes Renewals and/or Redeterminations,12284.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",50.0,,12334.0,,306665.0,,644329.0,,603417.0,,40912.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,201805,Y,U,Y,19608.0,Includes Renewals and/or Redeterminations,0.0,,19608.0,Includes Renewals and/or Redeterminations,12284.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",50.0,,12334.0,,306665.0,,644329.0,,603417.0,,40912.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,201806,Y,P,N,18952.0,Includes Renewals and/or Redeterminations,0.0,,18952.0,Includes Renewals and/or Redeterminations,11734.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",54.0,,11788.0,,306045.0,,643455.0,,603021.0,,40434.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,201806,Y,U,Y,18952.0,Includes Renewals and/or Redeterminations,0.0,,18952.0,Includes Renewals and/or Redeterminations,11734.0,Includes Renewals and/or Redeterminations,54.0,,11788.0,,306045.0,,643455.0,,603021.0,,40434.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,201807,Y,P,N,19977.0,Includes Renewals and/or Redeterminations,0.0,,19977.0,Includes Renewals and/or Redeterminations,12199.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",44.0,,12243.0,,307363.0,,655533.0,,614533.0,,41000.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,201807,Y,U,Y,19977.0,Includes Renewals and/or Redeterminations,0.0,,19977.0,Includes Renewals and/or Redeterminations,12199.0,Includes Renewals and/or Redeterminations,44.0,,12243.0,,307363.0,,655533.0,,614533.0,,41000.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,201808,Y,P,N,17735.0,Includes Renewals and/or Redeterminations,0.0,,17735.0,Includes Renewals and/or Redeterminations,13229.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",63.0,,13292.0,,308704.0,,646973.0,,605418.0,,41555.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,201808,Y,U,Y,17735.0,,0.0,,17735.0,,13229.0,,63.0,,13292.0,,308704.0,,646973.0,,605418.0,,41555.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,201809,Y,P,N,17156.0,Includes Renewals and/or Redeterminations,0.0,,17156.0,Includes Renewals and/or Redeterminations,10843.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",63.0,,10906.0,,307532.0,,644952.0,,603686.0,,41266.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,201809,Y,U,Y,17156.0,Includes Renewals and/or Redeterminations,0.0,,17156.0,Includes Renewals and/or Redeterminations,10843.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",63.0,,10906.0,,307532.0,,644952.0,,603686.0,,41266.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,201810,Y,P,N,20107.0,Includes Renewals and/or Redeterminations,0.0,,20107.0,Includes Renewals and/or Redeterminations,12486.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",62.0,,12548.0,,306932.0,,644810.0,,603420.0,,41390.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,201810,Y,U,Y,20107.0,Includes Renewals and/or Redeterminations,0.0,,20107.0,Includes Renewals and/or Redeterminations,12486.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",62.0,,12548.0,,306932.0,,644810.0,,603420.0,,41390.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,201811,Y,P,N,24000.0,Includes Renewals and/or Redeterminations,0.0,,24000.0,Includes Renewals and/or Redeterminations,11612.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",49.0,,11661.0,,302480.0,,639840.0,,598308.0,,41532.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,201811,Y,U,Y,24000.0,Includes Renewals and/or Redeterminations,0.0,,24000.0,Includes Renewals and/or Redeterminations,11612.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",49.0,,11661.0,,302480.0,,639840.0,,598308.0,,41532.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,201812,Y,P,N,24102.0,Includes Renewals and/or Redeterminations,0.0,,24102.0,Includes Renewals and/or Redeterminations,11975.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",62.0,,12037.0,,303343.0,,636208.0,,594525.0,,41683.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,201812,Y,U,Y,24102.0,Includes Renewals and/or Redeterminations,0.0,,24102.0,Includes Renewals and/or Redeterminations,11975.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",62.0,,12037.0,,303343.0,,636208.0,,594525.0,,41683.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,201901,Y,P,N,20134.0,Includes Renewals and/or Redeterminations,0.0,,20134.0,Includes Renewals and/or Redeterminations,13222.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",63.0,,13285.0,,302622.0,,635194.0,,593290.0,,41904.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,201901,Y,U,Y,20134.0,Includes Renewals and/or Redeterminations,0.0,,20134.0,Includes Renewals and/or Redeterminations,13222.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",63.0,,13285.0,,302622.0,,635194.0,,593290.0,,41904.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,201902,Y,P,N,17472.0,Includes Renewals and/or Redeterminations,0.0,,17472.0,Includes Renewals and/or Redeterminations,11326.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",82.0,,11408.0,,302407.0,,633325.0,,591155.0,,42170.0,,,,6925.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",2859.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",4034.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",801.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",133.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +NV,Nevada,201902,Y,U,Y,17472.0,Includes Renewals and/or Redeterminations,0.0,,17472.0,Includes Renewals and/or Redeterminations,11326.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",82.0,,11408.0,,302407.0,,633325.0,,591155.0,,42170.0,,,,6925.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",2859.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",4034.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",801.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",133.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +NV,Nevada,201903,Y,P,N,19560.0,Includes Renewals and/or Redeterminations,0.0,,19560.0,Includes Renewals and/or Redeterminations,12602.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",88.0,,12690.0,,301364.0,,632884.0,,590585.0,,42299.0,,,,7852.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",3584.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",4058.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",233.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",57.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +NV,Nevada,201903,Y,U,Y,19560.0,Includes Renewals and/or Redeterminations,0.0,,19560.0,Includes Renewals and/or Redeterminations,12602.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",88.0,,12690.0,,301364.0,,632884.0,,590585.0,,42299.0,,,,7852.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",3584.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",4058.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",233.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",57.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +NV,Nevada,201904,Y,P,N,21539.0,Includes Renewals and/or Redeterminations,0.0,,21539.0,Includes Renewals and/or Redeterminations,13147.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",59.0,,13206.0,,300181.0,,632525.0,,591916.0,,40609.0,,,,7995.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",3331.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",4582.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",362.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",69.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +NV,Nevada,201904,Y,U,Y,21539.0,Includes Renewals and/or Redeterminations,0.0,,21539.0,Includes Renewals and/or Redeterminations,13147.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",59.0,,13206.0,,300181.0,,632525.0,,591916.0,,40609.0,,,,7995.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",3331.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",4582.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",362.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",69.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +NV,Nevada,201905,Y,P,N,20683.0,Includes Renewals and/or Redeterminations,0.0,,20683.0,Includes Renewals and/or Redeterminations,12236.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",70.0,,12306.0,,301049.0,,632772.0,,590829.0,,41943.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,201905,Y,U,Y,20683.0,Includes Renewals and/or Redeterminations,0.0,,20683.0,Includes Renewals and/or Redeterminations,12236.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",70.0,,12306.0,,301049.0,,632772.0,,590829.0,,41943.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,201906,Y,P,N,19181.0,Includes Renewals and/or Redeterminations,0.0,,19181.0,Includes Renewals and/or Redeterminations,11815.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",61.0,,11876.0,,312585.0,,631512.0,,589769.0,,41743.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,201906,Y,U,Y,19181.0,,0.0,,19181.0,,11815.0,,61.0,,11876.0,,312585.0,,631512.0,,589769.0,,41743.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,201907,Y,P,N,21510.0,Includes Renewals and/or Redeterminations,0.0,,21510.0,Includes Renewals and/or Redeterminations,13526.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",71.0,,13597.0,,298790.0,,632838.0,,593317.0,,39521.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,201907,Y,U,Y,21510.0,Includes Renewals and/or Redeterminations,0.0,,21510.0,Includes Renewals and/or Redeterminations,13526.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",71.0,,13597.0,,298790.0,,632838.0,,593317.0,,39521.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,201908,Y,P,N,20879.0,Includes Renewals and/or Redeterminations,0.0,,20879.0,Includes Renewals and/or Redeterminations,13112.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",70.0,,13182.0,,299108.0,,631562.0,,591682.0,,39880.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,201908,Y,U,Y,20879.0,Includes Renewals and/or Redeterminations,0.0,,20879.0,Includes Renewals and/or Redeterminations,13112.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",70.0,,13182.0,,299108.0,,631562.0,,591682.0,,39880.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,201909,Y,P,N,18745.0,Includes Renewals and/or Redeterminations,0.0,,18745.0,Includes Renewals and/or Redeterminations,11804.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",57.0,,11861.0,,298479.0,,631033.0,,591450.0,,39583.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,201909,Y,U,Y,18745.0,Includes Renewals and/or Redeterminations,0.0,,18745.0,Includes Renewals and/or Redeterminations,11804.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",57.0,,11861.0,,298479.0,,631033.0,,591450.0,,39583.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,201910,Y,P,N,20909.0,Includes Renewals and/or Redeterminations,0.0,,20909.0,Includes Renewals and/or Redeterminations,12845.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",66.0,,12911.0,,298087.0,,630701.0,,590902.0,,39799.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,201910,Y,U,Y,20909.0,Includes Renewals and/or Redeterminations,0.0,,20909.0,Includes Renewals and/or Redeterminations,12845.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",66.0,,12911.0,,298087.0,,630701.0,,590902.0,,39799.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,201911,Y,P,N,27507.0,Includes Renewals and/or Redeterminations,15181.0,,42688.0,Includes Renewals and/or Redeterminations,10746.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",90.0,,10836.0,,320768.0,,626688.0,,586167.0,,40521.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,201911,Y,U,Y,27507.0,Includes Renewals and/or Redeterminations,15181.0,,42688.0,Includes Renewals and/or Redeterminations,10746.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",90.0,,10836.0,,320768.0,,626688.0,,586167.0,,40521.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,201912,Y,P,N,22368.0,Includes Renewals and/or Redeterminations,5962.0,,28330.0,Includes Renewals and/or Redeterminations,13073.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",72.0,,13145.0,,295323.0,,626078.0,,586138.0,,39940.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,201912,Y,U,Y,22368.0,Includes Renewals and/or Redeterminations,5962.0,,28330.0,Includes Renewals and/or Redeterminations,13073.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",72.0,,13145.0,,295323.0,,626078.0,,586138.0,,39940.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,202001,Y,P,N,22359.0,Includes Renewals and/or Redeterminations,855.0,,23214.0,Includes Renewals and/or Redeterminations,13756.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",76.0,,13832.0,,295181.0,,626116.0,,586119.0,,39997.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,202001,Y,U,Y,22359.0,Includes Renewals and/or Redeterminations,855.0,,23214.0,Includes Renewals and/or Redeterminations,13756.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",76.0,,13832.0,,295181.0,,626116.0,,586119.0,,39997.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,202002,Y,P,N,18495.0,Includes Renewals and/or Redeterminations,605.0,,19100.0,Includes Renewals and/or Redeterminations,11672.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",66.0,,11738.0,,295392.0,,625358.0,,584188.0,,41170.0,,,,7909.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",2759.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",3469.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",316.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",35.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +NV,Nevada,202002,Y,U,Y,18495.0,Includes Renewals and/or Redeterminations,605.0,,19100.0,Includes Renewals and/or Redeterminations,11672.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",66.0,,11738.0,,295392.0,,625358.0,,584188.0,,41170.0,,,,7909.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",2759.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",3469.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",316.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",35.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +NV,Nevada,202003,Y,P,N,26090.0,Includes Renewals and/or Redeterminations,1756.0,,27846.0,Includes Renewals and/or Redeterminations,14285.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",86.0,,14371.0,,294159.0,,627200.0,,586958.0,,40242.0,,,,9801.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",4883.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",3656.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",285.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",26.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +NV,Nevada,202003,Y,U,Y,26090.0,Includes Renewals and/or Redeterminations,1756.0,,27846.0,Includes Renewals and/or Redeterminations,14285.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",86.0,,14371.0,,294159.0,,627200.0,,586958.0,,40242.0,,,,9801.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",4883.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",3656.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",285.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",26.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +NV,Nevada,202004,Y,P,N,22395.0,Includes Renewals and/or Redeterminations,1997.0,,24392.0,Includes Renewals and/or Redeterminations,17067.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",68.0,,17135.0,,300950.0,,651890.0,,611600.0,,40290.0,,,,12412.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",2989.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",5008.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",424.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",30.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +NV,Nevada,202004,Y,U,Y,22395.0,Includes Renewals and/or Redeterminations,1997.0,,24392.0,Includes Renewals and/or Redeterminations,17067.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",68.0,,17135.0,,300950.0,,651890.0,,611600.0,,40290.0,,,,12412.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",2989.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",5008.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",424.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",30.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +NV,Nevada,202005,Y,P,N,15372.0,Includes Renewals and/or Redeterminations,1461.0,,16833.0,Includes Renewals and/or Redeterminations,10404.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",45.0,,10449.0,,307938.0,,669844.0,,629641.0,,40203.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,202005,Y,U,Y,15372.0,Includes Renewals and/or Redeterminations,1461.0,,16833.0,Includes Renewals and/or Redeterminations,10404.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",45.0,,10449.0,,307938.0,,669844.0,,629641.0,,40203.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,202006,Y,P,N,14381.0,Includes Renewals and/or Redeterminations,572.0,,14953.0,Includes Renewals and/or Redeterminations,8193.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",23.0,,8216.0,,313466.0,,685073.0,,644995.0,,40078.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,202006,Y,U,Y,14381.0,Includes Renewals and/or Redeterminations,572.0,,14953.0,Includes Renewals and/or Redeterminations,8193.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",23.0,,8216.0,,313466.0,,685073.0,,644995.0,,40078.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,202007,Y,P,N,15406.0,Includes Renewals and/or Redeterminations,632.0,,16038.0,Includes Renewals and/or Redeterminations,8413.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",33.0,,8446.0,,337164.0,,695931.0,,657500.0,,38431.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,202007,Y,U,Y,15406.0,Includes Renewals and/or Redeterminations,632.0,,16038.0,Includes Renewals and/or Redeterminations,8413.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",33.0,,8446.0,,337164.0,,695931.0,,657500.0,,38431.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,202008,Y,P,N,16575.0,Includes Renewals and/or Redeterminations,696.0,,17271.0,Includes Renewals and/or Redeterminations,8901.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",29.0,,8930.0,,319957.0,,709191.0,,670967.0,,38224.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,202008,Y,U,Y,16575.0,Includes Renewals and/or Redeterminations,696.0,,17271.0,Includes Renewals and/or Redeterminations,8901.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",29.0,,8930.0,,319957.0,,709191.0,,670967.0,,38224.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,202009,Y,P,N,15926.0,Includes Renewals and/or Redeterminations,578.0,,16504.0,Includes Renewals and/or Redeterminations,8801.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",42.0,,8843.0,,324258.0,,722616.0,,684413.0,,38203.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,202009,Y,U,Y,15926.0,Includes Renewals and/or Redeterminations,578.0,,16504.0,Includes Renewals and/or Redeterminations,8801.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",42.0,,8843.0,,324258.0,,722616.0,,684413.0,,38203.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,202010,Y,P,N,15225.0,Includes Renewals and/or Redeterminations,890.0,,16115.0,Includes Renewals and/or Redeterminations,8301.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",39.0,,8340.0,,328418.0,,734234.0,,695514.0,,38720.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,202010,Y,U,Y,15225.0,Includes Renewals and/or Redeterminations,890.0,,16115.0,Includes Renewals and/or Redeterminations,8301.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",39.0,,8340.0,,328418.0,,734234.0,,695514.0,,38720.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,202011,Y,P,N,9965.0,Includes Renewals and/or Redeterminations,4922.0,,14887.0,Includes Renewals and/or Redeterminations,7293.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",24.0,,7317.0,,330174.0,,742656.0,,703495.0,,39161.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,202011,Y,U,Y,9965.0,Includes Renewals and/or Redeterminations,4922.0,,14887.0,Includes Renewals and/or Redeterminations,7293.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",24.0,,7317.0,,330174.0,,742656.0,,703495.0,,39161.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,202012,Y,P,N,11837.0,,7845.0,,19682.0,,8384.0,,28.0,,8412.0,,332540.0,,749040.0,,708696.0,,40344.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,202012,Y,U,Y,11837.0,Includes Renewals and/or Redeterminations,7845.0,,19682.0,Includes Renewals and/or Redeterminations,8384.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",28.0,,8412.0,,332540.0,,749040.0,,708696.0,,40344.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,202101,Y,P,N,16043.0,Includes Renewals and/or Redeterminations,2276.0,,18319.0,Includes Renewals and/or Redeterminations,6370.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",38.0,,6408.0,,336403.0,,761359.0,,720910.0,,40449.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,202101,Y,U,Y,16043.0,Includes Renewals and/or Redeterminations,2276.0,,18319.0,Includes Renewals and/or Redeterminations,6370.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",38.0,,6408.0,,336403.0,,761359.0,,720910.0,,40449.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,202102,Y,P,N,13262.0,Includes Renewals and/or Redeterminations,961.0,,14223.0,Includes Renewals and/or Redeterminations,6508.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",24.0,,6532.0,,338548.0,,768740.0,,727510.0,,41230.0,,,,2144.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",924.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",5247.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",1847.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",75.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +NV,Nevada,202102,Y,U,Y,13262.0,Includes Renewals and/or Redeterminations,961.0,,14223.0,Includes Renewals and/or Redeterminations,6508.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",24.0,,6532.0,,338548.0,,768740.0,,727510.0,,41230.0,,,,2144.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",924.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",5247.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",1847.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",75.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +NV,Nevada,202103,Y,P,N,14323.0,Includes Renewals and/or Redeterminations,1708.0,,16031.0,Includes Renewals and/or Redeterminations,6973.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",25.0,,6998.0,,341006.0,,777004.0,,735021.0,,41983.0,,,,1929.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",1293.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",5926.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",1624.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",150.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +NV,Nevada,202103,Y,U,Y,14323.0,Includes Renewals and/or Redeterminations,1708.0,,16031.0,Includes Renewals and/or Redeterminations,6973.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",25.0,,6998.0,,341006.0,,777004.0,,735021.0,,41983.0,,,,1929.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",1293.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",5926.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",1624.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",150.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +NV,Nevada,202104,Y,P,N,13409.0,Includes Renewals and/or Redeterminations,1583.0,,14992.0,Includes Renewals and/or Redeterminations,7212.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",30.0,,7242.0,,343683.0,,786142.0,,743580.0,,42562.0,,,,2151.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",1447.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",6224.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",1385.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",91.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +NV,Nevada,202104,Y,U,Y,13409.0,,1583.0,,14992.0,,7212.0,,30.0,,7242.0,,343683.0,,786142.0,,743580.0,,42562.0,,,,2151.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",1447.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",6224.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",1385.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",91.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +NV,Nevada,202105,Y,P,N,12765.0,Includes Renewals and/or Redeterminations,1612.0,,14377.0,Includes Renewals and/or Redeterminations,5764.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",23.0,,5787.0,,344806.0,,790368.0,,747208.0,,43160.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,202105,Y,U,Y,12765.0,Includes Renewals and/or Redeterminations,1612.0,,14377.0,Includes Renewals and/or Redeterminations,5764.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",23.0,,5787.0,,344806.0,,790368.0,,747208.0,,43160.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,202106,Y,P,N,13047.0,Includes Renewals and/or Redeterminations,1092.0,,14139.0,Includes Renewals and/or Redeterminations,5823.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",22.0,,5845.0,,345840.0,,794724.0,,750837.0,,43887.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,202106,Y,U,Y,13047.0,,1092.0,,14139.0,,5823.0,,22.0,,5845.0,,345840.0,,794724.0,,750837.0,,43887.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,202107,Y,P,N,13479.0,,1425.0,,14904.0,,0.0,,30.0,,30.0,,347213.0,,800436.0,,756216.0,,44220.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,202107,Y,U,Y,13479.0,,1425.0,,14904.0,,6963.0,,30.0,,6993.0,,347213.0,,800436.0,,756216.0,,44220.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,202108,Y,P,N,14177.0,,1893.0,,16070.0,,7676.0,,27.0,,7703.0,,349916.0,,809389.0,,764488.0,,44901.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,202108,Y,U,Y,14177.0,,1893.0,,16070.0,,8426.0,,27.0,,8453.0,,349916.0,,809389.0,,764488.0,,44901.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,202109,Y,P,N,14753.0,,748.0,,15501.0,,6918.0,,19.0,,6937.0,,351774.0,,816051.0,,770271.0,,45780.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,202109,Y,U,Y,14753.0,,748.0,,15501.0,,6918.0,,19.0,,6937.0,,351774.0,,816051.0,,770271.0,,45780.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,202110,Y,P,N,13399.0,,759.0,,14158.0,,6961.0,,31.0,,6992.0,,353629.0,,823371.0,,776568.0,,46803.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,202110,Y,U,Y,13399.0,,759.0,,14158.0,,6961.0,,31.0,,6992.0,,353629.0,,823371.0,,776568.0,,46803.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,202111,Y,P,N,17961.0,,6069.0,,24030.0,,6478.0,,17.0,,6495.0,,355124.0,,829111.0,,781207.0,,47904.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,202111,Y,U,Y,17961.0,,6069.0,,24030.0,,6478.0,,17.0,,6495.0,,355124.0,,829111.0,,781207.0,,47904.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,202112,Y,P,N,14452.0,,3550.0,,18002.0,,7287.0,,28.0,,7315.0,,356357.0,,835255.0,,786229.0,,49026.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,202112,Y,U,Y,14452.0,,3550.0,,18002.0,,7287.0,,28.0,,7315.0,,356357.0,,835255.0,,786229.0,,49026.0,,,,,,,,,,,,,,,,,,, +NV,Nevada,202201,Y,P,N,15915.0,,2259.0,,18174.0,,7866.0,,28.0,,7894.0,,358306.0,,843385.0,,792929.0,,50456.0,,,,3603.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",3032.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",3767.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",1578.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",117.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +NV,Nevada,202201,Y,U,Y,15915.0,,2259.0,,18174.0,,7866.0,,28.0,,7894.0,,358306.0,,843385.0,,792929.0,,50456.0,,,,3603.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",3032.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",3767.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",1578.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",117.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +NV,Nevada,202202,Y,P,N,12480.0,,677.0,,13157.0,,6519.0,,27.0,,6546.0,,358997.0,,847424.0,,795938.0,,51486.0,,,,3404.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",2296.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",3684.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",601.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",74.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +NV,Nevada,202202,Y,U,Y,12480.0,,677.0,,13157.0,,6519.0,,27.0,,6546.0,,358997.0,,847424.0,,795938.0,,51486.0,,,,3404.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",2296.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",3684.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",601.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",74.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +NV,Nevada,202203,Y,P,N,14229.0,,673.0,,14902.0,,7673.0,,37.0,,7710.0,,358903.0,,850129.0,,798019.0,,52110.0,,,,4178.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",2429.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",3073.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",488.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",51.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +NV,Nevada,202203,Y,U,Y,14229.0,,673.0,,14902.0,,7673.0,,37.0,,7710.0,,358903.0,,850129.0,,798019.0,,52110.0,,,,4178.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",2429.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",3073.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",488.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",51.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +NV,Nevada,202204,Y,P,N,12830.0,,820.0,,13650.0,,6545.0,,21.0,,6566.0,,359024.0,,851705.0,,799951.0,,51754.0,,,,3709.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",2119.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",2872.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",552.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",44.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +NV,Nevada,202204,Y,U,Y,12830.0,,820.0,,13650.0,,6545.0,,21.0,,6566.0,,359024.0,,851705.0,,799951.0,,51754.0,,,,3709.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",2119.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",2872.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",552.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",44.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +NV,Nevada,202205,Y,P,N,13259.0,,853.0,,14112.0,,7186.0,,11.0,,7197.0,,360240.0,,857879.0,,806268.0,,51611.0,,,,4141.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",2272.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",2865.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",605.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",79.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +NV,Nevada,202205,Y,U,Y,13259.0,,853.0,,14112.0,,7186.0,,11.0,,7197.0,,360240.0,,857879.0,,806268.0,,51611.0,,,,4141.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",2272.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",2865.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",605.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",79.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +NV,Nevada,202206,Y,P,N,13235.0,,757.0,,13992.0,,6978.0,,19.0,,6997.0,,361793.0,,865597.0,,813818.0,,51779.0,,,,4658.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",1899.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",2959.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",483.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",45.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +NV,Nevada,202206,Y,U,Y,13235.0,,757.0,,13992.0,,6978.0,,19.0,,6997.0,,361793.0,,865597.0,,813818.0,,51779.0,,,,4658.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",1899.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",2959.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",483.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",45.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +NV,Nevada,202207,Y,P,N,12778.0,,709.0,,13487.0,,6279.0,,14.0,,6293.0,,363208.0,,868971.0,,816631.0,,52340.0,,,,3586.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",1270.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",3394.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",451.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",40.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +NV,Nevada,202207,Y,U,Y,12778.0,,709.0,,13487.0,,6279.0,,14.0,,6293.0,,363208.0,,868971.0,,816631.0,,52340.0,,,,3586.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",1270.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",3394.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",451.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",40.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +NV,Nevada,202208,Y,P,N,14621.0,,894.0,,15515.0,,7789.0,,24.0,,7813.0,,365412.0,,877180.0,,824542.0,,52638.0,,,,4082.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",1697.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",4051.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",704.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",55.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +NV,Nevada,202208,Y,U,Y,14621.0,,894.0,,15515.0,,7789.0,,24.0,,7813.0,,365412.0,,877180.0,,824542.0,,52638.0,,,,4082.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",1697.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",4051.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",704.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",55.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +NV,Nevada,202209,Y,P,N,12173.0,,795.0,,12968.0,,6343.0,,25.0,,6368.0,,365630.0,,880088.0,,827161.0,,52927.0,,,,3539.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",1014.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",3152.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",751.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",66.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +NV,Nevada,202209,Y,U,Y,12173.0,,795.0,,12968.0,,6343.0,,25.0,,6368.0,,365630.0,,880088.0,,827161.0,,52927.0,,,,3539.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",1014.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",3152.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",751.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",66.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +NV,Nevada,202210,Y,P,N,11750.0,,657.0,,12407.0,,6617.0,,15.0,,6632.0,,364938.0,,880516.0,,827250.0,,53266.0,,,,3306.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",1073.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",3438.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",907.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",136.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +NV,Nevada,202210,Y,U,Y,11750.0,,657.0,,12407.0,,6617.0,,15.0,,6632.0,,364938.0,,880516.0,,827250.0,,53266.0,,,,3306.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",1073.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",3438.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",907.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",136.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +NV,Nevada,202211,Y,P,N,20145.0,,9693.0,,29838.0,,7330.0,,21.0,,7351.0,,359141.0,,860988.0,,807777.0,,53211.0,,,,3785.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",1110.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",3649.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",915.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",155.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +NV,Nevada,202211,Y,U,Y,20145.0,,9693.0,,29838.0,,7330.0,,21.0,,7351.0,,359141.0,,860988.0,,807777.0,,53211.0,,,,3785.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",1110.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",3649.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",915.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",155.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +NV,Nevada,202212,Y,P,N,14447.0,,3504.0,,17951.0,,7979.0,,32.0,,8011.0,,361283.0,,870550.0,,816457.0,,54093.0,,,,3689.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",969.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",6311.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",2857.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",171.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +NV,Nevada,202212,Y,U,Y,14447.0,,3504.0,,17951.0,,7979.0,,32.0,,8011.0,,361283.0,,870550.0,,816457.0,,54093.0,,,,3689.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",969.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",6311.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",2857.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",171.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +NV,Nevada,202301,Y,P,N,14463.0,,2430.0,,16893.0,,8153.0,,25.0,,8178.0,,362655.0,,878679.0,,823792.0,,54887.0,,,,3617.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",1326.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",5222.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",1680.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",428.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +NV,Nevada,202301,Y,U,Y,14463.0,,2430.0,,16893.0,,8153.0,,25.0,,8178.0,,362655.0,,878679.0,,823792.0,,54887.0,,,,3617.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",1326.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",5222.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",1680.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",428.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +NV,Nevada,202302,Y,P,N,11968.0,,945.0,,12913.0,,5743.0,,25.0,,5768.0,,363949.0,,890080.0,,834871.0,,55209.0,,,,3048.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",1300.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",3210.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",1008.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",132.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +NV,Nevada,202302,Y,U,Y,11968.0,,945.0,,12913.0,,5743.0,,25.0,,5768.0,,363949.0,,890080.0,,834871.0,,55209.0,,,,3048.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",1300.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",3210.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",1008.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",132.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +NV,Nevada,202303,Y,P,N,13231.0,,1041.0,,14272.0,,7100.0,,28.0,,7128.0,,365394.0,,895847.0,,840149.0,,55698.0,,,,3589.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",1378.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",4206.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",795.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",67.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",103455.0,Does not include all calls received after business hours; Includes calls for other benefit programs,23.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.219,Does not include all calls received after business hours; Includes calls for other benefit programs +NV,Nevada,202303,Y,U,Y,13231.0,,1041.0,,14272.0,,7100.0,,28.0,,7128.0,,365394.0,,895847.0,,840149.0,,55698.0,,,,3589.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",1378.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",4206.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",795.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",67.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",103455.0,Does not include all calls received after business hours; Includes calls for other benefit programs,23.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.219,Does not include all calls received after business hours; Includes calls for other benefit programs +NV,Nevada,202304,Y,P,N,11789.0,,958.0,,12747.0,,4083.0,,13.0,,4096.0,,365572.0,,899946.0,,845504.0,,54442.0,,,,3104.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",1220.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",3208.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",870.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",83.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",104921.0,Does not include all calls received after business hours; Includes calls for other benefit programs,23.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.221,Does not include all calls received after business hours; Includes calls for other benefit programs +NV,Nevada,202304,Y,U,Y,11789.0,,958.0,,12747.0,,4083.0,,13.0,,4096.0,,365572.0,,899946.0,,845504.0,,54442.0,,,,3104.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",1220.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",3208.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",870.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",83.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",104921.0,Does not include all calls received after business hours; Includes calls for other benefit programs,23.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.221,Does not include all calls received after business hours; Includes calls for other benefit programs +NV,Nevada,202305,Y,P,N,13277.0,,697.0,,13974.0,,6928.0,,24.0,,6952.0,,365896.0,,904469.0,,850829.0,,53640.0,,,,3619.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",1374.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",3720.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",878.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",71.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",104960.0,Does not include all calls received after business hours; Includes calls for other benefit programs,13.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.184,Does not include all calls received after business hours; Includes calls for other benefit programs +NV,Nevada,202305,Y,U,Y,13277.0,,697.0,,13974.0,,6928.0,,24.0,,6952.0,,365896.0,,904469.0,,850829.0,,53640.0,,,,3619.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",1374.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",3720.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",878.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",71.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",104960.0,Does not include all calls received after business hours; Includes calls for other benefit programs,13.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.184,Does not include all calls received after business hours; Includes calls for other benefit programs +NV,Nevada,202306,Y,P,N,15917.0,,854.0,,16771.0,,8244.0,,42.0,,8286.0,,353620.0,,872011.0,,821385.0,,50626.0,,,,4500.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",1832.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",4605.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",705.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",75.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",107657.0,Does not include all calls received after business hours; Includes calls for other benefit programs,18.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.181,Does not include all calls received after business hours; Includes calls for other benefit programs +NV,Nevada,202306,Y,U,Y,15917.0,,854.0,,16771.0,,8244.0,,42.0,,8286.0,,353620.0,,872011.0,,821385.0,,50626.0,,,,4500.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",1832.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",4605.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",705.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",75.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",107657.0,Does not include all calls received after business hours; Includes calls for other benefit programs,18.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.181,Does not include all calls received after business hours; Includes calls for other benefit programs +NV,Nevada,202307,Y,P,N,16710.0,,812.0,,17522.0,,8519.0,,52.0,,8571.0,,340918.0,,835938.0,,788439.0,,47499.0,,,,4877.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",1908.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",4751.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",857.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",68.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",96785.0,Does not include all calls received after business hours; Includes calls for other benefit programs,19.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.216,Does not include all calls received after business hours; Includes calls for other benefit programs +NV,Nevada,202307,Y,U,Y,16710.0,,812.0,,17522.0,,8519.0,,52.0,,8571.0,,340868.0,,835888.0,,788439.0,,47449.0,,,,4877.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",1908.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",4751.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",857.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",68.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",96785.0,Does not include all calls received after business hours; Includes calls for other benefit programs,19.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.216,Does not include all calls received after business hours; Includes calls for other benefit programs +NV,Nevada,202308,Y,P,N,21266.0,,908.0,,22174.0,,10301.0,,68.0,,10369.0,,332317.0,,809939.0,,764296.0,,45643.0,,,,5913.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",2137.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",5314.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",1219.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",153.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",118091.0,Does not include all calls received after business hours; Includes calls for other benefit programs,21.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.237,Does not include all calls received after business hours; Includes calls for other benefit programs +NV,Nevada,202308,Y,U,Y,21266.0,,908.0,,22174.0,,10301.0,,68.0,,10369.0,,332317.0,,809939.0,,764296.0,,45643.0,,,,5913.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",2137.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",5314.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",1219.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",153.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",118091.0,Does not include all calls received after business hours; Includes calls for other benefit programs,21.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.237,Does not include all calls received after business hours; Includes calls for other benefit programs +NV,Nevada,202309,Y,P,N,15655.0,,837.0,,16492.0,,8854.0,,63.0,,8917.0,,358358.0,,886413.0,,832457.0,,53956.0,,,,4193.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",1684.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",5252.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",1566.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",128.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",119503.0,Does not include all calls received after business hours; Includes calls for other benefit programs,31.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.255,Does not include all calls received after business hours; Includes calls for other benefit programs; Calls handled to completion by the automated system are counted as abandoned calls +NV,Nevada,202309,Y,U,Y,15655.0,,837.0,,16492.0,,8854.0,,63.0,,8917.0,,358358.0,,886413.0,,832457.0,,53956.0,,,,4193.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",1684.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",5252.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",1566.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",128.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",119503.0,Does not include all calls received after business hours; Includes calls for other benefit programs,31.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.255,Does not include all calls received after business hours; Includes calls for other benefit programs; Calls handled to completion by the automated system are counted as abandoned calls +NV,Nevada,202310,Y,P,N,15251.0,,860.0,,16111.0,,8084.0,,42.0,,8126.0,,359062.0,,887504.0,,831848.0,,55656.0,,,,4111.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",1567.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",4425.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",1213.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",145.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",100442.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,34.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.558,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Calls handled to completion by the automated system are counted as abandoned calls +NV,Nevada,202310,Y,U,Y,15251.0,,860.0,,16111.0,,8084.0,,42.0,,8126.0,,359062.0,,887504.0,,831848.0,,55656.0,,,,4111.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",1567.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",4425.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",1213.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",145.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",100442.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,34.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.558,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Calls handled to completion by the automated system are counted as abandoned calls +NV,Nevada,202311,Y,P,N,22786.0,,8819.0,,31605.0,,8420.0,,23.0,,8443.0,,354429.0,,869232.0,,812305.0,,56927.0,,,,4482.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",1804.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",4956.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",1011.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",116.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,Did not report data because of technical reasons,38.0,Does not include all calls received after business hours; Includes calls for other benefit programs,,Did not report data because of technical reasons +NV,Nevada,202311,Y,U,Y,22786.0,,8819.0,,31605.0,,8420.0,,23.0,,8443.0,,354429.0,,869232.0,,812305.0,,56927.0,,,,4482.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",1804.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",4956.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",1011.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",116.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,Did not report data because of technical reasons,38.0,Does not include all calls received after business hours; Includes calls for other benefit programs,,Did not report data because of technical reasons +NV,Nevada,202312,Y,P,N,16680.0,,3112.0,,19792.0,,8490.0,,41.0,,8531.0,,352377.0,,862954.0,,804992.0,,57962.0,,,,4054.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",1575.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",6893.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",2911.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",134.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",89029.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,36.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.56,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs +NV,Nevada,202312,Y,U,Y,16680.0,,3112.0,,19792.0,,8490.0,,41.0,,8531.0,,352377.0,,862954.0,,804992.0,,57962.0,,,,4054.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",1575.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",6893.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",2911.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",134.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",89029.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,36.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.56,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs +NV,Nevada,202401,Y,P,N,20794.0,,2589.0,,23383.0,,10219.0,,50.0,,10269.0,,352017.0,,862198.0,,803677.0,,58521.0,,,,5273.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",1881.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",5966.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",1822.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",216.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",111002.0,Does not include all calls received after business hours; Includes calls for other benefit programs,28.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.24,Does not include all calls received after business hours; Includes calls for other benefit programs +NV,Nevada,202401,Y,U,Y,20794.0,,2589.0,,23383.0,,10219.0,,50.0,,10269.0,,352017.0,,862198.0,,803677.0,,58521.0,,,,5273.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",1881.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",5966.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",1822.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",216.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",111002.0,Does not include all calls received after business hours; Includes calls for other benefit programs,28.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.24,Does not include all calls received after business hours; Includes calls for other benefit programs +NV,Nevada,202402,Y,P,N,16511.0,,1003.0,,17514.0,,9134.0,,40.0,,9174.0,,352682.0,,862559.0,,803466.0,,59093.0,,,,4692.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",1772.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",5286.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",1463.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",92.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",94890.0,Does not include all calls received after business hours; Includes calls for other benefit programs,19.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.179,Does not include all calls received after business hours; Includes calls for other benefit programs +NV,Nevada,202402,Y,U,Y,16511.0,,1003.0,,17514.0,,9134.0,,40.0,,9174.0,,352682.0,,862559.0,,803466.0,,59093.0,,,,4692.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",1772.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",5286.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",1463.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",92.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",94890.0,Does not include all calls received after business hours; Includes calls for other benefit programs,19.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.179,Does not include all calls received after business hours; Includes calls for other benefit programs +NV,Nevada,202403,Y,P,N,17011.0,,1046.0,,18057.0,,9155.0,,48.0,,9203.0,,351934.0,,857586.0,,798325.0,,59261.0,,,,5006.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",1888.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",5008.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",1189.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",63.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",100664.0,Does not include all calls received after business hours; Includes calls for other benefit programs,20.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.191,Does not include all calls received after business hours; Includes calls for other benefit programs +NV,Nevada,202403,Y,U,Y,17011.0,,1046.0,,18057.0,,9155.0,,48.0,,9203.0,,351934.0,,857586.0,,798325.0,,59261.0,,,,5006.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",1888.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",5008.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",1189.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",63.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",100664.0,Does not include all calls received after business hours; Includes calls for other benefit programs,20.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.191,Does not include all calls received after business hours; Includes calls for other benefit programs +NV,Nevada,202404,Y,P,N,21448.0,,1057.0,,22505.0,,11817.0,,61.0,,11878.0,,338672.0,,811962.0,,755681.0,,56281.0,,,,7001.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",2278.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",5469.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",1101.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",52.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",118770.0,Does not include all calls received after business hours; Includes calls for other benefit programs,30.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.25,Does not include all calls received after business hours; Includes calls for other benefit programs +NV,Nevada,202404,Y,U,Y,21448.0,,1057.0,,22505.0,,11817.0,,61.0,,11878.0,,338672.0,,811962.0,,755681.0,,56281.0,,,,7001.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",2278.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",5469.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",1101.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",52.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",118770.0,Does not include all calls received after business hours; Includes calls for other benefit programs,30.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.25,Does not include all calls received after business hours; Includes calls for other benefit programs +NV,Nevada,202405,Y,P,N,19877.0,,1062.0,,20939.0,,11230.0,,53.0,,11283.0,,335426.0,,798692.0,,743787.0,,54905.0,,,,6184.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",2478.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",6128.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",1247.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",66.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",104804.0,Does not include all calls received after business hours; Includes calls for other benefit programs,27.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.234,Does not include all calls received after business hours; Includes calls for other benefit programs +NV,Nevada,202405,Y,U,Y,19877.0,,1062.0,,20939.0,,11230.0,,53.0,,11283.0,,335426.0,,798692.0,,743787.0,,54905.0,,,,6184.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",2478.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",6128.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",1247.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",66.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",104804.0,Does not include all calls received after business hours; Includes calls for other benefit programs,27.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.234,Does not include all calls received after business hours; Includes calls for other benefit programs +NV,Nevada,202406,Y,P,N,17652.0,,887.0,,18539.0,,10134.0,,48.0,,10182.0,,332758.0,,788481.0,,735094.0,,53387.0,,,,5869.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",4084.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",3706.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",957.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",71.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",99953.0,Does not include all calls received after business hours; Includes calls for other benefit programs,28.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.225,Does not include all calls received after business hours; Includes calls for other benefit programs +NV,Nevada,202406,Y,U,Y,17652.0,,887.0,,18539.0,,10134.0,,48.0,,10182.0,,332758.0,,788481.0,,735094.0,,53387.0,,,,5869.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",4084.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",3706.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",957.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",71.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",99953.0,Does not include all calls received after business hours; Includes calls for other benefit programs,28.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.225,Does not include all calls received after business hours; Includes calls for other benefit programs +NV,Nevada,202407,Y,P,N,22375.0,,949.0,,23324.0,,11544.0,,48.0,,11592.0,,327118.0,,766157.0,,714632.0,,51525.0,,439039.0,,6952.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",2704.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",4940.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",641.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",54.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",107404.0,Does not include all calls received after business hours; Includes calls for other benefit programs,30.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.243,Does not include all calls received after business hours; Includes calls for other benefit programs +NV,Nevada,202407,Y,U,Y,22375.0,,949.0,,23324.0,,11544.0,,48.0,,11592.0,,327118.0,,766157.0,,714632.0,,51525.0,,439039.0,,6952.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",2704.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",4940.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",641.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",54.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",107404.0,Does not include all calls received after business hours; Includes calls for other benefit programs,30.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.243,Does not include all calls received after business hours; Includes calls for other benefit programs +NV,Nevada,202408,Y,P,N,20192.0,,1052.0,,21244.0,,10243.0,,43.0,,10286.0,,327109.0,,760192.0,,709305.0,,50887.0,,433083.0,,5960.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",2260.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",4599.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",1166.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",75.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",110502.0,Does not include all calls received after business hours; Includes calls for other benefit programs,35.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.277,Does not include all calls received after business hours; Includes calls for other benefit programs +NV,Nevada,202408,Y,U,Y,20192.0,,1052.0,,21244.0,,10243.0,,43.0,,10286.0,,327109.0,,760192.0,,709305.0,,50887.0,,433083.0,,5960.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",2260.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",4599.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",1166.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",75.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",110502.0,Does not include all calls received after business hours; Includes calls for other benefit programs,35.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.277,Does not include all calls received after business hours; Includes calls for other benefit programs +NV,Nevada,202409,Y,P,N,18618.0,,1077.0,,19695.0,,9925.0,,39.0,,9964.0,,326609.0,,756073.0,,705825.0,,50248.0,,429464.0,,5445.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",1942.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",3705.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",2410.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",435.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",109186.0,Does not include all calls received after business hours; Includes calls for other benefit programs,36.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.266,Does not include all calls received after business hours; Includes calls for other benefit programs +NV,Nevada,202409,Y,U,Y,18618.0,,1077.0,,19695.0,,9925.0,,39.0,,9964.0,,326609.0,,756073.0,,705825.0,,50248.0,,429464.0,,5445.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level",1942.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",3705.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; MAGI determinations conducted in 6-7 days are reported under the 8-30 days category",2410.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",435.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",109186.0,Does not include all calls received after business hours; Includes calls for other benefit programs,36.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.266,Does not include all calls received after business hours; Includes calls for other benefit programs +NV,Nevada,202410,Y,P,N,18996.0,,1005.0,,20001.0,,10155.0,,43.0,,10198.0,,328136.0,,760981.0,,710466.0,,50515.0,,432845.0,,5381.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1887.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",5330.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1792.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",916.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",119024.0,Does not include all calls received after business hours; Includes calls for other benefit programs,48.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.337,Does not include all calls received after business hours; Includes calls for other benefit programs +NV,Nevada,202410,Y,U,Y,18996.0,,1005.0,,20001.0,,10155.0,,43.0,,10198.0,,328136.0,,760981.0,,710466.0,,50515.0,,432845.0,,5381.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1887.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",5330.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1792.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",916.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",119024.0,Does not include all calls received after business hours; Includes calls for other benefit programs,48.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.337,Does not include all calls received after business hours; Includes calls for other benefit programs +NV,Nevada,202411,Y,P,N,20236.0,,5865.0,,26101.0,,7872.0,,26.0,,7898.0,,328765.0,,761636.0,,710223.0,,51413.0,,432871.0,,4548.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1689.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3896.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1152.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",498.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",94873.0,Does not include all calls received after business hours; Includes calls for other benefit programs,56.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.33,Does not include all calls received after business hours; Includes calls for other benefit programs +NV,Nevada,202411,Y,U,Y,20236.0,,5865.0,,26101.0,,7872.0,,26.0,,7898.0,,328765.0,,761636.0,,710223.0,,51413.0,,432871.0,,4548.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1689.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3896.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1152.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",498.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",94873.0,Does not include all calls received after business hours; Includes calls for other benefit programs,56.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.33,Does not include all calls received after business hours; Includes calls for other benefit programs +NV,Nevada,202412,Y,P,N,18903.0,,3290.0,,22193.0,,9557.0,,39.0,,9596.0,,330249.0,,765943.0,,713936.0,,52007.0,,435694.0,,4800.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1718.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3826.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",4520.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1073.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",105491.0,Does not include all calls received after business hours; Includes calls for other benefit programs,61.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.33,Does not include all calls received after business hours; Includes calls for other benefit programs +NV,Nevada,202412,Y,U,Y,18903.0,,3290.0,,22193.0,,9557.0,,39.0,,9596.0,,330249.0,,765943.0,,713936.0,,52007.0,,435694.0,,4800.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1718.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3826.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",4520.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1073.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",105491.0,Does not include all calls received after business hours; Includes calls for other benefit programs,61.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.33,Does not include all calls received after business hours; Includes calls for other benefit programs +NV,Nevada,202501,Y,P,N,20933.0,,2959.0,,23892.0,,10059.0,,35.0,,10094.0,,331110.0,,769660.0,,717293.0,,52367.0,,438550.0,,5433.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1989.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3959.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2800.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2173.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",114602.0,Does not include all calls received after business hours; Includes calls for other benefit programs,59.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.31,Does not include all calls received after business hours; Includes calls for other benefit programs +NV,Nevada,202501,Y,U,Y,20933.0,,2959.0,,23892.0,,10059.0,,35.0,,10094.0,,331110.0,,769660.0,,717293.0,,52367.0,,438550.0,,5433.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1989.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3959.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2800.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2173.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",114602.0,Does not include all calls received after business hours; Includes calls for other benefit programs,59.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.31,Does not include all calls received after business hours; Includes calls for other benefit programs +NV,Nevada,202502,Y,P,N,16031.0,,1023.0,,17054.0,,8880.0,"Count is of Households, Not Individuals",31.0,"Count is of Households, Not Individuals",8911.0,"Count is of Households, Not Individuals",331565.0,,772086.0,,719414.0,,52672.0,,440521.0,,4334.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1841.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3916.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2799.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1139.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",92205.0,Does not include all calls received after business hours; Includes calls for other benefit programs,44.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.28,Does not include all calls received after business hours; Includes calls for other benefit programs +NV,Nevada,202502,Y,U,Y,16031.0,,1023.0,,17054.0,,8880.0,"Count is of Households, Not Individuals",31.0,"Count is of Households, Not Individuals",8911.0,"Count is of Households, Not Individuals",331565.0,,772086.0,,719414.0,,52672.0,,440521.0,,4334.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1841.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3916.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2799.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1139.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",92205.0,Does not include all calls received after business hours; Includes calls for other benefit programs,44.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.28,Does not include all calls received after business hours; Includes calls for other benefit programs +NV,Nevada,202503,Y,P,N,17237.0,,1138.0,,18375.0,,9090.0,,40.0,,9130.0,,331974.0,,772211.0,,719195.0,,53016.0,,440237.0,,4761.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1845.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",5445.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1156.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",717.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",90823.0,Does not include all calls received after business hours; Includes calls for other benefit programs,42.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.3,Does not include all calls received after business hours; Includes calls for other benefit programs +NV,Nevada,202503,Y,U,Y,17237.0,,1138.0,,18375.0,,9090.0,"Count is of Households, Not Individuals",40.0,"Count is of Households, Not Individuals",9130.0,"Count is of Households, Not Individuals",331974.0,,772211.0,,719195.0,,53016.0,,440237.0,,4761.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1845.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",5445.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1156.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",717.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",90823.0,Does not include all calls received after business hours; Includes calls for other benefit programs,42.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.3,Does not include all calls received after business hours; Includes calls for other benefit programs +NV,Nevada,202504,Y,P,N,18023.0,,1111.0,,19134.0,,9081.0,,40.0,,9121.0,,331466.0,,770180.0,,718076.0,,52104.0,,438714.0,,5200.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2558.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",5046.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1015.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",171.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",97184.0,Does not include all calls received after business hours; Includes calls for other benefit programs,43.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.3,Does not include all calls received after business hours; Includes calls for other benefit programs +NV,Nevada,202504,Y,U,Y,18023.0,,1111.0,,19134.0,,9081.0,"Count is of Households, Not Individuals",40.0,"Count is of Households, Not Individuals",9121.0,"Count is of Households, Not Individuals",331466.0,,770180.0,,718076.0,,52104.0,,438714.0,,5200.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2558.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",5046.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1015.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",171.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",97184.0,Does not include all calls received after business hours; Includes calls for other benefit programs,43.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.3,Does not include all calls received after business hours; Includes calls for other benefit programs +NV,Nevada,202505,Y,P,N,16961.0,,1011.0,,17972.0,,8526.0,,33.0,,8559.0,,330378.0,,766543.0,,714910.0,,51633.0,,436165.0,,4760.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2315.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",4838.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",377.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",84.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",82560.0,Does not include all calls received after business hours; Includes calls for other benefit programs,38.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.27,Does not include all calls received after business hours; Includes calls for other benefit programs +NV,Nevada,202505,Y,U,Y,16961.0,,1011.0,,17972.0,,8526.0,"Count is of Households, Not Individuals",33.0,"Count is of Households, Not Individuals",8559.0,"Count is of Households, Not Individuals",330378.0,,766543.0,,714910.0,,51633.0,,436165.0,,4760.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2315.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",4838.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",377.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",84.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",82560.0,Does not include all calls received after business hours; Includes calls for other benefit programs,38.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.27,Does not include all calls received after business hours; Includes calls for other benefit programs +NV,Nevada,202506,Y,P,N,17284.0,,878.0,,18162.0,,8742.0,,29.0,,8771.0,,327212.0,,755561.0,,704584.0,,50977.0,,428349.0,,4641.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3044.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",4422.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",477.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",88.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",107712.0,Does not include all calls received after business hours; Includes calls for other benefit programs,57.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.31,Does not include all calls received after business hours; Includes calls for other benefit programs +NV,Nevada,202506,Y,U,Y,17284.0,,878.0,,18162.0,,8742.0,"Count is of Households, Not Individuals",29.0,"Count is of Households, Not Individuals",8771.0,"Count is of Households, Not Individuals",327212.0,,755561.0,,704584.0,,50977.0,,428349.0,,4641.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3044.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",4422.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",477.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",88.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",107712.0,Does not include all calls received after business hours; Includes calls for other benefit programs,57.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.31,Does not include all calls received after business hours; Includes calls for other benefit programs +NV,Nevada,202507,Y,P,N,17268.0,,903.0,,18171.0,,7969.0,"Count is of Households, Not Individuals",23.0,,7992.0,,324387.0,,749193.0,,699556.0,,49637.0,,424806.0,,4459.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1867.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",4412.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1024.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",130.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",113474.0,Does not include all calls received after business hours; Includes calls for other benefit programs,64.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.35,Does not include all calls received after business hours; Includes calls for other benefit programs +NV,Nevada,202507,Y,U,Y,17268.0,,903.0,,18171.0,,7969.0,"Count is of Households, Not Individuals",23.0,"Count is of Households, Not Individuals",7992.0,"Count is of Households, Not Individuals",324387.0,,749193.0,,699556.0,,49637.0,,424806.0,,4459.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1867.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",4412.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1024.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",130.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",113474.0,Does not include all calls received after business hours; Includes calls for other benefit programs,64.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.35,Does not include all calls received after business hours; Includes calls for other benefit programs +NV,Nevada,202508,Y,P,N,14169.0,,875.0,,15044.0,,7196.0,"Count is of Households, Not Individuals",33.0,"Count is of Households, Not Individuals",7229.0,"Count is of Households, Not Individuals",321988.0,,742475.0,,693668.0,,48807.0,,420487.0,,3870.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1618.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3730.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",898.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",181.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",98902.0,Does not include all calls received after business hours; Includes calls for other benefit programs,59.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.34,Does not include all calls received after business hours; Includes calls for other benefit programs +NV,Nevada,202508,Y,U,Y,14169.0,,875.0,,15044.0,,7196.0,"Count is of Households, Not Individuals",33.0,"Count is of Households, Not Individuals",7229.0,"Count is of Households, Not Individuals",321988.0,,742475.0,,693668.0,,48807.0,,420487.0,,3870.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1618.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3730.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",898.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",181.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",98902.0,Does not include all calls received after business hours; Includes calls for other benefit programs,59.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.34,Does not include all calls received after business hours; Includes calls for other benefit programs +NV,Nevada,202509,Y,P,N,15013.0,,1109.0,,16122.0,,7747.0,"Count is of Households, Not Individuals",31.0,"Count is of Households, Not Individuals",7778.0,"Count is of Households, Not Individuals",320624.0,,738352.0,,689962.0,,48390.0,,417728.0,,4419.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1474.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2541.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1441.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1341.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",114212.0,Does not include all calls received after business hours; Includes calls for other benefit programs,66.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.32,Does not include all calls received after business hours; Includes calls for other benefit programs +NV,Nevada,202509,Y,U,Y,15013.0,,1109.0,,16122.0,,7747.0,"Count is of Households, Not Individuals",31.0,"Count is of Households, Not Individuals",7778.0,"Count is of Households, Not Individuals",320624.0,,738352.0,,689962.0,,48390.0,,417728.0,,4419.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1474.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2541.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1441.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1341.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",114212.0,Does not include all calls received after business hours; Includes calls for other benefit programs,66.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.32,Does not include all calls received after business hours; Includes calls for other benefit programs +NV,Nevada,202510,Y,P,N,15737.0,,1003.0,,16740.0,,8223.0,"Count is of Households, Not Individuals",30.0,"Count is of Households, Not Individuals",8253.0,"Count is of Households, Not Individuals",320581.0,,742058.0,,694145.0,,47913.0,,421477.0,,4137.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1921.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3517.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1350.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1411.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",125983.0,Does not include all calls received after business hours; Includes calls for other benefit programs,71.0,Does not include all calls received after business hours; Includes calls for other benefit programs,0.3,Does not include all calls received after business hours; Includes calls for other benefit programs +NY,New York,201309,N,U,Y,,,,,,,,,,,,,,,5678417.0,,,,,,,,,,,,,,,,,,,,,,, +NY,New York,201706,Y,P,N,0.0,,121115.0,,121115.0,,122553.0,,10549.0,,133102.0,,2423532.0,Includes Retroactive Enrollments,6071815.0,Includes Retroactive Enrollments,5576355.0,Includes Retroactive Enrollments,495460.0,,,,,,,,,,,,,,,,,,, +NY,New York,201706,Y,U,Y,0.0,,121115.0,,121115.0,,125494.0,,10600.0,,136094.0,,2424893.0,,6073176.0,,5576355.0,,496821.0,,,,,,,,,,,,,,,,,,, +NY,New York,201707,Y,P,N,0.0,,108234.0,,108234.0,,116902.0,,13834.0,,130736.0,,2436624.0,Includes Retroactive Enrollments,6095478.0,Includes Retroactive Enrollments,5586832.0,Includes Retroactive Enrollments,508646.0,,,,,,,,,,,,,,,,,,, +NY,New York,201707,Y,U,Y,0.0,,108234.0,,108234.0,,119359.0,,13866.0,,133225.0,,2437288.0,,6096142.0,,5586832.0,,509310.0,,,,,,,,,,,,,,,,,,, +NY,New York,201708,Y,P,N,0.0,,129632.0,,129632.0,,104737.0,,10957.0,,115694.0,,2435690.0,Includes Retroactive Enrollments,6074319.0,Includes Retroactive Enrollments,5563706.0,Includes Retroactive Enrollments,510613.0,,,,,,,,,,,,,,,,,,, +NY,New York,201708,Y,U,Y,0.0,,129632.0,,129632.0,,112196.0,,11079.0,,123275.0,,2437992.0,,6076621.0,,5563706.0,,512915.0,,,,,,,,,,,,,,,,,,, +NY,New York,201709,Y,P,N,0.0,,116738.0,,116738.0,,123485.0,,16838.0,,140323.0,,2442298.0,Includes Retroactive Enrollments,6089556.0,Includes Retroactive Enrollments,5572559.0,Includes Retroactive Enrollments,516997.0,,,,,,,,,,,,,,,,,,, +NY,New York,201709,Y,U,Y,0.0,,116738.0,,116738.0,,131628.0,,17006.0,,148634.0,,2442333.0,,6089591.0,,5572559.0,,517032.0,,,,,,,,,,,,,,,,,,, +NY,New York,201710,Y,P,N,0.0,,129753.0,,129753.0,,114599.0,,10194.0,,124793.0,,2443728.0,Includes Retroactive Enrollments,6086981.0,Includes Retroactive Enrollments,5566298.0,Includes Retroactive Enrollments,520683.0,,,,,,,,,,,,,,,,,,, +NY,New York,201710,Y,U,Y,0.0,,129753.0,,129753.0,,121014.0,,10331.0,,131345.0,,2444385.0,,6087638.0,,5566298.0,,521340.0,,,,,,,,,,,,,,,,,,, +NY,New York,201711,Y,P,N,0.0,,183493.0,,183493.0,,124060.0,,11070.0,,135130.0,,2450720.0,Includes Retroactive Enrollments,6119623.0,Includes Retroactive Enrollments,5595061.0,Includes Retroactive Enrollments,524562.0,,,,,,,,,,,,,,,,,,, +NY,New York,201711,Y,U,Y,0.0,,183493.0,,183493.0,,129450.0,,11195.0,,140645.0,,2451252.0,,6120155.0,,5595061.0,,525094.0,,,,,,,,,,,,,,,,,,, +NY,New York,201712,Y,P,N,0.0,,204006.0,,204006.0,,122560.0,,14735.0,,137295.0,,2452435.0,Includes Retroactive Enrollments,6121814.0,Includes Retroactive Enrollments,5590461.0,Includes Retroactive Enrollments,531353.0,,,,,,,,,,,,,,,,,,, +NY,New York,201712,Y,U,Y,0.0,,204006.0,,204006.0,,126508.0,,14810.0,,141318.0,,2452861.0,,6122240.0,,5590461.0,,531779.0,,,,,,,,,,,,,,,,,,, +NY,New York,201801,Y,P,N,0.0,,168985.0,,168985.0,,125386.0,,9554.0,,134940.0,,2458154.0,Includes Retroactive Enrollments,6150670.0,Includes Retroactive Enrollments,5619155.0,Includes Retroactive Enrollments,531515.0,,,,,,,,,,,,,,,,,,, +NY,New York,201801,Y,U,Y,0.0,,168985.0,,168985.0,,132640.0,,9676.0,,142316.0,,2459121.0,,6151637.0,,5619155.0,,532482.0,,,,,,,,,,,,,,,,,,, +NY,New York,201802,Y,P,N,0.0,,107827.0,,107827.0,,147174.0,,12640.0,,159814.0,,2456049.0,Includes Retroactive Enrollments,6129541.0,Includes Retroactive Enrollments,5593581.0,Includes Retroactive Enrollments,535960.0,,,,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,,,,,, +NY,New York,201802,Y,U,Y,0.0,,107827.0,,107827.0,,149540.0,,12676.0,,162216.0,,2456269.0,,6129761.0,,5593581.0,,536180.0,,,,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,,,,,, +NY,New York,201803,Y,P,N,0.0,,115420.0,,115420.0,,104757.0,,6479.0,,111236.0,,2462914.0,Includes Retroactive Enrollments,6151698.0,Includes Retroactive Enrollments,5610302.0,Includes Retroactive Enrollments,541396.0,,,,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,,,,,, +NY,New York,201803,Y,U,Y,0.0,,115420.0,,115420.0,,113379.0,,6633.0,,120012.0,,2463866.0,,6152650.0,,5610302.0,,542348.0,,,,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,,,,,, +NY,New York,201804,Y,P,N,0.0,,110544.0,,110544.0,,113970.0,,9837.0,,123807.0,,2459266.0,Includes Retroactive Enrollments,6133837.0,Includes Retroactive Enrollments,5589153.0,Includes Retroactive Enrollments,544684.0,,,,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,,,,,, +NY,New York,201804,Y,U,Y,0.0,,110544.0,,110544.0,,120337.0,,9934.0,,130271.0,,2459600.0,,6134171.0,,5589153.0,,545018.0,,,,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,,,,,, +NY,New York,201805,Y,P,N,0.0,,108002.0,,108002.0,,111804.0,,8568.0,,120372.0,,2464430.0,Includes Retroactive Enrollments,6152918.0,Includes Retroactive Enrollments,5605167.0,Includes Retroactive Enrollments,547751.0,,,,,,,,,,,,,,,,,,, +NY,New York,201805,Y,U,Y,0.0,,108002.0,,108002.0,,119437.0,,8666.0,,128103.0,,2464769.0,,6153257.0,,5605167.0,,548090.0,,,,,,,,,,,,,,,,,,, +NY,New York,201806,Y,P,N,0.0,,105930.0,,105930.0,,106595.0,,8062.0,,114657.0,,2460305.0,Includes Retroactive Enrollments,6132373.0,Includes Retroactive Enrollments,5580463.0,Includes Retroactive Enrollments,551910.0,,,,,,,,,,,,,,,,,,, +NY,New York,201806,Y,U,Y,0.0,,105930.0,,105930.0,,111527.0,,8118.0,,119645.0,,2460691.0,,6132759.0,,5580463.0,,552296.0,,,,,,,,,,,,,,,,,,, +NY,New York,201807,Y,P,N,0.0,,117344.0,,117344.0,,104537.0,,7133.0,,111670.0,,2462712.0,Includes Retroactive Enrollments,6151452.0,Includes Retroactive Enrollments,5597943.0,Includes Retroactive Enrollments,553509.0,,,,,,,,,,,,,,,,,,, +NY,New York,201807,Y,U,Y,0.0,,117344.0,,117344.0,,109003.0,,7199.0,,116202.0,,2463467.0,,6152207.0,,5597943.0,,554264.0,,,,,,,,,,,,,,,,,,, +NY,New York,201808,Y,P,N,0.0,,129895.0,,129895.0,,109268.0,,7780.0,,117048.0,,2459804.0,Includes Retroactive Enrollments,6147646.0,Includes Retroactive Enrollments,5594399.0,Includes Retroactive Enrollments,553247.0,,,,,,,,,,,,,,,,,,, +NY,New York,201808,Y,U,Y,0.0,,129895.0,,129895.0,,116069.0,,7902.0,,123971.0,,2460998.0,,6148840.0,,5594399.0,,554441.0,,,,,,,,,,,,,,,,,,, +NY,New York,201809,Y,P,N,0.0,,113799.0,,113799.0,,119017.0,,8976.0,,127993.0,,2451415.0,Includes Retroactive Enrollments,6121833.0,Includes Retroactive Enrollments,5565602.0,Includes Retroactive Enrollments,556231.0,,,,,,,,,,,,,,,,,,, +NY,New York,201809,Y,U,Y,0.0,,113799.0,,113799.0,,120423.0,,8995.0,,129418.0,,2451723.0,,6122141.0,,5565602.0,,556539.0,,,,,,,,,,,,,,,,,,, +NY,New York,201810,Y,P,N,0.0,,132184.0,,132184.0,,109654.0,,8127.0,,117781.0,,2455040.0,Includes Retroactive Enrollments,6143622.0,Includes Retroactive Enrollments,5584889.0,Includes Retroactive Enrollments,558733.0,,,,,,,,,,,,,,,,,,, +NY,New York,201810,Y,U,Y,0.0,,132184.0,,132184.0,,122615.0,,8565.0,,131180.0,,2456025.0,,6144607.0,,5584889.0,,559718.0,,,,,,,,,,,,,,,,,,, +NY,New York,201811,Y,P,N,0.0,,166363.0,,166363.0,,115743.0,,8339.0,,124082.0,,2455641.0,Includes Retroactive Enrollments,6126492.0,Includes Retroactive Enrollments,5560981.0,Includes Retroactive Enrollments,565511.0,,,,,,,,,,,,,,,,,,, +NY,New York,201811,Y,U,Y,0.0,,166363.0,,166363.0,,128853.0,,8766.0,,137619.0,,2456346.0,,6127197.0,,5560981.0,,566216.0,,,,,,,,,,,,,,,,,,, +NY,New York,201812,Y,P,N,0.0,,187913.0,,187913.0,,117032.0,,8498.0,,125530.0,,2449731.0,Includes Retroactive Enrollments,6135566.0,Includes Retroactive Enrollments,5568617.0,Includes Retroactive Enrollments,566949.0,,,,,,,,,,,,,,,,,,, +NY,New York,201812,Y,U,Y,0.0,,187913.0,,187913.0,,121202.0,,8562.0,,129764.0,,2450331.0,,6136166.0,,5568617.0,,567549.0,,,,,,,,,,,,,,,,,,, +NY,New York,201901,Y,P,N,0.0,,176401.0,,176401.0,,119692.0,,6444.0,,126136.0,,2447317.0,Includes Retroactive Enrollments,6138367.0,Includes Retroactive Enrollments,5569916.0,Includes Retroactive Enrollments,568451.0,,,,,,,,,,,,,,,,,,, +NY,New York,201901,Y,U,Y,0.0,,176401.0,,176401.0,,125149.0,,6492.0,,131641.0,,2447938.0,,6138988.0,,5569916.0,,569072.0,,,,,,,,,,,,,,,,,,, +NY,New York,201902,Y,P,N,0.0,,110348.0,,110348.0,,144594.0,,6056.0,,150650.0,,2443133.0,Includes Retroactive Enrollments,6122992.0,Includes Retroactive Enrollments,5549740.0,Includes Retroactive Enrollments,573252.0,,,,791175.0,Includes some non-Medicaid or CHIP determinations on applications,23288.0,Includes some non-Medicaid or CHIP determinations on applications,70298.0,Includes some non-Medicaid or CHIP determinations on applications,2261.0,Includes some non-Medicaid or CHIP determinations on applications,3679.0,Includes some non-Medicaid or CHIP determinations on applications,,,,,, +NY,New York,201902,Y,U,Y,0.0,,110348.0,,110348.0,,152115.0,,6170.0,,158285.0,,2443874.0,,6123733.0,,5549740.0,,573993.0,,,,791175.0,Includes some non-Medicaid or CHIP determinations on applications,23288.0,Includes some non-Medicaid or CHIP determinations on applications,70298.0,Includes some non-Medicaid or CHIP determinations on applications,2261.0,Includes some non-Medicaid or CHIP determinations on applications,3679.0,Includes some non-Medicaid or CHIP determinations on applications,,,,,, +NY,New York,201903,Y,P,N,0.0,,125457.0,,125457.0,,103049.0,,7071.0,,110120.0,,2442075.0,Includes Retroactive Enrollments,6122055.0,Includes Retroactive Enrollments,5542288.0,Includes Retroactive Enrollments,579767.0,,,,461181.0,,570.0,,2339.0,,1226.0,,1682.0,,,,,,, +NY,New York,201903,Y,U,Y,0.0,,125457.0,,125457.0,,105554.0,,7100.0,,112654.0,,2442391.0,,6122371.0,,5542288.0,,580083.0,,,,461181.0,,570.0,,2339.0,,1226.0,,1682.0,,,,,,, +NY,New York,201904,Y,P,N,0.0,,119352.0,,119352.0,,113849.0,,8221.0,,122070.0,,2435685.0,Includes Retroactive Enrollments,6113114.0,Includes Retroactive Enrollments,5532168.0,Includes Retroactive Enrollments,580946.0,,,,452304.0,,616.0,,1145.0,,963.0,,1702.0,,,,,,, +NY,New York,201904,Y,U,Y,0.0,,119352.0,,119352.0,,116785.0,,8261.0,,125046.0,,2436309.0,,6113738.0,,5532168.0,,581570.0,,,,452304.0,,616.0,,1145.0,,963.0,,1702.0,,,,,,, +NY,New York,201905,Y,P,N,0.0,,116740.0,,116740.0,,116009.0,,9948.0,,125957.0,,2433376.0,Includes Retroactive Enrollments,6111907.0,Includes Retroactive Enrollments,5527396.0,Includes Retroactive Enrollments,584511.0,,,,,,,,,,,,,,,,,,, +NY,New York,201905,Y,U,Y,0.0,,116740.0,,116740.0,,122005.0,,10039.0,,132044.0,,2434118.0,,6112649.0,,5527396.0,,585253.0,,,,,,,,,,,,,,,,,,, +NY,New York,201906,Y,P,N,0.0,,106932.0,,106932.0,,116750.0,,7937.0,,124687.0,,2424310.0,Includes Retroactive Enrollments,6083292.0,Includes Retroactive Enrollments,5495324.0,Includes Retroactive Enrollments,587968.0,,,,,,,,,,,,,,,,,,, +NY,New York,201906,Y,U,Y,0.0,,106932.0,,106932.0,,118012.0,,7963.0,,125975.0,,2424546.0,,6083528.0,,5495324.0,,588204.0,,,,,,,,,,,,,,,,,,, +NY,New York,201907,Y,P,N,0.0,,111994.0,,111994.0,,107284.0,,5741.0,,113025.0,,2422697.0,Includes Retroactive Enrollments,6096998.0,Includes Retroactive Enrollments,5508804.0,Includes Retroactive Enrollments,588194.0,,,,,,,,,,,,,,,,,,, +NY,New York,201907,Y,U,Y,0.0,,111994.0,,111994.0,,111365.0,,5802.0,,117167.0,,2423510.0,,6097811.0,,5508804.0,,589007.0,,,,,,,,,,,,,,,,,,, +NY,New York,201908,Y,P,N,0.0,,111490.0,,111490.0,,114798.0,,9602.0,,124400.0,,2417796.0,Includes Retroactive Enrollments,6074252.0,Includes Retroactive Enrollments,5482585.0,Includes Retroactive Enrollments,591667.0,,,,,,,,,,,,,,,,,,, +NY,New York,201908,Y,U,Y,0.0,,111490.0,,111490.0,,117313.0,,9654.0,,126967.0,,2418395.0,,6074851.0,,5482585.0,,592266.0,,,,,,,,,,,,,,,,,,, +NY,New York,201909,Y,P,N,0.0,,112990.0,,112990.0,,112024.0,,8137.0,,120161.0,,2417959.0,Includes Retroactive Enrollments,6083017.0,Includes Retroactive Enrollments,5487836.0,Includes Retroactive Enrollments,595181.0,,,,,,,,,,,,,,,,,,, +NY,New York,201909,Y,U,Y,0.0,,112990.0,,112990.0,,117054.0,,8240.0,,125294.0,,2419459.0,,6084517.0,,5487836.0,,596681.0,,,,,,,,,,,,,,,,,,, +NY,New York,201910,Y,P,N,0.0,,120251.0,,120251.0,,109785.0,,7082.0,,116867.0,,2407742.0,Includes Retroactive Enrollments,6047203.0,Includes Retroactive Enrollments,5449260.0,Includes Retroactive Enrollments,597943.0,,,,,,,,,,,,,,,,,,, +NY,New York,201910,Y,U,Y,0.0,,120251.0,,120251.0,,114292.0,,7166.0,,121458.0,,2408934.0,,6048395.0,,5449260.0,,599135.0,,,,,,,,,,,,,,,,,,, +NY,New York,201911,Y,P,N,0.0,,155676.0,,155676.0,,101713.0,,6286.0,,107999.0,,2397666.0,Includes Retroactive Enrollments,6001498.0,Includes Retroactive Enrollments,5399642.0,Includes Retroactive Enrollments,601856.0,,,,,,,,,,,,,,,,,,, +NY,New York,201911,Y,U,Y,0.0,,155676.0,,155676.0,,120298.0,,6462.0,,126760.0,,2398202.0,,6002034.0,,5399642.0,,602392.0,,,,,,,,,,,,,,,,,,, +NY,New York,201912,Y,P,N,0.0,,179075.0,Includes Renewals and/or Redeterminations,179075.0,Includes Renewals and/or Redeterminations,108572.0,Includes Renewals and/or Redeterminations,8040.0,Includes Renewals and/or Redeterminations,116612.0,Includes Renewals and/or Redeterminations,2386901.0,Includes Retroactive Enrollments,5982690.0,Includes Retroactive Enrollments,5379459.0,Includes Retroactive Enrollments,603231.0,,,,,,,,,,,,,,,,,,, +NY,New York,201912,Y,U,Y,0.0,,179075.0,Includes Renewals and/or Redeterminations,179075.0,Includes Renewals and/or Redeterminations,106158.0,Includes Renewals and/or Redeterminations,8204.0,Includes Renewals and/or Redeterminations,114362.0,Includes Renewals and/or Redeterminations,2393142.0,,5997950.0,,5394013.0,,603937.0,,,,,,,,,,,,,,,,,,, +NY,New York,202001,Y,P,N,0.0,,161184.0,Includes Renewals and/or Redeterminations,161184.0,Includes Renewals and/or Redeterminations,124361.0,Includes Renewals and/or Redeterminations,9025.0,Includes Renewals and/or Redeterminations,133386.0,Includes Renewals and/or Redeterminations,2388495.0,Includes Retroactive Enrollments,5985869.0,Includes Retroactive Enrollments,5380274.0,Includes Retroactive Enrollments,605595.0,,,,,,,,,,,,,,,,,,, +NY,New York,202001,Y,U,Y,0.0,,161184.0,Includes Renewals and/or Redeterminations,161184.0,Includes Renewals and/or Redeterminations,147427.0,Includes Renewals and/or Redeterminations,9260.0,Includes Renewals and/or Redeterminations,156687.0,Includes Renewals and/or Redeterminations,2394141.0,,6004128.0,,5397555.0,,606573.0,,,,,,,,,,,,,,,,,,, +NY,New York,202002,Y,P,N,0.0,,115350.0,Includes Renewals and/or Redeterminations,115350.0,Includes Renewals and/or Redeterminations,105801.0,Includes Renewals and/or Redeterminations,8299.0,Includes Renewals and/or Redeterminations,114100.0,Includes Renewals and/or Redeterminations,2381932.0,Includes Retroactive Enrollments,5966911.0,Includes Retroactive Enrollments,5356631.0,Includes Retroactive Enrollments,610280.0,,,,449057.0,,930.0,,368.0,,128.0,,720.0,,,,,,, +NY,New York,202002,Y,U,Y,0.0,,115350.0,Includes Renewals and/or Redeterminations,115350.0,Includes Renewals and/or Redeterminations,109629.0,Includes Renewals and/or Redeterminations,9008.0,Includes Renewals and/or Redeterminations,118637.0,Includes Renewals and/or Redeterminations,2389703.0,,5987770.0,,5375915.0,,611855.0,,,,449057.0,,930.0,,368.0,,128.0,,720.0,,,,,,, +NY,New York,202003,Y,P,N,0.0,,126196.0,Includes Renewals and/or Redeterminations,126196.0,Includes Renewals and/or Redeterminations,116543.0,Includes Renewals and/or Redeterminations,9389.0,Includes Renewals and/or Redeterminations,125932.0,Includes Renewals and/or Redeterminations,2385161.0,Includes Retroactive Enrollments,5992670.0,Includes Retroactive Enrollments,5376140.0,Includes Retroactive Enrollments,616530.0,,,,549226.0,,946.0,,457.0,,131.0,,701.0,,,,,,, +NY,New York,202003,Y,U,Y,0.0,,126196.0,Includes Renewals and/or Redeterminations,126196.0,Includes Renewals and/or Redeterminations,116827.0,Includes Renewals and/or Redeterminations,7259.0,Includes Renewals and/or Redeterminations,124086.0,Includes Renewals and/or Redeterminations,2389733.0,,6006163.0,,5389288.0,,616875.0,,,,549226.0,,946.0,,457.0,,131.0,,701.0,,,,,,, +NY,New York,202004,Y,P,N,0.0,,129787.0,Includes Renewals and/or Redeterminations,129787.0,Includes Renewals and/or Redeterminations,132202.0,Includes Renewals and/or Redeterminations,7458.0,Includes Renewals and/or Redeterminations,139660.0,Includes Renewals and/or Redeterminations,2408010.0,Includes Retroactive Enrollments,6104550.0,Includes Retroactive Enrollments,5480996.0,Includes Retroactive Enrollments,623554.0,,,,261671.0,,308.0,,115.0,,30.0,,364.0,,,,,,, +NY,New York,202004,Y,U,Y,0.0,,129787.0,Includes Renewals and/or Redeterminations,129787.0,Includes Renewals and/or Redeterminations,136141.0,Includes Renewals and/or Redeterminations,7517.0,Includes Renewals and/or Redeterminations,143658.0,Includes Renewals and/or Redeterminations,2399006.0,,6022413.0,,5398698.0,,623715.0,,,,261671.0,,308.0,,115.0,,30.0,,364.0,,,,,,, +NY,New York,202005,Y,P,N,0.0,,105613.0,Includes Renewals and/or Redeterminations,105613.0,Includes Renewals and/or Redeterminations,138964.0,Includes Renewals and/or Redeterminations,9812.0,Includes Renewals and/or Redeterminations,148776.0,Includes Renewals and/or Redeterminations,2413921.0,Includes Retroactive Enrollments,6120957.0,Includes Retroactive Enrollments,5495373.0,Includes Retroactive Enrollments,625584.0,,,,,,,,,,,,,,,,,,, +NY,New York,202005,Y,U,Y,0.0,,105613.0,Includes Renewals and/or Redeterminations,105613.0,Includes Renewals and/or Redeterminations,145301.0,Includes Renewals and/or Redeterminations,9927.0,Includes Renewals and/or Redeterminations,155228.0,Includes Renewals and/or Redeterminations,2434903.0,,6193566.0,,5567697.0,,625869.0,,,,,,,,,,,,,,,,,,, +NY,New York,202006,Y,P,N,0.0,,101239.0,Includes Renewals and/or Redeterminations,101239.0,Includes Renewals and/or Redeterminations,123691.0,Includes Renewals and/or Redeterminations,9271.0,Includes Renewals and/or Redeterminations,132962.0,Includes Renewals and/or Redeterminations,2440866.0,Includes Retroactive Enrollments,6263164.0,Includes Retroactive Enrollments,5648681.0,Includes Retroactive Enrollments,614483.0,,,,,,,,,,,,,,,,,,, +NY,New York,202006,Y,U,Y,0.0,,101239.0,Includes Renewals and/or Redeterminations,101239.0,Includes Renewals and/or Redeterminations,131265.0,Includes Renewals and/or Redeterminations,9396.0,Includes Renewals and/or Redeterminations,140661.0,Includes Renewals and/or Redeterminations,2444234.0,,6279719.0,,5664944.0,,614775.0,,,,,,,,,,,,,,,,,,, +NY,New York,202007,Y,P,N,0.0,,104463.0,Includes Renewals and/or Redeterminations,104463.0,Includes Renewals and/or Redeterminations,101591.0,Includes Renewals and/or Redeterminations,7141.0,Includes Renewals and/or Redeterminations,108732.0,Includes Renewals and/or Redeterminations,2462711.0,Includes Retroactive Enrollments,6367146.0,Includes Retroactive Enrollments,5750812.0,Includes Retroactive Enrollments,616334.0,,,,,,,,,,,,,,,,,,, +NY,New York,202007,Y,U,Y,0.0,,104463.0,Includes Renewals and/or Redeterminations,104463.0,Includes Renewals and/or Redeterminations,108691.0,Includes Renewals and/or Redeterminations,7254.0,Includes Renewals and/or Redeterminations,115945.0,Includes Renewals and/or Redeterminations,2464312.0,,6349834.0,,5733296.0,,616538.0,,,,,,,,,,,,,,,,,,, +NY,New York,202008,Y,P,N,0.0,,99763.0,Includes Renewals and/or Redeterminations,99763.0,Includes Renewals and/or Redeterminations,98871.0,Includes Renewals and/or Redeterminations,6728.0,Includes Renewals and/or Redeterminations,105599.0,Includes Renewals and/or Redeterminations,2474151.0,Includes Retroactive Enrollments,6421226.0,Includes Retroactive Enrollments,5806715.0,Includes Retroactive Enrollments,614511.0,,,,,,,,,,,,,,,,,,, +NY,New York,202008,Y,U,Y,0.0,,99763.0,Includes Renewals and/or Redeterminations,99763.0,Includes Renewals and/or Redeterminations,102771.0,Includes Renewals and/or Redeterminations,6662.0,Includes Renewals and/or Redeterminations,109433.0,Includes Renewals and/or Redeterminations,2479672.0,,6435565.0,,5820986.0,,614579.0,,,,,,,,,,,,,,,,,,, +NY,New York,202009,Y,P,N,0.0,,91709.0,Includes Renewals and/or Redeterminations,91709.0,Includes Renewals and/or Redeterminations,95853.0,Includes Renewals and/or Redeterminations,6940.0,Includes Renewals and/or Redeterminations,102793.0,Includes Renewals and/or Redeterminations,2482052.0,Includes Retroactive Enrollments,6475604.0,Includes Retroactive Enrollments,5863440.0,Includes Retroactive Enrollments,612164.0,,,,,,,,,,,,,,,,,,, +NY,New York,202009,Y,U,Y,0.0,,91709.0,Includes Renewals and/or Redeterminations,91709.0,Includes Renewals and/or Redeterminations,101190.0,Includes Renewals and/or Redeterminations,6991.0,Includes Renewals and/or Redeterminations,108181.0,Includes Renewals and/or Redeterminations,2487778.0,,6492326.0,,5879919.0,,612407.0,,,,,,,,,,,,,,,,,,, +NY,New York,202010,Y,P,N,0.0,,87799.0,Includes Renewals and/or Redeterminations,87799.0,Includes Renewals and/or Redeterminations,89338.0,Includes Renewals and/or Redeterminations,6719.0,Includes Renewals and/or Redeterminations,96057.0,Includes Renewals and/or Redeterminations,2491991.0,Includes Retroactive Enrollments,6532982.0,Includes Retroactive Enrollments,5922247.0,Includes Retroactive Enrollments,610735.0,,,,,,,,,,,,,,,,,,, +NY,New York,202010,Y,U,Y,0.0,,87799.0,Includes Renewals and/or Redeterminations,87799.0,Includes Renewals and/or Redeterminations,94547.0,Includes Renewals and/or Redeterminations,6752.0,Includes Renewals and/or Redeterminations,101299.0,Includes Renewals and/or Redeterminations,2496318.0,,6546581.0,,5935675.0,,610906.0,,,,,,,,,,,,,,,,,,, +NY,New York,202011,Y,P,N,0.0,,106699.0,Includes Renewals and/or Redeterminations,106699.0,Includes Renewals and/or Redeterminations,85198.0,Includes Renewals and/or Redeterminations,6170.0,Includes Renewals and/or Redeterminations,91368.0,Includes Renewals and/or Redeterminations,2498301.0,Includes Retroactive Enrollments,6591224.0,Includes Retroactive Enrollments,5982734.0,Includes Retroactive Enrollments,608490.0,,,,,,,,,,,,,,,,,,, +NY,New York,202011,Y,U,Y,0.0,,106699.0,Includes Renewals and/or Redeterminations,106699.0,Includes Renewals and/or Redeterminations,92305.0,Includes Renewals and/or Redeterminations,6223.0,Includes Renewals and/or Redeterminations,98528.0,Includes Renewals and/or Redeterminations,2504371.0,,6608792.0,,6000087.0,,608705.0,,,,,,,,,,,,,,,,,,, +NY,New York,202012,Y,P,N,0.0,,131290.0,Includes Renewals and/or Redeterminations,131290.0,Includes Renewals and/or Redeterminations,92735.0,Includes Renewals and/or Redeterminations,5951.0,Includes Renewals and/or Redeterminations,98686.0,Includes Renewals and/or Redeterminations,2512252.0,Includes Retroactive Enrollments,6680290.0,Includes Retroactive Enrollments,6073362.0,Includes Retroactive Enrollments,606928.0,,,,,,,,,,,,,,,,,,, +NY,New York,202012,Y,U,Y,0.0,,131290.0,Includes Renewals and/or Redeterminations,131290.0,Includes Renewals and/or Redeterminations,96143.0,Includes Renewals and/or Redeterminations,5967.0,Includes Renewals and/or Redeterminations,102110.0,Includes Renewals and/or Redeterminations,2514589.0,,6686686.0,,6079679.0,,607007.0,,,,,,,,,,,,,,,,,,, +NY,New York,202101,Y,P,N,0.0,,305303.0,Includes Renewals and/or Redeterminations,305303.0,Includes Renewals and/or Redeterminations,107501.0,Includes Renewals and/or Redeterminations,6120.0,Includes Renewals and/or Redeterminations,113621.0,Includes Renewals and/or Redeterminations,2511728.0,Includes Retroactive Enrollments,6719577.0,Includes Retroactive Enrollments,6119470.0,Includes Retroactive Enrollments,600107.0,,,,,,,,,,,,,,,,,,, +NY,New York,202101,Y,U,Y,0.0,,305303.0,Includes Renewals and/or Redeterminations,305303.0,Includes Renewals and/or Redeterminations,113576.0,Includes Renewals and/or Redeterminations,6181.0,Includes Renewals and/or Redeterminations,119757.0,Includes Renewals and/or Redeterminations,2517878.0,,6736808.0,,6136524.0,,600284.0,,,,,,,,,,,,,,,,,,, +NY,New York,202102,Y,P,N,0.0,,268043.0,,268043.0,,89084.0,,5857.0,,94941.0,,2510011.0,,6720454.0,,6119756.0,,600698.0,,,,267732.0,,129.0,,169.0,,7.0,,6.0,,,,,,, +NY,New York,202102,Y,U,Y,0.0,,268043.0,,268043.0,,94693.0,,5892.0,,100585.0,,2516551.0,,6738949.0,,6137885.0,,601064.0,,,,267732.0,,129.0,,169.0,,7.0,,6.0,,,,,,, +NY,New York,202103,Y,P,N,0.0,,377908.0,,377908.0,,70169.0,,4539.0,,74708.0,,2517854.0,,6770508.0,,6172541.0,,597967.0,,,,377781.0,,78.0,,41.0,,1.0,,7.0,,,,,,, +NY,New York,202103,Y,U,Y,0.0,,377908.0,,377908.0,,73923.0,,4556.0,,78479.0,,2521002.0,,6802922.0,,6204878.0,,598044.0,,,,377781.0,,78.0,,41.0,,1.0,,7.0,,,,,,, +NY,New York,202104,Y,P,N,0.0,,375045.0,Includes Renewals and/or Redeterminations,375045.0,Includes Renewals and/or Redeterminations,78547.0,Includes Renewals and/or Redeterminations,2094.0,Includes Renewals and/or Redeterminations,80641.0,Includes Renewals and/or Redeterminations,2520415.0,Includes Retroactive Enrollments,6826445.0,Includes Retroactive Enrollments,6231243.0,Includes Retroactive Enrollments,595202.0,,,,374823.0,,92.0,,119.0,,4.0,,7.0,,,,,,, +NY,New York,202104,Y,U,Y,0.0,,375045.0,Includes Renewals and/or Redeterminations,375045.0,Includes Renewals and/or Redeterminations,83573.0,Includes Renewals and/or Redeterminations,2121.0,Includes Renewals and/or Redeterminations,85694.0,Includes Renewals and/or Redeterminations,2524543.0,,6834330.0,,6239009.0,,595321.0,,,,374823.0,,92.0,,119.0,,4.0,,7.0,,,,,,, +NY,New York,202105,Y,P,N,0.0,,330281.0,Includes Renewals and/or Redeterminations,330281.0,Includes Renewals and/or Redeterminations,71214.0,Includes Renewals and/or Redeterminations,1943.0,Includes Renewals and/or Redeterminations,73157.0,Includes Renewals and/or Redeterminations,2522833.0,Includes Retroactive Enrollments,6832700.0,Includes Retroactive Enrollments,6240559.0,Includes Retroactive Enrollments,592141.0,,,,,,,,,,,,,,,,,,, +NY,New York,202105,Y,U,Y,0.0,,330281.0,Includes Renewals and/or Redeterminations,330281.0,Includes Renewals and/or Redeterminations,75333.0,Includes Renewals and/or Redeterminations,1958.0,Includes Renewals and/or Redeterminations,77291.0,Includes Renewals and/or Redeterminations,2526851.0,,6838689.0,,6246461.0,,592228.0,,,,,,,,,,,,,,,,,,, +NY,New York,202106,Y,P,N,0.0,,381930.0,Includes Renewals and/or Redeterminations,381930.0,Includes Renewals and/or Redeterminations,65300.0,Includes Renewals and/or Redeterminations,1869.0,Includes Renewals and/or Redeterminations,67169.0,Includes Renewals and/or Redeterminations,2528317.0,Includes Retroactive Enrollments,6861671.0,Includes Retroactive Enrollments,6271410.0,Includes Retroactive Enrollments,590261.0,,,,,,,,,,,,,,,,,,, +NY,New York,202106,Y,U,Y,0.0,,381930.0,,381930.0,,69360.0,,1887.0,,71247.0,,2533260.0,,6874527.0,,6284132.0,,590395.0,,,,,,,,,,,,,,,,,,, +NY,New York,202107,Y,P,N,0.0,,343359.0,,343359.0,,66480.0,,1783.0,,68263.0,,2533406.0,,6893761.0,,6305328.0,,588433.0,,,,,,,,,,,,,,,,,,, +NY,New York,202107,Y,U,Y,0.0,,343359.0,,343359.0,,70160.0,,1798.0,,71958.0,,2539825.0,,6910492.0,,6321894.0,,588598.0,,,,,,,,,,,,,,,,,,, +NY,New York,202108,Y,P,N,0.0,,320707.0,,320707.0,,65121.0,,1685.0,,66806.0,,2534279.0,,6922743.0,,6335187.0,,587556.0,,,,,,,,,,,,,,,,,,, +NY,New York,202108,Y,U,Y,0.0,,320707.0,,320707.0,,70951.0,,1718.0,,72669.0,,2541312.0,,6939738.0,,6351982.0,,587756.0,,,,,,,,,,,,,,,,,,, +NY,New York,202109,Y,P,N,0.0,,370775.0,,370775.0,,70837.0,,1869.0,,72706.0,,2545362.0,,6967118.0,,6381267.0,,585851.0,,,,,,,,,,,,,,,,,,, +NY,New York,202109,Y,U,Y,0.0,,370775.0,,370775.0,,76800.0,,1915.0,,78715.0,,2550521.0,,6980050.0,,6394078.0,,585972.0,,,,,,,,,,,,,,,,,,, +NY,New York,202110,Y,P,N,0.0,,396319.0,,396319.0,,72910.0,,1749.0,,74659.0,,2553190.0,,7005279.0,,6420619.0,,584660.0,,,,,,,,,,,,,,,,,,, +NY,New York,202110,Y,U,Y,0.0,,396319.0,,396319.0,,77920.0,,1784.0,,79704.0,,2556593.0,,7014267.0,,6429447.0,,584820.0,,,,,,,,,,,,,,,,,,, +NY,New York,202111,Y,P,N,0.0,,225093.0,,225093.0,,70115.0,,1712.0,,71827.0,,2549628.0,,7020466.0,,6438378.0,,582088.0,,,,,,,,,,,,,,,,,,, +NY,New York,202111,Y,U,Y,0.0,,225093.0,,225093.0,,75336.0,,1742.0,,77078.0,,2555433.0,,7034181.0,,6452000.0,,582181.0,,,,,,,,,,,,,,,,,,, +NY,New York,202112,Y,P,N,0.0,,374671.0,,374671.0,,73946.0,,1726.0,,75672.0,,2560125.0,,7069410.0,,6488607.0,,580803.0,,,,,,,,,,,,,,,,,,, +NY,New York,202112,Y,U,Y,0.0,,374671.0,,374671.0,,76871.0,,1741.0,,78612.0,,2563898.0,,7078662.0,,6497772.0,,580890.0,,,,,,,,,,,,,,,,,,, +NY,New York,202201,Y,P,N,0.0,,356827.0,,356827.0,,77015.0,,1816.0,,78831.0,,2563953.0,,7103077.0,,6523867.0,,579210.0,,,,356726.0,,31.0,,58.0,,2.0,,10.0,,,,,,, +NY,New York,202201,Y,U,Y,0.0,,356827.0,,356827.0,,79869.0,,1840.0,,81709.0,,2571034.0,,7119703.0,,6540402.0,,579301.0,,,,356726.0,,31.0,,58.0,,2.0,,10.0,,,,,,, +NY,New York,202202,Y,P,N,0.0,,296059.0,,296059.0,,74522.0,,1908.0,,76430.0,,2570797.0,,7132557.0,,6555122.0,,577435.0,,,,295955.0,,29.0,,68.0,,2.0,,5.0,,,,,,, +NY,New York,202202,Y,U,Y,0.0,,296059.0,,296059.0,,79225.0,,1940.0,,81165.0,,2574841.0,,7141375.0,,6563883.0,,577492.0,,,,295955.0,,29.0,,68.0,,2.0,,5.0,,,,,,, +NY,New York,202203,Y,P,N,0.0,,321463.0,,321463.0,,62392.0,,1581.0,,63973.0,,2574867.0,,7160672.0,,6586508.0,,574164.0,,,,321365.0,,36.0,,49.0,,2.0,,11.0,,,,,,, +NY,New York,202203,Y,U,Y,0.0,,321463.0,,321463.0,,64999.0,,1606.0,,66605.0,,2577835.0,,7167607.0,,6593384.0,,574223.0,,,,321365.0,,36.0,,49.0,,2.0,,11.0,,,,,,, +NY,New York,202204,Y,P,N,0.0,,291050.0,,291050.0,,69806.0,,1503.0,,71309.0,,2570006.0,,7167737.0,,6596510.0,,571227.0,,,,290939.0,,50.0,,55.0,,3.0,,3.0,,,,,,, +NY,New York,202204,Y,U,Y,0.0,,291050.0,,291050.0,,71193.0,,1511.0,,72704.0,,2573662.0,,7176712.0,,6605423.0,,571289.0,,,,290939.0,,50.0,,55.0,,3.0,,3.0,,,,,,, +NY,New York,202205,Y,P,N,0.0,,269789.0,,269789.0,,67492.0,,1938.0,,69430.0,,2567008.0,,7174044.0,,6605610.0,,568434.0,,,,269643.0,,59.0,,79.0,,2.0,,6.0,,,,,,, +NY,New York,202205,Y,U,Y,0.0,,269789.0,,269789.0,,70390.0,,1954.0,,72344.0,,2573874.0,,7191272.0,,6622742.0,,568530.0,,,,269643.0,,59.0,,79.0,,2.0,,6.0,,,,,,, +NY,New York,202206,Y,P,N,0.0,,270728.0,,270728.0,,63570.0,,1658.0,,65228.0,,2575583.0,,7210643.0,,6643427.0,,567216.0,,,,270304.0,,213.0,,198.0,,1.0,,12.0,,,,,,, +NY,New York,202206,Y,U,Y,0.0,,270728.0,,270728.0,,66106.0,,1678.0,,67784.0,,2581208.0,,7224391.0,,6657081.0,,567310.0,,,,270304.0,,213.0,,198.0,,1.0,,12.0,,,,,,, +NY,New York,202207,Y,P,N,0.0,,288266.0,,288266.0,,66367.0,,1789.0,,68156.0,,2582205.0,,7241942.0,,6676037.0,,565905.0,,,,288154.0,,52.0,,45.0,,2.0,,13.0,,,,,,, +NY,New York,202207,Y,U,Y,0.0,,288266.0,,288266.0,,70015.0,,1830.0,,71845.0,,2586668.0,,7249900.0,,6685868.0,,564032.0,,,,288154.0,,52.0,,45.0,,2.0,,13.0,,,,,,, +NY,New York,202208,Y,P,N,0.0,,434461.0,,434461.0,,66282.0,,1750.0,,68032.0,,2578743.0,,7257497.0,,6699398.0,,558099.0,,,,434212.0,,175.0,,69.0,,0.0,,5.0,,,,,,, +NY,New York,202208,Y,U,Y,0.0,,434461.0,,434461.0,,69195.0,,1774.0,,70969.0,,2583841.0,,7269924.0,,6711720.0,,558204.0,,,,434212.0,,175.0,,69.0,,0.0,,5.0,,,,,,, +NY,New York,202209,Y,P,N,0.0,,402101.0,,402101.0,,75113.0,,2421.0,,77534.0,,2598369.0,,7305083.0,,6738088.0,,566995.0,,,,401977.0,,61.0,,54.0,,0.0,,9.0,,,,,,, +NY,New York,202209,Y,U,Y,0.0,,402101.0,,402101.0,,78765.0,,2439.0,,81204.0,,2603426.0,,7318196.0,,6751099.0,,567097.0,,,,401977.0,,61.0,,54.0,,0.0,,9.0,,,,,,, +NY,New York,202210,Y,P,N,0.0,,512242.0,,512242.0,,74203.0,,9579.0,,83782.0,,2593342.0,,7322176.0,,6765242.0,,556934.0,,,,512107.0,,70.0,,53.0,,2.0,,10.0,,,,,,, +NY,New York,202210,Y,U,Y,0.0,,512242.0,,512242.0,,78391.0,,9605.0,,87996.0,,2599062.0,,7336883.0,,6779836.0,,557047.0,,,,512107.0,,70.0,,53.0,,2.0,,10.0,,,,,,, +NY,New York,202211,Y,P,N,0.0,,231455.0,,231455.0,,70828.0,,1902.0,,72730.0,,2597210.0,,7346992.0,,6789092.0,,557900.0,,,,231282.0,,74.0,,91.0,,1.0,,7.0,,,,,,, +NY,New York,202211,Y,U,Y,0.0,,231455.0,,231455.0,,74591.0,,1927.0,,76518.0,,2603383.0,,7363129.0,,6805150.0,,557979.0,,,,231282.0,,74.0,,91.0,,1.0,,7.0,,,,,,, +NY,New York,202212,Y,P,N,0.0,,362048.0,,362048.0,,69636.0,,1789.0,,71425.0,,2606259.0,,7387276.0,,6830579.0,,556697.0,,,,361885.0,,67.0,,75.0,,1.0,,20.0,,,,,,, +NY,New York,202212,Y,U,Y,0.0,,362048.0,,362048.0,,75591.0,,1805.0,,77396.0,,2614913.0,,7408878.0,,6852090.0,,556788.0,,,,361885.0,,67.0,,75.0,,1.0,,20.0,,,,,,, +NY,New York,202301,Y,P,N,0.0,,345811.0,,345811.0,,74456.0,,1900.0,,76356.0,,2616833.0,,7436236.0,,6890371.0,,545865.0,,,,345644.0,,92.0,,39.0,,9.0,,27.0,,,,,,, +NY,New York,202301,Y,U,Y,0.0,,345811.0,,345811.0,,76440.0,,1907.0,,78347.0,,2625916.0,,7454133.0,,6905552.0,,548581.0,,,,345644.0,,92.0,,39.0,,9.0,,27.0,,,,,,, +NY,New York,202302,Y,P,N,0.0,,312291.0,,312291.0,,82466.0,,1494.0,,83960.0,,2618986.0,,7451045.0,,6913364.0,,537681.0,,,,312126.0,,107.0,,43.0,,1.0,,14.0,,,,,,, +NY,New York,202302,Y,U,Y,0.0,,312291.0,,312291.0,,88989.0,,1516.0,,90505.0,,2623832.0,,7470900.0,,6935401.0,,535499.0,,,,312126.0,,107.0,,43.0,,1.0,,14.0,,,,,,, +NY,New York,202303,Y,P,N,0.0,,333592.0,,333592.0,,65749.0,,854.0,,66603.0,,2626243.0,,7491311.0,,6962065.0,,529246.0,,,,333335.0,,101.0,,112.0,,20.0,,24.0,,430410.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,1.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.027,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +NY,New York,202303,Y,U,Y,0.0,,333592.0,,333592.0,,69540.0,,877.0,,70417.0,,2635264.0,,7518061.0,,6988923.0,,529138.0,,,,333335.0,,101.0,,112.0,,20.0,,24.0,,430410.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,1.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.027,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +NY,New York,202304,Y,P,N,0.0,,401199.0,,401199.0,,72897.0,,1475.0,,74372.0,,2633505.0,,7528799.0,,7005914.0,,522885.0,,,,400995.0,,74.0,,97.0,,7.0,,26.0,,413161.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,1.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.042,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +NY,New York,202304,Y,U,Y,0.0,,401199.0,,401199.0,,79118.0,,1482.0,,80600.0,,2639888.0,,7547966.0,,7024976.0,,522990.0,,,,400995.0,,74.0,,97.0,,7.0,,26.0,,413161.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,1.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.042,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +NY,New York,202305,Y,P,N,0.0,,360635.0,,360635.0,,64545.0,,1498.0,,66043.0,,2636015.0,,7555685.0,,7031633.0,,524052.0,,,,360493.0,,62.0,,65.0,,0.0,,15.0,,550256.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,0.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.011,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +NY,New York,202305,Y,U,Y,0.0,,360635.0,,360635.0,,69583.0,,1505.0,,71088.0,,2644250.0,,7578417.0,,7054259.0,,524158.0,,,,360493.0,,62.0,,65.0,,0.0,,15.0,,550256.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,0.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.011,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +NY,New York,202306,Y,P,N,0.0,,419233.0,,419233.0,,71769.0,,1893.0,,73662.0,,2649396.0,,7606430.0,,7080292.0,,526138.0,,,,419029.0,,88.0,,97.0,,6.0,,13.0,,605410.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,0.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.009,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +NY,New York,202306,Y,U,Y,0.0,,419233.0,,419233.0,,76355.0,,1902.0,,78257.0,,2665829.0,,7634352.0,,7098089.0,,536263.0,,,,419029.0,,88.0,,97.0,,6.0,,13.0,,605410.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,0.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.009,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +NY,New York,202307,Y,P,N,0.0,,504732.0,,504732.0,,73315.0,,2890.0,,76205.0,,2639367.0,,7535276.0,,6991319.0,,543957.0,,,,504394.0,,192.0,,47.0,,2.0,,97.0,,613206.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,0.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.014,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +NY,New York,202307,Y,U,Y,0.0,,504732.0,,504732.0,,78878.0,,2914.0,,81792.0,,2659842.0,,7583252.0,,7039076.0,,544176.0,,,,504394.0,,192.0,,47.0,,2.0,,97.0,,613206.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,0.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.014,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +NY,New York,202308,Y,P,N,0.0,,515425.0,,515425.0,,79472.0,,3357.0,,82829.0,,2572593.0,,7392501.0,,6837825.0,,554676.0,,,,515125.0,,230.0,,49.0,,7.0,,14.0,,732752.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,0.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.03,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +NY,New York,202308,Y,U,Y,0.0,,515425.0,,515425.0,,85252.0,,3384.0,,88636.0,,2648563.0,,7497647.0,,6941131.0,,556516.0,,,,515125.0,,230.0,,49.0,,7.0,,14.0,,732752.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,0.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.03,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +NY,New York,202309,Y,P,N,0.0,,649693.0,,649693.0,,95361.0,,3967.0,,99328.0,,2627433.0,,7399384.0,,6835189.0,,564195.0,,,,648885.0,,30.0,,48.0,,316.0,,414.0,,672624.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,1.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.039,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +NY,New York,202309,Y,U,Y,0.0,,649693.0,,649693.0,,96540.0,,3991.0,,100531.0,,2635587.0,,7422063.0,,6857526.0,,564537.0,,,,648885.0,,30.0,,48.0,,316.0,,414.0,,672624.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,1.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.039,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +NY,New York,202310,Y,P,N,0.0,,762069.0,,762069.0,,92458.0,,4544.0,,97002.0,,2620867.0,,7338416.0,,6760066.0,,578350.0,,,,761550.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,435.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,57.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,5.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,22.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,748085.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,1.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.037,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +NY,New York,202310,Y,U,Y,0.0,,762069.0,,762069.0,,100262.0,,4562.0,,104824.0,,2628783.0,,7361242.0,,6782491.0,,578751.0,,,,761550.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,435.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,57.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,5.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,22.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,748085.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,1.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.037,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +NY,New York,202311,Y,P,N,0.0,,663282.0,,663282.0,,101899.0,,4867.0,,106766.0,,2597120.0,,7253721.0,,6667239.0,,586482.0,,,,663005.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,178.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,66.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,6.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,27.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,766193.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,1.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.031,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +NY,New York,202311,Y,U,Y,0.0,,663282.0,,663282.0,,101208.0,,4877.0,,106085.0,,2606293.0,,7280064.0,,6693191.0,,586873.0,,,,663005.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,178.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,66.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,6.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,27.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,766193.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,1.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.031,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +NY,New York,202312,Y,P,N,0.0,,736646.0,,736646.0,,113632.0,,4266.0,,117898.0,,2559876.0,,7135090.0,,6545177.0,,589913.0,,,,736474.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,92.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,54.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,5.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,21.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,765593.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,2.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.05,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +NY,New York,202312,Y,U,Y,0.0,,736646.0,,736646.0,,119239.0,,4297.0,,123536.0,,2574008.0,,7176273.0,,6585728.0,,590545.0,,,,736474.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,92.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,54.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,5.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,21.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,765593.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,2.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.05,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +NY,New York,202401,Y,P,N,0.0,,722698.0,,722698.0,,109831.0,,4307.0,,114138.0,,2540415.0,,7077788.0,,6478756.0,,599032.0,,,,722331.0,Does not include all MAGI determinations on applications,138.0,Does not include all MAGI determinations on applications,156.0,Does not include all MAGI determinations on applications,26.0,Does not include all MAGI determinations on applications,47.0,Does not include all MAGI determinations on applications,861412.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,2.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.1,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +NY,New York,202401,Y,U,Y,0.0,,722698.0,,722698.0,,115755.0,,4352.0,,120107.0,,2553595.0,,7115535.0,,6515957.0,,599578.0,,,,722331.0,Does not include all MAGI determinations on applications,138.0,Does not include all MAGI determinations on applications,156.0,Does not include all MAGI determinations on applications,26.0,Does not include all MAGI determinations on applications,47.0,Does not include all MAGI determinations on applications,861412.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,2.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.1,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +NY,New York,202402,Y,P,N,0.0,,608056.0,,608056.0,,141339.0,,5437.0,,146776.0,,2528273.0,,7021637.0,,6411072.0,,610565.0,,,,607819.0,Does not include all MAGI determinations on applications,79.0,Does not include all MAGI determinations on applications,96.0,Does not include all MAGI determinations on applications,13.0,Does not include all MAGI determinations on applications,49.0,Does not include all MAGI determinations on applications,805261.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,3.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.12,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +NY,New York,202402,Y,U,Y,0.0,,608056.0,,608056.0,,142820.0,,5521.0,,148341.0,,2539423.0,,7053497.0,,6442445.0,,611052.0,,,,607819.0,Does not include all MAGI determinations on applications,79.0,Does not include all MAGI determinations on applications,96.0,Does not include all MAGI determinations on applications,13.0,Does not include all MAGI determinations on applications,49.0,Does not include all MAGI determinations on applications,805261.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,3.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.12,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +NY,New York,202403,Y,P,N,0.0,,701929.0,,701929.0,,121469.0,,4700.0,,126169.0,,2525658.0,,6982296.0,,6360759.0,,621537.0,,,,701716.0,Does not include all MAGI determinations on applications,118.0,Does not include all MAGI determinations on applications,47.0,Does not include all MAGI determinations on applications,18.0,Does not include all MAGI determinations on applications,30.0,Does not include all MAGI determinations on applications,840868.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,5.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.159,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +NY,New York,202403,Y,U,Y,0.0,,701929.0,,701929.0,,120631.0,,4700.0,,125331.0,,2530287.0,,6995455.0,,6373667.0,,621788.0,,,,701716.0,Does not include all MAGI determinations on applications,118.0,Does not include all MAGI determinations on applications,47.0,Does not include all MAGI determinations on applications,18.0,Does not include all MAGI determinations on applications,30.0,Does not include all MAGI determinations on applications,840868.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,5.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.159,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +NY,New York,202404,Y,P,N,0.0,,644078.0,,644078.0,,120864.0,,4862.0,,125726.0,,2502721.0,,6873076.0,,6238799.0,,634277.0,,,,643833.0,Does not include all MAGI determinations on applications,128.0,Does not include all MAGI determinations on applications,56.0,Does not include all MAGI determinations on applications,13.0,Does not include all MAGI determinations on applications,48.0,Does not include all MAGI determinations on applications,788502.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,3.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.14,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +NY,New York,202404,Y,U,Y,0.0,,644078.0,,644078.0,,126639.0,,4930.0,,131569.0,,2510980.0,,6897453.0,,6262790.0,,634663.0,,,,643833.0,Does not include all MAGI determinations on applications,128.0,Does not include all MAGI determinations on applications,56.0,Does not include all MAGI determinations on applications,13.0,Does not include all MAGI determinations on applications,48.0,Does not include all MAGI determinations on applications,788502.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,3.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.14,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +NY,New York,202405,Y,P,N,0.0,,618829.0,,618829.0,,115816.0,,5049.0,,120865.0,,2487830.0,,6788834.0,,6144960.0,,643874.0,,,,618666.0,Does not include all MAGI determinations on applications,94.0,Does not include all MAGI determinations on applications,27.0,Does not include all MAGI determinations on applications,10.0,Does not include all MAGI determinations on applications,32.0,Does not include all MAGI determinations on applications,711732.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,2.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.073,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +NY,New York,202405,Y,U,Y,0.0,,618829.0,,618829.0,,118409.0,,5078.0,,123487.0,,2493108.0,,6804319.0,,6160220.0,,644099.0,,,,618666.0,Does not include all MAGI determinations on applications,94.0,Does not include all MAGI determinations on applications,27.0,Does not include all MAGI determinations on applications,10.0,Does not include all MAGI determinations on applications,32.0,Does not include all MAGI determinations on applications,711732.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,2.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.073,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +NY,New York,202406,Y,P,N,0.0,,532259.0,,532259.0,,115014.0,,4996.0,,120010.0,,2464489.0,,6693044.0,,6042218.0,,650826.0,,,,532096.0,Does not include all MAGI determinations on applications,40.0,Does not include all MAGI determinations on applications,57.0,Does not include all MAGI determinations on applications,7.0,Does not include all MAGI determinations on applications,59.0,Does not include all MAGI determinations on applications,599996.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,2.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.049,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +NY,New York,202406,Y,U,Y,0.0,,532259.0,,532259.0,,120695.0,,5057.0,,125752.0,,2474651.0,,6722355.0,,6071030.0,,651325.0,,,,532096.0,Does not include all MAGI determinations on applications,40.0,Does not include all MAGI determinations on applications,57.0,Does not include all MAGI determinations on applications,7.0,Does not include all MAGI determinations on applications,59.0,Does not include all MAGI determinations on applications,599996.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,2.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.049,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +NY,New York,202407,Y,P,N,0.0,,592266.0,,592266.0,,106944.0,,5049.0,,111993.0,,2462125.0,,6682313.0,,6026269.0,,656044.0,,4220188.0,,592104.0,Does not include all MAGI determinations on applications,111.0,Does not include all MAGI determinations on applications,27.0,Does not include all MAGI determinations on applications,2.0,Does not include all MAGI determinations on applications,22.0,Does not include all MAGI determinations on applications,679449.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,2.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.026,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +NY,New York,202407,Y,U,Y,0.0,,592266.0,,592266.0,,110644.0,,5049.0,,115693.0,,2469976.0,,6705425.0,,6049040.0,,656385.0,,4235449.0,,592104.0,Does not include all MAGI determinations on applications,111.0,Does not include all MAGI determinations on applications,27.0,Does not include all MAGI determinations on applications,2.0,Does not include all MAGI determinations on applications,22.0,Does not include all MAGI determinations on applications,679449.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,2.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.026,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +NY,New York,202408,Y,P,N,0.0,,557528.0,,557528.0,,120102.0,,5299.0,,125401.0,,2461324.0,,6665322.0,,6003311.0,,662011.0,,4203998.0,,557413.0,Does not include all MAGI determinations on applications,61.0,Does not include all MAGI determinations on applications,32.0,Does not include all MAGI determinations on applications,6.0,Does not include all MAGI determinations on applications,16.0,Does not include all MAGI determinations on applications,667802.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,1.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.02,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +NY,New York,202408,Y,U,Y,0.0,,557528.0,,557528.0,,124695.0,,5343.0,,130038.0,,2470180.0,,6692415.0,,6030938.0,,661477.0,,4222235.0,,557413.0,Does not include all MAGI determinations on applications,61.0,Does not include all MAGI determinations on applications,32.0,Does not include all MAGI determinations on applications,6.0,Does not include all MAGI determinations on applications,16.0,Does not include all MAGI determinations on applications,667802.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,1.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.02,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +NY,New York,202409,Y,P,N,0.0,,611145.0,,611145.0,,119058.0,,5863.0,,124921.0,,2459844.0,,6657082.0,,5991490.0,,665592.0,,4197238.0,,611053.0,Does not include all MAGI determinations on applications,54.0,Does not include all MAGI determinations on applications,24.0,Does not include all MAGI determinations on applications,3.0,Does not include all MAGI determinations on applications,11.0,Does not include all MAGI determinations on applications,638254.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,1.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.025,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +NY,New York,202409,Y,U,Y,0.0,,611145.0,,611145.0,,123095.0,,5905.0,,129000.0,,2469813.0,,6685292.0,,6019223.0,,666069.0,,4215479.0,,611053.0,Does not include all MAGI determinations on applications,54.0,Does not include all MAGI determinations on applications,24.0,Does not include all MAGI determinations on applications,3.0,Does not include all MAGI determinations on applications,11.0,Does not include all MAGI determinations on applications,638254.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,1.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.025,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +NY,New York,202410,Y,P,N,0.0,,737710.0,,737710.0,,116204.0,,5866.0,,122070.0,,2461497.0,,6652419.0,,5983032.0,,669387.0,,4190922.0,,737333.0,Does not include all MAGI determinations on applications,213.0,Does not include all MAGI determinations on applications,130.0,Does not include all MAGI determinations on applications,1.0,Does not include all MAGI determinations on applications,33.0,Does not include all MAGI determinations on applications,680288.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,1.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.022,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +NY,New York,202410,Y,U,Y,0.0,,737710.0,,737710.0,,119995.0,,5902.0,,125897.0,,2471519.0,,6680623.0,,6010788.0,,669835.0,,4209104.0,,737333.0,Does not include all MAGI determinations on applications,213.0,Does not include all MAGI determinations on applications,130.0,Does not include all MAGI determinations on applications,1.0,Does not include all MAGI determinations on applications,33.0,Does not include all MAGI determinations on applications,680288.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,1.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.022,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +NY,New York,202411,Y,P,N,0.0,,538586.0,,538586.0,,119520.0,,5870.0,,125390.0,,2442373.0,,6611239.0,,5952946.0,,658293.0,,4168866.0,,538104.0,Does not include all MAGI determinations on applications,208.0,Does not include all MAGI determinations on applications,196.0,Does not include all MAGI determinations on applications,66.0,Does not include all MAGI determinations on applications,12.0,Does not include all MAGI determinations on applications,641169.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,1.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.02,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +NY,New York,202411,Y,U,Y,0.0,,538586.0,,538586.0,,124592.0,,5911.0,,130503.0,,2454245.0,,6644821.0,,5985977.0,,658844.0,,4190576.0,,538104.0,Does not include all MAGI determinations on applications,208.0,Does not include all MAGI determinations on applications,196.0,Does not include all MAGI determinations on applications,66.0,Does not include all MAGI determinations on applications,12.0,Does not include all MAGI determinations on applications,641169.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,1.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.02,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +NY,New York,202412,Y,P,N,0.0,,604300.0,,604300.0,,108596.0,,5389.0,,113985.0,,2456980.0,,6622115.0,,5946806.0,,675309.0,,4165135.0,,604100.0,Does not include all MAGI determinations on applications,95.0,Does not include all MAGI determinations on applications,70.0,Does not include all MAGI determinations on applications,9.0,Does not include all MAGI determinations on applications,26.0,Does not include all MAGI determinations on applications,696813.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,1.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.009,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +NY,New York,202412,Y,U,Y,0.0,,604300.0,,604300.0,,111706.0,,5415.0,,117121.0,,2467265.0,,6650700.0,,5974991.0,,675709.0,,4183435.0,,604100.0,Does not include all MAGI determinations on applications,95.0,Does not include all MAGI determinations on applications,70.0,Does not include all MAGI determinations on applications,9.0,Does not include all MAGI determinations on applications,26.0,Does not include all MAGI determinations on applications,696813.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,1.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.009,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +NY,New York,202501,Y,P,N,0.0,,629464.0,,629464.0,,117179.0,,5322.0,,122501.0,,2454528.0,,6592478.0,,5915333.0,,677145.0,,4137950.0,,628898.0,Does not include all MAGI determinations on applications,172.0,Does not include all MAGI determinations on applications,304.0,Does not include all MAGI determinations on applications,50.0,Does not include all MAGI determinations on applications,40.0,Does not include all MAGI determinations on applications,753143.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,1.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.01,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +NY,New York,202501,Y,U,Y,0.0,,629464.0,,629464.0,,120673.0,,5349.0,,126022.0,,2465454.0,,6623067.0,,5945383.0,,677684.0,,4157613.0,,628898.0,Does not include all MAGI determinations on applications,172.0,Does not include all MAGI determinations on applications,304.0,Does not include all MAGI determinations on applications,50.0,Does not include all MAGI determinations on applications,40.0,Does not include all MAGI determinations on applications,753143.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,1.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.01,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +NY,New York,202502,Y,P,N,0.0,,564408.0,,564408.0,,131650.0,,6304.0,,137954.0,,2454248.0,,6569883.0,,5889489.0,,680394.0,,4115635.0,,564241.0,Does not include all MAGI determinations on applications,66.0,Does not include all MAGI determinations on applications,3.0,Does not include all MAGI determinations on applications,25.0,Does not include all MAGI determinations on applications,73.0,Does not include all MAGI determinations on applications,617314.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,2.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.009,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +NY,New York,202502,Y,U,Y,0.0,,564408.0,,564408.0,,141052.0,,6404.0,,147456.0,,2469107.0,,6611694.0,,5930375.0,,681319.0,,4142587.0,,564241.0,Does not include all MAGI determinations on applications,66.0,Does not include all MAGI determinations on applications,3.0,Does not include all MAGI determinations on applications,25.0,Does not include all MAGI determinations on applications,73.0,Does not include all MAGI determinations on applications,617314.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,2.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.009,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +NY,New York,202503,Y,P,N,0.0,,585969.0,,585969.0,,100169.0,,5561.0,,105730.0,,2461410.0,,6585835.0,,5905752.0,,680083.0,,4124425.0,,585565.0,Does not include all MAGI determinations on applications,131.0,Does not include all MAGI determinations on applications,155.0,Does not include all MAGI determinations on applications,43.0,Does not include all MAGI determinations on applications,75.0,Does not include all MAGI determinations on applications,650382.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,1.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.013,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +NY,New York,202503,Y,U,Y,0.0,,585969.0,,585969.0,,108302.0,,5663.0,,113965.0,,2469905.0,,6610162.0,,5929535.0,,680627.0,,4140257.0,,585565.0,Does not include all MAGI determinations on applications,131.0,Does not include all MAGI determinations on applications,155.0,Does not include all MAGI determinations on applications,43.0,Does not include all MAGI determinations on applications,75.0,Does not include all MAGI determinations on applications,650382.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,1.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.013,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +NY,New York,202504,Y,P,N,0.0,,548624.0,,548624.0,,110237.0,,5189.0,,115426.0,,2465746.0,,6588094.0,,5907684.0,,680410.0,,4122348.0,,548390.0,Does not include all MAGI determinations on applications,80.0,Does not include all MAGI determinations on applications,113.0,Does not include all MAGI determinations on applications,6.0,Does not include all MAGI determinations on applications,35.0,Does not include all MAGI determinations on applications,606914.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,2.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.011,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +NY,New York,202504,Y,U,Y,0.0,,548624.0,,548624.0,,115422.0,,5250.0,,120672.0,,2475382.0,,6616210.0,,5935321.0,,680889.0,,4140828.0,,548390.0,Does not include all MAGI determinations on applications,80.0,Does not include all MAGI determinations on applications,113.0,Does not include all MAGI determinations on applications,6.0,Does not include all MAGI determinations on applications,35.0,Does not include all MAGI determinations on applications,606914.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,2.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.011,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +NY,New York,202505,Y,P,N,0.0,,508056.0,,508056.0,,109327.0,,5936.0,,115263.0,,2464155.0,,6585483.0,,5906995.0,,678488.0,,4121328.0,,507909.0,Does not include all MAGI determinations on applications,40.0,Does not include all MAGI determinations on applications,61.0,Does not include all MAGI determinations on applications,3.0,Does not include all MAGI determinations on applications,43.0,Does not include all MAGI determinations on applications,565870.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,0.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.008,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +NY,New York,202505,Y,U,Y,0.0,,508056.0,,508056.0,,112121.0,,5990.0,,118111.0,,2471461.0,,6606942.0,,5928101.0,,678841.0,,4135481.0,,507909.0,Does not include all MAGI determinations on applications,40.0,Does not include all MAGI determinations on applications,61.0,Does not include all MAGI determinations on applications,3.0,Does not include all MAGI determinations on applications,43.0,Does not include all MAGI determinations on applications,565870.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,0.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.008,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +NY,New York,202506,Y,P,N,0.0,,502320.0,,502320.0,,100774.0,,5216.0,,105990.0,,2463410.0,,6566498.0,,5888285.0,,678213.0,,4103088.0,,502007.0,Does not include all MAGI determinations on applications,47.0,Does not include all MAGI determinations on applications,89.0,Does not include all MAGI determinations on applications,39.0,Does not include all MAGI determinations on applications,138.0,Does not include all MAGI determinations on applications,570550.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,1.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.02,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +NY,New York,202506,Y,U,Y,0.0,,502320.0,,502320.0,,103006.0,,5227.0,,108233.0,,2471304.0,,6591502.0,,5912933.0,,678569.0,,4120198.0,,502007.0,Does not include all MAGI determinations on applications,47.0,Does not include all MAGI determinations on applications,89.0,Does not include all MAGI determinations on applications,39.0,Does not include all MAGI determinations on applications,138.0,Does not include all MAGI determinations on applications,570550.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,1.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.02,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +NY,New York,202507,Y,P,N,0.0,,532762.0,,532762.0,,95194.0,,5190.0,,100384.0,,2461016.0,,6551887.0,,5875131.0,,676756.0,,4090871.0,,532686.0,Does not include all MAGI determinations on applications,29.0,Does not include all MAGI determinations on applications,18.0,Does not include all MAGI determinations on applications,5.0,Does not include all MAGI determinations on applications,24.0,Does not include all MAGI determinations on applications,613277.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,1.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.014,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +NY,New York,202507,Y,U,Y,0.0,,532762.0,,532762.0,,97649.0,,5221.0,,102870.0,,2461016.0,,6551887.0,,5875131.0,,676756.0,,4090871.0,,532686.0,Does not include all MAGI determinations on applications,29.0,Does not include all MAGI determinations on applications,18.0,Does not include all MAGI determinations on applications,5.0,Does not include all MAGI determinations on applications,24.0,Does not include all MAGI determinations on applications,613277.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,1.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.014,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +NY,New York,202508,Y,P,N,0.0,,500480.0,,500480.0,,100362.0,,5245.0,,105607.0,,2455349.0,,6522114.0,,5847643.0,,674471.0,,4066765.0,,500313.0,Does not include all MAGI determinations on applications,114.0,Does not include all MAGI determinations on applications,38.0,Does not include all MAGI determinations on applications,6.0,Does not include all MAGI determinations on applications,9.0,Does not include all MAGI determinations on applications,566891.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,0.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.009,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +NY,New York,202508,Y,U,Y,0.0,,500480.0,,500480.0,,104169.0,,5292.0,,109461.0,,2466810.0,,6558504.0,,5883536.0,,674968.0,,4091694.0,,500313.0,Does not include all MAGI determinations on applications,114.0,Does not include all MAGI determinations on applications,38.0,Does not include all MAGI determinations on applications,6.0,Does not include all MAGI determinations on applications,9.0,Does not include all MAGI determinations on applications,566891.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,0.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.009,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +NY,New York,202509,Y,P,N,0.0,,546713.0,,546713.0,,98053.0,,5721.0,,103774.0,,2458806.0,,6516933.0,,5844680.0,,672253.0,,4058127.0,,546588.0,Does not include all MAGI determinations on applications,35.0,Does not include all MAGI determinations on applications,32.0,Does not include all MAGI determinations on applications,4.0,Does not include all MAGI determinations on applications,54.0,Does not include all MAGI determinations on applications,616527.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,1.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.03,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +NY,New York,202509,Y,U,Y,0.0,,546713.0,,546713.0,,100486.0,,5733.0,,106219.0,,2468914.0,,6545793.0,,5873147.0,,672646.0,,4076879.0,,546588.0,Does not include all MAGI determinations on applications,35.0,Does not include all MAGI determinations on applications,32.0,Does not include all MAGI determinations on applications,4.0,Does not include all MAGI determinations on applications,54.0,Does not include all MAGI determinations on applications,616527.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,1.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.03,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +NY,New York,202510,Y,P,N,0.0,,547448.0,,547448.0,,100003.0,,5585.0,,105588.0,,2462008.0,,6504286.0,,5833918.0,,670368.0,,4042278.0,,547338.0,Does not include all MAGI determinations on applications,47.0,Does not include all MAGI determinations on applications,39.0,Does not include all MAGI determinations on applications,5.0,Does not include all MAGI determinations on applications,19.0,Does not include all MAGI determinations on applications,649645.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,1.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.048,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +OH,Ohio,201309,N,U,Y,,,,,,,,,,,,,,,2130322.0,,,,,,,,,,,,,,,,,,,,,,, +OH,Ohio,201706,Y,P,N,52859.0,Includes Renewals and/or Redeterminations,0.0,,52859.0,Includes Renewals and/or Redeterminations,45289.0,Includes CHIP; Includes Renewals and/or Redeterminations,2796.0,,48085.0,Includes Renewals and/or Redeterminations,1257365.0,,2910222.0,,2697294.0,,212928.0,,,,,,,,,,,,,,,,,,, +OH,Ohio,201706,Y,U,Y,52859.0,Includes Renewals and/or Redeterminations,0.0,,52859.0,Includes Renewals and/or Redeterminations,45289.0,Includes CHIP; Includes Renewals and/or Redeterminations,2796.0,,48085.0,Includes Renewals and/or Redeterminations,1257365.0,,2910222.0,,2697294.0,,212928.0,,,,,,,,,,,,,,,,,,, +OH,Ohio,201707,Y,P,N,50562.0,,0.0,,50562.0,,40242.0,,2359.0,,42601.0,,1243251.0,,2881568.0,,2669793.0,,211775.0,,,,,,,,,,,,,,,,,,, +OH,Ohio,201707,Y,U,Y,50562.0,Includes Renewals and/or Redeterminations,0.0,,50562.0,Includes Renewals and/or Redeterminations,40242.0,Includes CHIP; Includes Renewals and/or Redeterminations,2359.0,,42601.0,Includes Renewals and/or Redeterminations,1243251.0,,2881568.0,,2669793.0,,211775.0,,,,,,,,,,,,,,,,,,, +OH,Ohio,201708,Y,P,N,60709.0,,0.0,,60709.0,,51904.0,,3552.0,,55456.0,,1240190.0,,2876683.0,,2664638.0,,212045.0,,,,,,,,,,,,,,,,,,, +OH,Ohio,201708,Y,U,Y,60709.0,Includes Renewals and/or Redeterminations,0.0,,60709.0,Includes Renewals and/or Redeterminations,51904.0,Includes CHIP; Includes Renewals and/or Redeterminations,3552.0,,55456.0,Includes Renewals and/or Redeterminations,1240190.0,,2876683.0,,2664638.0,,212045.0,,,,,,,,,,,,,,,,,,, +OH,Ohio,201709,Y,P,N,51060.0,,0.0,,51060.0,,48520.0,,2939.0,,51459.0,,1232743.0,,2857339.0,,2643589.0,,213750.0,,,,,,,,,,,,,,,,,,, +OH,Ohio,201709,Y,U,Y,51060.0,Includes Renewals and/or Redeterminations,0.0,,51060.0,Includes Renewals and/or Redeterminations,48520.0,Includes CHIP; Includes Renewals and/or Redeterminations,2939.0,,51459.0,Includes Renewals and/or Redeterminations,1232743.0,,2857339.0,,2643589.0,,213750.0,,,,,,,,,,,,,,,,,,, +OH,Ohio,201710,Y,P,N,72454.0,Includes Renewals and/or Redeterminations,0.0,,72454.0,Includes Renewals and/or Redeterminations,44658.0,Includes CHIP; Includes Renewals and/or Redeterminations,2825.0,,47483.0,Includes Renewals and/or Redeterminations,1227113.0,,2838173.0,,2622940.0,,215233.0,,,,,,,,,,,,,,,,,,, +OH,Ohio,201710,Y,U,Y,72454.0,,0.0,,72454.0,,44658.0,,2825.0,,47483.0,,1227113.0,,2838173.0,,2622940.0,,215233.0,,,,,,,,,,,,,,,,,,, +OH,Ohio,201711,Y,P,N,75116.0,Includes Renewals and/or Redeterminations,0.0,,75116.0,Includes Renewals and/or Redeterminations,44647.0,Includes CHIP; Includes Renewals and/or Redeterminations,2804.0,,47451.0,Includes Renewals and/or Redeterminations,1221471.0,,2820606.0,,2605277.0,,215329.0,,,,,,,,,,,,,,,,,,, +OH,Ohio,201711,Y,U,Y,75116.0,Includes Renewals and/or Redeterminations,0.0,,75116.0,Includes Renewals and/or Redeterminations,44647.0,Includes CHIP; Includes Renewals and/or Redeterminations,2804.0,,47451.0,Includes Renewals and/or Redeterminations,1221471.0,,2820606.0,,2605277.0,,215329.0,,,,,,,,,,,,,,,,,,, +OH,Ohio,201712,Y,P,N,69697.0,Includes Renewals and/or Redeterminations,0.0,,69697.0,Includes Renewals and/or Redeterminations,40995.0,Includes CHIP; Includes Renewals and/or Redeterminations,2595.0,,43590.0,Includes Renewals and/or Redeterminations,1217522.0,,2810412.0,,2594886.0,,215526.0,,,,,,,,,,,,,,,,,,, +OH,Ohio,201712,Y,U,Y,69697.0,Includes Renewals and/or Redeterminations,0.0,,69697.0,Includes Renewals and/or Redeterminations,40995.0,Includes CHIP; Includes Renewals and/or Redeterminations,2595.0,,43590.0,Includes Renewals and/or Redeterminations,1217522.0,,2810412.0,,2594886.0,,215526.0,,,,,,,,,,,,,,,,,,, +OH,Ohio,201801,Y,P,N,74779.0,,0.0,,74779.0,,49461.0,,2932.0,,52393.0,,1215885.0,,2798257.0,,2582061.0,,216196.0,,,,,,,,,,,,,,,,,,, +OH,Ohio,201801,Y,U,Y,74779.0,,0.0,,74779.0,,49461.0,,2932.0,,52393.0,,1215885.0,,2798257.0,,2582061.0,,216196.0,,,,,,,,,,,,,,,,,,, +OH,Ohio,201802,Y,P,N,61456.0,Includes Renewals and/or Redeterminations,0.0,,61456.0,Includes Renewals and/or Redeterminations,42590.0,Includes CHIP; Includes Renewals and/or Redeterminations,2579.0,,45169.0,Includes Renewals and/or Redeterminations,1217348.0,,2796018.0,,2578480.0,,217538.0,,,,4947.0,,6447.0,,12508.0,,3098.0,,9264.0,,,,,,, +OH,Ohio,201802,Y,U,Y,61456.0,Includes Renewals and/or Redeterminations,0.0,,61456.0,Includes Renewals and/or Redeterminations,42590.0,Includes CHIP; Includes Renewals and/or Redeterminations,2579.0,,45169.0,Includes Renewals and/or Redeterminations,1217348.0,,2796018.0,,2578480.0,,217538.0,,,,4947.0,,6447.0,,12508.0,,3098.0,,9264.0,,,,,,, +OH,Ohio,201803,Y,P,N,70858.0,Includes Renewals and/or Redeterminations,0.0,,70858.0,Includes Renewals and/or Redeterminations,46233.0,Includes CHIP; Includes Renewals and/or Redeterminations,2765.0,,48998.0,Includes Renewals and/or Redeterminations,1217323.0,,2787955.0,,2570328.0,,217627.0,,,,2398.0,,2497.0,,4991.0,,1890.0,,4724.0,,,,,,, +OH,Ohio,201803,Y,U,Y,70858.0,Includes Renewals and/or Redeterminations,0.0,,70858.0,Includes Renewals and/or Redeterminations,46233.0,Includes CHIP; Includes Renewals and/or Redeterminations,2765.0,,48998.0,Includes Renewals and/or Redeterminations,1217323.0,,2787955.0,,2570328.0,,217627.0,,,,2398.0,,2497.0,,4991.0,,1890.0,,4724.0,,,,,,, +OH,Ohio,201804,Y,P,N,78684.0,Includes Renewals and/or Redeterminations,0.0,,78684.0,Includes Renewals and/or Redeterminations,46793.0,Includes CHIP; Includes Renewals and/or Redeterminations,2707.0,,49500.0,Includes Renewals and/or Redeterminations,1215145.0,,2775514.0,,2557955.0,,217559.0,,,,2154.0,,2682.0,,5139.0,,2085.0,,4468.0,,,,,,, +OH,Ohio,201804,Y,U,Y,78684.0,Includes Renewals and/or Redeterminations,0.0,,78684.0,Includes Renewals and/or Redeterminations,46793.0,Includes CHIP; Includes Renewals and/or Redeterminations,2707.0,,49500.0,Includes Renewals and/or Redeterminations,1215145.0,,2775514.0,,2557955.0,,217559.0,,,,2154.0,,2682.0,,5139.0,,2085.0,,4468.0,,,,,,, +OH,Ohio,201805,Y,P,N,61111.0,Includes Renewals and/or Redeterminations,0.0,,61111.0,Includes Renewals and/or Redeterminations,47816.0,Includes CHIP; Includes Renewals and/or Redeterminations,2871.0,,50687.0,Includes Renewals and/or Redeterminations,1214221.0,,2768392.0,,2550361.0,,218031.0,,,,,,,,,,,,,,,,,,, +OH,Ohio,201805,Y,U,Y,61111.0,Includes Renewals and/or Redeterminations,0.0,,61111.0,Includes Renewals and/or Redeterminations,47816.0,Includes CHIP; Includes Renewals and/or Redeterminations,2871.0,,50687.0,Includes Renewals and/or Redeterminations,1214221.0,,2768392.0,,2550361.0,,218031.0,,,,,,,,,,,,,,,,,,, +OH,Ohio,201806,Y,P,N,52513.0,Includes Renewals and/or Redeterminations,0.0,,52513.0,Includes Renewals and/or Redeterminations,45577.0,Includes CHIP; Includes Renewals and/or Redeterminations,2552.0,,48129.0,Includes Renewals and/or Redeterminations,1206485.0,,2742460.0,,2523395.0,,219065.0,,,,,,,,,,,,,,,,,,, +OH,Ohio,201806,Y,U,Y,52513.0,Includes Renewals and/or Redeterminations,0.0,,52513.0,Includes Renewals and/or Redeterminations,45577.0,Includes CHIP; Includes Renewals and/or Redeterminations,2552.0,,48129.0,Includes Renewals and/or Redeterminations,1206485.0,,2742460.0,,2523395.0,,219065.0,,,,,,,,,,,,,,,,,,, +OH,Ohio,201807,Y,P,N,58502.0,Includes Renewals and/or Redeterminations,0.0,,58502.0,Includes Renewals and/or Redeterminations,46417.0,Includes CHIP; Includes Renewals and/or Redeterminations,2375.0,,48792.0,Includes Renewals and/or Redeterminations,1204381.0,,2727615.0,,2507920.0,,219695.0,,,,,,,,,,,,,,,,,,, +OH,Ohio,201807,Y,U,Y,58502.0,Includes Renewals and/or Redeterminations,0.0,,58502.0,Includes Renewals and/or Redeterminations,46417.0,Includes CHIP; Includes Renewals and/or Redeterminations,2375.0,,48792.0,Includes Renewals and/or Redeterminations,1204381.0,,2727615.0,,2507920.0,,219695.0,,,,,,,,,,,,,,,,,,, +OH,Ohio,201808,Y,P,N,60849.0,Includes Renewals and/or Redeterminations,0.0,,60849.0,Includes Renewals and/or Redeterminations,47382.0,Includes CHIP; Includes Renewals and/or Redeterminations,2652.0,,50034.0,Includes Renewals and/or Redeterminations,1203200.0,,2717014.0,,2497173.0,,219841.0,,,,,,,,,,,,,,,,,,, +OH,Ohio,201808,Y,U,Y,60849.0,Includes Renewals and/or Redeterminations,0.0,,60849.0,Includes Renewals and/or Redeterminations,47382.0,Includes CHIP; Includes Renewals and/or Redeterminations,2652.0,,50034.0,Includes Renewals and/or Redeterminations,1203200.0,,2717014.0,,2497173.0,,219841.0,,,,,,,,,,,,,,,,,,, +OH,Ohio,201809,Y,P,N,61557.0,Includes Renewals and/or Redeterminations,0.0,,61557.0,Includes Renewals and/or Redeterminations,50428.0,Includes CHIP; Includes Renewals and/or Redeterminations,2720.0,,53148.0,Includes Renewals and/or Redeterminations,1203332.0,,2712441.0,,2492422.0,,220019.0,,,,,,,,,,,,,,,,,,, +OH,Ohio,201809,Y,U,Y,61557.0,Includes Renewals and/or Redeterminations,0.0,,61557.0,Includes Renewals and/or Redeterminations,50428.0,Includes CHIP; Includes Renewals and/or Redeterminations,2720.0,,53148.0,Includes Renewals and/or Redeterminations,1203332.0,,2712441.0,,2492422.0,,220019.0,,,,,,,,,,,,,,,,,,, +OH,Ohio,201810,Y,P,N,74112.0,Includes Renewals and/or Redeterminations,0.0,,74112.0,Includes Renewals and/or Redeterminations,64232.0,Includes CHIP; Includes Renewals and/or Redeterminations,3598.0,,67830.0,Includes Renewals and/or Redeterminations,1194879.0,,2700034.0,,2483182.0,,216852.0,,,,,,,,,,,,,,,,,,, +OH,Ohio,201810,Y,U,Y,74112.0,Includes Renewals and/or Redeterminations,0.0,,74112.0,Includes Renewals and/or Redeterminations,64232.0,Includes CHIP; Includes Renewals and/or Redeterminations,3598.0,,67830.0,Includes Renewals and/or Redeterminations,1194879.0,,2700034.0,,2483182.0,,216852.0,,,,,,,,,,,,,,,,,,, +OH,Ohio,201811,Y,P,N,67290.0,Includes Renewals and/or Redeterminations,0.0,,67290.0,Includes Renewals and/or Redeterminations,50497.0,Includes CHIP; Includes Renewals and/or Redeterminations,2896.0,,53393.0,Includes Renewals and/or Redeterminations,1184898.0,,2678997.0,,2465896.0,,213101.0,,,,,,,,,,,,,,,,,,, +OH,Ohio,201811,Y,U,Y,67290.0,Includes Renewals and/or Redeterminations,0.0,,67290.0,Includes Renewals and/or Redeterminations,50497.0,Includes CHIP; Includes Renewals and/or Redeterminations,2896.0,,53393.0,Includes Renewals and/or Redeterminations,1184898.0,,2678997.0,,2465896.0,,213101.0,,,,,,,,,,,,,,,,,,, +OH,Ohio,201812,Y,P,N,62160.0,Includes Renewals and/or Redeterminations,0.0,,62160.0,Includes Renewals and/or Redeterminations,47392.0,Includes CHIP; Includes Renewals and/or Redeterminations,2582.0,,49974.0,Includes Renewals and/or Redeterminations,1176394.0,,2650773.0,,2440341.0,,210432.0,,,,,,,,,,,,,,,,,,, +OH,Ohio,201812,Y,U,Y,62160.0,Includes Renewals and/or Redeterminations,0.0,,62160.0,Includes Renewals and/or Redeterminations,47392.0,Includes CHIP; Includes Renewals and/or Redeterminations,2582.0,,49974.0,Includes Renewals and/or Redeterminations,1176394.0,,2650773.0,,2440341.0,,210432.0,,,,,,,,,,,,,,,,,,, +OH,Ohio,201901,Y,P,N,73453.0,Includes Renewals and/or Redeterminations,0.0,,73453.0,Includes Renewals and/or Redeterminations,59212.0,Includes CHIP; Includes Renewals and/or Redeterminations,3316.0,,62528.0,Includes Renewals and/or Redeterminations,1181717.0,,2650556.0,,2444359.0,,206197.0,,,,,,,,,,,,,,,,,,, +OH,Ohio,201901,Y,U,Y,73453.0,Includes Renewals and/or Redeterminations,0.0,,73453.0,Includes Renewals and/or Redeterminations,59212.0,Includes CHIP; Includes Renewals and/or Redeterminations,3316.0,,62528.0,Includes Renewals and/or Redeterminations,1181717.0,,2650556.0,,2444359.0,,206197.0,,,,,,,,,,,,,,,,,,, +OH,Ohio,201902,Y,P,N,65426.0,Includes Renewals and/or Redeterminations,0.0,,65426.0,Includes Renewals and/or Redeterminations,53090.0,Includes CHIP; Includes Renewals and/or Redeterminations,2901.0,,55991.0,Includes Renewals and/or Redeterminations,1181831.0,,2649262.0,,2443598.0,,205664.0,,,,3106.0,,2759.0,,5853.0,,1604.0,,3364.0,,,,,,, +OH,Ohio,201902,Y,U,Y,65426.0,Includes Renewals and/or Redeterminations,0.0,,65426.0,Includes Renewals and/or Redeterminations,53090.0,Includes CHIP; Includes Renewals and/or Redeterminations,2901.0,,55991.0,Includes Renewals and/or Redeterminations,1181831.0,,2649262.0,,2443598.0,,205664.0,,,,3106.0,,2759.0,,5853.0,,1604.0,,3364.0,,,,,,, +OH,Ohio,201903,Y,P,N,70905.0,Includes Renewals and/or Redeterminations,0.0,,70905.0,Includes Renewals and/or Redeterminations,59595.0,Includes CHIP; Includes Renewals and/or Redeterminations,3082.0,,62677.0,Includes Renewals and/or Redeterminations,1182554.0,,2650993.0,,2446448.0,,204545.0,,,,3426.0,,3162.0,,7073.0,,1806.0,,3638.0,,,,,,, +OH,Ohio,201903,Y,U,Y,70905.0,Includes Renewals and/or Redeterminations,0.0,,70905.0,Includes Renewals and/or Redeterminations,59595.0,Includes CHIP; Includes Renewals and/or Redeterminations,3082.0,,62677.0,Includes Renewals and/or Redeterminations,1182554.0,,2650993.0,,2446448.0,,204545.0,,,,3426.0,,3162.0,,7073.0,,1806.0,,3638.0,,,,,,, +OH,Ohio,201904,Y,P,N,75676.0,Includes Renewals and/or Redeterminations,0.0,,75676.0,Includes Renewals and/or Redeterminations,63089.0,Includes CHIP; Includes Renewals and/or Redeterminations,3481.0,,66570.0,Includes Renewals and/or Redeterminations,1182853.0,,2653809.0,,2451023.0,,202786.0,,,,3548.0,,3566.0,,7908.0,,1882.0,,2953.0,,,,,,, +OH,Ohio,201904,Y,U,Y,75676.0,Includes Renewals and/or Redeterminations,0.0,,75676.0,Includes Renewals and/or Redeterminations,63089.0,Includes CHIP; Includes Renewals and/or Redeterminations,3481.0,,66570.0,Includes Renewals and/or Redeterminations,1182853.0,,2653809.0,,2451023.0,,202786.0,,,,3548.0,,3566.0,,7908.0,,1882.0,,2953.0,,,,,,, +OH,Ohio,201905,Y,P,N,71825.0,Includes Renewals and/or Redeterminations,0.0,,71825.0,Includes Renewals and/or Redeterminations,61003.0,Includes CHIP; Includes Renewals and/or Redeterminations,3108.0,,64111.0,Includes Renewals and/or Redeterminations,1182769.0,,2657633.0,,2456295.0,,201338.0,,,,,,,,,,,,,,,,,,, +OH,Ohio,201905,Y,U,Y,71825.0,Includes Renewals and/or Redeterminations,0.0,,71825.0,Includes Renewals and/or Redeterminations,61003.0,Includes CHIP; Includes Renewals and/or Redeterminations,3108.0,,64111.0,Includes Renewals and/or Redeterminations,1182769.0,,2657633.0,,2456295.0,,201338.0,,,,,,,,,,,,,,,,,,, +OH,Ohio,201906,Y,P,N,67504.0,Includes Renewals and/or Redeterminations,0.0,,67504.0,Includes Renewals and/or Redeterminations,57223.0,Includes CHIP; Includes Renewals and/or Redeterminations,2911.0,,60134.0,Includes Renewals and/or Redeterminations,1177457.0,,2647530.0,,2448294.0,,199236.0,,,,,,,,,,,,,,,,,,, +OH,Ohio,201906,Y,U,Y,67504.0,Includes Renewals and/or Redeterminations,0.0,,67504.0,Includes Renewals and/or Redeterminations,57223.0,Includes CHIP; Includes Renewals and/or Redeterminations,2911.0,,60134.0,Includes Renewals and/or Redeterminations,1177457.0,,2647530.0,,2448294.0,,199236.0,,,,,,,,,,,,,,,,,,, +OH,Ohio,201907,Y,P,N,74745.0,Includes Renewals and/or Redeterminations,0.0,,74745.0,Includes Renewals and/or Redeterminations,58921.0,Includes CHIP; Includes Renewals and/or Redeterminations,3124.0,,62045.0,Includes Renewals and/or Redeterminations,1174311.0,,2642614.0,,2445095.0,,197519.0,,,,,,,,,,,,,,,,,,, +OH,Ohio,201907,Y,U,Y,74745.0,Includes Renewals and/or Redeterminations,0.0,,74745.0,Includes Renewals and/or Redeterminations,58921.0,Includes CHIP; Includes Renewals and/or Redeterminations,3124.0,,62045.0,Includes Renewals and/or Redeterminations,1174311.0,,2642614.0,,2445095.0,,197519.0,,,,,,,,,,,,,,,,,,, +OH,Ohio,201908,Y,P,N,72406.0,Includes Renewals and/or Redeterminations,0.0,,72406.0,Includes Renewals and/or Redeterminations,59085.0,Includes CHIP; Includes Renewals and/or Redeterminations,3343.0,,62428.0,Includes Renewals and/or Redeterminations,1171105.0,,2635260.0,,2438662.0,,196598.0,,,,,,,,,,,,,,,,,,, +OH,Ohio,201908,Y,U,Y,72406.0,Includes Renewals and/or Redeterminations,0.0,,72406.0,Includes Renewals and/or Redeterminations,59085.0,Includes CHIP; Includes Renewals and/or Redeterminations,3343.0,,62428.0,Includes Renewals and/or Redeterminations,1171105.0,,2635260.0,,2438662.0,,196598.0,,,,,,,,,,,,,,,,,,, +OH,Ohio,201909,Y,P,N,68468.0,Includes Renewals and/or Redeterminations,0.0,,68468.0,Includes Renewals and/or Redeterminations,55529.0,Includes CHIP; Includes Renewals and/or Redeterminations,3108.0,,58637.0,Includes Renewals and/or Redeterminations,1170087.0,,2633478.0,,2436520.0,,196958.0,,,,,,,,,,,,,,,,,,, +OH,Ohio,201909,Y,U,Y,68468.0,Includes Renewals and/or Redeterminations,0.0,,68468.0,Includes Renewals and/or Redeterminations,55529.0,Includes CHIP; Includes Renewals and/or Redeterminations,3108.0,,58637.0,Includes Renewals and/or Redeterminations,1170087.0,,2633478.0,,2436520.0,,196958.0,,,,,,,,,,,,,,,,,,, +OH,Ohio,201910,Y,P,N,75449.0,Includes Renewals and/or Redeterminations,0.0,,75449.0,Includes Renewals and/or Redeterminations,61016.0,Includes CHIP; Includes Renewals and/or Redeterminations,3590.0,,64606.0,Includes Renewals and/or Redeterminations,1174952.0,,2643620.0,,2444848.0,,198772.0,,,,,,,,,,,,,,,,,,, +OH,Ohio,201910,Y,U,Y,75449.0,Includes Renewals and/or Redeterminations,0.0,,75449.0,Includes Renewals and/or Redeterminations,61016.0,Includes CHIP; Includes Renewals and/or Redeterminations,3590.0,,64606.0,Includes Renewals and/or Redeterminations,1174952.0,,2643620.0,,2444848.0,,198772.0,,,,,,,,,,,,,,,,,,, +OH,Ohio,201911,Y,P,N,64540.0,Includes Renewals and/or Redeterminations,0.0,,64540.0,Includes Renewals and/or Redeterminations,49339.0,Includes CHIP; Includes Renewals and/or Redeterminations,2983.0,,52322.0,Includes Renewals and/or Redeterminations,1161056.0,,2617148.0,,2419529.0,,197619.0,,,,,,,,,,,,,,,,,,, +OH,Ohio,201911,Y,U,Y,64540.0,Includes Renewals and/or Redeterminations,0.0,,64540.0,Includes Renewals and/or Redeterminations,49339.0,Includes CHIP; Includes Renewals and/or Redeterminations,2983.0,,52322.0,Includes Renewals and/or Redeterminations,1161056.0,,2617148.0,,2419529.0,,197619.0,,,,,,,,,,,,,,,,,,, +OH,Ohio,201912,Y,P,N,65952.0,Includes Renewals and/or Redeterminations,0.0,,65952.0,Includes Renewals and/or Redeterminations,50724.0,Includes CHIP; Includes Renewals and/or Redeterminations,2976.0,,53700.0,Includes Renewals and/or Redeterminations,1158803.0,,2609614.0,,2411873.0,,197741.0,,,,,,,,,,,,,,,,,,, +OH,Ohio,201912,Y,U,Y,65952.0,Includes Renewals and/or Redeterminations,0.0,,65952.0,Includes Renewals and/or Redeterminations,50724.0,Includes CHIP; Includes Renewals and/or Redeterminations,2976.0,,53700.0,Includes Renewals and/or Redeterminations,1158803.0,,2609614.0,,2411873.0,,197741.0,,,,,,,,,,,,,,,,,,, +OH,Ohio,202001,Y,P,N,78989.0,Includes Renewals and/or Redeterminations,0.0,,78989.0,Includes Renewals and/or Redeterminations,56725.0,Includes CHIP; Includes Renewals and/or Redeterminations,3322.0,,60047.0,Includes Renewals and/or Redeterminations,1161552.0,,2612947.0,,2414005.0,,198942.0,,,,,,,,,,,,,,,,,,, +OH,Ohio,202001,Y,U,Y,78989.0,Includes Renewals and/or Redeterminations,0.0,,78989.0,Includes Renewals and/or Redeterminations,56725.0,Includes CHIP; Includes Renewals and/or Redeterminations,3322.0,,60047.0,Includes Renewals and/or Redeterminations,1161552.0,,2612947.0,,2414005.0,,198942.0,,,,,,,,,,,,,,,,,,, +OH,Ohio,202002,Y,P,N,64447.0,Includes Renewals and/or Redeterminations,0.0,,64447.0,Includes Renewals and/or Redeterminations,51285.0,Includes CHIP; Includes Renewals and/or Redeterminations,3039.0,,54324.0,Includes Renewals and/or Redeterminations,1152914.0,,2596917.0,,2398039.0,,198878.0,,,,6696.0,,9310.0,,15451.0,,3364.0,,6750.0,,,,,,, +OH,Ohio,202002,Y,U,Y,64447.0,Includes Renewals and/or Redeterminations,0.0,,64447.0,Includes Renewals and/or Redeterminations,51285.0,Includes CHIP; Includes Renewals and/or Redeterminations,3039.0,,54324.0,Includes Renewals and/or Redeterminations,1152914.0,,2596917.0,,2398039.0,,198878.0,,,,6696.0,,9310.0,,15451.0,,3364.0,,6750.0,,,,,,, +OH,Ohio,202003,Y,P,N,79561.0,Includes Renewals and/or Redeterminations,0.0,,79561.0,Includes Renewals and/or Redeterminations,60030.0,Includes CHIP; Includes Renewals and/or Redeterminations,3632.0,,63662.0,Includes Renewals and/or Redeterminations,1159413.0,,2611799.0,,2412431.0,,199368.0,,,,7807.0,,12112.0,,18025.0,,4574.0,,6413.0,,,,,,, +OH,Ohio,202003,Y,U,Y,79561.0,Includes Renewals and/or Redeterminations,0.0,,79561.0,Includes Renewals and/or Redeterminations,60030.0,Includes CHIP; Includes Renewals and/or Redeterminations,3632.0,,63662.0,Includes Renewals and/or Redeterminations,1159413.0,,2611799.0,,2412431.0,,199368.0,,,,7807.0,,12112.0,,18025.0,,4574.0,,6413.0,,,,,,, +OH,Ohio,202004,Y,P,N,83602.0,Includes Renewals and/or Redeterminations,0.0,,83602.0,Includes Renewals and/or Redeterminations,94701.0,Includes CHIP; Includes Renewals and/or Redeterminations,4802.0,,99503.0,Includes Renewals and/or Redeterminations,1184214.0,,2701204.0,,2500525.0,,200679.0,,,,17380.0,,26429.0,,28039.0,,5595.0,,9627.0,,,,,,, +OH,Ohio,202004,Y,U,Y,83602.0,Includes Renewals and/or Redeterminations,0.0,,83602.0,Includes Renewals and/or Redeterminations,94701.0,Includes CHIP; Includes Renewals and/or Redeterminations,4802.0,,99503.0,Includes Renewals and/or Redeterminations,1184214.0,,2701204.0,,2500525.0,,200679.0,,,,17380.0,,26429.0,,28039.0,,5595.0,,9627.0,,,,,,, +OH,Ohio,202005,Y,P,N,56260.0,Includes Renewals and/or Redeterminations,0.0,,56260.0,Includes Renewals and/or Redeterminations,51309.0,Includes CHIP; Includes Renewals and/or Redeterminations,2741.0,,54050.0,Includes Renewals and/or Redeterminations,1197847.0,,2749126.0,,2551301.0,,197825.0,,,,,,,,,,,,,,,,,,, +OH,Ohio,202005,Y,U,Y,56260.0,Includes Renewals and/or Redeterminations,0.0,,56260.0,Includes Renewals and/or Redeterminations,51309.0,Includes CHIP; Includes Renewals and/or Redeterminations,2741.0,,54050.0,Includes Renewals and/or Redeterminations,1197847.0,,2749126.0,,2551301.0,,197825.0,,,,,,,,,,,,,,,,,,, +OH,Ohio,202006,Y,P,N,58892.0,Includes Renewals and/or Redeterminations,0.0,,58892.0,Includes Renewals and/or Redeterminations,44381.0,Includes CHIP; Includes Renewals and/or Redeterminations,2370.0,,46751.0,Includes Renewals and/or Redeterminations,1209081.0,,2788134.0,,2593402.0,,194732.0,,,,,,,,,,,,,,,,,,, +OH,Ohio,202006,Y,U,Y,58892.0,Includes Renewals and/or Redeterminations,0.0,,58892.0,Includes Renewals and/or Redeterminations,44381.0,Includes CHIP; Includes Renewals and/or Redeterminations,2370.0,,46751.0,Includes Renewals and/or Redeterminations,1209081.0,,2788134.0,,2593402.0,,194732.0,,,,,,,,,,,,,,,,,,, +OH,Ohio,202007,Y,P,N,59710.0,Includes Renewals and/or Redeterminations,0.0,,59710.0,Includes Renewals and/or Redeterminations,38837.0,Includes CHIP; Includes Renewals and/or Redeterminations,1944.0,,40781.0,Includes Renewals and/or Redeterminations,1218896.0,,2819633.0,,2626131.0,,193502.0,,,,,,,,,,,,,,,,,,, +OH,Ohio,202007,Y,U,Y,59710.0,Includes Renewals and/or Redeterminations,0.0,,59710.0,Includes Renewals and/or Redeterminations,38837.0,Includes CHIP; Includes Renewals and/or Redeterminations,1944.0,,40781.0,Includes Renewals and/or Redeterminations,1218896.0,,2819633.0,,2626131.0,,193502.0,,,,,,,,,,,,,,,,,,, +OH,Ohio,202008,Y,P,N,60583.0,Includes Renewals and/or Redeterminations,0.0,,60583.0,Includes Renewals and/or Redeterminations,38339.0,Includes CHIP; Includes Renewals and/or Redeterminations,2140.0,,40479.0,Includes Renewals and/or Redeterminations,1227916.0,,2851221.0,,2657435.0,,193786.0,,,,,,,,,,,,,,,,,,, +OH,Ohio,202008,Y,U,Y,60583.0,Includes Renewals and/or Redeterminations,0.0,,60583.0,Includes Renewals and/or Redeterminations,38339.0,Includes CHIP; Includes Renewals and/or Redeterminations,2140.0,,40479.0,Includes Renewals and/or Redeterminations,1227916.0,,2851221.0,,2657435.0,,193786.0,,,,,,,,,,,,,,,,,,, +OH,Ohio,202009,Y,P,N,58278.0,Includes Renewals and/or Redeterminations,0.0,,58278.0,Includes Renewals and/or Redeterminations,39044.0,Includes CHIP; Includes Renewals and/or Redeterminations,2144.0,,41188.0,Includes Renewals and/or Redeterminations,1237145.0,,2881716.0,,2687107.0,,194609.0,,,,,,,,,,,,,,,,,,, +OH,Ohio,202009,Y,U,Y,58278.0,Includes Renewals and/or Redeterminations,0.0,,58278.0,Includes Renewals and/or Redeterminations,39044.0,Includes CHIP; Includes Renewals and/or Redeterminations,2144.0,,41188.0,Includes Renewals and/or Redeterminations,1237145.0,,2881716.0,,2687107.0,,194609.0,,,,,,,,,,,,,,,,,,, +OH,Ohio,202010,Y,P,N,58026.0,Includes Renewals and/or Redeterminations,0.0,,58026.0,Includes Renewals and/or Redeterminations,38181.0,Includes CHIP; Includes Renewals and/or Redeterminations,2055.0,,40236.0,Includes Renewals and/or Redeterminations,1245379.0,,2910145.0,,2714726.0,,195419.0,,,,,,,,,,,,,,,,,,, +OH,Ohio,202010,Y,U,Y,58026.0,Includes Renewals and/or Redeterminations,0.0,,58026.0,Includes Renewals and/or Redeterminations,38181.0,Includes CHIP; Includes Renewals and/or Redeterminations,2055.0,,40236.0,Includes Renewals and/or Redeterminations,1245379.0,,2910145.0,,2714726.0,,195419.0,,,,,,,,,,,,,,,,,,, +OH,Ohio,202011,Y,P,N,54252.0,Includes Renewals and/or Redeterminations,0.0,,54252.0,Includes Renewals and/or Redeterminations,32954.0,Includes CHIP; Includes Renewals and/or Redeterminations,1760.0,,34714.0,Includes Renewals and/or Redeterminations,1250134.0,,2931222.0,,2734755.0,,196467.0,,,,,,,,,,,,,,,,,,, +OH,Ohio,202011,Y,U,Y,54252.0,Includes Renewals and/or Redeterminations,0.0,,54252.0,Includes Renewals and/or Redeterminations,32954.0,Includes CHIP; Includes Renewals and/or Redeterminations,1760.0,,34714.0,Includes Renewals and/or Redeterminations,1250134.0,,2931222.0,,2734755.0,,196467.0,,,,,,,,,,,,,,,,,,, +OH,Ohio,202012,Y,P,N,55797.0,Includes Renewals and/or Redeterminations,0.0,,55797.0,Includes Renewals and/or Redeterminations,36128.0,Includes CHIP; Includes Renewals and/or Redeterminations,2041.0,,38169.0,Includes Renewals and/or Redeterminations,1257033.0,,2955796.0,,2757654.0,,198142.0,,,,,,,,,,,,,,,,,,, +OH,Ohio,202012,Y,U,Y,55797.0,Includes Renewals and/or Redeterminations,0.0,,55797.0,Includes Renewals and/or Redeterminations,36128.0,Includes CHIP; Includes Renewals and/or Redeterminations,2041.0,,38169.0,Includes Renewals and/or Redeterminations,1257033.0,,2955796.0,,2757654.0,,198142.0,,,,,,,,,,,,,,,,,,, +OH,Ohio,202101,Y,P,N,51999.0,Includes Renewals and/or Redeterminations,0.0,,51999.0,Includes Renewals and/or Redeterminations,33666.0,Includes CHIP; Includes Renewals and/or Redeterminations,1890.0,,35556.0,Includes Renewals and/or Redeterminations,1262674.0,,2976549.0,,2775317.0,,201232.0,,,,,,,,,,,,,,,,,,, +OH,Ohio,202101,Y,U,Y,51999.0,Includes Renewals and/or Redeterminations,0.0,,51999.0,Includes Renewals and/or Redeterminations,33666.0,Includes CHIP; Includes Renewals and/or Redeterminations,1890.0,,35556.0,Includes Renewals and/or Redeterminations,1262674.0,,2976549.0,,2775317.0,,201232.0,,,,,,,,,,,,,,,,,,, +OH,Ohio,202102,Y,P,N,47359.0,Includes Renewals and/or Redeterminations,0.0,,47359.0,Includes Renewals and/or Redeterminations,31748.0,Includes CHIP; Includes Renewals and/or Redeterminations,1699.0,,33447.0,Includes Renewals and/or Redeterminations,1267732.0,,2994724.0,,2790708.0,,204016.0,,,,3861.0,,6656.0,,9255.0,,2158.0,,4022.0,,,,,,, +OH,Ohio,202102,Y,U,Y,47359.0,,0.0,,47359.0,,31748.0,,1699.0,,33447.0,,1267732.0,,2994724.0,,2790708.0,,204016.0,,,,3861.0,,6656.0,,9255.0,,2158.0,,4022.0,,,,,,, +OH,Ohio,202103,Y,P,N,53541.0,Includes Renewals and/or Redeterminations,0.0,,53541.0,Includes Renewals and/or Redeterminations,36309.0,Includes CHIP; Includes Renewals and/or Redeterminations,2058.0,,38367.0,Includes Renewals and/or Redeterminations,1274796.0,,3018588.0,,2810994.0,,207594.0,,,,4103.0,,7466.0,,10436.0,,2551.0,,3847.0,,,,,,, +OH,Ohio,202103,Y,U,Y,53541.0,Includes Renewals and/or Redeterminations,0.0,,53541.0,Includes Renewals and/or Redeterminations,36309.0,Includes CHIP; Includes Renewals and/or Redeterminations,2058.0,,38367.0,Includes Renewals and/or Redeterminations,1274796.0,,3018588.0,,2810994.0,,207594.0,,,,4103.0,,7466.0,,10436.0,,2551.0,,3847.0,,,,,,, +OH,Ohio,202104,Y,P,N,43992.0,,0.0,,43992.0,,28675.0,,1486.0,,30161.0,,1278639.0,,3034790.0,,2823559.0,,211231.0,,,,3318.0,,6093.0,,8139.0,,2323.0,,2396.0,,,,,,, +OH,Ohio,202104,Y,U,Y,43992.0,,0.0,,43992.0,,28675.0,,1486.0,,30161.0,,1278639.0,,3034790.0,,2823559.0,,211231.0,,,,3318.0,,6093.0,,8139.0,,2323.0,,2396.0,,,,,,, +OH,Ohio,202105,Y,P,N,45315.0,Includes Renewals and/or Redeterminations,0.0,,45315.0,Includes Renewals and/or Redeterminations,29849.0,Includes CHIP; Includes Renewals and/or Redeterminations,1446.0,,31295.0,Includes Renewals and/or Redeterminations,1282599.0,,3051328.0,,2835813.0,,215515.0,,,,,,,,,,,,,,,,,,, +OH,Ohio,202105,Y,U,Y,45315.0,Includes Renewals and/or Redeterminations,0.0,,45315.0,Includes Renewals and/or Redeterminations,29849.0,Includes CHIP; Includes Renewals and/or Redeterminations,1446.0,,31295.0,Includes Renewals and/or Redeterminations,1282599.0,,3051328.0,,2835813.0,,215515.0,,,,,,,,,,,,,,,,,,, +OH,Ohio,202106,Y,P,N,49802.0,Includes Renewals and/or Redeterminations,0.0,,49802.0,Includes Renewals and/or Redeterminations,31253.0,Includes CHIP; Includes Renewals and/or Redeterminations,1512.0,,32765.0,Includes Renewals and/or Redeterminations,1287087.0,,3068766.0,,2850102.0,,218664.0,,,,,,,,,,,,,,,,,,, +OH,Ohio,202106,Y,U,Y,49802.0,Includes Renewals and/or Redeterminations,0.0,,49802.0,Includes Renewals and/or Redeterminations,31253.0,Includes Renewals and/or Redeterminations; Includes CHIP,1512.0,,32765.0,Includes Renewals and/or Redeterminations,1287087.0,,3068766.0,,2850102.0,,218664.0,,,,,,,,,,,,,,,,,,, +OH,Ohio,202107,Y,P,N,47389.0,,0.0,,47389.0,,31017.0,,1515.0,,32532.0,,1289336.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3086656.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2874387.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),212269.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +OH,Ohio,202107,Y,U,Y,47389.0,,0.0,,47389.0,,31017.0,,1515.0,,32532.0,,1289336.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3086656.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2874387.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),212269.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +OH,Ohio,202108,Y,P,N,52217.0,,0.0,,52217.0,,32862.0,,1642.0,,34504.0,,1294162.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3106505.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2889331.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),217174.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +OH,Ohio,202108,Y,U,Y,52217.0,,0.0,,52217.0,,32862.0,,1642.0,,34504.0,,1294162.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3106505.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2889331.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),217174.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +OH,Ohio,202109,Y,P,N,49387.0,,0.0,,49387.0,,32033.0,,1673.0,,33706.0,,1297583.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3123238.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2904502.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),218736.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +OH,Ohio,202109,Y,U,Y,49387.0,,0.0,,49387.0,,32033.0,,1673.0,,33706.0,,1297583.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3123238.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2904502.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),218736.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +OH,Ohio,202110,Y,P,N,46898.0,,0.0,,46898.0,,31256.0,,1618.0,,32874.0,,1298207.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3140554.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2926320.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),214234.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +OH,Ohio,202110,Y,U,Y,46898.0,,0.0,,46898.0,,31256.0,,1618.0,,32874.0,,1298207.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3140554.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2926320.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),214234.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +OH,Ohio,202111,Y,P,N,47693.0,,0.0,,47693.0,,29450.0,,1542.0,,30992.0,,1300308.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3156921.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2941769.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),215152.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +OH,Ohio,202111,Y,U,Y,47693.0,,0.0,,47693.0,,29450.0,,1542.0,,30992.0,,1300308.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3156921.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2941769.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),215152.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +OH,Ohio,202112,Y,P,N,56955.0,,0.0,,56955.0,,28339.0,,1424.0,,29763.0,,1303028.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3172286.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2955172.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),217114.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +OH,Ohio,202112,Y,U,Y,56955.0,,0.0,,56955.0,,28339.0,,1424.0,,29763.0,,1303028.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3172286.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2955172.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),217114.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +OH,Ohio,202201,Y,P,N,59141.0,,0.0,,59141.0,,30567.0,,1517.0,,32084.0,,1307412.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3188776.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2965816.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),222960.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,2666.0,,5516.0,,8317.0,,2786.0,,3422.0,,,,,,, +OH,Ohio,202201,Y,U,Y,59141.0,,0.0,,59141.0,,30567.0,,1517.0,,32084.0,,1307412.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3188776.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2965816.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),222960.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,2666.0,,5516.0,,8317.0,,2786.0,,3422.0,,,,,,, +OH,Ohio,202202,Y,P,N,48770.0,,0.0,,48770.0,,27758.0,,1392.0,,29150.0,,1310678.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3200388.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2973978.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),226410.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,2234.0,,5337.0,,7391.0,,2072.0,,3184.0,,,,,,, +OH,Ohio,202202,Y,U,Y,48770.0,,0.0,,48770.0,,27758.0,,1392.0,,29150.0,,1310678.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3200388.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2973978.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),226410.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,2234.0,,5337.0,,7391.0,,2072.0,,3184.0,,,,,,, +OH,Ohio,202203,Y,P,N,56115.0,,0.0,,56115.0,,32810.0,,1626.0,,34436.0,,1315085.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3216730.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2990681.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),226049.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,2698.0,,6841.0,,7854.0,,2113.0,,3630.0,,,,,,, +OH,Ohio,202203,Y,U,Y,56115.0,,0.0,,56115.0,,32810.0,,1626.0,,34436.0,,1315085.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3216730.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2990681.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),226049.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,2698.0,,6841.0,,7854.0,,2113.0,,3630.0,,,,,,, +OH,Ohio,202204,Y,P,N,48037.0,,0.0,,48037.0,,28187.0,,1299.0,,29486.0,,1317097.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3230188.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3004205.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),225983.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,2480.0,,5909.0,,7106.0,,1951.0,,2887.0,,,,,,, +OH,Ohio,202204,Y,U,Y,48037.0,,0.0,,48037.0,,28187.0,,1299.0,,29486.0,,1317097.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3230188.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3004205.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),225983.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,2480.0,,5909.0,,7106.0,,1951.0,,2887.0,,,,,,, +OH,Ohio,202205,Y,P,N,49845.0,,0.0,,49845.0,,27593.0,,1371.0,,28964.0,,1319520.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3242826.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3015198.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),227628.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,2677.0,,6203.0,,7229.0,,1787.0,,1793.0,,,,,,, +OH,Ohio,202205,Y,U,Y,49845.0,,0.0,,49845.0,,27593.0,,1371.0,,28964.0,,1319520.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3242826.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3015198.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),227628.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,2677.0,,6203.0,,7229.0,,1787.0,,1793.0,,,,,,, +OH,Ohio,202206,Y,P,N,49677.0,,0.0,,49677.0,,28461.0,,1294.0,,29755.0,,1322594.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3256033.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3026305.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),229728.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,3030.0,,6030.0,,7463.0,,1782.0,,1632.0,,,,,,, +OH,Ohio,202206,Y,U,Y,49677.0,,0.0,,49677.0,,28461.0,,1294.0,,29755.0,,1322594.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3256033.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3026305.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),229728.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,3030.0,,6030.0,,7463.0,,1782.0,,1632.0,,,,,,, +OH,Ohio,202207,Y,P,N,47354.0,,0.0,,47354.0,,27102.0,,1311.0,,28413.0,,1325389.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3270899.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3040264.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),230635.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,2952.0,,5292.0,,7892.0,,1951.0,,1637.0,,,,,,, +OH,Ohio,202207,Y,U,Y,47354.0,,0.0,,47354.0,,27102.0,,1311.0,,28413.0,,1325389.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3270899.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3040264.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),230635.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,2952.0,,5292.0,,7892.0,,1951.0,,1637.0,,,,,,, +OH,Ohio,202208,Y,P,N,58985.0,,0.0,,58985.0,,32046.0,,1652.0,,33698.0,,1330435.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3289608.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3057112.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),232496.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,3372.0,,6442.0,,9237.0,,2278.0,,1778.0,,,,,,, +OH,Ohio,202208,Y,U,Y,58985.0,,0.0,,58985.0,,32046.0,,1652.0,,33698.0,,1330435.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3289608.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3057112.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),232496.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,3372.0,,6442.0,,9237.0,,2278.0,,1778.0,,,,,,, +OH,Ohio,202209,Y,P,N,53189.0,,0.0,,53189.0,,28888.0,,1545.0,,30433.0,,1333626.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3304546.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3069346.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),235200.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,3016.0,,5506.0,,8483.0,,2127.0,,1807.0,,,,,,, +OH,Ohio,202209,Y,U,Y,53189.0,,0.0,,53189.0,,28888.0,,1545.0,,30433.0,,1333626.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3304546.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3069346.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),235200.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,3016.0,,5506.0,,8483.0,,2127.0,,1807.0,,,,,,, +OH,Ohio,202210,Y,P,N,50812.0,,0.0,,50812.0,,27689.0,,1429.0,,29118.0,,1336493.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3318481.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3080067.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),238414.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,2706.0,,5334.0,,7908.0,,2148.0,,1965.0,,,,,,, +OH,Ohio,202210,Y,U,Y,50812.0,,0.0,,50812.0,,27689.0,,1429.0,,29118.0,,1336493.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3318481.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3080067.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),238414.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,2706.0,,5334.0,,7908.0,,2148.0,,1965.0,,,,,,, +OH,Ohio,202211,Y,P,N,57645.0,,0.0,,57645.0,,27315.0,,1442.0,,28757.0,,1341543.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3337867.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3095655.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),242212.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,2714.0,,5257.0,,7904.0,,1935.0,,1998.0,,,,,,, +OH,Ohio,202211,Y,U,Y,57645.0,,0.0,,57645.0,,27315.0,,1442.0,,28757.0,,1341543.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3337867.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3095655.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),242212.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,2714.0,,5257.0,,7904.0,,1935.0,,1998.0,,,,,,, +OH,Ohio,202212,Y,P,N,53985.0,,0.0,,53985.0,,27835.0,,1437.0,,29272.0,,1350912.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3365244.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3117798.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),247446.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,2765.0,,5371.0,,7888.0,,2347.0,,2069.0,,,,,,, +OH,Ohio,202212,Y,U,Y,53985.0,,0.0,,53985.0,,27835.0,,1437.0,,29272.0,,1350912.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3365244.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3117798.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),247446.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,2765.0,,5371.0,,7888.0,,2347.0,,2069.0,,,,,,, +OH,Ohio,202301,Y,P,N,57460.0,,0.0,,57460.0,,29349.0,,1513.0,,30862.0,,1355606.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3386997.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3134287.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),252710.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,2994.0,,5115.0,,7791.0,,2772.0,,2998.0,,,,,,, +OH,Ohio,202301,Y,U,Y,57460.0,,0.0,,57460.0,,29349.0,,1513.0,,30862.0,,1355606.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3386997.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3134287.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),252710.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,2994.0,,5115.0,,7791.0,,2772.0,,2998.0,,,,,,, +OH,Ohio,202302,Y,P,N,48597.0,,0.0,,48597.0,,27624.0,,1484.0,,29108.0,,1359477.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3403221.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3147752.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),255469.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,2801.0,,5209.0,,7018.0,,1895.0,,3356.0,,,,,,, +OH,Ohio,202302,Y,U,Y,48597.0,,0.0,,48597.0,,27624.0,,1484.0,,29108.0,,1359477.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3403221.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3147752.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),255469.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,2801.0,,5209.0,,7018.0,,1895.0,,3356.0,,,,,,, +OH,Ohio,202303,Y,P,N,56408.0,,0.0,,56408.0,,32522.0,,1613.0,,34135.0,,1363901.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3421792.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3167340.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),254452.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,3352.0,,6445.0,,8284.0,,1938.0,,3629.0,,176630.0,Does not include all calls received by call centers,4.0,Call centers offer callbacks; Does not include all calls received by call centers,0.05,Does not include all calls received by call centers +OH,Ohio,202303,Y,U,Y,56408.0,,0.0,,56408.0,,32522.0,,1613.0,,34135.0,,1363901.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3421792.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3167340.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),254452.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,3352.0,,6445.0,,8284.0,,1938.0,,3629.0,,176630.0,Does not include all calls received by call centers,4.0,Call centers offer callbacks; Does not include all calls received by call centers,0.05,Does not include all calls received by call centers +OH,Ohio,202304,Y,P,N,49650.0,,0.0,,49650.0,,27083.0,,1377.0,,28460.0,,1365742.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3446663.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3192670.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),253993.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,2703.0,,5808.0,,6844.0,,1734.0,,2524.0,,146135.0,Does not include all calls received by call centers,2.0,Call centers offer callbacks; Does not include all calls received by call centers,0.03,Does not include all calls received by call centers +OH,Ohio,202304,Y,U,Y,49650.0,,0.0,,49650.0,,27083.0,,1377.0,,28460.0,,1365742.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3446663.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3192670.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),253993.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,2703.0,,5808.0,,6844.0,,1734.0,,2524.0,,146135.0,Does not include all calls received by call centers,2.0,Call centers offer callbacks; Does not include all calls received by call centers,0.03,Does not include all calls received by call centers +OH,Ohio,202305,Y,P,N,59222.0,,0.0,,59222.0,,29198.0,,1448.0,,30646.0,,1351111.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3405703.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3155383.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),250320.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,3208.0,,6381.0,,7226.0,,1750.0,,2239.0,,172949.0,Does not include all calls received by call centers,4.0,Call centers offer callbacks; Does not include all calls received by call centers,0.03,Does not include all calls received by call centers +OH,Ohio,202305,Y,U,Y,59222.0,,0.0,,59222.0,,29198.0,,1448.0,,30646.0,,1351111.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3405703.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3155383.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),250320.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,3208.0,,6381.0,,7226.0,,1750.0,,2239.0,,172949.0,Does not include all calls received by call centers,4.0,Call centers offer callbacks; Does not include all calls received by call centers,0.03,Does not include all calls received by call centers +OH,Ohio,202306,Y,P,N,59365.0,,0.0,,59365.0,,28870.0,,1573.0,,30443.0,,1334799.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3360787.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3114808.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),245979.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,3396.0,,6350.0,,7599.0,,1721.0,,1671.0,,181411.0,Does not include all calls received by call centers,4.0,Call centers offer callbacks; Does not include all calls received by call centers,0.04,Does not include all calls received by call centers +OH,Ohio,202306,Y,U,Y,59365.0,,0.0,,59365.0,,28870.0,,1573.0,,30443.0,,1334799.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3360787.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3114808.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),245979.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,3396.0,,6350.0,,7599.0,,1721.0,,1671.0,,181411.0,Does not include all calls received by call centers,4.0,Call centers offer callbacks; Does not include all calls received by call centers,0.04,Does not include all calls received by call centers +OH,Ohio,202307,Y,P,N,60957.0,,0.0,,60957.0,,28546.0,,1726.0,,30272.0,,1312356.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3295451.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3054616.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),240835.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,3528.0,,5884.0,,8346.0,,1883.0,,2074.0,,195225.0,Does not include all calls received by call centers; Does not include all calls received after business hours,5.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours,0.05,Does not include all calls received by call centers; Does not include all calls received after business hours +OH,Ohio,202307,Y,U,Y,60957.0,,0.0,,60957.0,,28546.0,,1726.0,,30272.0,,1312356.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3295451.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3054616.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),240835.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,3528.0,,5884.0,,8346.0,,1883.0,,2074.0,,195225.0,Does not include all calls received by call centers; Does not include all calls received after business hours,5.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours,0.05,Does not include all calls received by call centers; Does not include all calls received after business hours +OH,Ohio,202308,Y,P,N,71781.0,,0.0,,71781.0,,36645.0,,2367.0,,39012.0,,1293798.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3236545.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2999080.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),237465.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,4247.0,,7047.0,,10369.0,,2085.0,,3083.0,,236465.0,Does not include all calls received by call centers; Does not include all calls received after business hours,7.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours,0.05,Does not include all calls received by call centers; Does not include all calls received after business hours +OH,Ohio,202308,Y,U,Y,71781.0,,0.0,,71781.0,,36645.0,,2367.0,,39012.0,,1293798.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3236545.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2999080.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),237465.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,4247.0,,7047.0,,10369.0,,2085.0,,3083.0,,236465.0,Does not include all calls received by call centers; Does not include all calls received after business hours,7.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours,0.05,Does not include all calls received by call centers; Does not include all calls received after business hours +OH,Ohio,202309,Y,P,N,66111.0,,0.0,,66111.0,,32655.0,,2377.0,,35032.0,,1277848.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3183112.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2948123.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),234989.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,3789.0,,6328.0,,9588.0,,2440.0,,2854.0,,227561.0,Does not include all calls received by call centers; Does not include all calls received after business hours,6.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours,0.05,Does not include all calls received by call centers; Does not include all calls received after business hours +OH,Ohio,202309,Y,U,Y,66111.0,,0.0,,66111.0,,32655.0,,2377.0,,35032.0,,1277848.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3183112.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2948123.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),234989.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,3789.0,,6328.0,,9588.0,,2440.0,,2854.0,,227561.0,Does not include all calls received by call centers; Does not include all calls received after business hours,6.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours,0.05,Does not include all calls received by call centers; Does not include all calls received after business hours +OH,Ohio,202310,Y,P,N,74047.0,,0.0,,74047.0,,36831.0,,2753.0,,39584.0,,1272841.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3152322.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2916227.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),236095.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,4092.0,,6645.0,,10476.0,,2744.0,,3906.0,,248833.0,Does not include all calls received by call centers; Does not include all calls received after business hours,4.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours,0.05,Does not include all calls received by call centers; Does not include all calls received after business hours +OH,Ohio,202310,Y,U,Y,74047.0,,0.0,,74047.0,,36831.0,,2753.0,,39584.0,,1272841.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3152322.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2916227.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),236095.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,4092.0,,6645.0,,10476.0,,2744.0,,3906.0,,248833.0,Does not include all calls received by call centers; Does not include all calls received after business hours,4.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours,0.05,Does not include all calls received by call centers; Does not include all calls received after business hours +OH,Ohio,202311,Y,P,N,78956.0,,0.0,,78956.0,,36054.0,,2717.0,,38771.0,,1258238.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3109108.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2874057.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),235051.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,4305.0,,6441.0,,10398.0,,2741.0,,4097.0,,246985.0,Does not include all calls received by call centers; Does not include all calls received after business hours,3.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours,0.04,Does not include all calls received by call centers; Does not include all calls received after business hours +OH,Ohio,202311,Y,U,Y,78956.0,,0.0,,78956.0,,36054.0,,2717.0,,38771.0,,1258238.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3109108.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2874057.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),235051.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,4305.0,,6441.0,,10398.0,,2741.0,,4097.0,,246985.0,Does not include all calls received by call centers; Does not include all calls received after business hours,3.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours,0.04,Does not include all calls received by call centers; Does not include all calls received after business hours +OH,Ohio,202312,Y,P,N,69929.0,,0.0,,69929.0,,35198.0,,2588.0,,37786.0,,1244165.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3062594.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2827506.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),235088.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,3868.0,,6286.0,,10044.0,,2874.0,,4332.0,,209476.0,Does not include all calls received by call centers; Does not include all calls received after business hours,2.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours,0.04,Does not include all calls received by call centers; Does not include all calls received after business hours +OH,Ohio,202312,Y,U,Y,69929.0,,0.0,,69929.0,,35198.0,,2588.0,,37786.0,,1244165.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3062594.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2827506.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),235088.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,3868.0,,6286.0,,10044.0,,2874.0,,4332.0,,209476.0,Does not include all calls received by call centers; Does not include all calls received after business hours,2.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours,0.04,Does not include all calls received by call centers; Does not include all calls received after business hours +OH,Ohio,202401,Y,P,N,85126.0,,0.0,,85126.0,,41278.0,,3156.0,,44434.0,,1240366.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3036482.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2798776.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),237706.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,4757.0,,7054.0,,11052.0,,3594.0,,5870.0,,238741.0,Does not include all calls received by call centers; Does not include all calls received after business hours,2.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours,0.04,Does not include all calls received by call centers; Does not include all calls received after business hours +OH,Ohio,202401,Y,U,Y,85126.0,,0.0,,85126.0,,41278.0,,3156.0,,44434.0,,1240366.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3036482.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2798776.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),237706.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,4757.0,,7054.0,,11052.0,,3594.0,,5870.0,,238741.0,Does not include all calls received by call centers; Does not include all calls received after business hours,2.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours,0.04,Does not include all calls received by call centers; Does not include all calls received after business hours +OH,Ohio,202402,Y,P,N,72899.0,,0.0,,72899.0,,39339.0,,3011.0,,42350.0,,1237047.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3014826.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2775199.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),239627.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,4056.0,,6711.0,,10434.0,,2738.0,,6670.0,,227543.0,Does not include all calls received by call centers; Does not include all calls received after business hours,2.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours,0.03,Does not include all calls received by call centers; Does not include all calls received after business hours +OH,Ohio,202402,Y,U,Y,72899.0,,0.0,,72899.0,,39339.0,,3011.0,,42350.0,,1237047.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3014826.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2775199.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),239627.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,4056.0,,6711.0,,10434.0,,2738.0,,6670.0,,227543.0,Does not include all calls received by call centers; Does not include all calls received after business hours,2.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours,0.03,Does not include all calls received by call centers; Does not include all calls received after business hours +OH,Ohio,202403,Y,P,N,72384.0,,0.0,,72384.0,,40184.0,,2896.0,,43080.0,,1231783.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2985495.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2747657.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),237838.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,4072.0,,7201.0,,9974.0,,2738.0,,6817.0,,192254.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours,0.02,Does not include all calls received by call centers; Does not include all calls received after business hours +OH,Ohio,202403,Y,U,Y,72384.0,,0.0,,72384.0,,40184.0,,2896.0,,43080.0,,1231783.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2985495.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2747657.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),237838.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,4072.0,,7201.0,,9974.0,,2738.0,,6817.0,,192254.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours,0.02,Does not include all calls received by call centers; Does not include all calls received after business hours +OH,Ohio,202404,Y,P,N,75162.0,,0.0,,75162.0,,41125.0,,3072.0,,44197.0,,1222940.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2942399.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2705889.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),236510.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,4265.0,,7294.0,,10519.0,,3499.0,,6692.0,,183179.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours,0.01,Does not include all calls received by call centers; Does not include all calls received after business hours +OH,Ohio,202404,Y,U,Y,75162.0,,0.0,,75162.0,,41125.0,,3072.0,,44197.0,,1222940.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2942399.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2705889.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),236510.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,4265.0,,7294.0,,10519.0,,3499.0,,6692.0,,183179.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours,0.01,Does not include all calls received by call centers; Does not include all calls received after business hours +OH,Ohio,202405,Y,P,N,75045.0,,0.0,,75045.0,,40703.0,,2887.0,,43590.0,,1216663.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2915347.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2680906.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),234441.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,4015.0,,7319.0,,11554.0,,2681.0,,5528.0,,171915.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours,0.01,Does not include all calls received by call centers; Does not include all calls received after business hours +OH,Ohio,202405,Y,U,Y,75045.0,,0.0,,75045.0,,40703.0,,2887.0,,43590.0,,1216663.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2915347.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2680906.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),234441.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,4015.0,,7319.0,,11554.0,,2681.0,,5528.0,,171915.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours,0.01,Does not include all calls received by call centers; Does not include all calls received after business hours +OH,Ohio,202406,Y,P,N,68660.0,,0.0,,68660.0,,36769.0,,2460.0,,39229.0,,1212096.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2895711.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2661974.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),233737.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,3542.0,,6438.0,,9998.0,,2599.0,,5134.0,,163010.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours,0.01,Does not include all calls received by call centers; Does not include all calls received after business hours +OH,Ohio,202406,Y,U,Y,68660.0,,0.0,,68660.0,,36769.0,,2460.0,,39229.0,,1212096.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2895711.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2661974.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),233737.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,3542.0,,6438.0,,9998.0,,2599.0,,5134.0,,163010.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours,0.01,Does not include all calls received by call centers; Does not include all calls received after business hours +OH,Ohio,202407,Y,P,N,79402.0,,0.0,,79402.0,,38418.0,,2622.0,,41040.0,,1208855.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2883680.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2650284.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),233396.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1674825.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),4067.0,,7479.0,,11353.0,,3098.0,,4677.0,,180553.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours,0.01,Does not include all calls received by call centers; Does not include all calls received after business hours +OH,Ohio,202407,Y,U,Y,79402.0,,0.0,,79402.0,,38418.0,,2622.0,,41040.0,,1208855.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2883680.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2650284.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),233396.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1674825.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),4067.0,,7479.0,,11353.0,,3098.0,,4677.0,,180553.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours,0.01,Does not include all calls received by call centers; Does not include all calls received after business hours +OH,Ohio,202408,Y,P,N,79686.0,,0.0,,79686.0,,41385.0,,2903.0,,44288.0,,1209633.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2877085.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2643258.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),233827.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1667452.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),4546.0,,7646.0,,11756.0,,3482.0,,5491.0,,173011.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours,0.02,Does not include all calls received by call centers; Does not include all calls received after business hours +OH,Ohio,202408,Y,U,Y,79686.0,,0.0,,79686.0,,41385.0,,2903.0,,44288.0,,1209633.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2877085.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2643258.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),233827.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1667452.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),4546.0,,7646.0,,11756.0,,3482.0,,5491.0,,173011.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours,0.02,Does not include all calls received by call centers; Does not include all calls received after business hours +OH,Ohio,202409,Y,P,N,76636.0,,0.0,,76636.0,,38402.0,,2548.0,,40950.0,,1209515.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2871534.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2636354.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),235180.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1662019.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),4186.0,,7236.0,,11516.0,,3170.0,,5050.0,,180713.0,Does not include all calls received by call centers; Does not include all calls received after business hours,2.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours,0.03,Does not include all calls received by call centers; Does not include all calls received after business hours +OH,Ohio,202409,Y,U,Y,76636.0,,0.0,,76636.0,,38402.0,,2548.0,,40950.0,,1209515.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2871534.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2636354.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),235180.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1662019.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),4186.0,,7236.0,,11516.0,,3170.0,,5050.0,,180713.0,Does not include all calls received by call centers; Does not include all calls received after business hours,2.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours,0.03,Does not include all calls received by call centers; Does not include all calls received after business hours +OH,Ohio,202410,Y,P,N,86037.0,,0.0,,86037.0,,42397.0,,3002.0,,45399.0,,1213349.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2875313.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2637875.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),237438.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1661964.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),4261.0,,7944.0,,12486.0,,3557.0,,5845.0,,201524.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours,0.03,Does not include all calls received by call centers; Does not include all calls received after business hours +OH,Ohio,202410,Y,U,Y,86037.0,,0.0,,86037.0,,42397.0,,3002.0,,45399.0,,1213349.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2875313.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2637875.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),237438.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1661964.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),4261.0,,7944.0,,12486.0,,3557.0,,5845.0,,201524.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours,0.03,Does not include all calls received by call centers; Does not include all calls received after business hours +OH,Ohio,202411,Y,P,N,80442.0,,0.0,,80442.0,,35035.0,,2587.0,,37622.0,,1213630.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2846555.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2606956.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),239599.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1632925.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3758.0,,6994.0,,10571.0,,3000.0,,4332.0,,256983.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours,0.02,Does not include all calls received by call centers; Does not include all calls received after business hours +OH,Ohio,202411,Y,U,Y,80442.0,,0.0,,80442.0,,35035.0,,2587.0,,37622.0,,1213630.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2846555.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2606956.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),239599.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1632925.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3758.0,,6994.0,,10571.0,,3000.0,,4332.0,,256983.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours,0.02,Does not include all calls received by call centers; Does not include all calls received after business hours +OH,Ohio,202412,Y,P,N,82957.0,,0.0,,82957.0,,36637.0,,2762.0,,39399.0,,1212244.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2838003.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2596879.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),241124.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1625759.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3832.0,,6376.0,,11534.0,,3651.0,,4402.0,,187581.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours,0.03,Does not include all calls received by call centers; Does not include all calls received after business hours +OH,Ohio,202412,Y,U,Y,82957.0,,0.0,,82957.0,,36637.0,,2762.0,,39399.0,,1212244.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2838003.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2596879.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),241124.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1625759.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3832.0,,6376.0,,11534.0,,3651.0,,4402.0,,187581.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours,0.03,Does not include all calls received by call centers; Does not include all calls received after business hours +OH,Ohio,202501,Y,P,N,84802.0,,0.0,,84802.0,,41135.0,,2757.0,,43892.0,,1210151.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2822877.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2579924.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),242953.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1612726.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),4384.0,,7091.0,,11496.0,,4039.0,,6431.0,,214775.0,Does not include all calls received by call centers; Does not include all calls received after business hours,2.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours,0.04,Does not include all calls received by call centers; Does not include all calls received after business hours +OH,Ohio,202501,Y,U,Y,84802.0,,0.0,,84802.0,,41135.0,,2757.0,,43892.0,,1210151.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2822877.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2579924.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),242953.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1612726.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),4384.0,,7091.0,,11496.0,,4039.0,,6431.0,,214775.0,Does not include all calls received by call centers; Does not include all calls received after business hours,2.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours,0.04,Does not include all calls received by call centers; Does not include all calls received after business hours +OH,Ohio,202502,Y,P,N,66130.0,,0.0,,66130.0,,37912.0,,2632.0,,40544.0,,1209091.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2818209.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2573593.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),244616.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1609118.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3943.0,,6732.0,,10326.0,,3636.0,,5954.0,,174870.0,Does not include all calls received by call centers; Does not include all calls received after business hours,2.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours,0.04,Does not include all calls received by call centers; Does not include all calls received after business hours +OH,Ohio,202502,Y,U,Y,66130.0,,0.0,,66130.0,,37912.0,,2632.0,,40544.0,,1209091.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2818209.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2573593.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),244616.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1609118.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3943.0,,6732.0,,10326.0,,3636.0,,5954.0,,174870.0,Does not include all calls received by call centers; Does not include all calls received after business hours,2.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours,0.04,Does not include all calls received by call centers; Does not include all calls received after business hours +OH,Ohio,202503,Y,P,N,72166.0,,0.0,,72166.0,,38551.0,,2485.0,,41036.0,,1207335.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2813897.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2571272.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),242625.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1606562.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),4386.0,,7278.0,,10761.0,,2792.0,,5367.0,,166548.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours,0.03,Does not include all calls received by call centers; Does not include all calls received after business hours +OH,Ohio,202503,Y,U,Y,72166.0,,0.0,,72166.0,,38551.0,,2485.0,,41036.0,,1207335.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2813897.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2571272.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),242625.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1606562.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),4386.0,,7278.0,,10761.0,,2792.0,,5367.0,,166548.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours,0.03,Does not include all calls received by call centers; Does not include all calls received after business hours +OH,Ohio,202504,Y,P,N,69126.0,,0.0,,69126.0,,38595.0,,2410.0,,41005.0,,1204292.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2802277.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2561911.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),240366.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1597985.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),4549.0,,8352.0,,10560.0,,2681.0,,4276.0,,153706.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours,0.02,Does not include all calls received by call centers; Does not include all calls received after business hours +OH,Ohio,202504,Y,U,Y,69126.0,,0.0,,69126.0,,38595.0,,2410.0,,41005.0,,1204292.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2802277.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2561911.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),240366.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1597985.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),4549.0,,8352.0,,10560.0,,2681.0,,4276.0,,153706.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours,0.02,Does not include all calls received by call centers; Does not include all calls received after business hours +OH,Ohio,202505,Y,P,N,66229.0,,0.0,,66229.0,,34794.0,,2058.0,,36852.0,,1203917.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2797622.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2557516.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),240106.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1593705.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),4211.0,,7588.0,,10055.0,,2209.0,,3363.0,,139352.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours,0.01,Does not include all calls received by call centers; Does not include all calls received after business hours +OH,Ohio,202505,Y,U,Y,66229.0,,0.0,,66229.0,,34794.0,,2058.0,,36852.0,,1203917.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2797622.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2557516.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),240106.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1593705.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),4211.0,,7588.0,,10055.0,,2209.0,,3363.0,,139352.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours,0.01,Does not include all calls received by call centers; Does not include all calls received after business hours +OH,Ohio,202506,Y,P,N,66125.0,,0.0,,66125.0,,33446.0,,1987.0,,35433.0,,1202153.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2790508.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2550678.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),239830.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1588355.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),4178.0,,7179.0,,10333.0,,2559.0,,2567.0,,132972.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours,0.01,Does not include all calls received by call centers; Does not include all calls received after business hours +OH,Ohio,202506,Y,U,Y,66125.0,,0.0,,66125.0,,33446.0,,1987.0,,35433.0,,1202153.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2790508.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2550678.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),239830.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1588355.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),4178.0,,7179.0,,10333.0,,2559.0,,2567.0,,132972.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours,0.01,Does not include all calls received by call centers; Does not include all calls received after business hours +OH,Ohio,202507,Y,P,N,71093.0,,0.0,,71093.0,,34425.0,,2109.0,,36534.0,,1198139.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2777854.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2538501.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),239353.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1579715.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),4233.0,,7577.0,,10917.0,,2532.0,,2091.0,,145705.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours,0.01,Does not include all calls received by call centers; Does not include all calls received after business hours +OH,Ohio,202507,Y,U,Y,71093.0,,0.0,,71093.0,,34425.0,,2109.0,,36534.0,,1198139.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2777854.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2538501.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),239353.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1579715.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),4233.0,,7577.0,,10917.0,,2532.0,,2091.0,,145705.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours,0.01,Does not include all calls received by call centers; Does not include all calls received after business hours +OH,Ohio,202508,Y,P,N,68217.0,,0.0,,68217.0,,32670.0,,2048.0,,34718.0,,1195976.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2781898.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2541724.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),240174.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1585922.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3898.0,,7251.0,,10092.0,,2618.0,,1976.0,,151589.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours,0.02,Does not include all calls received by call centers; Does not include all calls received after business hours +OH,Ohio,202508,Y,U,Y,68217.0,,0.0,,68217.0,,32670.0,,2048.0,,34718.0,,1195976.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2781898.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2541724.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),240174.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1585922.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3898.0,,7251.0,,10092.0,,2618.0,,1976.0,,151589.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours,0.02,Does not include all calls received by call centers; Does not include all calls received after business hours +OH,Ohio,202509,Y,P,N,71461.0,,0.0,,71461.0,,32540.0,,2019.0,,34559.0,,1196251.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2775847.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2534444.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),241403.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1579596.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3375.0,,6317.0,,10892.0,,3156.0,,2264.0,,194511.0,Does not include all calls received by call centers; Does not include all calls received after business hours,2.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours,0.03,Does not include all calls received by call centers; Does not include all calls received after business hours +OH,Ohio,202509,Y,U,Y,71461.0,,0.0,,71461.0,,32540.0,,2019.0,,34559.0,,1196251.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2775847.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2534444.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),241403.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1579596.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3375.0,,6317.0,,10892.0,,3156.0,,2264.0,,194511.0,Does not include all calls received by call centers; Does not include all calls received after business hours,2.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours,0.03,Does not include all calls received by call centers; Does not include all calls received after business hours +OH,Ohio,202510,Y,P,N,66364.0,,0.0,,66364.0,,32875.0,,2078.0,,34953.0,,1192630.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2768467.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2525747.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),242720.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1575837.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),3199.0,,6112.0,,10861.0,,3112.0,,2697.0,,181797.0,Does not include all calls received by call centers; Does not include all calls received after business hours,3.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours,0.04,Does not include all calls received by call centers; Does not include all calls received after business hours +OK,Oklahoma,201309,N,U,Y,,,,,,,,,,,,,,,790051.0,,,,,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,201706,N,P,N,43977.0,,0.0,,43977.0,,35687.0,,5898.0,,41585.0,,528699.0,,753984.0,,637395.0,,116589.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,201706,N,U,Y,43977.0,,0.0,,43977.0,,35687.0,,5898.0,,41585.0,,528699.0,,753984.0,,637395.0,,116589.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,201707,N,P,N,46350.0,,0.0,,46350.0,,42058.0,,7281.0,,49339.0,,526966.0,,753610.0,,633476.0,,120134.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,201707,N,U,Y,46350.0,,0.0,,46350.0,,42058.0,,7281.0,,49339.0,,526966.0,,753610.0,,633476.0,,120134.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,201708,N,P,N,54266.0,,0.0,,54266.0,,48313.0,,9380.0,,57693.0,,522262.0,,747582.0,,630402.0,,117180.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,201708,N,U,Y,54266.0,,0.0,,54266.0,,48313.0,,9380.0,,57693.0,,522262.0,,747582.0,,630402.0,,117180.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,201709,N,P,N,43996.0,,0.0,,43996.0,,40116.0,,7865.0,,47981.0,,520337.0,,744800.0,,630366.0,,114434.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,201709,N,U,Y,43996.0,,0.0,,43996.0,,40116.0,,7865.0,,47981.0,,520337.0,,744800.0,,630366.0,,114434.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,201710,N,P,N,46021.0,,0.0,,46021.0,,37727.0,,6361.0,,44088.0,,524101.0,,750448.0,,631893.0,,118555.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,201710,N,U,Y,46021.0,,0.0,,46021.0,,37727.0,,6361.0,,44088.0,,524101.0,,750448.0,,631893.0,,118555.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,201711,N,P,N,46612.0,,0.0,,46612.0,,42008.0,,8873.0,,50881.0,,520845.0,,745255.0,,627186.0,,118069.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,201711,N,U,Y,46612.0,,0.0,,46612.0,,42008.0,,8873.0,,50881.0,,520845.0,,745255.0,,627186.0,,118069.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,201712,N,P,N,43074.0,,0.0,,43074.0,,39167.0,,8017.0,,47184.0,,513139.0,,734277.0,,619767.0,,114510.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,201712,N,U,Y,43074.0,,0.0,,43074.0,,39167.0,,8017.0,,47184.0,,513139.0,,734277.0,,619767.0,,114510.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,201801,N,P,N,52353.0,,0.0,,52353.0,,45737.0,,8441.0,,54178.0,,517001.0,,739818.0,,618365.0,,121453.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,201801,N,U,Y,52353.0,,0.0,,52353.0,,45737.0,,8441.0,,54178.0,,517001.0,,739818.0,,618365.0,,121453.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,201802,N,P,N,39163.0,,0.0,,39163.0,,31350.0,,5948.0,,37298.0,,512614.0,,733264.0,,611498.0,,121766.0,,,,61695.0,,0.0,,0.0,,0.0,,0.0,,,,,,, +OK,Oklahoma,201802,N,U,Y,39163.0,,0.0,,39163.0,,31350.0,,5948.0,,37298.0,,512614.0,,733264.0,,611498.0,,121766.0,,,,61695.0,,0.0,,0.0,,0.0,,0.0,,,,,,, +OK,Oklahoma,201803,N,P,N,42007.0,,0.0,,42007.0,,37094.0,,7260.0,,44354.0,,512541.0,,732697.0,,614274.0,,118423.0,,,,48567.0,,0.0,,0.0,,0.0,,0.0,,,,,,, +OK,Oklahoma,201803,N,U,Y,42007.0,,0.0,,42007.0,,37094.0,,7260.0,,44354.0,,512541.0,,732697.0,,614274.0,,118423.0,,,,48567.0,,0.0,,0.0,,0.0,,0.0,,,,,,, +OK,Oklahoma,201804,N,P,N,40107.0,,0.0,,40107.0,,36955.0,,6667.0,,43622.0,,514861.0,,736548.0,,616175.0,,120373.0,,,,44040.0,,0.0,,0.0,,0.0,,0.0,,,,,,, +OK,Oklahoma,201804,N,U,Y,40107.0,,0.0,,40107.0,,36955.0,,6667.0,,43622.0,,514861.0,,736548.0,,616175.0,,120373.0,,,,44040.0,,0.0,,0.0,,0.0,,0.0,,,,,,, +OK,Oklahoma,201805,N,P,N,43035.0,,0.0,,43035.0,,40177.0,,7933.0,,48110.0,,514535.0,,735895.0,,616826.0,,119069.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,201805,N,U,Y,43035.0,,0.0,,43035.0,,40177.0,,7933.0,,48110.0,,514535.0,,735895.0,,616826.0,,119069.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,201806,N,P,N,40825.0,,0.0,,40825.0,,38581.0,,7488.0,,46069.0,,514027.0,,734328.0,,617606.0,,116722.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,201806,N,U,Y,40825.0,,0.0,,40825.0,,38581.0,,7488.0,,46069.0,,514027.0,,734328.0,,617606.0,,116722.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,201807,N,P,N,46772.0,,0.0,,46772.0,,42540.0,,7927.0,,50467.0,,517862.0,,739877.0,,617925.0,,121952.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,201807,N,U,Y,46772.0,,0.0,,46772.0,,42540.0,,7927.0,,50467.0,,517862.0,,739877.0,,617925.0,,121952.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,201808,N,P,N,51358.0,Includes Renewals and/or Redeterminations,0.0,,51358.0,Includes Renewals and/or Redeterminations,45579.0,Includes Renewals and/or Redeterminations,8433.0,,54012.0,Includes Renewals and/or Redeterminations,516155.0,,736945.0,,616489.0,,120456.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,201808,N,U,Y,51358.0,Includes Renewals and/or Redeterminations,0.0,,51358.0,Includes Renewals and/or Redeterminations,45579.0,Includes Renewals and/or Redeterminations,8433.0,,54012.0,Includes Renewals and/or Redeterminations,516155.0,,736945.0,,616489.0,,120456.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,201809,N,P,N,42834.0,Includes Renewals and/or Redeterminations,0.0,,42834.0,Includes Renewals and/or Redeterminations,39976.0,Includes Renewals and/or Redeterminations,8294.0,,48270.0,Includes Renewals and/or Redeterminations,515398.0,,735297.0,,617107.0,,118190.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,201809,N,U,Y,42834.0,Includes Renewals and/or Redeterminations,0.0,,42834.0,Includes Renewals and/or Redeterminations,39976.0,Includes Renewals and/or Redeterminations,8294.0,,48270.0,Includes Renewals and/or Redeterminations,515398.0,,735297.0,,617107.0,,118190.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,201810,N,P,N,46695.0,Includes Renewals and/or Redeterminations,0.0,,46695.0,Includes Renewals and/or Redeterminations,43363.0,Includes Renewals and/or Redeterminations,8393.0,,51756.0,Includes Renewals and/or Redeterminations,516513.0,,737360.0,,614873.0,,122487.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,201810,N,U,Y,46695.0,Includes Renewals and/or Redeterminations,0.0,,46695.0,Includes Renewals and/or Redeterminations,43363.0,Includes Renewals and/or Redeterminations,8393.0,,51756.0,Includes Renewals and/or Redeterminations,516513.0,,737360.0,,614873.0,,122487.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,201811,N,P,N,47124.0,Includes Renewals and/or Redeterminations,0.0,,47124.0,Includes Renewals and/or Redeterminations,37726.0,Includes Renewals and/or Redeterminations,7463.0,,45189.0,Includes Renewals and/or Redeterminations,513437.0,,732400.0,,609961.0,,122439.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,201811,N,U,Y,47124.0,Includes Renewals and/or Redeterminations,0.0,,47124.0,Includes Renewals and/or Redeterminations,37726.0,Includes Renewals and/or Redeterminations,7463.0,,45189.0,Includes Renewals and/or Redeterminations,513437.0,,732400.0,,609961.0,,122439.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,201812,N,P,N,42852.0,Includes Renewals and/or Redeterminations,0.0,,42852.0,Includes Renewals and/or Redeterminations,38329.0,Includes Renewals and/or Redeterminations,7518.0,,45847.0,Includes Renewals and/or Redeterminations,511168.0,,728153.0,,609376.0,,118777.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,201812,N,U,Y,42852.0,Includes Renewals and/or Redeterminations,0.0,,42852.0,Includes Renewals and/or Redeterminations,38329.0,Includes Renewals and/or Redeterminations,7518.0,,45847.0,Includes Renewals and/or Redeterminations,511168.0,,728153.0,,609376.0,,118777.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,201901,N,P,N,53653.0,Includes Renewals and/or Redeterminations,0.0,,53653.0,Includes Renewals and/or Redeterminations,48783.0,Includes Renewals and/or Redeterminations,9442.0,,58225.0,Includes Renewals and/or Redeterminations,511758.0,,730160.0,,608692.0,,121468.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,201901,N,U,Y,53653.0,Includes Renewals and/or Redeterminations,0.0,,53653.0,Includes Renewals and/or Redeterminations,48783.0,Includes Renewals and/or Redeterminations,9442.0,Includes Renewals and/or Redeterminations,58225.0,Includes Renewals and/or Redeterminations,511758.0,,730160.0,,608692.0,,121468.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,201902,N,P,N,42977.0,Includes Renewals and/or Redeterminations,0.0,,42977.0,Includes Renewals and/or Redeterminations,40244.0,Includes Renewals and/or Redeterminations,8769.0,Includes Renewals and/or Redeterminations,49013.0,Includes Renewals and/or Redeterminations,511100.0,,729622.0,,604453.0,,125169.0,,,,48887.0,,0.0,,0.0,,0.0,,0.0,,,,,,, +OK,Oklahoma,201902,N,U,Y,42977.0,Includes Renewals and/or Redeterminations,0.0,,42977.0,Includes Renewals and/or Redeterminations,40244.0,Includes Renewals and/or Redeterminations,8769.0,Includes Renewals and/or Redeterminations,49013.0,Includes Renewals and/or Redeterminations,511100.0,,729622.0,,604453.0,,125169.0,,,,48887.0,,0.0,,0.0,,0.0,,0.0,,,,,,, +OK,Oklahoma,201903,N,P,N,42114.0,Includes Renewals and/or Redeterminations,0.0,,42114.0,Includes Renewals and/or Redeterminations,38379.0,Includes Renewals and/or Redeterminations,7912.0,Includes Renewals and/or Redeterminations,46291.0,Includes Renewals and/or Redeterminations,507790.0,,724011.0,,603925.0,,120086.0,,,,47236.0,,0.0,,0.0,,0.0,,0.0,,,,,,, +OK,Oklahoma,201903,N,U,Y,42114.0,Includes Renewals and/or Redeterminations,0.0,,42114.0,Includes Renewals and/or Redeterminations,38379.0,Includes Renewals and/or Redeterminations,7912.0,Includes Renewals and/or Redeterminations,46291.0,Includes Renewals and/or Redeterminations,507790.0,,724011.0,,603925.0,,120086.0,,,,47236.0,,0.0,,0.0,,0.0,,0.0,,,,,,, +OK,Oklahoma,201904,N,P,N,40322.0,Includes Renewals and/or Redeterminations,0.0,,40322.0,Includes Renewals and/or Redeterminations,40111.0,Includes Renewals and/or Redeterminations,7751.0,Includes Renewals and/or Redeterminations,47862.0,Includes Renewals and/or Redeterminations,512858.0,,731009.0,,609442.0,,121567.0,,,,47260.0,,0.0,,0.0,,0.0,,0.0,,,,,,, +OK,Oklahoma,201904,N,U,Y,40322.0,Includes Renewals and/or Redeterminations,0.0,,40322.0,Includes Renewals and/or Redeterminations,40111.0,Includes Renewals and/or Redeterminations,7751.0,Includes Renewals and/or Redeterminations,47862.0,Includes Renewals and/or Redeterminations,512858.0,,731009.0,,609442.0,,121567.0,,,,47260.0,,0.0,,0.0,,0.0,,0.0,,,,,,, +OK,Oklahoma,201905,N,P,N,38664.0,Includes Renewals and/or Redeterminations,0.0,,38664.0,Includes Renewals and/or Redeterminations,38784.0,Includes Renewals and/or Redeterminations,7672.0,Includes Renewals and/or Redeterminations,46456.0,Includes Renewals and/or Redeterminations,511811.0,,730110.0,,608905.0,,121205.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,201905,N,U,Y,38664.0,,0.0,,38664.0,,38784.0,,7672.0,,46456.0,,511811.0,,730110.0,,608905.0,,121205.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,201906,N,P,N,37987.0,,0.0,,37987.0,,36793.0,,6829.0,,43622.0,,511378.0,,729196.0,,610779.0,,118417.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,201906,N,U,Y,37987.0,Includes Renewals and/or Redeterminations,0.0,,37987.0,Includes Renewals and/or Redeterminations,36793.0,Includes Renewals and/or Redeterminations,6829.0,Includes Renewals and/or Redeterminations,43622.0,Includes Renewals and/or Redeterminations,511378.0,,729196.0,,610779.0,,118417.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,201907,N,P,N,44716.0,Includes Renewals and/or Redeterminations,0.0,,44716.0,Includes Renewals and/or Redeterminations,42791.0,Includes Renewals and/or Redeterminations,7418.0,Includes Renewals and/or Redeterminations,50209.0,Includes Renewals and/or Redeterminations,515185.0,,735152.0,,612128.0,,123024.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,201907,N,U,Y,44716.0,Includes Renewals and/or Redeterminations,0.0,,44716.0,Includes Renewals and/or Redeterminations,42791.0,Includes Renewals and/or Redeterminations,7418.0,Includes Renewals and/or Redeterminations,50209.0,Includes Renewals and/or Redeterminations,515185.0,,735152.0,,612128.0,,123024.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,201908,N,P,N,51443.0,Includes Renewals and/or Redeterminations,0.0,,51443.0,Includes Renewals and/or Redeterminations,47415.0,Includes Renewals and/or Redeterminations,7051.0,Includes Renewals and/or Redeterminations,54466.0,Includes Renewals and/or Redeterminations,512598.0,,730878.0,,608468.0,,122410.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,201908,N,U,Y,51443.0,Includes Renewals and/or Redeterminations,0.0,,51443.0,Includes Renewals and/or Redeterminations,47415.0,Includes Renewals and/or Redeterminations,7051.0,Includes Renewals and/or Redeterminations,54466.0,Includes Renewals and/or Redeterminations,512598.0,,730878.0,,608468.0,,122410.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,201909,N,P,N,51419.0,Includes Renewals and/or Redeterminations,0.0,,51419.0,Includes Renewals and/or Redeterminations,87682.0,Includes Renewals and/or Redeterminations,10666.0,Includes Renewals and/or Redeterminations,98348.0,Includes Renewals and/or Redeterminations,511370.0,,727681.0,,609104.0,,118577.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,201909,N,U,Y,51419.0,Includes Renewals and/or Redeterminations,0.0,,51419.0,Includes Renewals and/or Redeterminations,87682.0,Includes Renewals and/or Redeterminations,10666.0,Includes Renewals and/or Redeterminations,98348.0,Includes Renewals and/or Redeterminations,511370.0,,727681.0,,609104.0,,118577.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,201910,N,P,N,47985.0,Includes Renewals and/or Redeterminations,0.0,,47985.0,Includes Renewals and/or Redeterminations,45621.0,Includes Renewals and/or Redeterminations,8090.0,Includes Renewals and/or Redeterminations,53711.0,Includes Renewals and/or Redeterminations,512444.0,,729961.0,,608239.0,,121722.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,201910,N,U,Y,47985.0,Includes Renewals and/or Redeterminations,0.0,,47985.0,Includes Renewals and/or Redeterminations,45621.0,Includes Renewals and/or Redeterminations,8090.0,Includes Renewals and/or Redeterminations,53711.0,Includes Renewals and/or Redeterminations,512444.0,,729961.0,,608239.0,,121722.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,201911,N,P,N,42072.0,Includes Renewals and/or Redeterminations,0.0,,42072.0,Includes Renewals and/or Redeterminations,42607.0,Includes Renewals and/or Redeterminations,9388.0,Includes Renewals and/or Redeterminations,51995.0,Includes Renewals and/or Redeterminations,501917.0,,716103.0,,596575.0,,119528.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,201911,N,U,Y,42072.0,Includes Renewals and/or Redeterminations,0.0,,42072.0,Includes Renewals and/or Redeterminations,42607.0,Includes Renewals and/or Redeterminations,9388.0,Includes Renewals and/or Redeterminations,51995.0,Includes Renewals and/or Redeterminations,501917.0,,716103.0,,596575.0,,119528.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,201912,N,P,N,44483.0,Includes Renewals and/or Redeterminations,0.0,,44483.0,Includes Renewals and/or Redeterminations,44157.0,Includes Renewals and/or Redeterminations,9394.0,Includes Renewals and/or Redeterminations,53551.0,Includes Renewals and/or Redeterminations,500283.0,,713247.0,,596867.0,,116380.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,201912,N,U,Y,44483.0,Includes Renewals and/or Redeterminations,0.0,,44483.0,Includes Renewals and/or Redeterminations,44157.0,Includes Renewals and/or Redeterminations,9394.0,Includes Renewals and/or Redeterminations,53551.0,Includes Renewals and/or Redeterminations,500283.0,,713247.0,,596867.0,,116380.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,202001,N,P,N,48758.0,Includes Renewals and/or Redeterminations,0.0,,48758.0,Includes Renewals and/or Redeterminations,49691.0,Includes Renewals and/or Redeterminations,9369.0,Includes Renewals and/or Redeterminations,59060.0,Includes Renewals and/or Redeterminations,505785.0,,721273.0,,600201.0,,121072.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,202001,N,U,Y,48758.0,Includes Renewals and/or Redeterminations,0.0,,48758.0,Includes Renewals and/or Redeterminations,49691.0,Includes Renewals and/or Redeterminations,9369.0,Includes Renewals and/or Redeterminations,59060.0,Includes Renewals and/or Redeterminations,505785.0,,721273.0,,600201.0,,121072.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,202002,N,P,N,32046.0,Includes Renewals and/or Redeterminations,0.0,,32046.0,Includes Renewals and/or Redeterminations,41947.0,Includes Renewals and/or Redeterminations,8800.0,Includes Renewals and/or Redeterminations,50747.0,Includes Renewals and/or Redeterminations,502359.0,,716566.0,,593369.0,,123197.0,,,,78695.0,,0.0,,0.0,,0.0,,0.0,,,,,,, +OK,Oklahoma,202002,N,U,Y,32046.0,Includes Renewals and/or Redeterminations,0.0,,32046.0,Includes Renewals and/or Redeterminations,41947.0,Includes Renewals and/or Redeterminations,8800.0,Includes Renewals and/or Redeterminations,50747.0,Includes Renewals and/or Redeterminations,502359.0,,716566.0,,593369.0,,123197.0,,,,78695.0,,0.0,,0.0,,0.0,,0.0,,,,,,, +OK,Oklahoma,202003,N,P,N,41733.0,Includes Renewals and/or Redeterminations,0.0,,41733.0,Includes Renewals and/or Redeterminations,45003.0,Includes Renewals and/or Redeterminations,8177.0,Includes Renewals and/or Redeterminations,53180.0,Includes Renewals and/or Redeterminations,515123.0,,734583.0,,614063.0,,120520.0,,,,85645.0,,0.0,,0.0,,0.0,,0.0,,,,,,, +OK,Oklahoma,202003,N,U,Y,41733.0,Includes Renewals and/or Redeterminations,0.0,,41733.0,Includes Renewals and/or Redeterminations,45003.0,Includes Renewals and/or Redeterminations,8177.0,Includes Renewals and/or Redeterminations,53180.0,Includes Renewals and/or Redeterminations,515123.0,,734583.0,,614063.0,,120520.0,,,,85645.0,,0.0,,0.0,,0.0,,0.0,,,,,,, +OK,Oklahoma,202004,N,P,N,31848.0,Includes Renewals and/or Redeterminations,0.0,,31848.0,Includes Renewals and/or Redeterminations,51729.0,Includes Renewals and/or Redeterminations,7520.0,Includes Renewals and/or Redeterminations,59249.0,Includes Renewals and/or Redeterminations,530880.0,,762993.0,,637899.0,,125094.0,,,,81425.0,,0.0,,0.0,,0.0,,0.0,,,,,,, +OK,Oklahoma,202004,N,U,Y,31848.0,Includes Renewals and/or Redeterminations,0.0,,31848.0,Includes Renewals and/or Redeterminations,51729.0,Includes Renewals and/or Redeterminations,7520.0,Includes Renewals and/or Redeterminations,59249.0,Includes Renewals and/or Redeterminations,530880.0,,762993.0,,637899.0,,125094.0,,,,81425.0,,0.0,,0.0,,0.0,,0.0,,,,,,, +OK,Oklahoma,202005,N,P,N,32518.0,Includes Renewals and/or Redeterminations,0.0,,32518.0,Includes Renewals and/or Redeterminations,32845.0,Includes Renewals and/or Redeterminations,5990.0,Includes Renewals and/or Redeterminations,38835.0,Includes Renewals and/or Redeterminations,536571.0,,773600.0,,646739.0,,126861.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,202005,N,U,Y,27062.0,Includes Renewals and/or Redeterminations,0.0,,27062.0,Includes Renewals and/or Redeterminations,32845.0,Includes Renewals and/or Redeterminations,5990.0,Includes Renewals and/or Redeterminations,38835.0,Includes Renewals and/or Redeterminations,536571.0,,773600.0,,646739.0,,126861.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,202006,N,P,N,32790.0,Includes Renewals and/or Redeterminations,0.0,,32790.0,Includes Renewals and/or Redeterminations,89321.0,Includes Renewals and/or Redeterminations,19341.0,Includes Renewals and/or Redeterminations,108662.0,Includes Renewals and/or Redeterminations,549537.0,,797220.0,,672238.0,,124982.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,202006,N,U,Y,32790.0,Includes Renewals and/or Redeterminations,0.0,,32790.0,Includes Renewals and/or Redeterminations,89321.0,Includes Renewals and/or Redeterminations,19341.0,Includes Renewals and/or Redeterminations,108662.0,Includes Renewals and/or Redeterminations,549537.0,,797220.0,,672238.0,,124982.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,202007,N,P,N,30992.0,Includes Renewals and/or Redeterminations,0.0,,30992.0,Includes Renewals and/or Redeterminations,35885.0,Includes Renewals and/or Redeterminations,5490.0,Includes Renewals and/or Redeterminations,41375.0,Includes Renewals and/or Redeterminations,555903.0,,809286.0,,680401.0,,128885.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,202007,N,U,Y,30992.0,Includes Renewals and/or Redeterminations,0.0,,30992.0,Includes Renewals and/or Redeterminations,35885.0,Includes Renewals and/or Redeterminations,5490.0,Includes Renewals and/or Redeterminations,41375.0,Includes Renewals and/or Redeterminations,555903.0,,809286.0,,680401.0,,128885.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,202008,N,P,N,34875.0,Includes Renewals and/or Redeterminations,0.0,,34875.0,Includes Renewals and/or Redeterminations,43415.0,Includes Renewals and/or Redeterminations,7718.0,Includes Renewals and/or Redeterminations,51133.0,Includes Renewals and/or Redeterminations,564472.0,,823588.0,,691714.0,,131874.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,202008,N,U,Y,34875.0,Includes Renewals and/or Redeterminations,0.0,,34875.0,Includes Renewals and/or Redeterminations,43415.0,Includes Renewals and/or Redeterminations,7718.0,Includes Renewals and/or Redeterminations,51133.0,Includes Renewals and/or Redeterminations,564472.0,,823588.0,,691714.0,,131874.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,202009,N,P,N,36338.0,Includes Renewals and/or Redeterminations,0.0,,36338.0,Includes Renewals and/or Redeterminations,60616.0,Includes Renewals and/or Redeterminations,11162.0,Includes Renewals and/or Redeterminations,71778.0,Includes Renewals and/or Redeterminations,569766.0,,833734.0,,704453.0,,129281.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,202009,N,U,Y,36338.0,Includes Renewals and/or Redeterminations,0.0,,36338.0,Includes Renewals and/or Redeterminations,60616.0,Includes Renewals and/or Redeterminations,11162.0,Includes Renewals and/or Redeterminations,71778.0,Includes Renewals and/or Redeterminations,569766.0,,833734.0,,704453.0,,129281.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,202010,N,P,N,31695.0,Includes Renewals and/or Redeterminations,0.0,,31695.0,Includes Renewals and/or Redeterminations,108436.0,Includes Renewals and/or Redeterminations,19050.0,Includes Renewals and/or Redeterminations,127486.0,Includes Renewals and/or Redeterminations,574260.0,,844213.0,,714179.0,,130034.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,202010,N,U,Y,31695.0,Includes Renewals and/or Redeterminations,0.0,,31695.0,Includes Renewals and/or Redeterminations,108436.0,Includes Renewals and/or Redeterminations,19050.0,Includes Renewals and/or Redeterminations,127486.0,Includes Renewals and/or Redeterminations,574260.0,,844213.0,,714179.0,,130034.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,202011,N,P,N,29085.0,Includes Renewals and/or Redeterminations,0.0,,29085.0,Includes Renewals and/or Redeterminations,44040.0,Includes Renewals and/or Redeterminations,6383.0,Includes Renewals and/or Redeterminations,50423.0,Includes Renewals and/or Redeterminations,578825.0,,854774.0,,722661.0,,132113.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,202011,N,U,Y,29085.0,Includes Renewals and/or Redeterminations,0.0,,29085.0,Includes Renewals and/or Redeterminations,44040.0,Includes Renewals and/or Redeterminations,6383.0,Includes Renewals and/or Redeterminations,50423.0,Includes Renewals and/or Redeterminations,578825.0,,854774.0,,722661.0,,132113.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,202012,N,P,N,30961.0,Includes Renewals and/or Redeterminations,0.0,,30961.0,Includes Renewals and/or Redeterminations,83010.0,Includes Renewals and/or Redeterminations,9544.0,Includes Renewals and/or Redeterminations,92554.0,Includes Renewals and/or Redeterminations,582476.0,,863285.0,,732928.0,,130357.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,202012,N,U,Y,30961.0,Includes Renewals and/or Redeterminations,0.0,,30961.0,Includes Renewals and/or Redeterminations,83010.0,Includes Renewals and/or Redeterminations,9544.0,Includes Renewals and/or Redeterminations,92554.0,Includes Renewals and/or Redeterminations,582476.0,,863285.0,,732928.0,,130357.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,202101,N,P,N,29808.0,Includes Renewals and/or Redeterminations,0.0,,29808.0,Includes Renewals and/or Redeterminations,106793.0,Includes Renewals and/or Redeterminations,12568.0,Includes Renewals and/or Redeterminations,119361.0,Includes Renewals and/or Redeterminations,585827.0,,866416.0,,733898.0,,132518.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,202101,N,U,Y,29808.0,Includes Renewals and/or Redeterminations,0.0,,29808.0,Includes Renewals and/or Redeterminations,106793.0,Includes Renewals and/or Redeterminations,12568.0,Includes Renewals and/or Redeterminations,119361.0,Includes Renewals and/or Redeterminations,585827.0,,866416.0,,733898.0,,132518.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,202102,N,P,N,21974.0,Includes Renewals and/or Redeterminations,0.0,,21974.0,Includes Renewals and/or Redeterminations,66223.0,Includes Renewals and/or Redeterminations,5093.0,Includes Renewals and/or Redeterminations,71316.0,Includes Renewals and/or Redeterminations,588234.0,,868589.0,,733445.0,,135144.0,,,,102356.0,,0.0,,0.0,,0.0,,0.0,,,,,,, +OK,Oklahoma,202102,N,U,Y,21974.0,Includes Renewals and/or Redeterminations,0.0,,21974.0,Includes Renewals and/or Redeterminations,66223.0,Includes Renewals and/or Redeterminations,5093.0,Includes Renewals and/or Redeterminations,71316.0,Includes Renewals and/or Redeterminations,588234.0,,868589.0,,733445.0,,135144.0,,,,102356.0,,0.0,,0.0,,0.0,,0.0,,,,,,, +OK,Oklahoma,202103,N,P,N,30906.0,Includes Renewals and/or Redeterminations,0.0,,30906.0,Includes Renewals and/or Redeterminations,115304.0,Includes Renewals and/or Redeterminations,12261.0,Includes Renewals and/or Redeterminations,127565.0,Includes Renewals and/or Redeterminations,590499.0,,875775.0,,739249.0,,136526.0,,,,198804.0,,0.0,,0.0,,0.0,,0.0,,,,,,, +OK,Oklahoma,202103,N,U,Y,30906.0,Includes Renewals and/or Redeterminations,0.0,,30906.0,Includes Renewals and/or Redeterminations,115304.0,Includes Renewals and/or Redeterminations,12261.0,Includes Renewals and/or Redeterminations,127565.0,Includes Renewals and/or Redeterminations,590499.0,,875775.0,,739249.0,,136526.0,,,,198804.0,,0.0,,0.0,,0.0,,0.0,,,,,,, +OK,Oklahoma,202104,N,P,N,27667.0,Includes Renewals and/or Redeterminations,0.0,,27667.0,Includes Renewals and/or Redeterminations,67316.0,Includes Renewals and/or Redeterminations,6589.0,Includes Renewals and/or Redeterminations,73905.0,Includes Renewals and/or Redeterminations,593895.0,,883341.0,,747210.0,,136131.0,,,,104844.0,,0.0,,0.0,,0.0,,0.0,,,,,,, +OK,Oklahoma,202104,N,U,Y,27667.0,,0.0,,27667.0,,67316.0,,6589.0,,73905.0,,593895.0,,883341.0,,747210.0,,136131.0,,,,104844.0,,0.0,,0.0,,0.0,,0.0,,,,,,, +OK,Oklahoma,202105,N,P,N,27379.0,Includes Renewals and/or Redeterminations,0.0,,27379.0,Includes Renewals and/or Redeterminations,75964.0,Includes Renewals and/or Redeterminations,5240.0,Includes Renewals and/or Redeterminations,81204.0,Includes Renewals and/or Redeterminations,596094.0,,887980.0,,753336.0,,134644.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,202105,N,U,Y,27379.0,Includes Renewals and/or Redeterminations,0.0,,27379.0,Includes Renewals and/or Redeterminations,75964.0,Includes Renewals and/or Redeterminations,5240.0,Includes Renewals and/or Redeterminations,81204.0,Includes Renewals and/or Redeterminations,596094.0,,887980.0,,753336.0,,134644.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,202106,N,P,N,50936.0,Includes Renewals and/or Redeterminations,0.0,,50936.0,Includes Renewals and/or Redeterminations,148985.0,Includes Renewals and/or Redeterminations,9963.0,Includes Renewals and/or Redeterminations,158948.0,Includes Renewals and/or Redeterminations,600490.0,,896820.0,,761262.0,,135558.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,202106,N,U,Y,50936.0,,0.0,,50936.0,,148985.0,,9963.0,,158948.0,,600490.0,,896820.0,,761262.0,,135558.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,202107,Y,P,N,47551.0,,0.0,,47551.0,,97743.0,,6102.0,,103845.0,,602108.0,,1020015.0,,885521.0,,134494.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,202107,Y,U,Y,47551.0,,0.0,,47551.0,,97743.0,,6102.0,,103845.0,,602108.0,,1020015.0,,885521.0,,134494.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,202108,Y,P,N,43067.0,,0.0,,43067.0,,97607.0,,5897.0,,103504.0,,605318.0,,1040987.0,,908719.0,,132268.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,202108,Y,U,Y,43067.0,,0.0,,43067.0,,97607.0,,5897.0,,103504.0,,605318.0,,1040987.0,,908719.0,,132268.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,202109,Y,P,N,35539.0,,0.0,,35539.0,,52103.0,,4327.0,,56430.0,,610394.0,,1065210.0,,932893.0,,132317.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,202109,Y,U,Y,35539.0,,0.0,,35539.0,,52103.0,,4327.0,,56430.0,,610394.0,,1065210.0,,932893.0,,132317.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,202110,Y,P,N,34524.0,,0.0,,34524.0,,103747.0,,5637.0,,109384.0,,612201.0,,1090053.0,,969220.0,,120833.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,202110,Y,U,Y,34524.0,,0.0,,34524.0,,103747.0,,5637.0,,109384.0,,612201.0,,1090053.0,,969220.0,,120833.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,202111,Y,P,N,39415.0,,0.0,,39415.0,,111472.0,,8155.0,,119627.0,,614576.0,,1107281.0,,981915.0,,125366.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,202111,Y,U,Y,39415.0,,0.0,,39415.0,,111472.0,,8155.0,,119627.0,,614576.0,,1107281.0,,981915.0,,125366.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,202112,Y,P,N,41841.0,,0.0,,41841.0,,154819.0,,11496.0,,166315.0,,618314.0,,1130652.0,,1002912.0,,127740.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,202112,Y,U,Y,41841.0,,0.0,,41841.0,,154819.0,,11496.0,,166315.0,,618314.0,,1130652.0,,1002912.0,,127740.0,,,,,,,,,,,,,,,,,,, +OK,Oklahoma,202201,Y,P,N,38800.0,,0.0,,38800.0,,115750.0,,6193.0,,121943.0,,620082.0,,1146324.0,,1020382.0,,125942.0,,,,172964.0,,0.0,,0.0,,0.0,,0.0,,,,,,, +OK,Oklahoma,202201,Y,U,Y,38800.0,,0.0,,38800.0,,115750.0,,6193.0,,121943.0,,620082.0,,1146324.0,,1020382.0,,125942.0,,,,172964.0,,0.0,,0.0,,0.0,,0.0,,,,,,, +OK,Oklahoma,202202,Y,P,N,33104.0,,0.0,,33104.0,,111780.0,,4798.0,,116578.0,,622886.0,,1160088.0,,1031174.0,,128914.0,,,,166321.0,,0.0,,0.0,,0.0,,0.0,,,,,,, +OK,Oklahoma,202202,Y,U,Y,33104.0,,0.0,,33104.0,,111780.0,,4798.0,,116578.0,,622886.0,,1160088.0,,1031174.0,,128914.0,,,,166321.0,,0.0,,0.0,,0.0,,0.0,,,,,,, +OK,Oklahoma,202203,Y,P,N,40150.0,,0.0,,40150.0,,101281.0,,6635.0,,107916.0,,627778.0,,1178990.0,,1053579.0,,125411.0,,,,188798.0,,0.0,,0.0,,0.0,,0.0,,,,,,, +OK,Oklahoma,202203,Y,U,Y,40150.0,,0.0,,40150.0,,101281.0,,6635.0,,107916.0,,627778.0,,1178990.0,,1053579.0,,125411.0,,,,188798.0,,0.0,,0.0,,0.0,,0.0,,,,,,, +OK,Oklahoma,202204,Y,P,N,33291.0,,0.0,,33291.0,,105210.0,,6073.0,,111283.0,,629880.0,,1192854.0,,1064567.0,,128287.0,,,,152631.0,,0.0,,0.0,,0.0,,0.0,,,,,,, +OK,Oklahoma,202204,Y,U,Y,33291.0,,0.0,,33291.0,,105210.0,,6073.0,,111283.0,,629880.0,,1192854.0,,1064567.0,,128287.0,,,,152631.0,,0.0,,0.0,,0.0,,0.0,,,,,,, +OK,Oklahoma,202205,Y,P,N,32954.0,,0.0,,32954.0,,105989.0,,4944.0,,110933.0,,630802.0,,1203318.0,,1073669.0,,129649.0,,,,151703.0,,0.0,,0.0,,0.0,,0.0,,,,,,, +OK,Oklahoma,202205,Y,U,Y,32954.0,,0.0,,32954.0,,105989.0,,4944.0,,110933.0,,630802.0,,1203318.0,,1073669.0,,129649.0,,,,151703.0,,0.0,,0.0,,0.0,,0.0,,,,,,, +OK,Oklahoma,202206,Y,P,N,33608.0,,0.0,,33608.0,,74540.0,,5710.0,,80250.0,,633846.0,,1217200.0,,1086059.0,,131141.0,,,,101420.0,,0.0,,0.0,,0.0,,0.0,,,,,,, +OK,Oklahoma,202206,Y,U,Y,33608.0,,0.0,,33608.0,,74540.0,,5710.0,,80250.0,,633846.0,,1217200.0,,1086059.0,,131141.0,,,,101420.0,,0.0,,0.0,,0.0,,0.0,,,,,,, +OK,Oklahoma,202207,Y,P,N,30480.0,,0.0,,30480.0,,121877.0,,5292.0,,127169.0,,636199.0,,1231239.0,,1099656.0,,131583.0,,,,176401.0,,0.0,,0.0,,0.0,,0.0,,,,,,, +OK,Oklahoma,202207,Y,U,Y,30480.0,,0.0,,30480.0,,121877.0,,5292.0,,127169.0,,636199.0,,1231239.0,,1099656.0,,131583.0,,,,176401.0,,0.0,,0.0,,0.0,,0.0,,,,,,, +OK,Oklahoma,202208,Y,P,N,36179.0,,0.0,,36179.0,,141910.0,,8123.0,,150033.0,,639712.0,,1248544.0,,1116979.0,,131565.0,,,,203741.0,,0.0,,0.0,,0.0,,0.0,,,,,,, +OK,Oklahoma,202208,Y,U,Y,36179.0,,0.0,,36179.0,,141910.0,,8123.0,,150033.0,,639712.0,,1248544.0,,1116979.0,,131565.0,,,,203741.0,,0.0,,0.0,,0.0,,0.0,,,,,,, +OK,Oklahoma,202209,Y,P,N,32550.0,,0.0,,32550.0,,101724.0,,6120.0,,107844.0,,641611.0,,1261346.0,,1130866.0,,130480.0,,,,140724.0,,0.0,,0.0,,0.0,,0.0,,,,,,, +OK,Oklahoma,202209,Y,U,Y,32550.0,,0.0,,32550.0,,101724.0,,6120.0,,107844.0,,641611.0,,1261346.0,,1130866.0,,130480.0,,,,140724.0,,0.0,,0.0,,0.0,,0.0,,,,,,, +OK,Oklahoma,202210,Y,P,N,30441.0,,0.0,,30441.0,,124392.0,,5235.0,,129627.0,,643348.0,,1273309.0,,1141737.0,,131572.0,,,,177759.0,,0.0,,0.0,,0.0,,0.0,,,,,,, +OK,Oklahoma,202210,Y,U,Y,30441.0,,0.0,,30441.0,,124392.0,,5235.0,,129627.0,,643348.0,,1273309.0,,1141737.0,,131572.0,,,,177759.0,,0.0,,0.0,,0.0,,0.0,,,,,,, +OK,Oklahoma,202211,Y,P,N,31527.0,,0.0,,31527.0,,156193.0,,6935.0,,163128.0,,644424.0,,1284364.0,,1150917.0,,133447.0,,,,225856.0,,0.0,,0.0,,0.0,,0.0,,,,,,, +OK,Oklahoma,202211,Y,U,Y,31527.0,,0.0,,31527.0,,156193.0,,6935.0,,163128.0,,644424.0,,1284364.0,,1150917.0,,133447.0,,,,225856.0,,0.0,,0.0,,0.0,,0.0,,,,,,, +OK,Oklahoma,202212,Y,P,N,29842.0,,0.0,,29842.0,,80462.0,,6280.0,,86742.0,,646025.0,,1294297.0,,1160111.0,,134186.0,,,,111982.0,,0.0,,0.0,,0.0,,0.0,,,,,,, +OK,Oklahoma,202212,Y,U,Y,29842.0,,0.0,,29842.0,,80462.0,,6280.0,,86742.0,,646025.0,,1294297.0,,1160111.0,,134186.0,,,,111982.0,,0.0,,0.0,,0.0,,0.0,,,,,,, +OK,Oklahoma,202301,Y,P,N,33692.0,,0.0,,33692.0,,154810.0,,6476.0,,161286.0,,646255.0,,1304067.0,,1168858.0,,135209.0,,,,228973.0,,0.0,,0.0,,0.0,,0.0,,,,,,, +OK,Oklahoma,202301,Y,U,Y,33692.0,,0.0,,33692.0,,154810.0,,6476.0,,161286.0,,646255.0,,1304067.0,,1168858.0,,135209.0,,,,228973.0,,0.0,,0.0,,0.0,,0.0,,,,,,, +OK,Oklahoma,202302,Y,P,N,32913.0,,0.0,,32913.0,,149390.0,,7348.0,,156738.0,,648496.0,,1315882.0,,1178605.0,,137277.0,,,,219447.0,,0.0,,0.0,,0.0,,0.0,,,,,,, +OK,Oklahoma,202302,Y,U,Y,32913.0,,0.0,,32913.0,,149390.0,,7348.0,,156738.0,,648496.0,,1315882.0,,1178605.0,,137277.0,,,,219447.0,,0.0,,0.0,,0.0,,0.0,,,,,,, +OK,Oklahoma,202303,Y,P,N,44512.0,,0.0,,44512.0,,215569.0,,7896.0,,223465.0,,651170.0,,1326908.0,,1183657.0,,143251.0,,,,312707.0,,0.0,,0.0,,0.0,,0.0,,72732.0,,0.0,,0.018, +OK,Oklahoma,202303,Y,U,Y,44512.0,,0.0,,44512.0,,215569.0,,7896.0,,223465.0,,651170.0,,1326908.0,,1183657.0,,143251.0,,,,312707.0,,0.0,,0.0,,0.0,,0.0,,72732.0,,0.0,,0.018, +OK,Oklahoma,202304,Y,P,N,37194.0,,0.0,,37194.0,,118158.0,,6326.0,,124484.0,,652557.0,,1336866.0,,1195564.0,,141302.0,,,,167047.0,,0.0,,0.0,,0.0,,0.0,,66110.0,,0.0,,0.023, +OK,Oklahoma,202304,Y,U,Y,37194.0,,0.0,,37194.0,,118158.0,,6326.0,,124484.0,,652557.0,,1336866.0,,1195564.0,,141302.0,,,,167047.0,,0.0,,0.0,,0.0,,0.0,,66110.0,,0.0,,0.023, +OK,Oklahoma,202305,Y,P,N,48232.0,,0.0,,48232.0,,76490.0,,7543.0,,84033.0,,638585.0,,1313103.0,,1167701.0,,145402.0,,,,110417.0,,0.0,,0.0,,0.0,,0.0,,82409.0,,0.0,,0.005, +OK,Oklahoma,202305,Y,U,Y,48232.0,,0.0,,48232.0,,76490.0,,7543.0,,84033.0,,638585.0,,1313103.0,,1167701.0,,145402.0,,,,110417.0,,0.0,,0.0,,0.0,,0.0,,82409.0,,0.0,,0.005, +OK,Oklahoma,202306,Y,P,N,53165.0,,0.0,,53165.0,,89499.0,,7978.0,,97477.0,,630837.0,,1288071.0,,1143233.0,,144838.0,,,,126560.0,,0.0,,0.0,,0.0,,0.0,,89925.0,,0.0,,0.009, +OK,Oklahoma,202306,Y,U,Y,53165.0,,0.0,,53165.0,,89499.0,,7978.0,,97477.0,,630837.0,,1288071.0,,1143233.0,,144838.0,,,,126560.0,,0.0,,0.0,,0.0,,0.0,,89925.0,,0.0,,0.009, +OK,Oklahoma,202307,Y,P,N,55653.0,,0.0,,55653.0,,111925.0,,12410.0,,124335.0,,622696.0,,1267103.0,,1125364.0,,141739.0,,,,167289.0,,0.0,,0.0,,0.0,,0.0,,95301.0,,0.0,,0.012, +OK,Oklahoma,202307,Y,U,Y,55653.0,,0.0,,55653.0,,111925.0,,12410.0,,124335.0,,622696.0,,1267103.0,,1125364.0,,141739.0,,,,167289.0,,0.0,,0.0,,0.0,,0.0,,95301.0,,0.0,,0.012, +OK,Oklahoma,202308,Y,P,N,68403.0,,0.0,,68403.0,,91330.0,,13119.0,,104449.0,,599634.0,,1208647.0,,1069861.0,,138786.0,,,,142716.0,,0.0,,0.0,,0.0,,0.0,,138569.0,,3.0,,0.077, +OK,Oklahoma,202308,Y,U,Y,68403.0,,0.0,,68403.0,,91330.0,,13119.0,,104449.0,,599634.0,,1208647.0,,1069861.0,,138786.0,,,,142716.0,,0.0,,0.0,,0.0,,0.0,,138569.0,,3.0,,0.077, +OK,Oklahoma,202309,Y,P,N,61865.0,,0.0,,61865.0,,76843.0,,11223.0,,88066.0,,573337.0,,1138968.0,,1007984.0,,130984.0,,,,118912.0,,0.0,,0.0,,0.0,,0.0,,130694.0,,5.0,,0.106, +OK,Oklahoma,202309,Y,U,Y,61865.0,,0.0,,61865.0,,76843.0,,11223.0,,88066.0,,573337.0,,1138968.0,,1007984.0,,130984.0,,,,118912.0,,0.0,,0.0,,0.0,,0.0,,130694.0,,5.0,,0.106, +OK,Oklahoma,202310,Y,P,N,66780.0,,0.0,,66780.0,,81502.0,,12410.0,,93912.0,,553344.0,,1087062.0,,958472.0,,128590.0,,,,134158.0,,0.0,,0.0,,0.0,,0.0,,150997.0,,11.0,,0.162, +OK,Oklahoma,202310,Y,U,Y,66780.0,,0.0,,66780.0,,81502.0,,12410.0,,93912.0,,553344.0,,1087062.0,,958472.0,,128590.0,,,,134158.0,,0.0,,0.0,,0.0,,0.0,,150997.0,,11.0,,0.162, +OK,Oklahoma,202311,Y,P,N,63116.0,,0.0,,63116.0,,79797.0,,11926.0,,91723.0,,538297.0,,1035122.0,,911914.0,,123208.0,,,,133729.0,,0.0,,0.0,,0.0,,0.0,,144614.0,,22.0,,0.25, +OK,Oklahoma,202311,Y,U,Y,63116.0,,0.0,,63116.0,,79797.0,,11926.0,,91723.0,,538297.0,,1035122.0,,911914.0,,123208.0,,,,133729.0,,0.0,,0.0,,0.0,,0.0,,144614.0,,22.0,,0.25, +OK,Oklahoma,202312,Y,P,N,55644.0,,0.0,,55644.0,,87706.0,,12095.0,,99801.0,,539144.0,,1039621.0,,919466.0,,120155.0,,,,137456.0,,0.0,,0.0,,0.0,,0.0,,121298.0,,14.0,,0.19, +OK,Oklahoma,202312,Y,U,Y,55644.0,,0.0,,55644.0,,87706.0,,12095.0,,99801.0,,539144.0,,1039621.0,,919466.0,,120155.0,,,,137456.0,,0.0,,0.0,,0.0,,0.0,,121298.0,,14.0,,0.19, +OK,Oklahoma,202401,Y,P,N,74859.0,,0.0,,74859.0,,113054.0,,11068.0,,124122.0,,527385.0,,1019342.0,,926325.0,,93017.0,,,,182736.0,,0.0,,0.0,,0.0,,0.0,,176217.0,,27.0,,0.359, +OK,Oklahoma,202401,Y,U,Y,74859.0,,0.0,,74859.0,,113054.0,,11068.0,,124122.0,,527385.0,,1019342.0,,926325.0,,93017.0,,,,182736.0,,0.0,,0.0,,0.0,,0.0,,176217.0,,27.0,,0.359, +OK,Oklahoma,202402,Y,P,N,63427.0,,0.0,,63427.0,,78851.0,,7024.0,,85875.0,,514128.0,,995111.0,,914975.0,,80136.0,,,,126712.0,,0.0,,0.0,,0.0,,0.0,,166036.0,,46.0,,0.419, +OK,Oklahoma,202402,Y,U,Y,63427.0,,0.0,,63427.0,,78851.0,,7024.0,,85875.0,,514128.0,,995111.0,,914975.0,,80136.0,,,,126712.0,,0.0,,0.0,,0.0,,0.0,,166036.0,,46.0,,0.419, +OK,Oklahoma,202403,Y,P,N,63407.0,,0.0,,63407.0,,87011.0,,2624.0,,89635.0,,501584.0,,976509.0,,900463.0,,76046.0,,,,139730.0,,0.0,,0.0,,0.0,,0.0,,150970.0,,30.0,,0.362, +OK,Oklahoma,202403,Y,U,Y,63407.0,,0.0,,63407.0,,87011.0,,2624.0,,89635.0,,501584.0,,976509.0,,900463.0,,76046.0,,,,139730.0,,0.0,,0.0,,0.0,,0.0,,150970.0,,30.0,,0.362, +OK,Oklahoma,202404,Y,P,N,56940.0,,0.0,,56940.0,,74487.0,,6900.0,,81387.0,,508774.0,,984417.0,,908492.0,,75925.0,,,,114948.0,,0.0,,0.0,,0.0,,0.0,,122709.0,,17.0,,0.318, +OK,Oklahoma,202404,Y,U,Y,56940.0,,0.0,,56940.0,,74487.0,,6900.0,,81387.0,,508774.0,,984417.0,,908492.0,,75925.0,,,,114948.0,,0.0,,0.0,,0.0,,0.0,,122709.0,,17.0,,0.318, +OK,Oklahoma,202405,Y,P,N,52116.0,,0.0,,52116.0,,66363.0,,6848.0,,73211.0,,515128.0,,991317.0,,917746.0,,73571.0,,,,101579.0,,0.0,,0.0,,0.0,,0.0,,97957.0,,6.0,,0.157, +OK,Oklahoma,202405,Y,U,Y,52116.0,,0.0,,52116.0,,66363.0,,6848.0,,73211.0,,515128.0,,991317.0,,917746.0,,73571.0,,,,101579.0,,0.0,,0.0,,0.0,,0.0,,97957.0,,6.0,,0.157, +OK,Oklahoma,202406,Y,P,N,49944.0,,0.0,,49944.0,,70555.0,,8040.0,,78595.0,,516805.0,,989605.0,,915806.0,,73799.0,,,,109225.0,,0.0,,0.0,,0.0,,0.0,,88214.0,,7.0,,0.132, +OK,Oklahoma,202406,Y,U,Y,49944.0,,0.0,,49944.0,,70555.0,,8040.0,,78595.0,,516805.0,,989605.0,,915806.0,,73799.0,,,,109225.0,,0.0,,0.0,,0.0,,0.0,,88214.0,,7.0,,0.132, +OK,Oklahoma,202407,Y,P,N,56882.0,,0.0,,56882.0,,80878.0,,8468.0,,89346.0,,519241.0,,987674.0,,915310.0,,72364.0,,468433.0,,125304.0,,0.0,,0.0,,0.0,,0.0,,108918.0,,16.0,,0.211, +OK,Oklahoma,202407,Y,U,Y,56882.0,,0.0,,56882.0,,80878.0,,8468.0,,89346.0,,519241.0,,987674.0,,915310.0,,72364.0,,468433.0,,125304.0,,0.0,,0.0,,0.0,,0.0,,108918.0,,16.0,,0.211, +OK,Oklahoma,202408,Y,P,N,57393.0,,0.0,,57393.0,,85040.0,,9414.0,,94454.0,,522801.0,,987423.0,,914461.0,,72962.0,,464622.0,,126657.0,,0.0,,0.0,,0.0,,0.0,,111117.0,,19.0,,0.273, +OK,Oklahoma,202408,Y,U,Y,57393.0,,0.0,,57393.0,,85040.0,,9414.0,,94454.0,,522801.0,,987423.0,,914461.0,,72962.0,,464622.0,,126657.0,,0.0,,0.0,,0.0,,0.0,,111117.0,,19.0,,0.273, +OK,Oklahoma,202409,Y,P,N,52802.0,,0.0,,52802.0,,81375.0,,9436.0,,90811.0,,523446.0,,987371.0,,908621.0,,78750.0,,463925.0,,121205.0,,0.0,,0.0,,0.0,,0.0,,105402.0,,27.0,,0.336, +OK,Oklahoma,202409,Y,U,Y,52802.0,,0.0,,52802.0,,81375.0,,9436.0,,90811.0,,523446.0,,987371.0,,908621.0,,78750.0,,463925.0,,121205.0,,0.0,,0.0,,0.0,,0.0,,105402.0,,27.0,,0.336, +OK,Oklahoma,202410,Y,P,N,55819.0,,0.0,,55819.0,,79849.0,,9089.0,,88938.0,,524284.0,,994551.0,,915469.0,,79082.0,,470267.0,,120436.0,,0.0,,0.0,,0.0,,0.0,,107561.0,,23.0,,0.228, +OK,Oklahoma,202410,Y,U,Y,55819.0,,0.0,,55819.0,,79849.0,,9089.0,,88938.0,,524284.0,,994551.0,,915469.0,,79082.0,,470267.0,,120436.0,,0.0,,0.0,,0.0,,0.0,,107561.0,,23.0,,0.228, +OK,Oklahoma,202411,Y,P,N,48017.0,,0.0,,48017.0,,79573.0,,9853.0,,89426.0,,522747.0,,989193.0,,910345.0,,78848.0,,466446.0,,125396.0,,0.0,,0.0,,0.0,,0.0,,94407.0,,36.0,,0.217, +OK,Oklahoma,202411,Y,U,Y,48017.0,,0.0,,48017.0,,79573.0,,9853.0,,89426.0,,522747.0,,989193.0,,910345.0,,78848.0,,466446.0,,125396.0,,0.0,,0.0,,0.0,,0.0,,94407.0,,36.0,,0.217, +OK,Oklahoma,202412,Y,P,N,51095.0,,0.0,,51095.0,,69073.0,,8211.0,,77284.0,,522945.0,,988875.0,,904950.0,,83925.0,,465930.0,,111019.0,,0.0,,0.0,,0.0,,0.0,,105657.0,,24.0,,0.126, +OK,Oklahoma,202412,Y,U,Y,51095.0,,0.0,,51095.0,,69073.0,,8211.0,,77284.0,,522945.0,,988875.0,,904950.0,,83925.0,,465930.0,,111019.0,,0.0,,0.0,,0.0,,0.0,,105657.0,,24.0,,0.126, +OK,Oklahoma,202501,Y,P,N,60259.0,,0.0,,60259.0,,92270.0,,10660.0,,102930.0,,520339.0,,993379.0,,913858.0,,79521.0,,473040.0,,144296.0,,0.0,,0.0,,0.0,,0.0,,218824.0,New call center added in reporting period,21.0,New call center added in reporting period,0.096,New call center added in reporting period +OK,Oklahoma,202501,Y,U,Y,60259.0,,0.0,,60259.0,,92270.0,,10660.0,,102930.0,,520339.0,,993379.0,,913858.0,,79521.0,,473040.0,,144296.0,,0.0,,0.0,,0.0,,0.0,,218824.0,New call center added in reporting period,21.0,New call center added in reporting period,0.096,New call center added in reporting period +OK,Oklahoma,202502,Y,P,N,49669.0,,0.0,,49669.0,,78259.0,,15317.0,,93576.0,,513352.0,,978307.0,,898961.0,,79346.0,,464955.0,,118518.0,,0.0,,0.0,,0.0,,0.0,,177897.0,,16.0,,0.087, +OK,Oklahoma,202502,Y,U,Y,49669.0,,0.0,,49669.0,,78259.0,,15317.0,,93576.0,,513352.0,,978307.0,,898961.0,,79346.0,,464955.0,,118518.0,,0.0,,0.0,,0.0,,0.0,,177897.0,,16.0,,0.087, +OK,Oklahoma,202503,Y,P,N,54723.0,,0.0,,54723.0,,80653.0,,9081.0,,89734.0,,516002.0,,979463.0,,896265.0,,83198.0,,463461.0,,125159.0,,0.0,,0.0,,0.0,,0.0,,193478.0,,16.0,,0.087, +OK,Oklahoma,202503,Y,U,Y,54723.0,,0.0,,54723.0,,80653.0,,9081.0,,89734.0,,516002.0,,979463.0,,896265.0,,83198.0,,463461.0,,125159.0,,0.0,,0.0,,0.0,,0.0,,193478.0,,16.0,,0.087, +OK,Oklahoma,202504,Y,P,N,53896.0,,0.0,,53896.0,,80613.0,,9046.0,,89659.0,,519085.0,,993802.0,,912502.0,,81300.0,,474717.0,,118909.0,,0.0,,0.0,,0.0,,0.0,,184198.0,,8.0,,0.066, +OK,Oklahoma,202504,Y,U,Y,53896.0,,0.0,,53896.0,,80613.0,,9046.0,,89659.0,,519085.0,,993802.0,,912502.0,,81300.0,,474717.0,,118909.0,,0.0,,0.0,,0.0,,0.0,,184198.0,,8.0,,0.066, +OK,Oklahoma,202505,Y,P,N,54652.0,,0.0,,54652.0,,84255.0,,8985.0,,93240.0,,522521.0,,1010069.0,,929813.0,,80256.0,,487548.0,,120924.0,,0.0,,0.0,,0.0,,0.0,,165713.0,,5.0,,0.063, +OK,Oklahoma,202505,Y,U,Y,54652.0,,0.0,,54652.0,,84255.0,,8985.0,,93240.0,,522521.0,,1010069.0,,929813.0,,80256.0,,487548.0,,120924.0,,0.0,,0.0,,0.0,,0.0,,165713.0,,5.0,,0.063, +OK,Oklahoma,202506,Y,P,N,53846.0,,0.0,,53846.0,,81560.0,,8802.0,,90362.0,,523026.0,,1008700.0,,933812.0,,74888.0,,485674.0,,120888.0,,0.0,,0.0,,0.0,,0.0,,180814.0,,17.0,,0.073, +OK,Oklahoma,202506,Y,U,Y,53846.0,,0.0,,53846.0,,81560.0,,8802.0,,90362.0,,523026.0,,1008700.0,,933812.0,,74888.0,,485674.0,,120888.0,,0.0,,0.0,,0.0,,0.0,,180814.0,,17.0,,0.073, +OK,Oklahoma,202507,Y,P,N,54418.0,,0.0,,54418.0,,81831.0,,9270.0,,91101.0,,521694.0,,1002153.0,,929044.0,,73109.0,,480459.0,,122697.0,,0.0,,0.0,,0.0,,0.0,,198063.0,,24.0,,0.091, +OK,Oklahoma,202507,Y,U,Y,54418.0,,0.0,,54418.0,,81831.0,,9270.0,,91101.0,,521694.0,,1002153.0,,929044.0,,73109.0,,480459.0,,122697.0,,0.0,,0.0,,0.0,,0.0,,198063.0,,24.0,,0.091, +OK,Oklahoma,202508,Y,P,N,54552.0,,0.0,,54552.0,,81684.0,,9528.0,,91212.0,,521111.0,,992278.0,,917491.0,,74787.0,,471167.0,,122633.0,,0.0,,0.0,,0.0,,0.0,,191816.0,,29.0,,0.121, +OK,Oklahoma,202508,Y,U,Y,54552.0,,0.0,,54552.0,,81684.0,,9528.0,,91212.0,,521111.0,,992278.0,,917491.0,,74787.0,,471167.0,,122633.0,,0.0,,0.0,,0.0,,0.0,,191816.0,,29.0,,0.121, +OK,Oklahoma,202509,Y,P,N,44588.0,,0.0,,44588.0,,72389.0,,9551.0,,81940.0,,520695.0,,989984.0,,910072.0,,79912.0,,469289.0,,108189.0,,0.0,,0.0,,0.0,,0.0,,188356.0,,29.0,,0.154, +OK,Oklahoma,202509,Y,U,Y,44588.0,,0.0,,44588.0,,72389.0,,9551.0,,81940.0,,520695.0,,989984.0,,910072.0,,79912.0,,469289.0,,108189.0,,0.0,,0.0,,0.0,,0.0,,188356.0,,29.0,,0.154, +OK,Oklahoma,202510,Y,P,N,44038.0,,0.0,,44038.0,,68135.0,,7755.0,,75890.0,,516707.0,,989060.0,,919727.0,,69333.0,,472353.0,,109267.0,,0.0,,0.0,,0.0,,0.0,,185426.0,,31.0,,0.168, +OR,Oregon,201309,N,U,Y,,,,,,,,,,,,,,,626356.0,,,,,,,,,,,,,,,,,,,,,,, +OR,Oregon,201706,Y,P,N,23479.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,23479.0,Does Not Include All Non-MAGI Applications,43316.0,"Count is of Households, Not Individuals; Does Not Include All Non-MAGI Determinations Made At Application",3580.0,,46896.0,Does Not Include All Non-MAGI Determinations Made At Application,421972.0,,992878.0,,878452.0,,114426.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,201706,Y,U,Y,23479.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,23479.0,Does Not Include All Non-MAGI Applications,42186.0,"Count is of Households, Not Individuals; Does Not Include All Non-MAGI Determinations Made At Application",3407.0,,45593.0,Does Not Include All Non-MAGI Determinations Made At Application,427575.0,,1006080.0,,890245.0,,115835.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,201707,Y,P,N,24891.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,24891.0,Does Not Include All Non-MAGI Applications,44515.0,"Count is of Households, Not Individuals; Does Not Include All Non-MAGI Determinations Made At Application",4336.0,,48851.0,Does Not Include All Non-MAGI Determinations Made At Application,417903.0,,980606.0,,863880.0,,116726.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,201707,Y,U,Y,24891.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,24891.0,Does Not Include All Non-MAGI Applications,43035.0,"Count is of Households, Not Individuals; Does Not Include All Non-MAGI Determinations Made At Application",4110.0,,47145.0,Does Not Include All Non-MAGI Determinations Made At Application,421828.0,,989582.0,,872063.0,,117519.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,201708,Y,P,N,26213.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,26213.0,Does Not Include All Non-MAGI Applications,43176.0,"Count is of Households, Not Individuals; Does Not Include All Non-MAGI Determinations Made At Application",3918.0,,47094.0,Does Not Include All Non-MAGI Determinations Made At Application,412310.0,,964897.0,,846779.0,,118118.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,201708,Y,U,Y,26213.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,26213.0,Does Not Include All Non-MAGI Applications,42006.0,"Count is of Households, Not Individuals; Does Not Include All Non-MAGI Determinations Made At Application",3766.0,,45772.0,Does Not Include All Non-MAGI Determinations Made At Application,416977.0,,974751.0,,855736.0,,119015.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,201709,Y,P,N,22421.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,22421.0,Does Not Include All Non-MAGI Applications,33879.0,"Count is of Households, Not Individuals; Does Not Include All Non-MAGI Determinations Made At Application",2765.0,,36644.0,Does Not Include All Non-MAGI Determinations Made At Application,411676.0,,956469.0,,837228.0,,119241.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,201709,Y,U,Y,22421.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,22421.0,Does Not Include All Non-MAGI Applications,32875.0,"Count is of Households, Not Individuals; Does Not Include All Non-MAGI Determinations Made At Application",2622.0,,35497.0,Does Not Include All Non-MAGI Determinations Made At Application,417128.0,,968409.0,,848151.0,,120258.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,201710,Y,P,N,22553.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,22553.0,Does Not Include All Non-MAGI Applications,32479.0,"Count is of Households, Not Individuals; Does Not Include All Non-MAGI Determinations Made At Application",2652.0,,35131.0,Does Not Include All Non-MAGI Determinations Made At Application,415537.0,,962577.0,,840939.0,,121638.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,201710,Y,U,Y,22553.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,22553.0,Does Not Include All Non-MAGI Applications,31724.0,"Count is of Households, Not Individuals; Does Not Include All Non-MAGI Determinations Made At Application",2539.0,,34263.0,Does Not Include All Non-MAGI Determinations Made At Application,418543.0,,969692.0,,847369.0,,122323.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,201711,Y,P,N,19138.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,19138.0,Does Not Include All Non-MAGI Applications,33416.0,"Count is of Households, Not Individuals; Does Not Include All Non-MAGI Determinations Made At Application",2650.0,,36066.0,Does Not Include All Non-MAGI Determinations Made At Application,415183.0,,962992.0,,840230.0,,122762.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,201711,Y,U,Y,19138.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,19138.0,Does Not Include All Non-MAGI Applications,33136.0,"Count is of Households, Not Individuals; Does Not Include All Non-MAGI Determinations Made At Application",2640.0,,35776.0,Does Not Include All Non-MAGI Determinations Made At Application,419727.0,,974672.0,,850758.0,,123914.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,201712,Y,P,N,16834.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,16834.0,Does Not Include All Non-MAGI Applications,36207.0,"Count is of Households, Not Individuals; Does Not Include All Non-MAGI Determinations Made At Application",3064.0,,39271.0,Does Not Include All Non-MAGI Determinations Made At Application,414800.0,,964704.0,,840812.0,,123892.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,201712,Y,U,Y,16834.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,16834.0,Does Not Include All Non-MAGI Applications,35426.0,"Count is of Households, Not Individuals; Does Not Include All Non-MAGI Determinations Made At Application",3032.0,,38458.0,Does Not Include All Non-MAGI Determinations Made At Application,419719.0,,976182.0,,851016.0,,125166.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,201801,Y,P,N,14929.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,14929.0,Does Not Include All Non-MAGI Applications,39327.0,"Count is of Households, Not Individuals; Does Not Include All Non-MAGI Determinations Made At Application",3725.0,,43052.0,Does Not Include All Non-MAGI Determinations Made At Application,414994.0,,962505.0,,837997.0,,124508.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,201801,Y,U,Y,14929.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,14929.0,Does Not Include All Non-MAGI Applications,31100.0,"Count is of Households, Not Individuals; Does Not Include All Non-MAGI Determinations Made At Application",2797.0,,33897.0,Does Not Include All Non-MAGI Determinations Made At Application,419803.0,,973460.0,,847632.0,,125828.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,201802,Y,P,N,12653.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,12653.0,Does Not Include All Non-MAGI Applications,26046.0,"Count is of Households, Not Individuals; Does Not Include All Non-MAGI Determinations Made At Application",2372.0,,28418.0,Does Not Include All Non-MAGI Determinations Made At Application,414737.0,,960696.0,,836064.0,,124632.0,,,,6152.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1832.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1923.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1659.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2276.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +OR,Oregon,201802,Y,U,Y,12653.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,12653.0,Does Not Include All Non-MAGI Applications,25328.0,"Count is of Households, Not Individuals; Does Not Include All Non-MAGI Determinations Made At Application",2265.0,,27593.0,Does Not Include All Non-MAGI Determinations Made At Application,419307.0,,970752.0,,844832.0,,125920.0,,,,6152.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1832.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1923.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1659.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2276.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +OR,Oregon,201803,Y,P,N,13143.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,13143.0,Does Not Include All Non-MAGI Applications,25749.0,"Count is of Households, Not Individuals; Does Not Include All Non-MAGI Determinations Made At Application",2461.0,,28210.0,Does Not Include All Non-MAGI Determinations Made At Application,413488.0,,961079.0,,836724.0,,124355.0,,,,6759.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2791.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1714.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2076.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1742.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +OR,Oregon,201803,Y,U,Y,13143.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,13143.0,Does Not Include All Non-MAGI Applications,25248.0,"Count is of Households, Not Individuals; Does Not Include All Non-MAGI Determinations Made At Application",2397.0,,27645.0,Does Not Include All Non-MAGI Determinations Made At Application,419033.0,,972830.0,,847100.0,,125730.0,,,,6759.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2791.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1714.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2076.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1742.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +OR,Oregon,201804,Y,P,N,12199.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,12199.0,Does Not Include All Non-MAGI Applications,23122.0,"Count is of Households, Not Individuals; Does Not Include All Non-MAGI Determinations Made At Application",1953.0,,25075.0,Does Not Include All Non-MAGI Determinations Made At Application,415158.0,,966695.0,,841912.0,,124783.0,,,,5810.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2059.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1364.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1668.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1825.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +OR,Oregon,201804,Y,U,Y,12199.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,12199.0,Does Not Include All Non-MAGI Applications,22554.0,"Count is of Households, Not Individuals; Does Not Include All Non-MAGI Determinations Made At Application",1872.0,,24426.0,Does Not Include All Non-MAGI Determinations Made At Application,419171.0,,975183.0,,849378.0,,125805.0,,,,5810.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2059.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1364.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1668.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1825.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +OR,Oregon,201805,Y,P,N,11459.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,11459.0,Does Not Include All Non-MAGI Applications,22944.0,"Count is of Households, Not Individuals; Does Not Include All Non-MAGI Determinations Made At Application",2138.0,,25082.0,Does Not Include All Non-MAGI Determinations Made At Application,413573.0,,965922.0,,841253.0,,124669.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,201805,Y,U,Y,11459.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,11459.0,Does Not Include All Non-MAGI Applications,22611.0,"Count is of Households, Not Individuals; Does Not Include All Non-MAGI Determinations Made At Application",2067.0,,24678.0,Does Not Include All Non-MAGI Determinations Made At Application,417928.0,,974631.0,,848838.0,,125793.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,201806,Y,P,N,11492.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,11492.0,Does Not Include All Non-MAGI Applications,21065.0,"Count is of Households, Not Individuals; Does Not Include All Non-MAGI Determinations Made At Application",2054.0,,23119.0,Does Not Include All Non-MAGI Determinations Made At Application,411598.0,,963857.0,,839586.0,,124271.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,201806,Y,U,Y,11492.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,11492.0,Does Not Include All Non-MAGI Applications,20709.0,"Count is of Households, Not Individuals; Does Not Include All Non-MAGI Determinations Made At Application",1997.0,,22706.0,Does Not Include All Non-MAGI Determinations Made At Application,416792.0,,973948.0,,848155.0,,125793.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,201807,Y,P,N,12591.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,12591.0,Does Not Include All Non-MAGI Applications,21969.0,"Count is of Households, Not Individuals; Does Not Include All Non-MAGI Determinations Made At Application",2352.0,,24321.0,Does Not Include All Non-MAGI Determinations Made At Application,411129.0,,963773.0,,839405.0,,124368.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,201807,Y,U,Y,12591.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,12591.0,Does Not Include All Non-MAGI Applications,21628.0,"Count is of Households, Not Individuals; Does Not Include All Non-MAGI Determinations Made At Application",2242.0,,23870.0,Does Not Include All Non-MAGI Determinations Made At Application,415712.0,,972808.0,,846779.0,,126029.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,201808,Y,P,N,13427.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,13427.0,Does Not Include All Non-MAGI Applications,24808.0,"Count is of Households, Not Individuals; Does Not Include All Non-MAGI Determinations Made At Application",2680.0,,27488.0,Does Not Include All Non-MAGI Determinations Made At Application,410022.0,,963146.0,,839092.0,,124054.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,201808,Y,U,Y,13427.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,13427.0,Does Not Include All Non-MAGI Applications,24585.0,"Count is of Households, Not Individuals; Does Not Include All Non-MAGI Determinations Made At Application",2603.0,,27188.0,Does Not Include All Non-MAGI Determinations Made At Application,414720.0,,972190.0,,846403.0,,125787.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,201809,Y,P,N,12218.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,12218.0,Does Not Include All Non-MAGI Applications,20849.0,"Count is of Households, Not Individuals; Does Not Include All Non-MAGI Determinations Made At Application",2354.0,,23203.0,Does Not Include All Non-MAGI Determinations Made At Application,408760.0,,960905.0,,837037.0,,123868.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,201809,Y,U,Y,12218.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,12218.0,Does Not Include All Non-MAGI Applications,20437.0,"Count is of Households, Not Individuals; Does Not Include All Non-MAGI Determinations Made At Application",2284.0,,22721.0,Does Not Include All Non-MAGI Determinations Made At Application,414553.0,,972150.0,,846182.0,,125968.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,201810,Y,P,N,13712.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,13712.0,Does Not Include All Non-MAGI Applications,25282.0,"Count is of Households, Not Individuals; Does Not Include All Non-MAGI Determinations Made At Application",2802.0,,28084.0,Does Not Include All Non-MAGI Determinations Made At Application,408826.0,,961833.0,,837510.0,,124323.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,201810,Y,U,Y,13712.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,13712.0,Does Not Include All Non-MAGI Applications,24709.0,"Count is of Households, Not Individuals; Does Not Include All Non-MAGI Determinations Made At Application",2703.0,,27412.0,Does Not Include All Non-MAGI Determinations Made At Application,415900.0,,976814.0,,850025.0,,126789.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,201811,Y,P,N,13587.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,13587.0,Does Not Include All Non-MAGI Applications,23046.0,"Count is of Households, Not Individuals; Does Not Include All Non-MAGI Determinations Made At Application",2275.0,,25321.0,Does Not Include All Non-MAGI Determinations Made At Application,410560.0,,967235.0,,842458.0,,124777.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,201811,Y,U,Y,13587.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,13587.0,Does Not Include All Non-MAGI Applications,22491.0,"Count is of Households, Not Individuals; Does Not Include All Non-MAGI Determinations Made At Application",2206.0,,24697.0,Does Not Include All Non-MAGI Determinations Made At Application,415129.0,,977643.0,,851055.0,,126588.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,201812,Y,P,N,15055.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,15055.0,Does Not Include All Non-MAGI Applications,26837.0,"Count is of Households, Not Individuals; Does Not Include All Non-MAGI Determinations Made At Application",2651.0,,29488.0,Does Not Include All Non-MAGI Determinations Made At Application,408800.0,,966801.0,,842606.0,,124195.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,201812,Y,U,Y,15055.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,15055.0,Does Not Include All Non-MAGI Applications,26163.0,"Count is of Households, Not Individuals; Does Not Include All Non-MAGI Determinations Made At Application",2513.0,,28676.0,Does Not Include All Non-MAGI Determinations Made At Application,414548.0,,979447.0,,852749.0,,126698.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,201901,Y,P,N,14697.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,14697.0,Does Not Include All Non-MAGI Applications,26344.0,"Count is of Households, Not Individuals; Does Not Include All Non-MAGI Determinations Made At Application",3300.0,,29644.0,Does Not Include All Non-MAGI Determinations Made At Application,410266.0,,971345.0,,846069.0,,125276.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,201901,Y,U,Y,14697.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,14697.0,Does Not Include All Non-MAGI Applications,25812.0,"Count is of Households, Not Individuals; Does Not Include All Non-MAGI Determinations Made At Application",3185.0,,28997.0,Does Not Include All Non-MAGI Determinations Made At Application,416003.0,,983156.0,,855544.0,,127612.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,201902,Y,P,N,12177.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,12177.0,Does Not Include All Non-MAGI Applications,23723.0,"Count is of Households, Not Individuals; Does Not Include All Non-MAGI Determinations Made At Application",2980.0,,26703.0,Does Not Include All Non-MAGI Determinations Made At Application,411409.0,,973985.0,,847971.0,,126014.0,,,,5828.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1906.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1991.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1437.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3227.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +OR,Oregon,201902,Y,U,Y,12177.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,12177.0,Does Not Include All Non-MAGI Applications,23045.0,"Count is of Households, Not Individuals; Does Not Include All Non-MAGI Determinations Made At Application",2826.0,,25871.0,Does Not Include All Non-MAGI Determinations Made At Application,417334.0,,985423.0,,857163.0,,128260.0,,,,5828.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1906.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1991.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1437.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3227.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +OR,Oregon,201903,Y,P,N,13251.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,13251.0,Does Not Include All Non-MAGI Applications,25632.0,"Count is of Households, Not Individuals; Does Not Include All Non-MAGI Determinations Made At Application",3255.0,,28887.0,Does Not Include All Non-MAGI Determinations Made At Application,413235.0,,977708.0,,850833.0,,126875.0,,,,7253.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2471.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1849.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2242.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1256.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +OR,Oregon,201903,Y,U,Y,13251.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,13251.0,Does Not Include All Non-MAGI Applications,24999.0,"Count is of Households, Not Individuals; Does Not Include All Non-MAGI Determinations Made At Application",3123.0,,28122.0,Does Not Include All Non-MAGI Determinations Made At Application,418372.0,,988001.0,,859392.0,,128609.0,,,,7253.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2471.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1849.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2242.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1256.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +OR,Oregon,201904,Y,P,N,13425.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,13425.0,Does Not Include All Non-MAGI Applications,25610.0,"Count is of Households, Not Individuals; Does Not Include All Non-MAGI Determinations Made At Application",3059.0,,28669.0,Does Not Include All Non-MAGI Determinations Made At Application,415867.0,,982927.0,,854928.0,,127999.0,,,,7141.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2245.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2069.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1344.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",704.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +OR,Oregon,201904,Y,U,Y,13425.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,13425.0,Does Not Include All Non-MAGI Applications,24977.0,"Count is of Households, Not Individuals; Does Not Include All Non-MAGI Determinations Made At Application",2942.0,,27919.0,Does Not Include All Non-MAGI Determinations Made At Application,418214.0,,987718.0,,858912.0,,128806.0,,,,7141.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2245.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2069.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1344.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",704.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +OR,Oregon,201905,Y,P,N,12444.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,12444.0,Does Not Include All Non-MAGI Applications,21643.0,"Count is of Households, Not Individuals; Does Not Include All Non-MAGI Determinations Made At Application",2290.0,,23933.0,Does Not Include All Non-MAGI Determinations Made At Application,414743.0,,980658.0,,852490.0,,128168.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,201905,Y,U,Y,12444.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,12444.0,Does Not Include All Non-MAGI Applications,21176.0,"Count is of Households, Not Individuals; Does Not Include All Non-MAGI Determinations Made At Application",2208.0,,23384.0,Does Not Include All Non-MAGI Determinations Made At Application,417590.0,,986415.0,,857377.0,,129038.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,201906,Y,P,N,11376.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,11376.0,Does Not Include All Non-MAGI Applications,19480.0,"Count is of Households, Not Individuals; Does Not Include All Non-MAGI Determinations Made At Application",2023.0,,21503.0,Does Not Include All Non-MAGI Determinations Made At Application,414215.0,,980671.0,,852567.0,,128104.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,201906,Y,U,Y,11376.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,11376.0,Does Not Include All Non-MAGI Applications,18968.0,"Count is of Households, Not Individuals; Does Not Include All Non-MAGI Determinations Made At Application",1929.0,,20897.0,Does Not Include All Non-MAGI Determinations Made At Application,416010.0,,984652.0,,856078.0,,128574.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,201907,Y,P,N,12728.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,12728.0,Does Not Include All Non-MAGI Applications,20523.0,"Count is of Households, Not Individuals; Does Not Include All Non-MAGI Determinations Made At Application",1885.0,,22408.0,Does Not Include All Non-MAGI Determinations Made At Application,413216.0,,981843.0,,854213.0,,127630.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,201907,Y,U,Y,12728.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,12728.0,Does Not Include All Non-MAGI Applications,20432.0,"Count is of Households, Not Individuals; Does Not Include All Non-MAGI Determinations Made At Application",1831.0,,22263.0,Does Not Include All Non-MAGI Determinations Made At Application,415755.0,,986744.0,,858225.0,,128519.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,201908,Y,P,N,12651.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,12651.0,Does Not Include All Non-MAGI Applications,22242.0,"Count is of Households, Not Individuals; Does Not Include All Non-MAGI Determinations Made At Application",2483.0,,24725.0,Does Not Include All Non-MAGI Determinations Made At Application,412474.0,,981102.0,,853802.0,,127300.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,201908,Y,U,Y,12651.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,12651.0,Does Not Include All Non-MAGI Applications,21686.0,"Count is of Households, Not Individuals; Does Not Include All Non-MAGI Determinations Made At Application",2364.0,,24050.0,Does Not Include All Non-MAGI Determinations Made At Application,415366.0,,986569.0,,858240.0,,128329.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,201909,Y,P,N,12471.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,12471.0,Does Not Include All Non-MAGI Applications,21017.0,"Count is of Households, Not Individuals; Does Not Include All Non-MAGI Determinations Made At Application",2374.0,,23391.0,Does Not Include All Non-MAGI Determinations Made At Application,412855.0,,982201.0,,854456.0,,127745.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,201909,Y,U,Y,12471.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,12471.0,Does Not Include All Non-MAGI Applications,20461.0,"Count is of Households, Not Individuals; Does Not Include All Non-MAGI Determinations Made At Application",2264.0,,22725.0,Does Not Include All Non-MAGI Determinations Made At Application,416640.0,,989593.0,,860536.0,,129057.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,201910,Y,P,N,13213.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,13213.0,Does Not Include All Non-MAGI Applications,21895.0,"Count is of Households, Not Individuals; Does Not Include All Non-MAGI Determinations Made At Application",2565.0,,24460.0,Does Not Include All Non-MAGI Determinations Made At Application,414216.0,,986932.0,,858485.0,,128447.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,201910,Y,U,Y,13213.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,13213.0,Does Not Include All Non-MAGI Applications,21502.0,"Count is of Households, Not Individuals; Does Not Include All Non-MAGI Determinations Made At Application",2486.0,,23988.0,Does Not Include All Non-MAGI Determinations Made At Application,416723.0,,991798.0,,862457.0,,129341.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,201911,Y,P,N,11815.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,11815.0,Does Not Include All Non-MAGI Applications,19490.0,"Count is of Households, Not Individuals; Does Not Include All Non-MAGI Determinations Made At Application",2170.0,,21660.0,Does Not Include All Non-MAGI Determinations Made At Application,412259.0,,984653.0,,856999.0,,127654.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,201911,Y,U,Y,11815.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,11815.0,Does Not Include All Non-MAGI Applications,18817.0,"Count is of Households, Not Individuals; Does Not Include All Non-MAGI Determinations Made At Application",2054.0,,20871.0,Does Not Include All Non-MAGI Determinations Made At Application,415532.0,,991693.0,,862797.0,,128896.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,201912,Y,P,N,13083.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,13083.0,Does Not Include All Non-MAGI Applications,22644.0,"Count is of Households, Not Individuals; Does Not Include All Non-MAGI Determinations Made At Application",2433.0,,25077.0,Does Not Include All Non-MAGI Determinations Made At Application,410756.0,,985201.0,,857943.0,,127258.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,201912,Y,U,Y,13083.0,,0.0,,13083.0,,21911.0,,2287.0,,24198.0,,415843.0,,996363.0,,867048.0,,129315.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,202001,Y,P,N,12984.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,12984.0,Does Not Include All Non-MAGI Applications,22353.0,"Count is of Households, Not Individuals; Does Not Include All Non-MAGI Determinations Made At Application",2691.0,,25044.0,Does Not Include All Non-MAGI Determinations Made At Application,413276.0,,992863.0,,864655.0,,128208.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,202001,Y,U,Y,12984.0,,0.0,,12984.0,,21768.0,,2557.0,,24325.0,,417145.0,,1000654.0,,870862.0,,129792.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,202002,Y,P,N,11210.0,,0.0,,11210.0,,20823.0,,2902.0,,23725.0,,413637.0,,995508.0,,867292.0,,128216.0,,,,6528.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2175.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2357.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1233.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",887.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +OR,Oregon,202002,Y,U,Y,11210.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,11210.0,Does Not Include All Non-MAGI Applications,20383.0,"Count is of Households, Not Individuals; Does Not Include All Non-MAGI Determinations Made At Application",2737.0,,23120.0,Does Not Include All Non-MAGI Determinations Made At Application,416860.0,,1002190.0,,872851.0,,129339.0,,,,6528.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2175.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2357.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1233.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",887.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +OR,Oregon,202003,Y,P,N,13051.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,13051.0,Does Not Include All Non-MAGI Applications,23413.0,"Count is of Households, Not Individuals; Does Not Include All Non-MAGI Determinations Made At Application",2520.0,,25933.0,Does Not Include All Non-MAGI Determinations Made At Application,414455.0,,1001783.0,,873242.0,,128541.0,,,,7549.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3196.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2221.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",879.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",343.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +OR,Oregon,202003,Y,U,Y,13051.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,13051.0,Does Not Include All Non-MAGI Applications,22393.0,"Count is of Households, Not Individuals; Does Not Include All Non-MAGI Determinations Made At Application",2292.0,,24685.0,Does Not Include All Non-MAGI Determinations Made At Application,417475.0,,1009118.0,,879303.0,,129815.0,,,,7549.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3196.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2221.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",879.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",343.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +OR,Oregon,202004,Y,P,N,11974.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,11974.0,Does Not Include All Non-MAGI Applications,30904.0,"Count is of Households, Not Individuals; Does Not Include All Non-MAGI Determinations Made At Application",2602.0,,33506.0,Does Not Include All Non-MAGI Determinations Made At Application,420389.0,,1023689.0,,894474.0,,129215.0,,,,9322.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2371.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1636.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",624.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",465.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +OR,Oregon,202004,Y,U,Y,11974.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,11974.0,Does Not Include All Non-MAGI Applications,29652.0,"Count is of Households, Not Individuals; Does Not Include All Non-MAGI Determinations Made At Application",2404.0,,32056.0,Does Not Include All Non-MAGI Determinations Made At Application,422548.0,,1029603.0,,899318.0,,130285.0,,,,9322.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2371.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1636.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",624.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",465.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +OR,Oregon,202005,Y,P,N,9368.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,9368.0,Does Not Include All Non-MAGI Applications,18133.0,"Count is of Households, Not Individuals; Does Not Include All Non-MAGI Determinations Made At Application",1854.0,,19987.0,Does Not Include All Non-MAGI Determinations Made At Application,425248.0,,1040847.0,,911412.0,,129435.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,202005,Y,U,Y,9368.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,9368.0,Does Not Include All Non-MAGI Applications,17563.0,"Count is of Households, Not Individuals; Does Not Include All Non-MAGI Determinations Made At Application",1780.0,,19343.0,Does Not Include All Non-MAGI Determinations Made At Application,425922.0,,1042719.0,,913167.0,,129552.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,202006,Y,P,N,9945.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,9945.0,Does Not Include All Non-MAGI Applications,15022.0,"Count is of Households, Not Individuals; Does Not Include All Non-MAGI Determinations Made At Application",912.0,,15934.0,Does Not Include All Non-MAGI Determinations Made At Application,428089.0,,1053931.0,,923362.0,,130569.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,202006,Y,U,Y,9945.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,9945.0,Does Not Include All Non-MAGI Applications,46069.0,"Count is of Households, Not Individuals; Does Not Include All Non-MAGI Determinations Made At Application",3687.0,,49756.0,Does Not Include All Non-MAGI Determinations Made At Application,428812.0,,1055751.0,,925178.0,,130573.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,202007,Y,P,N,12460.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,12460.0,Does Not Include All Non-MAGI Applications,52671.0,"Count is of Households, Not Individuals; Does Not Include All Non-MAGI Determinations Made At Application",4009.0,,56680.0,Does Not Include All Non-MAGI Determinations Made At Application,431034.0,,1066371.0,,935537.0,,130834.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,202007,Y,U,Y,12460.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,12460.0,Does Not Include All Non-MAGI Applications,50557.0,"Count is of Households, Not Individuals; Does Not Include All Non-MAGI Determinations Made At Application",3947.0,,54504.0,Does Not Include All Non-MAGI Determinations Made At Application,432243.0,,1069272.0,,938215.0,,131057.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,202008,Y,P,N,12835.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,12835.0,Does Not Include All Non-MAGI Applications,77230.0,"Count is of Households, Not Individuals; Does Not Include All Non-MAGI Determinations Made At Application",5855.0,,83085.0,Does Not Include All Non-MAGI Determinations Made At Application,433512.0,,1078440.0,,946208.0,,132232.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,202008,Y,U,Y,12835.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,12835.0,Does Not Include All Non-MAGI Applications,76498.0,Does Not Include All Non-MAGI Determinations Made At Application,5821.0,,82319.0,Does Not Include All Non-MAGI Determinations Made At Application,435610.0,,1082875.0,,950358.0,,132517.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,202009,Y,P,N,13002.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,13002.0,Does Not Include All Non-MAGI Applications,72397.0,Does Not Include All Non-MAGI Determinations Made At Application,6400.0,,78797.0,Does Not Include All Non-MAGI Determinations Made At Application,437897.0,,1093766.0,,959953.0,,133813.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,202009,Y,U,Y,13002.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,13002.0,Does Not Include All Non-MAGI Applications,72034.0,Does Not Include All Non-MAGI Determinations Made At Application,6355.0,,78389.0,Does Not Include All Non-MAGI Determinations Made At Application,439060.0,,1096491.0,,962464.0,,134027.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,202010,Y,P,N,13732.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,13732.0,Does Not Include All Non-MAGI Applications,74245.0,Does Not Include All Non-MAGI Determinations Made At Application,6664.0,,80909.0,Does Not Include All Non-MAGI Determinations Made At Application,441361.0,,1107541.0,,972371.0,,135170.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,202010,Y,U,Y,13732.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,13732.0,Does Not Include All Non-MAGI Applications,73840.0,Does Not Include All Non-MAGI Determinations Made At Application,6641.0,,80481.0,Does Not Include All Non-MAGI Determinations Made At Application,441961.0,,1109661.0,,974428.0,,135233.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,202011,Y,P,N,15997.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,15997.0,Does Not Include All Non-MAGI Applications,138198.0,Does Not Include All Non-MAGI Determinations Made At Application,8997.0,,147195.0,Does Not Include All Non-MAGI Determinations Made At Application,444113.0,,1123474.0,,986438.0,,137036.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,202011,Y,U,Y,15997.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,15997.0,Does Not Include All Non-MAGI Applications,151871.0,Does Not Include All Non-MAGI Determinations Made At Application,17522.0,,169393.0,Does Not Include All Non-MAGI Determinations Made At Application,445602.0,,1128356.0,,990936.0,,137420.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,202012,Y,P,N,17591.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,17591.0,Does Not Include All Non-MAGI Applications,199934.0,,13734.0,,213668.0,,447913.0,,1144999.0,,1005443.0,,139556.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,202012,Y,U,Y,17591.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,17591.0,Does Not Include All Non-MAGI Applications,198732.0,,13672.0,,212404.0,,449426.0,,1150385.0,,1010314.0,,140071.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,202101,Y,P,N,13724.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,13724.0,Does Not Include All Non-MAGI Applications,132764.0,,9830.0,,142594.0,,450881.0,,1158938.0,,1018009.0,,140929.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,202101,Y,U,Y,13724.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,13724.0,Does Not Include All Non-MAGI Applications,131813.0,,9773.0,,141586.0,,451336.0,,1160651.0,,1019624.0,,141027.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,202102,Y,P,N,13755.0,,0.0,,13755.0,,342628.0,,15865.0,,358493.0,,452198.0,,1167156.0,,1024460.0,,142696.0,,,,18066.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",4910.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1439.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",0.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",0.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +OR,Oregon,202102,Y,U,Y,13755.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,13755.0,Does Not Include All Non-MAGI Applications,340452.0,,15807.0,,356259.0,,453263.0,,1172052.0,,1029161.0,,142891.0,,,,18066.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",4910.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1439.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",0.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",0.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +OR,Oregon,202103,Y,P,N,15224.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,15224.0,Does Not Include All Non-MAGI Applications,152216.0,,13915.0,,166131.0,,454601.0,,1180002.0,,1033924.0,,146078.0,,,,18560.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",4117.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1327.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",0.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",0.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +OR,Oregon,202103,Y,U,Y,15224.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,15224.0,Does Not Include All Non-MAGI Applications,150531.0,,13817.0,,164348.0,,455252.0,,1182896.0,,1036775.0,,146121.0,,,,18560.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",4117.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1327.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",0.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",0.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +OR,Oregon,202104,Y,P,N,14177.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,14177.0,Does Not Include All Non-MAGI Applications,134906.0,,10511.0,,145417.0,,456365.0,,1189859.0,,1038709.0,,151150.0,,,,18928.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",4579.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",996.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",0.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",0.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +OR,Oregon,202104,Y,U,Y,14177.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,14177.0,Does Not Include All Non-MAGI Applications,132769.0,,10296.0,,143065.0,,457059.0,,1192969.0,,1041756.0,,151213.0,,,,18928.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",4579.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",996.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",0.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",0.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +OR,Oregon,202105,Y,P,N,13340.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,13340.0,Does Not Include All Non-MAGI Applications,136383.0,,10462.0,,146845.0,,457554.0,,1198138.0,,1045272.0,,152866.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,202105,Y,U,Y,13340.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,13340.0,Does Not Include All Non-MAGI Applications,134668.0,,10319.0,,144987.0,,458457.0,,1201710.0,,1048744.0,,152966.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,202106,Y,P,N,13745.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,13745.0,Does Not Include All Non-MAGI Applications,125378.0,,10146.0,,135524.0,,459076.0,,1206932.0,,1051793.0,,155139.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,202106,Y,U,Y,13745.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,13745.0,Does Not Include All Non-MAGI Applications,122936.0,,9913.0,,132849.0,,459928.0,,1210010.0,,1054752.0,,155258.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,202107,Y,P,N,13219.0,Does Not Include All Non-MAGI Applications Submitted to Medicaid and CHIP Agencies,0.0,,13219.0,Does Not Include All Non-MAGI Applications,126609.0,,10521.0,,137130.0,,460948.0,,1215481.0,,1058086.0,,157395.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,202107,Y,U,Y,13219.0,,0.0,,13219.0,,124412.0,,10364.0,,134776.0,,461971.0,,1219271.0,,1061698.0,,157573.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,202108,Y,P,N,14172.0,,0.0,,14172.0,,136527.0,,12422.0,,148949.0,,463220.0,,1226517.0,,1066327.0,,160190.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,202108,Y,U,Y,14172.0,,0.0,,14172.0,,134186.0,,12198.0,,146384.0,,463971.0,,1229591.0,,1069424.0,,160167.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,202109,Y,P,N,13832.0,,0.0,,13832.0,,146204.0,,12611.0,,158815.0,,464279.0,,1234175.0,,1071498.0,,162677.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,202109,Y,U,Y,13832.0,,0.0,,13832.0,,143448.0,,12407.0,,155855.0,,465402.0,,1237837.0,,1074994.0,,162843.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,202110,Y,P,N,13683.0,,0.0,,13683.0,,151093.0,,12705.0,,163798.0,,465615.0,,1241791.0,,1076815.0,,164976.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,202110,Y,U,Y,13683.0,,0.0,,13683.0,,148762.0,,12473.0,,161235.0,,466948.0,,1246420.0,,1081170.0,,165250.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,202111,Y,P,N,12879.0,,0.0,,12879.0,,150621.0,,14682.0,,165303.0,,467629.0,,1252453.0,,1084648.0,,167805.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,202111,Y,U,Y,12879.0,,0.0,,12879.0,,147665.0,,14469.0,,162134.0,,468812.0,,1256231.0,,1088036.0,,168195.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,202112,Y,P,N,12841.0,,0.0,,12841.0,,281819.0,,18425.0,,300244.0,,470554.0,,1268618.0,,1098469.0,,170149.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,202112,Y,U,Y,12841.0,,0.0,,12841.0,,279587.0,,18110.0,,297697.0,,472312.0,,1274985.0,,1104217.0,,170768.0,,,,,,,,,,,,,,,,,,, +OR,Oregon,202201,Y,P,N,14063.0,,0.0,,14063.0,,135959.0,,14277.0,,150236.0,,472031.0,,1277535.0,,1105724.0,,171811.0,,,,22850.0,,4714.0,,1782.0,,0.0,,0.0,,,,,,, +OR,Oregon,202201,Y,U,Y,14063.0,,0.0,,14063.0,,132968.0,,13839.0,,146807.0,,473835.0,,1284347.0,,1111930.0,,172417.0,,,,22850.0,,4714.0,,1782.0,,0.0,,0.0,,,,,,, +OR,Oregon,202202,Y,P,N,11777.0,,0.0,,11777.0,,143510.0,,14031.0,,157541.0,,472972.0,,1284221.0,,1112005.0,,172216.0,,,,18005.0,,3832.0,,1703.0,,0.0,,0.0,,,,,,, +OR,Oregon,202202,Y,U,Y,11777.0,,0.0,,11777.0,,138649.0,,13877.0,,152526.0,,474350.0,,1289014.0,,1116545.0,,172469.0,,,,18005.0,,3832.0,,1703.0,,0.0,,0.0,,,,,,, +OR,Oregon,202203,Y,P,N,13370.0,,0.0,,13370.0,,189632.0,,15759.0,,205391.0,,474624.0,,1293098.0,,1121007.0,,172091.0,,,,20225.0,,4482.0,,2024.0,,0.0,,0.0,,,,,,, +OR,Oregon,202203,Y,U,Y,13370.0,,0.0,,13370.0,,187593.0,,15566.0,,203159.0,,475162.0,,1295339.0,,1123278.0,,172061.0,,,,20225.0,,4482.0,,2024.0,,0.0,,0.0,,,,,,, +OR,Oregon,202204,Y,P,N,12631.0,,0.0,,12631.0,,118951.0,,11665.0,,130616.0,,474987.0,,1294746.0,,1121753.0,,172993.0,,,,19253.0,,4972.0,,622.0,,0.0,,0.0,,,,,,, +OR,Oregon,202204,Y,U,Y,12631.0,,0.0,,12631.0,,117298.0,,11549.0,,128847.0,,475620.0,,1297319.0,,1124324.0,,172995.0,,,,19253.0,,4972.0,,622.0,,0.0,,0.0,,,,,,, +OR,Oregon,202205,Y,P,N,12524.0,,0.0,,12524.0,,126981.0,,13443.0,,140424.0,,475820.0,,1301209.0,,1127337.0,,173872.0,,,,19636.0,,4930.0,,588.0,,0.0,,0.0,,,,,,, +OR,Oregon,202205,Y,U,Y,12524.0,,0.0,,12524.0,,126295.0,,13357.0,,139652.0,,476289.0,,1303226.0,,1129360.0,,173866.0,,,,19636.0,,4930.0,,588.0,,0.0,,0.0,,,,,,, +OR,Oregon,202206,Y,P,N,12817.0,,0.0,,12817.0,,149517.0,,13756.0,,163273.0,,476646.0,,1307811.0,,1132380.0,,175431.0,,,,20886.0,,5938.0,,842.0,,0.0,,0.0,,,,,,, +OR,Oregon,202206,Y,U,Y,12817.0,,0.0,,12817.0,,147435.0,,13573.0,,161008.0,,477096.0,,1310089.0,,1134690.0,,175399.0,,,,20886.0,,5938.0,,842.0,,0.0,,0.0,,,,,,, +OR,Oregon,202207,Y,P,N,12057.0,,0.0,,12057.0,,142528.0,,13474.0,,156002.0,,483368.0,,1331443.0,,1154652.0,,176791.0,,,,21351.0,,5239.0,,1873.0,,0.0,,0.0,,,,,,, +OR,Oregon,202207,Y,U,Y,12057.0,,0.0,,12057.0,,140546.0,,13335.0,,153881.0,,484093.0,,1334459.0,,1157527.0,,176932.0,,,,21351.0,,5239.0,,1873.0,,0.0,,0.0,,,,,,, +OR,Oregon,202208,Y,P,N,14972.0,,0.0,,14972.0,,168866.0,,17086.0,,185952.0,,484814.0,,1340217.0,,1161063.0,,179154.0,,,,25800.0,,5456.0,,2333.0,,0.0,,0.0,,,,,,, +OR,Oregon,202208,Y,U,Y,14972.0,,0.0,,14972.0,,166666.0,,16932.0,,183598.0,,485683.0,,1343029.0,,1163965.0,,179064.0,,,,25800.0,,5456.0,,2333.0,,0.0,,0.0,,,,,,, +OR,Oregon,202209,Y,P,N,13233.0,,0.0,,13233.0,,162537.0,,16286.0,,178823.0,,486087.0,,1347299.0,,1165916.0,,181383.0,,,,24390.0,,5273.0,,2205.0,,0.0,,0.0,,,,,,, +OR,Oregon,202209,Y,U,Y,13233.0,,0.0,,13233.0,,160538.0,,16121.0,,176659.0,,486981.0,,1350686.0,,1172046.0,,178640.0,,,,24390.0,,5273.0,,2205.0,,0.0,,0.0,,,,,,, +OR,Oregon,202210,Y,P,N,13080.0,,0.0,,13080.0,,172486.0,,16355.0,,188841.0,,486610.0,,1353988.0,,1172705.0,,181283.0,,,,26156.0,,5246.0,,2517.0,,0.0,,0.0,,,,,,, +OR,Oregon,202210,Y,U,Y,13080.0,,0.0,,13080.0,,170145.0,,16183.0,,186328.0,,487889.0,,1358701.0,,1178725.0,,179976.0,,,,26156.0,,5246.0,,2517.0,,0.0,,0.0,,,,,,, +OR,Oregon,202211,Y,P,N,12948.0,,0.0,,12948.0,,166491.0,,17078.0,,183569.0,,488210.0,,1365160.0,,1181538.0,,183622.0,,,,29669.0,,5882.0,,2314.0,,0.0,,0.0,,,,,,, +OR,Oregon,202211,Y,U,Y,12948.0,,0.0,,12948.0,,164275.0,,16862.0,,181137.0,,489153.0,,1368797.0,,1184752.0,,184045.0,,,,29669.0,,5882.0,,2314.0,,0.0,,0.0,,,,,,, +OR,Oregon,202212,Y,P,N,12614.0,,0.0,,12614.0,,338737.0,,23653.0,,362390.0,,489397.0,,1374967.0,,1187826.0,,187141.0,,,,28351.0,,5382.0,,1830.0,,0.0,,0.0,,,,,,, +OR,Oregon,202212,Y,U,Y,12614.0,,0.0,,12614.0,,335415.0,,23471.0,,358886.0,,490841.0,,1380287.0,,1192600.0,,187687.0,,,,28351.0,,5382.0,,1830.0,,0.0,,0.0,,,,,,, +OR,Oregon,202301,Y,P,N,13975.0,,0.0,,13975.0,,187878.0,,20476.0,,208354.0,,492686.0,,1387757.0,,1197744.0,,190013.0,,,,28333.0,,5689.0,,2155.0,,1.0,,0.0,,,,,,, +OR,Oregon,202301,Y,U,Y,13975.0,,0.0,,13975.0,,185361.0,,20228.0,,205589.0,,493741.0,,1391681.0,,1201394.0,,190287.0,,,,28333.0,,5689.0,,2155.0,,1.0,,0.0,,,,,,, +OR,Oregon,202302,Y,P,N,11112.0,,0.0,,11112.0,,194340.0,,16646.0,,210986.0,,493871.0,,1394491.0,,1204106.0,,190385.0,,,,21683.0,,3786.0,,1363.0,,0.0,,0.0,,,,,,, +OR,Oregon,202302,Y,U,Y,11112.0,,0.0,,11112.0,,192231.0,,16475.0,,208706.0,,494759.0,,1397824.0,,1207313.0,,190511.0,,,,21683.0,,3786.0,,1363.0,,0.0,,0.0,,,,,,, +OR,Oregon,202303,Y,P,N,12914.0,,0.0,,12914.0,,208223.0,,16183.0,,224406.0,,494640.0,,1401992.0,,1213001.0,,188991.0,,,,24541.0,,4889.0,,2022.0,,0.0,,0.0,,97989.0,Does not include all calls received after business hours,12.0,Call centers offer callbacks; Does not include all calls received after business hours,0.2,Does not include all calls received after business hours +OR,Oregon,202303,Y,U,Y,12914.0,,0.0,,12914.0,,206033.0,,16129.0,,222162.0,,495391.0,,1404587.0,,1215714.0,,188873.0,,,,24541.0,,4889.0,,2022.0,,0.0,,0.0,,97989.0,Does not include all calls received after business hours,12.0,Call centers offer callbacks; Does not include all calls received after business hours,0.2,Does not include all calls received after business hours +OR,Oregon,202304,Y,P,N,11463.0,,0.0,,11463.0,,208815.0,,20428.0,,229243.0,,495070.0,,1407716.0,,1220823.0,,186893.0,,,,21378.0,,4605.0,,1752.0,,0.0,,0.0,,87242.0,Does not include all calls received after business hours,13.0,Call centers offer callbacks; Does not include all calls received after business hours,0.22,Does not include all calls received after business hours +OR,Oregon,202304,Y,U,Y,11463.0,,0.0,,11463.0,,206215.0,,20377.0,,226592.0,,495986.0,,1411181.0,,1224253.0,,186928.0,,,,21378.0,,4605.0,,1752.0,,0.0,,0.0,,87242.0,Does not include all calls received after business hours,13.0,Call centers offer callbacks; Does not include all calls received after business hours,0.22,Does not include all calls received after business hours +OR,Oregon,202305,Y,P,N,13255.0,,0.0,,13255.0,,231814.0,,23782.0,,255596.0,,495928.0,,1415497.0,,1229514.0,,185983.0,,,,24340.0,,5336.0,,1566.0,,0.0,,0.0,,101884.0,Does not include all calls received after business hours,15.0,Call centers offer callbacks; Does not include all calls received after business hours,0.24,Does not include all calls received after business hours +OR,Oregon,202305,Y,U,Y,13255.0,,0.0,,13255.0,,229302.0,,23722.0,,253024.0,,496629.0,,1417860.0,,1231725.0,,186135.0,,,,24340.0,,5336.0,,1566.0,,0.0,,0.0,,101884.0,Does not include all calls received after business hours,15.0,Call centers offer callbacks; Does not include all calls received after business hours,0.24,Does not include all calls received after business hours +OR,Oregon,202306,Y,P,N,12049.0,,0.0,,12049.0,,275472.0,,25768.0,,301240.0,,496703.0,,1421312.0,,1234928.0,,186384.0,,,,22644.0,,5055.0,,1731.0,,0.0,,0.0,,111934.0,Does not include all calls received after business hours,21.0,Call centers offer callbacks; Does not include all calls received after business hours,0.28,Does not include all calls received after business hours +OR,Oregon,202306,Y,U,Y,12049.0,,0.0,,12049.0,,272892.0,,25698.0,,298590.0,,497448.0,,1423935.0,,1237366.0,,186569.0,,,,22644.0,,5055.0,,1731.0,,0.0,,0.0,,111934.0,Does not include all calls received after business hours,21.0,Call centers offer callbacks; Does not include all calls received after business hours,0.28,Does not include all calls received after business hours +OR,Oregon,202307,Y,P,N,13214.0,,0.0,,13214.0,,216122.0,,21498.0,,237620.0,,496385.0,,1456893.0,,1270336.0,,186557.0,,,,25318.0,,5445.0,,2250.0,,0.0,,0.0,,124131.0,Does not include all calls received after business hours,28.0,Call centers offer callbacks; Does not include all calls received after business hours,0.33,Does not include all calls received after business hours +OR,Oregon,202307,Y,U,Y,13214.0,,0.0,,13214.0,,213804.0,,21366.0,,235170.0,,497637.0,,1462700.0,,1275854.0,,186846.0,,,,25318.0,,5445.0,,2250.0,,0.0,,0.0,,124131.0,Does not include all calls received after business hours,28.0,Call centers offer callbacks; Does not include all calls received after business hours,0.33,Does not include all calls received after business hours +OR,Oregon,202308,Y,P,N,14904.0,,0.0,,14904.0,,231635.0,,20161.0,,251796.0,,497710.0,,1458544.0,,1271242.0,,187302.0,,,,25910.0,,5727.0,,1801.0,,0.0,,0.0,,123450.0,Does not include all calls received after business hours,27.0,Call centers offer callbacks; Does not include all calls received after business hours,0.41,Does not include all calls received after business hours +OR,Oregon,202308,Y,U,Y,14904.0,,0.0,,14904.0,,229404.0,,20066.0,,249470.0,,498813.0,,1462907.0,,1275279.0,,187628.0,,,,25910.0,,5727.0,,1801.0,,0.0,,0.0,,123450.0,Does not include all calls received after business hours,27.0,Call centers offer callbacks; Does not include all calls received after business hours,0.41,Does not include all calls received after business hours +OR,Oregon,202309,Y,P,N,14213.0,,0.0,,14213.0,,227410.0,,20403.0,,247813.0,,498191.0,,1456942.0,,1269345.0,,187597.0,,,,23941.0,,5270.0,,1439.0,,0.0,,0.0,,119163.0,Does not include all calls received after business hours,25.0,Call centers offer callbacks; Does not include all calls received after business hours,0.42,Does not include all calls received after business hours +OR,Oregon,202309,Y,U,Y,14213.0,,0.0,,14213.0,,224305.0,,20269.0,,244574.0,,499589.0,,1467556.0,,1279595.0,,187961.0,,,,23941.0,,5270.0,,1439.0,,0.0,,0.0,,119163.0,Does not include all calls received after business hours,25.0,Call centers offer callbacks; Does not include all calls received after business hours,0.42,Does not include all calls received after business hours +OR,Oregon,202310,Y,P,N,15337.0,,0.0,,15337.0,,246016.0,,20205.0,,266221.0,,497729.0,,1452336.0,,1264890.0,,187446.0,,,,24895.0,,5680.0,,1599.0,,0.0,,0.0,,128895.0,Does not include all calls received after business hours,27.0,Call centers offer callbacks; Does not include all calls received after business hours,0.42,Does not include all calls received after business hours +OR,Oregon,202310,Y,U,Y,15337.0,,0.0,,15337.0,,242699.0,,20120.0,,262819.0,,498987.0,,1459217.0,,1271357.0,,187860.0,,,,24895.0,,5680.0,,1599.0,,0.0,,0.0,,128895.0,Does not include all calls received after business hours,27.0,Call centers offer callbacks; Does not include all calls received after business hours,0.42,Does not include all calls received after business hours +OR,Oregon,202311,Y,P,N,15001.0,,0.0,,15001.0,,214661.0,,18636.0,,233297.0,,498948.0,,1455692.0,,1267008.0,,188684.0,,,,28848.0,,6180.0,,2509.0,,0.0,,0.0,,111844.0,Does not include all calls received after business hours,22.0,Call centers offer callbacks; Does not include all calls received after business hours,0.36,Does not include all calls received after business hours +OR,Oregon,202311,Y,U,Y,15001.0,,0.0,,15001.0,,211228.0,,18524.0,,229752.0,,500177.0,,1463655.0,,1274545.0,,189110.0,,,,28848.0,,6180.0,,2509.0,,0.0,,0.0,,111844.0,Does not include all calls received after business hours,22.0,Call centers offer callbacks; Does not include all calls received after business hours,0.36,Does not include all calls received after business hours +OR,Oregon,202312,Y,P,N,15037.0,,0.0,,15037.0,,435560.0,,32220.0,,467780.0,,497203.0,,1454774.0,,1266146.0,,188628.0,,,,28377.0,,6054.0,,1937.0,,0.0,,0.0,,101533.0,Does not include all calls received after business hours,16.0,Call centers offer callbacks; Does not include all calls received after business hours,0.29,Does not include all calls received after business hours +OR,Oregon,202312,Y,U,Y,15037.0,,0.0,,15037.0,,432207.0,,32205.0,,464412.0,,498708.0,,1461809.0,,1272486.0,,189323.0,,,,28377.0,,6054.0,,1937.0,,0.0,,0.0,,101533.0,Does not include all calls received after business hours,16.0,Call centers offer callbacks; Does not include all calls received after business hours,0.29,Does not include all calls received after business hours +OR,Oregon,202401,Y,P,N,16477.0,,0.0,,16477.0,,236810.0,,22414.0,,259224.0,,489976.0,,1380877.0,,1190055.0,,190822.0,,,,29968.0,,6421.0,,2085.0,,0.0,,0.0,,134192.0,Does not include all calls received after business hours,20.0,Call centers offer callbacks; Does not include all calls received after business hours,0.36,Does not include all calls received after business hours +OR,Oregon,202401,Y,U,Y,16477.0,,0.0,,16477.0,,234064.0,,22179.0,,256243.0,,489976.0,,1380877.0,,1190055.0,,190822.0,,,,29968.0,,6421.0,,2085.0,,0.0,,0.0,,134192.0,Does not include all calls received after business hours,20.0,Call centers offer callbacks; Does not include all calls received after business hours,0.36,Does not include all calls received after business hours +OR,Oregon,202402,Y,P,N,14937.0,,0.0,,14937.0,,270032.0,,31595.0,,301627.0,,487962.0,,1376453.0,,1187577.0,,188876.0,,,,24828.0,,5551.0,,1667.0,,0.0,,0.0,,102438.0,Does not include all calls received after business hours,12.0,Call centers offer callbacks; Does not include all calls received after business hours,0.234,Does not include all calls received after business hours +OR,Oregon,202402,Y,U,Y,14937.0,,0.0,,14937.0,,267293.0,,31565.0,,298858.0,,487962.0,,1376453.0,,1187577.0,,188876.0,,,,24828.0,,5551.0,,1667.0,,0.0,,0.0,,102438.0,Does not include all calls received after business hours,12.0,Call centers offer callbacks; Does not include all calls received after business hours,0.234,Does not include all calls received after business hours +OR,Oregon,202403,Y,P,N,14851.0,,0.0,,14851.0,,241897.0,,22849.0,,264746.0,,485561.0,,1364666.0,,1177987.0,,186679.0,,,,24900.0,,6033.0,,1620.0,,0.0,,0.0,,90286.0,Does not include all calls received after business hours,6.0,Call centers offer callbacks; Does not include all calls received after business hours,0.134,Does not include all calls received after business hours +OR,Oregon,202403,Y,U,Y,14851.0,,0.0,,14851.0,,239495.0,,22792.0,,262287.0,,485561.0,,1364666.0,,1177987.0,,186679.0,,,,24900.0,,6033.0,,1620.0,,0.0,,0.0,,90286.0,Does not include all calls received after business hours,6.0,Call centers offer callbacks; Does not include all calls received after business hours,0.134,Does not include all calls received after business hours +OR,Oregon,202404,Y,P,N,15636.0,,0.0,,15636.0,,259298.0,,26424.0,,285722.0,,483724.0,,1350074.0,,1165360.0,,184714.0,,,,26283.0,,6516.0,,862.0,,0.0,,0.0,,92958.0,Does not include all calls received after business hours,4.0,Call centers offer callbacks; Does not include all calls received after business hours,0.102,Does not include all calls received after business hours +OR,Oregon,202404,Y,U,Y,15636.0,,0.0,,15636.0,,256819.0,,26305.0,,283124.0,,483724.0,,1350074.0,,1165360.0,,184714.0,,,,26283.0,,6516.0,,862.0,,0.0,,0.0,,92958.0,Does not include all calls received after business hours,4.0,Call centers offer callbacks; Does not include all calls received after business hours,0.102,Does not include all calls received after business hours +OR,Oregon,202405,Y,P,N,15610.0,,0.0,,15610.0,,207203.0,,17863.0,,225066.0,,481434.0,,1333943.0,,1150632.0,,183311.0,,,,25622.0,,5234.0,,1494.0,,0.0,,0.0,,83894.0,Does not include all calls received after business hours,3.0,Call centers offer callbacks; Does not include all calls received after business hours,0.071,Does not include all calls received after business hours +OR,Oregon,202405,Y,U,Y,15610.0,,0.0,,15610.0,,204996.0,,17794.0,,222790.0,,481434.0,,1333943.0,,1150632.0,,183311.0,,,,25622.0,,5234.0,,1494.0,,0.0,,0.0,,83894.0,Does not include all calls received after business hours,3.0,Call centers offer callbacks; Does not include all calls received after business hours,0.071,Does not include all calls received after business hours +OR,Oregon,202406,Y,P,N,14350.0,,0.0,,14350.0,,219392.0,,29223.0,,248615.0,,478813.0,,1318085.0,,1136366.0,,181719.0,,,,24683.0,,5855.0,,970.0,,0.0,,0.0,,84005.0,Does not include all calls received after business hours,6.0,Call centers offer callbacks; Does not include all calls received after business hours,0.135,Does not include all calls received after business hours +OR,Oregon,202406,Y,U,Y,14350.0,,0.0,,14350.0,,216435.0,,29070.0,,245505.0,,478813.0,,1318085.0,,1136366.0,,181719.0,,,,24683.0,,5855.0,,970.0,,0.0,,0.0,,84005.0,Does not include all calls received after business hours,6.0,Call centers offer callbacks; Does not include all calls received after business hours,0.135,Does not include all calls received after business hours +OR,Oregon,202407,Y,P,N,17091.0,,0.0,,17091.0,,213084.0,,21561.0,,234645.0,,476877.0,,1285144.0,,1104385.0,,180759.0,,808267.0,,31010.0,,7322.0,,1221.0,,0.0,,0.0,,107664.0,Does not include all calls received after business hours,8.0,Call centers offer callbacks; Does not include all calls received after business hours,0.166,Does not include all calls received after business hours +OR,Oregon,202407,Y,U,Y,17091.0,,0.0,,17091.0,,210562.0,,21432.0,,231994.0,,477492.0,,1287121.0,,1106100.0,,181021.0,,809629.0,,31010.0,,7322.0,,1221.0,,0.0,,0.0,,107664.0,Does not include all calls received after business hours,8.0,Call centers offer callbacks; Does not include all calls received after business hours,0.166,Does not include all calls received after business hours +OR,Oregon,202408,Y,P,N,16677.0,,0.0,,16677.0,,209290.0,,21256.0,,230546.0,,477903.0,,1291058.0,,1108910.0,,182148.0,,813155.0,,31256.0,,7322.0,,1783.0,,0.0,,0.0,,110699.0,Does not include all calls received after business hours,9.0,Call centers offer callbacks; Does not include all calls received after business hours,0.186,Does not include all calls received after business hours +OR,Oregon,202408,Y,U,Y,16677.0,,0.0,,16677.0,,206565.0,,21072.0,,227637.0,,478619.0,,1293500.0,,1111089.0,,182411.0,,814881.0,,31256.0,,7322.0,,1783.0,,0.0,,0.0,,110699.0,Does not include all calls received after business hours,9.0,Call centers offer callbacks; Does not include all calls received after business hours,0.186,Does not include all calls received after business hours +OR,Oregon,202409,Y,P,N,15796.0,,0.0,,15796.0,,208018.0,,19702.0,,227720.0,,478480.0,,1294139.0,,1110245.0,,183894.0,,815659.0,,29963.0,,7240.0,,1614.0,,0.0,,0.0,,112236.0,Does not include all calls received after business hours,11.0,Call centers offer callbacks; Does not include all calls received after business hours,0.224,Does not include all calls received after business hours +OR,Oregon,202409,Y,U,Y,15796.0,,0.0,,15796.0,,205117.0,,19603.0,,224720.0,,479979.0,,1299661.0,,1115511.0,,184150.0,,819682.0,,29963.0,,7240.0,,1614.0,,0.0,,0.0,,112236.0,Does not include all calls received after business hours,11.0,Call centers offer callbacks; Does not include all calls received after business hours,0.224,Does not include all calls received after business hours +OR,Oregon,202410,Y,P,N,16779.0,,0.0,,16779.0,,212663.0,,19988.0,,232651.0,,479723.0,,1300251.0,,1114712.0,,185539.0,,820528.0,,32336.0,,7916.0,,2025.0,,0.0,,0.0,,122797.0,Does not include all calls received after business hours,11.0,Call centers offer callbacks; Does not include all calls received after business hours,0.206,Does not include all calls received after business hours +OR,Oregon,202410,Y,U,Y,16779.0,,0.0,,16779.0,,209738.0,,19834.0,,229572.0,,480752.0,,1304530.0,,1118626.0,,185904.0,,823778.0,,32336.0,,7916.0,,2025.0,,0.0,,0.0,,122797.0,Does not include all calls received after business hours,11.0,Call centers offer callbacks; Does not include all calls received after business hours,0.206,Does not include all calls received after business hours +OR,Oregon,202411,Y,P,N,14884.0,,0.0,,14884.0,,188944.0,,17932.0,,206876.0,,480371.0,,1306387.0,,1119407.0,,186980.0,,826016.0,,34758.0,,7184.0,,2080.0,,0.0,,0.0,,105388.0,Does not include all calls received after business hours,14.0,Call centers offer callbacks; Does not include all calls received after business hours,0.248,Does not include all calls received after business hours +OR,Oregon,202411,Y,U,Y,14884.0,,0.0,,14884.0,,184916.0,,17777.0,,202693.0,,481771.0,,1312806.0,,1125216.0,,187590.0,,831035.0,,34758.0,,7184.0,,2080.0,,0.0,,0.0,,105388.0,Does not include all calls received after business hours,14.0,Call centers offer callbacks; Does not include all calls received after business hours,0.248,Does not include all calls received after business hours +OR,Oregon,202412,Y,P,N,15836.0,,0.0,,15836.0,,422057.0,,26520.0,,448577.0,,481489.0,,1311535.0,,1123313.0,,188222.0,,830046.0,,34545.0,,8036.0,,2036.0,,0.0,,0.0,,126642.0,Does not include all calls received after business hours,12.0,Call centers offer callbacks; Does not include all calls received after business hours,0.24,Does not include all calls received after business hours +OR,Oregon,202412,Y,U,Y,15836.0,,0.0,,15836.0,,416609.0,,26485.0,,443094.0,,482731.0,,1317097.0,,1128359.0,,188738.0,,834366.0,,34545.0,,8036.0,,2036.0,,0.0,,0.0,,126642.0,Does not include all calls received after business hours,12.0,Call centers offer callbacks; Does not include all calls received after business hours,0.24,Does not include all calls received after business hours +OR,Oregon,202501,Y,P,N,17602.0,,0.0,,17602.0,,254454.0,,22578.0,,277032.0,,481804.0,,1309088.0,,1119938.0,,189150.0,,827284.0,,34364.0,,7437.0,,1814.0,,0.0,,0.0,,153067.0,Does not include all calls received after business hours,10.0,Call centers offer callbacks; Does not include all calls received after business hours,0.287,Does not include all calls received after business hours +OR,Oregon,202501,Y,U,Y,17602.0,,0.0,,17602.0,,250070.0,,22420.0,,272490.0,,483329.0,,1316486.0,,1126652.0,,189834.0,,833157.0,,34364.0,,7437.0,,1814.0,,0.0,,0.0,,153067.0,Does not include all calls received after business hours,10.0,Call centers offer callbacks; Does not include all calls received after business hours,0.287,Does not include all calls received after business hours +OR,Oregon,202502,Y,P,N,13405.0,,0.0,,13405.0,,198878.0,,20688.0,,219566.0,,482599.0,,1313864.0,,1123445.0,,190419.0,,831265.0,,26281.0,,4880.0,,1261.0,,0.0,,0.0,,116970.0,Does not include all calls received after business hours,6.0,Call centers offer callbacks; Does not include all calls received after business hours,0.206,Does not include all calls received after business hours +OR,Oregon,202502,Y,U,Y,13405.0,,0.0,,13405.0,,194968.0,,20511.0,,215479.0,,483562.0,,1318386.0,,1127670.0,,190716.0,,834824.0,,26281.0,,4880.0,,1261.0,,0.0,,0.0,,116970.0,Does not include all calls received after business hours,6.0,Call centers offer callbacks; Does not include all calls received after business hours,0.206,Does not include all calls received after business hours +OR,Oregon,202503,Y,P,N,14163.0,,0.0,,14163.0,,208787.0,,18939.0,,227726.0,,479977.0,,1304085.0,,1114271.0,,189814.0,,824108.0,,27675.0,,5758.0,,1131.0,,0.0,,0.0,,123461.0,Does not include all calls received after business hours,6.0,Call centers offer callbacks; Does not include all calls received after business hours,0.217,Does not include all calls received after business hours +OR,Oregon,202503,Y,U,Y,14163.0,,0.0,,14163.0,,205039.0,,18854.0,,223893.0,,481369.0,,1310574.0,,1120280.0,,190294.0,,829205.0,,27675.0,,5758.0,,1131.0,,0.0,,0.0,,123461.0,Does not include all calls received after business hours,6.0,Call centers offer callbacks; Does not include all calls received after business hours,0.217,Does not include all calls received after business hours +OR,Oregon,202504,Y,P,N,14242.0,,0.0,,14242.0,,200451.0,,17956.0,,218407.0,,480160.0,,1312501.0,,1123238.0,,189263.0,,832341.0,,29370.0,,5568.0,,1098.0,,0.0,,0.0,,115629.0,Does not include all calls received after business hours,5.0,Call centers offer callbacks; Does not include all calls received after business hours,0.179,Does not include all calls received after business hours +OR,Oregon,202504,Y,U,Y,14242.0,,0.0,,14242.0,,197164.0,,17847.0,,215011.0,,480869.0,,1315595.0,,1126114.0,,189481.0,,834726.0,,29370.0,,5568.0,,1098.0,,0.0,,0.0,,115629.0,Does not include all calls received after business hours,5.0,Call centers offer callbacks; Does not include all calls received after business hours,0.179,Does not include all calls received after business hours +OR,Oregon,202505,Y,P,N,13179.0,,0.0,,13179.0,,191466.0,,17900.0,,209366.0,,479824.0,,1316564.0,,1127266.0,,189298.0,,836740.0,,27852.0,,5500.0,,873.0,,0.0,,0.0,,111222.0,Does not include all calls received after business hours,5.0,Call centers offer callbacks; Does not include all calls received after business hours,0.198,Does not include all calls received after business hours +OR,Oregon,202505,Y,U,Y,13179.0,,0.0,,13179.0,,188439.0,,17782.0,,206221.0,,480638.0,,1319921.0,,1130366.0,,189555.0,,839283.0,,27852.0,,5500.0,,873.0,,0.0,,0.0,,111222.0,Does not include all calls received after business hours,5.0,Call centers offer callbacks; Does not include all calls received after business hours,0.198,Does not include all calls received after business hours +OR,Oregon,202506,Y,P,N,13515.0,,0.0,,13515.0,,183195.0,,18917.0,,202112.0,,479219.0,,1319886.0,,1130689.0,,189197.0,,840667.0,,27678.0,,5797.0,,1291.0,,0.0,,0.0,,145417.0,Does not include all calls received after business hours,9.0,Call centers offer callbacks; Does not include all calls received after business hours,0.344,Does not include all calls received after business hours +OR,Oregon,202506,Y,U,Y,13515.0,,0.0,,13515.0,,180453.0,,18812.0,,199265.0,,480354.0,,1324553.0,,1135009.0,,189544.0,,844199.0,,27678.0,,5797.0,,1291.0,,0.0,,0.0,,145417.0,Does not include all calls received after business hours,9.0,Call centers offer callbacks; Does not include all calls received after business hours,0.344,Does not include all calls received after business hours +OR,Oregon,202507,Y,P,N,14074.0,,0.0,,14074.0,,207237.0,,21937.0,,229174.0,,476632.0,,1313711.0,,1126956.0,,186755.0,,837079.0,,29611.0,,5979.0,,1522.0,,3.0,,0.0,,205477.0,Does not include all calls received after business hours,12.0,Call centers offer callbacks; Does not include all calls received after business hours,0.514,Does not include all calls received after business hours +OR,Oregon,202507,Y,U,Y,14074.0,,0.0,,14074.0,,204721.0,,21863.0,,226584.0,,477591.0,,1317200.0,,1130081.0,,187119.0,,839609.0,,29611.0,,5979.0,,1522.0,,3.0,,0.0,,205477.0,Does not include all calls received after business hours,12.0,Call centers offer callbacks; Does not include all calls received after business hours,0.514,Does not include all calls received after business hours +OR,Oregon,202508,Y,P,N,13854.0,,0.0,,13854.0,,182657.0,,19160.0,,201817.0,,473574.0,,1305313.0,,1121129.0,,184184.0,,831739.0,,28031.0,,5283.0,,1426.0,,0.0,,0.0,,165356.0,Does not include all calls received after business hours,17.0,Call centers offer callbacks; Does not include all calls received after business hours,0.422,Does not include all calls received after business hours +OR,Oregon,202508,Y,U,Y,13854.0,,0.0,,13854.0,,179978.0,,19062.0,,199040.0,,474888.0,,1310037.0,,1125335.0,,184702.0,,835149.0,,28031.0,,5283.0,,1426.0,,0.0,,0.0,,165356.0,Does not include all calls received after business hours,17.0,Call centers offer callbacks; Does not include all calls received after business hours,0.422,Does not include all calls received after business hours +OR,Oregon,202509,Y,P,N,15251.0,,0.0,,15251.0,,215232.0,,22043.0,,237275.0,,473004.0,,1304963.0,,1121409.0,,183554.0,,831959.0,,30288.0,,5571.0,,1657.0,,0.0,,0.0,,188110.0,Does not include all calls received after business hours,17.0,Call centers offer callbacks; Does not include all calls received after business hours,0.408,Does not include all calls received after business hours +OR,Oregon,202509,Y,U,Y,15251.0,,0.0,,15251.0,,212204.0,,21898.0,,234102.0,,474215.0,,1309058.0,,1125025.0,,184033.0,,834843.0,,30288.0,,5571.0,,1657.0,,0.0,,0.0,,188110.0,Does not include all calls received after business hours,17.0,Call centers offer callbacks; Does not include all calls received after business hours,0.408,Does not include all calls received after business hours +OR,Oregon,202510,Y,P,N,14450.0,,0.0,,14450.0,,208698.0,,21174.0,,229872.0,,472211.0,,1303752.0,,1120199.0,,183553.0,,831541.0,,27875.0,,4865.0,,2050.0,,0.0,,0.0,,171201.0,Does not include all calls received after business hours,12.0,Call centers offer callbacks; Does not include all calls received after business hours,0.322,Does not include all calls received after business hours +PA,Pennsylvania,201309,N,U,Y,,,,,,,,,,,,,,,2386046.0,,,,,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,201706,Y,P,N,67402.0,Includes Renewals and/or Redeterminations,0.0,,67402.0,Includes Renewals and/or Redeterminations,39821.0,"Includes Renewals and/or Redeterminations; Count is of Households, Not Individuals",8883.0,"Count is of Households, Not Individuals",48704.0,"Includes Renewals and/or Redeterminations; Count is of Households, Not Individuals",1383571.0,,2928888.0,,2752317.0,,176571.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,201706,Y,U,Y,85493.0,Includes Renewals and/or Redeterminations,0.0,,85493.0,Includes Renewals and/or Redeterminations,51396.0,"Includes Renewals and/or Redeterminations; Count is of Households, Not Individuals",8883.0,"Count is of Households, Not Individuals",60279.0,"Includes Renewals and/or Redeterminations; Count is of Households, Not Individuals",1391039.0,,2949330.0,,2772759.0,,176571.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,201707,Y,P,N,75826.0,Includes Renewals and/or Redeterminations,0.0,,75826.0,Includes Renewals and/or Redeterminations,45641.0,"Includes Renewals and/or Redeterminations; Count is of Households, Not Individuals",7668.0,"Count is of Households, Not Individuals",53309.0,"Includes Renewals and/or Redeterminations; Count is of Households, Not Individuals",1418388.0,,3001087.0,,2714446.0,,286641.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,201707,Y,U,Y,81664.0,Includes Renewals and/or Redeterminations,0.0,,81664.0,Includes Renewals and/or Redeterminations,47709.0,"Includes Renewals and/or Redeterminations; Count is of Households, Not Individuals",7668.0,"Count is of Households, Not Individuals",55377.0,"Includes Renewals and/or Redeterminations; Count is of Households, Not Individuals",1418388.0,,3001087.0,,2714446.0,,286641.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,201708,Y,P,N,76719.0,Includes Renewals and/or Redeterminations,0.0,,76719.0,Includes Renewals and/or Redeterminations,45488.0,"Includes Renewals and/or Redeterminations; Count is of Households, Not Individuals",9447.0,"Count is of Households, Not Individuals",54935.0,"Includes Renewals and/or Redeterminations; Count is of Households, Not Individuals",1424292.0,,3013365.0,,2725645.0,,287720.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,201708,Y,U,Y,92808.0,Includes Renewals and/or Redeterminations,0.0,,92808.0,Includes Renewals and/or Redeterminations,54935.0,"Includes Renewals and/or Redeterminations; Count is of Households, Not Individuals",9447.0,"Count is of Households, Not Individuals",64382.0,"Includes Renewals and/or Redeterminations; Count is of Households, Not Individuals",1424292.0,,3013365.0,,2725645.0,,287720.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,201709,Y,P,N,66098.0,Includes Renewals and/or Redeterminations,0.0,,66098.0,Includes Renewals and/or Redeterminations,36758.0,"Includes Renewals and/or Redeterminations; Count is of Households, Not Individuals",8973.0,"Count is of Households, Not Individuals",45731.0,"Includes Renewals and/or Redeterminations; Count is of Households, Not Individuals",1423244.0,,3010042.0,,2722276.0,,287766.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,201709,Y,U,Y,84799.0,Includes Renewals and/or Redeterminations,0.0,,84799.0,Includes Renewals and/or Redeterminations,48511.0,"Includes Renewals and/or Redeterminations; Count is of Households, Not Individuals",8973.0,"Count is of Households, Not Individuals",57484.0,"Includes Renewals and/or Redeterminations; Count is of Households, Not Individuals",1423244.0,,3010042.0,,2722276.0,,287766.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,201710,Y,P,N,83150.0,Includes Renewals and/or Redeterminations,0.0,,83150.0,Includes Renewals and/or Redeterminations,47952.0,"Includes Renewals and/or Redeterminations; Count is of Households, Not Individuals",9936.0,"Count is of Households, Not Individuals",57888.0,"Includes Renewals and/or Redeterminations; Count is of Households, Not Individuals",1427431.0,,3017805.0,,2727128.0,,290677.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,201710,Y,U,Y,92419.0,Includes Renewals and/or Redeterminations,0.0,,92419.0,Includes Renewals and/or Redeterminations,52562.0,"Includes Renewals and/or Redeterminations; Count is of Households, Not Individuals",9936.0,"Count is of Households, Not Individuals",62498.0,"Includes Renewals and/or Redeterminations; Count is of Households, Not Individuals",1427431.0,,3017805.0,,2727128.0,,290677.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,201711,Y,P,N,72233.0,,0.0,,72233.0,,56510.0,,9602.0,,66112.0,,1431255.0,,3033755.0,,2741429.0,,292326.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,201711,Y,U,Y,90081.0,Includes Renewals and/or Redeterminations,0.0,,90081.0,Includes Renewals and/or Redeterminations,56510.0,"Includes Renewals and/or Redeterminations; Count is of Households, Not Individuals",9602.0,"Count is of Households, Not Individuals",66112.0,"Includes Renewals and/or Redeterminations; Count is of Households, Not Individuals",1431255.0,,3033755.0,,2741429.0,,292326.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,201712,Y,P,N,72789.0,Includes Renewals and/or Redeterminations,0.0,,72789.0,Includes Renewals and/or Redeterminations,47908.0,"Includes Renewals and/or Redeterminations; Count is of Households, Not Individuals",11405.0,"Count is of Households, Not Individuals",59313.0,"Includes Renewals and/or Redeterminations; Count is of Households, Not Individuals",1433406.0,,3045093.0,,2751601.0,,293492.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,201712,Y,U,Y,86015.0,Includes Renewals and/or Redeterminations,0.0,,86015.0,Includes Renewals and/or Redeterminations,57721.0,"Includes Renewals and/or Redeterminations; Count is of Households, Not Individuals",11405.0,"Count is of Households, Not Individuals",69126.0,"Includes Renewals and/or Redeterminations; Count is of Households, Not Individuals",1433406.0,,3045093.0,,2751601.0,,293492.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,201801,Y,P,N,82495.0,Includes Renewals and/or Redeterminations,0.0,,82495.0,Includes Renewals and/or Redeterminations,51066.0,"Includes Renewals and/or Redeterminations; Count is of Households, Not Individuals",11107.0,"Count is of Households, Not Individuals",62173.0,"Includes Renewals and/or Redeterminations; Count is of Households, Not Individuals",1436097.0,,3051993.0,,2757616.0,,294377.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,201801,Y,U,Y,95922.0,Includes Renewals and/or Redeterminations,0.0,,95922.0,Includes Renewals and/or Redeterminations,58757.0,"Includes Renewals and/or Redeterminations; Count is of Households, Not Individuals",11107.0,"Count is of Households, Not Individuals",69864.0,"Includes Renewals and/or Redeterminations; Count is of Households, Not Individuals",1436097.0,,3051993.0,,2757616.0,,294377.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,201802,Y,P,N,67524.0,Includes Renewals and/or Redeterminations,0.0,,67524.0,Includes Renewals and/or Redeterminations,40585.0,"Includes Renewals and/or Redeterminations; Count is of Households, Not Individuals",9965.0,"Count is of Households, Not Individuals",50550.0,"Includes Renewals and/or Redeterminations; Count is of Households, Not Individuals",1436080.0,,3052124.0,,2758554.0,,293570.0,,,,7376.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",13112.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",22644.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",2345.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",3860.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",,,,,, +PA,Pennsylvania,201802,Y,U,Y,80253.0,Includes Renewals and/or Redeterminations,0.0,,80253.0,Includes Renewals and/or Redeterminations,48196.0,"Includes Renewals and/or Redeterminations; Count is of Households, Not Individuals",9965.0,"Count is of Households, Not Individuals",58161.0,"Includes Renewals and/or Redeterminations; Count is of Households, Not Individuals",1436080.0,,3052124.0,,2758554.0,,293570.0,,,,8745.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",14633.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",26177.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",2553.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",3897.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",,,,,, +PA,Pennsylvania,201803,Y,P,N,66177.0,Includes Renewals and/or Redeterminations,0.0,,66177.0,Includes Renewals and/or Redeterminations,51715.0,"Includes Renewals and/or Redeterminations; Count is of Households, Not Individuals",10626.0,"Count is of Households, Not Individuals",62341.0,"Includes Renewals and/or Redeterminations; Count is of Households, Not Individuals",1437214.0,,3052840.0,,2759353.0,,293487.0,,,,8767.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",17041.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",26967.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",2474.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",2942.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",,,,,, +PA,Pennsylvania,201803,Y,U,Y,84721.0,Includes Renewals and/or Redeterminations,0.0,,84721.0,Includes Renewals and/or Redeterminations,51716.0,"Includes Renewals and/or Redeterminations; Count is of Households, Not Individuals",10626.0,"Count is of Households, Not Individuals",62342.0,"Includes Renewals and/or Redeterminations; Count is of Households, Not Individuals",1437214.0,,3052840.0,,2759353.0,,293487.0,,,,8774.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",17036.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",26967.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",2413.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",3001.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",,,,,, +PA,Pennsylvania,201804,Y,P,N,82826.0,Includes Renewals and/or Redeterminations,0.0,,82826.0,Includes Renewals and/or Redeterminations,49255.0,"Includes Renewals and/or Redeterminations; Count is of Households, Not Individuals",6799.0,"Count is of Households, Not Individuals",56054.0,"Includes Renewals and/or Redeterminations; Count is of Households, Not Individuals",1430838.0,,3043199.0,,2754619.0,,288580.0,,,,8917.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",13935.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",23749.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",2122.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",2266.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",,,,,, +PA,Pennsylvania,201804,Y,U,Y,88329.0,Includes Renewals and/or Redeterminations,0.0,,88329.0,Includes Renewals and/or Redeterminations,51605.0,"Includes Renewals and/or Redeterminations; Count is of Households, Not Individuals",6799.0,"Count is of Households, Not Individuals",58404.0,"Includes Renewals and/or Redeterminations; Count is of Households, Not Individuals",1430838.0,,3043199.0,,2754619.0,,288580.0,,,,9389.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",14504.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",24611.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",2227.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",2272.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",,,,,, +PA,Pennsylvania,201805,Y,P,N,74470.0,Includes Renewals and/or Redeterminations,0.0,,74470.0,Includes Renewals and/or Redeterminations,45631.0,"Includes Renewals and/or Redeterminations; Count is of Households, Not Individuals",9091.0,"Count is of Households, Not Individuals",54722.0,"Includes Renewals and/or Redeterminations; Count is of Households, Not Individuals",1433213.0,,3046181.0,,2757255.0,,288926.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,201805,Y,U,Y,87119.0,Includes Renewals and/or Redeterminations,0.0,,87119.0,Includes Renewals and/or Redeterminations,52889.0,"Includes Renewals and/or Redeterminations; Count is of Households, Not Individuals",9091.0,"Count is of Households, Not Individuals",61980.0,"Includes Renewals and/or Redeterminations; Count is of Households, Not Individuals",1433213.0,,3046181.0,,2757255.0,,288926.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,201806,Y,P,N,65991.0,Includes Renewals and/or Redeterminations,0.0,,65991.0,Includes Renewals and/or Redeterminations,37527.0,"Includes Renewals and/or Redeterminations; Count is of Households, Not Individuals",8969.0,"Count is of Households, Not Individuals",46496.0,"Includes Renewals and/or Redeterminations; Count is of Households, Not Individuals",1431445.0,,3037148.0,,2748392.0,,288756.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,201806,Y,U,Y,84456.0,Includes Renewals and/or Redeterminations,0.0,,84456.0,Includes Renewals and/or Redeterminations,49026.0,"Includes Renewals and/or Redeterminations; Count is of Households, Not Individuals",8969.0,"Count is of Households, Not Individuals",57995.0,"Includes Renewals and/or Redeterminations; Count is of Households, Not Individuals",1431445.0,,3037148.0,,2748392.0,,288756.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,201807,Y,P,N,81660.0,Includes Renewals and/or Redeterminations,0.0,,81660.0,Includes Renewals and/or Redeterminations,75094.0,Includes Renewals and/or Redeterminations,9120.0,,84214.0,Includes Renewals and/or Redeterminations,1431388.0,,3033379.0,,2744327.0,,289052.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,201807,Y,U,Y,91063.0,Includes Renewals and/or Redeterminations,0.0,,91063.0,Includes Renewals and/or Redeterminations,82826.0,Includes Renewals and/or Redeterminations,9120.0,,91946.0,Includes Renewals and/or Redeterminations,1431388.0,,3033379.0,,2744327.0,,289052.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,201808,Y,P,N,77239.0,Includes Renewals and/or Redeterminations,0.0,,77239.0,Includes Renewals and/or Redeterminations,91865.0,Includes Renewals and/or Redeterminations,9984.0,,101849.0,Includes Renewals and/or Redeterminations,1433189.0,,3032672.0,,2741763.0,,290909.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,201808,Y,U,Y,96596.0,Includes Renewals and/or Redeterminations,0.0,,96596.0,Includes Renewals and/or Redeterminations,91865.0,Includes Renewals and/or Redeterminations,9984.0,,101849.0,Includes Renewals and/or Redeterminations,1433189.0,,3032672.0,,2741763.0,,290909.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,201809,Y,P,N,65232.0,Includes Renewals and/or Redeterminations,0.0,,65232.0,Includes Renewals and/or Redeterminations,57939.0,Includes Renewals and/or Redeterminations,9445.0,,67384.0,Includes Renewals and/or Redeterminations,1426362.0,,3016323.0,,2725574.0,,290749.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,201809,Y,U,Y,86410.0,Includes Renewals and/or Redeterminations,0.0,,86410.0,Includes Renewals and/or Redeterminations,76879.0,Includes Renewals and/or Redeterminations,9445.0,,86324.0,Includes Renewals and/or Redeterminations,1426362.0,,3016323.0,,2725574.0,,290749.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,201810,Y,P,N,87125.0,Includes Renewals and/or Redeterminations,0.0,,87125.0,Includes Renewals and/or Redeterminations,76876.0,Includes Renewals and/or Redeterminations,10855.0,,87731.0,Includes Renewals and/or Redeterminations,1426633.0,,3014811.0,,2721282.0,,293529.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,201810,Y,U,Y,100808.0,Includes Renewals and/or Redeterminations,0.0,,100808.0,Includes Renewals and/or Redeterminations,89708.0,Includes Renewals and/or Redeterminations,10855.0,,100563.0,Includes Renewals and/or Redeterminations,1426633.0,,3014811.0,,2721282.0,,293529.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,201811,Y,P,N,88473.0,Includes Renewals and/or Redeterminations,0.0,,88473.0,Includes Renewals and/or Redeterminations,61142.0,Includes Renewals and/or Redeterminations,8883.0,,70025.0,Includes Renewals and/or Redeterminations,1424466.0,,3012915.0,,2718143.0,,294772.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,201811,Y,U,Y,90347.0,Includes Renewals and/or Redeterminations,0.0,,90347.0,Includes Renewals and/or Redeterminations,81561.0,Includes Renewals and/or Redeterminations,8883.0,,90444.0,Includes Renewals and/or Redeterminations,1424466.0,,3012915.0,,2718143.0,,294772.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,201812,Y,P,N,80296.0,Includes Renewals and/or Redeterminations,0.0,,80296.0,Includes Renewals and/or Redeterminations,80609.0,Includes Renewals and/or Redeterminations,9700.0,,90309.0,Includes Renewals and/or Redeterminations,1420979.0,,3011424.0,,2717450.0,,293974.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,201812,Y,U,Y,84383.0,Includes Renewals and/or Redeterminations,0.0,,84383.0,Includes Renewals and/or Redeterminations,82996.0,Includes Renewals and/or Redeterminations,9700.0,,92696.0,Includes Renewals and/or Redeterminations,1420979.0,,3011424.0,,2717450.0,,293974.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,201901,Y,P,N,83047.0,Includes Renewals and/or Redeterminations,0.0,,83047.0,Includes Renewals and/or Redeterminations,77015.0,Includes Renewals and/or Redeterminations,11680.0,,88695.0,Includes Renewals and/or Redeterminations,1424353.0,,3016820.0,,2720791.0,,296029.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,201901,Y,U,Y,99201.0,Includes Renewals and/or Redeterminations,0.0,,99201.0,Includes Renewals and/or Redeterminations,92104.0,Includes Renewals and/or Redeterminations,11680.0,,103784.0,Includes Renewals and/or Redeterminations,1424353.0,,3016820.0,,2720791.0,,296029.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,201902,Y,P,N,65431.0,Includes Renewals and/or Redeterminations,0.0,,65431.0,Includes Renewals and/or Redeterminations,61401.0,Includes Renewals and/or Redeterminations,9391.0,,70792.0,Includes Renewals and/or Redeterminations,1422014.0,,3010265.0,,2714943.0,,295322.0,,,,9881.0,Incorrectly includes redeterminations,16991.0,Incorrectly includes redeterminations,30146.0,Incorrectly includes redeterminations,4369.0,Incorrectly includes redeterminations,7464.0,Incorrectly includes redeterminations,,,,,, +PA,Pennsylvania,201902,Y,U,Y,83044.0,Includes Renewals and/or Redeterminations,0.0,,83044.0,Includes Renewals and/or Redeterminations,78044.0,Includes Renewals and/or Redeterminations,9391.0,,87435.0,Includes Renewals and/or Redeterminations,1422014.0,,3010265.0,,2714943.0,,295322.0,,,,12682.0,Incorrectly includes redeterminations,20639.0,Incorrectly includes redeterminations,37414.0,Incorrectly includes redeterminations,5165.0,Incorrectly includes redeterminations,8387.0,Incorrectly includes redeterminations,,,,,, +PA,Pennsylvania,201903,Y,P,N,73666.0,Includes Renewals and/or Redeterminations,0.0,,73666.0,Includes Renewals and/or Redeterminations,78041.0,Includes Renewals and/or Redeterminations,9846.0,,87887.0,Includes Renewals and/or Redeterminations,1425541.0,,3017489.0,,2721282.0,,296207.0,,,,12701.0,Incorrectly includes redeterminations,20439.0,Incorrectly includes redeterminations,38094.0,Incorrectly includes redeterminations,5309.0,Incorrectly includes redeterminations,8111.0,Incorrectly includes redeterminations,,,,,, +PA,Pennsylvania,201903,Y,U,Y,95678.0,Includes Renewals and/or Redeterminations,0.0,,95678.0,Includes Renewals and/or Redeterminations,87958.0,Includes Renewals and/or Redeterminations,9846.0,,97804.0,Includes Renewals and/or Redeterminations,1425541.0,,3017489.0,,2721282.0,,296207.0,,,,16064.0,Incorrectly includes redeterminations,24079.0,Incorrectly includes redeterminations,41726.0,Incorrectly includes redeterminations,3973.0,Incorrectly includes redeterminations,3704.0,Incorrectly includes redeterminations,,,,,, +PA,Pennsylvania,201904,Y,P,N,84865.0,Includes Renewals and/or Redeterminations,0.0,,84865.0,Includes Renewals and/or Redeterminations,83736.0,Includes Renewals and/or Redeterminations,10861.0,,94597.0,Includes Renewals and/or Redeterminations,1425386.0,,3017274.0,,2720905.0,,296369.0,,,,14708.0,Incorrectly includes redeterminations,22727.0,Incorrectly includes redeterminations,43048.0,Incorrectly includes redeterminations,3504.0,Incorrectly includes redeterminations,2805.0,Incorrectly includes redeterminations,,,,,, +PA,Pennsylvania,201904,Y,U,Y,95185.0,Includes Renewals and/or Redeterminations,0.0,,95185.0,Includes Renewals and/or Redeterminations,91606.0,Includes Renewals and/or Redeterminations,10861.0,,102467.0,Includes Renewals and/or Redeterminations,1425386.0,,3017274.0,,2720905.0,,296369.0,,,,16193.0,Incorrectly includes redeterminations,24383.0,Incorrectly includes redeterminations,46385.0,Incorrectly includes redeterminations,3898.0,Incorrectly includes redeterminations,2834.0,Incorrectly includes redeterminations,,,,,, +PA,Pennsylvania,201905,Y,P,N,76350.0,Includes Renewals and/or Redeterminations,0.0,,76350.0,Includes Renewals and/or Redeterminations,71059.0,Includes Renewals and/or Redeterminations,10132.0,,81191.0,Includes Renewals and/or Redeterminations,1424527.0,,3014563.0,,2717787.0,,296776.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,201905,Y,U,Y,93066.0,Includes Renewals and/or Redeterminations,0.0,,93066.0,Includes Renewals and/or Redeterminations,86781.0,Includes Renewals and/or Redeterminations,10132.0,,96913.0,Includes Renewals and/or Redeterminations,1424527.0,,3014563.0,,2717787.0,,296776.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,201906,Y,P,N,67386.0,Includes Renewals and/or Redeterminations,0.0,,67386.0,Includes Renewals and/or Redeterminations,60297.0,Includes Renewals and/or Redeterminations,9258.0,,69555.0,Includes Renewals and/or Redeterminations,1420174.0,,3004032.0,,2708396.0,,295636.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,201906,Y,U,Y,88353.0,Includes Renewals and/or Redeterminations,0.0,,88353.0,Includes Renewals and/or Redeterminations,79715.0,Includes Renewals and/or Redeterminations,9258.0,,88973.0,Includes Renewals and/or Redeterminations,1420174.0,,3004032.0,,2708396.0,,295636.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,201907,Y,P,N,85235.0,Includes Renewals and/or Redeterminations,0.0,,85235.0,Includes Renewals and/or Redeterminations,78781.0,Includes Renewals and/or Redeterminations,10455.0,,89236.0,Includes Renewals and/or Redeterminations,1422445.0,,3007088.0,,2710177.0,,296911.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,201907,Y,U,Y,99081.0,Includes Renewals and/or Redeterminations,0.0,,99081.0,Includes Renewals and/or Redeterminations,90484.0,Includes Renewals and/or Redeterminations,10455.0,,100939.0,Includes Renewals and/or Redeterminations,1422445.0,,3007088.0,,2710177.0,,296911.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,201908,Y,P,N,77744.0,Includes Renewals and/or Redeterminations,0.0,,77744.0,Includes Renewals and/or Redeterminations,71726.0,Includes Renewals and/or Redeterminations,10917.0,,82643.0,Includes Renewals and/or Redeterminations,1425001.0,,3008789.0,,2710312.0,,298477.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,201908,Y,U,Y,97905.0,Includes Renewals and/or Redeterminations,0.0,,97905.0,Includes Renewals and/or Redeterminations,92456.0,Includes Renewals and/or Redeterminations,10917.0,,103373.0,Includes Renewals and/or Redeterminations,1425001.0,,3008789.0,,2710312.0,,298477.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,201909,Y,P,N,85936.0,Includes Renewals and/or Redeterminations,0.0,,85936.0,Includes Renewals and/or Redeterminations,82280.0,Includes Renewals and/or Redeterminations,9177.0,,91457.0,Includes Renewals and/or Redeterminations,1417499.0,,2992777.0,,2696358.0,,296419.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,201909,Y,U,Y,91808.0,Includes Renewals and/or Redeterminations,0.0,,91808.0,Includes Renewals and/or Redeterminations,83478.0,Includes Renewals and/or Redeterminations,9177.0,,92655.0,Includes Renewals and/or Redeterminations,1417499.0,,2992777.0,,2696358.0,,296419.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,201910,Y,P,N,85391.0,Includes Renewals and/or Redeterminations,0.0,,85391.0,Includes Renewals and/or Redeterminations,81095.0,Includes Renewals and/or Redeterminations,11956.0,,93051.0,Includes Renewals and/or Redeterminations,1419352.0,,2993527.0,,2693701.0,,299826.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,201910,Y,U,Y,101762.0,Includes Renewals and/or Redeterminations,0.0,,101762.0,Includes Renewals and/or Redeterminations,94282.0,Includes Renewals and/or Redeterminations,11956.0,,106238.0,Includes Renewals and/or Redeterminations,1419352.0,,2993527.0,,2693701.0,,299826.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,201911,Y,P,N,76370.0,Includes Renewals and/or Redeterminations,0.0,,76370.0,Includes Renewals and/or Redeterminations,70980.0,Includes Renewals and/or Redeterminations,10422.0,,81402.0,Includes Renewals and/or Redeterminations,1415684.0,,2987581.0,,2686536.0,,301045.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,201911,Y,U,Y,90851.0,Includes Renewals and/or Redeterminations,0.0,,90851.0,Includes Renewals and/or Redeterminations,85171.0,Includes Renewals and/or Redeterminations,10422.0,,95593.0,Includes Renewals and/or Redeterminations,1415684.0,,2987581.0,,2686536.0,,301045.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,201912,Y,P,N,83499.0,Includes Renewals and/or Redeterminations,0.0,,83499.0,Includes Renewals and/or Redeterminations,82345.0,Includes Renewals and/or Redeterminations,12091.0,,94436.0,Includes Renewals and/or Redeterminations,1412936.0,,2986439.0,,2685303.0,,301136.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,201912,Y,U,Y,92703.0,Includes Renewals and/or Redeterminations,0.0,,92703.0,Includes Renewals and/or Redeterminations,88845.0,Includes Renewals and/or Redeterminations,12091.0,,100936.0,Includes Renewals and/or Redeterminations,1412936.0,,2986439.0,,2685303.0,,301136.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,202001,Y,P,N,109427.0,Includes Renewals and/or Redeterminations,0.0,,109427.0,Includes Renewals and/or Redeterminations,73873.0,Includes Renewals and/or Redeterminations,11544.0,,85417.0,Includes Renewals and/or Redeterminations,1417222.0,,2995303.0,,2693097.0,,302206.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,202001,Y,U,Y,110675.0,,0.0,,110675.0,,67067.0,,11544.0,,78611.0,,1417222.0,,2995303.0,,2693097.0,,302206.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,202002,Y,P,N,68376.0,Includes Renewals and/or Redeterminations,0.0,,68376.0,Includes Renewals and/or Redeterminations,61979.0,Includes Renewals and/or Redeterminations,10410.0,,72389.0,Includes Renewals and/or Redeterminations,1412736.0,,2989204.0,,2687743.0,,301461.0,,,,12549.0,Incorrectly includes redeterminations,17251.0,Incorrectly includes redeterminations,29949.0,Incorrectly includes redeterminations,3109.0,Incorrectly includes redeterminations,7805.0,Incorrectly includes redeterminations,,,,,, +PA,Pennsylvania,202002,Y,U,Y,90788.0,Includes Renewals and/or Redeterminations,0.0,,90788.0,Includes Renewals and/or Redeterminations,84637.0,Includes Renewals and/or Redeterminations,10410.0,,95047.0,Includes Renewals and/or Redeterminations,1412736.0,,2989204.0,,2687743.0,,301461.0,,,,12549.0,Incorrectly includes redeterminations,17251.0,Incorrectly includes redeterminations,29939.0,Incorrectly includes redeterminations,3109.0,Incorrectly includes redeterminations,7805.0,Incorrectly includes redeterminations,,,,,, +PA,Pennsylvania,202003,Y,P,N,87299.0,Includes Renewals and/or Redeterminations,0.0,,87299.0,Includes Renewals and/or Redeterminations,86381.0,Includes Renewals and/or Redeterminations,14396.0,,100777.0,Includes Renewals and/or Redeterminations,1427133.0,,3011408.0,,2700151.0,,311257.0,,,,14958.0,Incorrectly includes redeterminations,27151.0,Incorrectly includes redeterminations,39497.0,Incorrectly includes redeterminations,4467.0,Incorrectly includes redeterminations,7922.0,Incorrectly includes redeterminations,,,,,, +PA,Pennsylvania,202003,Y,U,Y,99102.0,Includes Renewals and/or Redeterminations,0.0,,99102.0,Includes Renewals and/or Redeterminations,95525.0,Includes Renewals and/or Redeterminations,14396.0,,109921.0,Includes Renewals and/or Redeterminations,1427133.0,,3011408.0,,2700151.0,,311257.0,,,,16398.0,Incorrectly includes redeterminations,30372.0,Incorrectly includes redeterminations,42578.0,Incorrectly includes redeterminations,5070.0,Incorrectly includes redeterminations,8011.0,Incorrectly includes redeterminations,,,,,, +PA,Pennsylvania,202004,Y,P,N,77752.0,Includes Renewals and/or Redeterminations,0.0,,77752.0,Includes Renewals and/or Redeterminations,111606.0,Includes Renewals and/or Redeterminations,8959.0,,120565.0,Includes Renewals and/or Redeterminations,1446682.0,,3060956.0,,2747857.0,,313099.0,,,,16564.0,Incorrectly includes redeterminations,39337.0,Incorrectly includes redeterminations,51705.0,Incorrectly includes redeterminations,7389.0,Incorrectly includes redeterminations,3098.0,Incorrectly includes redeterminations,,,,,, +PA,Pennsylvania,202004,Y,U,Y,95217.0,Includes Renewals and/or Redeterminations,0.0,,95217.0,Includes Renewals and/or Redeterminations,142603.0,Includes Renewals and/or Redeterminations,8959.0,,151562.0,Includes Renewals and/or Redeterminations,1446682.0,,3060956.0,,2747857.0,,313099.0,,,,21082.0,Incorrectly includes redeterminations,47511.0,Incorrectly includes redeterminations,61587.0,Incorrectly includes redeterminations,8601.0,Incorrectly includes redeterminations,3224.0,Incorrectly includes redeterminations,,,,,, +PA,Pennsylvania,202005,Y,P,N,53025.0,Includes Renewals and/or Redeterminations,0.0,,53025.0,Includes Renewals and/or Redeterminations,67091.0,Includes Renewals and/or Redeterminations,3986.0,,71077.0,Includes Renewals and/or Redeterminations,1451911.0,,3094732.0,,2794633.0,,300099.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,202005,Y,U,Y,66733.0,Includes Renewals and/or Redeterminations,0.0,,66733.0,Includes Renewals and/or Redeterminations,80881.0,Includes Renewals and/or Redeterminations,3986.0,,84867.0,Includes Renewals and/or Redeterminations,1451911.0,,3094732.0,,2794633.0,,300099.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,202006,Y,P,N,54313.0,Includes Renewals and/or Redeterminations,0.0,,54313.0,Includes Renewals and/or Redeterminations,58910.0,Includes Renewals and/or Redeterminations,3359.0,,62269.0,Includes Renewals and/or Redeterminations,1456527.0,,3119757.0,,2824900.0,,294857.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,202006,Y,U,Y,61284.0,Includes Renewals and/or Redeterminations,0.0,,61284.0,Includes Renewals and/or Redeterminations,64761.0,Includes Renewals and/or Redeterminations,3359.0,,68120.0,Includes Renewals and/or Redeterminations,1456527.0,,3119757.0,,2824900.0,,294857.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,202007,Y,P,N,64136.0,Includes Renewals and/or Redeterminations,0.0,,64136.0,Includes Renewals and/or Redeterminations,48440.0,Includes Renewals and/or Redeterminations,3417.0,,51857.0,Includes Renewals and/or Redeterminations,1463675.0,,3149552.0,,2856188.0,,293364.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,202007,Y,U,Y,65143.0,Includes Renewals and/or Redeterminations,0.0,,65143.0,Includes Renewals and/or Redeterminations,62449.0,Includes Renewals and/or Redeterminations,3417.0,,65866.0,Includes Renewals and/or Redeterminations,1463675.0,,3149552.0,,2856188.0,,293364.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,202008,Y,P,N,63753.0,Includes Renewals and/or Redeterminations,0.0,,63753.0,Includes Renewals and/or Redeterminations,46613.0,Includes Renewals and/or Redeterminations,3943.0,,50556.0,Includes Renewals and/or Redeterminations,1475869.0,,3184383.0,,2889243.0,,295140.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,202008,Y,U,Y,69511.0,Includes Renewals and/or Redeterminations,0.0,,69511.0,Includes Renewals and/or Redeterminations,66288.0,Includes Renewals and/or Redeterminations,3943.0,,70231.0,Includes Renewals and/or Redeterminations,1475869.0,,3184383.0,,2889243.0,,295140.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,202009,Y,P,N,57027.0,Includes Renewals and/or Redeterminations,0.0,,57027.0,Includes Renewals and/or Redeterminations,59212.0,Includes Renewals and/or Redeterminations,3629.0,,62841.0,Includes Renewals and/or Redeterminations,1483548.0,,3212864.0,,2918236.0,,294628.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,202009,Y,U,Y,67668.0,Includes Renewals and/or Redeterminations,0.0,,67668.0,Includes Renewals and/or Redeterminations,67045.0,Includes Renewals and/or Redeterminations,3629.0,,70674.0,Includes Renewals and/or Redeterminations,1483548.0,,3212864.0,,2918236.0,,294628.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,202010,Y,P,N,55532.0,Includes Renewals and/or Redeterminations,0.0,,55532.0,Includes Renewals and/or Redeterminations,33504.0,Includes Renewals and/or Redeterminations,4178.0,,37682.0,Includes Renewals and/or Redeterminations,1493504.0,,3242930.0,,2947314.0,,295616.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,202010,Y,U,Y,74304.0,Includes Renewals and/or Redeterminations,0.0,,74304.0,Includes Renewals and/or Redeterminations,72222.0,Includes Renewals and/or Redeterminations,4178.0,,76400.0,Includes Renewals and/or Redeterminations,1493504.0,,3242930.0,,2947314.0,,295616.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,202011,Y,P,N,78234.0,Includes Renewals and/or Redeterminations,18486.0,,96720.0,Includes Renewals and/or Redeterminations,65209.0,Includes Renewals and/or Redeterminations,3493.0,,68702.0,Includes Renewals and/or Redeterminations,1499414.0,,3270683.0,,2975354.0,,295329.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,202011,Y,U,Y,89987.0,,18486.0,,108473.0,,68953.0,,3493.0,,72446.0,,1499414.0,,3270683.0,,2975354.0,,295329.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,202012,Y,P,N,82141.0,Includes Renewals and/or Redeterminations,26981.0,,109122.0,Includes Renewals and/or Redeterminations,72849.0,Includes Renewals and/or Redeterminations,3777.0,,76626.0,Includes Renewals and/or Redeterminations,1507733.0,,3303119.0,,3007081.0,,296038.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,202012,Y,U,Y,99357.0,Includes Renewals and/or Redeterminations,26981.0,,126338.0,Includes Renewals and/or Redeterminations,87024.0,Includes Renewals and/or Redeterminations,3777.0,,90801.0,Includes Renewals and/or Redeterminations,1507733.0,,3303119.0,,3007081.0,,296038.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,202101,Y,P,N,64365.0,Includes Renewals and/or Redeterminations,11378.0,,75743.0,Includes Renewals and/or Redeterminations,36886.0,Includes Renewals and/or Redeterminations,4074.0,,40960.0,Includes Renewals and/or Redeterminations,1514243.0,,3329984.0,,3034636.0,,295348.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,202101,Y,U,Y,87477.0,Includes Renewals and/or Redeterminations,11378.0,,98855.0,Includes Renewals and/or Redeterminations,72832.0,Includes Renewals and/or Redeterminations,4074.0,,76906.0,Includes Renewals and/or Redeterminations,1514243.0,,3329984.0,,3034636.0,,295348.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,202102,Y,P,N,49892.0,Includes Renewals and/or Redeterminations,5565.0,,55457.0,Includes Renewals and/or Redeterminations,48939.0,Includes Renewals and/or Redeterminations,3451.0,,52390.0,Includes Renewals and/or Redeterminations,1517827.0,,3345840.0,,3051646.0,,294194.0,,,,7637.0,Incorrectly includes redeterminations,15836.0,Incorrectly includes redeterminations,24066.0,Incorrectly includes redeterminations,2387.0,Incorrectly includes redeterminations,2369.0,Incorrectly includes redeterminations,,,,,, +PA,Pennsylvania,202102,Y,U,Y,69988.0,Includes Renewals and/or Redeterminations,5565.0,,75553.0,Includes Renewals and/or Redeterminations,65636.0,Includes Renewals and/or Redeterminations,3451.0,,69087.0,Includes Renewals and/or Redeterminations,1517827.0,,3345840.0,,3051646.0,,294194.0,,,,10245.0,Incorrectly includes redeterminations,20655.0,Incorrectly includes redeterminations,31527.0,Incorrectly includes redeterminations,3092.0,Incorrectly includes redeterminations,2517.0,Incorrectly includes redeterminations,,,,,, +PA,Pennsylvania,202103,Y,P,N,66460.0,Includes Renewals and/or Redeterminations,6188.0,,72648.0,Includes Renewals and/or Redeterminations,38823.0,Includes Renewals and/or Redeterminations,3244.0,,42067.0,Includes Renewals and/or Redeterminations,1523869.0,,3365904.0,,3071774.0,,294130.0,,,,6759.0,Incorrectly includes redeterminations,13087.0,Incorrectly includes redeterminations,17786.0,Incorrectly includes redeterminations,1123.0,Incorrectly includes redeterminations,1111.0,Incorrectly includes redeterminations,,,,,, +PA,Pennsylvania,202103,Y,U,Y,78102.0,Includes Renewals and/or Redeterminations,6188.0,,84290.0,Includes Renewals and/or Redeterminations,68474.0,Includes Renewals and/or Redeterminations,3244.0,,71718.0,Includes Renewals and/or Redeterminations,1523869.0,,3365904.0,,3071774.0,,294130.0,,,,11830.0,Incorrectly includes redeterminations,20756.0,Incorrectly includes redeterminations,31192.0,Incorrectly includes redeterminations,2084.0,Incorrectly includes redeterminations,1183.0,Incorrectly includes redeterminations,,,,,, +PA,Pennsylvania,202104,Y,P,N,54319.0,,6299.0,,60618.0,,45152.0,,2753.0,,47905.0,,1528683.0,,3383454.0,,3091655.0,,291799.0,,,,7910.0,Incorrectly includes redeterminations,15675.0,Incorrectly includes redeterminations,21490.0,Incorrectly includes redeterminations,1308.0,Incorrectly includes redeterminations,824.0,Incorrectly includes redeterminations,,,,,, +PA,Pennsylvania,202104,Y,U,Y,71834.0,,6299.0,,78133.0,,60021.0,,2753.0,,62774.0,,1528683.0,,3383454.0,,3091655.0,,291799.0,,,,10525.0,Incorrectly includes redeterminations,19768.0,Incorrectly includes redeterminations,26172.0,Incorrectly includes redeterminations,1602.0,Incorrectly includes redeterminations,839.0,Incorrectly includes redeterminations,,,,,, +PA,Pennsylvania,202105,Y,P,N,62614.0,Includes Renewals and/or Redeterminations,6882.0,,69496.0,Includes Renewals and/or Redeterminations,51842.0,Includes Renewals and/or Redeterminations,2737.0,,54579.0,Includes Renewals and/or Redeterminations,1528704.0,,3393651.0,,3107906.0,,285745.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,202105,Y,U,Y,65434.0,Includes Renewals and/or Redeterminations,6882.0,,72316.0,Includes Renewals and/or Redeterminations,51845.0,Includes Renewals and/or Redeterminations,2737.0,,54582.0,Includes Renewals and/or Redeterminations,1528704.0,,3393651.0,,3107906.0,,285745.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,202106,Y,P,N,55207.0,Includes Renewals and/or Redeterminations,5964.0,,61171.0,Includes Renewals and/or Redeterminations,45670.0,Includes Renewals and/or Redeterminations,2692.0,,48362.0,Includes Renewals and/or Redeterminations,1528984.0,,3405675.0,,3125365.0,,280310.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,202106,Y,U,Y,65800.0,Includes Renewals and/or Redeterminations,5964.0,,71764.0,Includes Renewals and/or Redeterminations,55041.0,Includes Renewals and/or Redeterminations,2692.0,,57733.0,Includes Renewals and/or Redeterminations,1528984.0,,3405675.0,,3125365.0,,280310.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,202107,Y,P,N,49989.0,Includes Renewals and/or Redeterminations,6554.0,,56543.0,Includes Renewals and/or Redeterminations,38727.0,Includes Renewals and/or Redeterminations,2424.0,,41151.0,Includes Renewals and/or Redeterminations,1532891.0,,3422966.0,,3145878.0,,277088.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,202107,Y,U,Y,67034.0,Includes Renewals and/or Redeterminations,6554.0,,73588.0,Includes Renewals and/or Redeterminations,50322.0,Includes Renewals and/or Redeterminations,2424.0,,52746.0,Includes Renewals and/or Redeterminations,1532891.0,,3422966.0,,3145878.0,,277088.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,202108,Y,P,N,66775.0,Includes Renewals and/or Redeterminations,8138.0,,74913.0,Includes Renewals and/or Redeterminations,50818.0,Includes Renewals and/or Redeterminations,2830.0,,53648.0,Includes Renewals and/or Redeterminations,1538624.0,,3444045.0,,3169221.0,,274824.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,202108,Y,U,Y,75878.0,Includes Renewals and/or Redeterminations,8138.0,,84016.0,Includes Renewals and/or Redeterminations,55931.0,Includes Renewals and/or Redeterminations,2830.0,,58761.0,Includes Renewals and/or Redeterminations,1538624.0,,3444045.0,,3169221.0,,274824.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,202109,Y,P,N,59191.0,Includes Renewals and/or Redeterminations,4055.0,,63246.0,Includes Renewals and/or Redeterminations,51510.0,Includes Renewals and/or Redeterminations,2792.0,,54302.0,Includes Renewals and/or Redeterminations,1544457.0,,3465577.0,,3192373.0,,273204.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,202109,Y,U,Y,74288.0,Includes Renewals and/or Redeterminations,4055.0,,78343.0,Includes Renewals and/or Redeterminations,64448.0,Includes Renewals and/or Redeterminations,2792.0,,67240.0,Includes Renewals and/or Redeterminations,1544457.0,,3465577.0,,3192373.0,,273204.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,202110,Y,P,N,52571.0,Includes Renewals and/or Redeterminations,4272.0,,56843.0,Includes Renewals and/or Redeterminations,51599.0,Includes Renewals and/or Redeterminations,2747.0,,54346.0,Includes Renewals and/or Redeterminations,1549818.0,,3485696.0,,3214137.0,,271559.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,202110,Y,U,Y,74155.0,Includes Renewals and/or Redeterminations,4272.0,,78427.0,Includes Renewals and/or Redeterminations,68177.0,Includes Renewals and/or Redeterminations,2747.0,,70924.0,Includes Renewals and/or Redeterminations,1549818.0,,3485696.0,,3214137.0,,271559.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,202111,Y,P,N,65322.0,Includes Renewals and/or Redeterminations,25313.0,,90635.0,Includes Renewals and/or Redeterminations,63625.0,Includes Renewals and/or Redeterminations,3636.0,,67261.0,Includes Renewals and/or Redeterminations,1552224.0,,3504694.0,,3235562.0,,269132.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,202111,Y,U,Y,78308.0,Includes Renewals and/or Redeterminations,25313.0,,103621.0,Includes Renewals and/or Redeterminations,71026.0,Includes Renewals and/or Redeterminations,3636.0,,74662.0,Includes Renewals and/or Redeterminations,1552224.0,,3504694.0,,3235562.0,,269132.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,202112,Y,P,N,57293.0,Includes Renewals and/or Redeterminations,18032.0,,75325.0,Includes Renewals and/or Redeterminations,60689.0,Includes Renewals and/or Redeterminations,3911.0,,64600.0,Includes Renewals and/or Redeterminations,1556340.0,,3523735.0,,3255429.0,,268306.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,202112,Y,U,Y,72068.0,Includes Renewals and/or Redeterminations,18032.0,,90100.0,Includes Renewals and/or Redeterminations,71569.0,Includes Renewals and/or Redeterminations,3911.0,,75480.0,Includes Renewals and/or Redeterminations,1556340.0,,3523735.0,,3255429.0,,268306.0,,,,,,,,,,,,,,,,,,, +PA,Pennsylvania,202201,Y,P,N,72644.0,Includes Renewals and/or Redeterminations,11570.0,,84214.0,Includes Renewals and/or Redeterminations,65047.0,Includes Renewals and/or Redeterminations,3118.0,,68165.0,Includes Renewals and/or Redeterminations,1560758.0,,3542093.0,,3274668.0,,267425.0,,,,10175.0,Incorrectly includes redeterminations,20844.0,Incorrectly includes redeterminations,31660.0,Incorrectly includes redeterminations,4510.0,Incorrectly includes redeterminations,3231.0,Incorrectly includes redeterminations,,,,,, +PA,Pennsylvania,202201,Y,U,Y,80259.0,Includes Renewals and/or Redeterminations,11570.0,,91829.0,Includes Renewals and/or Redeterminations,68237.0,Includes Renewals and/or Redeterminations,3118.0,,71355.0,Includes Renewals and/or Redeterminations,1560758.0,,3542093.0,,3274668.0,,267425.0,,,,10697.0,Incorrectly includes redeterminations,21768.0,Incorrectly includes redeterminations,33022.0,Incorrectly includes redeterminations,4744.0,Incorrectly includes redeterminations,3316.0,Incorrectly includes redeterminations,,,,,, +PA,Pennsylvania,202202,Y,P,N,63634.0,Includes Renewals and/or Redeterminations,4334.0,,67968.0,Includes Renewals and/or Redeterminations,63175.0,Includes Renewals and/or Redeterminations,2973.0,,66148.0,Includes Renewals and/or Redeterminations,1563964.0,,3555204.0,,3289243.0,,265961.0,,,,9645.0,Incorrectly includes redeterminations,18679.0,Incorrectly includes redeterminations,31595.0,Incorrectly includes redeterminations,3617.0,Incorrectly includes redeterminations,1417.0,Incorrectly includes redeterminations,,,,,, +PA,Pennsylvania,202202,Y,U,Y,70655.0,Includes Renewals and/or Redeterminations,4334.0,,74989.0,Includes Renewals and/or Redeterminations,66232.0,Includes Renewals and/or Redeterminations,2973.0,,69205.0,Includes Renewals and/or Redeterminations,1563964.0,,3555204.0,,3289243.0,,265961.0,,,,10061.0,Incorrectly includes redeterminations,19481.0,Incorrectly includes redeterminations,32822.0,Incorrectly includes redeterminations,4019.0,Incorrectly includes redeterminations,1461.0,Incorrectly includes redeterminations,,,,,, +PA,Pennsylvania,202203,Y,P,N,62894.0,Includes Renewals and/or Redeterminations,5055.0,,67949.0,Includes Renewals and/or Redeterminations,60269.0,Includes Renewals and/or Redeterminations,2699.0,,62968.0,Includes Renewals and/or Redeterminations,1567937.0,,3570327.0,,3305833.0,,264494.0,,,,9063.0,Incorrectly includes redeterminations,19389.0,Incorrectly includes redeterminations,28539.0,Incorrectly includes redeterminations,2610.0,Incorrectly includes redeterminations,1001.0,Incorrectly includes redeterminations,,,,,, +PA,Pennsylvania,202203,Y,U,Y,78902.0,Includes Renewals and/or Redeterminations,5055.0,,83957.0,Includes Renewals and/or Redeterminations,72088.0,Includes Renewals and/or Redeterminations,2699.0,,74787.0,Includes Renewals and/or Redeterminations,1567937.0,,3570327.0,,3305833.0,,264494.0,,,,10798.0,Incorrectly includes redeterminations,21543.0,Incorrectly includes redeterminations,33783.0,Incorrectly includes redeterminations,3228.0,Incorrectly includes redeterminations,1056.0,Incorrectly includes redeterminations,,,,,, +PA,Pennsylvania,202204,Y,P,N,51690.0,Includes Renewals and/or Redeterminations,5425.0,,57115.0,Includes Renewals and/or Redeterminations,48080.0,Includes Renewals and/or Redeterminations,2409.0,,50489.0,Includes Renewals and/or Redeterminations,1569511.0,,3582469.0,,3320152.0,,262317.0,,,,7817.0,Incorrectly includes redeterminations,15913.0,Incorrectly includes redeterminations,21026.0,Incorrectly includes redeterminations,1856.0,Incorrectly includes redeterminations,861.0,Incorrectly includes redeterminations,,,,,, +PA,Pennsylvania,202204,Y,U,Y,69865.0,Includes Renewals and/or Redeterminations,5425.0,,75290.0,Includes Renewals and/or Redeterminations,62278.0,Includes Renewals and/or Redeterminations,2409.0,,64687.0,Includes Renewals and/or Redeterminations,1569511.0,,3582469.0,,3320152.0,,262317.0,,,,10187.0,Incorrectly includes redeterminations,20042.0,Incorrectly includes redeterminations,27168.0,Incorrectly includes redeterminations,2384.0,Incorrectly includes redeterminations,894.0,Incorrectly includes redeterminations,,,,,, +PA,Pennsylvania,202205,Y,P,N,64110.0,Includes Renewals and/or Redeterminations,4103.0,,68213.0,Includes Renewals and/or Redeterminations,58706.0,Includes Renewals and/or Redeterminations,2381.0,,61087.0,Includes Renewals and/or Redeterminations,1570500.0,,3592984.0,,3331850.0,,261134.0,,,,9917.0,Incorrectly includes redeterminations,19087.0,Incorrectly includes redeterminations,25733.0,Incorrectly includes redeterminations,2064.0,Incorrectly includes redeterminations,855.0,Incorrectly includes redeterminations,,,,,, +PA,Pennsylvania,202205,Y,U,Y,71108.0,Includes Renewals and/or Redeterminations,4103.0,,75211.0,Includes Renewals and/or Redeterminations,61491.0,Includes Renewals and/or Redeterminations,2381.0,,63872.0,Includes Renewals and/or Redeterminations,1570500.0,,3592984.0,,3331850.0,,261134.0,,,,10382.0,Incorrectly includes redeterminations,19798.0,Incorrectly includes redeterminations,26924.0,Incorrectly includes redeterminations,2348.0,Incorrectly includes redeterminations,856.0,Incorrectly includes redeterminations,,,,,, +PA,Pennsylvania,202206,Y,P,N,58561.0,Includes Renewals and/or Redeterminations,3742.0,,62303.0,Includes Renewals and/or Redeterminations,52020.0,Includes Renewals and/or Redeterminations,2424.0,,54444.0,Includes Renewals and/or Redeterminations,1572837.0,,3605718.0,,3345711.0,,260007.0,,,,8771.0,Incorrectly includes redeterminations,16523.0,Incorrectly includes redeterminations,23238.0,Incorrectly includes redeterminations,2051.0,Incorrectly includes redeterminations,864.0,Incorrectly includes redeterminations,,,,,, +PA,Pennsylvania,202206,Y,U,Y,73984.0,Includes Renewals and/or Redeterminations,3742.0,,77726.0,Includes Renewals and/or Redeterminations,64003.0,Includes Renewals and/or Redeterminations,2424.0,,66427.0,Includes Renewals and/or Redeterminations,1572837.0,,3605718.0,,3345711.0,,260007.0,,,,10666.0,Incorrectly includes redeterminations,19758.0,Incorrectly includes redeterminations,28696.0,Incorrectly includes redeterminations,2553.0,Incorrectly includes redeterminations,893.0,Incorrectly includes redeterminations,,,,,, +PA,Pennsylvania,202207,Y,P,N,51683.0,Includes Renewals and/or Redeterminations,3681.0,,55364.0,Includes Renewals and/or Redeterminations,46944.0,Includes Renewals and/or Redeterminations,2346.0,,49290.0,Includes Renewals and/or Redeterminations,1577452.0,,3621759.0,,3362021.0,,259738.0,,,,8294.0,Incorrectly includes redeterminations,14284.0,Incorrectly includes redeterminations,21310.0,Incorrectly includes redeterminations,1970.0,Incorrectly includes redeterminations,788.0,Incorrectly includes redeterminations,,,,,, +PA,Pennsylvania,202207,Y,U,Y,70664.0,Includes Renewals and/or Redeterminations,3681.0,,74345.0,Includes Renewals and/or Redeterminations,61491.0,Includes Renewals and/or Redeterminations,2346.0,,63837.0,Includes Renewals and/or Redeterminations,1577452.0,,3621759.0,,3362021.0,,259738.0,,,,10794.0,Incorrectly includes redeterminations,18277.0,Incorrectly includes redeterminations,27718.0,Incorrectly includes redeterminations,2589.0,Incorrectly includes redeterminations,831.0,Incorrectly includes redeterminations,,,,,, +PA,Pennsylvania,202208,Y,P,N,68355.0,Includes Renewals and/or Redeterminations,4583.0,,72938.0,Includes Renewals and/or Redeterminations,59499.0,Includes Renewals and/or Redeterminations,3000.0,,62499.0,Includes Renewals and/or Redeterminations,1581944.0,,3638737.0,,3379171.0,,259566.0,,,,11539.0,Incorrectly includes redeterminations,19666.0,Incorrectly includes redeterminations,25031.0,Incorrectly includes redeterminations,1978.0,Incorrectly includes redeterminations,772.0,Incorrectly includes redeterminations,,,,,, +PA,Pennsylvania,202208,Y,U,Y,80896.0,Includes Renewals and/or Redeterminations,4583.0,,85479.0,Includes Renewals and/or Redeterminations,68461.0,Includes Renewals and/or Redeterminations,3000.0,,71461.0,Includes Renewals and/or Redeterminations,1581944.0,,3638737.0,,3379171.0,,259566.0,,,,13333.0,Incorrectly includes redeterminations,22220.0,Incorrectly includes redeterminations,28647.0,Incorrectly includes redeterminations,2311.0,Incorrectly includes redeterminations,776.0,Incorrectly includes redeterminations,,,,,, +PA,Pennsylvania,202209,Y,P,N,56753.0,Includes Renewals and/or Redeterminations,3627.0,,60380.0,Includes Renewals and/or Redeterminations,49125.0,Includes Renewals and/or Redeterminations,2566.0,,51691.0,Includes Renewals and/or Redeterminations,1561941.0,,3612679.0,,3355704.0,,256975.0,,,,9414.0,Incorrectly includes redeterminations,15715.0,Incorrectly includes redeterminations,21571.0,Incorrectly includes redeterminations,1703.0,Incorrectly includes redeterminations,696.0,Incorrectly includes redeterminations,,,,,, +PA,Pennsylvania,202209,Y,U,Y,75825.0,Includes Renewals and/or Redeterminations,3627.0,,79452.0,Includes Renewals and/or Redeterminations,64439.0,Includes Renewals and/or Redeterminations,2566.0,,67005.0,Includes Renewals and/or Redeterminations,1566245.0,,3626994.0,,3367833.0,,259161.0,,,,12173.0,Incorrectly includes redeterminations,20036.0,Incorrectly includes redeterminations,28033.0,Incorrectly includes redeterminations,2293.0,Incorrectly includes redeterminations,718.0,Incorrectly includes redeterminations,,,,,, +PA,Pennsylvania,202210,Y,P,N,72168.0,Includes Renewals and/or Redeterminations,4107.0,,76275.0,Includes Renewals and/or Redeterminations,64311.0,Includes Renewals and/or Redeterminations,2614.0,,66925.0,Includes Renewals and/or Redeterminations,1566997.0,,3633427.0,,3380400.0,,253027.0,,,,10105.0,Incorrectly includes redeterminations,19693.0,Incorrectly includes redeterminations,29980.0,Incorrectly includes redeterminations,2264.0,Incorrectly includes redeterminations,714.0,Incorrectly includes redeterminations,,,,,, +PA,Pennsylvania,202210,Y,U,Y,79363.0,Includes Renewals and/or Redeterminations,4107.0,,83470.0,Includes Renewals and/or Redeterminations,67462.0,Includes Renewals and/or Redeterminations,2614.0,,70076.0,Includes Renewals and/or Redeterminations,1569778.0,,3640482.0,,3386362.0,,254120.0,,,,10621.0,Incorrectly includes redeterminations,20566.0,Incorrectly includes redeterminations,31180.0,Incorrectly includes redeterminations,2623.0,Incorrectly includes redeterminations,720.0,Incorrectly includes redeterminations,,,,,, +PA,Pennsylvania,202211,Y,P,N,61150.0,Includes Renewals and/or Redeterminations,33921.0,,95071.0,Includes Renewals and/or Redeterminations,58473.0,Includes Renewals and/or Redeterminations,3062.0,,61535.0,Includes Renewals and/or Redeterminations,1569645.0,,3647375.0,,3393728.0,,253647.0,,,,8748.0,Incorrectly includes redeterminations,20573.0,Incorrectly includes redeterminations,28035.0,Incorrectly includes redeterminations,2419.0,Incorrectly includes redeterminations,754.0,Incorrectly includes redeterminations,,,,,, +PA,Pennsylvania,202211,Y,U,Y,77959.0,Includes Renewals and/or Redeterminations,33921.0,,111880.0,Includes Renewals and/or Redeterminations,69287.0,Includes Renewals and/or Redeterminations,3062.0,,72349.0,Includes Renewals and/or Redeterminations,1572649.0,,3659332.0,,3405253.0,,254079.0,,,,10421.0,Incorrectly includes redeterminations,22902.0,Incorrectly includes redeterminations,34821.0,Incorrectly includes redeterminations,3375.0,Incorrectly includes redeterminations,787.0,Incorrectly includes redeterminations,,,,,, +PA,Pennsylvania,202212,Y,P,N,57309.0,Includes Renewals and/or Redeterminations,16596.0,,73905.0,Includes Renewals and/or Redeterminations,59348.0,Includes Renewals and/or Redeterminations,3746.0,,63094.0,Includes Renewals and/or Redeterminations,1574902.0,,3669479.0,,3414767.0,,254712.0,,,,8916.0,Incorrectly includes redeterminations,17873.0,Incorrectly includes redeterminations,37234.0,Incorrectly includes redeterminations,6231.0,Incorrectly includes redeterminations,1050.0,Incorrectly includes redeterminations,,,,,, +PA,Pennsylvania,202212,Y,U,Y,72598.0,Includes Renewals and/or Redeterminations,16596.0,,89194.0,Includes Renewals and/or Redeterminations,69416.0,Includes Renewals and/or Redeterminations,3746.0,,73162.0,Includes Renewals and/or Redeterminations,1575816.0,,3674072.0,,3419180.0,,254892.0,,,,10390.0,Incorrectly includes redeterminations,20209.0,Incorrectly includes redeterminations,43160.0,Incorrectly includes redeterminations,7159.0,Incorrectly includes redeterminations,1587.0,Incorrectly includes redeterminations,,,,,, +PA,Pennsylvania,202301,Y,P,N,81907.0,Includes Renewals and/or Redeterminations,10239.0,,92146.0,Includes Renewals and/or Redeterminations,64785.0,Includes Renewals and/or Redeterminations,3011.0,,67796.0,Includes Renewals and/or Redeterminations,1577039.0,,3682052.0,,3428274.0,,253778.0,,,,10290.0,Incorrectly includes redeterminations,19473.0,Incorrectly includes redeterminations,30416.0,Incorrectly includes redeterminations,5471.0,Incorrectly includes redeterminations,3932.0,Incorrectly includes redeterminations,,,,,, +PA,Pennsylvania,202301,Y,U,Y,81907.0,Includes Renewals and/or Redeterminations,10239.0,,92146.0,Includes Renewals and/or Redeterminations,71000.0,Includes Renewals and/or Redeterminations,3011.0,,74011.0,Includes Renewals and/or Redeterminations,1581355.0,,3695842.0,,3441065.0,,254777.0,,,,11265.0,Incorrectly includes redeterminations,21141.0,Incorrectly includes redeterminations,33133.0,Incorrectly includes redeterminations,5913.0,Incorrectly includes redeterminations,4216.0,Incorrectly includes redeterminations,,,,,, +PA,Pennsylvania,202302,Y,P,N,66940.0,Includes Renewals and/or Redeterminations,5189.0,,72129.0,Includes Renewals and/or Redeterminations,57413.0,Includes Renewals and/or Redeterminations,2933.0,,60346.0,Includes Renewals and/or Redeterminations,1581538.0,,3698210.0,,3445221.0,,252989.0,,,,9312.0,Incorrectly includes redeterminations,15263.0,Incorrectly includes redeterminations,27977.0,Incorrectly includes redeterminations,4133.0,Incorrectly includes redeterminations,3877.0,Incorrectly includes redeterminations,,,,,, +PA,Pennsylvania,202302,Y,U,Y,66940.0,Includes Renewals and/or Redeterminations,5189.0,,72129.0,Includes Renewals and/or Redeterminations,63455.0,Includes Renewals and/or Redeterminations,2933.0,,66388.0,Includes Renewals and/or Redeterminations,1585127.0,,3711321.0,,3458336.0,,252985.0,,,,10381.0,Incorrectly includes redeterminations,16850.0,Incorrectly includes redeterminations,30408.0,Incorrectly includes redeterminations,4599.0,Incorrectly includes redeterminations,4055.0,Incorrectly includes redeterminations,,,,,, +PA,Pennsylvania,202303,Y,P,N,78749.0,Includes Renewals and/or Redeterminations,4489.0,,83238.0,Includes Renewals and/or Redeterminations,52937.0,Includes Renewals and/or Redeterminations,2773.0,,55710.0,Includes Renewals and/or Redeterminations,1584330.0,,3713633.0,,3462649.0,,250984.0,,,,9834.0,Incorrectly includes redeterminations,16570.0,Incorrectly includes redeterminations,23574.0,Incorrectly includes redeterminations,2251.0,Incorrectly includes redeterminations,1841.0,Incorrectly includes redeterminations,319448.0,Includes calls for other benefit programs,4.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.05,Includes calls for other benefit programs; Includes only calls transferred to a live agent +PA,Pennsylvania,202303,Y,U,Y,78749.0,Includes Renewals and/or Redeterminations,4489.0,,83238.0,Includes Renewals and/or Redeterminations,66951.0,Includes Renewals and/or Redeterminations,2773.0,,69724.0,Includes Renewals and/or Redeterminations,1587964.0,,3730393.0,,3479427.0,,250966.0,,,,12313.0,Incorrectly includes redeterminations,20568.0,Incorrectly includes redeterminations,29747.0,Incorrectly includes redeterminations,2734.0,Incorrectly includes redeterminations,1981.0,Incorrectly includes redeterminations,319448.0,Includes calls for other benefit programs,4.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.05,Includes calls for other benefit programs; Includes only calls transferred to a live agent +PA,Pennsylvania,202304,Y,P,N,72668.0,Includes Renewals and/or Redeterminations,4298.0,,76966.0,Includes Renewals and/or Redeterminations,41512.0,Includes Renewals and/or Redeterminations,1905.0,,43417.0,Includes Renewals and/or Redeterminations,1586729.0,,3728305.0,,3477772.0,,250533.0,,,,8235.0,Incorrectly includes redeterminations,11814.0,Incorrectly includes redeterminations,17136.0,Incorrectly includes redeterminations,1665.0,Incorrectly includes redeterminations,292.0,Incorrectly includes redeterminations,278042.0,Includes calls for other benefit programs,5.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.072,Includes calls for other benefit programs; Includes only calls transferred to a live agent +PA,Pennsylvania,202304,Y,U,Y,72668.0,Includes Renewals and/or Redeterminations,4298.0,,76966.0,Includes Renewals and/or Redeterminations,35032.0,Includes Renewals and/or Redeterminations,1905.0,,36937.0,Includes Renewals and/or Redeterminations,1590469.0,,3741046.0,,3490269.0,,250777.0,,,,10809.0,Incorrectly includes redeterminations,15615.0,Incorrectly includes redeterminations,23156.0,Incorrectly includes redeterminations,2207.0,Incorrectly includes redeterminations,357.0,Incorrectly includes redeterminations,278042.0,Includes calls for other benefit programs,5.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.072,Includes calls for other benefit programs; Includes only calls transferred to a live agent +PA,Pennsylvania,202305,Y,P,N,80919.0,Includes Renewals and/or Redeterminations,4505.0,,85424.0,Includes Renewals and/or Redeterminations,72568.0,Includes Renewals and/or Redeterminations,14104.0,,86672.0,Includes Renewals and/or Redeterminations,1583098.0,,3726429.0,,3478287.0,,248142.0,,,,11453.0,Incorrectly includes redeterminations,16104.0,Incorrectly includes redeterminations,27331.0,Incorrectly includes redeterminations,3202.0,Incorrectly includes redeterminations,388.0,Incorrectly includes redeterminations,310293.0,Includes calls for other benefit programs,6.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.115,Includes calls for other benefit programs; Includes only calls transferred to a live agent +PA,Pennsylvania,202305,Y,U,Y,80919.0,Includes Renewals and/or Redeterminations,4505.0,,85424.0,Includes Renewals and/or Redeterminations,79328.0,Includes Renewals and/or Redeterminations,14104.0,,93432.0,Includes Renewals and/or Redeterminations,1585122.0,,3735737.0,,3487594.0,,248143.0,,,,12706.0,Incorrectly includes redeterminations,17635.0,Incorrectly includes redeterminations,29921.0,Incorrectly includes redeterminations,3688.0,Incorrectly includes redeterminations,458.0,Incorrectly includes redeterminations,310293.0,Includes calls for other benefit programs,6.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.115,Includes calls for other benefit programs; Includes only calls transferred to a live agent +PA,Pennsylvania,202306,Y,P,N,85098.0,Includes Renewals and/or Redeterminations,4774.0,,89872.0,Includes Renewals and/or Redeterminations,55126.0,Includes Renewals and/or Redeterminations,6491.0,,61617.0,Includes Renewals and/or Redeterminations,1570301.0,,3679659.0,,3425634.0,,254025.0,,,,11098.0,Incorrectly includes redeterminations,13982.0,Incorrectly includes redeterminations,20441.0,Incorrectly includes redeterminations,2561.0,Incorrectly includes redeterminations,585.0,Incorrectly includes redeterminations,320554.0,Includes calls for other benefit programs,8.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.14,Includes calls for other benefit programs; Includes only calls transferred to a live agent +PA,Pennsylvania,202306,Y,U,Y,85098.0,Includes Renewals and/or Redeterminations,4774.0,,89872.0,Includes Renewals and/or Redeterminations,71786.0,Includes Renewals and/or Redeterminations,6491.0,,78277.0,Includes Renewals and/or Redeterminations,1574902.0,,3694128.0,,3439685.0,,254443.0,,,,14240.0,Incorrectly includes redeterminations,18178.0,Incorrectly includes redeterminations,26770.0,Incorrectly includes redeterminations,3382.0,Incorrectly includes redeterminations,788.0,Incorrectly includes redeterminations,320554.0,Includes calls for other benefit programs,8.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.14,Includes calls for other benefit programs; Includes only calls transferred to a live agent +PA,Pennsylvania,202307,Y,P,N,88876.0,Includes Renewals and/or Redeterminations,4869.0,,93745.0,Includes Renewals and/or Redeterminations,72490.0,Includes Renewals and/or Redeterminations,4422.0,,76912.0,Includes Renewals and/or Redeterminations,1560796.0,,3635220.0,,3379179.0,,256041.0,,,,13121.0,Incorrectly includes redeterminations,17824.0,Incorrectly includes redeterminations,25310.0,Incorrectly includes redeterminations,3278.0,Incorrectly includes redeterminations,752.0,Incorrectly includes redeterminations,356931.0,Includes calls for other benefit programs,15.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.252,Includes calls for other benefit programs; Includes only calls transferred to a live agent +PA,Pennsylvania,202307,Y,U,Y,88876.0,Includes Renewals and/or Redeterminations,4869.0,,93745.0,Includes Renewals and/or Redeterminations,75917.0,Includes Renewals and/or Redeterminations,6456.0,,82373.0,Includes Renewals and/or Redeterminations,1564230.0,,3644466.0,,3388164.0,,256302.0,,,,13838.0,Incorrectly includes redeterminations,18795.0,Incorrectly includes redeterminations,26311.0,Incorrectly includes redeterminations,3672.0,Incorrectly includes redeterminations,782.0,Incorrectly includes redeterminations,356931.0,Includes calls for other benefit programs,15.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.252,Includes calls for other benefit programs; Includes only calls transferred to a live agent +PA,Pennsylvania,202308,Y,P,N,106610.0,Includes Renewals and/or Redeterminations,5627.0,,112237.0,Includes Renewals and/or Redeterminations,75092.0,Includes Renewals and/or Redeterminations,4410.0,,79502.0,Includes Renewals and/or Redeterminations,1543395.0,,3579377.0,,3319595.0,,259782.0,,,,13795.0,Incorrectly includes redeterminations,20050.0,Incorrectly includes redeterminations,29302.0,Incorrectly includes redeterminations,3271.0,Incorrectly includes redeterminations,895.0,Incorrectly includes redeterminations,391061.0,Includes calls for other benefit programs,13.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.214,Includes calls for other benefit programs; Includes only calls transferred to a live agent +PA,Pennsylvania,202308,Y,U,Y,106610.0,Includes Renewals and/or Redeterminations,5627.0,,112237.0,Includes Renewals and/or Redeterminations,91503.0,Includes Renewals and/or Redeterminations,8736.0,,100239.0,Includes Renewals and/or Redeterminations,1551020.0,,3598200.0,,3336669.0,,261531.0,,,,16806.0,Incorrectly includes redeterminations,23928.0,Incorrectly includes redeterminations,35976.0,Incorrectly includes redeterminations,4104.0,Incorrectly includes redeterminations,1046.0,Incorrectly includes redeterminations,391061.0,Includes calls for other benefit programs,13.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.214,Includes calls for other benefit programs; Includes only calls transferred to a live agent +PA,Pennsylvania,202309,Y,P,N,100913.0,Includes Renewals and/or Redeterminations,5802.0,,106715.0,Includes Renewals and/or Redeterminations,66208.0,Includes Renewals and/or Redeterminations,5455.0,,71663.0,Includes Renewals and/or Redeterminations,1517664.0,,3499762.0,,3241304.0,,258458.0,,,,11180.0,Incorrectly includes redeterminations,16893.0,Incorrectly includes redeterminations,26077.0,Incorrectly includes redeterminations,3476.0,Incorrectly includes redeterminations,749.0,Incorrectly includes redeterminations,344836.0,Includes calls for other benefit programs,14.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.22,Includes calls for other benefit programs; Includes only calls transferred to a live agent +PA,Pennsylvania,202309,Y,U,Y,100913.0,Includes Renewals and/or Redeterminations,5802.0,,106715.0,Includes Renewals and/or Redeterminations,77289.0,Includes Renewals and/or Redeterminations,10335.0,,87624.0,Includes Renewals and/or Redeterminations,1529703.0,,3527282.0,,3264766.0,,262516.0,,,,14685.0,Incorrectly includes redeterminations,21919.0,Incorrectly includes redeterminations,34873.0,Incorrectly includes redeterminations,3476.0,Incorrectly includes redeterminations,937.0,Incorrectly includes redeterminations,344836.0,Includes calls for other benefit programs,14.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.22,Includes calls for other benefit programs; Includes only calls transferred to a live agent +PA,Pennsylvania,202310,Y,P,N,107132.0,Includes Renewals and/or Redeterminations,6069.0,,113201.0,Includes Renewals and/or Redeterminations,83515.0,Includes Renewals and/or Redeterminations,12446.0,,95961.0,Includes Renewals and/or Redeterminations,1507070.0,,3450273.0,,3184319.0,,265954.0,,,,13795.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,21438.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,38707.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,5234.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,887.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,370443.0,Includes calls for other benefit programs,15.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.227,Includes calls for other benefit programs; Includes only calls transferred to a live agent +PA,Pennsylvania,202310,Y,U,Y,107132.0,Includes Renewals and/or Redeterminations,6069.0,,113201.0,Includes Renewals and/or Redeterminations,101491.0,Includes Renewals and/or Redeterminations,14191.0,,115682.0,Includes Renewals and/or Redeterminations,1522393.0,,3480589.0,,3207239.0,,273350.0,,,,15340.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,23384.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,41905.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,6026.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,963.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,370443.0,Includes calls for other benefit programs,15.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.227,Includes calls for other benefit programs; Includes only calls transferred to a live agent +PA,Pennsylvania,202311,Y,P,N,119561.0,Includes Renewals and/or Redeterminations,37931.0,,157492.0,Includes Renewals and/or Redeterminations,76753.0,Includes Renewals and/or Redeterminations,9359.0,,86112.0,Includes Renewals and/or Redeterminations,1509650.0,,3417857.0,,3135113.0,,282744.0,,,,12523.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,21406.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,30931.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,3874.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,547.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,348520.0,Includes calls for other benefit programs,19.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.277,Includes calls for other benefit programs; Includes only calls transferred to a live agent +PA,Pennsylvania,202311,Y,U,Y,119561.0,Includes Renewals and/or Redeterminations,37931.0,,157492.0,Includes Renewals and/or Redeterminations,97297.0,Includes Renewals and/or Redeterminations,11539.0,,108836.0,Includes Renewals and/or Redeterminations,1520028.0,,3443182.0,,3157738.0,,285444.0,,,,15295.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,26744.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,41243.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,5499.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,695.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,348520.0,Includes calls for other benefit programs,19.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.277,Includes calls for other benefit programs; Includes only calls transferred to a live agent +PA,Pennsylvania,202312,Y,P,N,96095.0,Includes Renewals and/or Redeterminations,17867.0,,113962.0,Includes Renewals and/or Redeterminations,84512.0,Includes Renewals and/or Redeterminations,9470.0,,93982.0,Includes Renewals and/or Redeterminations,1504429.0,,3387011.0,,3097508.0,,289503.0,,,,11717.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,22560.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,45841.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,7353.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,513.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,318027.0,Includes calls for other benefit programs,20.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.276,Includes calls for other benefit programs; Includes only calls transferred to a live agent +PA,Pennsylvania,202312,Y,U,Y,96095.0,Includes Renewals and/or Redeterminations,17867.0,,113962.0,Includes Renewals and/or Redeterminations,98710.0,Includes Renewals and/or Redeterminations,11242.0,,109952.0,Includes Renewals and/or Redeterminations,1506074.0,,3392187.0,,3102062.0,,290125.0,,,,13649.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,25148.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,53833.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,9464.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,681.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,318027.0,Includes calls for other benefit programs,20.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.276,Includes calls for other benefit programs; Includes only calls transferred to a live agent +PA,Pennsylvania,202401,Y,P,N,112734.0,Includes Renewals and/or Redeterminations,13171.0,,125905.0,Includes Renewals and/or Redeterminations,87998.0,Includes Renewals and/or Redeterminations,8309.0,,96307.0,Includes Renewals and/or Redeterminations,1489700.0,,3330956.0,,3041919.0,,289037.0,,,,12456.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,22657.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,36315.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,10635.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,3848.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,396567.0,Includes calls for other benefit programs,23.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.307,Includes calls for other benefit programs; Includes only calls transferred to a live agent +PA,Pennsylvania,202401,Y,U,Y,112734.0,Includes Renewals and/or Redeterminations,13171.0,,125905.0,Includes Renewals and/or Redeterminations,103112.0,Includes Renewals and/or Redeterminations,9706.0,,112818.0,Includes Renewals and/or Redeterminations,1504843.0,,3361187.0,,3065228.0,,295959.0,,,,14916.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,26312.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,42279.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,11859.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,4574.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,396567.0,Includes calls for other benefit programs,23.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.307,Includes calls for other benefit programs; Includes only calls transferred to a live agent +PA,Pennsylvania,202402,Y,P,N,100760.0,Includes Renewals and/or Redeterminations,5594.0,,106354.0,Includes Renewals and/or Redeterminations,80633.0,Includes Renewals and/or Redeterminations,7641.0,,88274.0,Includes Renewals and/or Redeterminations,1496728.0,,3312828.0,,3014749.0,,298079.0,,,,12342.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,18468.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,36750.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,5844.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,3531.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,340216.0,Includes calls for other benefit programs,19.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.272,Includes calls for other benefit programs; Includes only calls transferred to a live agent +PA,Pennsylvania,202402,Y,U,Y,100760.0,Includes Renewals and/or Redeterminations,5594.0,,106354.0,Includes Renewals and/or Redeterminations,99850.0,Includes Renewals and/or Redeterminations,9587.0,,109437.0,Includes Renewals and/or Redeterminations,1505740.0,,3336943.0,,3038372.0,,298571.0,,,,15213.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,22521.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,44913.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,7379.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,4398.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,340216.0,Includes calls for other benefit programs,19.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.272,Includes calls for other benefit programs; Includes only calls transferred to a live agent +PA,Pennsylvania,202403,Y,P,N,102351.0,Includes Renewals and/or Redeterminations,5593.0,,107944.0,Includes Renewals and/or Redeterminations,76642.0,Includes Renewals and/or Redeterminations,7277.0,,83919.0,Includes Renewals and/or Redeterminations,1487463.0,,3261399.0,,2965207.0,,296192.0,,,,12608.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,20521.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,31532.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,4700.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,2607.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,303443.0,Includes calls for other benefit programs,10.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.171,Includes calls for other benefit programs; Includes only calls transferred to a live agent +PA,Pennsylvania,202403,Y,U,Y,102351.0,Includes Renewals and/or Redeterminations,5593.0,,107944.0,Includes Renewals and/or Redeterminations,98464.0,Includes Renewals and/or Redeterminations,9344.0,,107808.0,Includes Renewals and/or Redeterminations,1496359.0,,3284345.0,,2987158.0,,297187.0,,,,16121.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,24582.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,41136.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,5820.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,2989.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,303443.0,Includes calls for other benefit programs,10.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.171,Includes calls for other benefit programs; Includes only calls transferred to a live agent +PA,Pennsylvania,202404,Y,P,N,102318.0,Includes Renewals and/or Redeterminations,5911.0,,108229.0,Includes Renewals and/or Redeterminations,87948.0,Includes Renewals and/or Redeterminations,8243.0,,96191.0,Includes Renewals and/or Redeterminations,1471966.0,,3191750.0,,2897807.0,,293943.0,,,,15013.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,21885.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,38253.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,4769.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,699.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,306674.0,Includes calls for other benefit programs,8.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.146,Includes calls for other benefit programs; Includes only calls transferred to a live agent +PA,Pennsylvania,202404,Y,U,Y,102318.0,Includes Renewals and/or Redeterminations,5911.0,,108229.0,Includes Renewals and/or Redeterminations,97509.0,Includes Renewals and/or Redeterminations,9154.0,,106663.0,Includes Renewals and/or Redeterminations,1480481.0,,3213310.0,,2917052.0,,296258.0,,,,16713.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,24368.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,41986.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,5514.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,775.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,306674.0,Includes calls for other benefit programs,8.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.146,Includes calls for other benefit programs; Includes only calls transferred to a live agent +PA,Pennsylvania,202405,Y,P,N,98442.0,Includes Renewals and/or Redeterminations,5382.0,,103824.0,Includes Renewals and/or Redeterminations,73915.0,Includes Renewals and/or Redeterminations,7142.0,,81057.0,Includes Renewals and/or Redeterminations,1450907.0,,3126082.0,,2840648.0,,285434.0,,,,13340.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,18272.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,31443.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,3768.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,360.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,265071.0,Includes calls for other benefit programs,5.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.081,Includes calls for other benefit programs; Includes only calls transferred to a live agent +PA,Pennsylvania,202405,Y,U,Y,98442.0,Includes Renewals and/or Redeterminations,5382.0,,103824.0,Includes Renewals and/or Redeterminations,90624.0,Includes Renewals and/or Redeterminations,8781.0,,99405.0,Includes Renewals and/or Redeterminations,1458798.0,,3147630.0,,2861048.0,,286582.0,,,,16139.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,22259.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,39033.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,4791.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,447.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,265071.0,Includes calls for other benefit programs,5.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.081,Includes calls for other benefit programs; Includes only calls transferred to a live agent +PA,Pennsylvania,202406,Y,P,N,89319.0,Includes Renewals and/or Redeterminations,4690.0,,94009.0,Includes Renewals and/or Redeterminations,57934.0,Includes Renewals and/or Redeterminations,5320.0,,63254.0,Includes Renewals and/or Redeterminations,1440510.0,,3085404.0,,2801397.0,,284007.0,,,,10191.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,15323.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,23532.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,3905.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,193.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,256856.0,Includes calls for other benefit programs,7.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.115,Includes calls for other benefit programs; Includes only calls transferred to a live agent +PA,Pennsylvania,202406,Y,U,Y,89319.0,Includes Renewals and/or Redeterminations,4690.0,,94009.0,Includes Renewals and/or Redeterminations,77541.0,Includes Renewals and/or Redeterminations,7120.0,,84661.0,Includes Renewals and/or Redeterminations,1449330.0,,3110289.0,,2825529.0,,284760.0,,,,13504.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,20345.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,32116.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,4989.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,274.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,256856.0,Includes calls for other benefit programs,7.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.115,Includes calls for other benefit programs; Includes only calls transferred to a live agent +PA,Pennsylvania,202407,Y,P,N,105478.0,Includes Renewals and/or Redeterminations,4852.0,,110330.0,Includes Renewals and/or Redeterminations,79089.0,Includes Renewals and/or Redeterminations,6643.0,,85732.0,Includes Renewals and/or Redeterminations,1444694.0,,3094061.0,,2811235.0,,282826.0,,1649367.0,,12270.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,21452.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,33963.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,5325.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,210.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,327633.0,Includes calls for other benefit programs,11.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.215,Includes calls for other benefit programs; Includes only calls transferred to a live agent +PA,Pennsylvania,202407,Y,U,Y,105478.0,Includes Renewals and/or Redeterminations,4852.0,,110330.0,Includes Renewals and/or Redeterminations,91160.0,Includes Renewals and/or Redeterminations,7599.0,,98759.0,Includes Renewals and/or Redeterminations,1454246.0,,3118882.0,,2833381.0,,285501.0,,1664636.0,,14104.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,24635.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,39029.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,6440.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,254.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,327633.0,Includes calls for other benefit programs,11.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.215,Includes calls for other benefit programs; Includes only calls transferred to a live agent +PA,Pennsylvania,202408,Y,P,N,102762.0,Includes Renewals and/or Redeterminations,5031.0,,107793.0,Includes Renewals and/or Redeterminations,96306.0,Includes Renewals and/or Redeterminations,9810.0,,106116.0,Includes Renewals and/or Redeterminations,1448273.0,,3097689.0,,2812533.0,,285156.0,,1649416.0,,13285.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,24718.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,45146.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,5562.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,332.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,313935.0,Includes calls for other benefit programs,19.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.305,Includes calls for other benefit programs; Includes only calls transferred to a live agent +PA,Pennsylvania,202408,Y,U,Y,102762.0,Includes Renewals and/or Redeterminations,5031.0,,107793.0,Includes Renewals and/or Redeterminations,96306.0,Includes Renewals and/or Redeterminations,9810.0,,106116.0,Includes Renewals and/or Redeterminations,1458744.0,,3123715.0,,2835343.0,,288372.0,,1664971.0,,13294.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,24721.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,45141.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,5556.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,332.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,313935.0,Includes calls for other benefit programs,19.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.305,Includes calls for other benefit programs; Includes only calls transferred to a live agent +PA,Pennsylvania,202409,Y,P,N,100689.0,Includes Renewals and/or Redeterminations,4827.0,,105516.0,Includes Renewals and/or Redeterminations,88152.0,Includes Renewals and/or Redeterminations,8129.0,,96281.0,Includes Renewals and/or Redeterminations,1451584.0,,3105085.0,,2819051.0,,286034.0,,1653501.0,,11528.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,22766.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,40642.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,5940.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,355.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,322775.0,Includes calls for other benefit programs,24.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.355,Includes calls for other benefit programs; Includes only calls transferred to a live agent +PA,Pennsylvania,202409,Y,U,Y,100689.0,Includes Renewals and/or Redeterminations,4827.0,,105516.0,Includes Renewals and/or Redeterminations,92545.0,Includes Renewals and/or Redeterminations,8533.0,,101078.0,Includes Renewals and/or Redeterminations,1456160.0,,3116633.0,,2828955.0,,287678.0,,1660473.0,,12232.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,23737.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,42374.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,6691.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,381.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,322775.0,Includes calls for other benefit programs,24.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.355,Includes calls for other benefit programs; Includes only calls transferred to a live agent +PA,Pennsylvania,202410,Y,P,N,101967.0,Includes Renewals and/or Redeterminations,5497.0,,107464.0,Includes Renewals and/or Redeterminations,85939.0,Includes Renewals and/or Redeterminations,7769.0,,93708.0,Includes Renewals and/or Redeterminations,1453291.0,,3106529.0,,2818504.0,,288025.0,,1653238.0,,11012.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,20553.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,40704.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,5556.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,345.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,329412.0,Includes calls for other benefit programs,20.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.214,Includes calls for other benefit programs; Includes only calls transferred to a live agent +PA,Pennsylvania,202410,Y,U,Y,101967.0,Includes Renewals and/or Redeterminations,5497.0,,107464.0,Includes Renewals and/or Redeterminations,102227.0,Includes Renewals and/or Redeterminations,9348.0,,111575.0,Includes Renewals and/or Redeterminations,1461823.0,,3128952.0,,2839051.0,,289901.0,,1667129.0,,13358.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,24239.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,48232.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,6751.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,410.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,329412.0,Includes calls for other benefit programs,20.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.214,Includes calls for other benefit programs; Includes only calls transferred to a live agent +PA,Pennsylvania,202411,Y,P,N,95039.0,Includes Renewals and/or Redeterminations,26847.0,,121886.0,Includes Renewals and/or Redeterminations,58545.0,Includes Renewals and/or Redeterminations,5382.0,,63927.0,Includes Renewals and/or Redeterminations,1450118.0,,3072469.0,,2781015.0,,291454.0,,1622351.0,,7247.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,17079.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,25097.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,5053.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,351.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,302259.0,Includes calls for other benefit programs,22.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.215,Includes calls for other benefit programs; Includes only calls transferred to a live agent +PA,Pennsylvania,202411,Y,U,Y,95039.0,Includes Renewals and/or Redeterminations,26847.0,,121886.0,Includes Renewals and/or Redeterminations,76508.0,Includes Renewals and/or Redeterminations,7098.0,,83606.0,Includes Renewals and/or Redeterminations,1456900.0,,3093636.0,,2801579.0,,292057.0,,1636736.0,,8762.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,20524.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,35497.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,6601.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,463.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,302259.0,Includes calls for other benefit programs,22.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.215,Includes calls for other benefit programs; Includes only calls transferred to a live agent +PA,Pennsylvania,202412,Y,P,N,93532.0,Includes Renewals and/or Redeterminations,20649.0,,114181.0,Includes Renewals and/or Redeterminations,91914.0,Includes Renewals and/or Redeterminations,8778.0,,100692.0,Includes Renewals and/or Redeterminations,1447297.0,,3072363.0,,2783389.0,,288974.0,,1625066.0,,8898.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,18164.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,48382.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,17122.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,1133.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,322588.0,Includes calls for other benefit programs,25.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.345,Includes calls for other benefit programs; Includes only calls transferred to a live agent +PA,Pennsylvania,202412,Y,U,Y,93532.0,Includes Renewals and/or Redeterminations,20649.0,,114181.0,Includes Renewals and/or Redeterminations,98763.0,Includes Renewals and/or Redeterminations,9447.0,,108210.0,Includes Renewals and/or Redeterminations,1452435.0,,3089741.0,,2800122.0,,289619.0,,1637306.0,,9651.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,19479.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,52004.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,18343.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,1656.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,322588.0,Includes calls for other benefit programs,25.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.345,Includes calls for other benefit programs; Includes only calls transferred to a live agent +PA,Pennsylvania,202501,Y,P,N,111536.0,Includes Renewals and/or Redeterminations,14352.0,,125888.0,Includes Renewals and/or Redeterminations,80049.0,Includes Renewals and/or Redeterminations,7645.0,,87694.0,Includes Renewals and/or Redeterminations,1451497.0,,3080634.0,,2789276.0,,291358.0,,1629137.0,,9561.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,19351.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,33494.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,11900.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,5626.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,369324.0,Includes calls for other benefit programs,26.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.356,Includes calls for other benefit programs; Includes only calls transferred to a live agent +PA,Pennsylvania,202501,Y,U,Y,111536.0,Includes Renewals and/or Redeterminations,14352.0,,125888.0,Includes Renewals and/or Redeterminations,104646.0,Includes Renewals and/or Redeterminations,10029.0,,114675.0,Includes Renewals and/or Redeterminations,1464068.0,,3110325.0,,2814521.0,,295804.0,,1646257.0,,12150.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,24708.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,44699.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,13897.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,5626.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,369324.0,Includes calls for other benefit programs,26.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.356,Includes calls for other benefit programs; Includes only calls transferred to a live agent +PA,Pennsylvania,202502,Y,P,N,90015.0,Includes Renewals and/or Redeterminations,5811.0,,95826.0,Includes Renewals and/or Redeterminations,71727.0,Includes Renewals and/or Redeterminations,7260.0,,78987.0,Includes Renewals and/or Redeterminations,1453849.0,,3082412.0,,2789060.0,,293352.0,,1628563.0,,8536.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,14920.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,33152.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,8340.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,5793.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,264238.0,Includes calls for other benefit programs,29.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.359,Includes calls for other benefit programs; Includes only calls transferred to a live agent +PA,Pennsylvania,202502,Y,U,Y,90015.0,Includes Renewals and/or Redeterminations,5811.0,,95826.0,Includes Renewals and/or Redeterminations,102185.0,Includes Renewals and/or Redeterminations,10625.0,,112810.0,Includes Renewals and/or Redeterminations,1463071.0,,3108474.0,,2813682.0,,294792.0,,1645403.0,,12095.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,22230.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,46833.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,11454.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,8028.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,264238.0,Includes calls for other benefit programs,29.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.359,Includes calls for other benefit programs; Includes only calls transferred to a live agent +PA,Pennsylvania,202503,Y,P,N,100851.0,Includes Renewals and/or Redeterminations,5715.0,,106566.0,Includes Renewals and/or Redeterminations,108818.0,Includes Renewals and/or Redeterminations,11565.0,,120383.0,Includes Renewals and/or Redeterminations,1452852.0,,3087893.0,,2797311.0,,290582.0,,1635041.0,,15466.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,29411.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,47250.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,8227.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,4436.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,281989.0,Includes calls for other benefit programs,21.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.296,Includes calls for other benefit programs; Includes only calls transferred to a live agent +PA,Pennsylvania,202503,Y,U,Y,100851.0,Includes Renewals and/or Redeterminations,5715.0,,106566.0,Includes Renewals and/or Redeterminations,115945.0,Includes Renewals and/or Redeterminations,12418.0,,128363.0,Includes Renewals and/or Redeterminations,1458736.0,,3101521.0,,2808943.0,,292578.0,,1642785.0,,16356.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,31301.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,50331.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,9001.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,4557.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,281989.0,Includes calls for other benefit programs,21.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.296,Includes calls for other benefit programs; Includes only calls transferred to a live agent +PA,Pennsylvania,202504,Y,P,N,99580.0,Includes Renewals and/or Redeterminations,7086.0,,106666.0,Includes Renewals and/or Redeterminations,99587.0,Includes Renewals and/or Redeterminations,10682.0,,110269.0,Includes Renewals and/or Redeterminations,1445338.0,,3074459.0,,2787791.0,,286668.0,,1629121.0,,14383.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,28453.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,44574.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,5705.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,915.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,265937.0,Includes calls for other benefit programs,14.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.221,Includes calls for other benefit programs; Includes only calls transferred to a live agent +PA,Pennsylvania,202504,Y,U,Y,99580.0,Includes Renewals and/or Redeterminations,7086.0,,106666.0,Includes Renewals and/or Redeterminations,116235.0,Includes Renewals and/or Redeterminations,12496.0,,128731.0,Includes Renewals and/or Redeterminations,1454631.0,,3097376.0,,2807525.0,,289851.0,,1642745.0,,16746.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,32723.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,52379.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,6787.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,1022.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,265937.0,Includes calls for other benefit programs,14.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.221,Includes calls for other benefit programs; Includes only calls transferred to a live agent +PA,Pennsylvania,202505,Y,P,N,91719.0,Includes Renewals and/or Redeterminations,5367.0,,97086.0,Includes Renewals and/or Redeterminations,82007.0,Includes Renewals and/or Redeterminations,8834.0,,90841.0,Includes Renewals and/or Redeterminations,1440091.0,,3058239.0,,2770266.0,,287973.0,,1618148.0,,14859.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,29139.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,47289.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,5851.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,690.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,258670.0,Includes calls for other benefit programs,17.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.242,Includes calls for other benefit programs; Includes only calls transferred to a live agent +PA,Pennsylvania,202505,Y,U,Y,91719.0,Includes Renewals and/or Redeterminations,5367.0,,97086.0,Includes Renewals and/or Redeterminations,102498.0,Includes Renewals and/or Redeterminations,10998.0,,113496.0,Includes Renewals and/or Redeterminations,1447035.0,,3077895.0,,2788645.0,,289250.0,,1630860.0,,14859.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,29139.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,47289.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,5851.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,690.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,258670.0,Includes calls for other benefit programs,17.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.242,Includes calls for other benefit programs; Includes only calls transferred to a live agent +PA,Pennsylvania,202506,Y,P,N,87960.0,Includes Renewals and/or Redeterminations,5067.0,,93027.0,Includes Renewals and/or Redeterminations,83144.0,Includes Renewals and/or Redeterminations,8424.0,,91568.0,Includes Renewals and/or Redeterminations,1428648.0,,3041674.0,,2761999.0,,279675.0,,1613026.0,,12266.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,23893.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,40720.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,6122.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,477.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,245660.0,Includes calls for other benefit programs,16.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.242,Includes calls for other benefit programs; Includes only calls transferred to a live agent +PA,Pennsylvania,202506,Y,U,Y,87960.0,Includes Renewals and/or Redeterminations,5067.0,,93027.0,Includes Renewals and/or Redeterminations,88668.0,Includes Renewals and/or Redeterminations,8995.0,,97663.0,Includes Renewals and/or Redeterminations,1433250.0,,3053056.0,,2771907.0,,281149.0,,1619806.0,,12266.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,23893.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,40720.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,6122.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,477.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,245660.0,Includes calls for other benefit programs,16.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.242,Includes calls for other benefit programs; Includes only calls transferred to a live agent +PA,Pennsylvania,202507,Y,P,N,96987.0,Includes Renewals and/or Redeterminations,5659.0,,102646.0,Includes Renewals and/or Redeterminations,82289.0,Includes Renewals and/or Redeterminations,8186.0,,90475.0,Includes Renewals and/or Redeterminations,1426099.0,,3034789.0,,2755618.0,,279171.0,,1608690.0,,13619.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,26526.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,49113.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,6046.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,393.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,284550.0,Includes calls for other benefit programs,13.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.221,Includes calls for other benefit programs; Includes only calls transferred to a live agent +PA,Pennsylvania,202507,Y,U,Y,96987.0,Includes Renewals and/or Redeterminations,5659.0,,102646.0,Includes Renewals and/or Redeterminations,100477.0,Includes Renewals and/or Redeterminations,10174.0,,110651.0,Includes Renewals and/or Redeterminations,1433156.0,,3054730.0,,2774744.0,,279986.0,,1621574.0,,13619.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,26526.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,49113.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,6046.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,393.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,284550.0,Includes calls for other benefit programs,13.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.221,Includes calls for other benefit programs; Includes only calls transferred to a live agent +PA,Pennsylvania,202508,Y,P,N,94664.0,Includes Renewals and/or Redeterminations,5761.0,,100425.0,Includes Renewals and/or Redeterminations,72351.0,Includes Renewals and/or Redeterminations,7496.0,,79847.0,Includes Renewals and/or Redeterminations,1419439.0,,3018973.0,,2742433.0,,276540.0,,1599534.0,,12220.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,24162.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,45503.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,5676.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,218.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,317000.0,Includes calls for other benefit programs,15.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.29,Includes calls for other benefit programs; Includes only calls transferred to a live agent +PA,Pennsylvania,202508,Y,U,Y,94664.0,Includes Renewals and/or Redeterminations,5761.0,,100425.0,Includes Renewals and/or Redeterminations,92368.0,Includes Renewals and/or Redeterminations,9660.0,,102028.0,Includes Renewals and/or Redeterminations,1429763.0,,3042995.0,,2762788.0,,280207.0,,1613232.0,,12220.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,24162.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,45503.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,5676.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,218.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,317000.0,Includes calls for other benefit programs,15.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.29,Includes calls for other benefit programs; Includes only calls transferred to a live agent +PA,Pennsylvania,202509,Y,P,N,100758.0,Includes Renewals and/or Redeterminations,5572.0,,106330.0,Includes Renewals and/or Redeterminations,96556.0,Includes Renewals and/or Redeterminations,10219.0,,106775.0,Includes Renewals and/or Redeterminations,1421331.0,,3019443.0,,2739207.0,,280236.0,,1598112.0,,13020.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,25356.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,54550.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,7973.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,228.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,305613.0,Includes calls for other benefit programs,16.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.282,Includes calls for other benefit programs; Includes only calls transferred to a live agent +PA,Pennsylvania,202509,Y,U,Y,100758.0,Includes Renewals and/or Redeterminations,5572.0,,106330.0,Includes Renewals and/or Redeterminations,106539.0,Includes Renewals and/or Redeterminations,11255.0,,117794.0,Includes Renewals and/or Redeterminations,1427517.0,,3037911.0,,2757077.0,,280834.0,,1610394.0,,13020.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,25356.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,54550.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,7973.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,228.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,305613.0,Includes calls for other benefit programs,16.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.282,Includes calls for other benefit programs; Includes only calls transferred to a live agent +PA,Pennsylvania,202510,Y,P,N,91447.0,Includes Renewals and/or Redeterminations,25396.0,,116843.0,Includes Renewals and/or Redeterminations,85193.0,Includes Renewals and/or Redeterminations,9267.0,,94460.0,Includes Renewals and/or Redeterminations,1418667.0,,3012566.0,,2731246.0,,281320.0,,1593899.0,,11417.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,25706.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,57323.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,8249.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,444.0,Incorrectly includes redeterminations; Does not include all MAGI determinations on applications,239496.0,Includes calls for other benefit programs,11.0,Call centers offer callbacks; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.181,Includes calls for other benefit programs; Includes only calls transferred to a live agent +RI,Rhode Island,201309,N,U,Y,,,,,,,,,,,,,,,190833.0,,,,,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,201706,Y,P,N,0.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",4613.0,,4613.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",5023.0,,627.0,,5650.0,,121210.0,,313369.0,,288720.0,,24649.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,201706,Y,U,Y,0.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",4613.0,,4613.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",5023.0,,627.0,,5650.0,,121821.0,,314845.0,,289918.0,,24927.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,201707,Y,P,N,3889.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,3889.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",5119.0,,706.0,,5825.0,,121328.0,,313103.0,,287916.0,,25187.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,201707,Y,U,Y,3889.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,3889.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",5119.0,,706.0,,5825.0,,121328.0,,313103.0,,287916.0,,25187.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,201708,Y,P,N,3889.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,3889.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",5775.0,,754.0,,6529.0,,122070.0,,313546.0,,287109.0,,26437.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,201708,Y,U,Y,3889.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,3889.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",5775.0,,754.0,,6529.0,,122969.0,,315776.0,,289160.0,,26616.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,201709,Y,P,N,4053.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,4053.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",5041.0,,607.0,,5648.0,,120981.0,,307726.0,,280328.0,,27398.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,201709,Y,U,Y,4053.0,,0.0,,4053.0,,5041.0,,607.0,,5648.0,,122193.0,,309904.0,,282355.0,,27549.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,201710,Y,P,N,4216.0,,0.0,,4216.0,,5342.0,,615.0,,5957.0,,123144.0,,314026.0,,286014.0,,28012.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,201710,Y,U,Y,4216.0,,0.0,,4216.0,,5342.0,,615.0,,5957.0,,123476.0,,314924.0,,286849.0,,28075.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,201711,Y,P,N,5946.0,,0.0,,5946.0,,7350.0,,869.0,,8219.0,,122779.0,,310325.0,,281308.0,,29017.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,201711,Y,U,Y,5946.0,,0.0,,5946.0,,7350.0,,869.0,,8219.0,,123596.0,,313203.0,,284078.0,,29125.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,201712,Y,P,N,5917.0,,0.0,,5917.0,,0.0,,0.0,,0.0,,123138.0,,312705.0,,283382.0,,29323.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,201712,Y,U,Y,5917.0,,0.0,,5917.0,,0.0,,0.0,,0.0,,123138.0,,312705.0,,283382.0,,29323.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,201801,Y,P,N,3445.0,,0.0,,3445.0,,0.0,,0.0,,0.0,,123160.0,,312602.0,,282658.0,,29944.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,201801,Y,U,Y,3594.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,3594.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",5213.0,,658.0,,5871.0,,123448.0,,313552.0,,283708.0,,29844.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,201802,Y,P,N,2754.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,2754.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",3646.0,,480.0,,4126.0,,122891.0,,311695.0,,282151.0,,29544.0,,,,1115.0,Incorrectly includes redeterminations,130.0,Incorrectly includes redeterminations,141.0,Incorrectly includes redeterminations,49.0,Incorrectly includes redeterminations,10.0,Incorrectly includes redeterminations,,,,,, +RI,Rhode Island,201802,Y,U,Y,2754.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,2754.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",3646.0,,480.0,,4126.0,,122891.0,,311695.0,,282151.0,,29544.0,,,,1115.0,Incorrectly includes redeterminations,130.0,Incorrectly includes redeterminations,141.0,Incorrectly includes redeterminations,49.0,Incorrectly includes redeterminations,10.0,Incorrectly includes redeterminations,,,,,, +RI,Rhode Island,201803,Y,P,N,2572.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,2572.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",3384.0,,461.0,,3845.0,,122600.0,,310414.0,,280697.0,,29717.0,,,,1043.0,Incorrectly includes redeterminations,137.0,Incorrectly includes redeterminations,140.0,Incorrectly includes redeterminations,16.0,Incorrectly includes redeterminations,0.0,Incorrectly includes redeterminations,,,,,, +RI,Rhode Island,201803,Y,U,Y,2572.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,2572.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",3384.0,,461.0,,3845.0,,122781.0,,311036.0,,281430.0,,29606.0,,,,1047.0,Incorrectly includes redeterminations,142.0,Incorrectly includes redeterminations,165.0,Incorrectly includes redeterminations,33.0,Incorrectly includes redeterminations,9.0,Incorrectly includes redeterminations,,,,,, +RI,Rhode Island,201804,Y,P,N,2586.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,2586.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",3388.0,,460.0,,3848.0,,122914.0,,311370.0,,281480.0,,29890.0,,,,1132.0,Incorrectly includes redeterminations,118.0,Incorrectly includes redeterminations,57.0,Incorrectly includes redeterminations,2.0,Incorrectly includes redeterminations,0.0,Incorrectly includes redeterminations,,,,,, +RI,Rhode Island,201804,Y,U,Y,2586.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,2586.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",3388.0,,460.0,,3848.0,,123260.0,,312463.0,,282577.0,,29886.0,,,,1144.0,Incorrectly includes redeterminations,123.0,Incorrectly includes redeterminations,164.0,Incorrectly includes redeterminations,37.0,Incorrectly includes redeterminations,6.0,Incorrectly includes redeterminations,,,,,, +RI,Rhode Island,201805,Y,P,N,2495.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,2495.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",3551.0,,535.0,,4086.0,,123104.0,,311567.0,,281368.0,,30199.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,201805,Y,U,Y,2495.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,2495.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",3551.0,,535.0,,4086.0,,123360.0,,312490.0,,282333.0,,30157.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,201806,Y,P,N,2469.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,2469.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",3578.0,,538.0,,4116.0,,122731.0,,310148.0,,279614.0,,30534.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,201806,Y,U,Y,2469.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,2469.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",3578.0,,538.0,,4116.0,,122980.0,,310875.0,,280395.0,,30480.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,201807,Y,P,N,2375.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,2375.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",3321.0,,464.0,,3785.0,,122940.0,,310587.0,,279646.0,,30941.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,201807,Y,U,Y,2375.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,2375.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",3321.0,,464.0,,3785.0,,123141.0,,311231.0,,280244.0,,30987.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,201808,Y,P,N,2670.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,2670.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",3529.0,,544.0,,4073.0,,123136.0,,311323.0,,279807.0,,31516.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,201808,Y,U,Y,2670.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,2670.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",3529.0,,544.0,,4073.0,,123512.0,,312377.0,,280763.0,,31614.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,201809,Y,P,N,2239.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,2239.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",2874.0,,602.0,,3476.0,,122823.0,,309833.0,,277960.0,,31873.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,201809,Y,U,Y,2239.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,2239.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",2874.0,,602.0,,3476.0,,122971.0,,310961.0,,278985.0,,31976.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,201810,Y,P,N,2252.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,2252.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",2765.0,,351.0,,3116.0,,122984.0,,310448.0,,278209.0,,32239.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,201810,Y,U,Y,2252.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,2252.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",2765.0,,351.0,,3116.0,,123462.0,,311844.0,,279644.0,,32200.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,201811,Y,P,N,2803.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,2803.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",4190.0,,592.0,,4782.0,,122290.0,,308678.0,,276462.0,,32216.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,201811,Y,U,Y,2803.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,2803.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",4190.0,,592.0,,4782.0,,122616.0,,309688.0,,277278.0,,32410.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,201812,Y,P,N,3741.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,3741.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",4831.0,,630.0,,5461.0,,122373.0,,310392.0,,277723.0,,32669.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,201812,Y,U,Y,3741.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,3741.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",4831.0,,630.0,,5461.0,,122710.0,,311254.0,,278432.0,,32822.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,201901,Y,P,N,2348.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,2348.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",3597.0,,527.0,,4124.0,,122501.0,,308844.0,,275859.0,,32985.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,201901,Y,U,Y,2478.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,2478.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",4831.0,,630.0,,5461.0,,122779.0,,309557.0,,276472.0,,33085.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,201902,Y,P,N,1982.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1982.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",2943.0,,406.0,,3349.0,,121965.0,,305183.0,,272554.0,,32629.0,,,,1103.0,Incorrectly includes redeterminations,122.0,Incorrectly includes redeterminations,49.0,Incorrectly includes redeterminations,1.0,Incorrectly includes redeterminations,0.0,Incorrectly includes redeterminations,,,,,, +RI,Rhode Island,201902,Y,U,Y,1982.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1982.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",2943.0,,406.0,,3349.0,,122340.0,,305218.0,,272489.0,,32729.0,,,,1108.0,Incorrectly includes redeterminations,128.0,Incorrectly includes redeterminations,79.0,Incorrectly includes redeterminations,14.0,Incorrectly includes redeterminations,5.0,Incorrectly includes redeterminations,,,,,, +RI,Rhode Island,201903,Y,P,N,1975.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1975.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",3112.0,,427.0,,3539.0,,121920.0,,304312.0,,271285.0,,33027.0,,,,1106.0,Incorrectly includes redeterminations,128.0,Incorrectly includes redeterminations,56.0,Incorrectly includes redeterminations,0.0,Incorrectly includes redeterminations,0.0,Incorrectly includes redeterminations,,,,,, +RI,Rhode Island,201903,Y,U,Y,1975.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1975.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",3112.0,,427.0,,3539.0,,122261.0,,304979.0,,271732.0,,33247.0,,,,1111.0,Incorrectly includes redeterminations,130.0,Incorrectly includes redeterminations,91.0,Incorrectly includes redeterminations,13.0,Incorrectly includes redeterminations,3.0,Incorrectly includes redeterminations,,,,,, +RI,Rhode Island,201904,Y,P,N,2108.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,2108.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",3303.0,,487.0,,3790.0,,120545.0,,302798.0,,272055.0,,30743.0,,,,1191.0,Incorrectly includes redeterminations,123.0,Incorrectly includes redeterminations,36.0,Incorrectly includes redeterminations,0.0,Incorrectly includes redeterminations,0.0,Incorrectly includes redeterminations,,,,,, +RI,Rhode Island,201904,Y,U,Y,2108.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,2108.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",3303.0,,487.0,,3790.0,,120783.0,,303377.0,,272618.0,,30759.0,,,,1196.0,Incorrectly includes redeterminations,121.0,Incorrectly includes redeterminations,75.0,Incorrectly includes redeterminations,20.0,Incorrectly includes redeterminations,2.0,Incorrectly includes redeterminations,,,,,, +RI,Rhode Island,201905,Y,P,N,1861.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1861.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",2863.0,,367.0,,3230.0,,120403.0,,301110.0,,269484.0,,31626.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,201905,Y,U,Y,1861.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1861.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",2863.0,,367.0,,3230.0,,120639.0,,301912.0,,270273.0,,31639.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,201906,Y,P,N,1696.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1696.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",2598.0,,347.0,,2945.0,,120192.0,,301635.0,,269807.0,,31828.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,201906,Y,U,Y,1696.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1696.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",2598.0,,347.0,,2945.0,,120003.0,,300759.0,,269191.0,,31568.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,201907,Y,P,N,1913.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1913.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",3012.0,,435.0,,3447.0,,119657.0,,300526.0,,268234.0,,32292.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,201907,Y,U,Y,1913.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1913.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",3012.0,,435.0,,3447.0,,120129.0,,301142.0,,268803.0,,32339.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,201908,Y,P,N,1875.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1875.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",2915.0,,413.0,,3328.0,,119496.0,,300392.0,,267955.0,,32437.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,201908,Y,U,Y,1875.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1875.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",2915.0,,413.0,,3328.0,,119943.0,,301223.0,,268738.0,,32485.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,201909,Y,P,N,1526.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1526.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",2213.0,,256.0,,2469.0,,118134.0,,297619.0,,265079.0,,32540.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,201909,Y,U,Y,1526.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1526.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",2213.0,,256.0,,2469.0,,118486.0,,298266.0,,265705.0,,32561.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,201910,Y,P,N,1324.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1324.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1742.0,,149.0,,1891.0,,117987.0,,297841.0,,265142.0,,32699.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,201910,Y,U,Y,1324.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1324.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1742.0,,149.0,,1891.0,,118303.0,,298297.0,,265561.0,,32736.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,201911,Y,P,N,1566.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1566.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",2037.0,,149.0,,2186.0,,116583.0,,290961.0,,258198.0,,32763.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,201911,Y,U,Y,1566.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1566.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",2037.0,,149.0,,2186.0,,116959.0,,291798.0,,258989.0,,32809.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,201912,Y,P,N,2065.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,2065.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",2333.0,,154.0,,2487.0,,116478.0,,291161.0,,258005.0,,33156.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,201912,Y,U,Y,2065.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,2065.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",2333.0,,154.0,,2487.0,,116855.0,,292050.0,,258860.0,,33190.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,202001,Y,P,N,1584.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1584.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",2106.0,,138.0,,2244.0,,117068.0,,292906.0,,259512.0,,33394.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,202001,Y,U,Y,1584.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1584.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",2106.0,,138.0,,2244.0,,117301.0,,293293.0,,259908.0,,33385.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,202002,Y,P,N,1282.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1282.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1716.0,,103.0,,1819.0,,116154.0,,289542.0,,255767.0,,33775.0,,,,650.0,Incorrectly includes redeterminations,94.0,Incorrectly includes redeterminations,85.0,Incorrectly includes redeterminations,10.0,Incorrectly includes redeterminations,145.0,Incorrectly includes redeterminations,,,,,, +RI,Rhode Island,202002,Y,U,Y,1282.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1282.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1716.0,,103.0,,1819.0,,116420.0,,289944.0,,256120.0,,33824.0,,,,650.0,Incorrectly includes redeterminations,93.0,Incorrectly includes redeterminations,85.0,Incorrectly includes redeterminations,10.0,Incorrectly includes redeterminations,147.0,Incorrectly includes redeterminations,,,,,, +RI,Rhode Island,202003,Y,P,N,1964.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1964.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",2333.0,,121.0,,2454.0,,116123.0,,291565.0,,257744.0,,33821.0,,,,815.0,Incorrectly includes redeterminations,197.0,Incorrectly includes redeterminations,84.0,Incorrectly includes redeterminations,6.0,Incorrectly includes redeterminations,165.0,Incorrectly includes redeterminations,,,,,, +RI,Rhode Island,202003,Y,U,Y,1964.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1964.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",2333.0,,121.0,,2454.0,,116392.0,,292639.0,,258801.0,,33838.0,,,,811.0,Incorrectly includes redeterminations,197.0,Incorrectly includes redeterminations,84.0,Incorrectly includes redeterminations,6.0,Incorrectly includes redeterminations,168.0,Incorrectly includes redeterminations,,,,,, +RI,Rhode Island,202004,Y,P,N,2026.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,2026.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",2547.0,,143.0,,2690.0,,116915.0,,298971.0,,268592.0,,30379.0,,,,936.0,Incorrectly includes redeterminations,236.0,Incorrectly includes redeterminations,81.0,Incorrectly includes redeterminations,15.0,Incorrectly includes redeterminations,227.0,Incorrectly includes redeterminations,,,,,, +RI,Rhode Island,202004,Y,U,Y,2026.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,2026.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",2547.0,,143.0,,2690.0,,117251.0,,299750.0,,269345.0,,30405.0,,,,931.0,Incorrectly includes redeterminations,236.0,Incorrectly includes redeterminations,80.0,Incorrectly includes redeterminations,15.0,Incorrectly includes redeterminations,230.0,Incorrectly includes redeterminations,,,,,, +RI,Rhode Island,202005,Y,P,N,1110.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1110.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1653.0,,114.0,,1767.0,,117056.0,,301723.0,,272408.0,,29315.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,202005,Y,U,Y,1110.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1110.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1653.0,,114.0,,1767.0,,117371.0,,302288.0,,272941.0,,29347.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,202006,Y,P,N,1080.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1080.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1727.0,,100.0,,1827.0,,117808.0,,305208.0,,275893.0,,29315.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,202006,Y,U,Y,1080.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1080.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1727.0,,100.0,,1827.0,,118125.0,,305900.0,,276577.0,,29323.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,202007,Y,P,N,1303.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1303.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",2049.0,,134.0,,2183.0,,118597.0,,308847.0,,279162.0,,29685.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,202007,Y,U,Y,1303.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1303.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",2049.0,,134.0,,2183.0,,118819.0,,309281.0,,279583.0,,29698.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,202008,Y,P,N,1629.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1629.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",2445.0,,177.0,,2622.0,,119180.0,,312213.0,,282121.0,,30092.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,202008,Y,U,Y,1629.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1629.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",2445.0,,177.0,,2622.0,,119408.0,,312577.0,,282483.0,,30094.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,202009,Y,P,N,1523.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1523.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",2318.0,,164.0,,2482.0,,119876.0,,315457.0,,285201.0,,30256.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,202009,Y,U,Y,1523.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1523.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",2318.0,,164.0,,2482.0,,120090.0,,315723.0,,285464.0,,30259.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,202010,Y,P,N,1332.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1332.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1687.0,,105.0,,1792.0,,120379.0,,318137.0,,287686.0,,30451.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,202010,Y,U,Y,1332.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1332.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1687.0,,105.0,,1792.0,,120659.0,,318399.0,,287948.0,,30451.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,202011,Y,P,N,1593.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1593.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",2218.0,,120.0,,2338.0,,120934.0,,320927.0,,289993.0,,30934.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,202011,Y,U,Y,1593.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1593.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",2218.0,,120.0,,2338.0,,121362.0,,321551.0,,290584.0,,30967.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,202012,Y,P,N,2005.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,2005.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",2622.0,,141.0,,2763.0,,121861.0,,325630.0,,294145.0,,31485.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,202012,Y,U,Y,2005.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,2005.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",2622.0,,141.0,,2763.0,,122059.0,,325713.0,,294208.0,,31505.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,202101,Y,P,N,1667.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1667.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",2109.0,,113.0,,2222.0,,122285.0,,328423.0,,296410.0,,32013.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,202101,Y,U,Y,1667.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1667.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",2109.0,,113.0,,2222.0,,122291.0,,328028.0,,296087.0,,31941.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,202102,Y,P,N,1261.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1261.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1636.0,,115.0,,1751.0,,122548.0,,329158.0,,296894.0,,32264.0,,,,607.0,,112.0,,26.0,,9.0,,176.0,,,,,,, +RI,Rhode Island,202102,Y,U,Y,1261.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1261.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1636.0,,115.0,,1751.0,,122786.0,,329764.0,,297493.0,,32271.0,,,,603.0,,110.0,,26.0,,9.0,,172.0,,,,,,, +RI,Rhode Island,202103,Y,P,N,1552.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1552.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1912.0,,129.0,,2041.0,,122750.0,,331453.0,,298893.0,,32560.0,,,,773.0,,119.0,,26.0,,4.0,,194.0,,,,,,, +RI,Rhode Island,202103,Y,U,Y,1552.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1552.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1912.0,,129.0,,2041.0,,122982.0,,331508.0,,298941.0,,32567.0,,,,657.0,,77.0,,35.0,,6.0,,186.0,,,,,,, +RI,Rhode Island,202104,Y,P,N,1270.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1270.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1696.0,,104.0,,1800.0,,123216.0,,333993.0,,301076.0,,32917.0,,,,653.0,,78.0,,35.0,,6.0,,186.0,,,,,,, +RI,Rhode Island,202104,Y,U,Y,1270.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1270.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1696.0,,104.0,,1800.0,,123389.0,,333565.0,,300650.0,,32915.0,,,,657.0,,77.0,,35.0,,6.0,,191.0,,,,,,, +RI,Rhode Island,202105,Y,P,N,1238.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1238.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1645.0,,115.0,,1760.0,,123427.0,,334556.0,,301346.0,,33210.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,202105,Y,U,Y,1238.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1238.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1645.0,,115.0,,1760.0,,123630.0,,334758.0,,301539.0,,33219.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,202106,Y,P,N,1264.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1264.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1753.0,,119.0,,1872.0,,123661.0,,336152.0,,302529.0,,33623.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,202106,Y,U,Y,1264.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1264.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1753.0,,119.0,,1872.0,,123942.0,,336631.0,,302999.0,,33632.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,202107,Y,P,N,1327.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1327.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1831.0,,112.0,,1943.0,,124032.0,,337913.0,,304022.0,,33891.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,202107,Y,U,Y,1327.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1327.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1831.0,,112.0,,1943.0,,124225.0,,338291.0,,304385.0,,33906.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,202108,Y,P,N,1596.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1596.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",2109.0,,149.0,,2258.0,,124374.0,,339942.0,,305604.0,,34338.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,202108,Y,U,Y,1596.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1596.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",2109.0,,149.0,,2258.0,,124548.0,,340212.0,,305871.0,,34341.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,202109,Y,P,N,1341.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1341.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1789.0,,148.0,,1937.0,,124531.0,,341124.0,,306397.0,,34727.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,202109,Y,U,Y,1341.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1341.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1789.0,,148.0,,1937.0,,125030.0,,342408.0,,307419.0,,34989.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,202110,Y,P,N,1224.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1224.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1520.0,,138.0,,1658.0,,125429.0,,342408.0,,307419.0,,34989.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,202110,Y,U,Y,1224.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1224.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1520.0,,138.0,,1658.0,,124970.0,,342734.0,,307732.0,,35002.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,202111,Y,P,N,1639.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1639.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1762.0,,121.0,,1883.0,,124866.0,,343753.0,,308452.0,,35301.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,202111,Y,U,Y,1639.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1639.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1762.0,,121.0,,1883.0,,125200.0,,344557.0,,309245.0,,35312.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,202112,Y,P,N,1772.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1772.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1404.0,,76.0,,1480.0,,124341.0,,343714.0,,308433.0,,35281.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,202112,Y,U,Y,1772.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1772.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1404.0,,76.0,,1480.0,,124749.0,,344318.0,,309008.0,,35310.0,,,,,,,,,,,,,,,,,,, +RI,Rhode Island,202201,Y,P,N,1895.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1895.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1497.0,,101.0,,1598.0,,124579.0,,345182.0,,309438.0,,35744.0,,,,1515.0,,412.0,,256.0,,58.0,,119.0,,,,,,, +RI,Rhode Island,202201,Y,U,Y,1895.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1895.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1497.0,,101.0,,1598.0,,125062.0,,345734.0,,309966.0,,35768.0,,,,1510.0,,406.0,,254.0,,58.0,,118.0,,,,,,, +RI,Rhode Island,202202,Y,P,N,1213.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1213.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",938.0,,85.0,,1023.0,,124861.0,,346545.0,,310587.0,,35958.0,,,,1158.0,,296.0,,192.0,,60.0,,152.0,,,,,,, +RI,Rhode Island,202202,Y,U,Y,1213.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1213.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",938.0,,85.0,,1023.0,,125144.0,,347056.0,,311088.0,,35968.0,,,,1153.0,,287.0,,188.0,,59.0,,149.0,,,,,,, +RI,Rhode Island,202203,Y,P,N,1477.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1477.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1162.0,,89.0,,1251.0,,125118.0,,348016.0,,311787.0,,36229.0,,,,1207.0,,276.0,,146.0,,45.0,,172.0,,,,,,, +RI,Rhode Island,202203,Y,U,Y,1477.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1477.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1162.0,,89.0,,1251.0,,125396.0,,348478.0,,312240.0,,36238.0,,,,1202.0,,272.0,,143.0,,44.0,,172.0,,,,,,, +RI,Rhode Island,202204,Y,P,N,1240.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1240.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",915.0,,74.0,,989.0,,125050.0,,349170.0,,314376.0,,34794.0,,,,1059.0,,220.0,,136.0,,43.0,,154.0,,,,,,, +RI,Rhode Island,202204,Y,U,Y,1240.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1240.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",915.0,,74.0,,989.0,,125379.0,,349624.0,,314816.0,,34808.0,,,,1052.0,,217.0,,135.0,,42.0,,150.0,,,,,,, +RI,Rhode Island,202205,Y,P,N,1229.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1229.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",825.0,,90.0,,915.0,,125235.0,,350336.0,,315356.0,,34980.0,,,,1100.0,,244.0,,123.0,,48.0,,126.0,,,,,,, +RI,Rhode Island,202205,Y,U,Y,1229.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1229.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",825.0,,90.0,,915.0,,125715.0,,350882.0,,315884.0,,34998.0,,,,1074.0,,242.0,,123.0,,47.0,,124.0,,,,,,, +RI,Rhode Island,202206,Y,P,N,1408.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1408.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1006.0,,74.0,,1080.0,,125720.0,,351936.0,,316587.0,,35349.0,,,,1113.0,,268.0,,188.0,,50.0,,124.0,,,,,,, +RI,Rhode Island,202206,Y,U,Y,1408.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1408.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1006.0,,74.0,,1080.0,,125991.0,,352367.0,,316996.0,,35371.0,,,,1110.0,,266.0,,185.0,,50.0,,122.0,,,,,,, +RI,Rhode Island,202207,Y,P,N,1227.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1227.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",932.0,,96.0,,1028.0,,125898.0,,352986.0,,317518.0,,35468.0,,,,1091.0,,246.0,,183.0,,36.0,,124.0,,,,,,, +RI,Rhode Island,202207,Y,U,Y,1227.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1227.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",932.0,,96.0,,1028.0,,126171.0,,353502.0,,318021.0,,35481.0,,,,1082.0,,240.0,,178.0,,35.0,,119.0,,,,,,, +RI,Rhode Island,202208,Y,P,N,1553.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1553.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1143.0,,82.0,,1225.0,,126309.0,,354900.0,,319835.0,,35065.0,,,,1161.0,,309.0,,230.0,,34.0,,142.0,,,,,,, +RI,Rhode Island,202208,Y,U,Y,1553.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1553.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1143.0,,82.0,,1225.0,,126694.0,,355465.0,,320369.0,,35096.0,,,,1153.0,,302.0,,228.0,,34.0,,138.0,,,,,,, +RI,Rhode Island,202209,Y,P,N,1369.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1369.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1057.0,,82.0,,1139.0,,126747.0,,356556.0,,321296.0,,35260.0,,,,1066.0,,283.0,,220.0,,41.0,,144.0,,,,,,, +RI,Rhode Island,202209,Y,U,Y,1369.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1369.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1057.0,,82.0,,1139.0,,127066.0,,357068.0,,321798.0,,35270.0,,,,1048.0,,276.0,,213.0,,39.0,,138.0,,,,,,, +RI,Rhode Island,202210,Y,P,N,1585.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1585.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1237.0,,78.0,,1315.0,,127152.0,,357950.0,,322367.0,,35583.0,,,,991.0,,252.0,,311.0,,30.0,,129.0,,,,,,, +RI,Rhode Island,202210,Y,U,Y,1585.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1585.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1237.0,,78.0,,1315.0,,127923.0,,360020.0,,324136.0,,35884.0,,,,977.0,,245.0,,305.0,,29.0,,126.0,,,,,,, +RI,Rhode Island,202211,Y,P,N,1632.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1632.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1220.0,,104.0,,1324.0,,127923.0,,360020.0,,324136.0,,35884.0,,,,1269.0,,290.0,,280.0,,37.0,,161.0,,,,,,, +RI,Rhode Island,202211,Y,U,Y,1632.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1632.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1220.0,,104.0,,1324.0,,128363.0,,360705.0,,324814.0,,35891.0,,,,1245.0,,280.0,,260.0,,35.0,,116.0,,,,,,, +RI,Rhode Island,202212,Y,P,N,1657.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1657.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1136.0,,94.0,,1230.0,,128212.0,,361827.0,,325490.0,,36337.0,,,,1406.0,,275.0,,280.0,,44.0,,163.0,,,,,,, +RI,Rhode Island,202212,Y,U,Y,1657.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1657.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1136.0,,94.0,,1230.0,,128699.0,,362512.0,,326168.0,,36344.0,,,,1360.0,,265.0,,271.0,,44.0,,161.0,,,,,,, +RI,Rhode Island,202301,Y,P,N,1762.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1762.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1269.0,,74.0,,1343.0,,128717.0,,364027.0,,327421.0,,36606.0,,,,1431.0,,327.0,,258.0,,77.0,,214.0,,,,,,, +RI,Rhode Island,202301,Y,U,Y,1762.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1762.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1269.0,,74.0,,1343.0,,129345.0,,365005.0,,328374.0,,36631.0,,,,1401.0,,324.0,,250.0,,75.0,,216.0,,,,,,, +RI,Rhode Island,202302,Y,P,N,1240.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1240.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",878.0,,82.0,,960.0,,129178.0,,365630.0,,328691.0,,36939.0,,,,985.0,,308.0,,165.0,,39.0,,204.0,,,,,,, +RI,Rhode Island,202302,Y,U,Y,1240.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1240.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,0.0,,0.0,,129951.0,,368307.0,,331336.0,,36971.0,,,,942.0,,299.0,,163.0,,39.0,,201.0,,,,,,, +RI,Rhode Island,202303,Y,P,N,1445.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1445.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1100.0,,72.0,,1172.0,,130011.0,,369652.0,,332528.0,,37124.0,,,,1084.0,,341.0,,168.0,,50.0,,373.0,,93322.0,Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,47.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.178,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +RI,Rhode Island,202303,Y,U,Y,1445.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1445.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1100.0,,72.0,,1172.0,,130318.0,,370167.0,,333040.0,,37127.0,,,,1074.0,,336.0,,168.0,,51.0,,367.0,,93322.0,Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,47.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.178,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +RI,Rhode Island,202304,Y,P,N,1246.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1246.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1041.0,,64.0,,1105.0,,130269.0,,371752.0,,335272.0,,36480.0,,,,963.0,,330.0,,194.0,,51.0,,193.0,,61842.0,Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,37.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.229,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +RI,Rhode Island,202304,Y,U,Y,1246.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1246.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1041.0,,64.0,,1105.0,,130631.0,,372312.0,,335828.0,,36484.0,,,,958.0,,326.0,,192.0,,50.0,,193.0,,61842.0,Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,37.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.229,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +RI,Rhode Island,202305,Y,P,N,1377.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1377.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1206.0,,85.0,,1291.0,,130660.0,,373318.0,,336815.0,,36503.0,,,,1140.0,,438.0,,197.0,,30.0,,249.0,,8530.0,Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,31.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.446,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +RI,Rhode Island,202305,Y,U,Y,1377.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1377.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1206.0,,85.0,,1291.0,,130998.0,,373989.0,,337476.0,,36513.0,,,,1135.0,,432.0,,194.0,,30.0,,246.0,,8530.0,Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,31.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.446,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +RI,Rhode Island,202306,Y,P,N,1434.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1434.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1226.0,,90.0,,1316.0,,131070.0,,372574.0,,335923.0,,36651.0,,,,1262.0,,408.0,,173.0,,45.0,,137.0,,9081.0,Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,37.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.46,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +RI,Rhode Island,202306,Y,U,Y,1434.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1434.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1226.0,,90.0,,1316.0,,131376.0,,372991.0,,336336.0,,36655.0,,,,1258.0,,407.0,,171.0,,45.0,,139.0,,9081.0,Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,37.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.46,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +RI,Rhode Island,202307,Y,P,N,1359.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1359.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1147.0,,79.0,,1226.0,,131541.0,,372618.0,,335648.0,,36970.0,,,,1184.0,,403.0,,160.0,,50.0,,130.0,,9709.0,Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,30.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.435,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +RI,Rhode Island,202307,Y,U,Y,1359.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1359.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1147.0,,79.0,,1226.0,,131956.0,,373260.0,,336281.0,,36979.0,,,,1173.0,,396.0,,157.0,,49.0,,128.0,,9709.0,Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,30.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.435,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +RI,Rhode Island,202308,Y,P,N,1654.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1654.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1339.0,,75.0,,1414.0,,132292.0,,371578.0,,334343.0,,37235.0,,,,1364.0,,407.0,,299.0,,45.0,,110.0,,9326.0,Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,27.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.357,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +RI,Rhode Island,202308,Y,U,Y,1654.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1654.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1339.0,,75.0,,1414.0,,132574.0,,371940.0,,334700.0,,37240.0,,,,1363.0,,403.0,,295.0,,45.0,,107.0,,9326.0,Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,27.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.357,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +RI,Rhode Island,202309,Y,P,N,1461.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1461.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1112.0,,59.0,,1171.0,,132610.0,,368219.0,,330838.0,,37381.0,,,,1232.0,,308.0,,256.0,,59.0,,82.0,,8467.0,Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,19.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.275,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +RI,Rhode Island,202309,Y,U,Y,1461.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1461.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1112.0,,59.0,,1171.0,,133066.0,,368687.0,,331292.0,,37395.0,,,,1213.0,,302.0,,250.0,,59.0,,77.0,,8467.0,Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,19.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.275,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +RI,Rhode Island,202310,Y,P,N,1410.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1410.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1115.0,,44.0,,1159.0,,132080.0,,362020.0,,325301.0,,36719.0,,,,1227.0,,297.0,,325.0,,39.0,,114.0,,9960.0,Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,25.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.351,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +RI,Rhode Island,202310,Y,U,Y,1410.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1410.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1115.0,,44.0,,1159.0,,132466.0,,362738.0,,326004.0,,36734.0,,,,1223.0,,298.0,,320.0,,38.0,,112.0,,9960.0,Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,25.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.351,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +RI,Rhode Island,202311,Y,P,N,1790.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1790.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1594.0,,61.0,,1655.0,,132393.0,,355487.0,,318560.0,,36927.0,,,,1614.0,,403.0,,283.0,,45.0,,107.0,,12615.0,Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,24.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.326,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +RI,Rhode Island,202311,Y,U,Y,1790.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1790.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1594.0,,61.0,,1655.0,,132760.0,,356334.0,,319399.0,,36935.0,,,,1593.0,,396.0,,280.0,,45.0,,103.0,,12615.0,Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,24.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.326,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +RI,Rhode Island,202312,Y,P,N,1821.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1821.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1557.0,,65.0,,1622.0,,132595.0,,350855.0,,313715.0,,37140.0,,,,1657.0,,395.0,,285.0,,62.0,,122.0,,15315.0,Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,19.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.29,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +RI,Rhode Island,202312,Y,U,Y,1821.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1821.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1557.0,,65.0,,1622.0,,132961.0,,351551.0,,314477.0,,37074.0,,,,1657.0,,395.0,,285.0,,62.0,,122.0,,15315.0,Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,19.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.29,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +RI,Rhode Island,202401,Y,P,N,2466.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,2466.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",2122.0,,85.0,,2207.0,,132893.0,,348165.0,,311100.0,,37065.0,,,,2010.0,,507.0,,315.0,,57.0,,120.0,,26480.0,Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,29.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.456,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +RI,Rhode Island,202401,Y,U,Y,2466.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,2466.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",2122.0,,85.0,,2207.0,,133071.0,,348662.0,,311650.0,,37012.0,,,,2010.0,,507.0,,315.0,,57.0,,120.0,,26480.0,Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,29.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.456,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +RI,Rhode Island,202402,Y,P,N,1647.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1647.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1363.0,,73.0,,1436.0,,130217.0,,340305.0,,303661.0,,36644.0,,,,1434.0,,372.0,,330.0,,55.0,,115.0,,20060.0,Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,26.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.403,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +RI,Rhode Island,202402,Y,U,Y,1647.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1647.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1363.0,,73.0,,1436.0,,130512.0,,340876.0,,304272.0,,36604.0,,,,1434.0,,372.0,,330.0,,55.0,,115.0,,20060.0,Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,26.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.403,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +RI,Rhode Island,202403,Y,P,N,1662.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1662.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1450.0,,49.0,,1499.0,,128354.0,,336231.0,,300325.0,,35906.0,,,,1657.0,,409.0,,240.0,,58.0,,135.0,,21665.0,Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,20.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.298,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +RI,Rhode Island,202403,Y,U,Y,1662.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1662.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1450.0,,49.0,,1499.0,,128629.0,,336537.0,,300695.0,,35842.0,,,,1657.0,,409.0,,240.0,,58.0,,135.0,,21665.0,Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,20.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.298,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +RI,Rhode Island,202404,Y,P,N,1572.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1572.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1533.0,,105.0,,1638.0,,125792.0,,329405.0,,296017.0,,33388.0,,,,1720.0,,399.0,,241.0,,72.0,,113.0,,20075.0,Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,18.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.285,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +RI,Rhode Island,202404,Y,U,Y,1572.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1572.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1533.0,,105.0,,1638.0,,126278.0,,330528.0,,297128.0,,33400.0,,,,1720.0,,399.0,,241.0,,72.0,,113.0,,20075.0,Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,18.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.285,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +RI,Rhode Island,202405,Y,P,N,1605.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1605.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1281.0,,79.0,,1360.0,,123218.0,,320988.0,,288279.0,,32709.0,,,,1752.0,,424.0,,183.0,,58.0,,126.0,,17249.0,Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,15.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.23,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +RI,Rhode Island,202405,Y,U,Y,1605.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1605.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1281.0,,79.0,,1360.0,,122894.0,,319818.0,,287667.0,,32151.0,,,,1752.0,,424.0,,183.0,,58.0,,126.0,,17249.0,Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,15.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.23,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +RI,Rhode Island,202406,Y,P,N,1480.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1480.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1225.0,,60.0,,1285.0,,121879.0,,316704.0,,285246.0,,31458.0,,,,1443.0,,352.0,,234.0,,56.0,,95.0,,14159.0,Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,14.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.201,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +RI,Rhode Island,202406,Y,U,Y,1480.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1480.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1225.0,,60.0,,1285.0,,122267.0,,317487.0,,286020.0,,31467.0,,,,1443.0,,352.0,,234.0,,56.0,,95.0,,14159.0,Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,14.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.201,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +RI,Rhode Island,202407,Y,P,N,1749.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1749.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1430.0,,94.0,,1524.0,,121911.0,,315965.0,,284856.0,,31109.0,,194054.0,,1726.0,,372.0,,227.0,,46.0,,131.0,,16273.0,Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,10.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.169,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +RI,Rhode Island,202407,Y,U,Y,1749.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1749.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1430.0,,94.0,,1524.0,,122743.0,,318081.0,,286470.0,,31611.0,,195338.0,,1726.0,,372.0,,227.0,,46.0,,131.0,,16273.0,Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,10.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.169,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +RI,Rhode Island,202408,Y,P,N,1913.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1913.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1815.0,,176.0,,1991.0,,122886.0,,318221.0,,286677.0,,31544.0,,195335.0,,1759.0,,294.0,,240.0,,61.0,,168.0,,13902.0,Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,14.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.188,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +RI,Rhode Island,202408,Y,U,Y,1913.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1913.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1815.0,,176.0,,1991.0,,123192.0,,318769.0,,287248.0,,31521.0,,195577.0,,1759.0,,294.0,,240.0,,61.0,,168.0,,13902.0,Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,14.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.188,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +RI,Rhode Island,202409,Y,P,N,1965.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1965.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",2046.0,,242.0,,2288.0,,122867.0,,316940.0,,285985.0,,30955.0,,194073.0,,1528.0,,308.0,,232.0,,79.0,,115.0,,16900.0,Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,16.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.219,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +RI,Rhode Island,202409,Y,U,Y,1965.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1965.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",2046.0,,242.0,,2288.0,,123315.0,,317826.0,,286863.0,,30963.0,,194511.0,,1528.0,,308.0,,232.0,,79.0,,115.0,,16900.0,Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,16.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.219,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +RI,Rhode Island,202410,Y,P,N,2051.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,2051.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",2063.0,,218.0,,2281.0,,123288.0,,306344.0,,273124.0,,33220.0,,183056.0,,1054.0,,205.0,,298.0,,54.0,,69.0,,20767.0,Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,17.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.261,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +RI,Rhode Island,202410,Y,U,Y,2051.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,2051.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",2063.0,,218.0,,2281.0,,123572.0,,307040.0,,273810.0,,33230.0,,183468.0,,1054.0,,205.0,,298.0,,54.0,,69.0,,20767.0,Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,17.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.261,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +RI,Rhode Island,202411,Y,P,N,2043.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,2043.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",2235.0,,259.0,,2494.0,,123390.0,,306161.0,,273400.0,,32761.0,,182771.0,,1113.0,,239.0,,249.0,,37.0,,89.0,,17706.0,Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,14.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.223,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +RI,Rhode Island,202411,Y,U,Y,2043.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,2043.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",2235.0,,259.0,,2494.0,,123390.0,,306161.0,,273400.0,,32761.0,,182771.0,,1113.0,,239.0,,249.0,,37.0,,89.0,,17706.0,Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,14.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.223,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +RI,Rhode Island,202412,Y,P,N,0.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,0.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,0.0,Unable to Provide Data due to System Limitations,0.0,Unable to Provide Data due to System Limitations,0.0,Unable to Provide Data due to System Limitations,0.0,Unable to Provide Data due to System Limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,,Did not report data because of technical reasons,,Did not report data because of technical reasons,,Did not report data because of technical reasons +RI,Rhode Island,202412,Y,U,Y,0.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,0.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,0.0,Unable to Provide Data due to System Limitations,0.0,Unable to Provide Data due to System Limitations,0.0,Unable to Provide Data due to System Limitations,0.0,Unable to Provide Data due to System Limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,,Did not report data because of technical reasons,,Did not report data because of technical reasons,,Did not report data because of technical reasons +RI,Rhode Island,202501,Y,P,N,0.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,0.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,0.0,Unable to Provide Data due to System Limitations,0.0,Unable to Provide Data due to System Limitations,0.0,Unable to Provide Data due to System Limitations,0.0,Unable to Provide Data due to System Limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,,Did not report data because of technical reasons,,Did not report data because of technical reasons,,Did not report data because of technical reasons +RI,Rhode Island,202501,Y,U,Y,0.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,0.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,0.0,,0.0,,124428.0,,312216.0,,279404.0,,32812.0,,187788.0,,0.0,,0.0,,0.0,,0.0,,0.0,,,Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +RI,Rhode Island,202502,Y,P,N,1755.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1755.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1847.0,,154.0,,2001.0,,124895.0,,316553.0,,283281.0,,33272.0,,191658.0,,1142.0,,300.0,,169.0,,25.0,,133.0,,21469.0,Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,10.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.191,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +RI,Rhode Island,202502,Y,U,Y,1755.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1755.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1847.0,,154.0,,2001.0,,125262.0,,317094.0,,283813.0,,33281.0,,191832.0,,1142.0,,300.0,,169.0,,25.0,,133.0,,21469.0,Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,10.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.191,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +RI,Rhode Island,202503,Y,P,N,1531.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1531.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1636.0,,173.0,,1809.0,,124561.0,,317107.0,,284245.0,,32862.0,,192546.0,,845.0,,276.0,,181.0,,14.0,,70.0,,17636.0,Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,11.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.157,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +RI,Rhode Island,202503,Y,U,Y,1531.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1531.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1636.0,,173.0,,1809.0,,124877.0,,317723.0,,284846.0,,32877.0,,192846.0,,845.0,,276.0,,181.0,,14.0,,70.0,,17636.0,Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,11.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.157,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +RI,Rhode Island,202504,Y,P,N,1589.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1589.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1722.0,,215.0,,1937.0,,124507.0,,318335.0,,285161.0,,33174.0,,193828.0,,842.0,,238.0,,166.0,,21.0,,42.0,,19944.0,Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,11.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.153,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +RI,Rhode Island,202504,Y,U,Y,1589.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1589.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1722.0,,215.0,,1937.0,,124749.0,,318588.0,,285386.0,,33202.0,,193839.0,,842.0,,238.0,,166.0,,21.0,,42.0,,19944.0,Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,11.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.153,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +RI,Rhode Island,202505,Y,P,N,1564.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1564.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1661.0,,200.0,,1861.0,,123379.0,,318036.0,,285644.0,,32392.0,,194657.0,,895.0,,257.0,,179.0,,29.0,,75.0,,20318.0,Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,12.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.166,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +RI,Rhode Island,202505,Y,U,Y,1564.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1564.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1661.0,,200.0,,1861.0,,123690.0,,317946.0,,285523.0,,32423.0,,194256.0,,895.0,,257.0,,179.0,,29.0,,75.0,,20318.0,Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,12.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.166,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +RI,Rhode Island,202506,Y,P,N,1594.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1594.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1809.0,,229.0,,2038.0,,121834.0,,313519.0,,280823.0,,32696.0,,191685.0,,846.0,,196.0,,146.0,,27.0,,61.0,,15267.0,Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,11.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.235,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +RI,Rhode Island,202506,Y,U,Y,1594.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1594.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1809.0,,229.0,,2038.0,,122230.0,,313733.0,,281007.0,,32726.0,,191503.0,,846.0,,196.0,,146.0,,27.0,,61.0,,15267.0,Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,11.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.235,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +RI,Rhode Island,202507,Y,P,N,1715.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1715.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1886.0,,215.0,,2101.0,,121074.0,,306730.0,,273073.0,,33657.0,,185656.0,,946.0,,45.0,,14.0,,3.0,,50.0,,18596.0,Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,8.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.138,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +RI,Rhode Island,202507,Y,U,Y,1715.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1715.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1886.0,,215.0,,2101.0,,121375.0,,307370.0,,273694.0,,33676.0,,185995.0,,946.0,,45.0,,14.0,,3.0,,50.0,,18596.0,Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,8.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.138,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +RI,Rhode Island,202508,Y,P,N,1594.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1594.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1692.0,,162.0,,1854.0,,120266.0,,304696.0,,271466.0,,33230.0,,184430.0,,845.0,,265.0,,139.0,,23.0,,73.0,,14732.0,Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,11.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.156,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +RI,Rhode Island,202508,Y,U,Y,1594.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1594.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1692.0,,162.0,,1854.0,,120645.0,,305293.0,,272057.0,,33236.0,,184648.0,,845.0,,265.0,,139.0,,23.0,,73.0,,14732.0,Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,11.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.156,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +RI,Rhode Island,202509,Y,P,N,1693.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1693.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",2031.0,,229.0,,2260.0,,119323.0,,303351.0,,270410.0,,32941.0,,184028.0,,932.0,,247.0,,151.0,,28.0,,68.0,,16701.0,Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,11.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.155,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +RI,Rhode Island,202509,Y,U,Y,1693.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1693.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",2031.0,,229.0,,2260.0,,119778.0,,304391.0,,271469.0,,32922.0,,184613.0,,932.0,,247.0,,151.0,,28.0,,68.0,,16701.0,Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,11.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.155,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +RI,Rhode Island,202510,Y,P,N,1548.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",0.0,,1548.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.)",1697.0,,204.0,,1901.0,,119157.0,,303480.0,,270512.0,,32968.0,,184323.0,,760.0,,160.0,,150.0,,28.0,,92.0,,17114.0,Does not include all calls received after business hours; Includes state-based marketplace (SBM) data,11.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data,0.155,Does not include all calls received after business hours; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +SC,South Carolina,201309,N,U,Y,,,,,,,,,,,,,,,889744.0,,,,,,,,,,,,,,,,,,,,,,, +SC,South Carolina,201706,N,P,N,22349.0,,0.0,,22349.0,,8927.0,Does Not Include All Medicaid Determinations Made At Application,93.0,Does Not Include All CHIP Determinations Made At Application,9020.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,635095.0,,1008200.0,,931134.0,,77066.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,201706,N,U,Y,22349.0,,0.0,,22349.0,,8927.0,Does Not Include All Medicaid Determinations Made At Application,93.0,Does Not Include All CHIP Determinations Made At Application,9020.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,646903.0,,1031667.0,,955856.0,,75811.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,201707,N,P,N,20802.0,,0.0,,20802.0,,6110.0,Does Not Include All Medicaid Determinations Made At Application,125.0,Does Not Include All CHIP Determinations Made At Application,6235.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,634195.0,,1007192.0,,929925.0,,77267.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,201707,N,U,Y,20802.0,,0.0,,20802.0,,6110.0,Does Not Include All Medicaid Determinations Made At Application,125.0,Does Not Include All CHIP Determinations Made At Application,6235.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,647949.0,,1032955.0,,956376.0,,76579.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,201708,N,P,N,22883.0,,0.0,,22883.0,,9708.0,,171.0,,9879.0,,635378.0,,1008737.0,,930239.0,,78498.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,201708,N,U,Y,22883.0,,0.0,,22883.0,,9708.0,,171.0,,9879.0,,648809.0,,1033865.0,,956011.0,,77854.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,201709,N,P,N,18951.0,,0.0,,18951.0,,8434.0,Does Not Include All Medicaid Determinations Made At Application,193.0,Does Not Include All CHIP Determinations Made At Application,8627.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,634306.0,,1006719.0,,927075.0,,79644.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,201709,N,U,Y,18951.0,,0.0,,18951.0,,8434.0,,193.0,,8627.0,,648025.0,,1032321.0,,953301.0,,79020.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,201710,N,P,N,23080.0,,0.0,,23080.0,,9288.0,,193.0,,9481.0,,636057.0,,1009459.0,,928452.0,,81007.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,201710,N,U,Y,23080.0,,0.0,,23080.0,,9288.0,,193.0,,9481.0,,648299.0,,1032730.0,,952712.0,,80018.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,201711,N,P,N,20845.0,,0.0,,20845.0,,7844.0,,160.0,,8004.0,,637210.0,,1010646.0,,928928.0,,81718.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,201711,N,U,Y,20845.0,,0.0,,20845.0,,7844.0,,160.0,,8004.0,,649560.0,,1034151.0,,953248.0,,80903.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,201712,N,P,N,19106.0,,0.0,,19106.0,,7570.0,,155.0,,7725.0,,635839.0,,1009409.0,,927258.0,,82151.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,201712,N,U,Y,19106.0,,0.0,,19106.0,,7570.0,,155.0,,7725.0,,649599.0,,1036707.0,,954803.0,,81904.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,201801,N,P,N,23401.0,,0.0,,23401.0,,7046.0,Does Not Include All Medicaid Determinations Made At Application,199.0,Does Not Include All CHIP Determinations Made At Application,7245.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,636832.0,,1009701.0,,927276.0,,82425.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,201801,N,U,Y,23401.0,,0.0,,23401.0,,7046.0,Does Not Include All Medicaid Determinations Made At Application,199.0,Does Not Include All CHIP Determinations Made At Application,7245.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,649960.0,,1038602.0,,955716.0,,82886.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,201802,N,P,N,22347.0,,0.0,,22347.0,,6532.0,Does Not Include All Medicaid Determinations Made At Application,119.0,Does Not Include All CHIP Determinations Made At Application,6651.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,637785.0,,1011302.0,,928436.0,,82866.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",865.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",975.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",43.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",150.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",,,,,, +SC,South Carolina,201802,N,U,Y,22347.0,,0.0,,22347.0,,6532.0,Does Not Include All Medicaid Determinations Made At Application,119.0,Does Not Include All CHIP Determinations Made At Application,6651.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,650554.0,,1039978.0,,955846.0,,84132.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",865.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",975.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",43.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",150.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",,,,,, +SC,South Carolina,201803,N,P,N,22982.0,,0.0,,22982.0,,6412.0,Does Not Include All Medicaid Determinations Made At Application,125.0,Does Not Include All CHIP Determinations Made At Application,6537.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,637238.0,,1014704.0,,931639.0,,83065.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",1040.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",208.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",51.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",164.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",,,,,, +SC,South Carolina,201803,N,U,Y,22982.0,,0.0,,22982.0,,6412.0,Does Not Include All Medicaid Determinations Made At Application,125.0,Does Not Include All CHIP Determinations Made At Application,6537.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,650358.0,,1041832.0,,956913.0,,84919.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",1040.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",208.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",51.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",164.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",,,,,, +SC,South Carolina,201804,N,P,N,21879.0,,0.0,,21879.0,,7033.0,Does Not Include All Medicaid Determinations Made At Application,156.0,Does Not Include All CHIP Determinations Made At Application,7189.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,638546.0,,1018438.0,,933447.0,,84991.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",955.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",210.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",41.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",135.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",,,,,, +SC,South Carolina,201804,N,U,Y,21879.0,,0.0,,21879.0,,7033.0,Does Not Include All Medicaid Determinations Made At Application,156.0,Does Not Include All CHIP Determinations Made At Application,7189.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,651297.0,,1043534.0,,956798.0,,86736.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",955.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",210.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",41.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",135.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",,,,,, +SC,South Carolina,201805,N,P,N,21766.0,,0.0,,21766.0,,6890.0,Does Not Include All Medicaid Determinations Made At Application,168.0,Does Not Include All CHIP Determinations Made At Application,7058.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,637216.0,,1017138.0,,930970.0,,86168.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,201805,N,U,Y,21766.0,,0.0,,21766.0,,6890.0,Does Not Include All Medicaid Determinations Made At Application,168.0,Does Not Include All CHIP Determinations Made At Application,7058.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,650092.0,,1042153.0,,954420.0,,87733.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,201806,N,P,N,25054.0,,0.0,,25054.0,,7426.0,Does Not Include All Medicaid Determinations Made At Application,157.0,Does Not Include All CHIP Determinations Made At Application,7583.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,621459.0,,994240.0,,909105.0,,85135.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,201806,N,U,Y,25054.0,,0.0,,25054.0,,7426.0,Does Not Include All Medicaid Determinations Made At Application,157.0,Does Not Include All CHIP Determinations Made At Application,7583.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,640072.0,,1027262.0,,940003.0,,87259.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,201807,N,P,N,25586.0,,0.0,,25586.0,,7207.0,Does Not Include All Medicaid Determinations Made At Application,182.0,Does Not Include All CHIP Determinations Made At Application,7389.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,624109.0,,999452.0,,914192.0,,85260.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,201807,N,U,Y,25586.0,,0.0,,25586.0,,7207.0,Does Not Include All Medicaid Determinations Made At Application,182.0,Does Not Include All CHIP Determinations Made At Application,7389.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,641446.0,,1030392.0,,942125.0,,88267.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,201808,N,P,N,27016.0,,0.0,,27016.0,,8424.0,Does Not Include All Medicaid Determinations Made At Application,227.0,Does Not Include All CHIP Determinations Made At Application,8651.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,638063.0,,1014760.0,,928966.0,,85794.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,201808,N,U,Y,27016.0,,0.0,,27016.0,,8424.0,Does Not Include All Medicaid Determinations Made At Application,227.0,Does Not Include All CHIP Determinations Made At Application,8651.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,652597.0,,1041709.0,,953218.0,,88491.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,201809,N,P,N,19605.0,,0.0,,19605.0,,5835.0,Does Not Include All Medicaid Determinations Made At Application,182.0,Does Not Include All CHIP Determinations Made At Application,6017.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,635170.0,,1012160.0,,926639.0,,85521.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,201809,N,U,Y,19605.0,,0.0,,19605.0,,5835.0,Does Not Include All Medicaid Determinations Made At Application,182.0,Does Not Include All CHIP Determinations Made At Application,6017.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,650369.0,,1039508.0,,951101.0,,88407.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,201810,N,P,N,26330.0,,0.0,,26330.0,,7330.0,Does Not Include All Medicaid Determinations Made At Application,271.0,Does Not Include All CHIP Determinations Made At Application,7601.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,641035.0,,1021502.0,,934495.0,,87007.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,201810,N,U,Y,26330.0,,0.0,,26330.0,,7330.0,Does Not Include All Medicaid Determinations Made At Application,271.0,Does Not Include All CHIP Determinations Made At Application,7601.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,652324.0,,1043092.0,,954665.0,,88427.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,201811,N,P,N,22867.0,,0.0,,22867.0,,6614.0,Does Not Include All Medicaid Determinations Made At Application,282.0,Does Not Include All CHIP Determinations Made At Application,6896.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,640295.0,,1020780.0,,934015.0,,86765.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,201811,N,U,Y,22867.0,,0.0,,22867.0,,6614.0,Does Not Include All Medicaid Determinations Made At Application,282.0,Does Not Include All CHIP Determinations Made At Application,6896.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,652298.0,,1043301.0,,954359.0,,88942.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,201812,N,P,N,19590.0,,0.0,,19590.0,,6841.0,Does Not Include All Medicaid Determinations Made At Application,292.0,Does Not Include All CHIP Determinations Made At Application,7133.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,641235.0,,1021579.0,,933881.0,,87698.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,201812,N,U,Y,19590.0,,0.0,,19590.0,,6841.0,Does Not Include All Medicaid Determinations Made At Application,292.0,Does Not Include All CHIP Determinations Made At Application,7133.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,653431.0,,1044270.0,,954472.0,,89798.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,201901,N,P,N,25718.0,,0.0,,25718.0,,6839.0,Does Not Include All Medicaid Determinations Made At Application,285.0,Does Not Include All CHIP Determinations Made At Application,7124.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,645564.0,,1028077.0,,939171.0,,88906.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,201901,N,U,Y,25718.0,,0.0,,25718.0,,6839.0,Does Not Include All Medicaid Determinations Made At Application,285.0,Does Not Include All CHIP Determinations Made At Application,7124.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,656039.0,,1048346.0,,957616.0,,90730.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,201902,N,P,N,30421.0,,0.0,,30421.0,,6524.0,Does Not Include All Medicaid Determinations Made At Application,265.0,Does Not Include All CHIP Determinations Made At Application,6789.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,647864.0,,1030848.0,,941175.0,,89673.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",678.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",150.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",46.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",216.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",,,,,, +SC,South Carolina,201902,N,U,Y,30421.0,,0.0,,30421.0,,6524.0,Does Not Include All Medicaid Determinations Made At Application,265.0,Does Not Include All CHIP Determinations Made At Application,6789.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,657843.0,,1050510.0,,959314.0,,91196.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",678.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",150.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",46.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",216.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",,,,,, +SC,South Carolina,201903,N,P,N,24125.0,,0.0,,24125.0,,5651.0,Does Not Include All Medicaid Determinations Made At Application,313.0,Does Not Include All CHIP Determinations Made At Application,5964.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,650344.0,,1034333.0,,944681.0,,89652.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",737.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",123.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",39.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",400.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",,,,,, +SC,South Carolina,201903,N,U,Y,24125.0,,0.0,,24125.0,,5651.0,Does Not Include All Medicaid Determinations Made At Application,313.0,Does Not Include All CHIP Determinations Made At Application,5964.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,659644.0,,1053679.0,,962728.0,,90951.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",737.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",123.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",39.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",400.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",,,,,, +SC,South Carolina,201904,N,P,N,23789.0,,0.0,,23789.0,,6657.0,Does Not Include All Medicaid Determinations Made At Application,195.0,Does Not Include All CHIP Determinations Made At Application,6852.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,652537.0,,1035554.0,,945574.0,,89980.0,,,,534.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",263.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",165.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",49.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",105.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",,,,,, +SC,South Carolina,201904,N,U,Y,23789.0,,0.0,,23789.0,,6657.0,Does Not Include All Medicaid Determinations Made At Application,195.0,Does Not Include All CHIP Determinations Made At Application,6852.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,661224.0,,1054717.0,,963525.0,,91192.0,,,,534.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",263.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",165.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",49.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",105.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",,,,,, +SC,South Carolina,201905,N,P,N,23681.0,,0.0,,23681.0,,6361.0,Does Not Include All Medicaid Determinations Made At Application,149.0,Does Not Include All CHIP Determinations Made At Application,6510.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,652470.0,,1034481.0,,944382.0,,90099.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,201905,N,U,Y,23681.0,,0.0,,23681.0,,6361.0,Does Not Include All Medicaid Determinations Made At Application,149.0,Does Not Include All CHIP Determinations Made At Application,6510.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,661509.0,,1055008.0,,963824.0,,91184.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,201906,N,P,N,21441.0,,0.0,,21441.0,,6513.0,Does Not Include All Medicaid Determinations Made At Application,120.0,Does Not Include All CHIP Determinations Made At Application,6633.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,651768.0,,1034415.0,,944736.0,,89679.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,201906,N,U,Y,21441.0,,0.0,,21441.0,,6513.0,Does Not Include All Medicaid Determinations Made At Application,120.0,Does Not Include All CHIP Determinations Made At Application,6633.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,661366.0,,1055203.0,,964340.0,,90863.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,201907,N,P,N,24019.0,,0.0,,24019.0,,7614.0,Does Not Include All Medicaid Determinations Made At Application,152.0,Does Not Include All CHIP Determinations Made At Application,7766.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,653424.0,,1037023.0,,946774.0,,90249.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,201907,N,U,Y,24019.0,,0.0,,24019.0,,7614.0,Does Not Include All Medicaid Determinations Made At Application,152.0,Does Not Include All CHIP Determinations Made At Application,7766.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,663537.0,,1058406.0,,966938.0,,91468.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,201908,N,P,N,25900.0,,0.0,,25900.0,,8348.0,Does Not Include All Medicaid Determinations Made At Application,245.0,Does Not Include All CHIP Determinations Made At Application,8593.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,652779.0,,1036851.0,,945582.0,,91269.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,201908,N,U,Y,25900.0,,0.0,,25900.0,,8348.0,Does Not Include All Medicaid Determinations Made At Application,245.0,Does Not Include All CHIP Determinations Made At Application,8593.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,662962.0,,1058179.0,,965712.0,,92467.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,201909,N,P,N,29133.0,,0.0,,29133.0,,6928.0,Does Not Include All Medicaid Determinations Made At Application,154.0,Does Not Include All CHIP Determinations Made At Application,7082.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,653513.0,,1037259.0,,945332.0,,91927.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,201909,N,U,Y,29133.0,,0.0,,29133.0,,6928.0,,154.0,,7082.0,,663347.0,,1057940.0,,964805.0,,93135.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,201910,N,P,N,26308.0,,0.0,,26308.0,,8312.0,Does Not Include All Medicaid Determinations Made At Application,184.0,Does Not Include All CHIP Determinations Made At Application,8496.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,652750.0,,1036997.0,,944278.0,,92719.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,201910,N,U,Y,26308.0,,0.0,,26308.0,,8312.0,Does Not Include All Medicaid Determinations Made At Application,184.0,Does Not Include All CHIP Determinations Made At Application,8496.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,661614.0,,1056098.0,,962238.0,,93860.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,201911,N,P,N,22171.0,,0.0,,22171.0,,8068.0,Does Not Include All Medicaid Determinations Made At Application,177.0,Does Not Include All CHIP Determinations Made At Application,8245.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,647812.0,,1029967.0,,937299.0,,92668.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,201911,N,U,Y,22171.0,,0.0,,22171.0,,8068.0,Does Not Include All Medicaid Determinations Made At Application,177.0,Does Not Include All CHIP Determinations Made At Application,8245.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,658172.0,,1050850.0,,956677.0,,94173.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,201912,N,P,N,23166.0,,0.0,,23166.0,,7353.0,Does Not Include All Medicaid Determinations Made At Application,158.0,Does Not Include All CHIP Determinations Made At Application,7511.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,642096.0,,1021111.0,,928458.0,,92653.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,201912,N,U,Y,23166.0,,0.0,,23166.0,,7353.0,Does Not Include All Medicaid Determinations Made At Application,158.0,Does Not Include All CHIP Determinations Made At Application,7511.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,653818.0,,1044183.0,,949731.0,,94452.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,202001,N,P,N,27483.0,,0.0,,27483.0,,7798.0,Does Not Include All Medicaid Determinations Made At Application,182.0,Does Not Include All CHIP Determinations Made At Application,7980.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,638509.0,,1016305.0,,923130.0,,93175.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,202001,N,U,Y,27483.0,,0.0,,27483.0,,7798.0,Does Not Include All Medicaid Determinations Made At Application,182.0,Does Not Include All CHIP Determinations Made At Application,7980.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,650532.0,,1039640.0,,944294.0,,95346.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,202002,N,P,N,25578.0,,0.0,,25578.0,,7364.0,Does Not Include All Medicaid Determinations Made At Application,213.0,Does Not Include All CHIP Determinations Made At Application,7577.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,637347.0,,1015327.0,,921816.0,,93511.0,,,,722.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",320.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",209.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",48.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",293.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",,,,,, +SC,South Carolina,202002,N,U,Y,25578.0,,0.0,,25578.0,,7364.0,Does Not Include All Medicaid Determinations Made At Application,213.0,Does Not Include All CHIP Determinations Made At Application,7577.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,648589.0,,1036982.0,,941154.0,,95828.0,,,,722.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",320.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",209.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",48.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",293.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",,,,,, +SC,South Carolina,202003,N,P,N,24204.0,,0.0,,24204.0,,7516.0,Does Not Include All Medicaid Determinations Made At Application,229.0,Does Not Include All CHIP Determinations Made At Application,7745.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,634783.0,,1011762.0,,920159.0,,91603.0,,,,978.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",416.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",160.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",56.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",163.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",,,,,, +SC,South Carolina,202003,N,U,Y,24204.0,,0.0,,24204.0,,7516.0,Does Not Include All Medicaid Determinations Made At Application,229.0,Does Not Include All CHIP Determinations Made At Application,7745.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,645885.0,,1032851.0,,938885.0,,93966.0,,,,978.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",416.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",160.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",56.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",163.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",,,,,, +SC,South Carolina,202004,N,P,N,17538.0,,0.0,,17538.0,,4761.0,Does Not Include All Medicaid Determinations Made At Application,179.0,Does Not Include All CHIP Determinations Made At Application,4940.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,640353.0,,1023355.0,,930151.0,,93204.0,,,,364.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",205.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",94.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",30.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",129.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",,,,,, +SC,South Carolina,202004,N,U,Y,17538.0,,0.0,,17538.0,,4761.0,Does Not Include All Medicaid Determinations Made At Application,179.0,Does Not Include All CHIP Determinations Made At Application,4940.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,651108.0,,1044058.0,,948756.0,,95302.0,,,,364.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",205.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",94.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",30.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",129.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Does not include all MAGI determinations on applications",,,,,, +SC,South Carolina,202005,N,P,N,15203.0,,0.0,,15203.0,,4833.0,Does Not Include All Medicaid Determinations Made At Application,228.0,Does Not Include All CHIP Determinations Made At Application,5061.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,645802.0,,1035055.0,,940371.0,,94684.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,202005,N,U,Y,15203.0,,0.0,,15203.0,,4833.0,Does Not Include All Medicaid Determinations Made At Application,228.0,Does Not Include All CHIP Determinations Made At Application,5061.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,655953.0,,1054828.0,,958605.0,,96223.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,202006,N,P,N,17768.0,,0.0,,17768.0,,5574.0,Does Not Include All Medicaid Determinations Made At Application,197.0,Does Not Include All CHIP Determinations Made At Application,5771.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,652537.0,,1048276.0,,952446.0,,95830.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,202006,N,U,Y,17768.0,,0.0,,17768.0,,5574.0,Does Not Include All Medicaid Determinations Made At Application,197.0,Does Not Include All CHIP Determinations Made At Application,5771.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,661209.0,,1065947.0,,968954.0,,96993.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,202007,N,P,N,18987.0,,0.0,,18987.0,,5953.0,Does Not Include All Medicaid Determinations Made At Application,259.0,Does Not Include All CHIP Determinations Made At Application,6212.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,659001.0,,1061957.0,,965018.0,,96939.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,202007,N,U,Y,18987.0,,0.0,,18987.0,,5953.0,Does Not Include All Medicaid Determinations Made At Application,259.0,Does Not Include All CHIP Determinations Made At Application,6212.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,666508.0,,1077781.0,,979984.0,,97797.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,202008,N,P,N,17611.0,,0.0,,17611.0,,5634.0,Does Not Include All Medicaid Determinations Made At Application,235.0,Does Not Include All CHIP Determinations Made At Application,5869.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,664631.0,,1074041.0,,976290.0,,97751.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,202008,N,U,Y,17611.0,,0.0,,17611.0,,5634.0,Does Not Include All Medicaid Determinations Made At Application,235.0,Does Not Include All CHIP Determinations Made At Application,5869.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,671628.0,,1089141.0,,990569.0,,98572.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,202009,N,P,N,19074.0,,0.0,,19074.0,,5705.0,Does Not Include All Medicaid Determinations Made At Application,184.0,Does Not Include All CHIP Determinations Made At Application,5889.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,670301.0,,1085401.0,,987085.0,,98316.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,202009,N,U,Y,19074.0,,0.0,,19074.0,,5705.0,Does Not Include All Medicaid Determinations Made At Application,184.0,Does Not Include All CHIP Determinations Made At Application,5889.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,676289.0,,1098884.0,,999875.0,,99009.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,202010,N,P,N,19689.0,,0.0,,19689.0,,6022.0,Does Not Include All Medicaid Determinations Made At Application,241.0,Does Not Include All CHIP Determinations Made At Application,6263.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,675071.0,,1096109.0,,997026.0,,99083.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,202010,N,U,Y,19689.0,,0.0,,19689.0,,6022.0,Does Not Include All Medicaid Determinations Made At Application,241.0,Does Not Include All CHIP Determinations Made At Application,6263.0,Does Not Include All Medicaid Determinations Made At Application; Does Not Include All CHIP Determinations Made At Application,680340.0,,1108363.0,,1008688.0,,99675.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,202011,N,P,N,16997.0,,0.0,,16997.0,,5738.0,,310.0,,6048.0,,678995.0,,1105625.0,,1005524.0,,100101.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,202011,N,U,Y,16997.0,,0.0,,16997.0,,5738.0,,310.0,,6048.0,,684693.0,,1117794.0,,1017085.0,,100709.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,202012,N,P,N,16104.0,,0.0,,16104.0,,6929.0,,361.0,,7290.0,,683236.0,,1115705.0,,1014302.0,,101403.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,202012,N,U,Y,16104.0,,0.0,,16104.0,,6929.0,,361.0,,7290.0,,689462.0,,1129165.0,,1027029.0,,102136.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,202101,N,P,N,16323.0,,0.0,,16323.0,,5841.0,,267.0,,6108.0,,687651.0,,1126621.0,,1023403.0,,103218.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,202101,N,U,Y,16323.0,,0.0,,16323.0,,5841.0,,267.0,,6108.0,,693033.0,,1138380.0,,1034698.0,,103682.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,202102,N,P,N,15492.0,,0.0,,15492.0,,4413.0,,207.0,,4620.0,,692098.0,,1135458.0,,1031806.0,,103652.0,,,,1713.0,,5701.0,,1604.0,,563.0,,566.0,,,,,,, +SC,South Carolina,202102,N,U,Y,15492.0,,0.0,,15492.0,,4413.0,,207.0,,4620.0,,696106.0,,1145600.0,,1041579.0,,104021.0,,,,1713.0,,5701.0,,1604.0,,563.0,,566.0,,,,,,, +SC,South Carolina,202103,N,P,N,17279.0,,0.0,,17279.0,,4788.0,,222.0,,5010.0,,695686.0,,1144657.0,,1040635.0,,104022.0,,,,1707.0,,6329.0,,1637.0,,716.0,,535.0,,,,,,, +SC,South Carolina,202103,N,U,Y,17279.0,,0.0,,17279.0,,4788.0,,222.0,,5010.0,,699175.0,,1153769.0,,1049439.0,,104330.0,,,,1707.0,,6329.0,,1637.0,,716.0,,535.0,,,,,,, +SC,South Carolina,202104,N,P,N,16111.0,,0.0,,16111.0,,4219.0,,187.0,,4406.0,,698714.0,,1152590.0,,1048129.0,,104461.0,,,,1600.0,,5715.0,,1632.0,,695.0,,457.0,,,,,,, +SC,South Carolina,202104,N,U,Y,16111.0,,0.0,,16111.0,,4219.0,,187.0,,4406.0,,702224.0,,1161382.0,,1056563.0,,104819.0,,,,1600.0,,5715.0,,1632.0,,695.0,,457.0,,,,,,, +SC,South Carolina,202105,N,P,N,14924.0,,0.0,,14924.0,,4742.0,,258.0,,5000.0,,701706.0,,1159844.0,,1054989.0,,104855.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,202105,N,U,Y,14924.0,,0.0,,14924.0,,4742.0,,258.0,,5000.0,,705248.0,Includes Retroactive Enrollments,1168642.0,Includes Retroactive Enrollments,1063509.0,Includes Retroactive Enrollments,105133.0,Includes Retroactive Enrollments,,,,,,,,,,,,,,,,,, +SC,South Carolina,202106,N,P,N,15589.0,,0.0,,15589.0,,3949.0,,236.0,,4185.0,,704972.0,,1167790.0,,1062384.0,,105406.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,202106,N,U,Y,15589.0,,0.0,,15589.0,,3949.0,,236.0,,4185.0,,708511.0,Includes Retroactive Enrollments,1176742.0,Includes Retroactive Enrollments,1071049.0,Includes Retroactive Enrollments,105693.0,Includes Retroactive Enrollments,,,,,,,,,,,,,,,,,, +SC,South Carolina,202107,N,P,N,15322.0,,0.0,,15322.0,,3760.0,,220.0,,3980.0,,707996.0,,1175383.0,,1069605.0,,105778.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,202107,N,U,Y,15322.0,,0.0,,15322.0,,3760.0,,220.0,,3980.0,,712368.0,Includes Retroactive Enrollments,1185531.0,Includes Retroactive Enrollments,1079414.0,Includes Retroactive Enrollments,106117.0,Includes Retroactive Enrollments,,,,,,,,,,,,,,,,,, +SC,South Carolina,202108,N,P,N,15732.0,,0.0,,15732.0,,4822.0,,297.0,,5119.0,,711793.0,,1183653.0,,1077347.0,,106306.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,202108,N,U,Y,15732.0,,0.0,,15732.0,,4822.0,,297.0,,5119.0,,716022.0,Includes Retroactive Enrollments,1193136.0,Includes Retroactive Enrollments,1086448.0,Includes Retroactive Enrollments,106688.0,Includes Retroactive Enrollments,,,,,,,,,,,,,,,,,, +SC,South Carolina,202109,N,P,N,14320.0,,0.0,,14320.0,,4373.0,,222.0,,4595.0,,714873.0,,1190855.0,,1084269.0,,106586.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,202109,N,U,Y,14320.0,,0.0,,14320.0,,4373.0,,222.0,,4595.0,,718768.0,Includes Retroactive Enrollments,1199622.0,Includes Retroactive Enrollments,1092717.0,Includes Retroactive Enrollments,106905.0,Includes Retroactive Enrollments,,,,,,,,,,,,,,,,,, +SC,South Carolina,202110,N,P,N,15705.0,,0.0,,15705.0,,4516.0,,191.0,,4707.0,,715812.0,,1195011.0,,1088232.0,,106779.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,202110,N,U,Y,15705.0,,0.0,,15705.0,,4516.0,,191.0,,4707.0,,719367.0,Includes Retroactive Enrollments,1202963.0,Includes Retroactive Enrollments,1095879.0,Includes Retroactive Enrollments,107084.0,Includes Retroactive Enrollments,,,,,,,,,,,,,,,,,, +SC,South Carolina,202111,N,P,N,14475.0,,0.0,,14475.0,,4514.0,,287.0,,4801.0,,718393.0,,1200738.0,,1093478.0,,107260.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,202111,N,U,Y,14475.0,,0.0,,14475.0,,4514.0,,287.0,,4801.0,,722632.0,Includes Retroactive Enrollments,1209888.0,Includes Retroactive Enrollments,1102133.0,Includes Retroactive Enrollments,107755.0,Includes Retroactive Enrollments,,,,,,,,,,,,,,,,,, +SC,South Carolina,202112,N,P,N,13533.0,,0.0,,13533.0,,4435.0,,252.0,,4687.0,,720633.0,,1207097.0,,1099502.0,,107595.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,202112,N,U,Y,13533.0,,0.0,,13533.0,,4435.0,,252.0,,4687.0,,725926.0,,1218518.0,,1110068.0,,108450.0,,,,,,,,,,,,,,,,,,, +SC,South Carolina,202201,N,P,N,13481.0,,0.0,,13481.0,,3865.0,,263.0,,4128.0,,723457.0,,1213898.0,,1105693.0,,108205.0,,,,1098.0,,2963.0,,2419.0,,803.0,,1604.0,,,,,,, +SC,South Carolina,202201,N,U,Y,13481.0,,0.0,,13481.0,,3865.0,,263.0,,4128.0,,728597.0,Includes Retroactive Enrollments,1225832.0,Includes Retroactive Enrollments,1116763.0,Includes Retroactive Enrollments,109069.0,Includes Retroactive Enrollments,,,1098.0,,2963.0,,2419.0,,803.0,,1604.0,,,,,,, +SC,South Carolina,202202,N,P,N,14579.0,,0.0,,14579.0,,3887.0,,220.0,,4107.0,,725657.0,,1220483.0,,1111991.0,,108492.0,,,,1149.0,,2819.0,,1298.0,,1007.0,,2250.0,,,,,,, +SC,South Carolina,202202,N,U,Y,14579.0,,0.0,,14579.0,,3887.0,,220.0,,4107.0,,730984.0,Includes Retroactive Enrollments,1232725.0,Includes Retroactive Enrollments,1123437.0,Includes Retroactive Enrollments,109288.0,Includes Retroactive Enrollments,,,1149.0,,2819.0,,1298.0,,1007.0,,2250.0,,,,,,, +SC,South Carolina,202203,N,P,N,16206.0,,0.0,,16206.0,,5151.0,,317.0,,5468.0,,729620.0,,1230315.0,,1121526.0,,108789.0,,,,1512.0,,3698.0,,2389.0,,2066.0,,3541.0,,,,,,, +SC,South Carolina,202203,N,U,Y,16206.0,,0.0,,16206.0,,5151.0,,317.0,,5468.0,,733873.0,Includes Retroactive Enrollments,1240891.0,Includes Retroactive Enrollments,1131545.0,Includes Retroactive Enrollments,109346.0,Includes Retroactive Enrollments,,,1512.0,,3698.0,,2389.0,,2066.0,,3541.0,,,,,,, +SC,South Carolina,202204,N,P,N,13425.0,,0.0,,13425.0,,4777.0,,278.0,,5055.0,,732150.0,,1238201.0,,1129210.0,,108991.0,,,,1637.0,,4418.0,,1884.0,,1476.0,,4181.0,,,,,,, +SC,South Carolina,202204,N,U,Y,13425.0,,0.0,,13425.0,,4777.0,,278.0,,5055.0,,736275.0,Includes Retroactive Enrollments,1248007.0,Includes Retroactive Enrollments,1138584.0,Includes Retroactive Enrollments,109423.0,Includes Retroactive Enrollments,,,1637.0,,4418.0,,1881.0,,1471.0,,4177.0,,,,,,, +SC,South Carolina,202205,N,P,N,13131.0,,0.0,,13131.0,,3947.0,,206.0,,4153.0,,733973.0,,1244839.0,,1135589.0,,109250.0,,,,1499.0,,4549.0,,2543.0,,408.0,,992.0,,,,,,, +SC,South Carolina,202205,N,U,Y,13131.0,,0.0,,13131.0,,3947.0,,206.0,,4153.0,,737709.0,Includes Retroactive Enrollments,1253906.0,Includes Retroactive Enrollments,1144294.0,Includes Retroactive Enrollments,109612.0,Includes Retroactive Enrollments,,,1499.0,,4549.0,,2543.0,,408.0,,992.0,,,,,,, +SC,South Carolina,202206,N,P,N,14350.0,,0.0,,14350.0,,4607.0,,242.0,,4849.0,,736267.0,,1252640.0,,1143200.0,,109440.0,,,,1643.0,,4794.0,,2440.0,,530.0,,667.0,,,,,,, +SC,South Carolina,202206,N,U,Y,14350.0,,0.0,,14350.0,,4607.0,,242.0,,4849.0,,740122.0,Includes Retroactive Enrollments,1261689.0,Includes Retroactive Enrollments,1151903.0,Includes Retroactive Enrollments,109786.0,Includes Retroactive Enrollments,,,1643.0,,4794.0,,2440.0,,530.0,,667.0,,,,,,, +SC,South Carolina,202207,N,P,N,13701.0,,0.0,,13701.0,,4245.0,,236.0,,4481.0,,738777.0,,1259803.0,,1150211.0,,109592.0,,,,1392.0,,4651.0,,2916.0,,345.0,,452.0,,,,,,, +SC,South Carolina,202207,N,U,Y,13701.0,,0.0,,13701.0,,4245.0,,236.0,,4481.0,,742934.0,,1269341.0,,1159359.0,,109982.0,,,,1392.0,,4651.0,,2916.0,,345.0,,452.0,,,,,,, +SC,South Carolina,202208,N,P,N,12633.0,,0.0,,12633.0,,5144.0,,287.0,,5431.0,,742705.0,,1269307.0,,1159419.0,,109888.0,,,,1847.0,,6315.0,,2715.0,,484.0,,380.0,,,,,,, +SC,South Carolina,202208,N,U,Y,12633.0,,0.0,,12633.0,,5144.0,,287.0,,5431.0,,746630.0,,1278116.0,,1167870.0,,110246.0,,,,1847.0,,6315.0,,2715.0,,484.0,,380.0,,,,,,, +SC,South Carolina,202209,N,P,N,10813.0,,0.0,,10813.0,,4663.0,,238.0,,4901.0,,745128.0,,1276875.0,,1166729.0,,110146.0,,,,1023.0,,3024.0,,1477.0,,227.0,,201.0,,,,,,, +SC,South Carolina,202209,N,U,Y,10813.0,,0.0,,10813.0,,4663.0,,238.0,,4901.0,,748813.0,Includes Retroactive Enrollments,1284639.0,Includes Retroactive Enrollments,1174172.0,Includes Retroactive Enrollments,110467.0,Includes Retroactive Enrollments,,,1023.0,,3024.0,,1477.0,,227.0,,201.0,,,,,,, +SC,South Carolina,202210,N,P,N,10654.0,,0.0,,10654.0,,4235.0,,209.0,,4444.0,,747490.0,,1284231.0,,1173680.0,,110551.0,,,,1058.0,,2869.0,,1779.0,,238.0,,235.0,,,,,,, +SC,South Carolina,202210,N,U,Y,10654.0,,0.0,,10654.0,,4235.0,,209.0,,4444.0,,750785.0,,1291536.0,,1180703.0,,110833.0,,,,1058.0,,2869.0,,1779.0,,238.0,,235.0,,,,,,, +SC,South Carolina,202211,N,P,N,10429.0,,0.0,,10429.0,,4763.0,,373.0,,5136.0,,749677.0,,1290923.0,,1179802.0,,111121.0,,,,881.0,,3181.0,,3527.0,,224.0,,190.0,,,,,,, +SC,South Carolina,202211,N,U,Y,10429.0,,0.0,,10429.0,,4763.0,,373.0,,5136.0,,753673.0,Includes Retroactive Enrollments,1301629.0,Includes Retroactive Enrollments,1189989.0,Includes Retroactive Enrollments,111640.0,Includes Retroactive Enrollments,,,881.0,,3181.0,,3527.0,,224.0,,190.0,,,,,,, +SC,South Carolina,202212,N,P,N,9706.0,,0.0,,9706.0,,4486.0,,268.0,,4754.0,,751558.0,,1296844.0,,1185468.0,,111376.0,,,,774.0,,2961.0,,4684.0,,913.0,,296.0,,,,,,, +SC,South Carolina,202212,N,U,Y,9706.0,,0.0,,9706.0,,4486.0,,268.0,,4754.0,,757011.0,,1310679.0,,1198604.0,,112075.0,,,,774.0,,2961.0,,4684.0,,913.0,,296.0,,,,,,, +SC,South Carolina,202301,N,P,N,11845.0,,0.0,,11845.0,,4674.0,,264.0,,4938.0,,754901.0,,1296647.0,,1184901.0,,111746.0,,,,813.0,,2775.0,,3511.0,,1078.0,,1673.0,,,,,,, +SC,South Carolina,202301,N,U,Y,11845.0,,0.0,,11845.0,,4674.0,,264.0,,4938.0,,759745.0,,1310180.0,,1197790.0,,112390.0,,,,813.0,,2775.0,,3511.0,,1078.0,,1673.0,,,,,,, +SC,South Carolina,202302,N,P,N,10891.0,,0.0,,10891.0,,4302.0,,274.0,,4576.0,,757060.0,,1305213.0,,1193087.0,,112126.0,,,,936.0,,2002.0,,2323.0,,1164.0,,1528.0,,,,,,, +SC,South Carolina,202302,N,U,Y,10891.0,,0.0,,10891.0,,4302.0,,274.0,,4576.0,,761352.0,,1316085.0,,1203614.0,,112471.0,,,,936.0,,2002.0,,2323.0,,1164.0,,1528.0,,,,,,, +SC,South Carolina,202303,N,P,N,13741.0,,0.0,,13741.0,,4389.0,,195.0,,4584.0,,759939.0,,1313651.0,,1201865.0,,111786.0,,,,979.0,,2677.0,,2983.0,,393.0,,637.0,,100957.0,Does not include all calls received after business hours,5.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.118,Callbacks are included; Does not include all calls received after business hours; Includes only calls transferred to a live agent +SC,South Carolina,202303,N,U,Y,13741.0,,0.0,,13741.0,,4389.0,,195.0,,4584.0,,763438.0,Includes Retroactive Enrollments,1323486.0,Includes Retroactive Enrollments,1211431.0,Includes Retroactive Enrollments,112055.0,Includes Retroactive Enrollments,,,979.0,,2677.0,,2983.0,,393.0,,637.0,,100957.0,Does not include all calls received after business hours,5.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.118,Callbacks are included; Does not include all calls received after business hours; Includes only calls transferred to a live agent +SC,South Carolina,202304,N,P,N,10157.0,,0.0,,10157.0,,3754.0,,155.0,,3909.0,,761111.0,,1318655.0,,1207490.0,,111165.0,,,,797.0,,2599.0,,1366.0,,330.0,,393.0,,110386.0,Does not include all calls received after business hours,7.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.192,Callbacks are included; Does not include all calls received after business hours; Includes only calls transferred to a live agent +SC,South Carolina,202304,N,U,Y,10157.0,,0.0,,10157.0,,3754.0,,155.0,,3909.0,,764620.0,Includes Retroactive Enrollments,1328045.0,Includes Retroactive Enrollments,1216687.0,Includes Retroactive Enrollments,111358.0,Includes Retroactive Enrollments,,,797.0,,2599.0,,1366.0,,330.0,,393.0,,110386.0,Does not include all calls received after business hours,7.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.192,Callbacks are included; Does not include all calls received after business hours; Includes only calls transferred to a live agent +SC,South Carolina,202305,N,P,N,12523.0,,0.0,,12523.0,,3624.0,,116.0,,3740.0,,762553.0,,1323883.0,,1212866.0,,111017.0,,,,949.0,,2811.0,,1036.0,,200.0,,201.0,,196839.0,Does not include all calls received after business hours,14.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.311,Callbacks are included; Does not include all calls received after business hours; Includes only calls transferred to a live agent +SC,South Carolina,202305,N,U,Y,12523.0,,0.0,,12523.0,,3624.0,,116.0,,3740.0,,766990.0,Includes Retroactive Enrollments,1334277.0,Includes Retroactive Enrollments,1222915.0,Includes Retroactive Enrollments,111362.0,Includes Retroactive Enrollments,,,949.0,,2811.0,,1036.0,,200.0,,201.0,,196839.0,Does not include all calls received after business hours,14.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.311,Callbacks are included; Does not include all calls received after business hours; Includes only calls transferred to a live agent +SC,South Carolina,202306,N,P,N,15815.0,,0.0,,15815.0,,2984.0,,97.0,,3081.0,,722752.0,,1231532.0,,1135868.0,,95664.0,,,,1023.0,,2177.0,,1061.0,,151.0,,368.0,,187619.0,Does not include all calls received after business hours,10.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.224,Callbacks are included; Does not include all calls received after business hours; Includes only calls transferred to a live agent +SC,South Carolina,202306,N,U,Y,15815.0,,0.0,,15815.0,,2984.0,,97.0,,3081.0,,740710.0,Includes Retroactive Enrollments,1262925.0,Includes Retroactive Enrollments,1165030.0,Includes Retroactive Enrollments,97895.0,Includes Retroactive Enrollments,,,1023.0,,2177.0,,1061.0,,151.0,,368.0,,187619.0,Does not include all calls received after business hours,10.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.224,Callbacks are included; Does not include all calls received after business hours; Includes only calls transferred to a live agent +SC,South Carolina,202307,N,P,N,16689.0,,0.0,,16689.0,,3476.0,,135.0,,3611.0,,732178.0,,1243371.0,,1146716.0,,96655.0,,,,1101.0,,2126.0,,2983.0,,1226.0,,3026.0,,121990.0,Does not include all calls received after business hours,3.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.08,Callbacks are included; Does not include all calls received after business hours; Includes only calls transferred to a live agent +SC,South Carolina,202307,N,U,Y,16689.0,,0.0,,16689.0,,3476.0,,135.0,,3611.0,,742235.0,,1264991.0,,1166656.0,,98335.0,,,,1101.0,,2126.0,,2983.0,,1226.0,,3026.0,,121990.0,Does not include all calls received after business hours,3.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.08,Callbacks are included; Does not include all calls received after business hours; Includes only calls transferred to a live agent +SC,South Carolina,202308,N,P,N,20305.0,,0.0,,20305.0,,3465.0,,133.0,,3598.0,,733683.0,,1243976.0,,1146668.0,,97308.0,,,,1318.0,,2754.0,,3348.0,,347.0,,1971.0,,122943.0,Does not include all calls received after business hours,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.039,Callbacks are included; Does not include all calls received after business hours; Includes only calls transferred to a live agent +SC,South Carolina,202308,N,U,Y,20305.0,,0.0,,20305.0,,3465.0,,133.0,,3598.0,,742684.0,Includes Retroactive Enrollments,1263559.0,Includes Retroactive Enrollments,1164885.0,Includes Retroactive Enrollments,98674.0,Includes Retroactive Enrollments,,,1318.0,,2754.0,,3348.0,,347.0,,1971.0,,122943.0,Does not include all calls received after business hours,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.039,Callbacks are included; Does not include all calls received after business hours; Includes only calls transferred to a live agent +SC,South Carolina,202309,N,P,N,15641.0,,0.0,,15641.0,,4113.0,,214.0,,4327.0,,737123.0,,1248912.0,,1149492.0,,99420.0,,,,991.0,,3011.0,,2879.0,,1087.0,,4016.0,,120087.0,Does not include all calls received after business hours,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.051,Callbacks are included; Does not include all calls received after business hours; Includes only calls transferred to a live agent +SC,South Carolina,202309,N,U,Y,15641.0,,0.0,,15641.0,,4113.0,,214.0,,4327.0,,744747.0,,1265187.0,,1164659.0,,100528.0,,,,991.0,,3011.0,,2879.0,,1087.0,,4016.0,,120087.0,Does not include all calls received after business hours,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.051,Callbacks are included; Does not include all calls received after business hours; Includes only calls transferred to a live agent +SC,South Carolina,202310,N,P,N,18235.0,,0.0,,18235.0,,4797.0,,270.0,,5067.0,,728963.0,,1227642.0,,1129438.0,,98204.0,,,,1295.0,,4266.0,,2616.0,,423.0,,739.0,,141553.0,Does not include all calls received after business hours,2.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.057,Callbacks are included; Does not include all calls received after business hours; Includes only calls transferred to a live agent +SC,South Carolina,202310,N,U,Y,18235.0,,0.0,,18235.0,,4797.0,,270.0,,5067.0,,736750.0,Includes Retroactive Enrollments,1244479.0,Includes Retroactive Enrollments,1145095.0,Includes Retroactive Enrollments,99384.0,Includes Retroactive Enrollments,,,1295.0,,4266.0,,2616.0,,423.0,,739.0,,141553.0,Does not include all calls received after business hours,2.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.057,Callbacks are included; Does not include all calls received after business hours; Includes only calls transferred to a live agent +SC,South Carolina,202311,N,P,N,22643.0,,0.0,,22643.0,,6328.0,,451.0,,6779.0,,702197.0,,1186294.0,,1088607.0,,97687.0,,,,914.0,,6936.0,,5664.0,,147.0,,244.0,,141460.0,Does not include all calls received after business hours,4.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.082,Callbacks are included; Does not include all calls received after business hours; Includes only calls transferred to a live agent +SC,South Carolina,202311,N,U,Y,22643.0,,0.0,,22643.0,,6328.0,,451.0,,6779.0,,716550.0,Includes Retroactive Enrollments,1213125.0,Includes Retroactive Enrollments,1113680.0,Includes Retroactive Enrollments,99445.0,Includes Retroactive Enrollments,,,914.0,,6936.0,,5664.0,,147.0,,244.0,,141460.0,Does not include all calls received after business hours,4.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.082,Callbacks are included; Does not include all calls received after business hours; Includes only calls transferred to a live agent +SC,South Carolina,202312,N,P,N,17401.0,,0.0,,17401.0,,5174.0,,344.0,,5518.0,,701527.0,,1182021.0,,1082107.0,,99914.0,,,,874.0,,5670.0,,7077.0,,532.0,,400.0,,115277.0,Does not include all calls received after business hours,2.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.037,Callbacks are included; Does not include all calls received after business hours; Includes only calls transferred to a live agent +SC,South Carolina,202312,N,U,Y,17401.0,,0.0,,17401.0,,5174.0,,344.0,,5518.0,,715884.0,,1209326.0,,1107511.0,,101815.0,,,,874.0,,5670.0,,7077.0,,532.0,,400.0,,115277.0,Does not include all calls received after business hours,2.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.037,Callbacks are included; Does not include all calls received after business hours; Includes only calls transferred to a live agent +SC,South Carolina,202401,N,P,N,22126.0,,0.0,,22126.0,,5877.0,,370.0,,6247.0,,697432.0,,1173572.0,,1073593.0,,99979.0,,,,909.0,,2650.0,,11421.0,,902.0,,1078.0,,165518.0,Does not include all calls received after business hours,4.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.027,Callbacks are included; Does not include all calls received after business hours; Includes only calls transferred to a live agent +SC,South Carolina,202401,N,U,Y,22126.0,,0.0,,22126.0,,5877.0,,370.0,,6247.0,,711568.0,,1204898.0,,1102671.0,,102227.0,,,,909.0,,2650.0,,11421.0,,902.0,,1078.0,,165518.0,Does not include all calls received after business hours,4.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.027,Callbacks are included; Does not include all calls received after business hours; Includes only calls transferred to a live agent +SC,South Carolina,202402,N,P,N,28577.0,,0.0,,28577.0,,5002.0,,261.0,,5263.0,,690568.0,,1158279.0,,1059031.0,,99248.0,,,,958.0,,4616.0,,5384.0,,855.0,,959.0,,155906.0,Does not include all calls received after business hours,4.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.071,Callbacks are included; Does not include all calls received after business hours; Includes only calls transferred to a live agent +SC,South Carolina,202402,N,U,Y,28577.0,,0.0,,28577.0,,5002.0,,261.0,,5263.0,,704719.0,Includes Retroactive Enrollments,1190289.0,Includes Retroactive Enrollments,1088865.0,Includes Retroactive Enrollments,101424.0,Includes Retroactive Enrollments,,,958.0,,4616.0,,5384.0,,855.0,,959.0,,155906.0,Does not include all calls received after business hours,4.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.071,Callbacks are included; Does not include all calls received after business hours; Includes only calls transferred to a live agent +SC,South Carolina,202403,N,P,N,20602.0,,0.0,,20602.0,,4300.0,,190.0,,4490.0,,682739.0,,1144304.0,,1045609.0,,98695.0,,,,1289.0,,6911.0,,3000.0,,310.0,,692.0,,161525.0,Does not include all calls received after business hours,2.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.043,Callbacks are included; Does not include all calls received after business hours; Includes only calls transferred to a live agent +SC,South Carolina,202403,N,U,Y,20602.0,,0.0,,20602.0,,4300.0,,190.0,,4490.0,,697573.0,Includes Retroactive Enrollments,1178276.0,Includes Retroactive Enrollments,1077481.0,Includes Retroactive Enrollments,100795.0,Includes Retroactive Enrollments,,,1289.0,,6911.0,,3000.0,,310.0,,692.0,,161525.0,Does not include all calls received after business hours,2.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.043,Callbacks are included; Does not include all calls received after business hours; Includes only calls transferred to a live agent +SC,South Carolina,202404,N,P,N,22748.0,,0.0,,22748.0,,4361.0,,207.0,,4568.0,,679408.0,,1141154.0,,1042508.0,,98646.0,,,,1809.0,,7291.0,,3344.0,,301.0,,608.0,,192770.0,Does not include all calls received after business hours,4.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.075,Callbacks are included; Does not include all calls received after business hours; Includes only calls transferred to a live agent +SC,South Carolina,202404,N,U,Y,22748.0,,0.0,,22748.0,,4361.0,,207.0,,4568.0,,692430.0,,1167844.0,,1068048.0,,99796.0,,,,1809.0,,7291.0,,3344.0,,301.0,,608.0,,192770.0,Does not include all calls received after business hours,4.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.075,Callbacks are included; Does not include all calls received after business hours; Includes only calls transferred to a live agent +SC,South Carolina,202405,N,P,N,25634.0,,0.0,,25634.0,,4326.0,,220.0,,4546.0,,666210.0,,1115174.0,,1019524.0,,95650.0,,,,2377.0,,8171.0,,3877.0,,344.0,,456.0,,226758.0,Does not include all calls received after business hours,8.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.141,Callbacks are included; Does not include all calls received after business hours; Includes only calls transferred to a live agent +SC,South Carolina,202405,N,U,Y,25634.0,,0.0,,25634.0,,4326.0,,220.0,,4546.0,,681239.0,,1143670.0,,1046543.0,,97127.0,,,,2377.0,,8171.0,,3877.0,,344.0,,456.0,,226758.0,Does not include all calls received after business hours,8.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.141,Callbacks are included; Does not include all calls received after business hours; Includes only calls transferred to a live agent +SC,South Carolina,202406,N,P,N,24622.0,,0.0,,24622.0,,4154.0,,249.0,,4403.0,,652947.0,,1086586.0,,992198.0,,94388.0,,,,2091.0,,6894.0,,4021.0,,400.0,,518.0,,169812.0,Does not include all calls received after business hours,4.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.089,Callbacks are included; Does not include all calls received after business hours; Includes only calls transferred to a live agent +SC,South Carolina,202406,N,U,Y,24622.0,,0.0,,24622.0,,4154.0,,249.0,,4403.0,,669515.0,,1117476.0,,1021062.0,,96414.0,,,,2091.0,,6894.0,,4021.0,,400.0,,518.0,,169812.0,Does not include all calls received after business hours,4.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.089,Callbacks are included; Does not include all calls received after business hours; Includes only calls transferred to a live agent +SC,South Carolina,202407,N,P,N,24571.0,,0.0,,24571.0,,4693.0,,268.0,,4961.0,,637625.0,,1053713.0,,961774.0,,91939.0,,416088.0,,1981.0,,6965.0,,4989.0,,356.0,,501.0,,171402.0,Does not include all calls received after business hours,3.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.062,Callbacks are included; Does not include all calls received after business hours; Includes only calls transferred to a live agent +SC,South Carolina,202407,N,U,Y,24571.0,,0.0,,24571.0,,4693.0,,268.0,,4961.0,,655739.0,Includes Retroactive Enrollments,1087398.0,Includes Retroactive Enrollments,992635.0,Includes Retroactive Enrollments,94763.0,Includes Retroactive Enrollments,431659.0,,1981.0,,6965.0,,4989.0,,356.0,,501.0,,171402.0,Does not include all calls received after business hours,3.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.062,Callbacks are included; Does not include all calls received after business hours; Includes only calls transferred to a live agent +SC,South Carolina,202408,N,P,N,24899.0,,0.0,,24899.0,,4510.0,,264.0,,4774.0,,630320.0,,1035647.0,,944066.0,,91581.0,,405327.0,,2529.0,,6838.0,,4782.0,,364.0,,625.0,,158355.0,Does not include all calls received after business hours,2.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.049,Callbacks are included; Does not include all calls received after business hours; Includes only calls transferred to a live agent +SC,South Carolina,202408,N,U,Y,24899.0,,0.0,,24899.0,,4510.0,,264.0,,4774.0,,647766.0,Includes Retroactive Enrollments,1068723.0,Includes Retroactive Enrollments,974297.0,Includes Retroactive Enrollments,94426.0,Includes Retroactive Enrollments,420957.0,,2529.0,,6838.0,,4782.0,,364.0,,625.0,,158355.0,Does not include all calls received after business hours,2.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.049,Callbacks are included; Does not include all calls received after business hours; Includes only calls transferred to a live agent +SC,South Carolina,202409,N,P,N,19252.0,,0.0,,19252.0,,4008.0,,245.0,,4253.0,,634787.0,,1038756.0,,944073.0,,94683.0,,403969.0,,1648.0,,5022.0,,4034.0,,294.0,,768.0,,132506.0,Does not include all calls received after business hours,2.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.055,Callbacks are included; Does not include all calls received after business hours; Includes only calls transferred to a live agent +SC,South Carolina,202409,N,U,Y,19252.0,,0.0,,19252.0,,4008.0,,245.0,,4253.0,,649245.0,Includes Retroactive Enrollments,1066584.0,Includes Retroactive Enrollments,969414.0,Includes Retroactive Enrollments,97170.0,Includes Retroactive Enrollments,417339.0,,1648.0,,5022.0,,4034.0,,294.0,,768.0,,132506.0,Does not include all calls received after business hours,2.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.055,Callbacks are included; Does not include all calls received after business hours; Includes only calls transferred to a live agent +SC,South Carolina,202410,N,P,N,20623.0,,0.0,,20623.0,,4601.0,,223.0,,4824.0,,635404.0,,1037498.0,,939876.0,,97622.0,,402094.0,,1628.0,,5570.0,,4248.0,,376.0,,998.0,,140606.0,Does not include all calls received after business hours,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.029,Callbacks are included; Does not include all calls received after business hours; Includes only calls transferred to a live agent +SC,South Carolina,202410,N,U,Y,20623.0,,0.0,,20623.0,,4601.0,,223.0,,4824.0,,648159.0,Includes Retroactive Enrollments,1062413.0,Includes Retroactive Enrollments,962600.0,Includes Retroactive Enrollments,99813.0,Includes Retroactive Enrollments,414254.0,,1628.0,,5570.0,,4248.0,,376.0,,998.0,,140606.0,Does not include all calls received after business hours,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.029,Callbacks are included; Does not include all calls received after business hours; Includes only calls transferred to a live agent +SC,South Carolina,202411,N,P,N,18387.0,,0.0,,18387.0,,5010.0,,426.0,,5436.0,,635133.0,,1036822.0,,936778.0,,100044.0,,401689.0,,1327.0,,8605.0,,4827.0,,238.0,,547.0,,123543.0,Does not include all calls received after business hours,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.019,Callbacks are included; Does not include all calls received after business hours; Includes only calls transferred to a live agent +SC,South Carolina,202411,N,U,Y,18387.0,,0.0,,18387.0,,5010.0,,426.0,,5436.0,,649651.0,Includes Retroactive Enrollments,1063774.0,Includes Retroactive Enrollments,961376.0,Includes Retroactive Enrollments,102398.0,Includes Retroactive Enrollments,414123.0,,1327.0,,8605.0,,4827.0,,238.0,,547.0,,123543.0,Does not include all calls received after business hours,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.019,Callbacks are included; Does not include all calls received after business hours; Includes only calls transferred to a live agent +SC,South Carolina,202412,N,P,N,16618.0,,0.0,,16618.0,,5649.0,,618.0,,6267.0,,633769.0,,1034836.0,,932515.0,,102321.0,,401067.0,,1337.0,,9471.0,,6728.0,,337.0,,675.0,,126964.0,Does not include all calls received after business hours,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.029,Callbacks are included; Does not include all calls received after business hours; Includes only calls transferred to a live agent +SC,South Carolina,202412,N,U,Y,16618.0,,0.0,,16618.0,,5649.0,,618.0,,6267.0,,649585.0,,1063506.0,,958795.0,,104711.0,,413921.0,,1337.0,,9471.0,,6728.0,,337.0,,675.0,,126964.0,Does not include all calls received after business hours,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.029,Callbacks are included; Does not include all calls received after business hours; Includes only calls transferred to a live agent +SC,South Carolina,202501,N,P,N,18944.0,,0.0,,18944.0,,5347.0,,445.0,,5792.0,,633868.0,,1034214.0,,929890.0,,104324.0,,400346.0,,1329.0,,7456.0,,6767.0,,435.0,,913.0,,186696.0,Does not include all calls received after business hours,6.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.241,Callbacks are included; Does not include all calls received after business hours; Includes only calls transferred to a live agent +SC,South Carolina,202501,N,U,Y,18944.0,,0.0,,18944.0,,5347.0,,445.0,,5792.0,,649050.0,,1063741.0,,957276.0,,106465.0,,414691.0,,1329.0,,7456.0,,6767.0,,435.0,,913.0,,186696.0,Does not include all calls received after business hours,6.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.241,Callbacks are included; Does not include all calls received after business hours; Includes only calls transferred to a live agent +SC,South Carolina,202502,N,P,N,16291.0,,0.0,,16291.0,,4068.0,,260.0,,4328.0,,635435.0,,1036771.0,,930550.0,,106221.0,,401336.0,,1224.0,,5111.0,,4096.0,,341.0,,1166.0,,126382.0,Does not include all calls received after business hours,2.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.038,Callbacks are included; Does not include all calls received after business hours; Includes only calls transferred to a live agent +SC,South Carolina,202502,N,U,Y,16291.0,,0.0,,16291.0,,4068.0,,260.0,,4328.0,,648212.0,,1063443.0,,955566.0,,107877.0,,415231.0,,1224.0,,5111.0,,4096.0,,341.0,,1166.0,,126382.0,Does not include all calls received after business hours,2.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.038,Callbacks are included; Does not include all calls received after business hours; Includes only calls transferred to a live agent +SC,South Carolina,202503,N,P,N,16845.0,,0.0,,16845.0,,4438.0,,229.0,,4667.0,,636653.0,,1036888.0,,929206.0,,107682.0,,400235.0,,1053.0,,5120.0,,3165.0,,223.0,,458.0,,126989.0,Does not include all calls received after business hours,2.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.034,Callbacks are included; Does not include all calls received after business hours; Includes only calls transferred to a live agent +SC,South Carolina,202503,N,U,Y,16845.0,,0.0,,16845.0,,4438.0,,229.0,,4667.0,,647256.0,,1060197.0,,951171.0,,109026.0,,412941.0,,1053.0,,5120.0,,3165.0,,223.0,,458.0,,126989.0,Does not include all calls received after business hours,2.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.034,Callbacks are included; Does not include all calls received after business hours; Includes only calls transferred to a live agent +SC,South Carolina,202504,N,P,N,17232.0,,0.0,,17232.0,,4332.0,,197.0,,4529.0,,637020.0,,1037023.0,,928443.0,,108580.0,,400003.0,,1216.0,,6856.0,,1853.0,,150.0,,273.0,,128560.0,Does not include all calls received after business hours,2.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.045,Callbacks are included; Does not include all calls received after business hours; Includes only calls transferred to a live agent +SC,South Carolina,202504,N,U,Y,17232.0,,0.0,,17232.0,,4332.0,,197.0,,4529.0,,646843.0,,1059225.0,,949739.0,,109486.0,,412382.0,,1216.0,,6856.0,,1853.0,,150.0,,273.0,,128560.0,Does not include all calls received after business hours,2.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.045,Callbacks are included; Does not include all calls received after business hours; Includes only calls transferred to a live agent +SC,South Carolina,202505,N,P,N,14904.0,,0.0,,14904.0,,3613.0,,196.0,,3809.0,,631299.0,,1020041.0,,911096.0,,108945.0,,388742.0,,976.0,,5556.0,,1946.0,,131.0,,179.0,,119619.0,Does not include all calls received after business hours; Did not report data because of technical reasons,2.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.038,Callbacks are included; Does not include all calls received after business hours; Includes only calls transferred to a live agent +SC,South Carolina,202505,N,U,Y,14904.0,,0.0,,14904.0,,3613.0,,196.0,,3809.0,,642051.0,,1044110.0,,934119.0,,109991.0,,402059.0,,976.0,,5556.0,,1946.0,,131.0,,179.0,,119619.0,Does not include all calls received after business hours,2.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.038,Callbacks are included; Does not include all calls received after business hours; Includes only calls transferred to a live agent +SC,South Carolina,202506,N,P,N,17025.0,,0.0,,17025.0,,4010.0,,184.0,,4194.0,,627437.0,,1013694.0,,905057.0,,108637.0,,386257.0,,1195.0,,5797.0,,2580.0,,134.0,,229.0,,116560.0,Does not include all calls received after business hours; Did not report data because of technical reasons,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.015,Callbacks are included; Does not include all calls received after business hours; Includes only calls transferred to a live agent +SC,South Carolina,202506,N,U,Y,17025.0,,0.0,,17025.0,,4010.0,,184.0,,4194.0,,638750.0,Includes Retroactive Enrollments,1037384.0,Includes Retroactive Enrollments,927687.0,Includes Retroactive Enrollments,109697.0,Includes Retroactive Enrollments,398634.0,Includes Retroactive Enrollments,1195.0,,5797.0,,2580.0,,134.0,,229.0,,116560.0,Does not include all calls received after business hours,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.015,Callbacks are included; Does not include all calls received after business hours; Includes only calls transferred to a live agent +SC,South Carolina,202507,N,P,N,16600.0,,0.0,,16600.0,,4199.0,,258.0,,4457.0,,626572.0,,1013106.0,,903817.0,,109289.0,,386534.0,,1044.0,,5386.0,,2281.0,,147.0,,193.0,,118620.0,Does not include all calls received after business hours; Did not report data because of technical reasons,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.016,Callbacks are included; Does not include all calls received after business hours; Includes only calls transferred to a live agent +SC,South Carolina,202507,N,U,Y,16600.0,,0.0,,16600.0,,4199.0,,258.0,,4457.0,,637389.0,Includes Retroactive Enrollments,1034953.0,Includes Retroactive Enrollments,924280.0,Includes Retroactive Enrollments,110673.0,Includes Retroactive Enrollments,397564.0,Includes Retroactive Enrollments,1044.0,,5386.0,,2281.0,,147.0,,193.0,,118620.0,Does not include all calls received after business hours,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.016,Callbacks are included; Does not include all calls received after business hours; Includes only calls transferred to a live agent +SC,South Carolina,202508,N,P,N,16258.0,,0.0,,16258.0,,3951.0,,253.0,,4204.0,,622716.0,,1008019.0,,898145.0,,109874.0,,385303.0,,903.0,,5467.0,,2821.0,,207.0,,241.0,,118061.0,Does not include all calls received after business hours,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.017,Callbacks are included; Does not include all calls received after business hours; Includes only calls transferred to a live agent +SC,South Carolina,202508,N,U,Y,16258.0,,0.0,,16258.0,,3951.0,,253.0,,4204.0,,633864.0,Includes Retroactive Enrollments,1029840.0,Includes Retroactive Enrollments,918535.0,Includes Retroactive Enrollments,111305.0,Includes Retroactive Enrollments,395976.0,Includes Retroactive Enrollments,903.0,,5467.0,,2821.0,,207.0,,241.0,,118061.0,Does not include all calls received after business hours,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.017,Callbacks are included; Does not include all calls received after business hours; Includes only calls transferred to a live agent +SC,South Carolina,202509,N,P,N,16204.0,,0.0,,16204.0,,4169.0,,208.0,,4377.0,,618200.0,,1000546.0,,890091.0,,110455.0,,382346.0,,893.0,,4479.0,,3196.0,,399.0,,218.0,,128908.0,Does not include all calls received after business hours,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.024,Callbacks are included; Does not include all calls received after business hours; Includes only calls transferred to a live agent +SC,South Carolina,202509,N,U,Y,16204.0,,0.0,,16204.0,,4169.0,,208.0,,4377.0,,618200.0,,1000546.0,,890091.0,,110455.0,,382346.0,,893.0,,4479.0,,3196.0,,399.0,,218.0,,128908.0,Does not include all calls received after business hours,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.024,Callbacks are included; Does not include all calls received after business hours; Includes only calls transferred to a live agent +SC,South Carolina,202510,N,P,N,15978.0,,0.0,,15978.0,,3978.0,,236.0,,4214.0,,614984.0,,994159.0,,883061.0,,111098.0,,379175.0,,823.0,,4791.0,,2751.0,,425.0,,258.0,,130771.0,Does not include all calls received after business hours,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.023,Callbacks are included; Does not include all calls received after business hours; Includes only calls transferred to a live agent +SD,South Dakota,201309,N,U,Y,,,,,,,,,,,,,,,115501.0,,,,,,,,,,,,,,,,,,,,,,, +SD,South Dakota,201706,N,P,N,2544.0,,0.0,,2544.0,,1669.0,,0.0,,1669.0,,81672.0,,113110.0,,97454.0,,15656.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,201706,N,U,Y,2544.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2544.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,1669.0,Includes CHIP; Includes Renewals and/or Redeterminations,0.0,,1669.0,Includes Renewals and/or Redeterminations,81672.0,,113110.0,,97454.0,,15656.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,201707,N,P,N,2528.0,,0.0,,2528.0,,1472.0,,0.0,,1472.0,,81141.0,,112529.0,,96871.0,,15658.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,201707,N,U,Y,2528.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2528.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,1472.0,Includes CHIP; Includes Renewals and/or Redeterminations,0.0,,1472.0,Includes Renewals and/or Redeterminations,81141.0,,112529.0,,96871.0,,15658.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,201708,N,P,N,2950.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2950.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,1818.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,1818.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",81505.0,,112964.0,,97248.0,,15716.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,201708,N,U,Y,2950.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2950.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,1818.0,Includes CHIP; Includes Renewals and/or Redeterminations,0.0,,1818.0,Includes Renewals and/or Redeterminations,81505.0,,112964.0,,97248.0,,15716.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,201709,N,P,N,2671.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2671.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,1597.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,1597.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",81175.0,,112653.0,,96780.0,,15873.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,201709,N,U,Y,2671.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2671.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,1597.0,Includes CHIP; Includes Renewals and/or Redeterminations,0.0,,1597.0,Includes Renewals and/or Redeterminations,81175.0,,112653.0,,96780.0,,15873.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,201710,N,P,N,2780.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2780.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,1759.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,1759.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",81142.0,,112665.0,,96539.0,,16126.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,201710,N,U,Y,2780.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2780.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,1759.0,Includes CHIP; Includes Renewals and/or Redeterminations,0.0,,1759.0,Includes Renewals and/or Redeterminations,81142.0,,112665.0,,96539.0,,16126.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,201711,N,P,N,3705.0,,0.0,,3705.0,,1585.0,,0.0,,1585.0,,80887.0,,112562.0,,96317.0,,16245.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,201711,N,U,Y,3705.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,3705.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,1585.0,Includes CHIP; Includes Renewals and/or Redeterminations,0.0,,1585.0,Includes Renewals and/or Redeterminations,80887.0,,112562.0,,96317.0,,16245.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,201712,N,P,N,3198.0,,0.0,,3198.0,,1467.0,,0.0,,1467.0,,80698.0,,112386.0,,95978.0,,16408.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,201712,N,U,Y,3198.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,3198.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,1467.0,Includes CHIP; Includes Renewals and/or Redeterminations,0.0,,1467.0,Includes Renewals and/or Redeterminations,80698.0,,112386.0,,95978.0,,16408.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,201801,N,P,N,2976.0,,0.0,,2976.0,,1680.0,,0.0,,1680.0,,80813.0,,112624.0,,96161.0,,16463.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,201801,N,U,Y,2976.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2976.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,1680.0,Includes CHIP; Includes Renewals and/or Redeterminations,0.0,,1680.0,Includes Renewals and/or Redeterminations,80813.0,,112624.0,,96161.0,,16463.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,201802,N,P,N,2215.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2215.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,1381.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,1381.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",81202.0,,112937.0,,96517.0,,16420.0,,,,0.0,Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly includes redeterminations,1023.0,Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly includes redeterminations,452.0,Incorrectly includes redeterminations,94.0,Incorrectly includes redeterminations,6.0,Incorrectly includes redeterminations,,,,,, +SD,South Dakota,201802,N,U,Y,2215.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2215.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,1381.0,Includes CHIP; Includes Renewals and/or Redeterminations,0.0,,1381.0,Includes Renewals and/or Redeterminations,81202.0,,112937.0,,96517.0,,16420.0,,,,0.0,Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly includes redeterminations,1023.0,Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly includes redeterminations,452.0,Incorrectly includes redeterminations,94.0,Incorrectly includes redeterminations,6.0,Incorrectly includes redeterminations,,,,,, +SD,South Dakota,201803,N,P,N,2429.0,,0.0,,2429.0,,1415.0,,0.0,,1415.0,,80882.0,,113043.0,,96826.0,,16217.0,,,,0.0,Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly includes redeterminations,1148.0,Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly includes redeterminations,446.0,Incorrectly includes redeterminations,94.0,Incorrectly includes redeterminations,3.0,Incorrectly includes redeterminations,,,,,, +SD,South Dakota,201803,N,U,Y,2429.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2429.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,1415.0,Includes CHIP; Includes Renewals and/or Redeterminations,0.0,,1415.0,Includes Renewals and/or Redeterminations,80882.0,,113043.0,,96826.0,,16217.0,,,,0.0,Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly includes redeterminations,1148.0,Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly includes redeterminations,446.0,Incorrectly includes redeterminations,94.0,Incorrectly includes redeterminations,3.0,Incorrectly includes redeterminations,,,,,, +SD,South Dakota,201804,N,P,N,2368.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2368.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,1399.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,1399.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",80641.0,,112852.0,,96708.0,,16144.0,,,,0.0,Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly includes redeterminations,1085.0,Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly includes redeterminations,414.0,Incorrectly includes redeterminations,94.0,Incorrectly includes redeterminations,4.0,Incorrectly includes redeterminations,,,,,, +SD,South Dakota,201804,N,U,Y,2368.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2368.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,1399.0,Includes CHIP; Includes Renewals and/or Redeterminations,0.0,,1399.0,Includes Renewals and/or Redeterminations,80641.0,,112852.0,,96708.0,,16144.0,,,,0.0,Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly includes redeterminations,1085.0,Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly includes redeterminations,414.0,Incorrectly includes redeterminations,94.0,Incorrectly includes redeterminations,4.0,Incorrectly includes redeterminations,,,,,, +SD,South Dakota,201805,N,P,N,2549.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2549.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,1572.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,1572.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",80712.0,,112994.0,,96928.0,,16066.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,201805,N,U,Y,2549.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2549.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,1572.0,Includes CHIP; Includes Renewals and/or Redeterminations,0.0,,1572.0,Includes Renewals and/or Redeterminations,80712.0,,112994.0,,96928.0,,16066.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,201806,N,P,N,2514.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2514.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,1496.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,1496.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",80109.0,,112319.0,,96419.0,,15900.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,201806,N,U,Y,2514.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2514.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,1496.0,Includes CHIP; Includes Renewals and/or Redeterminations,0.0,,1496.0,Includes Renewals and/or Redeterminations,80109.0,,112319.0,,96419.0,,15900.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,201807,N,P,N,2819.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2819.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,1636.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,1636.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",79883.0,,112018.0,,96187.0,,15831.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,201807,N,U,Y,2819.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2819.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,1636.0,Includes CHIP; Includes Renewals and/or Redeterminations,0.0,,1636.0,Includes Renewals and/or Redeterminations,79883.0,,112018.0,,96187.0,,15831.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,201808,N,P,N,2854.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2854.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,1737.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,1737.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",79845.0,,112015.0,,96144.0,,15871.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,201808,N,U,Y,2854.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2854.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,1737.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,1737.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",79845.0,,112015.0,,96144.0,,15871.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,201809,N,P,N,2369.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2369.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,1460.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,1460.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",79211.0,,111336.0,,95538.0,,15798.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,201809,N,U,Y,2369.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2369.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,1460.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,1460.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",79211.0,,111336.0,,95538.0,,15798.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,201810,N,P,N,2872.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2872.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,1733.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,1733.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",79095.0,,111179.0,,95212.0,,15967.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,201810,N,U,Y,2872.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2872.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,1733.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,1733.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",79095.0,,111179.0,,95212.0,,15967.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,201811,N,P,N,3407.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,3407.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,1520.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,1520.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",78844.0,,110803.0,,94863.0,,15940.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,201811,N,U,Y,3407.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,3407.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,1520.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,1520.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",78844.0,,110803.0,,94863.0,,15940.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,201812,N,P,N,2467.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2467.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,1445.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,1445.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",78791.0,,110749.0,,94829.0,,15920.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,201812,N,U,Y,2467.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2467.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,1445.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,1445.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",78791.0,,110749.0,,94829.0,,15920.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,201901,N,P,N,2801.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2801.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,1691.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,1691.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",79118.0,,111178.0,,95120.0,,16058.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,201901,N,U,Y,2801.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2801.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,1691.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,1691.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",79118.0,,111178.0,,95120.0,,16058.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,201902,N,P,N,2171.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2171.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,1226.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,1226.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",79184.0,,111231.0,,95205.0,,16026.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",936.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",383.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",107.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",3.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",,,,,, +SD,South Dakota,201902,N,U,Y,2171.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2171.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,1226.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,1226.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",79184.0,,111231.0,,95205.0,,16026.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",936.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",383.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",107.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",3.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",,,,,, +SD,South Dakota,201903,N,P,N,2397.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2397.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,1321.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,1321.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",78888.0,,110982.0,,95058.0,,15924.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",969.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",471.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",91.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",4.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",,,,,, +SD,South Dakota,201903,N,U,Y,2397.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2397.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,1321.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,1321.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",78888.0,,110982.0,,95058.0,,15924.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",969.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",471.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",91.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",4.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",,,,,, +SD,South Dakota,201904,N,P,N,2488.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2488.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,1396.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,1396.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",78822.0,,110889.0,,95114.0,,15775.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",1041.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",472.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",114.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",1.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",,,,,, +SD,South Dakota,201904,N,U,Y,2488.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2488.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,1396.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,1396.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",78822.0,,110889.0,,95114.0,,15775.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",1041.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",472.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",114.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",1.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",,,,,, +SD,South Dakota,201905,N,P,N,2657.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2657.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,1538.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,1538.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",78976.0,,111113.0,,95460.0,,15653.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,201905,N,U,Y,2657.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2657.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,1538.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,1538.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",78976.0,,111113.0,,95460.0,,15653.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,201906,N,P,N,2450.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2450.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,1381.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,1381.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",78520.0,,110442.0,,94830.0,,15612.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,201906,N,U,Y,2450.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2450.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,1381.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,1381.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",78520.0,,110442.0,,94830.0,,15612.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,201907,N,P,N,2847.0,,0.0,,2847.0,,1606.0,,0.0,,1606.0,,78414.0,,110329.0,,94776.0,,15553.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,201907,N,U,Y,2847.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2847.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,1606.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,1606.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",78414.0,,110329.0,,94776.0,,15553.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,201908,N,P,N,2874.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2874.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,1670.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,1670.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",78229.0,,110043.0,,94510.0,,15533.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,201908,N,U,Y,2874.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2874.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,1670.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,1670.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",78229.0,,110043.0,,94510.0,,15533.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,201909,N,P,N,2675.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2675.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,1570.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,1570.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",78066.0,,109764.0,,94162.0,,15602.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,201909,N,U,Y,2675.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2675.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,1570.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,1570.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",78066.0,,109764.0,,94162.0,,15602.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,201910,N,P,N,2856.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2856.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,1634.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,1634.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",78019.0,,109732.0,,93971.0,,15761.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,201910,N,U,Y,2856.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2856.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,1634.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,1634.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",78019.0,,109732.0,,93971.0,,15761.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,201911,N,P,N,3239.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,3239.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,1442.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,1442.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",77647.0,,109187.0,,93570.0,,15617.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,201911,N,U,Y,3239.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,3239.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,1442.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,1442.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",77647.0,,109187.0,,93570.0,,15617.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,201912,N,P,N,3313.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,3313.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,1449.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,1449.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",77491.0,,108795.0,,93182.0,,15613.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,201912,N,U,Y,3313.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,3313.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,1449.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,1449.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",77491.0,,108795.0,,93182.0,,15613.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,202001,N,P,N,2983.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2983.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,1704.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,1704.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",77776.0,,109264.0,,93533.0,,15731.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,202001,N,U,Y,2983.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2983.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,1704.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,1704.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",77776.0,,109264.0,,93533.0,,15731.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,202002,N,P,N,2240.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2240.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,1406.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,1406.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",77955.0,,109585.0,,93838.0,,15747.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",973.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",530.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",117.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",3.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",,,,,, +SD,South Dakota,202002,N,U,Y,2240.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2240.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,1406.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,1406.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",77955.0,,109585.0,,93838.0,,15747.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",973.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",530.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",117.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",3.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",,,,,, +SD,South Dakota,202003,N,P,N,2325.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2325.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,1178.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,1178.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",77643.0,,109178.0,,93593.0,,15585.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",910.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",422.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",111.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",2.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",,,,,, +SD,South Dakota,202003,N,U,Y,2325.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2325.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,1178.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,1178.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",77643.0,,109178.0,,93593.0,,15585.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",910.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",422.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",111.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",2.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",,,,,, +SD,South Dakota,202004,N,P,N,4541.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,4541.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,2271.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,2271.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",78575.0,,110561.0,,95048.0,,15513.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",1797.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",1046.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",240.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",18.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",,,,,, +SD,South Dakota,202004,N,U,Y,4541.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,4541.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,2271.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,2271.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",78575.0,,110561.0,,95048.0,,15513.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",1797.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",1046.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",240.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",18.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",,,,,, +SD,South Dakota,202005,N,P,N,1706.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,1706.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,837.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,837.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",79732.0,,112232.0,,96723.0,,15509.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,202005,N,U,Y,1706.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,1706.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,837.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,837.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",79732.0,,112232.0,,96723.0,,15509.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,202006,N,P,N,2130.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2130.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,959.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,959.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",80850.0,,114059.0,,98440.0,,15619.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,202006,N,U,Y,2130.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2130.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,959.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,959.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",80850.0,,114059.0,,98440.0,,15619.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,202007,N,P,N,2166.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2166.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,1077.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,1077.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",81956.0,,115715.0,,99912.0,,15803.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,202007,N,U,Y,2166.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2166.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,1077.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,1077.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",81956.0,,115715.0,,99912.0,,15803.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,202008,N,P,N,2233.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2233.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,956.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,956.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",82944.0,,117303.0,,101320.0,,15983.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,202008,N,U,Y,2233.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2233.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,956.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,956.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",82944.0,,117303.0,,101320.0,,15983.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,202009,N,P,N,2133.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2133.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,947.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,947.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",83943.0,,118950.0,,102835.0,,16115.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,202009,N,U,Y,2133.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2133.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,947.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,947.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",83943.0,,118950.0,,102835.0,,16115.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,202010,N,P,N,2120.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2120.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,943.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,943.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",84853.0,,120430.0,,104055.0,,16375.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,202010,N,U,Y,2120.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2120.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,943.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,943.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",84853.0,,120430.0,,104055.0,,16375.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,202011,N,P,N,2748.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2748.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,833.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,833.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",85692.0,,121622.0,,104926.0,,16696.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,202011,N,U,Y,2748.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2748.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,833.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,833.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",85692.0,,121622.0,,104926.0,,16696.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,202012,N,P,N,2875.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2875.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,953.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,953.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",86666.0,,122896.0,,105950.0,,16946.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,202012,N,U,Y,2875.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2875.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,953.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,953.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",86666.0,,122896.0,,105950.0,,16946.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,202101,N,P,N,2070.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2070.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,812.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,812.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",87360.0,,123964.0,,106859.0,,17105.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,202101,N,U,Y,2070.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2070.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,812.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,812.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",87360.0,,123964.0,,106859.0,,17105.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,202102,N,P,N,2014.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2014.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,824.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,824.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",87760.0,,124741.0,,107658.0,,17083.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",758.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",377.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",80.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",4.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",,,,,, +SD,South Dakota,202102,N,U,Y,2014.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2014.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,824.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,824.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",87760.0,,124741.0,,107658.0,,17083.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",758.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",377.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",80.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",4.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",,,,,, +SD,South Dakota,202103,N,P,N,2087.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2087.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,822.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,822.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",88435.0,,125945.0,,108813.0,,17132.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",821.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",363.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",89.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",3.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",,,,,, +SD,South Dakota,202103,N,U,Y,2087.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2087.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,822.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,822.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",88435.0,,125945.0,,108813.0,,17132.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",821.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",363.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",89.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",3.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",,,,,, +SD,South Dakota,202104,N,P,N,2065.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2065.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,715.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,715.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",89000.0,,126943.0,,109694.0,,17249.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",814.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",325.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",66.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",7.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",,,,,, +SD,South Dakota,202104,N,U,Y,2065.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2065.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,715.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,715.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",89000.0,,126943.0,,109694.0,,17249.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",814.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",325.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",66.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",7.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",,,,,, +SD,South Dakota,202105,N,P,N,1853.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,1853.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,696.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,696.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",89479.0,,127829.0,,110437.0,,17392.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,202105,N,U,Y,1853.0,,0.0,,1853.0,,696.0,,0.0,,696.0,,89479.0,,127829.0,,110437.0,,17392.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,202106,N,P,N,2096.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2096.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,768.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,768.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",90524.0,,128919.0,,111325.0,,17594.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,202106,N,U,Y,2096.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,2096.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,768.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,768.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",90524.0,,128919.0,,111325.0,,17594.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,202107,N,P,N,1967.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,1967.0,Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,791.0,"Includes CHIP; Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",0.0,,791.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",91087.0,,129870.0,,112267.0,,17603.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,202107,N,U,Y,1967.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies,0.0,,1967.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,791.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations; Includes CHIP",0.0,,791.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",91087.0,,129870.0,,112267.0,,17603.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,202108,N,P,N,1593.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies,0.0,,1593.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,818.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations; Includes CHIP",0.0,,818.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",91768.0,,130974.0,,113209.0,,17765.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,202108,N,U,Y,1593.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies,0.0,,1593.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,818.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations; Includes CHIP",0.0,,818.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",91768.0,,130974.0,,113209.0,,17765.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,202109,N,P,N,1450.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies,0.0,,1450.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,817.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations; Includes CHIP",0.0,,817.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",92427.0,,132026.0,,114076.0,,17950.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,202109,N,U,Y,1450.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies,0.0,,1450.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,817.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations; Includes CHIP",0.0,,817.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",92427.0,,132026.0,,114076.0,,17950.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,202110,N,P,N,1822.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies,0.0,,1822.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,681.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations; Includes CHIP",0.0,,681.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",92924.0,,132892.0,,114819.0,,18073.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,202110,N,U,Y,1822.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies,0.0,,1822.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,681.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations; Includes CHIP",0.0,,681.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",92924.0,,132892.0,,114819.0,,18073.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,202111,N,P,N,2732.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies,0.0,,2732.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,788.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations; Includes CHIP",0.0,,788.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",93503.0,,133898.0,,115721.0,,18177.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,202111,N,U,Y,2732.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies,0.0,,2732.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,788.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations; Includes CHIP",0.0,,788.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",93503.0,,133898.0,,115721.0,,18177.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,202112,N,P,N,2666.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies,0.0,,2666.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,795.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations; Includes CHIP",0.0,,795.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",94215.0,,134963.0,,116619.0,,18344.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,202112,N,U,Y,2666.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies,0.0,,2666.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,795.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations; Includes CHIP",0.0,,795.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",94215.0,,134963.0,,116619.0,,18344.0,,,,,,,,,,,,,,,,,,, +SD,South Dakota,202201,N,P,N,2390.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies,0.0,,2390.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,820.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations; Includes CHIP",0.0,,820.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",94643.0,,135479.0,,117098.0,,18381.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",889.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",520.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",202.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",12.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",,,,,, +SD,South Dakota,202201,N,U,Y,2390.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies,0.0,,2390.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,820.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations; Includes CHIP",0.0,,820.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",94643.0,,135479.0,,117098.0,,18381.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",889.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",520.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",202.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",12.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",,,,,, +SD,South Dakota,202202,N,P,N,1752.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies,0.0,,1752.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,731.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations; Includes CHIP",0.0,,731.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",95117.0,,136296.0,,117953.0,,18343.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",622.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",379.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",117.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",2.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",,,,,, +SD,South Dakota,202202,N,U,Y,1752.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies,0.0,,1752.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,731.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations; Includes CHIP",0.0,,731.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",95117.0,,136296.0,,117953.0,,18343.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",622.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",379.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",117.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",2.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",,,,,, +SD,South Dakota,202203,N,P,N,1987.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies,0.0,,1987.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,852.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations; Includes CHIP",0.0,,852.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",95816.0,,137289.0,,118993.0,,18296.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",763.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",381.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",77.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",1.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",,,,,, +SD,South Dakota,202203,N,U,Y,1987.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies,0.0,,1987.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,852.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations; Includes CHIP",0.0,,852.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",95816.0,,137289.0,,118993.0,,18296.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",763.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",381.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",77.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",1.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",,,,,, +SD,South Dakota,202204,N,P,N,1817.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies,0.0,,1817.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,683.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations; Includes CHIP",0.0,,683.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",96094.0,,137768.0,,119528.0,,18240.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",696.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",251.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",78.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",3.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",,,,,, +SD,South Dakota,202204,N,U,Y,1817.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies,0.0,,1817.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,683.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations; Includes CHIP",0.0,,683.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",96094.0,,137768.0,,119528.0,,18240.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",696.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",251.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",78.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",3.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",,,,,, +SD,South Dakota,202205,N,P,N,1916.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies,0.0,,1916.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,791.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations; Includes CHIP",0.0,,791.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",96771.0,,138787.0,,120526.0,,18261.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",690.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",341.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",102.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",3.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",,,,,, +SD,South Dakota,202205,N,U,Y,1916.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies,0.0,,1916.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,791.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations; Includes CHIP",0.0,,791.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",96771.0,,138787.0,,120526.0,,18261.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",690.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",341.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",102.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",3.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",,,,,, +SD,South Dakota,202206,N,P,N,1977.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies,0.0,,1977.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,787.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations; Includes CHIP",0.0,,787.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",97392.0,,139712.0,,121493.0,,18219.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",727.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",378.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",102.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",4.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",,,,,, +SD,South Dakota,202206,N,U,Y,1977.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies,0.0,,1977.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,787.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations; Includes CHIP",0.0,,787.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",97392.0,,139712.0,,121493.0,,18219.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",727.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",378.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",102.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",4.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",,,,,, +SD,South Dakota,202207,N,P,N,1913.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies,0.0,,1913.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,757.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations; Includes CHIP",0.0,,757.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",98018.0,,140676.0,,122328.0,,18348.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",688.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",302.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",70.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",3.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",,,,,, +SD,South Dakota,202207,N,U,Y,1913.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies,0.0,,1913.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,757.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations; Includes CHIP",0.0,,757.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",98018.0,,140676.0,,122328.0,,18348.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",688.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",302.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",70.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",3.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",,,,,, +SD,South Dakota,202208,N,P,N,2173.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies,0.0,,2173.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,829.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations; Includes CHIP",0.0,,829.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",98679.0,,141685.0,,123246.0,,18439.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",780.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",414.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",81.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",6.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",,,,,, +SD,South Dakota,202208,N,U,Y,2173.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies,0.0,,2173.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,829.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations; Includes CHIP",0.0,,829.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",98679.0,,141685.0,,123246.0,,18439.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",780.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",414.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",81.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",6.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",,,,,, +SD,South Dakota,202209,N,P,N,1949.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies,0.0,,1949.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,790.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations; Includes CHIP",0.0,,790.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",99198.0,,142457.0,,123974.0,,18483.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",682.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",384.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",78.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",2.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",,,,,, +SD,South Dakota,202209,N,U,Y,1949.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies,0.0,,1949.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,790.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations; Includes CHIP",0.0,,790.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",99198.0,,142457.0,,123974.0,,18483.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",682.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",384.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",78.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",2.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",,,,,, +SD,South Dakota,202210,N,P,N,2000.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies,0.0,,2000.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,731.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations; Includes CHIP",0.0,,731.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",99618.0,,143141.0,,124513.0,,18628.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",751.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",378.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",99.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",7.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",,,,,, +SD,South Dakota,202210,N,U,Y,2000.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies,0.0,,2000.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,731.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations; Includes CHIP",0.0,,731.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",99618.0,,143141.0,,124513.0,,18628.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",751.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",378.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",99.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",7.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",,,,,, +SD,South Dakota,202211,N,P,N,3103.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies,0.0,,3103.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,810.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations; Includes CHIP",0.0,,810.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",100142.0,,143905.0,,125005.0,,18900.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",1519.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",384.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",81.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",3.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",,,,,, +SD,South Dakota,202211,N,U,Y,3103.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies,0.0,,3103.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,810.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations; Includes CHIP",0.0,,810.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",100142.0,,143905.0,,125005.0,,18900.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",1519.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",384.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",81.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",3.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",,,,,, +SD,South Dakota,202212,N,P,N,2770.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies,0.0,,2770.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,757.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations; Includes CHIP",0.0,,757.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",100709.0,,144718.0,,125480.0,,19238.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",1381.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",635.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",81.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",3.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",,,,,, +SD,South Dakota,202212,N,U,Y,2770.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies,0.0,,2770.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,757.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations; Includes CHIP",0.0,,757.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",100709.0,,144718.0,,125480.0,,19238.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",1381.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",635.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",81.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",3.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",,,,,, +SD,South Dakota,202301,N,P,N,2492.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies,0.0,,2492.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,750.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations; Includes CHIP",0.0,,750.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",101320.0,,145612.0,,126352.0,,19260.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",1036.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",484.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",200.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",6.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",,,,,, +SD,South Dakota,202301,N,U,Y,2492.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies,0.0,,2492.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,750.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations; Includes CHIP",0.0,,750.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",101320.0,,145612.0,,126352.0,,19260.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",1036.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",484.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",200.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",6.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",,,,,, +SD,South Dakota,202302,N,P,N,1788.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies,0.0,,1788.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,655.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations; Includes CHIP",0.0,,655.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",101700.0,,146234.0,,126826.0,,19408.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",709.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",340.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",100.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",9.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",,,,,, +SD,South Dakota,202302,N,U,Y,1788.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies,0.0,,1788.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,655.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations; Includes CHIP",0.0,,655.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",101700.0,,146234.0,,126826.0,,19408.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",709.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",340.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",100.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",9.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",,,,,, +SD,South Dakota,202303,N,P,N,2193.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies,0.0,,2193.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,872.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations; Includes CHIP",0.0,,872.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",102135.0,,146957.0,,127505.0,,19452.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",880.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",341.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",78.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",8.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",,Does not operate a call center,,Does not operate a call center,,Does not operate a call center +SD,South Dakota,202303,N,U,Y,2193.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies,0.0,,2193.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,872.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations; Includes CHIP",0.0,,872.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",102135.0,,146957.0,,127505.0,,19452.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",880.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",341.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",78.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",8.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",,Does not operate a call center,,Does not operate a call center,,Does not operate a call center +SD,South Dakota,202304,N,P,N,2313.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies,0.0,,2313.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,938.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations; Includes CHIP",0.0,,938.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",93537.0,,133859.0,,115732.0,,18127.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",882.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",395.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",88.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",1.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",,Does not operate a call center,,Does not operate a call center,,Does not operate a call center +SD,South Dakota,202304,N,U,Y,2313.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies,0.0,,2313.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,938.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations; Includes CHIP",0.0,,938.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",93537.0,,133859.0,,115732.0,,18127.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",882.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",395.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",88.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",1.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",,Does not operate a call center,,Does not operate a call center,,Does not operate a call center +SD,South Dakota,202305,N,P,N,2975.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies,0.0,,2975.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,1297.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations; Includes CHIP",0.0,,1297.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",87951.0,,125793.0,,108620.0,,17173.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",1075.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",632.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",114.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",6.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",,Does not operate a call center,,Does not operate a call center,,Does not operate a call center +SD,South Dakota,202305,N,U,Y,2975.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies,0.0,,2975.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,1297.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations; Includes CHIP",0.0,,1297.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",87951.0,,125793.0,,108620.0,,17173.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",1075.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",632.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",114.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",6.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",,Does not operate a call center,,Does not operate a call center,,Does not operate a call center +SD,South Dakota,202306,N,P,N,2926.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies,0.0,,2926.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,1890.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations; Includes CHIP",0.0,,1890.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",82417.0,,117908.0,,101772.0,,16136.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",1521.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",683.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",133.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",11.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",,Does not operate a call center,,Does not operate a call center,,Does not operate a call center +SD,South Dakota,202306,N,U,Y,2926.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies,0.0,,2926.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,1890.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations; Includes CHIP",0.0,,1890.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",82417.0,,117908.0,,101772.0,,16136.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",1521.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",683.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",133.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",11.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",,Does not operate a call center,,Does not operate a call center,,Does not operate a call center +SD,South Dakota,202307,Y,P,N,6546.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies,0.0,,6546.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,3635.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations; Includes CHIP",0.0,,3635.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",77766.0,,116043.0,,100641.0,,15402.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",2686.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",1361.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",209.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",16.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",,Does not operate a call center,,Does not operate a call center,,Does not operate a call center +SD,South Dakota,202307,Y,U,Y,6546.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies,0.0,,6546.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,3635.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations; Includes CHIP",0.0,,3635.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",77766.0,,116043.0,,100641.0,,15402.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",2686.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",1361.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",209.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",16.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",,Does not operate a call center,,Does not operate a call center,,Does not operate a call center +SD,South Dakota,202308,Y,P,N,5504.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies,0.0,,5504.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,3260.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations; Includes CHIP",0.0,,3260.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",76025.0,,116080.0,,100765.0,,15315.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",1959.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",1634.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",460.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",52.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",,Does not operate a call center,,Does not operate a call center,,Does not operate a call center +SD,South Dakota,202308,Y,U,Y,5504.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies,0.0,,5504.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,3260.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations; Includes CHIP",0.0,,3260.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",76025.0,,116080.0,,100765.0,,15315.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",1959.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",1634.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",460.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",52.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",,Does not operate a call center,,Does not operate a call center,,Does not operate a call center +SD,South Dakota,202309,Y,P,N,4813.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies,0.0,,4813.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,2792.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations; Includes CHIP",0.0,,2792.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",74563.0,,116220.0,,100930.0,,15290.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",1734.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",1318.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",392.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",50.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",,Does not operate a call center,,Does not operate a call center,,Does not operate a call center +SD,South Dakota,202309,Y,U,Y,4813.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies,0.0,,4813.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,2792.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations; Includes CHIP",0.0,,2792.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",74563.0,,116220.0,,100930.0,,15290.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",1734.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",1318.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",392.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",50.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",,Does not operate a call center,,Does not operate a call center,,Does not operate a call center +SD,South Dakota,202310,Y,P,N,4920.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies,0.0,,4920.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,2985.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations; Includes CHIP",0.0,,2985.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",73859.0,,117430.0,,102057.0,,15373.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",1754.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",1441.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",440.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",61.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",,Does not operate a call center,,Does not operate a call center,,Does not operate a call center +SD,South Dakota,202310,Y,U,Y,4920.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies,0.0,,4920.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,2985.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations; Includes CHIP",0.0,,2985.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",73859.0,,117430.0,,102057.0,,15373.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",1754.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",1441.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",440.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",61.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",,Does not operate a call center,,Does not operate a call center,,Does not operate a call center +SD,South Dakota,202311,Y,P,N,6537.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies,0.0,,6537.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,2975.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations; Includes CHIP",0.0,,2975.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",73442.0,,119111.0,,103478.0,,15633.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",2009.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",1656.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",400.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",44.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",,Does not operate a call center,,Does not operate a call center,,Does not operate a call center +SD,South Dakota,202311,Y,U,Y,6537.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies,0.0,,6537.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,2975.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations; Includes CHIP",0.0,,2975.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",73442.0,,119111.0,,103478.0,,15633.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",2009.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",1656.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",400.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",44.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",,Does not operate a call center,,Does not operate a call center,,Does not operate a call center +SD,South Dakota,202312,Y,P,N,6151.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies,0.0,,6151.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,2892.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations; Includes CHIP",0.0,,2892.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",73318.0,,121314.0,,105607.0,,15707.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",1947.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",2036.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",589.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",56.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",,Does not operate a call center,,Does not operate a call center,,Does not operate a call center +SD,South Dakota,202312,Y,U,Y,6151.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies,0.0,,6151.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,2892.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations; Includes CHIP",0.0,,2892.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",73318.0,,121314.0,,105607.0,,15707.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",1947.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",2036.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",589.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",56.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",,Does not operate a call center,,Does not operate a call center,,Does not operate a call center +SD,South Dakota,202401,Y,P,N,4638.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies,0.0,,4638.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,2962.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations; Includes CHIP",0.0,,2962.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",73867.0,,124064.0,,107906.0,,16158.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",1834.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",1673.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",921.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",165.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",,Does not operate a call center,,Does not operate a call center,,Does not operate a call center +SD,South Dakota,202401,Y,U,Y,4638.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies,0.0,,4638.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,2962.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations; Includes CHIP",0.0,,2962.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",73867.0,,124064.0,,107906.0,,16158.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",1834.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",1673.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",921.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",165.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",,Does not operate a call center,,Does not operate a call center,,Does not operate a call center +SD,South Dakota,202402,Y,P,N,3918.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies,0.0,,3918.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,2640.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations; Includes CHIP",0.0,,2640.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",74831.0,,126820.0,,110468.0,,16352.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",1502.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",1188.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",438.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",85.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",,Does not operate a call center,,Does not operate a call center,,Does not operate a call center +SD,South Dakota,202402,Y,U,Y,3918.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies,0.0,,3918.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,2640.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations; Includes CHIP",0.0,,2640.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",74831.0,,126820.0,,110468.0,,16352.0,,,,0.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",1502.0,"Determinations conducted in less than 24 hours are reported under the 1-7 days category; Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",1188.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",438.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",85.0,"Incorrectly reporting processing time at application level, as opposed to the individual level; Incorrectly includes redeterminations",,Does not operate a call center,,Does not operate a call center,,Does not operate a call center +SD,South Dakota,202403,Y,P,N,3449.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies,0.0,,3449.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,0.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations; Includes CHIP",0.0,,0.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",74149.0,,125947.0,,109758.0,,16189.0,,,,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,,Does not operate a call center,,Does not operate a call center,,Does not operate a call center +SD,South Dakota,202403,Y,U,Y,3449.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies,0.0,,3449.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,0.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations; Includes CHIP",0.0,,0.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",74149.0,,125947.0,,109758.0,,16189.0,,,,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,,Does not operate a call center,,Does not operate a call center,,Does not operate a call center +SD,South Dakota,202404,Y,P,N,3433.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies,0.0,,3433.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,8655.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations; Includes CHIP",276.0,,8931.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",75483.0,,128701.0,,112599.0,,16102.0,,,,4358.0,,1481.0,,1658.0,,1151.0,,1480.0,,,Does not operate a call center,,Does not operate a call center,,Does not operate a call center +SD,South Dakota,202404,Y,U,Y,3433.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Does Not Include All CHIP Applications Submitted to Medicaid and CHIP Agencies,0.0,,3433.0,Includes Administrative Data Transfers; Includes Accounts Transferred from FFM; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,8655.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations; Includes CHIP",276.0,,8931.0,"Count is of Households, Not Individuals; Includes Renewals and/or Redeterminations",75483.0,,128701.0,,112599.0,,16102.0,,,,4358.0,,1481.0,,1658.0,,1151.0,,1480.0,,,Does not operate a call center,,Does not operate a call center,,Does not operate a call center +SD,South Dakota,202405,Y,P,N,4046.0,,0.0,,4046.0,,14447.0,,303.0,,14750.0,,76630.0,,130827.0,,114569.0,,16258.0,,,,6303.0,,1788.0,,2069.0,,1844.0,,2844.0,,,Does not operate a call center,,Does not operate a call center,,Does not operate a call center +SD,South Dakota,202405,Y,U,Y,4046.0,,0.0,,4046.0,,14447.0,,303.0,,14750.0,,76630.0,,130827.0,,114569.0,,16258.0,,,,6303.0,,1788.0,,2069.0,,1844.0,,2844.0,,,Does not operate a call center,,Does not operate a call center,,Does not operate a call center +SD,South Dakota,202406,Y,P,N,3274.0,,0.0,,3274.0,,0.0,,0.0,,0.0,,78187.0,,133438.0,,116987.0,,16451.0,,,,29810.0,,4791.0,,2406.0,,1820.0,,3596.0,,,Does not operate a call center,,Does not operate a call center,,Does not operate a call center +SD,South Dakota,202406,Y,U,Y,3274.0,,0.0,,3274.0,,0.0,,0.0,,0.0,,78187.0,,133438.0,,116987.0,,16451.0,,,,29810.0,,4791.0,,2406.0,,1820.0,,3596.0,,,Does not operate a call center,,Does not operate a call center,,Does not operate a call center +SD,South Dakota,202407,Y,P,N,4203.0,,0.0,,4203.0,,0.0,,0.0,,0.0,,79335.0,,135981.0,,119670.0,,16311.0,,56646.0,,5943.0,,2288.0,,4049.0,,2181.0,,4056.0,,,Does not operate a call center,,Does not operate a call center,,Does not operate a call center +SD,South Dakota,202407,Y,U,Y,4203.0,,0.0,,4203.0,,0.0,,0.0,,0.0,,79335.0,,135981.0,,119670.0,,16311.0,,56646.0,,5943.0,,2288.0,,4049.0,,2181.0,,4056.0,,,Does not operate a call center,,Does not operate a call center,,Does not operate a call center +SD,South Dakota,202408,Y,P,N,3892.0,,0.0,,3892.0,,0.0,,0.0,,0.0,,80495.0,,138437.0,,121976.0,,16461.0,,57942.0,,1919.0,,712.0,,1316.0,,370.0,,894.0,,,Does not operate a call center,,Does not operate a call center,,Does not operate a call center +SD,South Dakota,202408,Y,U,Y,3892.0,,0.0,,3892.0,,0.0,,0.0,,0.0,,80495.0,,138437.0,,121976.0,,16461.0,,57942.0,,1919.0,,712.0,,1316.0,,370.0,,894.0,,,Does not operate a call center,,Does not operate a call center,,Does not operate a call center +SD,South Dakota,202409,Y,P,N,3715.0,,0.0,,3715.0,,0.0,,0.0,,0.0,,81322.0,,140438.0,,123878.0,,16560.0,,59116.0,,1981.0,,748.0,,930.0,,391.0,,1011.0,,,Does not operate a call center,,Does not operate a call center,,Does not operate a call center +SD,South Dakota,202409,Y,U,Y,3715.0,,0.0,,3715.0,,0.0,,0.0,,0.0,,81322.0,,140438.0,,123878.0,,16560.0,,59116.0,,1981.0,,748.0,,930.0,,391.0,,1011.0,,,Does not operate a call center,,Does not operate a call center,,Does not operate a call center +SD,South Dakota,202410,Y,P,N,3893.0,,0.0,,3893.0,,0.0,,0.0,,0.0,,82034.0,,142007.0,,125474.0,,16533.0,,59973.0,,1875.0,,724.0,,900.0,,365.0,,898.0,,,Does not operate a call center,,Does not operate a call center,,Does not operate a call center +SD,South Dakota,202410,Y,U,Y,3893.0,,0.0,,3893.0,,0.0,,0.0,,0.0,,82034.0,,142007.0,,125474.0,,16533.0,,59973.0,,1875.0,,724.0,,900.0,,365.0,,898.0,,,Does not operate a call center,,Does not operate a call center,,Does not operate a call center +SD,South Dakota,202411,Y,P,N,3758.0,,0.0,,3758.0,,0.0,,0.0,,0.0,,82571.0,,143371.0,,126747.0,,16624.0,,60800.0,,1897.0,,979.0,,1232.0,,372.0,,859.0,,,Does not operate a call center,,Does not operate a call center,,Does not operate a call center +SD,South Dakota,202411,Y,U,Y,3758.0,,0.0,,3758.0,,0.0,,0.0,,0.0,,82571.0,,143371.0,,126747.0,,16624.0,,60800.0,,1897.0,,979.0,,1232.0,,372.0,,859.0,,,Does not operate a call center,,Does not operate a call center,,Does not operate a call center +SD,South Dakota,202412,Y,P,N,4075.0,,0.0,,4075.0,,0.0,,0.0,,0.0,,81964.0,,143339.0,,126952.0,,16387.0,,61375.0,,2375.0,,930.0,,1679.0,,546.0,,1656.0,,,Does not operate a call center,,Does not operate a call center,,Does not operate a call center +SD,South Dakota,202412,Y,U,Y,4075.0,,0.0,,4075.0,,0.0,,0.0,,0.0,,81964.0,,143339.0,,126952.0,,16387.0,,61375.0,,2375.0,,930.0,,1679.0,,546.0,,1656.0,,,Does not operate a call center,,Does not operate a call center,,Does not operate a call center +SD,South Dakota,202501,Y,P,N,4982.0,,0.0,,4982.0,,0.0,,0.0,,0.0,,82319.0,,144398.0,,128008.0,,16390.0,,62079.0,,2095.0,,702.0,,1235.0,,974.0,,2791.0,,,Does not operate a call center,,Does not operate a call center,,Does not operate a call center +SD,South Dakota,202501,Y,U,Y,4982.0,,0.0,,4982.0,,0.0,,0.0,,0.0,,82319.0,,144398.0,,128008.0,,16390.0,,62079.0,,2095.0,,702.0,,1235.0,,974.0,,2791.0,,,Does not operate a call center,,Does not operate a call center,,Does not operate a call center +SD,South Dakota,202502,Y,P,N,4367.0,,0.0,,4367.0,,26018.0,,723.0,,26741.0,,82471.0,,145286.0,,128684.0,,16602.0,,62815.0,,1890.0,,587.0,,992.0,,702.0,,1545.0,,,Does not operate a call center,,Does not operate a call center,,Does not operate a call center +SD,South Dakota,202502,Y,U,Y,4367.0,,0.0,,4367.0,,26018.0,,723.0,,26741.0,,82471.0,,145286.0,,128684.0,,16602.0,,62815.0,,1890.0,,587.0,,992.0,,702.0,,1545.0,,,Does not operate a call center,,Does not operate a call center,,Does not operate a call center +SD,South Dakota,202503,Y,P,N,4718.0,,0.0,,4718.0,,8008.0,,970.0,,8978.0,,81494.0,,144264.0,,128040.0,,16224.0,,62770.0,,1966.0,,726.0,,949.0,,844.0,,1383.0,,,Does not operate a call center,,Does not operate a call center,,Does not operate a call center +SD,South Dakota,202503,Y,U,Y,4718.0,,0.0,,4718.0,,8008.0,,970.0,,8978.0,,81494.0,,144264.0,,128040.0,,16224.0,,62770.0,,1966.0,,726.0,,949.0,,844.0,,1383.0,,,Does not operate a call center,,Does not operate a call center,,Does not operate a call center +SD,South Dakota,202504,Y,P,N,4407.0,,0.0,,4407.0,,7083.0,,819.0,,7902.0,,80810.0,,142487.0,,126750.0,,15737.0,,61677.0,,1794.0,,773.0,,1104.0,,465.0,,1036.0,,,Does not operate a call center,,Does not operate a call center,,Does not operate a call center +SD,South Dakota,202504,Y,U,Y,4407.0,,0.0,,4407.0,,7083.0,,819.0,,7902.0,,80810.0,,142487.0,,126750.0,,15737.0,,61677.0,,1794.0,,773.0,,1104.0,,465.0,,1036.0,,,Does not operate a call center,,Does not operate a call center,,Does not operate a call center +SD,South Dakota,202505,Y,P,N,4367.0,,0.0,,4367.0,,7078.0,,776.0,,7854.0,,79935.0,,140819.0,,125478.0,,15341.0,,60884.0,,2131.0,,652.0,,1275.0,,431.0,,1143.0,,,Does not operate a call center,,Does not operate a call center,,Does not operate a call center +SD,South Dakota,202505,Y,U,Y,4367.0,,0.0,,4367.0,,7078.0,,776.0,,7854.0,,79935.0,,140819.0,,125478.0,,15341.0,,60884.0,,2131.0,,652.0,,1275.0,,431.0,,1143.0,,,Does not operate a call center,,Does not operate a call center,,Does not operate a call center +SD,South Dakota,202506,Y,P,N,4437.0,,0.0,,4437.0,,7315.0,,806.0,,8121.0,,79052.0,,139653.0,,124650.0,,15003.0,,60601.0,,2498.0,,639.0,,1089.0,,348.0,,1005.0,,,Does not operate a call center,,Does not operate a call center,,Does not operate a call center +SD,South Dakota,202506,Y,U,Y,4437.0,,0.0,,4437.0,,7315.0,,806.0,,8121.0,,79052.0,,139653.0,,124650.0,,15003.0,,60601.0,,2498.0,,639.0,,1089.0,,348.0,,1005.0,,,Does not operate a call center,,Does not operate a call center,,Does not operate a call center +SD,South Dakota,202507,Y,P,N,4483.0,,0.0,,4483.0,,7515.0,,888.0,,8403.0,,78605.0,,139110.0,,124421.0,,14689.0,,60505.0,,2595.0,,654.0,,1357.0,,458.0,,1031.0,,,Does not operate a call center,,Does not operate a call center,,Does not operate a call center +SD,South Dakota,202507,Y,U,Y,4483.0,,0.0,,4483.0,,7515.0,,888.0,,8403.0,,78605.0,,139110.0,,124421.0,,14689.0,,60505.0,,2595.0,,654.0,,1357.0,,458.0,,1031.0,,,Does not operate a call center,,Does not operate a call center,,Does not operate a call center +SD,South Dakota,202508,Y,P,N,4217.0,,0.0,,4217.0,,7873.0,,907.0,,8780.0,,76950.0,,136904.0,,122863.0,,14041.0,,59954.0,,2353.0,,753.0,,1294.0,,383.0,,995.0,,,Does not operate a call center,,Does not operate a call center,,Does not operate a call center +SD,South Dakota,202508,Y,U,Y,4217.0,,0.0,,4217.0,,7873.0,,907.0,,8780.0,,76950.0,,136904.0,,122863.0,,14041.0,,59954.0,,2353.0,,753.0,,1294.0,,383.0,,995.0,,,Does not operate a call center,,Does not operate a call center,,Does not operate a call center +SD,South Dakota,202509,Y,P,N,4674.0,,0.0,,4674.0,,7923.0,,936.0,,8859.0,,76697.0,,136318.0,,122307.0,,14011.0,,59621.0,,2544.0,,844.0,,1047.0,,568.0,,703.0,,,Does not operate a call center,,Does not operate a call center,,Does not operate a call center +SD,South Dakota,202509,Y,U,Y,4674.0,,0.0,,4674.0,,7923.0,,936.0,,8859.0,,76697.0,,136318.0,,122307.0,,14011.0,,59621.0,,2544.0,,844.0,,1047.0,,568.0,,703.0,,,Does not operate a call center,,Does not operate a call center,,Does not operate a call center +SD,South Dakota,202510,Y,P,N,4457.0,,0.0,,4457.0,,7963.0,,957.0,,8920.0,,76908.0,,136919.0,,122794.0,,14125.0,,60011.0,,2574.0,,779.0,,1316.0,,1385.0,,146.0,,,Does not operate a call center,,Does not operate a call center,,Does not operate a call center +TN,Tennessee,201309,N,U,Y,,,,,,,,,,,,,,,1244516.0,,,,,,,,,,,,,,,,,,,,,,, +TN,Tennessee,201706,N,P,N,545.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,545.0,Does Not Include All Medicaid Applications,0.0,Does Not Include All Medicaid Determinations Made At Application,454.0,,454.0,Does Not Include All Medicaid Determinations Made At Application,0.0,Unable to provide data due to system limitations,1485418.0,,1404996.0,,80422.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,201706,N,U,Y,545.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,545.0,Does Not Include All Medicaid Applications,0.0,Does Not Include All Medicaid Determinations Made At Application,454.0,,454.0,Does Not Include All Medicaid Determinations Made At Application,0.0,Unable to provide data due to system limitations,1498146.0,,1418288.0,,79858.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,201707,N,P,N,528.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,528.0,Does Not Include All Medicaid Applications,0.0,Does Not Include All Medicaid Determinations Made At Application,447.0,,447.0,Does Not Include All Medicaid Determinations Made At Application,0.0,Unable to provide data due to system limitations,1474763.0,,1394926.0,,79837.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,201707,N,U,Y,528.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,528.0,Does Not Include All Medicaid Applications,0.0,Does Not Include All Medicaid Determinations Made At Application,447.0,,447.0,Does Not Include All Medicaid Determinations Made At Application,0.0,Unable to provide data due to system limitations,1484821.0,,1405280.0,,79541.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,201708,N,P,N,630.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,630.0,Does Not Include All Medicaid Applications,0.0,Does Not Include All Medicaid Determinations Made At Application,522.0,,522.0,Does Not Include All Medicaid Determinations Made At Application,0.0,Unable to provide data due to system limitations,1496472.0,,1416930.0,,79542.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,201708,N,U,Y,630.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,630.0,Does Not Include All Medicaid Applications,0.0,Does Not Include All Medicaid Determinations Made At Application,522.0,,522.0,Does Not Include All Medicaid Determinations Made At Application,0.0,Unable to provide data due to system limitations,1505215.0,,1425855.0,,79360.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,201709,N,P,N,527.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,527.0,Does Not Include All Medicaid Applications,0.0,Does Not Include All Medicaid Determinations Made At Application,445.0,,445.0,Does Not Include All Medicaid Determinations Made At Application,0.0,Unable to provide data due to system limitations,1507280.0,,1427811.0,,79469.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,201709,N,U,Y,527.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,527.0,Does Not Include All Medicaid Applications,0.0,Does Not Include All Medicaid Determinations Made At Application,445.0,,445.0,Does Not Include All Medicaid Determinations Made At Application,0.0,Unable to provide data due to system limitations,1517342.0,,1438652.0,,78690.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,201710,N,P,N,566.0,,0.0,,566.0,,0.0,,461.0,,461.0,,0.0,Unable to provide data due to system limitations,1521764.0,,1443053.0,,78711.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,201710,N,U,Y,566.0,,0.0,,566.0,,0.0,,461.0,,461.0,,0.0,Unable to provide data due to system limitations,1526890.0,,1447931.0,,78959.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,201711,N,P,N,504.0,,0.0,,504.0,,0.0,,439.0,,439.0,,0.0,Unable to provide data due to system limitations,1536626.0,,1456682.0,,79944.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,201711,N,U,Y,504.0,,0.0,,504.0,,0.0,,439.0,,439.0,,0.0,Unable to provide data due to system limitations,1543255.0,,1462715.0,,80540.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,201712,N,P,N,504.0,,0.0,,504.0,,0.0,,422.0,,422.0,,0.0,Unable to provide data due to system limitations,1539743.0,,1458814.0,,80929.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,201712,N,U,Y,504.0,,0.0,,504.0,,0.0,,422.0,,422.0,,0.0,Unable to provide data due to system limitations,1548572.0,,1467252.0,,81320.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,201801,N,P,N,633.0,,0.0,,633.0,,0.0,,478.0,,478.0,,0.0,Unable to provide data due to system limitations,1552073.0,,1472055.0,,80018.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,201801,N,U,Y,633.0,,0.0,,633.0,,0.0,,478.0,,478.0,,0.0,Unable to provide data due to system limitations,1560038.0,,1479514.0,,80524.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,201802,N,P,N,537.0,,0.0,,537.0,,0.0,,489.0,,489.0,,0.0,Unable to provide data due to system limitations,1527295.0,,1448531.0,,78764.0,,,,23.0,,436.0,,43.0,,4.0,,1.0,,,,,,, +TN,Tennessee,201802,N,U,Y,537.0,,0.0,,537.0,,0.0,,489.0,,489.0,,0.0,Unable to provide data due to system limitations,1534978.0,,1455833.0,,79145.0,,,,23.0,,436.0,,43.0,,4.0,,1.0,,,,,,, +TN,Tennessee,201803,N,P,N,506.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,506.0,Does Not Include All Medicaid Applications,0.0,Does Not Include All Medicaid Determinations Made At Application,456.0,,456.0,Does Not Include All Medicaid Determinations Made At Application,0.0,Unable to provide data due to system limitations,1520031.0,,1442572.0,,77459.0,,,,75.0,,378.0,,22.0,,16.0,,0.0,,,,,,, +TN,Tennessee,201803,N,U,Y,506.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,506.0,Does Not Include All Medicaid Applications,0.0,Does Not Include All Medicaid Determinations Made At Application,456.0,,456.0,Does Not Include All Medicaid Determinations Made At Application,0.0,Unable to provide data due to system limitations,1531732.0,,1454063.0,,77669.0,,,,75.0,,378.0,,22.0,,16.0,,0.0,,,,,,, +TN,Tennessee,201804,N,P,N,538.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,538.0,Does Not Include All Medicaid Applications,0.0,Does Not Include All Medicaid Determinations Made At Application,470.0,,470.0,Does Not Include All Medicaid Determinations Made At Application,0.0,Unable to provide data due to system limitations,1504719.0,,1428399.0,,76320.0,,,,121.0,,347.0,,14.0,,9.0,,0.0,,,,,,, +TN,Tennessee,201804,N,U,Y,538.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,538.0,Does Not Include All Medicaid Applications,0.0,Does Not Include All Medicaid Determinations Made At Application,470.0,,470.0,Does Not Include All Medicaid Determinations Made At Application,0.0,Unable to provide data due to system limitations,1512118.0,,1435586.0,,76532.0,,,,121.0,,347.0,,14.0,,9.0,,0.0,,,,,,, +TN,Tennessee,201805,N,P,N,566.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,566.0,Does Not Include All Medicaid Applications,0.0,Does Not Include All Medicaid Determinations Made At Application,451.0,,451.0,Does Not Include All Medicaid Determinations Made At Application,0.0,Unable to provide data due to system limitations,1487062.0,,1411941.0,,75121.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,201805,N,U,Y,566.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,566.0,Does Not Include All Medicaid Applications,0.0,Does Not Include All Medicaid Determinations Made At Application,451.0,,451.0,Does Not Include All Medicaid Determinations Made At Application,0.0,Unable to provide data due to system limitations,1495246.0,,1419941.0,,75305.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,201806,N,P,N,556.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,556.0,Does Not Include All Medicaid Applications,0.0,Does Not Include All Medicaid Determinations Made At Application,452.0,,452.0,Does Not Include All Medicaid Determinations Made At Application,0.0,Unable to provide data due to system limitations,1471264.0,,1414196.0,,57068.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,201806,N,U,Y,556.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,556.0,Does Not Include All Medicaid Applications,0.0,Does Not Include All Medicaid Determinations Made At Application,452.0,,452.0,Does Not Include All Medicaid Determinations Made At Application,0.0,Unable to provide data due to system limitations,1482362.0,,1423482.0,,58880.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,201807,N,P,N,557.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,557.0,Does Not Include All Medicaid Applications,0.0,Does Not Include All Medicaid Determinations Made At Application,483.0,,483.0,Does Not Include All Medicaid Determinations Made At Application,0.0,Unable to provide data due to system limitations,1371010.0,,1318813.0,,52197.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,201807,N,U,Y,557.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,557.0,Does Not Include All Medicaid Applications,0.0,Does Not Include All Medicaid Determinations Made At Application,483.0,,483.0,Does Not Include All Medicaid Determinations Made At Application,0.0,Unable to provide data due to system limitations,1443541.0,,1390399.0,,53142.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,201808,N,P,N,560.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,560.0,Does Not Include All Medicaid Applications,0.0,Does Not Include All Medicaid Determinations Made At Application,486.0,,486.0,Does Not Include All Medicaid Determinations Made At Application,0.0,Unable to provide data due to system limitations,1372563.0,,1320749.0,,51814.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,201808,N,U,Y,560.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,560.0,Does Not Include All Medicaid Applications,0.0,Does Not Include All Medicaid Determinations Made At Application,486.0,,486.0,Does Not Include All Medicaid Determinations Made At Application,0.0,Unable to provide data due to system limitations,1384347.0,,1331629.0,,52718.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,201809,N,P,N,514.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,514.0,Does Not Include All Medicaid Applications,0.0,Does Not Include All Medicaid Determinations Made At Application,403.0,,403.0,Does Not Include All Medicaid Determinations Made At Application,0.0,Unable to provide data due to system limitations,1377849.0,,1328172.0,,49677.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,201809,N,U,Y,514.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,514.0,Does Not Include All Medicaid Applications,0.0,Does Not Include All Medicaid Determinations Made At Application,403.0,,403.0,Does Not Include All Medicaid Determinations Made At Application,0.0,Unable to provide data due to system limitations,1388863.0,,1336779.0,,52084.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,201810,N,P,N,367.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,367.0,Does Not Include All Medicaid Applications,0.0,Does Not Include All Medicaid Determinations Made At Application,316.0,,316.0,Does Not Include All Medicaid Determinations Made At Application,0.0,Unable to provide data due to system limitations,1388989.0,,1337152.0,,51837.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,201810,N,U,Y,367.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,367.0,Does Not Include All Medicaid Applications,0.0,Does Not Include All Medicaid Determinations Made At Application,316.0,,316.0,Does Not Include All Medicaid Determinations Made At Application,0.0,Unable to provide data due to system limitations,1393623.0,,1341006.0,,52617.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,201811,N,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1381351.0,,1329295.0,,52056.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,201811,N,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1388072.0,,1335192.0,,52880.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,201812,N,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1391147.0,,1338542.0,,52605.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,201812,N,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1396575.0,,1342027.0,,54548.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,201901,N,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1400043.0,,1344033.0,,56010.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,201901,N,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1402412.0,,1347322.0,,55090.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,201902,N,P,N,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1322048.0,,1267500.0,,54548.0,,,,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,,,,,, +TN,Tennessee,201902,N,U,Y,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1431682.0,,1377356.0,,54326.0,,,,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,,,,,, +TN,Tennessee,201903,N,P,N,7146.0,,0.0,,7146.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1437883.0,,1382793.0,,55090.0,,,,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,,,,,, +TN,Tennessee,201903,N,U,Y,10886.0,,0.0,,10886.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1440284.0,,1386672.0,,53612.0,,,,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,,,,,, +TN,Tennessee,201904,N,P,N,12515.0,,0.0,,12515.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1441248.0,,1386922.0,,54326.0,,,,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,,,,,, +TN,Tennessee,201904,N,U,Y,12821.0,,0.0,,12821.0,,0.0,,0.0,,0.0,,0.0,Unable to provide data due to system limitations,1437084.0,,1383393.0,,53691.0,,,,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,,,,,, +TN,Tennessee,201905,N,P,N,14445.0,,0.0,,14445.0,,9097.0,,1909.0,,11006.0,,0.0,Unable to provide data due to system limitations,1455440.0,,1401828.0,,53612.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,201905,N,U,Y,15100.0,,0.0,,15100.0,,9099.0,,1907.0,,11006.0,,0.0,Unable to provide data due to system limitations,1458386.0,,1404133.0,,54253.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,201906,N,P,N,13554.0,,0.0,,13554.0,,7462.0,,956.0,,8418.0,,0.0,Unable to provide data due to system limitations,1456108.0,,1402417.0,,53691.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,201906,N,U,Y,14023.0,,0.0,,14023.0,,7465.0,,953.0,,8418.0,,850517.0,,1494208.0,,1439221.0,,54987.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,201907,N,P,N,15245.0,,0.0,,15245.0,,9697.0,,1119.0,,10816.0,,845398.0,,1491239.0,,1436986.0,,54253.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,201907,N,U,Y,16004.0,,0.0,,16004.0,,9696.0,,1120.0,,10816.0,,845489.0,,1488836.0,,1433736.0,,55100.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,201908,N,P,N,17855.0,,0.0,,17855.0,,16442.0,,2207.0,,18649.0,,847570.0,,1494208.0,,1439221.0,,54987.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,201908,N,U,Y,18461.0,,0.0,,18461.0,,16439.0,,2211.0,,18650.0,,844725.0,,1494262.0,,1439274.0,,54988.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,201909,N,P,N,18148.0,,0.0,,18148.0,,11204.0,,1087.0,,12291.0,,842668.0,,1488945.0,,1433844.0,,55101.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,201909,N,U,Y,18018.0,,0.0,,18018.0,,11201.0,,1090.0,,12291.0,,821662.0,,1452409.0,,1396841.0,,55568.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,201910,N,P,N,18706.0,,0.0,,18706.0,,11937.0,,1678.0,,13615.0,,813526.0,,1436189.0,,1381475.0,,54714.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,201910,N,U,Y,18669.0,,0.0,,18669.0,,11938.0,,1677.0,,13615.0,,819961.0,,1449266.0,,1393452.0,,55814.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,201911,N,P,N,17370.0,,0.0,,17370.0,,12116.0,,1688.0,,13804.0,,812031.0,,1433004.0,,1379398.0,,53606.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,201911,N,U,Y,17255.0,,0.0,,17255.0,,12120.0,,1684.0,,13804.0,,818972.0,,1447646.0,,1392755.0,,54891.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,201912,N,P,N,17568.0,,0.0,,17568.0,,10467.0,,1671.0,,12138.0,,818573.0,,1442760.0,,1387998.0,,54762.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,201912,N,U,Y,17568.0,,0.0,,17568.0,,10470.0,,1668.0,,12138.0,,825346.0,,1456532.0,,1400319.0,,56213.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,202001,N,P,N,29094.0,,0.0,,29094.0,,15275.0,,2250.0,,17525.0,,816467.0,,1439113.0,,1385390.0,,53723.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,202001,N,U,Y,29094.0,,0.0,,29094.0,,15282.0,,2242.0,,17524.0,,829362.0,,1459394.0,,1330550.0,,128844.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,202002,N,P,N,29892.0,,0.0,,29892.0,,14378.0,,1989.0,,16367.0,,814986.0,,1432514.0,,1310178.0,,122336.0,,,,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,,,,,, +TN,Tennessee,202002,N,U,Y,30555.0,,0.0,,30555.0,,14378.0,,1988.0,,16366.0,,822161.0,,1447919.0,,1323204.0,,124715.0,,,,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,,,,,, +TN,Tennessee,202003,N,P,N,35592.0,,0.0,,35592.0,,17350.0,,2134.0,,19484.0,,812433.0,,1428369.0,,1306671.0,,121698.0,,,,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,,,,,, +TN,Tennessee,202003,N,U,Y,35592.0,,0.0,,35592.0,,17348.0,,2137.0,,19485.0,,819001.0,,1442600.0,,1318830.0,,123770.0,,,,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,,,,,, +TN,Tennessee,202004,N,P,N,24800.0,,0.0,,24800.0,,15706.0,,2001.0,,17707.0,,825460.0,,1453382.0,,1332352.0,,121030.0,,,,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,,,,,, +TN,Tennessee,202004,N,U,Y,24800.0,,0.0,,24800.0,,15707.0,,1999.0,,17706.0,,829426.0,,1464168.0,,1341496.0,,122672.0,,,,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,,,,,, +TN,Tennessee,202005,N,P,N,22416.0,,0.0,,22416.0,,9686.0,,1239.0,,10925.0,,835098.0,,1472514.0,,1349962.0,,122552.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,202005,N,U,Y,22416.0,,0.0,,22416.0,,9679.0,,1239.0,,10918.0,,836814.0,,1479431.0,,1355677.0,,123754.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,202006,N,P,N,26013.0,,0.0,,26013.0,,10846.0,,1481.0,,12327.0,,843484.0,,1489586.0,,1365194.0,,124392.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,202006,N,U,Y,26013.0,,0.0,,26013.0,,10840.0,,1479.0,,12319.0,,844980.0,,1496239.0,,1370834.0,,125405.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,202007,N,P,N,25644.0,,0.0,,25644.0,,11336.0,,1537.0,,12873.0,,852442.0,,1506898.0,,1380859.0,,126039.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,202007,N,U,Y,25644.0,,0.0,,25644.0,,11333.0,,1537.0,,12870.0,,852919.0,,1512194.0,,1385209.0,,126985.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,202008,N,P,N,25570.0,,0.0,,25570.0,,10091.0,,1405.0,,11496.0,,859658.0,,1522142.0,,1394670.0,,127472.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,202008,N,U,Y,25570.0,,0.0,,25570.0,,10668.0,,834.0,,11502.0,,860423.0,,1527568.0,,1399299.0,,128269.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,202009,N,P,N,24287.0,,0.0,,24287.0,,9789.0,,753.0,,10542.0,,866108.0,,1535907.0,,1407274.0,,128633.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,202009,N,U,Y,24287.0,,0.0,,24287.0,,9787.0,,753.0,,10540.0,,866570.0,,1540767.0,,1411597.0,,129170.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,202010,N,P,N,26160.0,,0.0,,26160.0,,8797.0,,573.0,,9370.0,,871466.0,,1548091.0,,1418541.0,,129550.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,202010,N,U,Y,26160.0,,0.0,,26160.0,,8794.0,,573.0,,9367.0,,871860.0,,1552736.0,,1422251.0,,130485.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,202011,N,P,N,24427.0,,0.0,,24427.0,,8600.0,,782.0,,9382.0,,876501.0,,1559844.0,,1428838.0,,131006.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,202011,N,U,Y,24427.0,,0.0,,24427.0,,8600.0,,782.0,,9382.0,,877263.0,,1564811.0,,1432775.0,,132036.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,202012,N,P,N,24539.0,,0.0,,24539.0,,8660.0,,1007.0,,9667.0,,880929.0,,1570865.0,,1439144.0,,131721.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,202012,N,U,Y,24539.0,,0.0,,24539.0,,8658.0,,1005.0,,9663.0,,881751.0,,1575887.0,,1443175.0,,132712.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,202101,N,P,N,28808.0,,0.0,,28808.0,,9613.0,,1022.0,,10635.0,,834674.0,,1513915.0,,1383641.0,,130274.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,202101,N,U,Y,28808.0,,0.0,,28808.0,,9611.0,,1022.0,,10633.0,,839281.0,,1522557.0,,1391423.0,,131134.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,202102,N,P,N,21063.0,,0.0,,21063.0,,7635.0,,660.0,,8295.0,,840300.0,,1527705.0,,1396589.0,,131116.0,,,,5428.0,,2803.0,,1483.0,,635.0,,267.0,,,,,,, +TN,Tennessee,202102,N,U,Y,21063.0,,0.0,,21063.0,,7631.0,,660.0,,8291.0,,845256.0,,1541352.0,,1409127.0,,132225.0,,,,5428.0,,2803.0,,1483.0,,635.0,,267.0,,,,,,, +TN,Tennessee,202103,N,P,N,23212.0,,0.0,,23212.0,,8405.0,,848.0,,9253.0,,847146.0,,1548317.0,,1416329.0,,131988.0,,,,6066.0,,3383.0,,1668.0,,550.0,,328.0,,,,,,, +TN,Tennessee,202103,N,U,Y,23212.0,,0.0,,23212.0,,8404.0,,847.0,,9251.0,,850244.0,,1553757.0,,1421125.0,,132632.0,,,,6066.0,,3383.0,,1668.0,,550.0,,328.0,,,,,,, +TN,Tennessee,202104,N,P,N,21045.0,,0.0,,21045.0,,7511.0,,689.0,,8200.0,,849912.0,,1558099.0,,1427267.0,,130832.0,,,,5528.0,,3579.0,,1501.0,,504.0,,402.0,,,,,,, +TN,Tennessee,202104,N,U,Y,21045.0,,0.0,,21045.0,,7510.0,,688.0,,8198.0,,854793.0,,1567166.0,,1435232.0,,131934.0,,,,5528.0,,3579.0,,1501.0,,504.0,,402.0,,,,,,, +TN,Tennessee,202105,N,P,N,22271.0,,0.0,,22271.0,,7233.0,,739.0,,7972.0,,854587.0,,1571618.0,,1440264.0,,131354.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,202105,N,U,Y,22271.0,,0.0,,22271.0,,7228.0,,739.0,,7967.0,,858266.0,,1578085.0,,1445840.0,,132245.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,202106,N,P,N,26805.0,,0.0,,26805.0,,7745.0,,813.0,,8558.0,,860548.0,,1584382.0,,1450515.0,,133867.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,202106,N,U,Y,26805.0,,0.0,,26805.0,,7742.0,,813.0,,8555.0,,863506.0,,1590173.0,,1455649.0,,134524.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,202107,N,P,N,22515.0,,0.0,,22515.0,,6948.0,,676.0,,7624.0,,865133.0,,1595742.0,,1459946.0,,135796.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,202107,N,U,Y,22515.0,,0.0,,22515.0,,6947.0,,675.0,,7622.0,,868420.0,,1600939.0,,1464424.0,,136515.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,202108,N,P,N,22082.0,,0.0,,22082.0,,8080.0,,780.0,,8860.0,,870140.0,,1607109.0,,1469844.0,,137265.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,202108,N,U,Y,22082.0,,0.0,,22082.0,,7773.0,,1081.0,,8854.0,,873874.0,,1613252.0,,1475029.0,,138223.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,202109,N,P,N,20941.0,,0.0,,20941.0,,7851.0,,1405.0,,9256.0,,875951.0,,1619571.0,,1480528.0,,139043.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,202109,N,U,Y,20941.0,,0.0,,20941.0,,7884.0,,1372.0,,9256.0,,879366.0,,1624636.0,,1484968.0,,139668.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,202110,N,P,N,21517.0,,0.0,,21517.0,,6675.0,,926.0,,7601.0,,880637.0,,1629902.0,,1489747.0,,140155.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,202110,N,U,Y,21517.0,,0.0,,21517.0,,6627.0,,896.0,,7523.0,,883714.0,,1634731.0,,1494019.0,,140712.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,202111,N,P,N,22038.0,,0.0,,22038.0,,7103.0,,1004.0,,8107.0,,885365.0,,1640639.0,,1498921.0,,141718.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,202111,N,U,Y,22038.0,,0.0,,22038.0,,7124.0,,980.0,,8104.0,,888379.0,,1646812.0,,1504476.0,,142336.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,202112,N,P,N,17647.0,,0.0,,17647.0,,6639.0,,929.0,,7568.0,,888728.0,,1651733.0,,1509134.0,,142599.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,202112,N,U,Y,17606.0,,0.0,,17606.0,,6645.0,,912.0,,7557.0,,891942.0,,1656694.0,,1513399.0,,143295.0,,,,,,,,,,,,,,,,,,, +TN,Tennessee,202201,N,P,N,16684.0,,0.0,,16684.0,,6811.0,,1095.0,,7906.0,,892209.0,,1661351.0,,1517971.0,,143380.0,,,,4795.0,,4507.0,,1607.0,,1002.0,,274.0,,,,,,, +TN,Tennessee,202201,N,U,Y,16684.0,,0.0,,16684.0,,6810.0,,1075.0,,7885.0,,895658.0,,1666108.0,,1522048.0,,144060.0,,,,4795.0,,4507.0,,1607.0,,1002.0,,274.0,,,,,,, +TN,Tennessee,202202,N,P,N,17733.0,,0.0,,17733.0,,5962.0,,964.0,,6926.0,,895810.0,,1669271.0,,1524771.0,,144500.0,,,,3862.0,,2970.0,,1167.0,,860.0,,228.0,,,,,,, +TN,Tennessee,202202,N,U,Y,17733.0,,0.0,,17733.0,,6214.0,,722.0,,6936.0,,901050.0,,1677049.0,,1530331.0,,146718.0,,,,3862.0,,2970.0,,1167.0,,860.0,,228.0,,,,,,, +TN,Tennessee,202203,N,P,N,20397.0,,0.0,,20397.0,,6757.0,,911.0,,7668.0,,899682.0,,1678920.0,,1534999.0,,143921.0,,,,4625.0,,2619.0,,1192.0,,463.0,,277.0,,,,,,, +TN,Tennessee,202203,N,U,Y,20397.0,,0.0,,20397.0,,6758.0,,908.0,,7666.0,,902544.0,,1683493.0,,1539116.0,,144377.0,,,,4625.0,,2619.0,,1192.0,,463.0,,277.0,,,,,,, +TN,Tennessee,202204,N,P,N,18686.0,,0.0,,18686.0,,6131.0,,874.0,,7005.0,,902497.0,,1688472.0,,1548160.0,,140312.0,,,,3952.0,,2418.0,,1049.0,,386.0,,232.0,,,,,,, +TN,Tennessee,202204,N,U,Y,18686.0,,0.0,,18686.0,,6140.0,,865.0,,7005.0,,906528.0,,1694051.0,,1553288.0,,140763.0,,,,3952.0,,2418.0,,1049.0,,386.0,,232.0,,,,,,, +TN,Tennessee,202205,N,P,N,19053.0,,0.0,,19053.0,,6349.0,,935.0,,7284.0,,907448.0,,1697498.0,,1553515.0,,143983.0,,,,4179.0,,2373.0,,981.0,,427.0,,283.0,,,,,,, +TN,Tennessee,202205,N,U,Y,19054.0,,0.0,,19054.0,,6351.0,,930.0,,7281.0,,911068.0,,1702783.0,,1558302.0,,144481.0,,,,4179.0,,2373.0,,981.0,,427.0,,283.0,,,,,,, +TN,Tennessee,202206,N,P,N,18933.0,,0.0,,18933.0,,6570.0,,961.0,,7531.0,,912368.0,,1707210.0,,1562541.0,,144669.0,,,,4247.0,,2656.0,,1079.0,,482.0,,182.0,,,,,,, +TN,Tennessee,202206,N,U,Y,18932.0,,0.0,,18932.0,,6576.0,,953.0,,7529.0,,914730.0,,1710987.0,,1565896.0,,145091.0,,,,4247.0,,2656.0,,1079.0,,482.0,,182.0,,,,,,, +TN,Tennessee,202207,N,P,N,17687.0,,0.0,,17687.0,,6787.0,,873.0,,7660.0,,916071.0,,1715809.0,,1570613.0,,145196.0,,,,4508.0,,2747.0,,1151.0,,468.0,,167.0,,,,,,, +TN,Tennessee,202207,N,U,Y,17687.0,,0.0,,17687.0,,6785.0,,874.0,,7659.0,,918758.0,,1719939.0,,1574091.0,,145848.0,,,,4508.0,,2747.0,,1151.0,,468.0,,167.0,,,,,,, +TN,Tennessee,202208,N,P,N,18725.0,,0.0,,18725.0,,8397.0,,1304.0,,9701.0,,921230.0,,1726465.0,,1580099.0,,146366.0,,,,5524.0,,3072.0,,1445.0,,644.0,,239.0,,,,,,, +TN,Tennessee,202208,N,U,Y,18725.0,,0.0,,18725.0,,8393.0,,1302.0,,9695.0,,923613.0,,1729938.0,,1582946.0,,146992.0,,,,5524.0,,3072.0,,1445.0,,644.0,,239.0,,,,,,, +TN,Tennessee,202209,N,P,N,16586.0,,0.0,,16586.0,,6986.0,,1044.0,,8030.0,,925091.0,,1735419.0,,1588384.0,,147035.0,,,,4273.0,,2832.0,,1293.0,,497.0,,181.0,,,,,,, +TN,Tennessee,202209,N,U,Y,16586.0,,0.0,,16586.0,,7009.0,,1020.0,,8029.0,,927012.0,,1737919.0,,1590414.0,,147505.0,,,,4273.0,,2832.0,,1293.0,,497.0,,181.0,,,,,,, +TN,Tennessee,202210,N,P,N,17038.0,,0.0,,17038.0,,7148.0,,1012.0,,8160.0,,928153.0,,1742626.0,,1595048.0,,147578.0,,,,4246.0,,3226.0,,1058.0,,594.0,,552.0,,,,,,, +TN,Tennessee,202210,N,U,Y,17037.0,,0.0,,17037.0,,7156.0,,1007.0,,8163.0,,930258.0,,1745725.0,,1597641.0,,148084.0,,,,4246.0,,3226.0,,1058.0,,594.0,,552.0,,,,,,, +TN,Tennessee,202211,N,P,N,17715.0,,0.0,,17715.0,,6844.0,,1091.0,,7935.0,,932310.0,,1751942.0,,1603252.0,,148690.0,,,,7394.0,,5775.0,,1392.0,,537.0,,237.0,,,,,,, +TN,Tennessee,202211,N,U,Y,17712.0,,0.0,,17712.0,,6864.0,,1069.0,,7933.0,,934521.0,,1754979.0,,1605635.0,,149344.0,,,,7394.0,,5775.0,,1392.0,,537.0,,237.0,,,,,,, +TN,Tennessee,202212,N,P,N,16674.0,,0.0,,16674.0,,6150.0,,897.0,,7047.0,,936060.0,,1760685.0,,1611044.0,,149641.0,,,,5972.0,,3392.0,,933.0,,564.0,,272.0,,,,,,, +TN,Tennessee,202212,N,U,Y,16674.0,,0.0,,16674.0,,6150.0,,895.0,,7045.0,,939081.0,,1764906.0,,1614485.0,,150421.0,,,,5972.0,,3392.0,,933.0,,564.0,,272.0,,,,,,, +TN,Tennessee,202301,N,P,N,24571.0,,0.0,,24571.0,,8352.0,,1378.0,,9730.0,,941237.0,,1774022.0,,1622521.0,,151501.0,,,,5859.0,,5352.0,,2180.0,,1034.0,,383.0,,,,,,, +TN,Tennessee,202301,N,U,Y,24571.0,,0.0,,24571.0,,8200.0,,1337.0,,9537.0,,945116.0,,1785811.0,,1633583.0,,152228.0,,,,5859.0,,5352.0,,2180.0,,1034.0,,383.0,,,,,,, +TN,Tennessee,202302,N,P,N,19883.0,,0.0,,19883.0,,6566.0,,1215.0,,7781.0,,946228.0,,1790060.0,,1637854.0,,152206.0,,,,4086.0,,3378.0,,1356.0,,764.0,,340.0,,,,,,, +TN,Tennessee,202302,N,U,Y,19883.0,,0.0,,19883.0,,6595.0,,1186.0,,7781.0,,948557.0,,1793120.0,,1640446.0,,152674.0,,,,4086.0,,3378.0,,1356.0,,764.0,,340.0,,,,,,, +TN,Tennessee,202303,N,P,N,22355.0,,0.0,,22355.0,,7274.0,,1173.0,,8447.0,,949738.0,,1798421.0,,1650389.0,,148032.0,,,,4952.0,,3272.0,,1292.0,,431.0,,192.0,,52039.0,Does not include all calls received after business hours,0.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.003,Callbacks are included; Does not include all calls received after business hours +TN,Tennessee,202303,N,U,Y,22355.0,,0.0,,22355.0,,7269.0,,1159.0,,8428.0,,951491.0,,1801567.0,,1653118.0,,148449.0,,,,4952.0,,3272.0,,1292.0,,431.0,,192.0,,52039.0,Does not include all calls received after business hours,0.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.003,Callbacks are included; Does not include all calls received after business hours +TN,Tennessee,202304,N,P,N,21388.0,,0.0,,21388.0,,6833.0,,971.0,,7804.0,,951076.0,,1804180.0,,1651780.0,,152400.0,,,,4385.0,,3280.0,,975.0,,391.0,,144.0,,50806.0,Does not include all calls received after business hours,0.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.007,Callbacks are included; Does not include all calls received after business hours +TN,Tennessee,202304,N,U,Y,21388.0,,0.0,,21388.0,,6850.0,,949.0,,7799.0,,953849.0,,1812491.0,,1659589.0,,152902.0,,,,4385.0,,3280.0,,975.0,,391.0,,144.0,,50806.0,Does not include all calls received after business hours,0.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.007,Callbacks are included; Does not include all calls received after business hours +TN,Tennessee,202305,N,P,N,23440.0,,0.0,,23440.0,,6906.0,,1203.0,,8109.0,,951983.0,,1810463.0,,1659335.0,,151128.0,,,,4449.0,,3450.0,,1064.0,,482.0,,122.0,,60066.0,Does not include all calls received after business hours,0.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.006,Callbacks are included; Does not include all calls received after business hours +TN,Tennessee,202305,N,U,Y,23440.0,,0.0,,23440.0,,6922.0,,1184.0,,8106.0,,954371.0,,1814686.0,,1662895.0,,151791.0,,,,4449.0,,3450.0,,1064.0,,482.0,,122.0,,60066.0,Does not include all calls received after business hours,0.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.006,Callbacks are included; Does not include all calls received after business hours +TN,Tennessee,202306,N,P,N,24839.0,,0.0,,24839.0,,7715.0,,1199.0,,8914.0,,944628.0,,1791332.0,,1641505.0,,149827.0,,,,4536.0,,3657.0,,1461.0,,418.0,,154.0,,66840.0,Does not include all calls received after business hours,0.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.001,Callbacks are included; Does not include all calls received after business hours +TN,Tennessee,202306,N,U,Y,24839.0,,0.0,,24839.0,,7727.0,,1182.0,,8909.0,,948419.0,,1797729.0,,1646977.0,,150752.0,,,,4536.0,,3657.0,,1461.0,,418.0,,154.0,,66840.0,Does not include all calls received after business hours,0.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.001,Callbacks are included; Does not include all calls received after business hours +TN,Tennessee,202307,N,P,N,26460.0,,0.0,,26460.0,,7996.0,,1317.0,,9313.0,,939261.0,,1775552.0,,1626574.0,,148978.0,,,,4807.0,,3449.0,,1678.0,,731.0,,162.0,,78534.0,Does not include all calls received after business hours,2.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.003,Callbacks are included; Does not include all calls received after business hours +TN,Tennessee,202307,N,U,Y,26460.0,,0.0,,26460.0,,8023.0,,1288.0,,9311.0,,944220.0,,1783668.0,,1633331.0,,150337.0,,,,4807.0,,3449.0,,1678.0,,731.0,,162.0,,78534.0,Does not include all calls received after business hours,2.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.003,Callbacks are included; Does not include all calls received after business hours +TN,Tennessee,202308,N,P,N,31807.0,,0.0,,31807.0,,8217.0,,1827.0,,10044.0,,929511.0,,1744834.0,,1595528.0,,149306.0,,,,5791.0,,2082.0,,3411.0,,781.0,,477.0,,103929.0,Does not include all calls received after business hours,15.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.127,Callbacks are included; Does not include all calls received after business hours +TN,Tennessee,202308,N,U,Y,31807.0,,0.0,,31807.0,,8221.0,,1818.0,,10039.0,,938326.0,,1759852.0,,1608357.0,,151495.0,,,,5791.0,,2082.0,,3411.0,,781.0,,477.0,,103929.0,Does not include all calls received after business hours,15.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.127,Callbacks are included; Does not include all calls received after business hours +TN,Tennessee,202309,N,P,N,28021.0,,0.0,,28021.0,,9157.0,,2143.0,,11300.0,,925441.0,,1729475.0,,1580049.0,,149426.0,,,,5423.0,,2078.0,,3214.0,,643.0,,403.0,,92404.0,Does not include all calls received after business hours,19.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.199,Callbacks are included; Does not include all calls received after business hours +TN,Tennessee,202309,N,U,Y,28021.0,,0.0,,28021.0,,9158.0,,2143.0,,11301.0,,931464.0,,1739261.0,,1587635.0,,151626.0,,,,5423.0,,2078.0,,3214.0,,643.0,,403.0,,92404.0,Does not include all calls received after business hours,19.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.199,Callbacks are included; Does not include all calls received after business hours +TN,Tennessee,202310,N,P,N,31478.0,,0.0,,31478.0,,8991.0,,1909.0,,10900.0,,911434.0,,1685834.0,,1536689.0,,149145.0,,,,4636.0,,3002.0,,2038.0,,936.0,,470.0,,109833.0,Does not include all calls received after business hours,16.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.166,Callbacks are included; Does not include all calls received after business hours +TN,Tennessee,202310,N,U,Y,31478.0,,0.0,,31478.0,,8976.0,,1908.0,,10884.0,,917465.0,,1695432.0,,1543827.0,,151605.0,,,,4636.0,,3002.0,,2038.0,,936.0,,470.0,,109833.0,Does not include all calls received after business hours,16.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.166,Callbacks are included; Does not include all calls received after business hours +TN,Tennessee,202311,N,P,N,32614.0,,0.0,,32614.0,,9248.0,,1992.0,,11240.0,,905954.0,,1661710.0,,1512828.0,,148882.0,,,,5016.0,,2591.0,,1562.0,,643.0,,889.0,,122763.0,Does not include all calls received after business hours,36.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.264,Callbacks are included; Does not include all calls received after business hours +TN,Tennessee,202311,N,U,Y,32614.0,,0.0,,32614.0,,9248.0,,1992.0,,11240.0,,912169.0,,1670564.0,,1518206.0,,152358.0,,,,5016.0,,2591.0,,1562.0,,643.0,,889.0,,122763.0,Does not include all calls received after business hours,36.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.264,Callbacks are included; Does not include all calls received after business hours +TN,Tennessee,202312,N,P,N,33821.0,,0.0,,33821.0,,9240.0,,1915.0,,11155.0,,894946.0,,1627147.0,,1478831.0,,148316.0,,,,7080.0,,2224.0,,2810.0,,642.0,,930.0,,108984.0,Does not include all calls received after business hours,31.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.252,Callbacks are included; Does not include all calls received after business hours +TN,Tennessee,202312,N,U,Y,33821.0,,0.0,,33821.0,,9240.0,,1915.0,,11155.0,,903886.0,,1640064.0,,1486640.0,,153424.0,,,,7080.0,,2224.0,,2810.0,,642.0,,930.0,,108984.0,Does not include all calls received after business hours,31.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.252,Callbacks are included; Does not include all calls received after business hours +TN,Tennessee,202401,N,P,N,42652.0,,0.0,,42652.0,,11107.0,,2162.0,,13269.0,,879994.0,,1592846.0,,1447319.0,,145527.0,,,,6402.0,,1841.0,,2794.0,,1079.0,,835.0,,137705.0,Does not include all calls received after business hours,34.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.262,Callbacks are included; Does not include all calls received after business hours +TN,Tennessee,202401,N,U,Y,42652.0,,0.0,,42652.0,,11107.0,,2162.0,,13269.0,,887381.0,,1603808.0,,1454651.0,,149157.0,,,,6402.0,,1841.0,,2794.0,,1079.0,,835.0,,137705.0,Does not include all calls received after business hours,34.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.262,Callbacks are included; Does not include all calls received after business hours +TN,Tennessee,202402,N,P,N,42031.0,,0.0,,42031.0,,11340.0,,2194.0,,13534.0,,863499.0,,1549311.0,,1403734.0,,145577.0,,,,5795.0,,1848.0,,2754.0,,2470.0,,1115.0,,127719.0,Does not include all calls received after business hours,29.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.194,Callbacks are included; Does not include all calls received after business hours +TN,Tennessee,202402,N,U,Y,42031.0,,0.0,,42031.0,,11340.0,,2194.0,,13534.0,,870438.0,,1560078.0,,1410820.0,,149258.0,,,,5795.0,,1848.0,,2754.0,,2470.0,,1115.0,,127719.0,Does not include all calls received after business hours,29.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.194,Callbacks are included; Does not include all calls received after business hours +TN,Tennessee,202403,N,P,N,40626.0,,0.0,,40626.0,,10065.0,,1872.0,,11937.0,,852390.0,,1519897.0,,1378033.0,,141864.0,,,,4667.0,,1592.0,,3550.0,,1474.0,,1399.0,,104965.0,Does not include all calls received after business hours,8.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.097,Callbacks are included; Does not include all calls received after business hours +TN,Tennessee,202403,N,U,Y,40626.0,,0.0,,40626.0,,10065.0,,1872.0,,11937.0,,860681.0,,1532758.0,,1386876.0,,145882.0,,,,4667.0,,1592.0,,3550.0,,1474.0,,1399.0,,104965.0,Does not include all calls received after business hours,8.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.097,Callbacks are included; Does not include all calls received after business hours +TN,Tennessee,202404,N,P,N,42198.0,,0.0,,42198.0,,12105.0,,2196.0,,14301.0,,842804.0,,1488857.0,,1347470.0,,141387.0,,,,4449.0,,1078.0,,2361.0,,1166.0,,2067.0,,113380.0,Does not include all calls received after business hours,5.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.073,Callbacks are included; Does not include all calls received after business hours +TN,Tennessee,202404,N,U,Y,42198.0,,0.0,,42198.0,,12105.0,,2196.0,,14301.0,,851375.0,,1501400.0,,1354855.0,,146545.0,,,,4449.0,,1078.0,,2361.0,,1166.0,,2067.0,,113380.0,Does not include all calls received after business hours,5.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.073,Callbacks are included; Does not include all calls received after business hours +TN,Tennessee,202405,N,P,N,42335.0,,0.0,,42335.0,,12002.0,,2387.0,,14389.0,,827383.0,,1442757.0,,1298562.0,,144195.0,,,,5065.0,,1068.0,,2619.0,,1153.0,,2871.0,,101674.0,Does not include all calls received after business hours,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.017,Callbacks are included; Does not include all calls received after business hours +TN,Tennessee,202405,N,U,Y,42335.0,,0.0,,42335.0,,12002.0,,2387.0,,14389.0,,836837.0,,1456825.0,,1308253.0,,148572.0,,,,5065.0,,1068.0,,2619.0,,1153.0,,2871.0,,101674.0,Does not include all calls received after business hours,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.017,Callbacks are included; Does not include all calls received after business hours +TN,Tennessee,202406,N,P,N,39108.0,,0.0,,39108.0,,13513.0,,3452.0,,16965.0,,831924.0,,1441839.0,,1293213.0,,148626.0,,,,5209.0,,2910.0,,2909.0,,1890.0,,4555.0,,86609.0,Does not include all calls received after business hours,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.005,Callbacks are included; Does not include all calls received after business hours +TN,Tennessee,202406,N,U,Y,39108.0,,0.0,,39108.0,,13513.0,,3452.0,,16965.0,,841940.0,,1456541.0,,1302537.0,,154004.0,,,,5209.0,,2910.0,,2909.0,,1890.0,,4555.0,,86609.0,Does not include all calls received after business hours,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.005,Callbacks are included; Does not include all calls received after business hours +TN,Tennessee,202407,N,P,N,44104.0,,0.0,,44104.0,,13788.0,,3133.0,,16921.0,,839773.0,,1447311.0,,1294456.0,,152855.0,,607538.0,,6454.0,,3948.0,,2285.0,,830.0,,1373.0,,98188.0,Does not include all calls received after business hours,0.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.007,Callbacks are included; Does not include all calls received after business hours +TN,Tennessee,202407,N,U,Y,44104.0,,0.0,,44104.0,,13788.0,,3133.0,,16921.0,,848624.0,,1459868.0,,1303080.0,,156788.0,,611244.0,,6454.0,,3948.0,,2285.0,,830.0,,1373.0,,98188.0,Does not include all calls received after business hours,0.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.007,Callbacks are included; Does not include all calls received after business hours +TN,Tennessee,202408,N,P,N,42495.0,,0.0,,42495.0,,14132.0,,2999.0,,17131.0,,844029.0,,1442392.0,,1283420.0,,158972.0,,598363.0,,6237.0,,4708.0,,2689.0,,593.0,,859.0,,93054.0,Does not include all calls received after business hours,0.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.006,Callbacks are included; Does not include all calls received after business hours +TN,Tennessee,202408,N,U,Y,42495.0,,0.0,,42495.0,,14132.0,,2999.0,,17131.0,,849920.0,,1451649.0,,1289643.0,,162006.0,,601729.0,,6237.0,,4708.0,,2689.0,,593.0,,859.0,,93054.0,Does not include all calls received after business hours,0.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.006,Callbacks are included; Does not include all calls received after business hours +TN,Tennessee,202409,N,P,N,34450.0,,0.0,,34450.0,,10713.0,,2220.0,,12933.0,,845266.0,,1439827.0,,1278570.0,,161257.0,,594561.0,,5184.0,,3165.0,,2070.0,,682.0,,507.0,,78678.0,Does not include all calls received after business hours,0.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.003,Callbacks are included; Does not include all calls received after business hours +TN,Tennessee,202409,N,U,Y,34450.0,,0.0,,34450.0,,10713.0,,2220.0,,12933.0,,851488.0,,1450843.0,,1286545.0,,164298.0,,599355.0,,5184.0,,3165.0,,2070.0,,682.0,,507.0,,78678.0,Does not include all calls received after business hours,0.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.003,Callbacks are included; Does not include all calls received after business hours +TN,Tennessee,202410,N,P,N,35151.0,,0.0,,35151.0,,11356.0,,2028.0,,13384.0,,843367.0,,1436211.0,,1271910.0,,164301.0,,592844.0,,4853.0,,2113.0,,3023.0,,615.0,,525.0,,85239.0,Does not include all calls received after business hours,0.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.002,Callbacks are included; Does not include all calls received after business hours +TN,Tennessee,202410,N,U,Y,35151.0,,0.0,,35151.0,,11356.0,,2028.0,,13384.0,,848266.0,,1443418.0,,1276724.0,,166694.0,,595152.0,,4853.0,,2113.0,,3023.0,,615.0,,525.0,,85239.0,Does not include all calls received after business hours,0.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.002,Callbacks are included; Does not include all calls received after business hours +TN,Tennessee,202411,N,P,N,33205.0,,0.0,,33205.0,,10301.0,,2007.0,,12308.0,,843116.0,,1436312.0,,1269667.0,,166645.0,,593196.0,,6466.0,,2328.0,,3825.0,,605.0,,496.0,,74505.0,Does not include all calls received after business hours,0.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.002,Callbacks are included; Does not include all calls received after business hours +TN,Tennessee,202411,N,U,Y,33205.0,,0.0,,33205.0,,10301.0,,2007.0,,12308.0,,848763.0,,1444552.0,,1274916.0,,169636.0,,595789.0,,6466.0,,2328.0,,3825.0,,605.0,,496.0,,74505.0,Does not include all calls received after business hours,0.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.002,Callbacks are included; Does not include all calls received after business hours +TN,Tennessee,202412,N,P,N,36188.0,,0.0,,36188.0,,10794.0,,2224.0,,13018.0,,844126.0,,1436955.0,,1268904.0,,168051.0,,592829.0,,7525.0,,3498.0,,2904.0,,1021.0,,503.0,,74417.0,Does not include all calls received after business hours,0.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.001,Callbacks are included; Does not include all calls received after business hours +TN,Tennessee,202412,N,U,Y,36188.0,,0.0,,36188.0,,10794.0,,2224.0,,13018.0,,850482.0,,1446477.0,,1274882.0,,171595.0,,595995.0,,7525.0,,3498.0,,2904.0,,1021.0,,503.0,,74417.0,Does not include all calls received after business hours,0.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.001,Callbacks are included; Does not include all calls received after business hours +TN,Tennessee,202501,N,P,N,49965.0,,0.0,,49965.0,,12896.0,,2566.0,,15462.0,,842204.0,,1433094.0,,1262302.0,,170792.0,,590890.0,,6453.0,,2802.0,,3379.0,,2804.0,,1190.0,,91992.0,Does not include all calls received after business hours,0.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.001,Callbacks are included; Does not include all calls received after business hours +TN,Tennessee,202501,N,U,Y,49965.0,,0.0,,49965.0,,12896.0,,2566.0,,15462.0,,847655.0,,1441443.0,,1267680.0,,173763.0,,593788.0,,6453.0,,2802.0,,3379.0,,2804.0,,1190.0,,91992.0,Does not include all calls received after business hours,0.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.001,Callbacks are included; Does not include all calls received after business hours +TN,Tennessee,202502,N,P,N,35525.0,,0.0,,35525.0,,10052.0,,1771.0,,11823.0,,844081.0,,1433222.0,,1262905.0,,170317.0,,589141.0,,4166.0,,1731.0,,1501.0,,804.0,,631.0,,71608.0,Does not include all calls received after business hours,0.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.001,Callbacks are included; Does not include all calls received after business hours +TN,Tennessee,202502,N,U,Y,35525.0,,0.0,,35525.0,,10052.0,,1771.0,,11823.0,,849518.0,,1442194.0,,1269186.0,,173008.0,,592676.0,,4166.0,,1731.0,,1501.0,,804.0,,631.0,,71608.0,Does not include all calls received after business hours,0.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.001,Callbacks are included; Does not include all calls received after business hours +TN,Tennessee,202503,N,P,N,36268.0,,0.0,,36268.0,,10785.0,,1970.0,,12755.0,,847504.0,,1437344.0,,1264696.0,,172648.0,,589840.0,,4566.0,,1722.0,,2219.0,,1304.0,,907.0,,73748.0,Does not include all calls received after business hours,0.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.001,Callbacks are included; Does not include all calls received after business hours +TN,Tennessee,202503,N,U,Y,36268.0,,0.0,,36268.0,,10785.0,,1970.0,,12755.0,,852334.0,,1445222.0,,1270089.0,,175133.0,,592888.0,,4566.0,,1722.0,,2219.0,,1304.0,,907.0,,73748.0,Does not include all calls received after business hours,0.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.001,Callbacks are included; Does not include all calls received after business hours +TN,Tennessee,202504,N,P,N,33955.0,,0.0,,33955.0,,10992.0,,1971.0,,12963.0,,848228.0,,1435467.0,,1261604.0,,173863.0,,587239.0,,4517.0,,1924.0,,2512.0,,1031.0,,657.0,,66775.0,Does not include all calls received after business hours,0.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.001,Callbacks are included; Does not include all calls received after business hours +TN,Tennessee,202504,N,U,Y,33955.0,,0.0,,33955.0,,10992.0,,1971.0,,12963.0,,852181.0,,1441774.0,,1265926.0,,175848.0,,589593.0,,4517.0,,1924.0,,2512.0,,1031.0,,657.0,,66775.0,Does not include all calls received after business hours,0.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.001,Callbacks are included; Does not include all calls received after business hours +TN,Tennessee,202505,N,P,N,31257.0,,0.0,,31257.0,,9806.0,,1708.0,,11514.0,,847720.0,,1433398.0,,1258935.0,,174463.0,,585678.0,,4517.0,,2006.0,,2393.0,,487.0,,306.0,,60566.0,Does not include all calls received after business hours,0.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.001,Callbacks are included; Does not include all calls received after business hours +TN,Tennessee,202505,N,U,Y,31257.0,,0.0,,31257.0,,9806.0,,1708.0,,11514.0,,851420.0,,1439118.0,,1262471.0,,176647.0,,587698.0,,4517.0,,2006.0,,2393.0,,487.0,,306.0,,60566.0,Does not include all calls received after business hours,0.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.001,Callbacks are included; Does not include all calls received after business hours +TN,Tennessee,202506,N,P,N,30224.0,,0.0,,30224.0,,9818.0,,1748.0,,11566.0,,846152.0,,1430912.0,,1254875.0,,176037.0,,584760.0,,4205.0,,2914.0,,1670.0,,456.0,,524.0,,59615.0,Does not include all calls received after business hours,0.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.001,Callbacks are included; Does not include all calls received after business hours +TN,Tennessee,202506,N,U,Y,30224.0,,0.0,,30224.0,,9818.0,,1748.0,,11566.0,,849630.0,,1436320.0,,1258067.0,,178253.0,,586690.0,,4205.0,,2914.0,,1670.0,,456.0,,524.0,,59615.0,Does not include all calls received after business hours,0.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.001,Callbacks are included; Does not include all calls received after business hours +TN,Tennessee,202507,N,P,N,32261.0,,0.0,,32261.0,,10831.0,,1818.0,,12649.0,,847346.0,,1432503.0,,1255264.0,,177239.0,,585157.0,,4912.0,,3374.0,,1390.0,,416.0,,293.0,,68267.0,Does not include all calls received after business hours,0.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.001,Callbacks are included; Does not include all calls received after business hours +TN,Tennessee,202507,N,U,Y,32261.0,,0.0,,32261.0,,10831.0,,1818.0,,12649.0,,851041.0,,1438184.0,,1258608.0,,179576.0,,587143.0,,4912.0,,3374.0,,1390.0,,416.0,,293.0,,68267.0,Does not include all calls received after business hours,0.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.001,Callbacks are included; Does not include all calls received after business hours +TN,Tennessee,202508,N,P,N,32582.0,,0.0,,32582.0,,9796.0,,1725.0,,11521.0,,845563.0,,1428794.0,,1249998.0,,178796.0,,583231.0,,4506.0,,2372.0,,1671.0,,512.0,,225.0,,64730.0,Does not include all calls received after business hours,0.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.0,Callbacks are included; Does not include all calls received after business hours +TN,Tennessee,202508,N,U,Y,32582.0,,0.0,,32582.0,,9796.0,,1725.0,,11521.0,,849901.0,,1435315.0,,1254112.0,,181203.0,,585414.0,,4506.0,,2372.0,,1671.0,,512.0,,225.0,,64730.0,Does not include all calls received after business hours,0.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.0,Callbacks are included; Does not include all calls received after business hours +TN,Tennessee,202509,N,P,N,31418.0,,0.0,,31418.0,,10365.0,,1909.0,,12274.0,,844917.0,,1427353.0,,1246975.0,,180378.0,,582436.0,,5110.0,,1826.0,,2325.0,,694.0,,277.0,,64725.0,Does not include all calls received after business hours,0.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.001,Callbacks are included; Does not include all calls received after business hours +TN,Tennessee,202509,N,U,Y,31418.0,,0.0,,31418.0,,10365.0,,1909.0,,12274.0,,849660.0,,1434452.0,,1251458.0,,182994.0,,584792.0,,5110.0,,1826.0,,2325.0,,694.0,,277.0,,64725.0,Does not include all calls received after business hours,0.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.001,Callbacks are included; Does not include all calls received after business hours +TN,Tennessee,202510,N,P,N,31757.0,,0.0,,31757.0,,9833.0,,1752.0,,11585.0,,840241.0,,1419653.0,,1238129.0,,181524.0,,579412.0,,4977.0,,1221.0,,2152.0,,506.0,,276.0,,69601.0,Does not include all calls received after business hours,0.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.002,Callbacks are included; Does not include all calls received after business hours +TX,Texas,201309,N,U,Y,,,,,,,,,,,,,,,4203449.0,,,,,,,,,,,,,,,,,,,,,,, +TX,Texas,201706,N,P,N,129944.0,,0.0,,129944.0,,105639.0,,15519.0,,121158.0,,3490483.0,,4412128.0,,3863358.0,,548770.0,,,,,,,,,,,,,,,,,,, +TX,Texas,201706,N,U,Y,129944.0,,0.0,,129944.0,,105639.0,,15519.0,,121158.0,,3504916.0,,4431050.0,,3882210.0,,548840.0,,,,,,,,,,,,,,,,,,, +TX,Texas,201707,N,P,N,126036.0,,0.0,,126036.0,,100272.0,,13886.0,,114158.0,,3486444.0,,4411626.0,,3852372.0,,559254.0,,,,,,,,,,,,,,,,,,, +TX,Texas,201707,N,U,Y,126036.0,,0.0,,126036.0,,100134.0,,13886.0,,114020.0,,3503931.0,,4434104.0,,3874786.0,,559318.0,,,,,,,,,,,,,,,,,,, +TX,Texas,201708,N,P,N,139264.0,,0.0,,139264.0,,100106.0,,16031.0,,116137.0,,3494085.0,,4421285.0,,3841047.0,,580238.0,,,,,,,,,,,,,,,,,,, +TX,Texas,201708,N,U,Y,139264.0,,0.0,,139264.0,,100130.0,,16031.0,,116161.0,,3513218.0,,4444789.0,,3864515.0,,580274.0,,,,,,,,,,,,,,,,,,, +TX,Texas,201709,N,P,N,129178.0,,0.0,,129178.0,,95463.0,,16117.0,,111580.0,,3511326.0,,4434775.0,,3826087.0,,608688.0,,,,,,,,,,,,,,,,,,, +TX,Texas,201709,N,U,Y,129178.0,,0.0,,129178.0,,95396.0,,16116.0,,111512.0,,3527294.0,,4455818.0,,3847035.0,,608783.0,,,,,,,,,,,,,,,,,,, +TX,Texas,201710,N,P,N,122654.0,,0.0,,122654.0,,89447.0,,14350.0,,103797.0,,3526263.0,,4450358.0,,3906954.0,,543404.0,,,,,,,,,,,,,,,,,,, +TX,Texas,201710,N,U,Y,122654.0,,0.0,,122654.0,,89501.0,,14350.0,,103851.0,,3539403.0,,4467384.0,,3923901.0,,543483.0,,,,,,,,,,,,,,,,,,, +TX,Texas,201711,N,P,N,118902.0,,0.0,,118902.0,,82719.0,,14388.0,,97107.0,,3535621.0,,4458639.0,,3894085.0,,564554.0,,,,,,,,,,,,,,,,,,, +TX,Texas,201711,N,U,Y,118902.0,,0.0,,118902.0,,82695.0,,14388.0,,97083.0,,3551875.0,,4479268.0,,3914664.0,,564604.0,,,,,,,,,,,,,,,,,,, +TX,Texas,201712,N,P,N,107569.0,,0.0,,107569.0,,71230.0,,12293.0,,83523.0,,3529621.0,,4446935.0,,3863342.0,,583593.0,,,,,,,,,,,,,,,,,,, +TX,Texas,201712,N,U,Y,107569.0,,0.0,,107569.0,,71167.0,,12293.0,,83460.0,,3552079.0,,4474461.0,,3887970.0,,586491.0,,,,,,,,,,,,,,,,,,, +TX,Texas,201801,N,P,N,141692.0,,0.0,,141692.0,,94148.0,,17175.0,,111323.0,,3509398.0,,4421430.0,,3811156.0,,610274.0,,,,,,,,,,,,,,,,,,, +TX,Texas,201801,N,U,Y,141692.0,,0.0,,141692.0,,94107.0,,17175.0,,111282.0,,3534803.0,,4452925.0,,3839524.0,,613401.0,,,,,,,,,,,,,,,,,,, +TX,Texas,201802,N,P,N,118381.0,,0.0,,118381.0,,84549.0,,14874.0,,99423.0,,3495642.0,,4407687.0,,3776933.0,,630754.0,,,,23003.0,,25660.0,,63308.0,,6490.0,,3314.0,,,,,,, +TX,Texas,201802,N,U,Y,118381.0,,0.0,,118381.0,,84622.0,,14874.0,,99496.0,,3518422.0,,4436055.0,,3803351.0,,632704.0,,,,23003.0,,25660.0,,63308.0,,6490.0,,3314.0,,,,,,, +TX,Texas,201803,N,P,N,122551.0,,0.0,,122551.0,,94092.0,,17165.0,,111257.0,,3499160.0,,4414433.0,,3767906.0,,646527.0,,,,22774.0,,42145.0,,62465.0,,6285.0,,3012.0,,,,,,, +TX,Texas,201803,N,U,Y,122551.0,,0.0,,122551.0,,94105.0,,17165.0,,111270.0,,3499160.0,,4414433.0,,3767906.0,,646527.0,,,,22774.0,,42145.0,,62465.0,,6285.0,,3012.0,,,,,,, +TX,Texas,201804,N,P,N,127430.0,,0.0,,127430.0,,84709.0,,13212.0,,97921.0,,3480243.0,,4398226.0,,3768981.0,,629245.0,,,,25065.0,,31213.0,,51998.0,,5751.0,,2887.0,,,,,,, +TX,Texas,201804,N,U,Y,127430.0,,0.0,,127430.0,,84697.0,,13212.0,,97909.0,,3480243.0,,4398226.0,,3768981.0,,629245.0,,,,25065.0,,31213.0,,51998.0,,5751.0,,2887.0,,,,,,, +TX,Texas,201805,N,P,N,128430.0,,0.0,,128430.0,,90268.0,,14593.0,,104861.0,,3463236.0,,4376614.0,,3746860.0,,629754.0,,,,,,,,,,,,,,,,,,, +TX,Texas,201805,N,U,Y,128430.0,,0.0,,128430.0,,90204.0,,14593.0,,104797.0,,3463236.0,,4376614.0,,3746860.0,,629754.0,,,,,,,,,,,,,,,,,,, +TX,Texas,201806,N,P,N,122675.0,,0.0,,122675.0,,88935.0,,14235.0,,103170.0,,3446619.0,,4358677.0,,3739027.0,,619650.0,,,,,,,,,,,,,,,,,,, +TX,Texas,201806,N,U,Y,122675.0,,0.0,,122675.0,,88909.0,,14235.0,,103144.0,,3446619.0,,4358677.0,,3739027.0,,619650.0,,,,,,,,,,,,,,,,,,, +TX,Texas,201807,N,P,N,130947.0,,0.0,,130947.0,,86291.0,,13615.0,,99906.0,,3442001.0,,4355227.0,,3738797.0,,616430.0,,,,,,,,,,,,,,,,,,, +TX,Texas,201807,N,U,Y,130947.0,,0.0,,130947.0,,86308.0,,13615.0,,99923.0,,3442001.0,,4355227.0,,3738797.0,,616430.0,,,,,,,,,,,,,,,,,,, +TX,Texas,201808,N,P,N,140678.0,,0.0,,140678.0,,97450.0,,15189.0,,112639.0,,3444386.0,,4362456.0,,3745909.0,,616547.0,,,,,,,,,,,,,,,,,,, +TX,Texas,201808,N,U,Y,140678.0,,0.0,,140678.0,,97483.0,,15189.0,,112672.0,,3444386.0,,4362456.0,,3745909.0,,616547.0,,,,,,,,,,,,,,,,,,, +TX,Texas,201809,N,P,N,119714.0,,0.0,,119714.0,,88981.0,,14127.0,,103108.0,,3439217.0,,4354009.0,,3745746.0,,608263.0,,,,,,,,,,,,,,,,,,, +TX,Texas,201809,N,U,Y,119714.0,,0.0,,119714.0,,88991.0,,14127.0,,103118.0,,3439217.0,,4354009.0,,3745746.0,,608263.0,,,,,,,,,,,,,,,,,,, +TX,Texas,201810,N,P,N,133637.0,,0.0,,133637.0,,99778.0,,17013.0,,116791.0,,3435431.0,,4351367.0,,3732837.0,,618530.0,,,,,,,,,,,,,,,,,,, +TX,Texas,201810,N,U,Y,133637.0,,0.0,,133637.0,,99824.0,,17013.0,,116837.0,,3435431.0,,4351367.0,,3732837.0,,618530.0,,,,,,,,,,,,,,,,,,, +TX,Texas,201811,N,P,N,121402.0,,0.0,,121402.0,,82156.0,,13575.0,,95731.0,,3417651.0,,4324332.0,,3714118.0,,610214.0,,,,,,,,,,,,,,,,,,, +TX,Texas,201811,N,U,Y,121402.0,,0.0,,121402.0,,82176.0,,13575.0,,95751.0,,3417651.0,,4324332.0,,3714118.0,,610214.0,,,,,,,,,,,,,,,,,,, +TX,Texas,201812,N,P,N,103709.0,,0.0,,103709.0,,64879.0,,10703.0,,75582.0,,3406298.0,,4308644.0,,3701865.0,,606779.0,,,,,,,,,,,,,,,,,,, +TX,Texas,201812,N,U,Y,103709.0,,0.0,,103709.0,,64858.0,,10703.0,,75561.0,,3406298.0,,4308644.0,,3701865.0,,606779.0,,,,,,,,,,,,,,,,,,, +TX,Texas,201901,N,P,N,146420.0,,0.0,,146420.0,,104462.0,,19161.0,,123623.0,,3395989.0,,4297684.0,,3689464.0,,608220.0,,,,,,,,,,,,,,,,,,, +TX,Texas,201901,N,U,Y,146420.0,,0.0,,146420.0,,104468.0,,19161.0,,123629.0,,3395989.0,,4297684.0,,3689464.0,,608220.0,,,,,,,,,,,,,,,,,,, +TX,Texas,201902,N,P,N,118994.0,,0.0,,118994.0,,81446.0,,14508.0,,95954.0,,3383051.0,,4283333.0,,3693097.0,,590236.0,,,,23208.0,,32918.0,,49431.0,,10184.0,,5677.0,,,,,,, +TX,Texas,201902,N,U,Y,118994.0,,0.0,,118994.0,,81430.0,,14508.0,,95938.0,,3383051.0,,4283333.0,,3693097.0,,590236.0,,,,23208.0,,32918.0,,49431.0,,10184.0,,5677.0,,,,,,, +TX,Texas,201903,N,P,N,129669.0,,0.0,,129669.0,,87539.0,,15574.0,,103113.0,,3376850.0,,4278690.0,,3674836.0,,603854.0,,,,25603.0,,35881.0,,56896.0,,5755.0,,3618.0,,,,,,, +TX,Texas,201903,N,U,Y,129669.0,,0.0,,129669.0,,87561.0,,15574.0,,103135.0,,3376850.0,,4278690.0,,3674836.0,,603854.0,,,,25603.0,,35881.0,,56896.0,,5755.0,,3618.0,,,,,,, +TX,Texas,201904,N,P,N,141848.0,,0.0,,141848.0,,90212.0,,14342.0,,104554.0,,3337259.0,,4231596.0,,3645976.0,,585620.0,,,,27857.0,,30842.0,,55237.0,,8179.0,,3115.0,,,,,,, +TX,Texas,201904,N,U,Y,141848.0,,0.0,,141848.0,,90136.0,,14342.0,,104478.0,,3337259.0,,4231596.0,,3645976.0,,585620.0,,,,27857.0,,30842.0,,55237.0,,8179.0,,3115.0,,,,,,, +TX,Texas,201905,N,P,N,141944.0,,0.0,,141944.0,,89918.0,,13154.0,,103072.0,,3288623.0,,4180837.0,,3605294.0,,575543.0,,,,,,,,,,,,,,,,,,, +TX,Texas,201905,N,U,Y,141944.0,,0.0,,141944.0,,89889.0,,13154.0,,103043.0,,3288623.0,,4180837.0,,3605294.0,,575543.0,,,,,,,,,,,,,,,,,,, +TX,Texas,201906,N,P,N,130459.0,,0.0,,130459.0,,112595.0,,17293.0,,129888.0,,3303909.0,,4200139.0,,3620423.0,,579716.0,,,,,,,,,,,,,,,,,,, +TX,Texas,201906,N,U,Y,130459.0,,0.0,,130459.0,,112585.0,,17293.0,,129878.0,,3303909.0,,4200139.0,,3620423.0,,579716.0,,,,,,,,,,,,,,,,,,, +TX,Texas,201907,N,P,N,148898.0,,0.0,,148898.0,,103762.0,,15297.0,,119059.0,,3304170.0,,4202466.0,,3631639.0,,570827.0,,,,,,,,,,,,,,,,,,, +TX,Texas,201907,N,U,Y,148898.0,,0.0,,148898.0,,103754.0,,15297.0,,119051.0,,3304170.0,,4202466.0,,3631639.0,,570827.0,,,,,,,,,,,,,,,,,,, +TX,Texas,201908,N,P,N,148450.0,,0.0,,148450.0,,104051.0,,15608.0,,119659.0,,3318089.0,,4216809.0,,3641993.0,,574816.0,,,,,,,,,,,,,,,,,,, +TX,Texas,201908,N,U,Y,148450.0,,0.0,,148450.0,,104120.0,,15608.0,,119728.0,,3318089.0,,4216809.0,,3641993.0,,574816.0,,,,,,,,,,,,,,,,,,, +TX,Texas,201909,N,P,N,136899.0,,0.0,,136899.0,,88886.0,,13015.0,,101901.0,,3318873.0,,4220878.0,,3647614.0,,573264.0,,,,,,,,,,,,,,,,,,, +TX,Texas,201909,N,U,Y,136899.0,,0.0,,136899.0,,88863.0,,13015.0,,101878.0,,3318873.0,,4220878.0,,3647614.0,,573264.0,,,,,,,,,,,,,,,,,,, +TX,Texas,201910,N,P,N,139013.0,,0.0,,139013.0,,95539.0,,14196.0,,109735.0,,3313891.0,,4212619.0,,3632340.0,,580279.0,,,,,,,,,,,,,,,,,,, +TX,Texas,201910,N,U,Y,139013.0,,0.0,,139013.0,,95586.0,,14196.0,,109782.0,,3313891.0,,4212619.0,,3632340.0,,580279.0,,,,,,,,,,,,,,,,,,, +TX,Texas,201911,N,P,N,111362.0,,0.0,,111362.0,,73680.0,,10471.0,,84151.0,,3303002.0,,4195900.0,,3615321.0,,580579.0,,,,,,,,,,,,,,,,,,, +TX,Texas,201911,N,U,Y,111362.0,,0.0,,111362.0,,73715.0,,10471.0,,84186.0,,3303002.0,,4195900.0,,3615321.0,,580579.0,,,,,,,,,,,,,,,,,,, +TX,Texas,201912,N,P,N,116949.0,,0.0,,116949.0,,74273.0,,11587.0,,85860.0,,3292170.0,,4180368.0,,3601631.0,,578737.0,,,,,,,,,,,,,,,,,,, +TX,Texas,201912,N,U,Y,116949.0,,0.0,,116949.0,,74359.0,,11587.0,,85946.0,,3292170.0,,4180368.0,,3601631.0,,578737.0,,,,,,,,,,,,,,,,,,, +TX,Texas,202001,N,P,N,155316.0,,0.0,,155316.0,,94788.0,,13156.0,,107944.0,,3297918.0,,4194734.0,,3617110.0,,577624.0,,,,,,,,,,,,,,,,,,, +TX,Texas,202001,N,U,Y,155316.0,,0.0,,155316.0,,94783.0,,13157.0,,107940.0,,3297918.0,,4194734.0,,3617110.0,,577624.0,,,,,,,,,,,,,,,,,,, +TX,Texas,202002,N,P,N,122617.0,,0.0,,122617.0,,95310.0,,16372.0,,111682.0,,3301272.0,,4198897.0,,3633206.0,,565691.0,,,,23981.0,,25812.0,,44627.0,,24083.0,,35169.0,,,,,,, +TX,Texas,202002,N,U,Y,122617.0,,0.0,,122617.0,,95325.0,,16374.0,,111699.0,,3301272.0,,4198897.0,,3633206.0,,565691.0,,,,23981.0,,25812.0,,44627.0,,24083.0,,35169.0,,,,,,, +TX,Texas,202003,N,P,N,148683.0,,0.0,,148683.0,,109582.0,,16856.0,,126438.0,,3305930.0,,4206104.0,,3636051.0,,570053.0,,,,23391.0,,36250.0,,73916.0,,20147.0,,8068.0,,,,,,, +TX,Texas,202003,N,U,Y,148683.0,,0.0,,148683.0,,109582.0,,16856.0,,126438.0,,3305930.0,,4206104.0,,3636051.0,,570053.0,,,,23391.0,,36250.0,,73916.0,,20147.0,,8068.0,,,,,,, +TX,Texas,202004,N,P,N,149818.0,,0.0,,149818.0,,90192.0,,9796.0,,99988.0,,3382891.0,,4309314.0,,3728028.0,,581286.0,,,,14514.0,,46498.0,,66315.0,,12117.0,,5728.0,,,,,,, +TX,Texas,202004,N,U,Y,149818.0,,0.0,,149818.0,,90192.0,,9796.0,,99988.0,,3382891.0,,4309314.0,,3728028.0,,581286.0,,,,14514.0,,46498.0,,66315.0,,12117.0,,5728.0,,,,,,, +TX,Texas,202005,N,P,N,102641.0,,0.0,,102641.0,,66088.0,,9770.0,,75858.0,,3450928.0,,4400011.0,,3819451.0,,580560.0,,,,,,,,,,,,,,,,,,, +TX,Texas,202005,N,U,Y,102641.0,,0.0,,102641.0,,66070.0,,9752.0,,75822.0,,3450928.0,,4400011.0,,3819451.0,,580560.0,,,,,,,,,,,,,,,,,,, +TX,Texas,202006,N,P,N,108723.0,,0.0,,108723.0,,53002.0,,8870.0,,61872.0,,3503866.0,,4472519.0,,3901744.0,,570775.0,,,,,,,,,,,,,,,,,,, +TX,Texas,202006,N,U,Y,108723.0,,0.0,,108723.0,,52952.0,,8870.0,,61822.0,,3503866.0,,4472519.0,,3901744.0,,570775.0,,,,,,,,,,,,,,,,,,, +TX,Texas,202007,N,P,N,103817.0,,0.0,,103817.0,,51045.0,,8067.0,,59112.0,,3547924.0,,4531429.0,,3960573.0,,570856.0,,,,,,,,,,,,,,,,,,, +TX,Texas,202007,N,U,Y,103817.0,,0.0,,103817.0,,51011.0,,8066.0,,59077.0,,3547924.0,,4531429.0,,3960573.0,,570856.0,,,,,,,,,,,,,,,,,,, +TX,Texas,202008,N,P,N,100743.0,,0.0,,100743.0,,45683.0,,7554.0,,53237.0,,3592587.0,,4590128.0,,4030746.0,,559382.0,,,,,,,,,,,,,,,,,,, +TX,Texas,202008,N,U,Y,100743.0,,0.0,,100743.0,,45735.0,,7552.0,,53287.0,,3592587.0,,4590128.0,,4030746.0,,559382.0,,,,,,,,,,,,,,,,,,, +TX,Texas,202009,N,P,N,91867.0,,0.0,,91867.0,,39195.0,,6359.0,,45554.0,,3633957.0,,4646049.0,,4090429.0,,555620.0,,,,,,,,,,,,,,,,,,, +TX,Texas,202009,N,U,Y,91867.0,,0.0,,91867.0,,39234.0,,6356.0,,45590.0,,3633957.0,,4646049.0,,4090429.0,,555620.0,,,,,,,,,,,,,,,,,,, +TX,Texas,202010,N,P,N,97078.0,,0.0,,97078.0,,48349.0,,7048.0,,55397.0,,3675166.0,,4700884.0,,4136055.0,,564829.0,,,,,,,,,,,,,,,,,,, +TX,Texas,202010,N,U,Y,97078.0,,0.0,,97078.0,,48357.0,,7039.0,,55396.0,,3675166.0,,4700884.0,,4136055.0,,564829.0,,,,,,,,,,,,,,,,,,, +TX,Texas,202011,N,P,N,92199.0,,0.0,,92199.0,,45762.0,,7230.0,,52992.0,,3716908.0,,4759763.0,,4183260.0,,576503.0,,,,,,,,,,,,,,,,,,, +TX,Texas,202011,N,U,Y,92199.0,,0.0,,92199.0,,45765.0,,7228.0,,52993.0,,3716908.0,,4759763.0,,4183260.0,,576503.0,,,,,,,,,,,,,,,,,,, +TX,Texas,202012,N,P,N,92695.0,,0.0,,92695.0,,41617.0,,7171.0,,48788.0,,3750870.0,,4810748.0,,4250908.0,,559840.0,,,,,,,,,,,,,,,,,,, +TX,Texas,202012,N,U,Y,92695.0,,0.0,,92695.0,,41577.0,,7163.0,,48740.0,,3750870.0,,4810748.0,,4250908.0,,559840.0,,,,,,,,,,,,,,,,,,, +TX,Texas,202101,N,P,N,93842.0,,0.0,,93842.0,,35103.0,,5623.0,,40726.0,,3767752.0,,4841366.0,,4296214.0,,545152.0,,,,,,,,,,,,,,,,,,, +TX,Texas,202101,N,U,Y,93842.0,,0.0,,93842.0,,35105.0,,5623.0,,40728.0,,3767752.0,,4841366.0,,4296214.0,,545152.0,,,,,,,,,,,,,,,,,,, +TX,Texas,202102,N,P,N,84477.0,,0.0,,84477.0,,31189.0,,4304.0,,35493.0,,3792657.0,,4877125.0,,4344305.0,,532820.0,,,,7218.0,,19226.0,,22324.0,,11886.0,,2921.0,,,,,,, +TX,Texas,202102,N,U,Y,84477.0,,0.0,,84477.0,,31191.0,,4304.0,,35495.0,,3792657.0,,4877125.0,,4344305.0,,532820.0,,,,7218.0,,19226.0,,22324.0,,11886.0,,2921.0,,,,,,, +TX,Texas,202103,N,P,N,96883.0,,0.0,,96883.0,,40553.0,,6378.0,,46931.0,,3821215.0,,4920949.0,,4369269.0,,551680.0,,,,10555.0,,22865.0,,24070.0,,30377.0,,7212.0,,,,,,, +TX,Texas,202103,N,U,Y,96883.0,,0.0,,96883.0,,40525.0,,6374.0,,46899.0,,3821215.0,,4920949.0,,4369269.0,,551680.0,,,,10555.0,,22865.0,,24070.0,,30377.0,,7212.0,,,,,,, +TX,Texas,202104,N,P,N,82681.0,,0.0,,82681.0,,42977.0,,6708.0,,49685.0,,3852266.0,,4973444.0,,4425783.0,,547661.0,,,,10298.0,,21359.0,,61718.0,,14311.0,,4743.0,,,,,,, +TX,Texas,202104,N,U,Y,82681.0,,0.0,,82681.0,,42923.0,,6703.0,,49626.0,,3852266.0,,4973444.0,,4425783.0,,547661.0,,,,10298.0,,21359.0,,61718.0,,14311.0,,4743.0,,,,,,, +TX,Texas,202105,N,P,N,84742.0,,0.0,,84742.0,,36175.0,,4947.0,,41122.0,,3876097.0,,5013565.0,,4451234.0,,562331.0,,,,,,,,,,,,,,,,,,, +TX,Texas,202105,N,U,Y,84742.0,,0.0,,84742.0,,36161.0,,4943.0,,41104.0,,3876097.0,,5013565.0,,4451234.0,,562331.0,,,,,,,,,,,,,,,,,,, +TX,Texas,202106,N,P,N,94076.0,,0.0,,94076.0,,37177.0,,5131.0,,42308.0,,3901121.0,,5058201.0,,4490804.0,,567397.0,,,,,,,,,,,,,,,,,,, +TX,Texas,202106,N,U,Y,94076.0,,0.0,,94076.0,,37168.0,,5128.0,,42296.0,,3901121.0,,5058201.0,,4490804.0,,567397.0,,,,,,,,,,,,,,,,,,, +TX,Texas,202107,N,P,N,87603.0,,0.0,,87603.0,,37965.0,,5292.0,,43257.0,,3909460.0,,5077158.0,,4520234.0,,556924.0,,,,,,,,,,,,,,,,,,, +TX,Texas,202107,N,U,Y,87603.0,,0.0,,87603.0,,37951.0,,5292.0,,43243.0,,3909460.0,,5077158.0,,4520234.0,,556924.0,,,,,,,,,,,,,,,,,,, +TX,Texas,202108,N,P,N,102237.0,,0.0,,102237.0,,39894.0,,5151.0,,45045.0,,3951499.0,,5145089.0,,4581775.0,,563314.0,,,,,,,,,,,,,,,,,,, +TX,Texas,202108,N,U,Y,102237.0,,0.0,,102237.0,,39911.0,,5151.0,,45062.0,,3951499.0,,5145089.0,,4581775.0,,563314.0,,,,,,,,,,,,,,,,,,, +TX,Texas,202109,N,P,N,90235.0,,0.0,,90235.0,,42885.0,,6560.0,,49445.0,,3974536.0,,5184231.0,,4621543.0,,562688.0,,,,,,,,,,,,,,,,,,, +TX,Texas,202109,N,U,Y,90235.0,,0.0,,90235.0,,42884.0,,6557.0,,49441.0,,3974536.0,,5184231.0,,4621543.0,,562688.0,,,,,,,,,,,,,,,,,,, +TX,Texas,202110,N,P,N,81385.0,,0.0,,81385.0,,41638.0,,7585.0,,49223.0,,3994545.0,,5219191.0,,4661988.0,,557203.0,,,,,,,,,,,,,,,,,,, +TX,Texas,202110,N,U,Y,81385.0,,0.0,,81385.0,,41656.0,,7585.0,,49241.0,,3994545.0,,5219191.0,,4661988.0,,557203.0,,,,,,,,,,,,,,,,,,, +TX,Texas,202111,N,P,N,85119.0,,0.0,,85119.0,,34554.0,,6375.0,,40929.0,,3985211.0,,5225960.0,,4707316.0,,518644.0,,,,,,,,,,,,,,,,,,, +TX,Texas,202111,N,U,Y,85119.0,,0.0,,85119.0,,34609.0,,6375.0,,40984.0,,3985211.0,,5225960.0,,4707316.0,,518644.0,,,,,,,,,,,,,,,,,,, +TX,Texas,202112,N,P,N,76702.0,,0.0,,76702.0,,38387.0,,7280.0,,45667.0,,3985823.0,,5241375.0,,4744622.0,,496753.0,,,,,,,,,,,,,,,,,,, +TX,Texas,202112,N,U,Y,76702.0,,0.0,,76702.0,,38405.0,,7275.0,,45680.0,,3985823.0,,5241375.0,,4744622.0,,496753.0,,,,,,,,,,,,,,,,,,, +TX,Texas,202201,N,P,N,70004.0,,0.0,,70004.0,,34406.0,,5784.0,,40190.0,,4002012.0,,5276790.0,,4790853.0,,485937.0,,,,12194.0,,24656.0,,29232.0,,20049.0,,5410.0,,,,,,, +TX,Texas,202201,N,U,Y,70004.0,,0.0,,70004.0,,34425.0,,5783.0,,40208.0,,4002012.0,,5276790.0,,4790853.0,,485937.0,,,,12194.0,,24656.0,,29232.0,,20049.0,,5410.0,,,,,,, +TX,Texas,202202,N,P,N,55526.0,,0.0,,55526.0,,31879.0,,5108.0,,36987.0,,4025194.0,,5315927.0,,4843839.0,,472088.0,,,,10144.0,,22120.0,,16456.0,,21744.0,,9523.0,,,,,,, +TX,Texas,202202,N,U,Y,55526.0,,0.0,,55526.0,,31866.0,,5105.0,,36971.0,,4025194.0,,5315927.0,,4843839.0,,472088.0,,,,10144.0,,22120.0,,16456.0,,21744.0,,9523.0,,,,,,, +TX,Texas,202203,N,P,N,63071.0,,0.0,,63071.0,,38109.0,,6513.0,,44622.0,,4056723.0,,5364205.0,,4904847.0,,459358.0,,,,12859.0,,25416.0,,14767.0,,12450.0,,37177.0,,,,,,, +TX,Texas,202203,N,U,Y,63071.0,,0.0,,63071.0,,38106.0,,6509.0,,44615.0,,4056723.0,,5364205.0,,4904847.0,,459358.0,,,,12859.0,,25416.0,,14767.0,,12450.0,,37177.0,,,,,,, +TX,Texas,202204,N,P,N,51515.0,,0.0,,51515.0,,34126.0,,5425.0,,39551.0,,4074788.0,,5394438.0,,4911153.0,,483285.0,,,,11672.0,,23689.0,,14227.0,,8054.0,,31457.0,,,,,,, +TX,Texas,202204,N,U,Y,51515.0,,0.0,,51515.0,,34138.0,,5414.0,,39552.0,,4074788.0,,5394438.0,,4911153.0,,483285.0,,,,11672.0,,23689.0,,14227.0,,8054.0,,31457.0,,,,,,, +TX,Texas,202205,N,P,N,53462.0,,0.0,,53462.0,,31897.0,,4438.0,,36335.0,,4097437.0,,5436087.0,,4983928.0,,452159.0,,,,12136.0,,22523.0,,13597.0,,7641.0,,26268.0,,,,,,, +TX,Texas,202205,N,U,Y,53462.0,,0.0,,53462.0,,31836.0,,4436.0,,36272.0,,4097437.0,,5436087.0,,4983928.0,,452159.0,,,,12136.0,,22523.0,,13597.0,,7641.0,,26268.0,,,,,,, +TX,Texas,202206,N,P,N,59532.0,,0.0,,59532.0,,29821.0,,3944.0,,33765.0,,4119918.0,,5473452.0,,4984207.0,,489245.0,,,,9923.0,,25794.0,,14316.0,,7153.0,,21990.0,,,,,,, +TX,Texas,202206,N,U,Y,59532.0,,0.0,,59532.0,,29838.0,,3944.0,,33782.0,,4119918.0,,5473452.0,,4984207.0,,489245.0,,,,9923.0,,25794.0,,14316.0,,7153.0,,21990.0,,,,,,, +TX,Texas,202207,N,P,N,60280.0,,0.0,,60280.0,,31121.0,,4190.0,,35311.0,,4210476.0,,5643143.0,,5339503.0,,303640.0,,,,8101.0,,24786.0,,14591.0,,7128.0,,35377.0,,,,,,, +TX,Texas,202207,N,U,Y,60280.0,,0.0,,60280.0,,31110.0,,4188.0,,35298.0,,4210476.0,,5643143.0,,5339503.0,,303640.0,,,,8101.0,,24786.0,,14591.0,,7128.0,,35377.0,,,,,,, +TX,Texas,202208,N,P,N,73688.0,,0.0,,73688.0,,36152.0,,5035.0,,41187.0,,4238445.0,,5687442.0,,5384358.0,,303084.0,,,,8446.0,,27360.0,,16826.0,,8901.0,,48374.0,,,,,,, +TX,Texas,202208,N,U,Y,73688.0,,0.0,,73688.0,,36032.0,,5016.0,,41048.0,,4238445.0,,5687442.0,,5384358.0,,303084.0,,,,8446.0,,27360.0,,16826.0,,8901.0,,48374.0,,,,,,, +TX,Texas,202209,N,P,N,77881.0,,0.0,,77881.0,,32511.0,,4702.0,,37213.0,,4261208.0,,5725618.0,,5420586.0,,305032.0,,,,6417.0,,26872.0,,17163.0,,10250.0,,38173.0,,,,,,, +TX,Texas,202209,N,U,Y,77881.0,,0.0,,77881.0,,32537.0,,4699.0,,37236.0,,4261208.0,,5725618.0,,5420586.0,,305032.0,,,,6417.0,,26872.0,,17163.0,,10250.0,,38173.0,,,,,,, +TX,Texas,202210,N,P,N,71176.0,,0.0,,71176.0,,32754.0,,4986.0,,37740.0,,4283335.0,,5762011.0,,5456725.0,,305286.0,,,,8930.0,,22809.0,,17741.0,,22187.0,,32425.0,,,,,,, +TX,Texas,202210,N,U,Y,71176.0,,0.0,,71176.0,,32792.0,,4984.0,,37776.0,,4283335.0,,5762011.0,,5456725.0,,305286.0,,,,8930.0,,22809.0,,17741.0,,22187.0,,32425.0,,,,,,, +TX,Texas,202211,N,P,N,72966.0,,0.0,,72966.0,,26948.0,,3939.0,,30887.0,,4298327.0,,5793125.0,,5492094.0,,301031.0,,,,6645.0,,22755.0,,15453.0,,21571.0,,17716.0,,,,,,, +TX,Texas,202211,N,U,Y,72966.0,,0.0,,72966.0,,26966.0,,3938.0,,30904.0,,4298327.0,,5793125.0,,5492094.0,,301031.0,,,,6645.0,,22755.0,,15453.0,,21571.0,,17716.0,,,,,,, +TX,Texas,202212,N,P,N,63314.0,,0.0,,63314.0,,26894.0,,4229.0,,31123.0,,4316649.0,,5825481.0,,5525705.0,,299776.0,,,,7468.0,,22419.0,,20141.0,,14668.0,,20265.0,,,,,,, +TX,Texas,202212,N,U,Y,63314.0,,0.0,,63314.0,,26863.0,,4219.0,,31082.0,,4316649.0,,5825481.0,,5525705.0,,299776.0,,,,7468.0,,22419.0,,20141.0,,14668.0,,20265.0,,,,,,, +TX,Texas,202301,N,P,N,68414.0,,0.0,,68414.0,,27468.0,,4353.0,,31821.0,,4334380.0,,5861225.0,,5562674.0,,298551.0,,,,10083.0,,24552.0,,15731.0,,14740.0,,22377.0,,,,,,, +TX,Texas,202301,N,U,Y,68414.0,,0.0,,68414.0,,27468.0,,4353.0,,31821.0,,4334380.0,,5861225.0,,5562674.0,,298551.0,,,,10083.0,,24552.0,,15731.0,,14740.0,,22377.0,,,,,,, +TX,Texas,202302,N,P,N,65107.0,,0.0,,65107.0,,25409.0,,4200.0,,29609.0,,4352597.0,,5888220.0,,5589126.0,,299094.0,,,,9155.0,,17802.0,,15055.0,,10275.0,,31468.0,,,,,,, +TX,Texas,202302,N,U,Y,65107.0,,0.0,,65107.0,,25422.0,,4200.0,,29622.0,,4352597.0,,5888220.0,,5589126.0,,299094.0,,,,9155.0,,17802.0,,15055.0,,10275.0,,31468.0,,,,,,, +TX,Texas,202303,N,P,N,69969.0,,0.0,,69969.0,,31856.0,,5639.0,,37495.0,,4372154.0,,5922450.0,,5640998.0,,281452.0,,,,9066.0,,20315.0,,16246.0,,25327.0,,45921.0,,750176.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,2.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.069,Includes calls for other benefit programs; Includes only calls transferred to a live agent +TX,Texas,202303,N,U,Y,69969.0,,0.0,,69969.0,,31821.0,,5625.0,,37446.0,,4372154.0,,5922450.0,,5640998.0,,281452.0,,,,9066.0,,20315.0,,16246.0,,25327.0,,45921.0,,750176.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,10.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.057,Includes calls for other benefit programs; Includes only calls transferred to a live agent +TX,Texas,202304,N,P,N,63430.0,,0.0,,63430.0,,28709.0,,4507.0,,33216.0,,4370336.0,,5950574.0,,5495807.0,,454767.0,,,,9205.0,,19264.0,,14181.0,,22037.0,,43011.0,,954663.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,8.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.191,Includes calls for other benefit programs; Includes only calls transferred to a live agent +TX,Texas,202304,N,U,Y,63430.0,,0.0,,63430.0,,28718.0,,4504.0,,33222.0,,4370336.0,,5950574.0,,5495807.0,,454767.0,,,,9205.0,,19264.0,,14181.0,,22037.0,,43011.0,,954663.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,11.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.191,Includes calls for other benefit programs; Includes only calls transferred to a live agent +TX,Texas,202305,N,P,N,81773.0,,0.0,,81773.0,,32037.0,,5481.0,,37518.0,,4390356.0,,5976306.0,,5535862.0,,440444.0,,,,11065.0,,21555.0,,23673.0,,25093.0,,15212.0,,994188.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,8.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.164,Includes calls for other benefit programs; Includes only calls transferred to a live agent +TX,Texas,202305,N,U,Y,81773.0,,0.0,,81773.0,,32037.0,,5481.0,,37518.0,,4390356.0,,5976306.0,,5535862.0,,440444.0,,,,11065.0,,21555.0,,23673.0,,25093.0,,15212.0,,994188.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,8.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.164,Includes calls for other benefit programs; Includes only calls transferred to a live agent +TX,Texas,202306,N,P,N,83457.0,,0.0,,83457.0,,40403.0,,8220.0,,48623.0,,4105287.0,,5646527.0,,5233229.0,,413298.0,,,,12583.0,,29635.0,,28035.0,,19849.0,,19526.0,,1052220.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,9.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.168,Includes calls for other benefit programs; Includes only calls transferred to a live agent +TX,Texas,202306,N,U,Y,83457.0,,0.0,,83457.0,,40403.0,,8220.0,,48623.0,,4105287.0,,5646527.0,,5233229.0,,413298.0,,,,12583.0,,29635.0,,28035.0,,19849.0,,19526.0,,1052220.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,9.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.168,Includes calls for other benefit programs; Includes only calls transferred to a live agent +TX,Texas,202307,N,P,N,72142.0,,0.0,,72142.0,,36676.0,,7354.0,,44030.0,,4094059.0,,5627147.0,,5207036.0,,420111.0,,,,8473.0,,22756.0,,23050.0,,20568.0,,14999.0,,1038801.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,13.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.227,Includes calls for other benefit programs; Includes only calls transferred to a live agent +TX,Texas,202307,N,U,Y,72142.0,,0.0,,72142.0,,36602.0,,7304.0,,43906.0,,4094059.0,,5627147.0,,5207036.0,,420111.0,,,,8473.0,,22756.0,,23050.0,,20568.0,,14999.0,,1038801.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,13.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.227,Includes calls for other benefit programs; Includes only calls transferred to a live agent +TX,Texas,202308,N,P,N,85063.0,,0.0,,85063.0,,50438.0,,7869.0,,58307.0,,4027933.0,,5539533.0,,5116659.0,,422874.0,,,,11643.0,,35189.0,,37493.0,,14957.0,,25036.0,,1157378.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,11.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.178,Includes calls for other benefit programs; Includes only calls transferred to a live agent +TX,Texas,202308,N,U,Y,85063.0,,0.0,,85063.0,,50455.0,,7869.0,,58324.0,,4027933.0,,5539533.0,,5116659.0,,422874.0,,,,11643.0,,35189.0,,37493.0,,14957.0,,25036.0,,1157378.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,11.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.178,Includes calls for other benefit programs; Includes only calls transferred to a live agent +TX,Texas,202309,N,P,N,77714.0,,0.0,,77714.0,,50510.0,,7487.0,,57997.0,,3898418.0,,5222862.0,,4797948.0,,424914.0,,,,7749.0,,30725.0,,36829.0,,17854.0,,27201.0,,1162661.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,15.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.242,Includes calls for other benefit programs; Includes only calls transferred to a live agent +TX,Texas,202309,N,U,Y,77714.0,,0.0,,77714.0,,50374.0,,7436.0,,57810.0,,3898418.0,,5222862.0,,4797948.0,,424914.0,,,,7749.0,,30725.0,,36829.0,,17854.0,,27201.0,,1162661.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,15.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.242,Includes calls for other benefit programs; Includes only calls transferred to a live agent +TX,Texas,202310,N,P,N,89979.0,,0.0,,89979.0,,56515.0,,8064.0,,64579.0,,3752375.0,,4932433.0,,4512799.0,,419634.0,,,,13162.0,,21546.0,,35934.0,,21364.0,,43612.0,,1205156.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,14.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.229,Includes calls for other benefit programs; Includes only calls transferred to a live agent +TX,Texas,202310,N,U,Y,89979.0,,0.0,,89979.0,,56419.0,,8056.0,,64475.0,,3752375.0,,4932433.0,,4512799.0,,419634.0,,,,13162.0,,21546.0,,35934.0,,21364.0,,43612.0,,1205156.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,14.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.229,Includes calls for other benefit programs; Includes only calls transferred to a live agent +TX,Texas,202311,N,P,N,131685.0,,0.0,,131685.0,,53639.0,,6994.0,,60633.0,,3603706.0,,4684154.0,,4269976.0,,414178.0,,,,9548.0,,22680.0,,38330.0,,16825.0,,38365.0,,1142692.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,16.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.242,Includes calls for other benefit programs; Includes only calls transferred to a live agent +TX,Texas,202311,N,U,Y,131685.0,,0.0,,131685.0,,53698.0,,6984.0,,60682.0,,3603706.0,,4684154.0,,4269976.0,,414178.0,,,,9548.0,,22680.0,,38330.0,,16825.0,,38365.0,,1142692.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,16.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.242,Includes calls for other benefit programs; Includes only calls transferred to a live agent +TX,Texas,202312,N,P,N,123642.0,,0.0,,123642.0,,56520.0,,7824.0,,64344.0,,3446657.0,,4465981.0,,4073468.0,,392513.0,,,,7785.0,,28210.0,,29400.0,,21252.0,,50140.0,,985663.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,7.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.109,Includes calls for other benefit programs; Includes only calls transferred to a live agent +TX,Texas,202312,N,U,Y,123642.0,,0.0,,123642.0,,56578.0,,7806.0,,64384.0,,3446657.0,,4465981.0,,4073468.0,,392513.0,,,,7785.0,,28210.0,,29400.0,,21252.0,,50140.0,,985663.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,7.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.109,Includes calls for other benefit programs; Includes only calls transferred to a live agent +TX,Texas,202401,N,P,N,124548.0,,0.0,,124548.0,,70211.0,,9277.0,,79488.0,,3311063.0,,4295157.0,,3915667.0,,379490.0,,,,10955.0,,35801.0,,29592.0,,21017.0,,65688.0,,1174792.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,11.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.172,Includes calls for other benefit programs; Includes only calls transferred to a live agent +TX,Texas,202401,N,U,Y,124548.0,,0.0,,124548.0,,70228.0,,9277.0,,79505.0,,3311063.0,,4295157.0,,3915667.0,,379490.0,,,,10955.0,,35801.0,,29592.0,,21017.0,,65688.0,,1174792.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,11.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.172,Includes calls for other benefit programs; Includes only calls transferred to a live agent +TX,Texas,202402,N,P,N,95794.0,,0.0,,95794.0,,71430.0,,9451.0,,80881.0,,3316659.0,,4280418.0,,3916813.0,,363605.0,,,,12301.0,,30054.0,,29530.0,,21499.0,,79583.0,,959154.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.031,Includes calls for other benefit programs; Includes only calls transferred to a live agent +TX,Texas,202402,N,U,Y,95794.0,,0.0,,95794.0,,71378.0,,9447.0,,80825.0,,3316659.0,,4280418.0,,3916813.0,,363605.0,,,,12301.0,,30054.0,,29530.0,,21499.0,,79583.0,,959154.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.031,Includes calls for other benefit programs; Includes only calls transferred to a live agent +TX,Texas,202403,N,P,N,90921.0,,0.0,,90921.0,,72328.0,,9297.0,,81625.0,,3324356.0,,4360449.0,,4002417.0,,358032.0,,,,13477.0,,29383.0,,30012.0,,24103.0,,85312.0,,923251.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.026,Includes calls for other benefit programs; Includes only calls transferred to a live agent +TX,Texas,202403,N,U,Y,90921.0,,0.0,,90921.0,,72045.0,,9292.0,,81337.0,,3324356.0,,4360449.0,,4002417.0,,358032.0,,,,13477.0,,29383.0,,30012.0,,24103.0,,85312.0,,923251.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.026,Includes calls for other benefit programs; Includes only calls transferred to a live agent +TX,Texas,202404,N,P,N,98731.0,,0.0,,98731.0,,73551.0,,9058.0,,82609.0,,3333451.0,,4373607.0,,4016919.0,,356688.0,,,,15128.0,,32571.0,,25934.0,,18810.0,,87717.0,,966477.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.023,Includes calls for other benefit programs; Includes only calls transferred to a live agent +TX,Texas,202404,N,U,Y,98731.0,,0.0,,98731.0,,73635.0,,9058.0,,82693.0,,3333451.0,,4373607.0,,4016919.0,,356688.0,,,,15128.0,,32571.0,,25934.0,,18810.0,,87717.0,,966477.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.023,Includes calls for other benefit programs; Includes only calls transferred to a live agent +TX,Texas,202405,N,P,N,97135.0,,0.0,,97135.0,,65958.0,,8457.0,,74415.0,,3312912.0,,4344285.0,,3991229.0,,353056.0,,,,16077.0,,28033.0,,29457.0,,17491.0,,67457.0,,1070136.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.029,Includes calls for other benefit programs; Includes only calls transferred to a live agent +TX,Texas,202405,N,U,Y,97135.0,,0.0,,97135.0,,65860.0,,8457.0,,74317.0,,3312912.0,,4344285.0,,3991229.0,,353056.0,,,,16077.0,,28033.0,,29457.0,,17491.0,,67457.0,,1070136.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.029,Includes calls for other benefit programs; Includes only calls transferred to a live agent +TX,Texas,202406,N,P,N,91563.0,,0.0,,91563.0,,60972.0,,8219.0,,69191.0,,3277950.0,,4300313.0,,3953490.0,,346823.0,,,,11642.0,,23410.0,,35467.0,,17670.0,,50833.0,,1195453.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.034,Includes calls for other benefit programs; Includes only calls transferred to a live agent +TX,Texas,202406,N,U,Y,91563.0,,0.0,,91563.0,,60962.0,,8219.0,,69181.0,,3277950.0,,4300313.0,,3953490.0,,346823.0,,,,11642.0,,23410.0,,35467.0,,17670.0,,50833.0,,1195453.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.034,Includes calls for other benefit programs; Includes only calls transferred to a live agent +TX,Texas,202407,N,P,N,97327.0,,0.0,,97327.0,,60896.0,,7801.0,,68697.0,,3289429.0,,4305215.0,,3957595.0,,347620.0,,1015786.0,,12085.0,,11800.0,,39107.0,,17742.0,,53217.0,,1559095.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,4.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.126,Includes calls for other benefit programs; Includes only calls transferred to a live agent +TX,Texas,202407,N,U,Y,97327.0,,0.0,,97327.0,,60846.0,,7801.0,,68647.0,,3289429.0,,4305215.0,,3957595.0,,347620.0,,1015786.0,,12085.0,,11800.0,,39107.0,,17742.0,,53217.0,,1559095.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,4.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.126,Includes calls for other benefit programs; Includes only calls transferred to a live agent +TX,Texas,202408,N,P,N,93824.0,,0.0,,93824.0,,72804.0,,9312.0,,82116.0,,3300356.0,,4311942.0,,3963801.0,,348141.0,,1011586.0,,14804.0,,12132.0,,52450.0,,23429.0,,60522.0,,901739.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.012,Includes calls for other benefit programs; Includes only calls transferred to a live agent +TX,Texas,202408,N,U,Y,93824.0,,0.0,,93824.0,,72804.0,,9312.0,,82116.0,,3300356.0,,4311942.0,,3963801.0,,348141.0,,1011586.0,,14804.0,,12132.0,,52450.0,,23429.0,,60522.0,,901739.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.012,Includes calls for other benefit programs; Includes only calls transferred to a live agent +TX,Texas,202409,N,P,N,87382.0,,0.0,,87382.0,,73221.0,,9869.0,,83090.0,,3283667.0,,4293010.0,,3942578.0,,350432.0,,1009343.0,,14177.0,,20781.0,,47833.0,,25085.0,,59247.0,,871528.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.014,Includes calls for other benefit programs; Includes only calls transferred to a live agent +TX,Texas,202409,N,U,Y,87382.0,,0.0,,87382.0,,73221.0,,9869.0,,83090.0,,3283667.0,,4293010.0,,3942578.0,,350432.0,,1009343.0,,14177.0,,20781.0,,47833.0,,25085.0,,59247.0,,871528.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.014,Includes calls for other benefit programs; Includes only calls transferred to a live agent +TX,Texas,202410,N,P,N,136330.0,,0.0,,136330.0,,92276.0,,13454.0,,105730.0,,3240904.0,,4245262.0,,3892132.0,,353130.0,,1004358.0,,22573.0,,59663.0,,35065.0,,13128.0,,86729.0,,877538.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.01,Includes calls for other benefit programs; Includes only calls transferred to a live agent +TX,Texas,202410,N,U,Y,136330.0,,0.0,,136330.0,,92356.0,,13454.0,,105810.0,,3240904.0,,4245262.0,,3892132.0,,353130.0,,1004358.0,,22573.0,,59663.0,,35065.0,,13128.0,,86729.0,,877538.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.01,Includes calls for other benefit programs; Includes only calls transferred to a live agent +TX,Texas,202411,N,P,N,180836.0,,0.0,,180836.0,,79264.0,,12069.0,,91333.0,,3195514.0,,4180609.0,,3833095.0,,347514.0,,985095.0,,17287.0,,49031.0,,42066.0,,14712.0,,70406.0,,693347.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.008,Includes calls for other benefit programs; Includes only calls transferred to a live agent +TX,Texas,202411,N,U,Y,180836.0,,0.0,,180836.0,,79228.0,,12069.0,,91297.0,,3223354.0,,4219924.0,,3865266.0,,354658.0,,996570.0,,17287.0,,49031.0,,42066.0,,14712.0,,70406.0,,693347.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.008,Includes calls for other benefit programs; Includes only calls transferred to a live agent +TX,Texas,202412,N,P,N,183387.0,,0.0,,183387.0,,60867.0,,8997.0,,69864.0,,3190854.0,,4175309.0,,3821806.0,,353503.0,,984455.0,,18950.0,,36011.0,,45391.0,,18828.0,,34335.0,,754542.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.007,Includes calls for other benefit programs; Includes only calls transferred to a live agent +TX,Texas,202412,N,U,Y,183387.0,,0.0,,183387.0,,60899.0,,8997.0,,69896.0,,3219348.0,,4214876.0,,3858767.0,,356109.0,,995528.0,,18950.0,,36011.0,,45391.0,,18828.0,,34335.0,,754542.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.007,Includes calls for other benefit programs; Includes only calls transferred to a live agent +TX,Texas,202501,N,P,N,150767.0,,0.0,,150767.0,,72309.0,,10961.0,,83270.0,,3177716.0,,4161960.0,,3804418.0,,357542.0,,984244.0,,21090.0,,53928.0,,44578.0,,22992.0,,32143.0,,871114.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.009,Includes calls for other benefit programs; Includes only calls transferred to a live agent +TX,Texas,202501,N,U,Y,150767.0,,0.0,,150767.0,,72334.0,,10961.0,,83295.0,,3209131.0,,4205298.0,,3842314.0,,362984.0,,996167.0,,21090.0,,53928.0,,44578.0,,22992.0,,32143.0,,871114.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.009,Includes calls for other benefit programs; Includes only calls transferred to a live agent +TX,Texas,202502,N,P,N,120915.0,,0.0,,120915.0,,63584.0,,9656.0,,73240.0,,3182370.0,,4155776.0,,3790110.0,,365666.0,,973406.0,,17803.0,,43918.0,,36894.0,,16041.0,,36430.0,,732150.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.009,Includes calls for other benefit programs; Includes only calls transferred to a live agent +TX,Texas,202502,N,U,Y,120915.0,,0.0,,120915.0,,63571.0,,9656.0,,73227.0,,3213054.0,,4198734.0,,3829932.0,,368802.0,,985680.0,,17803.0,,43918.0,,36894.0,,16041.0,,36430.0,,732150.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.009,Includes calls for other benefit programs; Includes only calls transferred to a live agent +TX,Texas,202503,N,P,N,122923.0,,0.0,,122923.0,,67916.0,,10191.0,,78107.0,,3189576.0,,4164694.0,,3818536.0,,346158.0,,975118.0,,20433.0,,48263.0,,34564.0,,19623.0,,70239.0,,712159.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.007,Includes calls for other benefit programs; Includes only calls transferred to a live agent +TX,Texas,202503,N,U,Y,122923.0,,0.0,,122923.0,,67953.0,,10191.0,,78144.0,,3216072.0,,4204178.0,,3855585.0,,348593.0,,988106.0,,20433.0,,48263.0,,34564.0,,19623.0,,70239.0,,712159.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.007,Includes calls for other benefit programs; Includes only calls transferred to a live agent +TX,Texas,202504,N,P,N,128032.0,,0.0,,128032.0,,72449.0,,9744.0,,82193.0,,3203843.0,,4179892.0,,3831382.0,,348510.0,,976049.0,,19858.0,,44133.0,,37459.0,,18032.0,,106943.0,,692655.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.008,Includes calls for other benefit programs; Includes only calls transferred to a live agent +TX,Texas,202504,N,U,Y,128032.0,,0.0,,128032.0,,72377.0,,9744.0,,82121.0,,3224175.0,,4212692.0,,3862541.0,,350151.0,,988517.0,,19858.0,,44133.0,,37459.0,,18032.0,,106943.0,,692655.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.008,Includes calls for other benefit programs; Includes only calls transferred to a live agent +TX,Texas,202505,N,P,N,121838.0,,0.0,,121838.0,,65263.0,,8513.0,,73776.0,,3200125.0,,4173887.0,,3826839.0,,347048.0,,973762.0,,19965.0,,51672.0,,38794.0,,15354.0,,28641.0,,670925.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.011,Includes calls for other benefit programs; Includes only calls transferred to a live agent +TX,Texas,202505,N,U,Y,121838.0,,0.0,,121838.0,,65315.0,,8513.0,,73828.0,,3219327.0,,4204878.0,,3856349.0,,348529.0,,985551.0,,19965.0,,51672.0,,38794.0,,15354.0,,28641.0,,670925.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.011,Includes calls for other benefit programs; Includes only calls transferred to a live agent +TX,Texas,202506,N,P,N,122317.0,,0.0,,122317.0,,59298.0,,7741.0,,67039.0,,3187145.0,,4162177.0,,3817594.0,,344583.0,,975032.0,,18078.0,,50955.0,,33488.0,,17222.0,,18864.0,,677644.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.018,Includes calls for other benefit programs; Includes only calls transferred to a live agent +TX,Texas,202506,N,U,Y,122317.0,,0.0,,122317.0,,59225.0,,7741.0,,66966.0,,3206237.0,,4191556.0,,3845473.0,,346083.0,,985319.0,,18078.0,,50955.0,,33488.0,,17222.0,,18864.0,,677644.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.018,Includes calls for other benefit programs; Includes only calls transferred to a live agent +TX,Texas,202507,N,P,N,130775.0,,0.0,,130775.0,,64718.0,,7882.0,,72600.0,,3191048.0,,4169127.0,,3825235.0,,343892.0,,978079.0,,19277.0,,45410.0,,49857.0,,13855.0,,19519.0,,785555.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.027,Includes calls for other benefit programs; Includes only calls transferred to a live agent +TX,Texas,202507,N,U,Y,130775.0,,0.0,,130775.0,,64764.0,,7882.0,,72646.0,,3211570.0,,4200014.0,,3854537.0,,345477.0,,988444.0,,19277.0,,45410.0,,49857.0,,13855.0,,19519.0,,785555.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.027,Includes calls for other benefit programs; Includes only calls transferred to a live agent +TX,Texas,202508,N,P,N,122246.0,,0.0,,122246.0,,62130.0,,7754.0,,69884.0,,3185902.0,,4161101.0,,3817242.0,,343859.0,,975199.0,,18556.0,,36118.0,,56250.0,,12707.0,,13556.0,,783852.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.02,Includes calls for other benefit programs; Includes only calls transferred to a live agent +TX,Texas,202508,N,U,Y,122246.0,,0.0,,122246.0,,62017.0,,7754.0,,69771.0,,3206966.0,,4192882.0,,3847392.0,,345490.0,,985916.0,,18556.0,,36118.0,,56250.0,,12707.0,,13556.0,,783852.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.02,Includes calls for other benefit programs; Includes only calls transferred to a live agent +TX,Texas,202509,N,P,N,119573.0,,0.0,,119573.0,,59168.0,,7882.0,,67050.0,,3195359.0,,4174990.0,,3830057.0,,344933.0,,979631.0,,18035.0,,36614.0,,54256.0,,14380.0,,8987.0,,828570.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.031,Includes calls for other benefit programs; Includes only calls transferred to a live agent +TX,Texas,202509,N,U,Y,119573.0,,0.0,,119573.0,,59113.0,,7882.0,,66995.0,,3208735.0,,4198271.0,,3851991.0,,346280.0,,989536.0,,18035.0,,36614.0,,54256.0,,14380.0,,8987.0,,828570.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.031,Includes calls for other benefit programs; Includes only calls transferred to a live agent +TX,Texas,202510,N,P,N,111374.0,,0.0,,111374.0,,60104.0,,7721.0,,67825.0,,3169115.0,,4148608.0,,3802894.0,,345714.0,,979493.0,,16757.0,,55170.0,,37643.0,,12891.0,,10454.0,,766458.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,1.0,Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.019,Includes calls for other benefit programs; Includes only calls transferred to a live agent +UT,Utah,201309,N,U,Y,,,,,,,,,,,,,,,294029.0,,,,,,,,,,,,,,,,,,,,,,, +UT,Utah,201706,N,P,N,22121.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,22121.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",44305.0,Includes CHIP,0.0,,44305.0,,214785.0,,304340.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,256752.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,47588.0,,,,,,,,,,,,,,,,,,, +UT,Utah,201706,N,U,Y,22504.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,22504.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",44305.0,Includes CHIP,0.0,,44305.0,,216282.0,,306849.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,259048.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,47801.0,,,,,,,,,,,,,,,,,,, +UT,Utah,201707,N,P,N,20057.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,20057.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",52012.0,Includes CHIP,0.0,,52012.0,,213738.0,,304670.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,257372.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,47298.0,,,,,,,,,,,,,,,,,,, +UT,Utah,201707,N,U,Y,20478.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,20478.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",52012.0,Includes CHIP,0.0,,52012.0,,215400.0,,307267.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,259669.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,47598.0,,,,,,,,,,,,,,,,,,, +UT,Utah,201708,N,P,N,27943.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,27943.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",48486.0,Includes CHIP,0.0,,48486.0,,214918.0,,306271.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,258295.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,47976.0,,,,,,,,,,,,,,,,,,, +UT,Utah,201708,N,U,Y,28450.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,28450.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",48486.0,Includes CHIP,0.0,,48486.0,,216203.0,,308312.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,260162.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,48150.0,,,,,,,,,,,,,,,,,,, +UT,Utah,201709,N,P,N,20027.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,20027.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",54079.0,Includes CHIP,0.0,,54079.0,,213460.0,,304593.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,257227.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,47366.0,,,,,,,,,,,,,,,,,,, +UT,Utah,201709,N,U,Y,20175.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,20175.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",54079.0,Includes CHIP,0.0,,54079.0,,214002.0,,305540.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,258085.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,47455.0,,,,,,,,,,,,,,,,,,, +UT,Utah,201710,N,P,N,21004.0,,0.0,,21004.0,,42674.0,,0.0,,42674.0,,211342.0,,302073.0,,255178.0,,46895.0,,,,,,,,,,,,,,,,,,, +UT,Utah,201710,N,U,Y,21315.0,,0.0,,21315.0,,42674.0,,0.0,,42674.0,,212511.0,,303963.0,,256853.0,,47110.0,,,,,,,,,,,,,,,,,,, +UT,Utah,201711,N,P,N,26604.0,,0.0,,26604.0,,41408.0,,0.0,,41408.0,,209504.0,,300038.0,,252966.0,,47072.0,,,,,,,,,,,,,,,,,,, +UT,Utah,201711,N,U,Y,27471.0,,0.0,,27471.0,,41408.0,,0.0,,41408.0,,211637.0,,303346.0,,255908.0,,47438.0,,,,,,,,,,,,,,,,,,, +UT,Utah,201712,N,P,N,24076.0,,0.0,,24076.0,,49997.0,,0.0,,49997.0,,208516.0,,299556.0,,252489.0,,47067.0,,,,,,,,,,,,,,,,,,, +UT,Utah,201712,N,U,Y,24676.0,,0.0,,24676.0,,49997.0,,0.0,,49997.0,,210398.0,,302585.0,,255190.0,,47395.0,,,,,,,,,,,,,,,,,,, +UT,Utah,201801,N,P,N,23210.0,,0.0,,23210.0,,44625.0,,0.0,,44625.0,,208460.0,,300212.0,,253181.0,,47031.0,,,,,,,,,,,,,,,,,,, +UT,Utah,201801,N,U,Y,23690.0,,0.0,,23690.0,,44625.0,,0.0,,44625.0,,209956.0,,302564.0,,255268.0,,47296.0,,,,,,,,,,,,,,,,,,, +UT,Utah,201802,N,P,N,22069.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,22069.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",47451.0,Includes CHIP,0.0,,47451.0,,207115.0,,298771.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,252243.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,46528.0,,,,1936.0,,2831.0,,3085.0,,320.0,,186.0,,,,,,, +UT,Utah,201802,N,U,Y,23120.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,23120.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",47451.0,Includes CHIP,0.0,,47451.0,,208834.0,,301585.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,254766.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,46819.0,,,,1936.0,,2831.0,,3085.0,,320.0,,186.0,,,,,,, +UT,Utah,201803,N,P,N,20331.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,20331.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",55569.0,Includes CHIP,0.0,,55569.0,,206819.0,,299247.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,253617.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,45630.0,,,,2036.0,,3363.0,,3172.0,,312.0,,126.0,,,,,,, +UT,Utah,201803,N,U,Y,20682.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,20682.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",55569.0,Includes CHIP,0.0,,55569.0,,208186.0,,301447.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,255586.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,45861.0,,,,2036.0,,3363.0,,3172.0,,312.0,,126.0,,,,,,, +UT,Utah,201804,N,P,N,19491.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,19491.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",38549.0,Includes CHIP,0.0,,38549.0,,205709.0,,298322.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,252733.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,45589.0,,,,1804.0,,3018.0,,2897.0,,317.0,,114.0,,,,,,, +UT,Utah,201804,N,U,Y,19943.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,19943.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",38549.0,Includes CHIP,0.0,,38549.0,,207151.0,,300717.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,254855.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,45862.0,,,,1804.0,,3018.0,,2897.0,,317.0,,114.0,,,,,,, +UT,Utah,201805,N,P,N,20308.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,20308.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",39504.0,Includes CHIP,0.0,,39504.0,,204373.0,,297028.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,251603.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,45425.0,,,,,,,,,,,,,,,,,,, +UT,Utah,201805,N,U,Y,20899.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,20899.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",39504.0,Includes CHIP,0.0,,39504.0,,206013.0,,299818.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,254155.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,45663.0,,,,,,,,,,,,,,,,,,, +UT,Utah,201806,N,P,N,18975.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,18975.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",50966.0,Includes CHIP,0.0,,50966.0,,202147.0,,294475.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,249603.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,44872.0,,,,,,,,,,,,,,,,,,, +UT,Utah,201806,N,U,Y,19666.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,19666.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",50966.0,Includes CHIP,0.0,,50966.0,,204336.0,,297967.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,252720.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,45247.0,,,,,,,,,,,,,,,,,,, +UT,Utah,201807,N,P,N,19444.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,19444.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",37964.0,Includes CHIP,0.0,,37964.0,,201166.0,,293770.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,249429.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,44341.0,,,,,,,,,,,,,,,,,,, +UT,Utah,201807,N,U,Y,20055.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,20055.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",37964.0,Includes CHIP,0.0,,37964.0,,202933.0,,296702.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,252073.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,44629.0,,,,,,,,,,,,,,,,,,, +UT,Utah,201808,N,P,N,24903.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,24903.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",43994.0,Includes CHIP,0.0,,43994.0,,200616.0,,293370.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,248826.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,44544.0,,,,,,,,,,,,,,,,,,, +UT,Utah,201808,N,U,Y,25943.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,25943.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",43994.0,Includes CHIP,0.0,,43994.0,,203027.0,,297259.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,252325.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,44934.0,,,,,,,,,,,,,,,,,,, +UT,Utah,201809,N,P,N,18445.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,18445.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",50040.0,Includes CHIP,0.0,,50040.0,,199291.0,,292426.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,248036.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,44390.0,,,,,,,,,,,,,,,,,,, +UT,Utah,201809,N,U,Y,18873.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,18873.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",50040.0,Includes CHIP,0.0,,50040.0,,200757.0,,294766.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,250116.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,44650.0,,,,,,,,,,,,,,,,,,, +UT,Utah,201810,N,P,N,20482.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,20482.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",39498.0,Includes CHIP,0.0,,39498.0,,197837.0,,291250.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,246888.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,44362.0,,,,,,,,,,,,,,,,,,, +UT,Utah,201810,N,U,Y,20970.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,20970.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",39498.0,Includes CHIP,0.0,,39498.0,,199317.0,,293642.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,249051.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,44591.0,,,,,,,,,,,,,,,,,,, +UT,Utah,201811,N,P,N,24556.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,24556.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",35781.0,Includes CHIP,0.0,,35781.0,,195631.0,,288484.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,244367.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,44117.0,,,,,,,,,,,,,,,,,,, +UT,Utah,201811,N,U,Y,25811.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,25811.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",35781.0,Includes CHIP,0.0,,35781.0,,197745.0,,291759.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,247265.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,44494.0,,,,,,,,,,,,,,,,,,, +UT,Utah,201812,N,P,N,20894.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,20894.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",42991.0,Includes CHIP,0.0,,42991.0,,192905.0,,284990.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,241666.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,43324.0,,,,,,,,,,,,,,,,,,, +UT,Utah,201812,N,U,Y,21715.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,21715.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",42991.0,Includes CHIP,0.0,,42991.0,,195061.0,,288403.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,244688.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,43715.0,,,,,,,,,,,,,,,,,,, +UT,Utah,201901,N,P,N,20625.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,20625.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",35550.0,Includes CHIP,0.0,,35550.0,,192317.0,,284808.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,241719.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,43089.0,,,,,,,,,,,,,,,,,,, +UT,Utah,201901,N,U,Y,21298.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,21298.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",35550.0,Includes CHIP,0.0,,35550.0,,194392.0,,288016.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,244485.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,43531.0,,,,,,,,,,,,,,,,,,, +UT,Utah,201902,N,P,N,16513.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,16513.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",35290.0,Includes CHIP,0.0,,35290.0,,192299.0,,284888.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,241720.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,43168.0,,,,1310.0,,2100.0,,2496.0,,373.0,,204.0,,,,,,, +UT,Utah,201902,N,U,Y,17043.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,17043.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",35290.0,Includes CHIP,0.0,,35290.0,,194187.0,,287932.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,244379.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,43553.0,,,,1310.0,,2100.0,,2496.0,,373.0,,204.0,,,,,,, +UT,Utah,201903,N,P,N,22066.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,22066.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",54319.0,Includes CHIP,0.0,,54319.0,,192511.0,,285577.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,243987.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,41590.0,,,,7612.0,,2913.0,,2964.0,,392.0,,212.0,,,,,,, +UT,Utah,201903,N,U,Y,22417.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,22417.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",54319.0,Includes CHIP,0.0,,54319.0,,193791.0,,287706.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,245886.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,41820.0,,,,7612.0,,2913.0,,2964.0,,392.0,,212.0,,,,,,, +UT,Utah,201904,N,P,N,21097.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,21097.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",37728.0,Includes CHIP,0.0,,37728.0,,191713.0,,305497.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,263794.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,41703.0,,,,3197.0,,5167.0,,4280.0,,491.0,,341.0,,,,,,, +UT,Utah,201904,N,U,Y,21506.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,21506.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",37728.0,Includes CHIP,0.0,,37728.0,,193365.0,,308788.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,266822.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,41966.0,,,,3197.0,,5167.0,,4280.0,,491.0,,341.0,,,,,,, +UT,Utah,201905,N,P,N,18482.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,18482.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",39487.0,Includes CHIP,0.0,,39487.0,,191036.0,,307184.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,265790.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,41394.0,,,,,,,,,,,,,,,,,,, +UT,Utah,201905,N,U,Y,18785.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,18785.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",39487.0,Includes CHIP,0.0,,39487.0,,192458.0,,309977.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,268297.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,41680.0,,,,,,,,,,,,,,,,,,, +UT,Utah,201906,N,P,N,15946.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,15946.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",49606.0,Includes CHIP,0.0,,49606.0,,189060.0,,306281.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,264674.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,41607.0,,,,,,,,,,,,,,,,,,, +UT,Utah,201906,N,U,Y,16211.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,16211.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",49606.0,Includes CHIP,0.0,,49606.0,,190418.0,,309007.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,267168.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,41839.0,,,,,,,,,,,,,,,,,,, +UT,Utah,201907,N,P,N,16474.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,16474.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",39534.0,Includes CHIP,0.0,,39534.0,,187860.0,,306123.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,265081.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,41042.0,,,,,,,,,,,,,,,,,,, +UT,Utah,201907,N,U,Y,17057.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,17057.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",39534.0,Includes CHIP,0.0,,39534.0,,189937.0,,309995.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,268618.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,41377.0,,,,,,,,,,,,,,,,,,, +UT,Utah,201908,N,P,N,15959.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,15959.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",54519.0,Includes CHIP,0.0,,54519.0,,189232.0,,309206.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,267283.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,41923.0,,,,,,,,,,,,,,,,,,, +UT,Utah,201908,N,U,Y,16002.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,16002.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",54519.0,Includes CHIP,0.0,,54519.0,,189739.0,,310235.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,268242.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,41993.0,,,,,,,,,,,,,,,,,,, +UT,Utah,201909,N,P,N,11322.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,11322.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",38219.0,Includes CHIP,0.0,,38219.0,,186202.0,,306056.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,264724.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,41332.0,,,,,,,,,,,,,,,,,,, +UT,Utah,201909,N,U,Y,13925.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,13925.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",38219.0,Includes CHIP,0.0,,38219.0,,187817.0,,309138.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,267540.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,41598.0,,,,,,,,,,,,,,,,,,, +UT,Utah,201910,N,P,N,14581.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,14581.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",40009.0,Includes CHIP,0.0,,40009.0,,184850.0,,305459.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,264268.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,41191.0,,,,,,,,,,,,,,,,,,, +UT,Utah,201910,N,U,Y,15008.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,15008.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",40009.0,Includes CHIP,0.0,,40009.0,,186758.0,,308966.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,267459.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,41507.0,,,,,,,,,,,,,,,,,,, +UT,Utah,201911,N,P,N,16290.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,16290.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",50333.0,Includes CHIP,0.0,,50333.0,,183646.0,,304947.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,263504.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,41443.0,,,,,,,,,,,,,,,,,,, +UT,Utah,201911,N,U,Y,16947.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,16947.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",50333.0,Includes CHIP,0.0,,50333.0,,186007.0,,309484.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,267600.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,41884.0,,,,,,,,,,,,,,,,,,, +UT,Utah,201912,N,P,N,16845.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,16845.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",39188.0,Includes CHIP,0.0,,39188.0,,183268.0,,306130.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,264871.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,41259.0,,,,,,,,,,,,,,,,,,, +UT,Utah,201912,N,U,Y,17416.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,17416.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",39188.0,Includes CHIP,0.0,,39188.0,,185160.0,,309812.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,268236.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,41576.0,,,,,,,,,,,,,,,,,,, +UT,Utah,202001,Y,P,N,19333.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,19333.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",40194.0,Includes CHIP,0.0,,40194.0,,183110.0,,308920.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,268160.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,40760.0,,,,,,,,,,,,,,,,,,, +UT,Utah,202001,Y,U,Y,19955.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,19955.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",40194.0,Includes CHIP,0.0,,40194.0,,185182.0,,312988.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,271820.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,41168.0,,,,,,,,,,,,,,,,,,, +UT,Utah,202002,Y,P,N,15002.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,15002.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",53540.0,Includes CHIP,0.0,,53540.0,,183374.0,,311273.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,269902.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,41371.0,,,,2492.0,,4088.0,,5813.0,,971.0,,601.0,,,,,,, +UT,Utah,202002,Y,U,Y,15304.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,15304.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",53540.0,Includes CHIP,0.0,,53540.0,,184630.0,,313899.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,272342.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,41557.0,,,,2492.0,,4088.0,,5813.0,,971.0,,601.0,,,,,,, +UT,Utah,202003,Y,P,N,20709.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,20709.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",43099.0,Includes CHIP,0.0,,43099.0,,182427.0,,312266.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,272147.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,40119.0,,,,2673.0,,4614.0,,5084.0,,716.0,,516.0,,,,,,, +UT,Utah,202003,Y,U,Y,21128.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,21128.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",43099.0,Includes CHIP,0.0,,43099.0,,184418.0,,316364.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,275986.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,40378.0,,,,2673.0,,4614.0,,5084.0,,716.0,,516.0,,,,,,, +UT,Utah,202004,Y,P,N,20649.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,20649.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",47240.0,Includes CHIP,0.0,,47240.0,,188466.0,,324383.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,283689.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,40694.0,,,,3061.0,,4666.0,,6801.0,,795.0,,467.0,,,,,,, +UT,Utah,202004,Y,U,Y,21256.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,21256.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",47240.0,Includes CHIP,0.0,,47240.0,,189854.0,,327216.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,286314.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,40902.0,,,,3061.0,,4666.0,,6801.0,,795.0,,467.0,,,,,,, +UT,Utah,202005,Y,P,N,14984.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,14984.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",47397.0,Includes CHIP,0.0,,47397.0,,191334.0,,330754.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,290073.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,40681.0,,,,,,,,,,,,,,,,,,, +UT,Utah,202005,Y,U,Y,15277.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,15277.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",47397.0,Includes CHIP,0.0,,47397.0,,193073.0,,334295.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,293338.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,40957.0,,,,,,,,,,,,,,,,,,, +UT,Utah,202006,Y,P,N,17493.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,17493.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",39500.0,Includes CHIP,0.0,,39500.0,,195080.0,,338812.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,297992.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,40820.0,,,,,,,,,,,,,,,,,,, +UT,Utah,202006,Y,U,Y,17814.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,17814.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",39500.0,Includes CHIP,0.0,,39500.0,,196526.0,,341920.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,300902.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,41018.0,,,,,,,,,,,,,,,,,,, +UT,Utah,202007,Y,P,N,19360.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,19360.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",34741.0,Includes CHIP,0.0,,34741.0,,198476.0,,346009.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,305573.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,40436.0,,,,,,,,,,,,,,,,,,, +UT,Utah,202007,Y,U,Y,19713.0,,0.0,,19713.0,,34741.0,,0.0,,34741.0,,199936.0,,349201.0,,308566.0,,40635.0,,,,,,,,,,,,,,,,,,, +UT,Utah,202008,Y,P,N,22433.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,22433.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",49484.0,Includes CHIP,0.0,,49484.0,,204011.0,,357531.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,317352.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,40179.0,,,,,,,,,,,,,,,,,,, +UT,Utah,202008,Y,U,Y,22793.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,22793.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",49484.0,Includes CHIP,0.0,,49484.0,,206081.0,,362753.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,322266.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,40487.0,,,,,,,,,,,,,,,,,,, +UT,Utah,202009,Y,P,N,19034.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,19034.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",44687.0,Includes CHIP,0.0,,44687.0,,206458.0,,365322.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,325282.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,40040.0,,,,,,,,,,,,,,,,,,, +UT,Utah,202009,Y,U,Y,19233.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,19233.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",44687.0,Includes CHIP,0.0,,44687.0,,210011.0,,371265.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,330293.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,40972.0,,,,,,,,,,,,,,,,,,, +UT,Utah,202010,Y,P,N,23710.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,23710.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",51682.0,Includes CHIP,0.0,,51682.0,,210941.0,,374915.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,334092.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,40823.0,,,,,,,,,,,,,,,,,,, +UT,Utah,202010,Y,U,Y,24378.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,24378.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",51682.0,Includes CHIP,0.0,,51682.0,,211659.0,,376569.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,335655.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,40914.0,,,,,,,,,,,,,,,,,,, +UT,Utah,202011,Y,P,N,26191.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,26191.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",38863.0,Includes CHIP,0.0,,38863.0,,213588.0,,381460.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,340343.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,41117.0,,,,,,,,,,,,,,,,,,, +UT,Utah,202011,Y,U,Y,27999.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,27999.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",38863.0,Includes CHIP,0.0,,38863.0,,214507.0,,383743.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,342490.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,41253.0,,,,,,,,,,,,,,,,,,, +UT,Utah,202012,Y,P,N,23834.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,23834.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",39108.0,Includes CHIP,0.0,,39108.0,,215375.0,,387315.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,345818.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,41497.0,,,,,,,,,,,,,,,,,,, +UT,Utah,202012,Y,U,Y,25715.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,25715.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",39108.0,Includes CHIP,0.0,,39108.0,,216642.0,,390385.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,348722.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,41663.0,,,,,,,,,,,,,,,,,,, +UT,Utah,202101,Y,P,N,21368.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,21368.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",49982.0,Includes CHIP,0.0,,49982.0,,217936.0,,393737.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,352493.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,41244.0,,,,,,,,,,,,,,,,,,, +UT,Utah,202101,Y,U,Y,22574.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,22574.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",49982.0,Includes CHIP,0.0,,49982.0,,219057.0,,396447.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,355034.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,41413.0,,,,,,,,,,,,,,,,,,, +UT,Utah,202102,Y,P,N,19498.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,19498.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",45985.0,Includes CHIP,0.0,,45985.0,,219909.0,,399344.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,357606.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,41738.0,,,,3670.0,,3081.0,,3761.0,,490.0,,628.0,,,,,,, +UT,Utah,202102,Y,U,Y,20220.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,20220.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",45985.0,Includes CHIP,0.0,,45985.0,,221030.0,,401925.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,360021.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,41904.0,,,,3670.0,,3081.0,,3761.0,,490.0,,628.0,,,,,,, +UT,Utah,202103,Y,P,N,20127.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,20127.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",41824.0,Includes CHIP,0.0,,41824.0,,222141.0,,405590.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,363945.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,41645.0,,,,4182.0,,3270.0,,3698.0,,455.0,,360.0,,,,,,, +UT,Utah,202103,Y,U,Y,20517.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,20517.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",41824.0,Includes CHIP,0.0,,41824.0,,223081.0,,407905.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,366107.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,41798.0,,,,4182.0,,3270.0,,3698.0,,455.0,,360.0,,,,,,, +UT,Utah,202104,Y,P,N,18107.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,18107.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",37344.0,Includes CHIP,0.0,,37344.0,,223380.0,,410748.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,369175.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,41573.0,,,,3724.0,,2996.0,,2965.0,,395.0,,301.0,,,,,,, +UT,Utah,202104,Y,U,Y,18488.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,18488.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",37344.0,Includes CHIP,0.0,,37344.0,,224352.0,,412985.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,371263.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,41722.0,,,,3724.0,,2996.0,,2965.0,,395.0,,301.0,,,,,,, +UT,Utah,202105,Y,P,N,17207.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,17207.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",44755.0,Includes CHIP,0.0,,44755.0,,224901.0,,415131.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,373468.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,41663.0,,,,,,,,,,,,,,,,,,, +UT,Utah,202105,Y,U,Y,17372.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,17372.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",44755.0,Includes CHIP,0.0,,44755.0,,225599.0,,416783.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,375024.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,41759.0,,,,,,,,,,,,,,,,,,, +UT,Utah,202106,Y,P,N,18503.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,18503.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",35587.0,Includes CHIP,0.0,,35587.0,,220896.0,,413582.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,376893.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,36689.0,,,,,,,,,,,,,,,,,,, +UT,Utah,202106,Y,U,Y,18901.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,18901.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",35587.0,Includes CHIP,0.0,,35587.0,,221915.0,,415770.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,378841.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,36929.0,,,,,,,,,,,,,,,,,,, +UT,Utah,202107,Y,P,N,19764.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,19764.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",45547.0,Includes CHIP,0.0,,45547.0,,221935.0,,417499.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,381034.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,36465.0,,,,,,,,,,,,,,,,,,, +UT,Utah,202107,Y,U,Y,20114.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,20114.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",45547.0,Includes CHIP,0.0,,45547.0,Includes Renewals and/or Redeterminations,223008.0,,420000.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,383364.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,36636.0,,,,,,,,,,,,,,,,,,, +UT,Utah,202108,Y,P,N,22492.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,22492.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",44815.0,Includes CHIP,0.0,,44815.0,,223710.0,,422643.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,386222.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,36421.0,,,,,,,,,,,,,,,,,,, +UT,Utah,202108,Y,U,Y,22955.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,22955.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",44815.0,Includes CHIP,0.0,,44815.0,Includes Renewals and/or Redeterminations,225224.0,,425982.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,389306.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,36676.0,,,,,,,,,,,,,,,,,,, +UT,Utah,202109,Y,P,N,19368.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,19368.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",47310.0,Includes CHIP,0.0,,47310.0,,224855.0,,426900.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,390568.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,36332.0,,,,,,,,,,,,,,,,,,, +UT,Utah,202109,Y,U,Y,19606.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,19606.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",47310.0,Includes CHIP,0.0,,47310.0,Includes Renewals and/or Redeterminations,225953.0,,431028.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,394503.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,36525.0,,,,,,,,,,,,,,,,,,, +UT,Utah,202110,Y,P,N,21872.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,21872.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",52843.0,Includes CHIP,0.0,,52843.0,,225957.0,,431178.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,394895.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,36283.0,,,,,,,,,,,,,,,,,,, +UT,Utah,202110,Y,U,Y,22311.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,22311.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",52843.0,Includes CHIP,0.0,,52843.0,Includes Renewals and/or Redeterminations,226545.0,,432514.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,396134.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,36380.0,,,,,,,,,,,,,,,,,,, +UT,Utah,202111,Y,P,N,26486.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,26486.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",37124.0,Includes CHIP,0.0,,37124.0,,227268.0,,435718.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,399438.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,36280.0,,,,,,,,,,,,,,,,,,, +UT,Utah,202111,Y,U,Y,27446.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,27446.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",37124.0,Includes CHIP,0.0,,37124.0,Includes Renewals and/or Redeterminations,228216.0,,437901.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,401484.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,36417.0,,,,,,,,,,,,,,,,,,, +UT,Utah,202112,Y,P,N,24472.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,24472.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",39794.0,Includes CHIP,0.0,,39794.0,,228289.0,,439864.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,403608.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,36256.0,,,,,,,,,,,,,,,,,,, +UT,Utah,202112,Y,U,Y,25865.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,25865.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",39794.0,Includes CHIP,0.0,,39794.0,Includes Renewals and/or Redeterminations,229203.0,,442121.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,405729.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,36392.0,,,,,,,,,,,,,,,,,,, +UT,Utah,202201,Y,P,N,23776.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,23776.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",48582.0,Includes CHIP,0.0,,48582.0,,229287.0,,444164.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,408099.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,36065.0,,,,4427.0,,2408.0,,3633.0,,671.0,,415.0,,,,,,, +UT,Utah,202201,Y,U,Y,24489.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,24489.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",48582.0,Includes CHIP,0.0,,48582.0,Includes Renewals and/or Redeterminations,229953.0,,445668.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,409506.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,36162.0,,,,4427.0,,2408.0,,3633.0,,671.0,,415.0,,,,,,, +UT,Utah,202202,Y,P,N,18065.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,18065.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",42828.0,Includes CHIP,0.0,,42828.0,,230373.0,,448110.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,411831.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,36279.0,,,,3879.0,,1976.0,,2423.0,,459.0,,356.0,,,,,,, +UT,Utah,202202,Y,U,Y,19063.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,19063.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",42828.0,Includes CHIP,0.0,,42828.0,Includes Renewals and/or Redeterminations,231233.0,,449991.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,413581.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,36410.0,,,,3879.0,,1976.0,,2423.0,,459.0,,356.0,,,,,,, +UT,Utah,202203,Y,P,N,20408.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,20408.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",41696.0,Includes CHIP,0.0,,41696.0,,231531.0,,452309.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,416132.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,36177.0,,,,4603.0,,2860.0,,2927.0,,388.0,,330.0,,,,,,, +UT,Utah,202203,Y,U,Y,20985.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,20985.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",41696.0,Includes CHIP,0.0,,41696.0,Includes Renewals and/or Redeterminations,232297.0,,454089.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,417790.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,36299.0,,,,4603.0,,2860.0,,2927.0,,388.0,,330.0,,,,,,, +UT,Utah,202204,Y,P,N,18851.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,18851.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",46648.0,Includes CHIP,0.0,,46648.0,,231974.0,,454836.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,418800.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,36036.0,,,,4016.0,,2175.0,,2155.0,,348.0,,246.0,,,,,,, +UT,Utah,202204,Y,U,Y,19573.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,19573.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",46648.0,Includes CHIP,0.0,,46648.0,Includes Renewals and/or Redeterminations,232679.0,,456400.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,420251.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,36149.0,,,,4016.0,,2175.0,,2155.0,,348.0,,246.0,,,,,,, +UT,Utah,202205,Y,P,N,18857.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,18857.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",37032.0,Includes CHIP,0.0,,37032.0,,232858.0,,457877.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,421956.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,35921.0,,,,3774.0,,2136.0,,2230.0,,354.0,,279.0,,,,,,, +UT,Utah,202205,Y,U,Y,19652.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,19652.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",37032.0,Includes CHIP,0.0,,37032.0,Includes Renewals and/or Redeterminations,233604.0,,459467.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,423446.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,36021.0,,,,3774.0,,2136.0,,2230.0,,354.0,,279.0,,,,,,, +UT,Utah,202206,Y,P,N,20158.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,20158.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",35545.0,Includes CHIP,0.0,,35545.0,,233752.0,,460578.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,424681.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,35897.0,,,,3700.0,,1950.0,,2467.0,,310.0,,276.0,,,,,,, +UT,Utah,202206,Y,U,Y,21025.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,21025.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",35545.0,Includes CHIP,0.0,,35545.0,Includes Renewals and/or Redeterminations,234478.0,,462300.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,426330.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,35970.0,,,,3700.0,,1950.0,,2467.0,,310.0,,276.0,,,,,,, +UT,Utah,202207,Y,P,N,19890.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,19890.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",46250.0,Includes CHIP,0.0,,46250.0,,233562.0,,462339.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,427151.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,35188.0,,,,4347.0,,1761.0,,2439.0,,317.0,,264.0,,,,,,, +UT,Utah,202207,Y,U,Y,20857.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,20857.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",46250.0,Includes CHIP,0.0,,46250.0,Includes Renewals and/or Redeterminations,234992.0,,465497.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,430092.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,35405.0,,,,4347.0,,1761.0,,2439.0,,317.0,,264.0,,,,,,, +UT,Utah,202208,Y,P,N,22910.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,22910.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",42682.0,Includes CHIP,0.0,,42682.0,,235155.0,,466987.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,431905.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,35082.0,,,,5831.0,,2372.0,,3271.0,,496.0,,352.0,,,,,,, +UT,Utah,202208,Y,U,Y,24149.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,24149.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",42682.0,Includes CHIP,0.0,,42682.0,Includes Renewals and/or Redeterminations,236262.0,,469333.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,434085.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,35248.0,,,,5831.0,,2372.0,,3271.0,,496.0,,352.0,,,,,,, +UT,Utah,202209,Y,P,N,20664.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,20664.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",41472.0,Includes CHIP,0.0,,41472.0,,236319.0,,470503.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,435370.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,35133.0,,,,5024.0,,2416.0,,3019.0,,483.0,,309.0,,,,,,, +UT,Utah,202209,Y,U,Y,21059.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,21059.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",41472.0,Includes CHIP,0.0,,41472.0,Includes Renewals and/or Redeterminations,237215.0,,472474.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,437210.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,35264.0,,,,5024.0,,2416.0,,3019.0,,483.0,,309.0,,,,,,, +UT,Utah,202210,Y,P,N,23932.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,23932.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",49951.0,Includes CHIP,0.0,,49951.0,,236910.0,,473220.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,438661.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,34559.0,,,,4690.0,,2074.0,,2511.0,,353.0,,279.0,,,,,,, +UT,Utah,202210,Y,U,Y,25133.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,25133.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",49951.0,Includes CHIP,0.0,,49951.0,Includes Renewals and/or Redeterminations,237600.0,,474765.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,440102.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,34663.0,,,,4690.0,,2074.0,,2511.0,,353.0,,279.0,,,,,,, +UT,Utah,202211,Y,P,N,28250.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,28250.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",40763.0,Includes CHIP,0.0,,40763.0,,237941.0,,476449.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,442086.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,34363.0,,,,4246.0,,2901.0,,3726.0,,350.0,,282.0,,,,,,, +UT,Utah,202211,Y,U,Y,29511.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,29511.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",40763.0,Includes CHIP,0.0,,40763.0,Includes Renewals and/or Redeterminations,238755.0,,478470.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,443996.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,34474.0,,,,4246.0,,2901.0,,3726.0,,350.0,,282.0,,,,,,, +UT,Utah,202212,Y,P,N,26107.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,26107.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",49823.0,Includes CHIP,0.0,,49823.0,,238666.0,,479584.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,445563.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,34021.0,,,,4425.0,,3151.0,,4293.0,,583.0,,323.0,,,,,,, +UT,Utah,202212,Y,U,Y,27315.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,27315.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",49823.0,Includes CHIP,0.0,,49823.0,Includes Renewals and/or Redeterminations,239737.0,,482074.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,447904.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,34170.0,,,,4425.0,,3151.0,,4293.0,,583.0,,323.0,,,,,,, +UT,Utah,202301,Y,P,N,25739.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,25739.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",42002.0,Includes CHIP,0.0,,42002.0,,239105.0,,480536.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,446719.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,33817.0,,,,3815.0,,2813.0,,3746.0,,696.0,,507.0,,,,,,, +UT,Utah,202301,Y,U,Y,26347.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,26347.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",42002.0,Includes CHIP,0.0,,42002.0,Includes Renewals and/or Redeterminations,239902.0,,482339.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,448412.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,33927.0,,,,3815.0,,2813.0,,3746.0,,696.0,,507.0,,,,,,, +UT,Utah,202302,Y,P,N,19530.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,19530.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",39814.0,Includes CHIP,0.0,,39814.0,,239656.0,,482700.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,449251.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,33449.0,,,,3321.0,,1837.0,,3014.0,,536.0,,463.0,,,,,,, +UT,Utah,202302,Y,U,Y,20083.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,20083.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",39814.0,Includes CHIP,0.0,,39814.0,Includes Renewals and/or Redeterminations,240848.0,,486031.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,452451.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,33580.0,,,,3321.0,,1837.0,,3014.0,,536.0,,463.0,,,,,,, +UT,Utah,202303,Y,P,N,23211.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,23211.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",45595.0,Includes CHIP,0.0,,45595.0,,239567.0,,484149.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,445810.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,38339.0,,,,5843.0,,2047.0,,3203.0,,514.0,,578.0,,120043.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,19.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.204,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +UT,Utah,202303,Y,U,Y,24033.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,24033.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",45595.0,Includes CHIP,0.0,,45595.0,Includes Renewals and/or Redeterminations,240576.0,,486792.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,448327.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,38465.0,,,,5843.0,,2047.0,,3203.0,,514.0,,578.0,,120043.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,19.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.204,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +UT,Utah,202304,Y,P,N,20812.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,20812.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",53819.0,Includes CHIP,0.0,,53819.0,,240027.0,,486521.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,448643.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,37878.0,,,,4291.0,,2102.0,,2562.0,,461.0,,404.0,,124408.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,29.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.245,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +UT,Utah,202304,Y,U,Y,20812.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,20812.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",53819.0,Includes CHIP,0.0,,53819.0,Includes Renewals and/or Redeterminations,241060.0,,488964.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,450946.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,38018.0,,,,4291.0,,2102.0,,2562.0,,461.0,,404.0,,124408.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,29.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.245,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +UT,Utah,202305,Y,P,N,23555.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,23555.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",37499.0,Includes CHIP,0.0,,37499.0,,229268.0,,465969.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,428354.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,37615.0,,,,4479.0,,2323.0,,2730.0,,441.0,,302.0,,150447.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,35.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.258,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +UT,Utah,202305,Y,U,Y,23555.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,23555.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",37499.0,Includes CHIP,0.0,,37499.0,Includes Renewals and/or Redeterminations,231325.0,,470162.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,432303.0,Includes Enrollees in Other Financial Assistance Programs Not Enrolled in Medicaid or CHIP,37859.0,,,,4479.0,,2323.0,,2730.0,,441.0,,302.0,,150447.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,35.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.258,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +UT,Utah,202306,Y,P,N,23281.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,23281.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",34293.0,Includes CHIP,0.0,,34293.0,,219250.0,,445592.0,,408598.0,,36994.0,,,,4237.0,,2612.0,,3089.0,,502.0,,299.0,,144164.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,33.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.243,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +UT,Utah,202306,Y,U,Y,23281.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,23281.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",34293.0,Includes CHIP,0.0,,34293.0,Includes Renewals and/or Redeterminations,222092.0,,451184.0,,413751.0,,37433.0,,,,4237.0,,2612.0,,3089.0,,502.0,,299.0,,144164.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,33.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.243,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +UT,Utah,202307,Y,P,N,23455.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,23455.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",49239.0,Includes CHIP,0.0,,49239.0,,214495.0,,431137.0,,394390.0,,36747.0,,,,3756.0,,2689.0,,3419.0,,555.0,,351.0,,121245.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,29.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.246,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +UT,Utah,202307,Y,U,Y,23455.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,23455.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",49239.0,Includes CHIP,0.0,,49239.0,Includes Renewals and/or Redeterminations,216955.0,,435900.0,,398769.0,,37131.0,,,,3756.0,,2689.0,,3419.0,,555.0,,351.0,,121245.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,29.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.246,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +UT,Utah,202308,Y,P,N,27600.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,27600.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",43454.0,Includes CHIP,0.0,,43454.0,,208648.0,,415500.0,,379370.0,,36130.0,,,,4721.0,,3556.0,,4519.0,,485.0,,469.0,,142072.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,25.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.228,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +UT,Utah,202308,Y,U,Y,27600.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,27600.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",43454.0,Includes CHIP,0.0,,43454.0,Includes Renewals and/or Redeterminations,211493.0,,421154.0,,384590.0,,36564.0,,,,4721.0,,3556.0,,4519.0,,485.0,,469.0,,142072.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,25.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.228,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +UT,Utah,202309,Y,P,N,24963.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,24963.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",51233.0,Includes CHIP,0.0,,51233.0,,202284.0,,402120.0,,366767.0,,35353.0,,,,3980.0,,2949.0,,4043.0,,739.0,,400.0,,117376.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,22.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.212,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +UT,Utah,202309,Y,U,Y,24963.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,24963.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",51233.0,Includes CHIP,0.0,,51233.0,Includes Renewals and/or Redeterminations,205324.0,,408249.0,,372437.0,,35812.0,,,,3980.0,,2949.0,,4043.0,,739.0,,400.0,,117376.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,22.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.212,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +UT,Utah,202310,Y,P,N,29989.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,29989.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",38472.0,Includes CHIP,0.0,,38472.0,,195382.0,,388182.0,,353625.0,,34557.0,,,,4496.0,,2966.0,,4711.0,,751.0,,462.0,,117445.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,19.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.186,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +UT,Utah,202310,Y,U,Y,29989.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,29989.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",38472.0,Includes CHIP,0.0,,38472.0,Includes Renewals and/or Redeterminations,197793.0,,393085.0,,358164.0,,34921.0,,,,4496.0,,2966.0,,4711.0,,751.0,,462.0,,117445.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,19.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.186,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +UT,Utah,202311,Y,P,N,35720.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,35720.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",35117.0,Includes CHIP,0.0,,35117.0,,187661.0,,374496.0,,340681.0,,33815.0,,,,4552.0,,3508.0,,5487.0,,785.0,,574.0,,120497.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,23.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.218,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +UT,Utah,202311,Y,U,Y,35720.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,35720.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",35117.0,Includes CHIP,0.0,,35117.0,Includes Renewals and/or Redeterminations,191068.0,,381222.0,,346850.0,,34372.0,,,,4552.0,,3508.0,,5487.0,,785.0,,574.0,,120497.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,23.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.218,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +UT,Utah,202312,Y,P,N,34382.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,34382.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",51537.0,Includes CHIP,0.0,,51537.0,,179983.0,,361645.0,,328297.0,,33348.0,,,,1397.0,,1925.0,,2962.0,,631.0,,260.0,,115835.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,23.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.212,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +UT,Utah,202312,Y,U,Y,34382.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,34382.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",51537.0,Includes CHIP,0.0,,51537.0,Includes Renewals and/or Redeterminations,183815.0,,369439.0,,335484.0,,33955.0,,,,1397.0,,1925.0,,2962.0,,631.0,,260.0,,115835.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,23.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.212,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +UT,Utah,202401,Y,P,N,36500.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,36500.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",42976.0,Includes CHIP,0.0,,42976.0,,176194.0,,353160.0,,320006.0,,33154.0,,,,6986.0,,4749.0,,8159.0,,1827.0,,1161.0,,138250.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,24.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.232,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +UT,Utah,202401,Y,U,Y,36500.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,36500.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",42976.0,Includes CHIP,0.0,,42976.0,Includes Renewals and/or Redeterminations,180106.0,,361056.0,,327097.0,,33959.0,,,,6986.0,,4749.0,,8159.0,,1827.0,,1161.0,,138250.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,24.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.232,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +UT,Utah,202402,Y,P,N,28599.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,28599.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",44330.0,Includes CHIP,0.0,,44330.0,,174084.0,,346761.0,,313162.0,,33599.0,,,,5597.0,,3847.0,,7426.0,,1704.0,,1011.0,,117638.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,17.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.194,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +UT,Utah,202402,Y,U,Y,28599.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,28599.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",44330.0,Includes CHIP,0.0,,44330.0,Includes Renewals and/or Redeterminations,178080.0,,354900.0,,320533.0,,34367.0,,,,5597.0,,3847.0,,7426.0,,1704.0,,1011.0,,117638.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,17.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.194,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +UT,Utah,202403,Y,P,N,27972.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,27972.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",56603.0,Includes CHIP,0.0,,56603.0,,172299.0,,337678.0,,303221.0,,34457.0,,,,5195.0,,4041.0,,6577.0,,1232.0,,1129.0,,114517.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,18.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.234,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +UT,Utah,202403,Y,U,Y,27972.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,27972.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",56603.0,Includes CHIP,0.0,,56603.0,Includes Renewals and/or Redeterminations,175494.0,,344565.0,,309509.0,,35056.0,,,,5195.0,,4041.0,,6577.0,,1232.0,,1129.0,,114517.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,18.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.234,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +UT,Utah,202404,Y,P,N,27945.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,27945.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",40459.0,Includes CHIP,0.0,,40459.0,,171879.0,,333720.0,,298926.0,,34794.0,,,,6053.0,,3940.0,,6432.0,,1281.0,,967.0,,113496.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,13.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.193,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +UT,Utah,202404,Y,U,Y,27945.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,27945.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",40459.0,Includes CHIP,0.0,,40459.0,Includes Renewals and/or Redeterminations,174762.0,,340180.0,,304888.0,,35292.0,,,,6053.0,,3940.0,,6432.0,,1281.0,,967.0,,113496.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,13.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.193,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +UT,Utah,202405,Y,P,N,28078.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,28078.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",39184.0,Includes CHIP,0.0,,39184.0,,172680.0,,334872.0,,299781.0,,35091.0,,,,9170.0,,3673.0,,6608.0,,1154.0,,767.0,,119912.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,17.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.247,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +UT,Utah,202405,Y,U,Y,28078.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,28078.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",39184.0,Includes CHIP,0.0,,39184.0,Includes Renewals and/or Redeterminations,175403.0,,341011.0,,305393.0,,35618.0,,,,9170.0,,3673.0,,6608.0,,1154.0,,767.0,,119912.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,17.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.247,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +UT,Utah,202406,Y,P,N,25581.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,25581.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",51478.0,Includes CHIP,0.0,,51478.0,,172815.0,,335656.0,,300357.0,,35299.0,,,,4265.0,,3347.0,,5535.0,,948.0,,635.0,,110057.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,22.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.241,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +UT,Utah,202406,Y,U,Y,25581.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,25581.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",51478.0,Includes CHIP,0.0,,51478.0,Includes Renewals and/or Redeterminations,175173.0,,340602.0,,304932.0,,35670.0,,,,4265.0,,3347.0,,5535.0,,948.0,,635.0,,110057.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,22.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.241,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +UT,Utah,202407,Y,P,N,27473.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,27473.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",35699.0,Includes CHIP,0.0,,35699.0,,173221.0,,335097.0,,299739.0,,35358.0,,161876.0,,4573.0,,4385.0,,5500.0,,1084.0,,702.0,,122199.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,24.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.223,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +UT,Utah,202407,Y,U,Y,27473.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,27473.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",35699.0,Includes CHIP,0.0,,35699.0,Includes Renewals and/or Redeterminations,175980.0,,341019.0,,305127.0,,35892.0,,165039.0,,4573.0,,4385.0,,5500.0,,1084.0,,702.0,,122199.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,24.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.223,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +UT,Utah,202408,Y,P,N,29296.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,29296.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",58497.0,Includes CHIP,0.0,,58497.0,,174509.0,,336810.0,,300938.0,,35872.0,,162301.0,,4982.0,,4333.0,,5491.0,,910.0,,598.0,,121905.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,20.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.224,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +UT,Utah,202408,Y,U,Y,29296.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,29296.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",58497.0,Includes CHIP,0.0,,58497.0,Includes Renewals and/or Redeterminations,177188.0,,342499.0,,306112.0,,36387.0,,165311.0,,4982.0,,4333.0,,5491.0,,910.0,,598.0,,121905.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,20.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.224,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +UT,Utah,202409,Y,P,N,27343.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,27343.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",41634.0,Includes CHIP,0.0,,41634.0,,175607.0,,338122.0,,301962.0,,36160.0,,162515.0,,4605.0,,3972.0,,5244.0,,1000.0,,540.0,,107721.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,16.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.192,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +UT,Utah,202409,Y,U,Y,27343.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,27343.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",41634.0,Includes CHIP,0.0,,41634.0,Includes Renewals and/or Redeterminations,178153.0,,343713.0,,307123.0,,36590.0,,165560.0,,4605.0,,3972.0,,5244.0,,1000.0,,540.0,,107721.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,16.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.192,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +UT,Utah,202410,Y,P,N,31712.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,31712.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",39689.0,Includes CHIP,0.0,,39689.0,,176109.0,,339379.0,,302714.0,,36665.0,,163270.0,,5404.0,,4388.0,,6254.0,,1066.0,,643.0,,113288.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,14.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.183,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +UT,Utah,202410,Y,U,Y,31712.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,31712.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",39689.0,Includes CHIP,0.0,,39689.0,Includes Renewals and/or Redeterminations,177797.0,,343306.0,,306354.0,,36952.0,,165509.0,,5404.0,,4388.0,,6254.0,,1066.0,,643.0,,113288.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,14.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.183,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +UT,Utah,202411,Y,P,N,33873.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,33873.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",54388.0,Includes CHIP,0.0,,54388.0,,174761.0,,338368.0,,301924.0,,36444.0,,163607.0,,4383.0,,4651.0,,5538.0,,812.0,,446.0,,104225.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,18.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.209,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +UT,Utah,202411,Y,U,Y,33873.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,33873.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",54388.0,Includes CHIP,0.0,,54388.0,Includes Renewals and/or Redeterminations,177019.0,,343710.0,,306892.0,,36818.0,,166691.0,,4383.0,,4651.0,,5538.0,,812.0,,446.0,,104225.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,18.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.209,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +UT,Utah,202412,Y,P,N,34183.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,34183.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",36317.0,Includes CHIP,0.0,,36317.0,,173886.0,,337075.0,,300742.0,,36333.0,,163189.0,,5403.0,,4988.0,,8326.0,,1293.0,,716.0,,110892.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,19.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.208,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +UT,Utah,202412,Y,U,Y,34183.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,34183.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",36317.0,Includes CHIP,0.0,,36317.0,Includes Renewals and/or Redeterminations,176493.0,,343270.0,,306547.0,,36723.0,,166777.0,,5403.0,,4988.0,,8326.0,,1293.0,,716.0,,110892.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,19.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.208,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +UT,Utah,202501,Y,P,N,33085.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,33085.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",38970.0,Includes CHIP,0.0,,38970.0,,172502.0,,336593.0,,300643.0,,35950.0,,164091.0,,5651.0,,4187.0,,7453.0,,1632.0,,961.0,,128030.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,19.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.209,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +UT,Utah,202501,Y,U,Y,33085.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,33085.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",38970.0,Includes CHIP,0.0,,38970.0,Includes Renewals and/or Redeterminations,175319.0,,342992.0,,306602.0,,36390.0,,167673.0,,5651.0,,4187.0,,7453.0,,1632.0,,961.0,,128030.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,19.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.209,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +UT,Utah,202502,Y,P,N,23018.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,23018.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",42952.0,Includes CHIP,0.0,,42952.0,,172786.0,,338649.0,,302679.0,,35970.0,,165863.0,,4428.0,,3363.0,,5723.0,,1082.0,,707.0,,98812.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,12.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.153,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +UT,Utah,202502,Y,U,Y,23018.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,23018.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",42952.0,Includes CHIP,0.0,,42952.0,Includes Renewals and/or Redeterminations,174977.0,,343600.0,,307241.0,,36359.0,,168623.0,,4428.0,,3363.0,,5723.0,,1082.0,,707.0,,98812.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,12.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.153,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +UT,Utah,202503,Y,P,N,25214.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,25214.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",57362.0,Includes CHIP,0.0,,57362.0,,173116.0,,340003.0,,304124.0,,35879.0,,166887.0,,4948.0,,4542.0,,5112.0,,835.0,,644.0,,101779.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,11.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.142,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +UT,Utah,202503,Y,U,Y,25214.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,25214.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",57362.0,Includes CHIP,0.0,,57362.0,Includes Renewals and/or Redeterminations,174923.0,,344200.0,,308052.0,,36148.0,,169277.0,,4948.0,,4542.0,,5112.0,,835.0,,644.0,,101779.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,11.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.142,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +UT,Utah,202504,Y,P,N,24146.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,24146.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",38224.0,Includes CHIP,0.0,,38224.0,,172323.0,,337852.0,,302130.0,,35722.0,,165529.0,,4591.0,,4307.0,,4712.0,,773.0,,447.0,,96976.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,11.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.139,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +UT,Utah,202504,Y,U,Y,24146.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,24146.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",38224.0,Includes CHIP,0.0,,38224.0,Includes Renewals and/or Redeterminations,174090.0,,341957.0,,305958.0,,35999.0,,167867.0,,4591.0,,4307.0,,4712.0,,773.0,,447.0,,96976.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,11.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.139,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +UT,Utah,202505,Y,P,N,25132.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,25132.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",46267.0,Includes CHIP,0.0,,46267.0,,171840.0,,337001.0,,301385.0,,35616.0,,165161.0,,3161.0,,2031.0,,2713.0,,550.0,,279.0,,105119.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,15.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.176,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +UT,Utah,202505,Y,U,Y,25132.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,25132.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",46267.0,Includes CHIP,0.0,,46267.0,Includes Renewals and/or Redeterminations,173567.0,,340844.0,,304927.0,,35917.0,,167277.0,,3161.0,,2031.0,,2713.0,,550.0,,279.0,,105119.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,15.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.176,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +UT,Utah,202506,Y,P,N,24348.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,24348.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",34972.0,Includes CHIP,0.0,,34972.0,,171193.0,,334652.0,,298927.0,,35725.0,,163459.0,,4124.0,,3111.0,,4719.0,,859.0,,482.0,,93509.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,16.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.174,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +UT,Utah,202506,Y,U,Y,24348.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,24348.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",34972.0,Includes CHIP,0.0,,34972.0,Includes Renewals and/or Redeterminations,173309.0,,339725.0,,303645.0,,36080.0,,166416.0,,4124.0,,3111.0,,4719.0,,859.0,,482.0,,93509.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,16.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.174,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +UT,Utah,202507,Y,P,N,25660.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,25660.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",33459.0,Includes CHIP,0.0,,33459.0,,171371.0,,334589.0,,299108.0,,35481.0,,163218.0,,4912.0,,3208.0,,5227.0,,1175.0,,624.0,,106688.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,12.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.157,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +UT,Utah,202507,Y,U,Y,25660.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,25660.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",33459.0,Includes CHIP,0.0,,33459.0,Includes Renewals and/or Redeterminations,173249.0,,339046.0,,303265.0,,35781.0,,165797.0,,4912.0,,3208.0,,5227.0,,1175.0,,624.0,,106688.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,12.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.157,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +UT,Utah,202508,Y,P,N,26408.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,26408.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",54142.0,Includes CHIP,0.0,,54142.0,,170314.0,,333169.0,,297733.0,,35436.0,,162855.0,,4472.0,,3318.0,,5301.0,,1041.0,,551.0,,108382.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,15.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.158,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +UT,Utah,202508,Y,U,Y,26408.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,26408.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",54142.0,Includes CHIP,0.0,,54142.0,Includes Renewals and/or Redeterminations,172867.0,,339044.0,,303173.0,,35871.0,,166177.0,,4472.0,,3318.0,,5301.0,,1041.0,,551.0,,108382.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,15.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.158,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +UT,Utah,202509,Y,P,N,26461.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,26461.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",37285.0,Includes CHIP,0.0,,37285.0,,169693.0,,332266.0,,297030.0,,35236.0,,162573.0,,4782.0,,3060.0,,5684.0,,1131.0,,584.0,,115872.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,18.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.195,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +UT,Utah,202509,Y,U,Y,26461.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,26461.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",37285.0,Includes CHIP,0.0,,37285.0,Includes Renewals and/or Redeterminations,172014.0,,337687.0,,302064.0,,35623.0,,165673.0,,4782.0,,3060.0,,5684.0,,1131.0,,584.0,,115872.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,18.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.195,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +UT,Utah,202510,Y,P,N,21572.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",0.0,,21572.0,"Includes Applications for Other Programs (e.g, QHPs, SNAP, etc.); Includes Accounts Transferred from FFM",34963.0,Includes CHIP,0.0,,34963.0,,169369.0,,332621.0,,297550.0,,35071.0,,163252.0,,4074.0,,2923.0,,5197.0,,1130.0,,606.0,,95160.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,9.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.122,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +VA,Virginia,201309,N,U,Y,,,,,,,,,,,,,,,935434.0,,,,,,,,,,,,,,,,,,,,,,, +VA,Virginia,201706,N,P,N,20068.0,Includes Renewals and/or Redeterminations,0.0,,20068.0,Includes Renewals and/or Redeterminations,13818.0,Includes Renewals and/or Redeterminations,547.0,Includes Renewals and/or Redeterminations,14365.0,Includes Renewals and/or Redeterminations,658398.0,,997537.0,,875927.0,,121610.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,201706,N,U,Y,23142.0,Includes Renewals and/or Redeterminations,0.0,,23142.0,Includes Renewals and/or Redeterminations,15258.0,Includes Renewals and/or Redeterminations,616.0,Includes Renewals and/or Redeterminations,15874.0,Includes Renewals and/or Redeterminations,667796.0,,1011261.0,,887688.0,,123573.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,201707,N,P,N,21110.0,Includes Renewals and/or Redeterminations,0.0,,21110.0,Includes Renewals and/or Redeterminations,13174.0,Includes Renewals and/or Redeterminations,518.0,Includes Renewals and/or Redeterminations,13692.0,Includes Renewals and/or Redeterminations,658829.0,,998690.0,,875574.0,,123116.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,201707,N,U,Y,21823.0,Includes Renewals and/or Redeterminations,0.0,,21823.0,Includes Renewals and/or Redeterminations,13282.0,Includes Renewals and/or Redeterminations,503.0,Includes Renewals and/or Redeterminations,13785.0,Includes Renewals and/or Redeterminations,670411.0,,1015609.0,,890178.0,,125431.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,201708,N,P,N,24768.0,Includes Renewals and/or Redeterminations,0.0,,24768.0,Includes Renewals and/or Redeterminations,16059.0,Includes Renewals and/or Redeterminations,627.0,Includes Renewals and/or Redeterminations,16686.0,Includes Renewals and/or Redeterminations,665265.0,,1008235.0,,882612.0,,125623.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,201708,N,U,Y,25641.0,Includes Renewals and/or Redeterminations,0.0,,25641.0,Includes Renewals and/or Redeterminations,16157.0,Includes Renewals and/or Redeterminations,624.0,Includes Renewals and/or Redeterminations,16781.0,Includes Renewals and/or Redeterminations,675712.0,,1023102.0,,895340.0,,127762.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,201709,N,P,N,22632.0,Includes Renewals and/or Redeterminations,0.0,,22632.0,Includes Renewals and/or Redeterminations,14308.0,Includes Renewals and/or Redeterminations,589.0,Includes Renewals and/or Redeterminations,14897.0,Includes Renewals and/or Redeterminations,667170.0,,1010368.0,,882865.0,,127503.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,201709,N,U,Y,23253.0,Includes Renewals and/or Redeterminations,0.0,,23253.0,Includes Renewals and/or Redeterminations,14424.0,Includes Renewals and/or Redeterminations,602.0,Includes Renewals and/or Redeterminations,15026.0,Includes Renewals and/or Redeterminations,677857.0,,1026222.0,,896443.0,,129779.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,201710,N,P,N,22673.0,,0.0,,22673.0,,14545.0,,606.0,,15151.0,,670498.0,,1015304.0,,885872.0,,129432.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,201710,N,U,Y,23329.0,,0.0,,23329.0,,14573.0,,602.0,,15175.0,,679809.0,,1029487.0,,898155.0,,131332.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,201711,N,P,N,21648.0,,0.0,,21648.0,,13242.0,,545.0,,13787.0,,673240.0,,1014094.0,,882323.0,,131771.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,201711,N,U,Y,22728.0,,0.0,,22728.0,,13077.0,,553.0,,13630.0,,682302.0,,1027932.0,,894177.0,,133755.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,201712,N,P,N,14476.0,,0.0,,14476.0,,12588.0,,591.0,,13179.0,,674036.0,,1014833.0,,881410.0,,133423.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,201712,N,U,Y,19888.0,,0.0,,19888.0,,15023.0,,698.0,,15721.0,,683182.0,,1028297.0,,893007.0,,135290.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,201801,N,P,N,22033.0,,0.0,,22033.0,,18138.0,,761.0,,18899.0,,675976.0,,1017016.0,,882124.0,,134892.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,201801,N,U,Y,22779.0,,0.0,,22779.0,,18816.0,,827.0,,19643.0,,685089.0,,1030996.0,,894254.0,,136742.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,201802,N,P,N,19282.0,,0.0,,19282.0,,19423.0,,922.0,,20345.0,,678500.0,,1020757.0,,884336.0,,136421.0,,,,921.0,,2747.0,,5899.0,,4305.0,,18765.0,,,,,,, +VA,Virginia,201802,N,U,Y,19939.0,,0.0,,19939.0,,19894.0,,956.0,,20850.0,,688287.0,,1035326.0,,896952.0,,138374.0,,,,1016.0,,2775.0,,5956.0,,4159.0,,19011.0,,,,,,, +VA,Virginia,201803,N,P,N,19532.0,Includes Renewals and/or Redeterminations,0.0,,19532.0,Includes Renewals and/or Redeterminations,21858.0,Includes Renewals and/or Redeterminations,964.0,Includes Renewals and/or Redeterminations,22822.0,Includes Renewals and/or Redeterminations,680866.0,,1023463.0,,886462.0,,137001.0,,,,909.0,,2869.0,,6036.0,,6499.0,,20958.0,,,,,,, +VA,Virginia,201803,N,U,Y,20159.0,Includes Renewals and/or Redeterminations,0.0,,20159.0,Includes Renewals and/or Redeterminations,22283.0,Includes Renewals and/or Redeterminations,999.0,Includes Renewals and/or Redeterminations,23282.0,Includes Renewals and/or Redeterminations,690819.0,,1038200.0,,899058.0,,139142.0,,,,1083.0,,2918.0,,6095.0,,6098.0,,21154.0,,,,,,, +VA,Virginia,201804,N,P,N,19842.0,Includes Renewals and/or Redeterminations,0.0,,19842.0,Includes Renewals and/or Redeterminations,21026.0,Includes Renewals and/or Redeterminations,989.0,Includes Renewals and/or Redeterminations,22015.0,Includes Renewals and/or Redeterminations,684430.0,,1027877.0,,890041.0,,137836.0,,,,997.0,,2780.0,,6370.0,,6627.0,,18785.0,,,,,,, +VA,Virginia,201804,N,U,Y,20509.0,Includes Renewals and/or Redeterminations,0.0,,20509.0,Includes Renewals and/or Redeterminations,21247.0,Includes Renewals and/or Redeterminations,1029.0,Includes Renewals and/or Redeterminations,22276.0,Includes Renewals and/or Redeterminations,693435.0,,1041481.0,,902408.0,,139073.0,,,,1162.0,,2781.0,,6332.0,,6313.0,,18881.0,,,,,,, +VA,Virginia,201805,N,P,N,19982.0,Includes Renewals and/or Redeterminations,0.0,,19982.0,Includes Renewals and/or Redeterminations,19542.0,Includes Renewals and/or Redeterminations,985.0,Includes Renewals and/or Redeterminations,20527.0,Includes Renewals and/or Redeterminations,686889.0,,1031230.0,,893575.0,,137655.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,201805,N,U,Y,20617.0,Includes Renewals and/or Redeterminations,0.0,,20617.0,Includes Renewals and/or Redeterminations,19866.0,Includes Renewals and/or Redeterminations,1003.0,Includes Renewals and/or Redeterminations,20869.0,Includes Renewals and/or Redeterminations,694721.0,,1043181.0,,903997.0,,139184.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,201806,N,P,N,19349.0,Includes Renewals and/or Redeterminations,0.0,,19349.0,Includes Renewals and/or Redeterminations,18130.0,Includes Renewals and/or Redeterminations,853.0,Includes Renewals and/or Redeterminations,18983.0,Includes Renewals and/or Redeterminations,688264.0,,1032743.0,,894748.0,,137995.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,201806,N,U,Y,20005.0,Includes Renewals and/or Redeterminations,0.0,,20005.0,Includes Renewals and/or Redeterminations,18385.0,Includes Renewals and/or Redeterminations,864.0,Includes Renewals and/or Redeterminations,19249.0,Includes Renewals and/or Redeterminations,695714.0,,1044206.0,,904783.0,,139423.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,201807,N,P,N,20217.0,Includes Renewals and/or Redeterminations,0.0,,20217.0,Includes Renewals and/or Redeterminations,17650.0,Includes Renewals and/or Redeterminations,794.0,Includes Renewals and/or Redeterminations,18444.0,Includes Renewals and/or Redeterminations,688261.0,,1032764.0,,895273.0,,137491.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,201807,N,U,Y,21134.0,Includes Renewals and/or Redeterminations,0.0,,21134.0,Includes Renewals and/or Redeterminations,17757.0,Includes Renewals and/or Redeterminations,842.0,Includes Renewals and/or Redeterminations,18599.0,Includes Renewals and/or Redeterminations,697122.0,,1046260.0,,906995.0,,139265.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,201808,N,P,N,17575.0,Includes Renewals and/or Redeterminations,0.0,,17575.0,Includes Renewals and/or Redeterminations,15089.0,Includes Renewals and/or Redeterminations,720.0,Includes Renewals and/or Redeterminations,15809.0,Includes Renewals and/or Redeterminations,689255.0,,1035053.0,,897782.0,,137271.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,201808,N,U,Y,23116.0,Includes Renewals and/or Redeterminations,0.0,,23116.0,Includes Renewals and/or Redeterminations,19305.0,Includes Renewals and/or Redeterminations,927.0,Includes Renewals and/or Redeterminations,20232.0,Includes Renewals and/or Redeterminations,697352.0,,1046885.0,,908048.0,,138837.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,201809,N,P,N,18441.0,Includes Renewals and/or Redeterminations,0.0,,18441.0,Includes Renewals and/or Redeterminations,15953.0,Includes Renewals and/or Redeterminations,735.0,Includes Renewals and/or Redeterminations,16688.0,Includes Renewals and/or Redeterminations,687081.0,,1031756.0,,895232.0,,136524.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,201809,N,U,Y,19167.0,Includes Renewals and/or Redeterminations,0.0,,19167.0,Includes Renewals and/or Redeterminations,15942.0,Includes Renewals and/or Redeterminations,735.0,Includes Renewals and/or Redeterminations,16677.0,Includes Renewals and/or Redeterminations,696350.0,,1046208.0,,907030.0,,139178.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,201810,N,P,N,22016.0,Includes Renewals and/or Redeterminations,0.0,,22016.0,Includes Renewals and/or Redeterminations,17750.0,Includes Renewals and/or Redeterminations,803.0,Includes Renewals and/or Redeterminations,18553.0,Includes Renewals and/or Redeterminations,689069.0,,1035179.0,,897260.0,,137919.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,201810,N,U,Y,23284.0,Includes Renewals and/or Redeterminations,0.0,,23284.0,Includes Renewals and/or Redeterminations,17727.0,Includes Renewals and/or Redeterminations,825.0,Includes Renewals and/or Redeterminations,18552.0,Includes Renewals and/or Redeterminations,697409.0,,1048180.0,,908486.0,,139694.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,201811,N,P,N,31695.0,Includes Renewals and/or Redeterminations,0.0,,31695.0,Includes Renewals and/or Redeterminations,30772.0,Includes Renewals and/or Redeterminations,1107.0,Includes Renewals and/or Redeterminations,31879.0,Includes Renewals and/or Redeterminations,690295.0,,1036625.0,,897529.0,,139096.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,201811,N,U,Y,32496.0,Includes Renewals and/or Redeterminations,0.0,,32496.0,Includes Renewals and/or Redeterminations,30437.0,Includes Renewals and/or Redeterminations,1135.0,Includes Renewals and/or Redeterminations,31572.0,Includes Renewals and/or Redeterminations,699497.0,,1049654.0,,907859.0,,141795.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,201812,N,P,N,32057.0,Includes Renewals and/or Redeterminations,0.0,,32057.0,Includes Renewals and/or Redeterminations,58949.0,Includes Renewals and/or Redeterminations,2279.0,Includes Renewals and/or Redeterminations,61228.0,Includes Renewals and/or Redeterminations,693406.0,,1039484.0,,897772.0,,141712.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,201812,N,U,Y,33196.0,Includes Renewals and/or Redeterminations,0.0,,33196.0,Includes Renewals and/or Redeterminations,59794.0,Includes Renewals and/or Redeterminations,2337.0,Includes Renewals and/or Redeterminations,62131.0,Includes Renewals and/or Redeterminations,702460.0,,1053309.0,,909439.0,,143870.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,201901,Y,P,N,37416.0,Includes Renewals and/or Redeterminations,0.0,,37416.0,Includes Renewals and/or Redeterminations,30202.0,Includes Renewals and/or Redeterminations,906.0,Includes Renewals and/or Redeterminations,31108.0,Includes Renewals and/or Redeterminations,712386.0,,1237262.0,,1095021.0,,142241.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,201901,Y,U,Y,38235.0,Includes Renewals and/or Redeterminations,0.0,,38235.0,Includes Renewals and/or Redeterminations,29512.0,Includes Renewals and/or Redeterminations,856.0,Includes Renewals and/or Redeterminations,30368.0,Includes Renewals and/or Redeterminations,712386.0,,1237262.0,,1095021.0,,142241.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,201902,Y,P,N,28760.0,Includes Renewals and/or Redeterminations,0.0,,28760.0,Includes Renewals and/or Redeterminations,23890.0,Includes Renewals and/or Redeterminations,681.0,Includes Renewals and/or Redeterminations,24571.0,Includes Renewals and/or Redeterminations,713535.0,,1251260.0,,1108915.0,,142345.0,,,,2908.0,,4051.0,,7007.0,,5590.0,,19781.0,,,,,,, +VA,Virginia,201902,Y,U,Y,30071.0,Includes Renewals and/or Redeterminations,0.0,,30071.0,Includes Renewals and/or Redeterminations,23999.0,Includes Renewals and/or Redeterminations,688.0,Includes Renewals and/or Redeterminations,24687.0,Includes Renewals and/or Redeterminations,713535.0,,1251260.0,,1108915.0,,142345.0,,,,2960.0,,4151.0,,7001.0,,5407.0,,19345.0,,,,,,, +VA,Virginia,201903,Y,P,N,29967.0,Includes Renewals and/or Redeterminations,0.0,,29967.0,Includes Renewals and/or Redeterminations,28163.0,Includes Renewals and/or Redeterminations,780.0,Includes Renewals and/or Redeterminations,28943.0,Includes Renewals and/or Redeterminations,726250.0,,1291923.0,,1147269.0,,144654.0,,,,3180.0,,5704.0,,7643.0,,8127.0,,27440.0,,,,,,, +VA,Virginia,201903,Y,U,Y,31564.0,Includes Renewals and/or Redeterminations,0.0,,31564.0,Includes Renewals and/or Redeterminations,28056.0,Includes Renewals and/or Redeterminations,775.0,Includes Renewals and/or Redeterminations,28831.0,Includes Renewals and/or Redeterminations,726250.0,,1291923.0,,1147269.0,,144654.0,,,,3281.0,,5811.0,,7659.0,,7781.0,,26478.0,,,,,,, +VA,Virginia,201904,Y,P,N,28831.0,Includes Renewals and/or Redeterminations,0.0,,28831.0,Includes Renewals and/or Redeterminations,25132.0,Includes Renewals and/or Redeterminations,806.0,Includes Renewals and/or Redeterminations,25938.0,Includes Renewals and/or Redeterminations,719275.0,,1285296.0,,1142863.0,,142433.0,,,,3010.0,,5793.0,,6426.0,,9107.0,,19465.0,,,,,,, +VA,Virginia,201904,Y,U,Y,30553.0,Includes Renewals and/or Redeterminations,0.0,,30553.0,Includes Renewals and/or Redeterminations,25148.0,Includes Renewals and/or Redeterminations,805.0,Includes Renewals and/or Redeterminations,25953.0,Includes Renewals and/or Redeterminations,728418.0,,1305392.0,,1160943.0,,144449.0,,,,3118.0,,5932.0,,6462.0,,8708.0,,18780.0,,,,,,, +VA,Virginia,201905,Y,P,N,29678.0,Includes Renewals and/or Redeterminations,0.0,,29678.0,Includes Renewals and/or Redeterminations,23615.0,Includes Renewals and/or Redeterminations,696.0,Includes Renewals and/or Redeterminations,24311.0,Includes Renewals and/or Redeterminations,721530.0,,1298381.0,,1155830.0,,142551.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,201905,Y,U,Y,30783.0,Includes Renewals and/or Redeterminations,0.0,,30783.0,Includes Renewals and/or Redeterminations,23600.0,Includes Renewals and/or Redeterminations,724.0,Includes Renewals and/or Redeterminations,24324.0,Includes Renewals and/or Redeterminations,729050.0,,1314268.0,,1170077.0,,144191.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,201906,Y,P,N,25841.0,Includes Renewals and/or Redeterminations,0.0,,25841.0,Includes Renewals and/or Redeterminations,19730.0,Includes Renewals and/or Redeterminations,628.0,Includes Renewals and/or Redeterminations,20358.0,Includes Renewals and/or Redeterminations,722325.0,,1306710.0,,1164265.0,,142445.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,201906,Y,U,Y,27232.0,Includes Renewals and/or Redeterminations,0.0,,27232.0,Includes Renewals and/or Redeterminations,19657.0,Includes Renewals and/or Redeterminations,634.0,Includes Renewals and/or Redeterminations,20291.0,Includes Renewals and/or Redeterminations,730566.0,,1324237.0,,1180059.0,,144178.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,201907,Y,P,N,29430.0,Includes Renewals and/or Redeterminations,0.0,,29430.0,Includes Renewals and/or Redeterminations,21458.0,Includes Renewals and/or Redeterminations,683.0,Includes Renewals and/or Redeterminations,22141.0,Includes Renewals and/or Redeterminations,724932.0,,1317981.0,,1174889.0,,143092.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,201907,Y,U,Y,30346.0,Includes Renewals and/or Redeterminations,0.0,,30346.0,Includes Renewals and/or Redeterminations,21473.0,Includes Renewals and/or Redeterminations,674.0,Includes Renewals and/or Redeterminations,22147.0,Includes Renewals and/or Redeterminations,734000.0,,1336892.0,,1191721.0,,145171.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,201908,Y,P,N,31574.0,Includes Renewals and/or Redeterminations,0.0,,31574.0,Includes Renewals and/or Redeterminations,22729.0,Includes Renewals and/or Redeterminations,780.0,Includes Renewals and/or Redeterminations,23509.0,Includes Renewals and/or Redeterminations,727013.0,,1328805.0,,1184721.0,,144084.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,201908,Y,U,Y,32777.0,Includes Renewals and/or Redeterminations,0.0,,32777.0,Includes Renewals and/or Redeterminations,22680.0,Includes Renewals and/or Redeterminations,772.0,Includes Renewals and/or Redeterminations,23452.0,Includes Renewals and/or Redeterminations,735791.0,,1346606.0,,1200523.0,,146083.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,201909,Y,P,N,30295.0,Includes Renewals and/or Redeterminations,0.0,,30295.0,Includes Renewals and/or Redeterminations,22208.0,Includes Renewals and/or Redeterminations,711.0,Includes Renewals and/or Redeterminations,22919.0,Includes Renewals and/or Redeterminations,728273.0,,1337347.0,,1192106.0,,145241.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,201909,Y,U,Y,31785.0,Includes Renewals and/or Redeterminations,0.0,,31785.0,Includes Renewals and/or Redeterminations,25828.0,Includes Renewals and/or Redeterminations,994.0,Includes Renewals and/or Redeterminations,26822.0,Includes Renewals and/or Redeterminations,737849.0,,1356188.0,,1208888.0,,147300.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,201910,Y,P,N,35972.0,Includes Renewals and/or Redeterminations,0.0,,35972.0,Includes Renewals and/or Redeterminations,28695.0,Includes Renewals and/or Redeterminations,950.0,Includes Renewals and/or Redeterminations,29645.0,Includes Renewals and/or Redeterminations,732094.0,,1351713.0,,1205055.0,,146658.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,201910,Y,U,Y,36888.0,Includes Renewals and/or Redeterminations,0.0,,36888.0,Includes Renewals and/or Redeterminations,28810.0,Includes Renewals and/or Redeterminations,939.0,Includes Renewals and/or Redeterminations,29749.0,Includes Renewals and/or Redeterminations,740192.0,,1368331.0,,1219888.0,,148443.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,201911,Y,P,N,29341.0,Includes Renewals and/or Redeterminations,0.0,,29341.0,Includes Renewals and/or Redeterminations,48979.0,Includes Renewals and/or Redeterminations,1058.0,Includes Renewals and/or Redeterminations,50037.0,Includes Renewals and/or Redeterminations,737895.0,,1372173.0,,1222280.0,,149893.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,201911,Y,U,Y,30669.0,Includes Renewals and/or Redeterminations,0.0,,30669.0,Includes Renewals and/or Redeterminations,51476.0,Includes Renewals and/or Redeterminations,1171.0,Includes Renewals and/or Redeterminations,52647.0,Includes Renewals and/or Redeterminations,746329.0,,1389673.0,,1237774.0,,151899.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,201912,Y,P,N,26644.0,Includes Renewals and/or Redeterminations,0.0,,26644.0,Includes Renewals and/or Redeterminations,61334.0,Includes Renewals and/or Redeterminations,1213.0,Includes Renewals and/or Redeterminations,62547.0,Includes Renewals and/or Redeterminations,745667.0,,1397783.0,,1244100.0,,153683.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,201912,Y,U,Y,28048.0,Includes Renewals and/or Redeterminations,0.0,,28048.0,Includes Renewals and/or Redeterminations,66037.0,Includes Renewals and/or Redeterminations,1313.0,Includes Renewals and/or Redeterminations,67350.0,Includes Renewals and/or Redeterminations,753802.0,,1414239.0,,1258915.0,,155324.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,202001,Y,P,N,30687.0,Includes Renewals and/or Redeterminations,0.0,,30687.0,Includes Renewals and/or Redeterminations,38367.0,Includes Renewals and/or Redeterminations,1279.0,Includes Renewals and/or Redeterminations,39646.0,Includes Renewals and/or Redeterminations,748452.0,,1406595.0,,1252194.0,,154401.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,202001,Y,U,Y,31925.0,Includes Renewals and/or Redeterminations,0.0,,31925.0,Includes Renewals and/or Redeterminations,38806.0,Includes Renewals and/or Redeterminations,1296.0,Includes Renewals and/or Redeterminations,40102.0,Includes Renewals and/or Redeterminations,756502.0,,1422802.0,,1266799.0,,156003.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,202002,Y,P,N,27640.0,Includes Renewals and/or Redeterminations,0.0,,27640.0,Includes Renewals and/or Redeterminations,30920.0,Includes Renewals and/or Redeterminations,1157.0,Includes Renewals and/or Redeterminations,32077.0,Includes Renewals and/or Redeterminations,748606.0,,1410233.0,,1255472.0,,154761.0,,,,6209.0,,4420.0,,11591.0,,7128.0,,16639.0,,,,,,, +VA,Virginia,202002,Y,U,Y,28857.0,Includes Renewals and/or Redeterminations,0.0,,28857.0,Includes Renewals and/or Redeterminations,32249.0,Includes Renewals and/or Redeterminations,1245.0,Includes Renewals and/or Redeterminations,33494.0,Includes Renewals and/or Redeterminations,756692.0,,1426912.0,,1270407.0,,156505.0,,,,6154.0,,4493.0,,11597.0,,6768.0,,18180.0,,,,,,, +VA,Virginia,202003,Y,P,N,29781.0,Includes Renewals and/or Redeterminations,0.0,,29781.0,Includes Renewals and/or Redeterminations,34241.0,Includes Renewals and/or Redeterminations,1157.0,Includes Renewals and/or Redeterminations,35398.0,Includes Renewals and/or Redeterminations,750644.0,,1419069.0,,1263776.0,,155293.0,,,,7204.0,,4589.0,,11798.0,,8528.0,,17419.0,,,,,,, +VA,Virginia,202003,Y,U,Y,30290.0,Includes Renewals and/or Redeterminations,0.0,,30290.0,Includes Renewals and/or Redeterminations,35358.0,Includes Renewals and/or Redeterminations,1264.0,Includes Renewals and/or Redeterminations,36622.0,Includes Renewals and/or Redeterminations,758093.0,,1435647.0,,1278878.0,,156769.0,,,,7148.0,,4614.0,,11833.0,,8193.0,,18763.0,,,,,,, +VA,Virginia,202004,Y,P,N,22587.0,Includes Renewals and/or Redeterminations,0.0,,22587.0,Includes Renewals and/or Redeterminations,31404.0,Includes Renewals and/or Redeterminations,1077.0,Includes Renewals and/or Redeterminations,32481.0,Includes Renewals and/or Redeterminations,762391.0,,1450785.0,,1293002.0,,157783.0,,,,6569.0,,5164.0,,11634.0,,8446.0,,14842.0,,,,,,, +VA,Virginia,202004,Y,U,Y,23212.0,Includes Renewals and/or Redeterminations,0.0,,23212.0,Includes Renewals and/or Redeterminations,31508.0,Includes Renewals and/or Redeterminations,1098.0,Includes Renewals and/or Redeterminations,32606.0,Includes Renewals and/or Redeterminations,767738.0,,1462199.0,,1303354.0,,158845.0,,,,6549.0,,5212.0,,11695.0,,8151.0,,14924.0,,,,,,, +VA,Virginia,202005,Y,P,N,18254.0,Includes Renewals and/or Redeterminations,0.0,,18254.0,Includes Renewals and/or Redeterminations,21854.0,Includes Renewals and/or Redeterminations,754.0,Includes Renewals and/or Redeterminations,22608.0,Includes Renewals and/or Redeterminations,770724.0,,1474669.0,,1317555.0,,157114.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,202005,Y,U,Y,18741.0,Includes Renewals and/or Redeterminations,0.0,,18741.0,Includes Renewals and/or Redeterminations,21796.0,Includes Renewals and/or Redeterminations,772.0,Includes Renewals and/or Redeterminations,22568.0,Includes Renewals and/or Redeterminations,776049.0,,1485789.0,,1327760.0,,158029.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,202006,Y,P,N,20635.0,Includes Renewals and/or Redeterminations,0.0,,20635.0,Includes Renewals and/or Redeterminations,22545.0,Includes Renewals and/or Redeterminations,784.0,Includes Renewals and/or Redeterminations,23329.0,Includes Renewals and/or Redeterminations,779056.0,,1497770.0,,1340244.0,,157526.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,202006,Y,U,Y,21062.0,Includes Renewals and/or Redeterminations,0.0,,21062.0,Includes Renewals and/or Redeterminations,20671.0,Includes Renewals and/or Redeterminations,716.0,Includes Renewals and/or Redeterminations,21387.0,Includes Renewals and/or Redeterminations,784095.0,,1508352.0,,1349858.0,,158494.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,202007,Y,P,N,20754.0,Includes Renewals and/or Redeterminations,0.0,,20754.0,Includes Renewals and/or Redeterminations,20631.0,Includes Renewals and/or Redeterminations,883.0,Includes Renewals and/or Redeterminations,21514.0,Includes Renewals and/or Redeterminations,786913.0,,1519888.0,,1361639.0,,158249.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,202007,Y,U,Y,21245.0,Includes Renewals and/or Redeterminations,0.0,,21245.0,Includes Renewals and/or Redeterminations,20094.0,Includes Renewals and/or Redeterminations,835.0,Includes Renewals and/or Redeterminations,20929.0,Includes Renewals and/or Redeterminations,791553.0,,1529228.0,,1370159.0,,159069.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,202008,Y,P,N,21160.0,Includes Renewals and/or Redeterminations,0.0,,21160.0,Includes Renewals and/or Redeterminations,20626.0,Includes Renewals and/or Redeterminations,846.0,Includes Renewals and/or Redeterminations,21472.0,Includes Renewals and/or Redeterminations,793098.0,,1538513.0,,1379992.0,,158521.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,202008,Y,U,Y,21608.0,Includes Renewals and/or Redeterminations,0.0,,21608.0,Includes Renewals and/or Redeterminations,20494.0,Includes Renewals and/or Redeterminations,866.0,Includes Renewals and/or Redeterminations,21360.0,Includes Renewals and/or Redeterminations,798374.0,,1549215.0,,1389771.0,,159444.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,202009,Y,P,N,20295.0,Includes Renewals and/or Redeterminations,0.0,,20295.0,Includes Renewals and/or Redeterminations,20738.0,Includes Renewals and/or Redeterminations,884.0,Includes Renewals and/or Redeterminations,21622.0,Includes Renewals and/or Redeterminations,799959.0,,1558184.0,,1399566.0,,158618.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,202009,Y,U,Y,21106.0,Includes Renewals and/or Redeterminations,0.0,,21106.0,Includes Renewals and/or Redeterminations,21521.0,Includes Renewals and/or Redeterminations,929.0,Includes Renewals and/or Redeterminations,22450.0,Includes Renewals and/or Redeterminations,804902.0,,1568142.0,,1408581.0,,159561.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,202010,Y,P,N,20622.0,Includes Renewals and/or Redeterminations,0.0,,20622.0,Includes Renewals and/or Redeterminations,18748.0,Includes Renewals and/or Redeterminations,818.0,Includes Renewals and/or Redeterminations,19566.0,Includes Renewals and/or Redeterminations,806575.0,,1577601.0,,1418920.0,,158681.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,202010,Y,U,Y,21319.0,Includes Renewals and/or Redeterminations,0.0,,21319.0,Includes Renewals and/or Redeterminations,18742.0,Includes Renewals and/or Redeterminations,908.0,Includes Renewals and/or Redeterminations,19650.0,Includes Renewals and/or Redeterminations,811156.0,,1586513.0,,1427025.0,,159488.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,202011,Y,P,N,18453.0,Includes Renewals and/or Redeterminations,0.0,,18453.0,Includes Renewals and/or Redeterminations,22923.0,Includes Renewals and/or Redeterminations,829.0,Includes Renewals and/or Redeterminations,23752.0,Includes Renewals and/or Redeterminations,813559.0,,1602219.0,,1442259.0,,159960.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,202011,Y,U,Y,19073.0,Includes Renewals and/or Redeterminations,0.0,,19073.0,Includes Renewals and/or Redeterminations,22724.0,Includes Renewals and/or Redeterminations,833.0,Includes Renewals and/or Redeterminations,23557.0,Includes Renewals and/or Redeterminations,818758.0,,1612406.0,,1451486.0,,160920.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,202012,Y,P,N,20843.0,Includes Renewals and/or Redeterminations,0.0,,20843.0,Includes Renewals and/or Redeterminations,26327.0,Includes Renewals and/or Redeterminations,846.0,Includes Renewals and/or Redeterminations,27173.0,Includes Renewals and/or Redeterminations,820984.0,,1629464.0,,1467763.0,,161701.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,202012,Y,U,Y,21213.0,Includes Renewals and/or Redeterminations,0.0,,21213.0,Includes Renewals and/or Redeterminations,26215.0,Includes Renewals and/or Redeterminations,855.0,Includes Renewals and/or Redeterminations,27070.0,Includes Renewals and/or Redeterminations,825594.0,,1639534.0,,1476921.0,,162613.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,202101,Y,P,N,18075.0,Includes Renewals and/or Redeterminations,0.0,,18075.0,Includes Renewals and/or Redeterminations,16937.0,Includes Renewals and/or Redeterminations,725.0,Includes Renewals and/or Redeterminations,17662.0,Includes Renewals and/or Redeterminations,825731.0,,1646176.0,,1483652.0,,162524.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,202101,Y,U,Y,18785.0,Includes Renewals and/or Redeterminations,0.0,,18785.0,Includes Renewals and/or Redeterminations,17234.0,Includes Renewals and/or Redeterminations,722.0,Includes Renewals and/or Redeterminations,17956.0,Includes Renewals and/or Redeterminations,830292.0,,1655186.0,,1491824.0,,163362.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,202102,Y,P,N,17007.0,Includes Renewals and/or Redeterminations,0.0,,17007.0,Includes Renewals and/or Redeterminations,18802.0,Includes Renewals and/or Redeterminations,835.0,Includes Renewals and/or Redeterminations,19637.0,Includes Renewals and/or Redeterminations,830105.0,,1661188.0,,1497732.0,,163456.0,,,,4233.0,,3085.0,,5517.0,,5112.0,,12459.0,,,,,,, +VA,Virginia,202102,Y,U,Y,17465.0,Includes Renewals and/or Redeterminations,0.0,,17465.0,Includes Renewals and/or Redeterminations,16980.0,Includes Renewals and/or Redeterminations,802.0,Includes Renewals and/or Redeterminations,17782.0,Includes Renewals and/or Redeterminations,835030.0,,1671664.0,,1507441.0,,164223.0,,,,3122.0,,4264.0,,4108.0,,3816.0,,12670.0,,,,,,, +VA,Virginia,202103,Y,P,N,18338.0,Includes Renewals and/or Redeterminations,0.0,,18338.0,Includes Renewals and/or Redeterminations,18810.0,Includes Renewals and/or Redeterminations,665.0,Includes Renewals and/or Redeterminations,19475.0,Includes Renewals and/or Redeterminations,834892.0,,1678670.0,,1514463.0,,164207.0,,,,2656.0,,5968.0,,4619.0,,4079.0,,12822.0,,,,,,, +VA,Virginia,202103,Y,U,Y,18805.0,Includes Renewals and/or Redeterminations,0.0,,18805.0,Includes Renewals and/or Redeterminations,18877.0,Includes Renewals and/or Redeterminations,671.0,Includes Renewals and/or Redeterminations,19548.0,Includes Renewals and/or Redeterminations,839249.0,,1687269.0,,1522423.0,,164846.0,,,,2693.0,,5903.0,,4627.0,,3902.0,,12750.0,,,,,,, +VA,Virginia,202104,Y,P,N,16469.0,,0.0,,16469.0,,16926.0,,581.0,,17507.0,,839153.0,,1694244.0,,1529230.0,,165014.0,,,,2556.0,,6370.0,,3638.0,,3873.0,,8214.0,,,,,,, +VA,Virginia,202104,Y,U,Y,16978.0,,0.0,,16978.0,,16898.0,,580.0,,17478.0,,843506.0,,1702672.0,,1536993.0,,165679.0,,,,2562.0,,6341.0,,3615.0,,3775.0,,8296.0,,,,,,, +VA,Virginia,202105,Y,P,N,16786.0,Includes Renewals and/or Redeterminations,0.0,,16786.0,Includes Renewals and/or Redeterminations,15335.0,Includes Renewals and/or Redeterminations,562.0,Includes Renewals and/or Redeterminations,15897.0,Includes Renewals and/or Redeterminations,842704.0,,1708166.0,,1542540.0,,165626.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,202105,Y,U,Y,17271.0,Includes Renewals and/or Redeterminations,0.0,,17271.0,Includes Renewals and/or Redeterminations,15285.0,Includes Renewals and/or Redeterminations,562.0,Includes Renewals and/or Redeterminations,15847.0,Includes Renewals and/or Redeterminations,847435.0,,1715818.0,,1549485.0,,166333.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,202106,Y,P,N,18864.0,Includes Renewals and/or Redeterminations,0.0,,18864.0,Includes Renewals and/or Redeterminations,16179.0,Includes Renewals and/or Redeterminations,595.0,Includes Renewals and/or Redeterminations,16774.0,Includes Renewals and/or Redeterminations,847156.0,,1722107.0,,1555820.0,,166287.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,202106,Y,U,Y,19219.0,,0.0,,19219.0,,0.0,,601.0,,601.0,,852438.0,,1732099.0,,1565046.0,,167053.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,202107,Y,P,N,19985.0,,0.0,,19985.0,,18256.0,,618.0,,18874.0,,852678.0,,1739687.0,,1572195.0,,167492.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,202107,Y,U,Y,20708.0,,0.0,,20708.0,,18192.0,,613.0,,18805.0,,858758.0,,1750410.0,,1581698.0,,168712.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,202108,Y,P,N,21088.0,,0.0,,21088.0,,15304.0,,752.0,,16056.0,,859803.0,,1760006.0,,1590585.0,,169421.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,202108,Y,U,Y,21519.0,,0.0,,21519.0,,19909.0,,691.0,,20600.0,,866155.0,,1771236.0,,1600604.0,,170632.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,202109,Y,P,N,18938.0,,0.0,,18938.0,,18532.0,,662.0,,19194.0,,866374.0,,1777729.0,,1606701.0,,171028.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,202109,Y,U,Y,19669.0,,0.0,,19669.0,,17856.0,,651.0,,18507.0,,872048.0,,1787743.0,,1615587.0,,172156.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,202110,Y,P,N,19721.0,,0.0,,19721.0,,15848.0,,702.0,,16550.0,,871441.0,,1793184.0,,1620910.0,,172274.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,202110,Y,U,Y,20148.0,,0.0,,20148.0,,15915.0,,695.0,,16610.0,,878940.0,,1804445.0,,1631235.0,,173210.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,202111,Y,P,N,19170.0,,0.0,,19170.0,,19488.0,,629.0,,20117.0,,877055.0,,1811550.0,,1637641.0,,173909.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,202111,Y,U,Y,19170.0,,0.0,,19170.0,,19436.0,,614.0,,20050.0,,883396.0,,1823512.0,,1648412.0,,175100.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,202112,Y,P,N,17873.0,,0.0,,17873.0,,21602.0,,107.0,,21709.0,,883649.0,,1833155.0,,1657617.0,,175538.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,202112,Y,U,Y,17873.0,,0.0,,17873.0,,21602.0,,107.0,,21709.0,,889594.0,,1844299.0,,1667601.0,,176698.0,,,,,,,,,,,,,,,,,,, +VA,Virginia,202201,Y,P,N,19389.0,,0.0,,19389.0,,17710.0,,140.0,,17850.0,,888914.0,,1849985.0,,1672913.0,,177072.0,,,,595.0,,6496.0,,4645.0,,8404.0,,9170.0,,,,,,, +VA,Virginia,202201,Y,U,Y,19302.0,,0.0,,19302.0,,20386.0,,596.0,,20982.0,,894254.0,,1859903.0,,1681747.0,,178156.0,,,,606.0,,7752.0,,6549.0,,11178.0,,9304.0,,,,,,, +VA,Virginia,202202,Y,P,N,17464.0,,0.0,,17464.0,,17032.0,,565.0,,17597.0,,893133.0,,1867527.0,,1689169.0,,178358.0,,,,907.0,,4770.0,,5765.0,,5720.0,,11573.0,,,,,,, +VA,Virginia,202202,Y,U,Y,17887.0,,0.0,,17887.0,,16933.0,,558.0,,17491.0,,899867.0,,1875171.0,Does Not Include All Individuals Conditionally Eligible,1695599.0,,179572.0,,,,896.0,,4736.0,,5711.0,,5667.0,,11411.0,,,,,,, +VA,Virginia,202203,Y,P,N,18490.0,,0.0,,18490.0,,22490.0,,699.0,,23189.0,,898308.0,,1879177.0,,1699387.0,,179790.0,,,,2748.0,,6298.0,,7445.0,,6131.0,,13361.0,,,,,,, +VA,Virginia,202203,Y,U,Y,19531.0,,0.0,,19531.0,,21393.0,,687.0,,22080.0,,903069.0,,1888400.0,Does Not Include All Individuals Conditionally Eligible,1707194.0,,181206.0,,,,2726.0,,6229.0,,7323.0,,6040.0,,13143.0,,,,,,, +VA,Virginia,202204,Y,P,N,16437.0,,0.0,,16437.0,,18488.0,,621.0,,19109.0,,902230.0,,1893124.0,,1711739.0,,181385.0,,,,2464.0,,6766.0,,6566.0,,5677.0,,7977.0,,,,,,, +VA,Virginia,202204,Y,U,Y,16969.0,,0.0,,16969.0,,18338.0,,612.0,,18950.0,,905472.0,,1903916.0,Does Not Include All Individuals Conditionally Eligible,1721718.0,,182198.0,,,,2455.0,,6712.0,,6498.0,,5595.0,,7824.0,,,,,,, +VA,Virginia,202205,Y,P,N,16792.0,,0.0,,16792.0,,16122.0,,580.0,,16702.0,,904614.0,,1903397.0,,1722057.0,,181340.0,,,,2622.0,,6116.0,,5248.0,,4683.0,,5262.0,,,,,,, +VA,Virginia,202205,Y,U,Y,17655.0,,0.0,,17655.0,,15946.0,,568.0,,16514.0,,908267.0,,1920001.0,Does Not Include All Individuals Conditionally Eligible,1738624.0,,181377.0,,,,2622.0,,6116.0,,5248.0,,4683.0,,5262.0,,,,,,, +VA,Virginia,202206,Y,P,N,16539.0,,0.0,,16539.0,,17095.0,,573.0,,17668.0,,909033.0,,1911480.0,,1729207.0,,182273.0,,,,2763.0,,6323.0,,6314.0,,5501.0,,4135.0,,,,,,, +VA,Virginia,202206,Y,U,Y,17082.0,,0.0,,17082.0,,16972.0,,564.0,,17536.0,,912963.0,,1925696.0,Does Not Include All Individuals Conditionally Eligible,1743428.0,,182268.0,,,,2748.0,,6281.0,,6275.0,,5422.0,,4117.0,,,,,,, +VA,Virginia,202207,Y,P,N,16785.0,,0.0,,16785.0,,14723.0,,512.0,,15235.0,,911506.0,,1930611.0,,1748509.0,,182102.0,,,,3039.0,,6929.0,,5713.0,,5339.0,,13036.0,,,,,,, +VA,Virginia,202207,Y,U,Y,17707.0,,0.0,,17707.0,,30672.0,,509.0,,31181.0,,914432.0,,1934368.0,,1751762.0,,182606.0,,,,3026.0,,6854.0,,5644.0,,5230.0,,16470.0,,,,,,, +VA,Virginia,202208,Y,P,N,20346.0,,0.0,,20346.0,,20405.0,,657.0,,21062.0,,913829.0,,1941712.0,,1758863.0,,182849.0,,,,3673.0,,8017.0,,6606.0,,5791.0,,4005.0,,,,,,, +VA,Virginia,202208,Y,U,Y,20774.0,,0.0,,20774.0,,20276.0,,650.0,,20926.0,,916750.0,,1945680.0,,1762338.0,,183342.0,,,,3654.0,,7957.0,,6557.0,,5715.0,,3975.0,,,,,,, +VA,Virginia,202209,Y,P,N,17280.0,,0.0,,17280.0,,18514.0,,608.0,,19122.0,,915035.0,,1948724.0,,1765115.0,,183609.0,,,,2731.0,,6884.0,,6171.0,,6643.0,,3926.0,,,,,,, +VA,Virginia,202209,Y,U,Y,18257.0,,0.0,,18257.0,,18307.0,,596.0,,18903.0,,919815.0,,1955648.0,,1771287.0,,184361.0,,,,2717.0,,6797.0,,6102.0,,6513.0,,3886.0,,,,,,, +VA,Virginia,202210,Y,P,N,17747.0,,0.0,,17747.0,,19504.0,,617.0,,20121.0,,918036.0,,1959852.0,,1774803.0,,185049.0,,,,2613.0,,6764.0,,6278.0,,5920.0,,5205.0,,,,,,, +VA,Virginia,202210,Y,U,Y,17984.0,,0.0,,17984.0,,19382.0,,616.0,,19998.0,,922643.0,,1967237.0,,1781474.0,,185763.0,,,,2605.0,,6727.0,,6249.0,,5868.0,,5163.0,,,,,,, +VA,Virginia,202211,Y,P,N,16075.0,,0.0,,16075.0,,22395.0,,645.0,,23040.0,,921760.0,,1976387.0,,1789655.0,,186732.0,,,,2429.0,,11425.0,,7499.0,,5782.0,,3662.0,,,,,,, +VA,Virginia,202211,Y,U,Y,17397.0,,0.0,,17397.0,,22209.0,,632.0,,22841.0,,926620.0,,1984745.0,,1797221.0,,187524.0,,,,2407.0,,11361.0,,7385.0,,5680.0,,3621.0,,,,,,, +VA,Virginia,202212,Y,P,N,17076.0,,0.0,,17076.0,,25937.0,,748.0,,26685.0,,926012.0,,1995216.0,,1806356.0,,188860.0,,,,2420.0,,14025.0,,8533.0,,10000.0,,4264.0,,,,,,, +VA,Virginia,202212,Y,U,Y,17063.0,,0.0,,17063.0,,25765.0,,740.0,,26505.0,,931132.0,,2003672.0,,1814037.0,,189635.0,,,,2415.0,,13948.0,,8388.0,,9841.0,,4206.0,,,,,,, +VA,Virginia,202301,Y,P,N,18389.0,,0.0,,18389.0,,22254.0,,683.0,,22937.0,,930020.0,,2010562.0,,1820127.0,,190435.0,,,,2777.0,,9860.0,,7400.0,,12042.0,,7710.0,,,,,,, +VA,Virginia,202301,Y,U,Y,19357.0,,0.0,,19357.0,,22041.0,,676.0,,22717.0,,935677.0,,2019010.0,,1827769.0,,191241.0,,,,2765.0,,9770.0,,7319.0,,11895.0,,7594.0,,,,,,, +VA,Virginia,202302,Y,P,N,15047.0,,0.0,,15047.0,,16959.0,,566.0,,17525.0,,934011.0,,2021955.0,,1830035.0,,191920.0,,,,2187.0,,6296.0,,5909.0,,6868.0,,6161.0,,,,,,, +VA,Virginia,202302,Y,U,Y,15843.0,,0.0,,15843.0,,16795.0,,558.0,,17353.0,,939285.0,,2030367.0,,1837662.0,,192705.0,,,,2168.0,,6242.0,,5853.0,,6790.0,,6079.0,,,,,,, +VA,Virginia,202303,Y,P,N,21905.0,,0.0,,21905.0,,131361.0,,6613.0,,137974.0,,937451.0,,2033506.0,,1840758.0,,192748.0,,,,7824.0,,12752.0,,16065.0,,23537.0,,23200.0,,45318.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.013,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +VA,Virginia,202303,Y,U,Y,21905.0,,0.0,,21905.0,,131361.0,,6613.0,,137974.0,,940781.0,,2037888.0,,1844629.0,,193259.0,,,,7824.0,,12752.0,,16065.0,,23537.0,,23200.0,,45318.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.013,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +VA,Virginia,202304,Y,P,N,19977.0,,0.0,,19977.0,,178489.0,,8277.0,,186766.0,,938736.0,,2040696.0,,1847126.0,,193570.0,,,,7900.0,,11807.0,,14549.0,,19242.0,,16788.0,,48963.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.005,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +VA,Virginia,202304,Y,U,Y,19977.0,,0.0,,19977.0,,178489.0,,8277.0,,186766.0,,943069.0,,2047457.0,,1853314.0,,194143.0,,,,7900.0,,11807.0,,14549.0,,19242.0,,16788.0,,48963.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.005,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +VA,Virginia,202305,Y,P,N,23285.0,,0.0,,23285.0,,208786.0,,9689.0,,218475.0,,939213.0,,2045066.0,,1851212.0,,193854.0,,,,8471.0,,11707.0,,15130.0,,17903.0,,15398.0,,66269.0,Does not include all calls received by call centers; Does not include all calls received after business hours,0.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.011,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +VA,Virginia,202305,Y,U,Y,23285.0,,0.0,,23285.0,,208786.0,,9689.0,,218475.0,,943555.0,,2051719.0,,1857261.0,,194458.0,,,,8471.0,,11707.0,,15130.0,,17903.0,,15398.0,,66269.0,Does not include all calls received by call centers; Does not include all calls received after business hours,0.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.011,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +VA,Virginia,202306,Y,P,N,23789.0,,0.0,,23789.0,,141601.0,,8410.0,,150011.0,,932474.0,,2031283.0,,1837504.0,,193779.0,,,,8060.0,,11398.0,,16015.0,,17947.0,,13968.0,,69165.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.034,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +VA,Virginia,202306,Y,U,Y,23789.0,,0.0,,23789.0,,141601.0,,8410.0,,150011.0,,936913.0,,2038126.0,,1843589.0,,194537.0,,,,8060.0,,11398.0,,16015.0,,17947.0,,13968.0,,69165.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.034,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +VA,Virginia,202307,Y,P,N,25884.0,,0.0,,25884.0,,155601.0,,9224.0,,164825.0,,936913.0,,2038126.0,,1843589.0,,194537.0,,,,8908.0,,10589.0,,16777.0,,16835.0,,12880.0,,69988.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.089,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +VA,Virginia,202307,Y,U,Y,25884.0,,0.0,,25884.0,,155601.0,,9224.0,,164825.0,,920464.0,,2008101.0,,1816642.0,,191459.0,,,,8908.0,,10589.0,,16777.0,,16835.0,,12880.0,,69988.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.089,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +VA,Virginia,202308,Y,P,N,29383.0,,0.0,,29383.0,,152178.0,,8814.0,,160992.0,,897709.0,,1963723.0,,1777070.0,,186653.0,,,,10406.0,,9506.0,,14571.0,,12444.0,,10236.0,,78522.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.06,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +VA,Virginia,202308,Y,U,Y,30970.0,,0.0,,30970.0,,152178.0,,8814.0,,160992.0,,930045.0,,2025909.0,,1831102.0,,194807.0,,,,10406.0,,9506.0,,14571.0,,12444.0,,10236.0,,78522.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.06,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +VA,Virginia,202309,Y,P,N,26965.0,,0.0,,26965.0,,207781.0,,12348.0,,220129.0,,916655.0,,2000709.0,,1806736.0,,193973.0,,,,14968.0,,11374.0,,17466.0,,15188.0,,13835.0,,71730.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.079,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +VA,Virginia,202309,Y,U,Y,26965.0,,0.0,,26965.0,,207781.0,,12348.0,,220129.0,,916655.0,,2000709.0,,1806736.0,,193973.0,,,,14968.0,,11374.0,,17466.0,,15188.0,,13835.0,,71730.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.079,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +VA,Virginia,202310,Y,P,N,28640.0,,0.0,,28640.0,,215995.0,,12001.0,,227996.0,,903751.0,,1974037.0,,1781093.0,,192944.0,,,,14036.0,,10993.0,,16520.0,,16519.0,,13765.0,,74805.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.016,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +VA,Virginia,202310,Y,U,Y,28640.0,,0.0,,28640.0,,215995.0,,12001.0,,227996.0,,921151.0,,2005449.0,,1808711.0,,196738.0,,,,14036.0,,10993.0,,16520.0,,16519.0,,13765.0,,74805.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.016,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +VA,Virginia,202311,Y,P,N,31065.0,,0.0,,31065.0,,229218.0,,14753.0,,243971.0,,902248.0,,1963390.0,,1769062.0,,194328.0,,,,14454.0,,10813.0,,15557.0,,16242.0,,13975.0,,80344.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.027,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +VA,Virginia,202311,Y,U,Y,31065.0,,0.0,,31065.0,,229218.0,,14753.0,,243971.0,,908505.0,,1974249.0,,1778475.0,,195774.0,,,,14454.0,,10813.0,,15557.0,,16242.0,,13975.0,,80344.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.027,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +VA,Virginia,202312,Y,P,N,31530.0,,0.0,,31530.0,,218318.0,,15606.0,,233924.0,,900157.0,,1956299.0,,1759384.0,,196915.0,,,,15647.0,,12396.0,,16716.0,,17932.0,,14674.0,,78996.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.016,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +VA,Virginia,202312,Y,U,Y,31530.0,,0.0,,31530.0,,218318.0,,15606.0,,233924.0,,907394.0,,1968664.0,,1770156.0,,198508.0,,,,15647.0,,12396.0,,16716.0,,17932.0,,14674.0,,78996.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.016,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +VA,Virginia,202401,Y,P,N,35564.0,,7626.0,,43190.0,,24395.0,,2080.0,,26475.0,,901705.0,,1958397.0,,1758414.0,,199983.0,,,,16368.0,,12875.0,,17564.0,,19433.0,,16042.0,,91070.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.043,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +VA,Virginia,202401,Y,U,Y,35564.0,,7626.0,,43190.0,,24395.0,,2080.0,,26475.0,,908379.0,,1969633.0,,1768194.0,,201439.0,,,,16368.0,,12875.0,,17564.0,,19433.0,,16042.0,,91070.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.043,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +VA,Virginia,202402,Y,P,N,30144.0,,3053.0,,33197.0,,23989.0,,1884.0,,25873.0,,899905.0,,1951439.0,,1749211.0,,202228.0,,,,14880.0,,13152.0,,16654.0,,18380.0,,16455.0,,78778.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.005,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +VA,Virginia,202402,Y,U,Y,30144.0,,3053.0,,33197.0,,23989.0,,1884.0,,25873.0,,906389.0,,1962748.0,,1759075.0,,203673.0,,,,14880.0,,13152.0,,16654.0,,18380.0,,16455.0,,78778.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.005,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +VA,Virginia,202403,Y,P,N,32024.0,,3142.0,,35166.0,,27740.0,,2249.0,,29989.0,,893542.0,,1930251.0,,1727179.0,,203072.0,,,,13651.0,,14397.0,,17390.0,,17437.0,,16622.0,,81312.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.012,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +VA,Virginia,202403,Y,U,Y,32024.0,,3142.0,,35166.0,,27740.0,,2249.0,,29989.0,,900711.0,,1942304.0,,1737658.0,,204646.0,,,,13651.0,,14397.0,,17390.0,,17437.0,,16622.0,,81312.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.012,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +VA,Virginia,202404,Y,P,N,35024.0,,2805.0,,37829.0,,23352.0,,1687.0,,25039.0,,876314.0,,1872300.0,,1673491.0,,198809.0,,,,14879.0,,14321.0,,16766.0,,15785.0,,14771.0,,91016.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.016,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +VA,Virginia,202404,Y,U,Y,35024.0,,2805.0,,37829.0,,23352.0,,1687.0,,25039.0,,883455.0,,1885478.0,,1684915.0,,200563.0,,,,14879.0,,14321.0,,16766.0,,15785.0,,14771.0,,91016.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.016,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +VA,Virginia,202405,Y,P,N,33862.0,,2905.0,,36767.0,,26987.0,,2159.0,,29146.0,,869904.0,,1845822.0,,1648854.0,,196968.0,,,,15850.0,,14013.0,,17089.0,,15036.0,,14158.0,,85359.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.019,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +VA,Virginia,202405,Y,U,Y,33862.0,,2905.0,,36767.0,,26987.0,,2159.0,,29146.0,,876235.0,,1857573.0,,1659038.0,,198535.0,,,,15850.0,,14013.0,,17089.0,,15036.0,,14158.0,,85359.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.019,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +VA,Virginia,202406,Y,P,N,31410.0,,2465.0,,33875.0,,27206.0,,2015.0,,29221.0,,866210.0,,1831551.0,,1634345.0,,197206.0,,,,14827.0,,12522.0,,15992.0,,14922.0,,13232.0,,72004.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.021,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +VA,Virginia,202406,Y,U,Y,31410.0,,2465.0,,33875.0,,27206.0,,2015.0,,29221.0,,873492.0,,1845447.0,,1646496.0,,198951.0,,,,14827.0,,12522.0,,15992.0,,14922.0,,13232.0,,72004.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.021,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +VA,Virginia,202407,Y,P,N,35443.0,,2838.0,,38281.0,,24160.0,,1945.0,,26105.0,,865302.0,,1826149.0,,1628706.0,,197443.0,,960847.0,,13122.0,,11065.0,,14638.0,,13510.0,,12666.0,,79173.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.013,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +VA,Virginia,202407,Y,U,Y,35443.0,,2838.0,,38281.0,,24160.0,,1945.0,,26105.0,,873142.0,,1840540.0,,1641193.0,,199347.0,,967398.0,,13122.0,,11065.0,,14638.0,,13510.0,,12666.0,,79173.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.013,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +VA,Virginia,202408,Y,P,N,36839.0,,2815.0,,39654.0,,23762.0,,1767.0,,25529.0,,866061.0,,1824238.0,,1627720.0,,196518.0,,958177.0,,12775.0,,10188.0,,10938.0,,8383.0,,9025.0,,83080.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.019,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +VA,Virginia,202408,Y,U,Y,36839.0,,2815.0,,39654.0,,23762.0,,1767.0,,25529.0,,872866.0,,1836848.0,,1638680.0,,198168.0,,963982.0,,12775.0,,10188.0,,10938.0,,8383.0,,9025.0,,83080.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.019,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +VA,Virginia,202409,Y,P,N,33487.0,,2861.0,,36348.0,,30228.0,,2310.0,,32538.0,,864185.0,,1817655.0,,1621239.0,,196416.0,,953470.0,,13223.0,,10801.0,,11358.0,,9657.0,,9861.0,,78720.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.039,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +VA,Virginia,202409,Y,U,Y,33487.0,,2861.0,,36348.0,,30228.0,,2310.0,,32538.0,,871548.0,,1831581.0,,1633541.0,,198040.0,,960033.0,,13223.0,,10801.0,,11358.0,,9657.0,,9861.0,,78720.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.039,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +VA,Virginia,202410,Y,P,N,35209.0,,2697.0,,37906.0,,27360.0,,2004.0,,29364.0,,860757.0,,1809526.0,,1613039.0,,196487.0,,948769.0,,12765.0,,11184.0,,13419.0,,13978.0,,13699.0,,86590.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.018,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +VA,Virginia,202410,Y,U,Y,35209.0,,2697.0,,37906.0,,27335.0,,2001.0,,29336.0,,867264.0,,1822031.0,,1623895.0,,198136.0,,954767.0,,12765.0,,11184.0,,13419.0,,13978.0,,13699.0,,86590.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.018,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +VA,Virginia,202411,Y,P,N,33866.0,,7777.0,,41643.0,,26284.0,,1854.0,,28138.0,,857421.0,,1802198.0,,1605016.0,,197182.0,,944777.0,,15563.0,,13495.0,,17660.0,,16788.0,,16220.0,,70729.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.026,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +VA,Virginia,202411,Y,U,Y,33866.0,,7777.0,,41643.0,,26284.0,,1854.0,,28138.0,,864568.0,,1815800.0,,1616746.0,,199054.0,,951232.0,,15563.0,,13495.0,,17660.0,,16788.0,,16220.0,,70729.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.026,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +VA,Virginia,202412,Y,P,N,33648.0,,8976.0,,42624.0,,28253.0,,2228.0,,30481.0,,853991.0,,1795156.0,,1596777.0,,198379.0,,941165.0,,18182.0,,13566.0,,16972.0,,17025.0,,16959.0,,80411.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.027,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +VA,Virginia,202412,Y,U,Y,33648.0,,8976.0,,42624.0,,28253.0,,2228.0,,30481.0,,861678.0,,1809945.0,,1609622.0,,200323.0,,948267.0,,18182.0,,13566.0,,16972.0,,17025.0,,16959.0,,80411.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.027,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +VA,Virginia,202501,Y,P,N,33927.0,,6842.0,,40769.0,,28173.0,,2666.0,,30839.0,,853545.0,,1794397.0,,1594685.0,,199712.0,,940852.0,,15817.0,,10587.0,,12256.0,,13100.0,,13655.0,,92456.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.05,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +VA,Virginia,202501,Y,U,Y,33927.0,,6842.0,,40769.0,,28131.0,,2660.0,,30791.0,,860396.0,,1807197.0,,1605665.0,,201532.0,,946801.0,,15817.0,,10587.0,,12256.0,,13100.0,,13655.0,,92456.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.05,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +VA,Virginia,202502,Y,P,N,31572.0,,3054.0,,34626.0,,28830.0,,2360.0,,31190.0,,849986.0,,1785501.0,,1584974.0,,200527.0,,935515.0,,18327.0,,13555.0,,13992.0,,13544.0,,14739.0,,79296.0,,1.0,,0.018, +VA,Virginia,202502,Y,U,Y,31572.0,,3054.0,,34626.0,,28830.0,,2360.0,,31190.0,,857710.0,,1799885.0,,1597298.0,,202587.0,,942175.0,,18327.0,,13555.0,,13992.0,,13544.0,,14739.0,,79296.0,,1.0,,0.018, +VA,Virginia,202503,Y,P,N,31832.0,,2926.0,,34758.0,,27105.0,,2153.0,,29258.0,,847589.0,,1779068.0,,1578312.0,,200756.0,,931479.0,,12254.0,,10775.0,,12038.0,,12312.0,,11768.0,,81553.0,,1.0,,0.011, +VA,Virginia,202503,Y,U,Y,31832.0,,2926.0,,34758.0,,27061.0,,2150.0,,29211.0,,854924.0,,1793436.0,,1590758.0,,202678.0,,938512.0,,12254.0,,10775.0,,12038.0,,12312.0,,11768.0,,81553.0,,1.0,,0.011, +VA,Virginia,202504,Y,P,N,34384.0,,3012.0,,37396.0,,24298.0,,1982.0,,26280.0,,841919.0,,1767420.0,,1567754.0,,199666.0,,925501.0,,16015.0,,14524.0,,14016.0,,12243.0,,12783.0,,82820.0,,1.0,,0.011, +VA,Virginia,202504,Y,U,Y,34384.0,,3012.0,,37396.0,,24298.0,,1982.0,,26280.0,,849225.0,,1780997.0,,1579352.0,,201645.0,,931772.0,,16015.0,,14524.0,,14016.0,,12243.0,,12783.0,,82820.0,,1.0,,0.011, +VA,Virginia,202505,Y,P,N,32129.0,,3140.0,,35269.0,,27242.0,,2184.0,,29426.0,,830713.0,,1741108.0,,1544054.0,,197054.0,,910395.0,,11948.0,,12219.0,,12540.0,,11304.0,,10732.0,,78687.0,,1.0,,0.018, +VA,Virginia,202505,Y,U,Y,32129.0,,3140.0,,35269.0,,27187.0,,2180.0,,29367.0,,837984.0,,1754761.0,,1555890.0,,198871.0,,916777.0,,11948.0,,12219.0,,12540.0,,11304.0,,10732.0,,78687.0,,1.0,,0.018, +VA,Virginia,202506,Y,P,N,30108.0,,2869.0,,32977.0,,26095.0,,2050.0,,28145.0,,822904.0,,1722527.0,,1526838.0,,195689.0,,899623.0,,11466.0,,11291.0,,12397.0,,11342.0,,10318.0,,63926.0,,1.0,,0.005, +VA,Virginia,202506,Y,U,Y,30108.0,,2869.0,,32977.0,,26054.0,,2040.0,,28094.0,,830668.0,,1737098.0,,1539273.0,,197825.0,,906430.0,,11466.0,,11291.0,,12397.0,,11342.0,,10318.0,,63926.0,,1.0,,0.005, +VA,Virginia,202507,Y,P,N,32280.0,,2870.0,,35150.0,,24365.0,,1944.0,,26309.0,,817332.0,,1710002.0,,1514993.0,,195009.0,,892670.0,,11185.0,,10902.0,,12167.0,,10841.0,,9797.0,,75111.0,,1.0,,0.008, +VA,Virginia,202507,Y,U,Y,32280.0,,2870.0,,35150.0,,24327.0,,1938.0,,26265.0,,825028.0,,1723777.0,,1526616.0,,197161.0,,898749.0,,11185.0,,10902.0,,12167.0,,10841.0,,9797.0,,75111.0,,1.0,,0.008, +VA,Virginia,202508,Y,P,N,31749.0,,3086.0,,34835.0,,23444.0,,1831.0,,25275.0,,811719.0,,1698727.0,,1504750.0,,193977.0,,887008.0,,11321.0,,10810.0,,12439.0,,11408.0,,9910.0,,62978.0,,1.0,,0.004, +VA,Virginia,202508,Y,U,Y,31749.0,,3086.0,,34835.0,,23412.0,,1829.0,,25241.0,,820129.0,,1713390.0,,1517188.0,,196202.0,,893261.0,,11321.0,,10810.0,,12439.0,,11408.0,,9910.0,,62978.0,,1.0,,0.004, +VA,Virginia,202509,Y,P,N,32566.0,,3267.0,,35833.0,,25028.0,,1969.0,,26997.0,,808202.0,,1692681.0,,1499480.0,,193201.0,,884479.0,,11773.0,,11116.0,,12270.0,,12230.0,,10277.0,,70690.0,,1.0,,0.011, +VA,Virginia,202509,Y,U,Y,32566.0,,3267.0,,35833.0,,24979.0,,1969.0,,26948.0,,816462.0,,1707737.0,,1512223.0,,195514.0,,891275.0,,11773.0,,11116.0,,12270.0,,12230.0,,10277.0,,70690.0,,1.0,,0.011, +VA,Virginia,202510,Y,P,N,31126.0,,3114.0,,34240.0,,24906.0,,1882.0,,26788.0,,805438.0,,1686896.0,,1493815.0,,193081.0,,881458.0,,12119.0,,10179.0,,11571.0,,12521.0,,9984.0,,69867.0,,1.0,,0.013, +VT,Vermont,201309,N,U,Y,,,,,,,,,,,,,,,161081.0,,,,,,,,,,,,,,,,,,,,,,, +VT,Vermont,201706,Y,P,N,3335.0,,1566.0,,4901.0,Includes Renewals and/or Redeterminations,3021.0,Includes Renewals and/or Redeterminations,61.0,,3082.0,,64603.0,,168729.0,,163887.0,,4842.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,201706,Y,U,Y,3335.0,,1566.0,,4901.0,Includes Renewals and/or Redeterminations,4079.0,Includes Renewals and/or Redeterminations,98.0,,4177.0,,65075.0,,169702.0,,164772.0,,4930.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,201707,Y,P,N,3102.0,,170.0,,3272.0,Includes Renewals and/or Redeterminations,3022.0,Includes Renewals and/or Redeterminations,56.0,,3078.0,,64398.0,,167599.0,,162788.0,,4811.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,201707,Y,U,Y,3102.0,,1275.0,,4377.0,Includes Renewals and/or Redeterminations,4152.0,Includes Renewals and/or Redeterminations,91.0,,4243.0,,64810.0,,168455.0,,163597.0,,4858.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,201708,Y,P,N,3392.0,,1618.0,,5010.0,Includes Renewals and/or Redeterminations,3218.0,Includes Renewals and/or Redeterminations,58.0,,3276.0,,64074.0,,165370.0,,160705.0,,4665.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,201708,Y,U,Y,3392.0,,1624.0,,5016.0,Includes Renewals and/or Redeterminations,4642.0,Includes Renewals and/or Redeterminations,96.0,,4738.0,,64487.0,,166295.0,,161590.0,,4705.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,201709,Y,P,N,2953.0,,1319.0,,4272.0,Includes Renewals and/or Redeterminations,3073.0,Includes Renewals and/or Redeterminations,48.0,,3121.0,,63401.0,,163408.0,,158767.0,,4641.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,201709,Y,U,Y,2953.0,,1319.0,,4272.0,Includes Renewals and/or Redeterminations,4930.0,Includes Renewals and/or Redeterminations,104.0,,5034.0,,63968.0,,164668.0,,160012.0,,4656.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,201710,Y,P,N,3309.0,,1272.0,,4581.0,Includes Renewals and/or Redeterminations,3452.0,Includes Renewals and/or Redeterminations,82.0,,3534.0,,63507.0,,163082.0,,158469.0,,4613.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,201710,Y,U,Y,3309.0,,1281.0,,4590.0,,4883.0,,132.0,,5015.0,,63957.0,,164121.0,,159454.0,,4667.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,201711,Y,P,N,3092.0,,2108.0,,5200.0,,3326.0,,93.0,,3419.0,,63409.0,,162364.0,,157726.0,,4638.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,201711,Y,U,Y,3092.0,,2118.0,,5210.0,,5010.0,,134.0,,5144.0,,63880.0,,163604.0,,158900.0,,4704.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,201712,Y,P,N,2788.0,,2638.0,,5426.0,,3575.0,,68.0,,3643.0,,63414.0,,162593.0,,157931.0,,4662.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,201712,Y,U,Y,2788.0,,2647.0,,5435.0,,5107.0,,117.0,,5224.0,,63873.0,,163649.0,,158947.0,,4702.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,201801,Y,P,N,3621.0,,1189.0,,4810.0,,3527.0,,105.0,,3632.0,,63771.0,,163475.0,,158718.0,,4757.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,201801,Y,U,Y,3621.0,,1196.0,,4817.0,,4752.0,,161.0,,4913.0,,64207.0,,164804.0,,160021.0,,4783.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,201802,Y,P,N,3010.0,,950.0,,3960.0,Includes Renewals and/or Redeterminations,2914.0,Includes Renewals and/or Redeterminations,75.0,,2989.0,,63929.0,,164259.0,,159599.0,,4660.0,,,,736.0,Incorrectly includes redeterminations,8.0,Incorrectly includes redeterminations,12.0,Incorrectly includes redeterminations,4.0,Incorrectly includes redeterminations,311.0,Incorrectly includes redeterminations,,,,,, +VT,Vermont,201802,Y,U,Y,3010.0,,953.0,,3963.0,Includes Renewals and/or Redeterminations,3618.0,Includes Renewals and/or Redeterminations,96.0,,3714.0,,64264.0,,165279.0,,160577.0,,4702.0,,,,736.0,Incorrectly includes redeterminations,8.0,Incorrectly includes redeterminations,12.0,Incorrectly includes redeterminations,4.0,Incorrectly includes redeterminations,311.0,Incorrectly includes redeterminations,,,,,, +VT,Vermont,201803,Y,P,N,3038.0,,1009.0,,4047.0,Includes Renewals and/or Redeterminations,2696.0,Includes Renewals and/or Redeterminations,74.0,,2770.0,,64017.0,,164621.0,,159955.0,,4666.0,,,,658.0,Incorrectly includes redeterminations,8.0,Incorrectly includes redeterminations,25.0,Incorrectly includes redeterminations,16.0,Incorrectly includes redeterminations,145.0,Incorrectly includes redeterminations,,,,,, +VT,Vermont,201803,Y,U,Y,3038.0,,1011.0,,4049.0,Includes Renewals and/or Redeterminations,3947.0,Includes Renewals and/or Redeterminations,120.0,,4067.0,,64413.0,,165757.0,,161046.0,,4711.0,,,,658.0,Incorrectly includes redeterminations,8.0,Incorrectly includes redeterminations,25.0,Incorrectly includes redeterminations,16.0,Incorrectly includes redeterminations,145.0,Incorrectly includes redeterminations,,,,,, +VT,Vermont,201804,Y,P,N,2861.0,,1108.0,,3969.0,Includes Renewals and/or Redeterminations,2966.0,Includes Renewals and/or Redeterminations,76.0,,3042.0,,64230.0,,165321.0,,160664.0,,4657.0,,,,497.0,Incorrectly includes redeterminations,0.0,Incorrectly includes redeterminations,10.0,Incorrectly includes redeterminations,9.0,Incorrectly includes redeterminations,104.0,Incorrectly includes redeterminations,,,,,, +VT,Vermont,201804,Y,U,Y,2861.0,,1109.0,,3970.0,Includes Renewals and/or Redeterminations,3950.0,Includes Renewals and/or Redeterminations,109.0,,4059.0,,64453.0,,165999.0,,161324.0,,4675.0,,,,497.0,Incorrectly includes redeterminations,0.0,Incorrectly includes redeterminations,10.0,Incorrectly includes redeterminations,9.0,Incorrectly includes redeterminations,104.0,Incorrectly includes redeterminations,,,,,, +VT,Vermont,201805,Y,P,N,2961.0,,1064.0,,4025.0,Includes Renewals and/or Redeterminations,2704.0,Includes Renewals and/or Redeterminations,77.0,,2781.0,,63507.0,,163349.0,,158875.0,,4474.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,201805,Y,U,Y,2961.0,,2132.0,,5093.0,Includes Renewals and/or Redeterminations,4206.0,Includes Renewals and/or Redeterminations,125.0,,4331.0,,63895.0,,164423.0,,159911.0,,4512.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,201806,Y,P,N,2952.0,,1209.0,,4161.0,Includes Renewals and/or Redeterminations,2867.0,Includes Renewals and/or Redeterminations,67.0,,2934.0,,62902.0,,161366.0,,157004.0,,4362.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,201806,Y,U,Y,2952.0,,1211.0,,4163.0,Includes Renewals and/or Redeterminations,4824.0,Includes Renewals and/or Redeterminations,153.0,,4977.0,,63536.0,,162899.0,,158469.0,,4430.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,201807,Y,P,N,3110.0,,1165.0,,4275.0,Includes Renewals and/or Redeterminations,3386.0,Includes Renewals and/or Redeterminations,70.0,,3456.0,,63198.0,,161766.0,,157362.0,,4404.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,201807,Y,U,Y,3110.0,,1170.0,,4280.0,Includes Renewals and/or Redeterminations,4755.0,Includes Renewals and/or Redeterminations,125.0,,4880.0,,63547.0,,162726.0,,158299.0,,4427.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,201808,Y,P,N,3056.0,,1322.0,,4378.0,Includes Renewals and/or Redeterminations,3287.0,Includes Renewals and/or Redeterminations,68.0,,3355.0,,63007.0,,161316.0,,156955.0,,4361.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,201808,Y,U,Y,3056.0,,1324.0,,4380.0,Includes Renewals and/or Redeterminations,5287.0,Includes Renewals and/or Redeterminations,144.0,,5431.0,,63587.0,,162742.0,,158324.0,,4418.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,201809,Y,P,N,2949.0,,1177.0,,4126.0,Includes Renewals and/or Redeterminations,3975.0,Includes Renewals and/or Redeterminations,94.0,,4069.0,,62931.0,,160294.0,,155935.0,,4359.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,201809,Y,U,Y,2949.0,,1184.0,,4133.0,Includes Renewals and/or Redeterminations,5680.0,Includes Renewals and/or Redeterminations,156.0,,5836.0,,63306.0,,161260.0,,156865.0,,4395.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,201810,Y,P,N,3345.0,,1219.0,,4564.0,Includes Renewals and/or Redeterminations,3839.0,Includes Renewals and/or Redeterminations,83.0,,3922.0,,63125.0,,160093.0,,155664.0,,4429.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,201810,Y,U,Y,3345.0,,1225.0,,4570.0,Includes Renewals and/or Redeterminations,5121.0,Includes Renewals and/or Redeterminations,122.0,,5243.0,,63492.0,,161162.0,,156713.0,,4449.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,201811,Y,P,N,2958.0,,1822.0,,4780.0,Includes Renewals and/or Redeterminations,3537.0,Includes Renewals and/or Redeterminations,89.0,,3626.0,,62605.0,,158298.0,,153892.0,,4406.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,201811,Y,U,Y,2958.0,,1834.0,,4792.0,Includes Renewals and/or Redeterminations,5303.0,Includes Renewals and/or Redeterminations,155.0,,5458.0,,63086.0,,159616.0,,155133.0,,4483.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,201812,Y,P,N,2669.0,,2334.0,,5003.0,Includes Renewals and/or Redeterminations,4153.0,Includes Renewals and/or Redeterminations,80.0,,4233.0,,62946.0,,159238.0,,154713.0,,4525.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,201812,Y,U,Y,2669.0,,2343.0,,5012.0,Includes Renewals and/or Redeterminations,5264.0,Includes Renewals and/or Redeterminations,146.0,,5410.0,,63270.0,,160114.0,,155538.0,,4576.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,201901,Y,P,N,3230.0,,1197.0,,4427.0,Includes Renewals and/or Redeterminations,3923.0,Includes Renewals and/or Redeterminations,110.0,,4033.0,,62470.0,,157518.0,,152931.0,,4587.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,201901,Y,U,Y,3230.0,,1207.0,,4437.0,Includes Renewals and/or Redeterminations,6021.0,Includes Renewals and/or Redeterminations,192.0,,6213.0,,62818.0,,158440.0,,153809.0,,4631.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,201902,Y,P,N,5062.0,,1057.0,,6119.0,Includes Renewals and/or Redeterminations,3272.0,Includes Renewals and/or Redeterminations,74.0,,3346.0,,62212.0,,156664.0,,152103.0,,4561.0,,,,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,,,,,, +VT,Vermont,201902,Y,U,Y,5062.0,,1067.0,,6129.0,Includes Renewals and/or Redeterminations,5035.0,Includes Renewals and/or Redeterminations,176.0,,5211.0,,62720.0,,157910.0,,153307.0,,4603.0,,,,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,0.0,Unable to provide data due to system limitations,,,,,, +VT,Vermont,201903,Y,P,N,2776.0,,1596.0,,4372.0,Includes Renewals and/or Redeterminations,4192.0,Includes Renewals and/or Redeterminations,112.0,,4304.0,,62237.0,,155931.0,,151312.0,,4619.0,,,,1066.0,,138.0,,486.0,,247.0,,399.0,,,,,,, +VT,Vermont,201903,Y,U,Y,2776.0,,1596.0,,4372.0,Includes Renewals and/or Redeterminations,5671.0,Includes Renewals and/or Redeterminations,169.0,,5840.0,,62630.0,,156965.0,,152289.0,,4676.0,,,,1066.0,,138.0,,486.0,,247.0,,399.0,,,,,,, +VT,Vermont,201904,Y,P,N,2925.0,,1933.0,,4858.0,Includes Renewals and/or Redeterminations,3733.0,Includes Renewals and/or Redeterminations,155.0,,3888.0,,62095.0,,155342.0,,150741.0,,4601.0,,,,1052.0,,180.0,,476.0,,264.0,,703.0,,,,,,, +VT,Vermont,201904,Y,U,Y,2925.0,,1933.0,,4858.0,Includes Renewals and/or Redeterminations,5392.0,Includes Renewals and/or Redeterminations,202.0,,5594.0,,62432.0,,156170.0,,151531.0,,4639.0,,,,1052.0,,180.0,,476.0,,264.0,,703.0,,,,,,, +VT,Vermont,201905,Y,P,N,2728.0,,1724.0,,4452.0,Includes Renewals and/or Redeterminations,3127.0,Includes Renewals and/or Redeterminations,55.0,,3182.0,,61939.0,,154933.0,,150679.0,,4254.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,201905,Y,U,Y,2728.0,,1724.0,,4452.0,Includes Renewals and/or Redeterminations,4930.0,Includes Renewals and/or Redeterminations,126.0,,5056.0,,62394.0,,156055.0,,151720.0,,4335.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,201906,Y,P,N,2742.0,,1287.0,,4029.0,Includes Renewals and/or Redeterminations,3564.0,Includes Renewals and/or Redeterminations,72.0,,3636.0,,61750.0,,154309.0,,150022.0,,4287.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,201906,Y,U,Y,2742.0,,1287.0,,4029.0,Includes Renewals and/or Redeterminations,4944.0,Includes Renewals and/or Redeterminations,118.0,,5062.0,,62082.0,,155139.0,,150800.0,,4339.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,201907,Y,P,N,3141.0,,1360.0,,4501.0,Includes Renewals and/or Redeterminations,3592.0,Includes Renewals and/or Redeterminations,67.0,,3659.0,,61680.0,,153684.0,,149376.0,,4308.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,201907,Y,U,Y,3141.0,,1360.0,,4501.0,Includes Renewals and/or Redeterminations,5039.0,Includes Renewals and/or Redeterminations,129.0,,5168.0,,62036.0,,154546.0,,150160.0,,4386.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,201908,Y,P,N,2816.0,,1325.0,,4141.0,Includes Renewals and/or Redeterminations,3406.0,Includes Renewals and/or Redeterminations,93.0,,3499.0,,61335.0,,152716.0,,148366.0,,4350.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,201908,Y,U,Y,2816.0,,1325.0,,4141.0,Includes Renewals and/or Redeterminations,5418.0,Includes Renewals and/or Redeterminations,151.0,,5569.0,,61918.0,,154020.0,,149608.0,,4412.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,201909,Y,P,N,2827.0,,1480.0,,4307.0,Includes Renewals and/or Redeterminations,4059.0,Includes Renewals and/or Redeterminations,108.0,,4167.0,,61241.0,,152110.0,,147767.0,,4343.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,201909,Y,U,Y,2827.0,,1480.0,,4307.0,Includes Renewals and/or Redeterminations,5775.0,Includes Renewals and/or Redeterminations,150.0,,5925.0,,61592.0,,152941.0,,148550.0,,4391.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,201910,Y,P,N,2976.0,,1826.0,,4802.0,Includes Renewals and/or Redeterminations,3596.0,Includes Renewals and/or Redeterminations,80.0,,3676.0,,60796.0,,150766.0,,146341.0,,4425.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,201910,Y,U,Y,2976.0,,1826.0,,4802.0,Includes Renewals and/or Redeterminations,5350.0,Includes Renewals and/or Redeterminations,142.0,,5492.0,,61192.0,,151750.0,,147252.0,,4498.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,201911,Y,P,N,2505.0,,2420.0,,4925.0,Includes Renewals and/or Redeterminations,3165.0,Includes Renewals and/or Redeterminations,69.0,,3234.0,,60478.0,,149642.0,,145131.0,,4511.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,201911,Y,U,Y,2505.0,,2420.0,,4925.0,Includes Renewals and/or Redeterminations,4734.0,Includes Renewals and/or Redeterminations,129.0,,4863.0,,61014.0,,150952.0,,146351.0,,4601.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,201912,Y,P,N,2648.0,,2481.0,,5129.0,Includes Renewals and/or Redeterminations,3450.0,Includes Renewals and/or Redeterminations,90.0,,3540.0,,60700.0,,150160.0,,145556.0,,4604.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,201912,Y,U,Y,2648.0,,2481.0,,5129.0,Includes Renewals and/or Redeterminations,4896.0,Includes Renewals and/or Redeterminations,142.0,,5038.0,,61091.0,,151190.0,,146536.0,,4654.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,202001,Y,P,N,3162.0,,1624.0,,4786.0,Includes Renewals and/or Redeterminations,3630.0,Includes Renewals and/or Redeterminations,122.0,,3752.0,,60288.0,,149510.0,,144871.0,,4639.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,202001,Y,U,Y,3162.0,,1624.0,,4786.0,Includes Renewals and/or Redeterminations,5423.0,Includes Renewals and/or Redeterminations,221.0,,5644.0,,60856.0,,150895.0,,146168.0,,4727.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,202002,Y,P,N,2636.0,,2258.0,,4894.0,Includes Renewals and/or Redeterminations,2831.0,Includes Renewals and/or Redeterminations,63.0,,2894.0,,60194.0,,149175.0,,144595.0,,4580.0,,,,971.0,,90.0,,334.0,,148.0,,1476.0,,,,,,, +VT,Vermont,202002,Y,U,Y,2636.0,,2258.0,,4894.0,Includes Renewals and/or Redeterminations,4522.0,Includes Renewals and/or Redeterminations,149.0,,4671.0,,60890.0,,151167.0,,146490.0,,4677.0,,,,971.0,,90.0,,334.0,,148.0,,1476.0,,,,,,, +VT,Vermont,202003,Y,P,N,2755.0,,2656.0,,5411.0,Includes Renewals and/or Redeterminations,4460.0,Includes Renewals and/or Redeterminations,137.0,,4597.0,,60930.0,,152616.0,,147956.0,,4660.0,,,,1190.0,,248.0,,734.0,,378.0,,1119.0,,,,,,, +VT,Vermont,202003,Y,U,Y,2755.0,,2656.0,,5411.0,Includes Renewals and/or Redeterminations,5528.0,Includes Renewals and/or Redeterminations,209.0,,5737.0,,61313.0,,153778.0,,149066.0,,4712.0,,,,1190.0,,248.0,,734.0,,378.0,,1119.0,,,,,,, +VT,Vermont,202004,Y,P,N,1871.0,,1376.0,,3247.0,Includes Renewals and/or Redeterminations,4622.0,Includes Renewals and/or Redeterminations,111.0,,4733.0,,61564.0,,157055.0,,152475.0,,4580.0,,,,1384.0,,436.0,,24.0,,10.0,,8.0,,,,,,, +VT,Vermont,202004,Y,U,Y,1871.0,,1376.0,,3247.0,Includes Renewals and/or Redeterminations,6485.0,Includes Renewals and/or Redeterminations,142.0,,6627.0,,61747.0,,157550.0,,152975.0,,4575.0,,,,1384.0,,436.0,,24.0,,10.0,,8.0,,,,,,, +VT,Vermont,202005,Y,P,N,1068.0,,1069.0,,2137.0,Includes Renewals and/or Redeterminations,2334.0,Includes Renewals and/or Redeterminations,36.0,,2370.0,,61851.0,,159103.0,,154869.0,,4234.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,202005,Y,U,Y,1068.0,,1069.0,,2137.0,Includes Renewals and/or Redeterminations,2570.0,Includes Renewals and/or Redeterminations,50.0,,2620.0,,61953.0,,159344.0,,155092.0,,4252.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,202006,Y,P,N,1286.0,,1069.0,,2355.0,Includes Renewals and/or Redeterminations,2244.0,Includes Renewals and/or Redeterminations,90.0,,2334.0,,62191.0,,161049.0,,156768.0,,4281.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,202006,Y,U,Y,1286.0,,1240.0,,2526.0,Includes Renewals and/or Redeterminations,2594.0,Includes Renewals and/or Redeterminations,99.0,,2693.0,,62324.0,,161336.0,,157046.0,,4290.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,202007,Y,P,N,1463.0,,1109.0,,2572.0,Includes Renewals and/or Redeterminations,1818.0,Includes Renewals and/or Redeterminations,34.0,,1852.0,,62375.0,,162600.0,,158338.0,,4262.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,202007,Y,U,Y,1463.0,,1109.0,,2572.0,Includes Renewals and/or Redeterminations,2347.0,Includes Renewals and/or Redeterminations,56.0,,2403.0,,62580.0,,163055.0,,158771.0,,4284.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,202008,Y,P,N,1630.0,,1357.0,,2987.0,Includes Renewals and/or Redeterminations,2520.0,Includes Renewals and/or Redeterminations,56.0,,2576.0,,62868.0,,164940.0,,160665.0,,4275.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,202008,Y,U,Y,1630.0,,1357.0,,2987.0,Includes Renewals and/or Redeterminations,2864.0,Includes Renewals and/or Redeterminations,69.0,,2933.0,,63000.0,,165203.0,,160907.0,,4296.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,202009,Y,P,N,1534.0,,1049.0,,2583.0,Includes Renewals and/or Redeterminations,2022.0,Includes Renewals and/or Redeterminations,56.0,,2078.0,,63126.0,,166422.0,,162138.0,,4284.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,202009,Y,U,Y,1534.0,,1049.0,,2583.0,Includes Renewals and/or Redeterminations,2403.0,Includes Renewals and/or Redeterminations,78.0,,2481.0,,63254.0,,166727.0,,162432.0,,4295.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,202010,Y,P,N,1432.0,,1046.0,,2478.0,,1775.0,,42.0,,1817.0,,63258.0,,167712.0,,163420.0,,4292.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,202010,Y,U,Y,1432.0,,1046.0,,2478.0,Includes Renewals and/or Redeterminations,2181.0,Includes Renewals and/or Redeterminations,64.0,,2245.0,,63416.0,,167994.0,,163666.0,,4328.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,202011,Y,P,N,1403.0,,1689.0,,3092.0,Includes Renewals and/or Redeterminations,2221.0,Includes Renewals and/or Redeterminations,45.0,,2266.0,,63539.0,,169380.0,,165060.0,,4320.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,202011,Y,U,Y,1403.0,,1689.0,,3092.0,Includes Renewals and/or Redeterminations,2653.0,Includes Renewals and/or Redeterminations,59.0,,2712.0,,63697.0,,169773.0,,165427.0,,4346.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,202012,Y,P,N,1418.0,,2277.0,,3695.0,Includes Renewals and/or Redeterminations,2801.0,Includes Renewals and/or Redeterminations,75.0,,2876.0,,63795.0,,171795.0,,167450.0,,4345.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,202012,Y,U,Y,1418.0,,2277.0,,3695.0,Includes Renewals and/or Redeterminations,3241.0,Includes Renewals and/or Redeterminations,94.0,,3335.0,,63980.0,,172171.0,,167774.0,,4397.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,202101,Y,P,N,1242.0,,1050.0,,2292.0,Includes Renewals and/or Redeterminations,1905.0,Includes Renewals and/or Redeterminations,40.0,,1945.0,,64083.0,,173379.0,,169020.0,,4359.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,202101,Y,U,Y,1242.0,,1050.0,,2292.0,Includes Renewals and/or Redeterminations,2200.0,Includes Renewals and/or Redeterminations,49.0,,2249.0,,64189.0,,173615.0,,169242.0,,4373.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,202102,Y,P,N,1261.0,,1002.0,,2263.0,Includes Renewals and/or Redeterminations,1565.0,Includes Renewals and/or Redeterminations,26.0,,1591.0,,64149.0,,174327.0,,169991.0,,4336.0,,,,1015.0,,266.0,,36.0,,12.0,,30.0,,,,,,, +VT,Vermont,202102,Y,U,Y,1261.0,,1002.0,,2263.0,Includes Renewals and/or Redeterminations,1861.0,Includes Renewals and/or Redeterminations,49.0,,1910.0,,64260.0,,174552.0,,170205.0,,4347.0,,,,1015.0,,266.0,,36.0,,12.0,,30.0,,,,,,, +VT,Vermont,202103,Y,P,N,1249.0,,1210.0,,2459.0,Includes Renewals and/or Redeterminations,1628.0,Includes Renewals and/or Redeterminations,38.0,,1666.0,,64212.0,,175440.0,,171086.0,,4354.0,,,,1249.0,,322.0,,37.0,,1.0,,13.0,,,,,,, +VT,Vermont,202103,Y,U,Y,1249.0,,1210.0,,2459.0,Includes Renewals and/or Redeterminations,1914.0,Includes Renewals and/or Redeterminations,47.0,,1961.0,,64297.0,,175606.0,,171269.0,,4337.0,,,,1249.0,,322.0,,37.0,,1.0,,13.0,,,,,,, +VT,Vermont,202104,Y,P,N,1119.0,,1321.0,,2440.0,Includes Renewals and/or Redeterminations,1695.0,Includes Renewals and/or Redeterminations,37.0,,1732.0,,64385.0,,176555.0,,172194.0,,4361.0,,,,1452.0,,386.0,,26.0,,4.0,,5.0,,,,,,, +VT,Vermont,202104,Y,U,Y,1119.0,,1321.0,,2440.0,Includes Renewals and/or Redeterminations,1965.0,Includes Renewals and/or Redeterminations,52.0,,2017.0,,64471.0,,176736.0,,172373.0,,4363.0,,,,1452.0,,386.0,,26.0,,4.0,,5.0,,,,,,, +VT,Vermont,202105,Y,P,N,1070.0,,1209.0,,2279.0,Includes Renewals and/or Redeterminations,1672.0,Includes Renewals and/or Redeterminations,45.0,,1717.0,,64431.0,,177688.0,,173389.0,,4299.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,202105,Y,U,Y,1070.0,,1209.0,,2279.0,Includes Renewals and/or Redeterminations,1899.0,Includes Renewals and/or Redeterminations,61.0,,1960.0,,64516.0,,177846.0,,173526.0,,4320.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,202106,Y,P,N,1422.0,,1257.0,,2679.0,Includes Renewals and/or Redeterminations,1803.0,Includes Renewals and/or Redeterminations,49.0,,1852.0,,64556.0,,178766.0,,174385.0,,4381.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,202106,Y,U,Y,1422.0,,1257.0,,2679.0,Includes Renewals and/or Redeterminations,2249.0,Includes Renewals and/or Redeterminations,77.0,,2326.0,,64693.0,,179141.0,,174719.0,,4422.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,202107,Y,P,N,1286.0,,1348.0,,2634.0,Includes Renewals and/or Redeterminations,1675.0,Includes Renewals and/or Redeterminations,58.0,,1733.0,,64729.0,,180069.0,,175541.0,,4528.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,202107,Y,U,Y,1286.0,,1348.0,,2634.0,Includes Renewals and/or Redeterminations,2018.0,Includes Renewals and/or Redeterminations,72.0,,2090.0,,64848.0,,180359.0,,175833.0,,4526.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,202108,Y,P,N,1397.0,,1428.0,,2825.0,Includes Renewals and/or Redeterminations,1749.0,Includes Renewals and/or Redeterminations,43.0,,1792.0,,64857.0,,181281.0,,176690.0,,4591.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,202108,Y,U,Y,1397.0,,1428.0,,2825.0,Includes Renewals and/or Redeterminations,2108.0,Includes Renewals and/or Redeterminations,76.0,,2184.0,,65028.0,,181597.0,,176956.0,,4641.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,202109,Y,P,N,1611.0,,1204.0,,2815.0,Includes Renewals and/or Redeterminations,1610.0,Includes Renewals and/or Redeterminations,42.0,,1652.0,,65039.0,,182294.0,,177634.0,,4660.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,202109,Y,U,Y,1611.0,,1204.0,,2815.0,Includes Renewals and/or Redeterminations,2129.0,Includes Renewals and/or Redeterminations,54.0,,2183.0,,65211.0,,182753.0,,178076.0,,4677.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,202110,Y,P,N,1509.0,,1201.0,,2710.0,Includes Renewals and/or Redeterminations,1553.0,Includes Renewals and/or Redeterminations,33.0,,1586.0,,65179.0,,183298.0,,178619.0,,4679.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,202110,Y,U,Y,1509.0,,1201.0,,2710.0,Includes Renewals and/or Redeterminations,1889.0,Includes Renewals and/or Redeterminations,51.0,,1940.0,,65262.0,,183477.0,,178776.0,,4701.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,202111,Y,P,N,1592.0,,1380.0,,2972.0,Includes Renewals and/or Redeterminations,1144.0,Includes Renewals and/or Redeterminations,25.0,,1169.0,,65155.0,,183693.0,,178980.0,,4713.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,202111,Y,U,Y,1592.0,,1380.0,,2972.0,Includes Renewals and/or Redeterminations,1544.0,Includes Renewals and/or Redeterminations,31.0,,1575.0,,65274.0,,183983.0,,179267.0,,4716.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,202112,Y,P,N,1375.0,,2054.0,,3429.0,Includes Renewals and/or Redeterminations,1198.0,Includes Renewals and/or Redeterminations,23.0,,1221.0,,65131.0,,184372.0,,179687.0,,4685.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,202112,Y,U,Y,1375.0,,2054.0,,3429.0,Includes Renewals and/or Redeterminations,1859.0,Includes Renewals and/or Redeterminations,44.0,,1903.0,,65337.0,,184874.0,,180171.0,,4703.0,,,,,,,,,,,,,,,,,,, +VT,Vermont,202201,Y,P,N,1634.0,,1775.0,,3409.0,Includes Renewals and/or Redeterminations,1599.0,Includes Renewals and/or Redeterminations,56.0,,1655.0,,65309.0,,185585.0,,180860.0,,4725.0,,,,1567.0,,105.0,,289.0,,312.0,,96.0,,,,,,, +VT,Vermont,202201,Y,U,Y,1634.0,,1775.0,,3409.0,Includes Renewals and/or Redeterminations,2014.0,Includes Renewals and/or Redeterminations,76.0,,2090.0,,65425.0,,185839.0,,181072.0,,4767.0,,,,1567.0,,105.0,,289.0,,312.0,,96.0,,,,,,, +VT,Vermont,202202,Y,P,N,1279.0,,1026.0,,2305.0,Includes Renewals and/or Redeterminations,1135.0,Includes Renewals and/or Redeterminations,24.0,,1159.0,,65328.0,,186087.0,,181310.0,,4777.0,,,,819.0,,93.0,,167.0,,262.0,,74.0,,,,,,, +VT,Vermont,202202,Y,U,Y,1279.0,,1026.0,,2305.0,Includes Renewals and/or Redeterminations,1448.0,Includes Renewals and/or Redeterminations,35.0,,1483.0,,65434.0,,186349.0,,181564.0,,4785.0,,,,819.0,,93.0,,167.0,,262.0,,74.0,,,,,,, +VT,Vermont,202203,Y,P,N,1454.0,,1261.0,,2715.0,Includes Renewals and/or Redeterminations,1175.0,Includes Renewals and/or Redeterminations,38.0,,1213.0,,65302.0,,186526.0,,181740.0,,4786.0,,,,1055.0,,89.0,,385.0,,272.0,,234.0,,,,,,, +VT,Vermont,202203,Y,U,Y,1454.0,,1261.0,,2715.0,Includes Renewals and/or Redeterminations,1619.0,Includes Renewals and/or Redeterminations,61.0,,1680.0,,65475.0,,186847.0,,182054.0,,4793.0,,,,1055.0,,89.0,,385.0,,272.0,,234.0,,,,,,, +VT,Vermont,202204,Y,P,N,1233.0,,861.0,,2094.0,Includes Renewals and/or Redeterminations,1017.0,Includes Renewals and/or Redeterminations,25.0,,1042.0,,65310.0,,187000.0,,182193.0,,4807.0,,,,862.0,,65.0,,178.0,,50.0,,21.0,,,,,,, +VT,Vermont,202204,Y,U,Y,1233.0,,861.0,,2094.0,Includes Renewals and/or Redeterminations,1488.0,Includes Renewals and/or Redeterminations,40.0,,1528.0,,65457.0,,187296.0,,182486.0,,4810.0,,,,862.0,,65.0,,178.0,,50.0,,21.0,,,,,,, +VT,Vermont,202205,Y,P,N,1354.0,,1043.0,,2397.0,Includes Renewals and/or Redeterminations,1357.0,Includes Renewals and/or Redeterminations,48.0,,1405.0,,65371.0,,187654.0,,182807.0,,4847.0,,,,1016.0,,70.0,,188.0,,183.0,,18.0,,,,,,, +VT,Vermont,202205,Y,U,Y,1354.0,,1043.0,,2397.0,Includes Renewals and/or Redeterminations,1739.0,Includes Renewals and/or Redeterminations,73.0,,1812.0,,65492.0,,187940.0,,183073.0,,4867.0,,,,1016.0,,70.0,,188.0,,183.0,,18.0,,,,,,, +VT,Vermont,202206,Y,P,N,1578.0,,1166.0,,2744.0,Includes Renewals and/or Redeterminations,1336.0,Includes Renewals and/or Redeterminations,31.0,,1367.0,,65449.0,,188533.0,,183705.0,,4828.0,,,,1080.0,,83.0,,173.0,,193.0,,28.0,,,,,,, +VT,Vermont,202206,Y,U,Y,1578.0,,1166.0,,2744.0,Includes Renewals and/or Redeterminations,1747.0,Includes Renewals and/or Redeterminations,52.0,,1799.0,,65593.0,,188808.0,,183972.0,,4836.0,,,,1080.0,,83.0,,173.0,,193.0,,28.0,,,,,,, +VT,Vermont,202207,Y,P,N,1422.0,,1089.0,,2511.0,Includes Renewals and/or Redeterminations,1351.0,Includes Renewals and/or Redeterminations,39.0,,1390.0,,65406.0,,188948.0,,184118.0,,4830.0,,,,1016.0,,69.0,,244.0,,138.0,,40.0,,,,,,, +VT,Vermont,202207,Y,U,Y,1422.0,,1089.0,,2511.0,Includes Renewals and/or Redeterminations,1699.0,Includes Renewals and/or Redeterminations,48.0,,1747.0,,65535.0,,189194.0,,184361.0,,4833.0,,,,1016.0,,69.0,,244.0,,138.0,,40.0,,,,,,, +VT,Vermont,202208,Y,P,N,1702.0,,1164.0,,2866.0,Includes Renewals and/or Redeterminations,1629.0,Includes Renewals and/or Redeterminations,37.0,,1666.0,,65458.0,,189752.0,,184934.0,,4818.0,,,,1033.0,,105.0,,234.0,,196.0,,49.0,,,,,,, +VT,Vermont,202208,Y,U,Y,1702.0,,1164.0,,2866.0,Includes Renewals and/or Redeterminations,2015.0,Includes Renewals and/or Redeterminations,55.0,,2070.0,,65597.0,,190063.0,,185220.0,,4843.0,,,,1033.0,,105.0,,234.0,,196.0,,49.0,,,,,,, +VT,Vermont,202209,Y,P,N,1569.0,,1116.0,,2685.0,Includes Renewals and/or Redeterminations,1275.0,Includes Renewals and/or Redeterminations,50.0,,1325.0,,65514.0,,190467.0,,185686.0,,4781.0,,,,1128.0,,60.0,,204.0,,140.0,,30.0,,,,,,, +VT,Vermont,202209,Y,U,Y,1569.0,,1116.0,,2685.0,Includes Renewals and/or Redeterminations,1702.0,Includes Renewals and/or Redeterminations,62.0,,1764.0,,65663.0,,190782.0,,186011.0,,4771.0,,,,1128.0,,60.0,,204.0,,140.0,,30.0,,,,,,, +VT,Vermont,202210,Y,P,N,1625.0,,1004.0,,2629.0,Includes Renewals and/or Redeterminations,1289.0,Includes Renewals and/or Redeterminations,25.0,,1314.0,,65500.0,,190952.0,,186289.0,,4663.0,,,,1034.0,,63.0,,130.0,,130.0,,41.0,,,,,,, +VT,Vermont,202210,Y,U,Y,1625.0,,1004.0,,2629.0,Includes Renewals and/or Redeterminations,1601.0,Includes Renewals and/or Redeterminations,37.0,,1638.0,,65605.0,,191137.0,,186474.0,,4663.0,,,,1034.0,,63.0,,130.0,,130.0,,41.0,,,,,,, +VT,Vermont,202211,Y,P,N,1588.0,,1600.0,,3188.0,Includes Renewals and/or Redeterminations,1375.0,Includes Renewals and/or Redeterminations,45.0,,1420.0,,65537.0,,191608.0,,186989.0,,4619.0,,,,1703.0,,109.0,,232.0,,126.0,,68.0,,,,,,, +VT,Vermont,202211,Y,U,Y,1588.0,,1600.0,,3188.0,Includes Renewals and/or Redeterminations,1698.0,Includes Renewals and/or Redeterminations,55.0,,1753.0,,65641.0,,191834.0,,187213.0,,4621.0,,,,1703.0,,109.0,,232.0,,126.0,,68.0,,,,,,, +VT,Vermont,202212,Y,P,N,1489.0,,1913.0,,3402.0,Includes Renewals and/or Redeterminations,1877.0,Includes Renewals and/or Redeterminations,52.0,,1929.0,,65566.0,,192319.0,,187645.0,,4674.0,,,,2063.0,,108.0,,250.0,,188.0,,49.0,,,,,,, +VT,Vermont,202212,Y,U,Y,1489.0,,1913.0,,3402.0,Includes Renewals and/or Redeterminations,1962.0,Includes Renewals and/or Redeterminations,67.0,,2029.0,,65715.0,,192634.0,,187949.0,,4685.0,,,,2063.0,,108.0,,250.0,,188.0,,49.0,,,,,,, +VT,Vermont,202301,Y,P,N,2108.0,,1586.0,,3694.0,Includes Renewals and/or Redeterminations,1479.0,Includes Renewals and/or Redeterminations,43.0,,1522.0,,65605.0,,193065.0,,188379.0,,4686.0,,,,1457.0,,100.0,,271.0,,180.0,,69.0,,,,,,, +VT,Vermont,202301,Y,U,Y,2108.0,,1586.0,,3694.0,Includes Renewals and/or Redeterminations,1873.0,Includes Renewals and/or Redeterminations,59.0,,1932.0,,65723.0,,193355.0,,188673.0,,4682.0,,,,1457.0,,100.0,,271.0,,180.0,,69.0,,,,,,, +VT,Vermont,202302,Y,P,N,2363.0,,1059.0,,3422.0,Includes Renewals and/or Redeterminations,1602.0,Includes Renewals and/or Redeterminations,12.0,,1614.0,,65578.0,,193447.0,,188786.0,,4661.0,,,,833.0,,49.0,,236.0,,230.0,,57.0,,,,,,, +VT,Vermont,202302,Y,U,Y,2363.0,,1059.0,,3422.0,Includes Renewals and/or Redeterminations,1435.0,Includes Renewals and/or Redeterminations,28.0,,1463.0,,65708.0,,193737.0,,189066.0,,4671.0,,,,833.0,,49.0,,236.0,,230.0,,57.0,,,,,,, +VT,Vermont,202303,Y,P,N,1978.0,,1131.0,,3109.0,Includes Renewals and/or Redeterminations,1449.0,Includes Renewals and/or Redeterminations,11.0,,1460.0,,65447.0,,193649.0,,189065.0,,4584.0,,,,1024.0,,94.0,,157.0,,212.0,,66.0,,16749.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data; Wait times for callbacks are included but reported separately from live calls,0.006,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +VT,Vermont,202303,Y,U,Y,1978.0,,1131.0,,3109.0,Includes Renewals and/or Redeterminations,1830.0,Includes Renewals and/or Redeterminations,28.0,,1858.0,,65605.0,,193976.0,,189355.0,,4621.0,,,,1024.0,,94.0,,157.0,,212.0,,66.0,,16749.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data; Wait times for callbacks are included but reported separately from live calls,0.006,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +VT,Vermont,202304,Y,P,N,1545.0,,941.0,,2486.0,Includes Renewals and/or Redeterminations,1372.0,Includes Renewals and/or Redeterminations,23.0,,1395.0,,65499.0,,194227.0,,189624.0,,4603.0,,,,969.0,,78.0,,135.0,,132.0,,33.0,,15636.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data; Wait times for callbacks are included but reported separately from live calls,0.005,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +VT,Vermont,202304,Y,U,Y,1545.0,,941.0,,2486.0,Includes Renewals and/or Redeterminations,1750.0,Includes Renewals and/or Redeterminations,34.0,,1784.0,,65598.0,,194564.0,,189945.0,,4619.0,,,,969.0,,78.0,,135.0,,132.0,,33.0,,15636.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data; Wait times for callbacks are included but reported separately from live calls,0.005,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +VT,Vermont,202305,Y,P,N,2146.0,,1286.0,,3432.0,Includes Renewals and/or Redeterminations,1467.0,Includes Renewals and/or Redeterminations,42.0,,1509.0,,65462.0,,194585.0,,189957.0,,4628.0,,,,1323.0,,87.0,,172.0,,227.0,,35.0,,19537.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data; Wait times for callbacks are included but reported separately from live calls,0.007,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +VT,Vermont,202305,Y,U,Y,2146.0,,1286.0,,3432.0,Includes Renewals and/or Redeterminations,1836.0,Includes Renewals and/or Redeterminations,52.0,,1888.0,,65535.0,,194794.0,,190155.0,,4639.0,,,,1323.0,,87.0,,172.0,,227.0,,35.0,,19537.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data; Wait times for callbacks are included but reported separately from live calls,0.007,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +VT,Vermont,202306,Y,P,N,2082.0,,1239.0,,3321.0,Includes Renewals and/or Redeterminations,1952.0,Includes Renewals and/or Redeterminations,49.0,,2001.0,,63589.0,,187818.0,,183515.0,,4303.0,,,,1324.0,,81.0,,162.0,,129.0,,28.0,,22054.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data; Wait times for callbacks are included but reported separately from live calls,0.087,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +VT,Vermont,202306,Y,U,Y,2082.0,,1239.0,,3321.0,Includes Renewals and/or Redeterminations,2650.0,Includes Renewals and/or Redeterminations,102.0,,2752.0,,63872.0,,188393.0,,184044.0,,4349.0,,,,1324.0,,81.0,,162.0,,129.0,,28.0,,22054.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data; Wait times for callbacks are included but reported separately from live calls,0.087,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +VT,Vermont,202307,Y,P,N,2084.0,,1235.0,,3319.0,Includes Renewals and/or Redeterminations,1814.0,Includes Renewals and/or Redeterminations,69.0,,1883.0,,62284.0,,182446.0,,178362.0,,4084.0,,,,1184.0,,70.0,,233.0,,175.0,,72.0,,20275.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,4.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data; Wait times for callbacks are included but reported separately from live calls,0.09,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +VT,Vermont,202307,Y,U,Y,2084.0,,1235.0,,3319.0,Includes Renewals and/or Redeterminations,2580.0,Includes Renewals and/or Redeterminations,111.0,,2691.0,,62532.0,,182922.0,,178797.0,,4125.0,,,,1184.0,,70.0,,233.0,,175.0,,72.0,,20275.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,4.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data; Wait times for callbacks are included but reported separately from live calls,0.09,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +VT,Vermont,202308,Y,P,N,2453.0,,1450.0,,3903.0,Includes Renewals and/or Redeterminations,2135.0,Includes Renewals and/or Redeterminations,57.0,,2192.0,,62311.0,,182312.0,,178215.0,,4097.0,,,,1415.0,,108.0,,207.0,,286.0,,64.0,,22959.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,5.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data; Wait times for callbacks are included but reported separately from live calls,0.107,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +VT,Vermont,202308,Y,U,Y,2453.0,,1450.0,,3903.0,Includes Renewals and/or Redeterminations,2684.0,Includes Renewals and/or Redeterminations,75.0,,2759.0,,62780.0,,183076.0,,178913.0,,4163.0,,,,1415.0,,108.0,,207.0,,286.0,,64.0,,22959.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,5.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data; Wait times for callbacks are included but reported separately from live calls,0.107,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +VT,Vermont,202309,Y,P,N,3081.0,,1263.0,,4344.0,Includes Renewals and/or Redeterminations,1702.0,Includes Renewals and/or Redeterminations,62.0,,1764.0,,61603.0,,178400.0,,174267.0,,4133.0,,,,1192.0,,105.0,,212.0,,168.0,,78.0,,23299.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,6.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data; Wait times for callbacks are included but reported separately from live calls,0.128,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +VT,Vermont,202309,Y,U,Y,3081.0,,1263.0,,4344.0,Includes Renewals and/or Redeterminations,2450.0,Includes Renewals and/or Redeterminations,101.0,,2551.0,,62434.0,,179754.0,,175519.0,,4235.0,,,,1192.0,,105.0,,212.0,,168.0,,78.0,,23299.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,6.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data; Wait times for callbacks are included but reported separately from live calls,0.128,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +VT,Vermont,202310,Y,P,N,2587.0,,1459.0,,4046.0,Includes Renewals and/or Redeterminations,2161.0,Includes Renewals and/or Redeterminations,63.0,,2224.0,,61119.0,,174096.0,,169926.0,,4170.0,,,,1333.0,,95.0,,210.0,,250.0,,197.0,,28769.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,9.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data; Wait times for callbacks are included but reported separately from live calls,0.183,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +VT,Vermont,202310,Y,U,Y,2587.0,,1459.0,,4046.0,Includes Renewals and/or Redeterminations,2908.0,Includes Renewals and/or Redeterminations,125.0,,3033.0,,61460.0,,174791.0,,170544.0,,4247.0,,,,1333.0,,95.0,,210.0,,250.0,,197.0,,28769.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,9.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data; Wait times for callbacks are included but reported separately from live calls,0.183,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +VT,Vermont,202311,Y,P,N,2321.0,,1955.0,,4276.0,Includes Renewals and/or Redeterminations,1936.0,Includes Renewals and/or Redeterminations,59.0,,1995.0,,60858.0,,171831.0,,167624.0,,4207.0,,,,1993.0,,100.0,,210.0,,346.0,,113.0,,29408.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,14.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data; Wait times for callbacks are included but reported separately from live calls,0.231,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +VT,Vermont,202311,Y,U,Y,2321.0,,1955.0,,4276.0,Includes Renewals and/or Redeterminations,2739.0,Includes Renewals and/or Redeterminations,126.0,,2865.0,,61390.0,,172986.0,,168698.0,,4288.0,,,,1993.0,,100.0,,210.0,,346.0,,113.0,,29408.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,14.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data; Wait times for callbacks are included but reported separately from live calls,0.231,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +VT,Vermont,202312,Y,P,N,2225.0,,2092.0,,4317.0,Includes Renewals and/or Redeterminations,2294.0,Includes Renewals and/or Redeterminations,72.0,,2366.0,,60732.0,,170730.0,,166424.0,,4306.0,,,,2124.0,,130.0,,214.0,,271.0,,98.0,,28304.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,9.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data; Wait times for callbacks are included but reported separately from live calls,0.151,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +VT,Vermont,202312,Y,U,Y,2225.0,,2092.0,,4317.0,Includes Renewals and/or Redeterminations,3052.0,Includes Renewals and/or Redeterminations,120.0,,3172.0,,61219.0,,171666.0,,167192.0,,4474.0,,,,2124.0,,130.0,,214.0,,271.0,,98.0,,28304.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,9.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data; Wait times for callbacks are included but reported separately from live calls,0.151,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +VT,Vermont,202401,Y,P,N,2358.0,,2127.0,,4485.0,Includes Renewals and/or Redeterminations,2381.0,Includes Renewals and/or Redeterminations,98.0,,2479.0,,60936.0,,170243.0,,165744.0,,4499.0,,,,1948.0,,132.0,,256.0,,400.0,,184.0,,30693.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,5.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data; Wait times for callbacks are included but reported separately from live calls,0.092,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +VT,Vermont,202401,Y,U,Y,2358.0,,2127.0,,4485.0,Includes Renewals and/or Redeterminations,3054.0,Includes Renewals and/or Redeterminations,128.0,,3182.0,,61183.0,,170950.0,,166418.0,,4532.0,,,,1948.0,,132.0,,256.0,,400.0,,184.0,,30693.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,5.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data; Wait times for callbacks are included but reported separately from live calls,0.092,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +VT,Vermont,202402,Y,P,N,2071.0,,1481.0,,3552.0,Includes Renewals and/or Redeterminations,1978.0,Includes Renewals and/or Redeterminations,37.0,,2015.0,,60639.0,,168736.0,,164287.0,,4449.0,,,,1049.0,,87.0,,292.0,,395.0,,154.0,,22396.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data; Wait times for callbacks are included but reported separately from live calls,0.011,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +VT,Vermont,202402,Y,U,Y,2071.0,,1481.0,,3552.0,Includes Renewals and/or Redeterminations,2563.0,Includes Renewals and/or Redeterminations,66.0,,2629.0,,60861.0,,169414.0,,164909.0,,4505.0,,,,1049.0,,87.0,,292.0,,395.0,,154.0,,22396.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data; Wait times for callbacks are included but reported separately from live calls,0.011,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +VT,Vermont,202403,Y,P,N,2202.0,,1621.0,,3823.0,Includes Renewals and/or Redeterminations,1868.0,Includes Renewals and/or Redeterminations,71.0,,1939.0,,60075.0,,165883.0,,161385.0,,4498.0,,,,1374.0,,91.0,,396.0,,202.0,,143.0,,21213.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data; Wait times for callbacks are included but reported separately from live calls,0.009,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +VT,Vermont,202403,Y,U,Y,2202.0,,1621.0,,3823.0,Includes Renewals and/or Redeterminations,2679.0,Includes Renewals and/or Redeterminations,104.0,,2783.0,,60371.0,,166597.0,,162058.0,,4539.0,,,,1374.0,,91.0,,396.0,,202.0,,143.0,,21213.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data; Wait times for callbacks are included but reported separately from live calls,0.009,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +VT,Vermont,202404,Y,P,N,2256.0,,1444.0,,3700.0,Includes Renewals and/or Redeterminations,2177.0,Includes Renewals and/or Redeterminations,46.0,,2223.0,,59680.0,,163601.0,,159095.0,,4506.0,,,,1236.0,,116.0,,329.0,,259.0,,72.0,,21883.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data; Wait times for callbacks are included but reported separately from live calls,0.004,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +VT,Vermont,202404,Y,U,Y,2256.0,,1444.0,,3700.0,Includes Renewals and/or Redeterminations,3254.0,Includes Renewals and/or Redeterminations,85.0,,3339.0,,60003.0,,164394.0,,159835.0,,4559.0,,,,1236.0,,116.0,,329.0,,259.0,,72.0,,21883.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data; Wait times for callbacks are included but reported separately from live calls,0.004,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +VT,Vermont,202405,Y,P,N,2068.0,,1393.0,,3461.0,Includes Renewals and/or Redeterminations,3680.0,Includes Renewals and/or Redeterminations,107.0,,3787.0,,59391.0,,161854.0,,157257.0,,4597.0,,,,1260.0,,85.0,,379.0,,133.0,,51.0,,19321.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data; Wait times for callbacks are included but reported separately from live calls,0.009,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +VT,Vermont,202405,Y,U,Y,2068.0,,1393.0,,3461.0,Includes Renewals and/or Redeterminations,4664.0,Includes Renewals and/or Redeterminations,152.0,,4816.0,,59872.0,,163004.0,,158363.0,,4641.0,,,,1260.0,,85.0,,379.0,,133.0,,51.0,,19321.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data; Wait times for callbacks are included but reported separately from live calls,0.009,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +VT,Vermont,202406,Y,P,N,1993.0,,1280.0,,3273.0,Includes Renewals and/or Redeterminations,2016.0,Includes Renewals and/or Redeterminations,69.0,,2085.0,,58878.0,,159459.0,,154838.0,,4621.0,,,,1173.0,,99.0,,244.0,,220.0,,50.0,,17087.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data; Wait times for callbacks are included but reported separately from live calls,0.005,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +VT,Vermont,202406,Y,U,Y,1993.0,,1280.0,,3273.0,Includes Renewals and/or Redeterminations,3172.0,Includes Renewals and/or Redeterminations,125.0,,3297.0,,59366.0,,160539.0,,155849.0,,4690.0,,,,1173.0,,99.0,,244.0,,220.0,,50.0,,17087.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data; Wait times for callbacks are included but reported separately from live calls,0.005,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +VT,Vermont,202407,Y,P,N,2001.0,,1435.0,,3436.0,Includes Renewals and/or Redeterminations,2018.0,Includes Renewals and/or Redeterminations,86.0,,2104.0,,58976.0,,159484.0,,154787.0,,4697.0,,100508.0,,1170.0,,98.0,,332.0,,248.0,,123.0,,18635.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data; Wait times for callbacks are included but reported separately from live calls,0.01,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +VT,Vermont,202407,Y,U,Y,2001.0,,1435.0,,3436.0,Includes Renewals and/or Redeterminations,2799.0,Includes Renewals and/or Redeterminations,133.0,,2932.0,,59255.0,,160189.0,,155423.0,,4766.0,,100934.0,,1170.0,,98.0,,332.0,,248.0,,123.0,,18635.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data; Wait times for callbacks are included but reported separately from live calls,0.01,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +VT,Vermont,202408,Y,P,N,2065.0,,1318.0,,3383.0,Includes Renewals and/or Redeterminations,2053.0,Includes Renewals and/or Redeterminations,72.0,,2125.0,,59022.0,,159353.0,,154569.0,,4784.0,,100331.0,,1191.0,,114.0,,218.0,,238.0,,83.0,,18202.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data; Wait times for callbacks are included but reported separately from live calls,0.024,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +VT,Vermont,202408,Y,U,Y,2065.0,,1318.0,,3383.0,Includes Renewals and/or Redeterminations,2772.0,Includes Renewals and/or Redeterminations,96.0,,2868.0,,59280.0,,159959.0,,155116.0,,4843.0,,100679.0,,1191.0,,114.0,,218.0,,238.0,,83.0,,18202.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data; Wait times for callbacks are included but reported separately from live calls,0.024,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +VT,Vermont,202409,Y,P,N,2071.0,,1240.0,,3311.0,Includes Renewals and/or Redeterminations,1842.0,Includes Renewals and/or Redeterminations,57.0,,1899.0,,58698.0,,157548.0,,152732.0,,4816.0,,98850.0,,1088.0,,111.0,,265.0,,208.0,,57.0,,17684.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data; Wait times for callbacks are included but reported separately from live calls,0.019,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +VT,Vermont,202409,Y,U,Y,2071.0,,1240.0,,3311.0,Includes Renewals and/or Redeterminations,3035.0,Includes Renewals and/or Redeterminations,97.0,,3132.0,,59149.0,,158589.0,,153671.0,,4918.0,,99440.0,,1088.0,,111.0,,265.0,,208.0,,57.0,,17684.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data; Wait times for callbacks are included but reported separately from live calls,0.019,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +VT,Vermont,202410,Y,P,N,2298.0,,1319.0,,3617.0,Includes Renewals and/or Redeterminations,2072.0,Includes Renewals and/or Redeterminations,77.0,,2149.0,,58923.0,,157471.0,,152573.0,,4898.0,,98548.0,,1155.0,,146.0,,270.0,,190.0,,129.0,,20606.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data; Wait times for callbacks are included but reported separately from live calls,0.028,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +VT,Vermont,202410,Y,U,Y,2298.0,,1319.0,,3617.0,Includes Renewals and/or Redeterminations,2734.0,Includes Renewals and/or Redeterminations,105.0,,2839.0,,59142.0,,158022.0,,153044.0,,4978.0,,98880.0,,1155.0,,146.0,,270.0,,190.0,,129.0,,20606.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data; Wait times for callbacks are included but reported separately from live calls,0.028,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +VT,Vermont,202411,Y,P,N,1846.0,,1975.0,,3821.0,Includes Renewals and/or Redeterminations,1871.0,Includes Renewals and/or Redeterminations,67.0,,1938.0,,58645.0,,156412.0,,151464.0,,4948.0,,97767.0,,2020.0,,136.0,,305.0,,201.0,,123.0,,23921.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,4.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data; Wait times for callbacks are included but reported separately from live calls,0.075,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +VT,Vermont,202411,Y,U,Y,1846.0,,1975.0,,3821.0,Includes Renewals and/or Redeterminations,2815.0,Includes Renewals and/or Redeterminations,114.0,,2929.0,,58906.0,,157150.0,,152058.0,,5092.0,,98244.0,,2020.0,,136.0,,305.0,,201.0,,123.0,,23921.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,4.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data; Wait times for callbacks are included but reported separately from live calls,0.075,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +VT,Vermont,202412,Y,P,N,1890.0,,2368.0,,4258.0,Includes Renewals and/or Redeterminations,2160.0,Includes Renewals and/or Redeterminations,99.0,,2259.0,,58828.0,,156970.0,,151833.0,,5137.0,,98142.0,,2394.0,,179.0,,358.0,,201.0,,123.0,,26964.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,3.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data; Wait times for callbacks are included but reported separately from live calls,0.043,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +VT,Vermont,202412,Y,U,Y,1890.0,,2368.0,,4258.0,Includes Renewals and/or Redeterminations,2930.0,Includes Renewals and/or Redeterminations,134.0,,3064.0,,59080.0,,157646.0,,152450.0,,5196.0,,98566.0,,2394.0,,179.0,,358.0,,201.0,,123.0,,26964.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,3.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data; Wait times for callbacks are included but reported separately from live calls,0.043,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +VT,Vermont,202501,Y,P,N,2141.0,,2209.0,,4350.0,Includes Renewals and/or Redeterminations,3064.0,Includes Renewals and/or Redeterminations,79.0,,3143.0,,59116.0,,158028.0,,152795.0,,5233.0,,98912.0,,1945.0,,236.0,,314.0,,322.0,,138.0,,25676.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data; Wait times for callbacks are included but reported separately from live calls,0.012,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +VT,Vermont,202501,Y,U,Y,2141.0,,2209.0,,4350.0,Includes Renewals and/or Redeterminations,3706.0,Includes Renewals and/or Redeterminations,113.0,,3819.0,,59283.0,,158483.0,,153193.0,,5290.0,,99200.0,,1945.0,,236.0,,314.0,,322.0,,138.0,,25676.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data; Wait times for callbacks are included but reported separately from live calls,0.012,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +VT,Vermont,202502,Y,P,N,1871.0,,1530.0,,3401.0,Includes Renewals and/or Redeterminations,1715.0,Includes Renewals and/or Redeterminations,46.0,,1761.0,,59057.0,,157354.0,,152140.0,,5214.0,,98297.0,,1003.0,,242.0,,310.0,,324.0,,142.0,,18142.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data; Wait times for callbacks are included but reported separately from live calls,0.012,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +VT,Vermont,202502,Y,U,Y,1871.0,,1530.0,,3401.0,Includes Renewals and/or Redeterminations,2416.0,Includes Renewals and/or Redeterminations,75.0,,2491.0,,59234.0,,157905.0,,152610.0,,5295.0,,98671.0,,1003.0,,242.0,,310.0,,324.0,,142.0,,18142.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data; Wait times for callbacks are included but reported separately from live calls,0.012,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +VT,Vermont,202503,Y,P,N,2211.0,,1368.0,,3579.0,Includes Renewals and/or Redeterminations,1873.0,Includes Renewals and/or Redeterminations,57.0,,1930.0,,58894.0,,156750.0,,151466.0,,5284.0,,97856.0,,1067.0,,230.0,,310.0,,102.0,,74.0,,19104.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data; Wait times for callbacks are included but reported separately from live calls,0.023,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +VT,Vermont,202503,Y,U,Y,2211.0,,1368.0,,3579.0,Includes Renewals and/or Redeterminations,2729.0,Includes Renewals and/or Redeterminations,102.0,,2831.0,,59156.0,,157441.0,,152101.0,,5340.0,,98285.0,,1067.0,,230.0,,310.0,,102.0,,74.0,,19104.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data; Wait times for callbacks are included but reported separately from live calls,0.023,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +VT,Vermont,202504,Y,P,N,2180.0,,1244.0,,3424.0,Includes Renewals and/or Redeterminations,2215.0,Includes Renewals and/or Redeterminations,81.0,,2296.0,,58930.0,,156642.0,,151326.0,,5316.0,,97712.0,,1112.0,,191.0,,170.0,,166.0,,56.0,,19377.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data; Wait times for callbacks are included but reported separately from live calls,0.012,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +VT,Vermont,202504,Y,U,Y,2180.0,,1244.0,,3424.0,Includes Renewals and/or Redeterminations,3103.0,Includes Renewals and/or Redeterminations,111.0,,3214.0,,59082.0,,157141.0,,151766.0,,5375.0,,98059.0,,1112.0,,191.0,,170.0,,166.0,,56.0,,19377.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data; Wait times for callbacks are included but reported separately from live calls,0.012,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +VT,Vermont,202505,Y,P,N,2038.0,,1549.0,,3587.0,Includes Renewals and/or Redeterminations,2026.0,Includes Renewals and/or Redeterminations,74.0,,2100.0,,58658.0,,155658.0,,150283.0,,5375.0,,97000.0,,1022.0,,263.0,,352.0,,324.0,,142.0,,17223.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data; Wait times for callbacks are included but reported separately from live calls,0.007,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +VT,Vermont,202505,Y,U,Y,2038.0,,1549.0,,3587.0,Includes Renewals and/or Redeterminations,2929.0,Includes Renewals and/or Redeterminations,127.0,,3056.0,,58826.0,,156150.0,,150737.0,,5413.0,,97324.0,,1022.0,,263.0,,352.0,,324.0,,142.0,,17223.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data; Wait times for callbacks are included but reported separately from live calls,0.007,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +VT,Vermont,202506,Y,P,N,1870.0,,1800.0,,3670.0,Includes Renewals and/or Redeterminations,1966.0,Includes Renewals and/or Redeterminations,101.0,,2067.0,,58441.0,,154780.0,,149447.0,,5333.0,,96339.0,,1204.0,,229.0,,383.0,,246.0,,495.0,,16600.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data; Wait times for callbacks are included but reported separately from live calls,0.011,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +VT,Vermont,202506,Y,U,Y,1870.0,,1800.0,,3670.0,Includes Renewals and/or Redeterminations,2916.0,Includes Renewals and/or Redeterminations,158.0,,3074.0,,58638.0,,155323.0,,149943.0,,5380.0,,96685.0,,1204.0,,229.0,,383.0,,246.0,,495.0,,16600.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data; Wait times for callbacks are included but reported separately from live calls,0.011,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +VT,Vermont,202507,Y,P,N,2718.0,,1880.0,,4598.0,Includes Renewals and/or Redeterminations,2284.0,Includes Renewals and/or Redeterminations,99.0,,2383.0,,58283.0,,154354.0,,149086.0,,5268.0,,96071.0,,1440.0,,317.0,,436.0,,315.0,,422.0,,19424.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data; Wait times for callbacks are included but reported separately from live calls,0.015,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +VT,Vermont,202507,Y,U,Y,2718.0,,1880.0,,4598.0,Includes Renewals and/or Redeterminations,3145.0,Includes Renewals and/or Redeterminations,168.0,,3313.0,,58437.0,,154784.0,,149450.0,,5334.0,,96347.0,,1440.0,,317.0,,436.0,,315.0,,422.0,,19424.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data; Wait times for callbacks are included but reported separately from live calls,0.015,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +VT,Vermont,202508,Y,P,N,3045.0,,1191.0,,4236.0,Includes Renewals and/or Redeterminations,2716.0,Includes Renewals and/or Redeterminations,88.0,,2804.0,,58145.0,,153909.0,,148617.0,,5292.0,,95764.0,,1146.0,,136.0,,242.0,,128.0,,532.0,,17198.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data; Wait times for callbacks are included but reported separately from live calls,0.021,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +VT,Vermont,202508,Y,U,Y,3045.0,,1191.0,,4236.0,Includes Renewals and/or Redeterminations,3408.0,Includes Renewals and/or Redeterminations,132.0,,3540.0,,58348.0,,154415.0,,149044.0,,5371.0,,96067.0,,1146.0,,136.0,,242.0,,128.0,,532.0,,17198.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data; Wait times for callbacks are included but reported separately from live calls,0.021,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +VT,Vermont,202509,Y,P,N,2837.0,,2147.0,,4984.0,Includes Renewals and/or Redeterminations,2575.0,Includes Renewals and/or Redeterminations,92.0,,2667.0,,57928.0,,153259.0,,147935.0,,5324.0,,95331.0,,1148.0,,216.0,,398.0,,295.0,,891.0,,18797.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,2.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data; Wait times for callbacks are included but reported separately from live calls,0.034,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +VT,Vermont,202509,Y,U,Y,2837.0,,2147.0,,4984.0,Includes Renewals and/or Redeterminations,3377.0,Includes Renewals and/or Redeterminations,142.0,,3519.0,,58144.0,,153802.0,,148404.0,,5398.0,,95658.0,,1148.0,,216.0,,398.0,,295.0,,891.0,,18797.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,2.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data; Wait times for callbacks are included but reported separately from live calls,0.034,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +VT,Vermont,202510,Y,P,N,2576.0,,2266.0,,4842.0,Includes Renewals and/or Redeterminations,2410.0,Includes Renewals and/or Redeterminations,78.0,,2488.0,,57787.0,,152275.0,,146926.0,,5349.0,,94488.0,,1045.0,,299.0,,532.0,,422.0,,997.0,,22459.0,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data,2.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes state-based marketplace (SBM) data; Wait times for callbacks are included but reported separately from live calls,0.048,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent; Includes state-based marketplace (SBM) data +WA,Washington,201309,N,U,Y,,,,,,,,,,,,,,,1117576.0,,,,,,,,,,,,,,,,,,,,,,, +WA,Washington,201706,Y,P,N,16637.0,,62964.0,,79601.0,,36894.0,,1189.0,,38083.0,,848141.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1810090.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1756877.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),53213.0,,,,,,,,,,,,,,,,,,, +WA,Washington,201706,Y,U,Y,18937.0,,64739.0,,83676.0,,36895.0,,1187.0,,38082.0,,848141.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1810090.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1756877.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),53213.0,,,,,,,,,,,,,,,,,,, +WA,Washington,201707,Y,P,N,16057.0,,64823.0,,80880.0,,39056.0,,1226.0,,40282.0,,845058.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1795941.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1742072.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),53869.0,,,,,,,,,,,,,,,,,,, +WA,Washington,201707,Y,U,Y,17388.0,,65967.0,,83355.0,,37954.0,,1169.0,,39123.0,,845058.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1795941.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1742072.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),53869.0,,,,,,,,,,,,,,,,,,, +WA,Washington,201708,Y,P,N,17852.0,,72034.0,,89886.0,,44939.0,,1458.0,,46397.0,,845686.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1788562.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1733585.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),54977.0,,,,,,,,,,,,,,,,,,, +WA,Washington,201708,Y,U,Y,19806.0,,73543.0,,93349.0,,44949.0,,1460.0,,46409.0,,845686.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1788562.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1733585.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),54977.0,,,,,,,,,,,,,,,,,,, +WA,Washington,201709,Y,P,N,17555.0,,63873.0,,81428.0,,42491.0,,1347.0,,43838.0,,844257.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1776086.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1720001.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),56085.0,,,,,,,,,,,,,,,,,,, +WA,Washington,201709,Y,U,Y,19156.0,,65224.0,,84380.0,,41248.0,,1282.0,,42530.0,,844257.0,,1776086.0,,1720001.0,,56085.0,,,,,,,,,,,,,,,,,,, +WA,Washington,201710,Y,P,N,19128.0,,69625.0,,88753.0,,44072.0,,1432.0,,45504.0,,844239.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1770959.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1713629.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),57330.0,,,,,,,,,,,,,,,,,,, +WA,Washington,201710,Y,U,Y,20569.0,,70808.0,,91377.0,,44066.0,,1436.0,,45502.0,,844239.0,,1770959.0,,1713629.0,,57330.0,,,,,,,,,,,,,,,,,,, +WA,Washington,201711,Y,P,N,16985.0,,133787.0,,150772.0,,50628.0,,2049.0,,52677.0,,845334.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1776761.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1717434.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),59327.0,,,,,,,,,,,,,,,,,,, +WA,Washington,201711,Y,U,Y,19298.0,,135220.0,,154518.0,,50631.0,,2048.0,,52679.0,,845334.0,,1776761.0,,1717434.0,,59327.0,,,,,,,,,,,,,,,,,,, +WA,Washington,201712,Y,P,N,16451.0,,139956.0,,156407.0,,51793.0,,2430.0,,54223.0,,847720.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1789493.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1728123.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),61370.0,,,,,,,,,,,,,,,,,,, +WA,Washington,201712,Y,U,Y,17969.0,,141374.0,,159343.0,,51772.0,,2430.0,,54202.0,,847720.0,,1789493.0,,1728123.0,,61370.0,,,,,,,,,,,,,,,,,,, +WA,Washington,201801,Y,P,N,20162.0,,95379.0,,115541.0,,48415.0,,2089.0,,50504.0,,848009.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1786018.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1723311.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),62707.0,,,,,,,,,,,,,,,,,,, +WA,Washington,201801,Y,U,Y,22071.0,,96724.0,,118795.0,,48396.0,,2092.0,,50488.0,,848009.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1786018.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1723311.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),62707.0,,,,,,,,,,,,,,,,,,, +WA,Washington,201802,Y,P,N,16684.0,,67476.0,,84160.0,,35747.0,,1296.0,,37043.0,,846196.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1780671.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1717044.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),63627.0,,,,60622.0,,2736.0,,4713.0,,857.0,,1566.0,,,,,,, +WA,Washington,201802,Y,U,Y,18472.0,,68675.0,,87147.0,,35689.0,,1297.0,,36986.0,,846196.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1780671.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1717044.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),63627.0,,,,60622.0,,2736.0,,4713.0,,857.0,,1566.0,,,,,,, +WA,Washington,201803,Y,P,N,18683.0,,69877.0,,88560.0,,40514.0,,1507.0,,42021.0,,845210.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1778119.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1713153.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),64966.0,,,,61939.0,,3904.0,,4230.0,,920.0,,888.0,,,,,,, +WA,Washington,201803,Y,U,Y,20304.0,,70983.0,,91287.0,,40514.0,,1576.0,,42090.0,,845210.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1778119.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1713153.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),64966.0,,,,61939.0,,3904.0,,4230.0,,920.0,,888.0,,,,,,, +WA,Washington,201804,Y,P,N,17609.0,,66216.0,,83825.0,,37534.0,,1445.0,,38979.0,,840862.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1766278.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1704240.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),62038.0,,,,59067.0,,2746.0,,3396.0,,937.0,,902.0,,,,,,, +WA,Washington,201804,Y,U,Y,19062.0,,67234.0,,86296.0,,37317.0,,1439.0,,38756.0,,840862.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1766278.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1704240.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),62038.0,,,,59115.0,,2746.0,,3394.0,,936.0,,783.0,,,,,,, +WA,Washington,201805,Y,P,N,17732.0,,69470.0,,87202.0,,38742.0,,1565.0,,40307.0,,840806.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1765956.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1703222.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),62734.0,,,,,,,,,,,,,,,,,,, +WA,Washington,201805,Y,U,Y,19472.0,,70531.0,,90003.0,,38708.0,,1563.0,,40271.0,,840806.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1765956.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1703222.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),62734.0,,,,,,,,,,,,,,,,,,, +WA,Washington,201806,Y,P,N,17058.0,,64125.0,,81183.0,,17595.0,,1232.0,,18827.0,,838841.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1758911.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1695434.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),63477.0,,,,,,,,,,,,,,,,,,, +WA,Washington,201806,Y,U,Y,66976.0,,65416.0,,132392.0,,94681.0,,1598.0,,96279.0,,838841.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1758911.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1695434.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),63477.0,,,,,,,,,,,,,,,,,,, +WA,Washington,201807,Y,P,N,67219.0,,69828.0,,137047.0,,95564.0,,1599.0,,97163.0,,839123.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1758023.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1693291.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),64732.0,,,,,,,,,,,,,,,,,,, +WA,Washington,201807,Y,U,Y,68766.0,,70710.0,,139476.0,,95566.0,,1599.0,,97165.0,,839123.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1758023.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1693291.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),64732.0,,,,,,,,,,,,,,,,,,, +WA,Washington,201808,Y,P,N,71842.0,,74567.0,,146409.0,,107717.0,,2053.0,,109770.0,,838456.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1753275.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1687019.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),66256.0,,,,,,,,,,,,,,,,,,, +WA,Washington,201808,Y,U,Y,74726.0,,75822.0,,150548.0,,107716.0,,2047.0,,109763.0,,838456.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1753275.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1687019.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),66256.0,,,,,,,,,,,,,,,,,,, +WA,Washington,201809,Y,P,N,64642.0,,66017.0,,130659.0,,95467.0,,1739.0,,97206.0,,837236.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1746303.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1679235.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),67068.0,,,,,,,,,,,,,,,,,,, +WA,Washington,201809,Y,U,Y,66066.0,,66750.0,,132816.0,,95446.0,,1736.0,,97182.0,,837236.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1746303.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1679235.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),67068.0,,,,,,,,,,,,,,,,,,, +WA,Washington,201810,Y,P,N,76126.0,,72244.0,,148370.0,,108517.0,,2066.0,,110583.0,,837578.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1745542.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1677536.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),68006.0,,,,,,,,,,,,,,,,,,, +WA,Washington,201810,Y,U,Y,77367.0,,72898.0,,150265.0,,108510.0,,2061.0,,110571.0,,837578.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1745542.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1677536.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),68006.0,,,,,,,,,,,,,,,,,,, +WA,Washington,201811,Y,P,N,70063.0,,132193.0,,202256.0,,111972.0,,2728.0,,114700.0,,837804.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1749321.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1679117.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),70204.0,,,,,,,,,,,,,,,,,,, +WA,Washington,201811,Y,U,Y,72125.0,,133030.0,,205155.0,,111962.0,,2726.0,,114688.0,,837804.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1749321.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1679117.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),70204.0,,,,,,,,,,,,,,,,,,, +WA,Washington,201812,Y,P,N,63188.0,,129291.0,,192479.0,,106426.0,,2619.0,,109045.0,,836340.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1752230.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1680632.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),71598.0,,,,,,,,,,,,,,,,,,, +WA,Washington,201812,Y,U,Y,64687.0,,130197.0,,194884.0,,106364.0,,2611.0,,108975.0,,836340.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1752230.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1680632.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),71598.0,,,,,,,,,,,,,,,,,,, +WA,Washington,201901,Y,P,N,72242.0,,80022.0,,152264.0,,106631.0,,1969.0,,108600.0,,835698.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1745055.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1673442.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),71613.0,,,,,,,,,,,,,,,,,,, +WA,Washington,201901,Y,U,Y,73843.0,,80869.0,,154712.0,,106611.0,,1972.0,,108583.0,,835698.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1745055.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1673442.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),71613.0,,,,,,,,,,,,,,,,,,, +WA,Washington,201902,Y,P,N,54782.0,,63965.0,,118747.0,,78323.0,,1493.0,,79816.0,,832853.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1737215.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1665377.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),71838.0,,,,56031.0,,2749.0,,4300.0,,601.0,,1027.0,,,,,,, +WA,Washington,201902,Y,U,Y,56162.0,,64862.0,,121024.0,,78296.0,,1490.0,,79786.0,,832853.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1737215.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1665377.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),71838.0,,,,56028.0,,2749.0,,4300.0,,600.0,,1027.0,,,,,,, +WA,Washington,201903,Y,P,N,67643.0,,71646.0,,139289.0,,99462.0,,1681.0,,101143.0,,832173.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1731946.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1659357.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),72589.0,,,,62458.0,,3235.0,,4777.0,,698.0,,957.0,,,,,,, +WA,Washington,201903,Y,U,Y,68386.0,,72120.0,,140506.0,,99497.0,,1686.0,,101183.0,,832173.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1731946.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1659357.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),72589.0,,,,62458.0,,3235.0,,4777.0,,698.0,,957.0,,,,,,, +WA,Washington,201904,Y,P,N,70268.0,,70646.0,,140914.0,,102326.0,,1712.0,,104038.0,,830545.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1727598.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1660788.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),66810.0,,,,61784.0,,3138.0,,5154.0,,972.0,,1040.0,,,,,,, +WA,Washington,201904,Y,U,Y,71569.0,,71452.0,,143021.0,,102344.0,,1714.0,,104058.0,,830545.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1727598.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1660788.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),66810.0,,,,61782.0,,3138.0,,5153.0,,972.0,,1039.0,,,,,,, +WA,Washington,201905,Y,P,N,67752.0,,69095.0,,136847.0,,98933.0,,1696.0,,100629.0,,829042.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1723449.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1655961.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),67488.0,,,,,,,,,,,,,,,,,,, +WA,Washington,201905,Y,U,Y,68679.0,,69696.0,,138375.0,,98868.0,,1698.0,,100566.0,,829042.0,,1723449.0,,1655961.0,,67488.0,,,,,,,,,,,,,,,,,,, +WA,Washington,201906,Y,P,N,63380.0,,64484.0,,127864.0,,91460.0,,1488.0,,92948.0,,828693.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1721540.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1653648.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),67892.0,,,,,,,,,,,,,,,,,,, +WA,Washington,201906,Y,U,Y,64109.0,,64954.0,,129063.0,,91465.0,,1484.0,,92949.0,,828693.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1721540.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1653648.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),67892.0,,,,,,,,,,,,,,,,,,, +WA,Washington,201907,Y,P,N,69136.0,,66809.0,,135945.0,,100128.0,,1656.0,,101784.0,,829067.0,,1722799.0,,1654158.0,,68641.0,,,,,,,,,,,,,,,,,,, +WA,Washington,201907,Y,U,Y,69136.0,,66809.0,,135945.0,,100138.0,,1656.0,,101794.0,,829067.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1722799.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1654158.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),68641.0,,,,,,,,,,,,,,,,,,, +WA,Washington,201908,Y,P,N,68541.0,,68741.0,,137282.0,,100045.0,,1857.0,,101902.0,,829201.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1722416.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1652681.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),69735.0,,,,,,,,,,,,,,,,,,, +WA,Washington,201908,Y,U,Y,69359.0,,69420.0,,138779.0,,100094.0,,1850.0,,101944.0,,829201.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1722416.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1652681.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),69735.0,,,,,,,,,,,,,,,,,,, +WA,Washington,201909,Y,P,N,67336.0,,67969.0,,135305.0,,98026.0,,1832.0,,99858.0,,828447.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1720383.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1650040.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),70343.0,,,,,,,,,,,,,,,,,,, +WA,Washington,201909,Y,U,Y,68421.0,,68787.0,,137208.0,,98060.0,,1832.0,,99892.0,,828447.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1720383.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1650040.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),70343.0,,,,,,,,,,,,,,,,,,, +WA,Washington,201910,Y,P,N,72642.0,,71065.0,,143707.0,,107062.0,,1941.0,,109003.0,,828806.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1720588.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1649287.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),71301.0,,,,,,,,,,,,,,,,,,, +WA,Washington,201910,Y,U,Y,73739.0,,71748.0,,145487.0,,107096.0,,1938.0,,109034.0,,828806.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1720588.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1649287.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),71301.0,,,,,,,,,,,,,,,,,,, +WA,Washington,201911,Y,P,N,65577.0,,113845.0,,179422.0,,103686.0,,2282.0,,105968.0,,828492.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1722072.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1649523.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),72549.0,,,,,,,,,,,,,,,,,,, +WA,Washington,201911,Y,U,Y,67142.0,,114485.0,,181627.0,,103626.0,,2284.0,,105910.0,,828492.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1722072.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1649523.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),72549.0,,,,,,,,,,,,,,,,,,, +WA,Washington,201912,Y,P,N,68308.0,,121088.0,,189396.0,,107998.0,,2633.0,,110631.0,,828975.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1728648.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1654764.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),73884.0,,,,,,,,,,,,,,,,,,, +WA,Washington,201912,Y,U,Y,69741.0,,121852.0,,191593.0,,107961.0,,2637.0,,110598.0,,828975.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1728648.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1654764.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),73884.0,,,,,,,,,,,,,,,,,,, +WA,Washington,202001,Y,P,N,73631.0,,75567.0,,149198.0,,105004.0,,1822.0,,106826.0,,828508.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1727441.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1653506.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),73935.0,,,,,,,,,,,,,,,,,,, +WA,Washington,202001,Y,U,Y,75368.0,,76242.0,,151610.0,,105043.0,,1824.0,,106867.0,,828508.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1727441.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1653506.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),73935.0,,,,,,,,,,,,,,,,,,, +WA,Washington,202002,Y,P,N,61678.0,,64436.0,,126114.0,,87830.0,,1559.0,,89389.0,,826585.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1723451.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1649558.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),73893.0,,,,54762.0,,3815.0,,4610.0,,887.0,,1072.0,,,,,,, +WA,Washington,202002,Y,U,Y,62909.0,,65048.0,,127957.0,,87813.0,,1553.0,,89366.0,,826585.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1723451.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1649558.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),73893.0,,,,54762.0,,3815.0,,4610.0,,887.0,,1072.0,,,,,,, +WA,Washington,202003,Y,P,N,94116.0,,83807.0,,177923.0,,114564.0,,1609.0,,116173.0,,827084.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1732597.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1658019.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),74578.0,,,,73022.0,,4870.0,,5572.0,,901.0,,1030.0,,,,,,, +WA,Washington,202003,Y,U,Y,95664.0,,84537.0,,180201.0,,114493.0,,1613.0,,116106.0,,827084.0,,1732597.0,,1658019.0,,74578.0,,,,73022.0,,4870.0,,5572.0,,901.0,,1030.0,,,,,,, +WA,Washington,202004,Y,P,N,126054.0,,75594.0,,201648.0,,177577.0,,1165.0,,178742.0,,827620.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1749575.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1678374.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),71201.0,,,,63419.0,,4894.0,,5438.0,,935.0,,699.0,,,,,,, +WA,Washington,202004,Y,U,Y,127059.0,,76231.0,,203290.0,,177771.0,,1167.0,,178938.0,,827620.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1749575.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1678374.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),71201.0,,,,63419.0,,4894.0,,5438.0,,935.0,,699.0,,,,,,, +WA,Washington,202005,Y,P,N,81331.0,,55535.0,,136866.0,,87410.0,,994.0,,88404.0,,831135.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1767896.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1698035.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),69861.0,,,,,,,,,,,,,,,,,,, +WA,Washington,202005,Y,U,Y,82524.0,,56197.0,,138721.0,,87498.0,,996.0,,88494.0,,831135.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1767896.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1698035.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),69861.0,,,,,,,,,,,,,,,,,,, +WA,Washington,202006,Y,P,N,91670.0,,60349.0,,152019.0,,81361.0,,967.0,,82328.0,,836002.0,,1790395.0,,1720781.0,,69614.0,,,,,,,,,,,,,,,,,,, +WA,Washington,202006,Y,U,Y,93409.0,,61022.0,,154431.0,,81379.0,,964.0,,82343.0,,836002.0,,1790395.0,,1720781.0,,69614.0,,,,,,,,,,,,,,,,,,, +WA,Washington,202007,Y,P,N,72503.0,,55595.0,,128098.0,,74434.0,,844.0,,75278.0,,840877.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1811777.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1742173.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),69604.0,,,,,,,,,,,,,,,,,,, +WA,Washington,202007,Y,U,Y,73958.0,,56239.0,,130197.0,,34145.0,,845.0,,34990.0,,840877.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1811777.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1742173.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),69604.0,,,,,,,,,,,,,,,,,,, +WA,Washington,202008,Y,P,N,77888.0,,58705.0,,136593.0,,35902.0,,954.0,,36856.0,,845678.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1834211.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1764161.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),70050.0,,,,,,,,,,,,,,,,,,, +WA,Washington,202008,Y,U,Y,80217.0,,59755.0,,139972.0,,35902.0,,955.0,,36857.0,,845678.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1834211.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1764161.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),70050.0,,,,,,,,,,,,,,,,,,, +WA,Washington,202009,Y,P,N,76611.0,,55638.0,,132249.0,,35407.0,,795.0,,36202.0,,848558.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1849899.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1779628.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),70271.0,,,,,,,,,,,,,,,,,,, +WA,Washington,202009,Y,U,Y,76611.0,,55638.0,,132249.0,,35407.0,,795.0,,36202.0,,848558.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1849899.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1779628.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),70271.0,,,,,,,,,,,,,,,,,,, +WA,Washington,202010,Y,P,N,75745.0,,54318.0,,130063.0,,33992.0,,972.0,,34964.0,,850262.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1863895.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1793449.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),70446.0,,,,,,,,,,,,,,,,,,, +WA,Washington,202010,Y,U,Y,76323.0,,54682.0,,131005.0,,34009.0,,968.0,,34977.0,,852289.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1867149.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1796593.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),70556.0,,,,,,,,,,,,,,,,,,, +WA,Washington,202011,Y,P,N,83845.0,,86916.0,,170761.0,,34999.0,,1093.0,,36092.0,,852795.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1881545.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1810417.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),71128.0,,,,,,,,,,,,,,,,,,, +WA,Washington,202011,Y,U,Y,85575.0,,87468.0,,173043.0,,35008.0,,1094.0,,36102.0,,855313.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1885921.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1814591.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),71330.0,,,,,,,,,,,,,,,,,,, +WA,Washington,202012,Y,P,N,80568.0,,93622.0,,174190.0,,40106.0,,1414.0,,41520.0,,857053.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1904252.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1831533.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),72719.0,,,,,,,,,,,,,,,,,,, +WA,Washington,202012,Y,U,Y,81479.0,,94238.0,,175717.0,,40133.0,,1408.0,,41541.0,,859373.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1908464.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1835592.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),72872.0,,,,,,,,,,,,,,,,,,, +WA,Washington,202101,Y,P,N,58280.0,,58552.0,,116832.0,,31563.0,,835.0,,32398.0,,859649.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1917987.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1844793.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),73194.0,,,,,,,,,,,,,,,,,,, +WA,Washington,202101,Y,U,Y,59554.0,,59108.0,,118662.0,,31572.0,,834.0,,32406.0,,861831.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1921268.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1847935.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),73333.0,,,,,,,,,,,,,,,,,,, +WA,Washington,202102,Y,P,N,59134.0,,49242.0,,108376.0,,26699.0,,718.0,,27417.0,,861509.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1928148.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1854487.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),73661.0,,,,41905.0,,3980.0,,2804.0,,736.0,,935.0,,,,,,, +WA,Washington,202102,Y,U,Y,60354.0,,49798.0,,110152.0,,26702.0,,712.0,,27414.0,,863702.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1931413.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1857637.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),73776.0,,,,41905.0,,3980.0,,2804.0,,736.0,,935.0,,,,,,, +WA,Washington,202103,Y,P,N,67300.0,,55946.0,,123246.0,,31564.0,,803.0,,32367.0,,863582.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1940991.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1866496.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),74495.0,,,,49525.0,,3014.0,,2875.0,,597.0,,985.0,,,,,,, +WA,Washington,202103,Y,U,Y,68444.0,,56689.0,,125133.0,,31563.0,,802.0,,32365.0,,865834.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1944783.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1870140.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),74643.0,,,,49525.0,,3014.0,,2875.0,,597.0,,985.0,,,,,,, +WA,Washington,202104,Y,P,N,70955.0,,56485.0,,127440.0,,29022.0,,723.0,,29745.0,,865561.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1953388.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1880521.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),72867.0,,,,49800.0,,3407.0,,2571.0,,672.0,,1148.0,,,,,,, +WA,Washington,202104,Y,U,Y,71462.0,,56838.0,,128300.0,,29043.0,,722.0,,29765.0,,867721.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1956739.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1883727.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),73012.0,,,,49800.0,,3407.0,,2571.0,,672.0,,1148.0,,,,,,, +WA,Washington,202105,Y,P,N,87206.0,,75749.0,,162955.0,,26482.0,,826.0,,27308.0,,867721.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1965401.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1891805.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),73596.0,,,,,,,,,,,,,,,,,,, +WA,Washington,202105,Y,U,Y,88333.0,,76351.0,,164684.0,,26485.0,,824.0,,27309.0,,870057.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1968676.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1894837.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),73839.0,,,,,,,,,,,,,,,,,,, +WA,Washington,202106,Y,P,N,93894.0,,50108.0,,144002.0,,27616.0,,725.0,,28341.0,,868719.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1972991.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1898595.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),74396.0,,,,,,,,,,,,,,,,,,, +WA,Washington,202106,Y,U,Y,95232.0,,50762.0,,145994.0,,27634.0,,725.0,,28359.0,,873362.0,,1978758.0,,1901693.0,,77065.0,,,,,,,,,,,,,,,,,,, +WA,Washington,202107,Y,P,N,56697.0,,51595.0,,108292.0,,29334.0,,742.0,,30076.0,,874094.0,,1989544.0,,1911749.0,,77795.0,,,,,,,,,,,,,,,,,,, +WA,Washington,202107,Y,U,Y,57674.0,,52210.0,,109884.0,,29340.0,,742.0,,30082.0,,876844.0,,1993221.0,,1914822.0,,78399.0,,,,,,,,,,,,,,,,,,, +WA,Washington,202108,Y,P,N,58773.0,,55675.0,,114448.0,,30614.0,,818.0,,31432.0,,878459.0,,2006204.0,,1927038.0,,79166.0,,,,,,,,,,,,,,,,,,, +WA,Washington,202108,Y,U,Y,59867.0,,56374.0,,116241.0,,30629.0,,820.0,,31449.0,,880758.0,,2009438.0,,1930172.0,,79266.0,,,,,,,,,,,,,,,,,,, +WA,Washington,202109,Y,P,N,68795.0,,50060.0,,118855.0,,30427.0,,703.0,,31130.0,,881293.0,,2018974.0,,1939439.0,,79535.0,,,,,,,,,,,,,,,,,,, +WA,Washington,202109,Y,U,Y,70420.0,,50637.0,,121057.0,,30438.0,,704.0,,31142.0,,883384.0,,2021408.0,,1941783.0,,79625.0,,,,,,,,,,,,,,,,,,, +WA,Washington,202110,Y,P,N,69801.0,,46398.0,,116199.0,,28523.0,,692.0,,29215.0,,882191.0,,2028029.0,,1948054.0,,79975.0,,,,,,,,,,,,,,,,,,, +WA,Washington,202110,Y,U,Y,70919.0,,46951.0,,117870.0,,28526.0,,693.0,,29219.0,,884596.0,,2031925.0,,1951849.0,,80076.0,,,,,,,,,,,,,,,,,,, +WA,Washington,202111,Y,P,N,77188.0,,75500.0,,152688.0,,32048.0,,973.0,,33021.0,,885511.0,,2043968.0,,1963016.0,,80952.0,,,,,,,,,,,,,,,,,,, +WA,Washington,202111,Y,U,Y,78692.0,,76085.0,,154777.0,,32069.0,,974.0,,33043.0,,888393.0,,2047288.0,,1965530.0,,81758.0,,,,,,,,,,,,,,,,,,, +WA,Washington,202112,Y,P,N,78838.0,,79581.0,,158419.0,,32072.0,,1065.0,,33137.0,,886324.0,,2051935.0,,1969036.0,,82899.0,,,,,,,,,,,,,,,,,,, +WA,Washington,202112,Y,U,Y,79818.0,,80051.0,,159869.0,,32102.0,,1066.0,,33168.0,,888744.0,,2055411.0,,1972372.0,,83039.0,,,,,,,,,,,,,,,,,,, +WA,Washington,202201,Y,P,N,72707.0,,58815.0,,131522.0,,31160.0,,741.0,,31901.0,,889124.0,,2063978.0,,1980338.0,,83640.0,,,,52330.0,,3217.0,,2312.0,,1125.0,,1123.0,,,,,,, +WA,Washington,202201,Y,U,Y,74493.0,,59559.0,,134052.0,,31170.0,,741.0,,31911.0,,891274.0,,2067073.0,,1983344.0,,83729.0,,,,52329.0,,3217.0,,2310.0,,1123.0,,1121.0,,,,,,, +WA,Washington,202202,Y,P,N,64219.0,,43220.0,,107439.0,,25350.0,,536.0,,25886.0,,890984.0,,2072103.0,,1988099.0,,84004.0,,,,38411.0,,2768.0,,2031.0,,853.0,,976.0,,,,,,, +WA,Washington,202202,Y,U,Y,66235.0,,44050.0,,110285.0,,25355.0,,531.0,,25886.0,,893303.0,,2075361.0,,1991229.0,,84132.0,,,,38411.0,,2768.0,,2031.0,,853.0,,976.0,,,,,,, +WA,Washington,202203,Y,P,N,76697.0,,47041.0,,123738.0,,29610.0,,646.0,,30256.0,,892114.0,,2079117.0,,1994410.0,,84707.0,,,,41151.0,,2932.0,,2173.0,,1038.0,,1058.0,,,,,,, +WA,Washington,202203,Y,U,Y,78111.0,,47601.0,,125712.0,,29638.0,,646.0,,30284.0,,893953.0,,2081905.0,,1997126.0,,84779.0,,,,41151.0,,2932.0,,2170.0,,1037.0,,1058.0,,,,,,, +WA,Washington,202204,Y,P,N,67265.0,,47912.0,,115177.0,,28955.0,,655.0,,29610.0,,893969.0,,2090227.0,,2014451.0,,75776.0,,,,40820.0,,4106.0,,2095.0,,778.0,,835.0,,,,,,, +WA,Washington,202204,Y,U,Y,68604.0,,48474.0,,117078.0,,28964.0,,654.0,,29618.0,,896189.0,,2093273.0,,2017424.0,,75849.0,,,,40820.0,,4106.0,,2091.0,,778.0,,835.0,,,,,,, +WA,Washington,202205,Y,P,N,64388.0,,44370.0,,108758.0,,29230.0,,604.0,,29834.0,,895915.0,,2099041.0,,2022549.0,,76492.0,,,,38175.0,,3779.0,,2370.0,,680.0,,859.0,,,,,,, +WA,Washington,202205,Y,U,Y,66229.0,,45152.0,,111381.0,,29228.0,,605.0,,29833.0,,898015.0,,2102043.0,,2025454.0,,76589.0,,,,38175.0,,3779.0,,2370.0,,680.0,,859.0,,,,,,, +WA,Washington,202206,Y,P,N,66349.0,,44869.0,,111218.0,,28234.0,,615.0,,28849.0,,897806.0,,2108554.0,,2031211.0,,77343.0,,,,38599.0,,3598.0,,2030.0,,756.0,,814.0,,,,,,, +WA,Washington,202206,Y,U,Y,68412.0,,45489.0,,113901.0,,28226.0,,612.0,,28838.0,,899750.0,,2111135.0,,2033707.0,,77428.0,,,,38599.0,,3598.0,,2030.0,,756.0,,814.0,,,,,,, +WA,Washington,202207,Y,P,N,61680.0,,42828.0,,104508.0,,26119.0,,544.0,,26663.0,,899085.0,,2117317.0,,2039657.0,,77660.0,,,,37007.0,,3067.0,,2021.0,,737.0,,848.0,,,,,,, +WA,Washington,202207,Y,U,Y,64237.0,,43442.0,,107679.0,,26136.0,,542.0,,26678.0,,901342.0,,2120740.0,,2043010.0,,77730.0,,,,36987.0,,3062.0,,2018.0,,737.0,,848.0,,,,,,, +WA,Washington,202208,Y,P,N,70729.0,,50002.0,,120731.0,,32102.0,,670.0,,32772.0,,902176.0,,2130255.0,,2052397.0,,77858.0,,,,43948.0,,3575.0,,2612.0,,623.0,,932.0,,,,,,, +WA,Washington,202208,Y,U,Y,74552.0,,51072.0,,125624.0,,32123.0,,670.0,,32793.0,,904229.0,,2133275.0,,2055342.0,,77933.0,,,,43942.0,,3565.0,,2611.0,,623.0,,932.0,,,,,,, +WA,Washington,202209,Y,P,N,68728.0,,47539.0,,116267.0,,30960.0,,662.0,,31622.0,,901546.0,,2133705.0,,2056449.0,,77256.0,,,,41039.0,,3719.0,,2532.0,,521.0,,817.0,,,,,,, +WA,Washington,202209,Y,U,Y,71762.0,,48104.0,,119866.0,,30994.0,,661.0,,31655.0,,903873.0,,2136869.0,,2059500.0,,77369.0,,,,41039.0,,3719.0,,2532.0,,521.0,,816.0,,,,,,, +WA,Washington,202210,Y,P,N,70390.0,,42152.0,,112542.0,,26997.0,,544.0,,27541.0,,902759.0,,2141558.0,,2064518.0,,77040.0,,,,35565.0,,4009.0,,2090.0,,483.0,,864.0,,,,,,, +WA,Washington,202210,Y,U,Y,73491.0,,42833.0,,116324.0,,27009.0,,545.0,,27554.0,,905052.0,,2145126.0,,2068018.0,,77108.0,,,,35565.0,,4009.0,,2090.0,,482.0,,864.0,,,,,,, +WA,Washington,202211,Y,P,N,71658.0,,80386.0,,152044.0,,32779.0,,977.0,,33756.0,,905322.0,,2153693.0,,2076212.0,,77481.0,,,,72217.0,,5318.0,,2052.0,,615.0,,1134.0,,,,,,, +WA,Washington,202211,Y,U,Y,76679.0,,81293.0,,157972.0,,32801.0,,975.0,,33776.0,,907465.0,,2156656.0,,2079075.0,,77581.0,,,,77203.0,,5318.0,,2052.0,,615.0,,1131.0,,,,,,, +WA,Washington,202212,Y,P,N,70482.0,,82593.0,,153075.0,,33640.0,,1008.0,,34648.0,,906789.0,,2164281.0,,2085706.0,,78575.0,,,,73737.0,,5753.0,,1966.0,,929.0,,1068.0,,,,,,, +WA,Washington,202212,Y,U,Y,73113.0,,83266.0,,156379.0,,33694.0,,1016.0,,34710.0,,909110.0,,2168482.0,,2089806.0,,78676.0,,,,73737.0,,5753.0,,1963.0,,929.0,,1067.0,,,,,,, +WA,Washington,202301,Y,P,N,78162.0,,62037.0,,140199.0,,31850.0,,755.0,,32605.0,,907569.0,,2170687.0,,2091269.0,,79418.0,,,,54257.0,,4757.0,,1813.0,,882.0,,1509.0,,,,,,, +WA,Washington,202301,Y,U,Y,82321.0,,62773.0,,145094.0,,31834.0,,759.0,,32593.0,,909641.0,,2175302.0,,2095795.0,,79507.0,,,,54255.0,,4757.0,,1813.0,,880.0,,1509.0,,,,,,, +WA,Washington,202302,Y,P,N,66004.0,,46801.0,,112805.0,,28585.0,,536.0,,29121.0,,908218.0,,2177636.0,,2098103.0,,79533.0,,,,41230.0,,3165.0,,1747.0,,846.0,,1507.0,,,,,,, +WA,Washington,202302,Y,U,Y,69103.0,,47620.0,,116723.0,,28598.0,,528.0,,29126.0,,910611.0,,2181631.0,,2102022.0,,79609.0,,,,41228.0,,3165.0,,1747.0,,843.0,,1507.0,,,,,,, +WA,Washington,202303,Y,P,N,76796.0,,53764.0,,130560.0,,33117.0,,614.0,,33731.0,,910568.0,,2189215.0,,2109188.0,,80027.0,,,,46827.0,,4137.0,,2632.0,,702.0,,1407.0,,55729.0,Does not include all calls received by call centers; Does not include all calls received after business hours,7.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.038,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +WA,Washington,202303,Y,U,Y,78192.0,,54401.0,,132593.0,,33136.0,,611.0,,33747.0,,912603.0,,2192395.0,,2112292.0,,80103.0,,,,46826.0,,4137.0,,2631.0,,702.0,,1407.0,,55729.0,Does not include all calls received by call centers; Does not include all calls received after business hours,2.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.038,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +WA,Washington,202304,Y,P,N,65336.0,,45223.0,,110559.0,,25740.0,,480.0,,26220.0,,909755.0,,2194383.0,,2129214.0,,65169.0,,,,38883.0,,3061.0,,1904.0,,653.0,,701.0,,39302.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.04,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +WA,Washington,202304,Y,U,Y,66579.0,,45895.0,,112474.0,,25744.0,,480.0,,26224.0,,911748.0,,2197036.0,,2131825.0,,65211.0,,,,38882.0,,3061.0,,1904.0,,653.0,,701.0,,39302.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.04,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +WA,Washington,202305,Y,P,N,74739.0,,50702.0,,125441.0,,29097.0,,504.0,,29601.0,,910874.0,,2194605.0,,2129200.0,,65405.0,,,,44037.0,,4152.0,,2037.0,,732.0,,993.0,,45998.0,Does not include all calls received by call centers; Does not include all calls received after business hours,0.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.04,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +WA,Washington,202305,Y,U,Y,75919.0,,51394.0,,127313.0,,29112.0,,506.0,,29618.0,,912828.0,,2197395.0,,2131955.0,,65440.0,,,,44037.0,,4152.0,,2037.0,,732.0,,993.0,,45998.0,Does not include all calls received by call centers; Does not include all calls received after business hours,0.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.04,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +WA,Washington,202306,Y,P,N,76360.0,,54917.0,,131277.0,,32415.0,,732.0,,33147.0,,894074.0,,2111807.0,,2048230.0,,63577.0,,,,46722.0,,3663.0,,2163.0,,795.0,,1276.0,,48229.0,Does not include all calls received by call centers; Does not include all calls received after business hours,3.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.056,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +WA,Washington,202306,Y,U,Y,76360.0,,54917.0,,131277.0,,32418.0,,733.0,,33151.0,,899612.0,,2120379.0,,2056457.0,,63922.0,,,,46722.0,,3663.0,,2163.0,,795.0,,1276.0,,48229.0,Does not include all calls received by call centers; Does not include all calls received after business hours,3.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.056,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +WA,Washington,202307,Y,P,N,74061.0,,63981.0,,138042.0,,34451.0,,762.0,,35213.0,,884107.0,,2038345.0,,1975293.0,,63052.0,,,,54530.0,,3795.0,,2220.0,,1013.0,,1583.0,,48096.0,Does not include all calls received by call centers; Does not include all calls received after business hours,0.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.06,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +WA,Washington,202307,Y,U,Y,74061.0,,63981.0,,138042.0,,34461.0,,760.0,,35221.0,,890269.0,,2048891.0,,1985487.0,,63404.0,,,,54530.0,,3795.0,,2220.0,,1013.0,,1583.0,,48096.0,Does not include all calls received by call centers; Does not include all calls received after business hours,0.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.06,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +WA,Washington,202308,Y,P,N,81951.0,,71660.0,,153611.0,,40492.0,,1020.0,,41512.0,,877422.0,,1973916.0,,1912579.0,,61337.0,,,,57708.0,,8307.0,,2632.0,,1153.0,,1932.0,,56994.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.06,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +WA,Washington,202308,Y,U,Y,81951.0,,71660.0,,153611.0,,40507.0,,1021.0,,41528.0,,881079.0,,1981947.0,,1920191.0,,61756.0,,,,57708.0,,8307.0,,2632.0,,1153.0,,1932.0,,56994.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.06,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +WA,Washington,202309,Y,P,N,77115.0,,67745.0,,144860.0,,38586.0,,1050.0,,39636.0,,874469.0,,1959556.0,,1900867.0,,58689.0,,,,58827.0,,4005.0,,2363.0,,810.0,,2347.0,,51112.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.055,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +WA,Washington,202309,Y,U,Y,77115.0,,67745.0,,144860.0,,38590.0,,1051.0,,39641.0,,877388.0,,1965131.0,,1906199.0,,58932.0,,,,58827.0,,4005.0,,2363.0,,810.0,,2347.0,,51112.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.055,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +WA,Washington,202310,Y,P,N,84233.0,,69015.0,,153248.0,,39058.0,,1061.0,,40119.0,,867222.0,,1945030.0,,1893168.0,,51862.0,,,,59209.0,,4694.0,,2414.0,,749.0,,2594.0,,54527.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.058,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +WA,Washington,202310,Y,U,Y,84233.0,,69015.0,,153248.0,,39058.0,,1058.0,,40116.0,,870345.0,,1950163.0,,1897577.0,,52586.0,,,,59209.0,,4694.0,,2414.0,,749.0,,2594.0,,54527.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.058,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +WA,Washington,202311,Y,P,N,80888.0,,120523.0,,201411.0,,42784.0,,1619.0,,44403.0,,866508.0,,1937980.0,,1885271.0,,52709.0,,,,107065.0,,6708.0,,2868.0,,865.0,,1878.0,,55019.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.11,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +WA,Washington,202311,Y,U,Y,80888.0,,120523.0,,201411.0,,42797.0,,1618.0,,44415.0,,869401.0,,1943274.0,,1889917.0,,53357.0,,,,107065.0,,6708.0,,2868.0,,865.0,,1878.0,,55019.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.11,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +WA,Washington,202312,Y,P,N,75421.0,,120457.0,,195878.0,,44026.0,,1767.0,,45793.0,,862454.0,,1922648.0,,1869698.0,,52950.0,,,,106838.0,,7301.0,,2870.0,,646.0,,2423.0,,53452.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.11,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +WA,Washington,202312,Y,U,Y,75421.0,,120457.0,,195878.0,,44057.0,,1769.0,,45826.0,,865799.0,,1928423.0,,1874866.0,,53557.0,,,,106838.0,,7301.0,,2870.0,,646.0,,2423.0,,53452.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.11,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +WA,Washington,202401,Y,P,N,89916.0,,102980.0,,192896.0,,46623.0,,1755.0,,48378.0,,859515.0,,1906460.0,,1852947.0,,53513.0,,,,88822.0,,6402.0,,3419.0,,908.0,,2444.0,,68546.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.142,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +WA,Washington,202401,Y,U,Y,89916.0,,102980.0,,192896.0,,46652.0,,1751.0,,48403.0,,862674.0,,1912013.0,,1857870.0,,54143.0,,,,88822.0,,6402.0,,3419.0,,908.0,,2444.0,,68546.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.142,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +WA,Washington,202402,Y,P,N,78843.0,,77407.0,,156250.0,,40839.0,,1432.0,,42271.0,,856632.0,,1886568.0,,1832972.0,,53596.0,,,,66152.0,,4727.0,,2962.0,,1083.0,,2867.0,,62800.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.13,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +WA,Washington,202402,Y,U,Y,78843.0,,77407.0,,156250.0,,40848.0,,1431.0,,42279.0,,859923.0,,1892693.0,,1838369.0,,54324.0,,,,66152.0,,4727.0,,2962.0,,1083.0,,2867.0,,62800.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.13,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +WA,Washington,202403,Y,P,N,80572.0,,82917.0,,163489.0,,43320.0,,1645.0,,44965.0,,854155.0,,1869420.0,,1815037.0,,54383.0,,,,70128.0,,5644.0,,2989.0,,1222.0,,3487.0,,61926.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.124,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +WA,Washington,202403,Y,U,Y,80572.0,,82917.0,,163489.0,,43340.0,,1646.0,,44986.0,,857043.0,,1874182.0,,1819294.0,,54888.0,,,,70128.0,,5644.0,,2989.0,,1222.0,,3487.0,,61926.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.124,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +WA,Washington,202404,Y,P,N,83770.0,,82630.0,,166400.0,,43710.0,,1590.0,,45300.0,,849613.0,,1852472.0,,1803230.0,,49242.0,,,,70462.0,,5210.0,,3037.0,,1161.0,,2492.0,,63321.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.125,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +WA,Washington,202404,Y,U,Y,83770.0,,82630.0,,166400.0,,43736.0,,1588.0,,45324.0,,852723.0,,1872181.0,,1822397.0,,49784.0,,,,70462.0,,5210.0,,3037.0,,1161.0,,2492.0,,63321.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.125,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +WA,Washington,202405,Y,P,N,81768.0,,82021.0,,163789.0,,43280.0,,1972.0,,45252.0,,842707.0,,1851703.0,,1801775.0,,49928.0,,,,68926.0,,5257.0,,3211.0,,1426.0,,3153.0,,60014.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.11,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +WA,Washington,202405,Y,U,Y,81768.0,,82021.0,,163789.0,,43309.0,,1976.0,,45285.0,,846170.0,,1858058.0,,1807508.0,,50550.0,,,,68926.0,,5257.0,,3211.0,,1426.0,,3153.0,,60014.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.11,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +WA,Washington,202406,Y,P,N,75634.0,,101354.0,,176988.0,,50671.0,,2022.0,,52693.0,,836610.0,,1838636.0,,1788058.0,,50578.0,,,,85699.0,,6472.0,,3246.0,,1017.0,,2329.0,,52914.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.11,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +WA,Washington,202406,Y,U,Y,75634.0,,101354.0,,176988.0,,50685.0,,2015.0,,52700.0,,840263.0,,1845081.0,,1793822.0,,51259.0,,,,85699.0,,6472.0,,3246.0,,1017.0,,2329.0,,52914.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.11,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +WA,Washington,202407,Y,P,N,84307.0,,81133.0,,165440.0,,43658.0,,1949.0,,45607.0,,836650.0,,1836318.0,,1783657.0,,52661.0,,999668.0,,68273.0,,5613.0,,3748.0,,1120.0,,4464.0,,54988.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.11,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +WA,Washington,202407,Y,U,Y,84307.0,,81133.0,,165440.0,,43671.0,,1953.0,,45624.0,,840968.0,,1844244.0,,1790895.0,,53349.0,,1003276.0,,68273.0,,5613.0,,3748.0,,1120.0,,4464.0,,54988.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.11,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +WA,Washington,202408,Y,P,N,83188.0,,84602.0,,167790.0,,44433.0,,1984.0,,46417.0,,837525.0,,1833351.0,,1778863.0,,54488.0,,995826.0,,70236.0,,6177.0,,3588.0,,1399.0,,3499.0,,56256.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.08,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +WA,Washington,202408,Y,U,Y,83188.0,,84602.0,,167790.0,,44445.0,,1987.0,,46432.0,,841021.0,,1839143.0,,1784074.0,,55069.0,,998122.0,,70236.0,,6177.0,,3588.0,,1399.0,,3499.0,,56256.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.08,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +WA,Washington,202409,Y,P,N,81190.0,,83192.0,,164382.0,,43567.0,,1814.0,,45381.0,,837322.0,,1830147.0,,1774034.0,,56113.0,,992825.0,,69212.0,,5689.0,,3492.0,,1272.0,,2767.0,,55880.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.11,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +WA,Washington,202409,Y,U,Y,81190.0,,83192.0,,164382.0,,43578.0,,1813.0,,45391.0,,841011.0,,1837072.0,,1780512.0,,56560.0,,996061.0,,69212.0,,5689.0,,3492.0,,1272.0,,2767.0,,55880.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.11,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +WA,Washington,202410,Y,P,N,89109.0,,101941.0,,191050.0,,49250.0,,1895.0,,51145.0,,840117.0,,1837170.0,,1779850.0,,57320.0,,997053.0,,87121.0,,6633.0,,3770.0,,1281.0,,3519.0,,58408.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.1,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +WA,Washington,202410,Y,U,Y,89109.0,,101941.0,,191050.0,,49255.0,,1889.0,,51144.0,,843038.0,,1842404.0,,1784761.0,,57643.0,,999366.0,,87121.0,,6633.0,,3770.0,,1281.0,,3519.0,,58408.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.1,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +WA,Washington,202411,Y,P,N,79370.0,,122448.0,,201818.0,,44263.0,,2110.0,,46373.0,,839636.0,,1835448.0,,1776840.0,,58608.0,,995812.0,,105728.0,,6718.0,,3198.0,,969.0,,2836.0,,53584.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.12,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +WA,Washington,202411,Y,U,Y,79370.0,,122448.0,,201818.0,,44294.0,,2113.0,,46407.0,,842991.0,,1841669.0,,1782577.0,,59092.0,,998678.0,,105728.0,,6718.0,,3198.0,,969.0,,2836.0,,53584.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.12,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +WA,Washington,202412,Y,P,N,82114.0,,129942.0,,212056.0,,45632.0,,2571.0,,48203.0,,839467.0,,1836008.0,,1776116.0,,59892.0,,996541.0,,112648.0,,8814.0,,3606.0,,1355.0,,3291.0,,66340.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.132,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +WA,Washington,202412,Y,U,Y,82114.0,,129942.0,,212056.0,,45683.0,,2584.0,,48267.0,,842999.0,,1842227.0,,1781871.0,,60356.0,,999228.0,,112648.0,,8814.0,,3606.0,,1355.0,,3291.0,,66340.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.132,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +WA,Washington,202501,Y,P,N,88835.0,,117565.0,,206400.0,,49972.0,,2175.0,,52147.0,,837979.0,,1833207.0,,1772288.0,,60919.0,,995228.0,,101655.0,,6818.0,,3821.0,,1581.0,,3753.0,,76009.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.184,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +WA,Washington,202501,Y,U,Y,88835.0,,117565.0,,206400.0,,49957.0,,2174.0,,52131.0,,841706.0,,1840117.0,,1778763.0,,61354.0,,998411.0,,101655.0,,6818.0,,3821.0,,1581.0,,3753.0,,76009.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.184,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +WA,Washington,202502,Y,P,N,70698.0,,77750.0,,148448.0,,37509.0,,1492.0,,39001.0,,835029.0,,1823800.0,,1762781.0,,61019.0,,988771.0,,65622.0,,4759.0,,3150.0,,1015.0,,2900.0,,63107.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.2,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +WA,Washington,202502,Y,U,Y,70698.0,,77750.0,,148448.0,,37516.0,,1495.0,,39011.0,,838638.0,,1830502.0,,1769021.0,,61481.0,,991864.0,,65622.0,,4759.0,,3150.0,,1015.0,,2900.0,,63107.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.2,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +WA,Washington,202503,Y,P,N,75018.0,,83308.0,,158326.0,,41262.0,,1717.0,,42979.0,,833830.0,,1820238.0,,1758459.0,,61779.0,,986408.0,,69967.0,,5171.0,,3076.0,,1047.0,,3730.0,,69495.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.22,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +WA,Washington,202503,Y,U,Y,75018.0,,83308.0,,158326.0,,41290.0,,1721.0,,43011.0,,837465.0,,1826997.0,,1764731.0,,62266.0,,989532.0,,69967.0,,5171.0,,3076.0,,1047.0,,3730.0,,69495.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.22,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +WA,Washington,202504,Y,P,N,75949.0,,90955.0,,166904.0,,42318.0,,1868.0,,44186.0,,832847.0,,1816490.0,,1758559.0,,57931.0,,983643.0,,77758.0,,5342.0,,3217.0,,1201.0,,3992.0,,67133.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.23,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +WA,Washington,202504,Y,U,Y,75949.0,,90955.0,,166904.0,,42340.0,,1866.0,,44206.0,,835760.0,,1821905.0,,1763606.0,,58299.0,,986145.0,,77758.0,,5342.0,,3217.0,,1201.0,,3994.0,,67133.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.23,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +WA,Washington,202505,Y,P,N,72694.0,,84096.0,,156790.0,,40952.0,,1876.0,,42828.0,,827749.0,,1802312.0,,1743442.0,,58870.0,,974563.0,,70217.0,,4936.0,,3296.0,,999.0,,3338.0,,65269.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.227,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +WA,Washington,202505,Y,U,Y,72694.0,,84096.0,,156790.0,,40965.0,,1872.0,,42837.0,,830828.0,,1807787.0,,1748509.0,,59278.0,,976959.0,,70217.0,,4936.0,,3296.0,,999.0,,3338.0,,65269.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.212,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +WA,Washington,202506,Y,P,N,70495.0,,117120.0,,187615.0,,40649.0,,1896.0,,42545.0,,823557.0,,1790978.0,,1731463.0,,59515.0,,967421.0,,102206.0,,4975.0,,3400.0,,899.0,,3486.0,,62722.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.212,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +WA,Washington,202506,Y,U,Y,70495.0,,117120.0,,187615.0,,40666.0,,1909.0,,42575.0,,827383.0,,1798235.0,,1738190.0,,60045.0,,970852.0,,102206.0,,4975.0,,3400.0,,899.0,,3486.0,,62722.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.212,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +WA,Washington,202507,Y,P,N,74034.0,,80982.0,,155016.0,,41684.0,,1824.0,,43508.0,,823749.0,,1792188.0,,1731701.0,,60487.0,,968439.0,,65715.0,,6456.0,,3614.0,,1127.0,,4800.0,,67601.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.219,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +WA,Washington,202507,Y,U,Y,74034.0,,80982.0,,155016.0,,41683.0,,1827.0,,43510.0,,827591.0,,1799915.0,,1738846.0,,61069.0,,972324.0,,65715.0,,6456.0,,3614.0,,1127.0,,4800.0,,67601.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.219,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +WA,Washington,202508,Y,P,N,70287.0,,77657.0,,147944.0,,41192.0,,2023.0,,43215.0,,821992.0,,1787085.0,,1725674.0,,61411.0,,965093.0,,63792.0,,5081.0,,3278.0,,1108.0,,8361.0,,60585.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.202,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +WA,Washington,202508,Y,U,Y,70287.0,,77657.0,,147944.0,,41190.0,,2024.0,,43214.0,,825715.0,,1793685.0,,1731787.0,,61898.0,,967970.0,,63792.0,,5081.0,,3278.0,,1108.0,,8361.0,,60585.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.202,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +WA,Washington,202509,Y,P,N,76396.0,,86190.0,,162586.0,,42569.0,,1970.0,,44539.0,,822223.0,,1788029.0,,1725497.0,,62532.0,,965806.0,,72164.0,,5296.0,,5413.0,,3406.0,,3876.0,,61999.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.227,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +WA,Washington,202509,Y,U,Y,76396.0,,86190.0,,162586.0,,42547.0,,1966.0,,44513.0,,825234.0,,1793406.0,,1730508.0,,62898.0,,968172.0,,72164.0,,5296.0,,5413.0,,3406.0,,3876.0,,61999.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.228,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +WA,Washington,202510,Y,P,N,76521.0,,78436.0,,154957.0,,39886.0,,1794.0,,41680.0,,821362.0,,1787864.0,,1724759.0,,63105.0,,966502.0,,64902.0,,5785.0,,5654.0,,1238.0,,1734.0,,60985.0,Does not include all calls received by call centers; Does not include all calls received after business hours,1.0,Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent,0.136,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes only calls transferred to a live agent +WI,Wisconsin,201309,N,U,Y,,,,,,,,,,,,,,,985531.0,,,,,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,201706,N,P,N,23804.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,23804.0,Does Not Include All Applications for Limited-Benefit Programs,18231.0,"Count is of Households, Not Individuals",976.0,,19207.0,,490939.0,,1039204.0,,977320.0,,61884.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,201706,N,U,Y,23804.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,23804.0,Does Not Include All Applications for Limited-Benefit Programs,18231.0,"Count is of Households, Not Individuals",976.0,,19207.0,,490939.0,,1039204.0,,977320.0,,61884.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,201707,N,P,N,23056.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,23056.0,Does Not Include All Applications for Limited-Benefit Programs,17424.0,"Count is of Households, Not Individuals",997.0,,18421.0,,490151.0,,1037696.0,,975494.0,,62202.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,201707,N,U,Y,23056.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,23056.0,Does Not Include All Applications for Limited-Benefit Programs,17424.0,"Count is of Households, Not Individuals",997.0,,18421.0,,490151.0,,1037696.0,,975494.0,,62202.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,201708,N,P,N,26508.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,26508.0,Does Not Include All Applications for Limited-Benefit Programs,20199.0,"Count is of Households, Not Individuals",1179.0,,21378.0,,489894.0,,1037812.0,,974977.0,,62835.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,201708,N,U,Y,26508.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,26508.0,Does Not Include All Applications for Limited-Benefit Programs,20199.0,"Count is of Households, Not Individuals",1179.0,,21378.0,,489894.0,,1037812.0,,974977.0,,62835.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,201709,N,P,N,23399.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,23399.0,Does Not Include All Applications for Limited-Benefit Programs,18298.0,"Count is of Households, Not Individuals",1115.0,,19413.0,,489450.0,,1036360.0,,972821.0,,63539.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,201709,N,U,Y,23399.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,23399.0,Does Not Include All Applications for Limited-Benefit Programs,18298.0,"Count is of Households, Not Individuals",1115.0,,19413.0,,489450.0,,1036360.0,,972821.0,,63539.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,201710,N,P,N,26435.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,26435.0,Does Not Include All Applications for Limited-Benefit Programs,20011.0,"Count is of Households, Not Individuals",1169.0,,21180.0,,489554.0,,1036969.0,,972502.0,,64467.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,201710,N,U,Y,26435.0,,0.0,,26435.0,,20011.0,,1169.0,,21180.0,,489554.0,,1036969.0,,972502.0,,64467.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,201711,N,P,N,25772.0,,0.0,,25772.0,,21058.0,,1635.0,,22693.0,,488346.0,,1035671.0,,969991.0,,65680.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,201711,N,U,Y,25772.0,,0.0,,25772.0,,21058.0,,1635.0,,22693.0,,488346.0,,1035671.0,,969991.0,,65680.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,201712,N,P,N,24237.0,,0.0,,24237.0,,22412.0,,2037.0,,24449.0,,487265.0,,1034480.0,,967931.0,,66549.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,201712,N,U,Y,24237.0,,0.0,,24237.0,,22412.0,,2037.0,,24449.0,,487265.0,,1034480.0,,967931.0,,66549.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,201801,N,P,N,28385.0,,0.0,,28385.0,,23715.0,,1910.0,,25625.0,,488590.0,,1037795.0,,970576.0,,67219.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,201801,N,U,Y,28385.0,,0.0,,28385.0,,23715.0,,1910.0,,25625.0,,488590.0,,1037795.0,,970576.0,,67219.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,201802,N,P,N,22281.0,,0.0,,22281.0,,17378.0,,1095.0,,18473.0,,489553.0,,1040641.0,,972861.0,,67780.0,,,,6542.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2974.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6772.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2323.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",303.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +WI,Wisconsin,201802,N,U,Y,22281.0,,0.0,,22281.0,,17378.0,,1095.0,,18473.0,,489553.0,,1040641.0,,972861.0,,67780.0,,,,6542.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2974.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6772.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2323.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",303.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +WI,Wisconsin,201803,N,P,N,24199.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,24199.0,Does Not Include All Applications for Limited-Benefit Programs,18346.0,"Count is of Households, Not Individuals",1086.0,,19432.0,,489746.0,,1040069.0,,973995.0,,66074.0,,,,7430.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3023.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6596.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1773.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",98.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +WI,Wisconsin,201803,N,U,Y,24199.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,24199.0,Does Not Include All Applications for Limited-Benefit Programs,18346.0,"Count is of Households, Not Individuals",1086.0,,19432.0,,489746.0,,1040069.0,,973995.0,,66074.0,,,,7430.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3023.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6596.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1773.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",98.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +WI,Wisconsin,201804,N,P,N,23381.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,23381.0,Does Not Include All Applications for Limited-Benefit Programs,17239.0,"Count is of Households, Not Individuals",931.0,,18170.0,,487869.0,,1037033.0,,970523.0,,66510.0,,,,7366.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2752.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",5624.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1815.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",79.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +WI,Wisconsin,201804,N,U,Y,23381.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,23381.0,Does Not Include All Applications for Limited-Benefit Programs,17239.0,"Count is of Households, Not Individuals",931.0,,18170.0,,487869.0,,1037033.0,,970523.0,,66510.0,,,,7366.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2752.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",5624.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1815.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",79.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +WI,Wisconsin,201805,N,P,N,23426.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,23426.0,Does Not Include All Applications for Limited-Benefit Programs,17090.0,"Count is of Households, Not Individuals",991.0,,18081.0,,484971.0,,1029109.0,,962327.0,,66782.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,201805,N,U,Y,23426.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,23426.0,Does Not Include All Applications for Limited-Benefit Programs,17090.0,"Count is of Households, Not Individuals",991.0,,18081.0,,484971.0,,1029109.0,,962327.0,,66782.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,201806,N,P,N,23122.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,23122.0,Does Not Include All Applications for Limited-Benefit Programs,16443.0,"Count is of Households, Not Individuals",920.0,,17363.0,,486917.0,,1033955.0,,966070.0,,67885.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,201806,N,U,Y,23122.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,23122.0,Does Not Include All Applications for Limited-Benefit Programs,16443.0,"Count is of Households, Not Individuals",920.0,,17363.0,,486917.0,,1033955.0,,966070.0,,67885.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,201807,N,P,N,24168.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,24168.0,Does Not Include All Applications for Limited-Benefit Programs,18160.0,"Count is of Households, Not Individuals",991.0,,19151.0,,485271.0,,1032239.0,,964141.0,,68098.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,201807,N,U,Y,24168.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,24168.0,Does Not Include All Applications for Limited-Benefit Programs,18160.0,"Count is of Households, Not Individuals",991.0,,19151.0,,485271.0,,1032239.0,,964141.0,,68098.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,201808,N,P,N,26103.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,26103.0,Does Not Include All Applications for Limited-Benefit Programs,19106.0,"Count is of Households, Not Individuals",1131.0,,20237.0,,485930.0,,1032565.0,,963580.0,,68985.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,201808,N,U,Y,26103.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,26103.0,Does Not Include All Applications for Limited-Benefit Programs,19106.0,"Count is of Households, Not Individuals",1131.0,,20237.0,,485930.0,,1032565.0,,963580.0,,68985.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,201809,N,P,N,22712.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,22712.0,Does Not Include All Applications for Limited-Benefit Programs,17018.0,"Count is of Households, Not Individuals",990.0,,18008.0,,484751.0,,1029055.0,,959550.0,,69505.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,201809,N,U,Y,22712.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,22712.0,Does Not Include All Applications for Limited-Benefit Programs,17018.0,"Count is of Households, Not Individuals",990.0,,18008.0,,484751.0,,1029055.0,,959550.0,,69505.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,201810,N,P,N,26413.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,26413.0,Does Not Include All Applications for Limited-Benefit Programs,18044.0,"Count is of Households, Not Individuals",1208.0,,19252.0,,484139.0,,1027307.0,,956685.0,,70622.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,201810,N,U,Y,26413.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,26413.0,Does Not Include All Applications for Limited-Benefit Programs,18044.0,"Count is of Households, Not Individuals",1208.0,,19252.0,,484139.0,,1027307.0,,956685.0,,70622.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,201811,N,P,N,24849.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,24849.0,Does Not Include All Applications for Limited-Benefit Programs,18857.0,"Count is of Households, Not Individuals",1431.0,,20288.0,,477224.0,,1018153.0,,947027.0,,71126.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,201811,N,U,Y,24849.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,24849.0,Does Not Include All Applications for Limited-Benefit Programs,18857.0,"Count is of Households, Not Individuals",1431.0,,20288.0,,482773.0,,1023702.0,,952576.0,,71126.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,201812,N,P,N,21901.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,21901.0,Does Not Include All Applications for Limited-Benefit Programs,19335.0,"Count is of Households, Not Individuals",1904.0,,21239.0,,480642.0,,1020034.0,,949167.0,,70867.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,201812,N,U,Y,21901.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,21901.0,Does Not Include All Applications for Limited-Benefit Programs,19335.0,"Count is of Households, Not Individuals",1904.0,,21239.0,,480642.0,,1020034.0,,949167.0,,70867.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,201901,N,P,N,24145.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,24145.0,Does Not Include All Applications for Limited-Benefit Programs,20365.0,"Count is of Households, Not Individuals",1589.0,,21954.0,,501013.0,,1021451.0,,950778.0,,70673.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,201901,N,U,Y,24145.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,24145.0,Does Not Include All Applications for Limited-Benefit Programs,20365.0,"Count is of Households, Not Individuals",1589.0,,21954.0,,501013.0,,1021451.0,,950778.0,,70673.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,201902,N,P,N,21945.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,21945.0,Does Not Include All Applications for Limited-Benefit Programs,16293.0,"Count is of Households, Not Individuals",1074.0,,17367.0,,501189.0,,1023924.0,,953913.0,,70011.0,,,,6861.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2735.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",5866.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1830.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",136.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +WI,Wisconsin,201902,N,U,Y,21945.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,21945.0,Does Not Include All Applications for Limited-Benefit Programs,16293.0,"Count is of Households, Not Individuals",1074.0,,17367.0,,505919.0,,1033735.0,,962566.0,,71169.0,,,,6861.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2735.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",5866.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1830.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",136.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +WI,Wisconsin,201903,N,P,N,23804.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,23804.0,Does Not Include All Applications for Limited-Benefit Programs,17498.0,"Count is of Households, Not Individuals",1055.0,,18553.0,,497506.0,,1018210.0,,952302.0,,65908.0,,,,7535.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2956.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6260.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1512.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",80.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +WI,Wisconsin,201903,N,U,Y,23804.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,23804.0,Does Not Include All Applications for Limited-Benefit Programs,17498.0,"Count is of Households, Not Individuals",1055.0,,18553.0,,502469.0,,1028591.0,,961553.0,,67038.0,,,,7535.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2956.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6260.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1512.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",80.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +WI,Wisconsin,201904,N,P,N,24487.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,24487.0,Does Not Include All Applications for Limited-Benefit Programs,18693.0,"Count is of Households, Not Individuals",1118.0,,19811.0,,501834.0,,1028209.0,,960645.0,,67564.0,,,,7997.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3009.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6227.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1896.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",99.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +WI,Wisconsin,201904,N,U,Y,24487.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,24487.0,Does Not Include All Applications for Limited-Benefit Programs,18693.0,"Count is of Households, Not Individuals",1118.0,,19811.0,,506642.0,,1038232.0,,969497.0,,68735.0,,,,7997.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3009.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6227.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1896.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",99.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +WI,Wisconsin,201905,N,P,N,23781.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,23781.0,Does Not Include All Applications for Limited-Benefit Programs,17775.0,"Count is of Households, Not Individuals",1092.0,,18867.0,,503652.0,,1031719.0,,963686.0,,68033.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,201905,N,U,Y,23781.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,23781.0,Does Not Include All Applications for Limited-Benefit Programs,17775.0,"Count is of Households, Not Individuals",1092.0,,18867.0,,507620.0,,1040023.0,,971083.0,,68940.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,201906,N,P,N,22657.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,22657.0,Does Not Include All Applications for Limited-Benefit Programs,16534.0,"Count is of Households, Not Individuals",922.0,,17456.0,,502740.0,,1031118.0,,963225.0,,67893.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,201906,N,U,Y,22657.0,,0.0,,22657.0,,16534.0,,922.0,,17456.0,,507376.0,,1040697.0,,971860.0,,68837.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,201907,N,P,N,24866.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,24866.0,Does Not Include All Applications for Limited-Benefit Programs,18614.0,"Count is of Households, Not Individuals",1014.0,,19628.0,,502134.0,,1030606.0,,963037.0,,67569.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,201907,N,U,Y,24866.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,24866.0,Does Not Include All Applications for Limited-Benefit Programs,18614.0,"Count is of Households, Not Individuals",1014.0,,19628.0,,506943.0,,1040306.0,,971561.0,,68745.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,201908,N,P,N,25595.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,25595.0,Does Not Include All Applications for Limited-Benefit Programs,18194.0,"Count is of Households, Not Individuals",1040.0,,19234.0,,502926.0,,1033551.0,,966035.0,,67516.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,201908,N,U,Y,25595.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,25595.0,Does Not Include All Applications for Limited-Benefit Programs,18194.0,"Count is of Households, Not Individuals",1040.0,,19234.0,,507858.0,,1043194.0,,974545.0,,68649.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,201909,N,P,N,24038.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,24038.0,Does Not Include All Applications for Limited-Benefit Programs,17527.0,"Count is of Households, Not Individuals",1151.0,,18678.0,,502597.0,,1035929.0,,968324.0,,67605.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,201909,N,U,Y,24038.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,24038.0,Does Not Include All Applications for Limited-Benefit Programs,17527.0,"Count is of Households, Not Individuals",1151.0,,18678.0,,507885.0,,1046849.0,,978071.0,,68778.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,201910,N,P,N,25831.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,25831.0,Does Not Include All Applications for Limited-Benefit Programs,18982.0,"Count is of Households, Not Individuals",1194.0,,20176.0,,502269.0,,1036953.0,,968951.0,,68002.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,201910,N,U,Y,25831.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,25831.0,Does Not Include All Applications for Limited-Benefit Programs,18982.0,"Count is of Households, Not Individuals",1194.0,,20176.0,,506598.0,,1045935.0,,976917.0,,69018.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,201911,N,P,N,23088.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,23088.0,Does Not Include All Applications for Limited-Benefit Programs,17196.0,"Count is of Households, Not Individuals",1341.0,,18537.0,,500879.0,,1035364.0,,966981.0,,68383.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,201911,N,U,Y,23088.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,23088.0,Does Not Include All Applications for Limited-Benefit Programs,17196.0,"Count is of Households, Not Individuals",1341.0,,18537.0,,505885.0,,1045874.0,,976254.0,,69620.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,201912,N,P,N,23169.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,23169.0,Does Not Include All Applications for Limited-Benefit Programs,20690.0,"Count is of Households, Not Individuals",2003.0,,22693.0,,499635.0,,1034978.0,,966194.0,,68784.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,201912,N,U,Y,23169.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,23169.0,Does Not Include All Applications for Limited-Benefit Programs,20690.0,"Count is of Households, Not Individuals",2003.0,,22693.0,,505082.0,,1046309.0,,976010.0,,70299.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,202001,N,P,N,27293.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,27293.0,Does Not Include All Applications for Limited-Benefit Programs,21360.0,"Count is of Households, Not Individuals",1771.0,,23131.0,,500474.0,,1038188.0,,968715.0,,69473.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,202001,N,U,Y,27293.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,27293.0,Does Not Include All Applications for Limited-Benefit Programs,21360.0,"Count is of Households, Not Individuals",1771.0,,23131.0,,505549.0,,1048524.0,,977633.0,,70891.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,202002,N,P,N,22410.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,22410.0,Does Not Include All Applications for Limited-Benefit Programs,16474.0,"Count is of Households, Not Individuals",1125.0,,17599.0,,501483.0,,1041015.0,,971332.0,,69683.0,,,,6557.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2794.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",7025.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1907.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",189.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +WI,Wisconsin,202002,N,U,Y,22410.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,22410.0,Does Not Include All Applications for Limited-Benefit Programs,16474.0,"Count is of Households, Not Individuals",1125.0,,17599.0,,506220.0,,1050981.0,,980183.0,,70798.0,,,,6557.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2794.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",7025.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1907.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",189.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +WI,Wisconsin,202003,N,P,N,25945.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,25945.0,Does Not Include All Applications for Limited-Benefit Programs,19372.0,"Count is of Households, Not Individuals",964.0,,20336.0,,500993.0,,1042139.0,,974808.0,,67331.0,,,,7757.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3849.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6782.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2164.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",102.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +WI,Wisconsin,202003,N,U,Y,25945.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,25945.0,Does Not Include All Applications for Limited-Benefit Programs,19372.0,"Count is of Households, Not Individuals",964.0,,20336.0,,506662.0,,1054843.0,,986030.0,,68813.0,,,,7757.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3849.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6782.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2164.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",102.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +WI,Wisconsin,202004,N,P,N,27054.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,27054.0,Does Not Include All Applications for Limited-Benefit Programs,30259.0,"Count is of Households, Not Individuals",1761.0,,32020.0,,511820.0,,1072102.0,,1002616.0,,69486.0,,,,12353.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",5441.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",8027.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1809.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",154.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +WI,Wisconsin,202004,N,U,Y,27054.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,27054.0,Does Not Include All Applications for Limited-Benefit Programs,30259.0,"Count is of Households, Not Individuals",1761.0,,32020.0,,515288.0,,1080213.0,,1009912.0,,70301.0,,,,12353.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",5441.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",8027.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1809.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",154.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +WI,Wisconsin,202005,N,P,N,18309.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,18309.0,Does Not Include All Applications for Limited-Benefit Programs,18914.0,"Count is of Households, Not Individuals",1340.0,,20254.0,,518118.0,,1091841.0,,1024521.0,,67320.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,202005,N,U,Y,18309.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,18309.0,Does Not Include All Applications for Limited-Benefit Programs,18914.0,"Count is of Households, Not Individuals",1340.0,,20254.0,,520907.0,,1097910.0,,1029995.0,,67915.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,202006,N,P,N,18947.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,18947.0,Does Not Include All Applications for Limited-Benefit Programs,16148.0,"Count is of Households, Not Individuals",1151.0,,17299.0,,525881.0,,1112844.0,,1045236.0,,67608.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,202006,N,U,Y,18947.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,18947.0,Does Not Include All Applications for Limited-Benefit Programs,16148.0,"Count is of Households, Not Individuals",1151.0,,17299.0,,528763.0,,1119126.0,,1050926.0,,68200.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,202007,N,P,N,19485.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,19485.0,Does Not Include All Applications for Limited-Benefit Programs,17070.0,"Count is of Households, Not Individuals",1147.0,,18217.0,,533301.0,,1131380.0,,1062528.0,,68852.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,202007,N,U,Y,19485.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,19485.0,Does Not Include All Applications for Limited-Benefit Programs,17070.0,"Count is of Households, Not Individuals",1147.0,,18217.0,,535896.0,,1137130.0,,1067704.0,,69426.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,202008,N,P,N,20107.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,20107.0,Does Not Include All Applications for Limited-Benefit Programs,13309.0,"Count is of Households, Not Individuals",947.0,,14256.0,,538035.0,,1144492.0,,1075370.0,,69122.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,202008,N,U,Y,20107.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,20107.0,Does Not Include All Applications for Limited-Benefit Programs,13309.0,"Count is of Households, Not Individuals",947.0,,14256.0,,540771.0,,1150453.0,,1080750.0,,69703.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,202009,N,P,N,18560.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,18560.0,Does Not Include All Applications for Limited-Benefit Programs,15951.0,"Count is of Households, Not Individuals",1078.0,,17029.0,,545752.0,,1164960.0,,1094497.0,,70463.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,202009,N,U,Y,18560.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,18560.0,Does Not Include All Applications for Limited-Benefit Programs,15951.0,"Count is of Households, Not Individuals",1078.0,,17029.0,,548384.0,,1170926.0,,1099924.0,,71002.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,202010,N,P,N,18679.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,18679.0,Does Not Include All Applications for Limited-Benefit Programs,15672.0,"Count is of Households, Not Individuals",1103.0,,16775.0,,551354.0,,1180909.0,,1109453.0,,71456.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,202010,N,U,Y,18679.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,18679.0,Does Not Include All Applications for Limited-Benefit Programs,15672.0,"Count is of Households, Not Individuals",1103.0,,16775.0,,553500.0,,1185943.0,,1114022.0,,71921.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,202011,N,P,N,17502.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,17502.0,Does Not Include All Applications for Limited-Benefit Programs,16537.0,"Count is of Households, Not Individuals",1909.0,,18446.0,,556103.0,,1196167.0,,1123653.0,,72514.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,202011,N,U,Y,17654.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,17654.0,Does Not Include All Applications for Limited-Benefit Programs,16537.0,"Count is of Households, Not Individuals",1909.0,,18446.0,,558961.0,,1202957.0,,1129574.0,,73383.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,202012,N,P,N,17607.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,17607.0,Does Not Include All Applications for Limited-Benefit Programs,20074.0,"Count is of Households, Not Individuals",2879.0,,22953.0,,561939.0,,1213224.0,,1139318.0,,73906.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,202012,N,U,Y,17607.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,17607.0,Does Not Include All Applications for Limited-Benefit Programs,20074.0,"Count is of Households, Not Individuals",2879.0,,22953.0,,564845.0,,1219693.0,,1144816.0,,74877.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,202101,N,P,N,16945.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,16945.0,Does Not Include All Applications for Limited-Benefit Programs,15964.0,"Count is of Households, Not Individuals",1850.0,,17814.0,,567252.0,,1227162.0,,1152061.0,,75101.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,202101,N,U,Y,16945.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,16945.0,Does Not Include All Applications for Limited-Benefit Programs,15964.0,"Count is of Households, Not Individuals",1850.0,,17814.0,,569294.0,,1231882.0,,1156306.0,,75576.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,202102,N,P,N,15185.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,15185.0,Does Not Include All Applications for Limited-Benefit Programs,12379.0,"Count is of Households, Not Individuals",865.0,,13244.0,,570957.0,,1237630.0,,1161950.0,,75680.0,,,,7851.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2476.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1898.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",566.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",155.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +WI,Wisconsin,202102,N,U,Y,15185.0,,0.0,,15185.0,,12379.0,,865.0,,13244.0,,573079.0,,1242573.0,,1166382.0,,76191.0,,,,7851.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2476.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1898.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",566.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",155.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +WI,Wisconsin,202103,N,P,N,15405.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,15405.0,Does Not Include All Applications for Limited-Benefit Programs,12596.0,"Count is of Households, Not Individuals",1036.0,,13632.0,,575065.0,,1248755.0,,1173776.0,,74979.0,,,,7859.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2697.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2221.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",707.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",127.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +WI,Wisconsin,202103,N,U,Y,15405.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,15405.0,Does Not Include All Applications for Limited-Benefit Programs,12596.0,"Count is of Households, Not Individuals",1036.0,,13632.0,,577159.0,,1253303.0,,1177893.0,,75410.0,,,,7859.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2697.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2221.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",707.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",127.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +WI,Wisconsin,202104,N,P,N,13901.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,13901.0,Does Not Include All Applications for Limited-Benefit Programs,11897.0,"Count is of Households, Not Individuals",1381.0,,13278.0,,579301.0,,1259843.0,,1184363.0,,75480.0,,,,8185.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2862.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2297.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",652.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",84.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +WI,Wisconsin,202104,N,U,Y,13901.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,13901.0,Does Not Include All Applications for Limited-Benefit Programs,11897.0,"Count is of Households, Not Individuals",1381.0,,13278.0,,581186.0,,1263979.0,,1188076.0,,75903.0,,,,8185.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2862.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2297.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",652.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",84.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +WI,Wisconsin,202105,N,P,N,13032.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,13032.0,Does Not Include All Applications for Limited-Benefit Programs,10869.0,"Count is of Households, Not Individuals",1084.0,,11953.0,,582702.0,,1269139.0,,1193182.0,,75957.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,202105,N,U,Y,13032.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,13032.0,Does Not Include All Applications for Limited-Benefit Programs,10869.0,"Count is of Households, Not Individuals",1084.0,,11953.0,,586715.0,,1275491.0,,1197096.0,,78395.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,202106,N,P,N,14052.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,14052.0,Does Not Include All Applications for Limited-Benefit Programs,11100.0,"Count is of Households, Not Individuals",904.0,,12004.0,,586424.0,,1278974.0,,1202231.0,,76743.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,202106,N,U,Y,14052.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,14052.0,Does Not Include All Applications for Limited-Benefit Programs,11100.0,"Count is of Households, Not Individuals",904.0,,12004.0,,588489.0,,1283313.0,,1206130.0,,77183.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,202107,N,P,N,13666.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,13666.0,Does Not Include All Applications for Limited-Benefit Programs,9991.0,"Count is of Households, Not Individuals",838.0,,10829.0,,590166.0,,1288243.0,,1210852.0,,77391.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,202107,N,U,Y,13666.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,13666.0,Does Not Include All Applications for Limited-Benefit Programs,9991.0,"Count is of Households, Not Individuals",838.0,,10829.0,,592104.0,,1292431.0,,1214661.0,,77770.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,202108,N,P,N,15306.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,15306.0,Does Not Include All Applications for Limited-Benefit Programs,10143.0,"Count is of Households, Not Individuals",718.0,,10861.0,,593501.0,,1296774.0,,1218854.0,,77920.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,202108,N,U,Y,15306.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,15306.0,Does Not Include All Applications for Limited-Benefit Programs,10143.0,"Count is of Households, Not Individuals",718.0,,10861.0,,595842.0,,1301781.0,,1223456.0,,78325.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,202109,N,P,N,14505.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,14505.0,Does Not Include All Applications for Limited-Benefit Programs,10158.0,"Count is of Households, Not Individuals",689.0,,10847.0,,596868.0,,1305026.0,,1226448.0,,78578.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,202109,N,U,Y,14505.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,14505.0,Does Not Include All Applications for Limited-Benefit Programs,10158.0,"Count is of Households, Not Individuals",689.0,,10847.0,,599159.0,,1309805.0,,1230872.0,,78933.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,202110,N,P,N,14622.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,14622.0,Does Not Include All Applications for Limited-Benefit Programs,9917.0,"Count is of Households, Not Individuals",562.0,,10479.0,,599718.0,,1312048.0,,1232175.0,,79873.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,202110,N,U,Y,14622.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,14622.0,Does Not Include All Applications for Limited-Benefit Programs,9917.0,"Count is of Households, Not Individuals",562.0,,10479.0,,601942.0,,1316781.0,,1236517.0,,80264.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,202111,N,P,N,15224.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,15224.0,Does Not Include All Applications for Limited-Benefit Programs,11167.0,"Count is of Households, Not Individuals",936.0,,12103.0,,602140.0,,1318804.0,,1237307.0,,81497.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,202111,N,U,Y,15224.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,15224.0,Does Not Include All Applications for Limited-Benefit Programs,11167.0,"Count is of Households, Not Individuals",936.0,,12103.0,,604606.0,,1324484.0,,1242488.0,,81996.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,202112,N,P,N,14240.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,14240.0,Does Not Include All Applications for Limited-Benefit Programs,12990.0,"Count is of Households, Not Individuals",1570.0,,14560.0,,605076.0,,1327203.0,,1244444.0,,82759.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,202112,N,U,Y,14240.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,14240.0,Does Not Include All Applications for Limited-Benefit Programs,12990.0,"Count is of Households, Not Individuals",1570.0,,14560.0,,607484.0,,1332720.0,,1249523.0,,83197.0,,,,,,,,,,,,,,,,,,, +WI,Wisconsin,202201,N,P,N,15645.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,15645.0,Does Not Include All Applications for Limited-Benefit Programs,13244.0,"Count is of Households, Not Individuals",1402.0,,14646.0,,604566.0,,1328877.0,,1245228.0,,83649.0,,,,3809.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3281.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",7770.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3893.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",264.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +WI,Wisconsin,202201,N,U,Y,15645.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,15645.0,Does Not Include All Applications for Limited-Benefit Programs,13244.0,"Count is of Households, Not Individuals",1402.0,,14646.0,,606383.0,,1332959.0,,1249014.0,,83945.0,,,,3809.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3281.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",7770.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3893.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",264.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +WI,Wisconsin,202202,N,P,N,13285.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,13285.0,Does Not Include All Applications for Limited-Benefit Programs,10143.0,"Count is of Households, Not Individuals",732.0,,10875.0,,610825.0,,1342370.0,,1257859.0,,84511.0,,,,4133.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2051.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",4413.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2085.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",233.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +WI,Wisconsin,202202,N,U,Y,13285.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,13285.0,Does Not Include All Applications for Limited-Benefit Programs,10143.0,"Count is of Households, Not Individuals",732.0,,10875.0,,612916.0,,1347261.0,,1262428.0,,84833.0,,,,4133.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2051.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",4413.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2085.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",233.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +WI,Wisconsin,202203,N,P,N,15098.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,15098.0,Does Not Include All Applications for Limited-Benefit Programs,10384.0,"Count is of Households, Not Individuals",637.0,,11021.0,,612734.0,,1347486.0,,1267289.0,,80197.0,,,,4924.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2244.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3897.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1097.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",88.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +WI,Wisconsin,202203,N,U,Y,15098.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,15098.0,Does Not Include All Applications for Limited-Benefit Programs,10384.0,"Count is of Households, Not Individuals",637.0,,11021.0,,614623.0,,1351678.0,,1271167.0,,80511.0,,,,4924.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2244.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3897.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1097.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",88.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +WI,Wisconsin,202204,N,P,N,13381.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,13381.0,Does Not Include All Applications for Limited-Benefit Programs,9192.0,"Count is of Households, Not Individuals",587.0,,9779.0,,616450.0,,1356967.0,,1276048.0,,80919.0,,,,4351.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2003.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3264.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1021.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",54.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +WI,Wisconsin,202204,N,U,Y,13500.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,13500.0,Does Not Include All Applications for Limited-Benefit Programs,9192.0,"Count is of Households, Not Individuals",587.0,,9779.0,,618303.0,,1361016.0,,1279724.0,,81292.0,,,,4351.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2003.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3264.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1021.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",54.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +WI,Wisconsin,202205,N,P,N,13266.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,13266.0,Does Not Include All Applications for Limited-Benefit Programs,8804.0,"Count is of Households, Not Individuals",611.0,,9415.0,,619253.0,,1363624.0,,1282020.0,,81604.0,,,,4215.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1860.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3053.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1114.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",53.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +WI,Wisconsin,202205,N,U,Y,13266.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,13266.0,Does Not Include All Applications for Limited-Benefit Programs,8804.0,"Count is of Households, Not Individuals",611.0,,9415.0,,621280.0,,1368028.0,,1286046.0,,81982.0,,,,4215.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1860.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3053.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1114.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",53.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +WI,Wisconsin,202206,N,P,N,14202.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,14202.0,Does Not Include All Applications for Limited-Benefit Programs,9706.0,"Count is of Households, Not Individuals",663.0,,10369.0,,622198.0,,1371402.0,,1289203.0,,82199.0,,,,4219.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2275.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3480.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",943.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",34.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +WI,Wisconsin,202206,N,U,Y,14202.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,14202.0,Does Not Include All Applications for Limited-Benefit Programs,9706.0,"Count is of Households, Not Individuals",663.0,,10369.0,,624205.0,,1375619.0,,1293025.0,,82594.0,,,,4219.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2275.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3480.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",943.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",34.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +WI,Wisconsin,202207,N,P,N,14204.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,14204.0,Does Not Include All Applications for Limited-Benefit Programs,9386.0,"Count is of Households, Not Individuals",596.0,,9982.0,,624455.0,,1376817.0,,1294104.0,,82713.0,,,,4099.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2132.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3381.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1072.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",43.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +WI,Wisconsin,202207,N,U,Y,14204.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,14204.0,Does Not Include All Applications for Limited-Benefit Programs,9386.0,"Count is of Households, Not Individuals",596.0,,9982.0,,626438.0,,1380418.0,,1297229.0,,83189.0,,,,4099.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2132.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3381.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1072.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",43.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +WI,Wisconsin,202208,N,P,N,16006.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,16006.0,Does Not Include All Applications for Limited-Benefit Programs,11149.0,"Count is of Households, Not Individuals",787.0,,11936.0,,628478.0,,1386118.0,,1302575.0,,83543.0,,,,4694.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2478.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3809.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1332.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",56.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +WI,Wisconsin,202208,N,U,Y,16006.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,16006.0,Does Not Include All Applications for Limited-Benefit Programs,11149.0,"Count is of Households, Not Individuals",787.0,,11936.0,,630899.0,,1391275.0,,1307269.0,,84006.0,,,,4694.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2478.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3809.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1332.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",56.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +WI,Wisconsin,202209,N,P,N,14501.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,14501.0,Does Not Include All Applications for Limited-Benefit Programs,9976.0,"Count is of Households, Not Individuals",730.0,,10706.0,,631347.0,,1393264.0,,1309016.0,,84248.0,,,,4261.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2330.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3840.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1216.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",52.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +WI,Wisconsin,202209,N,U,Y,14501.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,14501.0,Does Not Include All Applications for Limited-Benefit Programs,9976.0,"Count is of Households, Not Individuals",730.0,,10706.0,,633553.0,,1397860.0,,1313174.0,,84686.0,,,,4261.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2330.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3840.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1216.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",52.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +WI,Wisconsin,202210,N,P,N,14177.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,14177.0,Does Not Include All Applications for Limited-Benefit Programs,9548.0,"Count is of Households, Not Individuals",755.0,,10303.0,,634354.0,,1401777.0,,1316868.0,,84909.0,,,,4136.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2290.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3442.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1308.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",53.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +WI,Wisconsin,202210,N,U,Y,14177.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,14177.0,Does Not Include All Applications for Limited-Benefit Programs,9548.0,"Count is of Households, Not Individuals",755.0,,10303.0,,636564.0,,1406430.0,,1321169.0,,85261.0,,,,4136.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2290.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3442.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1308.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",53.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +WI,Wisconsin,202211,N,P,N,14299.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,14299.0,Does Not Include All Applications for Limited-Benefit Programs,10304.0,"Count is of Households, Not Individuals",954.0,,11258.0,,637081.0,,1408490.0,,1322948.0,,85542.0,,,,4863.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3676.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",4238.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1173.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",33.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +WI,Wisconsin,202211,N,U,Y,14299.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,14299.0,Does Not Include All Applications for Limited-Benefit Programs,10304.0,"Count is of Households, Not Individuals",954.0,,11258.0,,639533.0,,1414029.0,,1327894.0,,86135.0,,,,4863.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3676.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",4238.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1173.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",33.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +WI,Wisconsin,202212,N,P,N,13204.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,13204.0,Does Not Include All Applications for Limited-Benefit Programs,12592.0,"Count is of Households, Not Individuals",1599.0,,14191.0,,639977.0,,1416435.0,,1330065.0,,86370.0,,,,4739.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",4259.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",8288.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2353.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",117.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +WI,Wisconsin,202212,N,U,Y,13204.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,13204.0,Does Not Include All Applications for Limited-Benefit Programs,12592.0,"Count is of Households, Not Individuals",1599.0,,14191.0,,642440.0,,1421699.0,,1334784.0,,86915.0,,,,4739.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",4259.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",8288.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2353.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",117.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +WI,Wisconsin,202301,N,P,N,15329.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,15329.0,Does Not Include All Applications for Limited-Benefit Programs,11448.0,"Count is of Households, Not Individuals",1258.0,,12706.0,,643479.0,,1425178.0,,1337579.0,,87599.0,,,,4516.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2978.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6261.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3069.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",131.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +WI,Wisconsin,202301,N,U,Y,15329.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,15329.0,Does Not Include All Applications for Limited-Benefit Programs,11448.0,"Count is of Households, Not Individuals",1258.0,,12706.0,,645807.0,,1430020.0,,1341922.0,,88098.0,,,,4516.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2978.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6261.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3069.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",131.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +WI,Wisconsin,202302,N,P,N,12406.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,12406.0,Does Not Include All Applications for Limited-Benefit Programs,9051.0,"Count is of Households, Not Individuals",757.0,,9808.0,,645993.0,,1431660.0,,1343824.0,,87836.0,,,,4052.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1811.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",4061.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1384.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",111.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +WI,Wisconsin,202302,N,U,Y,12406.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,12406.0,Does Not Include All Applications for Limited-Benefit Programs,9051.0,"Count is of Households, Not Individuals",757.0,,9808.0,,648260.0,,1436684.0,,1348501.0,,88183.0,,,,4052.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1811.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",4061.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1384.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",111.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",,,,,, +WI,Wisconsin,202303,N,P,N,13877.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,13877.0,Does Not Include All Applications for Limited-Benefit Programs,9847.0,"Count is of Households, Not Individuals",657.0,,10504.0,,648767.0,,1439080.0,,1359177.0,,79903.0,,,,4074.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2279.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3650.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",936.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",79.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",249172.0,Does not include all calls received after business hours; Includes calls for other benefit programs,5.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.1,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WI,Wisconsin,202303,N,U,Y,13877.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,13877.0,Does Not Include All Applications for Limited-Benefit Programs,9847.0,"Count is of Households, Not Individuals",657.0,,10504.0,,650685.0,,1443310.0,,1363102.0,,80208.0,,,,4074.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2279.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3650.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",936.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",79.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",249172.0,Does not include all calls received after business hours; Includes calls for other benefit programs,5.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.1,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WI,Wisconsin,202304,N,P,N,12925.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,12925.0,Does Not Include All Applications for Limited-Benefit Programs,8785.0,"Count is of Households, Not Individuals",539.0,,9324.0,,651086.0,,1445001.0,,1364573.0,,80428.0,,,,3935.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1929.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3166.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1001.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",93.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",213111.0,Does not include all calls received after business hours; Includes calls for other benefit programs,8.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.13,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WI,Wisconsin,202304,N,U,Y,12925.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,12925.0,Does Not Include All Applications for Limited-Benefit Programs,8785.0,"Count is of Households, Not Individuals",539.0,,9324.0,,653235.0,,1449795.0,,1368990.0,,80805.0,,,,3935.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1929.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3166.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1001.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",93.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",213111.0,Does not include all calls received after business hours; Includes calls for other benefit programs,8.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.13,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WI,Wisconsin,202305,N,P,N,16516.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,16516.0,Does Not Include All Applications for Limited-Benefit Programs,10162.0,"Count is of Households, Not Individuals",680.0,,10842.0,,653750.0,,1451931.0,,1371271.0,,80660.0,,,,4752.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2399.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3756.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1285.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",137.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",245149.0,Does not include all calls received after business hours; Includes calls for other benefit programs,6.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.08,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WI,Wisconsin,202305,N,U,Y,16516.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,16516.0,Does Not Include All Applications for Limited-Benefit Programs,10162.0,"Count is of Households, Not Individuals",680.0,,10842.0,,656017.0,,1456835.0,,1375766.0,,81069.0,,,,4752.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2399.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3756.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1285.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",137.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",245149.0,Does not include all calls received after business hours; Includes calls for other benefit programs,6.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.08,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WI,Wisconsin,202306,N,P,N,15951.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,15951.0,Does Not Include All Applications for Limited-Benefit Programs,10569.0,"Count is of Households, Not Individuals",652.0,,11221.0,,654739.0,,1452582.0,,1371724.0,,80858.0,,,,4317.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2754.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",4275.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1351.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",92.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",270265.0,Does not include all calls received after business hours; Includes calls for other benefit programs,15.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.183,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WI,Wisconsin,202306,N,U,Y,15951.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,15951.0,Does Not Include All Applications for Limited-Benefit Programs,10569.0,"Count is of Households, Not Individuals",652.0,,11221.0,,656985.0,,1457504.0,,1376245.0,,81259.0,,,,4317.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2754.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",4275.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1351.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",92.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",270265.0,Does not include all calls received after business hours; Includes calls for other benefit programs,15.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.183,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WI,Wisconsin,202307,N,P,N,16191.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,16191.0,Does Not Include All Applications for Limited-Benefit Programs,10319.0,"Count is of Households, Not Individuals",688.0,,11007.0,,643652.0,,1427922.0,,1353003.0,,74919.0,,,,86.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2695.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",4200.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1804.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",139.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",256658.0,Does not include all calls received after business hours; Includes calls for other benefit programs,17.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.211,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WI,Wisconsin,202307,N,U,Y,16191.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,16191.0,Does Not Include All Applications for Limited-Benefit Programs,10319.0,"Count is of Households, Not Individuals",688.0,,11007.0,,646657.0,,1434591.0,,1359157.0,,75434.0,,,,86.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2695.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",4200.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1804.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",139.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",256658.0,Does not include all calls received after business hours; Includes calls for other benefit programs,17.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.211,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WI,Wisconsin,202308,N,P,N,19638.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,19638.0,Does Not Include All Applications for Limited-Benefit Programs,12774.0,"Count is of Households, Not Individuals",856.0,,13630.0,,632864.0,,1403505.0,,1334612.0,,68893.0,,,,5131.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3568.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",5316.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1621.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",152.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",283612.0,Does not include all calls received after business hours; Includes calls for other benefit programs,12.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.166,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WI,Wisconsin,202308,N,U,Y,19638.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,19638.0,Does Not Include All Applications for Limited-Benefit Programs,12774.0,"Count is of Households, Not Individuals",856.0,,13630.0,,635529.0,,1409755.0,,1340202.0,,69553.0,,,,5131.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3568.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",5316.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1621.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",152.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",283612.0,Does not include all calls received after business hours; Includes calls for other benefit programs,12.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.166,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WI,Wisconsin,202309,N,P,N,18135.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,18135.0,Does Not Include All Applications for Limited-Benefit Programs,12169.0,"Count is of Households, Not Individuals",837.0,,13006.0,,622794.0,,1375636.0,,1309465.0,,66171.0,,,,4908.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2860.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",5418.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1692.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",136.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",261887.0,Does not include all calls received after business hours; Includes calls for other benefit programs,11.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.164,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WI,Wisconsin,202309,N,U,Y,18135.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,18135.0,Does Not Include All Applications for Limited-Benefit Programs,12169.0,"Count is of Households, Not Individuals",837.0,,13006.0,,627543.0,,1385315.0,,1318231.0,,67084.0,,,,4908.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2860.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",5418.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1692.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",136.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",261887.0,Does not include all calls received after business hours; Includes calls for other benefit programs,11.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.164,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WI,Wisconsin,202310,N,P,N,20896.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,20896.0,Does Not Include All Applications for Limited-Benefit Programs,13727.0,"Count is of Households, Not Individuals",1023.0,,14750.0,,618996.0,,1362091.0,,1295742.0,,66349.0,,,,6110.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3273.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",5265.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1984.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",167.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",262617.0,Does not include all calls received after business hours; Includes calls for other benefit programs,6.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.091,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WI,Wisconsin,202310,N,U,Y,20896.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,20896.0,Does Not Include All Applications for Limited-Benefit Programs,13727.0,"Count is of Households, Not Individuals",1023.0,,14750.0,,622216.0,,1369528.0,,1302456.0,,67072.0,,,,6110.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3273.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",5265.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1984.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",167.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",262617.0,Does not include all calls received after business hours; Includes calls for other benefit programs,6.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.091,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WI,Wisconsin,202311,N,P,N,20270.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,20270.0,Does Not Include All Applications for Limited-Benefit Programs,14217.0,"Count is of Households, Not Individuals",1233.0,,15450.0,,612542.0,,1346297.0,,1280066.0,,66231.0,,,,6204.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",4907.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6661.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1847.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",172.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",245350.0,Does not include all calls received after business hours; Includes calls for other benefit programs,7.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.108,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WI,Wisconsin,202311,N,U,Y,20270.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,20270.0,Does Not Include All Applications for Limited-Benefit Programs,14217.0,"Count is of Households, Not Individuals",1233.0,,15450.0,,616319.0,,1355061.0,,1287988.0,,67073.0,,,,6204.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",4907.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6661.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1847.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",172.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",245350.0,Does not include all calls received after business hours; Includes calls for other benefit programs,7.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.108,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WI,Wisconsin,202312,N,P,N,19091.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,19091.0,Does Not Include All Applications for Limited-Benefit Programs,15788.0,"Count is of Households, Not Individuals",1821.0,,17609.0,,606058.0,,1327825.0,,1261767.0,,66058.0,,,,5512.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",5217.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",11132.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3368.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",307.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",235666.0,Does not include all calls received after business hours; Includes calls for other benefit programs,9.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.144,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WI,Wisconsin,202312,N,U,Y,19091.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,19091.0,Does Not Include All Applications for Limited-Benefit Programs,15788.0,"Count is of Households, Not Individuals",1821.0,,17609.0,,609928.0,,1337200.0,,1270188.0,,67012.0,,,,5512.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",5217.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",11132.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3368.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",307.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",235666.0,Does not include all calls received after business hours; Includes calls for other benefit programs,9.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.144,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WI,Wisconsin,202401,N,P,N,23985.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,23985.0,Does Not Include All Applications for Limited-Benefit Programs,18271.0,"Count is of Households, Not Individuals",1994.0,,20265.0,,603119.0,,1316114.0,,1249151.0,,66963.0,,,,6720.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",4726.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",10711.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6268.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",814.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",311395.0,Does not include all calls received after business hours; Includes calls for other benefit programs,13.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.189,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WI,Wisconsin,202401,N,U,Y,23985.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,23985.0,Does Not Include All Applications for Limited-Benefit Programs,18271.0,"Count is of Households, Not Individuals",1994.0,,20265.0,,606534.0,,1324491.0,,1256611.0,,67880.0,,,,6720.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",4726.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",10711.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6268.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",814.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",311395.0,Does not include all calls received after business hours; Includes calls for other benefit programs,13.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.189,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WI,Wisconsin,202402,N,P,N,21077.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,21077.0,Does Not Include All Applications for Limited-Benefit Programs,13212.0,"Count is of Households, Not Individuals",1116.0,,14328.0,,598453.0,,1294682.0,,1226465.0,,68217.0,,,,5715.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3370.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6587.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2747.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",472.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",269567.0,Does not include all calls received after business hours; Includes calls for other benefit programs,8.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.124,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WI,Wisconsin,202402,N,U,Y,21077.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,21077.0,Does Not Include All Applications for Limited-Benefit Programs,13212.0,"Count is of Households, Not Individuals",1116.0,,14328.0,,601673.0,,1302876.0,,1233892.0,,68984.0,,,,5715.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3370.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6587.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2747.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",472.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",269567.0,Does not include all calls received after business hours; Includes calls for other benefit programs,8.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.124,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WI,Wisconsin,202403,N,P,N,21618.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,21618.0,Does Not Include All Applications for Limited-Benefit Programs,14115.0,"Count is of Households, Not Individuals",1063.0,,15178.0,,589973.0,,1263366.0,,1195569.0,,67797.0,,,,6298.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3600.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6351.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1892.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",217.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",247021.0,Does not include all calls received after business hours; Includes calls for other benefit programs,7.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.1,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WI,Wisconsin,202403,N,U,Y,21618.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,21618.0,Does Not Include All Applications for Limited-Benefit Programs,14115.0,"Count is of Households, Not Individuals",1063.0,,15178.0,,593442.0,,1272287.0,,1203722.0,,68565.0,,,,6298.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3600.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6351.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1892.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",217.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",247021.0,Does not include all calls received after business hours; Includes calls for other benefit programs,7.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.1,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WI,Wisconsin,202404,N,P,N,23419.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,23419.0,Does Not Include All Applications for Limited-Benefit Programs,15707.0,"Count is of Households, Not Individuals",1100.0,,16807.0,,581276.0,,1241679.0,,1169266.0,,72413.0,,,,7350.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3765.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6766.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2274.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",209.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",262352.0,Does not include all calls received after business hours; Includes calls for other benefit programs,5.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.074,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WI,Wisconsin,202404,N,U,Y,23419.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,23419.0,Does Not Include All Applications for Limited-Benefit Programs,15707.0,"Count is of Households, Not Individuals",1100.0,,16807.0,,584931.0,,1250485.0,,1177234.0,,73251.0,,,,7350.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3765.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6766.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2274.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",209.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",262352.0,Does not include all calls received after business hours; Includes calls for other benefit programs,5.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.074,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WI,Wisconsin,202405,N,P,N,22247.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,22247.0,Does Not Include All Applications for Limited-Benefit Programs,14815.0,"Count is of Households, Not Individuals",1145.0,,15960.0,,573401.0,,1222976.0,,1147816.0,,75160.0,,,,6945.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3705.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6694.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1946.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",150.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",251612.0,Does not include all calls received after business hours; Includes calls for other benefit programs,5.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.075,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WI,Wisconsin,202405,N,U,Y,22247.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,22247.0,Does Not Include All Applications for Limited-Benefit Programs,14815.0,"Count is of Households, Not Individuals",1145.0,,15960.0,,576288.0,,1230346.0,,1154564.0,,75782.0,,,,6945.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3705.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6694.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1946.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",150.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",251612.0,Does not include all calls received after business hours; Includes calls for other benefit programs,5.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.075,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WI,Wisconsin,202406,N,P,N,21295.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,21295.0,Does Not Include All Applications for Limited-Benefit Programs,13652.0,"Count is of Households, Not Individuals",899.0,,14551.0,,563652.0,,1205213.0,,1129551.0,,75662.0,,,,6283.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3518.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",5706.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1783.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",130.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",243439.0,Does not include all calls received after business hours; Includes calls for other benefit programs,6.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.1,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WI,Wisconsin,202406,N,U,Y,21295.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,21295.0,Does Not Include All Applications for Limited-Benefit Programs,13652.0,"Count is of Households, Not Individuals",899.0,,14551.0,,567145.0,,1213972.0,,1137536.0,,76436.0,,,,6283.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3518.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",5706.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1783.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",130.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",243439.0,Does not include all calls received after business hours; Includes calls for other benefit programs,6.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.1,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WI,Wisconsin,202407,N,P,N,23810.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,23810.0,Does Not Include All Applications for Limited-Benefit Programs,15717.0,"Count is of Households, Not Individuals",1024.0,,16741.0,,564809.0,,1194063.0,,1117764.0,,76299.0,,629254.0,,6781.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3876.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6659.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2361.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",152.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",274051.0,Does not include all calls received after business hours; Includes calls for other benefit programs,6.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.106,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WI,Wisconsin,202407,N,U,Y,23810.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,23810.0,Does Not Include All Applications for Limited-Benefit Programs,15717.0,"Count is of Households, Not Individuals",1024.0,,16741.0,,567960.0,,1202371.0,,1125237.0,,77134.0,,634411.0,,6781.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3876.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6659.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2361.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",152.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",274051.0,Does not include all calls received after business hours; Includes calls for other benefit programs,6.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.106,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WI,Wisconsin,202408,N,P,N,23897.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,23897.0,Does Not Include All Applications for Limited-Benefit Programs,15433.0,"Count is of Households, Not Individuals",1120.0,,16553.0,,565648.0,,1193102.0,,1116736.0,,76366.0,,627454.0,,6946.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",4014.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6666.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1857.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",151.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",282686.0,Does not include all calls received after business hours; Includes calls for other benefit programs,9.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.15,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WI,Wisconsin,202408,N,U,Y,23897.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,23897.0,Does Not Include All Applications for Limited-Benefit Programs,15433.0,"Count is of Households, Not Individuals",1120.0,,16553.0,,568925.0,,1201279.0,,1124142.0,,77137.0,,632354.0,,6946.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",4014.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6666.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1857.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",151.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",282686.0,Does not include all calls received after business hours; Includes calls for other benefit programs,9.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.15,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WI,Wisconsin,202409,N,P,N,22345.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,22345.0,Does Not Include All Applications for Limited-Benefit Programs,14910.0,"Count is of Households, Not Individuals",1138.0,,16048.0,,563542.0,,1189425.0,,1112900.0,,76525.0,,625883.0,,6124.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3716.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6516.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2535.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",151.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",281029.0,Does not include all calls received after business hours; Includes calls for other benefit programs,12.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.186,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WI,Wisconsin,202409,N,U,Y,22345.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,22345.0,Does Not Include All Applications for Limited-Benefit Programs,14910.0,"Count is of Households, Not Individuals",1138.0,,16048.0,,567121.0,,1199092.0,,1121753.0,,77339.0,,631971.0,,6124.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3716.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6516.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2535.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",151.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",281029.0,Does not include all calls received after business hours; Includes calls for other benefit programs,12.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.186,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WI,Wisconsin,202410,N,P,N,24643.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,24643.0,Does Not Include All Applications for Limited-Benefit Programs,16119.0,"Count is of Households, Not Individuals",1082.0,,17201.0,,562898.0,,1189424.0,,1111757.0,,77667.0,,626526.0,,7104.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",4104.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",7112.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2241.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",225.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",299335.0,Does not include all calls received after business hours; Includes calls for other benefit programs,10.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.139,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WI,Wisconsin,202410,N,U,Y,24643.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,24643.0,Does Not Include All Applications for Limited-Benefit Programs,16119.0,"Count is of Households, Not Individuals",1082.0,,17201.0,,565832.0,,1197355.0,,1118936.0,,78419.0,,631523.0,,7104.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",4104.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",7112.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2241.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",225.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",299335.0,Does not include all calls received after business hours; Includes calls for other benefit programs,10.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.139,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WI,Wisconsin,202411,N,P,N,22800.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,22800.0,Does Not Include All Applications for Limited-Benefit Programs,15492.0,"Count is of Households, Not Individuals",1261.0,,16753.0,,561933.0,,1188074.0,,1109236.0,,78838.0,,626141.0,,6409.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",5773.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",7242.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2205.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",183.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",259693.0,Does not include all calls received after business hours; Includes calls for other benefit programs,12.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.149,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WI,Wisconsin,202411,N,U,Y,22800.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,22800.0,Does Not Include All Applications for Limited-Benefit Programs,15492.0,"Count is of Households, Not Individuals",1261.0,,16753.0,,565483.0,,1197555.0,,1117746.0,,79809.0,,632072.0,,6409.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",5773.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",7242.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2205.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",183.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",259693.0,Does not include all calls received after business hours; Includes calls for other benefit programs,12.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.149,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WI,Wisconsin,202412,N,P,N,22151.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,22151.0,Does Not Include All Applications for Limited-Benefit Programs,18282.0,"Count is of Households, Not Individuals",1990.0,,20272.0,,560252.0,,1188337.0,,1108320.0,,80017.0,,628085.0,,6212.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6137.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",12073.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",4911.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",485.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",246424.0,Does not include all calls received after business hours; Includes calls for other benefit programs,15.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.167,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WI,Wisconsin,202412,N,U,Y,22151.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,22151.0,Does Not Include All Applications for Limited-Benefit Programs,18282.0,"Count is of Households, Not Individuals",1990.0,,20272.0,,563803.0,,1197988.0,,1117012.0,,80976.0,,634185.0,,6212.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6137.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",12073.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",4911.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",485.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",246424.0,Does not include all calls received after business hours; Includes calls for other benefit programs,15.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.167,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WI,Wisconsin,202501,N,P,N,26643.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,26643.0,Does Not Include All Applications for Limited-Benefit Programs,20443.0,"Count is of Households, Not Individuals",1896.0,,22339.0,,559527.0,,1186489.0,,1105109.0,,81380.0,,626962.0,,7231.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",5145.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",13047.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6346.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",153.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",315737.0,Does not include all calls received after business hours; Includes calls for other benefit programs,17.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.205,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WI,Wisconsin,202501,N,U,Y,26643.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,26643.0,Does Not Include All Applications for Limited-Benefit Programs,20443.0,"Count is of Households, Not Individuals",1896.0,,22339.0,,562690.0,,1195211.0,,1112962.0,,82249.0,,632521.0,,7231.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",5145.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",13047.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6346.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",153.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",315737.0,Does not include all calls received after business hours; Includes calls for other benefit programs,17.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.205,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WI,Wisconsin,202502,N,P,N,20733.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,20733.0,Does Not Include All Applications for Limited-Benefit Programs,15361.0,"Count is of Households, Not Individuals",1377.0,,16738.0,,557670.0,,1183420.0,,1101151.0,,82269.0,,625750.0,,6014.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3382.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",7715.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3154.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",943.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",244077.0,Does not include all calls received after business hours; Includes calls for other benefit programs,9.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.122,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WI,Wisconsin,202502,N,U,Y,20733.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,20733.0,Does Not Include All Applications for Limited-Benefit Programs,15361.0,"Count is of Households, Not Individuals",1377.0,,16738.0,,560748.0,,1191546.0,,1108523.0,,83023.0,,630798.0,,6014.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3382.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",7715.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3154.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",943.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",244077.0,Does not include all calls received after business hours; Includes calls for other benefit programs,9.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.122,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WI,Wisconsin,202503,N,P,N,21630.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,21630.0,Does Not Include All Applications for Limited-Benefit Programs,14326.0,"Count is of Households, Not Individuals",1360.0,,15686.0,,550327.0,,1167708.0,,1085444.0,,82264.0,,617381.0,,619.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3841.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6086.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2164.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",321.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",247635.0,Does not include all calls received after business hours; Includes calls for other benefit programs,9.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.104,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WI,Wisconsin,202503,N,U,Y,21630.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,21630.0,Does Not Include All Applications for Limited-Benefit Programs,14326.0,"Count is of Households, Not Individuals",1360.0,,15686.0,,553485.0,,1175930.0,,1092952.0,,82978.0,,622445.0,,619.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3841.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6086.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2164.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",321.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",247635.0,Does not include all calls received after business hours; Includes calls for other benefit programs,9.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.104,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WI,Wisconsin,202504,N,P,N,22192.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,22192.0,Does Not Include All Applications for Limited-Benefit Programs,14430.0,"Count is of Households, Not Individuals",1221.0,,15651.0,,542723.0,,1149804.0,,1060991.0,,88813.0,,607081.0,,6911.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3586.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",5558.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1632.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",129.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",251024.0,Does not include all calls received after business hours; Includes calls for other benefit programs,7.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.094,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WI,Wisconsin,202504,N,U,Y,22192.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,22192.0,Does Not Include All Applications for Limited-Benefit Programs,14430.0,"Count is of Households, Not Individuals",1221.0,,15651.0,,545642.0,,1157206.0,,1067716.0,,89490.0,,611564.0,,6911.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3586.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",5558.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1632.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",129.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",251024.0,Does not include all calls received after business hours; Includes calls for other benefit programs,7.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.094,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WI,Wisconsin,202505,N,P,N,20812.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,20812.0,Does Not Include All Applications for Limited-Benefit Programs,13430.0,"Count is of Households, Not Individuals",1253.0,,14683.0,,538261.0,,1136031.0,,1042292.0,,93739.0,,597770.0,,6552.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3459.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",5566.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1560.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",132.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",241343.0,Does not include all calls received after business hours; Includes calls for other benefit programs,8.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.112,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WI,Wisconsin,202505,N,U,Y,20812.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,20812.0,Does Not Include All Applications for Limited-Benefit Programs,13430.0,"Count is of Households, Not Individuals",1253.0,,14683.0,,541343.0,,1143506.0,,1049086.0,,94420.0,,602163.0,,6552.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3459.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",5566.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1560.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",132.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",241343.0,Does not include all calls received after business hours; Includes calls for other benefit programs,8.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.112,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WI,Wisconsin,202506,N,P,N,20981.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,20981.0,Does Not Include All Applications for Limited-Benefit Programs,14035.0,"Count is of Households, Not Individuals",1259.0,,15294.0,,535685.0,,1129199.0,,1032063.0,,97136.0,,593514.0,,6281.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3576.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",5577.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2008.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",121.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",254724.0,Does not include all calls received after business hours; Includes calls for other benefit programs,10.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.158,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WI,Wisconsin,202506,N,U,Y,20981.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,20981.0,Does Not Include All Applications for Limited-Benefit Programs,14035.0,"Count is of Households, Not Individuals",1259.0,,15294.0,,539011.0,,1137320.0,,1039498.0,,97822.0,,598309.0,,6281.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3576.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",5577.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2008.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",121.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",254724.0,Does not include all calls received after business hours; Includes calls for other benefit programs,10.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.158,Callbacks are included; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WI,Wisconsin,202507,N,P,N,21760.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,21760.0,Does Not Include All Applications for Limited-Benefit Programs,15850.0,"Count is of Households, Not Individuals",1312.0,,17162.0,,537291.0,,1125941.0,,1027136.0,,98805.0,,588650.0,,6898.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3720.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6516.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1994.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",170.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",267274.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,12.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.179,Callbacks are included; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WI,Wisconsin,202507,N,U,Y,21760.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,21760.0,Does Not Include All Applications for Limited-Benefit Programs,15850.0,"Count is of Households, Not Individuals",1312.0,,17162.0,,540031.0,,1132861.0,,1033465.0,,99396.0,,592830.0,,6898.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3720.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6516.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1994.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",170.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",267274.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,12.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.179,Callbacks are included; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WI,Wisconsin,202508,N,P,N,21053.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,21053.0,Does Not Include All Applications for Limited-Benefit Programs,14351.0,"Count is of Households, Not Individuals",1223.0,,15574.0,,537930.0,,1123739.0,,1024884.0,,98855.0,,585809.0,,6261.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3630.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",5752.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1528.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",165.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",270363.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,12.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.212,Callbacks are included; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WI,Wisconsin,202508,N,U,Y,21053.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,21053.0,Does Not Include All Applications for Limited-Benefit Programs,14351.0,"Count is of Households, Not Individuals",1223.0,,15574.0,,540960.0,,1131202.0,,1031752.0,,99450.0,,590242.0,,6261.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3630.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",5752.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1528.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",165.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",270363.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,12.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.212,Callbacks are included; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WI,Wisconsin,202509,N,P,N,21957.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,21957.0,Does Not Include All Applications for Limited-Benefit Programs,15141.0,"Count is of Households, Not Individuals",1227.0,,16368.0,,538332.0,,1124947.0,,1026197.0,,98750.0,,586615.0,,6128.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3837.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6289.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2146.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",141.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",271179.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,16.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.2,Callbacks are included; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WI,Wisconsin,202509,N,U,Y,21957.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,21957.0,Does Not Include All Applications for Limited-Benefit Programs,15141.0,"Count is of Households, Not Individuals",1227.0,,16368.0,,541421.0,,1132761.0,,1033372.0,,99389.0,,591340.0,,6128.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3837.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6289.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",2146.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",141.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",271179.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,16.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.2,Callbacks are included; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WI,Wisconsin,202510,N,P,N,21782.0,Does Not Include All Applications for Limited-Benefit Programs Submitted to Medicaid and CHIP Agencies,0.0,,21782.0,Does Not Include All Applications for Limited-Benefit Programs,14909.0,"Count is of Households, Not Individuals",1288.0,,16197.0,,538125.0,,1124746.0,,1025688.0,,99058.0,,586621.0,,6436.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",3840.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",6429.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",1982.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",176.0,"Incorrectly reporting processing time at application level, as opposed to the individual level",237336.0,Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs,5.0,Callbacks are included; Call centers offer callbacks; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.056,Callbacks are included; Does not include all calls received by call centers; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WV,West Virginia,201309,N,U,Y,,,,,,,,,,,,,,,354544.0,,,,,,,,,,,,,,,,,,,,,,, +WV,West Virginia,201706,Y,P,N,20627.0,,0.0,,20627.0,,10682.0,,461.0,,11143.0,,225362.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),547084.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),515221.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),31863.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,201706,Y,U,Y,21630.0,,0.0,,21630.0,,10682.0,,461.0,,11143.0,,225362.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),547084.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),515221.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),31863.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,201707,Y,P,N,20807.0,,0.0,,20807.0,,10762.0,,490.0,,11252.0,,225514.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),546958.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),514660.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),32298.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,201707,Y,U,Y,20807.0,,0.0,,20807.0,,10762.0,,490.0,,11252.0,,225514.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),546958.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),514660.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),32298.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,201708,Y,P,N,24847.0,,0.0,,24847.0,,13061.0,,682.0,,13743.0,,226070.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),547225.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),515327.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),31898.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,201708,Y,U,Y,24847.0,,0.0,,24847.0,,13061.0,,682.0,,13743.0,,226070.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),547225.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),515327.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),31898.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,201709,Y,P,N,22455.0,,0.0,,22455.0,,11616.0,,637.0,,12253.0,,225024.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),544461.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),512025.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),32436.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,201709,Y,U,Y,22455.0,,0.0,,22455.0,,11616.0,,637.0,,12253.0,,225024.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),544461.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),512025.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),32436.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,201710,Y,P,N,18511.0,,0.0,,18511.0,,11480.0,,538.0,,12018.0,,224334.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),542237.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),509639.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),32598.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,201710,Y,U,Y,18511.0,,0.0,,18511.0,,11480.0,,538.0,,12018.0,,224334.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),542237.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),509639.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),32598.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,201711,Y,P,N,21481.0,,0.0,,21481.0,,11473.0,,623.0,,12096.0,,223980.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),541494.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),509036.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),32458.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,201711,Y,U,Y,21481.0,,0.0,,21481.0,,11473.0,,623.0,,12096.0,,223980.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),541494.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),509036.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),32458.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,201712,Y,P,N,22434.0,,0.0,,22434.0,,12189.0,,570.0,,12759.0,,222882.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),539431.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),506911.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),32520.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,201712,Y,U,Y,22434.0,,0.0,,22434.0,,12189.0,,570.0,,12759.0,,222882.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),539431.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),506911.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),32520.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,201801,Y,P,N,26517.0,,0.0,,26517.0,,14914.0,,733.0,,15647.0,,222809.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),539029.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),506476.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),32553.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,201801,Y,U,Y,26517.0,,0.0,,26517.0,,14914.0,,733.0,,15647.0,,222809.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),539029.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),506476.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),32553.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,201802,Y,P,N,22600.0,,0.0,,22600.0,,11719.0,,579.0,,12298.0,,223278.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),538248.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),505412.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),32836.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,3289.0,,4436.0,,4511.0,,763.0,,564.0,,,,,,, +WV,West Virginia,201802,Y,U,Y,22600.0,,0.0,,22600.0,,11719.0,,579.0,,12298.0,,223278.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),538248.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),505412.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),32836.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,3289.0,,4436.0,,4511.0,,763.0,,564.0,,,,,,, +WV,West Virginia,201803,Y,P,N,23146.0,,0.0,,23146.0,,12817.0,,711.0,,13528.0,,221698.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),536076.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),502959.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),33117.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,3620.0,,5011.0,,4070.0,,792.0,,452.0,,,,,,, +WV,West Virginia,201803,Y,U,Y,23146.0,,0.0,,23146.0,,12817.0,,711.0,,13528.0,,221698.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),536076.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),502959.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),33117.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,3620.0,,5011.0,,4070.0,,792.0,,452.0,,,,,,, +WV,West Virginia,201804,Y,P,N,20659.0,,0.0,,20659.0,,11507.0,,597.0,,12104.0,,221430.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),534858.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),502328.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),32530.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,3709.0,,5031.0,,2947.0,,569.0,,364.0,,,,,,, +WV,West Virginia,201804,Y,U,Y,20659.0,,0.0,,20659.0,,11507.0,,597.0,,12104.0,,221430.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),534858.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),502328.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),32530.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,3709.0,,5031.0,,2947.0,,569.0,,364.0,,,,,,, +WV,West Virginia,201805,Y,P,N,20547.0,,0.0,,20547.0,,10957.0,,538.0,,11495.0,,221172.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),533692.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),501151.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),32541.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,201805,Y,U,Y,20547.0,,0.0,,20547.0,,10957.0,,538.0,,11495.0,,221172.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),533692.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),501151.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),32541.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,201806,Y,P,N,19374.0,,0.0,,19374.0,,10391.0,,473.0,,10864.0,,220328.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),531632.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),499038.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),32594.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,201806,Y,U,Y,19374.0,,0.0,,19374.0,,10391.0,,473.0,,10864.0,,220328.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),531632.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),499038.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),32594.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,201807,Y,P,N,21749.0,,0.0,,21749.0,,11881.0,,649.0,,12530.0,,220528.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),531913.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),499120.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),32793.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,201807,Y,U,Y,21749.0,,0.0,,21749.0,,11881.0,,649.0,,12530.0,,220528.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),531913.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),499120.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),32793.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,201808,Y,P,N,24455.0,,0.0,,24455.0,,13013.0,,690.0,,13703.0,,220757.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),531566.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),498351.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),33215.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,201808,Y,U,Y,24455.0,,0.0,,24455.0,,13013.0,,690.0,,13703.0,,220757.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),531566.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),498351.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),33215.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,201809,Y,P,N,20319.0,,0.0,,20319.0,,11109.0,,644.0,,11753.0,,219504.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),528360.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),495042.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),33318.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,201809,Y,U,Y,20319.0,,0.0,,20319.0,,11109.0,,644.0,,11753.0,,219504.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),528360.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),495042.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),33318.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,201810,Y,P,N,22447.0,,0.0,,22447.0,,12091.0,,750.0,,12841.0,,218842.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),526393.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),493100.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),33293.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,201810,Y,U,Y,22447.0,,0.0,,22447.0,,12091.0,,750.0,,12841.0,,218842.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),526393.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),493100.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),33293.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,201811,Y,P,N,19948.0,,0.0,,19948.0,,11072.0,,622.0,,11694.0,,217989.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),523186.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),489834.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),33352.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,201811,Y,U,Y,19948.0,,0.0,,19948.0,,11072.0,,622.0,,11694.0,,217989.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),523186.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),489834.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),33352.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,201812,Y,P,N,19569.0,,0.0,,19569.0,,10569.0,,586.0,,11155.0,,217012.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),520930.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),487719.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),33211.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,201812,Y,U,Y,19569.0,,0.0,,19569.0,,10569.0,,586.0,,11155.0,,217012.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),520930.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),487719.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),33211.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,201901,Y,P,N,28185.0,,0.0,,28185.0,,16810.0,,976.0,,17786.0,,217073.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),520510.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),487101.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),33409.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,201901,Y,U,Y,28185.0,,0.0,,28185.0,,16810.0,,976.0,,17786.0,,217073.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),520510.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),487101.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),33409.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,201902,Y,P,N,21036.0,,0.0,,21036.0,,11056.0,,544.0,,11600.0,,217717.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),520691.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),487273.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),33418.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,3316.0,,3970.0,,4717.0,,667.0,,432.0,,,,,,, +WV,West Virginia,201902,Y,U,Y,21036.0,,0.0,,21036.0,,11056.0,,544.0,,11600.0,,217717.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),520691.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),487273.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),33418.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,3316.0,,3970.0,,4717.0,,667.0,,432.0,,,,,,, +WV,West Virginia,201903,Y,P,N,22002.0,,0.0,,22002.0,,12069.0,,699.0,,12768.0,,216028.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),517729.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),483898.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),33831.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,3516.0,,4160.0,,4895.0,,674.0,,453.0,,,,,,, +WV,West Virginia,201903,Y,U,Y,22002.0,,0.0,,22002.0,,12069.0,,699.0,,12768.0,,216028.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),517729.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),483898.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),33831.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,3516.0,,4160.0,,4895.0,,674.0,,453.0,,,,,,, +WV,West Virginia,201904,Y,P,N,22021.0,,0.0,,22021.0,,12440.0,,707.0,,13147.0,,215870.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),517138.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),484257.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),32881.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,3730.0,,4846.0,,4150.0,,637.0,,395.0,,,,,,, +WV,West Virginia,201904,Y,U,Y,22021.0,,0.0,,22021.0,,12440.0,,707.0,,13147.0,,215870.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),517138.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),484257.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),32881.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,3730.0,,4846.0,,4150.0,,637.0,,395.0,,,,,,, +WV,West Virginia,201905,Y,P,N,19989.0,,0.0,,19989.0,,10977.0,,558.0,,11535.0,,215505.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),516475.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),483559.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),32916.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,201905,Y,U,Y,19989.0,,0.0,,19989.0,,10977.0,,558.0,,11535.0,,215505.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),516475.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),483559.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),32916.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,201906,Y,P,N,17916.0,,0.0,,17916.0,,10214.0,,517.0,,10731.0,,214636.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),515142.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),482106.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),33036.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,201906,Y,U,Y,17916.0,,0.0,,17916.0,,10214.0,,517.0,,10731.0,,214636.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),515142.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),482106.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),33036.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,201907,Y,P,N,19921.0,,0.0,,19921.0,,12347.0,,632.0,,12979.0,,215260.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),516488.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),483429.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),33059.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,201907,Y,U,Y,19921.0,,0.0,,19921.0,,12347.0,,632.0,,12979.0,,215260.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),516488.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),483429.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),33059.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,201908,Y,P,N,20088.0,,0.0,,20088.0,,12774.0,,759.0,,13533.0,,215174.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),516500.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),483250.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),33250.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,201908,Y,U,Y,20088.0,,0.0,,20088.0,,12774.0,,759.0,,13533.0,,215174.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),516500.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),483250.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),33250.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,201909,Y,P,N,18431.0,,0.0,,18431.0,,11426.0,,629.0,,12055.0,,214481.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),514946.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),481711.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),33235.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,201909,Y,U,Y,18431.0,,0.0,,18431.0,,11426.0,,629.0,,12055.0,,214481.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),514946.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),481711.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),33235.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,201910,Y,P,N,19826.0,,0.0,,19826.0,,12438.0,,677.0,,13115.0,,214181.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),514890.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),481706.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),33184.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,201910,Y,U,Y,19826.0,,0.0,,19826.0,,12438.0,,677.0,,13115.0,,214181.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),514890.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),481706.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),33184.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,201911,Y,P,N,17313.0,,0.0,,17313.0,,10606.0,,633.0,,11239.0,,213346.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),513394.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),480178.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),33216.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,201911,Y,U,Y,17313.0,,0.0,,17313.0,,10606.0,,633.0,,11239.0,,213346.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),513394.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),480178.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),33216.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,201912,Y,P,N,18447.0,,0.0,,18447.0,,10599.0,,599.0,,11198.0,,213146.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),512933.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),479633.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),33300.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,201912,Y,U,Y,18447.0,,0.0,,18447.0,,10599.0,,599.0,,11198.0,,213146.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),512933.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),479633.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),33300.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,202001,Y,P,N,22636.0,,0.0,,22636.0,,14564.0,,891.0,,15455.0,,213476.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),513405.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),479986.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),33419.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,202001,Y,U,Y,22636.0,,0.0,,22636.0,,14564.0,,891.0,,15455.0,,213476.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),513405.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),479986.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),33419.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,202002,Y,P,N,18371.0,,0.0,,18371.0,,10577.0,,604.0,,11181.0,,213905.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),512916.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),479447.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),33469.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,2987.0,,3711.0,,4609.0,,820.0,,422.0,,,,,,, +WV,West Virginia,202002,Y,U,Y,18371.0,,0.0,,18371.0,,10577.0,,604.0,,11181.0,,213905.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),512916.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),479447.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),33469.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,2987.0,,3711.0,,4609.0,,820.0,,422.0,,,,,,, +WV,West Virginia,202003,Y,P,N,18709.0,,0.0,,18709.0,,11896.0,,756.0,,12652.0,,213427.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),511499.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),478123.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),33376.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,2753.0,,4139.0,,4301.0,,801.0,,415.0,,,,,,, +WV,West Virginia,202003,Y,U,Y,18709.0,,0.0,,18709.0,,11896.0,,756.0,,12652.0,,213427.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),511499.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),478123.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),33376.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,2753.0,,4139.0,,4301.0,,801.0,,415.0,,,,,,, +WV,West Virginia,202004,Y,P,N,16892.0,,0.0,,16892.0,,9868.0,,430.0,,10298.0,,215961.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),519910.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),486065.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),33845.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,1743.0,,4219.0,,2675.0,,447.0,,244.0,,,,,,, +WV,West Virginia,202004,Y,U,Y,16892.0,,0.0,,16892.0,,9868.0,,430.0,,10298.0,,215961.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),519910.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),486065.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),33845.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,1743.0,,4219.0,,2675.0,,447.0,,244.0,,,,,,, +WV,West Virginia,202005,Y,P,N,12223.0,,0.0,,12223.0,,6205.0,,283.0,,6488.0,,217853.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),526327.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),492547.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),33780.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,202005,Y,U,Y,12223.0,,0.0,,12223.0,,6205.0,,283.0,,6488.0,,217853.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),526327.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),492547.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),33780.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,202006,Y,P,N,11020.0,,0.0,,11020.0,,6378.0,,279.0,,6657.0,,219738.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),532776.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),498858.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),33918.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,202006,Y,U,Y,11020.0,,0.0,,11020.0,,6378.0,,279.0,,6657.0,,219738.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),532776.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),498858.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),33918.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,202007,Y,P,N,13537.0,,0.0,,13537.0,,7314.0,,283.0,,7597.0,,221406.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),538836.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),504774.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),34062.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,202007,Y,U,Y,13537.0,,0.0,,13537.0,,7314.0,,283.0,,7597.0,,221406.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),538836.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),504774.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),34062.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,202008,Y,P,N,14128.0,,0.0,,14128.0,,7291.0,,305.0,,7596.0,,223155.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),545421.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),511151.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),34270.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,202008,Y,U,Y,14128.0,,0.0,,14128.0,,7291.0,,305.0,,7596.0,,223155.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),545421.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),511151.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),34270.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,202009,Y,P,N,15167.0,,0.0,,15167.0,,7069.0,,297.0,,7366.0,,224634.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),551152.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),517136.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),34016.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,202009,Y,U,Y,15167.0,,0.0,,15167.0,,7069.0,,297.0,,7366.0,,224634.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),551152.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),517136.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),34016.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,202010,Y,P,N,15100.0,,0.0,,15100.0,,6860.0,,288.0,,7148.0,,225927.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),556565.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),522601.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),33964.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,202010,Y,U,Y,15100.0,,0.0,,15100.0,,6860.0,,288.0,,7148.0,,225927.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),556565.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),522601.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),33964.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,202011,Y,P,N,11900.0,,0.0,,11900.0,,7254.0,,251.0,,7505.0,,226817.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),561772.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),527718.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),34054.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,202011,Y,U,Y,11900.0,,0.0,,11900.0,,7254.0,,251.0,,7505.0,,226817.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),561772.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),527718.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),34054.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,202012,Y,P,N,15151.0,,0.0,,15151.0,,6424.0,,228.0,,6652.0,,227781.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),566858.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),532826.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),34032.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,202012,Y,U,Y,15151.0,,0.0,,15151.0,,6424.0,,228.0,,6652.0,,227781.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),566858.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),532826.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),34032.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,202101,Y,P,N,14293.0,,0.0,,14293.0,,5443.0,,233.0,,5676.0,,228812.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),571427.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),537851.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),33576.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,202101,Y,U,Y,14293.0,,0.0,,14293.0,,5443.0,,233.0,,5676.0,,228812.0,,571427.0,,537851.0,,33576.0,,,,,,,,,,,,,,,,,,, +WV,West Virginia,202102,Y,P,N,14225.0,,0.0,,14225.0,,5107.0,,206.0,,5313.0,,229823.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),575627.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),542003.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),33624.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,1331.0,,2067.0,,2637.0,,599.0,,525.0,,,,,,, +WV,West Virginia,202102,Y,U,Y,14225.0,,0.0,,14225.0,,5107.0,,206.0,,5313.0,,229823.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),575627.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),542003.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),33624.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,1331.0,,2067.0,,2637.0,,599.0,,525.0,,,,,,, +WV,West Virginia,202103,Y,P,N,15955.0,,0.0,,15955.0,,6161.0,,260.0,,6421.0,,231045.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),580258.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),546578.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),33680.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,1815.0,,2891.0,,3066.0,,759.0,,435.0,,,,,,, +WV,West Virginia,202103,Y,U,Y,15955.0,,0.0,,15955.0,,6161.0,,260.0,,6421.0,,231045.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),580258.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),546578.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),33680.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,1815.0,,2891.0,,3066.0,,759.0,,435.0,,,,,,, +WV,West Virginia,202104,Y,P,N,13026.0,,0.0,,13026.0,,4904.0,,201.0,,5105.0,,231745.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),583396.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),550449.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),32947.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,1748.0,,2548.0,,2405.0,,362.0,,220.0,,,,,,, +WV,West Virginia,202104,Y,U,Y,13026.0,,0.0,,13026.0,,4904.0,,201.0,,5105.0,,231745.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),583396.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),550449.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),32947.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,1748.0,,2548.0,,2405.0,,362.0,,220.0,,,,,,, +WV,West Virginia,202105,Y,P,N,11029.0,,0.0,,11029.0,,4430.0,,190.0,,4620.0,,232066.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),586461.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),553550.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),32911.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,202105,Y,U,Y,11029.0,,0.0,,11029.0,,4430.0,,190.0,,4620.0,,232066.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),586461.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),553550.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),32911.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,202106,Y,P,N,11758.0,,0.0,,11758.0,,4459.0,,154.0,,4613.0,,232736.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),589890.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),556951.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),32939.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,202106,Y,U,Y,11758.0,,0.0,,11758.0,,4459.0,,154.0,,4613.0,,232736.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),589890.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),556951.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),32939.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,202107,Y,P,N,12574.0,,0.0,,12574.0,,5024.0,,224.0,,5248.0,,233521.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),593834.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),561050.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),32784.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,202107,Y,U,Y,12574.0,,0.0,,12574.0,,5024.0,,224.0,,5248.0,,233521.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),593834.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),561050.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),32784.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,202108,Y,P,N,14122.0,,0.0,,14122.0,,5632.0,,237.0,,5869.0,,234662.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),598135.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),565281.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),32854.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,202108,Y,U,Y,14122.0,,0.0,,14122.0,,5632.0,,237.0,,5869.0,,234662.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),598135.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),565281.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),32854.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,202109,Y,P,N,12877.0,,0.0,,12877.0,,4979.0,,238.0,,5217.0,,235598.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),601656.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),568738.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),32918.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,202109,Y,U,Y,12877.0,,0.0,,12877.0,,4979.0,,238.0,,5217.0,,235598.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),601656.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),568738.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),32918.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,202110,Y,P,N,12506.0,,0.0,,12506.0,,4771.0,,219.0,,4990.0,,236234.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),604670.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),571588.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),33082.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,202110,Y,U,Y,12506.0,,0.0,,12506.0,,4771.0,,219.0,,4990.0,,236234.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),604670.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),571588.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),33082.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,202111,Y,P,N,12654.0,,0.0,,12654.0,,4613.0,,157.0,,4770.0,,236963.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),608227.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),575100.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),33127.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,202111,Y,U,Y,12654.0,,0.0,,12654.0,,4613.0,,157.0,,4770.0,,236963.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),608227.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),575100.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),33127.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,202112,Y,P,N,18447.0,,0.0,,18447.0,,10599.0,,599.0,,11198.0,,237804.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),611926.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),578689.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),33237.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,202112,Y,U,Y,18447.0,,0.0,,18447.0,,10599.0,,599.0,,11198.0,,237804.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),611926.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),578689.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),33237.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,,,,,,,,,,,,,,,, +WV,West Virginia,202201,Y,P,N,12926.0,,0.0,,12926.0,,4531.0,,218.0,,4749.0,,238609.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),615440.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),582081.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),33359.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,1626.0,,1765.0,,2255.0,,794.0,,481.0,,,,,,, +WV,West Virginia,202201,Y,U,Y,12926.0,,0.0,,12926.0,,4531.0,,218.0,,4749.0,,238609.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),615440.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),582081.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),33359.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,1626.0,,1765.0,,2255.0,,794.0,,481.0,,,,,,, +WV,West Virginia,202202,Y,P,N,13835.0,,0.0,,13835.0,,4443.0,,170.0,,4613.0,,239430.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),618228.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),584648.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),33580.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,1410.0,,1707.0,,2294.0,,492.0,,355.0,,,,,,, +WV,West Virginia,202202,Y,U,Y,13835.0,,0.0,,13835.0,,4443.0,,170.0,,4613.0,,239430.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),618228.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),584648.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),33580.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,1410.0,,1707.0,,2294.0,,492.0,,355.0,,,,,,, +WV,West Virginia,202203,Y,P,N,14561.0,,0.0,,14561.0,,5100.0,,180.0,,5280.0,,240226.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),621399.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),587438.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),33961.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,1842.0,,2149.0,,2571.0,,615.0,,400.0,,,,,,, +WV,West Virginia,202203,Y,U,Y,14561.0,,0.0,,14561.0,,5100.0,,180.0,,5280.0,,240226.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),621399.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),587438.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),33961.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,1842.0,,2149.0,,2571.0,,615.0,,400.0,,,,,,, +WV,West Virginia,202204,Y,P,N,12244.0,,0.0,,12244.0,,4450.0,,170.0,,4620.0,,240584.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),623637.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),591842.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),31795.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,1644.0,,2135.0,,2035.0,,406.0,,221.0,,,,,,, +WV,West Virginia,202204,Y,U,Y,12244.0,,0.0,,12244.0,,4450.0,,170.0,,4620.0,,240584.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),623637.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),591842.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),31795.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,1644.0,,2135.0,,2035.0,,406.0,,221.0,,,,,,, +WV,West Virginia,202205,Y,P,N,10942.0,,0.0,,10942.0,,3951.0,,142.0,,4093.0,,240921.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),625990.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),594018.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),31972.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,1531.0,,1989.0,,1653.0,,305.0,,265.0,,,,,,, +WV,West Virginia,202205,Y,U,Y,10942.0,,0.0,,10942.0,,3951.0,,142.0,,4093.0,,240921.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),625990.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),594018.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),31972.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,1531.0,,1989.0,,1653.0,,305.0,,265.0,,,,,,, +WV,West Virginia,202206,Y,P,N,11678.0,,0.0,,11678.0,,4284.0,,213.0,,4497.0,,241495.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),628731.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),596443.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),32288.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,1654.0,,1933.0,,2183.0,,386.0,,193.0,,,,,,, +WV,West Virginia,202206,Y,U,Y,11678.0,,0.0,,11678.0,,4284.0,,213.0,,4497.0,,241495.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),628731.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),596443.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),32288.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,1654.0,,1933.0,,2183.0,,386.0,,193.0,,,,,,, +WV,West Virginia,202207,Y,P,N,8019.0,,0.0,,8019.0,,2651.0,,87.0,,2738.0,,242081.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),631256.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),598790.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),32466.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,1087.0,,1064.0,,1755.0,,301.0,,137.0,,,,,,, +WV,West Virginia,202207,Y,U,Y,8019.0,,0.0,,8019.0,,2651.0,,87.0,,2738.0,,242081.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),631256.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),598790.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),32466.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,1087.0,,1064.0,,1755.0,,301.0,,137.0,,,,,,, +WV,West Virginia,202208,Y,P,N,17101.0,,0.0,,17101.0,,6058.0,,247.0,,6305.0,,243554.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),635927.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),603340.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),32587.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,1941.0,,2376.0,,3328.0,,932.0,,535.0,,,,,,, +WV,West Virginia,202208,Y,U,Y,17101.0,,0.0,,17101.0,,6058.0,,247.0,,6305.0,,243554.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),635927.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),603340.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),32587.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,1941.0,,2376.0,,3328.0,,932.0,,535.0,,,,,,, +WV,West Virginia,202209,Y,P,N,14424.0,,0.0,,14424.0,,4445.0,,184.0,,4629.0,,242694.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),635849.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),602640.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),33209.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,1611.0,,1810.0,,2191.0,,528.0,,399.0,,,,,,, +WV,West Virginia,202209,Y,U,Y,14424.0,,0.0,,14424.0,,4445.0,,184.0,,4629.0,,242694.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),635849.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),602640.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),33209.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,1611.0,,1810.0,,2191.0,,528.0,,399.0,,,,,,, +WV,West Virginia,202210,Y,P,N,11567.0,,0.0,,11567.0,,4178.0,,163.0,,4341.0,,243129.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),638595.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),605209.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),33386.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,1563.0,,1811.0,,2053.0,,442.0,,329.0,,,,,,, +WV,West Virginia,202210,Y,U,Y,11567.0,,0.0,,11567.0,,4178.0,,163.0,,4341.0,,243129.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),638595.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),605209.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),33386.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,1563.0,,1811.0,,2053.0,,442.0,,329.0,,,,,,, +WV,West Virginia,202211,Y,P,N,11276.0,,0.0,,11276.0,,4184.0,,160.0,,4344.0,,243464.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),640820.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),607347.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),33473.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,1817.0,,1641.0,,2143.0,,456.0,,281.0,,,,,,, +WV,West Virginia,202211,Y,U,Y,11276.0,,0.0,,11276.0,,4184.0,,160.0,,4344.0,,243464.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),640820.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),607347.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),33473.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,1817.0,,1641.0,,2143.0,,456.0,,281.0,,,,,,, +WV,West Virginia,202212,Y,P,N,12230.0,,0.0,,12230.0,,4087.0,,171.0,,4258.0,,244495.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),645172.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),611359.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),33813.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,1703.0,,1279.0,,2445.0,,690.0,,268.0,,,,,,, +WV,West Virginia,202212,Y,U,Y,12230.0,,0.0,,12230.0,,4087.0,,171.0,,4258.0,,244495.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),645172.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),611359.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),33813.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,1703.0,,1279.0,,2445.0,,690.0,,268.0,,,,,,, +WV,West Virginia,202301,Y,P,N,13796.0,,0.0,,13796.0,,4673.0,,223.0,,4896.0,,244926.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),647809.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),613720.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),34089.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,1680.0,,1612.0,,2288.0,,895.0,,724.0,,,,,,, +WV,West Virginia,202301,Y,U,Y,13796.0,,0.0,,13796.0,,4673.0,,223.0,,4896.0,,244926.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),647809.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),613720.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),34089.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,1680.0,,1612.0,,2288.0,,895.0,,724.0,,,,,,, +WV,West Virginia,202302,Y,P,N,14594.0,,0.0,,14594.0,,3954.0,,156.0,,4110.0,,245501.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),650328.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),615929.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),34399.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,1439.0,,1507.0,,2188.0,,643.0,,450.0,,,,,,, +WV,West Virginia,202302,Y,U,Y,14594.0,,0.0,,14594.0,,3954.0,,156.0,,4110.0,,245501.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),650328.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),615929.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),34399.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,1439.0,,1507.0,,2188.0,,643.0,,450.0,,,,,,, +WV,West Virginia,202303,Y,P,N,13214.0,,0.0,,13214.0,,4300.0,,167.0,,4467.0,,246350.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),653050.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),617974.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),35076.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,1483.0,,1839.0,,2127.0,,569.0,,390.0,,24350.0,Does not include all calls received after business hours; Includes calls for other benefit programs,6.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.134,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WV,West Virginia,202303,Y,U,Y,13214.0,,0.0,,13214.0,,4300.0,,167.0,,4467.0,,246350.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),653050.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),617974.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),35076.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,1483.0,,1839.0,,2127.0,,569.0,,390.0,,24350.0,Does not include all calls received after business hours; Includes calls for other benefit programs,6.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.134,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WV,West Virginia,202304,Y,P,N,12654.0,,0.0,,12654.0,,4048.0,,234.0,,4282.0,,246824.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),655024.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),623807.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),31217.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,1356.0,,1871.0,,2478.0,,546.0,,217.0,,19747.0,Does not include all calls received after business hours; Includes calls for other benefit programs,5.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.088,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WV,West Virginia,202304,Y,U,Y,12654.0,,0.0,,12654.0,,4048.0,,234.0,,4282.0,,246824.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),655024.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),623807.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),31217.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,1356.0,,1871.0,,2478.0,,546.0,,217.0,,19747.0,Does not include all calls received after business hours; Includes calls for other benefit programs,5.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.088,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WV,West Virginia,202305,Y,P,N,15092.0,,0.0,,15092.0,,6354.0,,530.0,,6884.0,,241044.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),634686.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),602311.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),32375.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,1834.0,,2771.0,,3830.0,,822.0,,397.0,,26470.0,Does not include all calls received after business hours; Includes calls for other benefit programs,9.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.191,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WV,West Virginia,202305,Y,U,Y,15092.0,,0.0,,15092.0,,6354.0,,530.0,,6884.0,,241044.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),634686.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),602311.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),32375.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,1834.0,,2771.0,,3830.0,,822.0,,397.0,,26470.0,Does not include all calls received after business hours; Includes calls for other benefit programs,9.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.191,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WV,West Virginia,202306,Y,P,N,15021.0,,0.0,,15021.0,,6979.0,,617.0,,7596.0,,234300.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),612497.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),578878.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),33619.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,1813.0,,2566.0,,3757.0,,1014.0,,363.0,,28501.0,Does not include all calls received after business hours; Includes calls for other benefit programs,12.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.255,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WV,West Virginia,202306,Y,U,Y,15021.0,,0.0,,15021.0,,6979.0,,617.0,,7596.0,,234300.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),612497.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),578878.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),33619.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,1813.0,,2566.0,,3757.0,,1014.0,,363.0,,28501.0,Does not include all calls received after business hours; Includes calls for other benefit programs,12.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.255,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WV,West Virginia,202307,Y,P,N,14851.0,,0.0,,14851.0,,7706.0,,659.0,,8365.0,,230058.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),596525.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),561672.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),34853.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,1652.0,,2108.0,,3996.0,,1469.0,,702.0,,30919.0,Does not include all calls received after business hours; Includes calls for other benefit programs,12.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.256,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WV,West Virginia,202307,Y,U,Y,14851.0,,0.0,,14851.0,,7706.0,,659.0,,8365.0,,230058.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),596525.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),561672.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),34853.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,1652.0,,2108.0,,3996.0,,1469.0,,702.0,,30919.0,Does not include all calls received after business hours; Includes calls for other benefit programs,12.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.256,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WV,West Virginia,202308,Y,P,N,18568.0,,0.0,,18568.0,,9613.0,,925.0,,10538.0,,228581.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),583137.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),546954.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),36183.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,1855.0,,2716.0,,4862.0,,1947.0,,1125.0,,37539.0,Does not include all calls received after business hours; Includes calls for other benefit programs,11.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.187,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WV,West Virginia,202308,Y,U,Y,18568.0,,0.0,,18568.0,,9613.0,,925.0,,10538.0,,228581.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),583137.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),546954.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),36183.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,1855.0,,2716.0,,4862.0,,1947.0,,1125.0,,37539.0,Does not include all calls received after business hours; Includes calls for other benefit programs,11.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.187,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WV,West Virginia,202309,Y,P,N,17634.0,,0.0,,17634.0,,9324.0,,944.0,,10268.0,,225778.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),569293.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),532245.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),37048.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,1725.0,,2195.0,,4196.0,,1905.0,,1503.0,,49128.0,Does not include all calls received after business hours; Includes calls for other benefit programs,11.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.261,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WV,West Virginia,202309,Y,U,Y,17634.0,,0.0,,17634.0,,9324.0,,944.0,,10268.0,,225778.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),569293.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),532245.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),37048.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,1725.0,,2195.0,,4196.0,,1905.0,,1503.0,,49128.0,Does not include all calls received after business hours; Includes calls for other benefit programs,11.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.261,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WV,West Virginia,202310,Y,P,N,19025.0,,0.0,,19025.0,,10504.0,,1085.0,,11589.0,,228412.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),560937.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),523712.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),37225.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,1947.0,,2169.0,,4303.0,,1915.0,,1790.0,,32443.0,Does not include all calls received after business hours; Includes calls for other benefit programs,13.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.229,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WV,West Virginia,202310,Y,U,Y,19025.0,,0.0,,19025.0,,10504.0,,1085.0,,11589.0,,228412.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),560937.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),523712.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),37225.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,1947.0,,2169.0,,4303.0,,1915.0,,1790.0,,32443.0,Does not include all calls received after business hours; Includes calls for other benefit programs,13.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.229,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WV,West Virginia,202311,Y,P,N,16414.0,,0.0,,16414.0,,8114.0,,745.0,,8859.0,,225169.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),548019.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),510144.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),37875.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,2028.0,,1917.0,,3898.0,,1567.0,,1072.0,,33438.0,Does not include all calls received after business hours; Includes calls for other benefit programs,16.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.211,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WV,West Virginia,202311,Y,U,Y,16414.0,,0.0,,16414.0,,8114.0,,745.0,,8859.0,,225169.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),548019.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),510144.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),37875.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,2028.0,,1917.0,,3898.0,,1567.0,,1072.0,,33438.0,Does not include all calls received after business hours; Includes calls for other benefit programs,16.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.211,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WV,West Virginia,202312,Y,P,N,15521.0,,0.0,,15521.0,,7589.0,,740.0,,8329.0,,220642.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),535197.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),497341.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),37856.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,2019.0,,1866.0,,3648.0,,1535.0,,765.0,,41138.0,Does not include all calls received after business hours; Includes calls for other benefit programs,21.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.246,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WV,West Virginia,202312,Y,U,Y,15521.0,,0.0,,15521.0,,7589.0,,740.0,,8329.0,,220642.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),535197.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),497341.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),37856.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,2019.0,,1866.0,,3648.0,,1535.0,,765.0,,41138.0,Does not include all calls received after business hours; Includes calls for other benefit programs,21.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.246,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WV,West Virginia,202401,Y,P,N,19144.0,,0.0,,19144.0,,9301.0,,842.0,,10143.0,,219768.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),528483.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),489769.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),38714.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,2137.0,,2100.0,,4122.0,,2006.0,,1389.0,,35613.0,Does not include all calls received after business hours; Includes calls for other benefit programs,21.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.282,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WV,West Virginia,202401,Y,U,Y,19144.0,,0.0,,19144.0,,9301.0,,842.0,,10143.0,,219768.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),528483.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),489769.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),38714.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,2137.0,,2100.0,,4122.0,,2006.0,,1389.0,,35613.0,Does not include all calls received after business hours; Includes calls for other benefit programs,21.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.282,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WV,West Virginia,202402,Y,P,N,19540.0,,0.0,,19540.0,,9071.0,,843.0,,9914.0,,219109.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),521861.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),482444.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),39417.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,2084.0,,2245.0,,4263.0,,1636.0,,1509.0,,46226.0,Does not include all calls received after business hours; Includes calls for other benefit programs,20.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.231,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WV,West Virginia,202402,Y,U,Y,19540.0,,0.0,,19540.0,,9071.0,,843.0,,9914.0,,219109.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),521861.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),482444.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),39417.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,2084.0,,2245.0,,4263.0,,1636.0,,1509.0,,46226.0,Does not include all calls received after business hours; Includes calls for other benefit programs,20.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.231,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WV,West Virginia,202403,Y,P,N,19344.0,,0.0,,19344.0,,9445.0,,780.0,,10225.0,,218673.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),518153.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),478167.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),39986.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,2088.0,,2516.0,,4231.0,,1619.0,,1398.0,,28606.0,Does not include all calls received after business hours; Includes calls for other benefit programs,10.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.141,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WV,West Virginia,202403,Y,U,Y,19344.0,,0.0,,19344.0,,9445.0,,780.0,,10225.0,,218673.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),518153.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),478167.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),39986.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,2088.0,,2516.0,,4231.0,,1619.0,,1398.0,,28606.0,Does not include all calls received after business hours; Includes calls for other benefit programs,10.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.141,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WV,West Virginia,202404,Y,P,N,16592.0,,0.0,,16592.0,,7898.0,,557.0,,8455.0,,218230.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),515813.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),477327.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),38486.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,1998.0,,2595.0,,3641.0,,1268.0,,867.0,,27494.0,Does not include all calls received after business hours; Includes calls for other benefit programs,10.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.117,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WV,West Virginia,202404,Y,U,Y,16592.0,,0.0,,16592.0,,7898.0,,557.0,,8455.0,,218230.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),515813.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),477327.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),38486.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,1998.0,,2595.0,,3641.0,,1268.0,,867.0,,27494.0,Does not include all calls received after business hours; Includes calls for other benefit programs,10.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.117,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WV,West Virginia,202405,Y,P,N,16038.0,,0.0,,16038.0,,7664.0,,618.0,,8282.0,,209482.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),514248.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),476530.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),37718.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,1991.0,,2620.0,,3996.0,,1033.0,,715.0,,26584.0,Does not include all calls received after business hours; Includes calls for other benefit programs,5.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.038,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WV,West Virginia,202405,Y,U,Y,16038.0,,0.0,,16038.0,,7664.0,,618.0,,8282.0,,209482.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),514248.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),476530.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),37718.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,1991.0,,2620.0,,3996.0,,1033.0,,715.0,,26584.0,Does not include all calls received after business hours; Includes calls for other benefit programs,5.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.038,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WV,West Virginia,202406,Y,P,N,14771.0,,0.0,,14771.0,,7346.0,,626.0,,7972.0,,208628.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),513112.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),475539.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),37573.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,1955.0,,2601.0,,3462.0,,836.0,,597.0,,24143.0,Does not include all calls received after business hours; Includes calls for other benefit programs,9.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.136,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WV,West Virginia,202406,Y,U,Y,14771.0,,0.0,,14771.0,,7346.0,,626.0,,7972.0,,208628.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),513112.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),475539.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),37573.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),,,1955.0,,2601.0,,3462.0,,836.0,,597.0,,24143.0,Does not include all calls received after business hours; Includes calls for other benefit programs,9.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.136,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WV,West Virginia,202407,Y,P,N,15872.0,,0.0,,15872.0,,7855.0,,627.0,,8482.0,,208523.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),513609.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),476150.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),37459.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),305086.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2197.0,,3006.0,,3803.0,,760.0,,427.0,,42980.0,Does not include all calls received after business hours; Includes calls for other benefit programs,16.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.233,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WV,West Virginia,202407,Y,U,Y,15872.0,,0.0,,15872.0,,7855.0,,627.0,,8482.0,,208523.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),513609.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),476150.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),37459.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),305086.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2197.0,,3006.0,,3803.0,,760.0,,427.0,,42980.0,Does not include all calls received after business hours; Includes calls for other benefit programs,16.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.233,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WV,West Virginia,202408,Y,P,N,16723.0,,0.0,,16723.0,,8059.0,,693.0,,8752.0,,208269.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),513741.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),475844.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),37897.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),305472.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2291.0,,3027.0,,3751.0,,944.0,,395.0,,28706.0,Does not include all calls received after business hours; Includes calls for other benefit programs,11.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.159,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WV,West Virginia,202408,Y,U,Y,16723.0,,0.0,,16723.0,,8059.0,,693.0,,8752.0,,208269.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),513741.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),475844.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),37897.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),305472.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2291.0,,3027.0,,3751.0,,944.0,,395.0,,28706.0,Does not include all calls received after business hours; Includes calls for other benefit programs,11.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.159,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WV,West Virginia,202409,Y,P,N,15835.0,,0.0,,15835.0,,7548.0,,657.0,,8205.0,,207682.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),512543.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),474400.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),38143.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),304861.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2085.0,,2915.0,,3355.0,,834.0,,476.0,,26686.0,Does not include all calls received after business hours; Includes calls for other benefit programs,10.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.129,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WV,West Virginia,202409,Y,U,Y,15835.0,,0.0,,15835.0,,7548.0,,657.0,,8205.0,,207682.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),512543.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),474400.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),38143.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),304861.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2085.0,,2915.0,,3355.0,,834.0,,476.0,,26686.0,Does not include all calls received after business hours; Includes calls for other benefit programs,10.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.129,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WV,West Virginia,202410,Y,P,N,16526.0,,0.0,,16526.0,,7815.0,,633.0,,8448.0,,206368.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),510971.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),472816.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),38155.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),304603.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2191.0,,3336.0,,3388.0,,740.0,,406.0,,35302.0,Does not include all calls received after business hours; Includes calls for other benefit programs,11.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.192,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WV,West Virginia,202410,Y,U,Y,16526.0,,0.0,,16526.0,,7815.0,,633.0,,8448.0,,206368.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),510971.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),472816.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),38155.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),304603.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2191.0,,3336.0,,3388.0,,740.0,,406.0,,35302.0,Does not include all calls received after business hours; Includes calls for other benefit programs,11.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.192,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WV,West Virginia,202411,Y,P,N,13338.0,,0.0,,13338.0,,5782.0,,232.0,,6014.0,,204288.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),506861.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),468995.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),37866.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),302573.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1852.0,,2296.0,,2975.0,,625.0,,262.0,,28988.0,Does not include all calls received after business hours; Includes calls for other benefit programs,10.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.182,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WV,West Virginia,202411,Y,U,Y,13338.0,,0.0,,13338.0,,5782.0,,232.0,,6014.0,,204288.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),506861.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),468995.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),37866.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),302573.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),1852.0,,2296.0,,2975.0,,625.0,,262.0,,28988.0,Does not include all calls received after business hours; Includes calls for other benefit programs,10.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.182,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WV,West Virginia,202412,Y,P,N,16774.0,,0.0,,16774.0,,7040.0,,366.0,,7406.0,,202600.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),505131.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),467632.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),37499.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),302531.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2172.0,,1867.0,,3755.0,,1367.0,,448.0,,34197.0,Does not include all calls received after business hours; Includes calls for other benefit programs,11.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.192,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WV,West Virginia,202412,Y,U,Y,16774.0,,0.0,,16774.0,,7040.0,,366.0,,7406.0,,202600.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),505131.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),467632.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),37499.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),302531.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2172.0,,1867.0,,3755.0,,1367.0,,448.0,,34197.0,Does not include all calls received after business hours; Includes calls for other benefit programs,11.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.192,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WV,West Virginia,202501,Y,P,N,19320.0,,0.0,,19320.0,,8189.0,,509.0,,8698.0,,206291.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),508322.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),470526.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),37796.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),302031.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2322.0,,2749.0,,4108.0,,1797.0,,1013.0,,23496.0,Does not include all calls received after business hours; Includes calls for other benefit programs,11.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.089,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WV,West Virginia,202501,Y,U,Y,19320.0,,0.0,,19320.0,,8189.0,,509.0,,8698.0,,206291.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),508322.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),470526.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),37796.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),302031.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2322.0,,2749.0,,4108.0,,1797.0,,1013.0,,23496.0,Does not include all calls received after business hours; Includes calls for other benefit programs,11.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.089,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WV,West Virginia,202502,Y,P,N,17282.0,,0.0,,17282.0,,7209.0,,425.0,,7634.0,,204844.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),508225.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),467078.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),41147.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),303381.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2193.0,,2751.0,,3657.0,,876.0,,856.0,,20988.0,Does not include all calls received after business hours; Includes calls for other benefit programs,11.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.115,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WV,West Virginia,202502,Y,U,Y,17282.0,,0.0,,17282.0,,7209.0,,425.0,,7634.0,,204844.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),508225.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),467078.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),41147.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),303381.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2193.0,,2751.0,,3657.0,,876.0,,856.0,,20988.0,Does not include all calls received after business hours; Includes calls for other benefit programs,11.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.115,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WV,West Virginia,202503,Y,P,N,18517.0,,0.0,,18517.0,,8264.0,,364.0,,8628.0,,202415.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),505266.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),464821.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),40445.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),302851.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2529.0,,3309.0,,3821.0,,679.0,,452.0,,21009.0,Does not include all calls received after business hours; Includes calls for other benefit programs,7.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.067,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WV,West Virginia,202503,Y,U,Y,18517.0,,0.0,,18517.0,,8264.0,,364.0,,8628.0,,202415.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),505266.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),464821.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),40445.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),302851.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2529.0,,3309.0,,3821.0,,679.0,,452.0,,21009.0,Does not include all calls received after business hours; Includes calls for other benefit programs,7.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.067,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WV,West Virginia,202504,Y,P,N,18685.0,,0.0,,18685.0,,7519.0,,771.0,,8290.0,,201745.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),503701.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),463666.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),40035.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),301956.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2348.0,,3478.0,,3319.0,,499.0,,259.0,,19105.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.042,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WV,West Virginia,202504,Y,U,Y,18685.0,,0.0,,18685.0,,7519.0,,771.0,,8290.0,,201745.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),503701.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),463666.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),40035.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),301956.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2348.0,,3478.0,,3319.0,,499.0,,259.0,,19105.0,Does not include all calls received after business hours; Includes calls for other benefit programs,1.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.042,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WV,West Virginia,202505,Y,P,N,17253.0,,0.0,,17253.0,,6732.0,,629.0,,7361.0,,201445.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),503031.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),462965.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),40066.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),301586.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2121.0,,3176.0,,3282.0,,459.0,,171.0,,18645.0,Does not include all calls received after business hours; Includes calls for other benefit programs,4.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.012,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WV,West Virginia,202505,Y,U,Y,17253.0,,0.0,,17253.0,,6732.0,,629.0,,7361.0,,201445.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),503031.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),462965.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),40066.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),301586.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2121.0,,3176.0,,3282.0,,459.0,,171.0,,18645.0,Does not include all calls received after business hours; Includes calls for other benefit programs,4.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.012,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WV,West Virginia,202506,Y,P,N,16677.0,,0.0,,16677.0,,6559.0,,715.0,,7274.0,,200531.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),501577.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),461629.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),39948.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),301046.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2067.0,,2952.0,,3148.0,,393.0,,178.0,,18537.0,Does not include all calls received after business hours; Includes calls for other benefit programs,2.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.022,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WV,West Virginia,202506,Y,U,Y,16677.0,,0.0,,16677.0,,6559.0,,715.0,,7274.0,,200531.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),501577.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),461629.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),39948.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),301046.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2067.0,,2952.0,,3148.0,,393.0,,178.0,,18537.0,Does not include all calls received after business hours; Includes calls for other benefit programs,2.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.022,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WV,West Virginia,202507,Y,P,N,17859.0,,0.0,,17859.0,,6928.0,,678.0,,7606.0,,200179.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),501077.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),461142.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),39935.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),300898.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2224.0,,2847.0,,3671.0,,487.0,,235.0,,36946.0,Does not include all calls received after business hours; Includes calls for other benefit programs,4.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.117,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WV,West Virginia,202507,Y,U,Y,17859.0,,0.0,,17859.0,,6928.0,,678.0,,7606.0,,200179.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),501077.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),461142.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),39935.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),300898.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2224.0,,2847.0,,3671.0,,487.0,,235.0,,36946.0,Does not include all calls received after business hours; Includes calls for other benefit programs,4.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.117,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WV,West Virginia,202508,Y,P,N,18770.0,,0.0,,18770.0,,7627.0,,924.0,,8551.0,,198644.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),498894.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),459501.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),39393.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),300250.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2147.0,,2676.0,,3864.0,,1173.0,,359.0,,30986.0,Does not include all calls received after business hours; Includes calls for other benefit programs,4.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.07,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WV,West Virginia,202508,Y,U,Y,18770.0,,0.0,,18770.0,,7627.0,,924.0,,8551.0,,198644.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),498894.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),459501.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),39393.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),300250.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2147.0,,2676.0,,3864.0,,1173.0,,359.0,,30986.0,Does not include all calls received after business hours; Includes calls for other benefit programs,4.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.07,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WV,West Virginia,202509,Y,P,N,19807.0,,0.0,,19807.0,,8228.0,,1097.0,,9325.0,,198029.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),498188.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),458947.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),39241.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),300159.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2230.0,,2811.0,,3486.0,,1424.0,,656.0,,24391.0,Does not include all calls received after business hours; Includes calls for other benefit programs,4.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.076,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WV,West Virginia,202509,Y,U,Y,19807.0,,0.0,,19807.0,,8228.0,,1097.0,,9325.0,,198029.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),498188.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),458947.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),39241.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),300159.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2230.0,,2811.0,,3486.0,,1424.0,,656.0,,24391.0,Does not include all calls received after business hours; Includes calls for other benefit programs,4.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.076,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WV,West Virginia,202510,Y,P,N,19307.0,,0.0,,19307.0,,7770.0,,1038.0,,8808.0,,197772.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),497764.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),458072.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),39692.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),299992.0,Includes Individuals Enrolled At Any Time in Month (Not a Point-in-Time Count),2228.0,,3036.0,,3752.0,,914.0,,428.0,,22038.0,Does not include all calls received after business hours; Includes calls for other benefit programs,4.0,Call centers offer callbacks; Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent,0.037,Does not include all calls received after business hours; Includes calls for other benefit programs; Includes only calls transferred to a live agent +WY,Wyoming,201309,N,U,Y,,,,,,,,,,,,,,,67518.0,,,,,,,,,,,,,,,,,,,,,,, +WY,Wyoming,201706,N,P,N,1402.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1402.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,0.0,,0.0,,0.0,,37493.0,,60822.0,,56558.0,,4264.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,201706,N,U,Y,1402.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,1402.0,Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,0.0,,0.0,,0.0,,37493.0,,60822.0,,56558.0,,4264.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,201707,N,P,N,1325.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,1325.0,Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,0.0,,0.0,,0.0,,37003.0,,60075.0,,55841.0,,4234.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,201707,N,U,Y,1325.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,1325.0,Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,0.0,,0.0,,0.0,,37003.0,,60075.0,,55841.0,,4234.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,201708,N,P,N,1712.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,1712.0,Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,0.0,,0.0,,0.0,,36924.0,,60072.0,,55730.0,,4342.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,201708,N,U,Y,1712.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,1712.0,Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,0.0,,0.0,,0.0,,36924.0,,60072.0,,55730.0,,4342.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,201709,N,P,N,1794.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1794.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,0.0,,0.0,,0.0,,37135.0,,60091.0,,55694.0,,4397.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,201709,N,U,Y,1794.0,,0.0,,1794.0,,808.0,,0.0,,808.0,,41627.0,,62088.0,,57578.0,,4510.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,201710,N,P,N,1763.0,,0.0,,1763.0,,762.0,,24.0,,786.0,,40757.0,,60928.0,,56425.0,,4503.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,201710,N,U,Y,1763.0,,0.0,,1763.0,,762.0,,24.0,,786.0,,41657.0,,62217.0,,57609.0,,4608.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,201711,N,P,N,2276.0,,0.0,,2276.0,,687.0,,19.0,,706.0,,40113.0,,60010.0,,55460.0,,4550.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,201711,N,U,Y,2276.0,,0.0,,2276.0,,687.0,,19.0,,706.0,,41257.0,,61639.0,,56989.0,,4650.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,201712,N,P,N,1452.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1452.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,634.0,,1268.0,,1902.0,,40293.0,,60042.0,,55403.0,,4639.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,201712,N,U,Y,1452.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,1452.0,Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,634.0,,1268.0,,1902.0,,40929.0,,61072.0,,56433.0,,4639.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,201801,N,P,N,1619.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1619.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,669.0,,28.0,,697.0,,39538.0,,58981.0,,54347.0,,4634.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,201801,N,U,Y,1619.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,1619.0,Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,669.0,,28.0,,697.0,,40822.0,,60806.0,,56039.0,,4767.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,201802,N,P,N,1489.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1489.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,1051.0,,28.0,,1079.0,,39470.0,,58988.0,,54331.0,,4657.0,,,,504.0,,250.0,,560.0,,262.0,,469.0,,,,,,, +WY,Wyoming,201802,N,U,Y,1489.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,1489.0,Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,1051.0,,28.0,,1079.0,,40837.0,,60905.0,,56081.0,,4824.0,,,,504.0,,250.0,,560.0,,262.0,,469.0,,,,,,, +WY,Wyoming,201803,N,P,N,1800.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1800.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,876.0,,36.0,,912.0,,39687.0,,59273.0,,54559.0,,4714.0,,,,610.0,,469.0,,201.0,,39.0,,106.0,,,,,,, +WY,Wyoming,201803,N,U,Y,1800.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,1800.0,Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,876.0,,36.0,,912.0,,40700.0,,60778.0,,55978.0,,4800.0,,,,610.0,,469.0,,201.0,,39.0,,106.0,,,,,,, +WY,Wyoming,201804,N,P,N,1616.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1616.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,712.0,,22.0,,734.0,,39588.0,,59209.0,,54721.0,,4488.0,,,,614.0,,253.0,,261.0,,21.0,,44.0,,,,,,, +WY,Wyoming,201804,N,U,Y,1616.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,1616.0,Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,712.0,,22.0,,734.0,,40566.0,,60619.0,,56035.0,,4584.0,,,,614.0,,253.0,,261.0,,21.0,,44.0,,,,,,, +WY,Wyoming,201805,N,P,N,1499.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1499.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,615.0,,53.0,,668.0,,39162.0,,58652.0,,54145.0,,4507.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,201805,N,U,Y,1499.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,1499.0,Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,615.0,,53.0,,668.0,,40075.0,,59975.0,,55383.0,,4592.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,201806,N,P,N,1392.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1392.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,620.0,,35.0,,655.0,,38840.0,,58173.0,,53702.0,,4471.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,201806,N,U,Y,1392.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,1392.0,Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,620.0,,35.0,,655.0,,39641.0,,59331.0,,54860.0,,4471.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,201807,N,P,N,1476.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1476.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,699.0,,24.0,,723.0,,38640.0,,57970.0,,53515.0,,4455.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,201807,N,U,Y,1476.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,1476.0,Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,699.0,,24.0,,723.0,,39845.0,,59658.0,,55089.0,,4569.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,201808,N,P,N,1745.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1745.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,774.0,,23.0,,797.0,,38622.0,,57969.0,,53489.0,,4480.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,201808,N,U,Y,1745.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,1745.0,Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,774.0,,23.0,,797.0,,39792.0,,59605.0,,54983.0,,4622.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,201809,N,P,N,1438.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1438.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,708.0,,33.0,,741.0,,38405.0,,57554.0,,53099.0,,4455.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,201809,N,U,Y,1438.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,1438.0,Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,708.0,,33.0,,741.0,,39767.0,,59452.0,,54838.0,,4614.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,201810,N,P,N,1575.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1575.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,860.0,,77.0,,937.0,,38673.0,,57891.0,,53399.0,,4492.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,201810,N,U,Y,1575.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,1575.0,Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,860.0,,77.0,,937.0,,39614.0,,59267.0,,54670.0,,4597.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,201811,N,P,N,1477.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1477.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,640.0,,24.0,,664.0,,38397.0,,57372.0,,52803.0,,4569.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,201811,N,U,Y,1477.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,1477.0,Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,640.0,,24.0,,664.0,,39438.0,,58796.0,,54102.0,,4694.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,201812,N,P,N,1515.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1515.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,684.0,,35.0,,719.0,,37796.0,,56471.0,,51992.0,,4479.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,201812,N,U,Y,1515.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,1515.0,Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,629.0,,34.0,,663.0,,38918.0,,58118.0,,53500.0,,4618.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,201901,N,P,N,1769.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1769.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,856.0,,30.0,,886.0,,37572.0,,56276.0,,51778.0,,4498.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,201901,N,U,Y,1769.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,1769.0,Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,856.0,,30.0,,886.0,,38831.0,,58059.0,,53418.0,,4641.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,201902,N,P,N,1242.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1242.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,784.0,,36.0,,820.0,,37132.0,,55702.0,,51148.0,,4554.0,,,,426.0,,184.0,,429.0,,116.0,,291.0,,,,,,, +WY,Wyoming,201902,N,U,Y,1242.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,1242.0,Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,784.0,,36.0,,820.0,,38461.0,,57594.0,,52882.0,,4712.0,,,,426.0,,184.0,,429.0,,116.0,,291.0,,,,,,, +WY,Wyoming,201903,N,P,N,1431.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1431.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,795.0,,35.0,,830.0,,37236.0,,55855.0,,51325.0,,4530.0,,,,448.0,,241.0,,509.0,,29.0,,195.0,,,,,,, +WY,Wyoming,201903,N,U,Y,1431.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,1431.0,Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,795.0,,35.0,,830.0,,38647.0,,57835.0,,53162.0,,4673.0,,,,448.0,,241.0,,509.0,,29.0,,195.0,,,,,,, +WY,Wyoming,201904,N,P,N,1538.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1538.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,832.0,,37.0,,869.0,,37418.0,,56174.0,,51863.0,,4311.0,,,,374.0,,188.0,,661.0,,86.0,,138.0,,,,,,, +WY,Wyoming,201904,N,U,Y,1538.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,1538.0,Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,832.0,,37.0,,869.0,,38753.0,,58027.0,,53354.0,,4673.0,,,,374.0,,188.0,,661.0,,86.0,,138.0,,,,,,, +WY,Wyoming,201905,N,P,N,1490.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1490.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,808.0,,45.0,,853.0,,36497.0,,54968.0,,50705.0,,4263.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,201905,N,U,Y,1490.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,1490.0,Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,808.0,,45.0,,853.0,,37613.0,,56608.0,,52254.0,,4354.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,201906,N,P,N,1307.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1307.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,773.0,,29.0,,802.0,,35967.0,,54245.0,,50053.0,,4192.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,201906,N,U,Y,1307.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,1307.0,Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,773.0,,29.0,,802.0,,37213.0,,56047.0,,51757.0,,4290.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,201907,N,P,N,1436.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1436.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,744.0,,43.0,,787.0,,35601.0,,53871.0,,49676.0,,4195.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,201907,N,U,Y,1436.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,1436.0,Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,744.0,,43.0,,787.0,,37088.0,,55904.0,,51597.0,,4307.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,201908,N,P,N,1703.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1703.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,1118.0,,41.0,,1159.0,,35334.0,,53586.0,,49368.0,,4218.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,201908,N,U,Y,1703.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,1703.0,Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,1118.0,,41.0,,1159.0,,36633.0,,55368.0,,51063.0,,4305.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,201909,N,P,N,1405.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1405.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,876.0,,23.0,,899.0,,35139.0,,53274.0,,49145.0,,4129.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,201909,N,U,Y,1405.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,1405.0,Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,876.0,,23.0,,899.0,,37029.0,,55874.0,,51570.0,,4304.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,201910,N,P,N,1547.0,,0.0,,1547.0,,838.0,,49.0,,887.0,,35498.0,,53858.0,,49701.0,,4157.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,201910,N,U,Y,1547.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,1547.0,Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,838.0,,49.0,,887.0,,36990.0,,55881.0,,51584.0,,4297.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,201911,N,P,N,1675.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1675.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,885.0,,46.0,,931.0,,35452.0,,53843.0,,49656.0,,4187.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,201911,N,U,Y,1675.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,1675.0,Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,885.0,,46.0,,931.0,,36836.0,,55785.0,,51474.0,,4311.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,201912,N,P,N,1607.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1607.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,978.0,,88.0,,1066.0,,35685.0,,54037.0,,49789.0,,4248.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,201912,N,U,Y,1607.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,1607.0,Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,978.0,,88.0,,1066.0,,37074.0,,55974.0,,51613.0,,4361.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,202001,N,P,N,2001.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,2001.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,901.0,,66.0,,967.0,,35912.0,,54241.0,,49943.0,,4298.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,202001,N,U,Y,2001.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,2001.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,901.0,,66.0,,967.0,,37298.0,,56199.0,,51783.0,,4416.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,202002,N,P,N,1627.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1627.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,882.0,,32.0,,914.0,,35870.0,,54133.0,,49763.0,,4370.0,,,,843.0,,187.0,,525.0,,120.0,,52.0,,,,,,, +WY,Wyoming,202002,N,U,Y,1627.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1627.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,882.0,,32.0,,914.0,,37242.0,,56082.0,,51626.0,,4456.0,,,,843.0,,187.0,,525.0,,120.0,,52.0,,,,,,, +WY,Wyoming,202003,N,P,N,1442.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1442.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,868.0,,38.0,,906.0,,36279.0,,54766.0,,50407.0,,4359.0,,,,767.0,,300.0,,351.0,,70.0,,79.0,,,,,,, +WY,Wyoming,202003,N,U,Y,1442.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1442.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,868.0,,38.0,,906.0,,37193.0,,56111.0,,51698.0,,4413.0,,,,767.0,,300.0,,351.0,,70.0,,79.0,,,,,,, +WY,Wyoming,202004,N,P,N,1388.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,1388.0,Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,710.0,,24.0,,734.0,,37593.0,,56827.0,,52567.0,,4260.0,,,,797.0,,331.0,,148.0,,35.0,,33.0,,,,,,, +WY,Wyoming,202004,N,U,Y,1388.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1388.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,710.0,,24.0,,734.0,,38289.0,,57817.0,,53485.0,,4332.0,,,,797.0,,331.0,,148.0,,35.0,,33.0,,,,,,, +WY,Wyoming,202005,N,P,N,1274.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1274.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,617.0,,39.0,,656.0,,38219.0,,57770.0,,53438.0,,4332.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,202005,N,U,Y,1274.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1274.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,617.0,,39.0,,656.0,,38923.0,,58764.0,,54392.0,,4372.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,202006,N,P,N,1510.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1510.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,713.0,,22.0,,735.0,,39312.0,,59302.0,,54911.0,,4391.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,202006,N,U,Y,1510.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1510.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,713.0,,22.0,,735.0,,39955.0,,60261.0,,55841.0,,4420.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,202007,N,P,N,1457.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1457.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,693.0,,22.0,,715.0,,40268.0,,60716.0,,56270.0,,4446.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,202007,N,U,Y,1457.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1457.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,693.0,,22.0,,715.0,,40904.0,,61603.0,,57118.0,,4485.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,202008,N,P,N,1504.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1504.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,731.0,,20.0,,751.0,,40781.0,,61477.0,,57030.0,,4447.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,202008,N,U,Y,1504.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1504.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,731.0,,20.0,,751.0,,41277.0,,62437.0,,57939.0,,4498.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,202009,N,P,N,1429.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1429.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,645.0,,30.0,,675.0,,41371.0,,62643.0,,58127.0,,4516.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,202009,N,U,Y,1429.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1429.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,645.0,,30.0,,675.0,,41775.0,,63245.0,,58711.0,,4534.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,202010,N,P,N,1095.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1095.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,400.0,,11.0,,411.0,,41418.0,,62803.0,,58325.0,,4478.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,202010,N,U,Y,1095.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,1095.0,Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,400.0,,11.0,,411.0,,41954.0,,63624.0,,59102.0,,4522.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,202011,N,P,N,905.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,905.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,435.0,,20.0,,455.0,,41204.0,,62607.0,,58104.0,,4503.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,202011,N,U,Y,905.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,905.0,Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,435.0,,20.0,,455.0,,42088.0,,63836.0,,59265.0,,4571.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,202012,N,P,N,1094.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1094.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,599.0,,21.0,,620.0,,41867.0,,63519.0,,58983.0,,4536.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,202012,N,U,Y,1094.0,Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies; Includes Administrative Data Transfers,0.0,,1094.0,Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications; Includes Administrative Data Transfers,599.0,,21.0,,620.0,,42555.0,,64559.0,,59989.0,,4570.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,202101,N,P,N,1006.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1006.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,516.0,,17.0,,533.0,,42439.0,,64348.0,,59809.0,,4539.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,202101,N,U,Y,1006.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1006.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,516.0,,17.0,,533.0,,43099.0,,65364.0,,60770.0,,4594.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,202102,N,P,N,1003.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1003.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,610.0,,26.0,,636.0,,43034.0,,65245.0,,60645.0,,4600.0,,,,419.0,,56.0,,170.0,,40.0,,448.0,,,,,,, +WY,Wyoming,202102,N,U,Y,1003.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1003.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,568.0,,23.0,,591.0,,43835.0,,66510.0,,61839.0,,4671.0,,,,300.0,,45.0,,141.0,,31.0,,394.0,,,,,,, +WY,Wyoming,202103,N,P,N,1010.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1010.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,669.0,,26.0,,695.0,,43735.0,,66313.0,,61637.0,,4676.0,,,,282.0,,44.0,,112.0,,47.0,,1322.0,,,,,,, +WY,Wyoming,202103,N,U,Y,1010.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1010.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,669.0,,26.0,,695.0,,44429.0,,67377.0,,62659.0,,4718.0,,,,282.0,,44.0,,112.0,,47.0,,1322.0,,,,,,, +WY,Wyoming,202104,N,P,N,961.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,961.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,700.0,,17.0,,717.0,,44228.0,,67098.0,,62410.0,,4688.0,,,,320.0,,65.0,,172.0,,46.0,,1304.0,,,,,,, +WY,Wyoming,202104,N,U,Y,961.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,961.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,700.0,,17.0,,717.0,,44892.0,,68173.0,,63440.0,,4733.0,,,,320.0,,65.0,,172.0,,46.0,,1304.0,,,,,,, +WY,Wyoming,202105,N,P,N,859.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,859.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,565.0,,6.0,,571.0,,44596.0,,67838.0,,63133.0,,4705.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,202105,N,U,Y,859.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,859.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,565.0,,6.0,,571.0,,45252.0,,68855.0,,64110.0,,4745.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,202106,N,P,N,975.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,975.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,547.0,,11.0,,558.0,,44992.0,,68493.0,,63752.0,,4741.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,202106,N,U,Y,975.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,975.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,547.0,,11.0,,558.0,,45597.0,,69413.0,,64655.0,,4758.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,202107,N,P,N,907.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,907.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,633.0,,3.0,,636.0,,45401.0,,69118.0,,64371.0,,4747.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,202107,N,U,Y,907.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,907.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,633.0,,3.0,,636.0,,46051.0,,70089.0,,65310.0,,4779.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,202108,N,P,N,1038.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1038.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,592.0,,11.0,,603.0,,45800.0,,69886.0,,65149.0,,4737.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,202108,N,U,Y,1038.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1038.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,592.0,,11.0,,603.0,,46397.0,,70811.0,,66048.0,,4763.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,202109,N,P,N,961.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,961.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,602.0,,14.0,,616.0,,46045.0,,70439.0,,65679.0,,4760.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,202109,N,U,Y,961.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,961.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,602.0,,14.0,,616.0,,46743.0,,71515.0,,66729.0,,4786.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,202110,N,P,N,950.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,950.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,643.0,,8.0,,651.0,,46453.0,,71196.0,,66439.0,,4757.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,202110,N,U,Y,950.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,950.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,643.0,,8.0,,651.0,,47027.0,,72132.0,,67336.0,,4796.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,202111,N,P,N,992.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,992.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,551.0,,7.0,,558.0,,46699.0,,71760.0,,66993.0,,4767.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,202111,N,U,Y,992.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,992.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,551.0,,7.0,,558.0,,47221.0,,72553.0,,67750.0,,4803.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,202112,N,P,N,948.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,948.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,520.0,,7.0,,527.0,,46802.0,,71963.0,,67189.0,,4774.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,202112,N,U,Y,948.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,948.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,520.0,,7.0,,527.0,,47291.0,,72773.0,,67969.0,,4804.0,,,,,,,,,,,,,,,,,,, +WY,Wyoming,202201,N,P,N,848.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,848.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,461.0,,5.0,,466.0,,47065.0,,72496.0,,67686.0,,4810.0,,,,250.0,,16.0,,50.0,,28.0,,123.0,,,,,,, +WY,Wyoming,202201,N,U,Y,848.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,848.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,461.0,,5.0,,466.0,,47635.0,,73440.0,,68574.0,,4866.0,,,,250.0,,16.0,,50.0,,28.0,,123.0,,,,,,, +WY,Wyoming,202202,N,P,N,667.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,667.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,472.0,,18.0,,490.0,,47279.0,,73028.0,,68184.0,,4844.0,,,,225.0,,22.0,,51.0,,34.0,,202.0,,,,,,, +WY,Wyoming,202202,N,U,Y,667.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,667.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,472.0,,18.0,,490.0,,47972.0,,74185.0,,69299.0,,4886.0,,,,225.0,,22.0,,51.0,,34.0,,202.0,,,,,,, +WY,Wyoming,202203,N,P,N,768.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,768.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,640.0,,22.0,,662.0,,47742.0,,73899.0,,69024.0,,4875.0,,,,253.0,,33.0,,56.0,,26.0,,744.0,,,,,,, +WY,Wyoming,202203,N,U,Y,768.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,768.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,640.0,,22.0,,662.0,,48325.0,,74832.0,,69916.0,,4916.0,,,,253.0,,33.0,,56.0,,26.0,,744.0,,,,,,, +WY,Wyoming,202204,N,P,N,706.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,706.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,529.0,,14.0,,543.0,,47946.0,,74410.0,,69547.0,,4863.0,,,,174.0,,33.0,,33.0,,30.0,,522.0,,,,,,, +WY,Wyoming,202204,N,U,Y,706.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,706.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,529.0,,14.0,,543.0,,48445.0,,75200.0,,70307.0,,4893.0,,,,174.0,,33.0,,33.0,,30.0,,522.0,,,,,,, +WY,Wyoming,202205,N,P,N,803.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,803.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,410.0,,12.0,,422.0,,48087.0,,74733.0,,69863.0,,4870.0,,,,210.0,,32.0,,34.0,,21.0,,410.0,,,,,,, +WY,Wyoming,202205,N,U,Y,803.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,803.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,410.0,,12.0,,422.0,,49245.0,,76431.0,,71472.0,,4959.0,,,,210.0,,32.0,,34.0,,21.0,,410.0,,,,,,, +WY,Wyoming,202206,N,P,N,953.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,953.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,981.0,,39.0,,1020.0,,48971.0,,76122.0,,71201.0,,4921.0,,,,186.0,,17.0,,45.0,,47.0,,1970.0,,,,,,, +WY,Wyoming,202206,N,U,Y,953.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,953.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,981.0,,39.0,,1020.0,,50294.0,,78132.0,,73103.0,,5029.0,,,,186.0,,17.0,,45.0,,47.0,,1970.0,,,,,,, +WY,Wyoming,202207,N,P,N,923.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,923.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,1154.0,,63.0,,1217.0,,50117.0,,78010.0,,72985.0,,5025.0,,,,127.0,,55.0,,297.0,,202.0,,1982.0,,,,,,, +WY,Wyoming,202207,N,U,Y,923.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,923.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,1154.0,,63.0,,1217.0,,50926.0,,79318.0,,74221.0,,5097.0,,,,127.0,,55.0,,297.0,,202.0,,1982.0,,,,,,, +WY,Wyoming,202208,N,P,N,1200.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1200.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,618.0,,50.0,,668.0,,50936.0,,79494.0,,74374.0,,5120.0,,,,173.0,,311.0,,273.0,,30.0,,206.0,,,,,,, +WY,Wyoming,202208,N,U,Y,1200.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1200.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,618.0,,50.0,,668.0,,51421.0,,80208.0,,75060.0,,5148.0,,,,173.0,,311.0,,273.0,,30.0,,206.0,,,,,,, +WY,Wyoming,202209,N,P,N,1078.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1078.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,486.0,,41.0,,527.0,,51184.0,,80071.0,,74939.0,,5132.0,,,,139.0,,375.0,,146.0,,5.0,,94.0,,,,,,, +WY,Wyoming,202209,N,U,Y,1078.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1078.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,486.0,,41.0,,527.0,,51626.0,,80708.0,,75543.0,,5165.0,,,,139.0,,375.0,,146.0,,5.0,,94.0,,,,,,, +WY,Wyoming,202210,N,P,N,1096.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1096.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,457.0,,40.0,,497.0,,51422.0,,80623.0,,75445.0,,5178.0,,,,142.0,,288.0,,130.0,,6.0,,37.0,,,,,,, +WY,Wyoming,202210,N,U,Y,1096.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1096.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,457.0,,40.0,,497.0,,51779.0,,81178.0,,75973.0,,5205.0,,,,142.0,,288.0,,130.0,,6.0,,37.0,,,,,,, +WY,Wyoming,202211,N,P,N,1181.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1181.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,684.0,,40.0,,724.0,,51799.0,,81266.0,,76065.0,,5201.0,,,,151.0,,120.0,,913.0,,13.0,,78.0,,,,,,, +WY,Wyoming,202211,N,U,Y,1181.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1181.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,684.0,,40.0,,724.0,,52383.0,,82120.0,,76879.0,,5241.0,,,,151.0,,120.0,,913.0,,13.0,,78.0,,,,,,, +WY,Wyoming,202212,N,P,N,1022.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1022.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,834.0,,52.0,,886.0,,52528.0,,82405.0,,77159.0,,5246.0,,,,96.0,,139.0,,1217.0,,33.0,,85.0,,,,,,, +WY,Wyoming,202212,N,U,Y,1022.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1022.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,834.0,,52.0,,886.0,,53130.0,,83301.0,,78018.0,,5283.0,,,,96.0,,139.0,,1217.0,,33.0,,85.0,,,,,,, +WY,Wyoming,202301,N,P,N,1205.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1205.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,857.0,,50.0,,907.0,,52932.0,,83205.0,,77932.0,,5273.0,,,,149.0,,81.0,,1130.0,,84.0,,85.0,,,,,,, +WY,Wyoming,202301,N,U,Y,1205.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1205.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,857.0,,50.0,,907.0,,53424.0,,83979.0,,78684.0,,5295.0,,,,149.0,,81.0,,1130.0,,84.0,,85.0,,,,,,, +WY,Wyoming,202302,N,P,N,1004.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1004.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,541.0,,20.0,,561.0,,53089.0,,83749.0,,78482.0,,5267.0,,,,123.0,,359.0,,293.0,,18.0,,57.0,,,,,,, +WY,Wyoming,202302,N,U,Y,1004.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1004.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,541.0,,20.0,,561.0,,53642.0,,84746.0,,79438.0,,5308.0,,,,123.0,,359.0,,293.0,,18.0,,57.0,,,,,,, +WY,Wyoming,202303,N,P,N,1209.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1209.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,583.0,,27.0,,610.0,,53388.0,,84529.0,,79226.0,,5303.0,,,,152.0,,387.0,,94.0,,13.0,,22.0,,9146.0,,0.0,Call centers offer callbacks,0.001,Callbacks are included +WY,Wyoming,202303,N,U,Y,1209.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1209.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,583.0,,27.0,,610.0,,53695.0,,85018.0,,79699.0,,5319.0,,,,152.0,,387.0,,94.0,,13.0,,22.0,,9146.0,,0.0,Call centers offer callbacks,0.001,Callbacks are included +WY,Wyoming,202304,N,P,N,982.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,982.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,477.0,,19.0,,496.0,,53369.0,,84650.0,,79411.0,,5239.0,,,,140.0,,285.0,,229.0,,3.0,,21.0,,8926.0,,0.0,Call centers offer callbacks,0.001,Callbacks are included +WY,Wyoming,202304,N,U,Y,982.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,982.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,477.0,,19.0,,496.0,,53709.0,,85281.0,,79999.0,,5282.0,,,,140.0,,285.0,,229.0,,3.0,,21.0,,8926.0,,0.0,Call centers offer callbacks,0.001,Callbacks are included +WY,Wyoming,202305,N,P,N,1048.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1048.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,544.0,,42.0,,586.0,,53454.0,,84685.0,,79413.0,,5272.0,,,,115.0,,300.0,,271.0,,14.0,,21.0,,9114.0,,0.0,Call centers offer callbacks,0.003,Callbacks are included +WY,Wyoming,202305,N,U,Y,1048.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1048.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,544.0,,42.0,,586.0,,53767.0,,85193.0,,79895.0,,5298.0,,,,115.0,,300.0,,271.0,,14.0,,21.0,,9114.0,,0.0,Call centers offer callbacks,0.003,Callbacks are included +WY,Wyoming,202306,N,P,N,1033.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1033.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,555.0,,24.0,,579.0,,53444.0,,84279.0,,79002.0,,5277.0,,,,159.0,,154.0,,281.0,,15.0,,21.0,,9963.0,,0.0,Call centers offer callbacks,0.004,Callbacks are included +WY,Wyoming,202306,N,U,Y,1033.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1033.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,555.0,,24.0,,579.0,,53765.0,,84816.0,,79517.0,,5299.0,,,,159.0,,154.0,,281.0,,15.0,,21.0,,9963.0,,0.0,Call centers offer callbacks,0.004,Callbacks are included +WY,Wyoming,202307,N,P,N,1071.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1071.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,467.0,,23.0,,490.0,,53260.0,,83981.0,,78742.0,,5239.0,,,,170.0,,44.0,,313.0,,32.0,,19.0,,9896.0,,1.0,Call centers offer callbacks,0.005,Callbacks are included +WY,Wyoming,202307,N,U,Y,1071.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1071.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,467.0,,23.0,,490.0,,54819.0,,85818.0,,79504.0,,6314.0,,,,170.0,,44.0,,313.0,,32.0,,19.0,,9896.0,,1.0,Call centers offer callbacks,0.005,Callbacks are included +WY,Wyoming,202308,N,P,N,1532.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1532.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,687.0,,65.0,,752.0,,47539.0,,74113.0,,69738.0,,4375.0,,,,287.0,,71.0,,384.0,,127.0,,31.0,,14214.0,,7.0,Call centers offer callbacks,0.005,Callbacks are included +WY,Wyoming,202308,N,U,Y,1532.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1532.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,687.0,,65.0,,752.0,,49507.0,,76785.0,,72144.0,,4641.0,,,,287.0,,71.0,,384.0,,127.0,,31.0,,14214.0,,7.0,Call centers offer callbacks,0.005,Callbacks are included +WY,Wyoming,202309,N,P,N,1238.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1238.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,646.0,,83.0,,729.0,,48628.0,,75070.0,,70290.0,,4780.0,,,,212.0,,74.0,,312.0,,210.0,,53.0,,11510.0,,3.0,Call centers offer callbacks,0.001,Callbacks are included +WY,Wyoming,202309,N,U,Y,1117.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1117.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,646.0,,83.0,,729.0,,49226.0,,75996.0,,71134.0,,4862.0,,,,212.0,,74.0,,312.0,,210.0,,53.0,,11510.0,,3.0,Call centers offer callbacks,0.001,Callbacks are included +WY,Wyoming,202310,N,P,N,1286.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1286.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,758.0,,93.0,,851.0,,48897.0,,75389.0,,70488.0,,4901.0,,,,224.0,,168.0,,631.0,,139.0,,99.0,,10791.0,,2.0,Call centers offer callbacks,0.001,Callbacks are included +WY,Wyoming,202310,N,U,Y,1286.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1286.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,758.0,,93.0,,851.0,,49435.0,,76195.0,,71244.0,,4951.0,,,,224.0,,168.0,,631.0,,139.0,,99.0,,10791.0,,2.0,Call centers offer callbacks,0.001,Callbacks are included +WY,Wyoming,202311,N,P,N,1257.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1257.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,645.0,,71.0,,716.0,,48475.0,,74342.0,,69357.0,,4985.0,,,,253.0,,134.0,,657.0,,74.0,,52.0,,11873.0,,1.0,Call centers offer callbacks,0.004,Callbacks are included +WY,Wyoming,202311,N,U,Y,1257.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1257.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,645.0,,71.0,,716.0,,49542.0,,75800.0,,70671.0,,5129.0,,,,253.0,,134.0,,657.0,,74.0,,52.0,,11873.0,,1.0,Call centers offer callbacks,0.004,Callbacks are included +WY,Wyoming,202312,N,P,N,1216.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1216.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,987.0,,142.0,,1129.0,,48222.0,,73362.0,,68231.0,,5131.0,,,,209.0,,80.0,,660.0,,892.0,,25.0,,10564.0,,1.0,Call centers offer callbacks,0.004,Callbacks are included +WY,Wyoming,202312,N,U,Y,1216.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1216.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,987.0,,142.0,,1129.0,,49402.0,,75000.0,,69693.0,,5307.0,,,,209.0,,80.0,,660.0,,892.0,,25.0,,10564.0,,1.0,Call centers offer callbacks,0.004,Callbacks are included +WY,Wyoming,202401,N,P,N,1397.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1397.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,1140.0,,174.0,,1314.0,,48495.0,,73408.0,,68129.0,,5279.0,,,,274.0,,85.0,,793.0,,955.0,,154.0,,13332.0,,2.0,Call centers offer callbacks,0.006,Callbacks are included +WY,Wyoming,202401,N,U,Y,1397.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1397.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,1140.0,,174.0,,1314.0,,49397.0,,74715.0,,69343.0,,5372.0,,,,274.0,,85.0,,793.0,,955.0,,154.0,,13332.0,,2.0,Call centers offer callbacks,0.006,Callbacks are included +WY,Wyoming,202402,N,P,N,1206.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1206.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,704.0,,53.0,,757.0,,48539.0,,73265.0,,67947.0,,5318.0,,,,187.0,,88.0,,401.0,,184.0,,81.0,,11917.0,,2.0,Call centers offer callbacks,0.008,Callbacks are included +WY,Wyoming,202402,N,U,Y,1206.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1206.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,704.0,,53.0,,757.0,,49217.0,,74289.0,,68904.0,,5385.0,,,,187.0,,88.0,,401.0,,184.0,,81.0,,11917.0,,2.0,Call centers offer callbacks,0.008,Callbacks are included +WY,Wyoming,202403,N,P,N,1389.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1389.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,845.0,,52.0,,897.0,,48058.0,,72212.0,,66812.0,,5400.0,,,,210.0,,145.0,,575.0,,170.0,,170.0,,11989.0,,2.0,Call centers offer callbacks,0.006,Callbacks are included +WY,Wyoming,202403,N,U,Y,1389.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1389.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,845.0,,52.0,,897.0,,49126.0,,73834.0,,68356.0,,5478.0,,,,210.0,,145.0,,575.0,,170.0,,170.0,,11989.0,,2.0,Call centers offer callbacks,0.006,Callbacks are included +WY,Wyoming,202404,N,P,N,1690.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1690.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,709.0,,63.0,,772.0,,44135.0,,66431.0,,61396.0,,5035.0,,,,226.0,,235.0,,233.0,,44.0,,124.0,,11664.0,,2.0,Call centers offer callbacks,0.006,Callbacks are included +WY,Wyoming,202404,N,U,Y,1690.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1690.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,709.0,,63.0,,772.0,,45279.0,,68135.0,,62985.0,,5150.0,,,,226.0,,235.0,,233.0,,44.0,,124.0,,11664.0,,2.0,Call centers offer callbacks,0.006,Callbacks are included +WY,Wyoming,202405,N,P,N,1744.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1744.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,778.0,,68.0,,846.0,,44307.0,,66550.0,,61504.0,,5046.0,,,,273.0,,211.0,,447.0,,41.0,,103.0,,12058.0,,2.0,Call centers offer callbacks,0.003,Callbacks are included +WY,Wyoming,202405,N,U,Y,1744.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1744.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,778.0,,68.0,,846.0,,45198.0,,67911.0,,62773.0,,5138.0,,,,273.0,,211.0,,447.0,,41.0,,103.0,,12058.0,,2.0,Call centers offer callbacks,0.003,Callbacks are included +WY,Wyoming,202406,N,P,N,1591.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1591.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,622.0,,50.0,,672.0,,44304.0,,66324.0,,61196.0,,5128.0,,,,194.0,,238.0,,343.0,,44.0,,65.0,,10193.0,,1.0,Call centers offer callbacks,0.001,Callbacks are included +WY,Wyoming,202406,N,U,Y,1591.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1591.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,622.0,,50.0,,672.0,,45114.0,,67548.0,,62330.0,,5218.0,,,,194.0,,238.0,,343.0,,44.0,,65.0,,10193.0,,1.0,Call centers offer callbacks,0.001,Callbacks are included +WY,Wyoming,202407,N,P,N,1642.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1642.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,682.0,,51.0,,733.0,,43936.0,,65619.0,,60438.0,,5181.0,,21683.0,,257.0,,282.0,,418.0,,35.0,,49.0,,12324.0,,1.0,Call centers offer callbacks,0.001,Callbacks are included +WY,Wyoming,202407,N,U,Y,1642.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1642.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,682.0,,51.0,,733.0,,44584.0,,66620.0,,61360.0,,5260.0,,22036.0,,257.0,,282.0,,418.0,,35.0,,49.0,,12324.0,,1.0,Call centers offer callbacks,0.001,Callbacks are included +WY,Wyoming,202408,N,P,N,1870.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1870.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,685.0,,66.0,,751.0,,43564.0,,64672.0,,59343.0,,5329.0,,21108.0,,309.0,,414.0,,268.0,,17.0,,54.0,,12363.0,,1.0,Call centers offer callbacks,0.001,Callbacks are included +WY,Wyoming,202408,N,U,Y,1870.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1870.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,685.0,,66.0,,751.0,,44184.0,,65653.0,,60255.0,,5398.0,,21469.0,,309.0,,414.0,,268.0,,17.0,,54.0,,12363.0,,1.0,Call centers offer callbacks,0.001,Callbacks are included +WY,Wyoming,202409,N,P,N,1643.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1643.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,623.0,,52.0,,675.0,,43146.0,,63916.0,,58476.0,,5440.0,,20770.0,,286.0,,316.0,,339.0,,10.0,,10.0,,11596.0,,1.0,Call centers offer callbacks,0.002,Callbacks are included +WY,Wyoming,202409,N,U,Y,1643.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1643.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,623.0,,52.0,,675.0,,43378.0,,64306.0,,58895.0,,5411.0,,20928.0,,286.0,,316.0,,339.0,,10.0,,10.0,,11596.0,,1.0,Call centers offer callbacks,0.002,Callbacks are included +WY,Wyoming,202410,N,P,N,1838.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1838.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,1379.0,,107.0,,1486.0,,42824.0,,63292.0,,57720.0,,5572.0,,20468.0,,298.0,,348.0,,667.0,,141.0,,340.0,,11534.0,,1.0,Call centers offer callbacks,0.003,Callbacks are included +WY,Wyoming,202410,N,U,Y,1838.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1838.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,1379.0,,107.0,,1486.0,,43307.0,,63994.0,,58368.0,,5626.0,,20687.0,,298.0,,348.0,,667.0,,141.0,,340.0,,11534.0,,1.0,Call centers offer callbacks,0.003,Callbacks are included +WY,Wyoming,202411,N,P,N,1545.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1545.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,1340.0,,106.0,,1446.0,,42717.0,,62877.0,,57107.0,,5770.0,,20160.0,,314.0,,329.0,,1016.0,,159.0,,316.0,,10417.0,,1.0,Call centers offer callbacks,0.007,Callbacks are included +WY,Wyoming,202411,N,U,Y,1545.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1545.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,1340.0,,106.0,,1446.0,,43547.0,,64142.0,,58299.0,,5843.0,,20595.0,,314.0,,329.0,,1016.0,,159.0,,316.0,,10417.0,,1.0,Call centers offer callbacks,0.007,Callbacks are included +WY,Wyoming,202412,N,P,N,1467.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1467.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,1535.0,,109.0,,1644.0,,43047.0,,63214.0,,57320.0,,5894.0,,20167.0,,213.0,,271.0,,1200.0,,335.0,,305.0,,10781.0,,1.0,Call centers offer callbacks,0.003,Callbacks are included +WY,Wyoming,202412,N,U,Y,1467.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1467.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,1535.0,,109.0,,1644.0,,43623.0,,64041.0,,58080.0,,5961.0,,20418.0,,213.0,,271.0,,1200.0,,335.0,,305.0,,10781.0,,1.0,Call centers offer callbacks,0.003,Callbacks are included +WY,Wyoming,202501,N,P,N,1827.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1827.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,1344.0,,108.0,,1452.0,,42759.0,,62693.0,,56654.0,,6039.0,,19934.0,,373.0,,109.0,,476.0,,403.0,,480.0,,13768.0,,1.0,Call centers offer callbacks,0.012,Callbacks are included +WY,Wyoming,202501,N,U,Y,1827.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1827.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,1344.0,,108.0,,1452.0,,43829.0,,64227.0,,58110.0,,6117.0,,20398.0,,373.0,,109.0,,476.0,,403.0,,480.0,,13768.0,,1.0,Call centers offer callbacks,0.012,Callbacks are included +WY,Wyoming,202502,N,P,N,1452.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1452.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,1523.0,,70.0,,1593.0,,42719.0,,62570.0,,56403.0,,6167.0,,19851.0,,264.0,,97.0,,550.0,,341.0,,983.0,,11199.0,,1.0,Call centers offer callbacks,0.011,Callbacks are included +WY,Wyoming,202502,N,U,Y,1452.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1452.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,1523.0,,70.0,,1593.0,,43527.0,,63816.0,,57698.0,,6118.0,,20289.0,,264.0,,97.0,,550.0,,341.0,,983.0,,11199.0,,1.0,Call centers offer callbacks,0.011,Callbacks are included +WY,Wyoming,202503,N,P,N,1526.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1526.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,1337.0,,87.0,,1424.0,,42524.0,,62334.0,,56401.0,,5933.0,,19810.0,,255.0,,140.0,,594.0,,227.0,,566.0,,12254.0,,2.0,Call centers offer callbacks,0.023,Callbacks are included +WY,Wyoming,202503,N,U,Y,1526.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1526.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,1337.0,,87.0,,1424.0,,43273.0,,63417.0,,57366.0,,6051.0,,20144.0,,255.0,,140.0,,594.0,,227.0,,566.0,,12254.0,,2.0,Call centers offer callbacks,0.023,Callbacks are included +WY,Wyoming,202504,N,P,N,1539.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1539.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,1279.0,,95.0,,1374.0,,42531.0,,62182.0,,56143.0,,6039.0,,19651.0,,241.0,,176.0,,578.0,,150.0,,410.0,,11489.0,,1.0,Call centers offer callbacks,0.02,Callbacks are included +WY,Wyoming,202504,N,U,Y,1539.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1539.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,1279.0,,95.0,,1374.0,,43124.0,,63078.0,,56972.0,,6106.0,,19954.0,,241.0,,176.0,,578.0,,150.0,,410.0,,11489.0,,1.0,Call centers offer callbacks,0.02,Callbacks are included +WY,Wyoming,202505,N,P,N,1520.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1520.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,1147.0,,88.0,,1235.0,,42148.0,,61694.0,,55908.0,,5786.0,,19546.0,,245.0,,316.0,,520.0,,119.0,,295.0,,10634.0,,1.0,Call centers offer callbacks,0.01,Callbacks are included +WY,Wyoming,202505,N,U,Y,1520.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1520.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,1147.0,,88.0,,1235.0,,42872.0,,62762.0,,56896.0,,5866.0,,19890.0,,245.0,,316.0,,520.0,,119.0,,295.0,,10634.0,,1.0,Call centers offer callbacks,0.01,Callbacks are included +WY,Wyoming,202506,N,P,N,1429.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1429.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,1006.0,,49.0,,1055.0,,42147.0,,61683.0,,55809.0,,5874.0,,19536.0,,246.0,,387.0,,411.0,,71.0,,159.0,,9879.0,,1.0,Call centers offer callbacks,0.011,Callbacks are included +WY,Wyoming,202506,N,U,Y,1429.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1429.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,1006.0,,49.0,,1055.0,,42458.0,,62202.0,,56293.0,,5909.0,,19744.0,,246.0,,387.0,,411.0,,71.0,,159.0,,9879.0,,1.0,Call centers offer callbacks,0.011,Callbacks are included +WY,Wyoming,202507,N,P,N,1539.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1539.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,1126.0,,55.0,,1181.0,,41919.0,,61342.0,,55488.0,,5854.0,,19423.0,,322.0,,296.0,,471.0,,115.0,,170.0,,11585.0,,1.0,Call centers offer callbacks,0.002,Callbacks are included +WY,Wyoming,202507,N,U,Y,1539.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1539.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,1126.0,,55.0,,1181.0,,42348.0,,62021.0,,56121.0,,5900.0,,19673.0,,322.0,,296.0,,471.0,,115.0,,170.0,,11585.0,,1.0,Call centers offer callbacks,0.002,Callbacks are included +WY,Wyoming,202508,N,P,N,1396.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1396.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,1180.0,,80.0,,1260.0,,41551.0,,60814.0,,54919.0,,5895.0,,19263.0,,324.0,,346.0,,466.0,,88.0,,306.0,,11046.0,,1.0,Call centers offer callbacks,0.003,Callbacks are included +WY,Wyoming,202508,N,U,Y,1396.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1396.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,1180.0,,80.0,,1260.0,,42022.0,,61564.0,,55597.0,,5967.0,,19542.0,,324.0,,346.0,,466.0,,88.0,,306.0,,11046.0,,1.0,Call centers offer callbacks,0.003,Callbacks are included +WY,Wyoming,202509,N,P,N,1541.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1541.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,1155.0,,103.0,,1258.0,,40584.0,,59571.0,,53659.0,,5912.0,,18987.0,,428.0,,153.0,,559.0,,114.0,,175.0,,12548.0,,1.0,Call centers offer callbacks,0.004,Callbacks are included +WY,Wyoming,202509,N,U,Y,1541.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1541.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,1155.0,,103.0,,1258.0,,41125.0,,60384.0,,54433.0,,5951.0,,19259.0,,428.0,,153.0,,559.0,,114.0,,175.0,,12548.0,,1.0,Call centers offer callbacks,0.004,Callbacks are included +WY,Wyoming,202510,N,P,N,1473.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications Submitted to Medicaid and CHIP Agencies,0.0,,1473.0,Includes Administrative Data Transfers; Does Not Include All Medicaid Applications; Does Not Include All CHIP Applications,1153.0,,96.0,,1249.0,,40672.0,,59714.0,,53809.0,,5905.0,,19042.0,,358.0,,95.0,,549.0,,165.0,,247.0,,12623.0,,1.0,Call centers offer callbacks,0.0,Callbacks are included diff --git a/policyengine_us_data/storage/calibration/raw_inputs/snap_fy69tocurrent.zip b/policyengine_us_data/storage/calibration/raw_inputs/snap_fy69tocurrent.zip new file mode 100644 index 00000000..17f12043 Binary files /dev/null and b/policyengine_us_data/storage/calibration/raw_inputs/snap_fy69tocurrent.zip differ diff --git a/policyengine_us_data/storage/calibration/w_district_calibration.npy b/policyengine_us_data/storage/calibration/w_district_calibration.npy new file mode 100644 index 00000000..6059d181 Binary files /dev/null and b/policyengine_us_data/storage/calibration/w_district_calibration.npy differ diff --git a/policyengine_us_data/storage/upload_completed_datasets.py b/policyengine_us_data/storage/upload_completed_datasets.py index a1e68575..8f00b375 100644 --- a/policyengine_us_data/storage/upload_completed_datasets.py +++ b/policyengine_us_data/storage/upload_completed_datasets.py @@ -1,11 +1,161 @@ +import h5py +from pathlib import Path + from policyengine_us_data.datasets import ( EnhancedCPS_2024, ) from policyengine_us_data.datasets.cps.cps import CPS_2024 from policyengine_us_data.storage import STORAGE_FOLDER from policyengine_us_data.utils.data_upload import upload_data_files -from google.cloud import storage -import google.auth + +# Datasets that require full validation before upload. +# These are the main datasets used in production simulations. +VALIDATED_FILENAMES = { + "enhanced_cps_2024.h5", + "cps_2024.h5", +} + +# Minimum file sizes in bytes for validated datasets. +MIN_FILE_SIZES = { + "enhanced_cps_2024.h5": 100 * 1024 * 1024, # 100 MB + "cps_2024.h5": 50 * 1024 * 1024, # 50 MB +} + +# H5 groups that must exist and contain data. +REQUIRED_GROUPS = [ + "household_weight", +] + +# At least one of these income groups must exist with data. +INCOME_GROUPS = [ + "employment_income_before_lsr", + "employment_income", +] + +# Aggregate thresholds for sanity checks (year 2024). +MIN_EMPLOYMENT_INCOME_SUM = 5e12 # $5 trillion +MIN_HOUSEHOLD_WEIGHT_SUM = 100e6 # 100 million +MAX_HOUSEHOLD_WEIGHT_SUM = 200e6 # 200 million + + +class DatasetValidationError(Exception): + """Raised when a dataset fails pre-upload validation.""" + + pass + + +def validate_dataset(file_path: Path) -> None: + """Validate a dataset file before upload. + + Checks file size, H5 structure, and aggregate statistics + to prevent uploading corrupted data. + + Args: + file_path: Path to the H5 dataset file. + + Raises: + DatasetValidationError: If any validation check fails. + """ + file_path = Path(file_path) + filename = file_path.name + + if filename not in VALIDATED_FILENAMES: + return # Skip validation for auxiliary files + + errors = [] + + # 1. File size check + file_size = file_path.stat().st_size + min_size = MIN_FILE_SIZES.get(filename, 0) + if file_size < min_size: + errors.append( + f"File size {file_size / 1024 / 1024:.1f} MB is below " + f"minimum {min_size / 1024 / 1024:.0f} MB. " + f"This likely indicates corrupted/incomplete data." + ) + + # 2. H5 structure check - verify critical groups exist with data + def _check_group_has_data(f, name): + """Return True if the H5 group/dataset has non-empty data.""" + if name not in f: + return False + group = f[name] + if isinstance(group, h5py.Group): + if len(group.keys()) == 0: + return False + first_key = list(group.keys())[0] + return len(group[first_key][:]) > 0 + elif isinstance(group, h5py.Dataset): + return group.size > 0 + return False + + try: + with h5py.File(file_path, "r") as f: + for group_name in REQUIRED_GROUPS: + if not _check_group_has_data(f, group_name): + errors.append( + f"Required group '{group_name}' missing " + f"or empty in H5 file." + ) + + # At least one income group must have data + has_income = any( + _check_group_has_data(f, g) for g in INCOME_GROUPS + ) + if not has_income: + errors.append( + f"No income data found. Need at least one of " + f"{INCOME_GROUPS} with data in H5 file." + ) + except Exception as e: + errors.append(f"Failed to read H5 file: {e}") + + if errors: + raise DatasetValidationError( + f"Validation failed for {filename}:\n" + + "\n".join(f" - {e}" for e in errors) + ) + + # 3. Aggregate statistics check via Microsimulation + # Import here to avoid heavy import at module level. + from policyengine_us import Microsimulation + + try: + sim = Microsimulation(dataset=file_path) + year = 2024 + + emp_income = sim.calculate("employment_income", year).sum() + if emp_income < MIN_EMPLOYMENT_INCOME_SUM: + errors.append( + f"employment_income sum = ${emp_income:,.0f}, " + f"expected > ${MIN_EMPLOYMENT_INCOME_SUM:,.0f}. " + f"Data may have dropped employment income." + ) + + hh_weight = sim.calculate("household_weight", year).sum() + if hh_weight < MIN_HOUSEHOLD_WEIGHT_SUM: + errors.append( + f"household_weight sum = {hh_weight:,.0f}, " + f"expected > {MIN_HOUSEHOLD_WEIGHT_SUM:,.0f}." + ) + if hh_weight > MAX_HOUSEHOLD_WEIGHT_SUM: + errors.append( + f"household_weight sum = {hh_weight:,.0f}, " + f"expected < {MAX_HOUSEHOLD_WEIGHT_SUM:,.0f}." + ) + except Exception as e: + errors.append(f"Microsimulation validation failed: {e}") + + if errors: + raise DatasetValidationError( + f"Validation failed for {filename}:\n" + + "\n".join(f" - {e}" for e in errors) + ) + + print(f" ✓ Validation passed for {filename}") + print(f" File size: {file_size / 1024 / 1024:.1f} MB") + print(f" employment_income sum: ${emp_income:,.0f}") + print(f" Household weight sum: {hh_weight:,.0f}") def upload_datasets(): @@ -28,6 +178,11 @@ def upload_datasets(): if not existing_files: raise ValueError("No dataset files found to upload!") + # Validate datasets before uploading + print("\nValidating datasets...") + for file_path in existing_files: + validate_dataset(file_path) + print(f"\nUploading {len(existing_files)} files...") upload_data_files( files=existing_files, @@ -37,5 +192,18 @@ def upload_datasets(): ) +def validate_all_datasets(): + """Validate all main datasets in storage. Called by `make validate-data`.""" + for filename in VALIDATED_FILENAMES: + file_path = STORAGE_FOLDER / filename + if file_path.exists(): + validate_dataset(file_path) + else: + raise FileNotFoundError( + f"Expected dataset {filename} not found at {file_path}" + ) + print("\nAll dataset validations passed.") + + if __name__ == "__main__": upload_datasets() diff --git a/policyengine_us_data/tests/test_datasets/test_dataset_sanity.py b/policyengine_us_data/tests/test_datasets/test_dataset_sanity.py new file mode 100644 index 00000000..4fb5f618 --- /dev/null +++ b/policyengine_us_data/tests/test_datasets/test_dataset_sanity.py @@ -0,0 +1,160 @@ +"""Sanity checks for built datasets. + +Catch catastrophic data issues: missing income variables, wrong +population counts, corrupted files, or undersized H5 outputs. +These run after every data build and would have caught the +enhanced CPS overwrite bug (PR #569) where +employment_income_before_lsr was dropped, zeroing all income. +""" + +import pytest +import numpy as np + + +@pytest.fixture(scope="module") +def ecps_sim(): + from policyengine_us_data.datasets.cps import EnhancedCPS_2024 + from policyengine_us import Microsimulation + + return Microsimulation(dataset=EnhancedCPS_2024) + + +@pytest.fixture(scope="module") +def cps_sim(): + from policyengine_us_data.datasets.cps import CPS_2024 + from policyengine_us import Microsimulation + + return Microsimulation(dataset=CPS_2024) + + +# ── Enhanced CPS sanity checks ────────────────────────────────── + + +def test_ecps_employment_income_positive(ecps_sim): + """Employment income must be in the trillions, not zero.""" + total = ecps_sim.calculate("employment_income").sum() + assert total > 5e12, ( + f"employment_income sum is {total:.2e}, expected > 5T. " + "Likely missing employment_income_before_lsr in dataset." + ) + + +def test_ecps_self_employment_income_positive(ecps_sim): + total = ecps_sim.calculate("self_employment_income").sum() + assert ( + total > 50e9 + ), f"self_employment_income sum is {total:.2e}, expected > 50B." + + +def test_ecps_household_count(ecps_sim): + """Household count should be roughly 130-160M.""" + weights = ecps_sim.calculate("household_weight") + total_hh = weights.sum() + assert ( + 100e6 < total_hh < 200e6 + ), f"Total households = {total_hh:.2e}, expected 100M-200M." + + +def test_ecps_person_count(ecps_sim): + """Weighted person count should be roughly 330M.""" + weights = ecps_sim.calculate("household_weight", map_to="person") + total_people = weights.sum() + assert ( + 250e6 < total_people < 400e6 + ), f"Total people = {total_people:.2e}, expected 250M-400M." + + +def test_ecps_poverty_rate_reasonable(ecps_sim): + """SPM poverty rate should be 8-25%, not 40%+.""" + in_poverty = ecps_sim.calculate("person_in_poverty", map_to="person") + rate = in_poverty.mean() + assert 0.05 < rate < 0.25, ( + f"Poverty rate = {rate:.1%}, expected 5-25%. " + "If ~40%, income variables are likely zero." + ) + + +def test_ecps_income_tax_positive(ecps_sim): + """Federal income tax revenue should be in the trillions.""" + total = ecps_sim.calculate("income_tax").sum() + assert total > 1e12, f"income_tax sum is {total:.2e}, expected > 1T." + + +def test_ecps_mean_employment_income_reasonable(ecps_sim): + """Mean employment income per person should be $20k-$60k.""" + income = ecps_sim.calculate("employment_income", map_to="person") + mean = income.mean() + assert 15_000 < mean < 80_000, ( + f"Mean employment income = ${mean:,.0f}, " "expected $15k-$80k." + ) + + +# ── CPS sanity checks ─────────────────────────────────────────── + + +def test_cps_employment_income_positive(cps_sim): + total = cps_sim.calculate("employment_income").sum() + assert total > 5e12, ( + f"CPS employment_income sum is {total:.2e}, " "expected > 5T." + ) + + +def test_cps_household_count(cps_sim): + weights = cps_sim.calculate("household_weight") + total_hh = weights.sum() + assert 100e6 < total_hh < 200e6, f"CPS total households = {total_hh:.2e}." + + +# ── Sparse Enhanced CPS sanity checks ───────────────────────── + + +@pytest.fixture(scope="module") +def sparse_sim(): + from policyengine_core.data import Dataset + from policyengine_us import Microsimulation + from policyengine_us_data.storage import STORAGE_FOLDER + + path = STORAGE_FOLDER / "sparse_enhanced_cps_2024.h5" + if not path.exists(): + pytest.skip("sparse_enhanced_cps_2024.h5 not found") + return Microsimulation(dataset=Dataset.from_file(path)) + + +def test_sparse_employment_income_positive(sparse_sim): + """Sparse dataset employment income must be in the trillions.""" + total = sparse_sim.calculate("employment_income").sum() + assert ( + total > 5e12 + ), f"Sparse employment_income sum is {total:.2e}, expected > 5T." + + +def test_sparse_household_count(sparse_sim): + weights = sparse_sim.calculate("household_weight") + total_hh = weights.sum() + assert ( + 100e6 < total_hh < 200e6 + ), f"Sparse total households = {total_hh:.2e}, expected 100M-200M." + + +def test_sparse_poverty_rate_reasonable(sparse_sim): + in_poverty = sparse_sim.calculate("person_in_poverty", map_to="person") + rate = in_poverty.mean() + assert ( + 0.05 < rate < 0.25 + ), f"Sparse poverty rate = {rate:.1%}, expected 5-25%." + + +# ── File size checks ─────────────────────────────────────────── + + +def test_ecps_file_size(): + """Enhanced CPS H5 file should be >100MB (was 590MB before bug).""" + from policyengine_us_data.storage import STORAGE_FOLDER + + path = STORAGE_FOLDER / "enhanced_cps_2024.h5" + if not path.exists(): + pytest.skip("enhanced_cps_2024.h5 not found") + size_mb = path.stat().st_size / (1024 * 1024) + assert ( + size_mb > 100 + ), f"enhanced_cps_2024.h5 is only {size_mb:.1f}MB, expected >100MB" diff --git a/policyengine_us_data/tests/test_datasets/test_enhanced_cps.py b/policyengine_us_data/tests/test_datasets/test_enhanced_cps.py index 058e2f51..b3edbc9e 100644 --- a/policyengine_us_data/tests/test_datasets/test_enhanced_cps.py +++ b/policyengine_us_data/tests/test_datasets/test_enhanced_cps.py @@ -1,6 +1,23 @@ import pytest +def test_ecps_employment_income_direct(): + """Direct check that employment income from the actual dataset is > 5T. + + This tests the ACTUAL H5 dataset, not calibration_log.csv, and would + have caught the bug where employment_income_before_lsr was dropped. + """ + from policyengine_us_data.datasets.cps import EnhancedCPS_2024 + from policyengine_us import Microsimulation + + sim = Microsimulation(dataset=EnhancedCPS_2024) + total = sim.calculate("employment_income").sum() + assert total > 5e12, ( + f"employment_income sum is {total:.2e}, expected > 5T. " + "Likely missing employment_income_before_lsr in dataset." + ) + + def test_ecps_has_mortgage_interest(): from policyengine_us_data.datasets.cps import EnhancedCPS_2024 from policyengine_us import Microsimulation diff --git a/policyengine_us_data/tests/test_datasets/test_small_enhanced_cps.py b/policyengine_us_data/tests/test_datasets/test_small_enhanced_cps.py index 99bdfa36..23b7b2dc 100644 --- a/policyengine_us_data/tests/test_datasets/test_small_enhanced_cps.py +++ b/policyengine_us_data/tests/test_datasets/test_small_enhanced_cps.py @@ -14,4 +14,17 @@ def test_small_ecps_loads(year: int): ) ) + # Basic load check assert not sim.calculate("household_net_income", 2025).isna().any() + + # Employment income should be positive (not zero from missing vars) + emp_income = sim.calculate("employment_income", 2025).sum() + assert ( + emp_income > 0 + ), f"Small ECPS employment_income sum is {emp_income}, expected > 0." + + # Should have a reasonable number of households + hh_count = len(sim.calculate("household_net_income", 2025)) + assert ( + hh_count > 100 + ), f"Small ECPS has only {hh_count} households, expected > 100." diff --git a/policyengine_us_data/tests/test_datasets/test_sparse_enhanced_cps.py b/policyengine_us_data/tests/test_datasets/test_sparse_enhanced_cps.py index 96e4a996..6a690f0c 100644 --- a/policyengine_us_data/tests/test_datasets/test_sparse_enhanced_cps.py +++ b/policyengine_us_data/tests/test_datasets/test_sparse_enhanced_cps.py @@ -80,6 +80,20 @@ def test_sparse_ecps(sim): assert percent_within_10 > 60.0 +def test_sparse_ecps_employment_income_positive(sim): + """Direct check that employment income is in the trillions. + + Unlike test_sparse_ecps which filters out zero targets via zero_mask, + this test would have caught the bug where employment_income_before_lsr + was dropped, zeroing out all employment income. + """ + total = sim.calculate("employment_income").sum() + assert total > 5e12, ( + f"employment_income sum is {total:.2e}, expected > 5T. " + "Likely missing employment_income_before_lsr in dataset." + ) + + def test_sparse_ecps_has_mortgage_interest(sim): assert sim.calculate("deductible_mortgage_interest").sum() > 1